
    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_596757e58589ef01a2016d76.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_48341650d48a6b7fb227abf8.woff2')format("woff");}.ff2_c00000{font-family:ff2_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;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_c94ce1ea68173f8b8875845d.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_ba3a9c6bfa73dd53c8b44ec1.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00000;src:url('chunks/assets/font_3deef7fd88770db14d3dae76.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00000;src:url('chunks/assets/font_829013cc19f8d7a10f320dad.woff2')format("woff");}.ff6_c00000{font-family:ff6_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00000;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00000{vertical-align:-93.000000px;}
.v0_c00000{vertical-align:0.000000px;}
.v1_c00000{vertical-align:120.000000px;}
.ls1_c00000{letter-spacing:-3.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.ls2_c00000{letter-spacing:24.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00000{word-spacing:-48.372000px;}
.ws2_c00000{word-spacing:-20.244000px;}
.ws0_c00000{word-spacing:-18.798000px;}
.ws3_c00000{word-spacing:0.000000px;}
._8_c00000{margin-left:-57.267000px;}
._28_c00000{margin-left:-54.240000px;}
._2d_c00000{margin-left:-35.136000px;}
._35_c00000{margin-left:-32.901000px;}
._2f_c00000{margin-left:-31.788000px;}
._2e_c00000{margin-left:-28.866000px;}
._31_c00000{margin-left:-25.128000px;}
._1a_c00000{margin-left:-22.800000px;}
._3_c00000{margin-left:-19.845000px;}
._1f_c00000{margin-left:-18.480000px;}
._1d_c00000{margin-left:-15.600000px;}
._1c_c00000{margin-left:-14.400000px;}
._34_c00000{margin-left:-12.390000px;}
._1e_c00000{margin-left:-9.360000px;}
._18_c00000{margin-left:-7.440000px;}
._29_c00000{margin-left:-6.000000px;}
._1_c00000{margin-left:-4.347000px;}
._0_c00000{margin-left:-2.835000px;}
._14_c00000{margin-left:-1.752000px;}
._a_c00000{width:1.512000px;}
._7_c00000{width:2.646000px;}
._6_c00000{width:4.536000px;}
._5_c00000{width:6.048000px;}
._15_c00000{width:7.344000px;}
._e_c00000{width:8.400000px;}
._24_c00000{width:9.714000px;}
._10_c00000{width:11.520000px;}
._c_c00000{width:13.440000px;}
._d_c00000{width:15.360000px;}
._12_c00000{width:16.608000px;}
._47_c00000{width:17.628000px;}
._b_c00000{width:18.720000px;}
._20_c00000{width:20.256000px;}
._36_c00000{width:22.158000px;}
._42_c00000{width:23.367000px;}
._27_c00000{width:24.720000px;}
._2_c00000{width:26.271000px;}
._32_c00000{width:27.504000px;}
._2a_c00000{width:28.560000px;}
._38_c00000{width:30.666000px;}
._2b_c00000{width:32.400000px;}
._16_c00000{width:33.798000px;}
._3c_c00000{width:35.595000px;}
._3b_c00000{width:36.708000px;}
._33_c00000{width:38.019000px;}
._17_c00000{width:39.456000px;}
._39_c00000{width:41.268000px;}
._3a_c00000{width:42.642000px;}
._11_c00000{width:43.680000px;}
._13_c00000{width:45.600000px;}
._3d_c00000{width:47.172000px;}
._4a_c00000{width:51.636000px;}
._30_c00000{width:52.644000px;}
._4b_c00000{width:54.192000px;}
._9_c00000{width:56.889000px;}
._3e_c00000{width:58.359000px;}
._49_c00000{width:60.510000px;}
._4_c00000{width:61.614000px;}
._44_c00000{width:62.814000px;}
._21_c00000{width:64.704000px;}
._45_c00000{width:66.552000px;}
._43_c00000{width:69.222000px;}
._22_c00000{width:71.784000px;}
._46_c00000{width:73.374000px;}
._1b_c00000{width:76.080000px;}
._23_c00000{width:77.232000px;}
._19_c00000{width:79.680000px;}
._41_c00000{width:81.672000px;}
._48_c00000{width:86.832000px;}
._f_c00000{width:87.840000px;}
._3f_c00000{width:92.964000px;}
._40_c00000{width:103.992000px;}
._37_c00000{width:181.182000px;}
._2c_c00000{width:239.280000px;}
._26_c00000{width:289.344000px;}
._25_c00000{width:291.906000px;}
._4c_c00000{width:1037.058000px;}
.fc2_c00000{color:transparent;}
.fc1_c00000{color:rgb(128,128,128);}
.fc0_c00000{color:rgb(0,0,0);}
.fs3_c00000{font-size:36.000000px;}
.fs9_c00000{font-size:48.000000px;}
.fs6_c00000{font-size:78.000000px;}
.fs7_c00000{font-size:84.000000px;}
.fs4_c00000{font-size:87.000000px;}
.fs5_c00000{font-size:93.000000px;}
.fs0_c00000{font-size:96.000000px;}
.fs8_c00000{font-size:144.000000px;}
.fs1_c00000{font-size:189.000000px;}
.fs2_c00000{font-size:240.000000px;}
.y0_c00000{bottom:0.000000px;}
.y22_c00000{bottom:1.050000px;}
.y24_c00000{bottom:3.105000px;}
.y23_c00000{bottom:7.228363px;}
.y21_c00000{bottom:67.500000px;}
.y20_c00000{bottom:102.300000px;}
.y1f_c00000{bottom:135.900000px;}
.y1e_c00000{bottom:191.700000px;}
.y1d_c00000{bottom:221.100000px;}
.y1c_c00000{bottom:251.100000px;}
.y1b_c00000{bottom:302.700000px;}
.y1a_c00000{bottom:355.350000px;}
.y19_c00000{bottom:389.100000px;}
.y18_c00000{bottom:422.550000px;}
.y17_c00000{bottom:477.150000px;}
.y16_c00000{bottom:507.150000px;}
.y15_c00000{bottom:537.000000px;}
.y14_c00000{bottom:566.700000px;}
.y13_c00000{bottom:595.950000px;}
.y12_c00000{bottom:647.250000px;}
.y11_c00000{bottom:676.650000px;}
.y10_c00000{bottom:706.050000px;}
.yf_c00000{bottom:735.750000px;}
.ye_c00000{bottom:765.150000px;}
.yd_c00000{bottom:794.700000px;}
.yc_c00000{bottom:823.800000px;}
.yb_c00000{bottom:864.300000px;}
.y9_c00000{bottom:867.000000px;}
.ya_c00000{bottom:877.800000px;}
.y8_c00000{bottom:939.150000px;}
.y7_c00000{bottom:971.700000px;}
.y6_c00000{bottom:1020.300000px;}
.y5_c00000{bottom:1091.400000px;}
.y4_c00000{bottom:1124.100000px;}
.y3_c00000{bottom:1172.850000px;}
.y2_c00000{bottom:1241.700000px;}
.y1_c00000{bottom:1297.050000px;}
.h7_c00000{height:13.200074px;}
.h8_c00000{height:43.804688px;}
.h4_c00000{height:45.580078px;}
.h5_c00000{height:110.151855px;}
.h1_c00000{height:121.546875px;}
.h6_c00000{height:182.320312px;}
.h2_c00000{height:239.295410px;}
.h3_c00000{height:241.875000px;}
.h0_c00000{height:1377.000000px;}
.w2_c00000{width:104.875500px;}
.w0_c00000{width:939.600000px;}
.w1_c00000{width:939.750000px;}
.x0_c00000{left:0.000000px;}
.x1b_c00000{left:51.300000px;}
.x7_c00000{left:80.250000px;}
.x3_c00000{left:81.450000px;}
.xf_c00000{left:83.400000px;}
.x13_c00000{left:86.100000px;}
.x16_c00000{left:87.750000px;}
.x19_c00000{left:91.500000px;}
.xc_c00000{left:111.000000px;}
.x4_c00000{left:129.150000px;}
.x17_c00000{left:147.600000px;}
.x10_c00000{left:153.150000px;}
.x14_c00000{left:163.350000px;}
.x2_c00000{left:165.750000px;}
.x1a_c00000{left:224.850000px;}
.x6_c00000{left:250.050000px;}
.xd_c00000{left:266.550000px;}
.x18_c00000{left:267.600000px;}
.x11_c00000{left:280.050000px;}
.x15_c00000{left:285.450000px;}
.x5_c00000{left:298.950000px;}
.x9_c00000{left:325.650000px;}
.xe_c00000{left:369.150000px;}
.x12_c00000{left:376.650000px;}
.x8_c00000{left:412.800000px;}
.x1c_c00000{left:421.614258px;}
.x1_c00000{left:447.750000px;}
.xb_c00000{left:647.700000px;}
.xa_c00000{left:648.900000px;}
@media print{
.v2_c00000{vertical-align:-82.666667pt;}
.v0_c00000{vertical-align:0.000000pt;}
.v1_c00000{vertical-align:106.666667pt;}
.ls1_c00000{letter-spacing:-2.666667pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ls2_c00000{letter-spacing:21.333333pt;}
.ws1_c00000{word-spacing:-42.997333pt;}
.ws2_c00000{word-spacing:-17.994667pt;}
.ws0_c00000{word-spacing:-16.709333pt;}
.ws3_c00000{word-spacing:0.000000pt;}
._8_c00000{margin-left:-50.904000pt;}
._28_c00000{margin-left:-48.213333pt;}
._2d_c00000{margin-left:-31.232000pt;}
._35_c00000{margin-left:-29.245333pt;}
._2f_c00000{margin-left:-28.256000pt;}
._2e_c00000{margin-left:-25.658667pt;}
._31_c00000{margin-left:-22.336000pt;}
._1a_c00000{margin-left:-20.266667pt;}
._3_c00000{margin-left:-17.640000pt;}
._1f_c00000{margin-left:-16.426667pt;}
._1d_c00000{margin-left:-13.866667pt;}
._1c_c00000{margin-left:-12.800000pt;}
._34_c00000{margin-left:-11.013333pt;}
._1e_c00000{margin-left:-8.320000pt;}
._18_c00000{margin-left:-6.613333pt;}
._29_c00000{margin-left:-5.333333pt;}
._1_c00000{margin-left:-3.864000pt;}
._0_c00000{margin-left:-2.520000pt;}
._14_c00000{margin-left:-1.557333pt;}
._a_c00000{width:1.344000pt;}
._7_c00000{width:2.352000pt;}
._6_c00000{width:4.032000pt;}
._5_c00000{width:5.376000pt;}
._15_c00000{width:6.528000pt;}
._e_c00000{width:7.466667pt;}
._24_c00000{width:8.634667pt;}
._10_c00000{width:10.240000pt;}
._c_c00000{width:11.946667pt;}
._d_c00000{width:13.653333pt;}
._12_c00000{width:14.762667pt;}
._47_c00000{width:15.669333pt;}
._b_c00000{width:16.640000pt;}
._20_c00000{width:18.005333pt;}
._36_c00000{width:19.696000pt;}
._42_c00000{width:20.770667pt;}
._27_c00000{width:21.973333pt;}
._2_c00000{width:23.352000pt;}
._32_c00000{width:24.448000pt;}
._2a_c00000{width:25.386667pt;}
._38_c00000{width:27.258667pt;}
._2b_c00000{width:28.800000pt;}
._16_c00000{width:30.042667pt;}
._3c_c00000{width:31.640000pt;}
._3b_c00000{width:32.629333pt;}
._33_c00000{width:33.794667pt;}
._17_c00000{width:35.072000pt;}
._39_c00000{width:36.682667pt;}
._3a_c00000{width:37.904000pt;}
._11_c00000{width:38.826667pt;}
._13_c00000{width:40.533333pt;}
._3d_c00000{width:41.930667pt;}
._4a_c00000{width:45.898667pt;}
._30_c00000{width:46.794667pt;}
._4b_c00000{width:48.170667pt;}
._9_c00000{width:50.568000pt;}
._3e_c00000{width:51.874667pt;}
._49_c00000{width:53.786667pt;}
._4_c00000{width:54.768000pt;}
._44_c00000{width:55.834667pt;}
._21_c00000{width:57.514667pt;}
._45_c00000{width:59.157333pt;}
._43_c00000{width:61.530667pt;}
._22_c00000{width:63.808000pt;}
._46_c00000{width:65.221333pt;}
._1b_c00000{width:67.626667pt;}
._23_c00000{width:68.650667pt;}
._19_c00000{width:70.826667pt;}
._41_c00000{width:72.597333pt;}
._48_c00000{width:77.184000pt;}
._f_c00000{width:78.080000pt;}
._3f_c00000{width:82.634667pt;}
._40_c00000{width:92.437333pt;}
._37_c00000{width:161.050667pt;}
._2c_c00000{width:212.693333pt;}
._26_c00000{width:257.194667pt;}
._25_c00000{width:259.472000pt;}
._4c_c00000{width:921.829333pt;}
.fs3_c00000{font-size:32.000000pt;}
.fs9_c00000{font-size:42.666667pt;}
.fs6_c00000{font-size:69.333333pt;}
.fs7_c00000{font-size:74.666667pt;}
.fs4_c00000{font-size:77.333333pt;}
.fs5_c00000{font-size:82.666667pt;}
.fs0_c00000{font-size:85.333333pt;}
.fs8_c00000{font-size:128.000000pt;}
.fs1_c00000{font-size:168.000000pt;}
.fs2_c00000{font-size:213.333333pt;}
.y0_c00000{bottom:0.000000pt;}
.y22_c00000{bottom:0.933333pt;}
.y24_c00000{bottom:2.760000pt;}
.y23_c00000{bottom:6.425212pt;}
.y21_c00000{bottom:60.000000pt;}
.y20_c00000{bottom:90.933333pt;}
.y1f_c00000{bottom:120.800000pt;}
.y1e_c00000{bottom:170.400000pt;}
.y1d_c00000{bottom:196.533333pt;}
.y1c_c00000{bottom:223.200000pt;}
.y1b_c00000{bottom:269.066667pt;}
.y1a_c00000{bottom:315.866667pt;}
.y19_c00000{bottom:345.866667pt;}
.y18_c00000{bottom:375.600000pt;}
.y17_c00000{bottom:424.133333pt;}
.y16_c00000{bottom:450.800000pt;}
.y15_c00000{bottom:477.333333pt;}
.y14_c00000{bottom:503.733333pt;}
.y13_c00000{bottom:529.733333pt;}
.y12_c00000{bottom:575.333333pt;}
.y11_c00000{bottom:601.466667pt;}
.y10_c00000{bottom:627.600000pt;}
.yf_c00000{bottom:654.000000pt;}
.ye_c00000{bottom:680.133333pt;}
.yd_c00000{bottom:706.400000pt;}
.yc_c00000{bottom:732.266667pt;}
.yb_c00000{bottom:768.266667pt;}
.y9_c00000{bottom:770.666667pt;}
.ya_c00000{bottom:780.266667pt;}
.y8_c00000{bottom:834.800000pt;}
.y7_c00000{bottom:863.733333pt;}
.y6_c00000{bottom:906.933333pt;}
.y5_c00000{bottom:970.133333pt;}
.y4_c00000{bottom:999.200000pt;}
.y3_c00000{bottom:1042.533333pt;}
.y2_c00000{bottom:1103.733333pt;}
.y1_c00000{bottom:1152.933333pt;}
.h7_c00000{height:11.733399pt;}
.h8_c00000{height:38.937500pt;}
.h4_c00000{height:40.515625pt;}
.h5_c00000{height:97.912760pt;}
.h1_c00000{height:108.041667pt;}
.h6_c00000{height:162.062500pt;}
.h2_c00000{height:212.707031pt;}
.h3_c00000{height:215.000000pt;}
.h0_c00000{height:1224.000000pt;}
.w2_c00000{width:93.222667pt;}
.w0_c00000{width:835.200000pt;}
.w1_c00000{width:835.333333pt;}
.x0_c00000{left:0.000000pt;}
.x1b_c00000{left:45.600000pt;}
.x7_c00000{left:71.333333pt;}
.x3_c00000{left:72.400000pt;}
.xf_c00000{left:74.133333pt;}
.x13_c00000{left:76.533333pt;}
.x16_c00000{left:78.000000pt;}
.x19_c00000{left:81.333333pt;}
.xc_c00000{left:98.666667pt;}
.x4_c00000{left:114.800000pt;}
.x17_c00000{left:131.200000pt;}
.x10_c00000{left:136.133333pt;}
.x14_c00000{left:145.200000pt;}
.x2_c00000{left:147.333333pt;}
.x1a_c00000{left:199.866667pt;}
.x6_c00000{left:222.266667pt;}
.xd_c00000{left:236.933333pt;}
.x18_c00000{left:237.866667pt;}
.x11_c00000{left:248.933333pt;}
.x15_c00000{left:253.733333pt;}
.x5_c00000{left:265.733333pt;}
.x9_c00000{left:289.466667pt;}
.xe_c00000{left:328.133333pt;}
.x12_c00000{left:334.800000pt;}
.x8_c00000{left:366.933333pt;}
.x1c_c00000{left:374.768229pt;}
.x1_c00000{left:398.000000pt;}
.xb_c00000{left:575.733333pt;}
.xa_c00000{left:576.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_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_bf4bb8b4be0b2072b4bf0d80.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;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:ff2_c00001;src:url('chunks/assets/font_999a005c64e34ca65eea49a9.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_dff7154da5f6b8205d526a48.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_e2b038551ba69686b0290c67.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_285eec8d0760b65535076a45.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.314453;font-style:normal;font-weight:normal;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_889e50182802b31724fff1f1.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.314453;font-style:normal;font-weight:normal;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_0c21f13574b4573ebdba11be.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_07dd2787b810462e23a2a649.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_d9e0d3f72a4be445c6c16f1b.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_f74a3846638d79f74c995fce.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00001;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:13.200000px;}
.ls10_c00001{letter-spacing:-9.000000px;}
.lsf_c00001{letter-spacing:0.000000px;}
.lsb_c00001{letter-spacing:6.588000px;}
.ls13_c00001{letter-spacing:9.000000px;}
.ls12_c00001{letter-spacing:15.000000px;}
.lsa_c00001{letter-spacing:16.392000px;}
.ls3_c00001{letter-spacing:17.088000px;}
.ls7_c00001{letter-spacing:20.328000px;}
.ls6_c00001{letter-spacing:20.352000px;}
.ls11_c00001{letter-spacing:21.000000px;}
.ls14_c00001{letter-spacing:24.000000px;}
.ls2_c00001{letter-spacing:26.928000px;}
.lsd_c00001{letter-spacing:27.924000px;}
.ls0_c00001{letter-spacing:28.248000px;}
.ls1_c00001{letter-spacing:29.256000px;}
.ls4_c00001{letter-spacing:33.000000px;}
.ls5_c00001{letter-spacing:37.128000px;}
.ls8_c00001{letter-spacing:37.728000px;}
.lsc_c00001{letter-spacing:47.124000px;}
.ls9_c00001{letter-spacing:52.728000px;}
.lse_c00001{letter-spacing:90.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:-210.000000px;}
.ws4_c00001{word-spacing:-50.352000px;}
.ws3_c00001{word-spacing:-38.352000px;}
.ws5_c00001{word-spacing:-32.352000px;}
.wsd_c00001{word-spacing:-20.967000px;}
.ws6_c00001{word-spacing:-19.872000px;}
.ws7_c00001{word-spacing:-17.352000px;}
.wsc_c00001{word-spacing:-15.984000px;}
.wsb_c00001{word-spacing:-8.676000px;}
.wse_c00001{word-spacing:0.000000px;}
.ws2_c00001{word-spacing:2.304000px;}
.ws9_c00001{word-spacing:7.992000px;}
.ws1_c00001{word-spacing:9.024000px;}
.ws8_c00001{word-spacing:13.080000px;}
.wsa_c00001{word-spacing:88.560000px;}
._3d_c00001{margin-left:-63.858000px;}
._3e_c00001{margin-left:-33.408000px;}
._3a_c00001{margin-left:-29.664000px;}
._38_c00001{margin-left:-27.540000px;}
._39_c00001{margin-left:-24.228000px;}
._34_c00001{margin-left:-20.952000px;}
._3b_c00001{margin-left:-19.800000px;}
._3c_c00001{margin-left:-17.964000px;}
._33_c00001{margin-left:-15.948000px;}
._2e_c00001{margin-left:-14.544000px;}
._1_c00001{margin-left:-12.960000px;}
._2_c00001{margin-left:-11.520000px;}
._0_c00001{margin-left:-9.840000px;}
._23_c00001{margin-left:-8.592000px;}
._31_c00001{margin-left:-7.488000px;}
._35_c00001{margin-left:-4.320000px;}
._2b_c00001{margin-left:-3.240000px;}
._28_c00001{width:1.248000px;}
._27_c00001{width:2.472000px;}
._1c_c00001{width:3.888000px;}
._1d_c00001{width:5.544000px;}
._1f_c00001{width:6.792000px;}
._1b_c00001{width:7.848000px;}
._16_c00001{width:9.000000px;}
._22_c00001{width:10.104000px;}
._18_c00001{width:11.376000px;}
._19_c00001{width:13.032000px;}
._b_c00001{width:14.832000px;}
._17_c00001{width:16.200000px;}
._1e_c00001{width:18.504000px;}
._14_c00001{width:19.512000px;}
._7_c00001{width:21.456000px;}
._a_c00001{width:22.464000px;}
._9_c00001{width:24.552000px;}
._13_c00001{width:25.704000px;}
._f_c00001{width:26.856000px;}
._8_c00001{width:28.656000px;}
._11_c00001{width:29.808000px;}
._10_c00001{width:31.392000px;}
._2c_c00001{width:32.616000px;}
._e_c00001{width:33.696000px;}
._21_c00001{width:34.968000px;}
._3_c00001{width:36.432000px;}
._c_c00001{width:37.584000px;}
._12_c00001{width:39.312000px;}
._5_c00001{width:41.256000px;}
._d_c00001{width:43.128000px;}
._6_c00001{width:44.136000px;}
._15_c00001{width:46.008000px;}
._20_c00001{width:48.384000px;}
._1a_c00001{width:49.608000px;}
._2f_c00001{width:50.760000px;}
._26_c00001{width:52.512000px;}
._32_c00001{width:54.720000px;}
._2a_c00001{width:55.776000px;}
._30_c00001{width:65.304000px;}
._36_c00001{width:76.140000px;}
._4_c00001{width:91.392000px;}
._29_c00001{width:163.584000px;}
._24_c00001{width:170.928000px;}
._2d_c00001{width:216.840000px;}
._25_c00001{width:296.784000px;}
._37_c00001{width:2218.860000px;}
.fc2_c00001{color:transparent;}
.fc1_c00001{color:rgb(128,128,128);}
.fc0_c00001{color:rgb(0,0,0);}
.fs4_c00001{font-size:24.000000px;}
.fs3_c00001{font-size:36.000000px;}
.fs6_c00001{font-size:45.000000px;}
.fs8_c00001{font-size:48.000000px;}
.fs2_c00001{font-size:60.000000px;}
.fs1_c00001{font-size:72.000000px;}
.fs5_c00001{font-size:84.000000px;}
.fs7_c00001{font-size:87.000000px;}
.fs0_c00001{font-size:240.000000px;}
.y0_c00001{bottom:0.000000px;}
.y19_c00001{bottom:3.105000px;}
.y18_c00001{bottom:7.228355px;}
.y17_c00001{bottom:83.235000px;}
.y16_c00001{bottom:91.035000px;}
.y15_c00001{bottom:112.635000px;}
.y14_c00001{bottom:140.085000px;}
.y13_c00001{bottom:238.185000px;}
.y12_c00001{bottom:577.035000px;}
.y11_c00001{bottom:659.385000px;}
.y10_c00001{bottom:684.735000px;}
.yf_c00001{bottom:743.085000px;}
.ye_c00001{bottom:775.785000px;}
.yd_c00001{bottom:810.585000px;}
.yc_c00001{bottom:842.985000px;}
.yb_c00001{bottom:875.685000px;}
.ya_c00001{bottom:908.535000px;}
.y9_c00001{bottom:941.235000px;}
.y8_c00001{bottom:974.685000px;}
.y7_c00001{bottom:1006.335000px;}
.y6_c00001{bottom:1041.135000px;}
.y5_c00001{bottom:1074.135000px;}
.y4_c00001{bottom:1109.685000px;}
.y3_c00001{bottom:1140.285000px;}
.y2_c00001{bottom:1172.835000px;}
.y1_c00001{bottom:1234.485000px;}
.ha_c00001{height:13.200074px;}
.h8_c00001{height:30.386719px;}
.hb_c00001{height:43.804688px;}
.h6_c00001{height:45.580078px;}
.h5_c00001{height:58.857422px;}
.h3_c00001{height:84.269531px;}
.h4_c00001{height:91.160156px;}
.h7_c00001{height:98.314453px;}
.h9_c00001{height:110.151855px;}
.h2_c00001{height:241.875000px;}
.h1_c00001{height:1347.750000px;}
.h0_c00001{height:1347.825000px;}
.w1_c00001{width:104.875500px;}
.w0_c00001{width:840.750000px;}
.x0_c00001{left:0.000000px;}
.xc_c00001{left:57.450000px;}
.x8_c00001{left:59.100000px;}
.x6_c00001{left:60.750000px;}
.x2_c00001{left:78.600000px;}
.x3_c00001{left:84.000000px;}
.x4_c00001{left:85.050000px;}
.x5_c00001{left:86.700000px;}
.x9_c00001{left:167.400000px;}
.xa_c00001{left:234.000000px;}
.x1_c00001{left:278.100000px;}
.x7_c00001{left:304.200000px;}
.xb_c00001{left:325.800000px;}
.x10_c00001{left:372.189240px;}
.xf_c00001{left:382.350000px;}
.xe_c00001{left:742.950000px;}
.xd_c00001{left:788.700000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:11.733333pt;}
.ls10_c00001{letter-spacing:-8.000000pt;}
.lsf_c00001{letter-spacing:0.000000pt;}
.lsb_c00001{letter-spacing:5.856000pt;}
.ls13_c00001{letter-spacing:8.000000pt;}
.ls12_c00001{letter-spacing:13.333333pt;}
.lsa_c00001{letter-spacing:14.570667pt;}
.ls3_c00001{letter-spacing:15.189333pt;}
.ls7_c00001{letter-spacing:18.069333pt;}
.ls6_c00001{letter-spacing:18.090667pt;}
.ls11_c00001{letter-spacing:18.666667pt;}
.ls14_c00001{letter-spacing:21.333333pt;}
.ls2_c00001{letter-spacing:23.936000pt;}
.lsd_c00001{letter-spacing:24.821333pt;}
.ls0_c00001{letter-spacing:25.109333pt;}
.ls1_c00001{letter-spacing:26.005333pt;}
.ls4_c00001{letter-spacing:29.333333pt;}
.ls5_c00001{letter-spacing:33.002667pt;}
.ls8_c00001{letter-spacing:33.536000pt;}
.lsc_c00001{letter-spacing:41.888000pt;}
.ls9_c00001{letter-spacing:46.869333pt;}
.lse_c00001{letter-spacing:80.000000pt;}
.ws0_c00001{word-spacing:-186.666667pt;}
.ws4_c00001{word-spacing:-44.757333pt;}
.ws3_c00001{word-spacing:-34.090667pt;}
.ws5_c00001{word-spacing:-28.757333pt;}
.wsd_c00001{word-spacing:-18.637333pt;}
.ws6_c00001{word-spacing:-17.664000pt;}
.ws7_c00001{word-spacing:-15.424000pt;}
.wsc_c00001{word-spacing:-14.208000pt;}
.wsb_c00001{word-spacing:-7.712000pt;}
.wse_c00001{word-spacing:0.000000pt;}
.ws2_c00001{word-spacing:2.048000pt;}
.ws9_c00001{word-spacing:7.104000pt;}
.ws1_c00001{word-spacing:8.021333pt;}
.ws8_c00001{word-spacing:11.626667pt;}
.wsa_c00001{word-spacing:78.720000pt;}
._3d_c00001{margin-left:-56.762667pt;}
._3e_c00001{margin-left:-29.696000pt;}
._3a_c00001{margin-left:-26.368000pt;}
._38_c00001{margin-left:-24.480000pt;}
._39_c00001{margin-left:-21.536000pt;}
._34_c00001{margin-left:-18.624000pt;}
._3b_c00001{margin-left:-17.600000pt;}
._3c_c00001{margin-left:-15.968000pt;}
._33_c00001{margin-left:-14.176000pt;}
._2e_c00001{margin-left:-12.928000pt;}
._1_c00001{margin-left:-11.520000pt;}
._2_c00001{margin-left:-10.240000pt;}
._0_c00001{margin-left:-8.746667pt;}
._23_c00001{margin-left:-7.637333pt;}
._31_c00001{margin-left:-6.656000pt;}
._35_c00001{margin-left:-3.840000pt;}
._2b_c00001{margin-left:-2.880000pt;}
._28_c00001{width:1.109333pt;}
._27_c00001{width:2.197333pt;}
._1c_c00001{width:3.456000pt;}
._1d_c00001{width:4.928000pt;}
._1f_c00001{width:6.037333pt;}
._1b_c00001{width:6.976000pt;}
._16_c00001{width:8.000000pt;}
._22_c00001{width:8.981333pt;}
._18_c00001{width:10.112000pt;}
._19_c00001{width:11.584000pt;}
._b_c00001{width:13.184000pt;}
._17_c00001{width:14.400000pt;}
._1e_c00001{width:16.448000pt;}
._14_c00001{width:17.344000pt;}
._7_c00001{width:19.072000pt;}
._a_c00001{width:19.968000pt;}
._9_c00001{width:21.824000pt;}
._13_c00001{width:22.848000pt;}
._f_c00001{width:23.872000pt;}
._8_c00001{width:25.472000pt;}
._11_c00001{width:26.496000pt;}
._10_c00001{width:27.904000pt;}
._2c_c00001{width:28.992000pt;}
._e_c00001{width:29.952000pt;}
._21_c00001{width:31.082667pt;}
._3_c00001{width:32.384000pt;}
._c_c00001{width:33.408000pt;}
._12_c00001{width:34.944000pt;}
._5_c00001{width:36.672000pt;}
._d_c00001{width:38.336000pt;}
._6_c00001{width:39.232000pt;}
._15_c00001{width:40.896000pt;}
._20_c00001{width:43.008000pt;}
._1a_c00001{width:44.096000pt;}
._2f_c00001{width:45.120000pt;}
._26_c00001{width:46.677333pt;}
._32_c00001{width:48.640000pt;}
._2a_c00001{width:49.578667pt;}
._30_c00001{width:58.048000pt;}
._36_c00001{width:67.680000pt;}
._4_c00001{width:81.237333pt;}
._29_c00001{width:145.408000pt;}
._24_c00001{width:151.936000pt;}
._2d_c00001{width:192.746667pt;}
._25_c00001{width:263.808000pt;}
._37_c00001{width:1972.320000pt;}
.fs4_c00001{font-size:21.333333pt;}
.fs3_c00001{font-size:32.000000pt;}
.fs6_c00001{font-size:40.000000pt;}
.fs8_c00001{font-size:42.666667pt;}
.fs2_c00001{font-size:53.333333pt;}
.fs1_c00001{font-size:64.000000pt;}
.fs5_c00001{font-size:74.666667pt;}
.fs7_c00001{font-size:77.333333pt;}
.fs0_c00001{font-size:213.333333pt;}
.y0_c00001{bottom:0.000000pt;}
.y19_c00001{bottom:2.760000pt;}
.y18_c00001{bottom:6.425204pt;}
.y17_c00001{bottom:73.986667pt;}
.y16_c00001{bottom:80.920000pt;}
.y15_c00001{bottom:100.120000pt;}
.y14_c00001{bottom:124.520000pt;}
.y13_c00001{bottom:211.720000pt;}
.y12_c00001{bottom:512.920000pt;}
.y11_c00001{bottom:586.120000pt;}
.y10_c00001{bottom:608.653333pt;}
.yf_c00001{bottom:660.520000pt;}
.ye_c00001{bottom:689.586667pt;}
.yd_c00001{bottom:720.520000pt;}
.yc_c00001{bottom:749.320000pt;}
.yb_c00001{bottom:778.386667pt;}
.ya_c00001{bottom:807.586667pt;}
.y9_c00001{bottom:836.653333pt;}
.y8_c00001{bottom:866.386667pt;}
.y7_c00001{bottom:894.520000pt;}
.y6_c00001{bottom:925.453333pt;}
.y5_c00001{bottom:954.786667pt;}
.y4_c00001{bottom:986.386667pt;}
.y3_c00001{bottom:1013.586667pt;}
.y2_c00001{bottom:1042.520000pt;}
.y1_c00001{bottom:1097.320000pt;}
.ha_c00001{height:11.733399pt;}
.h8_c00001{height:27.010417pt;}
.hb_c00001{height:38.937500pt;}
.h6_c00001{height:40.515625pt;}
.h5_c00001{height:52.317708pt;}
.h3_c00001{height:74.906250pt;}
.h4_c00001{height:81.031250pt;}
.h7_c00001{height:87.390625pt;}
.h9_c00001{height:97.912760pt;}
.h2_c00001{height:215.000000pt;}
.h1_c00001{height:1198.000000pt;}
.h0_c00001{height:1198.066667pt;}
.w1_c00001{width:93.222667pt;}
.w0_c00001{width:747.333333pt;}
.x0_c00001{left:0.000000pt;}
.xc_c00001{left:51.066667pt;}
.x8_c00001{left:52.533333pt;}
.x6_c00001{left:54.000000pt;}
.x2_c00001{left:69.866667pt;}
.x3_c00001{left:74.666667pt;}
.x4_c00001{left:75.600000pt;}
.x5_c00001{left:77.066667pt;}
.x9_c00001{left:148.800000pt;}
.xa_c00001{left:208.000000pt;}
.x1_c00001{left:247.200000pt;}
.x7_c00001{left:270.400000pt;}
.xb_c00001{left:289.600000pt;}
.x10_c00001{left:330.834880pt;}
.xf_c00001{left:339.866667pt;}
.xe_c00001{left:660.400000pt;}
.xd_c00001{left:701.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_879c0e7ab9055d77d71f556d.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;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:ff2_c00002;src:url('chunks/assets/font_9e035992ed1164a561d0828e.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_6762ee7d34d33228b7330c72.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_f09b6324b48e2d143b6f572b.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_9a39d2e3ec276162185eaa0f.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00002;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00002{font-family:ff6_c00002;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.v2_c00002{vertical-align:2.400000px;}
.v1_c00002{vertical-align:7.800000px;}
.ls2_c00002{letter-spacing:-3.000000px;}
.ls4_c00002{letter-spacing:0.000000px;}
.ls3_c00002{letter-spacing:12.000000px;}
.ls0_c00002{letter-spacing:16.104000px;}
.ls1_c00002{letter-spacing:63.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:-117.000000px;}
.ws4_c00002{word-spacing:-23.136000px;}
.ws3_c00002{word-spacing:-20.244000px;}
.ws2_c00002{word-spacing:-15.984000px;}
.ws5_c00002{word-spacing:0.000000px;}
.ws1_c00002{word-spacing:934.431000px;}
._21_c00002{margin-left:-41.376000px;}
._36_c00002{margin-left:-25.728000px;}
._32_c00002{margin-left:-22.464000px;}
._1a_c00002{margin-left:-18.882000px;}
._19_c00002{margin-left:-11.220000px;}
._28_c00002{margin-left:-9.018000px;}
._6_c00002{margin-left:-7.308000px;}
._2c_c00002{margin-left:-5.982000px;}
._27_c00002{margin-left:-4.818000px;}
._f_c00002{margin-left:-2.784000px;}
._1b_c00002{margin-left:-1.296000px;}
._e_c00002{width:1.248000px;}
._d_c00002{width:2.304000px;}
._4_c00002{width:3.366000px;}
._12_c00002{width:5.088000px;}
._a_c00002{width:6.144000px;}
._17_c00002{width:7.344000px;}
._8_c00002{width:8.352000px;}
._3_c00002{width:10.302000px;}
._1c_c00002{width:11.328000px;}
._b_c00002{width:12.480000px;}
._7_c00002{width:14.112000px;}
._2b_c00002{width:15.456000px;}
._9_c00002{width:16.608000px;}
._23_c00002{width:17.610000px;}
._18_c00002{width:19.050000px;}
._24_c00002{width:21.984000px;}
._14_c00002{width:24.480000px;}
._2d_c00002{width:25.542000px;}
._3c_c00002{width:26.724000px;}
._11_c00002{width:28.218000px;}
._1f_c00002{width:29.952000px;}
._10_c00002{width:31.392000px;}
._25_c00002{width:32.526000px;}
._16_c00002{width:34.464000px;}
._15_c00002{width:36.342000px;}
._20_c00002{width:38.064000px;}
._2a_c00002{width:39.186000px;}
._13_c00002{width:40.506000px;}
._5_c00002{width:41.976000px;}
._2f_c00002{width:43.506000px;}
._29_c00002{width:45.330000px;}
._26_c00002{width:47.700000px;}
._30_c00002{width:50.586000px;}
._1e_c00002{width:55.872000px;}
._37_c00002{width:60.000000px;}
._c_c00002{width:61.632000px;}
._0_c00002{width:75.120000px;}
._1_c00002{width:78.720000px;}
._2_c00002{width:84.240000px;}
._3d_c00002{width:94.656000px;}
._38_c00002{width:117.858000px;}
._2e_c00002{width:161.220000px;}
._39_c00002{width:173.472000px;}
._3b_c00002{width:177.312000px;}
._22_c00002{width:178.752000px;}
._34_c00002{width:180.606000px;}
._3a_c00002{width:236.124000px;}
._33_c00002{width:448.800000px;}
._35_c00002{width:800.502000px;}
._31_c00002{width:1227.684000px;}
._1d_c00002{width:1358.100000px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(128,128,128);}
.fc0_c00002{color:rgb(0,0,0);}
.fs4_c00002{font-size:36.000000px;}
.fs6_c00002{font-size:48.000000px;}
.fs5_c00002{font-size:84.000000px;}
.fs2_c00002{font-size:87.000000px;}
.fs3_c00002{font-size:96.000000px;}
.fs1_c00002{font-size:102.000000px;}
.fs0_c00002{font-size:240.000000px;}
.y0_c00002{bottom:0.000000px;}
.y21_c00002{bottom:3.105000px;}
.y20_c00002{bottom:7.228371px;}
.y1f_c00002{bottom:120.915000px;}
.y1e_c00002{bottom:186.765000px;}
.y1d_c00002{bottom:220.815000px;}
.y1c_c00002{bottom:254.265000px;}
.y1b_c00002{bottom:288.315000px;}
.y1a_c00002{bottom:322.365000px;}
.y19_c00002{bottom:355.815000px;}
.y18_c00002{bottom:390.915000px;}
.y17_c00002{bottom:422.565000px;}
.y16_c00002{bottom:459.315000px;}
.y15_c00002{bottom:490.065000px;}
.y14_c00002{bottom:524.115000px;}
.y13_c00002{bottom:557.565000px;}
.y12_c00002{bottom:590.415000px;}
.y11_c00002{bottom:624.165000px;}
.y10_c00002{bottom:656.865000px;}
.yf_c00002{bottom:691.515000px;}
.ye_c00002{bottom:722.265000px;}
.yd_c00002{bottom:757.815000px;}
.yc_c00002{bottom:791.865000px;}
.yb_c00002{bottom:825.915000px;}
.ya_c00002{bottom:855.915000px;}
.y9_c00002{bottom:890.115000px;}
.y8_c00002{bottom:925.065000px;}
.y7_c00002{bottom:958.215000px;}
.y6_c00002{bottom:992.265000px;}
.y5_c00002{bottom:1024.365000px;}
.y4_c00002{bottom:1058.715000px;}
.y3_c00002{bottom:1091.265000px;}
.y2_c00002{bottom:1122.615000px;}
.y1_c00002{bottom:1213.965000px;}
.h6_c00002{height:13.200074px;}
.h7_c00002{height:43.804688px;}
.h4_c00002{height:121.546875px;}
.h5_c00002{height:129.143555px;}
.h3_c00002{height:129.346875px;}
.h2_c00002{height:241.875000px;}
.h0_c00002{height:1395.375000px;}
.h1_c00002{height:1395.750000px;}
.w2_c00002{width:104.875500px;}
.w0_c00002{width:878.025000px;}
.w1_c00002{width:878.250000px;}
.x0_c00002{left:0.000000px;}
.x7_c00002{left:52.050000px;}
.x5_c00002{left:53.100000px;}
.xa_c00002{left:54.750000px;}
.x9_c00002{left:55.800000px;}
.xc_c00002{left:57.000000px;}
.x2_c00002{left:83.400000px;}
.x1_c00002{left:85.350000px;}
.x6_c00002{left:104.400000px;}
.x8_c00002{left:106.050000px;}
.xb_c00002{left:109.350000px;}
.xe_c00002{left:390.826721px;}
.x3_c00002{left:410.700000px;}
.x4_c00002{left:440.850000px;}
.xd_c00002{left:560.250000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.v2_c00002{vertical-align:2.133333pt;}
.v1_c00002{vertical-align:6.933333pt;}
.ls2_c00002{letter-spacing:-2.666667pt;}
.ls4_c00002{letter-spacing:0.000000pt;}
.ls3_c00002{letter-spacing:10.666667pt;}
.ls0_c00002{letter-spacing:14.314667pt;}
.ls1_c00002{letter-spacing:56.000000pt;}
.ws0_c00002{word-spacing:-104.000000pt;}
.ws4_c00002{word-spacing:-20.565333pt;}
.ws3_c00002{word-spacing:-17.994667pt;}
.ws2_c00002{word-spacing:-14.208000pt;}
.ws5_c00002{word-spacing:0.000000pt;}
.ws1_c00002{word-spacing:830.605333pt;}
._21_c00002{margin-left:-36.778667pt;}
._36_c00002{margin-left:-22.869333pt;}
._32_c00002{margin-left:-19.968000pt;}
._1a_c00002{margin-left:-16.784000pt;}
._19_c00002{margin-left:-9.973333pt;}
._28_c00002{margin-left:-8.016000pt;}
._6_c00002{margin-left:-6.496000pt;}
._2c_c00002{margin-left:-5.317333pt;}
._27_c00002{margin-left:-4.282667pt;}
._f_c00002{margin-left:-2.474667pt;}
._1b_c00002{margin-left:-1.152000pt;}
._e_c00002{width:1.109333pt;}
._d_c00002{width:2.048000pt;}
._4_c00002{width:2.992000pt;}
._12_c00002{width:4.522667pt;}
._a_c00002{width:5.461333pt;}
._17_c00002{width:6.528000pt;}
._8_c00002{width:7.424000pt;}
._3_c00002{width:9.157333pt;}
._1c_c00002{width:10.069333pt;}
._b_c00002{width:11.093333pt;}
._7_c00002{width:12.544000pt;}
._2b_c00002{width:13.738667pt;}
._9_c00002{width:14.762667pt;}
._23_c00002{width:15.653333pt;}
._18_c00002{width:16.933333pt;}
._24_c00002{width:19.541333pt;}
._14_c00002{width:21.760000pt;}
._2d_c00002{width:22.704000pt;}
._3c_c00002{width:23.754667pt;}
._11_c00002{width:25.082667pt;}
._1f_c00002{width:26.624000pt;}
._10_c00002{width:27.904000pt;}
._25_c00002{width:28.912000pt;}
._16_c00002{width:30.634667pt;}
._15_c00002{width:32.304000pt;}
._20_c00002{width:33.834667pt;}
._2a_c00002{width:34.832000pt;}
._13_c00002{width:36.005333pt;}
._5_c00002{width:37.312000pt;}
._2f_c00002{width:38.672000pt;}
._29_c00002{width:40.293333pt;}
._26_c00002{width:42.400000pt;}
._30_c00002{width:44.965333pt;}
._1e_c00002{width:49.664000pt;}
._37_c00002{width:53.333333pt;}
._c_c00002{width:54.784000pt;}
._0_c00002{width:66.773333pt;}
._1_c00002{width:69.973333pt;}
._2_c00002{width:74.880000pt;}
._3d_c00002{width:84.138667pt;}
._38_c00002{width:104.762667pt;}
._2e_c00002{width:143.306667pt;}
._39_c00002{width:154.197333pt;}
._3b_c00002{width:157.610667pt;}
._22_c00002{width:158.890667pt;}
._34_c00002{width:160.538667pt;}
._3a_c00002{width:209.888000pt;}
._33_c00002{width:398.933333pt;}
._35_c00002{width:711.557333pt;}
._31_c00002{width:1091.274667pt;}
._1d_c00002{width:1207.200000pt;}
.fs4_c00002{font-size:32.000000pt;}
.fs6_c00002{font-size:42.666667pt;}
.fs5_c00002{font-size:74.666667pt;}
.fs2_c00002{font-size:77.333333pt;}
.fs3_c00002{font-size:85.333333pt;}
.fs1_c00002{font-size:90.666667pt;}
.fs0_c00002{font-size:213.333333pt;}
.y0_c00002{bottom:0.000000pt;}
.y21_c00002{bottom:2.760000pt;}
.y20_c00002{bottom:6.425219pt;}
.y1f_c00002{bottom:107.480000pt;}
.y1e_c00002{bottom:166.013333pt;}
.y1d_c00002{bottom:196.280000pt;}
.y1c_c00002{bottom:226.013333pt;}
.y1b_c00002{bottom:256.280000pt;}
.y1a_c00002{bottom:286.546667pt;}
.y19_c00002{bottom:316.280000pt;}
.y18_c00002{bottom:347.480000pt;}
.y17_c00002{bottom:375.613333pt;}
.y16_c00002{bottom:408.280000pt;}
.y15_c00002{bottom:435.613333pt;}
.y14_c00002{bottom:465.880000pt;}
.y13_c00002{bottom:495.613333pt;}
.y12_c00002{bottom:524.813333pt;}
.y11_c00002{bottom:554.813333pt;}
.y10_c00002{bottom:583.880000pt;}
.yf_c00002{bottom:614.680000pt;}
.ye_c00002{bottom:642.013333pt;}
.yd_c00002{bottom:673.613333pt;}
.yc_c00002{bottom:703.880000pt;}
.yb_c00002{bottom:734.146667pt;}
.ya_c00002{bottom:760.813333pt;}
.y9_c00002{bottom:791.213333pt;}
.y8_c00002{bottom:822.280000pt;}
.y7_c00002{bottom:851.746667pt;}
.y6_c00002{bottom:882.013333pt;}
.y5_c00002{bottom:910.546667pt;}
.y4_c00002{bottom:941.080000pt;}
.y3_c00002{bottom:970.013333pt;}
.y2_c00002{bottom:997.880000pt;}
.y1_c00002{bottom:1079.080000pt;}
.h6_c00002{height:11.733399pt;}
.h7_c00002{height:38.937500pt;}
.h4_c00002{height:108.041667pt;}
.h5_c00002{height:114.794271pt;}
.h3_c00002{height:114.975000pt;}
.h2_c00002{height:215.000000pt;}
.h0_c00002{height:1240.333333pt;}
.h1_c00002{height:1240.666667pt;}
.w2_c00002{width:93.222667pt;}
.w0_c00002{width:780.466667pt;}
.w1_c00002{width:780.666667pt;}
.x0_c00002{left:0.000000pt;}
.x7_c00002{left:46.266667pt;}
.x5_c00002{left:47.200000pt;}
.xa_c00002{left:48.666667pt;}
.x9_c00002{left:49.600000pt;}
.xc_c00002{left:50.666667pt;}
.x2_c00002{left:74.133333pt;}
.x1_c00002{left:75.866667pt;}
.x6_c00002{left:92.800000pt;}
.x8_c00002{left:94.266667pt;}
.xb_c00002{left:97.200000pt;}
.xe_c00002{left:347.401530pt;}
.x3_c00002{left:365.066667pt;}
.x4_c00002{left:391.866667pt;}
.xd_c00002{left:498.000000pt;}
}





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

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_4998b4220c2fc60d4834091c.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;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:ff2_c00003;src:url('chunks/assets/font_fdaa23b2fc615a60f3f41b8e.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_7bd0dac52a8c3e69b916cdc1.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_760ed27bb11960953e54ab4c.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_a0d01259a1b9e736fb926fb8.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00003;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00003{font-family:ff6_c00003;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls1_c00003{letter-spacing:-3.000000px;}
.ls2_c00003{letter-spacing:0.000000px;}
.ls3_c00003{letter-spacing:6.000000px;}
.ls0_c00003{letter-spacing:10.920000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:-117.000000px;}
.ws2_c00003{word-spacing:-63.504000px;}
.ws3_c00003{word-spacing:-44.772000px;}
.ws1_c00003{word-spacing:-22.776000px;}
.ws4_c00003{word-spacing:0.000000px;}
._31_c00003{margin-left:-64.062000px;}
._20_c00003{margin-left:-20.640000px;}
._5_c00003{margin-left:-15.840000px;}
._1_c00003{margin-left:-14.640000px;}
._2_c00003{margin-left:-13.200000px;}
._0_c00003{margin-left:-12.000000px;}
._3_c00003{margin-left:-10.320000px;}
._18_c00003{margin-left:-8.925000px;}
._4_c00003{margin-left:-7.680000px;}
._a_c00003{margin-left:-6.015000px;}
._22_c00003{margin-left:-3.768000px;}
._8_c00003{margin-left:-2.418000px;}
._6_c00003{margin-left:-1.155000px;}
._d_c00003{width:1.155000px;}
._17_c00003{width:2.469000px;}
._1b_c00003{width:3.705000px;}
._13_c00003{width:5.184000px;}
._11_c00003{width:6.594000px;}
._1e_c00003{width:7.743000px;}
._10_c00003{width:9.438000px;}
._19_c00003{width:10.752000px;}
._1d_c00003{width:12.480000px;}
._16_c00003{width:13.884000px;}
._15_c00003{width:15.288000px;}
._b_c00003{width:16.695000px;}
._1c_c00003{width:18.825000px;}
._14_c00003{width:20.013000px;}
._1a_c00003{width:21.504000px;}
._c_c00003{width:22.710000px;}
._2b_c00003{width:24.228000px;}
._23_c00003{width:25.440000px;}
._9_c00003{width:27.852000px;}
._12_c00003{width:29.295000px;}
._2a_c00003{width:30.639000px;}
._24_c00003{width:32.205000px;}
._26_c00003{width:33.996000px;}
._25_c00003{width:35.418000px;}
._27_c00003{width:37.128000px;}
._f_c00003{width:39.990000px;}
._33_c00003{width:41.340000px;}
._7_c00003{width:42.390000px;}
._2f_c00003{width:43.743000px;}
._28_c00003{width:45.138000px;}
._e_c00003{width:47.250000px;}
._29_c00003{width:49.764000px;}
._2d_c00003{width:51.936000px;}
._30_c00003{width:54.144000px;}
._1f_c00003{width:58.434000px;}
._34_c00003{width:65.121000px;}
._35_c00003{width:71.118000px;}
._2e_c00003{width:276.690000px;}
._2c_c00003{width:362.442000px;}
._32_c00003{width:368.832000px;}
._21_c00003{width:636.264000px;}
.fc2_c00003{color:transparent;}
.fc1_c00003{color:rgb(128,128,128);}
.fc0_c00003{color:rgb(0,0,0);}
.fs5_c00003{font-size:48.000000px;}
.fs2_c00003{font-size:78.000000px;}
.fs4_c00003{font-size:84.000000px;}
.fs3_c00003{font-size:96.000000px;}
.fs1_c00003{font-size:105.000000px;}
.fs0_c00003{font-size:240.000000px;}
.y0_c00003{bottom:0.000000px;}
.y26_c00003{bottom:3.105000px;}
.y25_c00003{bottom:7.228371px;}
.y24_c00003{bottom:120.615000px;}
.y23_c00003{bottom:155.715000px;}
.y22_c00003{bottom:189.765000px;}
.y21_c00003{bottom:223.515000px;}
.y20_c00003{bottom:257.565000px;}
.y4_c00003{bottom:289.965000px;}
.y1f_c00003{bottom:290.565000px;}
.y1e_c00003{bottom:325.665000px;}
.y1d_c00003{bottom:358.515000px;}
.y1c_c00003{bottom:392.865000px;}
.y1b_c00003{bottom:426.615000px;}
.y1a_c00003{bottom:460.065000px;}
.y19_c00003{bottom:493.065000px;}
.y18_c00003{bottom:526.815000px;}
.y17_c00003{bottom:560.265000px;}
.y16_c00003{bottom:593.115000px;}
.y15_c00003{bottom:626.115000px;}
.y14_c00003{bottom:659.565000px;}
.y13_c00003{bottom:692.865000px;}
.y12_c00003{bottom:726.015000px;}
.y11_c00003{bottom:759.465000px;}
.y10_c00003{bottom:792.915000px;}
.yf_c00003{bottom:825.915000px;}
.ye_c00003{bottom:858.315000px;}
.yd_c00003{bottom:892.065000px;}
.yc_c00003{bottom:925.065000px;}
.yb_c00003{bottom:957.615000px;}
.ya_c00003{bottom:990.615000px;}
.y9_c00003{bottom:1023.765000px;}
.y8_c00003{bottom:1057.065000px;}
.y7_c00003{bottom:1091.265000px;}
.y6_c00003{bottom:1123.665000px;}
.y3_c00003{bottom:1128.315000px;}
.y5_c00003{bottom:1156.965000px;}
.y2_c00003{bottom:1158.315000px;}
.y1_c00003{bottom:1237.065000px;}
.h5_c00003{height:13.200074px;}
.h6_c00003{height:43.804688px;}
.h4_c00003{height:121.546875px;}
.h3_c00003{height:132.941895px;}
.h2_c00003{height:241.875000px;}
.h0_c00003{height:1354.875000px;}
.h1_c00003{height:1355.250000px;}
.w2_c00003{width:104.875500px;}
.w0_c00003{width:845.625000px;}
.w1_c00003{width:846.000000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:28.350000px;}
.x3_c00003{left:40.200000px;}
.x9_c00003{left:244.350000px;}
.xb_c00003{left:254.550000px;}
.xa_c00003{left:255.600000px;}
.x8_c00003{left:257.400000px;}
.x7_c00003{left:258.900000px;}
.x6_c00003{left:288.150000px;}
.xc_c00003{left:301.650000px;}
.x1_c00003{left:320.250000px;}
.xd_c00003{left:374.626740px;}
.x4_c00003{left:443.700000px;}
.x5_c00003{left:457.650000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls1_c00003{letter-spacing:-2.666667pt;}
.ls2_c00003{letter-spacing:0.000000pt;}
.ls3_c00003{letter-spacing:5.333333pt;}
.ls0_c00003{letter-spacing:9.706667pt;}
.ws0_c00003{word-spacing:-104.000000pt;}
.ws2_c00003{word-spacing:-56.448000pt;}
.ws3_c00003{word-spacing:-39.797333pt;}
.ws1_c00003{word-spacing:-20.245333pt;}
.ws4_c00003{word-spacing:0.000000pt;}
._31_c00003{margin-left:-56.944000pt;}
._20_c00003{margin-left:-18.346667pt;}
._5_c00003{margin-left:-14.080000pt;}
._1_c00003{margin-left:-13.013333pt;}
._2_c00003{margin-left:-11.733333pt;}
._0_c00003{margin-left:-10.666667pt;}
._3_c00003{margin-left:-9.173333pt;}
._18_c00003{margin-left:-7.933333pt;}
._4_c00003{margin-left:-6.826667pt;}
._a_c00003{margin-left:-5.346667pt;}
._22_c00003{margin-left:-3.349333pt;}
._8_c00003{margin-left:-2.149333pt;}
._6_c00003{margin-left:-1.026667pt;}
._d_c00003{width:1.026667pt;}
._17_c00003{width:2.194667pt;}
._1b_c00003{width:3.293333pt;}
._13_c00003{width:4.608000pt;}
._11_c00003{width:5.861333pt;}
._1e_c00003{width:6.882667pt;}
._10_c00003{width:8.389333pt;}
._19_c00003{width:9.557333pt;}
._1d_c00003{width:11.093333pt;}
._16_c00003{width:12.341333pt;}
._15_c00003{width:13.589333pt;}
._b_c00003{width:14.840000pt;}
._1c_c00003{width:16.733333pt;}
._14_c00003{width:17.789333pt;}
._1a_c00003{width:19.114667pt;}
._c_c00003{width:20.186667pt;}
._2b_c00003{width:21.536000pt;}
._23_c00003{width:22.613333pt;}
._9_c00003{width:24.757333pt;}
._12_c00003{width:26.040000pt;}
._2a_c00003{width:27.234667pt;}
._24_c00003{width:28.626667pt;}
._26_c00003{width:30.218667pt;}
._25_c00003{width:31.482667pt;}
._27_c00003{width:33.002667pt;}
._f_c00003{width:35.546667pt;}
._33_c00003{width:36.746667pt;}
._7_c00003{width:37.680000pt;}
._2f_c00003{width:38.882667pt;}
._28_c00003{width:40.122667pt;}
._e_c00003{width:42.000000pt;}
._29_c00003{width:44.234667pt;}
._2d_c00003{width:46.165333pt;}
._30_c00003{width:48.128000pt;}
._1f_c00003{width:51.941333pt;}
._34_c00003{width:57.885333pt;}
._35_c00003{width:63.216000pt;}
._2e_c00003{width:245.946667pt;}
._2c_c00003{width:322.170667pt;}
._32_c00003{width:327.850667pt;}
._21_c00003{width:565.568000pt;}
.fs5_c00003{font-size:42.666667pt;}
.fs2_c00003{font-size:69.333333pt;}
.fs4_c00003{font-size:74.666667pt;}
.fs3_c00003{font-size:85.333333pt;}
.fs1_c00003{font-size:93.333333pt;}
.fs0_c00003{font-size:213.333333pt;}
.y0_c00003{bottom:0.000000pt;}
.y26_c00003{bottom:2.760000pt;}
.y25_c00003{bottom:6.425219pt;}
.y24_c00003{bottom:107.213333pt;}
.y23_c00003{bottom:138.413333pt;}
.y22_c00003{bottom:168.680000pt;}
.y21_c00003{bottom:198.680000pt;}
.y20_c00003{bottom:228.946667pt;}
.y4_c00003{bottom:257.746667pt;}
.y1f_c00003{bottom:258.280000pt;}
.y1e_c00003{bottom:289.480000pt;}
.y1d_c00003{bottom:318.680000pt;}
.y1c_c00003{bottom:349.213333pt;}
.y1b_c00003{bottom:379.213333pt;}
.y1a_c00003{bottom:408.946667pt;}
.y19_c00003{bottom:438.280000pt;}
.y18_c00003{bottom:468.280000pt;}
.y17_c00003{bottom:498.013333pt;}
.y16_c00003{bottom:527.213333pt;}
.y15_c00003{bottom:556.546667pt;}
.y14_c00003{bottom:586.280000pt;}
.y13_c00003{bottom:615.880000pt;}
.y12_c00003{bottom:645.346667pt;}
.y11_c00003{bottom:675.080000pt;}
.y10_c00003{bottom:704.813333pt;}
.yf_c00003{bottom:734.146667pt;}
.ye_c00003{bottom:762.946667pt;}
.yd_c00003{bottom:792.946667pt;}
.yc_c00003{bottom:822.280000pt;}
.yb_c00003{bottom:851.213333pt;}
.ya_c00003{bottom:880.546667pt;}
.y9_c00003{bottom:910.013333pt;}
.y8_c00003{bottom:939.613333pt;}
.y7_c00003{bottom:970.013333pt;}
.y6_c00003{bottom:998.813333pt;}
.y3_c00003{bottom:1002.946667pt;}
.y5_c00003{bottom:1028.413333pt;}
.y2_c00003{bottom:1029.613333pt;}
.y1_c00003{bottom:1099.613333pt;}
.h5_c00003{height:11.733399pt;}
.h6_c00003{height:38.937500pt;}
.h4_c00003{height:108.041667pt;}
.h3_c00003{height:118.170573pt;}
.h2_c00003{height:215.000000pt;}
.h0_c00003{height:1204.333333pt;}
.h1_c00003{height:1204.666667pt;}
.w2_c00003{width:93.222667pt;}
.w0_c00003{width:751.666667pt;}
.w1_c00003{width:752.000000pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:25.200000pt;}
.x3_c00003{left:35.733333pt;}
.x9_c00003{left:217.200000pt;}
.xb_c00003{left:226.266667pt;}
.xa_c00003{left:227.200000pt;}
.x8_c00003{left:228.800000pt;}
.x7_c00003{left:230.133333pt;}
.x6_c00003{left:256.133333pt;}
.xc_c00003{left:268.133333pt;}
.x1_c00003{left:284.666667pt;}
.xd_c00003{left:333.001546pt;}
.x4_c00003{left:394.400000pt;}
.x5_c00003{left:406.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6cb243e6fac42efcc07cbe17.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_56875ddc0210af0336570d57.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_0b7243f60016fa668ea0fabd.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_5e5e279aa5761c5541c1609a.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00004;src:url('chunks/assets/font_98dadf564126de77afa56f1a.woff2')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00004;src:url('chunks/assets/font_d8fdeb291df6ecb50c228d05.woff2')format("woff");}.ff7_c00004{font-family:ff7_c00004;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00004;src:url('chunks/assets/font_3847a3ee47e03ce9f034d68e.woff2')format("woff");}.ff8_c00004{font-family:ff8_c00004;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00004;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00004{font-family:ff9_c00004;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.v1_c00004{vertical-align:5.400000px;}
.ls3_c00004{letter-spacing:-12.000000px;}
.ls1_c00004{letter-spacing:0.000000px;}
.ls0_c00004{letter-spacing:6.000000px;}
.ls2_c00004{letter-spacing:15.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00004{word-spacing:-63.504000px;}
.ws1_c00004{word-spacing:-57.000000px;}
.ws0_c00004{word-spacing:-42.576000px;}
.ws5_c00004{word-spacing:-33.360000px;}
.ws2_c00004{word-spacing:-24.000000px;}
.ws4_c00004{word-spacing:-23.136000px;}
.ws6_c00004{word-spacing:0.000000px;}
._3c_c00004{margin-left:-50.592000px;}
._39_c00004{margin-left:-47.904000px;}
._2e_c00004{margin-left:-31.680000px;}
._27_c00004{margin-left:-30.240000px;}
._3a_c00004{margin-left:-24.864000px;}
._3b_c00004{margin-left:-23.616000px;}
._35_c00004{margin-left:-21.312000px;}
._31_c00004{margin-left:-17.664000px;}
._41_c00004{margin-left:-14.352000px;}
._4a_c00004{margin-left:-13.248000px;}
._2d_c00004{margin-left:-11.808000px;}
._33_c00004{margin-left:-10.560000px;}
._32_c00004{margin-left:-9.504000px;}
._48_c00004{margin-left:-7.872000px;}
._10_c00004{margin-left:-6.720000px;}
._11_c00004{margin-left:-5.184000px;}
._15_c00004{margin-left:-3.840000px;}
._f_c00004{margin-left:-2.688000px;}
._0_c00004{margin-left:-1.536000px;}
._c_c00004{width:1.152000px;}
._2_c00004{width:2.400000px;}
._7_c00004{width:3.552000px;}
._8_c00004{width:4.896000px;}
._6_c00004{width:6.048000px;}
._2f_c00004{width:7.056000px;}
._b_c00004{width:8.064000px;}
._5_c00004{width:9.312000px;}
._24_c00004{width:10.464000px;}
._a_c00004{width:11.808000px;}
._d_c00004{width:13.248000px;}
._28_c00004{width:15.264000px;}
._12_c00004{width:16.320000px;}
._e_c00004{width:18.144000px;}
._16_c00004{width:19.200000px;}
._20_c00004{width:21.408000px;}
._14_c00004{width:25.248000px;}
._2c_c00004{width:26.304000px;}
._23_c00004{width:28.224000px;}
._1c_c00004{width:29.280000px;}
._49_c00004{width:30.384000px;}
._1b_c00004{width:31.872000px;}
._3f_c00004{width:33.168000px;}
._30_c00004{width:34.368000px;}
._9_c00004{width:35.424000px;}
._2b_c00004{width:36.480000px;}
._1_c00004{width:37.536000px;}
._37_c00004{width:39.216000px;}
._1a_c00004{width:40.224000px;}
._4b_c00004{width:41.232000px;}
._13_c00004{width:42.336000px;}
._17_c00004{width:44.160000px;}
._26_c00004{width:45.216000px;}
._3_c00004{width:47.808000px;}
._47_c00004{width:49.440000px;}
._29_c00004{width:51.360000px;}
._19_c00004{width:52.512000px;}
._1d_c00004{width:54.336000px;}
._18_c00004{width:55.584000px;}
._2a_c00004{width:56.928000px;}
._42_c00004{width:58.800000px;}
._3d_c00004{width:65.280000px;}
._4_c00004{width:69.984000px;}
._46_c00004{width:71.823000px;}
._38_c00004{width:80.448000px;}
._22_c00004{width:82.368000px;}
._25_c00004{width:83.520000px;}
._40_c00004{width:92.784000px;}
._34_c00004{width:116.064000px;}
._45_c00004{width:159.936000px;}
._21_c00004{width:165.888000px;}
._36_c00004{width:247.968000px;}
._1e_c00004{width:257.856000px;}
._1f_c00004{width:408.096000px;}
._3e_c00004{width:488.208000px;}
._44_c00004{width:520.224000px;}
._43_c00004{width:537.360000px;}
._4c_c00004{width:904.203000px;}
.fc2_c00004{color:transparent;}
.fc1_c00004{color:rgb(128,128,128);}
.fc0_c00004{color:rgb(0,0,0);}
.fs3_c00004{font-size:24.000000px;}
.fs8_c00004{font-size:48.000000px;}
.fs4_c00004{font-size:60.000000px;}
.fs1_c00004{font-size:84.000000px;}
.fs7_c00004{font-size:93.000000px;}
.fs0_c00004{font-size:96.000000px;}
.fs2_c00004{font-size:102.000000px;}
.fs5_c00004{font-size:144.000000px;}
.fs6_c00004{font-size:159.000000px;}
.y0_c00004{bottom:0.000000px;}
.y23_c00004{bottom:3.105000px;}
.y22_c00004{bottom:7.228369px;}
.y21_c00004{bottom:98.220000px;}
.y20_c00004{bottom:133.920000px;}
.y1f_c00004{bottom:167.670000px;}
.y1e_c00004{bottom:200.820000px;}
.y1d_c00004{bottom:265.170000px;}
.y1c_c00004{bottom:316.170000px;}
.y1b_c00004{bottom:367.470000px;}
.y1a_c00004{bottom:418.770000px;}
.y19_c00004{bottom:469.170000px;}
.y16_c00004{bottom:511.620000px;}
.y18_c00004{bottom:519.120000px;}
.y17_c00004{bottom:569.670000px;}
.y15_c00004{bottom:611.820000px;}
.y12_c00004{bottom:709.020000px;}
.y11_c00004{bottom:740.820000px;}
.y10_c00004{bottom:774.270000px;}
.yf_c00004{bottom:806.670000px;}
.y14_c00004{bottom:841.320000px;}
.ye_c00004{bottom:841.770000px;}
.y13_c00004{bottom:851.820000px;}
.yd_c00004{bottom:873.720000px;}
.yc_c00004{bottom:906.870000px;}
.yb_c00004{bottom:939.870000px;}
.ya_c00004{bottom:973.320000px;}
.y9_c00004{bottom:1005.420000px;}
.y8_c00004{bottom:1039.470000px;}
.y7_c00004{bottom:1071.570000px;}
.y6_c00004{bottom:1106.220000px;}
.y5_c00004{bottom:1137.420000px;}
.y4_c00004{bottom:1171.470000px;}
.y3_c00004{bottom:1204.170000px;}
.y2_c00004{bottom:1235.820000px;}
.y1_c00004{bottom:1268.370000px;}
.h7_c00004{height:13.200073px;}
.h8_c00004{height:43.804688px;}
.h2_c00004{height:100.608000px;}
.h6_c00004{height:117.748535px;}
.h3_c00004{height:121.546875px;}
.h5_c00004{height:156.049805px;}
.h4_c00004{height:182.320312px;}
.h0_c00004{height:1375.350000px;}
.h1_c00004{height:1375.500000px;}
.w2_c00004{width:104.875500px;}
.w1_c00004{width:864.750000px;}
.w0_c00004{width:865.050000px;}
.x0_c00004{left:0.000000px;}
.xf_c00004{left:23.400000px;}
.xa_c00004{left:24.600000px;}
.x8_c00004{left:25.650000px;}
.x9_c00004{left:26.700000px;}
.x7_c00004{left:27.750000px;}
.x6_c00004{left:28.800000px;}
.x4_c00004{left:30.000000px;}
.x3_c00004{left:31.500000px;}
.x1_c00004{left:33.750000px;}
.x2_c00004{left:34.800000px;}
.x10_c00004{left:57.000000px;}
.x5_c00004{left:82.950000px;}
.x13_c00004{left:84.000000px;}
.x12_c00004{left:92.100000px;}
.x11_c00004{left:136.350000px;}
.x14_c00004{left:153.000000px;}
.xd_c00004{left:276.150000px;}
.x15_c00004{left:323.100000px;}
.x16_c00004{left:384.339249px;}
.xe_c00004{left:610.950000px;}
.xc_c00004{left:745.200000px;}
.xb_c00004{left:747.000000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.v1_c00004{vertical-align:4.800000pt;}
.ls3_c00004{letter-spacing:-10.666667pt;}
.ls1_c00004{letter-spacing:0.000000pt;}
.ls0_c00004{letter-spacing:5.333333pt;}
.ls2_c00004{letter-spacing:13.333333pt;}
.ws3_c00004{word-spacing:-56.448000pt;}
.ws1_c00004{word-spacing:-50.666667pt;}
.ws0_c00004{word-spacing:-37.845333pt;}
.ws5_c00004{word-spacing:-29.653333pt;}
.ws2_c00004{word-spacing:-21.333333pt;}
.ws4_c00004{word-spacing:-20.565333pt;}
.ws6_c00004{word-spacing:0.000000pt;}
._3c_c00004{margin-left:-44.970667pt;}
._39_c00004{margin-left:-42.581333pt;}
._2e_c00004{margin-left:-28.160000pt;}
._27_c00004{margin-left:-26.880000pt;}
._3a_c00004{margin-left:-22.101333pt;}
._3b_c00004{margin-left:-20.992000pt;}
._35_c00004{margin-left:-18.944000pt;}
._31_c00004{margin-left:-15.701333pt;}
._41_c00004{margin-left:-12.757333pt;}
._4a_c00004{margin-left:-11.776000pt;}
._2d_c00004{margin-left:-10.496000pt;}
._33_c00004{margin-left:-9.386667pt;}
._32_c00004{margin-left:-8.448000pt;}
._48_c00004{margin-left:-6.997333pt;}
._10_c00004{margin-left:-5.973333pt;}
._11_c00004{margin-left:-4.608000pt;}
._15_c00004{margin-left:-3.413333pt;}
._f_c00004{margin-left:-2.389333pt;}
._0_c00004{margin-left:-1.365333pt;}
._c_c00004{width:1.024000pt;}
._2_c00004{width:2.133333pt;}
._7_c00004{width:3.157333pt;}
._8_c00004{width:4.352000pt;}
._6_c00004{width:5.376000pt;}
._2f_c00004{width:6.272000pt;}
._b_c00004{width:7.168000pt;}
._5_c00004{width:8.277333pt;}
._24_c00004{width:9.301333pt;}
._a_c00004{width:10.496000pt;}
._d_c00004{width:11.776000pt;}
._28_c00004{width:13.568000pt;}
._12_c00004{width:14.506667pt;}
._e_c00004{width:16.128000pt;}
._16_c00004{width:17.066667pt;}
._20_c00004{width:19.029333pt;}
._14_c00004{width:22.442667pt;}
._2c_c00004{width:23.381333pt;}
._23_c00004{width:25.088000pt;}
._1c_c00004{width:26.026667pt;}
._49_c00004{width:27.008000pt;}
._1b_c00004{width:28.330667pt;}
._3f_c00004{width:29.482667pt;}
._30_c00004{width:30.549333pt;}
._9_c00004{width:31.488000pt;}
._2b_c00004{width:32.426667pt;}
._1_c00004{width:33.365333pt;}
._37_c00004{width:34.858667pt;}
._1a_c00004{width:35.754667pt;}
._4b_c00004{width:36.650667pt;}
._13_c00004{width:37.632000pt;}
._17_c00004{width:39.253333pt;}
._26_c00004{width:40.192000pt;}
._3_c00004{width:42.496000pt;}
._47_c00004{width:43.946667pt;}
._29_c00004{width:45.653333pt;}
._19_c00004{width:46.677333pt;}
._1d_c00004{width:48.298667pt;}
._18_c00004{width:49.408000pt;}
._2a_c00004{width:50.602667pt;}
._42_c00004{width:52.266667pt;}
._3d_c00004{width:58.026667pt;}
._4_c00004{width:62.208000pt;}
._46_c00004{width:63.842667pt;}
._38_c00004{width:71.509333pt;}
._22_c00004{width:73.216000pt;}
._25_c00004{width:74.240000pt;}
._40_c00004{width:82.474667pt;}
._34_c00004{width:103.168000pt;}
._45_c00004{width:142.165333pt;}
._21_c00004{width:147.456000pt;}
._36_c00004{width:220.416000pt;}
._1e_c00004{width:229.205333pt;}
._1f_c00004{width:362.752000pt;}
._3e_c00004{width:433.962667pt;}
._44_c00004{width:462.421333pt;}
._43_c00004{width:477.653333pt;}
._4c_c00004{width:803.736000pt;}
.fs3_c00004{font-size:21.333333pt;}
.fs8_c00004{font-size:42.666667pt;}
.fs4_c00004{font-size:53.333333pt;}
.fs1_c00004{font-size:74.666667pt;}
.fs7_c00004{font-size:82.666667pt;}
.fs0_c00004{font-size:85.333333pt;}
.fs2_c00004{font-size:90.666667pt;}
.fs5_c00004{font-size:128.000000pt;}
.fs6_c00004{font-size:141.333333pt;}
.y0_c00004{bottom:0.000000pt;}
.y23_c00004{bottom:2.760000pt;}
.y22_c00004{bottom:6.425217pt;}
.y21_c00004{bottom:87.306667pt;}
.y20_c00004{bottom:119.040000pt;}
.y1f_c00004{bottom:149.040000pt;}
.y1e_c00004{bottom:178.506667pt;}
.y1d_c00004{bottom:235.706667pt;}
.y1c_c00004{bottom:281.040000pt;}
.y1b_c00004{bottom:326.640000pt;}
.y1a_c00004{bottom:372.240000pt;}
.y19_c00004{bottom:417.040000pt;}
.y16_c00004{bottom:454.773333pt;}
.y18_c00004{bottom:461.440000pt;}
.y17_c00004{bottom:506.373333pt;}
.y15_c00004{bottom:543.840000pt;}
.y12_c00004{bottom:630.240000pt;}
.y11_c00004{bottom:658.506667pt;}
.y10_c00004{bottom:688.240000pt;}
.yf_c00004{bottom:717.040000pt;}
.y14_c00004{bottom:747.840000pt;}
.ye_c00004{bottom:748.240000pt;}
.y13_c00004{bottom:757.173333pt;}
.yd_c00004{bottom:776.640000pt;}
.yc_c00004{bottom:806.106667pt;}
.yb_c00004{bottom:835.440000pt;}
.ya_c00004{bottom:865.173333pt;}
.y9_c00004{bottom:893.706667pt;}
.y8_c00004{bottom:923.973333pt;}
.y7_c00004{bottom:952.506667pt;}
.y6_c00004{bottom:983.306667pt;}
.y5_c00004{bottom:1011.040000pt;}
.y4_c00004{bottom:1041.306667pt;}
.y3_c00004{bottom:1070.373333pt;}
.y2_c00004{bottom:1098.506667pt;}
.y1_c00004{bottom:1127.440000pt;}
.h7_c00004{height:11.733399pt;}
.h8_c00004{height:38.937500pt;}
.h2_c00004{height:89.429333pt;}
.h6_c00004{height:104.665365pt;}
.h3_c00004{height:108.041667pt;}
.h5_c00004{height:138.710938pt;}
.h4_c00004{height:162.062500pt;}
.h0_c00004{height:1222.533333pt;}
.h1_c00004{height:1222.666667pt;}
.w2_c00004{width:93.222667pt;}
.w1_c00004{width:768.666667pt;}
.w0_c00004{width:768.933333pt;}
.x0_c00004{left:0.000000pt;}
.xf_c00004{left:20.800000pt;}
.xa_c00004{left:21.866667pt;}
.x8_c00004{left:22.800000pt;}
.x9_c00004{left:23.733333pt;}
.x7_c00004{left:24.666667pt;}
.x6_c00004{left:25.600000pt;}
.x4_c00004{left:26.666667pt;}
.x3_c00004{left:28.000000pt;}
.x1_c00004{left:30.000000pt;}
.x2_c00004{left:30.933333pt;}
.x10_c00004{left:50.666667pt;}
.x5_c00004{left:73.733333pt;}
.x13_c00004{left:74.666667pt;}
.x12_c00004{left:81.866667pt;}
.x11_c00004{left:121.200000pt;}
.x14_c00004{left:136.000000pt;}
.xd_c00004{left:245.466667pt;}
.x15_c00004{left:287.200000pt;}
.x16_c00004{left:341.634888pt;}
.xe_c00004{left:543.066667pt;}
.xc_c00004{left:662.400000pt;}
.xb_c00004{left:664.000000pt;}
}





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

.ir_c00005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_32a3b4d131a2256eed7d1ed9.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_b49d381c6973b90a0530ad7e.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_d7341d0a8b026e77f81685d4.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_25bed2bcd6660fe040314b7e.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00005;src:url('chunks/assets/font_d3e34d1f3409bf46f18f3832.woff2')format("woff");}.ff5_c00005{font-family:ff5_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00005;src:url('chunks/assets/font_f08fdd40847effe1dbdf056e.woff2')format("woff");}.ff6_c00005{font-family:ff6_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00005;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff7_c00005{font-family:ff7_c00005;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00005;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00005{font-family:ff8_c00005;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls8_c00005{letter-spacing:0.000000px;}
.ls3_c00005{letter-spacing:5.892000px;}
.ls6_c00005{letter-spacing:12.360000px;}
.ls5_c00005{letter-spacing:16.920000px;}
.ls7_c00005{letter-spacing:18.000000px;}
.ls9_c00005{letter-spacing:24.000000px;}
.ls0_c00005{letter-spacing:27.252000px;}
.ls2_c00005{letter-spacing:70.092000px;}
.lsa_c00005{letter-spacing:84.000000px;}
.ls1_c00005{letter-spacing:106.692000px;}
.ls4_c00005{letter-spacing:295.692000px;}
.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;}
}
.ws5_c00005{word-spacing:-43.084800px;}
.ws2_c00005{word-spacing:-23.136000px;}
.ws0_c00005{word-spacing:-20.244000px;}
.ws4_c00005{word-spacing:-16.686000px;}
.ws3_c00005{word-spacing:-9.000000px;}
.ws1_c00005{word-spacing:-0.168000px;}
.ws6_c00005{word-spacing:0.000000px;}
._38_c00005{margin-left:-85.647000px;}
._34_c00005{margin-left:-83.607000px;}
._35_c00005{margin-left:-65.160000px;}
._39_c00005{margin-left:-48.720000px;}
._29_c00005{margin-left:-33.804000px;}
._37_c00005{margin-left:-32.736000px;}
._25_c00005{margin-left:-30.144000px;}
._3a_c00005{margin-left:-25.026000px;}
._5_c00005{margin-left:-22.176000px;}
._1d_c00005{margin-left:-20.064000px;}
._6_c00005{margin-left:-17.088000px;}
._22_c00005{margin-left:-15.696000px;}
._1e_c00005{margin-left:-13.920000px;}
._0_c00005{margin-left:-12.576000px;}
._8_c00005{margin-left:-11.424000px;}
._27_c00005{margin-left:-10.296000px;}
._10_c00005{margin-left:-8.544000px;}
._1_c00005{margin-left:-7.296000px;}
._2c_c00005{margin-left:-5.568000px;}
._46_c00005{margin-left:-4.380000px;}
._2b_c00005{margin-left:-3.204000px;}
._7_c00005{margin-left:-1.728000px;}
._12_c00005{width:1.632000px;}
._c_c00005{width:2.880000px;}
._d_c00005{width:4.416000px;}
._a_c00005{width:6.432000px;}
._4_c00005{width:8.064000px;}
._13_c00005{width:9.696000px;}
._9_c00005{width:11.328000px;}
._2_c00005{width:12.480000px;}
._3_c00005{width:13.920000px;}
._1f_c00005{width:15.552000px;}
._1c_c00005{width:16.800000px;}
._1b_c00005{width:18.132000px;}
._16_c00005{width:20.064000px;}
._17_c00005{width:21.888000px;}
._f_c00005{width:24.672000px;}
._19_c00005{width:25.824000px;}
._11_c00005{width:27.648000px;}
._47_c00005{width:28.704000px;}
._18_c00005{width:30.240000px;}
._14_c00005{width:32.640000px;}
._1a_c00005{width:34.272000px;}
._e_c00005{width:36.288000px;}
._b_c00005{width:38.304000px;}
._32_c00005{width:40.512000px;}
._44_c00005{width:42.528000px;}
._2e_c00005{width:43.788000px;}
._20_c00005{width:44.832000px;}
._15_c00005{width:47.472000px;}
._21_c00005{width:49.440000px;}
._42_c00005{width:50.976000px;}
._49_c00005{width:52.128000px;}
._43_c00005{width:53.184000px;}
._23_c00005{width:54.336000px;}
._40_c00005{width:59.268000px;}
._48_c00005{width:63.744000px;}
._4a_c00005{width:67.200000px;}
._33_c00005{width:70.377000px;}
._26_c00005{width:78.336000px;}
._24_c00005{width:87.840000px;}
._28_c00005{width:91.200000px;}
._3d_c00005{width:98.610000px;}
._30_c00005{width:100.116000px;}
._45_c00005{width:104.064000px;}
._3f_c00005{width:105.408000px;}
._3c_c00005{width:144.888000px;}
._2f_c00005{width:168.000000px;}
._31_c00005{width:173.952000px;}
._36_c00005{width:303.696000px;}
._3e_c00005{width:403.134000px;}
._3b_c00005{width:427.245000px;}
._2d_c00005{width:513.924000px;}
._41_c00005{width:580.416000px;}
._2a_c00005{width:810.612000px;}
.fc2_c00005{color:transparent;}
.fc1_c00005{color:rgb(128,128,128);}
.fc0_c00005{color:rgb(0,0,0);}
.fs2_c00005{font-size:36.000000px;}
.fs6_c00005{font-size:48.000000px;}
.fs5_c00005{font-size:76.800000px;}
.fs3_c00005{font-size:81.000000px;}
.fs1_c00005{font-size:84.000000px;}
.fs0_c00005{font-size:96.000000px;}
.fs4_c00005{font-size:102.000000px;}
.y0_c00005{bottom:0.000000px;}
.y26_c00005{bottom:3.105000px;}
.y25_c00005{bottom:7.228355px;}
.y24_c00005{bottom:89.085000px;}
.y23_c00005{bottom:123.135000px;}
.y22_c00005{bottom:157.935000px;}
.y21_c00005{bottom:191.685000px;}
.y20_c00005{bottom:225.735000px;}
.y1f_c00005{bottom:259.485000px;}
.y1e_c00005{bottom:293.235000px;}
.y1d_c00005{bottom:326.985000px;}
.y1c_c00005{bottom:360.735000px;}
.y1b_c00005{bottom:395.085000px;}
.y1a_c00005{bottom:428.535000px;}
.y19_c00005{bottom:461.235000px;}
.y18_c00005{bottom:495.135000px;}
.y17_c00005{bottom:528.735000px;}
.y16_c00005{bottom:561.885000px;}
.y15_c00005{bottom:595.035000px;}
.y14_c00005{bottom:628.335000px;}
.y13_c00005{bottom:661.185000px;}
.y12_c00005{bottom:694.485000px;}
.y11_c00005{bottom:710.685000px;}
.y10_c00005{bottom:732.285000px;}
.yf_c00005{bottom:763.335000px;}
.ye_c00005{bottom:797.085000px;}
.yd_c00005{bottom:827.835000px;}
.yc_c00005{bottom:860.835000px;}
.yb_c00005{bottom:906.885000px;}
.ya_c00005{bottom:926.385000px;}
.y9_c00005{bottom:991.485000px;}
.y8_c00005{bottom:1027.935000px;}
.y7_c00005{bottom:1060.785000px;}
.y6_c00005{bottom:1094.535000px;}
.y5_c00005{bottom:1128.585000px;}
.y4_c00005{bottom:1160.985000px;}
.y3_c00005{bottom:1193.385000px;}
.y2_c00005{bottom:1226.835000px;}
.y1_c00005{bottom:1259.085000px;}
.h5_c00005{height:13.200074px;}
.h6_c00005{height:43.804688px;}
.h3_c00005{height:45.580078px;}
.h2_c00005{height:121.546875px;}
.h4_c00005{height:129.143555px;}
.h1_c00005{height:1366.500000px;}
.h0_c00005{height:1366.725000px;}
.w2_c00005{width:104.875500px;}
.w0_c00005{width:852.675000px;}
.w1_c00005{width:852.750000px;}
.x0_c00005{left:0.000000px;}
.x9_c00005{left:60.150000px;}
.x7_c00005{left:61.200000px;}
.xa_c00005{left:63.450000px;}
.x8_c00005{left:89.850000px;}
.xb_c00005{left:122.550000px;}
.x4_c00005{left:211.950000px;}
.xf_c00005{left:271.350000px;}
.x10_c00005{left:273.600000px;}
.xe_c00005{left:274.650000px;}
.x1_c00005{left:275.700000px;}
.xd_c00005{left:276.750000px;}
.x2_c00005{left:277.800000px;}
.x3_c00005{left:279.000000px;}
.xc_c00005{left:280.050000px;}
.x6_c00005{left:344.700000px;}
.x5_c00005{left:375.600000px;}
.x12_c00005{left:378.151749px;}
.x11_c00005{left:797.850000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls8_c00005{letter-spacing:0.000000pt;}
.ls3_c00005{letter-spacing:5.237333pt;}
.ls6_c00005{letter-spacing:10.986667pt;}
.ls5_c00005{letter-spacing:15.040000pt;}
.ls7_c00005{letter-spacing:16.000000pt;}
.ls9_c00005{letter-spacing:21.333333pt;}
.ls0_c00005{letter-spacing:24.224000pt;}
.ls2_c00005{letter-spacing:62.304000pt;}
.lsa_c00005{letter-spacing:74.666667pt;}
.ls1_c00005{letter-spacing:94.837333pt;}
.ls4_c00005{letter-spacing:262.837333pt;}
.ws5_c00005{word-spacing:-38.297600pt;}
.ws2_c00005{word-spacing:-20.565333pt;}
.ws0_c00005{word-spacing:-17.994667pt;}
.ws4_c00005{word-spacing:-14.832000pt;}
.ws3_c00005{word-spacing:-8.000000pt;}
.ws1_c00005{word-spacing:-0.149333pt;}
.ws6_c00005{word-spacing:0.000000pt;}
._38_c00005{margin-left:-76.130667pt;}
._34_c00005{margin-left:-74.317333pt;}
._35_c00005{margin-left:-57.920000pt;}
._39_c00005{margin-left:-43.306667pt;}
._29_c00005{margin-left:-30.048000pt;}
._37_c00005{margin-left:-29.098667pt;}
._25_c00005{margin-left:-26.794667pt;}
._3a_c00005{margin-left:-22.245333pt;}
._5_c00005{margin-left:-19.712000pt;}
._1d_c00005{margin-left:-17.834667pt;}
._6_c00005{margin-left:-15.189333pt;}
._22_c00005{margin-left:-13.952000pt;}
._1e_c00005{margin-left:-12.373333pt;}
._0_c00005{margin-left:-11.178667pt;}
._8_c00005{margin-left:-10.154667pt;}
._27_c00005{margin-left:-9.152000pt;}
._10_c00005{margin-left:-7.594667pt;}
._1_c00005{margin-left:-6.485333pt;}
._2c_c00005{margin-left:-4.949333pt;}
._46_c00005{margin-left:-3.893333pt;}
._2b_c00005{margin-left:-2.848000pt;}
._7_c00005{margin-left:-1.536000pt;}
._12_c00005{width:1.450667pt;}
._c_c00005{width:2.560000pt;}
._d_c00005{width:3.925333pt;}
._a_c00005{width:5.717333pt;}
._4_c00005{width:7.168000pt;}
._13_c00005{width:8.618667pt;}
._9_c00005{width:10.069333pt;}
._2_c00005{width:11.093333pt;}
._3_c00005{width:12.373333pt;}
._1f_c00005{width:13.824000pt;}
._1c_c00005{width:14.933333pt;}
._1b_c00005{width:16.117333pt;}
._16_c00005{width:17.834667pt;}
._17_c00005{width:19.456000pt;}
._f_c00005{width:21.930667pt;}
._19_c00005{width:22.954667pt;}
._11_c00005{width:24.576000pt;}
._47_c00005{width:25.514667pt;}
._18_c00005{width:26.880000pt;}
._14_c00005{width:29.013333pt;}
._1a_c00005{width:30.464000pt;}
._e_c00005{width:32.256000pt;}
._b_c00005{width:34.048000pt;}
._32_c00005{width:36.010667pt;}
._44_c00005{width:37.802667pt;}
._2e_c00005{width:38.922667pt;}
._20_c00005{width:39.850667pt;}
._15_c00005{width:42.197333pt;}
._21_c00005{width:43.946667pt;}
._42_c00005{width:45.312000pt;}
._49_c00005{width:46.336000pt;}
._43_c00005{width:47.274667pt;}
._23_c00005{width:48.298667pt;}
._40_c00005{width:52.682667pt;}
._48_c00005{width:56.661333pt;}
._4a_c00005{width:59.733333pt;}
._33_c00005{width:62.557333pt;}
._26_c00005{width:69.632000pt;}
._24_c00005{width:78.080000pt;}
._28_c00005{width:81.066667pt;}
._3d_c00005{width:87.653333pt;}
._30_c00005{width:88.992000pt;}
._45_c00005{width:92.501333pt;}
._3f_c00005{width:93.696000pt;}
._3c_c00005{width:128.789333pt;}
._2f_c00005{width:149.333333pt;}
._31_c00005{width:154.624000pt;}
._36_c00005{width:269.952000pt;}
._3e_c00005{width:358.341333pt;}
._3b_c00005{width:379.773333pt;}
._2d_c00005{width:456.821333pt;}
._41_c00005{width:515.925333pt;}
._2a_c00005{width:720.544000pt;}
.fs2_c00005{font-size:32.000000pt;}
.fs6_c00005{font-size:42.666667pt;}
.fs5_c00005{font-size:68.266667pt;}
.fs3_c00005{font-size:72.000000pt;}
.fs1_c00005{font-size:74.666667pt;}
.fs0_c00005{font-size:85.333333pt;}
.fs4_c00005{font-size:90.666667pt;}
.y0_c00005{bottom:0.000000pt;}
.y26_c00005{bottom:2.760000pt;}
.y25_c00005{bottom:6.425204pt;}
.y24_c00005{bottom:79.186667pt;}
.y23_c00005{bottom:109.453333pt;}
.y22_c00005{bottom:140.386667pt;}
.y21_c00005{bottom:170.386667pt;}
.y20_c00005{bottom:200.653333pt;}
.y1f_c00005{bottom:230.653333pt;}
.y1e_c00005{bottom:260.653333pt;}
.y1d_c00005{bottom:290.653333pt;}
.y1c_c00005{bottom:320.653333pt;}
.y1b_c00005{bottom:351.186667pt;}
.y1a_c00005{bottom:380.920000pt;}
.y19_c00005{bottom:409.986667pt;}
.y18_c00005{bottom:440.120000pt;}
.y17_c00005{bottom:469.986667pt;}
.y16_c00005{bottom:499.453333pt;}
.y15_c00005{bottom:528.920000pt;}
.y14_c00005{bottom:558.520000pt;}
.y13_c00005{bottom:587.720000pt;}
.y12_c00005{bottom:617.320000pt;}
.y11_c00005{bottom:631.720000pt;}
.y10_c00005{bottom:650.920000pt;}
.yf_c00005{bottom:678.520000pt;}
.ye_c00005{bottom:708.520000pt;}
.yd_c00005{bottom:735.853333pt;}
.yc_c00005{bottom:765.186667pt;}
.yb_c00005{bottom:806.120000pt;}
.ya_c00005{bottom:823.453333pt;}
.y9_c00005{bottom:881.320000pt;}
.y8_c00005{bottom:913.720000pt;}
.y7_c00005{bottom:942.920000pt;}
.y6_c00005{bottom:972.920000pt;}
.y5_c00005{bottom:1003.186667pt;}
.y4_c00005{bottom:1031.986667pt;}
.y3_c00005{bottom:1060.786667pt;}
.y2_c00005{bottom:1090.520000pt;}
.y1_c00005{bottom:1119.186667pt;}
.h5_c00005{height:11.733399pt;}
.h6_c00005{height:38.937500pt;}
.h3_c00005{height:40.515625pt;}
.h2_c00005{height:108.041667pt;}
.h4_c00005{height:114.794271pt;}
.h1_c00005{height:1214.666667pt;}
.h0_c00005{height:1214.866667pt;}
.w2_c00005{width:93.222667pt;}
.w0_c00005{width:757.933333pt;}
.w1_c00005{width:758.000000pt;}
.x0_c00005{left:0.000000pt;}
.x9_c00005{left:53.466667pt;}
.x7_c00005{left:54.400000pt;}
.xa_c00005{left:56.400000pt;}
.x8_c00005{left:79.866667pt;}
.xb_c00005{left:108.933333pt;}
.x4_c00005{left:188.400000pt;}
.xf_c00005{left:241.200000pt;}
.x10_c00005{left:243.200000pt;}
.xe_c00005{left:244.133333pt;}
.x1_c00005{left:245.066667pt;}
.xd_c00005{left:246.000000pt;}
.x2_c00005{left:246.933333pt;}
.x3_c00005{left:248.000000pt;}
.xc_c00005{left:248.933333pt;}
.x6_c00005{left:306.400000pt;}
.x5_c00005{left:333.866667pt;}
.x12_c00005{left:336.134888pt;}
.x11_c00005{left:709.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_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_918d8ea6ddbbb35a470f22ad.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_d3eafb81dcf525075c3b17d5.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.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:-63.504000px;}
.ws1_c00006{word-spacing:-23.136000px;}
.ws2_c00006{word-spacing:0.000000px;}
._2c_c00006{margin-left:-49.152000px;}
._22_c00006{margin-left:-31.488000px;}
._1f_c00006{margin-left:-26.880000px;}
._20_c00006{margin-left:-17.760000px;}
._21_c00006{margin-left:-14.976000px;}
._23_c00006{margin-left:-13.632000px;}
._2a_c00006{margin-left:-11.988000px;}
._a_c00006{margin-left:-10.176000px;}
._9_c00006{margin-left:-8.256000px;}
._8_c00006{margin-left:-6.624000px;}
._c_c00006{margin-left:-5.184000px;}
._b_c00006{margin-left:-3.936000px;}
._5_c00006{margin-left:-2.688000px;}
._4_c00006{margin-left:-1.632000px;}
._d_c00006{width:1.056000px;}
._0_c00006{width:2.880000px;}
._1_c00006{width:4.128000px;}
._3_c00006{width:6.144000px;}
._6_c00006{width:7.680000px;}
._18_c00006{width:8.832000px;}
._1c_c00006{width:10.368000px;}
._e_c00006{width:11.904000px;}
._10_c00006{width:12.960000px;}
._1b_c00006{width:14.112000px;}
._13_c00006{width:15.840000px;}
._26_c00006{width:16.992000px;}
._15_c00006{width:18.336000px;}
._7_c00006{width:20.352000px;}
._24_c00006{width:21.504000px;}
._2b_c00006{width:24.192000px;}
._f_c00006{width:25.248000px;}
._19_c00006{width:26.400000px;}
._1a_c00006{width:27.456000px;}
._1e_c00006{width:29.664000px;}
._27_c00006{width:31.578000px;}
._12_c00006{width:32.640000px;}
._2d_c00006{width:33.696000px;}
._2_c00006{width:34.752000px;}
._1d_c00006{width:36.672000px;}
._14_c00006{width:39.936000px;}
._17_c00006{width:41.184000px;}
._11_c00006{width:42.528000px;}
._29_c00006{width:45.312000px;}
._16_c00006{width:49.152000px;}
._25_c00006{width:50.592000px;}
._28_c00006{width:148.992000px;}
.fc2_c00006{color:transparent;}
.fc1_c00006{color:rgb(128,128,128);}
.fc0_c00006{color:rgb(0,0,0);}
.fs3_c00006{font-size:48.000000px;}
.fs2_c00006{font-size:84.000000px;}
.fs0_c00006{font-size:96.000000px;}
.fs1_c00006{font-size:105.000000px;}
.y0_c00006{bottom:0.000000px;}
.y26_c00006{bottom:3.105000px;}
.y25_c00006{bottom:7.228369px;}
.y24_c00006{bottom:122.070000px;}
.y23_c00006{bottom:151.920000px;}
.y22_c00006{bottom:186.870000px;}
.y21_c00006{bottom:220.620000px;}
.y20_c00006{bottom:254.370000px;}
.y1f_c00006{bottom:288.570000px;}
.y1e_c00006{bottom:322.020000px;}
.y1d_c00006{bottom:355.320000px;}
.y1c_c00006{bottom:389.070000px;}
.y1b_c00006{bottom:422.520000px;}
.y1a_c00006{bottom:456.570000px;}
.y19_c00006{bottom:489.420000px;}
.y18_c00006{bottom:522.720000px;}
.y17_c00006{bottom:556.470000px;}
.y16_c00006{bottom:589.320000px;}
.y15_c00006{bottom:622.020000px;}
.y14_c00006{bottom:657.120000px;}
.y13_c00006{bottom:688.770000px;}
.y12_c00006{bottom:722.520000px;}
.y11_c00006{bottom:755.670000px;}
.y10_c00006{bottom:789.120000px;}
.yf_c00006{bottom:822.120000px;}
.ye_c00006{bottom:856.170000px;}
.yd_c00006{bottom:887.970000px;}
.yc_c00006{bottom:920.370000px;}
.yb_c00006{bottom:954.120000px;}
.ya_c00006{bottom:987.570000px;}
.y9_c00006{bottom:1021.170000px;}
.y8_c00006{bottom:1054.320000px;}
.y7_c00006{bottom:1087.320000px;}
.y6_c00006{bottom:1119.870000px;}
.y5_c00006{bottom:1153.620000px;}
.y4_c00006{bottom:1186.920000px;}
.y3_c00006{bottom:1218.270000px;}
.y2_c00006{bottom:1252.170000px;}
.y1_c00006{bottom:1285.770000px;}
.h4_c00006{height:13.200073px;}
.h5_c00006{height:43.804688px;}
.h2_c00006{height:121.546875px;}
.h3_c00006{height:132.941895px;}
.h0_c00006{height:1375.350000px;}
.h1_c00006{height:1375.500000px;}
.w2_c00006{width:104.875500px;}
.w1_c00006{width:864.750000px;}
.w0_c00006{width:865.050000px;}
.x0_c00006{left:0.000000px;}
.x6_c00006{left:48.900000px;}
.x5_c00006{left:49.950000px;}
.x4_c00006{left:51.000000px;}
.x3_c00006{left:52.200000px;}
.x2_c00006{left:53.700000px;}
.x7_c00006{left:54.750000px;}
.x1_c00006{left:55.950000px;}
.x8_c00006{left:58.050000px;}
.xa_c00006{left:384.339249px;}
.x9_c00006{left:574.800000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:-56.448000pt;}
.ws1_c00006{word-spacing:-20.565333pt;}
.ws2_c00006{word-spacing:0.000000pt;}
._2c_c00006{margin-left:-43.690667pt;}
._22_c00006{margin-left:-27.989333pt;}
._1f_c00006{margin-left:-23.893333pt;}
._20_c00006{margin-left:-15.786667pt;}
._21_c00006{margin-left:-13.312000pt;}
._23_c00006{margin-left:-12.117333pt;}
._2a_c00006{margin-left:-10.656000pt;}
._a_c00006{margin-left:-9.045333pt;}
._9_c00006{margin-left:-7.338667pt;}
._8_c00006{margin-left:-5.888000pt;}
._c_c00006{margin-left:-4.608000pt;}
._b_c00006{margin-left:-3.498667pt;}
._5_c00006{margin-left:-2.389333pt;}
._4_c00006{margin-left:-1.450667pt;}
._d_c00006{width:0.938667pt;}
._0_c00006{width:2.560000pt;}
._1_c00006{width:3.669333pt;}
._3_c00006{width:5.461333pt;}
._6_c00006{width:6.826667pt;}
._18_c00006{width:7.850667pt;}
._1c_c00006{width:9.216000pt;}
._e_c00006{width:10.581333pt;}
._10_c00006{width:11.520000pt;}
._1b_c00006{width:12.544000pt;}
._13_c00006{width:14.080000pt;}
._26_c00006{width:15.104000pt;}
._15_c00006{width:16.298667pt;}
._7_c00006{width:18.090667pt;}
._24_c00006{width:19.114667pt;}
._2b_c00006{width:21.504000pt;}
._f_c00006{width:22.442667pt;}
._19_c00006{width:23.466667pt;}
._1a_c00006{width:24.405333pt;}
._1e_c00006{width:26.368000pt;}
._27_c00006{width:28.069333pt;}
._12_c00006{width:29.013333pt;}
._2d_c00006{width:29.952000pt;}
._2_c00006{width:30.890667pt;}
._1d_c00006{width:32.597333pt;}
._14_c00006{width:35.498667pt;}
._17_c00006{width:36.608000pt;}
._11_c00006{width:37.802667pt;}
._29_c00006{width:40.277333pt;}
._16_c00006{width:43.690667pt;}
._25_c00006{width:44.970667pt;}
._28_c00006{width:132.437333pt;}
.fs3_c00006{font-size:42.666667pt;}
.fs2_c00006{font-size:74.666667pt;}
.fs0_c00006{font-size:85.333333pt;}
.fs1_c00006{font-size:93.333333pt;}
.y0_c00006{bottom:0.000000pt;}
.y26_c00006{bottom:2.760000pt;}
.y25_c00006{bottom:6.425217pt;}
.y24_c00006{bottom:108.506667pt;}
.y23_c00006{bottom:135.040000pt;}
.y22_c00006{bottom:166.106667pt;}
.y21_c00006{bottom:196.106667pt;}
.y20_c00006{bottom:226.106667pt;}
.y1f_c00006{bottom:256.506667pt;}
.y1e_c00006{bottom:286.240000pt;}
.y1d_c00006{bottom:315.840000pt;}
.y1c_c00006{bottom:345.840000pt;}
.y1b_c00006{bottom:375.573333pt;}
.y1a_c00006{bottom:405.840000pt;}
.y19_c00006{bottom:435.040000pt;}
.y18_c00006{bottom:464.640000pt;}
.y17_c00006{bottom:494.640000pt;}
.y16_c00006{bottom:523.840000pt;}
.y15_c00006{bottom:552.906667pt;}
.y14_c00006{bottom:584.106667pt;}
.y13_c00006{bottom:612.240000pt;}
.y12_c00006{bottom:642.240000pt;}
.y11_c00006{bottom:671.706667pt;}
.y10_c00006{bottom:701.440000pt;}
.yf_c00006{bottom:730.773333pt;}
.ye_c00006{bottom:761.040000pt;}
.yd_c00006{bottom:789.306667pt;}
.yc_c00006{bottom:818.106667pt;}
.yb_c00006{bottom:848.106667pt;}
.ya_c00006{bottom:877.840000pt;}
.y9_c00006{bottom:907.706667pt;}
.y8_c00006{bottom:937.173333pt;}
.y7_c00006{bottom:966.506667pt;}
.y6_c00006{bottom:995.440000pt;}
.y5_c00006{bottom:1025.440000pt;}
.y4_c00006{bottom:1055.040000pt;}
.y3_c00006{bottom:1082.906667pt;}
.y2_c00006{bottom:1113.040000pt;}
.y1_c00006{bottom:1142.906667pt;}
.h4_c00006{height:11.733399pt;}
.h5_c00006{height:38.937500pt;}
.h2_c00006{height:108.041667pt;}
.h3_c00006{height:118.170573pt;}
.h0_c00006{height:1222.533333pt;}
.h1_c00006{height:1222.666667pt;}
.w2_c00006{width:93.222667pt;}
.w1_c00006{width:768.666667pt;}
.w0_c00006{width:768.933333pt;}
.x0_c00006{left:0.000000pt;}
.x6_c00006{left:43.466667pt;}
.x5_c00006{left:44.400000pt;}
.x4_c00006{left:45.333333pt;}
.x3_c00006{left:46.400000pt;}
.x2_c00006{left:47.733333pt;}
.x7_c00006{left:48.666667pt;}
.x1_c00006{left:49.733333pt;}
.x8_c00006{left:51.600000pt;}
.xa_c00006{left:341.634888pt;}
.x9_c00006{left:510.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87afc2c4de23087ce257e290.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_32f8c9b0543559afbdd548dc.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls1_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:11.400000px;}
.ls2_c00007{letter-spacing:24.000000px;}
.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;}
}
.ws1_c00007{word-spacing:-23.136000px;}
.ws0_c00007{word-spacing:-20.244000px;}
.ws2_c00007{word-spacing:0.000000px;}
._58_c00007{margin-left:-89.664000px;}
._25_c00007{margin-left:-86.400000px;}
._56_c00007{margin-left:-79.872000px;}
._48_c00007{margin-left:-77.760000px;}
._54_c00007{margin-left:-33.312000px;}
._29_c00007{margin-left:-32.076000px;}
._30_c00007{margin-left:-30.102000px;}
._43_c00007{margin-left:-28.320000px;}
._52_c00007{margin-left:-23.739000px;}
._33_c00007{margin-left:-21.924000px;}
._39_c00007{margin-left:-20.532000px;}
._4c_c00007{margin-left:-18.009000px;}
._2d_c00007{margin-left:-16.608000px;}
._2c_c00007{margin-left:-13.920000px;}
._42_c00007{margin-left:-12.876000px;}
._36_c00007{margin-left:-10.788000px;}
._34_c00007{margin-left:-9.438000px;}
._37_c00007{margin-left:-7.482000px;}
._1c_c00007{margin-left:-6.432000px;}
._3c_c00007{margin-left:-5.340000px;}
._14_c00007{margin-left:-4.320000px;}
._1f_c00007{margin-left:-2.976000px;}
._1d_c00007{margin-left:-1.824000px;}
._c_c00007{width:1.056000px;}
._5_c00007{width:2.880000px;}
._4_c00007{width:4.032000px;}
._1_c00007{width:5.376000px;}
._8_c00007{width:6.816000px;}
._a_c00007{width:8.064000px;}
._2_c00007{width:9.216000px;}
._7_c00007{width:10.560000px;}
._0_c00007{width:11.616000px;}
._d_c00007{width:13.659000px;}
._1e_c00007{width:14.784000px;}
._11_c00007{width:16.224000px;}
._15_c00007{width:17.760000px;}
._6_c00007{width:19.008000px;}
._21_c00007{width:20.037000px;}
._b_c00007{width:21.792000px;}
._44_c00007{width:24.192000px;}
._16_c00007{width:25.536000px;}
._20_c00007{width:26.784000px;}
._1b_c00007{width:28.128000px;}
._18_c00007{width:29.472000px;}
._1a_c00007{width:30.636000px;}
._e_c00007{width:32.556000px;}
._45_c00007{width:33.984000px;}
._13_c00007{width:35.013000px;}
._17_c00007{width:36.756000px;}
._19_c00007{width:38.661000px;}
._3_c00007{width:40.224000px;}
._10_c00007{width:41.280000px;}
._23_c00007{width:42.555000px;}
._41_c00007{width:43.557000px;}
._9_c00007{width:45.216000px;}
._12_c00007{width:47.136000px;}
._f_c00007{width:48.192000px;}
._60_c00007{width:49.509000px;}
._22_c00007{width:51.321000px;}
._5b_c00007{width:52.896000px;}
._2b_c00007{width:56.160000px;}
._50_c00007{width:57.648000px;}
._5c_c00007{width:59.400000px;}
._40_c00007{width:71.700000px;}
._5d_c00007{width:73.584000px;}
._3f_c00007{width:76.002000px;}
._27_c00007{width:78.768000px;}
._35_c00007{width:92.481000px;}
._2e_c00007{width:99.360000px;}
._26_c00007{width:105.984000px;}
._4f_c00007{width:107.520000px;}
._3b_c00007{width:110.577000px;}
._3a_c00007{width:112.839000px;}
._4b_c00007{width:113.883000px;}
._32_c00007{width:117.798000px;}
._57_c00007{width:129.156000px;}
._51_c00007{width:159.351000px;}
._4d_c00007{width:167.997000px;}
._5a_c00007{width:174.516000px;}
._31_c00007{width:176.697000px;}
._3e_c00007{width:186.108000px;}
._4e_c00007{width:204.102000px;}
._5f_c00007{width:211.446000px;}
._24_c00007{width:215.493000px;}
._47_c00007{width:252.192000px;}
._3d_c00007{width:276.558000px;}
._59_c00007{width:288.456000px;}
._2a_c00007{width:333.024000px;}
._5e_c00007{width:439.800000px;}
._2f_c00007{width:476.736000px;}
._55_c00007{width:504.864000px;}
._38_c00007{width:518.160000px;}
._49_c00007{width:586.752000px;}
._46_c00007{width:644.832000px;}
._53_c00007{width:900.288000px;}
._28_c00007{width:1179.648000px;}
._4a_c00007{width:1288.296000px;}
.fc2_c00007{color:transparent;}
.fc1_c00007{color:rgb(128,128,128);}
.fc0_c00007{color:rgb(0,0,0);}
.fs3_c00007{font-size:36.000000px;}
.fs5_c00007{font-size:48.000000px;}
.fs4_c00007{font-size:84.000000px;}
.fs2_c00007{font-size:87.000000px;}
.fs0_c00007{font-size:96.000000px;}
.fs1_c00007{font-size:102.000000px;}
.y0_c00007{bottom:0.000000px;}
.y26_c00007{bottom:3.105000px;}
.y25_c00007{bottom:7.228357px;}
.y24_c00007{bottom:121.830000px;}
.y23_c00007{bottom:156.930000px;}
.y22_c00007{bottom:191.430000px;}
.y21_c00007{bottom:224.730000px;}
.y20_c00007{bottom:259.230000px;}
.y1f_c00007{bottom:293.280000px;}
.y1e_c00007{bottom:330.780000px;}
.y1d_c00007{bottom:362.430000px;}
.y1c_c00007{bottom:394.830000px;}
.y1b_c00007{bottom:426.330000px;}
.y1a_c00007{bottom:461.430000px;}
.y19_c00007{bottom:507.330000px;}
.y18_c00007{bottom:528.480000px;}
.y17_c00007{bottom:562.230000px;}
.y16_c00007{bottom:595.680000px;}
.y15_c00007{bottom:628.830000px;}
.y14_c00007{bottom:661.830000px;}
.y13_c00007{bottom:694.980000px;}
.y12_c00007{bottom:730.380000px;}
.y11_c00007{bottom:762.180000px;}
.y10_c00007{bottom:794.430000px;}
.yf_c00007{bottom:828.330000px;}
.ye_c00007{bottom:861.630000px;}
.yd_c00007{bottom:908.580000px;}
.yc_c00007{bottom:928.080000px;}
.yb_c00007{bottom:961.530000px;}
.ya_c00007{bottom:994.680000px;}
.y9_c00007{bottom:1027.680000px;}
.y8_c00007{bottom:1059.480000px;}
.y7_c00007{bottom:1093.830000px;}
.y6_c00007{bottom:1126.980000px;}
.y5_c00007{bottom:1159.680000px;}
.y4_c00007{bottom:1193.130000px;}
.y3_c00007{bottom:1226.130000px;}
.y2_c00007{bottom:1259.580000px;}
.y1_c00007{bottom:1292.280000px;}
.h4_c00007{height:13.200074px;}
.h5_c00007{height:43.804688px;}
.h3_c00007{height:110.151855px;}
.h2_c00007{height:121.546875px;}
.h0_c00007{height:1382.700000px;}
.h1_c00007{height:1383.000000px;}
.w2_c00007{width:104.875500px;}
.w0_c00007{width:863.175000px;}
.w1_c00007{width:863.250000px;}
.x0_c00007{left:0.000000px;}
.x11_c00007{left:43.500000px;}
.x10_c00007{left:44.550000px;}
.x8_c00007{left:48.300000px;}
.xf_c00007{left:59.100000px;}
.x7_c00007{left:76.950000px;}
.x9_c00007{left:98.550000px;}
.x13_c00007{left:262.200000px;}
.x12_c00007{left:263.250000px;}
.x2_c00007{left:265.350000px;}
.x1_c00007{left:267.000000px;}
.x3_c00007{left:268.650000px;}
.xb_c00007{left:270.900000px;}
.xa_c00007{left:271.950000px;}
.x5_c00007{left:294.750000px;}
.xe_c00007{left:309.750000px;}
.xc_c00007{left:334.350000px;}
.x6_c00007{left:350.250000px;}
.x4_c00007{left:357.750000px;}
.x15_c00007{left:383.401749px;}
.xd_c00007{left:385.800000px;}
.x14_c00007{left:779.550000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls1_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:10.133333pt;}
.ls2_c00007{letter-spacing:21.333333pt;}
.ws1_c00007{word-spacing:-20.565333pt;}
.ws0_c00007{word-spacing:-17.994667pt;}
.ws2_c00007{word-spacing:0.000000pt;}
._58_c00007{margin-left:-79.701333pt;}
._25_c00007{margin-left:-76.800000pt;}
._56_c00007{margin-left:-70.997333pt;}
._48_c00007{margin-left:-69.120000pt;}
._54_c00007{margin-left:-29.610667pt;}
._29_c00007{margin-left:-28.512000pt;}
._30_c00007{margin-left:-26.757333pt;}
._43_c00007{margin-left:-25.173333pt;}
._52_c00007{margin-left:-21.101333pt;}
._33_c00007{margin-left:-19.488000pt;}
._39_c00007{margin-left:-18.250667pt;}
._4c_c00007{margin-left:-16.008000pt;}
._2d_c00007{margin-left:-14.762667pt;}
._2c_c00007{margin-left:-12.373333pt;}
._42_c00007{margin-left:-11.445333pt;}
._36_c00007{margin-left:-9.589333pt;}
._34_c00007{margin-left:-8.389333pt;}
._37_c00007{margin-left:-6.650667pt;}
._1c_c00007{margin-left:-5.717333pt;}
._3c_c00007{margin-left:-4.746667pt;}
._14_c00007{margin-left:-3.840000pt;}
._1f_c00007{margin-left:-2.645333pt;}
._1d_c00007{margin-left:-1.621333pt;}
._c_c00007{width:0.938667pt;}
._5_c00007{width:2.560000pt;}
._4_c00007{width:3.584000pt;}
._1_c00007{width:4.778667pt;}
._8_c00007{width:6.058667pt;}
._a_c00007{width:7.168000pt;}
._2_c00007{width:8.192000pt;}
._7_c00007{width:9.386667pt;}
._0_c00007{width:10.325333pt;}
._d_c00007{width:12.141333pt;}
._1e_c00007{width:13.141333pt;}
._11_c00007{width:14.421333pt;}
._15_c00007{width:15.786667pt;}
._6_c00007{width:16.896000pt;}
._21_c00007{width:17.810667pt;}
._b_c00007{width:19.370667pt;}
._44_c00007{width:21.504000pt;}
._16_c00007{width:22.698667pt;}
._20_c00007{width:23.808000pt;}
._1b_c00007{width:25.002667pt;}
._18_c00007{width:26.197333pt;}
._1a_c00007{width:27.232000pt;}
._e_c00007{width:28.938667pt;}
._45_c00007{width:30.208000pt;}
._13_c00007{width:31.122667pt;}
._17_c00007{width:32.672000pt;}
._19_c00007{width:34.365333pt;}
._3_c00007{width:35.754667pt;}
._10_c00007{width:36.693333pt;}
._23_c00007{width:37.826667pt;}
._41_c00007{width:38.717333pt;}
._9_c00007{width:40.192000pt;}
._12_c00007{width:41.898667pt;}
._f_c00007{width:42.837333pt;}
._60_c00007{width:44.008000pt;}
._22_c00007{width:45.618667pt;}
._5b_c00007{width:47.018667pt;}
._2b_c00007{width:49.920000pt;}
._50_c00007{width:51.242667pt;}
._5c_c00007{width:52.800000pt;}
._40_c00007{width:63.733333pt;}
._5d_c00007{width:65.408000pt;}
._3f_c00007{width:67.557333pt;}
._27_c00007{width:70.016000pt;}
._35_c00007{width:82.205333pt;}
._2e_c00007{width:88.320000pt;}
._26_c00007{width:94.208000pt;}
._4f_c00007{width:95.573333pt;}
._3b_c00007{width:98.290667pt;}
._3a_c00007{width:100.301333pt;}
._4b_c00007{width:101.229333pt;}
._32_c00007{width:104.709333pt;}
._57_c00007{width:114.805333pt;}
._51_c00007{width:141.645333pt;}
._4d_c00007{width:149.330667pt;}
._5a_c00007{width:155.125333pt;}
._31_c00007{width:157.064000pt;}
._3e_c00007{width:165.429333pt;}
._4e_c00007{width:181.424000pt;}
._5f_c00007{width:187.952000pt;}
._24_c00007{width:191.549333pt;}
._47_c00007{width:224.170667pt;}
._3d_c00007{width:245.829333pt;}
._59_c00007{width:256.405333pt;}
._2a_c00007{width:296.021333pt;}
._5e_c00007{width:390.933333pt;}
._2f_c00007{width:423.765333pt;}
._55_c00007{width:448.768000pt;}
._38_c00007{width:460.586667pt;}
._49_c00007{width:521.557333pt;}
._46_c00007{width:573.184000pt;}
._53_c00007{width:800.256000pt;}
._28_c00007{width:1048.576000pt;}
._4a_c00007{width:1145.152000pt;}
.fs3_c00007{font-size:32.000000pt;}
.fs5_c00007{font-size:42.666667pt;}
.fs4_c00007{font-size:74.666667pt;}
.fs2_c00007{font-size:77.333333pt;}
.fs0_c00007{font-size:85.333333pt;}
.fs1_c00007{font-size:90.666667pt;}
.y0_c00007{bottom:0.000000pt;}
.y26_c00007{bottom:2.760000pt;}
.y25_c00007{bottom:6.425206pt;}
.y24_c00007{bottom:108.293333pt;}
.y23_c00007{bottom:139.493333pt;}
.y22_c00007{bottom:170.160000pt;}
.y21_c00007{bottom:199.760000pt;}
.y20_c00007{bottom:230.426667pt;}
.y1f_c00007{bottom:260.693333pt;}
.y1e_c00007{bottom:294.026667pt;}
.y1d_c00007{bottom:322.160000pt;}
.y1c_c00007{bottom:350.960000pt;}
.y1b_c00007{bottom:378.960000pt;}
.y1a_c00007{bottom:410.160000pt;}
.y19_c00007{bottom:450.960000pt;}
.y18_c00007{bottom:469.760000pt;}
.y17_c00007{bottom:499.760000pt;}
.y16_c00007{bottom:529.493333pt;}
.y15_c00007{bottom:558.960000pt;}
.y14_c00007{bottom:588.293333pt;}
.y13_c00007{bottom:617.760000pt;}
.y12_c00007{bottom:649.226667pt;}
.y11_c00007{bottom:677.493333pt;}
.y10_c00007{bottom:706.160000pt;}
.yf_c00007{bottom:736.293333pt;}
.ye_c00007{bottom:765.893333pt;}
.yd_c00007{bottom:807.626667pt;}
.yc_c00007{bottom:824.960000pt;}
.yb_c00007{bottom:854.693333pt;}
.ya_c00007{bottom:884.160000pt;}
.y9_c00007{bottom:913.493333pt;}
.y8_c00007{bottom:941.760000pt;}
.y7_c00007{bottom:972.293333pt;}
.y6_c00007{bottom:1001.760000pt;}
.y5_c00007{bottom:1030.826667pt;}
.y4_c00007{bottom:1060.560000pt;}
.y3_c00007{bottom:1089.893333pt;}
.y2_c00007{bottom:1119.626667pt;}
.y1_c00007{bottom:1148.693333pt;}
.h4_c00007{height:11.733399pt;}
.h5_c00007{height:38.937500pt;}
.h3_c00007{height:97.912760pt;}
.h2_c00007{height:108.041667pt;}
.h0_c00007{height:1229.066667pt;}
.h1_c00007{height:1229.333333pt;}
.w2_c00007{width:93.222667pt;}
.w0_c00007{width:767.266667pt;}
.w1_c00007{width:767.333333pt;}
.x0_c00007{left:0.000000pt;}
.x11_c00007{left:38.666667pt;}
.x10_c00007{left:39.600000pt;}
.x8_c00007{left:42.933333pt;}
.xf_c00007{left:52.533333pt;}
.x7_c00007{left:68.400000pt;}
.x9_c00007{left:87.600000pt;}
.x13_c00007{left:233.066667pt;}
.x12_c00007{left:234.000000pt;}
.x2_c00007{left:235.866667pt;}
.x1_c00007{left:237.333333pt;}
.x3_c00007{left:238.800000pt;}
.xb_c00007{left:240.800000pt;}
.xa_c00007{left:241.733333pt;}
.x5_c00007{left:262.000000pt;}
.xe_c00007{left:275.333333pt;}
.xc_c00007{left:297.200000pt;}
.x6_c00007{left:311.333333pt;}
.x4_c00007{left:318.000000pt;}
.x15_c00007{left:340.801554pt;}
.xd_c00007{left:342.933333pt;}
.x14_c00007{left:692.933333pt;}
}





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

.ir_c00008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_736f70eb9c5207e6ce293ca0.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;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:ff2_c00008;src:url('chunks/assets/font_2d7ca8a7dbb2bdc20c510254.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_d4a33e960de965532a9e1cdf.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_560a758105de5fa97a573148.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_ffd300d5a337dede532141c2.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00008;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00008{font-family:ff6_c00008;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00008{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls5_c00008{letter-spacing:0.000000px;}
.ls1_c00008{letter-spacing:3.000000px;}
.ls4_c00008{letter-spacing:6.000000px;}
.ls2_c00008{letter-spacing:14.308800px;}
.ls3_c00008{letter-spacing:18.000000px;}
.ls0_c00008{letter-spacing:35.100000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00008{word-spacing:-20.967000px;}
.ws2_c00008{word-spacing:-20.244000px;}
.ws0_c00008{word-spacing:-15.183000px;}
.ws1_c00008{word-spacing:-1.008000px;}
.ws4_c00008{word-spacing:0.000000px;}
._45_c00008{margin-left:-42.690000px;}
._19_c00008{margin-left:-33.012000px;}
._14_c00008{margin-left:-30.933000px;}
._3e_c00008{margin-left:-29.760000px;}
._24_c00008{margin-left:-24.192000px;}
._42_c00008{margin-left:-21.336000px;}
._22_c00008{margin-left:-18.048000px;}
._2e_c00008{margin-left:-16.416000px;}
._43_c00008{margin-left:-14.880000px;}
._28_c00008{margin-left:-13.728000px;}
._27_c00008{margin-left:-11.808000px;}
._16_c00008{margin-left:-10.332000px;}
._1f_c00008{margin-left:-9.312000px;}
._29_c00008{margin-left:-8.064000px;}
._21_c00008{margin-left:-6.816000px;}
._17_c00008{margin-left:-5.481000px;}
._36_c00008{margin-left:-4.368000px;}
._11_c00008{margin-left:-3.360000px;}
._d_c00008{margin-left:-1.920000px;}
._9_c00008{width:1.248000px;}
._2_c00008{width:2.304000px;}
._0_c00008{width:3.360000px;}
._6_c00008{width:4.608000px;}
._1_c00008{width:5.664000px;}
._8_c00008{width:7.488000px;}
._5_c00008{width:9.408000px;}
._b_c00008{width:10.464000px;}
._4_c00008{width:11.616000px;}
._25_c00008{width:12.672000px;}
._3_c00008{width:13.920000px;}
._7_c00008{width:15.168000px;}
._c_c00008{width:16.800000px;}
._2c_c00008{width:17.856000px;}
._e_c00008{width:18.912000px;}
._13_c00008{width:20.064000px;}
._1d_c00008{width:21.408000px;}
._33_c00008{width:23.976000px;}
._a_c00008{width:26.112000px;}
._44_c00008{width:27.264000px;}
._34_c00008{width:28.452000px;}
._10_c00008{width:29.664000px;}
._1a_c00008{width:31.320000px;}
._47_c00008{width:32.736000px;}
._1b_c00008{width:34.041000px;}
._2b_c00008{width:35.376000px;}
._39_c00008{width:37.224000px;}
._f_c00008{width:38.496000px;}
._12_c00008{width:40.320000px;}
._30_c00008{width:43.584000px;}
._40_c00008{width:44.676000px;}
._26_c00008{width:46.848000px;}
._20_c00008{width:48.873000px;}
._38_c00008{width:51.996000px;}
._15_c00008{width:54.999000px;}
._37_c00008{width:59.040000px;}
._3f_c00008{width:61.473000px;}
._46_c00008{width:64.608000px;}
._3d_c00008{width:67.305000px;}
._35_c00008{width:71.448000px;}
._32_c00008{width:72.696000px;}
._3c_c00008{width:75.177000px;}
._1c_c00008{width:98.976000px;}
._31_c00008{width:131.400000px;}
._23_c00008{width:140.544000px;}
._1e_c00008{width:182.652000px;}
._2d_c00008{width:327.132000px;}
._41_c00008{width:336.912000px;}
._2a_c00008{width:374.400000px;}
._3b_c00008{width:411.552000px;}
._3a_c00008{width:413.640000px;}
._2f_c00008{width:446.448000px;}
._18_c00008{width:679.344000px;}
._48_c00008{width:960.096000px;}
.fc2_c00008{color:transparent;}
.fc1_c00008{color:rgb(128,128,128);}
.fc0_c00008{color:rgb(0,0,0);}
.fs7_c00008{font-size:48.000000px;}
.fs2_c00008{font-size:63.000000px;}
.fs5_c00008{font-size:67.200000px;}
.fs3_c00008{font-size:84.000000px;}
.fs6_c00008{font-size:87.000000px;}
.fs1_c00008{font-size:96.000000px;}
.fs4_c00008{font-size:99.000000px;}
.fs0_c00008{font-size:102.000000px;}
.y0_c00008{bottom:0.000000px;}
.y27_c00008{bottom:3.105000px;}
.y26_c00008{bottom:7.228371px;}
.y24_c00008{bottom:134.415000px;}
.y23_c00008{bottom:166.515000px;}
.y22_c00008{bottom:200.565000px;}
.y21_c00008{bottom:239.265000px;}
.y20_c00008{bottom:269.415000px;}
.y25_c00008{bottom:274.065000px;}
.y1f_c00008{bottom:302.715000px;}
.y1e_c00008{bottom:337.965000px;}
.y1d_c00008{bottom:369.315000px;}
.y1c_c00008{bottom:404.115000px;}
.y1b_c00008{bottom:437.115000px;}
.y1a_c00008{bottom:470.265000px;}
.y19_c00008{bottom:504.315000px;}
.y18_c00008{bottom:539.415000px;}
.y17_c00008{bottom:572.115000px;}
.y16_c00008{bottom:603.915000px;}
.y15_c00008{bottom:636.615000px;}
.y14_c00008{bottom:670.965000px;}
.y13_c00008{bottom:705.465000px;}
.y12_c00008{bottom:736.515000px;}
.y11_c00008{bottom:770.265000px;}
.y10_c00008{bottom:804.915000px;}
.yf_c00008{bottom:839.115000px;}
.ye_c00008{bottom:869.865000px;}
.yd_c00008{bottom:901.815000px;}
.yc_c00008{bottom:934.965000px;}
.yb_c00008{bottom:966.915000px;}
.ya_c00008{bottom:1002.165000px;}
.y9_c00008{bottom:1035.465000px;}
.y8_c00008{bottom:1069.215000px;}
.y7_c00008{bottom:1102.065000px;}
.y6_c00008{bottom:1167.165000px;}
.y5_c00008{bottom:1201.515000px;}
.y4_c00008{bottom:1234.215000px;}
.y3_c00008{bottom:1268.115000px;}
.y2_c00008{bottom:1301.865000px;}
.y1_c00008{bottom:1330.065000px;}
.h7_c00008{height:13.200074px;}
.h8_c00008{height:43.804688px;}
.h4_c00008{height:79.765137px;}
.h5_c00008{height:98.314453px;}
.h2_c00008{height:102.796875px;}
.h6_c00008{height:110.151855px;}
.h3_c00008{height:121.546875px;}
.h0_c00008{height:1395.375000px;}
.h1_c00008{height:1395.750000px;}
.w2_c00008{width:104.875500px;}
.w0_c00008{width:878.025000px;}
.w1_c00008{width:878.250000px;}
.x0_c00008{left:0.000000px;}
.xd_c00008{left:35.850000px;}
.x2_c00008{left:37.500000px;}
.xc_c00008{left:41.250000px;}
.xb_c00008{left:42.450000px;}
.xe_c00008{left:43.500000px;}
.x3_c00008{left:44.550000px;}
.x4_c00008{left:46.200000px;}
.xf_c00008{left:47.700000px;}
.x10_c00008{left:49.350000px;}
.xa_c00008{left:91.500000px;}
.x5_c00008{left:168.750000px;}
.x9_c00008{left:173.700000px;}
.x6_c00008{left:188.100000px;}
.x7_c00008{left:189.300000px;}
.x8_c00008{left:203.850000px;}
.x11_c00008{left:310.800000px;}
.x13_c00008{left:390.826721px;}
.x1_c00008{left:551.100000px;}
.x12_c00008{left:691.950000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls5_c00008{letter-spacing:0.000000pt;}
.ls1_c00008{letter-spacing:2.666667pt;}
.ls4_c00008{letter-spacing:5.333333pt;}
.ls2_c00008{letter-spacing:12.718933pt;}
.ls3_c00008{letter-spacing:16.000000pt;}
.ls0_c00008{letter-spacing:31.200000pt;}
.ws3_c00008{word-spacing:-18.637333pt;}
.ws2_c00008{word-spacing:-17.994667pt;}
.ws0_c00008{word-spacing:-13.496000pt;}
.ws1_c00008{word-spacing:-0.896000pt;}
.ws4_c00008{word-spacing:0.000000pt;}
._45_c00008{margin-left:-37.946667pt;}
._19_c00008{margin-left:-29.344000pt;}
._14_c00008{margin-left:-27.496000pt;}
._3e_c00008{margin-left:-26.453333pt;}
._24_c00008{margin-left:-21.504000pt;}
._42_c00008{margin-left:-18.965333pt;}
._22_c00008{margin-left:-16.042667pt;}
._2e_c00008{margin-left:-14.592000pt;}
._43_c00008{margin-left:-13.226667pt;}
._28_c00008{margin-left:-12.202667pt;}
._27_c00008{margin-left:-10.496000pt;}
._16_c00008{margin-left:-9.184000pt;}
._1f_c00008{margin-left:-8.277333pt;}
._29_c00008{margin-left:-7.168000pt;}
._21_c00008{margin-left:-6.058667pt;}
._17_c00008{margin-left:-4.872000pt;}
._36_c00008{margin-left:-3.882667pt;}
._11_c00008{margin-left:-2.986667pt;}
._d_c00008{margin-left:-1.706667pt;}
._9_c00008{width:1.109333pt;}
._2_c00008{width:2.048000pt;}
._0_c00008{width:2.986667pt;}
._6_c00008{width:4.096000pt;}
._1_c00008{width:5.034667pt;}
._8_c00008{width:6.656000pt;}
._5_c00008{width:8.362667pt;}
._b_c00008{width:9.301333pt;}
._4_c00008{width:10.325333pt;}
._25_c00008{width:11.264000pt;}
._3_c00008{width:12.373333pt;}
._7_c00008{width:13.482667pt;}
._c_c00008{width:14.933333pt;}
._2c_c00008{width:15.872000pt;}
._e_c00008{width:16.810667pt;}
._13_c00008{width:17.834667pt;}
._1d_c00008{width:19.029333pt;}
._33_c00008{width:21.312000pt;}
._a_c00008{width:23.210667pt;}
._44_c00008{width:24.234667pt;}
._34_c00008{width:25.290667pt;}
._10_c00008{width:26.368000pt;}
._1a_c00008{width:27.840000pt;}
._47_c00008{width:29.098667pt;}
._1b_c00008{width:30.258667pt;}
._2b_c00008{width:31.445333pt;}
._39_c00008{width:33.088000pt;}
._f_c00008{width:34.218667pt;}
._12_c00008{width:35.840000pt;}
._30_c00008{width:38.741333pt;}
._40_c00008{width:39.712000pt;}
._26_c00008{width:41.642667pt;}
._20_c00008{width:43.442667pt;}
._38_c00008{width:46.218667pt;}
._15_c00008{width:48.888000pt;}
._37_c00008{width:52.480000pt;}
._3f_c00008{width:54.642667pt;}
._46_c00008{width:57.429333pt;}
._3d_c00008{width:59.826667pt;}
._35_c00008{width:63.509333pt;}
._32_c00008{width:64.618667pt;}
._3c_c00008{width:66.824000pt;}
._1c_c00008{width:87.978667pt;}
._31_c00008{width:116.800000pt;}
._23_c00008{width:124.928000pt;}
._1e_c00008{width:162.357333pt;}
._2d_c00008{width:290.784000pt;}
._41_c00008{width:299.477333pt;}
._2a_c00008{width:332.800000pt;}
._3b_c00008{width:365.824000pt;}
._3a_c00008{width:367.680000pt;}
._2f_c00008{width:396.842667pt;}
._18_c00008{width:603.861333pt;}
._48_c00008{width:853.418667pt;}
.fs7_c00008{font-size:42.666667pt;}
.fs2_c00008{font-size:56.000000pt;}
.fs5_c00008{font-size:59.733333pt;}
.fs3_c00008{font-size:74.666667pt;}
.fs6_c00008{font-size:77.333333pt;}
.fs1_c00008{font-size:85.333333pt;}
.fs4_c00008{font-size:88.000000pt;}
.fs0_c00008{font-size:90.666667pt;}
.y0_c00008{bottom:0.000000pt;}
.y27_c00008{bottom:2.760000pt;}
.y26_c00008{bottom:6.425219pt;}
.y24_c00008{bottom:119.480000pt;}
.y23_c00008{bottom:148.013333pt;}
.y22_c00008{bottom:178.280000pt;}
.y21_c00008{bottom:212.680000pt;}
.y20_c00008{bottom:239.480000pt;}
.y25_c00008{bottom:243.613333pt;}
.y1f_c00008{bottom:269.080000pt;}
.y1e_c00008{bottom:300.413333pt;}
.y1d_c00008{bottom:328.280000pt;}
.y1c_c00008{bottom:359.213333pt;}
.y1b_c00008{bottom:388.546667pt;}
.y1a_c00008{bottom:418.013333pt;}
.y19_c00008{bottom:448.280000pt;}
.y18_c00008{bottom:479.480000pt;}
.y17_c00008{bottom:508.546667pt;}
.y16_c00008{bottom:536.813333pt;}
.y15_c00008{bottom:565.880000pt;}
.y14_c00008{bottom:596.413333pt;}
.y13_c00008{bottom:627.080000pt;}
.y12_c00008{bottom:654.680000pt;}
.y11_c00008{bottom:684.680000pt;}
.y10_c00008{bottom:715.480000pt;}
.yf_c00008{bottom:745.880000pt;}
.ye_c00008{bottom:773.213333pt;}
.yd_c00008{bottom:801.613333pt;}
.yc_c00008{bottom:831.080000pt;}
.yb_c00008{bottom:859.480000pt;}
.ya_c00008{bottom:890.813333pt;}
.y9_c00008{bottom:920.413333pt;}
.y8_c00008{bottom:950.413333pt;}
.y7_c00008{bottom:979.613333pt;}
.y6_c00008{bottom:1037.480000pt;}
.y5_c00008{bottom:1068.013333pt;}
.y4_c00008{bottom:1097.080000pt;}
.y3_c00008{bottom:1127.213333pt;}
.y2_c00008{bottom:1157.213333pt;}
.y1_c00008{bottom:1182.280000pt;}
.h7_c00008{height:11.733399pt;}
.h8_c00008{height:38.937500pt;}
.h4_c00008{height:70.902344pt;}
.h5_c00008{height:87.390625pt;}
.h2_c00008{height:91.375000pt;}
.h6_c00008{height:97.912760pt;}
.h3_c00008{height:108.041667pt;}
.h0_c00008{height:1240.333333pt;}
.h1_c00008{height:1240.666667pt;}
.w2_c00008{width:93.222667pt;}
.w0_c00008{width:780.466667pt;}
.w1_c00008{width:780.666667pt;}
.x0_c00008{left:0.000000pt;}
.xd_c00008{left:31.866667pt;}
.x2_c00008{left:33.333333pt;}
.xc_c00008{left:36.666667pt;}
.xb_c00008{left:37.733333pt;}
.xe_c00008{left:38.666667pt;}
.x3_c00008{left:39.600000pt;}
.x4_c00008{left:41.066667pt;}
.xf_c00008{left:42.400000pt;}
.x10_c00008{left:43.866667pt;}
.xa_c00008{left:81.333333pt;}
.x5_c00008{left:150.000000pt;}
.x9_c00008{left:154.400000pt;}
.x6_c00008{left:167.200000pt;}
.x7_c00008{left:168.266667pt;}
.x8_c00008{left:181.200000pt;}
.x11_c00008{left:276.266667pt;}
.x13_c00008{left:347.401530pt;}
.x1_c00008{left:489.866667pt;}
.x12_c00008{left:615.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec8cd2df1f75316181203cc4.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_cedf9b43095a2cc9d7e0d7f1.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_bb078b9c41c393273fb83ce2.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00009;src:url('chunks/assets/font_a2ff0ac77936d4488b043a87.woff2')format("woff");}.ff5_c00009{font-family:ff5_c00009;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00009;src:url('chunks/assets/font_d9e0d3f72a4be445c6c16f1b.woff2')format("woff");}.ff6_c00009{font-family:ff6_c00009;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00009;src:url('chunks/assets/font_12d6292ab7ff093dc4d704f4.woff2')format("woff");}.ff7_c00009{font-family:ff7_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00009;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00009{font-family:ff8_c00009;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00009{vertical-align:-101.400000px;}
.v0_c00009{vertical-align:0.000000px;}
.ls5_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:1.800000px;}
.ls1_c00009{letter-spacing:11.100000px;}
.ls8_c00009{letter-spacing:12.000000px;}
.ls2_c00009{letter-spacing:23.802000px;}
.ls6_c00009{letter-spacing:24.000000px;}
.ls3_c00009{letter-spacing:27.633000px;}
.ls4_c00009{letter-spacing:75.033000px;}
.ls7_c00009{letter-spacing:177.000000px;}
.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;}
}
.ws7_c00009{word-spacing:-62.031000px;}
.ws4_c00009{word-spacing:-58.029000px;}
.ws3_c00009{word-spacing:-30.798000px;}
.ws8_c00009{word-spacing:-23.136000px;}
.ws6_c00009{word-spacing:-20.967000px;}
.ws0_c00009{word-spacing:-20.244000px;}
.ws5_c00009{word-spacing:-18.798000px;}
.ws2_c00009{word-spacing:-16.068000px;}
.ws9_c00009{word-spacing:0.000000px;}
.ws1_c00009{word-spacing:487.608000px;}
._2a_c00009{margin-left:-182.784000px;}
._2c_c00009{margin-left:-179.328000px;}
._2d_c00009{margin-left:-171.408000px;}
._2b_c00009{margin-left:-161.088000px;}
._22_c00009{margin-left:-84.288000px;}
._66_c00009{margin-left:-80.346000px;}
._31_c00009{margin-left:-73.152000px;}
._39_c00009{margin-left:-49.728000px;}
._69_c00009{margin-left:-41.376000px;}
._58_c00009{margin-left:-40.215000px;}
._4c_c00009{margin-left:-34.548000px;}
._3f_c00009{margin-left:-33.345000px;}
._43_c00009{margin-left:-31.815000px;}
._53_c00009{margin-left:-29.289000px;}
._60_c00009{margin-left:-27.366000px;}
._3d_c00009{margin-left:-26.292000px;}
._4d_c00009{margin-left:-25.290000px;}
._5c_c00009{margin-left:-24.126000px;}
._54_c00009{margin-left:-22.161000px;}
._3c_c00009{margin-left:-21.024000px;}
._5a_c00009{margin-left:-19.425000px;}
._48_c00009{margin-left:-18.357000px;}
._35_c00009{margin-left:-17.184000px;}
._6a_c00009{margin-left:-14.952000px;}
._12_c00009{margin-left:-13.824000px;}
._37_c00009{margin-left:-11.988000px;}
._11_c00009{margin-left:-10.224000px;}
._17_c00009{margin-left:-8.292000px;}
._16_c00009{margin-left:-6.720000px;}
._e_c00009{margin-left:-4.896000px;}
._8_c00009{margin-left:-3.360000px;}
._9_c00009{margin-left:-1.728000px;}
._f_c00009{width:1.464000px;}
._b_c00009{width:2.784000px;}
._6_c00009{width:4.224000px;}
._0_c00009{width:5.760000px;}
._3_c00009{width:7.488000px;}
._5_c00009{width:8.640000px;}
._1_c00009{width:9.792000px;}
._20_c00009{width:11.340000px;}
._1c_c00009{width:13.344000px;}
._1a_c00009{width:14.400000px;}
._26_c00009{width:15.432000px;}
._2_c00009{width:16.896000px;}
._1e_c00009{width:18.720000px;}
._5d_c00009{width:19.881000px;}
._7_c00009{width:21.384000px;}
._5f_c00009{width:22.674000px;}
._33_c00009{width:24.216000px;}
._4_c00009{width:25.440000px;}
._28_c00009{width:27.360000px;}
._40_c00009{width:29.034000px;}
._a_c00009{width:30.240000px;}
._34_c00009{width:32.088000px;}
._63_c00009{width:33.648000px;}
._2f_c00009{width:34.848000px;}
._13_c00009{width:36.432000px;}
._6c_c00009{width:37.878000px;}
._2e_c00009{width:39.264000px;}
._57_c00009{width:40.320000px;}
._10_c00009{width:41.328000px;}
._c_c00009{width:42.912000px;}
._56_c00009{width:43.914000px;}
._14_c00009{width:45.120000px;}
._29_c00009{width:46.176000px;}
._1f_c00009{width:47.448000px;}
._27_c00009{width:49.224000px;}
._5b_c00009{width:51.450000px;}
._4e_c00009{width:52.932000px;}
._50_c00009{width:54.912000px;}
._61_c00009{width:56.451000px;}
._5e_c00009{width:58.065000px;}
._1d_c00009{width:60.672000px;}
._21_c00009{width:62.508000px;}
._65_c00009{width:64.662000px;}
._d_c00009{width:66.912000px;}
._41_c00009{width:69.882000px;}
._44_c00009{width:74.349000px;}
._6b_c00009{width:78.396000px;}
._51_c00009{width:82.464000px;}
._18_c00009{width:87.504000px;}
._38_c00009{width:91.488000px;}
._55_c00009{width:97.344000px;}
._45_c00009{width:107.625000px;}
._15_c00009{width:112.320000px;}
._24_c00009{width:122.784000px;}
._6e_c00009{width:138.135000px;}
._4b_c00009{width:142.608000px;}
._1b_c00009{width:148.704000px;}
._42_c00009{width:160.881000px;}
._47_c00009{width:165.834000px;}
._52_c00009{width:185.760000px;}
._64_c00009{width:199.896000px;}
._59_c00009{width:202.650000px;}
._62_c00009{width:208.977000px;}
._3b_c00009{width:213.024000px;}
._25_c00009{width:226.272000px;}
._6f_c00009{width:260.376000px;}
._19_c00009{width:273.516000px;}
._4f_c00009{width:283.104000px;}
._36_c00009{width:289.668000px;}
._46_c00009{width:319.725000px;}
._30_c00009{width:331.488000px;}
._3a_c00009{width:335.328000px;}
._3e_c00009{width:346.329000px;}
._68_c00009{width:350.454000px;}
._67_c00009{width:368.157000px;}
._32_c00009{width:379.680000px;}
._23_c00009{width:398.976000px;}
._49_c00009{width:745.908000px;}
._4a_c00009{width:826.023000px;}
._6d_c00009{width:940.449000px;}
.fc2_c00009{color:transparent;}
.fc1_c00009{color:rgb(128,128,128);}
.fc0_c00009{color:rgb(0,0,0);}
.fs7_c00009{font-size:24.000000px;}
.fs2_c00009{font-size:36.000000px;}
.fs9_c00009{font-size:48.000000px;}
.fs5_c00009{font-size:78.000000px;}
.fs3_c00009{font-size:84.000000px;}
.fs6_c00009{font-size:87.000000px;}
.fs8_c00009{font-size:93.000000px;}
.fs0_c00009{font-size:96.000000px;}
.fs1_c00009{font-size:102.000000px;}
.fs4_c00009{font-size:105.000000px;}
.y0_c00009{bottom:0.000000px;}
.y25_c00009{bottom:3.105000px;}
.y24_c00009{bottom:7.228357px;}
.y22_c00009{bottom:116.880000px;}
.y21_c00009{bottom:151.530000px;}
.y20_c00009{bottom:185.280000px;}
.y1f_c00009{bottom:222.480000px;}
.y1e_c00009{bottom:255.180000px;}
.y1d_c00009{bottom:287.580000px;}
.y1c_c00009{bottom:319.230000px;}
.y1b_c00009{bottom:360.180000px;}
.y1a_c00009{bottom:390.780000px;}
.y19_c00009{bottom:426.330000px;}
.y18_c00009{bottom:457.680000px;}
.y17_c00009{bottom:490.080000px;}
.y16_c00009{bottom:524.580000px;}
.y15_c00009{bottom:556.980000px;}
.y23_c00009{bottom:562.680000px;}
.y14_c00009{bottom:590.730000px;}
.y13_c00009{bottom:625.380000px;}
.y12_c00009{bottom:656.730000px;}
.y11_c00009{bottom:688.230000px;}
.y10_c00009{bottom:726.930000px;}
.yf_c00009{bottom:758.130000px;}
.ye_c00009{bottom:828.180000px;}
.yd_c00009{bottom:858.030000px;}
.yc_c00009{bottom:891.780000px;}
.yb_c00009{bottom:924.180000px;}
.ya_c00009{bottom:957.780000px;}
.y9_c00009{bottom:992.280000px;}
.y8_c00009{bottom:1024.080000px;}
.y7_c00009{bottom:1058.130000px;}
.y6_c00009{bottom:1091.880000px;}
.y5_c00009{bottom:1124.580000px;}
.y4_c00009{bottom:1189.980000px;}
.y3_c00009{bottom:1226.130000px;}
.y2_c00009{bottom:1256.280000px;}
.y1_c00009{bottom:1290.030000px;}
.h6_c00009{height:13.200074px;}
.h7_c00009{height:43.804688px;}
.h3_c00009{height:45.580078px;}
.h5_c00009{height:110.151855px;}
.h2_c00009{height:121.546875px;}
.h4_c00009{height:132.941895px;}
.h0_c00009{height:1382.700000px;}
.h1_c00009{height:1383.000000px;}
.w2_c00009{width:104.875500px;}
.w0_c00009{width:863.175000px;}
.w1_c00009{width:863.250000px;}
.x0_c00009{left:0.000000px;}
.x17_c00009{left:48.900000px;}
.x16_c00009{left:51.600000px;}
.xe_c00009{left:53.700000px;}
.xa_c00009{left:55.950000px;}
.x5_c00009{left:57.450000px;}
.x8_c00009{left:58.650000px;}
.xc_c00009{left:76.950000px;}
.x1a_c00009{left:80.400000px;}
.xd_c00009{left:83.400000px;}
.x15_c00009{left:87.750000px;}
.x4_c00009{left:94.200000px;}
.x6_c00009{left:101.850000px;}
.x9_c00009{left:170.850000px;}
.xb_c00009{left:180.450000px;}
.xf_c00009{left:217.800000px;}
.x11_c00009{left:242.100000px;}
.x18_c00009{left:264.900000px;}
.x14_c00009{left:269.250000px;}
.x13_c00009{left:271.950000px;}
.x10_c00009{left:274.500000px;}
.x12_c00009{left:275.700000px;}
.x1_c00009{left:277.800000px;}
.x7_c00009{left:280.500000px;}
.x1b_c00009{left:383.401749px;}
.x3_c00009{left:406.800000px;}
.x19_c00009{left:541.500000px;}
.x2_c00009{left:600.750000px;}
@media print{
.v1_c00009{vertical-align:-90.133333pt;}
.v0_c00009{vertical-align:0.000000pt;}
.ls5_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:1.600000pt;}
.ls1_c00009{letter-spacing:9.866667pt;}
.ls8_c00009{letter-spacing:10.666667pt;}
.ls2_c00009{letter-spacing:21.157333pt;}
.ls6_c00009{letter-spacing:21.333333pt;}
.ls3_c00009{letter-spacing:24.562667pt;}
.ls4_c00009{letter-spacing:66.696000pt;}
.ls7_c00009{letter-spacing:157.333333pt;}
.ws7_c00009{word-spacing:-55.138667pt;}
.ws4_c00009{word-spacing:-51.581333pt;}
.ws3_c00009{word-spacing:-27.376000pt;}
.ws8_c00009{word-spacing:-20.565333pt;}
.ws6_c00009{word-spacing:-18.637333pt;}
.ws0_c00009{word-spacing:-17.994667pt;}
.ws5_c00009{word-spacing:-16.709333pt;}
.ws2_c00009{word-spacing:-14.282667pt;}
.ws9_c00009{word-spacing:0.000000pt;}
.ws1_c00009{word-spacing:433.429333pt;}
._2a_c00009{margin-left:-162.474667pt;}
._2c_c00009{margin-left:-159.402667pt;}
._2d_c00009{margin-left:-152.362667pt;}
._2b_c00009{margin-left:-143.189333pt;}
._22_c00009{margin-left:-74.922667pt;}
._66_c00009{margin-left:-71.418667pt;}
._31_c00009{margin-left:-65.024000pt;}
._39_c00009{margin-left:-44.202667pt;}
._69_c00009{margin-left:-36.778667pt;}
._58_c00009{margin-left:-35.746667pt;}
._4c_c00009{margin-left:-30.709333pt;}
._3f_c00009{margin-left:-29.640000pt;}
._43_c00009{margin-left:-28.280000pt;}
._53_c00009{margin-left:-26.034667pt;}
._60_c00009{margin-left:-24.325333pt;}
._3d_c00009{margin-left:-23.370667pt;}
._4d_c00009{margin-left:-22.480000pt;}
._5c_c00009{margin-left:-21.445333pt;}
._54_c00009{margin-left:-19.698667pt;}
._3c_c00009{margin-left:-18.688000pt;}
._5a_c00009{margin-left:-17.266667pt;}
._48_c00009{margin-left:-16.317333pt;}
._35_c00009{margin-left:-15.274667pt;}
._6a_c00009{margin-left:-13.290667pt;}
._12_c00009{margin-left:-12.288000pt;}
._37_c00009{margin-left:-10.656000pt;}
._11_c00009{margin-left:-9.088000pt;}
._17_c00009{margin-left:-7.370667pt;}
._16_c00009{margin-left:-5.973333pt;}
._e_c00009{margin-left:-4.352000pt;}
._8_c00009{margin-left:-2.986667pt;}
._9_c00009{margin-left:-1.536000pt;}
._f_c00009{width:1.301333pt;}
._b_c00009{width:2.474667pt;}
._6_c00009{width:3.754667pt;}
._0_c00009{width:5.120000pt;}
._3_c00009{width:6.656000pt;}
._5_c00009{width:7.680000pt;}
._1_c00009{width:8.704000pt;}
._20_c00009{width:10.080000pt;}
._1c_c00009{width:11.861333pt;}
._1a_c00009{width:12.800000pt;}
._26_c00009{width:13.717333pt;}
._2_c00009{width:15.018667pt;}
._1e_c00009{width:16.640000pt;}
._5d_c00009{width:17.672000pt;}
._7_c00009{width:19.008000pt;}
._5f_c00009{width:20.154667pt;}
._33_c00009{width:21.525333pt;}
._4_c00009{width:22.613333pt;}
._28_c00009{width:24.320000pt;}
._40_c00009{width:25.808000pt;}
._a_c00009{width:26.880000pt;}
._34_c00009{width:28.522667pt;}
._63_c00009{width:29.909333pt;}
._2f_c00009{width:30.976000pt;}
._13_c00009{width:32.384000pt;}
._6c_c00009{width:33.669333pt;}
._2e_c00009{width:34.901333pt;}
._57_c00009{width:35.840000pt;}
._10_c00009{width:36.736000pt;}
._c_c00009{width:38.144000pt;}
._56_c00009{width:39.034667pt;}
._14_c00009{width:40.106667pt;}
._29_c00009{width:41.045333pt;}
._1f_c00009{width:42.176000pt;}
._27_c00009{width:43.754667pt;}
._5b_c00009{width:45.733333pt;}
._4e_c00009{width:47.050667pt;}
._50_c00009{width:48.810667pt;}
._61_c00009{width:50.178667pt;}
._5e_c00009{width:51.613333pt;}
._1d_c00009{width:53.930667pt;}
._21_c00009{width:55.562667pt;}
._65_c00009{width:57.477333pt;}
._d_c00009{width:59.477333pt;}
._41_c00009{width:62.117333pt;}
._44_c00009{width:66.088000pt;}
._6b_c00009{width:69.685333pt;}
._51_c00009{width:73.301333pt;}
._18_c00009{width:77.781333pt;}
._38_c00009{width:81.322667pt;}
._55_c00009{width:86.528000pt;}
._45_c00009{width:95.666667pt;}
._15_c00009{width:99.840000pt;}
._24_c00009{width:109.141333pt;}
._6e_c00009{width:122.786667pt;}
._4b_c00009{width:126.762667pt;}
._1b_c00009{width:132.181333pt;}
._42_c00009{width:143.005333pt;}
._47_c00009{width:147.408000pt;}
._52_c00009{width:165.120000pt;}
._64_c00009{width:177.685333pt;}
._59_c00009{width:180.133333pt;}
._62_c00009{width:185.757333pt;}
._3b_c00009{width:189.354667pt;}
._25_c00009{width:201.130667pt;}
._6f_c00009{width:231.445333pt;}
._19_c00009{width:243.125333pt;}
._4f_c00009{width:251.648000pt;}
._36_c00009{width:257.482667pt;}
._46_c00009{width:284.200000pt;}
._30_c00009{width:294.656000pt;}
._3a_c00009{width:298.069333pt;}
._3e_c00009{width:307.848000pt;}
._68_c00009{width:311.514667pt;}
._67_c00009{width:327.250667pt;}
._32_c00009{width:337.493333pt;}
._23_c00009{width:354.645333pt;}
._49_c00009{width:663.029333pt;}
._4a_c00009{width:734.242667pt;}
._6d_c00009{width:835.954667pt;}
.fs7_c00009{font-size:21.333333pt;}
.fs2_c00009{font-size:32.000000pt;}
.fs9_c00009{font-size:42.666667pt;}
.fs5_c00009{font-size:69.333333pt;}
.fs3_c00009{font-size:74.666667pt;}
.fs6_c00009{font-size:77.333333pt;}
.fs8_c00009{font-size:82.666667pt;}
.fs0_c00009{font-size:85.333333pt;}
.fs1_c00009{font-size:90.666667pt;}
.fs4_c00009{font-size:93.333333pt;}
.y0_c00009{bottom:0.000000pt;}
.y25_c00009{bottom:2.760000pt;}
.y24_c00009{bottom:6.425206pt;}
.y22_c00009{bottom:103.893333pt;}
.y21_c00009{bottom:134.693333pt;}
.y20_c00009{bottom:164.693333pt;}
.y1f_c00009{bottom:197.760000pt;}
.y1e_c00009{bottom:226.826667pt;}
.y1d_c00009{bottom:255.626667pt;}
.y1c_c00009{bottom:283.760000pt;}
.y1b_c00009{bottom:320.160000pt;}
.y1a_c00009{bottom:347.360000pt;}
.y19_c00009{bottom:378.960000pt;}
.y18_c00009{bottom:406.826667pt;}
.y17_c00009{bottom:435.626667pt;}
.y16_c00009{bottom:466.293333pt;}
.y15_c00009{bottom:495.093333pt;}
.y23_c00009{bottom:500.160000pt;}
.y14_c00009{bottom:525.093333pt;}
.y13_c00009{bottom:555.893333pt;}
.y12_c00009{bottom:583.760000pt;}
.y11_c00009{bottom:611.760000pt;}
.y10_c00009{bottom:646.160000pt;}
.yf_c00009{bottom:673.893333pt;}
.ye_c00009{bottom:736.160000pt;}
.yd_c00009{bottom:762.693333pt;}
.yc_c00009{bottom:792.693333pt;}
.yb_c00009{bottom:821.493333pt;}
.ya_c00009{bottom:851.360000pt;}
.y9_c00009{bottom:882.026667pt;}
.y8_c00009{bottom:910.293333pt;}
.y7_c00009{bottom:940.560000pt;}
.y6_c00009{bottom:970.560000pt;}
.y5_c00009{bottom:999.626667pt;}
.y4_c00009{bottom:1057.760000pt;}
.y3_c00009{bottom:1089.893333pt;}
.y2_c00009{bottom:1116.693333pt;}
.y1_c00009{bottom:1146.693333pt;}
.h6_c00009{height:11.733399pt;}
.h7_c00009{height:38.937500pt;}
.h3_c00009{height:40.515625pt;}
.h5_c00009{height:97.912760pt;}
.h2_c00009{height:108.041667pt;}
.h4_c00009{height:118.170573pt;}
.h0_c00009{height:1229.066667pt;}
.h1_c00009{height:1229.333333pt;}
.w2_c00009{width:93.222667pt;}
.w0_c00009{width:767.266667pt;}
.w1_c00009{width:767.333333pt;}
.x0_c00009{left:0.000000pt;}
.x17_c00009{left:43.466667pt;}
.x16_c00009{left:45.866667pt;}
.xe_c00009{left:47.733333pt;}
.xa_c00009{left:49.733333pt;}
.x5_c00009{left:51.066667pt;}
.x8_c00009{left:52.133333pt;}
.xc_c00009{left:68.400000pt;}
.x1a_c00009{left:71.466667pt;}
.xd_c00009{left:74.133333pt;}
.x15_c00009{left:78.000000pt;}
.x4_c00009{left:83.733333pt;}
.x6_c00009{left:90.533333pt;}
.x9_c00009{left:151.866667pt;}
.xb_c00009{left:160.400000pt;}
.xf_c00009{left:193.600000pt;}
.x11_c00009{left:215.200000pt;}
.x18_c00009{left:235.466667pt;}
.x14_c00009{left:239.333333pt;}
.x13_c00009{left:241.733333pt;}
.x10_c00009{left:244.000000pt;}
.x12_c00009{left:245.066667pt;}
.x1_c00009{left:246.933333pt;}
.x7_c00009{left:249.333333pt;}
.x1b_c00009{left:340.801554pt;}
.x3_c00009{left:361.600000pt;}
.x19_c00009{left:481.333333pt;}
.x2_c00009{left:534.000000pt;}
}





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

.ir_c00010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_93775ac306eac74a8435466d.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_b91aae891f5bb4eb313b91c1.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_d9e0d3f72a4be445c6c16f1b.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_a5dfb00a11818597ab60668f.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_33da1e3c387074264aea9143.woff2')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00010;src:url('chunks/assets/font_cc27129d79cdcf9753d12821.woff2')format("woff");}.ff6_c00010{font-family:ff6_c00010;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00010;src:url('chunks/assets/font_90994cce73a723a5a5fbe4d0.woff2')format("woff");}.ff7_c00010{font-family:ff7_c00010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00010;src:url('chunks/assets/font_f324304027ab634c24f439e0.woff2')format("woff");}.ff8_c00010{font-family:ff8_c00010;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:ff9_c00010;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00010{font-family:ff9_c00010;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00010{vertical-align:-24.000000px;}
.v0_c00010{vertical-align:0.000000px;}
.ls7_c00010{letter-spacing:0.000000px;}
.ls6_c00010{letter-spacing:1.800000px;}
.ls1_c00010{letter-spacing:3.480000px;}
.ls4_c00010{letter-spacing:4.848000px;}
.ls2_c00010{letter-spacing:14.505600px;}
.ls3_c00010{letter-spacing:20.016000px;}
.ls8_c00010{letter-spacing:24.000000px;}
.ls5_c00010{letter-spacing:34.272000px;}
.ls0_c00010{letter-spacing:400.653000px;}
.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;}
}
.ws3_c00010{word-spacing:-53.856000px;}
.ws2_c00010{word-spacing:-43.084800px;}
.ws0_c00010{word-spacing:-26.013000px;}
.ws4_c00010{word-spacing:-23.136000px;}
.ws1_c00010{word-spacing:-20.244000px;}
.ws5_c00010{word-spacing:0.000000px;}
._3a_c00010{margin-left:-40.992000px;}
._4e_c00010{margin-left:-37.704000px;}
._1b_c00010{margin-left:-32.076000px;}
._1d_c00010{margin-left:-29.472000px;}
._13_c00010{margin-left:-27.552000px;}
._28_c00010{margin-left:-21.859200px;}
._40_c00010{margin-left:-14.040000px;}
._19_c00010{margin-left:-12.576000px;}
._44_c00010{margin-left:-11.040000px;}
._1c_c00010{margin-left:-9.864000px;}
._21_c00010{margin-left:-8.700000px;}
._46_c00010{margin-left:-7.680000px;}
._26_c00010{margin-left:-6.636000px;}
._24_c00010{margin-left:-5.304000px;}
._b_c00010{margin-left:-4.224000px;}
._f_c00010{margin-left:-2.400000px;}
._12_c00010{margin-left:-1.152000px;}
._7_c00010{width:1.440000px;}
._6_c00010{width:2.496000px;}
._d_c00010{width:3.552000px;}
._a_c00010{width:4.800000px;}
._c_c00010{width:6.240000px;}
._15_c00010{width:7.296000px;}
._3_c00010{width:8.352000px;}
._2_c00010{width:9.888000px;}
._9_c00010{width:11.712000px;}
._20_c00010{width:13.152000px;}
._1_c00010{width:14.880000px;}
._32_c00010{width:15.888000px;}
._0_c00010{width:16.992000px;}
._16_c00010{width:18.720000px;}
._17_c00010{width:20.160000px;}
._8_c00010{width:21.600000px;}
._2f_c00010{width:26.016000px;}
._4_c00010{width:27.072000px;}
._2e_c00010{width:28.224000px;}
._5_c00010{width:29.280000px;}
._18_c00010{width:30.816000px;}
._e_c00010{width:32.064000px;}
._1a_c00010{width:33.888000px;}
._30_c00010{width:35.040000px;}
._33_c00010{width:36.360000px;}
._10_c00010{width:37.728000px;}
._14_c00010{width:39.456000px;}
._31_c00010{width:40.824000px;}
._2c_c00010{width:43.200000px;}
._2a_c00010{width:44.832000px;}
._2b_c00010{width:46.656000px;}
._3d_c00010{width:47.712000px;}
._11_c00010{width:50.592000px;}
._4d_c00010{width:52.224000px;}
._2d_c00010{width:54.240000px;}
._36_c00010{width:55.872000px;}
._3e_c00010{width:60.384000px;}
._39_c00010{width:80.131200px;}
._4c_c00010{width:81.984000px;}
._48_c00010{width:94.824000px;}
._45_c00010{width:101.256000px;}
._1f_c00010{width:103.584000px;}
._34_c00010{width:112.224000px;}
._35_c00010{width:128.832000px;}
._4a_c00010{width:147.936000px;}
._3f_c00010{width:158.064000px;}
._23_c00010{width:162.168000px;}
._3c_c00010{width:163.776000px;}
._4b_c00010{width:172.896000px;}
._37_c00010{width:177.312000px;}
._29_c00010{width:232.392000px;}
._3b_c00010{width:245.664000px;}
._1e_c00010{width:250.536000px;}
._42_c00010{width:273.636000px;}
._22_c00010{width:381.312000px;}
._47_c00010{width:461.088000px;}
._49_c00010{width:475.296000px;}
._38_c00010{width:512.736000px;}
._25_c00010{width:575.688000px;}
._27_c00010{width:639.552000px;}
._41_c00010{width:670.236000px;}
._43_c00010{width:673.140000px;}
.fc2_c00010{color:transparent;}
.fc1_c00010{color:rgb(128,128,128);}
.fc0_c00010{color:rgb(0,0,0);}
.fs3_c00010{font-size:24.000000px;}
.fs2_c00010{font-size:36.000000px;}
.fs5_c00010{font-size:39.000000px;}
.fsb_c00010{font-size:48.000000px;}
.fs7_c00010{font-size:67.200000px;}
.fs8_c00010{font-size:76.800000px;}
.fs6_c00010{font-size:84.000000px;}
.fs4_c00010{font-size:87.000000px;}
.fs1_c00010{font-size:96.000000px;}
.fsa_c00010{font-size:102.000000px;}
.fs9_c00010{font-size:105.000000px;}
.fs0_c00010{font-size:123.000000px;}
.y0_c00010{bottom:0.000000px;}
.y27_c00010{bottom:3.105000px;}
.y26_c00010{bottom:7.228371px;}
.y25_c00010{bottom:97.665000px;}
.y24_c00010{bottom:130.965000px;}
.y23_c00010{bottom:165.015000px;}
.y22_c00010{bottom:198.465000px;}
.y21_c00010{bottom:232.215000px;}
.y20_c00010{bottom:265.965000px;}
.y1f_c00010{bottom:299.715000px;}
.y1e_c00010{bottom:333.465000px;}
.y1d_c00010{bottom:366.615000px;}
.y1c_c00010{bottom:398.715000px;}
.y1b_c00010{bottom:434.715000px;}
.y1a_c00010{bottom:453.915000px;}
.y19_c00010{bottom:469.815000px;}
.y18_c00010{bottom:503.565000px;}
.y17_c00010{bottom:535.365000px;}
.y16_c00010{bottom:568.365000px;}
.y15_c00010{bottom:635.565000px;}
.y14_c00010{bottom:701.715000px;}
.y13_c00010{bottom:735.465000px;}
.y12_c00010{bottom:768.615000px;}
.y11_c00010{bottom:801.765000px;}
.y10_c00010{bottom:834.615000px;}
.yf_c00010{bottom:867.465000px;}
.ye_c00010{bottom:900.165000px;}
.yd_c00010{bottom:934.965000px;}
.yc_c00010{bottom:967.365000px;}
.yb_c00010{bottom:999.765000px;}
.ya_c00010{bottom:1032.765000px;}
.y9_c00010{bottom:1076.265000px;}
.y8_c00010{bottom:1099.365000px;}
.y7_c00010{bottom:1134.765000px;}
.y6_c00010{bottom:1146.915000px;}
.y5_c00010{bottom:1166.415000px;}
.y4_c00010{bottom:1199.115000px;}
.y3_c00010{bottom:1232.865000px;}
.y2_c00010{bottom:1265.415000px;}
.y1_c00010{bottom:1296.015000px;}
.h7_c00010{height:13.200074px;}
.h8_c00010{height:43.804688px;}
.h4_c00010{height:45.580078px;}
.h5_c00010{height:110.151855px;}
.h3_c00010{height:121.546875px;}
.h2_c00010{height:129.546387px;}
.h6_c00010{height:132.941895px;}
.h0_c00010{height:1395.375000px;}
.h1_c00010{height:1395.750000px;}
.w2_c00010{width:104.875500px;}
.w0_c00010{width:878.025000px;}
.w1_c00010{width:878.250000px;}
.x0_c00010{left:0.000000px;}
.x10_c00010{left:42.900000px;}
.xf_c00010{left:44.100000px;}
.xc_c00010{left:45.150000px;}
.xb_c00010{left:46.200000px;}
.xa_c00010{left:47.850000px;}
.xd_c00010{left:49.500000px;}
.x4_c00010{left:52.650000px;}
.x3_c00010{left:54.750000px;}
.x2_c00010{left:56.400000px;}
.xe_c00010{left:96.450000px;}
.x9_c00010{left:100.200000px;}
.x7_c00010{left:176.850000px;}
.x8_c00010{left:297.600000px;}
.x12_c00010{left:390.826721px;}
.x6_c00010{left:508.650000px;}
.x5_c00010{left:515.400000px;}
.x1_c00010{left:559.650000px;}
.x11_c00010{left:568.350000px;}
@media print{
.v1_c00010{vertical-align:-21.333333pt;}
.v0_c00010{vertical-align:0.000000pt;}
.ls7_c00010{letter-spacing:0.000000pt;}
.ls6_c00010{letter-spacing:1.600000pt;}
.ls1_c00010{letter-spacing:3.093333pt;}
.ls4_c00010{letter-spacing:4.309333pt;}
.ls2_c00010{letter-spacing:12.893867pt;}
.ls3_c00010{letter-spacing:17.792000pt;}
.ls8_c00010{letter-spacing:21.333333pt;}
.ls5_c00010{letter-spacing:30.464000pt;}
.ls0_c00010{letter-spacing:356.136000pt;}
.ws3_c00010{word-spacing:-47.872000pt;}
.ws2_c00010{word-spacing:-38.297600pt;}
.ws0_c00010{word-spacing:-23.122667pt;}
.ws4_c00010{word-spacing:-20.565333pt;}
.ws1_c00010{word-spacing:-17.994667pt;}
.ws5_c00010{word-spacing:0.000000pt;}
._3a_c00010{margin-left:-36.437333pt;}
._4e_c00010{margin-left:-33.514667pt;}
._1b_c00010{margin-left:-28.512000pt;}
._1d_c00010{margin-left:-26.197333pt;}
._13_c00010{margin-left:-24.490667pt;}
._28_c00010{margin-left:-19.430400pt;}
._40_c00010{margin-left:-12.480000pt;}
._19_c00010{margin-left:-11.178667pt;}
._44_c00010{margin-left:-9.813333pt;}
._1c_c00010{margin-left:-8.768000pt;}
._21_c00010{margin-left:-7.733333pt;}
._46_c00010{margin-left:-6.826667pt;}
._26_c00010{margin-left:-5.898667pt;}
._24_c00010{margin-left:-4.714667pt;}
._b_c00010{margin-left:-3.754667pt;}
._f_c00010{margin-left:-2.133333pt;}
._12_c00010{margin-left:-1.024000pt;}
._7_c00010{width:1.280000pt;}
._6_c00010{width:2.218667pt;}
._d_c00010{width:3.157333pt;}
._a_c00010{width:4.266667pt;}
._c_c00010{width:5.546667pt;}
._15_c00010{width:6.485333pt;}
._3_c00010{width:7.424000pt;}
._2_c00010{width:8.789333pt;}
._9_c00010{width:10.410667pt;}
._20_c00010{width:11.690667pt;}
._1_c00010{width:13.226667pt;}
._32_c00010{width:14.122667pt;}
._0_c00010{width:15.104000pt;}
._16_c00010{width:16.640000pt;}
._17_c00010{width:17.920000pt;}
._8_c00010{width:19.200000pt;}
._2f_c00010{width:23.125333pt;}
._4_c00010{width:24.064000pt;}
._2e_c00010{width:25.088000pt;}
._5_c00010{width:26.026667pt;}
._18_c00010{width:27.392000pt;}
._e_c00010{width:28.501333pt;}
._1a_c00010{width:30.122667pt;}
._30_c00010{width:31.146667pt;}
._33_c00010{width:32.320000pt;}
._10_c00010{width:33.536000pt;}
._14_c00010{width:35.072000pt;}
._31_c00010{width:36.288000pt;}
._2c_c00010{width:38.400000pt;}
._2a_c00010{width:39.850667pt;}
._2b_c00010{width:41.472000pt;}
._3d_c00010{width:42.410667pt;}
._11_c00010{width:44.970667pt;}
._4d_c00010{width:46.421333pt;}
._2d_c00010{width:48.213333pt;}
._36_c00010{width:49.664000pt;}
._3e_c00010{width:53.674667pt;}
._39_c00010{width:71.227733pt;}
._4c_c00010{width:72.874667pt;}
._48_c00010{width:84.288000pt;}
._45_c00010{width:90.005333pt;}
._1f_c00010{width:92.074667pt;}
._34_c00010{width:99.754667pt;}
._35_c00010{width:114.517333pt;}
._4a_c00010{width:131.498667pt;}
._3f_c00010{width:140.501333pt;}
._23_c00010{width:144.149333pt;}
._3c_c00010{width:145.578667pt;}
._4b_c00010{width:153.685333pt;}
._37_c00010{width:157.610667pt;}
._29_c00010{width:206.570667pt;}
._3b_c00010{width:218.368000pt;}
._1e_c00010{width:222.698667pt;}
._42_c00010{width:243.232000pt;}
._22_c00010{width:338.944000pt;}
._47_c00010{width:409.856000pt;}
._49_c00010{width:422.485333pt;}
._38_c00010{width:455.765333pt;}
._25_c00010{width:511.722667pt;}
._27_c00010{width:568.490667pt;}
._41_c00010{width:595.765333pt;}
._43_c00010{width:598.346667pt;}
.fs3_c00010{font-size:21.333333pt;}
.fs2_c00010{font-size:32.000000pt;}
.fs5_c00010{font-size:34.666667pt;}
.fsb_c00010{font-size:42.666667pt;}
.fs7_c00010{font-size:59.733333pt;}
.fs8_c00010{font-size:68.266667pt;}
.fs6_c00010{font-size:74.666667pt;}
.fs4_c00010{font-size:77.333333pt;}
.fs1_c00010{font-size:85.333333pt;}
.fsa_c00010{font-size:90.666667pt;}
.fs9_c00010{font-size:93.333333pt;}
.fs0_c00010{font-size:109.333333pt;}
.y0_c00010{bottom:0.000000pt;}
.y27_c00010{bottom:2.760000pt;}
.y26_c00010{bottom:6.425219pt;}
.y25_c00010{bottom:86.813333pt;}
.y24_c00010{bottom:116.413333pt;}
.y23_c00010{bottom:146.680000pt;}
.y22_c00010{bottom:176.413333pt;}
.y21_c00010{bottom:206.413333pt;}
.y20_c00010{bottom:236.413333pt;}
.y1f_c00010{bottom:266.413333pt;}
.y1e_c00010{bottom:296.413333pt;}
.y1d_c00010{bottom:325.880000pt;}
.y1c_c00010{bottom:354.413333pt;}
.y1b_c00010{bottom:386.413333pt;}
.y1a_c00010{bottom:403.480000pt;}
.y19_c00010{bottom:417.613333pt;}
.y18_c00010{bottom:447.613333pt;}
.y17_c00010{bottom:475.880000pt;}
.y16_c00010{bottom:505.213333pt;}
.y15_c00010{bottom:564.946667pt;}
.y14_c00010{bottom:623.746667pt;}
.y13_c00010{bottom:653.746667pt;}
.y12_c00010{bottom:683.213333pt;}
.y11_c00010{bottom:712.680000pt;}
.y10_c00010{bottom:741.880000pt;}
.yf_c00010{bottom:771.080000pt;}
.ye_c00010{bottom:800.146667pt;}
.yd_c00010{bottom:831.080000pt;}
.yc_c00010{bottom:859.880000pt;}
.yb_c00010{bottom:888.680000pt;}
.ya_c00010{bottom:918.013333pt;}
.y9_c00010{bottom:956.680000pt;}
.y8_c00010{bottom:977.213333pt;}
.y7_c00010{bottom:1008.680000pt;}
.y6_c00010{bottom:1019.480000pt;}
.y5_c00010{bottom:1036.813333pt;}
.y4_c00010{bottom:1065.880000pt;}
.y3_c00010{bottom:1095.880000pt;}
.y2_c00010{bottom:1124.813333pt;}
.y1_c00010{bottom:1152.013333pt;}
.h7_c00010{height:11.733399pt;}
.h8_c00010{height:38.937500pt;}
.h4_c00010{height:40.515625pt;}
.h5_c00010{height:97.912760pt;}
.h3_c00010{height:108.041667pt;}
.h2_c00010{height:115.152344pt;}
.h6_c00010{height:118.170573pt;}
.h0_c00010{height:1240.333333pt;}
.h1_c00010{height:1240.666667pt;}
.w2_c00010{width:93.222667pt;}
.w0_c00010{width:780.466667pt;}
.w1_c00010{width:780.666667pt;}
.x0_c00010{left:0.000000pt;}
.x10_c00010{left:38.133333pt;}
.xf_c00010{left:39.200000pt;}
.xc_c00010{left:40.133333pt;}
.xb_c00010{left:41.066667pt;}
.xa_c00010{left:42.533333pt;}
.xd_c00010{left:44.000000pt;}
.x4_c00010{left:46.800000pt;}
.x3_c00010{left:48.666667pt;}
.x2_c00010{left:50.133333pt;}
.xe_c00010{left:85.733333pt;}
.x9_c00010{left:89.066667pt;}
.x7_c00010{left:157.200000pt;}
.x8_c00010{left:264.533333pt;}
.x12_c00010{left:347.401530pt;}
.x6_c00010{left:452.133333pt;}
.x5_c00010{left:458.133333pt;}
.x1_c00010{left:497.466667pt;}
.x11_c00010{left:505.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_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_cdd46764d646d7e1dbf160ff.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_15cfe975e425277ebfa2add3.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_90ef128698d7761863682f89.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff4_c00011{font-family:ff4_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;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls6_c00011{letter-spacing:0.000000px;}
.ls4_c00011{letter-spacing:0.588000px;}
.ls2_c00011{letter-spacing:4.152000px;}
.ls3_c00011{letter-spacing:6.720000px;}
.ls1_c00011{letter-spacing:8.352000px;}
.ls0_c00011{letter-spacing:9.600000px;}
.ls5_c00011{letter-spacing:35.352000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:-20.967000px;}
.ws1_c00011{word-spacing:-20.244000px;}
.ws2_c00011{word-spacing:-18.798000px;}
.ws3_c00011{word-spacing:0.000000px;}
._16_c00011{margin-left:-28.020000px;}
._17_c00011{margin-left:-16.032000px;}
._3_c00011{margin-left:-13.944000px;}
._2b_c00011{margin-left:-12.672000px;}
._2d_c00011{margin-left:-11.328000px;}
._2c_c00011{margin-left:-8.928000px;}
._2f_c00011{margin-left:-7.284000px;}
._30_c00011{margin-left:-6.240000px;}
._a_c00011{margin-left:-4.128000px;}
._4_c00011{margin-left:-2.520000px;}
._5_c00011{margin-left:-1.344000px;}
._28_c00011{width:1.056000px;}
._1_c00011{width:2.088000px;}
._0_c00011{width:3.480000px;}
._9_c00011{width:5.340000px;}
._d_c00011{width:6.816000px;}
._13_c00011{width:8.544000px;}
._8_c00011{width:9.864000px;}
._7_c00011{width:11.184000px;}
._10_c00011{width:12.672000px;}
._19_c00011{width:13.896000px;}
._f_c00011{width:15.456000px;}
._b_c00011{width:17.184000px;}
._e_c00011{width:18.828000px;}
._18_c00011{width:20.304000px;}
._14_c00011{width:21.816000px;}
._1d_c00011{width:25.044000px;}
._12_c00011{width:26.868000px;}
._27_c00011{width:27.924000px;}
._11_c00011{width:29.664000px;}
._22_c00011{width:30.924000px;}
._6_c00011{width:32.508000px;}
._31_c00011{width:33.888000px;}
._1a_c00011{width:34.968000px;}
._15_c00011{width:36.936000px;}
._2e_c00011{width:38.748000px;}
._1f_c00011{width:39.936000px;}
._29_c00011{width:41.316000px;}
._20_c00011{width:42.672000px;}
._21_c00011{width:43.872000px;}
._1b_c00011{width:44.904000px;}
._1c_c00011{width:46.128000px;}
._23_c00011{width:47.976000px;}
._1e_c00011{width:49.188000px;}
._2_c00011{width:50.943000px;}
._c_c00011{width:52.308000px;}
._24_c00011{width:94.032000px;}
._25_c00011{width:101.280000px;}
._26_c00011{width:171.672000px;}
._2a_c00011{width:193.764000px;}
.fc2_c00011{color:transparent;}
.fc1_c00011{color:rgb(128,128,128);}
.fc0_c00011{color:rgb(0,0,0);}
.fs6_c00011{font-size:48.000000px;}
.fs4_c00011{font-size:78.000000px;}
.fs2_c00011{font-size:84.000000px;}
.fs0_c00011{font-size:87.000000px;}
.fs1_c00011{font-size:93.000000px;}
.fs3_c00011{font-size:96.000000px;}
.fs5_c00011{font-size:102.000000px;}
.y0_c00011{bottom:0.000000px;}
.y2a_c00011{bottom:3.105000px;}
.y29_c00011{bottom:7.228369px;}
.y28_c00011{bottom:74.520000px;}
.y27_c00011{bottom:109.920000px;}
.y26_c00011{bottom:144.420000px;}
.y25_c00011{bottom:177.420000px;}
.y24_c00011{bottom:211.920000px;}
.y23_c00011{bottom:246.270000px;}
.y22_c00011{bottom:278.820000px;}
.y21_c00011{bottom:313.170000px;}
.y20_c00011{bottom:347.220000px;}
.y1f_c00011{bottom:380.970000px;}
.y1e_c00011{bottom:414.420000px;}
.y1d_c00011{bottom:448.170000px;}
.y1c_c00011{bottom:481.170000px;}
.y1b_c00011{bottom:513.720000px;}
.y6_c00011{bottom:533.970000px;}
.y1a_c00011{bottom:547.770000px;}
.y5_c00011{bottom:563.520000px;}
.y19_c00011{bottom:581.220000px;}
.y4_c00011{bottom:593.670000px;}
.y18_c00011{bottom:614.220000px;}
.y3_c00011{bottom:622.620000px;}
.y17_c00011{bottom:680.370000px;}
.y16_c00011{bottom:749.820000px;}
.y15_c00011{bottom:782.970000px;}
.y14_c00011{bottom:816.870000px;}
.y13_c00011{bottom:849.720000px;}
.y12_c00011{bottom:882.570000px;}
.y2_c00011{bottom:893.070000px;}
.y11_c00011{bottom:915.420000px;}
.y10_c00011{bottom:948.420000px;}
.yf_c00011{bottom:981.420000px;}
.y1_c00011{bottom:1013.520000px;}
.ye_c00011{bottom:1014.870000px;}
.yd_c00011{bottom:1047.870000px;}
.yc_c00011{bottom:1081.020000px;}
.yb_c00011{bottom:1114.020000px;}
.ya_c00011{bottom:1146.870000px;}
.y9_c00011{bottom:1180.620000px;}
.y8_c00011{bottom:1213.620000px;}
.y7_c00011{bottom:1247.370000px;}
.h7_c00011{height:13.200073px;}
.h8_c00011{height:43.804688px;}
.h5_c00011{height:91.291992px;}
.h3_c00011{height:106.353516px;}
.h2_c00011{height:110.151855px;}
.h4_c00011{height:121.546875px;}
.h6_c00011{height:122.146875px;}
.h1_c00011{height:1359.000000px;}
.h0_c00011{height:1359.150000px;}
.w2_c00011{width:104.875500px;}
.w1_c00011{width:848.250000px;}
.w0_c00011{width:848.325000px;}
.x0_c00011{left:0.000000px;}
.x5_c00011{left:36.450000px;}
.x4_c00011{left:37.500000px;}
.x1_c00011{left:47.250000px;}
.x3_c00011{left:64.500000px;}
.x2_c00011{left:183.300000px;}
.xf_c00011{left:259.950000px;}
.xe_c00011{left:261.600000px;}
.xd_c00011{left:262.650000px;}
.xa_c00011{left:263.700000px;}
.x9_c00011{left:264.900000px;}
.x8_c00011{left:265.950000px;}
.x6_c00011{left:267.000000px;}
.x7_c00011{left:268.050000px;}
.xc_c00011{left:316.200000px;}
.xb_c00011{left:350.700000px;}
.x11_c00011{left:375.976730px;}
.x10_c00011{left:794.550000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls6_c00011{letter-spacing:0.000000pt;}
.ls4_c00011{letter-spacing:0.522667pt;}
.ls2_c00011{letter-spacing:3.690667pt;}
.ls3_c00011{letter-spacing:5.973333pt;}
.ls1_c00011{letter-spacing:7.424000pt;}
.ls0_c00011{letter-spacing:8.533333pt;}
.ls5_c00011{letter-spacing:31.424000pt;}
.ws0_c00011{word-spacing:-18.637333pt;}
.ws1_c00011{word-spacing:-17.994667pt;}
.ws2_c00011{word-spacing:-16.709333pt;}
.ws3_c00011{word-spacing:0.000000pt;}
._16_c00011{margin-left:-24.906667pt;}
._17_c00011{margin-left:-14.250667pt;}
._3_c00011{margin-left:-12.394667pt;}
._2b_c00011{margin-left:-11.264000pt;}
._2d_c00011{margin-left:-10.069333pt;}
._2c_c00011{margin-left:-7.936000pt;}
._2f_c00011{margin-left:-6.474667pt;}
._30_c00011{margin-left:-5.546667pt;}
._a_c00011{margin-left:-3.669333pt;}
._4_c00011{margin-left:-2.240000pt;}
._5_c00011{margin-left:-1.194667pt;}
._28_c00011{width:0.938667pt;}
._1_c00011{width:1.856000pt;}
._0_c00011{width:3.093333pt;}
._9_c00011{width:4.746667pt;}
._d_c00011{width:6.058667pt;}
._13_c00011{width:7.594667pt;}
._8_c00011{width:8.768000pt;}
._7_c00011{width:9.941333pt;}
._10_c00011{width:11.264000pt;}
._19_c00011{width:12.352000pt;}
._f_c00011{width:13.738667pt;}
._b_c00011{width:15.274667pt;}
._e_c00011{width:16.736000pt;}
._18_c00011{width:18.048000pt;}
._14_c00011{width:19.392000pt;}
._1d_c00011{width:22.261333pt;}
._12_c00011{width:23.882667pt;}
._27_c00011{width:24.821333pt;}
._11_c00011{width:26.368000pt;}
._22_c00011{width:27.488000pt;}
._6_c00011{width:28.896000pt;}
._31_c00011{width:30.122667pt;}
._1a_c00011{width:31.082667pt;}
._15_c00011{width:32.832000pt;}
._2e_c00011{width:34.442667pt;}
._1f_c00011{width:35.498667pt;}
._29_c00011{width:36.725333pt;}
._20_c00011{width:37.930667pt;}
._21_c00011{width:38.997333pt;}
._1b_c00011{width:39.914667pt;}
._1c_c00011{width:41.002667pt;}
._23_c00011{width:42.645333pt;}
._1e_c00011{width:43.722667pt;}
._2_c00011{width:45.282667pt;}
._c_c00011{width:46.496000pt;}
._24_c00011{width:83.584000pt;}
._25_c00011{width:90.026667pt;}
._26_c00011{width:152.597333pt;}
._2a_c00011{width:172.234667pt;}
.fs6_c00011{font-size:42.666667pt;}
.fs4_c00011{font-size:69.333333pt;}
.fs2_c00011{font-size:74.666667pt;}
.fs0_c00011{font-size:77.333333pt;}
.fs1_c00011{font-size:82.666667pt;}
.fs3_c00011{font-size:85.333333pt;}
.fs5_c00011{font-size:90.666667pt;}
.y0_c00011{bottom:0.000000pt;}
.y2a_c00011{bottom:2.760000pt;}
.y29_c00011{bottom:6.425217pt;}
.y28_c00011{bottom:66.240000pt;}
.y27_c00011{bottom:97.706667pt;}
.y26_c00011{bottom:128.373333pt;}
.y25_c00011{bottom:157.706667pt;}
.y24_c00011{bottom:188.373333pt;}
.y23_c00011{bottom:218.906667pt;}
.y22_c00011{bottom:247.840000pt;}
.y21_c00011{bottom:278.373333pt;}
.y20_c00011{bottom:308.640000pt;}
.y1f_c00011{bottom:338.640000pt;}
.y1e_c00011{bottom:368.373333pt;}
.y1d_c00011{bottom:398.373333pt;}
.y1c_c00011{bottom:427.706667pt;}
.y1b_c00011{bottom:456.640000pt;}
.y6_c00011{bottom:474.640000pt;}
.y1a_c00011{bottom:486.906667pt;}
.y5_c00011{bottom:500.906667pt;}
.y19_c00011{bottom:516.640000pt;}
.y4_c00011{bottom:527.706667pt;}
.y18_c00011{bottom:545.973333pt;}
.y3_c00011{bottom:553.440000pt;}
.y17_c00011{bottom:604.773333pt;}
.y16_c00011{bottom:666.506667pt;}
.y15_c00011{bottom:695.973333pt;}
.y14_c00011{bottom:726.106667pt;}
.y13_c00011{bottom:755.306667pt;}
.y12_c00011{bottom:784.506667pt;}
.y2_c00011{bottom:793.840000pt;}
.y11_c00011{bottom:813.706667pt;}
.y10_c00011{bottom:843.040000pt;}
.yf_c00011{bottom:872.373333pt;}
.y1_c00011{bottom:900.906667pt;}
.ye_c00011{bottom:902.106667pt;}
.yd_c00011{bottom:931.440000pt;}
.yc_c00011{bottom:960.906667pt;}
.yb_c00011{bottom:990.240000pt;}
.ya_c00011{bottom:1019.440000pt;}
.y9_c00011{bottom:1049.440000pt;}
.y8_c00011{bottom:1078.773333pt;}
.y7_c00011{bottom:1108.773333pt;}
.h7_c00011{height:11.733399pt;}
.h8_c00011{height:38.937500pt;}
.h5_c00011{height:81.148438pt;}
.h3_c00011{height:94.536458pt;}
.h2_c00011{height:97.912760pt;}
.h4_c00011{height:108.041667pt;}
.h6_c00011{height:108.575000pt;}
.h1_c00011{height:1208.000000pt;}
.h0_c00011{height:1208.133333pt;}
.w2_c00011{width:93.222667pt;}
.w1_c00011{width:754.000000pt;}
.w0_c00011{width:754.066667pt;}
.x0_c00011{left:0.000000pt;}
.x5_c00011{left:32.400000pt;}
.x4_c00011{left:33.333333pt;}
.x1_c00011{left:42.000000pt;}
.x3_c00011{left:57.333333pt;}
.x2_c00011{left:162.933333pt;}
.xf_c00011{left:231.066667pt;}
.xe_c00011{left:232.533333pt;}
.xd_c00011{left:233.466667pt;}
.xa_c00011{left:234.400000pt;}
.x9_c00011{left:235.466667pt;}
.x8_c00011{left:236.400000pt;}
.x6_c00011{left:237.333333pt;}
.x7_c00011{left:238.266667pt;}
.xc_c00011{left:281.066667pt;}
.xb_c00011{left:311.733333pt;}
.x11_c00011{left:334.201538pt;}
.x10_c00011{left:706.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80675d8c38e2b84a5566e57b.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_ca2772e2b1a418c4f663f635.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;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_c00012;src:url('chunks/assets/font_fdd03ccd38f87e6f0dda5d62.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00012;src:url('chunks/assets/font_1ea6738998fdb75ffce7aac9.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;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_c00012;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00012{font-family:ff5_c00012;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls2_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:6.000000px;}
.ls1_c00012{letter-spacing:18.744000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-57.000000px;}
.ws1_c00012{word-spacing:-20.244000px;}
.ws2_c00012{word-spacing:0.000000px;}
._20_c00012{margin-left:-89.088000px;}
._43_c00012{margin-left:-77.184000px;}
._4c_c00012{margin-left:-36.696000px;}
._53_c00012{margin-left:-32.592000px;}
._51_c00012{margin-left:-31.200000px;}
._15_c00012{margin-left:-28.272000px;}
._39_c00012{margin-left:-27.213000px;}
._a_c00012{margin-left:-24.864000px;}
._40_c00012{margin-left:-23.424000px;}
._46_c00012{margin-left:-20.352000px;}
._9_c00012{margin-left:-18.432000px;}
._49_c00012{margin-left:-17.088000px;}
._45_c00012{margin-left:-15.738000px;}
._31_c00012{margin-left:-14.256000px;}
._8_c00012{margin-left:-11.904000px;}
._3a_c00012{margin-left:-10.338000px;}
._14_c00012{margin-left:-8.400000px;}
._11_c00012{margin-left:-7.125000px;}
._6_c00012{margin-left:-5.220000px;}
._f_c00012{margin-left:-3.360000px;}
._2f_c00012{margin-left:-2.313000px;}
._4_c00012{margin-left:-1.305000px;}
._2_c00012{width:1.392000px;}
._d_c00012{width:3.168000px;}
._c_c00012{width:5.136000px;}
._16_c00012{width:6.720000px;}
._b_c00012{width:8.352000px;}
._22_c00012{width:9.696000px;}
._13_c00012{width:10.935000px;}
._37_c00012{width:12.288000px;}
._12_c00012{width:13.392000px;}
._1d_c00012{width:14.736000px;}
._36_c00012{width:16.272000px;}
._1e_c00012{width:17.328000px;}
._1a_c00012{width:18.681000px;}
._17_c00012{width:19.824000px;}
._2e_c00012{width:20.841000px;}
._0_c00012{width:22.620000px;}
._3c_c00012{width:24.195000px;}
._19_c00012{width:25.284000px;}
._38_c00012{width:26.343000px;}
._18_c00012{width:27.600000px;}
._27_c00012{width:29.364000px;}
._35_c00012{width:30.489000px;}
._2b_c00012{width:32.265000px;}
._2a_c00012{width:33.603000px;}
._1b_c00012{width:35.232000px;}
._44_c00012{width:36.249000px;}
._26_c00012{width:37.269000px;}
._10_c00012{width:38.496000px;}
._1c_c00012{width:39.504000px;}
._29_c00012{width:41.280000px;}
._3b_c00012{width:42.474000px;}
._3_c00012{width:45.066000px;}
._2d_c00012{width:47.193000px;}
._33_c00012{width:48.384000px;}
._3d_c00012{width:50.016000px;}
._32_c00012{width:51.264000px;}
._28_c00012{width:52.704000px;}
._5_c00012{width:54.897000px;}
._34_c00012{width:56.598000px;}
._1f_c00012{width:59.904000px;}
._7_c00012{width:62.121000px;}
._e_c00012{width:66.144000px;}
._1_c00012{width:77.169000px;}
._21_c00012{width:79.392000px;}
._24_c00012{width:81.600000px;}
._23_c00012{width:83.121000px;}
._4f_c00012{width:101.271000px;}
._42_c00012{width:115.776000px;}
._3e_c00012{width:127.575000px;}
._4d_c00012{width:135.840000px;}
._25_c00012{width:170.832000px;}
._30_c00012{width:174.756000px;}
._47_c00012{width:183.846000px;}
._2c_c00012{width:197.424000px;}
._4b_c00012{width:203.463000px;}
._50_c00012{width:224.532000px;}
._4a_c00012{width:296.736000px;}
._4e_c00012{width:302.253000px;}
._3f_c00012{width:326.304000px;}
._56_c00012{width:341.820000px;}
._48_c00012{width:353.346000px;}
._41_c00012{width:673.155000px;}
._55_c00012{width:841.968000px;}
._52_c00012{width:848.400000px;}
._54_c00012{width:1156.944000px;}
.fc2_c00012{color:transparent;}
.fc1_c00012{color:rgb(128,128,128);}
.fc0_c00012{color:rgb(0,0,0);}
.fs4_c00012{font-size:48.000000px;}
.fs2_c00012{font-size:84.000000px;}
.fs0_c00012{font-size:87.000000px;}
.fs1_c00012{font-size:96.000000px;}
.fs3_c00012{font-size:102.000000px;}
.y0_c00012{bottom:0.000000px;}
.y28_c00012{bottom:3.105000px;}
.y27_c00012{bottom:7.228357px;}
.y25_c00012{bottom:115.530000px;}
.y24_c00012{bottom:149.130000px;}
.y23_c00012{bottom:182.280000px;}
.y22_c00012{bottom:215.730000px;}
.y21_c00012{bottom:250.080000px;}
.y20_c00012{bottom:283.530000px;}
.y1f_c00012{bottom:316.530000px;}
.y1e_c00012{bottom:329.430000px;}
.y1d_c00012{bottom:349.080000px;}
.y1c_c00012{bottom:384.480000px;}
.y26_c00012{bottom:397.680000px;}
.y1b_c00012{bottom:417.180000px;}
.y1a_c00012{bottom:449.880000px;}
.y19_c00012{bottom:483.030000px;}
.y18_c00012{bottom:516.330000px;}
.y17_c00012{bottom:549.480000px;}
.y16_c00012{bottom:583.530000px;}
.y15_c00012{bottom:616.230000px;}
.y14_c00012{bottom:648.780000px;}
.y13_c00012{bottom:682.380000px;}
.y12_c00012{bottom:715.830000px;}
.y11_c00012{bottom:748.980000px;}
.y10_c00012{bottom:781.680000px;}
.yf_c00012{bottom:815.130000px;}
.ye_c00012{bottom:847.530000px;}
.yd_c00012{bottom:880.230000px;}
.yc_c00012{bottom:913.680000px;}
.yb_c00012{bottom:946.380000px;}
.ya_c00012{bottom:979.530000px;}
.y9_c00012{bottom:1015.530000px;}
.y8_c00012{bottom:1046.880000px;}
.y7_c00012{bottom:1078.680000px;}
.y6_c00012{bottom:1112.430000px;}
.y5_c00012{bottom:1179.630000px;}
.y4_c00012{bottom:1212.330000px;}
.y3_c00012{bottom:1245.330000px;}
.y2_c00012{bottom:1278.180000px;}
.y1_c00012{bottom:1296.330000px;}
.h4_c00012{height:13.200074px;}
.h5_c00012{height:43.804688px;}
.h2_c00012{height:110.151855px;}
.h3_c00012{height:121.546875px;}
.h1_c00012{height:1378.500000px;}
.h0_c00012{height:1378.650000px;}
.w2_c00012{width:104.875500px;}
.w1_c00012{width:867.000000px;}
.w0_c00012{width:867.225000px;}
.x0_c00012{left:0.000000px;}
.xc_c00012{left:22.950000px;}
.xb_c00012{left:24.000000px;}
.xa_c00012{left:25.050000px;}
.x9_c00012{left:26.100000px;}
.x8_c00012{left:27.300000px;}
.x7_c00012{left:28.350000px;}
.x4_c00012{left:32.100000px;}
.x2_c00012{left:33.150000px;}
.x3_c00012{left:35.400000px;}
.x6_c00012{left:80.700000px;}
.xd_c00012{left:82.500000px;}
.x5_c00012{left:140.700000px;}
.xf_c00012{left:385.426758px;}
.x1_c00012{left:403.650000px;}
.xe_c00012{left:603.450000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls2_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:5.333333pt;}
.ls1_c00012{letter-spacing:16.661333pt;}
.ws0_c00012{word-spacing:-50.666667pt;}
.ws1_c00012{word-spacing:-17.994667pt;}
.ws2_c00012{word-spacing:0.000000pt;}
._20_c00012{margin-left:-79.189333pt;}
._43_c00012{margin-left:-68.608000pt;}
._4c_c00012{margin-left:-32.618667pt;}
._53_c00012{margin-left:-28.970667pt;}
._51_c00012{margin-left:-27.733333pt;}
._15_c00012{margin-left:-25.130667pt;}
._39_c00012{margin-left:-24.189333pt;}
._a_c00012{margin-left:-22.101333pt;}
._40_c00012{margin-left:-20.821333pt;}
._46_c00012{margin-left:-18.090667pt;}
._9_c00012{margin-left:-16.384000pt;}
._49_c00012{margin-left:-15.189333pt;}
._45_c00012{margin-left:-13.989333pt;}
._31_c00012{margin-left:-12.672000pt;}
._8_c00012{margin-left:-10.581333pt;}
._3a_c00012{margin-left:-9.189333pt;}
._14_c00012{margin-left:-7.466667pt;}
._11_c00012{margin-left:-6.333333pt;}
._6_c00012{margin-left:-4.640000pt;}
._f_c00012{margin-left:-2.986667pt;}
._2f_c00012{margin-left:-2.056000pt;}
._4_c00012{margin-left:-1.160000pt;}
._2_c00012{width:1.237333pt;}
._d_c00012{width:2.816000pt;}
._c_c00012{width:4.565333pt;}
._16_c00012{width:5.973333pt;}
._b_c00012{width:7.424000pt;}
._22_c00012{width:8.618667pt;}
._13_c00012{width:9.720000pt;}
._37_c00012{width:10.922667pt;}
._12_c00012{width:11.904000pt;}
._1d_c00012{width:13.098667pt;}
._36_c00012{width:14.464000pt;}
._1e_c00012{width:15.402667pt;}
._1a_c00012{width:16.605333pt;}
._17_c00012{width:17.621333pt;}
._2e_c00012{width:18.525333pt;}
._0_c00012{width:20.106667pt;}
._3c_c00012{width:21.506667pt;}
._19_c00012{width:22.474667pt;}
._38_c00012{width:23.416000pt;}
._18_c00012{width:24.533333pt;}
._27_c00012{width:26.101333pt;}
._35_c00012{width:27.101333pt;}
._2b_c00012{width:28.680000pt;}
._2a_c00012{width:29.869333pt;}
._1b_c00012{width:31.317333pt;}
._44_c00012{width:32.221333pt;}
._26_c00012{width:33.128000pt;}
._10_c00012{width:34.218667pt;}
._1c_c00012{width:35.114667pt;}
._29_c00012{width:36.693333pt;}
._3b_c00012{width:37.754667pt;}
._3_c00012{width:40.058667pt;}
._2d_c00012{width:41.949333pt;}
._33_c00012{width:43.008000pt;}
._3d_c00012{width:44.458667pt;}
._32_c00012{width:45.568000pt;}
._28_c00012{width:46.848000pt;}
._5_c00012{width:48.797333pt;}
._34_c00012{width:50.309333pt;}
._1f_c00012{width:53.248000pt;}
._7_c00012{width:55.218667pt;}
._e_c00012{width:58.794667pt;}
._1_c00012{width:68.594667pt;}
._21_c00012{width:70.570667pt;}
._24_c00012{width:72.533333pt;}
._23_c00012{width:73.885333pt;}
._4f_c00012{width:90.018667pt;}
._42_c00012{width:102.912000pt;}
._3e_c00012{width:113.400000pt;}
._4d_c00012{width:120.746667pt;}
._25_c00012{width:151.850667pt;}
._30_c00012{width:155.338667pt;}
._47_c00012{width:163.418667pt;}
._2c_c00012{width:175.488000pt;}
._4b_c00012{width:180.856000pt;}
._50_c00012{width:199.584000pt;}
._4a_c00012{width:263.765333pt;}
._4e_c00012{width:268.669333pt;}
._3f_c00012{width:290.048000pt;}
._56_c00012{width:303.840000pt;}
._48_c00012{width:314.085333pt;}
._41_c00012{width:598.360000pt;}
._55_c00012{width:748.416000pt;}
._52_c00012{width:754.133333pt;}
._54_c00012{width:1028.394667pt;}
.fs4_c00012{font-size:42.666667pt;}
.fs2_c00012{font-size:74.666667pt;}
.fs0_c00012{font-size:77.333333pt;}
.fs1_c00012{font-size:85.333333pt;}
.fs3_c00012{font-size:90.666667pt;}
.y0_c00012{bottom:0.000000pt;}
.y28_c00012{bottom:2.760000pt;}
.y27_c00012{bottom:6.425206pt;}
.y25_c00012{bottom:102.693333pt;}
.y24_c00012{bottom:132.560000pt;}
.y23_c00012{bottom:162.026667pt;}
.y22_c00012{bottom:191.760000pt;}
.y21_c00012{bottom:222.293333pt;}
.y20_c00012{bottom:252.026667pt;}
.y1f_c00012{bottom:281.360000pt;}
.y1e_c00012{bottom:292.826667pt;}
.y1d_c00012{bottom:310.293333pt;}
.y1c_c00012{bottom:341.760000pt;}
.y26_c00012{bottom:353.493333pt;}
.y1b_c00012{bottom:370.826667pt;}
.y1a_c00012{bottom:399.893333pt;}
.y19_c00012{bottom:429.360000pt;}
.y18_c00012{bottom:458.960000pt;}
.y17_c00012{bottom:488.426667pt;}
.y16_c00012{bottom:518.693333pt;}
.y15_c00012{bottom:547.760000pt;}
.y14_c00012{bottom:576.693333pt;}
.y13_c00012{bottom:606.560000pt;}
.y12_c00012{bottom:636.293333pt;}
.y11_c00012{bottom:665.760000pt;}
.y10_c00012{bottom:694.826667pt;}
.yf_c00012{bottom:724.560000pt;}
.ye_c00012{bottom:753.360000pt;}
.yd_c00012{bottom:782.426667pt;}
.yc_c00012{bottom:812.160000pt;}
.yb_c00012{bottom:841.226667pt;}
.ya_c00012{bottom:870.693333pt;}
.y9_c00012{bottom:902.693333pt;}
.y8_c00012{bottom:930.560000pt;}
.y7_c00012{bottom:958.826667pt;}
.y6_c00012{bottom:988.826667pt;}
.y5_c00012{bottom:1048.560000pt;}
.y4_c00012{bottom:1077.626667pt;}
.y3_c00012{bottom:1106.960000pt;}
.y2_c00012{bottom:1136.160000pt;}
.y1_c00012{bottom:1152.293333pt;}
.h4_c00012{height:11.733399pt;}
.h5_c00012{height:38.937500pt;}
.h2_c00012{height:97.912760pt;}
.h3_c00012{height:108.041667pt;}
.h1_c00012{height:1225.333333pt;}
.h0_c00012{height:1225.466667pt;}
.w2_c00012{width:93.222667pt;}
.w1_c00012{width:770.666667pt;}
.w0_c00012{width:770.866667pt;}
.x0_c00012{left:0.000000pt;}
.xc_c00012{left:20.400000pt;}
.xb_c00012{left:21.333333pt;}
.xa_c00012{left:22.266667pt;}
.x9_c00012{left:23.200000pt;}
.x8_c00012{left:24.266667pt;}
.x7_c00012{left:25.200000pt;}
.x4_c00012{left:28.533333pt;}
.x2_c00012{left:29.466667pt;}
.x3_c00012{left:31.466667pt;}
.x6_c00012{left:71.733333pt;}
.xd_c00012{left:73.333333pt;}
.x5_c00012{left:125.066667pt;}
.xf_c00012{left:342.601563pt;}
.x1_c00012{left:358.800000pt;}
.xe_c00012{left:536.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_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_db159bd56f808e01ddc9aff3.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_4d9c5b53a17a15f0b178329f.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.314453;font-style:normal;font-weight:normal;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_93739ba88c84ccc7a78daf06.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_7332d1f1ce543b42b219ac91.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_ed5946da9650d8e116c1bb37.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00013;src:url('chunks/assets/font_5ba2f92b211ef87684272cc9.woff2')format("woff");}.ff6_c00013{font-family:ff6_c00013;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00013;src:url('chunks/assets/font_b7d8fa26faa33f1733b47ebd.woff2')format("woff");}.ff7_c00013{font-family:ff7_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:ff8_c00013;src:url('chunks/assets/font_816217e4195237a3c8704d08.woff2')format("woff");}.ff8_c00013{font-family:ff8_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00013;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00013{font-family:ff9_c00013;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00013{vertical-align:-144.600000px;}
.v0_c00013{vertical-align:0.000000px;}
.ls8_c00013{letter-spacing:-12.000000px;}
.ls4_c00013{letter-spacing:0.000000px;}
.ls3_c00013{letter-spacing:5.400000px;}
.ls6_c00013{letter-spacing:6.000000px;}
.ls5_c00013{letter-spacing:18.000000px;}
.ls7_c00013{letter-spacing:21.000000px;}
.ls2_c00013{letter-spacing:38.295000px;}
.ls1_c00013{letter-spacing:283.800000px;}
.ls0_c00013{letter-spacing:562.095000px;}
.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;}
}
.ws5_c00013{word-spacing:-57.000000px;}
.ws6_c00013{word-spacing:-46.305000px;}
.ws4_c00013{word-spacing:-25.305000px;}
.ws3_c00013{word-spacing:-23.859000px;}
.ws1_c00013{word-spacing:-20.244000px;}
.ws7_c00013{word-spacing:-13.305000px;}
.ws0_c00013{word-spacing:-0.093000px;}
.ws8_c00013{word-spacing:0.000000px;}
.ws2_c00013{word-spacing:283.548000px;}
._4a_c00013{margin-left:-102.030000px;}
._49_c00013{margin-left:-92.130000px;}
._48_c00013{margin-left:-89.517000px;}
._4c_c00013{margin-left:-63.840000px;}
._44_c00013{margin-left:-47.868000px;}
._45_c00013{margin-left:-42.900000px;}
._42_c00013{margin-left:-40.755000px;}
._43_c00013{margin-left:-36.738000px;}
._3a_c00013{margin-left:-35.367000px;}
._41_c00013{margin-left:-31.515000px;}
._47_c00013{margin-left:-29.691000px;}
._2d_c00013{margin-left:-27.117000px;}
._30_c00013{margin-left:-25.728000px;}
._3d_c00013{margin-left:-24.150000px;}
._4f_c00013{margin-left:-22.170000px;}
._4_c00013{margin-left:-20.727000px;}
._4d_c00013{margin-left:-19.296000px;}
._2f_c00013{margin-left:-17.280000px;}
._2e_c00013{margin-left:-15.360000px;}
._3b_c00013{margin-left:-14.019000px;}
._15_c00013{margin-left:-12.381000px;}
._33_c00013{margin-left:-11.115000px;}
._16_c00013{margin-left:-9.156000px;}
._13_c00013{margin-left:-8.148000px;}
._12_c00013{margin-left:-6.384000px;}
._d_c00013{margin-left:-5.208000px;}
._c_c00013{margin-left:-4.092000px;}
._e_c00013{margin-left:-2.604000px;}
._25_c00013{margin-left:-1.095000px;}
._f_c00013{width:1.116000px;}
._0_c00013{width:2.604000px;}
._6_c00013{width:4.464000px;}
._8_c00013{width:5.673000px;}
._1e_c00013{width:7.482000px;}
._2_c00013{width:9.021000px;}
._3_c00013{width:10.173000px;}
._1d_c00013{width:11.346000px;}
._9_c00013{width:12.369000px;}
._23_c00013{width:13.860000px;}
._22_c00013{width:15.096000px;}
._2a_c00013{width:16.419000px;}
._5_c00013{width:17.484000px;}
._24_c00013{width:18.642000px;}
._20_c00013{width:19.653000px;}
._1f_c00013{width:21.459000px;}
._3c_c00013{width:23.190000px;}
._1_c00013{width:24.552000px;}
._14_c00013{width:26.292000px;}
._31_c00013{width:27.300000px;}
._34_c00013{width:28.476000px;}
._28_c00013{width:29.697000px;}
._a_c00013{width:31.899000px;}
._17_c00013{width:33.660000px;}
._2b_c00013{width:35.067000px;}
._29_c00013{width:36.984000px;}
._7_c00013{width:38.316000px;}
._b_c00013{width:40.269000px;}
._2c_c00013{width:41.322000px;}
._18_c00013{width:42.564000px;}
._36_c00013{width:45.567000px;}
._32_c00013{width:47.754000px;}
._26_c00013{width:49.146000px;}
._39_c00013{width:50.400000px;}
._19_c00013{width:56.640000px;}
._51_c00013{width:59.847000px;}
._1a_c00013{width:69.300000px;}
._35_c00013{width:89.436000px;}
._4b_c00013{width:96.030000px;}
._11_c00013{width:101.232000px;}
._3f_c00013{width:107.424000px;}
._50_c00013{width:121.248000px;}
._52_c00013{width:139.743000px;}
._40_c00013{width:164.784000px;}
._38_c00013{width:172.218000px;}
._1c_c00013{width:179.220000px;}
._27_c00013{width:211.296000px;}
._1b_c00013{width:255.108000px;}
._37_c00013{width:268.470000px;}
._46_c00013{width:287.391000px;}
._4e_c00013{width:450.039000px;}
._10_c00013{width:510.105000px;}
._3e_c00013{width:797.511000px;}
._21_c00013{width:808.848000px;}
.fc2_c00013{color:transparent;}
.fc1_c00013{color:rgb(128,128,128);}
.fc0_c00013{color:rgb(0,0,0);}
.fs9_c00013{font-size:48.000000px;}
.fs4_c00013{font-size:78.000000px;}
.fs2_c00013{font-size:84.000000px;}
.fs0_c00013{font-size:93.000000px;}
.fs3_c00013{font-size:96.000000px;}
.fs6_c00013{font-size:99.000000px;}
.fs7_c00013{font-size:102.000000px;}
.fs1_c00013{font-size:105.000000px;}
.fs8_c00013{font-size:114.000000px;}
.fs5_c00013{font-size:165.000000px;}
.y0_c00013{bottom:0.000000px;}
.y24_c00013{bottom:3.105000px;}
.y23_c00013{bottom:7.228363px;}
.y22_c00013{bottom:88.650000px;}
.y21_c00013{bottom:123.900000px;}
.y20_c00013{bottom:158.250000px;}
.y1f_c00013{bottom:191.400000px;}
.y1e_c00013{bottom:225.750000px;}
.y1d_c00013{bottom:258.150000px;}
.y1c_c00013{bottom:292.950000px;}
.y1b_c00013{bottom:309.450000px;}
.y1a_c00013{bottom:332.400000px;}
.y19_c00013{bottom:364.200000px;}
.y18_c00013{bottom:395.550000px;}
.y17_c00013{bottom:428.850000px;}
.y16_c00013{bottom:529.800000px;}
.y15_c00013{bottom:561.900000px;}
.y14_c00013{bottom:595.350000px;}
.y13_c00013{bottom:628.050000px;}
.y12_c00013{bottom:661.200000px;}
.y11_c00013{bottom:694.800000px;}
.y10_c00013{bottom:728.250000px;}
.yf_c00013{bottom:761.400000px;}
.ye_c00013{bottom:794.850000px;}
.yd_c00013{bottom:827.850000px;}
.yc_c00013{bottom:861.000000px;}
.yb_c00013{bottom:893.700000px;}
.ya_c00013{bottom:927.000000px;}
.y9_c00013{bottom:959.850000px;}
.y8_c00013{bottom:992.850000px;}
.y7_c00013{bottom:1025.700000px;}
.y6_c00013{bottom:1057.050000px;}
.y5_c00013{bottom:1094.550000px;}
.y4_c00013{bottom:1128.900000px;}
.y3_c00013{bottom:1156.500000px;}
.y2_c00013{bottom:1224.450000px;}
.y1_c00013{bottom:1258.800000px;}
.h7_c00013{height:13.200074px;}
.h8_c00013{height:43.804688px;}
.h4_c00013{height:98.314453px;}
.h2_c00013{height:117.748535px;}
.h5_c00013{height:121.546875px;}
.h3_c00013{height:132.941895px;}
.h6_c00013{height:161.857910px;}
.h0_c00013{height:1344.600000px;}
.h1_c00013{height:1344.750000px;}
.w2_c00013{width:104.875500px;}
.w0_c00013{width:839.175000px;}
.w1_c00013{width:839.250000px;}
.x0_c00013{left:0.000000px;}
.xc_c00013{left:38.700000px;}
.xe_c00013{left:40.200000px;}
.xa_c00013{left:41.400000px;}
.x5_c00013{left:45.600000px;}
.x9_c00013{left:71.100000px;}
.xd_c00013{left:78.600000px;}
.xb_c00013{left:102.900000px;}
.x4_c00013{left:123.900000px;}
.x8_c00013{left:167.700000px;}
.x1_c00013{left:254.700000px;}
.x2_c00013{left:256.800000px;}
.xf_c00013{left:257.850000px;}
.x6_c00013{left:258.900000px;}
.x7_c00013{left:260.550000px;}
.x11_c00013{left:371.401749px;}
.x3_c00013{left:404.700000px;}
.x10_c00013{left:787.650000px;}
@media print{
.v1_c00013{vertical-align:-128.533333pt;}
.v0_c00013{vertical-align:0.000000pt;}
.ls8_c00013{letter-spacing:-10.666667pt;}
.ls4_c00013{letter-spacing:0.000000pt;}
.ls3_c00013{letter-spacing:4.800000pt;}
.ls6_c00013{letter-spacing:5.333333pt;}
.ls5_c00013{letter-spacing:16.000000pt;}
.ls7_c00013{letter-spacing:18.666667pt;}
.ls2_c00013{letter-spacing:34.040000pt;}
.ls1_c00013{letter-spacing:252.266667pt;}
.ls0_c00013{letter-spacing:499.640000pt;}
.ws5_c00013{word-spacing:-50.666667pt;}
.ws6_c00013{word-spacing:-41.160000pt;}
.ws4_c00013{word-spacing:-22.493333pt;}
.ws3_c00013{word-spacing:-21.208000pt;}
.ws1_c00013{word-spacing:-17.994667pt;}
.ws7_c00013{word-spacing:-11.826667pt;}
.ws0_c00013{word-spacing:-0.082667pt;}
.ws8_c00013{word-spacing:0.000000pt;}
.ws2_c00013{word-spacing:252.042667pt;}
._4a_c00013{margin-left:-90.693333pt;}
._49_c00013{margin-left:-81.893333pt;}
._48_c00013{margin-left:-79.570667pt;}
._4c_c00013{margin-left:-56.746667pt;}
._44_c00013{margin-left:-42.549333pt;}
._45_c00013{margin-left:-38.133333pt;}
._42_c00013{margin-left:-36.226667pt;}
._43_c00013{margin-left:-32.656000pt;}
._3a_c00013{margin-left:-31.437333pt;}
._41_c00013{margin-left:-28.013333pt;}
._47_c00013{margin-left:-26.392000pt;}
._2d_c00013{margin-left:-24.104000pt;}
._30_c00013{margin-left:-22.869333pt;}
._3d_c00013{margin-left:-21.466667pt;}
._4f_c00013{margin-left:-19.706667pt;}
._4_c00013{margin-left:-18.424000pt;}
._4d_c00013{margin-left:-17.152000pt;}
._2f_c00013{margin-left:-15.360000pt;}
._2e_c00013{margin-left:-13.653333pt;}
._3b_c00013{margin-left:-12.461333pt;}
._15_c00013{margin-left:-11.005333pt;}
._33_c00013{margin-left:-9.880000pt;}
._16_c00013{margin-left:-8.138667pt;}
._13_c00013{margin-left:-7.242667pt;}
._12_c00013{margin-left:-5.674667pt;}
._d_c00013{margin-left:-4.629333pt;}
._c_c00013{margin-left:-3.637333pt;}
._e_c00013{margin-left:-2.314667pt;}
._25_c00013{margin-left:-0.973333pt;}
._f_c00013{width:0.992000pt;}
._0_c00013{width:2.314667pt;}
._6_c00013{width:3.968000pt;}
._8_c00013{width:5.042667pt;}
._1e_c00013{width:6.650667pt;}
._2_c00013{width:8.018667pt;}
._3_c00013{width:9.042667pt;}
._1d_c00013{width:10.085333pt;}
._9_c00013{width:10.994667pt;}
._23_c00013{width:12.320000pt;}
._22_c00013{width:13.418667pt;}
._2a_c00013{width:14.594667pt;}
._5_c00013{width:15.541333pt;}
._24_c00013{width:16.570667pt;}
._20_c00013{width:17.469333pt;}
._1f_c00013{width:19.074667pt;}
._3c_c00013{width:20.613333pt;}
._1_c00013{width:21.824000pt;}
._14_c00013{width:23.370667pt;}
._31_c00013{width:24.266667pt;}
._34_c00013{width:25.312000pt;}
._28_c00013{width:26.397333pt;}
._a_c00013{width:28.354667pt;}
._17_c00013{width:29.920000pt;}
._2b_c00013{width:31.170667pt;}
._29_c00013{width:32.874667pt;}
._7_c00013{width:34.058667pt;}
._b_c00013{width:35.794667pt;}
._2c_c00013{width:36.730667pt;}
._18_c00013{width:37.834667pt;}
._36_c00013{width:40.504000pt;}
._32_c00013{width:42.448000pt;}
._26_c00013{width:43.685333pt;}
._39_c00013{width:44.800000pt;}
._19_c00013{width:50.346667pt;}
._51_c00013{width:53.197333pt;}
._1a_c00013{width:61.600000pt;}
._35_c00013{width:79.498667pt;}
._4b_c00013{width:85.360000pt;}
._11_c00013{width:89.984000pt;}
._3f_c00013{width:95.488000pt;}
._50_c00013{width:107.776000pt;}
._52_c00013{width:124.216000pt;}
._40_c00013{width:146.474667pt;}
._38_c00013{width:153.082667pt;}
._1c_c00013{width:159.306667pt;}
._27_c00013{width:187.818667pt;}
._1b_c00013{width:226.762667pt;}
._37_c00013{width:238.640000pt;}
._46_c00013{width:255.458667pt;}
._4e_c00013{width:400.034667pt;}
._10_c00013{width:453.426667pt;}
._3e_c00013{width:708.898667pt;}
._21_c00013{width:718.976000pt;}
.fs9_c00013{font-size:42.666667pt;}
.fs4_c00013{font-size:69.333333pt;}
.fs2_c00013{font-size:74.666667pt;}
.fs0_c00013{font-size:82.666667pt;}
.fs3_c00013{font-size:85.333333pt;}
.fs6_c00013{font-size:88.000000pt;}
.fs7_c00013{font-size:90.666667pt;}
.fs1_c00013{font-size:93.333333pt;}
.fs8_c00013{font-size:101.333333pt;}
.fs5_c00013{font-size:146.666667pt;}
.y0_c00013{bottom:0.000000pt;}
.y24_c00013{bottom:2.760000pt;}
.y23_c00013{bottom:6.425212pt;}
.y22_c00013{bottom:78.800000pt;}
.y21_c00013{bottom:110.133333pt;}
.y20_c00013{bottom:140.666667pt;}
.y1f_c00013{bottom:170.133333pt;}
.y1e_c00013{bottom:200.666667pt;}
.y1d_c00013{bottom:229.466667pt;}
.y1c_c00013{bottom:260.400000pt;}
.y1b_c00013{bottom:275.066667pt;}
.y1a_c00013{bottom:295.466667pt;}
.y19_c00013{bottom:323.733333pt;}
.y18_c00013{bottom:351.600000pt;}
.y17_c00013{bottom:381.200000pt;}
.y16_c00013{bottom:470.933333pt;}
.y15_c00013{bottom:499.466667pt;}
.y14_c00013{bottom:529.200000pt;}
.y13_c00013{bottom:558.266667pt;}
.y12_c00013{bottom:587.733333pt;}
.y11_c00013{bottom:617.600000pt;}
.y10_c00013{bottom:647.333333pt;}
.yf_c00013{bottom:676.800000pt;}
.ye_c00013{bottom:706.533333pt;}
.yd_c00013{bottom:735.866667pt;}
.yc_c00013{bottom:765.333333pt;}
.yb_c00013{bottom:794.400000pt;}
.ya_c00013{bottom:824.000000pt;}
.y9_c00013{bottom:853.200000pt;}
.y8_c00013{bottom:882.533333pt;}
.y7_c00013{bottom:911.733333pt;}
.y6_c00013{bottom:939.600000pt;}
.y5_c00013{bottom:972.933333pt;}
.y4_c00013{bottom:1003.466667pt;}
.y3_c00013{bottom:1028.000000pt;}
.y2_c00013{bottom:1088.400000pt;}
.y1_c00013{bottom:1118.933333pt;}
.h7_c00013{height:11.733399pt;}
.h8_c00013{height:38.937500pt;}
.h4_c00013{height:87.390625pt;}
.h2_c00013{height:104.665365pt;}
.h5_c00013{height:108.041667pt;}
.h3_c00013{height:118.170573pt;}
.h6_c00013{height:143.873698pt;}
.h0_c00013{height:1195.200000pt;}
.h1_c00013{height:1195.333333pt;}
.w2_c00013{width:93.222667pt;}
.w0_c00013{width:745.933333pt;}
.w1_c00013{width:746.000000pt;}
.x0_c00013{left:0.000000pt;}
.xc_c00013{left:34.400000pt;}
.xe_c00013{left:35.733333pt;}
.xa_c00013{left:36.800000pt;}
.x5_c00013{left:40.533333pt;}
.x9_c00013{left:63.200000pt;}
.xd_c00013{left:69.866667pt;}
.xb_c00013{left:91.466667pt;}
.x4_c00013{left:110.133333pt;}
.x8_c00013{left:149.066667pt;}
.x1_c00013{left:226.400000pt;}
.x2_c00013{left:228.266667pt;}
.xf_c00013{left:229.200000pt;}
.x6_c00013{left:230.133333pt;}
.x7_c00013{left:231.600000pt;}
.x11_c00013{left:330.134888pt;}
.x3_c00013{left:359.733333pt;}
.x10_c00013{left:700.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7705c86175e8bc9639ea2936.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_e7cdf8036354324d31a5ed8f.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_8b7557b91fb6409f54dc2b67.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_fef3646e9a880bfbb98ea96b.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00014;src:url('chunks/assets/font_8eb25a7928d3940b63fc6ba8.woff2')format("woff");}.ff6_c00014{font-family:ff6_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00014;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00014{font-family:ff7_c00014;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls3_c00014{letter-spacing:-12.000000px;}
.ls1_c00014{letter-spacing:0.000000px;}
.ls2_c00014{letter-spacing:6.000000px;}
.ls0_c00014{letter-spacing:22.800000px;}
.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;}
}
.ws4_c00014{word-spacing:-64.038000px;}
.ws0_c00014{word-spacing:-57.000000px;}
.ws3_c00014{word-spacing:-25.305000px;}
.ws1_c00014{word-spacing:-23.136000px;}
.ws2_c00014{word-spacing:-20.244000px;}
.ws5_c00014{word-spacing:0.000000px;}
._28_c00014{margin-left:-81.888000px;}
._37_c00014{margin-left:-32.715000px;}
._34_c00014{margin-left:-27.072000px;}
._2d_c00014{margin-left:-24.312000px;}
._35_c00014{margin-left:-20.019000px;}
._3a_c00014{margin-left:-19.002000px;}
._25_c00014{margin-left:-14.784000px;}
._24_c00014{margin-left:-12.096000px;}
._23_c00014{margin-left:-11.040000px;}
._1f_c00014{margin-left:-9.024000px;}
._20_c00014{margin-left:-7.296000px;}
._16_c00014{margin-left:-5.856000px;}
._17_c00014{margin-left:-4.608000px;}
._d_c00014{margin-left:-3.072000px;}
._6_c00014{margin-left:-1.440000px;}
._7_c00014{width:1.728000px;}
._f_c00014{width:2.784000px;}
._5_c00014{width:3.936000px;}
._4_c00014{width:5.280000px;}
._3_c00014{width:6.816000px;}
._2a_c00014{width:7.872000px;}
._0_c00014{width:8.928000px;}
._2_c00014{width:10.368000px;}
._1c_c00014{width:11.616000px;}
._1_c00014{width:12.672000px;}
._a_c00014{width:14.304000px;}
._1e_c00014{width:15.456000px;}
._c_c00014{width:16.992000px;}
._e_c00014{width:18.816000px;}
._2c_c00014{width:20.448000px;}
._1a_c00014{width:21.984000px;}
._33_c00014{width:24.114000px;}
._9_c00014{width:25.344000px;}
._22_c00014{width:26.400000px;}
._36_c00014{width:27.567000px;}
._12_c00014{width:28.704000px;}
._26_c00014{width:30.432000px;}
._15_c00014{width:31.680000px;}
._b_c00014{width:33.120000px;}
._14_c00014{width:34.272000px;}
._11_c00014{width:36.768000px;}
._8_c00014{width:38.784000px;}
._13_c00014{width:41.088000px;}
._18_c00014{width:43.200000px;}
._2f_c00014{width:44.256000px;}
._10_c00014{width:45.792000px;}
._21_c00014{width:47.520000px;}
._19_c00014{width:48.672000px;}
._30_c00014{width:51.456000px;}
._32_c00014{width:53.868000px;}
._1d_c00014{width:54.912000px;}
._31_c00014{width:56.160000px;}
._1b_c00014{width:57.504000px;}
._39_c00014{width:66.054000px;}
._38_c00014{width:69.420000px;}
._2b_c00014{width:100.608000px;}
._2e_c00014{width:163.056000px;}
._29_c00014{width:284.640000px;}
._27_c00014{width:321.504000px;}
.fc2_c00014{color:transparent;}
.fc1_c00014{color:rgb(128,128,128);}
.fc0_c00014{color:rgb(0,0,0);}
.fs8_c00014{font-size:48.000000px;}
.fs2_c00014{font-size:57.000000px;}
.fs6_c00014{font-size:78.000000px;}
.fs3_c00014{font-size:84.000000px;}
.fs7_c00014{font-size:87.000000px;}
.fs0_c00014{font-size:96.000000px;}
.fs1_c00014{font-size:102.000000px;}
.fs4_c00014{font-size:105.000000px;}
.fs5_c00014{font-size:114.000000px;}
.y0_c00014{bottom:0.000000px;}
.y2e_c00014{bottom:3.105000px;}
.y2d_c00014{bottom:7.228371px;}
.y25_c00014{bottom:95.565000px;}
.y24_c00014{bottom:124.515000px;}
.y23_c00014{bottom:158.265000px;}
.y22_c00014{bottom:192.165000px;}
.y21_c00014{bottom:226.515000px;}
.y20_c00014{bottom:259.665000px;}
.y1f_c00014{bottom:293.265000px;}
.y1e_c00014{bottom:327.615000px;}
.y2c_c00014{bottom:348.315000px;}
.y1d_c00014{bottom:360.765000px;}
.y2b_c00014{bottom:377.415000px;}
.y1c_c00014{bottom:393.915000px;}
.y2a_c00014{bottom:407.715000px;}
.y1b_c00014{bottom:426.915000px;}
.y29_c00014{bottom:439.215000px;}
.y1a_c00014{bottom:460.365000px;}
.y28_c00014{bottom:468.765000px;}
.y19_c00014{bottom:493.065000px;}
.y27_c00014{bottom:498.915000px;}
.y18_c00014{bottom:526.965000px;}
.y26_c00014{bottom:528.615000px;}
.y17_c00014{bottom:561.615000px;}
.y14_c00014{bottom:593.415000px;}
.y16_c00014{bottom:596.715000px;}
.y15_c00014{bottom:639.915000px;}
.y13_c00014{bottom:659.865000px;}
.y12_c00014{bottom:693.915000px;}
.y11_c00014{bottom:727.965000px;}
.y10_c00014{bottom:761.265000px;}
.yf_c00014{bottom:794.115000px;}
.ye_c00014{bottom:826.965000px;}
.yd_c00014{bottom:859.665000px;}
.yc_c00014{bottom:892.065000px;}
.yb_c00014{bottom:925.515000px;}
.ya_c00014{bottom:958.965000px;}
.y9_c00014{bottom:991.965000px;}
.y8_c00014{bottom:1025.115000px;}
.y7_c00014{bottom:1058.415000px;}
.y6_c00014{bottom:1091.115000px;}
.y5_c00014{bottom:1124.265000px;}
.y4_c00014{bottom:1157.265000px;}
.y3_c00014{bottom:1190.415000px;}
.y2_c00014{bottom:1223.415000px;}
.y1_c00014{bottom:1256.265000px;}
.ha_c00014{height:13.200074px;}
.hb_c00014{height:43.804688px;}
.h3_c00014{height:60.819000px;}
.h9_c00014{height:91.291992px;}
.h4_c00014{height:98.314453px;}
.h7_c00014{height:98.756836px;}
.h6_c00014{height:100.608000px;}
.h8_c00014{height:110.151855px;}
.h2_c00014{height:121.546875px;}
.h5_c00014{height:132.941895px;}
.h1_c00014{height:1349.250000px;}
.h0_c00014{height:1349.475000px;}
.w2_c00014{width:104.875500px;}
.w0_c00014{width:848.850000px;}
.w1_c00014{width:849.000000px;}
.x0_c00014{left:0.000000px;}
.x9_c00014{left:25.050000px;}
.x8_c00014{left:26.250000px;}
.x7_c00014{left:27.300000px;}
.x6_c00014{left:28.350000px;}
.x5_c00014{left:29.400000px;}
.x4_c00014{left:30.600000px;}
.x3_c00014{left:31.650000px;}
.x2_c00014{left:33.300000px;}
.x1_c00014{left:34.350000px;}
.xa_c00014{left:148.800000px;}
.xe_c00014{left:156.300000px;}
.x14_c00014{left:376.239258px;}
.xb_c00014{left:534.900000px;}
.xc_c00014{left:558.000000px;}
.xd_c00014{left:562.500000px;}
.xf_c00014{left:579.600000px;}
.x13_c00014{left:609.900000px;}
.x12_c00014{left:612.000000px;}
.x11_c00014{left:613.350000px;}
.x10_c00014{left:647.700000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls3_c00014{letter-spacing:-10.666667pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls2_c00014{letter-spacing:5.333333pt;}
.ls0_c00014{letter-spacing:20.266667pt;}
.ws4_c00014{word-spacing:-56.922667pt;}
.ws0_c00014{word-spacing:-50.666667pt;}
.ws3_c00014{word-spacing:-22.493333pt;}
.ws1_c00014{word-spacing:-20.565333pt;}
.ws2_c00014{word-spacing:-17.994667pt;}
.ws5_c00014{word-spacing:0.000000pt;}
._28_c00014{margin-left:-72.789333pt;}
._37_c00014{margin-left:-29.080000pt;}
._34_c00014{margin-left:-24.064000pt;}
._2d_c00014{margin-left:-21.610667pt;}
._35_c00014{margin-left:-17.794667pt;}
._3a_c00014{margin-left:-16.890667pt;}
._25_c00014{margin-left:-13.141333pt;}
._24_c00014{margin-left:-10.752000pt;}
._23_c00014{margin-left:-9.813333pt;}
._1f_c00014{margin-left:-8.021333pt;}
._20_c00014{margin-left:-6.485333pt;}
._16_c00014{margin-left:-5.205333pt;}
._17_c00014{margin-left:-4.096000pt;}
._d_c00014{margin-left:-2.730667pt;}
._6_c00014{margin-left:-1.280000pt;}
._7_c00014{width:1.536000pt;}
._f_c00014{width:2.474667pt;}
._5_c00014{width:3.498667pt;}
._4_c00014{width:4.693333pt;}
._3_c00014{width:6.058667pt;}
._2a_c00014{width:6.997333pt;}
._0_c00014{width:7.936000pt;}
._2_c00014{width:9.216000pt;}
._1c_c00014{width:10.325333pt;}
._1_c00014{width:11.264000pt;}
._a_c00014{width:12.714667pt;}
._1e_c00014{width:13.738667pt;}
._c_c00014{width:15.104000pt;}
._e_c00014{width:16.725333pt;}
._2c_c00014{width:18.176000pt;}
._1a_c00014{width:19.541333pt;}
._33_c00014{width:21.434667pt;}
._9_c00014{width:22.528000pt;}
._22_c00014{width:23.466667pt;}
._36_c00014{width:24.504000pt;}
._12_c00014{width:25.514667pt;}
._26_c00014{width:27.050667pt;}
._15_c00014{width:28.160000pt;}
._b_c00014{width:29.440000pt;}
._14_c00014{width:30.464000pt;}
._11_c00014{width:32.682667pt;}
._8_c00014{width:34.474667pt;}
._13_c00014{width:36.522667pt;}
._18_c00014{width:38.400000pt;}
._2f_c00014{width:39.338667pt;}
._10_c00014{width:40.704000pt;}
._21_c00014{width:42.240000pt;}
._19_c00014{width:43.264000pt;}
._30_c00014{width:45.738667pt;}
._32_c00014{width:47.882667pt;}
._1d_c00014{width:48.810667pt;}
._31_c00014{width:49.920000pt;}
._1b_c00014{width:51.114667pt;}
._39_c00014{width:58.714667pt;}
._38_c00014{width:61.706667pt;}
._2b_c00014{width:89.429333pt;}
._2e_c00014{width:144.938667pt;}
._29_c00014{width:253.013333pt;}
._27_c00014{width:285.781333pt;}
.fs8_c00014{font-size:42.666667pt;}
.fs2_c00014{font-size:50.666667pt;}
.fs6_c00014{font-size:69.333333pt;}
.fs3_c00014{font-size:74.666667pt;}
.fs7_c00014{font-size:77.333333pt;}
.fs0_c00014{font-size:85.333333pt;}
.fs1_c00014{font-size:90.666667pt;}
.fs4_c00014{font-size:93.333333pt;}
.fs5_c00014{font-size:101.333333pt;}
.y0_c00014{bottom:0.000000pt;}
.y2e_c00014{bottom:2.760000pt;}
.y2d_c00014{bottom:6.425219pt;}
.y25_c00014{bottom:84.946667pt;}
.y24_c00014{bottom:110.680000pt;}
.y23_c00014{bottom:140.680000pt;}
.y22_c00014{bottom:170.813333pt;}
.y21_c00014{bottom:201.346667pt;}
.y20_c00014{bottom:230.813333pt;}
.y1f_c00014{bottom:260.680000pt;}
.y1e_c00014{bottom:291.213333pt;}
.y2c_c00014{bottom:309.613333pt;}
.y1d_c00014{bottom:320.680000pt;}
.y2b_c00014{bottom:335.480000pt;}
.y1c_c00014{bottom:350.146667pt;}
.y2a_c00014{bottom:362.413333pt;}
.y1b_c00014{bottom:379.480000pt;}
.y29_c00014{bottom:390.413333pt;}
.y1a_c00014{bottom:409.213333pt;}
.y28_c00014{bottom:416.680000pt;}
.y19_c00014{bottom:438.280000pt;}
.y27_c00014{bottom:443.480000pt;}
.y18_c00014{bottom:468.413333pt;}
.y26_c00014{bottom:469.880000pt;}
.y17_c00014{bottom:499.213333pt;}
.y14_c00014{bottom:527.480000pt;}
.y16_c00014{bottom:530.413333pt;}
.y15_c00014{bottom:568.813333pt;}
.y13_c00014{bottom:586.546667pt;}
.y12_c00014{bottom:616.813333pt;}
.y11_c00014{bottom:647.080000pt;}
.y10_c00014{bottom:676.680000pt;}
.yf_c00014{bottom:705.880000pt;}
.ye_c00014{bottom:735.080000pt;}
.yd_c00014{bottom:764.146667pt;}
.yc_c00014{bottom:792.946667pt;}
.yb_c00014{bottom:822.680000pt;}
.ya_c00014{bottom:852.413333pt;}
.y9_c00014{bottom:881.746667pt;}
.y8_c00014{bottom:911.213333pt;}
.y7_c00014{bottom:940.813333pt;}
.y6_c00014{bottom:969.880000pt;}
.y5_c00014{bottom:999.346667pt;}
.y4_c00014{bottom:1028.680000pt;}
.y3_c00014{bottom:1058.146667pt;}
.y2_c00014{bottom:1087.480000pt;}
.y1_c00014{bottom:1116.680000pt;}
.ha_c00014{height:11.733399pt;}
.hb_c00014{height:38.937500pt;}
.h3_c00014{height:54.061333pt;}
.h9_c00014{height:81.148438pt;}
.h4_c00014{height:87.390625pt;}
.h7_c00014{height:87.783854pt;}
.h6_c00014{height:89.429333pt;}
.h8_c00014{height:97.912760pt;}
.h2_c00014{height:108.041667pt;}
.h5_c00014{height:118.170573pt;}
.h1_c00014{height:1199.333333pt;}
.h0_c00014{height:1199.533333pt;}
.w2_c00014{width:93.222667pt;}
.w0_c00014{width:754.533333pt;}
.w1_c00014{width:754.666667pt;}
.x0_c00014{left:0.000000pt;}
.x9_c00014{left:22.266667pt;}
.x8_c00014{left:23.333333pt;}
.x7_c00014{left:24.266667pt;}
.x6_c00014{left:25.200000pt;}
.x5_c00014{left:26.133333pt;}
.x4_c00014{left:27.200000pt;}
.x3_c00014{left:28.133333pt;}
.x2_c00014{left:29.600000pt;}
.x1_c00014{left:30.533333pt;}
.xa_c00014{left:132.266667pt;}
.xe_c00014{left:138.933333pt;}
.x14_c00014{left:334.434896pt;}
.xb_c00014{left:475.466667pt;}
.xc_c00014{left:496.000000pt;}
.xd_c00014{left:500.000000pt;}
.xf_c00014{left:515.200000pt;}
.x13_c00014{left:542.133333pt;}
.x12_c00014{left:544.000000pt;}
.x11_c00014{left:545.200000pt;}
.x10_c00014{left:575.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_28130dcc5f3df393a0ea98a4.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_0378e04891cb2c2c537d0f83.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls2_c00015{letter-spacing:0.000000px;}
.ls1_c00015{letter-spacing:10.152000px;}
.ls0_c00015{letter-spacing:19.092000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:-65.772000px;}
.ws1_c00015{word-spacing:0.000000px;}
._2_c00015{margin-left:-58.812000px;}
._31_c00015{margin-left:-29.568000px;}
._1_c00015{margin-left:-25.056000px;}
._0_c00015{margin-left:-22.359000px;}
._30_c00015{margin-left:-20.832000px;}
._2c_c00015{margin-left:-19.200000px;}
._32_c00015{margin-left:-18.144000px;}
._4_c00015{margin-left:-16.032000px;}
._2b_c00015{margin-left:-14.976000px;}
._3e_c00015{margin-left:-13.152000px;}
._2d_c00015{margin-left:-11.520000px;}
._2f_c00015{margin-left:-8.256000px;}
._1f_c00015{margin-left:-7.104000px;}
._20_c00015{margin-left:-5.376000px;}
._2e_c00015{margin-left:-4.032000px;}
._25_c00015{margin-left:-2.976000px;}
._12_c00015{margin-left:-1.920000px;}
._a_c00015{width:1.152000px;}
._6_c00015{width:2.400000px;}
._5_c00015{width:3.936000px;}
._7_c00015{width:4.992000px;}
._d_c00015{width:6.720000px;}
._e_c00015{width:8.544000px;}
._17_c00015{width:9.792000px;}
._9_c00015{width:11.808000px;}
._10_c00015{width:12.864000px;}
._15_c00015{width:14.592000px;}
._33_c00015{width:15.936000px;}
._11_c00015{width:16.992000px;}
._14_c00015{width:18.720000px;}
._23_c00015{width:19.968000px;}
._8_c00015{width:21.312000px;}
._29_c00015{width:24.192000px;}
._f_c00015{width:25.344000px;}
._b_c00015{width:27.552000px;}
._22_c00015{width:28.992000px;}
._18_c00015{width:30.048000px;}
._2a_c00015{width:31.104000px;}
._c_c00015{width:32.448000px;}
._3_c00015{width:34.080000px;}
._3c_c00015{width:35.136000px;}
._1a_c00015{width:36.768000px;}
._16_c00015{width:38.208000px;}
._13_c00015{width:39.264000px;}
._26_c00015{width:40.704000px;}
._1c_c00015{width:42.720000px;}
._1b_c00015{width:43.776000px;}
._28_c00015{width:45.216000px;}
._1e_c00015{width:47.712000px;}
._19_c00015{width:52.128000px;}
._21_c00015{width:54.240000px;}
._1d_c00015{width:56.736000px;}
._24_c00015{width:58.368000px;}
._37_c00015{width:60.480000px;}
._3d_c00015{width:67.008000px;}
._38_c00015{width:70.944000px;}
._39_c00015{width:106.944000px;}
._36_c00015{width:153.504000px;}
._27_c00015{width:170.304000px;}
._35_c00015{width:242.400000px;}
._3a_c00015{width:255.264000px;}
._3b_c00015{width:335.040000px;}
._34_c00015{width:348.960000px;}
._3f_c00015{width:2043.936000px;}
.fc2_c00015{color:transparent;}
.fc1_c00015{color:rgb(128,128,128);}
.fc0_c00015{color:rgb(0,0,0);}
.fs3_c00015{font-size:48.000000px;}
.fs2_c00015{font-size:84.000000px;}
.fs0_c00015{font-size:87.000000px;}
.fs1_c00015{font-size:96.000000px;}
.y0_c00015{bottom:0.000000px;}
.y27_c00015{bottom:3.105000px;}
.y26_c00015{bottom:7.228369px;}
.y25_c00015{bottom:79.620000px;}
.y24_c00015{bottom:116.070000px;}
.y23_c00015{bottom:150.570000px;}
.y22_c00015{bottom:184.320000px;}
.y21_c00015{bottom:218.670000px;}
.y20_c00015{bottom:252.120000px;}
.y1f_c00015{bottom:285.870000px;}
.y1e_c00015{bottom:318.270000px;}
.y1d_c00015{bottom:353.370000px;}
.y1c_c00015{bottom:386.670000px;}
.y1b_c00015{bottom:420.570000px;}
.y1a_c00015{bottom:453.870000px;}
.y19_c00015{bottom:487.620000px;}
.y1_c00015{bottom:494.070000px;}
.y18_c00015{bottom:520.320000px;}
.y17_c00015{bottom:553.770000px;}
.y16_c00015{bottom:587.220000px;}
.y15_c00015{bottom:620.220000px;}
.y14_c00015{bottom:653.070000px;}
.y13_c00015{bottom:686.820000px;}
.y12_c00015{bottom:719.820000px;}
.y11_c00015{bottom:752.970000px;}
.y10_c00015{bottom:786.270000px;}
.yf_c00015{bottom:819.720000px;}
.ye_c00015{bottom:852.870000px;}
.yd_c00015{bottom:885.570000px;}
.yc_c00015{bottom:918.270000px;}
.yb_c00015{bottom:951.120000px;}
.ya_c00015{bottom:984.420000px;}
.y9_c00015{bottom:1017.270000px;}
.y8_c00015{bottom:1050.270000px;}
.y7_c00015{bottom:1083.270000px;}
.y6_c00015{bottom:1116.420000px;}
.y5_c00015{bottom:1149.870000px;}
.y4_c00015{bottom:1182.270000px;}
.y3_c00015{bottom:1214.970000px;}
.y2_c00015{bottom:1248.720000px;}
.h4_c00015{height:13.200073px;}
.h5_c00015{height:43.804688px;}
.h2_c00015{height:101.825684px;}
.h3_c00015{height:121.546875px;}
.h1_c00015{height:1359.000000px;}
.h0_c00015{height:1359.150000px;}
.w2_c00015{width:104.875500px;}
.w1_c00015{width:848.250000px;}
.w0_c00015{width:848.325000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:42.750000px;}
.x9_c00015{left:136.350000px;}
.xa_c00015{left:141.150000px;}
.xb_c00015{left:146.550000px;}
.xc_c00015{left:154.650000px;}
.xe_c00015{left:254.100000px;}
.xd_c00015{left:255.150000px;}
.x7_c00015{left:259.500000px;}
.x8_c00015{left:260.550000px;}
.x6_c00015{left:262.650000px;}
.x5_c00015{left:263.700000px;}
.x3_c00015{left:265.350000px;}
.x4_c00015{left:267.000000px;}
.x2_c00015{left:268.650000px;}
.xf_c00015{left:375.976730px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls2_c00015{letter-spacing:0.000000pt;}
.ls1_c00015{letter-spacing:9.024000pt;}
.ls0_c00015{letter-spacing:16.970667pt;}
.ws0_c00015{word-spacing:-58.464000pt;}
.ws1_c00015{word-spacing:0.000000pt;}
._2_c00015{margin-left:-52.277333pt;}
._31_c00015{margin-left:-26.282667pt;}
._1_c00015{margin-left:-22.272000pt;}
._0_c00015{margin-left:-19.874667pt;}
._30_c00015{margin-left:-18.517333pt;}
._2c_c00015{margin-left:-17.066667pt;}
._32_c00015{margin-left:-16.128000pt;}
._4_c00015{margin-left:-14.250667pt;}
._2b_c00015{margin-left:-13.312000pt;}
._3e_c00015{margin-left:-11.690667pt;}
._2d_c00015{margin-left:-10.240000pt;}
._2f_c00015{margin-left:-7.338667pt;}
._1f_c00015{margin-left:-6.314667pt;}
._20_c00015{margin-left:-4.778667pt;}
._2e_c00015{margin-left:-3.584000pt;}
._25_c00015{margin-left:-2.645333pt;}
._12_c00015{margin-left:-1.706667pt;}
._a_c00015{width:1.024000pt;}
._6_c00015{width:2.133333pt;}
._5_c00015{width:3.498667pt;}
._7_c00015{width:4.437333pt;}
._d_c00015{width:5.973333pt;}
._e_c00015{width:7.594667pt;}
._17_c00015{width:8.704000pt;}
._9_c00015{width:10.496000pt;}
._10_c00015{width:11.434667pt;}
._15_c00015{width:12.970667pt;}
._33_c00015{width:14.165333pt;}
._11_c00015{width:15.104000pt;}
._14_c00015{width:16.640000pt;}
._23_c00015{width:17.749333pt;}
._8_c00015{width:18.944000pt;}
._29_c00015{width:21.504000pt;}
._f_c00015{width:22.528000pt;}
._b_c00015{width:24.490667pt;}
._22_c00015{width:25.770667pt;}
._18_c00015{width:26.709333pt;}
._2a_c00015{width:27.648000pt;}
._c_c00015{width:28.842667pt;}
._3_c00015{width:30.293333pt;}
._3c_c00015{width:31.232000pt;}
._1a_c00015{width:32.682667pt;}
._16_c00015{width:33.962667pt;}
._13_c00015{width:34.901333pt;}
._26_c00015{width:36.181333pt;}
._1c_c00015{width:37.973333pt;}
._1b_c00015{width:38.912000pt;}
._28_c00015{width:40.192000pt;}
._1e_c00015{width:42.410667pt;}
._19_c00015{width:46.336000pt;}
._21_c00015{width:48.213333pt;}
._1d_c00015{width:50.432000pt;}
._24_c00015{width:51.882667pt;}
._37_c00015{width:53.760000pt;}
._3d_c00015{width:59.562667pt;}
._38_c00015{width:63.061333pt;}
._39_c00015{width:95.061333pt;}
._36_c00015{width:136.448000pt;}
._27_c00015{width:151.381333pt;}
._35_c00015{width:215.466667pt;}
._3a_c00015{width:226.901333pt;}
._3b_c00015{width:297.813333pt;}
._34_c00015{width:310.186667pt;}
._3f_c00015{width:1816.832000pt;}
.fs3_c00015{font-size:42.666667pt;}
.fs2_c00015{font-size:74.666667pt;}
.fs0_c00015{font-size:77.333333pt;}
.fs1_c00015{font-size:85.333333pt;}
.y0_c00015{bottom:0.000000pt;}
.y27_c00015{bottom:2.760000pt;}
.y26_c00015{bottom:6.425217pt;}
.y25_c00015{bottom:70.773333pt;}
.y24_c00015{bottom:103.173333pt;}
.y23_c00015{bottom:133.840000pt;}
.y22_c00015{bottom:163.840000pt;}
.y21_c00015{bottom:194.373333pt;}
.y20_c00015{bottom:224.106667pt;}
.y1f_c00015{bottom:254.106667pt;}
.y1e_c00015{bottom:282.906667pt;}
.y1d_c00015{bottom:314.106667pt;}
.y1c_c00015{bottom:343.706667pt;}
.y1b_c00015{bottom:373.840000pt;}
.y1a_c00015{bottom:403.440000pt;}
.y19_c00015{bottom:433.440000pt;}
.y1_c00015{bottom:439.173333pt;}
.y18_c00015{bottom:462.506667pt;}
.y17_c00015{bottom:492.240000pt;}
.y16_c00015{bottom:521.973333pt;}
.y15_c00015{bottom:551.306667pt;}
.y14_c00015{bottom:580.506667pt;}
.y13_c00015{bottom:610.506667pt;}
.y12_c00015{bottom:639.840000pt;}
.y11_c00015{bottom:669.306667pt;}
.y10_c00015{bottom:698.906667pt;}
.yf_c00015{bottom:728.640000pt;}
.ye_c00015{bottom:758.106667pt;}
.yd_c00015{bottom:787.173333pt;}
.yc_c00015{bottom:816.240000pt;}
.yb_c00015{bottom:845.440000pt;}
.ya_c00015{bottom:875.040000pt;}
.y9_c00015{bottom:904.240000pt;}
.y8_c00015{bottom:933.573333pt;}
.y7_c00015{bottom:962.906667pt;}
.y6_c00015{bottom:992.373333pt;}
.y5_c00015{bottom:1022.106667pt;}
.y4_c00015{bottom:1050.906667pt;}
.y3_c00015{bottom:1079.973333pt;}
.y2_c00015{bottom:1109.973333pt;}
.h4_c00015{height:11.733399pt;}
.h5_c00015{height:38.937500pt;}
.h2_c00015{height:90.511719pt;}
.h3_c00015{height:108.041667pt;}
.h1_c00015{height:1208.000000pt;}
.h0_c00015{height:1208.133333pt;}
.w2_c00015{width:93.222667pt;}
.w1_c00015{width:754.000000pt;}
.w0_c00015{width:754.066667pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:38.000000pt;}
.x9_c00015{left:121.200000pt;}
.xa_c00015{left:125.466667pt;}
.xb_c00015{left:130.266667pt;}
.xc_c00015{left:137.466667pt;}
.xe_c00015{left:225.866667pt;}
.xd_c00015{left:226.800000pt;}
.x7_c00015{left:230.666667pt;}
.x8_c00015{left:231.600000pt;}
.x6_c00015{left:233.466667pt;}
.x5_c00015{left:234.400000pt;}
.x3_c00015{left:235.866667pt;}
.x4_c00015{left:237.333333pt;}
.x2_c00015{left:238.800000pt;}
.xf_c00015{left:334.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a9b6b6eb0bd5508cdf0fd68f.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_6aba4dd216e8d21d2bb1eb92.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_34300371227489241f990af1.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_8e68941268549fb61396cc55.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls5_c00016{letter-spacing:0.000000px;}
.ls2_c00016{letter-spacing:6.030000px;}
.ls3_c00016{letter-spacing:7.824000px;}
.ls0_c00016{letter-spacing:21.900000px;}
.ls4_c00016{letter-spacing:24.000000px;}
.ls1_c00016{letter-spacing:62.433000px;}
.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;}
}
.ws1_c00016{word-spacing:-20.244000px;}
.ws0_c00016{word-spacing:-9.156000px;}
.ws2_c00016{word-spacing:0.000000px;}
._2d_c00016{margin-left:-88.512000px;}
._2e_c00016{margin-left:-86.208000px;}
._2b_c00016{margin-left:-55.488000px;}
._44_c00016{margin-left:-43.392000px;}
._54_c00016{margin-left:-31.872000px;}
._21_c00016{margin-left:-30.240000px;}
._16_c00016{margin-left:-27.744000px;}
._2a_c00016{margin-left:-26.112000px;}
._1b_c00016{margin-left:-22.944000px;}
._48_c00016{margin-left:-21.504000px;}
._35_c00016{margin-left:-20.448000px;}
._32_c00016{margin-left:-17.952000px;}
._22_c00016{margin-left:-15.936000px;}
._17_c00016{margin-left:-14.016000px;}
._2f_c00016{margin-left:-12.384000px;}
._0_c00016{margin-left:-11.232000px;}
._20_c00016{margin-left:-9.408000px;}
._26_c00016{margin-left:-8.064000px;}
._37_c00016{margin-left:-6.432000px;}
._13_c00016{margin-left:-4.992000px;}
._24_c00016{margin-left:-3.744000px;}
._1d_c00016{margin-left:-2.304000px;}
._25_c00016{margin-left:-1.152000px;}
._5_c00016{width:1.632000px;}
._14_c00016{width:2.784000px;}
._7_c00016{width:3.840000px;}
._2_c00016{width:5.376000px;}
._c_c00016{width:6.720000px;}
._3_c00016{width:8.640000px;}
._12_c00016{width:10.368000px;}
._e_c00016{width:11.424000px;}
._b_c00016{width:13.248000px;}
._15_c00016{width:14.496000px;}
._55_c00016{width:15.648000px;}
._1c_c00016{width:16.704000px;}
._1e_c00016{width:17.760000px;}
._23_c00016{width:19.488000px;}
._11_c00016{width:21.600000px;}
._3a_c00016{width:24.192000px;}
._18_c00016{width:25.440000px;}
._10_c00016{width:26.976000px;}
._d_c00016{width:28.032000px;}
._51_c00016{width:29.472000px;}
._1f_c00016{width:30.528000px;}
._19_c00016{width:32.352000px;}
._4_c00016{width:34.176000px;}
._6_c00016{width:36.288000px;}
._27_c00016{width:38.400000px;}
._f_c00016{width:40.800000px;}
._52_c00016{width:42.048000px;}
._30_c00016{width:43.296000px;}
._4c_c00016{width:44.352000px;}
._3c_c00016{width:45.696000px;}
._9_c00016{width:47.328000px;}
._38_c00016{width:48.864000px;}
._39_c00016{width:50.112000px;}
._3d_c00016{width:51.552000px;}
._8_c00016{width:53.664000px;}
._53_c00016{width:58.176000px;}
._3e_c00016{width:62.649000px;}
._50_c00016{width:67.296000px;}
._4e_c00016{width:74.016000px;}
._47_c00016{width:77.376000px;}
._1_c00016{width:81.036000px;}
._4f_c00016{width:84.096000px;}
._2c_c00016{width:103.488000px;}
._4b_c00016{width:105.348000px;}
._1a_c00016{width:107.328000px;}
._49_c00016{width:115.968000px;}
._a_c00016{width:121.920000px;}
._4a_c00016{width:144.480000px;}
._34_c00016{width:160.956000px;}
._46_c00016{width:170.784000px;}
._31_c00016{width:248.064000px;}
._4d_c00016{width:282.816000px;}
._43_c00016{width:289.632000px;}
._40_c00016{width:317.115000px;}
._3b_c00016{width:357.744000px;}
._33_c00016{width:443.712000px;}
._3f_c00016{width:495.684000px;}
._29_c00016{width:507.648000px;}
._28_c00016{width:537.312000px;}
._45_c00016{width:600.192000px;}
._42_c00016{width:635.496000px;}
._36_c00016{width:691.392000px;}
._56_c00016{width:783.168000px;}
._41_c00016{width:1070.757000px;}
.fc2_c00016{color:transparent;}
.fc1_c00016{color:rgb(128,128,128);}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:36.000000px;}
.fs6_c00016{font-size:48.000000px;}
.fs4_c00016{font-size:67.200000px;}
.fs5_c00016{font-size:78.000000px;}
.fs3_c00016{font-size:84.000000px;}
.fs1_c00016{font-size:87.000000px;}
.fs2_c00016{font-size:96.000000px;}
.y0_c00016{bottom:0.000000px;}
.y29_c00016{bottom:3.105000px;}
.y28_c00016{bottom:7.228355px;}
.y27_c00016{bottom:105.285000px;}
.y26_c00016{bottom:138.585000px;}
.y25_c00016{bottom:172.485000px;}
.y24_c00016{bottom:206.235000px;}
.y23_c00016{bottom:239.835000px;}
.y22_c00016{bottom:273.585000px;}
.y21_c00016{bottom:307.035000px;}
.y20_c00016{bottom:340.485000px;}
.y1f_c00016{bottom:373.935000px;}
.y1e_c00016{bottom:407.685000px;}
.y1d_c00016{bottom:441.135000px;}
.y1c_c00016{bottom:474.435000px;}
.y1b_c00016{bottom:507.885000px;}
.y1a_c00016{bottom:541.335000px;}
.y19_c00016{bottom:574.035000px;}
.y18_c00016{bottom:607.035000px;}
.y17_c00016{bottom:640.185000px;}
.y16_c00016{bottom:673.935000px;}
.y15_c00016{bottom:707.685000px;}
.y14_c00016{bottom:740.685000px;}
.y13_c00016{bottom:773.535000px;}
.y12_c00016{bottom:804.585000px;}
.y11_c00016{bottom:825.135000px;}
.y10_c00016{bottom:840.285000px;}
.yf_c00016{bottom:856.935000px;}
.ye_c00016{bottom:877.035000px;}
.yd_c00016{bottom:907.185000px;}
.yc_c00016{bottom:939.285000px;}
.yb_c00016{bottom:972.585000px;}
.ya_c00016{bottom:1006.785000px;}
.y9_c00016{bottom:1039.185000px;}
.y8_c00016{bottom:1072.785000px;}
.y7_c00016{bottom:1106.535000px;}
.y6_c00016{bottom:1138.935000px;}
.y5_c00016{bottom:1172.085000px;}
.y4_c00016{bottom:1205.085000px;}
.y3_c00016{bottom:1237.935000px;}
.y2_c00016{bottom:1270.635000px;}
.y1_c00016{bottom:1295.535000px;}
.h4_c00016{height:13.200074px;}
.h5_c00016{height:43.804688px;}
.h2_c00016{height:110.151855px;}
.h3_c00016{height:121.546875px;}
.h0_c00016{height:1364.025000px;}
.h1_c00016{height:1364.250000px;}
.w2_c00016{width:104.875500px;}
.w1_c00016{width:858.000000px;}
.w0_c00016{width:858.075000px;}
.x0_c00016{left:0.000000px;}
.x9_c00016{left:25.050000px;}
.x5_c00016{left:26.100000px;}
.x4_c00016{left:27.750000px;}
.x3_c00016{left:28.800000px;}
.x2_c00016{left:30.000000px;}
.xc_c00016{left:31.050000px;}
.xa_c00016{left:32.100000px;}
.xd_c00016{left:33.750000px;}
.xe_c00016{left:37.500000px;}
.xb_c00016{left:39.150000px;}
.x8_c00016{left:54.900000px;}
.x7_c00016{left:76.500000px;}
.x6_c00016{left:167.700000px;}
.xf_c00016{left:315.000000px;}
.x10_c00016{left:380.851730px;}
.x1_c00016{left:501.450000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls5_c00016{letter-spacing:0.000000pt;}
.ls2_c00016{letter-spacing:5.360000pt;}
.ls3_c00016{letter-spacing:6.954667pt;}
.ls0_c00016{letter-spacing:19.466667pt;}
.ls4_c00016{letter-spacing:21.333333pt;}
.ls1_c00016{letter-spacing:55.496000pt;}
.ws1_c00016{word-spacing:-17.994667pt;}
.ws0_c00016{word-spacing:-8.138667pt;}
.ws2_c00016{word-spacing:0.000000pt;}
._2d_c00016{margin-left:-78.677333pt;}
._2e_c00016{margin-left:-76.629333pt;}
._2b_c00016{margin-left:-49.322667pt;}
._44_c00016{margin-left:-38.570667pt;}
._54_c00016{margin-left:-28.330667pt;}
._21_c00016{margin-left:-26.880000pt;}
._16_c00016{margin-left:-24.661333pt;}
._2a_c00016{margin-left:-23.210667pt;}
._1b_c00016{margin-left:-20.394667pt;}
._48_c00016{margin-left:-19.114667pt;}
._35_c00016{margin-left:-18.176000pt;}
._32_c00016{margin-left:-15.957333pt;}
._22_c00016{margin-left:-14.165333pt;}
._17_c00016{margin-left:-12.458667pt;}
._2f_c00016{margin-left:-11.008000pt;}
._0_c00016{margin-left:-9.984000pt;}
._20_c00016{margin-left:-8.362667pt;}
._26_c00016{margin-left:-7.168000pt;}
._37_c00016{margin-left:-5.717333pt;}
._13_c00016{margin-left:-4.437333pt;}
._24_c00016{margin-left:-3.328000pt;}
._1d_c00016{margin-left:-2.048000pt;}
._25_c00016{margin-left:-1.024000pt;}
._5_c00016{width:1.450667pt;}
._14_c00016{width:2.474667pt;}
._7_c00016{width:3.413333pt;}
._2_c00016{width:4.778667pt;}
._c_c00016{width:5.973333pt;}
._3_c00016{width:7.680000pt;}
._12_c00016{width:9.216000pt;}
._e_c00016{width:10.154667pt;}
._b_c00016{width:11.776000pt;}
._15_c00016{width:12.885333pt;}
._55_c00016{width:13.909333pt;}
._1c_c00016{width:14.848000pt;}
._1e_c00016{width:15.786667pt;}
._23_c00016{width:17.322667pt;}
._11_c00016{width:19.200000pt;}
._3a_c00016{width:21.504000pt;}
._18_c00016{width:22.613333pt;}
._10_c00016{width:23.978667pt;}
._d_c00016{width:24.917333pt;}
._51_c00016{width:26.197333pt;}
._1f_c00016{width:27.136000pt;}
._19_c00016{width:28.757333pt;}
._4_c00016{width:30.378667pt;}
._6_c00016{width:32.256000pt;}
._27_c00016{width:34.133333pt;}
._f_c00016{width:36.266667pt;}
._52_c00016{width:37.376000pt;}
._30_c00016{width:38.485333pt;}
._4c_c00016{width:39.424000pt;}
._3c_c00016{width:40.618667pt;}
._9_c00016{width:42.069333pt;}
._38_c00016{width:43.434667pt;}
._39_c00016{width:44.544000pt;}
._3d_c00016{width:45.824000pt;}
._8_c00016{width:47.701333pt;}
._53_c00016{width:51.712000pt;}
._3e_c00016{width:55.688000pt;}
._50_c00016{width:59.818667pt;}
._4e_c00016{width:65.792000pt;}
._47_c00016{width:68.778667pt;}
._1_c00016{width:72.032000pt;}
._4f_c00016{width:74.752000pt;}
._2c_c00016{width:91.989333pt;}
._4b_c00016{width:93.642667pt;}
._1a_c00016{width:95.402667pt;}
._49_c00016{width:103.082667pt;}
._a_c00016{width:108.373333pt;}
._4a_c00016{width:128.426667pt;}
._34_c00016{width:143.072000pt;}
._46_c00016{width:151.808000pt;}
._31_c00016{width:220.501333pt;}
._4d_c00016{width:251.392000pt;}
._43_c00016{width:257.450667pt;}
._40_c00016{width:281.880000pt;}
._3b_c00016{width:317.994667pt;}
._33_c00016{width:394.410667pt;}
._3f_c00016{width:440.608000pt;}
._29_c00016{width:451.242667pt;}
._28_c00016{width:477.610667pt;}
._45_c00016{width:533.504000pt;}
._42_c00016{width:564.885333pt;}
._36_c00016{width:614.570667pt;}
._56_c00016{width:696.149333pt;}
._41_c00016{width:951.784000pt;}
.fs0_c00016{font-size:32.000000pt;}
.fs6_c00016{font-size:42.666667pt;}
.fs4_c00016{font-size:59.733333pt;}
.fs5_c00016{font-size:69.333333pt;}
.fs3_c00016{font-size:74.666667pt;}
.fs1_c00016{font-size:77.333333pt;}
.fs2_c00016{font-size:85.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y29_c00016{bottom:2.760000pt;}
.y28_c00016{bottom:6.425204pt;}
.y27_c00016{bottom:93.586667pt;}
.y26_c00016{bottom:123.186667pt;}
.y25_c00016{bottom:153.320000pt;}
.y24_c00016{bottom:183.320000pt;}
.y23_c00016{bottom:213.186667pt;}
.y22_c00016{bottom:243.186667pt;}
.y21_c00016{bottom:272.920000pt;}
.y20_c00016{bottom:302.653333pt;}
.y1f_c00016{bottom:332.386667pt;}
.y1e_c00016{bottom:362.386667pt;}
.y1d_c00016{bottom:392.120000pt;}
.y1c_c00016{bottom:421.720000pt;}
.y1b_c00016{bottom:451.453333pt;}
.y1a_c00016{bottom:481.186667pt;}
.y19_c00016{bottom:510.253333pt;}
.y18_c00016{bottom:539.586667pt;}
.y17_c00016{bottom:569.053333pt;}
.y16_c00016{bottom:599.053333pt;}
.y15_c00016{bottom:629.053333pt;}
.y14_c00016{bottom:658.386667pt;}
.y13_c00016{bottom:687.586667pt;}
.y12_c00016{bottom:715.186667pt;}
.y11_c00016{bottom:733.453333pt;}
.y10_c00016{bottom:746.920000pt;}
.yf_c00016{bottom:761.720000pt;}
.ye_c00016{bottom:779.586667pt;}
.yd_c00016{bottom:806.386667pt;}
.yc_c00016{bottom:834.920000pt;}
.yb_c00016{bottom:864.520000pt;}
.ya_c00016{bottom:894.920000pt;}
.y9_c00016{bottom:923.720000pt;}
.y8_c00016{bottom:953.586667pt;}
.y7_c00016{bottom:983.586667pt;}
.y6_c00016{bottom:1012.386667pt;}
.y5_c00016{bottom:1041.853333pt;}
.y4_c00016{bottom:1071.186667pt;}
.y3_c00016{bottom:1100.386667pt;}
.y2_c00016{bottom:1129.453333pt;}
.y1_c00016{bottom:1151.586667pt;}
.h4_c00016{height:11.733399pt;}
.h5_c00016{height:38.937500pt;}
.h2_c00016{height:97.912760pt;}
.h3_c00016{height:108.041667pt;}
.h0_c00016{height:1212.466667pt;}
.h1_c00016{height:1212.666667pt;}
.w2_c00016{width:93.222667pt;}
.w1_c00016{width:762.666667pt;}
.w0_c00016{width:762.733333pt;}
.x0_c00016{left:0.000000pt;}
.x9_c00016{left:22.266667pt;}
.x5_c00016{left:23.200000pt;}
.x4_c00016{left:24.666667pt;}
.x3_c00016{left:25.600000pt;}
.x2_c00016{left:26.666667pt;}
.xc_c00016{left:27.600000pt;}
.xa_c00016{left:28.533333pt;}
.xd_c00016{left:30.000000pt;}
.xe_c00016{left:33.333333pt;}
.xb_c00016{left:34.800000pt;}
.x8_c00016{left:48.800000pt;}
.x7_c00016{left:68.000000pt;}
.x6_c00016{left:149.066667pt;}
.xf_c00016{left:280.000000pt;}
.x10_c00016{left:338.534871pt;}
.x1_c00016{left:445.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_425561be2a909981335496a4.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_2505290eb702ad5c8960b94f.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_fcca0cdbe20790df28d0e0b2.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.592000;font-style:normal;font-weight:normal;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_8729cb479cbd9103cfb15618.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00017;src:url('chunks/assets/font_4beca4e0bf509b26274eae8c.woff2')format("woff");}.ff5_c00017{font-family:ff5_c00017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00017;src:url('chunks/assets/font_4d6dae79093e1c63e9f716df.woff2')format("woff");}.ff6_c00017{font-family:ff6_c00017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00017;src:url('chunks/assets/font_eb7815fa820f7b36fc6eab9a.woff2')format("woff");}.ff7_c00017{font-family:ff7_c00017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00017;src:url('chunks/assets/font_31fce5b1ab54f52582679324.woff2')format("woff");}.ff8_c00017{font-family:ff8_c00017;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00017;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00017{font-family:ff9_c00017;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls5_c00017{letter-spacing:0.000000px;}
.ls6_c00017{letter-spacing:6.000000px;}
.ls4_c00017{letter-spacing:14.292000px;}
.ls3_c00017{letter-spacing:20.664000px;}
.ls7_c00017{letter-spacing:24.000000px;}
.ls1_c00017{letter-spacing:26.016000px;}
.ls2_c00017{letter-spacing:141.324000px;}
.ls0_c00017{letter-spacing:305.664000px;}
.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;}
}
.ws1_c00017{word-spacing:-57.000000px;}
.ws2_c00017{word-spacing:-23.136000px;}
.ws0_c00017{word-spacing:-20.244000px;}
.ws3_c00017{word-spacing:0.000000px;}
._2f_c00017{margin-left:-75.642000px;}
._28_c00017{margin-left:-52.494000px;}
._2c_c00017{margin-left:-37.398000px;}
._41_c00017{margin-left:-32.736000px;}
._4e_c00017{margin-left:-30.735000px;}
._8_c00017{margin-left:-28.800000px;}
._3a_c00017{margin-left:-27.252000px;}
._3c_c00017{margin-left:-25.680000px;}
._23_c00017{margin-left:-22.575000px;}
._29_c00017{margin-left:-20.028000px;}
._24_c00017{margin-left:-17.955000px;}
._26_c00017{margin-left:-15.522000px;}
._45_c00017{margin-left:-13.905000px;}
._43_c00017{margin-left:-12.495000px;}
._2b_c00017{margin-left:-11.310000px;}
._2a_c00017{margin-left:-9.744000px;}
._12_c00017{margin-left:-8.064000px;}
._39_c00017{margin-left:-6.888000px;}
._21_c00017{margin-left:-5.460000px;}
._4f_c00017{margin-left:-4.389000px;}
._f_c00017{margin-left:-3.360000px;}
._10_c00017{margin-left:-2.112000px;}
._1b_c00017{margin-left:-1.056000px;}
._b_c00017{width:1.248000px;}
._7_c00017{width:2.688000px;}
._2_c00017{width:3.840000px;}
._0_c00017{width:5.472000px;}
._11_c00017{width:6.720000px;}
._1_c00017{width:8.160000px;}
._16_c00017{width:9.384000px;}
._9_c00017{width:10.464000px;}
._4_c00017{width:11.808000px;}
._3f_c00017{width:12.888000px;}
._d_c00017{width:13.920000px;}
._5_c00017{width:15.360000px;}
._38_c00017{width:16.404000px;}
._14_c00017{width:17.568000px;}
._17_c00017{width:19.224000px;}
._4c_c00017{width:20.544000px;}
._a_c00017{width:21.600000px;}
._1d_c00017{width:24.288000px;}
._19_c00017{width:25.440000px;}
._49_c00017{width:27.183000px;}
._48_c00017{width:28.632000px;}
._6_c00017{width:29.952000px;}
._3_c00017{width:32.352000px;}
._13_c00017{width:34.752000px;}
._c_c00017{width:36.672000px;}
._1f_c00017{width:38.880000px;}
._e_c00017{width:40.512000px;}
._4b_c00017{width:41.676000px;}
._1c_c00017{width:43.176000px;}
._15_c00017{width:44.736000px;}
._1a_c00017{width:46.944000px;}
._51_c00017{width:47.985000px;}
._1e_c00017{width:49.248000px;}
._18_c00017{width:51.360000px;}
._4a_c00017{width:53.856000px;}
._40_c00017{width:55.680000px;}
._30_c00017{width:57.942000px;}
._4d_c00017{width:59.880000px;}
._52_c00017{width:64.416000px;}
._27_c00017{width:66.900000px;}
._31_c00017{width:69.111000px;}
._44_c00017{width:70.770000px;}
._3d_c00017{width:88.224000px;}
._33_c00017{width:101.904000px;}
._34_c00017{width:108.234000px;}
._32_c00017{width:109.344000px;}
._22_c00017{width:133.350000px;}
._46_c00017{width:139.965000px;}
._47_c00017{width:146.958000px;}
._42_c00017{width:163.905000px;}
._50_c00017{width:169.848000px;}
._36_c00017{width:179.808000px;}
._35_c00017{width:207.456000px;}
._25_c00017{width:248.040000px;}
._3b_c00017{width:282.240000px;}
._2e_c00017{width:369.054000px;}
._3e_c00017{width:493.812000px;}
._37_c00017{width:627.096000px;}
._2d_c00017{width:643.278000px;}
._20_c00017{width:991.068000px;}
._53_c00017{width:1907.808000px;}
.fc2_c00017{color:transparent;}
.fc1_c00017{color:rgb(128,128,128);}
.fc0_c00017{color:rgb(0,0,0);}
.fs4_c00017{font-size:27.000000px;}
.fs7_c00017{font-size:36.000000px;}
.fs8_c00017{font-size:48.000000px;}
.fs3_c00017{font-size:78.000000px;}
.fs1_c00017{font-size:84.000000px;}
.fs5_c00017{font-size:87.000000px;}
.fs0_c00017{font-size:96.000000px;}
.fs6_c00017{font-size:102.000000px;}
.fs2_c00017{font-size:105.000000px;}
.y0_c00017{bottom:0.000000px;}
.y27_c00017{bottom:3.105000px;}
.y26_c00017{bottom:7.228357px;}
.y24_c00017{bottom:103.380000px;}
.y25_c00017{bottom:112.680000px;}
.y23_c00017{bottom:139.080000px;}
.y22_c00017{bottom:172.230000px;}
.y21_c00017{bottom:206.280000px;}
.y20_c00017{bottom:239.280000px;}
.y1f_c00017{bottom:273.330000px;}
.y1e_c00017{bottom:307.230000px;}
.y1d_c00017{bottom:340.980000px;}
.y1c_c00017{bottom:374.730000px;}
.y1b_c00017{bottom:408.480000px;}
.y1a_c00017{bottom:442.080000px;}
.y19_c00017{bottom:475.980000px;}
.y18_c00017{bottom:509.580000px;}
.y17_c00017{bottom:542.130000px;}
.y16_c00017{bottom:575.880000px;}
.y15_c00017{bottom:609.630000px;}
.y14_c00017{bottom:642.630000px;}
.y13_c00017{bottom:676.380000px;}
.y12_c00017{bottom:710.130000px;}
.y11_c00017{bottom:743.580000px;}
.y10_c00017{bottom:777.030000px;}
.yf_c00017{bottom:810.780000px;}
.ye_c00017{bottom:843.780000px;}
.yd_c00017{bottom:876.180000px;}
.yc_c00017{bottom:910.230000px;}
.yb_c00017{bottom:943.080000px;}
.ya_c00017{bottom:975.480000px;}
.y9_c00017{bottom:1041.930000px;}
.y8_c00017{bottom:1077.030000px;}
.y7_c00017{bottom:1094.280000px;}
.y6_c00017{bottom:1108.980000px;}
.y5_c00017{bottom:1141.530000px;}
.y4_c00017{bottom:1175.130000px;}
.y3_c00017{bottom:1208.880000px;}
.y2_c00017{bottom:1240.980000px;}
.y1_c00017{bottom:1274.430000px;}
.h7_c00017{height:13.200074px;}
.h4_c00017{height:23.258496px;}
.h8_c00017{height:43.804688px;}
.h6_c00017{height:100.608000px;}
.h5_c00017{height:110.151855px;}
.h2_c00017{height:121.546875px;}
.h3_c00017{height:132.941895px;}
.h0_c00017{height:1382.700000px;}
.h1_c00017{height:1383.000000px;}
.w2_c00017{width:104.875500px;}
.w0_c00017{width:863.175000px;}
.w1_c00017{width:863.250000px;}
.x0_c00017{left:0.000000px;}
.x7_c00017{left:47.700000px;}
.x8_c00017{left:48.900000px;}
.xb_c00017{left:74.700000px;}
.x6_c00017{left:79.050000px;}
.x9_c00017{left:88.800000px;}
.xc_c00017{left:270.300000px;}
.xf_c00017{left:272.400000px;}
.xe_c00017{left:273.450000px;}
.xd_c00017{left:274.500000px;}
.xa_c00017{left:275.700000px;}
.x1_c00017{left:277.350000px;}
.x2_c00017{left:278.400000px;}
.x11_c00017{left:309.450000px;}
.x4_c00017{left:335.550000px;}
.x5_c00017{left:367.500000px;}
.x12_c00017{left:383.401749px;}
.x3_c00017{left:706.050000px;}
.x10_c00017{left:747.000000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls5_c00017{letter-spacing:0.000000pt;}
.ls6_c00017{letter-spacing:5.333333pt;}
.ls4_c00017{letter-spacing:12.704000pt;}
.ls3_c00017{letter-spacing:18.368000pt;}
.ls7_c00017{letter-spacing:21.333333pt;}
.ls1_c00017{letter-spacing:23.125333pt;}
.ls2_c00017{letter-spacing:125.621333pt;}
.ls0_c00017{letter-spacing:271.701333pt;}
.ws1_c00017{word-spacing:-50.666667pt;}
.ws2_c00017{word-spacing:-20.565333pt;}
.ws0_c00017{word-spacing:-17.994667pt;}
.ws3_c00017{word-spacing:0.000000pt;}
._2f_c00017{margin-left:-67.237333pt;}
._28_c00017{margin-left:-46.661333pt;}
._2c_c00017{margin-left:-33.242667pt;}
._41_c00017{margin-left:-29.098667pt;}
._4e_c00017{margin-left:-27.320000pt;}
._8_c00017{margin-left:-25.600000pt;}
._3a_c00017{margin-left:-24.224000pt;}
._3c_c00017{margin-left:-22.826667pt;}
._23_c00017{margin-left:-20.066667pt;}
._29_c00017{margin-left:-17.802667pt;}
._24_c00017{margin-left:-15.960000pt;}
._26_c00017{margin-left:-13.797333pt;}
._45_c00017{margin-left:-12.360000pt;}
._43_c00017{margin-left:-11.106667pt;}
._2b_c00017{margin-left:-10.053333pt;}
._2a_c00017{margin-left:-8.661333pt;}
._12_c00017{margin-left:-7.168000pt;}
._39_c00017{margin-left:-6.122667pt;}
._21_c00017{margin-left:-4.853333pt;}
._4f_c00017{margin-left:-3.901333pt;}
._f_c00017{margin-left:-2.986667pt;}
._10_c00017{margin-left:-1.877333pt;}
._1b_c00017{margin-left:-0.938667pt;}
._b_c00017{width:1.109333pt;}
._7_c00017{width:2.389333pt;}
._2_c00017{width:3.413333pt;}
._0_c00017{width:4.864000pt;}
._11_c00017{width:5.973333pt;}
._1_c00017{width:7.253333pt;}
._16_c00017{width:8.341333pt;}
._9_c00017{width:9.301333pt;}
._4_c00017{width:10.496000pt;}
._3f_c00017{width:11.456000pt;}
._d_c00017{width:12.373333pt;}
._5_c00017{width:13.653333pt;}
._38_c00017{width:14.581333pt;}
._14_c00017{width:15.616000pt;}
._17_c00017{width:17.088000pt;}
._4c_c00017{width:18.261333pt;}
._a_c00017{width:19.200000pt;}
._1d_c00017{width:21.589333pt;}
._19_c00017{width:22.613333pt;}
._49_c00017{width:24.162667pt;}
._48_c00017{width:25.450667pt;}
._6_c00017{width:26.624000pt;}
._3_c00017{width:28.757333pt;}
._13_c00017{width:30.890667pt;}
._c_c00017{width:32.597333pt;}
._1f_c00017{width:34.560000pt;}
._e_c00017{width:36.010667pt;}
._4b_c00017{width:37.045333pt;}
._1c_c00017{width:38.378667pt;}
._15_c00017{width:39.765333pt;}
._1a_c00017{width:41.728000pt;}
._51_c00017{width:42.653333pt;}
._1e_c00017{width:43.776000pt;}
._18_c00017{width:45.653333pt;}
._4a_c00017{width:47.872000pt;}
._40_c00017{width:49.493333pt;}
._30_c00017{width:51.504000pt;}
._4d_c00017{width:53.226667pt;}
._52_c00017{width:57.258667pt;}
._27_c00017{width:59.466667pt;}
._31_c00017{width:61.432000pt;}
._44_c00017{width:62.906667pt;}
._3d_c00017{width:78.421333pt;}
._33_c00017{width:90.581333pt;}
._34_c00017{width:96.208000pt;}
._32_c00017{width:97.194667pt;}
._22_c00017{width:118.533333pt;}
._46_c00017{width:124.413333pt;}
._47_c00017{width:130.629333pt;}
._42_c00017{width:145.693333pt;}
._50_c00017{width:150.976000pt;}
._36_c00017{width:159.829333pt;}
._35_c00017{width:184.405333pt;}
._25_c00017{width:220.480000pt;}
._3b_c00017{width:250.880000pt;}
._2e_c00017{width:328.048000pt;}
._3e_c00017{width:438.944000pt;}
._37_c00017{width:557.418667pt;}
._2d_c00017{width:571.802667pt;}
._20_c00017{width:880.949333pt;}
._53_c00017{width:1695.829333pt;}
.fs4_c00017{font-size:24.000000pt;}
.fs7_c00017{font-size:32.000000pt;}
.fs8_c00017{font-size:42.666667pt;}
.fs3_c00017{font-size:69.333333pt;}
.fs1_c00017{font-size:74.666667pt;}
.fs5_c00017{font-size:77.333333pt;}
.fs0_c00017{font-size:85.333333pt;}
.fs6_c00017{font-size:90.666667pt;}
.fs2_c00017{font-size:93.333333pt;}
.y0_c00017{bottom:0.000000pt;}
.y27_c00017{bottom:2.760000pt;}
.y26_c00017{bottom:6.425206pt;}
.y24_c00017{bottom:91.893333pt;}
.y25_c00017{bottom:100.160000pt;}
.y23_c00017{bottom:123.626667pt;}
.y22_c00017{bottom:153.093333pt;}
.y21_c00017{bottom:183.360000pt;}
.y20_c00017{bottom:212.693333pt;}
.y1f_c00017{bottom:242.960000pt;}
.y1e_c00017{bottom:273.093333pt;}
.y1d_c00017{bottom:303.093333pt;}
.y1c_c00017{bottom:333.093333pt;}
.y1b_c00017{bottom:363.093333pt;}
.y1a_c00017{bottom:392.960000pt;}
.y19_c00017{bottom:423.093333pt;}
.y18_c00017{bottom:452.960000pt;}
.y17_c00017{bottom:481.893333pt;}
.y16_c00017{bottom:511.893333pt;}
.y15_c00017{bottom:541.893333pt;}
.y14_c00017{bottom:571.226667pt;}
.y13_c00017{bottom:601.226667pt;}
.y12_c00017{bottom:631.226667pt;}
.y11_c00017{bottom:660.960000pt;}
.y10_c00017{bottom:690.693333pt;}
.yf_c00017{bottom:720.693333pt;}
.ye_c00017{bottom:750.026667pt;}
.yd_c00017{bottom:778.826667pt;}
.yc_c00017{bottom:809.093333pt;}
.yb_c00017{bottom:838.293333pt;}
.ya_c00017{bottom:867.093333pt;}
.y9_c00017{bottom:926.160000pt;}
.y8_c00017{bottom:957.360000pt;}
.y7_c00017{bottom:972.693333pt;}
.y6_c00017{bottom:985.760000pt;}
.y5_c00017{bottom:1014.693333pt;}
.y4_c00017{bottom:1044.560000pt;}
.y3_c00017{bottom:1074.560000pt;}
.y2_c00017{bottom:1103.093333pt;}
.y1_c00017{bottom:1132.826667pt;}
.h7_c00017{height:11.733399pt;}
.h4_c00017{height:20.674219pt;}
.h8_c00017{height:38.937500pt;}
.h6_c00017{height:89.429333pt;}
.h5_c00017{height:97.912760pt;}
.h2_c00017{height:108.041667pt;}
.h3_c00017{height:118.170573pt;}
.h0_c00017{height:1229.066667pt;}
.h1_c00017{height:1229.333333pt;}
.w2_c00017{width:93.222667pt;}
.w0_c00017{width:767.266667pt;}
.w1_c00017{width:767.333333pt;}
.x0_c00017{left:0.000000pt;}
.x7_c00017{left:42.400000pt;}
.x8_c00017{left:43.466667pt;}
.xb_c00017{left:66.400000pt;}
.x6_c00017{left:70.266667pt;}
.x9_c00017{left:78.933333pt;}
.xc_c00017{left:240.266667pt;}
.xf_c00017{left:242.133333pt;}
.xe_c00017{left:243.066667pt;}
.xd_c00017{left:244.000000pt;}
.xa_c00017{left:245.066667pt;}
.x1_c00017{left:246.533333pt;}
.x2_c00017{left:247.466667pt;}
.x11_c00017{left:275.066667pt;}
.x4_c00017{left:298.266667pt;}
.x5_c00017{left:326.666667pt;}
.x12_c00017{left:340.801554pt;}
.x3_c00017{left:627.600000pt;}
.x10_c00017{left:664.000000pt;}
}





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

.ir_c00018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_b663da80a12f3407da4e47b3.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_4f314695a6396be3c07730b5.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_55c36c91326fdee7debb59f8.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls2_c00018{letter-spacing:0.000000px;}
.ls1_c00018{letter-spacing:10.908000px;}
.ls0_c00018{letter-spacing:172.233000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-48.372000px;}
.ws1_c00018{word-spacing:-23.136000px;}
.ws2_c00018{word-spacing:0.000000px;}
._2e_c00018{margin-left:-16.188000px;}
._2f_c00018{margin-left:-13.824000px;}
._30_c00018{margin-left:-11.304000px;}
._31_c00018{margin-left:-10.176000px;}
._2b_c00018{margin-left:-9.120000px;}
._2c_c00018{margin-left:-7.884000px;}
._3c_c00018{margin-left:-6.858000px;}
._6_c00018{margin-left:-5.850000px;}
._3_c00018{margin-left:-4.680000px;}
._13_c00018{margin-left:-3.540000px;}
._2_c00018{margin-left:-2.418000px;}
._0_c00018{margin-left:-1.170000px;}
._10_c00018{width:1.326000px;}
._4_c00018{width:2.988000px;}
._8_c00018{width:4.758000px;}
._c_c00018{width:6.306000px;}
._7_c00018{width:7.488000px;}
._5_c00018{width:8.658000px;}
._1_c00018{width:9.672000px;}
._1e_c00018{width:11.136000px;}
._1f_c00018{width:12.162000px;}
._a_c00018{width:13.338000px;}
._11_c00018{width:14.586000px;}
._9_c00018{width:15.678000px;}
._1d_c00018{width:17.370000px;}
._d_c00018{width:18.816000px;}
._25_c00018{width:20.604000px;}
._35_c00018{width:22.134000px;}
._b_c00018{width:24.153000px;}
._29_c00018{width:25.314000px;}
._16_c00018{width:27.798000px;}
._e_c00018{width:28.896000px;}
._27_c00018{width:30.288000px;}
._22_c00018{width:31.410000px;}
._17_c00018{width:32.436000px;}
._12_c00018{width:33.462000px;}
._26_c00018{width:34.986000px;}
._14_c00018{width:36.162000px;}
._21_c00018{width:37.728000px;}
._24_c00018{width:39.444000px;}
._18_c00018{width:41.190000px;}
._32_c00018{width:42.534000px;}
._3a_c00018{width:44.070000px;}
._20_c00018{width:45.612000px;}
._23_c00018{width:47.208000px;}
._19_c00018{width:49.350000px;}
._2d_c00018{width:50.904000px;}
._1c_c00018{width:52.050000px;}
._28_c00018{width:53.958000px;}
._2a_c00018{width:56.397000px;}
._3b_c00018{width:58.278000px;}
._33_c00018{width:60.648000px;}
._34_c00018{width:62.556000px;}
._36_c00018{width:71.514000px;}
._1b_c00018{width:78.936000px;}
._1a_c00018{width:80.400000px;}
._37_c00018{width:83.628000px;}
._39_c00018{width:92.286000px;}
._38_c00018{width:95.112000px;}
._15_c00018{width:185.010000px;}
._f_c00018{width:201.864000px;}
.fc2_c00018{color:transparent;}
.fc1_c00018{color:rgb(128,128,128);}
.fc0_c00018{color:rgb(0,0,0);}
.fs4_c00018{font-size:48.000000px;}
.fs0_c00018{font-size:78.000000px;}
.fs3_c00018{font-size:84.000000px;}
.fs1_c00018{font-size:87.000000px;}
.fs2_c00018{font-size:96.000000px;}
.y0_c00018{bottom:0.000000px;}
.y26_c00018{bottom:3.105000px;}
.y25_c00018{bottom:7.228369px;}
.y24_c00018{bottom:89.670000px;}
.y23_c00018{bottom:121.470000px;}
.y22_c00018{bottom:154.920000px;}
.y21_c00018{bottom:188.970000px;}
.y20_c00018{bottom:222.420000px;}
.y1f_c00018{bottom:256.770000px;}
.y1e_c00018{bottom:290.220000px;}
.y1d_c00018{bottom:323.370000px;}
.y1c_c00018{bottom:357.420000px;}
.y1b_c00018{bottom:390.720000px;}
.y1a_c00018{bottom:424.620000px;}
.y19_c00018{bottom:457.620000px;}
.y18_c00018{bottom:491.070000px;}
.y17_c00018{bottom:524.370000px;}
.y16_c00018{bottom:557.820000px;}
.y15_c00018{bottom:590.670000px;}
.y14_c00018{bottom:624.420000px;}
.y13_c00018{bottom:657.420000px;}
.y12_c00018{bottom:691.470000px;}
.y11_c00018{bottom:723.570000px;}
.y10_c00018{bottom:757.920000px;}
.yf_c00018{bottom:791.370000px;}
.ye_c00018{bottom:824.220000px;}
.yd_c00018{bottom:857.520000px;}
.yc_c00018{bottom:890.370000px;}
.yb_c00018{bottom:923.670000px;}
.ya_c00018{bottom:957.120000px;}
.y9_c00018{bottom:990.270000px;}
.y3_c00018{bottom:1013.520000px;}
.y8_c00018{bottom:1023.270000px;}
.y2_c00018{bottom:1042.770000px;}
.y7_c00018{bottom:1056.720000px;}
.y1_c00018{bottom:1071.270000px;}
.y6_c00018{bottom:1092.870000px;}
.y5_c00018{bottom:1124.820000px;}
.y4_c00018{bottom:1157.220000px;}
.h4_c00018{height:13.200073px;}
.h5_c00018{height:43.804688px;}
.h2_c00018{height:91.291992px;}
.h1_c00018{height:98.756836px;}
.h3_c00018{height:121.546875px;}
.h0_c00018{height:1353.750000px;}
.w2_c00018{width:104.875500px;}
.w1_c00018{width:851.250000px;}
.w0_c00018{width:851.550000px;}
.x0_c00018{left:0.000000px;}
.x6_c00018{left:19.200000px;}
.x4_c00018{left:20.250000px;}
.x3_c00018{left:21.300000px;}
.x5_c00018{left:22.350000px;}
.x7_c00018{left:24.000000px;}
.x8_c00018{left:25.650000px;}
.x2_c00018{left:75.300000px;}
.xa_c00018{left:377.589249px;}
.x9_c00018{left:533.250000px;}
.x1_c00018{left:603.000000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls2_c00018{letter-spacing:0.000000pt;}
.ls1_c00018{letter-spacing:9.696000pt;}
.ls0_c00018{letter-spacing:153.096000pt;}
.ws0_c00018{word-spacing:-42.997333pt;}
.ws1_c00018{word-spacing:-20.565333pt;}
.ws2_c00018{word-spacing:0.000000pt;}
._2e_c00018{margin-left:-14.389333pt;}
._2f_c00018{margin-left:-12.288000pt;}
._30_c00018{margin-left:-10.048000pt;}
._31_c00018{margin-left:-9.045333pt;}
._2b_c00018{margin-left:-8.106667pt;}
._2c_c00018{margin-left:-7.008000pt;}
._3c_c00018{margin-left:-6.096000pt;}
._6_c00018{margin-left:-5.200000pt;}
._3_c00018{margin-left:-4.160000pt;}
._13_c00018{margin-left:-3.146667pt;}
._2_c00018{margin-left:-2.149333pt;}
._0_c00018{margin-left:-1.040000pt;}
._10_c00018{width:1.178667pt;}
._4_c00018{width:2.656000pt;}
._8_c00018{width:4.229333pt;}
._c_c00018{width:5.605333pt;}
._7_c00018{width:6.656000pt;}
._5_c00018{width:7.696000pt;}
._1_c00018{width:8.597333pt;}
._1e_c00018{width:9.898667pt;}
._1f_c00018{width:10.810667pt;}
._a_c00018{width:11.856000pt;}
._11_c00018{width:12.965333pt;}
._9_c00018{width:13.936000pt;}
._1d_c00018{width:15.440000pt;}
._d_c00018{width:16.725333pt;}
._25_c00018{width:18.314667pt;}
._35_c00018{width:19.674667pt;}
._b_c00018{width:21.469333pt;}
._29_c00018{width:22.501333pt;}
._16_c00018{width:24.709333pt;}
._e_c00018{width:25.685333pt;}
._27_c00018{width:26.922667pt;}
._22_c00018{width:27.920000pt;}
._17_c00018{width:28.832000pt;}
._12_c00018{width:29.744000pt;}
._26_c00018{width:31.098667pt;}
._14_c00018{width:32.144000pt;}
._21_c00018{width:33.536000pt;}
._24_c00018{width:35.061333pt;}
._18_c00018{width:36.613333pt;}
._32_c00018{width:37.808000pt;}
._3a_c00018{width:39.173333pt;}
._20_c00018{width:40.544000pt;}
._23_c00018{width:41.962667pt;}
._19_c00018{width:43.866667pt;}
._2d_c00018{width:45.248000pt;}
._1c_c00018{width:46.266667pt;}
._28_c00018{width:47.962667pt;}
._2a_c00018{width:50.130667pt;}
._3b_c00018{width:51.802667pt;}
._33_c00018{width:53.909333pt;}
._34_c00018{width:55.605333pt;}
._36_c00018{width:63.568000pt;}
._1b_c00018{width:70.165333pt;}
._1a_c00018{width:71.466667pt;}
._37_c00018{width:74.336000pt;}
._39_c00018{width:82.032000pt;}
._38_c00018{width:84.544000pt;}
._15_c00018{width:164.453333pt;}
._f_c00018{width:179.434667pt;}
.fs4_c00018{font-size:42.666667pt;}
.fs0_c00018{font-size:69.333333pt;}
.fs3_c00018{font-size:74.666667pt;}
.fs1_c00018{font-size:77.333333pt;}
.fs2_c00018{font-size:85.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y26_c00018{bottom:2.760000pt;}
.y25_c00018{bottom:6.425217pt;}
.y24_c00018{bottom:79.706667pt;}
.y23_c00018{bottom:107.973333pt;}
.y22_c00018{bottom:137.706667pt;}
.y21_c00018{bottom:167.973333pt;}
.y20_c00018{bottom:197.706667pt;}
.y1f_c00018{bottom:228.240000pt;}
.y1e_c00018{bottom:257.973333pt;}
.y1d_c00018{bottom:287.440000pt;}
.y1c_c00018{bottom:317.706667pt;}
.y1b_c00018{bottom:347.306667pt;}
.y1a_c00018{bottom:377.440000pt;}
.y19_c00018{bottom:406.773333pt;}
.y18_c00018{bottom:436.506667pt;}
.y17_c00018{bottom:466.106667pt;}
.y16_c00018{bottom:495.840000pt;}
.y15_c00018{bottom:525.040000pt;}
.y14_c00018{bottom:555.040000pt;}
.y13_c00018{bottom:584.373333pt;}
.y12_c00018{bottom:614.640000pt;}
.y11_c00018{bottom:643.173333pt;}
.y10_c00018{bottom:673.706667pt;}
.yf_c00018{bottom:703.440000pt;}
.ye_c00018{bottom:732.640000pt;}
.yd_c00018{bottom:762.240000pt;}
.yc_c00018{bottom:791.440000pt;}
.yb_c00018{bottom:821.040000pt;}
.ya_c00018{bottom:850.773333pt;}
.y9_c00018{bottom:880.240000pt;}
.y3_c00018{bottom:900.906667pt;}
.y8_c00018{bottom:909.573333pt;}
.y2_c00018{bottom:926.906667pt;}
.y7_c00018{bottom:939.306667pt;}
.y1_c00018{bottom:952.240000pt;}
.y6_c00018{bottom:971.440000pt;}
.y5_c00018{bottom:999.840000pt;}
.y4_c00018{bottom:1028.640000pt;}
.h4_c00018{height:11.733399pt;}
.h5_c00018{height:38.937500pt;}
.h2_c00018{height:81.148438pt;}
.h1_c00018{height:87.783854pt;}
.h3_c00018{height:108.041667pt;}
.h0_c00018{height:1203.333333pt;}
.w2_c00018{width:93.222667pt;}
.w1_c00018{width:756.666667pt;}
.w0_c00018{width:756.933333pt;}
.x0_c00018{left:0.000000pt;}
.x6_c00018{left:17.066667pt;}
.x4_c00018{left:18.000000pt;}
.x3_c00018{left:18.933333pt;}
.x5_c00018{left:19.866667pt;}
.x7_c00018{left:21.333333pt;}
.x8_c00018{left:22.800000pt;}
.x2_c00018{left:66.933333pt;}
.xa_c00018{left:335.634888pt;}
.x9_c00018{left:474.000000pt;}
.x1_c00018{left:536.000000pt;}
}





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

.ir_c00019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_757b21574261b64ad26ebe66.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_d38485971ff03a5c6bd97270.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_0a534caacff31248d26ca119.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls1_c00019{letter-spacing:0.000000px;}
.ls2_c00019{letter-spacing:6.000000px;}
.ls0_c00019{letter-spacing:21.852000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00019{word-spacing:-57.000000px;}
.ws0_c00019{word-spacing:-20.244000px;}
.ws2_c00019{word-spacing:0.000000px;}
._32_c00019{margin-left:-37.440000px;}
._2a_c00019{margin-left:-30.528000px;}
._36_c00019{margin-left:-28.644000px;}
._3b_c00019{margin-left:-23.904000px;}
._25_c00019{margin-left:-19.992000px;}
._26_c00019{margin-left:-18.018000px;}
._e_c00019{margin-left:-12.192000px;}
._f_c00019{margin-left:-10.944000px;}
._23_c00019{margin-left:-8.640000px;}
._2b_c00019{margin-left:-7.284000px;}
._2e_c00019{margin-left:-6.144000px;}
._1b_c00019{margin-left:-4.776000px;}
._28_c00019{margin-left:-3.660000px;}
._15_c00019{margin-left:-2.592000px;}
._d_c00019{margin-left:-1.056000px;}
._1e_c00019{width:1.056000px;}
._6_c00019{width:2.304000px;}
._5_c00019{width:3.456000px;}
._7_c00019{width:4.896000px;}
._a_c00019{width:6.624000px;}
._1d_c00019{width:7.680000px;}
._1a_c00019{width:9.504000px;}
._19_c00019{width:10.848000px;}
._18_c00019{width:12.672000px;}
._1c_c00019{width:14.016000px;}
._1_c00019{width:15.072000px;}
._4_c00019{width:16.800000px;}
._37_c00019{width:18.804000px;}
._9_c00019{width:20.064000px;}
._3_c00019{width:21.792000px;}
._3a_c00019{width:24.216000px;}
._2_c00019{width:25.440000px;}
._8_c00019{width:27.840000px;}
._0_c00019{width:29.952000px;}
._10_c00019{width:31.776000px;}
._b_c00019{width:33.024000px;}
._c_c00019{width:35.040000px;}
._30_c00019{width:36.648000px;}
._11_c00019{width:37.824000px;}
._14_c00019{width:38.976000px;}
._2c_c00019{width:40.848000px;}
._17_c00019{width:42.048000px;}
._13_c00019{width:43.392000px;}
._3c_c00019{width:45.708000px;}
._16_c00019{width:46.848000px;}
._33_c00019{width:50.016000px;}
._3d_c00019{width:52.032000px;}
._31_c00019{width:53.676000px;}
._35_c00019{width:55.992000px;}
._3e_c00019{width:58.248000px;}
._12_c00019{width:60.000000px;}
._29_c00019{width:64.452000px;}
._2d_c00019{width:65.508000px;}
._2f_c00019{width:71.040000px;}
._22_c00019{width:73.260000px;}
._34_c00019{width:74.292000px;}
._1f_c00019{width:77.952000px;}
._39_c00019{width:99.744000px;}
._20_c00019{width:105.600000px;}
._21_c00019{width:107.808000px;}
._24_c00019{width:133.464000px;}
._27_c00019{width:415.488000px;}
._38_c00019{width:482.136000px;}
.fc2_c00019{color:transparent;}
.fc1_c00019{color:rgb(128,128,128);}
.fc0_c00019{color:rgb(0,0,0);}
.fs4_c00019{font-size:48.000000px;}
.fs1_c00019{font-size:84.000000px;}
.fs3_c00019{font-size:93.000000px;}
.fs0_c00019{font-size:96.000000px;}
.fs2_c00019{font-size:102.000000px;}
.y0_c00019{bottom:0.000000px;}
.y24_c00019{bottom:3.105000px;}
.y23_c00019{bottom:7.228357px;}
.y22_c00019{bottom:105.630000px;}
.y21_c00019{bottom:140.430000px;}
.y20_c00019{bottom:174.930000px;}
.y1f_c00019{bottom:208.530000px;}
.y1e_c00019{bottom:241.980000px;}
.y1d_c00019{bottom:276.180000px;}
.y1c_c00019{bottom:309.930000px;}
.y1b_c00019{bottom:343.230000px;}
.y1a_c00019{bottom:377.430000px;}
.y19_c00019{bottom:411.030000px;}
.y18_c00019{bottom:444.780000px;}
.y17_c00019{bottom:477.930000px;}
.y16_c00019{bottom:510.930000px;}
.y15_c00019{bottom:544.680000px;}
.y14_c00019{bottom:578.130000px;}
.y13_c00019{bottom:611.280000px;}
.y12_c00019{bottom:644.580000px;}
.y11_c00019{bottom:678.330000px;}
.y10_c00019{bottom:710.430000px;}
.yf_c00019{bottom:746.280000px;}
.ye_c00019{bottom:780.030000px;}
.yd_c00019{bottom:813.780000px;}
.yc_c00019{bottom:844.830000px;}
.yb_c00019{bottom:876.180000px;}
.ya_c00019{bottom:907.980000px;}
.y9_c00019{bottom:939.330000px;}
.y8_c00019{bottom:1009.530000px;}
.y7_c00019{bottom:1076.280000px;}
.y6_c00019{bottom:1109.430000px;}
.y5_c00019{bottom:1143.480000px;}
.y4_c00019{bottom:1176.180000px;}
.y3_c00019{bottom:1209.330000px;}
.y2_c00019{bottom:1242.780000px;}
.y1_c00019{bottom:1275.180000px;}
.h4_c00019{height:13.200074px;}
.h5_c00019{height:43.804688px;}
.h3_c00019{height:117.748535px;}
.h2_c00019{height:121.546875px;}
.h0_c00019{height:1382.700000px;}
.h1_c00019{height:1383.000000px;}
.w2_c00019{width:104.875500px;}
.w0_c00019{width:863.175000px;}
.w1_c00019{width:863.250000px;}
.x0_c00019{left:0.000000px;}
.x6_c00019{left:57.450000px;}
.x5_c00019{left:59.100000px;}
.x4_c00019{left:86.700000px;}
.x2_c00019{left:275.700000px;}
.x8_c00019{left:276.750000px;}
.x1_c00019{left:277.800000px;}
.x7_c00019{left:279.450000px;}
.x3_c00019{left:352.350000px;}
.xa_c00019{left:383.401749px;}
.x9_c00019{left:822.900000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls1_c00019{letter-spacing:0.000000pt;}
.ls2_c00019{letter-spacing:5.333333pt;}
.ls0_c00019{letter-spacing:19.424000pt;}
.ws1_c00019{word-spacing:-50.666667pt;}
.ws0_c00019{word-spacing:-17.994667pt;}
.ws2_c00019{word-spacing:0.000000pt;}
._32_c00019{margin-left:-33.280000pt;}
._2a_c00019{margin-left:-27.136000pt;}
._36_c00019{margin-left:-25.461333pt;}
._3b_c00019{margin-left:-21.248000pt;}
._25_c00019{margin-left:-17.770667pt;}
._26_c00019{margin-left:-16.016000pt;}
._e_c00019{margin-left:-10.837333pt;}
._f_c00019{margin-left:-9.728000pt;}
._23_c00019{margin-left:-7.680000pt;}
._2b_c00019{margin-left:-6.474667pt;}
._2e_c00019{margin-left:-5.461333pt;}
._1b_c00019{margin-left:-4.245333pt;}
._28_c00019{margin-left:-3.253333pt;}
._15_c00019{margin-left:-2.304000pt;}
._d_c00019{margin-left:-0.938667pt;}
._1e_c00019{width:0.938667pt;}
._6_c00019{width:2.048000pt;}
._5_c00019{width:3.072000pt;}
._7_c00019{width:4.352000pt;}
._a_c00019{width:5.888000pt;}
._1d_c00019{width:6.826667pt;}
._1a_c00019{width:8.448000pt;}
._19_c00019{width:9.642667pt;}
._18_c00019{width:11.264000pt;}
._1c_c00019{width:12.458667pt;}
._1_c00019{width:13.397333pt;}
._4_c00019{width:14.933333pt;}
._37_c00019{width:16.714667pt;}
._9_c00019{width:17.834667pt;}
._3_c00019{width:19.370667pt;}
._3a_c00019{width:21.525333pt;}
._2_c00019{width:22.613333pt;}
._8_c00019{width:24.746667pt;}
._0_c00019{width:26.624000pt;}
._10_c00019{width:28.245333pt;}
._b_c00019{width:29.354667pt;}
._c_c00019{width:31.146667pt;}
._30_c00019{width:32.576000pt;}
._11_c00019{width:33.621333pt;}
._14_c00019{width:34.645333pt;}
._2c_c00019{width:36.309333pt;}
._17_c00019{width:37.376000pt;}
._13_c00019{width:38.570667pt;}
._3c_c00019{width:40.629333pt;}
._16_c00019{width:41.642667pt;}
._33_c00019{width:44.458667pt;}
._3d_c00019{width:46.250667pt;}
._31_c00019{width:47.712000pt;}
._35_c00019{width:49.770667pt;}
._3e_c00019{width:51.776000pt;}
._12_c00019{width:53.333333pt;}
._29_c00019{width:57.290667pt;}
._2d_c00019{width:58.229333pt;}
._2f_c00019{width:63.146667pt;}
._22_c00019{width:65.120000pt;}
._34_c00019{width:66.037333pt;}
._1f_c00019{width:69.290667pt;}
._39_c00019{width:88.661333pt;}
._20_c00019{width:93.866667pt;}
._21_c00019{width:95.829333pt;}
._24_c00019{width:118.634667pt;}
._27_c00019{width:369.322667pt;}
._38_c00019{width:428.565333pt;}
.fs4_c00019{font-size:42.666667pt;}
.fs1_c00019{font-size:74.666667pt;}
.fs3_c00019{font-size:82.666667pt;}
.fs0_c00019{font-size:85.333333pt;}
.fs2_c00019{font-size:90.666667pt;}
.y0_c00019{bottom:0.000000pt;}
.y24_c00019{bottom:2.760000pt;}
.y23_c00019{bottom:6.425206pt;}
.y22_c00019{bottom:93.893333pt;}
.y21_c00019{bottom:124.826667pt;}
.y20_c00019{bottom:155.493333pt;}
.y1f_c00019{bottom:185.360000pt;}
.y1e_c00019{bottom:215.093333pt;}
.y1d_c00019{bottom:245.493333pt;}
.y1c_c00019{bottom:275.493333pt;}
.y1b_c00019{bottom:305.093333pt;}
.y1a_c00019{bottom:335.493333pt;}
.y19_c00019{bottom:365.360000pt;}
.y18_c00019{bottom:395.360000pt;}
.y17_c00019{bottom:424.826667pt;}
.y16_c00019{bottom:454.160000pt;}
.y15_c00019{bottom:484.160000pt;}
.y14_c00019{bottom:513.893333pt;}
.y13_c00019{bottom:543.360000pt;}
.y12_c00019{bottom:572.960000pt;}
.y11_c00019{bottom:602.960000pt;}
.y10_c00019{bottom:631.493333pt;}
.yf_c00019{bottom:663.360000pt;}
.ye_c00019{bottom:693.360000pt;}
.yd_c00019{bottom:723.360000pt;}
.yc_c00019{bottom:750.960000pt;}
.yb_c00019{bottom:778.826667pt;}
.ya_c00019{bottom:807.093333pt;}
.y9_c00019{bottom:834.960000pt;}
.y8_c00019{bottom:897.360000pt;}
.y7_c00019{bottom:956.693333pt;}
.y6_c00019{bottom:986.160000pt;}
.y5_c00019{bottom:1016.426667pt;}
.y4_c00019{bottom:1045.493333pt;}
.y3_c00019{bottom:1074.960000pt;}
.y2_c00019{bottom:1104.693333pt;}
.y1_c00019{bottom:1133.493333pt;}
.h4_c00019{height:11.733399pt;}
.h5_c00019{height:38.937500pt;}
.h3_c00019{height:104.665365pt;}
.h2_c00019{height:108.041667pt;}
.h0_c00019{height:1229.066667pt;}
.h1_c00019{height:1229.333333pt;}
.w2_c00019{width:93.222667pt;}
.w0_c00019{width:767.266667pt;}
.w1_c00019{width:767.333333pt;}
.x0_c00019{left:0.000000pt;}
.x6_c00019{left:51.066667pt;}
.x5_c00019{left:52.533333pt;}
.x4_c00019{left:77.066667pt;}
.x2_c00019{left:245.066667pt;}
.x8_c00019{left:246.000000pt;}
.x1_c00019{left:246.933333pt;}
.x7_c00019{left:248.400000pt;}
.x3_c00019{left:313.200000pt;}
.xa_c00019{left:340.801554pt;}
.x9_c00019{left:731.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9251312c2118800cb87bc28e.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_bf5d0a7bb30c052e268ddb44.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_ea0fe3316738c4e358e4a71e.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_4bf5670ebb1280ef9b79a222.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;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_c00020;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00020{vertical-align:-45.600000px;}
.v0_c00020{vertical-align:0.000000px;}
.ls2_c00020{letter-spacing:0.000000px;}
.ls4_c00020{letter-spacing:6.000000px;}
.ls0_c00020{letter-spacing:19.452000px;}
.ls3_c00020{letter-spacing:24.000000px;}
.ls1_c00020{letter-spacing:26.052000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00020{word-spacing:-31.500000px;}
.ws0_c00020{word-spacing:-20.244000px;}
.ws2_c00020{word-spacing:0.000000px;}
._2c_c00020{margin-left:-81.606000px;}
._23_c00020{margin-left:-55.770000px;}
._38_c00020{margin-left:-45.300000px;}
._29_c00020{margin-left:-31.929000px;}
._45_c00020{margin-left:-29.760000px;}
._19_c00020{margin-left:-27.840000px;}
._43_c00020{margin-left:-23.328000px;}
._3f_c00020{margin-left:-21.504000px;}
._41_c00020{margin-left:-20.352000px;}
._2e_c00020{margin-left:-18.096000px;}
._1e_c00020{margin-left:-16.320000px;}
._26_c00020{margin-left:-13.224000px;}
._1c_c00020{margin-left:-11.616000px;}
._15_c00020{margin-left:-9.600000px;}
._20_c00020{margin-left:-7.584000px;}
._37_c00020{margin-left:-6.366000px;}
._8_c00020{margin-left:-4.800000px;}
._7_c00020{margin-left:-3.072000px;}
._e_c00020{margin-left:-1.056000px;}
._3_c00020{width:1.920000px;}
._2_c00020{width:3.840000px;}
._1_c00020{width:5.760000px;}
._c_c00020{width:6.816000px;}
._6_c00020{width:8.352000px;}
._4_c00020{width:9.888000px;}
._b_c00020{width:11.616000px;}
._a_c00020{width:13.632000px;}
._14_c00020{width:14.976000px;}
._1a_c00020{width:16.224000px;}
._9_c00020{width:17.376000px;}
._10_c00020{width:19.776000px;}
._0_c00020{width:20.832000px;}
._4f_c00020{width:22.080000px;}
._5_c00020{width:25.152000px;}
._11_c00020{width:26.400000px;}
._49_c00020{width:27.648000px;}
._f_c00020{width:29.760000px;}
._3b_c00020{width:30.978000px;}
._25_c00020{width:32.286000px;}
._d_c00020{width:33.312000px;}
._16_c00020{width:34.848000px;}
._3e_c00020{width:36.192000px;}
._18_c00020{width:37.248000px;}
._4a_c00020{width:38.400000px;}
._35_c00020{width:39.474000px;}
._12_c00020{width:40.992000px;}
._51_c00020{width:42.528000px;}
._39_c00020{width:44.706000px;}
._50_c00020{width:46.356000px;}
._13_c00020{width:47.808000px;}
._3c_c00020{width:49.242000px;}
._17_c00020{width:50.976000px;}
._32_c00020{width:52.704000px;}
._2a_c00020{width:54.816000px;}
._2b_c00020{width:56.724000px;}
._48_c00020{width:58.284000px;}
._4e_c00020{width:59.388000px;}
._1b_c00020{width:61.536000px;}
._4c_c00020{width:63.648000px;}
._4b_c00020{width:65.328000px;}
._3a_c00020{width:68.160000px;}
._4d_c00020{width:70.080000px;}
._1d_c00020{width:72.864000px;}
._27_c00020{width:77.430000px;}
._31_c00020{width:103.488000px;}
._30_c00020{width:108.576000px;}
._2f_c00020{width:116.145000px;}
._1f_c00020{width:159.552000px;}
._22_c00020{width:167.808000px;}
._36_c00020{width:174.528000px;}
._40_c00020{width:202.464000px;}
._44_c00020{width:243.552000px;}
._42_c00020{width:282.528000px;}
._28_c00020{width:310.707000px;}
._53_c00020{width:371.232000px;}
._3d_c00020{width:385.854000px;}
._46_c00020{width:443.136000px;}
._24_c00020{width:460.194000px;}
._2d_c00020{width:487.809000px;}
._52_c00020{width:624.576000px;}
._47_c00020{width:656.928000px;}
._33_c00020{width:747.768000px;}
._21_c00020{width:778.464000px;}
._34_c00020{width:847.296000px;}
.fc2_c00020{color:transparent;}
.fc1_c00020{color:rgb(128,128,128);}
.fc0_c00020{color:rgb(0,0,0);}
.fs5_c00020{font-size:30.000000px;}
.fs4_c00020{font-size:36.000000px;}
.fs7_c00020{font-size:48.000000px;}
.fs2_c00020{font-size:78.000000px;}
.fs1_c00020{font-size:84.000000px;}
.fs3_c00020{font-size:87.000000px;}
.fs0_c00020{font-size:96.000000px;}
.fs6_c00020{font-size:102.000000px;}
.y0_c00020{bottom:0.000000px;}
.y27_c00020{bottom:3.105000px;}
.y26_c00020{bottom:7.228355px;}
.y25_c00020{bottom:117.735000px;}
.y24_c00020{bottom:151.485000px;}
.y23_c00020{bottom:185.235000px;}
.y22_c00020{bottom:218.385000px;}
.y21_c00020{bottom:252.735000px;}
.y20_c00020{bottom:285.435000px;}
.y1f_c00020{bottom:319.635000px;}
.y1e_c00020{bottom:353.835000px;}
.y1d_c00020{bottom:386.985000px;}
.y1c_c00020{bottom:420.135000px;}
.y1b_c00020{bottom:454.185000px;}
.y1a_c00020{bottom:487.035000px;}
.y19_c00020{bottom:519.735000px;}
.y18_c00020{bottom:553.485000px;}
.y17_c00020{bottom:586.485000px;}
.y16_c00020{bottom:619.935000px;}
.y15_c00020{bottom:653.085000px;}
.y14_c00020{bottom:686.685000px;}
.y13_c00020{bottom:720.285000px;}
.y12_c00020{bottom:753.435000px;}
.y11_c00020{bottom:786.585000px;}
.y10_c00020{bottom:819.735000px;}
.yf_c00020{bottom:852.735000px;}
.ye_c00020{bottom:868.935000px;}
.yd_c00020{bottom:885.585000px;}
.yc_c00020{bottom:920.985000px;}
.yb_c00020{bottom:953.985000px;}
.ya_c00020{bottom:985.785000px;}
.y9_c00020{bottom:1016.535000px;}
.y8_c00020{bottom:1065.135000px;}
.y7_c00020{bottom:1084.335000px;}
.y6_c00020{bottom:1114.335000px;}
.y5_c00020{bottom:1151.085000px;}
.y4_c00020{bottom:1184.835000px;}
.y3_c00020{bottom:1218.135000px;}
.y2_c00020{bottom:1251.135000px;}
.y1_c00020{bottom:1284.135000px;}
.h6_c00020{height:13.200074px;}
.h5_c00020{height:37.983398px;}
.h7_c00020{height:43.804688px;}
.h4_c00020{height:110.151855px;}
.h2_c00020{height:121.546875px;}
.h3_c00020{height:122.146875px;}
.h0_c00020{height:1364.025000px;}
.h1_c00020{height:1364.250000px;}
.w2_c00020{width:104.875500px;}
.w1_c00020{width:858.000000px;}
.w0_c00020{width:858.075000px;}
.x0_c00020{left:0.000000px;}
.xa_c00020{left:18.000000px;}
.x8_c00020{left:19.200000px;}
.xb_c00020{left:20.250000px;}
.x3_c00020{left:21.300000px;}
.xc_c00020{left:22.350000px;}
.x2_c00020{left:23.550000px;}
.x1_c00020{left:25.200000px;}
.xd_c00020{left:26.700000px;}
.x4_c00020{left:58.050000px;}
.x7_c00020{left:70.500000px;}
.x5_c00020{left:71.550000px;}
.x9_c00020{left:76.950000px;}
.x6_c00020{left:332.700000px;}
.xe_c00020{left:380.851730px;}
@media print{
.v1_c00020{vertical-align:-40.533333pt;}
.v0_c00020{vertical-align:0.000000pt;}
.ls2_c00020{letter-spacing:0.000000pt;}
.ls4_c00020{letter-spacing:5.333333pt;}
.ls0_c00020{letter-spacing:17.290667pt;}
.ls3_c00020{letter-spacing:21.333333pt;}
.ls1_c00020{letter-spacing:23.157333pt;}
.ws1_c00020{word-spacing:-28.000000pt;}
.ws0_c00020{word-spacing:-17.994667pt;}
.ws2_c00020{word-spacing:0.000000pt;}
._2c_c00020{margin-left:-72.538667pt;}
._23_c00020{margin-left:-49.573333pt;}
._38_c00020{margin-left:-40.266667pt;}
._29_c00020{margin-left:-28.381333pt;}
._45_c00020{margin-left:-26.453333pt;}
._19_c00020{margin-left:-24.746667pt;}
._43_c00020{margin-left:-20.736000pt;}
._3f_c00020{margin-left:-19.114667pt;}
._41_c00020{margin-left:-18.090667pt;}
._2e_c00020{margin-left:-16.085333pt;}
._1e_c00020{margin-left:-14.506667pt;}
._26_c00020{margin-left:-11.754667pt;}
._1c_c00020{margin-left:-10.325333pt;}
._15_c00020{margin-left:-8.533333pt;}
._20_c00020{margin-left:-6.741333pt;}
._37_c00020{margin-left:-5.658667pt;}
._8_c00020{margin-left:-4.266667pt;}
._7_c00020{margin-left:-2.730667pt;}
._e_c00020{margin-left:-0.938667pt;}
._3_c00020{width:1.706667pt;}
._2_c00020{width:3.413333pt;}
._1_c00020{width:5.120000pt;}
._c_c00020{width:6.058667pt;}
._6_c00020{width:7.424000pt;}
._4_c00020{width:8.789333pt;}
._b_c00020{width:10.325333pt;}
._a_c00020{width:12.117333pt;}
._14_c00020{width:13.312000pt;}
._1a_c00020{width:14.421333pt;}
._9_c00020{width:15.445333pt;}
._10_c00020{width:17.578667pt;}
._0_c00020{width:18.517333pt;}
._4f_c00020{width:19.626667pt;}
._5_c00020{width:22.357333pt;}
._11_c00020{width:23.466667pt;}
._49_c00020{width:24.576000pt;}
._f_c00020{width:26.453333pt;}
._3b_c00020{width:27.536000pt;}
._25_c00020{width:28.698667pt;}
._d_c00020{width:29.610667pt;}
._16_c00020{width:30.976000pt;}
._3e_c00020{width:32.170667pt;}
._18_c00020{width:33.109333pt;}
._4a_c00020{width:34.133333pt;}
._35_c00020{width:35.088000pt;}
._12_c00020{width:36.437333pt;}
._51_c00020{width:37.802667pt;}
._39_c00020{width:39.738667pt;}
._50_c00020{width:41.205333pt;}
._13_c00020{width:42.496000pt;}
._3c_c00020{width:43.770667pt;}
._17_c00020{width:45.312000pt;}
._32_c00020{width:46.848000pt;}
._2a_c00020{width:48.725333pt;}
._2b_c00020{width:50.421333pt;}
._48_c00020{width:51.808000pt;}
._4e_c00020{width:52.789333pt;}
._1b_c00020{width:54.698667pt;}
._4c_c00020{width:56.576000pt;}
._4b_c00020{width:58.069333pt;}
._3a_c00020{width:60.586667pt;}
._4d_c00020{width:62.293333pt;}
._1d_c00020{width:64.768000pt;}
._27_c00020{width:68.826667pt;}
._31_c00020{width:91.989333pt;}
._30_c00020{width:96.512000pt;}
._2f_c00020{width:103.240000pt;}
._1f_c00020{width:141.824000pt;}
._22_c00020{width:149.162667pt;}
._36_c00020{width:155.136000pt;}
._40_c00020{width:179.968000pt;}
._44_c00020{width:216.490667pt;}
._42_c00020{width:251.136000pt;}
._28_c00020{width:276.184000pt;}
._53_c00020{width:329.984000pt;}
._3d_c00020{width:342.981333pt;}
._46_c00020{width:393.898667pt;}
._24_c00020{width:409.061333pt;}
._2d_c00020{width:433.608000pt;}
._52_c00020{width:555.178667pt;}
._47_c00020{width:583.936000pt;}
._33_c00020{width:664.682667pt;}
._21_c00020{width:691.968000pt;}
._34_c00020{width:753.152000pt;}
.fs5_c00020{font-size:26.666667pt;}
.fs4_c00020{font-size:32.000000pt;}
.fs7_c00020{font-size:42.666667pt;}
.fs2_c00020{font-size:69.333333pt;}
.fs1_c00020{font-size:74.666667pt;}
.fs3_c00020{font-size:77.333333pt;}
.fs0_c00020{font-size:85.333333pt;}
.fs6_c00020{font-size:90.666667pt;}
.y0_c00020{bottom:0.000000pt;}
.y27_c00020{bottom:2.760000pt;}
.y26_c00020{bottom:6.425204pt;}
.y25_c00020{bottom:104.653333pt;}
.y24_c00020{bottom:134.653333pt;}
.y23_c00020{bottom:164.653333pt;}
.y22_c00020{bottom:194.120000pt;}
.y21_c00020{bottom:224.653333pt;}
.y20_c00020{bottom:253.720000pt;}
.y1f_c00020{bottom:284.120000pt;}
.y1e_c00020{bottom:314.520000pt;}
.y1d_c00020{bottom:343.986667pt;}
.y1c_c00020{bottom:373.453333pt;}
.y1b_c00020{bottom:403.720000pt;}
.y1a_c00020{bottom:432.920000pt;}
.y19_c00020{bottom:461.986667pt;}
.y18_c00020{bottom:491.986667pt;}
.y17_c00020{bottom:521.320000pt;}
.y16_c00020{bottom:551.053333pt;}
.y15_c00020{bottom:580.520000pt;}
.y14_c00020{bottom:610.386667pt;}
.y13_c00020{bottom:640.253333pt;}
.y12_c00020{bottom:669.720000pt;}
.y11_c00020{bottom:699.186667pt;}
.y10_c00020{bottom:728.653333pt;}
.yf_c00020{bottom:757.986667pt;}
.ye_c00020{bottom:772.386667pt;}
.yd_c00020{bottom:787.186667pt;}
.yc_c00020{bottom:818.653333pt;}
.yb_c00020{bottom:847.986667pt;}
.ya_c00020{bottom:876.253333pt;}
.y9_c00020{bottom:903.586667pt;}
.y8_c00020{bottom:946.786667pt;}
.y7_c00020{bottom:963.853333pt;}
.y6_c00020{bottom:990.520000pt;}
.y5_c00020{bottom:1023.186667pt;}
.y4_c00020{bottom:1053.186667pt;}
.y3_c00020{bottom:1082.786667pt;}
.y2_c00020{bottom:1112.120000pt;}
.y1_c00020{bottom:1141.453333pt;}
.h6_c00020{height:11.733399pt;}
.h5_c00020{height:33.763021pt;}
.h7_c00020{height:38.937500pt;}
.h4_c00020{height:97.912760pt;}
.h2_c00020{height:108.041667pt;}
.h3_c00020{height:108.575000pt;}
.h0_c00020{height:1212.466667pt;}
.h1_c00020{height:1212.666667pt;}
.w2_c00020{width:93.222667pt;}
.w1_c00020{width:762.666667pt;}
.w0_c00020{width:762.733333pt;}
.x0_c00020{left:0.000000pt;}
.xa_c00020{left:16.000000pt;}
.x8_c00020{left:17.066667pt;}
.xb_c00020{left:18.000000pt;}
.x3_c00020{left:18.933333pt;}
.xc_c00020{left:19.866667pt;}
.x2_c00020{left:20.933333pt;}
.x1_c00020{left:22.400000pt;}
.xd_c00020{left:23.733333pt;}
.x4_c00020{left:51.600000pt;}
.x7_c00020{left:62.666667pt;}
.x5_c00020{left:63.600000pt;}
.x9_c00020{left:68.400000pt;}
.x6_c00020{left:295.733333pt;}
.xe_c00020{left:338.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be3bcb22db0687dc9c968128.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_6d5ca7b7e6108f8d9fb98d18.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls2_c00021{letter-spacing:0.000000px;}
.ls1_c00021{letter-spacing:4.752000px;}
.ls0_c00021{letter-spacing:11.892000px;}
.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;}
}
.ws2_c00021{word-spacing:-20.967000px;}
.ws0_c00021{word-spacing:-18.798000px;}
.ws3_c00021{word-spacing:0.000000px;}
.ws1_c00021{word-spacing:8.904000px;}
._30_c00021{margin-left:-29.424000px;}
._37_c00021{margin-left:-27.822000px;}
._15_c00021{margin-left:-22.230000px;}
._31_c00021{margin-left:-20.286000px;}
._1c_c00021{margin-left:-19.092000px;}
._38_c00021{margin-left:-16.032000px;}
._32_c00021{margin-left:-14.592000px;}
._34_c00021{margin-left:-12.996000px;}
._9_c00021{margin-left:-11.412000px;}
._3a_c00021{margin-left:-9.948000px;}
._a_c00021{margin-left:-8.268000px;}
._2_c00021{margin-left:-7.008000px;}
._12_c00021{margin-left:-5.928000px;}
._b_c00021{margin-left:-4.290000px;}
._e_c00021{margin-left:-2.886000px;}
._8_c00021{margin-left:-1.794000px;}
._d_c00021{width:1.560000px;}
._2d_c00021{width:2.616000px;}
._17_c00021{width:3.666000px;}
._14_c00021{width:4.680000px;}
._1_c00021{width:5.952000px;}
._0_c00021{width:7.488000px;}
._f_c00021{width:8.658000px;}
._2f_c00021{width:9.660000px;}
._c_c00021{width:10.686000px;}
._19_c00021{width:12.612000px;}
._13_c00021{width:13.650000px;}
._11_c00021{width:14.820000px;}
._2b_c00021{width:16.812000px;}
._5_c00021{width:17.856000px;}
._2e_c00021{width:18.954000px;}
._35_c00021{width:19.980000px;}
._6_c00021{width:21.216000px;}
._2a_c00021{width:24.294000px;}
._10_c00021{width:26.214000px;}
._2c_c00021{width:27.828000px;}
._7_c00021{width:29.760000px;}
._29_c00021{width:31.518000px;}
._36_c00021{width:32.730000px;}
._26_c00021{width:33.942000px;}
._16_c00021{width:35.178000px;}
._20_c00021{width:37.248000px;}
._18_c00021{width:38.490000px;}
._33_c00021{width:39.549000px;}
._4_c00021{width:40.992000px;}
._23_c00021{width:42.948000px;}
._22_c00021{width:45.384000px;}
._1e_c00021{width:47.598000px;}
._24_c00021{width:49.596000px;}
._39_c00021{width:52.218000px;}
._3_c00021{width:53.664000px;}
._1d_c00021{width:56.142000px;}
._25_c00021{width:58.578000px;}
._28_c00021{width:63.078000px;}
._1f_c00021{width:66.624000px;}
._27_c00021{width:69.636000px;}
._1a_c00021{width:79.758000px;}
._21_c00021{width:84.564000px;}
._1b_c00021{width:172.548000px;}
.fc2_c00021{color:transparent;}
.fc1_c00021{color:rgb(128,128,128);}
.fc0_c00021{color:rgb(0,0,0);}
.fs4_c00021{font-size:48.000000px;}
.fs1_c00021{font-size:78.000000px;}
.fs3_c00021{font-size:84.000000px;}
.fs2_c00021{font-size:87.000000px;}
.fs0_c00021{font-size:96.000000px;}
.y0_c00021{bottom:0.000000px;}
.y2e_c00021{bottom:3.105000px;}
.y2d_c00021{bottom:7.228357px;}
.y2c_c00021{bottom:110.430000px;}
.y2b_c00021{bottom:179.580000px;}
.y2a_c00021{bottom:213.030000px;}
.y29_c00021{bottom:247.380000px;}
.y28_c00021{bottom:280.830000px;}
.y27_c00021{bottom:315.180000px;}
.y26_c00021{bottom:348.630000px;}
.y25_c00021{bottom:382.830000px;}
.y24_c00021{bottom:416.580000px;}
.y23_c00021{bottom:449.880000px;}
.y22_c00021{bottom:483.930000px;}
.y21_c00021{bottom:517.080000px;}
.y20_c00021{bottom:550.530000px;}
.y1f_c00021{bottom:583.980000px;}
.y1e_c00021{bottom:617.580000px;}
.y1d_c00021{bottom:650.430000px;}
.y1c_c00021{bottom:683.880000px;}
.y1b_c00021{bottom:717.480000px;}
.y1a_c00021{bottom:750.930000px;}
.y19_c00021{bottom:784.380000px;}
.y18_c00021{bottom:817.530000px;}
.y17_c00021{bottom:851.130000px;}
.y16_c00021{bottom:884.280000px;}
.y15_c00021{bottom:917.280000px;}
.y14_c00021{bottom:950.430000px;}
.yb_c00021{bottom:955.230000px;}
.y13_c00021{bottom:983.130000px;}
.ya_c00021{bottom:985.530000px;}
.y9_c00021{bottom:1014.630000px;}
.y12_c00021{bottom:1016.580000px;}
.y8_c00021{bottom:1042.980000px;}
.y11_c00021{bottom:1049.580000px;}
.y7_c00021{bottom:1071.630000px;}
.y10_c00021{bottom:1082.430000px;}
.y6_c00021{bottom:1101.030000px;}
.yf_c00021{bottom:1115.880000px;}
.y5_c00021{bottom:1130.730000px;}
.ye_c00021{bottom:1148.880000px;}
.y4_c00021{bottom:1160.280000px;}
.yd_c00021{bottom:1182.030000px;}
.y3_c00021{bottom:1189.380000px;}
.yc_c00021{bottom:1215.330000px;}
.y2_c00021{bottom:1218.330000px;}
.y1_c00021{bottom:1281.180000px;}
.h6_c00021{height:13.200074px;}
.h7_c00021{height:43.804688px;}
.h4_c00021{height:91.291992px;}
.h3_c00021{height:98.756836px;}
.h5_c00021{height:110.151855px;}
.h2_c00021{height:121.546875px;}
.h0_c00021{height:1382.700000px;}
.h1_c00021{height:1383.000000px;}
.w2_c00021{width:104.875500px;}
.w0_c00021{width:863.175000px;}
.w1_c00021{width:863.250000px;}
.x0_c00021{left:0.000000px;}
.x5_c00021{left:53.100000px;}
.x7_c00021{left:54.300000px;}
.x4_c00021{left:55.650000px;}
.x3_c00021{left:56.700000px;}
.x6_c00021{left:69.300000px;}
.x2_c00021{left:84.750000px;}
.xd_c00021{left:271.350000px;}
.xe_c00021{left:272.400000px;}
.xc_c00021{left:273.450000px;}
.xa_c00021{left:274.500000px;}
.x9_c00021{left:275.700000px;}
.xb_c00021{left:276.750000px;}
.x8_c00021{left:294.600000px;}
.x10_c00021{left:383.401749px;}
.x1_c00021{left:409.050000px;}
.xf_c00021{left:748.200000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls1_c00021{letter-spacing:4.224000pt;}
.ls0_c00021{letter-spacing:10.570667pt;}
.ws2_c00021{word-spacing:-18.637333pt;}
.ws0_c00021{word-spacing:-16.709333pt;}
.ws3_c00021{word-spacing:0.000000pt;}
.ws1_c00021{word-spacing:7.914667pt;}
._30_c00021{margin-left:-26.154667pt;}
._37_c00021{margin-left:-24.730667pt;}
._15_c00021{margin-left:-19.760000pt;}
._31_c00021{margin-left:-18.032000pt;}
._1c_c00021{margin-left:-16.970667pt;}
._38_c00021{margin-left:-14.250667pt;}
._32_c00021{margin-left:-12.970667pt;}
._34_c00021{margin-left:-11.552000pt;}
._9_c00021{margin-left:-10.144000pt;}
._3a_c00021{margin-left:-8.842667pt;}
._a_c00021{margin-left:-7.349333pt;}
._2_c00021{margin-left:-6.229333pt;}
._12_c00021{margin-left:-5.269333pt;}
._b_c00021{margin-left:-3.813333pt;}
._e_c00021{margin-left:-2.565333pt;}
._8_c00021{margin-left:-1.594667pt;}
._d_c00021{width:1.386667pt;}
._2d_c00021{width:2.325333pt;}
._17_c00021{width:3.258667pt;}
._14_c00021{width:4.160000pt;}
._1_c00021{width:5.290667pt;}
._0_c00021{width:6.656000pt;}
._f_c00021{width:7.696000pt;}
._2f_c00021{width:8.586667pt;}
._c_c00021{width:9.498667pt;}
._19_c00021{width:11.210667pt;}
._13_c00021{width:12.133333pt;}
._11_c00021{width:13.173333pt;}
._2b_c00021{width:14.944000pt;}
._5_c00021{width:15.872000pt;}
._2e_c00021{width:16.848000pt;}
._35_c00021{width:17.760000pt;}
._6_c00021{width:18.858667pt;}
._2a_c00021{width:21.594667pt;}
._10_c00021{width:23.301333pt;}
._2c_c00021{width:24.736000pt;}
._7_c00021{width:26.453333pt;}
._29_c00021{width:28.016000pt;}
._36_c00021{width:29.093333pt;}
._26_c00021{width:30.170667pt;}
._16_c00021{width:31.269333pt;}
._20_c00021{width:33.109333pt;}
._18_c00021{width:34.213333pt;}
._33_c00021{width:35.154667pt;}
._4_c00021{width:36.437333pt;}
._23_c00021{width:38.176000pt;}
._22_c00021{width:40.341333pt;}
._1e_c00021{width:42.309333pt;}
._24_c00021{width:44.085333pt;}
._39_c00021{width:46.416000pt;}
._3_c00021{width:47.701333pt;}
._1d_c00021{width:49.904000pt;}
._25_c00021{width:52.069333pt;}
._28_c00021{width:56.069333pt;}
._1f_c00021{width:59.221333pt;}
._27_c00021{width:61.898667pt;}
._1a_c00021{width:70.896000pt;}
._21_c00021{width:75.168000pt;}
._1b_c00021{width:153.376000pt;}
.fs4_c00021{font-size:42.666667pt;}
.fs1_c00021{font-size:69.333333pt;}
.fs3_c00021{font-size:74.666667pt;}
.fs2_c00021{font-size:77.333333pt;}
.fs0_c00021{font-size:85.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y2e_c00021{bottom:2.760000pt;}
.y2d_c00021{bottom:6.425206pt;}
.y2c_c00021{bottom:98.160000pt;}
.y2b_c00021{bottom:159.626667pt;}
.y2a_c00021{bottom:189.360000pt;}
.y29_c00021{bottom:219.893333pt;}
.y28_c00021{bottom:249.626667pt;}
.y27_c00021{bottom:280.160000pt;}
.y26_c00021{bottom:309.893333pt;}
.y25_c00021{bottom:340.293333pt;}
.y24_c00021{bottom:370.293333pt;}
.y23_c00021{bottom:399.893333pt;}
.y22_c00021{bottom:430.160000pt;}
.y21_c00021{bottom:459.626667pt;}
.y20_c00021{bottom:489.360000pt;}
.y1f_c00021{bottom:519.093333pt;}
.y1e_c00021{bottom:548.960000pt;}
.y1d_c00021{bottom:578.160000pt;}
.y1c_c00021{bottom:607.893333pt;}
.y1b_c00021{bottom:637.760000pt;}
.y1a_c00021{bottom:667.493333pt;}
.y19_c00021{bottom:697.226667pt;}
.y18_c00021{bottom:726.693333pt;}
.y17_c00021{bottom:756.560000pt;}
.y16_c00021{bottom:786.026667pt;}
.y15_c00021{bottom:815.360000pt;}
.y14_c00021{bottom:844.826667pt;}
.yb_c00021{bottom:849.093333pt;}
.y13_c00021{bottom:873.893333pt;}
.ya_c00021{bottom:876.026667pt;}
.y9_c00021{bottom:901.893333pt;}
.y12_c00021{bottom:903.626667pt;}
.y8_c00021{bottom:927.093333pt;}
.y11_c00021{bottom:932.960000pt;}
.y7_c00021{bottom:952.560000pt;}
.y10_c00021{bottom:962.160000pt;}
.y6_c00021{bottom:978.693333pt;}
.yf_c00021{bottom:991.893333pt;}
.y5_c00021{bottom:1005.093333pt;}
.ye_c00021{bottom:1021.226667pt;}
.y4_c00021{bottom:1031.360000pt;}
.yd_c00021{bottom:1050.693333pt;}
.y3_c00021{bottom:1057.226667pt;}
.yc_c00021{bottom:1080.293333pt;}
.y2_c00021{bottom:1082.960000pt;}
.y1_c00021{bottom:1138.826667pt;}
.h6_c00021{height:11.733399pt;}
.h7_c00021{height:38.937500pt;}
.h4_c00021{height:81.148438pt;}
.h3_c00021{height:87.783854pt;}
.h5_c00021{height:97.912760pt;}
.h2_c00021{height:108.041667pt;}
.h0_c00021{height:1229.066667pt;}
.h1_c00021{height:1229.333333pt;}
.w2_c00021{width:93.222667pt;}
.w0_c00021{width:767.266667pt;}
.w1_c00021{width:767.333333pt;}
.x0_c00021{left:0.000000pt;}
.x5_c00021{left:47.200000pt;}
.x7_c00021{left:48.266667pt;}
.x4_c00021{left:49.466667pt;}
.x3_c00021{left:50.400000pt;}
.x6_c00021{left:61.600000pt;}
.x2_c00021{left:75.333333pt;}
.xd_c00021{left:241.200000pt;}
.xe_c00021{left:242.133333pt;}
.xc_c00021{left:243.066667pt;}
.xa_c00021{left:244.000000pt;}
.x9_c00021{left:245.066667pt;}
.xb_c00021{left:246.000000pt;}
.x8_c00021{left:261.866667pt;}
.x10_c00021{left:340.801554pt;}
.x1_c00021{left:363.600000pt;}
.xf_c00021{left:665.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_12cd10b1f08cc0001e8db45a.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_32133fb97f9068f21101e183.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls4_c00022{letter-spacing:0.000000px;}
.ls1_c00022{letter-spacing:0.852000px;}
.ls2_c00022{letter-spacing:4.020000px;}
.ls3_c00022{letter-spacing:9.600000px;}
.ls0_c00022{letter-spacing:12.633000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00022{word-spacing:-20.244000px;}
.ws0_c00022{word-spacing:-18.798000px;}
.ws2_c00022{word-spacing:0.000000px;}
._2f_c00022{margin-left:-88.416000px;}
._15_c00022{margin-left:-31.584000px;}
._27_c00022{margin-left:-20.352000px;}
._f_c00022{margin-left:-17.568000px;}
._25_c00022{margin-left:-16.128000px;}
._26_c00022{margin-left:-14.976000px;}
._45_c00022{margin-left:-13.482000px;}
._a_c00022{margin-left:-11.040000px;}
._19_c00022{margin-left:-9.504000px;}
._2b_c00022{margin-left:-7.296000px;}
._17_c00022{margin-left:-5.568000px;}
._1c_c00022{margin-left:-3.810000px;}
._28_c00022{margin-left:-2.784000px;}
._18_c00022{margin-left:-1.728000px;}
._c_c00022{width:1.920000px;}
._14_c00022{width:3.168000px;}
._d_c00022{width:4.512000px;}
._4_c00022{width:5.568000px;}
._1b_c00022{width:6.894000px;}
._0_c00022{width:7.968000px;}
._2_c00022{width:9.312000px;}
._1_c00022{width:10.464000px;}
._11_c00022{width:12.480000px;}
._12_c00022{width:14.304000px;}
._10_c00022{width:15.648000px;}
._16_c00022{width:16.704000px;}
._13_c00022{width:18.048000px;}
._34_c00022{width:19.146000px;}
._43_c00022{width:20.154000px;}
._6_c00022{width:21.696000px;}
._8_c00022{width:24.672000px;}
._7_c00022{width:26.592000px;}
._20_c00022{width:28.014000px;}
._e_c00022{width:30.048000px;}
._38_c00022{width:31.164000px;}
._46_c00022{width:32.358000px;}
._36_c00022{width:33.468000px;}
._42_c00022{width:35.346000px;}
._1d_c00022{width:36.840000px;}
._1e_c00022{width:38.052000px;}
._21_c00022{width:40.032000px;}
._3d_c00022{width:41.664000px;}
._5_c00022{width:43.296000px;}
._37_c00022{width:44.760000px;}
._22_c00022{width:46.674000px;}
._33_c00022{width:48.036000px;}
._3b_c00022{width:49.248000px;}
._3c_c00022{width:55.698000px;}
._31_c00022{width:57.504000px;}
._44_c00022{width:60.726000px;}
._23_c00022{width:61.974000px;}
._40_c00022{width:63.072000px;}
._39_c00022{width:73.734000px;}
._3f_c00022{width:75.936000px;}
._3e_c00022{width:77.088000px;}
._30_c00022{width:86.016000px;}
._3_c00022{width:99.264000px;}
._2e_c00022{width:123.900000px;}
._b_c00022{width:139.776000px;}
._2c_c00022{width:146.304000px;}
._2d_c00022{width:148.224000px;}
._24_c00022{width:170.400000px;}
._29_c00022{width:220.224000px;}
._9_c00022{width:241.632000px;}
._32_c00022{width:294.240000px;}
._1a_c00022{width:357.456000px;}
._2a_c00022{width:404.352000px;}
._41_c00022{width:406.986000px;}
._1f_c00022{width:479.904000px;}
._35_c00022{width:649.302000px;}
._3a_c00022{width:654.906000px;}
._47_c00022{width:1846.758000px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(128,128,128);}
.fc0_c00022{color:rgb(0,0,0);}
.fs5_c00022{font-size:48.000000px;}
.fs1_c00022{font-size:78.000000px;}
.fs3_c00022{font-size:84.000000px;}
.fs2_c00022{font-size:87.000000px;}
.fs0_c00022{font-size:96.000000px;}
.fs4_c00022{font-size:102.000000px;}
.y0_c00022{bottom:0.000000px;}
.y27_c00022{bottom:3.105000px;}
.y26_c00022{bottom:7.228355px;}
.y25_c00022{bottom:106.935000px;}
.y24_c00022{bottom:140.685000px;}
.y23_c00022{bottom:174.435000px;}
.y22_c00022{bottom:207.885000px;}
.y21_c00022{bottom:241.185000px;}
.y20_c00022{bottom:274.935000px;}
.y1f_c00022{bottom:308.685000px;}
.y1e_c00022{bottom:341.535000px;}
.y1d_c00022{bottom:374.985000px;}
.y1c_c00022{bottom:409.335000px;}
.y1b_c00022{bottom:442.335000px;}
.y1a_c00022{bottom:475.785000px;}
.y19_c00022{bottom:508.935000px;}
.y18_c00022{bottom:542.685000px;}
.y17_c00022{bottom:575.685000px;}
.y16_c00022{bottom:608.535000px;}
.y15_c00022{bottom:642.135000px;}
.y14_c00022{bottom:675.585000px;}
.y13_c00022{bottom:709.035000px;}
.y12_c00022{bottom:742.185000px;}
.y11_c00022{bottom:775.785000px;}
.y10_c00022{bottom:808.935000px;}
.yf_c00022{bottom:841.185000px;}
.ye_c00022{bottom:874.485000px;}
.yd_c00022{bottom:907.785000px;}
.yc_c00022{bottom:940.935000px;}
.yb_c00022{bottom:972.585000px;}
.ya_c00022{bottom:1006.635000px;}
.y9_c00022{bottom:1038.435000px;}
.y8_c00022{bottom:1073.235000px;}
.y7_c00022{bottom:1090.485000px;}
.y6_c00022{bottom:1108.635000px;}
.y5_c00022{bottom:1139.685000px;}
.y4_c00022{bottom:1174.035000px;}
.y3_c00022{bottom:1206.435000px;}
.y2_c00022{bottom:1238.985000px;}
.y1_c00022{bottom:1271.385000px;}
.h3_c00022{height:13.200074px;}
.h4_c00022{height:43.804688px;}
.h2_c00022{height:121.546875px;}
.h0_c00022{height:1364.025000px;}
.h1_c00022{height:1364.250000px;}
.w2_c00022{width:104.875500px;}
.w1_c00022{width:858.000000px;}
.w0_c00022{width:858.075000px;}
.x0_c00022{left:0.000000px;}
.xc_c00022{left:27.750000px;}
.xb_c00022{left:28.800000px;}
.xa_c00022{left:30.000000px;}
.x9_c00022{left:31.050000px;}
.x8_c00022{left:32.100000px;}
.x6_c00022{left:33.750000px;}
.x5_c00022{left:35.400000px;}
.x4_c00022{left:36.450000px;}
.x3_c00022{left:38.100000px;}
.x2_c00022{left:55.350000px;}
.x7_c00022{left:107.700000px;}
.x1_c00022{left:117.450000px;}
.xd_c00022{left:380.851730px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls4_c00022{letter-spacing:0.000000pt;}
.ls1_c00022{letter-spacing:0.757333pt;}
.ls2_c00022{letter-spacing:3.573333pt;}
.ls3_c00022{letter-spacing:8.533333pt;}
.ls0_c00022{letter-spacing:11.229333pt;}
.ws1_c00022{word-spacing:-17.994667pt;}
.ws0_c00022{word-spacing:-16.709333pt;}
.ws2_c00022{word-spacing:0.000000pt;}
._2f_c00022{margin-left:-78.592000pt;}
._15_c00022{margin-left:-28.074667pt;}
._27_c00022{margin-left:-18.090667pt;}
._f_c00022{margin-left:-15.616000pt;}
._25_c00022{margin-left:-14.336000pt;}
._26_c00022{margin-left:-13.312000pt;}
._45_c00022{margin-left:-11.984000pt;}
._a_c00022{margin-left:-9.813333pt;}
._19_c00022{margin-left:-8.448000pt;}
._2b_c00022{margin-left:-6.485333pt;}
._17_c00022{margin-left:-4.949333pt;}
._1c_c00022{margin-left:-3.386667pt;}
._28_c00022{margin-left:-2.474667pt;}
._18_c00022{margin-left:-1.536000pt;}
._c_c00022{width:1.706667pt;}
._14_c00022{width:2.816000pt;}
._d_c00022{width:4.010667pt;}
._4_c00022{width:4.949333pt;}
._1b_c00022{width:6.128000pt;}
._0_c00022{width:7.082667pt;}
._2_c00022{width:8.277333pt;}
._1_c00022{width:9.301333pt;}
._11_c00022{width:11.093333pt;}
._12_c00022{width:12.714667pt;}
._10_c00022{width:13.909333pt;}
._16_c00022{width:14.848000pt;}
._13_c00022{width:16.042667pt;}
._34_c00022{width:17.018667pt;}
._43_c00022{width:17.914667pt;}
._6_c00022{width:19.285333pt;}
._8_c00022{width:21.930667pt;}
._7_c00022{width:23.637333pt;}
._20_c00022{width:24.901333pt;}
._e_c00022{width:26.709333pt;}
._38_c00022{width:27.701333pt;}
._46_c00022{width:28.762667pt;}
._36_c00022{width:29.749333pt;}
._42_c00022{width:31.418667pt;}
._1d_c00022{width:32.746667pt;}
._1e_c00022{width:33.824000pt;}
._21_c00022{width:35.584000pt;}
._3d_c00022{width:37.034667pt;}
._5_c00022{width:38.485333pt;}
._37_c00022{width:39.786667pt;}
._22_c00022{width:41.488000pt;}
._33_c00022{width:42.698667pt;}
._3b_c00022{width:43.776000pt;}
._3c_c00022{width:49.509333pt;}
._31_c00022{width:51.114667pt;}
._44_c00022{width:53.978667pt;}
._23_c00022{width:55.088000pt;}
._40_c00022{width:56.064000pt;}
._39_c00022{width:65.541333pt;}
._3f_c00022{width:67.498667pt;}
._3e_c00022{width:68.522667pt;}
._30_c00022{width:76.458667pt;}
._3_c00022{width:88.234667pt;}
._2e_c00022{width:110.133333pt;}
._b_c00022{width:124.245333pt;}
._2c_c00022{width:130.048000pt;}
._2d_c00022{width:131.754667pt;}
._24_c00022{width:151.466667pt;}
._29_c00022{width:195.754667pt;}
._9_c00022{width:214.784000pt;}
._32_c00022{width:261.546667pt;}
._1a_c00022{width:317.738667pt;}
._2a_c00022{width:359.424000pt;}
._41_c00022{width:361.765333pt;}
._1f_c00022{width:426.581333pt;}
._35_c00022{width:577.157333pt;}
._3a_c00022{width:582.138667pt;}
._47_c00022{width:1641.562667pt;}
.fs5_c00022{font-size:42.666667pt;}
.fs1_c00022{font-size:69.333333pt;}
.fs3_c00022{font-size:74.666667pt;}
.fs2_c00022{font-size:77.333333pt;}
.fs0_c00022{font-size:85.333333pt;}
.fs4_c00022{font-size:90.666667pt;}
.y0_c00022{bottom:0.000000pt;}
.y27_c00022{bottom:2.760000pt;}
.y26_c00022{bottom:6.425204pt;}
.y25_c00022{bottom:95.053333pt;}
.y24_c00022{bottom:125.053333pt;}
.y23_c00022{bottom:155.053333pt;}
.y22_c00022{bottom:184.786667pt;}
.y21_c00022{bottom:214.386667pt;}
.y20_c00022{bottom:244.386667pt;}
.y1f_c00022{bottom:274.386667pt;}
.y1e_c00022{bottom:303.586667pt;}
.y1d_c00022{bottom:333.320000pt;}
.y1c_c00022{bottom:363.853333pt;}
.y1b_c00022{bottom:393.186667pt;}
.y1a_c00022{bottom:422.920000pt;}
.y19_c00022{bottom:452.386667pt;}
.y18_c00022{bottom:482.386667pt;}
.y17_c00022{bottom:511.720000pt;}
.y16_c00022{bottom:540.920000pt;}
.y15_c00022{bottom:570.786667pt;}
.y14_c00022{bottom:600.520000pt;}
.y13_c00022{bottom:630.253333pt;}
.y12_c00022{bottom:659.720000pt;}
.y11_c00022{bottom:689.586667pt;}
.y10_c00022{bottom:719.053333pt;}
.yf_c00022{bottom:747.720000pt;}
.ye_c00022{bottom:777.320000pt;}
.yd_c00022{bottom:806.920000pt;}
.yc_c00022{bottom:836.386667pt;}
.yb_c00022{bottom:864.520000pt;}
.ya_c00022{bottom:894.786667pt;}
.y9_c00022{bottom:923.053333pt;}
.y8_c00022{bottom:953.986667pt;}
.y7_c00022{bottom:969.320000pt;}
.y6_c00022{bottom:985.453333pt;}
.y5_c00022{bottom:1013.053333pt;}
.y4_c00022{bottom:1043.586667pt;}
.y3_c00022{bottom:1072.386667pt;}
.y2_c00022{bottom:1101.320000pt;}
.y1_c00022{bottom:1130.120000pt;}
.h3_c00022{height:11.733399pt;}
.h4_c00022{height:38.937500pt;}
.h2_c00022{height:108.041667pt;}
.h0_c00022{height:1212.466667pt;}
.h1_c00022{height:1212.666667pt;}
.w2_c00022{width:93.222667pt;}
.w1_c00022{width:762.666667pt;}
.w0_c00022{width:762.733333pt;}
.x0_c00022{left:0.000000pt;}
.xc_c00022{left:24.666667pt;}
.xb_c00022{left:25.600000pt;}
.xa_c00022{left:26.666667pt;}
.x9_c00022{left:27.600000pt;}
.x8_c00022{left:28.533333pt;}
.x6_c00022{left:30.000000pt;}
.x5_c00022{left:31.466667pt;}
.x4_c00022{left:32.400000pt;}
.x3_c00022{left:33.866667pt;}
.x2_c00022{left:49.200000pt;}
.x7_c00022{left:95.733333pt;}
.x1_c00022{left:104.400000pt;}
.xd_c00022{left:338.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_082288472fff78b64a75d155.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_cbf419df92aa4341d1876ec4.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_44fdb38b4dc665f01abd3e85.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;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_c00023;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.v1_c00023{vertical-align:85.200000px;}
.ls4_c00023{letter-spacing:-3.000000px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls1_c00023{letter-spacing:5.964000px;}
.ls6_c00023{letter-spacing:6.000000px;}
.ls3_c00023{letter-spacing:24.000000px;}
.ls5_c00023{letter-spacing:42.000000px;}
.ls0_c00023{letter-spacing:598.833000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00023{word-spacing:-65.136000px;}
.ws0_c00023{word-spacing:-32.676000px;}
.ws3_c00023{word-spacing:-23.136000px;}
.ws2_c00023{word-spacing:-20.244000px;}
.ws4_c00023{word-spacing:0.000000px;}
._19_c00023{margin-left:-28.224000px;}
._26_c00023{margin-left:-22.500000px;}
._27_c00023{margin-left:-17.814000px;}
._2c_c00023{margin-left:-15.840000px;}
._1a_c00023{margin-left:-11.388000px;}
._36_c00023{margin-left:-9.504000px;}
._1b_c00023{margin-left:-6.786000px;}
._6_c00023{margin-left:-5.472000px;}
._5_c00023{margin-left:-4.032000px;}
._3_c00023{margin-left:-2.400000px;}
._2_c00023{margin-left:-1.056000px;}
._a_c00023{width:1.824000px;}
._9_c00023{width:3.168000px;}
._13_c00023{width:4.608000px;}
._8_c00023{width:5.664000px;}
._1_c00023{width:7.392000px;}
._2a_c00023{width:8.928000px;}
._0_c00023{width:10.272000px;}
._11_c00023{width:11.520000px;}
._e_c00023{width:12.672000px;}
._30_c00023{width:14.304000px;}
._15_c00023{width:15.360000px;}
._7_c00023{width:17.280000px;}
._2e_c00023{width:19.200000px;}
._12_c00023{width:21.888000px;}
._37_c00023{width:24.192000px;}
._4_c00023{width:25.248000px;}
._2b_c00023{width:27.936000px;}
._c_c00023{width:29.472000px;}
._32_c00023{width:30.624000px;}
._14_c00023{width:32.544000px;}
._31_c00023{width:34.560000px;}
._2d_c00023{width:36.000000px;}
._f_c00023{width:37.440000px;}
._d_c00023{width:38.784000px;}
._10_c00023{width:40.224000px;}
._33_c00023{width:41.376000px;}
._34_c00023{width:42.912000px;}
._17_c00023{width:44.736000px;}
._21_c00023{width:47.091000px;}
._16_c00023{width:49.152000px;}
._35_c00023{width:53.184000px;}
._28_c00023{width:55.296000px;}
._1e_c00023{width:58.176000px;}
._29_c00023{width:72.720000px;}
._1f_c00023{width:77.856000px;}
._24_c00023{width:103.980000px;}
._20_c00023{width:109.344000px;}
._2f_c00023{width:133.116000px;}
._22_c00023{width:226.560000px;}
._18_c00023{width:241.632000px;}
._25_c00023{width:267.126000px;}
._1d_c00023{width:271.356000px;}
._23_c00023{width:272.520000px;}
._b_c00023{width:289.344000px;}
._1c_c00023{width:325.152000px;}
.fc2_c00023{color:transparent;}
.fc1_c00023{color:rgb(128,128,128);}
.fc0_c00023{color:rgb(0,0,0);}
.fs3_c00023{font-size:27.000000px;}
.fs4_c00023{font-size:30.000000px;}
.fs1_c00023{font-size:36.000000px;}
.fs8_c00023{font-size:48.000000px;}
.fs2_c00023{font-size:78.000000px;}
.fs7_c00023{font-size:84.000000px;}
.fs5_c00023{font-size:87.000000px;}
.fs0_c00023{font-size:96.000000px;}
.fs6_c00023{font-size:102.000000px;}
.y0_c00023{bottom:0.000000px;}
.y24_c00023{bottom:3.105000px;}
.y23_c00023{bottom:7.228369px;}
.y22_c00023{bottom:104.220000px;}
.y21_c00023{bottom:206.220000px;}
.y20_c00023{bottom:240.270000px;}
.y1f_c00023{bottom:274.620000px;}
.y1e_c00023{bottom:308.070000px;}
.y1d_c00023{bottom:341.520000px;}
.y1c_c00023{bottom:374.970000px;}
.y1b_c00023{bottom:409.320000px;}
.y1a_c00023{bottom:442.020000px;}
.y19_c00023{bottom:475.770000px;}
.y18_c00023{bottom:509.520000px;}
.y17_c00023{bottom:542.670000px;}
.y16_c00023{bottom:575.370000px;}
.y15_c00023{bottom:609.120000px;}
.y14_c00023{bottom:642.270000px;}
.y13_c00023{bottom:675.720000px;}
.y12_c00023{bottom:709.020000px;}
.y11_c00023{bottom:742.170000px;}
.y10_c00023{bottom:775.920000px;}
.yf_c00023{bottom:809.220000px;}
.ye_c00023{bottom:842.970000px;}
.yd_c00023{bottom:875.820000px;}
.yc_c00023{bottom:908.220000px;}
.yb_c00023{bottom:941.520000px;}
.ya_c00023{bottom:971.670000px;}
.y9_c00023{bottom:1007.670000px;}
.y8_c00023{bottom:1042.470000px;}
.y7_c00023{bottom:1075.920000px;}
.y6_c00023{bottom:1101.570000px;}
.y5_c00023{bottom:1142.070000px;}
.y4_c00023{bottom:1203.120000px;}
.y3_c00023{bottom:1207.920000px;}
.y2_c00023{bottom:1240.020000px;}
.y1_c00023{bottom:1274.970000px;}
.h7_c00023{height:13.200073px;}
.h5_c00023{height:37.983398px;}
.h8_c00023{height:43.804688px;}
.h4_c00023{height:91.291992px;}
.h2_c00023{height:121.546875px;}
.h6_c00023{height:129.143555px;}
.h3_c00023{height:130.780078px;}
.h0_c00023{height:1369.950000px;}
.h1_c00023{height:1370.250000px;}
.w2_c00023{width:104.875500px;}
.w0_c00023{width:854.850000px;}
.w1_c00023{width:855.000000px;}
.x0_c00023{left:0.000000px;}
.x8_c00023{left:58.050000px;}
.x7_c00023{left:59.100000px;}
.x6_c00023{left:68.400000px;}
.x4_c00023{left:177.450000px;}
.xf_c00023{left:269.700000px;}
.xe_c00023{left:271.350000px;}
.xd_c00023{left:273.450000px;}
.xc_c00023{left:275.100000px;}
.xb_c00023{left:276.150000px;}
.xa_c00023{left:277.200000px;}
.x1_c00023{left:278.400000px;}
.x2_c00023{left:279.900000px;}
.x9_c00023{left:281.100000px;}
.x5_c00023{left:377.700000px;}
.x11_c00023{left:379.239258px;}
.x10_c00023{left:747.000000px;}
.x3_c00023{left:775.950000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.v1_c00023{vertical-align:75.733333pt;}
.ls4_c00023{letter-spacing:-2.666667pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls1_c00023{letter-spacing:5.301333pt;}
.ls6_c00023{letter-spacing:5.333333pt;}
.ls3_c00023{letter-spacing:21.333333pt;}
.ls5_c00023{letter-spacing:37.333333pt;}
.ls0_c00023{letter-spacing:532.296000pt;}
.ws1_c00023{word-spacing:-57.898667pt;}
.ws0_c00023{word-spacing:-29.045333pt;}
.ws3_c00023{word-spacing:-20.565333pt;}
.ws2_c00023{word-spacing:-17.994667pt;}
.ws4_c00023{word-spacing:0.000000pt;}
._19_c00023{margin-left:-25.088000pt;}
._26_c00023{margin-left:-20.000000pt;}
._27_c00023{margin-left:-15.834667pt;}
._2c_c00023{margin-left:-14.080000pt;}
._1a_c00023{margin-left:-10.122667pt;}
._36_c00023{margin-left:-8.448000pt;}
._1b_c00023{margin-left:-6.032000pt;}
._6_c00023{margin-left:-4.864000pt;}
._5_c00023{margin-left:-3.584000pt;}
._3_c00023{margin-left:-2.133333pt;}
._2_c00023{margin-left:-0.938667pt;}
._a_c00023{width:1.621333pt;}
._9_c00023{width:2.816000pt;}
._13_c00023{width:4.096000pt;}
._8_c00023{width:5.034667pt;}
._1_c00023{width:6.570667pt;}
._2a_c00023{width:7.936000pt;}
._0_c00023{width:9.130667pt;}
._11_c00023{width:10.240000pt;}
._e_c00023{width:11.264000pt;}
._30_c00023{width:12.714667pt;}
._15_c00023{width:13.653333pt;}
._7_c00023{width:15.360000pt;}
._2e_c00023{width:17.066667pt;}
._12_c00023{width:19.456000pt;}
._37_c00023{width:21.504000pt;}
._4_c00023{width:22.442667pt;}
._2b_c00023{width:24.832000pt;}
._c_c00023{width:26.197333pt;}
._32_c00023{width:27.221333pt;}
._14_c00023{width:28.928000pt;}
._31_c00023{width:30.720000pt;}
._2d_c00023{width:32.000000pt;}
._f_c00023{width:33.280000pt;}
._d_c00023{width:34.474667pt;}
._10_c00023{width:35.754667pt;}
._33_c00023{width:36.778667pt;}
._34_c00023{width:38.144000pt;}
._17_c00023{width:39.765333pt;}
._21_c00023{width:41.858667pt;}
._16_c00023{width:43.690667pt;}
._35_c00023{width:47.274667pt;}
._28_c00023{width:49.152000pt;}
._1e_c00023{width:51.712000pt;}
._29_c00023{width:64.640000pt;}
._1f_c00023{width:69.205333pt;}
._24_c00023{width:92.426667pt;}
._20_c00023{width:97.194667pt;}
._2f_c00023{width:118.325333pt;}
._22_c00023{width:201.386667pt;}
._18_c00023{width:214.784000pt;}
._25_c00023{width:237.445333pt;}
._1d_c00023{width:241.205333pt;}
._23_c00023{width:242.240000pt;}
._b_c00023{width:257.194667pt;}
._1c_c00023{width:289.024000pt;}
.fs3_c00023{font-size:24.000000pt;}
.fs4_c00023{font-size:26.666667pt;}
.fs1_c00023{font-size:32.000000pt;}
.fs8_c00023{font-size:42.666667pt;}
.fs2_c00023{font-size:69.333333pt;}
.fs7_c00023{font-size:74.666667pt;}
.fs5_c00023{font-size:77.333333pt;}
.fs0_c00023{font-size:85.333333pt;}
.fs6_c00023{font-size:90.666667pt;}
.y0_c00023{bottom:0.000000pt;}
.y24_c00023{bottom:2.760000pt;}
.y23_c00023{bottom:6.425217pt;}
.y22_c00023{bottom:92.640000pt;}
.y21_c00023{bottom:183.306667pt;}
.y20_c00023{bottom:213.573333pt;}
.y1f_c00023{bottom:244.106667pt;}
.y1e_c00023{bottom:273.840000pt;}
.y1d_c00023{bottom:303.573333pt;}
.y1c_c00023{bottom:333.306667pt;}
.y1b_c00023{bottom:363.840000pt;}
.y1a_c00023{bottom:392.906667pt;}
.y19_c00023{bottom:422.906667pt;}
.y18_c00023{bottom:452.906667pt;}
.y17_c00023{bottom:482.373333pt;}
.y16_c00023{bottom:511.440000pt;}
.y15_c00023{bottom:541.440000pt;}
.y14_c00023{bottom:570.906667pt;}
.y13_c00023{bottom:600.640000pt;}
.y12_c00023{bottom:630.240000pt;}
.y11_c00023{bottom:659.706667pt;}
.y10_c00023{bottom:689.706667pt;}
.yf_c00023{bottom:719.306667pt;}
.ye_c00023{bottom:749.306667pt;}
.yd_c00023{bottom:778.506667pt;}
.yc_c00023{bottom:807.306667pt;}
.yb_c00023{bottom:836.906667pt;}
.ya_c00023{bottom:863.706667pt;}
.y9_c00023{bottom:895.706667pt;}
.y8_c00023{bottom:926.640000pt;}
.y7_c00023{bottom:956.373333pt;}
.y6_c00023{bottom:979.173333pt;}
.y5_c00023{bottom:1015.173333pt;}
.y4_c00023{bottom:1069.440000pt;}
.y3_c00023{bottom:1073.706667pt;}
.y2_c00023{bottom:1102.240000pt;}
.y1_c00023{bottom:1133.306667pt;}
.h7_c00023{height:11.733399pt;}
.h5_c00023{height:33.763021pt;}
.h8_c00023{height:38.937500pt;}
.h4_c00023{height:81.148438pt;}
.h2_c00023{height:108.041667pt;}
.h6_c00023{height:114.794271pt;}
.h3_c00023{height:116.248958pt;}
.h0_c00023{height:1217.733333pt;}
.h1_c00023{height:1218.000000pt;}
.w2_c00023{width:93.222667pt;}
.w0_c00023{width:759.866667pt;}
.w1_c00023{width:760.000000pt;}
.x0_c00023{left:0.000000pt;}
.x8_c00023{left:51.600000pt;}
.x7_c00023{left:52.533333pt;}
.x6_c00023{left:60.800000pt;}
.x4_c00023{left:157.733333pt;}
.xf_c00023{left:239.733333pt;}
.xe_c00023{left:241.200000pt;}
.xd_c00023{left:243.066667pt;}
.xc_c00023{left:244.533333pt;}
.xb_c00023{left:245.466667pt;}
.xa_c00023{left:246.400000pt;}
.x1_c00023{left:247.466667pt;}
.x2_c00023{left:248.800000pt;}
.x9_c00023{left:249.866667pt;}
.x5_c00023{left:335.733333pt;}
.x11_c00023{left:337.101563pt;}
.x10_c00023{left:664.000000pt;}
.x3_c00023{left:689.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e499e0e574024062ef58a83.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_8c87266b1bf6431181506df0.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_c4b8060fe4373f3d0cc28c6c.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_e06c72e5012fd95e23128548.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00024;src:url('chunks/assets/font_bcefb008e511ae632cacd5ce.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00024;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff6_c00024{font-family:ff6_c00024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00024;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00024{font-family:ff7_c00024;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00024{vertical-align:-132.000000px;}
.v0_c00024{vertical-align:0.000000px;}
.ls4_c00024{letter-spacing:0.000000px;}
.ls3_c00024{letter-spacing:4.056000px;}
.ls1_c00024{letter-spacing:7.152000px;}
.ls2_c00024{letter-spacing:11.400000px;}
.ls6_c00024{letter-spacing:24.000000px;}
.ls0_c00024{letter-spacing:36.909000px;}
.ls5_c00024{letter-spacing:84.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00024{word-spacing:-25.305000px;}
.ws0_c00024{word-spacing:-20.244000px;}
.ws2_c00024{word-spacing:0.000000px;}
._23_c00024{margin-left:-103.122000px;}
._26_c00024{margin-left:-101.286000px;}
._21_c00024{margin-left:-100.062000px;}
._1f_c00024{margin-left:-85.680000px;}
._25_c00024{margin-left:-83.130000px;}
._29_c00024{margin-left:-31.620000px;}
._2a_c00024{margin-left:-29.274000px;}
._15_c00024{margin-left:-24.096000px;}
._44_c00024{margin-left:-20.196000px;}
._2e_c00024{margin-left:-18.144000px;}
._48_c00024{margin-left:-17.052000px;}
._49_c00024{margin-left:-14.904000px;}
._1c_c00024{margin-left:-13.248000px;}
._d_c00024{margin-left:-12.180000px;}
._4a_c00024{margin-left:-11.052000px;}
._2c_c00024{margin-left:-9.882000px;}
._40_c00024{margin-left:-8.664000px;}
._41_c00024{margin-left:-6.582000px;}
._17_c00024{margin-left:-5.460000px;}
._14_c00024{margin-left:-3.780000px;}
._f_c00024{margin-left:-2.208000px;}
._1d_c00024{margin-left:-1.056000px;}
._2_c00024{width:1.824000px;}
._6_c00024{width:3.264000px;}
._0_c00024{width:4.608000px;}
._3_c00024{width:5.664000px;}
._a_c00024{width:6.840000px;}
._9_c00024{width:8.544000px;}
._1e_c00024{width:10.272000px;}
._18_c00024{width:11.424000px;}
._5_c00024{width:13.440000px;}
._38_c00024{width:15.264000px;}
._36_c00024{width:16.416000px;}
._3f_c00024{width:17.856000px;}
._10_c00024{width:19.488000px;}
._39_c00024{width:20.928000px;}
._16_c00024{width:22.236000px;}
._4_c00024{width:25.536000px;}
._11_c00024{width:27.552000px;}
._3d_c00024{width:28.992000px;}
._b_c00024{width:30.912000px;}
._7_c00024{width:31.968000px;}
._3b_c00024{width:33.888000px;}
._3e_c00024{width:34.968000px;}
._8_c00024{width:36.192000px;}
._e_c00024{width:37.800000px;}
._12_c00024{width:39.264000px;}
._1a_c00024{width:40.992000px;}
._34_c00024{width:43.104000px;}
._3a_c00024{width:44.976000px;}
._35_c00024{width:47.232000px;}
._37_c00024{width:49.800000px;}
._31_c00024{width:52.056000px;}
._47_c00024{width:53.064000px;}
._19_c00024{width:54.312000px;}
._3c_c00024{width:55.824000px;}
._46_c00024{width:58.104000px;}
._33_c00024{width:59.424000px;}
._43_c00024{width:63.264000px;}
._42_c00024{width:64.680000px;}
._45_c00024{width:67.296000px;}
._32_c00024{width:70.656000px;}
._13_c00024{width:79.440000px;}
._1b_c00024{width:85.344000px;}
._2f_c00024{width:92.880000px;}
._c_c00024{width:101.520000px;}
._20_c00024{width:112.710000px;}
._2b_c00024{width:135.168000px;}
._2d_c00024{width:145.314000px;}
._27_c00024{width:152.388000px;}
._24_c00024{width:169.728000px;}
._1_c00024{width:172.128000px;}
._28_c00024{width:187.068000px;}
._22_c00024{width:317.526000px;}
._4b_c00024{width:484.896000px;}
._30_c00024{width:567.264000px;}
.fc2_c00024{color:transparent;}
.fc1_c00024{color:rgb(128,128,128);}
.fc0_c00024{color:rgb(0,0,0);}
.fs5_c00024{font-size:36.000000px;}
.fs7_c00024{font-size:48.000000px;}
.fs4_c00024{font-size:81.000000px;}
.fs2_c00024{font-size:84.000000px;}
.fs0_c00024{font-size:87.000000px;}
.fs1_c00024{font-size:96.000000px;}
.fs3_c00024{font-size:102.000000px;}
.fs6_c00024{font-size:105.000000px;}
.y0_c00024{bottom:0.000000px;}
.y22_c00024{bottom:3.105000px;}
.y21_c00024{bottom:7.228357px;}
.y20_c00024{bottom:140.430000px;}
.y1f_c00024{bottom:147.480000px;}
.y1e_c00024{bottom:276.030000px;}
.y1d_c00024{bottom:309.480000px;}
.y1c_c00024{bottom:343.830000px;}
.y1b_c00024{bottom:376.980000px;}
.y1a_c00024{bottom:410.130000px;}
.y19_c00024{bottom:443.580000px;}
.y18_c00024{bottom:477.330000px;}
.y17_c00024{bottom:510.330000px;}
.y16_c00024{bottom:543.330000px;}
.y15_c00024{bottom:577.230000px;}
.y14_c00024{bottom:610.530000px;}
.y13_c00024{bottom:643.830000px;}
.y12_c00024{bottom:676.680000px;}
.y11_c00024{bottom:709.530000px;}
.y10_c00024{bottom:743.280000px;}
.yf_c00024{bottom:776.880000px;}
.ye_c00024{bottom:810.030000px;}
.yd_c00024{bottom:843.030000px;}
.yc_c00024{bottom:876.180000px;}
.yb_c00024{bottom:909.180000px;}
.ya_c00024{bottom:942.330000px;}
.y9_c00024{bottom:975.030000px;}
.y8_c00024{bottom:1008.780000px;}
.y7_c00024{bottom:1041.630000px;}
.y6_c00024{bottom:1058.730000px;}
.y5_c00024{bottom:1075.230000px;}
.y4_c00024{bottom:1111.680000px;}
.y3_c00024{bottom:1142.880000px;}
.y2_c00024{bottom:1175.130000px;}
.y1_c00024{bottom:1296.630000px;}
.h6_c00024{height:13.200074px;}
.h7_c00024{height:43.804688px;}
.h5_c00024{height:45.580078px;}
.h2_c00024{height:110.151855px;}
.h3_c00024{height:121.546875px;}
.h4_c00024{height:129.143555px;}
.h0_c00024{height:1367.850000px;}
.h1_c00024{height:1368.000000px;}
.w1_c00024{width:104.875500px;}
.w0_c00024{width:867.750000px;}
.x0_c00024{left:0.000000px;}
.x5_c00024{left:48.000000px;}
.x3_c00024{left:49.350000px;}
.x6_c00024{left:50.550000px;}
.x4_c00024{left:52.050000px;}
.x7_c00024{left:53.700000px;}
.x8_c00024{left:54.750000px;}
.x9_c00024{left:55.800000px;}
.x2_c00024{left:99.600000px;}
.xc_c00024{left:385.689240px;}
.xb_c00024{left:390.900000px;}
.xa_c00024{left:392.250000px;}
.x1_c00024{left:560.850000px;}
@media print{
.v1_c00024{vertical-align:-117.333333pt;}
.v0_c00024{vertical-align:0.000000pt;}
.ls4_c00024{letter-spacing:0.000000pt;}
.ls3_c00024{letter-spacing:3.605333pt;}
.ls1_c00024{letter-spacing:6.357333pt;}
.ls2_c00024{letter-spacing:10.133333pt;}
.ls6_c00024{letter-spacing:21.333333pt;}
.ls0_c00024{letter-spacing:32.808000pt;}
.ls5_c00024{letter-spacing:74.666667pt;}
.ws1_c00024{word-spacing:-22.493333pt;}
.ws0_c00024{word-spacing:-17.994667pt;}
.ws2_c00024{word-spacing:0.000000pt;}
._23_c00024{margin-left:-91.664000pt;}
._26_c00024{margin-left:-90.032000pt;}
._21_c00024{margin-left:-88.944000pt;}
._1f_c00024{margin-left:-76.160000pt;}
._25_c00024{margin-left:-73.893333pt;}
._29_c00024{margin-left:-28.106667pt;}
._2a_c00024{margin-left:-26.021333pt;}
._15_c00024{margin-left:-21.418667pt;}
._44_c00024{margin-left:-17.952000pt;}
._2e_c00024{margin-left:-16.128000pt;}
._48_c00024{margin-left:-15.157333pt;}
._49_c00024{margin-left:-13.248000pt;}
._1c_c00024{margin-left:-11.776000pt;}
._d_c00024{margin-left:-10.826667pt;}
._4a_c00024{margin-left:-9.824000pt;}
._2c_c00024{margin-left:-8.784000pt;}
._40_c00024{margin-left:-7.701333pt;}
._41_c00024{margin-left:-5.850667pt;}
._17_c00024{margin-left:-4.853333pt;}
._14_c00024{margin-left:-3.360000pt;}
._f_c00024{margin-left:-1.962667pt;}
._1d_c00024{margin-left:-0.938667pt;}
._2_c00024{width:1.621333pt;}
._6_c00024{width:2.901333pt;}
._0_c00024{width:4.096000pt;}
._3_c00024{width:5.034667pt;}
._a_c00024{width:6.080000pt;}
._9_c00024{width:7.594667pt;}
._1e_c00024{width:9.130667pt;}
._18_c00024{width:10.154667pt;}
._5_c00024{width:11.946667pt;}
._38_c00024{width:13.568000pt;}
._36_c00024{width:14.592000pt;}
._3f_c00024{width:15.872000pt;}
._10_c00024{width:17.322667pt;}
._39_c00024{width:18.602667pt;}
._16_c00024{width:19.765333pt;}
._4_c00024{width:22.698667pt;}
._11_c00024{width:24.490667pt;}
._3d_c00024{width:25.770667pt;}
._b_c00024{width:27.477333pt;}
._7_c00024{width:28.416000pt;}
._3b_c00024{width:30.122667pt;}
._3e_c00024{width:31.082667pt;}
._8_c00024{width:32.170667pt;}
._e_c00024{width:33.600000pt;}
._12_c00024{width:34.901333pt;}
._1a_c00024{width:36.437333pt;}
._34_c00024{width:38.314667pt;}
._3a_c00024{width:39.978667pt;}
._35_c00024{width:41.984000pt;}
._37_c00024{width:44.266667pt;}
._31_c00024{width:46.272000pt;}
._47_c00024{width:47.168000pt;}
._19_c00024{width:48.277333pt;}
._3c_c00024{width:49.621333pt;}
._46_c00024{width:51.648000pt;}
._33_c00024{width:52.821333pt;}
._43_c00024{width:56.234667pt;}
._42_c00024{width:57.493333pt;}
._45_c00024{width:59.818667pt;}
._32_c00024{width:62.805333pt;}
._13_c00024{width:70.613333pt;}
._1b_c00024{width:75.861333pt;}
._2f_c00024{width:82.560000pt;}
._c_c00024{width:90.240000pt;}
._20_c00024{width:100.186667pt;}
._2b_c00024{width:120.149333pt;}
._2d_c00024{width:129.168000pt;}
._27_c00024{width:135.456000pt;}
._24_c00024{width:150.869333pt;}
._1_c00024{width:153.002667pt;}
._28_c00024{width:166.282667pt;}
._22_c00024{width:282.245333pt;}
._4b_c00024{width:431.018667pt;}
._30_c00024{width:504.234667pt;}
.fs5_c00024{font-size:32.000000pt;}
.fs7_c00024{font-size:42.666667pt;}
.fs4_c00024{font-size:72.000000pt;}
.fs2_c00024{font-size:74.666667pt;}
.fs0_c00024{font-size:77.333333pt;}
.fs1_c00024{font-size:85.333333pt;}
.fs3_c00024{font-size:90.666667pt;}
.fs6_c00024{font-size:93.333333pt;}
.y0_c00024{bottom:0.000000pt;}
.y22_c00024{bottom:2.760000pt;}
.y21_c00024{bottom:6.425206pt;}
.y20_c00024{bottom:124.826667pt;}
.y1f_c00024{bottom:131.093333pt;}
.y1e_c00024{bottom:245.360000pt;}
.y1d_c00024{bottom:275.093333pt;}
.y1c_c00024{bottom:305.626667pt;}
.y1b_c00024{bottom:335.093333pt;}
.y1a_c00024{bottom:364.560000pt;}
.y19_c00024{bottom:394.293333pt;}
.y18_c00024{bottom:424.293333pt;}
.y17_c00024{bottom:453.626667pt;}
.y16_c00024{bottom:482.960000pt;}
.y15_c00024{bottom:513.093333pt;}
.y14_c00024{bottom:542.693333pt;}
.y13_c00024{bottom:572.293333pt;}
.y12_c00024{bottom:601.493333pt;}
.y11_c00024{bottom:630.693333pt;}
.y10_c00024{bottom:660.693333pt;}
.yf_c00024{bottom:690.560000pt;}
.ye_c00024{bottom:720.026667pt;}
.yd_c00024{bottom:749.360000pt;}
.yc_c00024{bottom:778.826667pt;}
.yb_c00024{bottom:808.160000pt;}
.ya_c00024{bottom:837.626667pt;}
.y9_c00024{bottom:866.693333pt;}
.y8_c00024{bottom:896.693333pt;}
.y7_c00024{bottom:925.893333pt;}
.y6_c00024{bottom:941.093333pt;}
.y5_c00024{bottom:955.760000pt;}
.y4_c00024{bottom:988.160000pt;}
.y3_c00024{bottom:1015.893333pt;}
.y2_c00024{bottom:1044.560000pt;}
.y1_c00024{bottom:1152.560000pt;}
.h6_c00024{height:11.733399pt;}
.h7_c00024{height:38.937500pt;}
.h5_c00024{height:40.515625pt;}
.h2_c00024{height:97.912760pt;}
.h3_c00024{height:108.041667pt;}
.h4_c00024{height:114.794271pt;}
.h0_c00024{height:1215.866667pt;}
.h1_c00024{height:1216.000000pt;}
.w1_c00024{width:93.222667pt;}
.w0_c00024{width:771.333333pt;}
.x0_c00024{left:0.000000pt;}
.x5_c00024{left:42.666667pt;}
.x3_c00024{left:43.866667pt;}
.x6_c00024{left:44.933333pt;}
.x4_c00024{left:46.266667pt;}
.x7_c00024{left:47.733333pt;}
.x8_c00024{left:48.666667pt;}
.x9_c00024{left:49.600000pt;}
.x2_c00024{left:88.533333pt;}
.xc_c00024{left:342.834880pt;}
.xb_c00024{left:347.466667pt;}
.xa_c00024{left:348.666667pt;}
.x1_c00024{left:498.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e17224c95239091ff1f01cf.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_0de08108fa141b919cd7cd99.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls2_c00025{letter-spacing:0.000000px;}
.ls3_c00025{letter-spacing:6.000000px;}
.ls0_c00025{letter-spacing:42.633000px;}
.ls1_c00025{letter-spacing:391.233000px;}
.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;}
}
.ws3_c00025{word-spacing:-57.000000px;}
.ws1_c00025{word-spacing:-20.244000px;}
.ws2_c00025{word-spacing:-18.798000px;}
.ws0_c00025{word-spacing:-1.176000px;}
.ws4_c00025{word-spacing:0.000000px;}
._43_c00025{margin-left:-39.984000px;}
._13_c00025{margin-left:-30.240000px;}
._40_c00025{margin-left:-25.560000px;}
._4b_c00025{margin-left:-20.706000px;}
._10_c00025{margin-left:-19.680000px;}
._47_c00025{margin-left:-18.360000px;}
._3f_c00025{margin-left:-15.804000px;}
._3d_c00025{margin-left:-13.632000px;}
._22_c00025{margin-left:-11.844000px;}
._2e_c00025{margin-left:-10.536000px;}
._e_c00025{margin-left:-9.288000px;}
._1c_c00025{margin-left:-7.656000px;}
._2c_c00025{margin-left:-6.636000px;}
._c_c00025{margin-left:-4.788000px;}
._1a_c00025{margin-left:-3.264000px;}
._a_c00025{margin-left:-2.100000px;}
._17_c00025{margin-left:-1.056000px;}
._f_c00025{width:1.440000px;}
._8_c00025{width:3.276000px;}
._3_c00025{width:5.088000px;}
._15_c00025{width:6.624000px;}
._0_c00025{width:7.680000px;}
._2_c00025{width:9.408000px;}
._4_c00025{width:10.656000px;}
._7_c00025{width:12.192000px;}
._3b_c00025{width:13.512000px;}
._25_c00025{width:14.796000px;}
._12_c00025{width:15.936000px;}
._24_c00025{width:17.160000px;}
._30_c00025{width:19.068000px;}
._1e_c00025{width:21.396000px;}
._26_c00025{width:24.192000px;}
._19_c00025{width:25.620000px;}
._36_c00025{width:26.772000px;}
._21_c00025{width:28.128000px;}
._1f_c00025{width:30.216000px;}
._b_c00025{width:31.920000px;}
._14_c00025{width:34.176000px;}
._18_c00025{width:36.192000px;}
._3c_c00025{width:37.248000px;}
._32_c00025{width:38.484000px;}
._20_c00025{width:40.044000px;}
._16_c00025{width:41.568000px;}
._3a_c00025{width:42.948000px;}
._9_c00025{width:44.088000px;}
._37_c00025{width:45.276000px;}
._29_c00025{width:47.028000px;}
._34_c00025{width:48.060000px;}
._1b_c00025{width:49.152000px;}
._31_c00025{width:50.208000px;}
._39_c00025{width:51.936000px;}
._2a_c00025{width:54.480000px;}
._35_c00025{width:56.352000px;}
._2b_c00025{width:58.260000px;}
._28_c00025{width:60.840000px;}
._38_c00025{width:63.840000px;}
._3e_c00025{width:66.204000px;}
._27_c00025{width:75.504000px;}
._2d_c00025{width:78.180000px;}
._1d_c00025{width:79.620000px;}
._4c_c00025{width:83.694000px;}
._2f_c00025{width:86.112000px;}
._6_c00025{width:96.288000px;}
._5_c00025{width:103.200000px;}
._1_c00025{width:105.408000px;}
._48_c00025{width:107.616000px;}
._46_c00025{width:113.760000px;}
._d_c00025{width:257.124000px;}
._44_c00025{width:259.782000px;}
._49_c00025{width:279.042000px;}
._45_c00025{width:287.088000px;}
._42_c00025{width:422.697000px;}
._11_c00025{width:452.064000px;}
._33_c00025{width:607.812000px;}
._4a_c00025{width:1019.901000px;}
._23_c00025{width:1089.312000px;}
._41_c00025{width:1120.056000px;}
._4d_c00025{width:1566.132000px;}
._4e_c00025{width:1822.020000px;}
.fc2_c00025{color:transparent;}
.fc1_c00025{color:rgb(128,128,128);}
.fc0_c00025{color:rgb(0,0,0);}
.fs6_c00025{font-size:48.000000px;}
.fs2_c00025{font-size:78.000000px;}
.fs1_c00025{font-size:84.000000px;}
.fs3_c00025{font-size:87.000000px;}
.fs5_c00025{font-size:93.000000px;}
.fs0_c00025{font-size:96.000000px;}
.fs4_c00025{font-size:102.000000px;}
.y0_c00025{bottom:0.000000px;}
.y26_c00025{bottom:3.105000px;}
.y25_c00025{bottom:7.228355px;}
.y24_c00025{bottom:99.135000px;}
.y23_c00025{bottom:128.535000px;}
.y22_c00025{bottom:150.135000px;}
.y21_c00025{bottom:180.435000px;}
.y20_c00025{bottom:210.585000px;}
.y1f_c00025{bottom:235.935000px;}
.y1e_c00025{bottom:269.685000px;}
.y1d_c00025{bottom:300.285000px;}
.y1c_c00025{bottom:333.135000px;}
.y1b_c00025{bottom:369.585000px;}
.y1a_c00025{bottom:403.335000px;}
.y19_c00025{bottom:436.035000px;}
.y18_c00025{bottom:470.085000px;}
.y17_c00025{bottom:503.235000px;}
.y16_c00025{bottom:536.985000px;}
.y15_c00025{bottom:569.985000px;}
.y14_c00025{bottom:603.435000px;}
.y13_c00025{bottom:636.735000px;}
.y12_c00025{bottom:669.585000px;}
.y11_c00025{bottom:702.885000px;}
.y10_c00025{bottom:736.035000px;}
.yf_c00025{bottom:770.085000px;}
.ye_c00025{bottom:803.235000px;}
.yd_c00025{bottom:836.235000px;}
.yc_c00025{bottom:869.385000px;}
.yb_c00025{bottom:902.085000px;}
.ya_c00025{bottom:935.235000px;}
.y9_c00025{bottom:967.935000px;}
.y8_c00025{bottom:1001.235000px;}
.y7_c00025{bottom:1033.635000px;}
.y6_c00025{bottom:1065.435000px;}
.y5_c00025{bottom:1098.135000px;}
.y4_c00025{bottom:1130.535000px;}
.y3_c00025{bottom:1170.735000px;}
.y2_c00025{bottom:1204.185000px;}
.y1_c00025{bottom:1266.585000px;}
.h6_c00025{height:13.200074px;}
.h7_c00025{height:43.804688px;}
.h4_c00025{height:91.291992px;}
.h3_c00025{height:110.151855px;}
.h5_c00025{height:117.748535px;}
.h2_c00025{height:121.546875px;}
.h1_c00025{height:1366.500000px;}
.h0_c00025{height:1366.725000px;}
.w2_c00025{width:104.875500px;}
.w0_c00025{width:852.675000px;}
.w1_c00025{width:852.750000px;}
.x0_c00025{left:0.000000px;}
.x12_c00025{left:40.200000px;}
.x11_c00025{left:41.550000px;}
.x10_c00025{left:42.900000px;}
.x5_c00025{left:51.600000px;}
.x4_c00025{left:52.650000px;}
.x3_c00025{left:54.300000px;}
.xf_c00025{left:76.500000px;}
.x2_c00025{left:97.500000px;}
.x13_c00025{left:250.800000px;}
.xe_c00025{left:253.500000px;}
.xd_c00025{left:261.150000px;}
.xc_c00025{left:262.650000px;}
.xb_c00025{left:263.850000px;}
.xa_c00025{left:264.900000px;}
.x9_c00025{left:266.400000px;}
.x8_c00025{left:267.600000px;}
.x7_c00025{left:269.100000px;}
.x6_c00025{left:270.900000px;}
.x1_c00025{left:309.150000px;}
.x14_c00025{left:378.151749px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls2_c00025{letter-spacing:0.000000pt;}
.ls3_c00025{letter-spacing:5.333333pt;}
.ls0_c00025{letter-spacing:37.896000pt;}
.ls1_c00025{letter-spacing:347.762667pt;}
.ws3_c00025{word-spacing:-50.666667pt;}
.ws1_c00025{word-spacing:-17.994667pt;}
.ws2_c00025{word-spacing:-16.709333pt;}
.ws0_c00025{word-spacing:-1.045333pt;}
.ws4_c00025{word-spacing:0.000000pt;}
._43_c00025{margin-left:-35.541333pt;}
._13_c00025{margin-left:-26.880000pt;}
._40_c00025{margin-left:-22.720000pt;}
._4b_c00025{margin-left:-18.405333pt;}
._10_c00025{margin-left:-17.493333pt;}
._47_c00025{margin-left:-16.320000pt;}
._3f_c00025{margin-left:-14.048000pt;}
._3d_c00025{margin-left:-12.117333pt;}
._22_c00025{margin-left:-10.528000pt;}
._2e_c00025{margin-left:-9.365333pt;}
._e_c00025{margin-left:-8.256000pt;}
._1c_c00025{margin-left:-6.805333pt;}
._2c_c00025{margin-left:-5.898667pt;}
._c_c00025{margin-left:-4.256000pt;}
._1a_c00025{margin-left:-2.901333pt;}
._a_c00025{margin-left:-1.866667pt;}
._17_c00025{margin-left:-0.938667pt;}
._f_c00025{width:1.280000pt;}
._8_c00025{width:2.912000pt;}
._3_c00025{width:4.522667pt;}
._15_c00025{width:5.888000pt;}
._0_c00025{width:6.826667pt;}
._2_c00025{width:8.362667pt;}
._4_c00025{width:9.472000pt;}
._7_c00025{width:10.837333pt;}
._3b_c00025{width:12.010667pt;}
._25_c00025{width:13.152000pt;}
._12_c00025{width:14.165333pt;}
._24_c00025{width:15.253333pt;}
._30_c00025{width:16.949333pt;}
._1e_c00025{width:19.018667pt;}
._26_c00025{width:21.504000pt;}
._19_c00025{width:22.773333pt;}
._36_c00025{width:23.797333pt;}
._21_c00025{width:25.002667pt;}
._1f_c00025{width:26.858667pt;}
._b_c00025{width:28.373333pt;}
._14_c00025{width:30.378667pt;}
._18_c00025{width:32.170667pt;}
._3c_c00025{width:33.109333pt;}
._32_c00025{width:34.208000pt;}
._20_c00025{width:35.594667pt;}
._16_c00025{width:36.949333pt;}
._3a_c00025{width:38.176000pt;}
._9_c00025{width:39.189333pt;}
._37_c00025{width:40.245333pt;}
._29_c00025{width:41.802667pt;}
._34_c00025{width:42.720000pt;}
._1b_c00025{width:43.690667pt;}
._31_c00025{width:44.629333pt;}
._39_c00025{width:46.165333pt;}
._2a_c00025{width:48.426667pt;}
._35_c00025{width:50.090667pt;}
._2b_c00025{width:51.786667pt;}
._28_c00025{width:54.080000pt;}
._38_c00025{width:56.746667pt;}
._3e_c00025{width:58.848000pt;}
._27_c00025{width:67.114667pt;}
._2d_c00025{width:69.493333pt;}
._1d_c00025{width:70.773333pt;}
._4c_c00025{width:74.394667pt;}
._2f_c00025{width:76.544000pt;}
._6_c00025{width:85.589333pt;}
._5_c00025{width:91.733333pt;}
._1_c00025{width:93.696000pt;}
._48_c00025{width:95.658667pt;}
._46_c00025{width:101.120000pt;}
._d_c00025{width:228.554667pt;}
._44_c00025{width:230.917333pt;}
._49_c00025{width:248.037333pt;}
._45_c00025{width:255.189333pt;}
._42_c00025{width:375.730667pt;}
._11_c00025{width:401.834667pt;}
._33_c00025{width:540.277333pt;}
._4a_c00025{width:906.578667pt;}
._23_c00025{width:968.277333pt;}
._41_c00025{width:995.605333pt;}
._4d_c00025{width:1392.117333pt;}
._4e_c00025{width:1619.573333pt;}
.fs6_c00025{font-size:42.666667pt;}
.fs2_c00025{font-size:69.333333pt;}
.fs1_c00025{font-size:74.666667pt;}
.fs3_c00025{font-size:77.333333pt;}
.fs5_c00025{font-size:82.666667pt;}
.fs0_c00025{font-size:85.333333pt;}
.fs4_c00025{font-size:90.666667pt;}
.y0_c00025{bottom:0.000000pt;}
.y26_c00025{bottom:2.760000pt;}
.y25_c00025{bottom:6.425204pt;}
.y24_c00025{bottom:88.120000pt;}
.y23_c00025{bottom:114.253333pt;}
.y22_c00025{bottom:133.453333pt;}
.y21_c00025{bottom:160.386667pt;}
.y20_c00025{bottom:187.186667pt;}
.y1f_c00025{bottom:209.720000pt;}
.y1e_c00025{bottom:239.720000pt;}
.y1d_c00025{bottom:266.920000pt;}
.y1c_c00025{bottom:296.120000pt;}
.y1b_c00025{bottom:328.520000pt;}
.y1a_c00025{bottom:358.520000pt;}
.y19_c00025{bottom:387.586667pt;}
.y18_c00025{bottom:417.853333pt;}
.y17_c00025{bottom:447.320000pt;}
.y16_c00025{bottom:477.320000pt;}
.y15_c00025{bottom:506.653333pt;}
.y14_c00025{bottom:536.386667pt;}
.y13_c00025{bottom:565.986667pt;}
.y12_c00025{bottom:595.186667pt;}
.y11_c00025{bottom:624.786667pt;}
.y10_c00025{bottom:654.253333pt;}
.yf_c00025{bottom:684.520000pt;}
.ye_c00025{bottom:713.986667pt;}
.yd_c00025{bottom:743.320000pt;}
.yc_c00025{bottom:772.786667pt;}
.yb_c00025{bottom:801.853333pt;}
.ya_c00025{bottom:831.320000pt;}
.y9_c00025{bottom:860.386667pt;}
.y8_c00025{bottom:889.986667pt;}
.y7_c00025{bottom:918.786667pt;}
.y6_c00025{bottom:947.053333pt;}
.y5_c00025{bottom:976.120000pt;}
.y4_c00025{bottom:1004.920000pt;}
.y3_c00025{bottom:1040.653333pt;}
.y2_c00025{bottom:1070.386667pt;}
.y1_c00025{bottom:1125.853333pt;}
.h6_c00025{height:11.733399pt;}
.h7_c00025{height:38.937500pt;}
.h4_c00025{height:81.148438pt;}
.h3_c00025{height:97.912760pt;}
.h5_c00025{height:104.665365pt;}
.h2_c00025{height:108.041667pt;}
.h1_c00025{height:1214.666667pt;}
.h0_c00025{height:1214.866667pt;}
.w2_c00025{width:93.222667pt;}
.w0_c00025{width:757.933333pt;}
.w1_c00025{width:758.000000pt;}
.x0_c00025{left:0.000000pt;}
.x12_c00025{left:35.733333pt;}
.x11_c00025{left:36.933333pt;}
.x10_c00025{left:38.133333pt;}
.x5_c00025{left:45.866667pt;}
.x4_c00025{left:46.800000pt;}
.x3_c00025{left:48.266667pt;}
.xf_c00025{left:68.000000pt;}
.x2_c00025{left:86.666667pt;}
.x13_c00025{left:222.933333pt;}
.xe_c00025{left:225.333333pt;}
.xd_c00025{left:232.133333pt;}
.xc_c00025{left:233.466667pt;}
.xb_c00025{left:234.533333pt;}
.xa_c00025{left:235.466667pt;}
.x9_c00025{left:236.800000pt;}
.x8_c00025{left:237.866667pt;}
.x7_c00025{left:239.200000pt;}
.x6_c00025{left:240.800000pt;}
.x1_c00025{left:274.800000pt;}
.x14_c00025{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e7a940e317944c680d499be.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_5a847a6fca0f7885f8670df0.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_40624495bd0b108fd637ee3b.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_c2db7a40f951c26f0f90e7d8.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00026;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls1_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:16.764000px;}
.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;}
}
.ws0_c00026{word-spacing:-24.000000px;}
.ws1_c00026{word-spacing:-20.244000px;}
.ws2_c00026{word-spacing:0.000000px;}
._34_c00026{margin-left:-70.560000px;}
._33_c00026{margin-left:-45.216000px;}
._36_c00026{margin-left:-36.336000px;}
._39_c00026{margin-left:-28.800000px;}
._45_c00026{margin-left:-23.136000px;}
._35_c00026{margin-left:-19.008000px;}
._2f_c00026{margin-left:-17.472000px;}
._2d_c00026{margin-left:-15.744000px;}
._2e_c00026{margin-left:-14.688000px;}
._27_c00026{margin-left:-13.056000px;}
._3c_c00026{margin-left:-11.604000px;}
._26_c00026{margin-left:-10.368000px;}
._3d_c00026{margin-left:-8.556000px;}
._18_c00026{margin-left:-7.296000px;}
._1b_c00026{margin-left:-5.376000px;}
._44_c00026{margin-left:-4.200000px;}
._1c_c00026{margin-left:-3.168000px;}
._8_c00026{margin-left:-1.920000px;}
._1_c00026{width:1.632000px;}
._0_c00026{width:3.360000px;}
._a_c00026{width:5.088000px;}
._3_c00026{width:6.624000px;}
._6_c00026{width:8.064000px;}
._1f_c00026{width:9.120000px;}
._5_c00026{width:10.272000px;}
._3e_c00026{width:11.328000px;}
._17_c00026{width:12.384000px;}
._f_c00026{width:14.208000px;}
._4_c00026{width:15.360000px;}
._e_c00026{width:17.280000px;}
._d_c00026{width:18.816000px;}
._10_c00026{width:20.640000px;}
._1a_c00026{width:21.888000px;}
._28_c00026{width:24.480000px;}
._23_c00026{width:26.016000px;}
._7_c00026{width:27.312000px;}
._21_c00026{width:28.320000px;}
._14_c00026{width:29.952000px;}
._1d_c00026{width:31.488000px;}
._13_c00026{width:32.736000px;}
._16_c00026{width:33.984000px;}
._11_c00026{width:35.904000px;}
._9_c00026{width:37.584000px;}
._20_c00026{width:38.592000px;}
._2_c00026{width:40.512000px;}
._1e_c00026{width:42.048000px;}
._19_c00026{width:43.392000px;}
._c_c00026{width:44.736000px;}
._12_c00026{width:47.424000px;}
._24_c00026{width:48.576000px;}
._15_c00026{width:50.688000px;}
._25_c00026{width:53.040000px;}
._22_c00026{width:56.160000px;}
._b_c00026{width:57.696000px;}
._2a_c00026{width:68.544000px;}
._2b_c00026{width:79.584000px;}
._43_c00026{width:81.504000px;}
._41_c00026{width:92.472000px;}
._42_c00026{width:97.392000px;}
._29_c00026{width:101.952000px;}
._40_c00026{width:106.032000px;}
._37_c00026{width:119.328000px;}
._38_c00026{width:139.104000px;}
._30_c00026{width:178.752000px;}
._31_c00026{width:290.736000px;}
._3f_c00026{width:330.384000px;}
._32_c00026{width:378.000000px;}
._3a_c00026{width:429.312000px;}
._2c_c00026{width:646.080000px;}
._46_c00026{width:730.752000px;}
._3b_c00026{width:938.136000px;}
.fc2_c00026{color:transparent;}
.fc1_c00026{color:rgb(128,128,128);}
.fc0_c00026{color:rgb(0,0,0);}
.fs3_c00026{font-size:48.000000px;}
.fs2_c00026{font-size:84.000000px;}
.fs0_c00026{font-size:87.000000px;}
.fs1_c00026{font-size:96.000000px;}
.y0_c00026{bottom:0.000000px;}
.y26_c00026{bottom:3.105000px;}
.y25_c00026{bottom:7.228371px;}
.y24_c00026{bottom:108.315000px;}
.y23_c00026{bottom:140.715000px;}
.y22_c00026{bottom:174.615000px;}
.y21_c00026{bottom:208.215000px;}
.y20_c00026{bottom:246.015000px;}
.y1f_c00026{bottom:275.415000px;}
.y1e_c00026{bottom:309.915000px;}
.y1d_c00026{bottom:342.615000px;}
.y1c_c00026{bottom:374.415000px;}
.y1b_c00026{bottom:407.415000px;}
.y1a_c00026{bottom:444.465000px;}
.y19_c00026{bottom:459.315000px;}
.y18_c00026{bottom:475.665000px;}
.y17_c00026{bottom:511.665000px;}
.y16_c00026{bottom:576.165000px;}
.y15_c00026{bottom:642.615000px;}
.y14_c00026{bottom:676.665000px;}
.y13_c00026{bottom:710.115000px;}
.y12_c00026{bottom:741.465000px;}
.y11_c00026{bottom:776.265000px;}
.y10_c00026{bottom:809.115000px;}
.yf_c00026{bottom:841.965000px;}
.ye_c00026{bottom:874.815000px;}
.yd_c00026{bottom:907.665000px;}
.yc_c00026{bottom:941.415000px;}
.yb_c00026{bottom:974.415000px;}
.ya_c00026{bottom:1007.415000px;}
.y9_c00026{bottom:1040.865000px;}
.y8_c00026{bottom:1073.565000px;}
.y7_c00026{bottom:1107.015000px;}
.y6_c00026{bottom:1139.715000px;}
.y5_c00026{bottom:1172.565000px;}
.y4_c00026{bottom:1205.865000px;}
.y3_c00026{bottom:1238.415000px;}
.y2_c00026{bottom:1271.415000px;}
.y1_c00026{bottom:1297.665000px;}
.h4_c00026{height:13.200074px;}
.h5_c00026{height:43.804688px;}
.h2_c00026{height:110.151855px;}
.h3_c00026{height:121.546875px;}
.h1_c00026{height:1349.250000px;}
.h0_c00026{height:1349.475000px;}
.w2_c00026{width:104.875500px;}
.w1_c00026{width:855.750000px;}
.w0_c00026{width:855.900000px;}
.x0_c00026{left:0.000000px;}
.x4_c00026{left:11.100000px;}
.x3_c00026{left:12.150000px;}
.x2_c00026{left:14.250000px;}
.xa_c00026{left:16.500000px;}
.x7_c00026{left:17.550000px;}
.x9_c00026{left:18.900000px;}
.xb_c00026{left:20.250000px;}
.xc_c00026{left:22.950000px;}
.x8_c00026{left:24.750000px;}
.x6_c00026{left:67.950000px;}
.x5_c00026{left:95.400000px;}
.xd_c00026{left:327.600000px;}
.xe_c00026{left:379.764221px;}
.x1_c00026{left:492.750000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls1_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:14.901333pt;}
.ws0_c00026{word-spacing:-21.333333pt;}
.ws1_c00026{word-spacing:-17.994667pt;}
.ws2_c00026{word-spacing:0.000000pt;}
._34_c00026{margin-left:-62.720000pt;}
._33_c00026{margin-left:-40.192000pt;}
._36_c00026{margin-left:-32.298667pt;}
._39_c00026{margin-left:-25.600000pt;}
._45_c00026{margin-left:-20.565333pt;}
._35_c00026{margin-left:-16.896000pt;}
._2f_c00026{margin-left:-15.530667pt;}
._2d_c00026{margin-left:-13.994667pt;}
._2e_c00026{margin-left:-13.056000pt;}
._27_c00026{margin-left:-11.605333pt;}
._3c_c00026{margin-left:-10.314667pt;}
._26_c00026{margin-left:-9.216000pt;}
._3d_c00026{margin-left:-7.605333pt;}
._18_c00026{margin-left:-6.485333pt;}
._1b_c00026{margin-left:-4.778667pt;}
._44_c00026{margin-left:-3.733333pt;}
._1c_c00026{margin-left:-2.816000pt;}
._8_c00026{margin-left:-1.706667pt;}
._1_c00026{width:1.450667pt;}
._0_c00026{width:2.986667pt;}
._a_c00026{width:4.522667pt;}
._3_c00026{width:5.888000pt;}
._6_c00026{width:7.168000pt;}
._1f_c00026{width:8.106667pt;}
._5_c00026{width:9.130667pt;}
._3e_c00026{width:10.069333pt;}
._17_c00026{width:11.008000pt;}
._f_c00026{width:12.629333pt;}
._4_c00026{width:13.653333pt;}
._e_c00026{width:15.360000pt;}
._d_c00026{width:16.725333pt;}
._10_c00026{width:18.346667pt;}
._1a_c00026{width:19.456000pt;}
._28_c00026{width:21.760000pt;}
._23_c00026{width:23.125333pt;}
._7_c00026{width:24.277333pt;}
._21_c00026{width:25.173333pt;}
._14_c00026{width:26.624000pt;}
._1d_c00026{width:27.989333pt;}
._13_c00026{width:29.098667pt;}
._16_c00026{width:30.208000pt;}
._11_c00026{width:31.914667pt;}
._9_c00026{width:33.408000pt;}
._20_c00026{width:34.304000pt;}
._2_c00026{width:36.010667pt;}
._1e_c00026{width:37.376000pt;}
._19_c00026{width:38.570667pt;}
._c_c00026{width:39.765333pt;}
._12_c00026{width:42.154667pt;}
._24_c00026{width:43.178667pt;}
._15_c00026{width:45.056000pt;}
._25_c00026{width:47.146667pt;}
._22_c00026{width:49.920000pt;}
._b_c00026{width:51.285333pt;}
._2a_c00026{width:60.928000pt;}
._2b_c00026{width:70.741333pt;}
._43_c00026{width:72.448000pt;}
._41_c00026{width:82.197333pt;}
._42_c00026{width:86.570667pt;}
._29_c00026{width:90.624000pt;}
._40_c00026{width:94.250667pt;}
._37_c00026{width:106.069333pt;}
._38_c00026{width:123.648000pt;}
._30_c00026{width:158.890667pt;}
._31_c00026{width:258.432000pt;}
._3f_c00026{width:293.674667pt;}
._32_c00026{width:336.000000pt;}
._3a_c00026{width:381.610667pt;}
._2c_c00026{width:574.293333pt;}
._46_c00026{width:649.557333pt;}
._3b_c00026{width:833.898667pt;}
.fs3_c00026{font-size:42.666667pt;}
.fs2_c00026{font-size:74.666667pt;}
.fs0_c00026{font-size:77.333333pt;}
.fs1_c00026{font-size:85.333333pt;}
.y0_c00026{bottom:0.000000pt;}
.y26_c00026{bottom:2.760000pt;}
.y25_c00026{bottom:6.425219pt;}
.y24_c00026{bottom:96.280000pt;}
.y23_c00026{bottom:125.080000pt;}
.y22_c00026{bottom:155.213333pt;}
.y21_c00026{bottom:185.080000pt;}
.y20_c00026{bottom:218.680000pt;}
.y1f_c00026{bottom:244.813333pt;}
.y1e_c00026{bottom:275.480000pt;}
.y1d_c00026{bottom:304.546667pt;}
.y1c_c00026{bottom:332.813333pt;}
.y1b_c00026{bottom:362.146667pt;}
.y1a_c00026{bottom:395.080000pt;}
.y19_c00026{bottom:408.280000pt;}
.y18_c00026{bottom:422.813333pt;}
.y17_c00026{bottom:454.813333pt;}
.y16_c00026{bottom:512.146667pt;}
.y15_c00026{bottom:571.213333pt;}
.y14_c00026{bottom:601.480000pt;}
.y13_c00026{bottom:631.213333pt;}
.y12_c00026{bottom:659.080000pt;}
.y11_c00026{bottom:690.013333pt;}
.y10_c00026{bottom:719.213333pt;}
.yf_c00026{bottom:748.413333pt;}
.ye_c00026{bottom:777.613333pt;}
.yd_c00026{bottom:806.813333pt;}
.yc_c00026{bottom:836.813333pt;}
.yb_c00026{bottom:866.146667pt;}
.ya_c00026{bottom:895.480000pt;}
.y9_c00026{bottom:925.213333pt;}
.y8_c00026{bottom:954.280000pt;}
.y7_c00026{bottom:984.013333pt;}
.y6_c00026{bottom:1013.080000pt;}
.y5_c00026{bottom:1042.280000pt;}
.y4_c00026{bottom:1071.880000pt;}
.y3_c00026{bottom:1100.813333pt;}
.y2_c00026{bottom:1130.146667pt;}
.y1_c00026{bottom:1153.480000pt;}
.h4_c00026{height:11.733399pt;}
.h5_c00026{height:38.937500pt;}
.h2_c00026{height:97.912760pt;}
.h3_c00026{height:108.041667pt;}
.h1_c00026{height:1199.333333pt;}
.h0_c00026{height:1199.533333pt;}
.w2_c00026{width:93.222667pt;}
.w1_c00026{width:760.666667pt;}
.w0_c00026{width:760.800000pt;}
.x0_c00026{left:0.000000pt;}
.x4_c00026{left:9.866667pt;}
.x3_c00026{left:10.800000pt;}
.x2_c00026{left:12.666667pt;}
.xa_c00026{left:14.666667pt;}
.x7_c00026{left:15.600000pt;}
.x9_c00026{left:16.800000pt;}
.xb_c00026{left:18.000000pt;}
.xc_c00026{left:20.400000pt;}
.x8_c00026{left:22.000000pt;}
.x6_c00026{left:60.400000pt;}
.x5_c00026{left:84.800000pt;}
.xd_c00026{left:291.200000pt;}
.xe_c00026{left:337.568197pt;}
.x1_c00026{left:438.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0010ad4dcfd87ca7486b0ae8.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_2aeddf301ad6a7d21987190e.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_65de4c8e57a97a68ac21367d.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_7c90c749297a73cba8de202a.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00027;src:url('chunks/assets/font_2f3bbbf24d21aeae55824797.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00027;src:url('chunks/assets/font_5d27ea4aca32282e0316efa6.woff2')format("woff");}.ff6_c00027{font-family:ff6_c00027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00027;src:url('chunks/assets/font_9cfa0ef1be77b173d37606c7.woff2')format("woff");}.ff7_c00027{font-family:ff7_c00027;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00027;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00027{font-family:ff8_c00027;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls4_c00027{letter-spacing:-3.000000px;}
.ls3_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:7.152000px;}
.ls2_c00027{letter-spacing:10.320000px;}
.ls1_c00027{letter-spacing:32.295000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:-91.740000px;}
.ws5_c00027{word-spacing:-23.136000px;}
.ws1_c00027{word-spacing:-20.967000px;}
.ws2_c00027{word-spacing:-20.244000px;}
.ws4_c00027{word-spacing:-0.318000px;}
.ws6_c00027{word-spacing:0.000000px;}
.ws3_c00027{word-spacing:13.728000px;}
._7_c00027{margin-left:-25.152000px;}
._8_c00027{margin-left:-14.592000px;}
._2c_c00027{margin-left:-12.396000px;}
._2b_c00027{margin-left:-10.404000px;}
._2d_c00027{margin-left:-9.348000px;}
._23_c00027{margin-left:-8.316000px;}
._1a_c00027{margin-left:-6.600000px;}
._1b_c00027{margin-left:-5.328000px;}
._12_c00027{margin-left:-3.552000px;}
._16_c00027{margin-left:-1.992000px;}
._2_c00027{width:1.248000px;}
._1_c00027{width:2.304000px;}
._1e_c00027{width:3.312000px;}
._0_c00027{width:4.320000px;}
._c_c00027{width:5.568000px;}
._1c_c00027{width:7.080000px;}
._4_c00027{width:8.352000px;}
._19_c00027{width:10.056000px;}
._1d_c00027{width:11.217000px;}
._11_c00027{width:12.480000px;}
._17_c00027{width:14.376000px;}
._13_c00027{width:15.840000px;}
._10_c00027{width:17.568000px;}
._e_c00027{width:19.104000px;}
._18_c00027{width:20.328000px;}
._20_c00027{width:21.888000px;}
._26_c00027{width:24.414000px;}
._14_c00027{width:25.983000px;}
._f_c00027{width:27.072000px;}
._25_c00027{width:28.464000px;}
._3_c00027{width:29.664000px;}
._15_c00027{width:30.816000px;}
._1f_c00027{width:32.112000px;}
._39_c00027{width:33.402000px;}
._27_c00027{width:34.848000px;}
._d_c00027{width:35.904000px;}
._5_c00027{width:37.056000px;}
._6_c00027{width:39.264000px;}
._a_c00027{width:41.184000px;}
._b_c00027{width:42.624000px;}
._37_c00027{width:44.670000px;}
._22_c00027{width:45.786000px;}
._24_c00027{width:47.784000px;}
._32_c00027{width:49.176000px;}
._29_c00027{width:50.568000px;}
._21_c00027{width:52.194000px;}
._35_c00027{width:54.273000px;}
._38_c00027{width:55.488000px;}
._9_c00027{width:56.544000px;}
._34_c00027{width:58.032000px;}
._2e_c00027{width:60.090000px;}
._31_c00027{width:62.328000px;}
._2f_c00027{width:67.548000px;}
._33_c00027{width:77.511000px;}
._36_c00027{width:79.716000px;}
._28_c00027{width:104.622000px;}
._2a_c00027{width:110.016000px;}
._30_c00027{width:170.226000px;}
.fc2_c00027{color:transparent;}
.fc1_c00027{color:rgb(128,128,128);}
.fc0_c00027{color:rgb(0,0,0);}
.fs7_c00027{font-size:48.000000px;}
.fs3_c00027{font-size:78.000000px;}
.fs5_c00027{font-size:84.000000px;}
.fs2_c00027{font-size:87.000000px;}
.fs4_c00027{font-size:93.000000px;}
.fs0_c00027{font-size:96.000000px;}
.fs6_c00027{font-size:105.000000px;}
.fs1_c00027{font-size:165.000000px;}
.y0_c00027{bottom:0.000000px;}
.y2b_c00027{bottom:3.105000px;}
.y2a_c00027{bottom:7.228357px;}
.y29_c00027{bottom:138.030000px;}
.y28_c00027{bottom:170.730000px;}
.y27_c00027{bottom:205.230000px;}
.y26_c00027{bottom:239.280000px;}
.y25_c00027{bottom:272.730000px;}
.y24_c00027{bottom:306.180000px;}
.y23_c00027{bottom:339.930000px;}
.y22_c00027{bottom:373.680000px;}
.y21_c00027{bottom:407.130000px;}
.y20_c00027{bottom:441.180000px;}
.y19_c00027{bottom:460.980000px;}
.y1f_c00027{bottom:474.480000px;}
.y18_c00027{bottom:490.680000px;}
.y1e_c00027{bottom:507.630000px;}
.y17_c00027{bottom:520.080000px;}
.y1d_c00027{bottom:541.230000px;}
.y16_c00027{bottom:549.480000px;}
.y1c_c00027{bottom:574.680000px;}
.y15_c00027{bottom:578.880000px;}
.y1b_c00027{bottom:608.130000px;}
.y14_c00027{bottom:608.580000px;}
.y13_c00027{bottom:637.830000px;}
.y1a_c00027{bottom:641.580000px;}
.y12_c00027{bottom:707.430000px;}
.y11_c00027{bottom:773.580000px;}
.y10_c00027{bottom:809.280000px;}
.yf_c00027{bottom:842.430000px;}
.ye_c00027{bottom:875.580000px;}
.yd_c00027{bottom:908.580000px;}
.yc_c00027{bottom:941.580000px;}
.yb_c00027{bottom:973.980000px;}
.ya_c00027{bottom:1007.430000px;}
.y9_c00027{bottom:1040.280000px;}
.y8_c00027{bottom:1072.980000px;}
.y7_c00027{bottom:1106.430000px;}
.y6_c00027{bottom:1142.730000px;}
.y5_c00027{bottom:1173.480000px;}
.y4_c00027{bottom:1206.180000px;}
.y3_c00027{bottom:1239.330000px;}
.y2_c00027{bottom:1272.330000px;}
.y1_c00027{bottom:1304.880000px;}
.ha_c00027{height:13.200074px;}
.hb_c00027{height:43.804688px;}
.h5_c00027{height:97.464000px;}
.h8_c00027{height:98.314453px;}
.h6_c00027{height:98.756836px;}
.h4_c00027{height:100.608000px;}
.h7_c00027{height:110.151855px;}
.h2_c00027{height:121.546875px;}
.h9_c00027{height:132.941895px;}
.h3_c00027{height:161.857910px;}
.h0_c00027{height:1382.700000px;}
.h1_c00027{height:1383.000000px;}
.w2_c00027{width:104.875500px;}
.w0_c00027{width:863.175000px;}
.w1_c00027{width:863.250000px;}
.x0_c00027{left:0.000000px;}
.xa_c00027{left:57.450000px;}
.x9_c00027{left:60.150000px;}
.x8_c00027{left:61.200000px;}
.x7_c00027{left:89.850000px;}
.x11_c00027{left:281.100000px;}
.xf_c00027{left:282.150000px;}
.x10_c00027{left:284.250000px;}
.xe_c00027{left:285.900000px;}
.xd_c00027{left:287.550000px;}
.xc_c00027{left:290.250000px;}
.x5_c00027{left:292.350000px;}
.x4_c00027{left:294.000000px;}
.x3_c00027{left:295.050000px;}
.x2_c00027{left:296.100000px;}
.x1_c00027{left:297.900000px;}
.xb_c00027{left:343.200000px;}
.x6_c00027{left:359.400000px;}
.x13_c00027{left:383.401749px;}
.x12_c00027{left:776.700000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls4_c00027{letter-spacing:-2.666667pt;}
.ls3_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:6.357333pt;}
.ls2_c00027{letter-spacing:9.173333pt;}
.ls1_c00027{letter-spacing:28.706667pt;}
.ws0_c00027{word-spacing:-81.546667pt;}
.ws5_c00027{word-spacing:-20.565333pt;}
.ws1_c00027{word-spacing:-18.637333pt;}
.ws2_c00027{word-spacing:-17.994667pt;}
.ws4_c00027{word-spacing:-0.282667pt;}
.ws6_c00027{word-spacing:0.000000pt;}
.ws3_c00027{word-spacing:12.202667pt;}
._7_c00027{margin-left:-22.357333pt;}
._8_c00027{margin-left:-12.970667pt;}
._2c_c00027{margin-left:-11.018667pt;}
._2b_c00027{margin-left:-9.248000pt;}
._2d_c00027{margin-left:-8.309333pt;}
._23_c00027{margin-left:-7.392000pt;}
._1a_c00027{margin-left:-5.866667pt;}
._1b_c00027{margin-left:-4.736000pt;}
._12_c00027{margin-left:-3.157333pt;}
._16_c00027{margin-left:-1.770667pt;}
._2_c00027{width:1.109333pt;}
._1_c00027{width:2.048000pt;}
._1e_c00027{width:2.944000pt;}
._0_c00027{width:3.840000pt;}
._c_c00027{width:4.949333pt;}
._1c_c00027{width:6.293333pt;}
._4_c00027{width:7.424000pt;}
._19_c00027{width:8.938667pt;}
._1d_c00027{width:9.970667pt;}
._11_c00027{width:11.093333pt;}
._17_c00027{width:12.778667pt;}
._13_c00027{width:14.080000pt;}
._10_c00027{width:15.616000pt;}
._e_c00027{width:16.981333pt;}
._18_c00027{width:18.069333pt;}
._20_c00027{width:19.456000pt;}
._26_c00027{width:21.701333pt;}
._14_c00027{width:23.096000pt;}
._f_c00027{width:24.064000pt;}
._25_c00027{width:25.301333pt;}
._3_c00027{width:26.368000pt;}
._15_c00027{width:27.392000pt;}
._1f_c00027{width:28.544000pt;}
._39_c00027{width:29.690667pt;}
._27_c00027{width:30.976000pt;}
._d_c00027{width:31.914667pt;}
._5_c00027{width:32.938667pt;}
._6_c00027{width:34.901333pt;}
._a_c00027{width:36.608000pt;}
._b_c00027{width:37.888000pt;}
._37_c00027{width:39.706667pt;}
._22_c00027{width:40.698667pt;}
._24_c00027{width:42.474667pt;}
._32_c00027{width:43.712000pt;}
._29_c00027{width:44.949333pt;}
._21_c00027{width:46.394667pt;}
._35_c00027{width:48.242667pt;}
._38_c00027{width:49.322667pt;}
._9_c00027{width:50.261333pt;}
._34_c00027{width:51.584000pt;}
._2e_c00027{width:53.413333pt;}
._31_c00027{width:55.402667pt;}
._2f_c00027{width:60.042667pt;}
._33_c00027{width:68.898667pt;}
._36_c00027{width:70.858667pt;}
._28_c00027{width:92.997333pt;}
._2a_c00027{width:97.792000pt;}
._30_c00027{width:151.312000pt;}
.fs7_c00027{font-size:42.666667pt;}
.fs3_c00027{font-size:69.333333pt;}
.fs5_c00027{font-size:74.666667pt;}
.fs2_c00027{font-size:77.333333pt;}
.fs4_c00027{font-size:82.666667pt;}
.fs0_c00027{font-size:85.333333pt;}
.fs6_c00027{font-size:93.333333pt;}
.fs1_c00027{font-size:146.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y2b_c00027{bottom:2.760000pt;}
.y2a_c00027{bottom:6.425206pt;}
.y29_c00027{bottom:122.693333pt;}
.y28_c00027{bottom:151.760000pt;}
.y27_c00027{bottom:182.426667pt;}
.y26_c00027{bottom:212.693333pt;}
.y25_c00027{bottom:242.426667pt;}
.y24_c00027{bottom:272.160000pt;}
.y23_c00027{bottom:302.160000pt;}
.y22_c00027{bottom:332.160000pt;}
.y21_c00027{bottom:361.893333pt;}
.y20_c00027{bottom:392.160000pt;}
.y19_c00027{bottom:409.760000pt;}
.y1f_c00027{bottom:421.760000pt;}
.y18_c00027{bottom:436.160000pt;}
.y1e_c00027{bottom:451.226667pt;}
.y17_c00027{bottom:462.293333pt;}
.y1d_c00027{bottom:481.093333pt;}
.y16_c00027{bottom:488.426667pt;}
.y1c_c00027{bottom:510.826667pt;}
.y15_c00027{bottom:514.560000pt;}
.y1b_c00027{bottom:540.560000pt;}
.y14_c00027{bottom:540.960000pt;}
.y13_c00027{bottom:566.960000pt;}
.y1a_c00027{bottom:570.293333pt;}
.y12_c00027{bottom:628.826667pt;}
.y11_c00027{bottom:687.626667pt;}
.y10_c00027{bottom:719.360000pt;}
.yf_c00027{bottom:748.826667pt;}
.ye_c00027{bottom:778.293333pt;}
.yd_c00027{bottom:807.626667pt;}
.yc_c00027{bottom:836.960000pt;}
.yb_c00027{bottom:865.760000pt;}
.ya_c00027{bottom:895.493333pt;}
.y9_c00027{bottom:924.693333pt;}
.y8_c00027{bottom:953.760000pt;}
.y7_c00027{bottom:983.493333pt;}
.y6_c00027{bottom:1015.760000pt;}
.y5_c00027{bottom:1043.093333pt;}
.y4_c00027{bottom:1072.160000pt;}
.y3_c00027{bottom:1101.626667pt;}
.y2_c00027{bottom:1130.960000pt;}
.y1_c00027{bottom:1159.893333pt;}
.ha_c00027{height:11.733399pt;}
.hb_c00027{height:38.937500pt;}
.h5_c00027{height:86.634667pt;}
.h8_c00027{height:87.390625pt;}
.h6_c00027{height:87.783854pt;}
.h4_c00027{height:89.429333pt;}
.h7_c00027{height:97.912760pt;}
.h2_c00027{height:108.041667pt;}
.h9_c00027{height:118.170573pt;}
.h3_c00027{height:143.873698pt;}
.h0_c00027{height:1229.066667pt;}
.h1_c00027{height:1229.333333pt;}
.w2_c00027{width:93.222667pt;}
.w0_c00027{width:767.266667pt;}
.w1_c00027{width:767.333333pt;}
.x0_c00027{left:0.000000pt;}
.xa_c00027{left:51.066667pt;}
.x9_c00027{left:53.466667pt;}
.x8_c00027{left:54.400000pt;}
.x7_c00027{left:79.866667pt;}
.x11_c00027{left:249.866667pt;}
.xf_c00027{left:250.800000pt;}
.x10_c00027{left:252.666667pt;}
.xe_c00027{left:254.133333pt;}
.xd_c00027{left:255.600000pt;}
.xc_c00027{left:258.000000pt;}
.x5_c00027{left:259.866667pt;}
.x4_c00027{left:261.333333pt;}
.x3_c00027{left:262.266667pt;}
.x2_c00027{left:263.200000pt;}
.x1_c00027{left:264.800000pt;}
.xb_c00027{left:305.066667pt;}
.x6_c00027{left:319.466667pt;}
.x13_c00027{left:340.801554pt;}
.x12_c00027{left:690.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_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_e28d4bc38b9ac5ee0dedeb22.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_4c4320ae03bddd38c75c9a42.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_03fdf609fc2b4649ffa5254c.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_51689219dff0df1d4020169f.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_17e0aadbf68bb1366198e64b.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00028;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00028{font-family:ff6_c00028;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00028{vertical-align:-75.600000px;}
.v0_c00028{vertical-align:0.000000px;}
.ls1_c00028{letter-spacing:-3.000000px;}
.ls0_c00028{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00028{word-spacing:-20.250000px;}
.ws0_c00028{word-spacing:-15.984000px;}
.ws2_c00028{word-spacing:0.000000px;}
._19_c00028{margin-left:-21.888000px;}
._2f_c00028{margin-left:-15.936000px;}
._34_c00028{margin-left:-13.536000px;}
._1d_c00028{margin-left:-10.560000px;}
._18_c00028{margin-left:-8.736000px;}
._1b_c00028{margin-left:-7.392000px;}
._1a_c00028{margin-left:-5.568000px;}
._2c_c00028{margin-left:-4.320000px;}
._5_c00028{margin-left:-3.264000px;}
._e_c00028{margin-left:-1.248000px;}
._c_c00028{width:1.632000px;}
._2_c00028{width:3.360000px;}
._3_c00028{width:4.416000px;}
._1_c00028{width:6.240000px;}
._0_c00028{width:8.256000px;}
._7_c00028{width:9.408000px;}
._8_c00028{width:10.752000px;}
._4_c00028{width:12.000000px;}
._23_c00028{width:13.248000px;}
._16_c00028{width:14.592000px;}
._d_c00028{width:16.224000px;}
._14_c00028{width:17.376000px;}
._9_c00028{width:18.528000px;}
._2a_c00028{width:19.680000px;}
._b_c00028{width:21.024000px;}
._24_c00028{width:24.192000px;}
._11_c00028{width:25.440000px;}
._f_c00028{width:27.168000px;}
._a_c00028{width:28.512000px;}
._13_c00028{width:30.432000px;}
._17_c00028{width:31.872000px;}
._22_c00028{width:32.928000px;}
._6_c00028{width:34.176000px;}
._12_c00028{width:36.096000px;}
._26_c00028{width:37.248000px;}
._10_c00028{width:38.688000px;}
._15_c00028{width:40.512000px;}
._25_c00028{width:41.568000px;}
._1f_c00028{width:42.912000px;}
._1c_c00028{width:44.640000px;}
._2b_c00028{width:45.696000px;}
._27_c00028{width:46.848000px;}
._29_c00028{width:47.904000px;}
._21_c00028{width:49.824000px;}
._28_c00028{width:51.072000px;}
._20_c00028{width:57.792000px;}
._1e_c00028{width:81.600000px;}
._30_c00028{width:83.616000px;}
._31_c00028{width:97.056000px;}
._2e_c00028{width:125.664000px;}
._33_c00028{width:172.320000px;}
._32_c00028{width:207.384000px;}
._2d_c00028{width:442.272000px;}
._36_c00028{width:717.600000px;}
._35_c00028{width:858.336000px;}
.fc2_c00028{color:transparent;}
.fc1_c00028{color:rgb(128,128,128);}
.fc0_c00028{color:rgb(0,0,0);}
.fs1_c00028{font-size:36.000000px;}
.fs4_c00028{font-size:48.000000px;}
.fs2_c00028{font-size:60.000000px;}
.fs3_c00028{font-size:93.000000px;}
.fs0_c00028{font-size:96.000000px;}
.y0_c00028{bottom:0.000000px;}
.y27_c00028{bottom:3.105000px;}
.y26_c00028{bottom:7.228355px;}
.y23_c00028{bottom:100.935000px;}
.y22_c00028{bottom:134.235000px;}
.y25_c00028{bottom:151.185000px;}
.y21_c00028{bottom:168.735000px;}
.y24_c00028{bottom:180.135000px;}
.y20_c00028{bottom:235.935000px;}
.y1f_c00028{bottom:305.085000px;}
.y1e_c00028{bottom:337.185000px;}
.y1d_c00028{bottom:371.235000px;}
.y1c_c00028{bottom:404.985000px;}
.y1b_c00028{bottom:437.985000px;}
.y1a_c00028{bottom:471.435000px;}
.y19_c00028{bottom:504.435000px;}
.y18_c00028{bottom:529.785000px;}
.y17_c00028{bottom:538.185000px;}
.y16_c00028{bottom:571.035000px;}
.y15_c00028{bottom:604.485000px;}
.y14_c00028{bottom:637.485000px;}
.y13_c00028{bottom:671.235000px;}
.y12_c00028{bottom:704.235000px;}
.y11_c00028{bottom:737.685000px;}
.y10_c00028{bottom:770.835000px;}
.yf_c00028{bottom:803.535000px;}
.ye_c00028{bottom:836.535000px;}
.yd_c00028{bottom:869.385000px;}
.yc_c00028{bottom:902.385000px;}
.yb_c00028{bottom:935.535000px;}
.ya_c00028{bottom:969.585000px;}
.y9_c00028{bottom:1002.585000px;}
.y8_c00028{bottom:1034.685000px;}
.y7_c00028{bottom:1067.985000px;}
.y6_c00028{bottom:1101.135000px;}
.y5_c00028{bottom:1134.285000px;}
.y4_c00028{bottom:1166.685000px;}
.y3_c00028{bottom:1199.685000px;}
.y2_c00028{bottom:1232.235000px;}
.y1_c00028{bottom:1265.535000px;}
.h5_c00028{height:13.200074px;}
.h3_c00028{height:35.314453px;}
.h6_c00028{height:43.804688px;}
.h4_c00028{height:97.464000px;}
.h2_c00028{height:121.546875px;}
.h1_c00028{height:1353.000000px;}
.h0_c00028{height:1353.225000px;}
.w2_c00028{width:104.875500px;}
.w0_c00028{width:858.600000px;}
.w1_c00028{width:858.750000px;}
.x0_c00028{left:0.000000px;}
.x6_c00028{left:12.600000px;}
.x4_c00028{left:14.400000px;}
.x3_c00028{left:16.500000px;}
.x2_c00028{left:17.550000px;}
.x1_c00028{left:18.600000px;}
.x8_c00028{left:25.050000px;}
.x7_c00028{left:76.950000px;}
.x9_c00028{left:89.400000px;}
.xc_c00028{left:381.114258px;}
.x5_c00028{left:454.650000px;}
.xb_c00028{left:609.900000px;}
.xa_c00028{left:638.550000px;}
@media print{
.v1_c00028{vertical-align:-67.200000pt;}
.v0_c00028{vertical-align:0.000000pt;}
.ls1_c00028{letter-spacing:-2.666667pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws1_c00028{word-spacing:-18.000000pt;}
.ws0_c00028{word-spacing:-14.208000pt;}
.ws2_c00028{word-spacing:0.000000pt;}
._19_c00028{margin-left:-19.456000pt;}
._2f_c00028{margin-left:-14.165333pt;}
._34_c00028{margin-left:-12.032000pt;}
._1d_c00028{margin-left:-9.386667pt;}
._18_c00028{margin-left:-7.765333pt;}
._1b_c00028{margin-left:-6.570667pt;}
._1a_c00028{margin-left:-4.949333pt;}
._2c_c00028{margin-left:-3.840000pt;}
._5_c00028{margin-left:-2.901333pt;}
._e_c00028{margin-left:-1.109333pt;}
._c_c00028{width:1.450667pt;}
._2_c00028{width:2.986667pt;}
._3_c00028{width:3.925333pt;}
._1_c00028{width:5.546667pt;}
._0_c00028{width:7.338667pt;}
._7_c00028{width:8.362667pt;}
._8_c00028{width:9.557333pt;}
._4_c00028{width:10.666667pt;}
._23_c00028{width:11.776000pt;}
._16_c00028{width:12.970667pt;}
._d_c00028{width:14.421333pt;}
._14_c00028{width:15.445333pt;}
._9_c00028{width:16.469333pt;}
._2a_c00028{width:17.493333pt;}
._b_c00028{width:18.688000pt;}
._24_c00028{width:21.504000pt;}
._11_c00028{width:22.613333pt;}
._f_c00028{width:24.149333pt;}
._a_c00028{width:25.344000pt;}
._13_c00028{width:27.050667pt;}
._17_c00028{width:28.330667pt;}
._22_c00028{width:29.269333pt;}
._6_c00028{width:30.378667pt;}
._12_c00028{width:32.085333pt;}
._26_c00028{width:33.109333pt;}
._10_c00028{width:34.389333pt;}
._15_c00028{width:36.010667pt;}
._25_c00028{width:36.949333pt;}
._1f_c00028{width:38.144000pt;}
._1c_c00028{width:39.680000pt;}
._2b_c00028{width:40.618667pt;}
._27_c00028{width:41.642667pt;}
._29_c00028{width:42.581333pt;}
._21_c00028{width:44.288000pt;}
._28_c00028{width:45.397333pt;}
._20_c00028{width:51.370667pt;}
._1e_c00028{width:72.533333pt;}
._30_c00028{width:74.325333pt;}
._31_c00028{width:86.272000pt;}
._2e_c00028{width:111.701333pt;}
._33_c00028{width:153.173333pt;}
._32_c00028{width:184.341333pt;}
._2d_c00028{width:393.130667pt;}
._36_c00028{width:637.866667pt;}
._35_c00028{width:762.965333pt;}
.fs1_c00028{font-size:32.000000pt;}
.fs4_c00028{font-size:42.666667pt;}
.fs2_c00028{font-size:53.333333pt;}
.fs3_c00028{font-size:82.666667pt;}
.fs0_c00028{font-size:85.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y27_c00028{bottom:2.760000pt;}
.y26_c00028{bottom:6.425204pt;}
.y23_c00028{bottom:89.720000pt;}
.y22_c00028{bottom:119.320000pt;}
.y25_c00028{bottom:134.386667pt;}
.y21_c00028{bottom:149.986667pt;}
.y24_c00028{bottom:160.120000pt;}
.y20_c00028{bottom:209.720000pt;}
.y1f_c00028{bottom:271.186667pt;}
.y1e_c00028{bottom:299.720000pt;}
.y1d_c00028{bottom:329.986667pt;}
.y1c_c00028{bottom:359.986667pt;}
.y1b_c00028{bottom:389.320000pt;}
.y1a_c00028{bottom:419.053333pt;}
.y19_c00028{bottom:448.386667pt;}
.y18_c00028{bottom:470.920000pt;}
.y17_c00028{bottom:478.386667pt;}
.y16_c00028{bottom:507.586667pt;}
.y15_c00028{bottom:537.320000pt;}
.y14_c00028{bottom:566.653333pt;}
.y13_c00028{bottom:596.653333pt;}
.y12_c00028{bottom:625.986667pt;}
.y11_c00028{bottom:655.720000pt;}
.y10_c00028{bottom:685.186667pt;}
.yf_c00028{bottom:714.253333pt;}
.ye_c00028{bottom:743.586667pt;}
.yd_c00028{bottom:772.786667pt;}
.yc_c00028{bottom:802.120000pt;}
.yb_c00028{bottom:831.586667pt;}
.ya_c00028{bottom:861.853333pt;}
.y9_c00028{bottom:891.186667pt;}
.y8_c00028{bottom:919.720000pt;}
.y7_c00028{bottom:949.320000pt;}
.y6_c00028{bottom:978.786667pt;}
.y5_c00028{bottom:1008.253333pt;}
.y4_c00028{bottom:1037.053333pt;}
.y3_c00028{bottom:1066.386667pt;}
.y2_c00028{bottom:1095.320000pt;}
.y1_c00028{bottom:1124.920000pt;}
.h5_c00028{height:11.733399pt;}
.h3_c00028{height:31.390625pt;}
.h6_c00028{height:38.937500pt;}
.h4_c00028{height:86.634667pt;}
.h2_c00028{height:108.041667pt;}
.h1_c00028{height:1202.666667pt;}
.h0_c00028{height:1202.866667pt;}
.w2_c00028{width:93.222667pt;}
.w0_c00028{width:763.200000pt;}
.w1_c00028{width:763.333333pt;}
.x0_c00028{left:0.000000pt;}
.x6_c00028{left:11.200000pt;}
.x4_c00028{left:12.800000pt;}
.x3_c00028{left:14.666667pt;}
.x2_c00028{left:15.600000pt;}
.x1_c00028{left:16.533333pt;}
.x8_c00028{left:22.266667pt;}
.x7_c00028{left:68.400000pt;}
.x9_c00028{left:79.466667pt;}
.xc_c00028{left:338.768229pt;}
.x5_c00028{left:404.133333pt;}
.xb_c00028{left:542.133333pt;}
.xa_c00028{left:567.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_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_cfc4fdeaf4ea06c20e272fda.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_d460f133abb7ded40e21a50e.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_7cea0feb7fb5216646151dea.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_a53a24f17b2f983966981181.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00029;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00029;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00029{font-family:ff6_c00029;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls2_c00029{letter-spacing:0.000000px;}
.ls3_c00029{letter-spacing:6.000000px;}
.ls1_c00029{letter-spacing:11.856000px;}
.ls0_c00029{letter-spacing:13.485000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00029{word-spacing:-61.857000px;}
.ws4_c00029{word-spacing:-57.000000px;}
.ws3_c00029{word-spacing:-23.136000px;}
.ws2_c00029{word-spacing:-20.244000px;}
.ws5_c00029{word-spacing:0.000000px;}
.ws0_c00029{word-spacing:1.260000px;}
._2a_c00029{margin-left:-29.667000px;}
._38_c00029{margin-left:-25.056000px;}
._30_c00029{margin-left:-23.181000px;}
._37_c00029{margin-left:-20.799000px;}
._32_c00029{margin-left:-17.568000px;}
._39_c00029{margin-left:-14.592000px;}
._2f_c00029{margin-left:-11.511000px;}
._3b_c00029{margin-left:-8.652000px;}
._f_c00029{margin-left:-7.104000px;}
._9_c00029{margin-left:-5.568000px;}
._a_c00029{margin-left:-3.936000px;}
._c_c00029{margin-left:-2.784000px;}
._d_c00029{margin-left:-1.632000px;}
._2_c00029{width:1.827000px;}
._13_c00029{width:3.360000px;}
._7_c00029{width:4.437000px;}
._10_c00029{width:5.952000px;}
._15_c00029{width:7.107000px;}
._11_c00029{width:8.352000px;}
._4_c00029{width:9.570000px;}
._20_c00029{width:11.637000px;}
._16_c00029{width:12.768000px;}
._14_c00029{width:14.685000px;}
._6_c00029{width:16.182000px;}
._1e_c00029{width:17.652000px;}
._5_c00029{width:19.227000px;}
._29_c00029{width:20.841000px;}
._2c_c00029{width:21.873000px;}
._0_c00029{width:23.016000px;}
._1_c00029{width:24.192000px;}
._17_c00029{width:25.920000px;}
._12_c00029{width:27.414000px;}
._35_c00029{width:28.731000px;}
._2b_c00029{width:29.964000px;}
._3_c00029{width:32.364000px;}
._21_c00029{width:33.483000px;}
._1f_c00029{width:34.518000px;}
._1d_c00029{width:36.471000px;}
._3a_c00029{width:37.506000px;}
._23_c00029{width:38.679000px;}
._1b_c00029{width:40.755000px;}
._27_c00029{width:42.336000px;}
._26_c00029{width:43.521000px;}
._25_c00029{width:44.736000px;}
._28_c00029{width:45.783000px;}
._8_c00029{width:47.040000px;}
._b_c00029{width:48.576000px;}
._22_c00029{width:49.608000px;}
._2e_c00029{width:50.928000px;}
._24_c00029{width:52.236000px;}
._2d_c00029{width:54.603000px;}
._1c_c00029{width:56.562000px;}
._e_c00029{width:60.312000px;}
._19_c00029{width:64.608000px;}
._1a_c00029{width:66.507000px;}
._36_c00029{width:121.155000px;}
._34_c00029{width:155.037000px;}
._3c_c00029{width:168.000000px;}
._33_c00029{width:170.112000px;}
._18_c00029{width:415.554000px;}
._31_c00029{width:920.838000px;}
._3d_c00029{width:1680.876000px;}
.fc2_c00029{color:transparent;}
.fc1_c00029{color:rgb(128,128,128);}
.fc0_c00029{color:rgb(0,0,0);}
.fs5_c00029{font-size:48.000000px;}
.fs3_c00029{font-size:78.000000px;}
.fs0_c00029{font-size:84.000000px;}
.fs1_c00029{font-size:87.000000px;}
.fs2_c00029{font-size:96.000000px;}
.fs4_c00029{font-size:102.000000px;}
.y0_c00029{bottom:0.000000px;}
.y2b_c00029{bottom:3.105000px;}
.y2a_c00029{bottom:7.228357px;}
.y29_c00029{bottom:123.930000px;}
.y28_c00029{bottom:158.580000px;}
.y5_c00029{bottom:176.130000px;}
.y27_c00029{bottom:192.780000px;}
.y26_c00029{bottom:227.130000px;}
.y25_c00029{bottom:260.580000px;}
.y24_c00029{bottom:294.330000px;}
.y23_c00029{bottom:328.080000px;}
.y22_c00029{bottom:361.830000px;}
.y21_c00029{bottom:395.580000px;}
.y4_c00029{bottom:412.380000px;}
.y20_c00029{bottom:429.030000px;}
.y3_c00029{bottom:444.180000px;}
.y1f_c00029{bottom:462.780000px;}
.y1e_c00029{bottom:496.530000px;}
.y1d_c00029{bottom:530.280000px;}
.y1c_c00029{bottom:563.730000px;}
.y2_c00029{bottom:571.830000px;}
.y1b_c00029{bottom:596.730000px;}
.y1_c00029{bottom:601.830000px;}
.y1a_c00029{bottom:629.880000px;}
.y19_c00029{bottom:663.480000px;}
.y18_c00029{bottom:696.630000px;}
.y17_c00029{bottom:729.780000px;}
.y16_c00029{bottom:763.530000px;}
.y15_c00029{bottom:796.830000px;}
.y14_c00029{bottom:829.680000px;}
.y13_c00029{bottom:863.280000px;}
.y12_c00029{bottom:896.430000px;}
.y11_c00029{bottom:929.430000px;}
.y10_c00029{bottom:962.580000px;}
.yf_c00029{bottom:995.580000px;}
.ye_c00029{bottom:1028.430000px;}
.yd_c00029{bottom:1061.730000px;}
.yc_c00029{bottom:1094.880000px;}
.yb_c00029{bottom:1127.880000px;}
.ya_c00029{bottom:1161.330000px;}
.y9_c00029{bottom:1194.030000px;}
.y8_c00029{bottom:1226.880000px;}
.y7_c00029{bottom:1259.880000px;}
.y6_c00029{bottom:1292.730000px;}
.h6_c00029{height:13.200074px;}
.h7_c00029{height:43.804688px;}
.h5_c00029{height:91.291992px;}
.h2_c00029{height:98.314453px;}
.h3_c00029{height:110.151855px;}
.h4_c00029{height:121.546875px;}
.h0_c00029{height:1382.700000px;}
.h1_c00029{height:1383.000000px;}
.w2_c00029{width:104.875500px;}
.w0_c00029{width:863.175000px;}
.w1_c00029{width:863.250000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:71.550000px;}
.x3_c00029{left:74.700000px;}
.x1_c00029{left:128.250000px;}
.x4_c00029{left:166.050000px;}
.xd_c00029{left:277.350000px;}
.xc_c00029{left:280.500000px;}
.x5_c00029{left:282.600000px;}
.x6_c00029{left:284.400000px;}
.x7_c00029{left:285.450000px;}
.x8_c00029{left:286.500000px;}
.x9_c00029{left:288.150000px;}
.xa_c00029{left:289.200000px;}
.xb_c00029{left:290.850000px;}
.xe_c00029{left:383.401749px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls2_c00029{letter-spacing:0.000000pt;}
.ls3_c00029{letter-spacing:5.333333pt;}
.ls1_c00029{letter-spacing:10.538667pt;}
.ls0_c00029{letter-spacing:11.986667pt;}
.ws1_c00029{word-spacing:-54.984000pt;}
.ws4_c00029{word-spacing:-50.666667pt;}
.ws3_c00029{word-spacing:-20.565333pt;}
.ws2_c00029{word-spacing:-17.994667pt;}
.ws5_c00029{word-spacing:0.000000pt;}
.ws0_c00029{word-spacing:1.120000pt;}
._2a_c00029{margin-left:-26.370667pt;}
._38_c00029{margin-left:-22.272000pt;}
._30_c00029{margin-left:-20.605333pt;}
._37_c00029{margin-left:-18.488000pt;}
._32_c00029{margin-left:-15.616000pt;}
._39_c00029{margin-left:-12.970667pt;}
._2f_c00029{margin-left:-10.232000pt;}
._3b_c00029{margin-left:-7.690667pt;}
._f_c00029{margin-left:-6.314667pt;}
._9_c00029{margin-left:-4.949333pt;}
._a_c00029{margin-left:-3.498667pt;}
._c_c00029{margin-left:-2.474667pt;}
._d_c00029{margin-left:-1.450667pt;}
._2_c00029{width:1.624000pt;}
._13_c00029{width:2.986667pt;}
._7_c00029{width:3.944000pt;}
._10_c00029{width:5.290667pt;}
._15_c00029{width:6.317333pt;}
._11_c00029{width:7.424000pt;}
._4_c00029{width:8.506667pt;}
._20_c00029{width:10.344000pt;}
._16_c00029{width:11.349333pt;}
._14_c00029{width:13.053333pt;}
._6_c00029{width:14.384000pt;}
._1e_c00029{width:15.690667pt;}
._5_c00029{width:17.090667pt;}
._29_c00029{width:18.525333pt;}
._2c_c00029{width:19.442667pt;}
._0_c00029{width:20.458667pt;}
._1_c00029{width:21.504000pt;}
._17_c00029{width:23.040000pt;}
._12_c00029{width:24.368000pt;}
._35_c00029{width:25.538667pt;}
._2b_c00029{width:26.634667pt;}
._3_c00029{width:28.768000pt;}
._21_c00029{width:29.762667pt;}
._1f_c00029{width:30.682667pt;}
._1d_c00029{width:32.418667pt;}
._3a_c00029{width:33.338667pt;}
._23_c00029{width:34.381333pt;}
._1b_c00029{width:36.226667pt;}
._27_c00029{width:37.632000pt;}
._26_c00029{width:38.685333pt;}
._25_c00029{width:39.765333pt;}
._28_c00029{width:40.696000pt;}
._8_c00029{width:41.813333pt;}
._b_c00029{width:43.178667pt;}
._22_c00029{width:44.096000pt;}
._2e_c00029{width:45.269333pt;}
._24_c00029{width:46.432000pt;}
._2d_c00029{width:48.536000pt;}
._1c_c00029{width:50.277333pt;}
._e_c00029{width:53.610667pt;}
._19_c00029{width:57.429333pt;}
._1a_c00029{width:59.117333pt;}
._36_c00029{width:107.693333pt;}
._34_c00029{width:137.810667pt;}
._3c_c00029{width:149.333333pt;}
._33_c00029{width:151.210667pt;}
._18_c00029{width:369.381333pt;}
._31_c00029{width:818.522667pt;}
._3d_c00029{width:1494.112000pt;}
.fs5_c00029{font-size:42.666667pt;}
.fs3_c00029{font-size:69.333333pt;}
.fs0_c00029{font-size:74.666667pt;}
.fs1_c00029{font-size:77.333333pt;}
.fs2_c00029{font-size:85.333333pt;}
.fs4_c00029{font-size:90.666667pt;}
.y0_c00029{bottom:0.000000pt;}
.y2b_c00029{bottom:2.760000pt;}
.y2a_c00029{bottom:6.425206pt;}
.y29_c00029{bottom:110.160000pt;}
.y28_c00029{bottom:140.960000pt;}
.y5_c00029{bottom:156.560000pt;}
.y27_c00029{bottom:171.360000pt;}
.y26_c00029{bottom:201.893333pt;}
.y25_c00029{bottom:231.626667pt;}
.y24_c00029{bottom:261.626667pt;}
.y23_c00029{bottom:291.626667pt;}
.y22_c00029{bottom:321.626667pt;}
.y21_c00029{bottom:351.626667pt;}
.y4_c00029{bottom:366.560000pt;}
.y20_c00029{bottom:381.360000pt;}
.y3_c00029{bottom:394.826667pt;}
.y1f_c00029{bottom:411.360000pt;}
.y1e_c00029{bottom:441.360000pt;}
.y1d_c00029{bottom:471.360000pt;}
.y1c_c00029{bottom:501.093333pt;}
.y2_c00029{bottom:508.293333pt;}
.y1b_c00029{bottom:530.426667pt;}
.y1_c00029{bottom:534.960000pt;}
.y1a_c00029{bottom:559.893333pt;}
.y19_c00029{bottom:589.760000pt;}
.y18_c00029{bottom:619.226667pt;}
.y17_c00029{bottom:648.693333pt;}
.y16_c00029{bottom:678.693333pt;}
.y15_c00029{bottom:708.293333pt;}
.y14_c00029{bottom:737.493333pt;}
.y13_c00029{bottom:767.360000pt;}
.y12_c00029{bottom:796.826667pt;}
.y11_c00029{bottom:826.160000pt;}
.y10_c00029{bottom:855.626667pt;}
.yf_c00029{bottom:884.960000pt;}
.ye_c00029{bottom:914.160000pt;}
.yd_c00029{bottom:943.760000pt;}
.yc_c00029{bottom:973.226667pt;}
.yb_c00029{bottom:1002.560000pt;}
.ya_c00029{bottom:1032.293333pt;}
.y9_c00029{bottom:1061.360000pt;}
.y8_c00029{bottom:1090.560000pt;}
.y7_c00029{bottom:1119.893333pt;}
.y6_c00029{bottom:1149.093333pt;}
.h6_c00029{height:11.733399pt;}
.h7_c00029{height:38.937500pt;}
.h5_c00029{height:81.148438pt;}
.h2_c00029{height:87.390625pt;}
.h3_c00029{height:97.912760pt;}
.h4_c00029{height:108.041667pt;}
.h0_c00029{height:1229.066667pt;}
.h1_c00029{height:1229.333333pt;}
.w2_c00029{width:93.222667pt;}
.w0_c00029{width:767.266667pt;}
.w1_c00029{width:767.333333pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:63.600000pt;}
.x3_c00029{left:66.400000pt;}
.x1_c00029{left:114.000000pt;}
.x4_c00029{left:147.600000pt;}
.xd_c00029{left:246.533333pt;}
.xc_c00029{left:249.333333pt;}
.x5_c00029{left:251.200000pt;}
.x6_c00029{left:252.800000pt;}
.x7_c00029{left:253.733333pt;}
.x8_c00029{left:254.666667pt;}
.x9_c00029{left:256.133333pt;}
.xa_c00029{left:257.066667pt;}
.xb_c00029{left:258.533333pt;}
.xe_c00029{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6dbeafbd4d4f1e4f997180d4.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_ac08c44fc352ebe28dd7137f.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_47285380e83758f8119d3471.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;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_c00030;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls4_c00030{letter-spacing:-12.000000px;}
.ls2_c00030{letter-spacing:0.000000px;}
.ls1_c00030{letter-spacing:14.256000px;}
.ls0_c00030{letter-spacing:24.600000px;}
.ls3_c00030{letter-spacing:72.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00030{word-spacing:-95.859000px;}
.ws5_c00030{word-spacing:-25.305000px;}
.ws3_c00030{word-spacing:-24.750000px;}
.ws2_c00030{word-spacing:-23.859000px;}
.ws0_c00030{word-spacing:-20.244000px;}
.ws6_c00030{word-spacing:0.000000px;}
.ws4_c00030{word-spacing:15.768000px;}
._0_c00030{margin-left:-80.388000px;}
._2b_c00030{margin-left:-76.059000px;}
._2d_c00030{margin-left:-72.234000px;}
._30_c00030{margin-left:-67.110000px;}
._2f_c00030{margin-left:-63.084000px;}
._2e_c00030{margin-left:-39.423000px;}
._31_c00030{margin-left:-33.846000px;}
._45_c00030{margin-left:-28.719000px;}
._44_c00030{margin-left:-24.891000px;}
._49_c00030{margin-left:-19.380000px;}
._2c_c00030{margin-left:-17.730000px;}
._41_c00030{margin-left:-15.012000px;}
._3_c00030{margin-left:-13.572000px;}
._1c_c00030{margin-left:-12.336000px;}
._26_c00030{margin-left:-10.680000px;}
._5_c00030{margin-left:-9.048000px;}
._7_c00030{margin-left:-7.917000px;}
._6_c00030{margin-left:-6.090000px;}
._18_c00030{margin-left:-4.956000px;}
._19_c00030{margin-left:-3.780000px;}
._17_c00030{margin-left:-2.400000px;}
._13_c00030{margin-left:-1.152000px;}
._14_c00030{width:1.440000px;}
._b_c00030{width:2.688000px;}
._f_c00030{width:4.416000px;}
._9_c00030{width:5.472000px;}
._d_c00030{width:6.528000px;}
._2_c00030{width:7.830000px;}
._16_c00030{width:9.537000px;}
._e_c00030{width:10.809000px;}
._8_c00030{width:12.615000px;}
._1a_c00030{width:14.067000px;}
._1e_c00030{width:15.876000px;}
._1b_c00030{width:17.088000px;}
._12_c00030{width:19.008000px;}
._33_c00030{width:20.103000px;}
._25_c00030{width:21.504000px;}
._32_c00030{width:23.589000px;}
._c_c00030{width:25.536000px;}
._42_c00030{width:26.787000px;}
._21_c00030{width:28.032000px;}
._38_c00030{width:29.880000px;}
._24_c00030{width:31.506000px;}
._23_c00030{width:32.604000px;}
._10_c00030{width:34.080000px;}
._3f_c00030{width:35.997000px;}
._35_c00030{width:37.149000px;}
._34_c00030{width:38.688000px;}
._11_c00030{width:39.936000px;}
._3c_c00030{width:41.016000px;}
._37_c00030{width:43.200000px;}
._20_c00030{width:44.796000px;}
._46_c00030{width:46.218000px;}
._1f_c00030{width:47.241000px;}
._36_c00030{width:49.638000px;}
._3e_c00030{width:54.096000px;}
._47_c00030{width:60.963000px;}
._1d_c00030{width:65.826000px;}
._48_c00030{width:69.120000px;}
._39_c00030{width:73.200000px;}
._3d_c00030{width:77.652000px;}
._3a_c00030{width:79.590000px;}
._40_c00030{width:80.733000px;}
._1_c00030{width:109.794000px;}
._4b_c00030{width:159.474000px;}
._a_c00030{width:172.128000px;}
._15_c00030{width:181.680000px;}
._29_c00030{width:200.514000px;}
._27_c00030{width:329.808000px;}
._4_c00030{width:337.821000px;}
._3b_c00030{width:414.339000px;}
._28_c00030{width:424.167000px;}
._4a_c00030{width:514.542000px;}
._22_c00030{width:661.182000px;}
._43_c00030{width:756.621000px;}
._2a_c00030{width:770.625000px;}
.fc2_c00030{color:transparent;}
.fc1_c00030{color:rgb(128,128,128);}
.fc0_c00030{color:rgb(0,0,0);}
.fs6_c00030{font-size:48.000000px;}
.fs2_c00030{font-size:84.000000px;}
.fs0_c00030{font-size:87.000000px;}
.fs1_c00030{font-size:96.000000px;}
.fs3_c00030{font-size:99.000000px;}
.fs5_c00030{font-size:102.000000px;}
.fs4_c00030{font-size:105.000000px;}
.y0_c00030{bottom:0.000000px;}
.y23_c00030{bottom:3.105000px;}
.y22_c00030{bottom:7.228369px;}
.y21_c00030{bottom:86.970000px;}
.y20_c00030{bottom:185.220000px;}
.y1f_c00030{bottom:220.770000px;}
.y1e_c00030{bottom:254.820000px;}
.y1d_c00030{bottom:288.870000px;}
.y1c_c00030{bottom:322.620000px;}
.y1b_c00030{bottom:356.370000px;}
.y1a_c00030{bottom:389.370000px;}
.y19_c00030{bottom:423.120000px;}
.y18_c00030{bottom:456.870000px;}
.y17_c00030{bottom:490.020000px;}
.y16_c00030{bottom:523.770000px;}
.y15_c00030{bottom:556.920000px;}
.y14_c00030{bottom:590.220000px;}
.y13_c00030{bottom:622.920000px;}
.y12_c00030{bottom:656.070000px;}
.y11_c00030{bottom:689.070000px;}
.y10_c00030{bottom:724.170000px;}
.yf_c00030{bottom:756.270000px;}
.ye_c00030{bottom:789.720000px;}
.yd_c00030{bottom:822.120000px;}
.yc_c00030{bottom:854.820000px;}
.yb_c00030{bottom:888.270000px;}
.ya_c00030{bottom:921.420000px;}
.y9_c00030{bottom:952.470000px;}
.y8_c00030{bottom:987.420000px;}
.y7_c00030{bottom:1017.870000px;}
.y6_c00030{bottom:1040.070000px;}
.y5_c00030{bottom:1053.720000px;}
.y4_c00030{bottom:1088.070000px;}
.y3_c00030{bottom:1122.570000px;}
.y2_c00030{bottom:1154.220000px;}
.y1_c00030{bottom:1184.670000px;}
.h6_c00030{height:13.200073px;}
.h7_c00030{height:43.804688px;}
.h2_c00030{height:110.151855px;}
.h3_c00030{height:121.546875px;}
.h4_c00030{height:125.345215px;}
.h5_c00030{height:132.941895px;}
.h0_c00030{height:1334.850000px;}
.h1_c00030{height:1335.000000px;}
.w2_c00030{width:104.875500px;}
.w0_c00030{width:847.275000px;}
.w1_c00030{width:847.500000px;}
.x0_c00030{left:0.000000px;}
.x8_c00030{left:34.350000px;}
.x7_c00030{left:36.000000px;}
.x6_c00030{left:37.050000px;}
.x4_c00030{left:38.100000px;}
.x3_c00030{left:39.150000px;}
.x9_c00030{left:40.800000px;}
.xa_c00030{left:42.450000px;}
.xb_c00030{left:44.100000px;}
.x2_c00030{left:90.900000px;}
.x5_c00030{left:108.300000px;}
.xd_c00030{left:375.451721px;}
.x1_c00030{left:381.750000px;}
.xc_c00030{left:520.350000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls4_c00030{letter-spacing:-10.666667pt;}
.ls2_c00030{letter-spacing:0.000000pt;}
.ls1_c00030{letter-spacing:12.672000pt;}
.ls0_c00030{letter-spacing:21.866667pt;}
.ls3_c00030{letter-spacing:64.000000pt;}
.ws1_c00030{word-spacing:-85.208000pt;}
.ws5_c00030{word-spacing:-22.493333pt;}
.ws3_c00030{word-spacing:-22.000000pt;}
.ws2_c00030{word-spacing:-21.208000pt;}
.ws0_c00030{word-spacing:-17.994667pt;}
.ws6_c00030{word-spacing:0.000000pt;}
.ws4_c00030{word-spacing:14.016000pt;}
._0_c00030{margin-left:-71.456000pt;}
._2b_c00030{margin-left:-67.608000pt;}
._2d_c00030{margin-left:-64.208000pt;}
._30_c00030{margin-left:-59.653333pt;}
._2f_c00030{margin-left:-56.074667pt;}
._2e_c00030{margin-left:-35.042667pt;}
._31_c00030{margin-left:-30.085333pt;}
._45_c00030{margin-left:-25.528000pt;}
._44_c00030{margin-left:-22.125333pt;}
._49_c00030{margin-left:-17.226667pt;}
._2c_c00030{margin-left:-15.760000pt;}
._41_c00030{margin-left:-13.344000pt;}
._3_c00030{margin-left:-12.064000pt;}
._1c_c00030{margin-left:-10.965333pt;}
._26_c00030{margin-left:-9.493333pt;}
._5_c00030{margin-left:-8.042667pt;}
._7_c00030{margin-left:-7.037333pt;}
._6_c00030{margin-left:-5.413333pt;}
._18_c00030{margin-left:-4.405333pt;}
._19_c00030{margin-left:-3.360000pt;}
._17_c00030{margin-left:-2.133333pt;}
._13_c00030{margin-left:-1.024000pt;}
._14_c00030{width:1.280000pt;}
._b_c00030{width:2.389333pt;}
._f_c00030{width:3.925333pt;}
._9_c00030{width:4.864000pt;}
._d_c00030{width:5.802667pt;}
._2_c00030{width:6.960000pt;}
._16_c00030{width:8.477333pt;}
._e_c00030{width:9.608000pt;}
._8_c00030{width:11.213333pt;}
._1a_c00030{width:12.504000pt;}
._1e_c00030{width:14.112000pt;}
._1b_c00030{width:15.189333pt;}
._12_c00030{width:16.896000pt;}
._33_c00030{width:17.869333pt;}
._25_c00030{width:19.114667pt;}
._32_c00030{width:20.968000pt;}
._c_c00030{width:22.698667pt;}
._42_c00030{width:23.810667pt;}
._21_c00030{width:24.917333pt;}
._38_c00030{width:26.560000pt;}
._24_c00030{width:28.005333pt;}
._23_c00030{width:28.981333pt;}
._10_c00030{width:30.293333pt;}
._3f_c00030{width:31.997333pt;}
._35_c00030{width:33.021333pt;}
._34_c00030{width:34.389333pt;}
._11_c00030{width:35.498667pt;}
._3c_c00030{width:36.458667pt;}
._37_c00030{width:38.400000pt;}
._20_c00030{width:39.818667pt;}
._46_c00030{width:41.082667pt;}
._1f_c00030{width:41.992000pt;}
._36_c00030{width:44.122667pt;}
._3e_c00030{width:48.085333pt;}
._47_c00030{width:54.189333pt;}
._1d_c00030{width:58.512000pt;}
._48_c00030{width:61.440000pt;}
._39_c00030{width:65.066667pt;}
._3d_c00030{width:69.024000pt;}
._3a_c00030{width:70.746667pt;}
._40_c00030{width:71.762667pt;}
._1_c00030{width:97.594667pt;}
._4b_c00030{width:141.754667pt;}
._a_c00030{width:153.002667pt;}
._15_c00030{width:161.493333pt;}
._29_c00030{width:178.234667pt;}
._27_c00030{width:293.162667pt;}
._4_c00030{width:300.285333pt;}
._3b_c00030{width:368.301333pt;}
._28_c00030{width:377.037333pt;}
._4a_c00030{width:457.370667pt;}
._22_c00030{width:587.717333pt;}
._43_c00030{width:672.552000pt;}
._2a_c00030{width:685.000000pt;}
.fs6_c00030{font-size:42.666667pt;}
.fs2_c00030{font-size:74.666667pt;}
.fs0_c00030{font-size:77.333333pt;}
.fs1_c00030{font-size:85.333333pt;}
.fs3_c00030{font-size:88.000000pt;}
.fs5_c00030{font-size:90.666667pt;}
.fs4_c00030{font-size:93.333333pt;}
.y0_c00030{bottom:0.000000pt;}
.y23_c00030{bottom:2.760000pt;}
.y22_c00030{bottom:6.425217pt;}
.y21_c00030{bottom:77.306667pt;}
.y20_c00030{bottom:164.640000pt;}
.y1f_c00030{bottom:196.240000pt;}
.y1e_c00030{bottom:226.506667pt;}
.y1d_c00030{bottom:256.773333pt;}
.y1c_c00030{bottom:286.773333pt;}
.y1b_c00030{bottom:316.773333pt;}
.y1a_c00030{bottom:346.106667pt;}
.y19_c00030{bottom:376.106667pt;}
.y18_c00030{bottom:406.106667pt;}
.y17_c00030{bottom:435.573333pt;}
.y16_c00030{bottom:465.573333pt;}
.y15_c00030{bottom:495.040000pt;}
.y14_c00030{bottom:524.640000pt;}
.y13_c00030{bottom:553.706667pt;}
.y12_c00030{bottom:583.173333pt;}
.y11_c00030{bottom:612.506667pt;}
.y10_c00030{bottom:643.706667pt;}
.yf_c00030{bottom:672.240000pt;}
.ye_c00030{bottom:701.973333pt;}
.yd_c00030{bottom:730.773333pt;}
.yc_c00030{bottom:759.840000pt;}
.yb_c00030{bottom:789.573333pt;}
.ya_c00030{bottom:819.040000pt;}
.y9_c00030{bottom:846.640000pt;}
.y8_c00030{bottom:877.706667pt;}
.y7_c00030{bottom:904.773333pt;}
.y6_c00030{bottom:924.506667pt;}
.y5_c00030{bottom:936.640000pt;}
.y4_c00030{bottom:967.173333pt;}
.y3_c00030{bottom:997.840000pt;}
.y2_c00030{bottom:1025.973333pt;}
.y1_c00030{bottom:1053.040000pt;}
.h6_c00030{height:11.733399pt;}
.h7_c00030{height:38.937500pt;}
.h2_c00030{height:97.912760pt;}
.h3_c00030{height:108.041667pt;}
.h4_c00030{height:111.417969pt;}
.h5_c00030{height:118.170573pt;}
.h0_c00030{height:1186.533333pt;}
.h1_c00030{height:1186.666667pt;}
.w2_c00030{width:93.222667pt;}
.w0_c00030{width:753.133333pt;}
.w1_c00030{width:753.333333pt;}
.x0_c00030{left:0.000000pt;}
.x8_c00030{left:30.533333pt;}
.x7_c00030{left:32.000000pt;}
.x6_c00030{left:32.933333pt;}
.x4_c00030{left:33.866667pt;}
.x3_c00030{left:34.800000pt;}
.x9_c00030{left:36.266667pt;}
.xa_c00030{left:37.733333pt;}
.xb_c00030{left:39.200000pt;}
.x2_c00030{left:80.800000pt;}
.x5_c00030{left:96.266667pt;}
.xd_c00030{left:333.734863pt;}
.x1_c00030{left:339.333333pt;}
.xc_c00030{left:462.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bfaf8cfe6d104b9592f04224.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_3ed7e0737f2f56d907a374b5.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_e16b666379e12acb28836f3d.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_f4ada8f95214caad29cba9f8.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00031;src:url('chunks/assets/font_067054c2cc2bddd1d29b5fce.woff2')format("woff");}.ff5_c00031{font-family:ff5_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:ff6_c00031;src:url('chunks/assets/font_32add653140c339fa24a953a.woff2')format("woff");}.ff6_c00031{font-family:ff6_c00031;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00031;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00031{font-family:ff7_c00031;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00031{vertical-align:-9.600000px;}
.v0_c00031{vertical-align:0.000000px;}
.ls5_c00031{letter-spacing:-12.000000px;}
.ls4_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:0.600000px;}
.ls6_c00031{letter-spacing:9.000000px;}
.ls1_c00031{letter-spacing:10.056000px;}
.ls2_c00031{letter-spacing:14.292000px;}
.ls3_c00031{letter-spacing:1924.704000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00031{word-spacing:-29.448000px;}
.ws1_c00031{word-spacing:-26.250000px;}
.ws0_c00031{word-spacing:-20.244000px;}
.ws3_c00031{word-spacing:0.000000px;}
._39_c00031{margin-left:-73.344000px;}
._38_c00031{margin-left:-34.260000px;}
._f_c00031{margin-left:-28.053000px;}
._26_c00031{margin-left:-24.000000px;}
._25_c00031{margin-left:-21.888000px;}
._3b_c00031{margin-left:-19.197000px;}
._33_c00031{margin-left:-18.030000px;}
._10_c00031{margin-left:-16.032000px;}
._1_c00031{margin-left:-13.659000px;}
._27_c00031{margin-left:-11.040000px;}
._17_c00031{margin-left:-9.228000px;}
._8_c00031{margin-left:-7.308000px;}
._0_c00031{margin-left:-6.264000px;}
._7_c00031{margin-left:-4.704000px;}
._6_c00031{margin-left:-3.108000px;}
._15_c00031{margin-left:-1.056000px;}
._c_c00031{width:1.803000px;}
._3_c00031{width:2.997000px;}
._4_c00031{width:4.200000px;}
._a_c00031{width:5.472000px;}
._e_c00031{width:6.624000px;}
._2_c00031{width:8.091000px;}
._2f_c00031{width:9.237000px;}
._1a_c00031{width:10.353000px;}
._18_c00031{width:11.697000px;}
._1d_c00031{width:13.785000px;}
._1e_c00031{width:15.195000px;}
._16_c00031{width:16.320000px;}
._2b_c00031{width:17.325000px;}
._11_c00031{width:19.200000px;}
._42_c00031{width:20.577000px;}
._29_c00031{width:21.648000px;}
._28_c00031{width:24.399000px;}
._14_c00031{width:25.935000px;}
._2c_c00031{width:27.249000px;}
._5_c00031{width:28.278000px;}
._13_c00031{width:29.565000px;}
._43_c00031{width:30.624000px;}
._24_c00031{width:31.647000px;}
._40_c00031{width:32.775000px;}
._d_c00031{width:34.251000px;}
._20_c00031{width:36.363000px;}
._23_c00031{width:37.524000px;}
._30_c00031{width:38.664000px;}
._21_c00031{width:39.678000px;}
._12_c00031{width:40.878000px;}
._22_c00031{width:42.237000px;}
._3a_c00031{width:43.596000px;}
._3e_c00031{width:44.685000px;}
._2d_c00031{width:45.819000px;}
._1b_c00031{width:47.991000px;}
._3d_c00031{width:49.077000px;}
._3c_c00031{width:50.853000px;}
._32_c00031{width:58.275000px;}
._3f_c00031{width:59.922000px;}
._34_c00031{width:61.743000px;}
._1c_c00031{width:65.892000px;}
._31_c00031{width:66.990000px;}
._35_c00031{width:75.327000px;}
._37_c00031{width:76.938000px;}
._36_c00031{width:83.289000px;}
._2a_c00031{width:106.749000px;}
._1f_c00031{width:119.328000px;}
._19_c00031{width:133.137000px;}
._41_c00031{width:164.229000px;}
._b_c00031{width:168.000000px;}
._9_c00031{width:331.824000px;}
._2e_c00031{width:693.852000px;}
.fc2_c00031{color:transparent;}
.fc1_c00031{color:rgb(128,128,128);}
.fc0_c00031{color:rgb(0,0,0);}
.fs6_c00031{font-size:24.000000px;}
.fs8_c00031{font-size:48.000000px;}
.fs7_c00031{font-size:72.000000px;}
.fs2_c00031{font-size:84.000000px;}
.fs1_c00031{font-size:87.000000px;}
.fs0_c00031{font-size:96.000000px;}
.fs5_c00031{font-size:99.000000px;}
.fs3_c00031{font-size:102.000000px;}
.fs4_c00031{font-size:105.000000px;}
.y0_c00031{bottom:0.000000px;}
.y26_c00031{bottom:3.105000px;}
.y25_c00031{bottom:7.228357px;}
.y24_c00031{bottom:116.130000px;}
.y23_c00031{bottom:146.130000px;}
.y22_c00031{bottom:180.630000px;}
.y21_c00031{bottom:214.680000px;}
.y20_c00031{bottom:249.180000px;}
.y1f_c00031{bottom:282.780000px;}
.y1e_c00031{bottom:316.530000px;}
.y1d_c00031{bottom:349.980000px;}
.y1c_c00031{bottom:383.730000px;}
.y1b_c00031{bottom:417.180000px;}
.y1a_c00031{bottom:450.930000px;}
.y19_c00031{bottom:484.980000px;}
.y18_c00031{bottom:518.130000px;}
.y17_c00031{bottom:551.580000px;}
.y16_c00031{bottom:585.330000px;}
.y15_c00031{bottom:618.330000px;}
.y14_c00031{bottom:651.780000px;}
.y13_c00031{bottom:685.230000px;}
.y12_c00031{bottom:718.980000px;}
.y11_c00031{bottom:752.280000px;}
.y10_c00031{bottom:786.780000px;}
.yf_c00031{bottom:818.730000px;}
.ye_c00031{bottom:852.180000px;}
.yd_c00031{bottom:885.030000px;}
.yc_c00031{bottom:918.780000px;}
.yb_c00031{bottom:951.030000px;}
.ya_c00031{bottom:982.230000px;}
.y9_c00031{bottom:1014.480000px;}
.y8_c00031{bottom:1045.980000px;}
.y7_c00031{bottom:1088.130000px;}
.y6_c00031{bottom:1119.480000px;}
.y5_c00031{bottom:1150.530000px;}
.y4_c00031{bottom:1181.880000px;}
.y3_c00031{bottom:1213.980000px;}
.y2_c00031{bottom:1311.480000px;}
.y1_c00031{bottom:1326.480000px;}
.h6_c00031{height:13.200074px;}
.h7_c00031{height:43.804688px;}
.h5_c00031{height:66.232031px;}
.h3_c00031{height:110.151855px;}
.h2_c00031{height:121.546875px;}
.h4_c00031{height:125.345215px;}
.h0_c00031{height:1382.700000px;}
.h1_c00031{height:1383.000000px;}
.w2_c00031{width:104.875500px;}
.w0_c00031{width:863.175000px;}
.w1_c00031{width:863.250000px;}
.x0_c00031{left:0.000000px;}
.x4_c00031{left:50.250000px;}
.x3_c00031{left:52.650000px;}
.x5_c00031{left:54.300000px;}
.x2_c00031{left:82.350000px;}
.x6_c00031{left:208.800000px;}
.xb_c00031{left:271.350000px;}
.xa_c00031{left:272.400000px;}
.x7_c00031{left:273.600000px;}
.x8_c00031{left:275.100000px;}
.x9_c00031{left:276.750000px;}
.x1_c00031{left:302.400000px;}
.xc_c00031{left:326.250000px;}
.xd_c00031{left:383.401749px;}
@media print{
.v1_c00031{vertical-align:-8.533333pt;}
.v0_c00031{vertical-align:0.000000pt;}
.ls5_c00031{letter-spacing:-10.666667pt;}
.ls4_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:0.533333pt;}
.ls6_c00031{letter-spacing:8.000000pt;}
.ls1_c00031{letter-spacing:8.938667pt;}
.ls2_c00031{letter-spacing:12.704000pt;}
.ls3_c00031{letter-spacing:1710.848000pt;}
.ws2_c00031{word-spacing:-26.176000pt;}
.ws1_c00031{word-spacing:-23.333333pt;}
.ws0_c00031{word-spacing:-17.994667pt;}
.ws3_c00031{word-spacing:0.000000pt;}
._39_c00031{margin-left:-65.194667pt;}
._38_c00031{margin-left:-30.453333pt;}
._f_c00031{margin-left:-24.936000pt;}
._26_c00031{margin-left:-21.333333pt;}
._25_c00031{margin-left:-19.456000pt;}
._3b_c00031{margin-left:-17.064000pt;}
._33_c00031{margin-left:-16.026667pt;}
._10_c00031{margin-left:-14.250667pt;}
._1_c00031{margin-left:-12.141333pt;}
._27_c00031{margin-left:-9.813333pt;}
._17_c00031{margin-left:-8.202667pt;}
._8_c00031{margin-left:-6.496000pt;}
._0_c00031{margin-left:-5.568000pt;}
._7_c00031{margin-left:-4.181333pt;}
._6_c00031{margin-left:-2.762667pt;}
._15_c00031{margin-left:-0.938667pt;}
._c_c00031{width:1.602667pt;}
._3_c00031{width:2.664000pt;}
._4_c00031{width:3.733333pt;}
._a_c00031{width:4.864000pt;}
._e_c00031{width:5.888000pt;}
._2_c00031{width:7.192000pt;}
._2f_c00031{width:8.210667pt;}
._1a_c00031{width:9.202667pt;}
._18_c00031{width:10.397333pt;}
._1d_c00031{width:12.253333pt;}
._1e_c00031{width:13.506667pt;}
._16_c00031{width:14.506667pt;}
._2b_c00031{width:15.400000pt;}
._11_c00031{width:17.066667pt;}
._42_c00031{width:18.290667pt;}
._29_c00031{width:19.242667pt;}
._28_c00031{width:21.688000pt;}
._14_c00031{width:23.053333pt;}
._2c_c00031{width:24.221333pt;}
._5_c00031{width:25.136000pt;}
._13_c00031{width:26.280000pt;}
._43_c00031{width:27.221333pt;}
._24_c00031{width:28.130667pt;}
._40_c00031{width:29.133333pt;}
._d_c00031{width:30.445333pt;}
._20_c00031{width:32.322667pt;}
._23_c00031{width:33.354667pt;}
._30_c00031{width:34.368000pt;}
._21_c00031{width:35.269333pt;}
._12_c00031{width:36.336000pt;}
._22_c00031{width:37.544000pt;}
._3a_c00031{width:38.752000pt;}
._3e_c00031{width:39.720000pt;}
._2d_c00031{width:40.728000pt;}
._1b_c00031{width:42.658667pt;}
._3d_c00031{width:43.624000pt;}
._3c_c00031{width:45.202667pt;}
._32_c00031{width:51.800000pt;}
._3f_c00031{width:53.264000pt;}
._34_c00031{width:54.882667pt;}
._1c_c00031{width:58.570667pt;}
._31_c00031{width:59.546667pt;}
._35_c00031{width:66.957333pt;}
._37_c00031{width:68.389333pt;}
._36_c00031{width:74.034667pt;}
._2a_c00031{width:94.888000pt;}
._1f_c00031{width:106.069333pt;}
._19_c00031{width:118.344000pt;}
._41_c00031{width:145.981333pt;}
._b_c00031{width:149.333333pt;}
._9_c00031{width:294.954667pt;}
._2e_c00031{width:616.757333pt;}
.fs6_c00031{font-size:21.333333pt;}
.fs8_c00031{font-size:42.666667pt;}
.fs7_c00031{font-size:64.000000pt;}
.fs2_c00031{font-size:74.666667pt;}
.fs1_c00031{font-size:77.333333pt;}
.fs0_c00031{font-size:85.333333pt;}
.fs5_c00031{font-size:88.000000pt;}
.fs3_c00031{font-size:90.666667pt;}
.fs4_c00031{font-size:93.333333pt;}
.y0_c00031{bottom:0.000000pt;}
.y26_c00031{bottom:2.760000pt;}
.y25_c00031{bottom:6.425206pt;}
.y24_c00031{bottom:103.226667pt;}
.y23_c00031{bottom:129.893333pt;}
.y22_c00031{bottom:160.560000pt;}
.y21_c00031{bottom:190.826667pt;}
.y20_c00031{bottom:221.493333pt;}
.y1f_c00031{bottom:251.360000pt;}
.y1e_c00031{bottom:281.360000pt;}
.y1d_c00031{bottom:311.093333pt;}
.y1c_c00031{bottom:341.093333pt;}
.y1b_c00031{bottom:370.826667pt;}
.y1a_c00031{bottom:400.826667pt;}
.y19_c00031{bottom:431.093333pt;}
.y18_c00031{bottom:460.560000pt;}
.y17_c00031{bottom:490.293333pt;}
.y16_c00031{bottom:520.293333pt;}
.y15_c00031{bottom:549.626667pt;}
.y14_c00031{bottom:579.360000pt;}
.y13_c00031{bottom:609.093333pt;}
.y12_c00031{bottom:639.093333pt;}
.y11_c00031{bottom:668.693333pt;}
.y10_c00031{bottom:699.360000pt;}
.yf_c00031{bottom:727.760000pt;}
.ye_c00031{bottom:757.493333pt;}
.yd_c00031{bottom:786.693333pt;}
.yc_c00031{bottom:816.693333pt;}
.yb_c00031{bottom:845.360000pt;}
.ya_c00031{bottom:873.093333pt;}
.y9_c00031{bottom:901.760000pt;}
.y8_c00031{bottom:929.760000pt;}
.y7_c00031{bottom:967.226667pt;}
.y6_c00031{bottom:995.093333pt;}
.y5_c00031{bottom:1022.693333pt;}
.y4_c00031{bottom:1050.560000pt;}
.y3_c00031{bottom:1079.093333pt;}
.y2_c00031{bottom:1165.760000pt;}
.y1_c00031{bottom:1179.093333pt;}
.h6_c00031{height:11.733399pt;}
.h7_c00031{height:38.937500pt;}
.h5_c00031{height:58.872917pt;}
.h3_c00031{height:97.912760pt;}
.h2_c00031{height:108.041667pt;}
.h4_c00031{height:111.417969pt;}
.h0_c00031{height:1229.066667pt;}
.h1_c00031{height:1229.333333pt;}
.w2_c00031{width:93.222667pt;}
.w0_c00031{width:767.266667pt;}
.w1_c00031{width:767.333333pt;}
.x0_c00031{left:0.000000pt;}
.x4_c00031{left:44.666667pt;}
.x3_c00031{left:46.800000pt;}
.x5_c00031{left:48.266667pt;}
.x2_c00031{left:73.200000pt;}
.x6_c00031{left:185.600000pt;}
.xb_c00031{left:241.200000pt;}
.xa_c00031{left:242.133333pt;}
.x7_c00031{left:243.200000pt;}
.x8_c00031{left:244.533333pt;}
.x9_c00031{left:246.000000pt;}
.x1_c00031{left:268.800000pt;}
.xc_c00031{left:290.000000pt;}
.xd_c00031{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_355134953a3a6e7b2a0a77a1.woff2')format("woff");}.ff1_c00032{font-family:ff1_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:ff2_c00032;src:url('chunks/assets/font_11bb037cedd514a3af4553d5.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_06debf67930b424a5d63b53b.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls1_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:8.520000px;}
.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;}
}
.ws0_c00032{word-spacing:0.000000px;}
._23_c00032{margin-left:-12.096000px;}
._28_c00032{margin-left:-10.176000px;}
._27_c00032{margin-left:-6.960000px;}
._18_c00032{margin-left:-5.184000px;}
._2b_c00032{margin-left:-4.176000px;}
._d_c00032{margin-left:-2.976000px;}
._1_c00032{margin-left:-1.728000px;}
._9_c00032{width:1.152000px;}
._4_c00032{width:2.496000px;}
._2e_c00032{width:3.504000px;}
._3_c00032{width:4.512000px;}
._14_c00032{width:5.952000px;}
._6_c00032{width:7.392000px;}
._f_c00032{width:8.448000px;}
._10_c00032{width:9.504000px;}
._17_c00032{width:10.560000px;}
._15_c00032{width:11.616000px;}
._2a_c00032{width:13.248000px;}
._16_c00032{width:14.688000px;}
._29_c00032{width:16.032000px;}
._11_c00032{width:17.376000px;}
._21_c00032{width:18.912000px;}
._13_c00032{width:20.448000px;}
._22_c00032{width:21.792000px;}
._25_c00032{width:24.576000px;}
._1a_c00032{width:26.496000px;}
._5_c00032{width:28.320000px;}
._2c_c00032{width:29.664000px;}
._8_c00032{width:30.912000px;}
._1b_c00032{width:32.832000px;}
._7_c00032{width:34.176000px;}
._2_c00032{width:36.288000px;}
._24_c00032{width:37.992000px;}
._b_c00032{width:39.264000px;}
._1f_c00032{width:40.320000px;}
._a_c00032{width:42.264000px;}
._c_c00032{width:43.488000px;}
._e_c00032{width:44.928000px;}
._19_c00032{width:47.040000px;}
._1e_c00032{width:48.480000px;}
._0_c00032{width:50.112000px;}
._2d_c00032{width:51.912000px;}
._12_c00032{width:54.048000px;}
._1c_c00032{width:55.872000px;}
._26_c00032{width:57.696000px;}
._20_c00032{width:61.728000px;}
._1d_c00032{width:66.240000px;}
._2f_c00032{width:873.543000px;}
.fc2_c00032{color:transparent;}
.fc1_c00032{color:rgb(128,128,128);}
.fc0_c00032{color:rgb(0,0,0);}
.fs4_c00032{font-size:48.000000px;}
.fs2_c00032{font-size:84.000000px;}
.fs0_c00032{font-size:87.000000px;}
.fs1_c00032{font-size:96.000000px;}
.fs3_c00032{font-size:105.000000px;}
.y0_c00032{bottom:0.000000px;}
.y27_c00032{bottom:3.105000px;}
.y26_c00032{bottom:7.228369px;}
.y25_c00032{bottom:119.370000px;}
.y24_c00032{bottom:154.920000px;}
.y23_c00032{bottom:189.270000px;}
.y22_c00032{bottom:223.020000px;}
.y21_c00032{bottom:257.070000px;}
.y20_c00032{bottom:290.520000px;}
.y1f_c00032{bottom:323.670000px;}
.y1e_c00032{bottom:357.420000px;}
.y1d_c00032{bottom:390.870000px;}
.y1c_c00032{bottom:424.470000px;}
.y1b_c00032{bottom:457.620000px;}
.y1a_c00032{bottom:491.670000px;}
.y19_c00032{bottom:524.520000px;}
.y18_c00032{bottom:557.820000px;}
.y17_c00032{bottom:590.670000px;}
.y16_c00032{bottom:623.370000px;}
.y15_c00032{bottom:657.420000px;}
.y14_c00032{bottom:690.870000px;}
.y13_c00032{bottom:723.870000px;}
.y12_c00032{bottom:757.620000px;}
.y11_c00032{bottom:790.620000px;}
.y10_c00032{bottom:823.620000px;}
.yf_c00032{bottom:856.620000px;}
.ye_c00032{bottom:889.620000px;}
.yd_c00032{bottom:922.770000px;}
.yc_c00032{bottom:955.170000px;}
.yb_c00032{bottom:989.220000px;}
.ya_c00032{bottom:1022.670000px;}
.y9_c00032{bottom:1055.670000px;}
.y8_c00032{bottom:1088.820000px;}
.y7_c00032{bottom:1122.120000px;}
.y6_c00032{bottom:1154.970000px;}
.y5_c00032{bottom:1188.270000px;}
.y4_c00032{bottom:1221.120000px;}
.y3_c00032{bottom:1254.120000px;}
.y2_c00032{bottom:1287.570000px;}
.y1_c00032{bottom:1310.520000px;}
.h5_c00032{height:13.200073px;}
.h6_c00032{height:43.804688px;}
.h2_c00032{height:85.385742px;}
.h3_c00032{height:121.546875px;}
.h4_c00032{height:132.941895px;}
.h0_c00032{height:1383.450000px;}
.h1_c00032{height:1383.750000px;}
.w2_c00032{width:104.875500px;}
.w0_c00032{width:878.025000px;}
.w1_c00032{width:878.250000px;}
.x0_c00032{left:0.000000px;}
.x9_c00032{left:18.000000px;}
.x8_c00032{left:22.500000px;}
.x7_c00032{left:23.550000px;}
.x6_c00032{left:24.600000px;}
.x5_c00032{left:26.700000px;}
.x4_c00032{left:28.800000px;}
.x3_c00032{left:30.000000px;}
.x2_c00032{left:32.100000px;}
.xa_c00032{left:319.800000px;}
.xb_c00032{left:390.826721px;}
.x1_c00032{left:532.200000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls1_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:7.573333pt;}
.ws0_c00032{word-spacing:0.000000pt;}
._23_c00032{margin-left:-10.752000pt;}
._28_c00032{margin-left:-9.045333pt;}
._27_c00032{margin-left:-6.186667pt;}
._18_c00032{margin-left:-4.608000pt;}
._2b_c00032{margin-left:-3.712000pt;}
._d_c00032{margin-left:-2.645333pt;}
._1_c00032{margin-left:-1.536000pt;}
._9_c00032{width:1.024000pt;}
._4_c00032{width:2.218667pt;}
._2e_c00032{width:3.114667pt;}
._3_c00032{width:4.010667pt;}
._14_c00032{width:5.290667pt;}
._6_c00032{width:6.570667pt;}
._f_c00032{width:7.509333pt;}
._10_c00032{width:8.448000pt;}
._17_c00032{width:9.386667pt;}
._15_c00032{width:10.325333pt;}
._2a_c00032{width:11.776000pt;}
._16_c00032{width:13.056000pt;}
._29_c00032{width:14.250667pt;}
._11_c00032{width:15.445333pt;}
._21_c00032{width:16.810667pt;}
._13_c00032{width:18.176000pt;}
._22_c00032{width:19.370667pt;}
._25_c00032{width:21.845333pt;}
._1a_c00032{width:23.552000pt;}
._5_c00032{width:25.173333pt;}
._2c_c00032{width:26.368000pt;}
._8_c00032{width:27.477333pt;}
._1b_c00032{width:29.184000pt;}
._7_c00032{width:30.378667pt;}
._2_c00032{width:32.256000pt;}
._24_c00032{width:33.770667pt;}
._b_c00032{width:34.901333pt;}
._1f_c00032{width:35.840000pt;}
._a_c00032{width:37.568000pt;}
._c_c00032{width:38.656000pt;}
._e_c00032{width:39.936000pt;}
._19_c00032{width:41.813333pt;}
._1e_c00032{width:43.093333pt;}
._0_c00032{width:44.544000pt;}
._2d_c00032{width:46.144000pt;}
._12_c00032{width:48.042667pt;}
._1c_c00032{width:49.664000pt;}
._26_c00032{width:51.285333pt;}
._20_c00032{width:54.869333pt;}
._1d_c00032{width:58.880000pt;}
._2f_c00032{width:776.482667pt;}
.fs4_c00032{font-size:42.666667pt;}
.fs2_c00032{font-size:74.666667pt;}
.fs0_c00032{font-size:77.333333pt;}
.fs1_c00032{font-size:85.333333pt;}
.fs3_c00032{font-size:93.333333pt;}
.y0_c00032{bottom:0.000000pt;}
.y27_c00032{bottom:2.760000pt;}
.y26_c00032{bottom:6.425217pt;}
.y25_c00032{bottom:106.106667pt;}
.y24_c00032{bottom:137.706667pt;}
.y23_c00032{bottom:168.240000pt;}
.y22_c00032{bottom:198.240000pt;}
.y21_c00032{bottom:228.506667pt;}
.y20_c00032{bottom:258.240000pt;}
.y1f_c00032{bottom:287.706667pt;}
.y1e_c00032{bottom:317.706667pt;}
.y1d_c00032{bottom:347.440000pt;}
.y1c_c00032{bottom:377.306667pt;}
.y1b_c00032{bottom:406.773333pt;}
.y1a_c00032{bottom:437.040000pt;}
.y19_c00032{bottom:466.240000pt;}
.y18_c00032{bottom:495.840000pt;}
.y17_c00032{bottom:525.040000pt;}
.y16_c00032{bottom:554.106667pt;}
.y15_c00032{bottom:584.373333pt;}
.y14_c00032{bottom:614.106667pt;}
.y13_c00032{bottom:643.440000pt;}
.y12_c00032{bottom:673.440000pt;}
.y11_c00032{bottom:702.773333pt;}
.y10_c00032{bottom:732.106667pt;}
.yf_c00032{bottom:761.440000pt;}
.ye_c00032{bottom:790.773333pt;}
.yd_c00032{bottom:820.240000pt;}
.yc_c00032{bottom:849.040000pt;}
.yb_c00032{bottom:879.306667pt;}
.ya_c00032{bottom:909.040000pt;}
.y9_c00032{bottom:938.373333pt;}
.y8_c00032{bottom:967.840000pt;}
.y7_c00032{bottom:997.440000pt;}
.y6_c00032{bottom:1026.640000pt;}
.y5_c00032{bottom:1056.240000pt;}
.y4_c00032{bottom:1085.440000pt;}
.y3_c00032{bottom:1114.773333pt;}
.y2_c00032{bottom:1144.506667pt;}
.y1_c00032{bottom:1164.906667pt;}
.h5_c00032{height:11.733399pt;}
.h6_c00032{height:38.937500pt;}
.h2_c00032{height:75.898438pt;}
.h3_c00032{height:108.041667pt;}
.h4_c00032{height:118.170573pt;}
.h0_c00032{height:1229.733333pt;}
.h1_c00032{height:1230.000000pt;}
.w2_c00032{width:93.222667pt;}
.w0_c00032{width:780.466667pt;}
.w1_c00032{width:780.666667pt;}
.x0_c00032{left:0.000000pt;}
.x9_c00032{left:16.000000pt;}
.x8_c00032{left:20.000000pt;}
.x7_c00032{left:20.933333pt;}
.x6_c00032{left:21.866667pt;}
.x5_c00032{left:23.733333pt;}
.x4_c00032{left:25.600000pt;}
.x3_c00032{left:26.666667pt;}
.x2_c00032{left:28.533333pt;}
.xa_c00032{left:284.266667pt;}
.xb_c00032{left:347.401530pt;}
.x1_c00032{left:473.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b1e978c1b8c60f82c28c2440.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_6a9cc133c737e15f71544ec3.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_da7b354c5c754c04816d9f17.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00033{font-family:ff4_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:ff5_c00033;src:url('chunks/assets/font_1429acf1599c0ade5abd846c.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00033;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00033{font-family:ff6_c00033;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls2_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:6.000000px;}
.ls1_c00033{letter-spacing:6.756000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00033{word-spacing:-57.000000px;}
.ws0_c00033{word-spacing:-18.798000px;}
.ws3_c00033{word-spacing:0.000000px;}
.ws2_c00033{word-spacing:6.835200px;}
._3a_c00033{margin-left:-38.400000px;}
._10_c00033{margin-left:-27.753000px;}
._27_c00033{margin-left:-25.680000px;}
._28_c00033{margin-left:-24.000000px;}
._3b_c00033{margin-left:-22.560000px;}
._16_c00033{margin-left:-20.868000px;}
._1a_c00033{margin-left:-18.015000px;}
._30_c00033{margin-left:-12.966000px;}
._14_c00033{margin-left:-11.856000px;}
._32_c00033{margin-left:-9.858000px;}
._12_c00033{margin-left:-8.658000px;}
._15_c00033{margin-left:-7.410000px;}
._13_c00033{margin-left:-5.304000px;}
._a_c00033{margin-left:-3.042000px;}
._b_c00033{margin-left:-1.638000px;}
._e_c00033{width:1.044000px;}
._8_c00033{width:2.934000px;}
._19_c00033{width:4.260000px;}
._4_c00033{width:5.280000px;}
._c_c00033{width:6.456000px;}
._0_c00033{width:8.256000px;}
._2_c00033{width:9.312000px;}
._1_c00033{width:10.560000px;}
._d_c00033{width:11.820000px;}
._23_c00033{width:12.924000px;}
._24_c00033{width:14.760000px;}
._26_c00033{width:16.560000px;}
._2b_c00033{width:17.712000px;}
._2d_c00033{width:18.828000px;}
._6_c00033{width:19.872000px;}
._29_c00033{width:21.216000px;}
._33_c00033{width:24.138000px;}
._25_c00033{width:25.995000px;}
._17_c00033{width:27.690000px;}
._18_c00033{width:29.514000px;}
._34_c00033{width:30.612000px;}
._1b_c00033{width:32.151000px;}
._31_c00033{width:33.348000px;}
._1d_c00033{width:34.476000px;}
._2f_c00033{width:35.964000px;}
._11_c00033{width:37.224000px;}
._5_c00033{width:38.496000px;}
._35_c00033{width:40.269000px;}
._2c_c00033{width:41.424000px;}
._20_c00033{width:43.458000px;}
._3c_c00033{width:44.565000px;}
._2a_c00033{width:45.675000px;}
._21_c00033{width:47.148000px;}
._2e_c00033{width:49.923000px;}
._1c_c00033{width:51.948000px;}
._f_c00033{width:56.322000px;}
._9_c00033{width:59.004000px;}
._22_c00033{width:62.532000px;}
._39_c00033{width:64.035000px;}
._7_c00033{width:68.640000px;}
._37_c00033{width:91.003200px;}
._3_c00033{width:103.968000px;}
._36_c00033{width:112.200000px;}
._38_c00033{width:146.568000px;}
._1e_c00033{width:164.223000px;}
._1f_c00033{width:186.228000px;}
._3d_c00033{width:1066.377000px;}
.fc2_c00033{color:transparent;}
.fc1_c00033{color:rgb(128,128,128);}
.fc0_c00033{color:rgb(0,0,0);}
.fs6_c00033{font-size:48.000000px;}
.fs4_c00033{font-size:76.800000px;}
.fs1_c00033{font-size:78.000000px;}
.fs5_c00033{font-size:84.000000px;}
.fs2_c00033{font-size:87.000000px;}
.fs0_c00033{font-size:96.000000px;}
.fs3_c00033{font-size:102.000000px;}
.y0_c00033{bottom:0.000000px;}
.y2a_c00033{bottom:3.105000px;}
.y29_c00033{bottom:7.228357px;}
.y28_c00033{bottom:122.880000px;}
.y27_c00033{bottom:156.330000px;}
.y26_c00033{bottom:191.130000px;}
.yb_c00033{bottom:214.080000px;}
.y25_c00033{bottom:224.730000px;}
.ya_c00033{bottom:243.780000px;}
.y24_c00033{bottom:258.480000px;}
.y9_c00033{bottom:273.780000px;}
.y23_c00033{bottom:291.930000px;}
.y8_c00033{bottom:303.780000px;}
.y22_c00033{bottom:325.680000px;}
.y7_c00033{bottom:332.880000px;}
.y21_c00033{bottom:393.180000px;}
.y20_c00033{bottom:460.980000px;}
.y1f_c00033{bottom:494.730000px;}
.y1e_c00033{bottom:528.930000px;}
.y1d_c00033{bottom:562.230000px;}
.y1c_c00033{bottom:595.380000px;}
.y1b_c00033{bottom:628.830000px;}
.y1a_c00033{bottom:662.130000px;}
.y19_c00033{bottom:696.330000px;}
.y18_c00033{bottom:728.430000px;}
.y17_c00033{bottom:762.180000px;}
.y16_c00033{bottom:794.430000px;}
.y15_c00033{bottom:829.230000px;}
.y14_c00033{bottom:863.280000px;}
.y13_c00033{bottom:895.680000px;}
.y12_c00033{bottom:928.530000px;}
.y11_c00033{bottom:960.930000px;}
.y10_c00033{bottom:994.680000px;}
.yf_c00033{bottom:1027.980000px;}
.y6_c00033{bottom:1040.580000px;}
.ye_c00033{bottom:1061.130000px;}
.y5_c00033{bottom:1071.930000px;}
.yd_c00033{bottom:1093.830000px;}
.y4_c00033{bottom:1101.330000px;}
.yc_c00033{bottom:1127.280000px;}
.y3_c00033{bottom:1130.730000px;}
.y2_c00033{bottom:1160.730000px;}
.y1_c00033{bottom:1226.580000px;}
.h6_c00033{height:13.200074px;}
.h7_c00033{height:43.804688px;}
.h4_c00033{height:91.291992px;}
.h3_c00033{height:98.756836px;}
.h5_c00033{height:110.151855px;}
.h2_c00033{height:121.546875px;}
.h0_c00033{height:1382.700000px;}
.h1_c00033{height:1383.000000px;}
.w2_c00033{width:104.875500px;}
.w0_c00033{width:863.175000px;}
.w1_c00033{width:863.250000px;}
.x0_c00033{left:0.000000px;}
.x7_c00033{left:51.000000px;}
.x6_c00033{left:52.050000px;}
.x4_c00033{left:54.300000px;}
.x3_c00033{left:55.350000px;}
.x5_c00033{left:66.150000px;}
.x2_c00033{left:83.400000px;}
.x11_c00033{left:269.100000px;}
.xf_c00033{left:271.950000px;}
.x10_c00033{left:274.650000px;}
.xc_c00033{left:276.750000px;}
.xb_c00033{left:278.400000px;}
.xa_c00033{left:279.450000px;}
.x9_c00033{left:280.500000px;}
.x8_c00033{left:285.900000px;}
.xe_c00033{left:320.550000px;}
.x1_c00033{left:343.200000px;}
.xd_c00033{left:348.600000px;}
.x13_c00033{left:383.401749px;}
.x12_c00033{left:530.100000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls2_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:5.333333pt;}
.ls1_c00033{letter-spacing:6.005333pt;}
.ws1_c00033{word-spacing:-50.666667pt;}
.ws0_c00033{word-spacing:-16.709333pt;}
.ws3_c00033{word-spacing:0.000000pt;}
.ws2_c00033{word-spacing:6.075733pt;}
._3a_c00033{margin-left:-34.133333pt;}
._10_c00033{margin-left:-24.669333pt;}
._27_c00033{margin-left:-22.826667pt;}
._28_c00033{margin-left:-21.333333pt;}
._3b_c00033{margin-left:-20.053333pt;}
._16_c00033{margin-left:-18.549333pt;}
._1a_c00033{margin-left:-16.013333pt;}
._30_c00033{margin-left:-11.525333pt;}
._14_c00033{margin-left:-10.538667pt;}
._32_c00033{margin-left:-8.762667pt;}
._12_c00033{margin-left:-7.696000pt;}
._15_c00033{margin-left:-6.586667pt;}
._13_c00033{margin-left:-4.714667pt;}
._a_c00033{margin-left:-2.704000pt;}
._b_c00033{margin-left:-1.456000pt;}
._e_c00033{width:0.928000pt;}
._8_c00033{width:2.608000pt;}
._19_c00033{width:3.786667pt;}
._4_c00033{width:4.693333pt;}
._c_c00033{width:5.738667pt;}
._0_c00033{width:7.338667pt;}
._2_c00033{width:8.277333pt;}
._1_c00033{width:9.386667pt;}
._d_c00033{width:10.506667pt;}
._23_c00033{width:11.488000pt;}
._24_c00033{width:13.120000pt;}
._26_c00033{width:14.720000pt;}
._2b_c00033{width:15.744000pt;}
._2d_c00033{width:16.736000pt;}
._6_c00033{width:17.664000pt;}
._29_c00033{width:18.858667pt;}
._33_c00033{width:21.456000pt;}
._25_c00033{width:23.106667pt;}
._17_c00033{width:24.613333pt;}
._18_c00033{width:26.234667pt;}
._34_c00033{width:27.210667pt;}
._1b_c00033{width:28.578667pt;}
._31_c00033{width:29.642667pt;}
._1d_c00033{width:30.645333pt;}
._2f_c00033{width:31.968000pt;}
._11_c00033{width:33.088000pt;}
._5_c00033{width:34.218667pt;}
._35_c00033{width:35.794667pt;}
._2c_c00033{width:36.821333pt;}
._20_c00033{width:38.629333pt;}
._3c_c00033{width:39.613333pt;}
._2a_c00033{width:40.600000pt;}
._21_c00033{width:41.909333pt;}
._2e_c00033{width:44.376000pt;}
._1c_c00033{width:46.176000pt;}
._f_c00033{width:50.064000pt;}
._9_c00033{width:52.448000pt;}
._22_c00033{width:55.584000pt;}
._39_c00033{width:56.920000pt;}
._7_c00033{width:61.013333pt;}
._37_c00033{width:80.891733pt;}
._3_c00033{width:92.416000pt;}
._36_c00033{width:99.733333pt;}
._38_c00033{width:130.282667pt;}
._1e_c00033{width:145.976000pt;}
._1f_c00033{width:165.536000pt;}
._3d_c00033{width:947.890667pt;}
.fs6_c00033{font-size:42.666667pt;}
.fs4_c00033{font-size:68.266667pt;}
.fs1_c00033{font-size:69.333333pt;}
.fs5_c00033{font-size:74.666667pt;}
.fs2_c00033{font-size:77.333333pt;}
.fs0_c00033{font-size:85.333333pt;}
.fs3_c00033{font-size:90.666667pt;}
.y0_c00033{bottom:0.000000pt;}
.y2a_c00033{bottom:2.760000pt;}
.y29_c00033{bottom:6.425206pt;}
.y28_c00033{bottom:109.226667pt;}
.y27_c00033{bottom:138.960000pt;}
.y26_c00033{bottom:169.893333pt;}
.yb_c00033{bottom:190.293333pt;}
.y25_c00033{bottom:199.760000pt;}
.ya_c00033{bottom:216.693333pt;}
.y24_c00033{bottom:229.760000pt;}
.y9_c00033{bottom:243.360000pt;}
.y23_c00033{bottom:259.493333pt;}
.y8_c00033{bottom:270.026667pt;}
.y22_c00033{bottom:289.493333pt;}
.y7_c00033{bottom:295.893333pt;}
.y21_c00033{bottom:349.493333pt;}
.y20_c00033{bottom:409.760000pt;}
.y1f_c00033{bottom:439.760000pt;}
.y1e_c00033{bottom:470.160000pt;}
.y1d_c00033{bottom:499.760000pt;}
.y1c_c00033{bottom:529.226667pt;}
.y1b_c00033{bottom:558.960000pt;}
.y1a_c00033{bottom:588.560000pt;}
.y19_c00033{bottom:618.960000pt;}
.y18_c00033{bottom:647.493333pt;}
.y17_c00033{bottom:677.493333pt;}
.y16_c00033{bottom:706.160000pt;}
.y15_c00033{bottom:737.093333pt;}
.y14_c00033{bottom:767.360000pt;}
.y13_c00033{bottom:796.160000pt;}
.y12_c00033{bottom:825.360000pt;}
.y11_c00033{bottom:854.160000pt;}
.y10_c00033{bottom:884.160000pt;}
.yf_c00033{bottom:913.760000pt;}
.y6_c00033{bottom:924.960000pt;}
.ye_c00033{bottom:943.226667pt;}
.y5_c00033{bottom:952.826667pt;}
.yd_c00033{bottom:972.293333pt;}
.y4_c00033{bottom:978.960000pt;}
.yc_c00033{bottom:1002.026667pt;}
.y3_c00033{bottom:1005.093333pt;}
.y2_c00033{bottom:1031.760000pt;}
.y1_c00033{bottom:1090.293333pt;}
.h6_c00033{height:11.733399pt;}
.h7_c00033{height:38.937500pt;}
.h4_c00033{height:81.148438pt;}
.h3_c00033{height:87.783854pt;}
.h5_c00033{height:97.912760pt;}
.h2_c00033{height:108.041667pt;}
.h0_c00033{height:1229.066667pt;}
.h1_c00033{height:1229.333333pt;}
.w2_c00033{width:93.222667pt;}
.w0_c00033{width:767.266667pt;}
.w1_c00033{width:767.333333pt;}
.x0_c00033{left:0.000000pt;}
.x7_c00033{left:45.333333pt;}
.x6_c00033{left:46.266667pt;}
.x4_c00033{left:48.266667pt;}
.x3_c00033{left:49.200000pt;}
.x5_c00033{left:58.800000pt;}
.x2_c00033{left:74.133333pt;}
.x11_c00033{left:239.200000pt;}
.xf_c00033{left:241.733333pt;}
.x10_c00033{left:244.133333pt;}
.xc_c00033{left:246.000000pt;}
.xb_c00033{left:247.466667pt;}
.xa_c00033{left:248.400000pt;}
.x9_c00033{left:249.333333pt;}
.x8_c00033{left:254.133333pt;}
.xe_c00033{left:284.933333pt;}
.x1_c00033{left:305.066667pt;}
.xd_c00033{left:309.866667pt;}
.x13_c00033{left:340.801554pt;}
.x12_c00033{left:471.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_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_1f392776aa8d1665530b9c3b.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_7b8adb2201087e218109c1e3.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_7150dbf7660ab4dffc04c73c.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_34676133dab657e590be9819.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00034;src:url('chunks/assets/font_5ddaddc912af6f4bd51f80f4.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00034;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:129.600000px;}
.ls2_c00034{letter-spacing:0.000000px;}
.ls4_c00034{letter-spacing:6.000000px;}
.ls0_c00034{letter-spacing:14.292000px;}
.ls3_c00034{letter-spacing:24.000000px;}
.ls1_c00034{letter-spacing:485.925000px;}
.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;}
}
.ws4_c00034{word-spacing:-57.000000px;}
.ws1_c00034{word-spacing:-32.424000px;}
.ws2_c00034{word-spacing:-25.939200px;}
.ws0_c00034{word-spacing:-20.967000px;}
.ws5_c00034{word-spacing:-20.244000px;}
.ws6_c00034{word-spacing:-18.798000px;}
.ws3_c00034{word-spacing:-15.984000px;}
.ws7_c00034{word-spacing:0.000000px;}
._1d_c00034{margin-left:-86.400000px;}
._2f_c00034{margin-left:-61.344000px;}
._3b_c00034{margin-left:-58.572000px;}
._46_c00034{margin-left:-56.160000px;}
._25_c00034{margin-left:-50.016000px;}
._27_c00034{margin-left:-48.864000px;}
._22_c00034{margin-left:-44.688000px;}
._37_c00034{margin-left:-35.904000px;}
._55_c00034{margin-left:-31.071000px;}
._54_c00034{margin-left:-28.287000px;}
._5d_c00034{margin-left:-23.064000px;}
._5f_c00034{margin-left:-22.047000px;}
._d_c00034{margin-left:-20.640000px;}
._56_c00034{margin-left:-19.488000px;}
._52_c00034{margin-left:-17.979000px;}
._59_c00034{margin-left:-16.965000px;}
._33_c00034{margin-left:-15.660000px;}
._45_c00034{margin-left:-14.367000px;}
._5b_c00034{margin-left:-13.182000px;}
._23_c00034{margin-left:-12.180000px;}
._2e_c00034{margin-left:-11.040000px;}
._41_c00034{margin-left:-10.017000px;}
._1b_c00034{margin-left:-8.928000px;}
._2_c00034{margin-left:-7.392000px;}
._3_c00034{margin-left:-6.048000px;}
._1_c00034{margin-left:-3.840000px;}
._3c_c00034{margin-left:-2.529000px;}
._a_c00034{margin-left:-1.152000px;}
._12_c00034{width:1.824000px;}
._10_c00034{width:3.072000px;}
._8_c00034{width:4.128000px;}
._7_c00034{width:5.376000px;}
._5_c00034{width:7.104000px;}
._6_c00034{width:8.544000px;}
._19_c00034{width:9.792000px;}
._0_c00034{width:11.745000px;}
._38_c00034{width:12.927000px;}
._44_c00034{width:14.304000px;}
._20_c00034{width:15.456000px;}
._3d_c00034{width:16.608000px;}
._4_c00034{width:17.664000px;}
._4b_c00034{width:19.137000px;}
._3e_c00034{width:20.160000px;}
._39_c00034{width:21.792000px;}
._3f_c00034{width:24.225000px;}
._11_c00034{width:25.536000px;}
._18_c00034{width:27.360000px;}
._e_c00034{width:28.608000px;}
._16_c00034{width:30.048000px;}
._b_c00034{width:32.064000px;}
._4c_c00034{width:33.441000px;}
._13_c00034{width:34.752000px;}
._17_c00034{width:36.096000px;}
._26_c00034{width:37.152000px;}
._9_c00034{width:38.304000px;}
._f_c00034{width:39.552000px;}
._50_c00034{width:40.671000px;}
._14_c00034{width:41.952000px;}
._49_c00034{width:43.104000px;}
._15_c00034{width:44.928000px;}
._4e_c00034{width:46.752000px;}
._c_c00034{width:49.536000px;}
._2a_c00034{width:51.648000px;}
._4f_c00034{width:53.472000px;}
._53_c00034{width:56.091000px;}
._28_c00034{width:60.951000px;}
._4d_c00034{width:63.069000px;}
._1c_c00034{width:68.640000px;}
._2b_c00034{width:73.407000px;}
._1a_c00034{width:75.360000px;}
._51_c00034{width:82.143000px;}
._4a_c00034{width:84.264000px;}
._2d_c00034{width:99.072000px;}
._40_c00034{width:103.296000px;}
._57_c00034{width:107.445000px;}
._3a_c00034{width:111.903000px;}
._5a_c00034{width:113.352000px;}
._34_c00034{width:114.927000px;}
._48_c00034{width:123.390000px;}
._1e_c00034{width:135.552000px;}
._5e_c00034{width:141.732000px;}
._58_c00034{width:146.085000px;}
._42_c00034{width:165.936000px;}
._24_c00034{width:176.222400px;}
._43_c00034{width:183.216000px;}
._30_c00034{width:211.401000px;}
._2c_c00034{width:219.744000px;}
._21_c00034{width:224.016000px;}
._29_c00034{width:229.728000px;}
._35_c00034{width:260.337000px;}
._1f_c00034{width:301.248000px;}
._36_c00034{width:310.224000px;}
._47_c00034{width:326.409000px;}
._5c_c00034{width:516.501000px;}
._31_c00034{width:555.666000px;}
._32_c00034{width:1029.603000px;}
.fc2_c00034{color:transparent;}
.fc1_c00034{color:rgb(128,128,128);}
.fc0_c00034{color:rgb(0,0,0);}
.fs4_c00034{font-size:36.000000px;}
.fs8_c00034{font-size:48.000000px;}
.fs3_c00034{font-size:67.200000px;}
.fs7_c00034{font-size:78.000000px;}
.fs2_c00034{font-size:84.000000px;}
.fs0_c00034{font-size:87.000000px;}
.fs6_c00034{font-size:93.000000px;}
.fs1_c00034{font-size:96.000000px;}
.fs5_c00034{font-size:102.000000px;}
.y0_c00034{bottom:0.000000px;}
.y2c_c00034{bottom:3.105000px;}
.y2b_c00034{bottom:7.228363px;}
.y2a_c00034{bottom:126.000000px;}
.y28_c00034{bottom:163.650000px;}
.y29_c00034{bottom:169.500000px;}
.y22_c00034{bottom:226.200000px;}
.y21_c00034{bottom:259.950000px;}
.y27_c00034{bottom:278.850000px;}
.y20_c00034{bottom:294.000000px;}
.y26_c00034{bottom:305.550000px;}
.y25_c00034{bottom:311.550000px;}
.y1f_c00034{bottom:327.150000px;}
.y24_c00034{bottom:336.900000px;}
.y1e_c00034{bottom:361.200000px;}
.y23_c00034{bottom:370.200000px;}
.y1d_c00034{bottom:395.250000px;}
.y1c_c00034{bottom:428.400000px;}
.y1b_c00034{bottom:461.700000px;}
.y1a_c00034{bottom:495.150000px;}
.y19_c00034{bottom:527.850000px;}
.y18_c00034{bottom:561.900000px;}
.y17_c00034{bottom:594.750000px;}
.y16_c00034{bottom:628.500000px;}
.y15_c00034{bottom:661.800000px;}
.y14_c00034{bottom:694.650000px;}
.y13_c00034{bottom:727.350000px;}
.y12_c00034{bottom:761.700000px;}
.y11_c00034{bottom:794.850000px;}
.y10_c00034{bottom:835.350000px;}
.yf_c00034{bottom:861.750000px;}
.ye_c00034{bottom:927.750000px;}
.yd_c00034{bottom:961.650000px;}
.yc_c00034{bottom:994.950000px;}
.yb_c00034{bottom:1028.400000px;}
.ya_c00034{bottom:1061.400000px;}
.y9_c00034{bottom:1094.550000px;}
.y8_c00034{bottom:1114.200000px;}
.y7_c00034{bottom:1127.700000px;}
.y6_c00034{bottom:1161.000000px;}
.y5_c00034{bottom:1194.000000px;}
.y4_c00034{bottom:1226.250000px;}
.y3_c00034{bottom:1260.000000px;}
.y2_c00034{bottom:1293.000000px;}
.y1_c00034{bottom:1326.300000px;}
.h6_c00034{height:13.200074px;}
.h7_c00034{height:43.804688px;}
.h3_c00034{height:45.580078px;}
.h1_c00034{height:110.151855px;}
.h4_c00034{height:117.748535px;}
.h2_c00034{height:121.546875px;}
.h5_c00034{height:220.891992px;}
.h0_c00034{height:1363.500000px;}
.w2_c00034{width:104.875500px;}
.w1_c00034{width:864.750000px;}
.w0_c00034{width:865.050000px;}
.x0_c00034{left:0.000000px;}
.xa_c00034{left:27.300000px;}
.x7_c00034{left:32.100000px;}
.x6_c00034{left:33.750000px;}
.x5_c00034{left:35.400000px;}
.x3_c00034{left:36.450000px;}
.x2_c00034{left:38.100000px;}
.xb_c00034{left:41.400000px;}
.x8_c00034{left:99.600000px;}
.x4_c00034{left:146.850000px;}
.x11_c00034{left:255.750000px;}
.x12_c00034{left:361.350000px;}
.x14_c00034{left:384.339249px;}
.x9_c00034{left:390.750000px;}
.x13_c00034{left:483.000000px;}
.x1_c00034{left:531.600000px;}
.xf_c00034{left:639.900000px;}
.xd_c00034{left:651.600000px;}
.x10_c00034{left:674.700000px;}
.xe_c00034{left:682.050000px;}
.xc_c00034{left:734.100000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:115.200000pt;}
.ls2_c00034{letter-spacing:0.000000pt;}
.ls4_c00034{letter-spacing:5.333333pt;}
.ls0_c00034{letter-spacing:12.704000pt;}
.ls3_c00034{letter-spacing:21.333333pt;}
.ls1_c00034{letter-spacing:431.933333pt;}
.ws4_c00034{word-spacing:-50.666667pt;}
.ws1_c00034{word-spacing:-28.821333pt;}
.ws2_c00034{word-spacing:-23.057067pt;}
.ws0_c00034{word-spacing:-18.637333pt;}
.ws5_c00034{word-spacing:-17.994667pt;}
.ws6_c00034{word-spacing:-16.709333pt;}
.ws3_c00034{word-spacing:-14.208000pt;}
.ws7_c00034{word-spacing:0.000000pt;}
._1d_c00034{margin-left:-76.800000pt;}
._2f_c00034{margin-left:-54.528000pt;}
._3b_c00034{margin-left:-52.064000pt;}
._46_c00034{margin-left:-49.920000pt;}
._25_c00034{margin-left:-44.458667pt;}
._27_c00034{margin-left:-43.434667pt;}
._22_c00034{margin-left:-39.722667pt;}
._37_c00034{margin-left:-31.914667pt;}
._55_c00034{margin-left:-27.618667pt;}
._54_c00034{margin-left:-25.144000pt;}
._5d_c00034{margin-left:-20.501333pt;}
._5f_c00034{margin-left:-19.597333pt;}
._d_c00034{margin-left:-18.346667pt;}
._56_c00034{margin-left:-17.322667pt;}
._52_c00034{margin-left:-15.981333pt;}
._59_c00034{margin-left:-15.080000pt;}
._33_c00034{margin-left:-13.920000pt;}
._45_c00034{margin-left:-12.770667pt;}
._5b_c00034{margin-left:-11.717333pt;}
._23_c00034{margin-left:-10.826667pt;}
._2e_c00034{margin-left:-9.813333pt;}
._41_c00034{margin-left:-8.904000pt;}
._1b_c00034{margin-left:-7.936000pt;}
._2_c00034{margin-left:-6.570667pt;}
._3_c00034{margin-left:-5.376000pt;}
._1_c00034{margin-left:-3.413333pt;}
._3c_c00034{margin-left:-2.248000pt;}
._a_c00034{margin-left:-1.024000pt;}
._12_c00034{width:1.621333pt;}
._10_c00034{width:2.730667pt;}
._8_c00034{width:3.669333pt;}
._7_c00034{width:4.778667pt;}
._5_c00034{width:6.314667pt;}
._6_c00034{width:7.594667pt;}
._19_c00034{width:8.704000pt;}
._0_c00034{width:10.440000pt;}
._38_c00034{width:11.490667pt;}
._44_c00034{width:12.714667pt;}
._20_c00034{width:13.738667pt;}
._3d_c00034{width:14.762667pt;}
._4_c00034{width:15.701333pt;}
._4b_c00034{width:17.010667pt;}
._3e_c00034{width:17.920000pt;}
._39_c00034{width:19.370667pt;}
._3f_c00034{width:21.533333pt;}
._11_c00034{width:22.698667pt;}
._18_c00034{width:24.320000pt;}
._e_c00034{width:25.429333pt;}
._16_c00034{width:26.709333pt;}
._b_c00034{width:28.501333pt;}
._4c_c00034{width:29.725333pt;}
._13_c00034{width:30.890667pt;}
._17_c00034{width:32.085333pt;}
._26_c00034{width:33.024000pt;}
._9_c00034{width:34.048000pt;}
._f_c00034{width:35.157333pt;}
._50_c00034{width:36.152000pt;}
._14_c00034{width:37.290667pt;}
._49_c00034{width:38.314667pt;}
._15_c00034{width:39.936000pt;}
._4e_c00034{width:41.557333pt;}
._c_c00034{width:44.032000pt;}
._2a_c00034{width:45.909333pt;}
._4f_c00034{width:47.530667pt;}
._53_c00034{width:49.858667pt;}
._28_c00034{width:54.178667pt;}
._4d_c00034{width:56.061333pt;}
._1c_c00034{width:61.013333pt;}
._2b_c00034{width:65.250667pt;}
._1a_c00034{width:66.986667pt;}
._51_c00034{width:73.016000pt;}
._4a_c00034{width:74.901333pt;}
._2d_c00034{width:88.064000pt;}
._40_c00034{width:91.818667pt;}
._57_c00034{width:95.506667pt;}
._3a_c00034{width:99.469333pt;}
._5a_c00034{width:100.757333pt;}
._34_c00034{width:102.157333pt;}
._48_c00034{width:109.680000pt;}
._1e_c00034{width:120.490667pt;}
._5e_c00034{width:125.984000pt;}
._58_c00034{width:129.853333pt;}
._42_c00034{width:147.498667pt;}
._24_c00034{width:156.642133pt;}
._43_c00034{width:162.858667pt;}
._30_c00034{width:187.912000pt;}
._2c_c00034{width:195.328000pt;}
._21_c00034{width:199.125333pt;}
._29_c00034{width:204.202667pt;}
._35_c00034{width:231.410667pt;}
._1f_c00034{width:267.776000pt;}
._36_c00034{width:275.754667pt;}
._47_c00034{width:290.141333pt;}
._5c_c00034{width:459.112000pt;}
._31_c00034{width:493.925333pt;}
._32_c00034{width:915.202667pt;}
.fs4_c00034{font-size:32.000000pt;}
.fs8_c00034{font-size:42.666667pt;}
.fs3_c00034{font-size:59.733333pt;}
.fs7_c00034{font-size:69.333333pt;}
.fs2_c00034{font-size:74.666667pt;}
.fs0_c00034{font-size:77.333333pt;}
.fs6_c00034{font-size:82.666667pt;}
.fs1_c00034{font-size:85.333333pt;}
.fs5_c00034{font-size:90.666667pt;}
.y0_c00034{bottom:0.000000pt;}
.y2c_c00034{bottom:2.760000pt;}
.y2b_c00034{bottom:6.425212pt;}
.y2a_c00034{bottom:112.000000pt;}
.y28_c00034{bottom:145.466667pt;}
.y29_c00034{bottom:150.666667pt;}
.y22_c00034{bottom:201.066667pt;}
.y21_c00034{bottom:231.066667pt;}
.y27_c00034{bottom:247.866667pt;}
.y20_c00034{bottom:261.333333pt;}
.y26_c00034{bottom:271.600000pt;}
.y25_c00034{bottom:276.933333pt;}
.y1f_c00034{bottom:290.800000pt;}
.y24_c00034{bottom:299.466667pt;}
.y1e_c00034{bottom:321.066667pt;}
.y23_c00034{bottom:329.066667pt;}
.y1d_c00034{bottom:351.333333pt;}
.y1c_c00034{bottom:380.800000pt;}
.y1b_c00034{bottom:410.400000pt;}
.y1a_c00034{bottom:440.133333pt;}
.y19_c00034{bottom:469.200000pt;}
.y18_c00034{bottom:499.466667pt;}
.y17_c00034{bottom:528.666667pt;}
.y16_c00034{bottom:558.666667pt;}
.y15_c00034{bottom:588.266667pt;}
.y14_c00034{bottom:617.466667pt;}
.y13_c00034{bottom:646.533333pt;}
.y12_c00034{bottom:677.066667pt;}
.y11_c00034{bottom:706.533333pt;}
.y10_c00034{bottom:742.533333pt;}
.yf_c00034{bottom:766.000000pt;}
.ye_c00034{bottom:824.666667pt;}
.yd_c00034{bottom:854.800000pt;}
.yc_c00034{bottom:884.400000pt;}
.yb_c00034{bottom:914.133333pt;}
.ya_c00034{bottom:943.466667pt;}
.y9_c00034{bottom:972.933333pt;}
.y8_c00034{bottom:990.400000pt;}
.y7_c00034{bottom:1002.400000pt;}
.y6_c00034{bottom:1032.000000pt;}
.y5_c00034{bottom:1061.333333pt;}
.y4_c00034{bottom:1090.000000pt;}
.y3_c00034{bottom:1120.000000pt;}
.y2_c00034{bottom:1149.333333pt;}
.y1_c00034{bottom:1178.933333pt;}
.h6_c00034{height:11.733399pt;}
.h7_c00034{height:38.937500pt;}
.h3_c00034{height:40.515625pt;}
.h1_c00034{height:97.912760pt;}
.h4_c00034{height:104.665365pt;}
.h2_c00034{height:108.041667pt;}
.h5_c00034{height:196.348438pt;}
.h0_c00034{height:1212.000000pt;}
.w2_c00034{width:93.222667pt;}
.w1_c00034{width:768.666667pt;}
.w0_c00034{width:768.933333pt;}
.x0_c00034{left:0.000000pt;}
.xa_c00034{left:24.266667pt;}
.x7_c00034{left:28.533333pt;}
.x6_c00034{left:30.000000pt;}
.x5_c00034{left:31.466667pt;}
.x3_c00034{left:32.400000pt;}
.x2_c00034{left:33.866667pt;}
.xb_c00034{left:36.800000pt;}
.x8_c00034{left:88.533333pt;}
.x4_c00034{left:130.533333pt;}
.x11_c00034{left:227.333333pt;}
.x12_c00034{left:321.200000pt;}
.x14_c00034{left:341.634888pt;}
.x9_c00034{left:347.333333pt;}
.x13_c00034{left:429.333333pt;}
.x1_c00034{left:472.533333pt;}
.xf_c00034{left:568.800000pt;}
.xd_c00034{left:579.200000pt;}
.x10_c00034{left:599.733333pt;}
.xe_c00034{left:606.266667pt;}
.xc_c00034{left:652.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3be56b4acfd3b61fa1144dd7.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_b3db9ee844cbd199d8854521.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_6d6aea579e564fba3837a40d.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_c7ecce6c37829290652ba3ac.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_853b5700b4eecc895e3ae783.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00035;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00035{font-family:ff6_c00035;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.lsc_c00035{letter-spacing:0.000000px;}
.lse_c00035{letter-spacing:6.000000px;}
.ls7_c00035{letter-spacing:14.520000px;}
.ls8_c00035{letter-spacing:44.700000px;}
.ls6_c00035{letter-spacing:60.033000px;}
.lsb_c00035{letter-spacing:60.633000px;}
.lsa_c00035{letter-spacing:61.233000px;}
.lsd_c00035{letter-spacing:72.000000px;}
.ls2_c00035{letter-spacing:84.033000px;}
.ls1_c00035{letter-spacing:92.433000px;}
.ls5_c00035{letter-spacing:160.941000px;}
.ls0_c00035{letter-spacing:291.633000px;}
.ls3_c00035{letter-spacing:317.433000px;}
.ls9_c00035{letter-spacing:480.033000px;}
.ls4_c00035{letter-spacing:606.600000px;}
.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;}
}
.ws3_c00035{word-spacing:-95.859000px;}
.ws2_c00035{word-spacing:-41.250000px;}
.ws5_c00035{word-spacing:-23.136000px;}
.ws0_c00035{word-spacing:-20.967000px;}
.ws4_c00035{word-spacing:-20.244000px;}
.ws1_c00035{word-spacing:-18.798000px;}
.ws6_c00035{word-spacing:0.000000px;}
._30_c00035{margin-left:-54.945000px;}
._29_c00035{margin-left:-52.140000px;}
._39_c00035{margin-left:-47.901000px;}
._2a_c00035{margin-left:-46.365000px;}
._2b_c00035{margin-left:-43.725000px;}
._36_c00035{margin-left:-41.745000px;}
._3b_c00035{margin-left:-39.651000px;}
._2f_c00035{margin-left:-37.785000px;}
._3d_c00035{margin-left:-36.117000px;}
._2e_c00035{margin-left:-33.660000px;}
._3a_c00035{margin-left:-32.175000px;}
._25_c00035{margin-left:-30.972000px;}
._32_c00035{margin-left:-28.050000px;}
._38_c00035{margin-left:-26.382000px;}
._33_c00035{margin-left:-24.180000px;}
._37_c00035{margin-left:-23.100000px;}
._45_c00035{margin-left:-22.080000px;}
._2d_c00035{margin-left:-20.955000px;}
._17_c00035{margin-left:-17.331000px;}
._3c_c00035{margin-left:-16.278000px;}
._3f_c00035{margin-left:-13.728000px;}
._2c_c00035{margin-left:-12.210000px;}
._31_c00035{margin-left:-10.065000px;}
._24_c00035{margin-left:-7.887000px;}
._5e_c00035{margin-left:-6.840000px;}
._e_c00035{margin-left:-5.724000px;}
._4b_c00035{margin-left:-4.644000px;}
._3_c00035{margin-left:-3.588000px;}
._2_c00035{margin-left:-1.872000px;}
._4_c00035{width:1.794000px;}
._7_c00035{width:2.910000px;}
._f_c00035{width:4.773000px;}
._8_c00035{width:6.018000px;}
._c_c00035{width:7.068000px;}
._16_c00035{width:8.106000px;}
._18_c00035{width:10.047000px;}
._1_c00035{width:11.076000px;}
._5_c00035{width:12.186000px;}
._a_c00035{width:13.434000px;}
._9_c00035{width:14.592000px;}
._0_c00035{width:16.269000px;}
._4e_c00035{width:17.490000px;}
._1c_c00035{width:18.594000px;}
._12_c00035{width:19.878000px;}
._10_c00035{width:21.372000px;}
._68_c00035{width:22.626000px;}
._1d_c00035{width:24.036000px;}
._11_c00035{width:26.373000px;}
._19_c00035{width:27.804000px;}
._b_c00035{width:29.589000px;}
._1f_c00035{width:30.792000px;}
._21_c00035{width:32.796000px;}
._14_c00035{width:34.248000px;}
._23_c00035{width:35.898000px;}
._53_c00035{width:36.927000px;}
._20_c00035{width:38.205000px;}
._52_c00035{width:39.732000px;}
._1a_c00035{width:40.827000px;}
._d_c00035{width:42.396000px;}
._1b_c00035{width:43.872000px;}
._47_c00035{width:45.048000px;}
._22_c00035{width:46.296000px;}
._13_c00035{width:47.418000px;}
._15_c00035{width:49.692000px;}
._44_c00035{width:51.036000px;}
._48_c00035{width:54.078000px;}
._42_c00035{width:57.276000px;}
._50_c00035{width:58.293000px;}
._5f_c00035{width:59.838000px;}
._5b_c00035{width:61.953000px;}
._34_c00035{width:63.648000px;}
._63_c00035{width:66.744000px;}
._26_c00035{width:68.640000px;}
._51_c00035{width:70.170000px;}
._49_c00035{width:71.316000px;}
._28_c00035{width:73.176000px;}
._59_c00035{width:80.064000px;}
._60_c00035{width:88.860000px;}
._1e_c00035{width:95.238000px;}
._57_c00035{width:103.353000px;}
._58_c00035{width:105.339000px;}
._4d_c00035{width:111.603000px;}
._56_c00035{width:114.120000px;}
._4c_c00035{width:116.208000px;}
._43_c00035{width:139.551000px;}
._5d_c00035{width:163.938000px;}
._6_c00035{width:172.128000px;}
._65_c00035{width:204.867000px;}
._3e_c00035{width:208.389000px;}
._61_c00035{width:211.464000px;}
._35_c00035{width:214.800000px;}
._64_c00035{width:242.418000px;}
._41_c00035{width:253.281000px;}
._5c_c00035{width:256.560000px;}
._66_c00035{width:278.547000px;}
._40_c00035{width:285.984000px;}
._55_c00035{width:308.484000px;}
._4f_c00035{width:311.631000px;}
._4a_c00035{width:346.257000px;}
._62_c00035{width:383.466000px;}
._5a_c00035{width:452.703000px;}
._69_c00035{width:477.210000px;}
._27_c00035{width:487.539000px;}
._46_c00035{width:691.680000px;}
._6a_c00035{width:807.414000px;}
._54_c00035{width:983.667000px;}
._67_c00035{width:1096.413000px;}
._6b_c00035{width:1551.072000px;}
.fc2_c00035{color:transparent;}
.fc1_c00035{color:rgb(128,128,128);}
.fc0_c00035{color:rgb(0,0,0);}
.fs7_c00035{font-size:36.000000px;}
.fs8_c00035{font-size:48.000000px;}
.fs1_c00035{font-size:78.000000px;}
.fs3_c00035{font-size:84.000000px;}
.fs0_c00035{font-size:87.000000px;}
.fs2_c00035{font-size:96.000000px;}
.fs5_c00035{font-size:99.000000px;}
.fs6_c00035{font-size:105.000000px;}
.fs4_c00035{font-size:165.000000px;}
.y0_c00035{bottom:0.000000px;}
.y26_c00035{bottom:3.105000px;}
.y25_c00035{bottom:7.228357px;}
.y24_c00035{bottom:127.680000px;}
.y23_c00035{bottom:159.030000px;}
.y22_c00035{bottom:192.330000px;}
.y21_c00035{bottom:224.430000px;}
.y20_c00035{bottom:253.080000px;}
.y1f_c00035{bottom:276.480000px;}
.y1e_c00035{bottom:299.430000px;}
.y1d_c00035{bottom:332.130000px;}
.y1c_c00035{bottom:364.230000px;}
.y1b_c00035{bottom:404.280000px;}
.y1a_c00035{bottom:430.380000px;}
.y19_c00035{bottom:498.480000px;}
.y18_c00035{bottom:532.680000px;}
.y17_c00035{bottom:565.980000px;}
.y16_c00035{bottom:599.130000px;}
.y15_c00035{bottom:632.580000px;}
.y14_c00035{bottom:665.880000px;}
.y13_c00035{bottom:699.630000px;}
.y12_c00035{bottom:732.330000px;}
.y11_c00035{bottom:766.230000px;}
.y10_c00035{bottom:798.630000px;}
.yf_c00035{bottom:831.930000px;}
.ye_c00035{bottom:865.380000px;}
.yd_c00035{bottom:898.380000px;}
.yc_c00035{bottom:930.930000px;}
.yb_c00035{bottom:963.930000px;}
.ya_c00035{bottom:996.930000px;}
.y9_c00035{bottom:1026.030000px;}
.y8_c00035{bottom:1046.580000px;}
.y7_c00035{bottom:1068.930000px;}
.y6_c00035{bottom:1101.930000px;}
.y5_c00035{bottom:1131.330000px;}
.y4_c00035{bottom:1162.980000px;}
.y3_c00035{bottom:1194.780000px;}
.y2_c00035{bottom:1226.880000px;}
.y1_c00035{bottom:1329.780000px;}
.h6_c00035{height:13.200074px;}
.h7_c00035{height:43.804688px;}
.h5_c00035{height:45.580078px;}
.h2_c00035{height:110.151855px;}
.h3_c00035{height:121.546875px;}
.h4_c00035{height:161.857910px;}
.h0_c00035{height:1382.700000px;}
.h1_c00035{height:1383.000000px;}
.w2_c00035{width:104.875500px;}
.w0_c00035{width:863.175000px;}
.w1_c00035{width:863.250000px;}
.x0_c00035{left:0.000000px;}
.x3_c00035{left:53.100000px;}
.x10_c00035{left:54.300000px;}
.x4_c00035{left:55.350000px;}
.x2_c00035{left:78.600000px;}
.xf_c00035{left:80.700000px;}
.x8_c00035{left:168.750000px;}
.x7_c00035{left:174.750000px;}
.xa_c00035{left:184.500000px;}
.xe_c00035{left:264.300000px;}
.xb_c00035{left:267.000000px;}
.x6_c00035{left:268.200000px;}
.x5_c00035{left:269.700000px;}
.x9_c00035{left:271.950000px;}
.xc_c00035{left:273.600000px;}
.x1_c00035{left:298.950000px;}
.xd_c00035{left:316.800000px;}
.x11_c00035{left:383.401749px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.lsc_c00035{letter-spacing:0.000000pt;}
.lse_c00035{letter-spacing:5.333333pt;}
.ls7_c00035{letter-spacing:12.906667pt;}
.ls8_c00035{letter-spacing:39.733333pt;}
.ls6_c00035{letter-spacing:53.362667pt;}
.lsb_c00035{letter-spacing:53.896000pt;}
.lsa_c00035{letter-spacing:54.429333pt;}
.lsd_c00035{letter-spacing:64.000000pt;}
.ls2_c00035{letter-spacing:74.696000pt;}
.ls1_c00035{letter-spacing:82.162667pt;}
.ls5_c00035{letter-spacing:143.058667pt;}
.ls0_c00035{letter-spacing:259.229333pt;}
.ls3_c00035{letter-spacing:282.162667pt;}
.ls9_c00035{letter-spacing:426.696000pt;}
.ls4_c00035{letter-spacing:539.200000pt;}
.ws3_c00035{word-spacing:-85.208000pt;}
.ws2_c00035{word-spacing:-36.666667pt;}
.ws5_c00035{word-spacing:-20.565333pt;}
.ws0_c00035{word-spacing:-18.637333pt;}
.ws4_c00035{word-spacing:-17.994667pt;}
.ws1_c00035{word-spacing:-16.709333pt;}
.ws6_c00035{word-spacing:0.000000pt;}
._30_c00035{margin-left:-48.840000pt;}
._29_c00035{margin-left:-46.346667pt;}
._39_c00035{margin-left:-42.578667pt;}
._2a_c00035{margin-left:-41.213333pt;}
._2b_c00035{margin-left:-38.866667pt;}
._36_c00035{margin-left:-37.106667pt;}
._3b_c00035{margin-left:-35.245333pt;}
._2f_c00035{margin-left:-33.586667pt;}
._3d_c00035{margin-left:-32.104000pt;}
._2e_c00035{margin-left:-29.920000pt;}
._3a_c00035{margin-left:-28.600000pt;}
._25_c00035{margin-left:-27.530667pt;}
._32_c00035{margin-left:-24.933333pt;}
._38_c00035{margin-left:-23.450667pt;}
._33_c00035{margin-left:-21.493333pt;}
._37_c00035{margin-left:-20.533333pt;}
._45_c00035{margin-left:-19.626667pt;}
._2d_c00035{margin-left:-18.626667pt;}
._17_c00035{margin-left:-15.405333pt;}
._3c_c00035{margin-left:-14.469333pt;}
._3f_c00035{margin-left:-12.202667pt;}
._2c_c00035{margin-left:-10.853333pt;}
._31_c00035{margin-left:-8.946667pt;}
._24_c00035{margin-left:-7.010667pt;}
._5e_c00035{margin-left:-6.080000pt;}
._e_c00035{margin-left:-5.088000pt;}
._4b_c00035{margin-left:-4.128000pt;}
._3_c00035{margin-left:-3.189333pt;}
._2_c00035{margin-left:-1.664000pt;}
._4_c00035{width:1.594667pt;}
._7_c00035{width:2.586667pt;}
._f_c00035{width:4.242667pt;}
._8_c00035{width:5.349333pt;}
._c_c00035{width:6.282667pt;}
._16_c00035{width:7.205333pt;}
._18_c00035{width:8.930667pt;}
._1_c00035{width:9.845333pt;}
._5_c00035{width:10.832000pt;}
._a_c00035{width:11.941333pt;}
._9_c00035{width:12.970667pt;}
._0_c00035{width:14.461333pt;}
._4e_c00035{width:15.546667pt;}
._1c_c00035{width:16.528000pt;}
._12_c00035{width:17.669333pt;}
._10_c00035{width:18.997333pt;}
._68_c00035{width:20.112000pt;}
._1d_c00035{width:21.365333pt;}
._11_c00035{width:23.442667pt;}
._19_c00035{width:24.714667pt;}
._b_c00035{width:26.301333pt;}
._1f_c00035{width:27.370667pt;}
._21_c00035{width:29.152000pt;}
._14_c00035{width:30.442667pt;}
._23_c00035{width:31.909333pt;}
._53_c00035{width:32.824000pt;}
._20_c00035{width:33.960000pt;}
._52_c00035{width:35.317333pt;}
._1a_c00035{width:36.290667pt;}
._d_c00035{width:37.685333pt;}
._1b_c00035{width:38.997333pt;}
._47_c00035{width:40.042667pt;}
._22_c00035{width:41.152000pt;}
._13_c00035{width:42.149333pt;}
._15_c00035{width:44.170667pt;}
._44_c00035{width:45.365333pt;}
._48_c00035{width:48.069333pt;}
._42_c00035{width:50.912000pt;}
._50_c00035{width:51.816000pt;}
._5f_c00035{width:53.189333pt;}
._5b_c00035{width:55.069333pt;}
._34_c00035{width:56.576000pt;}
._63_c00035{width:59.328000pt;}
._26_c00035{width:61.013333pt;}
._51_c00035{width:62.373333pt;}
._49_c00035{width:63.392000pt;}
._28_c00035{width:65.045333pt;}
._59_c00035{width:71.168000pt;}
._60_c00035{width:78.986667pt;}
._1e_c00035{width:84.656000pt;}
._57_c00035{width:91.869333pt;}
._58_c00035{width:93.634667pt;}
._4d_c00035{width:99.202667pt;}
._56_c00035{width:101.440000pt;}
._4c_c00035{width:103.296000pt;}
._43_c00035{width:124.045333pt;}
._5d_c00035{width:145.722667pt;}
._6_c00035{width:153.002667pt;}
._65_c00035{width:182.104000pt;}
._3e_c00035{width:185.234667pt;}
._61_c00035{width:187.968000pt;}
._35_c00035{width:190.933333pt;}
._64_c00035{width:215.482667pt;}
._41_c00035{width:225.138667pt;}
._5c_c00035{width:228.053333pt;}
._66_c00035{width:247.597333pt;}
._40_c00035{width:254.208000pt;}
._55_c00035{width:274.208000pt;}
._4f_c00035{width:277.005333pt;}
._4a_c00035{width:307.784000pt;}
._62_c00035{width:340.858667pt;}
._5a_c00035{width:402.402667pt;}
._69_c00035{width:424.186667pt;}
._27_c00035{width:433.368000pt;}
._46_c00035{width:614.826667pt;}
._6a_c00035{width:717.701333pt;}
._54_c00035{width:874.370667pt;}
._67_c00035{width:974.589333pt;}
._6b_c00035{width:1378.730667pt;}
.fs7_c00035{font-size:32.000000pt;}
.fs8_c00035{font-size:42.666667pt;}
.fs1_c00035{font-size:69.333333pt;}
.fs3_c00035{font-size:74.666667pt;}
.fs0_c00035{font-size:77.333333pt;}
.fs2_c00035{font-size:85.333333pt;}
.fs5_c00035{font-size:88.000000pt;}
.fs6_c00035{font-size:93.333333pt;}
.fs4_c00035{font-size:146.666667pt;}
.y0_c00035{bottom:0.000000pt;}
.y26_c00035{bottom:2.760000pt;}
.y25_c00035{bottom:6.425206pt;}
.y24_c00035{bottom:113.493333pt;}
.y23_c00035{bottom:141.360000pt;}
.y22_c00035{bottom:170.960000pt;}
.y21_c00035{bottom:199.493333pt;}
.y20_c00035{bottom:224.960000pt;}
.y1f_c00035{bottom:245.760000pt;}
.y1e_c00035{bottom:266.160000pt;}
.y1d_c00035{bottom:295.226667pt;}
.y1c_c00035{bottom:323.760000pt;}
.y1b_c00035{bottom:359.360000pt;}
.y1a_c00035{bottom:382.560000pt;}
.y19_c00035{bottom:443.093333pt;}
.y18_c00035{bottom:473.493333pt;}
.y17_c00035{bottom:503.093333pt;}
.y16_c00035{bottom:532.560000pt;}
.y15_c00035{bottom:562.293333pt;}
.y14_c00035{bottom:591.893333pt;}
.y13_c00035{bottom:621.893333pt;}
.y12_c00035{bottom:650.960000pt;}
.y11_c00035{bottom:681.093333pt;}
.y10_c00035{bottom:709.893333pt;}
.yf_c00035{bottom:739.493333pt;}
.ye_c00035{bottom:769.226667pt;}
.yd_c00035{bottom:798.560000pt;}
.yc_c00035{bottom:827.493333pt;}
.yb_c00035{bottom:856.826667pt;}
.ya_c00035{bottom:886.160000pt;}
.y9_c00035{bottom:912.026667pt;}
.y8_c00035{bottom:930.293333pt;}
.y7_c00035{bottom:950.160000pt;}
.y6_c00035{bottom:979.493333pt;}
.y5_c00035{bottom:1005.626667pt;}
.y4_c00035{bottom:1033.760000pt;}
.y3_c00035{bottom:1062.026667pt;}
.y2_c00035{bottom:1090.560000pt;}
.y1_c00035{bottom:1182.026667pt;}
.h6_c00035{height:11.733399pt;}
.h7_c00035{height:38.937500pt;}
.h5_c00035{height:40.515625pt;}
.h2_c00035{height:97.912760pt;}
.h3_c00035{height:108.041667pt;}
.h4_c00035{height:143.873698pt;}
.h0_c00035{height:1229.066667pt;}
.h1_c00035{height:1229.333333pt;}
.w2_c00035{width:93.222667pt;}
.w0_c00035{width:767.266667pt;}
.w1_c00035{width:767.333333pt;}
.x0_c00035{left:0.000000pt;}
.x3_c00035{left:47.200000pt;}
.x10_c00035{left:48.266667pt;}
.x4_c00035{left:49.200000pt;}
.x2_c00035{left:69.866667pt;}
.xf_c00035{left:71.733333pt;}
.x8_c00035{left:150.000000pt;}
.x7_c00035{left:155.333333pt;}
.xa_c00035{left:164.000000pt;}
.xe_c00035{left:234.933333pt;}
.xb_c00035{left:237.333333pt;}
.x6_c00035{left:238.400000pt;}
.x5_c00035{left:239.733333pt;}
.x9_c00035{left:241.733333pt;}
.xc_c00035{left:243.200000pt;}
.x1_c00035{left:265.733333pt;}
.xd_c00035{left:281.600000pt;}
.x11_c00035{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_746a061721d53804a0d580ea.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_114e9c6805864de60ce014e2.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls1_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:8.952000px;}
.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;}
}
.ws0_c00036{word-spacing:0.000000px;}
._2d_c00036{margin-left:-32.256000px;}
._1d_c00036{margin-left:-5.184000px;}
._16_c00036{margin-left:-3.648000px;}
._5_c00036{margin-left:-2.400000px;}
._11_c00036{margin-left:-1.152000px;}
._6_c00036{width:1.344000px;}
._1_c00036{width:2.592000px;}
._0_c00036{width:3.840000px;}
._15_c00036{width:4.896000px;}
._2_c00036{width:5.952000px;}
._a_c00036{width:7.872000px;}
._8_c00036{width:9.312000px;}
._f_c00036{width:10.944000px;}
._2c_c00036{width:12.000000px;}
._3_c00036{width:13.152000px;}
._26_c00036{width:14.304000px;}
._4_c00036{width:15.456000px;}
._29_c00036{width:16.896000px;}
._1a_c00036{width:17.952000px;}
._7_c00036{width:19.776000px;}
._1b_c00036{width:21.504000px;}
._1c_c00036{width:24.192000px;}
._17_c00036{width:25.728000px;}
._1f_c00036{width:27.840000px;}
._9_c00036{width:29.856000px;}
._c_c00036{width:31.680000px;}
._23_c00036{width:34.656000px;}
._12_c00036{width:36.288000px;}
._27_c00036{width:37.440000px;}
._14_c00036{width:39.168000px;}
._b_c00036{width:40.416000px;}
._e_c00036{width:41.856000px;}
._19_c00036{width:42.912000px;}
._1e_c00036{width:45.024000px;}
._28_c00036{width:47.136000px;}
._20_c00036{width:48.864000px;}
._24_c00036{width:50.016000px;}
._18_c00036{width:52.224000px;}
._13_c00036{width:53.472000px;}
._10_c00036{width:55.968000px;}
._25_c00036{width:57.888000px;}
._d_c00036{width:60.864000px;}
._2b_c00036{width:62.496000px;}
._21_c00036{width:64.992000px;}
._22_c00036{width:69.216000px;}
._2a_c00036{width:75.168000px;}
._2e_c00036{width:746.592000px;}
.fc2_c00036{color:transparent;}
.fc1_c00036{color:rgb(128,128,128);}
.fc0_c00036{color:rgb(0,0,0);}
.fs3_c00036{font-size:48.000000px;}
.fs2_c00036{font-size:84.000000px;}
.fs0_c00036{font-size:87.000000px;}
.fs1_c00036{font-size:96.000000px;}
.y0_c00036{bottom:0.000000px;}
.y27_c00036{bottom:3.105000px;}
.y26_c00036{bottom:7.228355px;}
.y25_c00036{bottom:109.335000px;}
.y24_c00036{bottom:142.635000px;}
.y23_c00036{bottom:176.835000px;}
.y22_c00036{bottom:210.585000px;}
.y21_c00036{bottom:244.335000px;}
.y20_c00036{bottom:278.085000px;}
.y1f_c00036{bottom:312.135000px;}
.y1e_c00036{bottom:345.585000px;}
.y1d_c00036{bottom:379.185000px;}
.y1c_c00036{bottom:412.785000px;}
.y1b_c00036{bottom:446.385000px;}
.y1a_c00036{bottom:479.835000px;}
.y19_c00036{bottom:512.985000px;}
.y18_c00036{bottom:546.435000px;}
.y17_c00036{bottom:579.735000px;}
.y16_c00036{bottom:613.185000px;}
.y15_c00036{bottom:645.885000px;}
.y14_c00036{bottom:679.635000px;}
.y13_c00036{bottom:712.785000px;}
.y12_c00036{bottom:746.535000px;}
.y11_c00036{bottom:779.835000px;}
.y10_c00036{bottom:813.285000px;}
.yf_c00036{bottom:846.135000px;}
.ye_c00036{bottom:879.435000px;}
.yd_c00036{bottom:912.135000px;}
.yc_c00036{bottom:944.985000px;}
.yb_c00036{bottom:978.435000px;}
.ya_c00036{bottom:1011.435000px;}
.y9_c00036{bottom:1044.585000px;}
.y8_c00036{bottom:1077.435000px;}
.y7_c00036{bottom:1110.585000px;}
.y6_c00036{bottom:1143.735000px;}
.y5_c00036{bottom:1176.435000px;}
.y4_c00036{bottom:1209.585000px;}
.y3_c00036{bottom:1242.285000px;}
.y2_c00036{bottom:1275.285000px;}
.y1_c00036{bottom:1292.835000px;}
.h4_c00036{height:13.200074px;}
.h5_c00036{height:43.804688px;}
.h2_c00036{height:110.151855px;}
.h3_c00036{height:121.546875px;}
.h1_c00036{height:1353.000000px;}
.h0_c00036{height:1353.225000px;}
.w2_c00036{width:104.875500px;}
.w0_c00036{width:858.600000px;}
.w1_c00036{width:858.750000px;}
.x0_c00036{left:0.000000px;}
.x6_c00036{left:15.300000px;}
.x5_c00036{left:18.000000px;}
.x4_c00036{left:19.650000px;}
.x3_c00036{left:20.700000px;}
.x2_c00036{left:22.950000px;}
.x7_c00036{left:24.000000px;}
.x8_c00036{left:25.050000px;}
.x9_c00036{left:26.100000px;}
.x1_c00036{left:297.900000px;}
.xa_c00036{left:306.450000px;}
.xb_c00036{left:381.114258px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls1_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:7.957333pt;}
.ws0_c00036{word-spacing:0.000000pt;}
._2d_c00036{margin-left:-28.672000pt;}
._1d_c00036{margin-left:-4.608000pt;}
._16_c00036{margin-left:-3.242667pt;}
._5_c00036{margin-left:-2.133333pt;}
._11_c00036{margin-left:-1.024000pt;}
._6_c00036{width:1.194667pt;}
._1_c00036{width:2.304000pt;}
._0_c00036{width:3.413333pt;}
._15_c00036{width:4.352000pt;}
._2_c00036{width:5.290667pt;}
._a_c00036{width:6.997333pt;}
._8_c00036{width:8.277333pt;}
._f_c00036{width:9.728000pt;}
._2c_c00036{width:10.666667pt;}
._3_c00036{width:11.690667pt;}
._26_c00036{width:12.714667pt;}
._4_c00036{width:13.738667pt;}
._29_c00036{width:15.018667pt;}
._1a_c00036{width:15.957333pt;}
._7_c00036{width:17.578667pt;}
._1b_c00036{width:19.114667pt;}
._1c_c00036{width:21.504000pt;}
._17_c00036{width:22.869333pt;}
._1f_c00036{width:24.746667pt;}
._9_c00036{width:26.538667pt;}
._c_c00036{width:28.160000pt;}
._23_c00036{width:30.805333pt;}
._12_c00036{width:32.256000pt;}
._27_c00036{width:33.280000pt;}
._14_c00036{width:34.816000pt;}
._b_c00036{width:35.925333pt;}
._e_c00036{width:37.205333pt;}
._19_c00036{width:38.144000pt;}
._1e_c00036{width:40.021333pt;}
._28_c00036{width:41.898667pt;}
._20_c00036{width:43.434667pt;}
._24_c00036{width:44.458667pt;}
._18_c00036{width:46.421333pt;}
._13_c00036{width:47.530667pt;}
._10_c00036{width:49.749333pt;}
._25_c00036{width:51.456000pt;}
._d_c00036{width:54.101333pt;}
._2b_c00036{width:55.552000pt;}
._21_c00036{width:57.770667pt;}
._22_c00036{width:61.525333pt;}
._2a_c00036{width:66.816000pt;}
._2e_c00036{width:663.637333pt;}
.fs3_c00036{font-size:42.666667pt;}
.fs2_c00036{font-size:74.666667pt;}
.fs0_c00036{font-size:77.333333pt;}
.fs1_c00036{font-size:85.333333pt;}
.y0_c00036{bottom:0.000000pt;}
.y27_c00036{bottom:2.760000pt;}
.y26_c00036{bottom:6.425204pt;}
.y25_c00036{bottom:97.186667pt;}
.y24_c00036{bottom:126.786667pt;}
.y23_c00036{bottom:157.186667pt;}
.y22_c00036{bottom:187.186667pt;}
.y21_c00036{bottom:217.186667pt;}
.y20_c00036{bottom:247.186667pt;}
.y1f_c00036{bottom:277.453333pt;}
.y1e_c00036{bottom:307.186667pt;}
.y1d_c00036{bottom:337.053333pt;}
.y1c_c00036{bottom:366.920000pt;}
.y1b_c00036{bottom:396.786667pt;}
.y1a_c00036{bottom:426.520000pt;}
.y19_c00036{bottom:455.986667pt;}
.y18_c00036{bottom:485.720000pt;}
.y17_c00036{bottom:515.320000pt;}
.y16_c00036{bottom:545.053333pt;}
.y15_c00036{bottom:574.120000pt;}
.y14_c00036{bottom:604.120000pt;}
.y13_c00036{bottom:633.586667pt;}
.y12_c00036{bottom:663.586667pt;}
.y11_c00036{bottom:693.186667pt;}
.y10_c00036{bottom:722.920000pt;}
.yf_c00036{bottom:752.120000pt;}
.ye_c00036{bottom:781.720000pt;}
.yd_c00036{bottom:810.786667pt;}
.yc_c00036{bottom:839.986667pt;}
.yb_c00036{bottom:869.720000pt;}
.ya_c00036{bottom:899.053333pt;}
.y9_c00036{bottom:928.520000pt;}
.y8_c00036{bottom:957.720000pt;}
.y7_c00036{bottom:987.186667pt;}
.y6_c00036{bottom:1016.653333pt;}
.y5_c00036{bottom:1045.720000pt;}
.y4_c00036{bottom:1075.186667pt;}
.y3_c00036{bottom:1104.253333pt;}
.y2_c00036{bottom:1133.586667pt;}
.y1_c00036{bottom:1149.186667pt;}
.h4_c00036{height:11.733399pt;}
.h5_c00036{height:38.937500pt;}
.h2_c00036{height:97.912760pt;}
.h3_c00036{height:108.041667pt;}
.h1_c00036{height:1202.666667pt;}
.h0_c00036{height:1202.866667pt;}
.w2_c00036{width:93.222667pt;}
.w0_c00036{width:763.200000pt;}
.w1_c00036{width:763.333333pt;}
.x0_c00036{left:0.000000pt;}
.x6_c00036{left:13.600000pt;}
.x5_c00036{left:16.000000pt;}
.x4_c00036{left:17.466667pt;}
.x3_c00036{left:18.400000pt;}
.x2_c00036{left:20.400000pt;}
.x7_c00036{left:21.333333pt;}
.x8_c00036{left:22.266667pt;}
.x9_c00036{left:23.200000pt;}
.x1_c00036{left:264.800000pt;}
.xa_c00036{left:272.400000pt;}
.xb_c00036{left:338.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f891edca7879620d6ed9b9d.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.ls2_c00037{letter-spacing:6.000000px;}
.ls1_c00037{letter-spacing:27.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00037{word-spacing:-57.000000px;}
.ws0_c00037{word-spacing:-50.136000px;}
.ws2_c00037{word-spacing:0.000000px;}
._31_c00037{margin-left:-30.480000px;}
._1b_c00037{margin-left:-20.928000px;}
._30_c00037{margin-left:-16.752000px;}
._1c_c00037{margin-left:-14.784000px;}
._37_c00037{margin-left:-13.152000px;}
._2e_c00037{margin-left:-12.096000px;}
._4_c00037{margin-left:-10.656000px;}
._5_c00037{margin-left:-8.928000px;}
._25_c00037{margin-left:-6.984000px;}
._3_c00037{margin-left:-5.376000px;}
._e_c00037{margin-left:-3.552000px;}
._f_c00037{margin-left:-2.496000px;}
._17_c00037{margin-left:-1.272000px;}
._b_c00037{width:1.920000px;}
._0_c00037{width:3.552000px;}
._1_c00037{width:4.896000px;}
._8_c00037{width:6.240000px;}
._9_c00037{width:7.296000px;}
._1f_c00037{width:8.448000px;}
._15_c00037{width:9.792000px;}
._7_c00037{width:11.136000px;}
._6_c00037{width:12.576000px;}
._2b_c00037{width:13.632000px;}
._23_c00037{width:15.264000px;}
._2_c00037{width:16.320000px;}
._1d_c00037{width:17.688000px;}
._14_c00037{width:19.104000px;}
._2f_c00037{width:20.472000px;}
._d_c00037{width:21.504000px;}
._2c_c00037{width:25.248000px;}
._22_c00037{width:26.304000px;}
._11_c00037{width:28.320000px;}
._12_c00037{width:29.664000px;}
._2d_c00037{width:31.104000px;}
._24_c00037{width:32.160000px;}
._c_c00037{width:33.792000px;}
._13_c00037{width:34.944000px;}
._20_c00037{width:36.000000px;}
._1a_c00037{width:37.680000px;}
._10_c00037{width:39.360000px;}
._19_c00037{width:40.608000px;}
._a_c00037{width:42.816000px;}
._18_c00037{width:44.160000px;}
._16_c00037{width:45.312000px;}
._26_c00037{width:46.464000px;}
._2a_c00037{width:47.520000px;}
._21_c00037{width:49.440000px;}
._1e_c00037{width:51.840000px;}
._27_c00037{width:53.184000px;}
._34_c00037{width:57.792000px;}
._28_c00037{width:60.288000px;}
._29_c00037{width:61.872000px;}
._36_c00037{width:64.392000px;}
._33_c00037{width:67.008000px;}
._32_c00037{width:70.752000px;}
._35_c00037{width:78.720000px;}
._38_c00037{width:747.840000px;}
._39_c00037{width:1054.824000px;}
.fc2_c00037{color:transparent;}
.fc1_c00037{color:rgb(128,128,128);}
.fc0_c00037{color:rgb(0,0,0);}
.fs2_c00037{font-size:48.000000px;}
.fs0_c00037{font-size:96.000000px;}
.fs1_c00037{font-size:102.000000px;}
.y0_c00037{bottom:0.000000px;}
.y26_c00037{bottom:3.105000px;}
.y25_c00037{bottom:7.228357px;}
.y24_c00037{bottom:111.480000px;}
.y23_c00037{bottom:144.780000px;}
.y22_c00037{bottom:179.280000px;}
.y21_c00037{bottom:213.630000px;}
.y20_c00037{bottom:247.830000px;}
.y1f_c00037{bottom:281.880000px;}
.y1e_c00037{bottom:315.630000px;}
.y1d_c00037{bottom:349.680000px;}
.y1c_c00037{bottom:383.430000px;}
.y1b_c00037{bottom:417.480000px;}
.y1a_c00037{bottom:451.230000px;}
.y19_c00037{bottom:484.980000px;}
.y18_c00037{bottom:518.430000px;}
.y17_c00037{bottom:552.180000px;}
.y16_c00037{bottom:585.630000px;}
.y15_c00037{bottom:619.380000px;}
.y14_c00037{bottom:652.680000px;}
.y13_c00037{bottom:686.130000px;}
.y12_c00037{bottom:719.580000px;}
.y11_c00037{bottom:753.030000px;}
.y10_c00037{bottom:786.480000px;}
.yf_c00037{bottom:820.080000px;}
.ye_c00037{bottom:852.930000px;}
.yd_c00037{bottom:886.680000px;}
.yc_c00037{bottom:919.980000px;}
.yb_c00037{bottom:952.380000px;}
.ya_c00037{bottom:985.830000px;}
.y9_c00037{bottom:1018.980000px;}
.y8_c00037{bottom:1052.280000px;}
.y7_c00037{bottom:1085.130000px;}
.y6_c00037{bottom:1118.430000px;}
.y5_c00037{bottom:1151.580000px;}
.y4_c00037{bottom:1184.580000px;}
.y3_c00037{bottom:1217.730000px;}
.y2_c00037{bottom:1250.880000px;}
.y1_c00037{bottom:1284.480000px;}
.h3_c00037{height:13.200074px;}
.h4_c00037{height:43.804688px;}
.h2_c00037{height:121.546875px;}
.h0_c00037{height:1382.700000px;}
.h1_c00037{height:1383.000000px;}
.w2_c00037{width:104.875500px;}
.w0_c00037{width:863.175000px;}
.w1_c00037{width:863.250000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:274.650000px;}
.x3_c00037{left:275.700000px;}
.x2_c00037{left:276.750000px;}
.x4_c00037{left:277.800000px;}
.x6_c00037{left:279.450000px;}
.x5_c00037{left:280.500000px;}
.x7_c00037{left:282.600000px;}
.x8_c00037{left:283.800000px;}
.x9_c00037{left:286.500000px;}
.xa_c00037{left:288.150000px;}
.xb_c00037{left:291.900000px;}
.xc_c00037{left:332.400000px;}
.xd_c00037{left:383.401749px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ls2_c00037{letter-spacing:5.333333pt;}
.ls1_c00037{letter-spacing:24.000000pt;}
.ws1_c00037{word-spacing:-50.666667pt;}
.ws0_c00037{word-spacing:-44.565333pt;}
.ws2_c00037{word-spacing:0.000000pt;}
._31_c00037{margin-left:-27.093333pt;}
._1b_c00037{margin-left:-18.602667pt;}
._30_c00037{margin-left:-14.890667pt;}
._1c_c00037{margin-left:-13.141333pt;}
._37_c00037{margin-left:-11.690667pt;}
._2e_c00037{margin-left:-10.752000pt;}
._4_c00037{margin-left:-9.472000pt;}
._5_c00037{margin-left:-7.936000pt;}
._25_c00037{margin-left:-6.208000pt;}
._3_c00037{margin-left:-4.778667pt;}
._e_c00037{margin-left:-3.157333pt;}
._f_c00037{margin-left:-2.218667pt;}
._17_c00037{margin-left:-1.130667pt;}
._b_c00037{width:1.706667pt;}
._0_c00037{width:3.157333pt;}
._1_c00037{width:4.352000pt;}
._8_c00037{width:5.546667pt;}
._9_c00037{width:6.485333pt;}
._1f_c00037{width:7.509333pt;}
._15_c00037{width:8.704000pt;}
._7_c00037{width:9.898667pt;}
._6_c00037{width:11.178667pt;}
._2b_c00037{width:12.117333pt;}
._23_c00037{width:13.568000pt;}
._2_c00037{width:14.506667pt;}
._1d_c00037{width:15.722667pt;}
._14_c00037{width:16.981333pt;}
._2f_c00037{width:18.197333pt;}
._d_c00037{width:19.114667pt;}
._2c_c00037{width:22.442667pt;}
._22_c00037{width:23.381333pt;}
._11_c00037{width:25.173333pt;}
._12_c00037{width:26.368000pt;}
._2d_c00037{width:27.648000pt;}
._24_c00037{width:28.586667pt;}
._c_c00037{width:30.037333pt;}
._13_c00037{width:31.061333pt;}
._20_c00037{width:32.000000pt;}
._1a_c00037{width:33.493333pt;}
._10_c00037{width:34.986667pt;}
._19_c00037{width:36.096000pt;}
._a_c00037{width:38.058667pt;}
._18_c00037{width:39.253333pt;}
._16_c00037{width:40.277333pt;}
._26_c00037{width:41.301333pt;}
._2a_c00037{width:42.240000pt;}
._21_c00037{width:43.946667pt;}
._1e_c00037{width:46.080000pt;}
._27_c00037{width:47.274667pt;}
._34_c00037{width:51.370667pt;}
._28_c00037{width:53.589333pt;}
._29_c00037{width:54.997333pt;}
._36_c00037{width:57.237333pt;}
._33_c00037{width:59.562667pt;}
._32_c00037{width:62.890667pt;}
._35_c00037{width:69.973333pt;}
._38_c00037{width:664.746667pt;}
._39_c00037{width:937.621333pt;}
.fs2_c00037{font-size:42.666667pt;}
.fs0_c00037{font-size:85.333333pt;}
.fs1_c00037{font-size:90.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y26_c00037{bottom:2.760000pt;}
.y25_c00037{bottom:6.425206pt;}
.y24_c00037{bottom:99.093333pt;}
.y23_c00037{bottom:128.693333pt;}
.y22_c00037{bottom:159.360000pt;}
.y21_c00037{bottom:189.893333pt;}
.y20_c00037{bottom:220.293333pt;}
.y1f_c00037{bottom:250.560000pt;}
.y1e_c00037{bottom:280.560000pt;}
.y1d_c00037{bottom:310.826667pt;}
.y1c_c00037{bottom:340.826667pt;}
.y1b_c00037{bottom:371.093333pt;}
.y1a_c00037{bottom:401.093333pt;}
.y19_c00037{bottom:431.093333pt;}
.y18_c00037{bottom:460.826667pt;}
.y17_c00037{bottom:490.826667pt;}
.y16_c00037{bottom:520.560000pt;}
.y15_c00037{bottom:550.560000pt;}
.y14_c00037{bottom:580.160000pt;}
.y13_c00037{bottom:609.893333pt;}
.y12_c00037{bottom:639.626667pt;}
.y11_c00037{bottom:669.360000pt;}
.y10_c00037{bottom:699.093333pt;}
.yf_c00037{bottom:728.960000pt;}
.ye_c00037{bottom:758.160000pt;}
.yd_c00037{bottom:788.160000pt;}
.yc_c00037{bottom:817.760000pt;}
.yb_c00037{bottom:846.560000pt;}
.ya_c00037{bottom:876.293333pt;}
.y9_c00037{bottom:905.760000pt;}
.y8_c00037{bottom:935.360000pt;}
.y7_c00037{bottom:964.560000pt;}
.y6_c00037{bottom:994.160000pt;}
.y5_c00037{bottom:1023.626667pt;}
.y4_c00037{bottom:1052.960000pt;}
.y3_c00037{bottom:1082.426667pt;}
.y2_c00037{bottom:1111.893333pt;}
.y1_c00037{bottom:1141.760000pt;}
.h3_c00037{height:11.733399pt;}
.h4_c00037{height:38.937500pt;}
.h2_c00037{height:108.041667pt;}
.h0_c00037{height:1229.066667pt;}
.h1_c00037{height:1229.333333pt;}
.w2_c00037{width:93.222667pt;}
.w0_c00037{width:767.266667pt;}
.w1_c00037{width:767.333333pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:244.133333pt;}
.x3_c00037{left:245.066667pt;}
.x2_c00037{left:246.000000pt;}
.x4_c00037{left:246.933333pt;}
.x6_c00037{left:248.400000pt;}
.x5_c00037{left:249.333333pt;}
.x7_c00037{left:251.200000pt;}
.x8_c00037{left:252.266667pt;}
.x9_c00037{left:254.666667pt;}
.xa_c00037{left:256.133333pt;}
.xb_c00037{left:259.466667pt;}
.xc_c00037{left:295.466667pt;}
.xd_c00037{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3d48d3e416075a6e6257179.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_ded70bba9ce65b381b2d7494.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_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;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_b436ae09121815c99f293df8.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_b5c1feb5fed9b9168c269797.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00038;src:url('chunks/assets/font_c07b6e2bd6bd7ee08d3fe15c.woff2')format("woff");}.ff6_c00038{font-family:ff6_c00038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00038;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00038{font-family:ff7_c00038;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls1_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:6.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:-57.000000px;}
.ws4_c00038{word-spacing:-48.372000px;}
.ws2_c00038{word-spacing:-36.906000px;}
.ws3_c00038{word-spacing:-23.136000px;}
.ws1_c00038{word-spacing:-20.244000px;}
.ws5_c00038{word-spacing:-18.798000px;}
.ws6_c00038{word-spacing:0.000000px;}
._37_c00038{margin-left:-27.789000px;}
._35_c00038{margin-left:-16.254000px;}
._38_c00038{margin-left:-15.132000px;}
._2d_c00038{margin-left:-13.536000px;}
._33_c00038{margin-left:-12.336000px;}
._2b_c00038{margin-left:-10.488000px;}
._2c_c00038{margin-left:-9.120000px;}
._10_c00038{margin-left:-7.440000px;}
._c_c00038{margin-left:-5.712000px;}
._14_c00038{margin-left:-4.032000px;}
._1b_c00038{margin-left:-2.688000px;}
._2_c00038{margin-left:-1.344000px;}
._4_c00038{width:1.440000px;}
._0_c00038{width:2.592000px;}
._6_c00038{width:4.128000px;}
._7_c00038{width:5.472000px;}
._a_c00038{width:7.008000px;}
._20_c00038{width:8.160000px;}
._9_c00038{width:9.216000px;}
._1c_c00038{width:10.368000px;}
._23_c00038{width:11.520000px;}
._e_c00038{width:13.056000px;}
._b_c00038{width:14.712000px;}
._21_c00038{width:16.032000px;}
._17_c00038{width:17.376000px;}
._1d_c00038{width:18.720000px;}
._13_c00038{width:19.776000px;}
._1f_c00038{width:20.976000px;}
._34_c00038{width:24.132000px;}
._8_c00038{width:25.344000px;}
._36_c00038{width:26.514000px;}
._11_c00038{width:27.840000px;}
._15_c00038{width:29.664000px;}
._22_c00038{width:30.816000px;}
._12_c00038{width:32.064000px;}
._d_c00038{width:34.176000px;}
._1_c00038{width:36.576000px;}
._16_c00038{width:38.880000px;}
._f_c00038{width:40.032000px;}
._19_c00038{width:42.048000px;}
._1e_c00038{width:43.776000px;}
._18_c00038{width:45.024000px;}
._26_c00038{width:47.328000px;}
._5_c00038{width:49.152000px;}
._28_c00038{width:50.880000px;}
._3_c00038{width:52.704000px;}
._2a_c00038{width:56.256000px;}
._27_c00038{width:57.384000px;}
._25_c00038{width:58.560000px;}
._29_c00038{width:60.768000px;}
._24_c00038{width:63.072000px;}
._1a_c00038{width:64.992000px;}
._30_c00038{width:97.056000px;}
._31_c00038{width:103.872000px;}
._2f_c00038{width:106.080000px;}
._32_c00038{width:168.396000px;}
._2e_c00038{width:215.712000px;}
.fc2_c00038{color:transparent;}
.fc1_c00038{color:rgb(128,128,128);}
.fc0_c00038{color:rgb(0,0,0);}
.fs2_c00038{font-size:30.000000px;}
.fs6_c00038{font-size:48.000000px;}
.fs4_c00038{font-size:78.000000px;}
.fs3_c00038{font-size:84.000000px;}
.fs5_c00038{font-size:87.000000px;}
.fs0_c00038{font-size:96.000000px;}
.fs1_c00038{font-size:102.000000px;}
.y0_c00038{bottom:0.000000px;}
.y2e_c00038{bottom:3.105000px;}
.y2d_c00038{bottom:7.228369px;}
.y23_c00038{bottom:92.370000px;}
.y22_c00038{bottom:124.920000px;}
.y21_c00038{bottom:159.270000px;}
.y2c_c00038{bottom:167.070000px;}
.y20_c00038{bottom:192.420000px;}
.y2b_c00038{bottom:197.820000px;}
.y1f_c00038{bottom:226.470000px;}
.y2a_c00038{bottom:227.520000px;}
.y29_c00038{bottom:257.070000px;}
.y1e_c00038{bottom:260.820000px;}
.y28_c00038{bottom:288.120000px;}
.y1d_c00038{bottom:294.270000px;}
.y27_c00038{bottom:316.920000px;}
.y1c_c00038{bottom:327.720000px;}
.y26_c00038{bottom:346.920000px;}
.y1b_c00038{bottom:362.070000px;}
.y25_c00038{bottom:377.220000px;}
.y1a_c00038{bottom:395.520000px;}
.y24_c00038{bottom:406.320000px;}
.y19_c00038{bottom:461.670000px;}
.y18_c00038{bottom:513.570000px;}
.y17_c00038{bottom:529.920000px;}
.y16_c00038{bottom:563.520000px;}
.y15_c00038{bottom:596.970000px;}
.y14_c00038{bottom:630.120000px;}
.y13_c00038{bottom:663.120000px;}
.y12_c00038{bottom:696.570000px;}
.y11_c00038{bottom:729.270000px;}
.y10_c00038{bottom:763.320000px;}
.yf_c00038{bottom:796.770000px;}
.ye_c00038{bottom:829.620000px;}
.yd_c00038{bottom:862.620000px;}
.yc_c00038{bottom:895.770000px;}
.yb_c00038{bottom:928.920000px;}
.ya_c00038{bottom:962.220000px;}
.y9_c00038{bottom:995.520000px;}
.y8_c00038{bottom:1028.370000px;}
.y7_c00038{bottom:1061.370000px;}
.y6_c00038{bottom:1094.520000px;}
.y5_c00038{bottom:1128.270000px;}
.y4_c00038{bottom:1160.970000px;}
.y3_c00038{bottom:1193.370000px;}
.y2_c00038{bottom:1226.520000px;}
.y1_c00038{bottom:1259.820000px;}
.h7_c00038{height:13.200073px;}
.h3_c00038{height:37.983398px;}
.h8_c00038{height:43.804688px;}
.h6_c00038{height:91.291992px;}
.h4_c00038{height:98.756836px;}
.h5_c00038{height:110.151855px;}
.h2_c00038{height:121.546875px;}
.h0_c00038{height:1383.450000px;}
.h1_c00038{height:1383.750000px;}
.w2_c00038{width:104.875500px;}
.w0_c00038{width:878.025000px;}
.w1_c00038{width:878.250000px;}
.x0_c00038{left:0.000000px;}
.x5_c00038{left:35.400000px;}
.x4_c00038{left:37.050000px;}
.x3_c00038{left:38.100000px;}
.x2_c00038{left:39.750000px;}
.x6_c00038{left:41.400000px;}
.x1_c00038{left:42.450000px;}
.xa_c00038{left:43.500000px;}
.xb_c00038{left:45.150000px;}
.xc_c00038{left:46.200000px;}
.x9_c00038{left:90.000000px;}
.x8_c00038{left:105.000000px;}
.x13_c00038{left:390.826721px;}
.x7_c00038{left:535.500000px;}
.xd_c00038{left:566.250000px;}
.xf_c00038{left:630.450000px;}
.x10_c00038{left:632.550000px;}
.x12_c00038{left:634.800000px;}
.x11_c00038{left:638.100000px;}
.xe_c00038{left:659.700000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls1_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:5.333333pt;}
.ws0_c00038{word-spacing:-50.666667pt;}
.ws4_c00038{word-spacing:-42.997333pt;}
.ws2_c00038{word-spacing:-32.805333pt;}
.ws3_c00038{word-spacing:-20.565333pt;}
.ws1_c00038{word-spacing:-17.994667pt;}
.ws5_c00038{word-spacing:-16.709333pt;}
.ws6_c00038{word-spacing:0.000000pt;}
._37_c00038{margin-left:-24.701333pt;}
._35_c00038{margin-left:-14.448000pt;}
._38_c00038{margin-left:-13.450667pt;}
._2d_c00038{margin-left:-12.032000pt;}
._33_c00038{margin-left:-10.965333pt;}
._2b_c00038{margin-left:-9.322667pt;}
._2c_c00038{margin-left:-8.106667pt;}
._10_c00038{margin-left:-6.613333pt;}
._c_c00038{margin-left:-5.077333pt;}
._14_c00038{margin-left:-3.584000pt;}
._1b_c00038{margin-left:-2.389333pt;}
._2_c00038{margin-left:-1.194667pt;}
._4_c00038{width:1.280000pt;}
._0_c00038{width:2.304000pt;}
._6_c00038{width:3.669333pt;}
._7_c00038{width:4.864000pt;}
._a_c00038{width:6.229333pt;}
._20_c00038{width:7.253333pt;}
._9_c00038{width:8.192000pt;}
._1c_c00038{width:9.216000pt;}
._23_c00038{width:10.240000pt;}
._e_c00038{width:11.605333pt;}
._b_c00038{width:13.077333pt;}
._21_c00038{width:14.250667pt;}
._17_c00038{width:15.445333pt;}
._1d_c00038{width:16.640000pt;}
._13_c00038{width:17.578667pt;}
._1f_c00038{width:18.645333pt;}
._34_c00038{width:21.450667pt;}
._8_c00038{width:22.528000pt;}
._36_c00038{width:23.568000pt;}
._11_c00038{width:24.746667pt;}
._15_c00038{width:26.368000pt;}
._22_c00038{width:27.392000pt;}
._12_c00038{width:28.501333pt;}
._d_c00038{width:30.378667pt;}
._1_c00038{width:32.512000pt;}
._16_c00038{width:34.560000pt;}
._f_c00038{width:35.584000pt;}
._19_c00038{width:37.376000pt;}
._1e_c00038{width:38.912000pt;}
._18_c00038{width:40.021333pt;}
._26_c00038{width:42.069333pt;}
._5_c00038{width:43.690667pt;}
._28_c00038{width:45.226667pt;}
._3_c00038{width:46.848000pt;}
._2a_c00038{width:50.005333pt;}
._27_c00038{width:51.008000pt;}
._25_c00038{width:52.053333pt;}
._29_c00038{width:54.016000pt;}
._24_c00038{width:56.064000pt;}
._1a_c00038{width:57.770667pt;}
._30_c00038{width:86.272000pt;}
._31_c00038{width:92.330667pt;}
._2f_c00038{width:94.293333pt;}
._32_c00038{width:149.685333pt;}
._2e_c00038{width:191.744000pt;}
.fs2_c00038{font-size:26.666667pt;}
.fs6_c00038{font-size:42.666667pt;}
.fs4_c00038{font-size:69.333333pt;}
.fs3_c00038{font-size:74.666667pt;}
.fs5_c00038{font-size:77.333333pt;}
.fs0_c00038{font-size:85.333333pt;}
.fs1_c00038{font-size:90.666667pt;}
.y0_c00038{bottom:0.000000pt;}
.y2e_c00038{bottom:2.760000pt;}
.y2d_c00038{bottom:6.425217pt;}
.y23_c00038{bottom:82.106667pt;}
.y22_c00038{bottom:111.040000pt;}
.y21_c00038{bottom:141.573333pt;}
.y2c_c00038{bottom:148.506667pt;}
.y20_c00038{bottom:171.040000pt;}
.y2b_c00038{bottom:175.840000pt;}
.y1f_c00038{bottom:201.306667pt;}
.y2a_c00038{bottom:202.240000pt;}
.y29_c00038{bottom:228.506667pt;}
.y1e_c00038{bottom:231.840000pt;}
.y28_c00038{bottom:256.106667pt;}
.y1d_c00038{bottom:261.573333pt;}
.y27_c00038{bottom:281.706667pt;}
.y1c_c00038{bottom:291.306667pt;}
.y26_c00038{bottom:308.373333pt;}
.y1b_c00038{bottom:321.840000pt;}
.y25_c00038{bottom:335.306667pt;}
.y1a_c00038{bottom:351.573333pt;}
.y24_c00038{bottom:361.173333pt;}
.y19_c00038{bottom:410.373333pt;}
.y18_c00038{bottom:456.506667pt;}
.y17_c00038{bottom:471.040000pt;}
.y16_c00038{bottom:500.906667pt;}
.y15_c00038{bottom:530.640000pt;}
.y14_c00038{bottom:560.106667pt;}
.y13_c00038{bottom:589.440000pt;}
.y12_c00038{bottom:619.173333pt;}
.y11_c00038{bottom:648.240000pt;}
.y10_c00038{bottom:678.506667pt;}
.yf_c00038{bottom:708.240000pt;}
.ye_c00038{bottom:737.440000pt;}
.yd_c00038{bottom:766.773333pt;}
.yc_c00038{bottom:796.240000pt;}
.yb_c00038{bottom:825.706667pt;}
.ya_c00038{bottom:855.306667pt;}
.y9_c00038{bottom:884.906667pt;}
.y8_c00038{bottom:914.106667pt;}
.y7_c00038{bottom:943.440000pt;}
.y6_c00038{bottom:972.906667pt;}
.y5_c00038{bottom:1002.906667pt;}
.y4_c00038{bottom:1031.973333pt;}
.y3_c00038{bottom:1060.773333pt;}
.y2_c00038{bottom:1090.240000pt;}
.y1_c00038{bottom:1119.840000pt;}
.h7_c00038{height:11.733399pt;}
.h3_c00038{height:33.763021pt;}
.h8_c00038{height:38.937500pt;}
.h6_c00038{height:81.148438pt;}
.h4_c00038{height:87.783854pt;}
.h5_c00038{height:97.912760pt;}
.h2_c00038{height:108.041667pt;}
.h0_c00038{height:1229.733333pt;}
.h1_c00038{height:1230.000000pt;}
.w2_c00038{width:93.222667pt;}
.w0_c00038{width:780.466667pt;}
.w1_c00038{width:780.666667pt;}
.x0_c00038{left:0.000000pt;}
.x5_c00038{left:31.466667pt;}
.x4_c00038{left:32.933333pt;}
.x3_c00038{left:33.866667pt;}
.x2_c00038{left:35.333333pt;}
.x6_c00038{left:36.800000pt;}
.x1_c00038{left:37.733333pt;}
.xa_c00038{left:38.666667pt;}
.xb_c00038{left:40.133333pt;}
.xc_c00038{left:41.066667pt;}
.x9_c00038{left:80.000000pt;}
.x8_c00038{left:93.333333pt;}
.x13_c00038{left:347.401530pt;}
.x7_c00038{left:476.000000pt;}
.xd_c00038{left:503.333333pt;}
.xf_c00038{left:560.400000pt;}
.x10_c00038{left:562.266667pt;}
.x12_c00038{left:564.266667pt;}
.x11_c00038{left:567.200000pt;}
.xe_c00038{left:586.400000pt;}
}





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

.ir_c00039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_dc1e5371c97bb41d8fb98480.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_554ce306cd3b38ba1bb63ba9.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls5_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.600000px;}
.ls4_c00039{letter-spacing:7.152000px;}
.ls3_c00039{letter-spacing:8.952000px;}
.ls2_c00039{letter-spacing:12.492000px;}
.ls1_c00039{letter-spacing:16.200000px;}
.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:-23.136000px;}
.ws0_c00039{word-spacing:-20.967000px;}
.ws2_c00039{word-spacing:0.000000px;}
._10_c00039{margin-left:-30.528000px;}
._0_c00039{margin-left:-28.971000px;}
._2_c00039{margin-left:-21.228000px;}
._34_c00039{margin-left:-15.840000px;}
._17_c00039{margin-left:-14.724000px;}
._18_c00039{margin-left:-12.768000px;}
._1_c00039{margin-left:-9.396000px;}
._16_c00039{margin-left:-7.956000px;}
._2d_c00039{margin-left:-6.444000px;}
._15_c00039{margin-left:-4.908000px;}
._f_c00039{margin-left:-3.168000px;}
._2c_c00039{margin-left:-2.112000px;}
._b_c00039{margin-left:-1.056000px;}
._31_c00039{width:1.008000px;}
._7_c00039{width:2.016000px;}
._8_c00039{width:3.552000px;}
._6_c00039{width:5.184000px;}
._3_c00039{width:6.816000px;}
._c_c00039{width:8.448000px;}
._4_c00039{width:9.888000px;}
._13_c00039{width:11.136000px;}
._25_c00039{width:12.288000px;}
._d_c00039{width:13.344000px;}
._30_c00039{width:14.400000px;}
._14_c00039{width:15.456000px;}
._a_c00039{width:16.824000px;}
._2b_c00039{width:18.408000px;}
._5_c00039{width:19.488000px;}
._2f_c00039{width:20.832000px;}
._e_c00039{width:21.984000px;}
._33_c00039{width:24.408000px;}
._23_c00039{width:25.824000px;}
._12_c00039{width:27.552000px;}
._1f_c00039{width:29.472000px;}
._1d_c00039{width:31.488000px;}
._1c_c00039{width:33.216000px;}
._9_c00039{width:34.560000px;}
._20_c00039{width:36.576000px;}
._1b_c00039{width:38.016000px;}
._24_c00039{width:39.936000px;}
._1e_c00039{width:41.472000px;}
._26_c00039{width:42.624000px;}
._21_c00039{width:43.776000px;}
._11_c00039{width:44.928000px;}
._2a_c00039{width:47.136000px;}
._1a_c00039{width:49.344000px;}
._27_c00039{width:50.496000px;}
._2e_c00039{width:52.320000px;}
._32_c00039{width:54.048000px;}
._22_c00039{width:55.776000px;}
._19_c00039{width:60.096000px;}
._29_c00039{width:61.152000px;}
._35_c00039{width:64.344000px;}
._36_c00039{width:72.528000px;}
._28_c00039{width:79.296000px;}
.fc2_c00039{color:transparent;}
.fc1_c00039{color:rgb(128,128,128);}
.fc0_c00039{color:rgb(0,0,0);}
.fs4_c00039{font-size:48.000000px;}
.fs3_c00039{font-size:84.000000px;}
.fs0_c00039{font-size:87.000000px;}
.fs1_c00039{font-size:96.000000px;}
.fs2_c00039{font-size:102.000000px;}
.y0_c00039{bottom:0.000000px;}
.y26_c00039{bottom:3.105000px;}
.y25_c00039{bottom:7.228357px;}
.y24_c00039{bottom:81.330000px;}
.y23_c00039{bottom:153.630000px;}
.y22_c00039{bottom:184.680000px;}
.y21_c00039{bottom:218.130000px;}
.y20_c00039{bottom:253.230000px;}
.y1f_c00039{bottom:286.980000px;}
.y1_c00039{bottom:289.980000px;}
.y1e_c00039{bottom:320.580000px;}
.y1d_c00039{bottom:354.780000px;}
.y1c_c00039{bottom:388.530000px;}
.y1b_c00039{bottom:422.580000px;}
.y1a_c00039{bottom:455.280000px;}
.y19_c00039{bottom:490.080000px;}
.y18_c00039{bottom:523.230000px;}
.y17_c00039{bottom:556.980000px;}
.y16_c00039{bottom:590.730000px;}
.y15_c00039{bottom:623.730000px;}
.y14_c00039{bottom:657.180000px;}
.y13_c00039{bottom:690.480000px;}
.y12_c00039{bottom:723.930000px;}
.y11_c00039{bottom:757.380000px;}
.y10_c00039{bottom:790.530000px;}
.yf_c00039{bottom:824.130000px;}
.ye_c00039{bottom:857.580000px;}
.yd_c00039{bottom:890.730000px;}
.yc_c00039{bottom:923.430000px;}
.yb_c00039{bottom:956.580000px;}
.ya_c00039{bottom:989.280000px;}
.y9_c00039{bottom:1022.280000px;}
.y8_c00039{bottom:1055.730000px;}
.y7_c00039{bottom:1088.130000px;}
.y6_c00039{bottom:1121.580000px;}
.y5_c00039{bottom:1154.880000px;}
.y4_c00039{bottom:1187.730000px;}
.y3_c00039{bottom:1220.730000px;}
.y2_c00039{bottom:1254.480000px;}
.h4_c00039{height:13.200074px;}
.h5_c00039{height:43.804688px;}
.h2_c00039{height:110.151855px;}
.h3_c00039{height:121.546875px;}
.h0_c00039{height:1382.700000px;}
.h1_c00039{height:1383.000000px;}
.w2_c00039{width:104.875500px;}
.w0_c00039{width:863.175000px;}
.w1_c00039{width:863.250000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:122.850000px;}
.x9_c00039{left:285.900000px;}
.x8_c00039{left:287.100000px;}
.x7_c00039{left:288.150000px;}
.x5_c00039{left:289.800000px;}
.x6_c00039{left:291.300000px;}
.x2_c00039{left:292.350000px;}
.x3_c00039{left:293.400000px;}
.x4_c00039{left:294.600000px;}
.xb_c00039{left:383.401749px;}
.xa_c00039{left:762.750000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls5_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.533333pt;}
.ls4_c00039{letter-spacing:6.357333pt;}
.ls3_c00039{letter-spacing:7.957333pt;}
.ls2_c00039{letter-spacing:11.104000pt;}
.ls1_c00039{letter-spacing:14.400000pt;}
.ws1_c00039{word-spacing:-20.565333pt;}
.ws0_c00039{word-spacing:-18.637333pt;}
.ws2_c00039{word-spacing:0.000000pt;}
._10_c00039{margin-left:-27.136000pt;}
._0_c00039{margin-left:-25.752000pt;}
._2_c00039{margin-left:-18.869333pt;}
._34_c00039{margin-left:-14.080000pt;}
._17_c00039{margin-left:-13.088000pt;}
._18_c00039{margin-left:-11.349333pt;}
._1_c00039{margin-left:-8.352000pt;}
._16_c00039{margin-left:-7.072000pt;}
._2d_c00039{margin-left:-5.728000pt;}
._15_c00039{margin-left:-4.362667pt;}
._f_c00039{margin-left:-2.816000pt;}
._2c_c00039{margin-left:-1.877333pt;}
._b_c00039{margin-left:-0.938667pt;}
._31_c00039{width:0.896000pt;}
._7_c00039{width:1.792000pt;}
._8_c00039{width:3.157333pt;}
._6_c00039{width:4.608000pt;}
._3_c00039{width:6.058667pt;}
._c_c00039{width:7.509333pt;}
._4_c00039{width:8.789333pt;}
._13_c00039{width:9.898667pt;}
._25_c00039{width:10.922667pt;}
._d_c00039{width:11.861333pt;}
._30_c00039{width:12.800000pt;}
._14_c00039{width:13.738667pt;}
._a_c00039{width:14.954667pt;}
._2b_c00039{width:16.362667pt;}
._5_c00039{width:17.322667pt;}
._2f_c00039{width:18.517333pt;}
._e_c00039{width:19.541333pt;}
._33_c00039{width:21.696000pt;}
._23_c00039{width:22.954667pt;}
._12_c00039{width:24.490667pt;}
._1f_c00039{width:26.197333pt;}
._1d_c00039{width:27.989333pt;}
._1c_c00039{width:29.525333pt;}
._9_c00039{width:30.720000pt;}
._20_c00039{width:32.512000pt;}
._1b_c00039{width:33.792000pt;}
._24_c00039{width:35.498667pt;}
._1e_c00039{width:36.864000pt;}
._26_c00039{width:37.888000pt;}
._21_c00039{width:38.912000pt;}
._11_c00039{width:39.936000pt;}
._2a_c00039{width:41.898667pt;}
._1a_c00039{width:43.861333pt;}
._27_c00039{width:44.885333pt;}
._2e_c00039{width:46.506667pt;}
._32_c00039{width:48.042667pt;}
._22_c00039{width:49.578667pt;}
._19_c00039{width:53.418667pt;}
._29_c00039{width:54.357333pt;}
._35_c00039{width:57.194667pt;}
._36_c00039{width:64.469333pt;}
._28_c00039{width:70.485333pt;}
.fs4_c00039{font-size:42.666667pt;}
.fs3_c00039{font-size:74.666667pt;}
.fs0_c00039{font-size:77.333333pt;}
.fs1_c00039{font-size:85.333333pt;}
.fs2_c00039{font-size:90.666667pt;}
.y0_c00039{bottom:0.000000pt;}
.y26_c00039{bottom:2.760000pt;}
.y25_c00039{bottom:6.425206pt;}
.y24_c00039{bottom:72.293333pt;}
.y23_c00039{bottom:136.560000pt;}
.y22_c00039{bottom:164.160000pt;}
.y21_c00039{bottom:193.893333pt;}
.y20_c00039{bottom:225.093333pt;}
.y1f_c00039{bottom:255.093333pt;}
.y1_c00039{bottom:257.760000pt;}
.y1e_c00039{bottom:284.960000pt;}
.y1d_c00039{bottom:315.360000pt;}
.y1c_c00039{bottom:345.360000pt;}
.y1b_c00039{bottom:375.626667pt;}
.y1a_c00039{bottom:404.693333pt;}
.y19_c00039{bottom:435.626667pt;}
.y18_c00039{bottom:465.093333pt;}
.y17_c00039{bottom:495.093333pt;}
.y16_c00039{bottom:525.093333pt;}
.y15_c00039{bottom:554.426667pt;}
.y14_c00039{bottom:584.160000pt;}
.y13_c00039{bottom:613.760000pt;}
.y12_c00039{bottom:643.493333pt;}
.y11_c00039{bottom:673.226667pt;}
.y10_c00039{bottom:702.693333pt;}
.yf_c00039{bottom:732.560000pt;}
.ye_c00039{bottom:762.293333pt;}
.yd_c00039{bottom:791.760000pt;}
.yc_c00039{bottom:820.826667pt;}
.yb_c00039{bottom:850.293333pt;}
.ya_c00039{bottom:879.360000pt;}
.y9_c00039{bottom:908.693333pt;}
.y8_c00039{bottom:938.426667pt;}
.y7_c00039{bottom:967.226667pt;}
.y6_c00039{bottom:996.960000pt;}
.y5_c00039{bottom:1026.560000pt;}
.y4_c00039{bottom:1055.760000pt;}
.y3_c00039{bottom:1085.093333pt;}
.y2_c00039{bottom:1115.093333pt;}
.h4_c00039{height:11.733399pt;}
.h5_c00039{height:38.937500pt;}
.h2_c00039{height:97.912760pt;}
.h3_c00039{height:108.041667pt;}
.h0_c00039{height:1229.066667pt;}
.h1_c00039{height:1229.333333pt;}
.w2_c00039{width:93.222667pt;}
.w0_c00039{width:767.266667pt;}
.w1_c00039{width:767.333333pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:109.200000pt;}
.x9_c00039{left:254.133333pt;}
.x8_c00039{left:255.200000pt;}
.x7_c00039{left:256.133333pt;}
.x5_c00039{left:257.600000pt;}
.x6_c00039{left:258.933333pt;}
.x2_c00039{left:259.866667pt;}
.x3_c00039{left:260.800000pt;}
.x4_c00039{left:261.866667pt;}
.xb_c00039{left:340.801554pt;}
.xa_c00039{left:678.000000pt;}
}





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

.ir_c00040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_3698de6faad3faca55485bf4.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_f0be8963afe84eece33ffdfd.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls2_c00040{letter-spacing:0.000000px;}
.ls0_c00040{letter-spacing:1.800000px;}
.ls1_c00040{letter-spacing:5.925000px;}
.ls3_c00040{letter-spacing:6.000000px;}
.ls5_c00040{letter-spacing:27.000000px;}
.ls4_c00040{letter-spacing:123.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00040{word-spacing:-146.136000px;}
.ws1_c00040{word-spacing:-57.000000px;}
.ws3_c00040{word-spacing:-50.136000px;}
.ws0_c00040{word-spacing:-20.967000px;}
.ws4_c00040{word-spacing:-18.798000px;}
.ws5_c00040{word-spacing:0.000000px;}
._37_c00040{margin-left:-30.624000px;}
._41_c00040{margin-left:-28.320000px;}
._1e_c00040{margin-left:-23.664000px;}
._0_c00040{margin-left:-22.533000px;}
._3d_c00040{margin-left:-20.160000px;}
._3e_c00040{margin-left:-18.240000px;}
._46_c00040{margin-left:-16.986000px;}
._21_c00040{margin-left:-15.744000px;}
._33_c00040{margin-left:-13.920000px;}
._31_c00040{margin-left:-11.616000px;}
._30_c00040{margin-left:-10.080000px;}
._3f_c00040{margin-left:-8.832000px;}
._10_c00040{margin-left:-7.296000px;}
._3b_c00040{margin-left:-6.240000px;}
._2d_c00040{margin-left:-4.608000px;}
._e_c00040{margin-left:-3.456000px;}
._7_c00040{margin-left:-2.016000px;}
._38_c00040{margin-left:-1.008000px;}
._f_c00040{width:1.824000px;}
._a_c00040{width:3.168000px;}
._5_c00040{width:4.704000px;}
._9_c00040{width:5.760000px;}
._1d_c00040{width:7.008000px;}
._4_c00040{width:8.256000px;}
._1_c00040{width:9.984000px;}
._6_c00040{width:11.808000px;}
._3_c00040{width:13.248000px;}
._20_c00040{width:14.400000px;}
._15_c00040{width:15.744000px;}
._14_c00040{width:16.800000px;}
._3c_c00040{width:17.952000px;}
._2e_c00040{width:19.824000px;}
._2b_c00040{width:20.928000px;}
._32_c00040{width:21.984000px;}
._47_c00040{width:23.094000px;}
._39_c00040{width:24.192000px;}
._11_c00040{width:25.440000px;}
._13_c00040{width:26.976000px;}
._19_c00040{width:28.512000px;}
._18_c00040{width:30.240000px;}
._16_c00040{width:32.352000px;}
._b_c00040{width:33.888000px;}
._17_c00040{width:34.944000px;}
._42_c00040{width:36.000000px;}
._2c_c00040{width:38.016000px;}
._1f_c00040{width:39.264000px;}
._12_c00040{width:40.800000px;}
._22_c00040{width:42.144000px;}
._1c_c00040{width:43.680000px;}
._c_c00040{width:45.312000px;}
._28_c00040{width:47.040000px;}
._34_c00040{width:49.152000px;}
._40_c00040{width:50.688000px;}
._45_c00040{width:52.344000px;}
._1b_c00040{width:54.528000px;}
._2f_c00040{width:55.680000px;}
._23_c00040{width:57.600000px;}
._1a_c00040{width:58.656000px;}
._25_c00040{width:60.672000px;}
._44_c00040{width:61.938000px;}
._8_c00040{width:64.512000px;}
._2a_c00040{width:67.488000px;}
._27_c00040{width:69.408000px;}
._d_c00040{width:76.224000px;}
._24_c00040{width:78.048000px;}
._35_c00040{width:79.872000px;}
._29_c00040{width:84.384000px;}
._26_c00040{width:90.048000px;}
._3a_c00040{width:133.440000px;}
._2_c00040{width:173.664000px;}
._36_c00040{width:212.160000px;}
._43_c00040{width:866.496000px;}
.fc2_c00040{color:transparent;}
.fc1_c00040{color:rgb(128,128,128);}
.fc0_c00040{color:rgb(0,0,0);}
.fs5_c00040{font-size:48.000000px;}
.fs4_c00040{font-size:75.000000px;}
.fs3_c00040{font-size:78.000000px;}
.fs0_c00040{font-size:87.000000px;}
.fs1_c00040{font-size:96.000000px;}
.fs2_c00040{font-size:102.000000px;}
.y0_c00040{bottom:0.000000px;}
.y36_c00040{bottom:3.105000px;}
.y35_c00040{bottom:7.228369px;}
.y22_c00040{bottom:120.720000px;}
.y21_c00040{bottom:153.870000px;}
.y20_c00040{bottom:187.020000px;}
.y1f_c00040{bottom:220.620000px;}
.y1e_c00040{bottom:255.120000px;}
.y1d_c00040{bottom:288.870000px;}
.y1c_c00040{bottom:320.220000px;}
.y1b_c00040{bottom:355.770000px;}
.y1a_c00040{bottom:389.070000px;}
.y19_c00040{bottom:421.770000px;}
.y18_c00040{bottom:454.620000px;}
.y17_c00040{bottom:489.720000px;}
.y16_c00040{bottom:521.670000px;}
.y15_c00040{bottom:555.570000px;}
.y14_c00040{bottom:588.270000px;}
.y13_c00040{bottom:620.970000px;}
.y12_c00040{bottom:655.770000px;}
.y11_c00040{bottom:688.470000px;}
.y34_c00040{bottom:695.970000px;}
.y10_c00040{bottom:721.170000px;}
.y33_c00040{bottom:727.020000px;}
.yf_c00040{bottom:755.220000px;}
.y32_c00040{bottom:757.020000px;}
.y31_c00040{bottom:785.670000px;}
.ye_c00040{bottom:788.970000px;}
.y30_c00040{bottom:814.770000px;}
.yd_c00040{bottom:820.170000px;}
.y2f_c00040{bottom:843.720000px;}
.yc_c00040{bottom:853.770000px;}
.y2e_c00040{bottom:873.420000px;}
.yb_c00040{bottom:887.520000px;}
.y2d_c00040{bottom:903.120000px;}
.ya_c00040{bottom:920.370000px;}
.y2c_c00040{bottom:931.170000px;}
.y9_c00040{bottom:953.370000px;}
.y2b_c00040{bottom:960.870000px;}
.y8_c00040{bottom:987.120000px;}
.y2a_c00040{bottom:990.120000px;}
.y29_c00040{bottom:1019.520000px;}
.y7_c00040{bottom:1019.970000px;}
.y28_c00040{bottom:1048.620000px;}
.y6_c00040{bottom:1052.970000px;}
.y27_c00040{bottom:1077.570000px;}
.y5_c00040{bottom:1086.120000px;}
.y26_c00040{bottom:1106.220000px;}
.y4_c00040{bottom:1119.420000px;}
.y25_c00040{bottom:1136.070000px;}
.y3_c00040{bottom:1152.570000px;}
.y24_c00040{bottom:1163.970000px;}
.y2_c00040{bottom:1185.870000px;}
.y23_c00040{bottom:1193.670000px;}
.y1_c00040{bottom:1298.670000px;}
.h7_c00040{height:13.200073px;}
.h8_c00040{height:43.804688px;}
.h5_c00040{height:91.291992px;}
.h6_c00040{height:94.958496px;}
.h4_c00040{height:98.756836px;}
.h2_c00040{height:110.151855px;}
.h3_c00040{height:121.546875px;}
.h0_c00040{height:1383.450000px;}
.h1_c00040{height:1383.750000px;}
.w2_c00040{width:104.875500px;}
.w0_c00040{width:878.025000px;}
.w1_c00040{width:878.250000px;}
.x0_c00040{left:0.000000px;}
.x9_c00040{left:24.600000px;}
.x8_c00040{left:27.300000px;}
.x7_c00040{left:28.950000px;}
.x6_c00040{left:30.600000px;}
.x5_c00040{left:32.100000px;}
.x3_c00040{left:33.750000px;}
.x4_c00040{left:34.800000px;}
.x2_c00040{left:81.900000px;}
.x1_c00040{left:130.650000px;}
.xa_c00040{left:330.000000px;}
.x12_c00040{left:390.826721px;}
.xe_c00040{left:607.200000px;}
.x11_c00040{left:608.850000px;}
.x10_c00040{left:610.500000px;}
.xd_c00040{left:612.150000px;}
.xc_c00040{left:613.200000px;}
.xf_c00040{left:614.250000px;}
.xb_c00040{left:640.800000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls2_c00040{letter-spacing:0.000000pt;}
.ls0_c00040{letter-spacing:1.600000pt;}
.ls1_c00040{letter-spacing:5.266667pt;}
.ls3_c00040{letter-spacing:5.333333pt;}
.ls5_c00040{letter-spacing:24.000000pt;}
.ls4_c00040{letter-spacing:109.333333pt;}
.ws2_c00040{word-spacing:-129.898667pt;}
.ws1_c00040{word-spacing:-50.666667pt;}
.ws3_c00040{word-spacing:-44.565333pt;}
.ws0_c00040{word-spacing:-18.637333pt;}
.ws4_c00040{word-spacing:-16.709333pt;}
.ws5_c00040{word-spacing:0.000000pt;}
._37_c00040{margin-left:-27.221333pt;}
._41_c00040{margin-left:-25.173333pt;}
._1e_c00040{margin-left:-21.034667pt;}
._0_c00040{margin-left:-20.029333pt;}
._3d_c00040{margin-left:-17.920000pt;}
._3e_c00040{margin-left:-16.213333pt;}
._46_c00040{margin-left:-15.098667pt;}
._21_c00040{margin-left:-13.994667pt;}
._33_c00040{margin-left:-12.373333pt;}
._31_c00040{margin-left:-10.325333pt;}
._30_c00040{margin-left:-8.960000pt;}
._3f_c00040{margin-left:-7.850667pt;}
._10_c00040{margin-left:-6.485333pt;}
._3b_c00040{margin-left:-5.546667pt;}
._2d_c00040{margin-left:-4.096000pt;}
._e_c00040{margin-left:-3.072000pt;}
._7_c00040{margin-left:-1.792000pt;}
._38_c00040{margin-left:-0.896000pt;}
._f_c00040{width:1.621333pt;}
._a_c00040{width:2.816000pt;}
._5_c00040{width:4.181333pt;}
._9_c00040{width:5.120000pt;}
._1d_c00040{width:6.229333pt;}
._4_c00040{width:7.338667pt;}
._1_c00040{width:8.874667pt;}
._6_c00040{width:10.496000pt;}
._3_c00040{width:11.776000pt;}
._20_c00040{width:12.800000pt;}
._15_c00040{width:13.994667pt;}
._14_c00040{width:14.933333pt;}
._3c_c00040{width:15.957333pt;}
._2e_c00040{width:17.621333pt;}
._2b_c00040{width:18.602667pt;}
._32_c00040{width:19.541333pt;}
._47_c00040{width:20.528000pt;}
._39_c00040{width:21.504000pt;}
._11_c00040{width:22.613333pt;}
._13_c00040{width:23.978667pt;}
._19_c00040{width:25.344000pt;}
._18_c00040{width:26.880000pt;}
._16_c00040{width:28.757333pt;}
._b_c00040{width:30.122667pt;}
._17_c00040{width:31.061333pt;}
._42_c00040{width:32.000000pt;}
._2c_c00040{width:33.792000pt;}
._1f_c00040{width:34.901333pt;}
._12_c00040{width:36.266667pt;}
._22_c00040{width:37.461333pt;}
._1c_c00040{width:38.826667pt;}
._c_c00040{width:40.277333pt;}
._28_c00040{width:41.813333pt;}
._34_c00040{width:43.690667pt;}
._40_c00040{width:45.056000pt;}
._45_c00040{width:46.528000pt;}
._1b_c00040{width:48.469333pt;}
._2f_c00040{width:49.493333pt;}
._23_c00040{width:51.200000pt;}
._1a_c00040{width:52.138667pt;}
._25_c00040{width:53.930667pt;}
._44_c00040{width:55.056000pt;}
._8_c00040{width:57.344000pt;}
._2a_c00040{width:59.989333pt;}
._27_c00040{width:61.696000pt;}
._d_c00040{width:67.754667pt;}
._24_c00040{width:69.376000pt;}
._35_c00040{width:70.997333pt;}
._29_c00040{width:75.008000pt;}
._26_c00040{width:80.042667pt;}
._3a_c00040{width:118.613333pt;}
._2_c00040{width:154.368000pt;}
._36_c00040{width:188.586667pt;}
._43_c00040{width:770.218667pt;}
.fs5_c00040{font-size:42.666667pt;}
.fs4_c00040{font-size:66.666667pt;}
.fs3_c00040{font-size:69.333333pt;}
.fs0_c00040{font-size:77.333333pt;}
.fs1_c00040{font-size:85.333333pt;}
.fs2_c00040{font-size:90.666667pt;}
.y0_c00040{bottom:0.000000pt;}
.y36_c00040{bottom:2.760000pt;}
.y35_c00040{bottom:6.425217pt;}
.y22_c00040{bottom:107.306667pt;}
.y21_c00040{bottom:136.773333pt;}
.y20_c00040{bottom:166.240000pt;}
.y1f_c00040{bottom:196.106667pt;}
.y1e_c00040{bottom:226.773333pt;}
.y1d_c00040{bottom:256.773333pt;}
.y1c_c00040{bottom:284.640000pt;}
.y1b_c00040{bottom:316.240000pt;}
.y1a_c00040{bottom:345.840000pt;}
.y19_c00040{bottom:374.906667pt;}
.y18_c00040{bottom:404.106667pt;}
.y17_c00040{bottom:435.306667pt;}
.y16_c00040{bottom:463.706667pt;}
.y15_c00040{bottom:493.840000pt;}
.y14_c00040{bottom:522.906667pt;}
.y13_c00040{bottom:551.973333pt;}
.y12_c00040{bottom:582.906667pt;}
.y11_c00040{bottom:611.973333pt;}
.y34_c00040{bottom:618.640000pt;}
.y10_c00040{bottom:641.040000pt;}
.y33_c00040{bottom:646.240000pt;}
.yf_c00040{bottom:671.306667pt;}
.y32_c00040{bottom:672.906667pt;}
.y31_c00040{bottom:698.373333pt;}
.ye_c00040{bottom:701.306667pt;}
.y30_c00040{bottom:724.240000pt;}
.yd_c00040{bottom:729.040000pt;}
.y2f_c00040{bottom:749.973333pt;}
.yc_c00040{bottom:758.906667pt;}
.y2e_c00040{bottom:776.373333pt;}
.yb_c00040{bottom:788.906667pt;}
.y2d_c00040{bottom:802.773333pt;}
.ya_c00040{bottom:818.106667pt;}
.y2c_c00040{bottom:827.706667pt;}
.y9_c00040{bottom:847.440000pt;}
.y2b_c00040{bottom:854.106667pt;}
.y8_c00040{bottom:877.440000pt;}
.y2a_c00040{bottom:880.106667pt;}
.y29_c00040{bottom:906.240000pt;}
.y7_c00040{bottom:906.640000pt;}
.y28_c00040{bottom:932.106667pt;}
.y6_c00040{bottom:935.973333pt;}
.y27_c00040{bottom:957.840000pt;}
.y5_c00040{bottom:965.440000pt;}
.y26_c00040{bottom:983.306667pt;}
.y4_c00040{bottom:995.040000pt;}
.y25_c00040{bottom:1009.840000pt;}
.y3_c00040{bottom:1024.506667pt;}
.y24_c00040{bottom:1034.640000pt;}
.y2_c00040{bottom:1054.106667pt;}
.y23_c00040{bottom:1061.040000pt;}
.y1_c00040{bottom:1154.373333pt;}
.h7_c00040{height:11.733399pt;}
.h8_c00040{height:38.937500pt;}
.h5_c00040{height:81.148438pt;}
.h6_c00040{height:84.407552pt;}
.h4_c00040{height:87.783854pt;}
.h2_c00040{height:97.912760pt;}
.h3_c00040{height:108.041667pt;}
.h0_c00040{height:1229.733333pt;}
.h1_c00040{height:1230.000000pt;}
.w2_c00040{width:93.222667pt;}
.w0_c00040{width:780.466667pt;}
.w1_c00040{width:780.666667pt;}
.x0_c00040{left:0.000000pt;}
.x9_c00040{left:21.866667pt;}
.x8_c00040{left:24.266667pt;}
.x7_c00040{left:25.733333pt;}
.x6_c00040{left:27.200000pt;}
.x5_c00040{left:28.533333pt;}
.x3_c00040{left:30.000000pt;}
.x4_c00040{left:30.933333pt;}
.x2_c00040{left:72.800000pt;}
.x1_c00040{left:116.133333pt;}
.xa_c00040{left:293.333333pt;}
.x12_c00040{left:347.401530pt;}
.xe_c00040{left:539.733333pt;}
.x11_c00040{left:541.200000pt;}
.x10_c00040{left:542.666667pt;}
.xd_c00040{left:544.133333pt;}
.xc_c00040{left:545.066667pt;}
.xf_c00040{left:546.000000pt;}
.xb_c00040{left:569.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_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_040bc50393fad421294226b5.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_b27bfc34f26fb92c026cdb90.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_15cfe975e425277ebfa2add3.woff2')format("woff");}.ff3_c00041{font-family:ff3_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:ff4_c00041;src:url('chunks/assets/font_1d40b78c440db1f3ecceed53.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;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_c00041;src:url('chunks/assets/font_968f5c1c6120bf409afd53ed.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00041;src:url('chunks/assets/font_b4b76cc686d579f8f177961a.woff2')format("woff");}.ff6_c00041{font-family:ff6_c00041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00041;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00041{font-family:ff7_c00041;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls4_c00041{letter-spacing:0.000000px;}
.ls2_c00041{letter-spacing:1.800000px;}
.ls0_c00041{letter-spacing:9.852000px;}
.ls3_c00041{letter-spacing:18.600000px;}
.ls1_c00041{letter-spacing:448.326000px;}
.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;}
}
.ws3_c00041{word-spacing:-91.740000px;}
.ws1_c00041{word-spacing:-78.039000px;}
.ws2_c00041{word-spacing:-23.136000px;}
.ws0_c00041{word-spacing:-20.967000px;}
.ws4_c00041{word-spacing:0.000000px;}
._2d_c00041{margin-left:-41.664000px;}
._35_c00041{margin-left:-35.040000px;}
._3a_c00041{margin-left:-31.200000px;}
._1f_c00041{margin-left:-28.896000px;}
._3d_c00041{margin-left:-25.500000px;}
._2b_c00041{margin-left:-20.676000px;}
._41_c00041{margin-left:-19.092000px;}
._33_c00041{margin-left:-17.088000px;}
._1_c00041{margin-left:-15.552000px;}
._2f_c00041{margin-left:-13.920000px;}
._0_c00041{margin-left:-11.832000px;}
._42_c00041{margin-left:-10.560000px;}
._2_c00041{margin-left:-8.832000px;}
._29_c00041{margin-left:-7.548000px;}
._26_c00041{margin-left:-5.580000px;}
._1d_c00041{margin-left:-4.512000px;}
._10_c00041{margin-left:-2.592000px;}
._9_c00041{margin-left:-1.152000px;}
._d_c00041{width:1.632000px;}
._5_c00041{width:2.880000px;}
._7_c00041{width:4.128000px;}
._4_c00041{width:5.568000px;}
._15_c00041{width:6.816000px;}
._13_c00041{width:8.064000px;}
._12_c00041{width:9.504000px;}
._18_c00041{width:11.520000px;}
._39_c00041{width:12.672000px;}
._e_c00041{width:13.824000px;}
._1c_c00041{width:15.168000px;}
._19_c00041{width:16.704000px;}
._3c_c00041{width:17.736000px;}
._b_c00041{width:18.912000px;}
._17_c00041{width:21.312000px;}
._3e_c00041{width:24.288000px;}
._1b_c00041{width:25.440000px;}
._20_c00041{width:27.456000px;}
._21_c00041{width:29.568000px;}
._1a_c00041{width:31.680000px;}
._1e_c00041{width:32.928000px;}
._16_c00041{width:34.368000px;}
._a_c00041{width:36.288000px;}
._11_c00041{width:37.920000px;}
._8_c00041{width:39.264000px;}
._3_c00041{width:40.416000px;}
._14_c00041{width:42.432000px;}
._3f_c00041{width:43.488000px;}
._c_c00041{width:44.928000px;}
._28_c00041{width:45.984000px;}
._22_c00041{width:47.712000px;}
._36_c00041{width:49.152000px;}
._f_c00041{width:51.264000px;}
._6_c00041{width:52.800000px;}
._37_c00041{width:56.376000px;}
._40_c00041{width:58.200000px;}
._38_c00041{width:60.768000px;}
._3b_c00041{width:62.400000px;}
._25_c00041{width:72.192000px;}
._27_c00041{width:73.248000px;}
._24_c00041{width:77.184000px;}
._2c_c00041{width:79.488000px;}
._2a_c00041{width:81.024000px;}
._32_c00041{width:117.144000px;}
._23_c00041{width:118.656000px;}
._30_c00041{width:124.800000px;}
._34_c00041{width:165.888000px;}
._31_c00041{width:670.116000px;}
._2e_c00041{width:672.576000px;}
.fc2_c00041{color:transparent;}
.fc1_c00041{color:rgb(128,128,128);}
.fc0_c00041{color:rgb(0,0,0);}
.fs7_c00041{font-size:48.000000px;}
.fs2_c00041{font-size:84.000000px;}
.fs0_c00041{font-size:87.000000px;}
.fs1_c00041{font-size:96.000000px;}
.fs5_c00041{font-size:102.000000px;}
.fs4_c00041{font-size:114.000000px;}
.fs3_c00041{font-size:117.000000px;}
.fs6_c00041{font-size:165.000000px;}
.y0_c00041{bottom:0.000000px;}
.y29_c00041{bottom:3.105000px;}
.y28_c00041{bottom:7.228369px;}
.y27_c00041{bottom:110.070000px;}
.y26_c00041{bottom:145.770000px;}
.y25_c00041{bottom:179.220000px;}
.y24_c00041{bottom:211.920000px;}
.y23_c00041{bottom:247.020000px;}
.y22_c00041{bottom:279.720000px;}
.y21_c00041{bottom:314.820000px;}
.y20_c00041{bottom:347.670000px;}
.y1f_c00041{bottom:381.270000px;}
.y1e_c00041{bottom:416.070000px;}
.y1d_c00041{bottom:449.220000px;}
.y1c_c00041{bottom:483.570000px;}
.y1b_c00041{bottom:516.420000px;}
.y1a_c00041{bottom:550.170000px;}
.y19_c00041{bottom:583.920000px;}
.y18_c00041{bottom:617.220000px;}
.y17_c00041{bottom:650.370000px;}
.y16_c00041{bottom:684.120000px;}
.y15_c00041{bottom:717.420000px;}
.y3_c00041{bottom:725.520000px;}
.y14_c00041{bottom:750.570000px;}
.y13_c00041{bottom:784.320000px;}
.y12_c00041{bottom:817.470000px;}
.y2_c00041{bottom:841.320000px;}
.y11_c00041{bottom:850.770000px;}
.y10_c00041{bottom:883.920000px;}
.yf_c00041{bottom:916.920000px;}
.ye_c00041{bottom:950.070000px;}
.yd_c00041{bottom:985.470000px;}
.yc_c00041{bottom:1017.570000px;}
.yb_c00041{bottom:1049.220000px;}
.y1_c00041{bottom:1050.870000px;}
.ya_c00041{bottom:1082.670000px;}
.y9_c00041{bottom:1116.120000px;}
.y8_c00041{bottom:1148.820000px;}
.y7_c00041{bottom:1182.270000px;}
.y6_c00041{bottom:1215.270000px;}
.y5_c00041{bottom:1248.120000px;}
.y4_c00041{bottom:1281.420000px;}
.h6_c00041{height:13.200073px;}
.h7_c00041{height:43.804688px;}
.h2_c00041{height:110.151855px;}
.h3_c00041{height:121.546875px;}
.h4_c00041{height:144.336914px;}
.h5_c00041{height:161.857910px;}
.h1_c00041{height:1359.000000px;}
.h0_c00041{height:1359.150000px;}
.w2_c00041{width:104.875500px;}
.w1_c00041{width:848.250000px;}
.w0_c00041{width:848.325000px;}
.x0_c00041{left:0.000000px;}
.x6_c00041{left:53.700000px;}
.x7_c00041{left:54.900000px;}
.x8_c00041{left:55.950000px;}
.x5_c00041{left:71.550000px;}
.x1_c00041{left:140.700000px;}
.x3_c00041{left:153.150000px;}
.x2_c00041{left:217.350000px;}
.x9_c00041{left:220.650000px;}
.x4_c00041{left:271.950000px;}
.xa_c00041{left:274.050000px;}
.xb_c00041{left:275.700000px;}
.xc_c00041{left:277.350000px;}
.xe_c00041{left:315.150000px;}
.xd_c00041{left:330.300000px;}
.x10_c00041{left:375.976730px;}
.xf_c00041{left:820.500000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls4_c00041{letter-spacing:0.000000pt;}
.ls2_c00041{letter-spacing:1.600000pt;}
.ls0_c00041{letter-spacing:8.757333pt;}
.ls3_c00041{letter-spacing:16.533333pt;}
.ls1_c00041{letter-spacing:398.512000pt;}
.ws3_c00041{word-spacing:-81.546667pt;}
.ws1_c00041{word-spacing:-69.368000pt;}
.ws2_c00041{word-spacing:-20.565333pt;}
.ws0_c00041{word-spacing:-18.637333pt;}
.ws4_c00041{word-spacing:0.000000pt;}
._2d_c00041{margin-left:-37.034667pt;}
._35_c00041{margin-left:-31.146667pt;}
._3a_c00041{margin-left:-27.733333pt;}
._1f_c00041{margin-left:-25.685333pt;}
._3d_c00041{margin-left:-22.666667pt;}
._2b_c00041{margin-left:-18.378667pt;}
._41_c00041{margin-left:-16.970667pt;}
._33_c00041{margin-left:-15.189333pt;}
._1_c00041{margin-left:-13.824000pt;}
._2f_c00041{margin-left:-12.373333pt;}
._0_c00041{margin-left:-10.517333pt;}
._42_c00041{margin-left:-9.386667pt;}
._2_c00041{margin-left:-7.850667pt;}
._29_c00041{margin-left:-6.709333pt;}
._26_c00041{margin-left:-4.960000pt;}
._1d_c00041{margin-left:-4.010667pt;}
._10_c00041{margin-left:-2.304000pt;}
._9_c00041{margin-left:-1.024000pt;}
._d_c00041{width:1.450667pt;}
._5_c00041{width:2.560000pt;}
._7_c00041{width:3.669333pt;}
._4_c00041{width:4.949333pt;}
._15_c00041{width:6.058667pt;}
._13_c00041{width:7.168000pt;}
._12_c00041{width:8.448000pt;}
._18_c00041{width:10.240000pt;}
._39_c00041{width:11.264000pt;}
._e_c00041{width:12.288000pt;}
._1c_c00041{width:13.482667pt;}
._19_c00041{width:14.848000pt;}
._3c_c00041{width:15.765333pt;}
._b_c00041{width:16.810667pt;}
._17_c00041{width:18.944000pt;}
._3e_c00041{width:21.589333pt;}
._1b_c00041{width:22.613333pt;}
._20_c00041{width:24.405333pt;}
._21_c00041{width:26.282667pt;}
._1a_c00041{width:28.160000pt;}
._1e_c00041{width:29.269333pt;}
._16_c00041{width:30.549333pt;}
._a_c00041{width:32.256000pt;}
._11_c00041{width:33.706667pt;}
._8_c00041{width:34.901333pt;}
._3_c00041{width:35.925333pt;}
._14_c00041{width:37.717333pt;}
._3f_c00041{width:38.656000pt;}
._c_c00041{width:39.936000pt;}
._28_c00041{width:40.874667pt;}
._22_c00041{width:42.410667pt;}
._36_c00041{width:43.690667pt;}
._f_c00041{width:45.568000pt;}
._6_c00041{width:46.933333pt;}
._37_c00041{width:50.112000pt;}
._40_c00041{width:51.733333pt;}
._38_c00041{width:54.016000pt;}
._3b_c00041{width:55.466667pt;}
._25_c00041{width:64.170667pt;}
._27_c00041{width:65.109333pt;}
._24_c00041{width:68.608000pt;}
._2c_c00041{width:70.656000pt;}
._2a_c00041{width:72.021333pt;}
._32_c00041{width:104.128000pt;}
._23_c00041{width:105.472000pt;}
._30_c00041{width:110.933333pt;}
._34_c00041{width:147.456000pt;}
._31_c00041{width:595.658667pt;}
._2e_c00041{width:597.845333pt;}
.fs7_c00041{font-size:42.666667pt;}
.fs2_c00041{font-size:74.666667pt;}
.fs0_c00041{font-size:77.333333pt;}
.fs1_c00041{font-size:85.333333pt;}
.fs5_c00041{font-size:90.666667pt;}
.fs4_c00041{font-size:101.333333pt;}
.fs3_c00041{font-size:104.000000pt;}
.fs6_c00041{font-size:146.666667pt;}
.y0_c00041{bottom:0.000000pt;}
.y29_c00041{bottom:2.760000pt;}
.y28_c00041{bottom:6.425217pt;}
.y27_c00041{bottom:97.840000pt;}
.y26_c00041{bottom:129.573333pt;}
.y25_c00041{bottom:159.306667pt;}
.y24_c00041{bottom:188.373333pt;}
.y23_c00041{bottom:219.573333pt;}
.y22_c00041{bottom:248.640000pt;}
.y21_c00041{bottom:279.840000pt;}
.y20_c00041{bottom:309.040000pt;}
.y1f_c00041{bottom:338.906667pt;}
.y1e_c00041{bottom:369.840000pt;}
.y1d_c00041{bottom:399.306667pt;}
.y1c_c00041{bottom:429.840000pt;}
.y1b_c00041{bottom:459.040000pt;}
.y1a_c00041{bottom:489.040000pt;}
.y19_c00041{bottom:519.040000pt;}
.y18_c00041{bottom:548.640000pt;}
.y17_c00041{bottom:578.106667pt;}
.y16_c00041{bottom:608.106667pt;}
.y15_c00041{bottom:637.706667pt;}
.y3_c00041{bottom:644.906667pt;}
.y14_c00041{bottom:667.173333pt;}
.y13_c00041{bottom:697.173333pt;}
.y12_c00041{bottom:726.640000pt;}
.y2_c00041{bottom:747.840000pt;}
.y11_c00041{bottom:756.240000pt;}
.y10_c00041{bottom:785.706667pt;}
.yf_c00041{bottom:815.040000pt;}
.ye_c00041{bottom:844.506667pt;}
.yd_c00041{bottom:875.973333pt;}
.yc_c00041{bottom:904.506667pt;}
.yb_c00041{bottom:932.640000pt;}
.y1_c00041{bottom:934.106667pt;}
.ya_c00041{bottom:962.373333pt;}
.y9_c00041{bottom:992.106667pt;}
.y8_c00041{bottom:1021.173333pt;}
.y7_c00041{bottom:1050.906667pt;}
.y6_c00041{bottom:1080.240000pt;}
.y5_c00041{bottom:1109.440000pt;}
.y4_c00041{bottom:1139.040000pt;}
.h6_c00041{height:11.733399pt;}
.h7_c00041{height:38.937500pt;}
.h2_c00041{height:97.912760pt;}
.h3_c00041{height:108.041667pt;}
.h4_c00041{height:128.299479pt;}
.h5_c00041{height:143.873698pt;}
.h1_c00041{height:1208.000000pt;}
.h0_c00041{height:1208.133333pt;}
.w2_c00041{width:93.222667pt;}
.w1_c00041{width:754.000000pt;}
.w0_c00041{width:754.066667pt;}
.x0_c00041{left:0.000000pt;}
.x6_c00041{left:47.733333pt;}
.x7_c00041{left:48.800000pt;}
.x8_c00041{left:49.733333pt;}
.x5_c00041{left:63.600000pt;}
.x1_c00041{left:125.066667pt;}
.x3_c00041{left:136.133333pt;}
.x2_c00041{left:193.200000pt;}
.x9_c00041{left:196.133333pt;}
.x4_c00041{left:241.733333pt;}
.xa_c00041{left:243.600000pt;}
.xb_c00041{left:245.066667pt;}
.xc_c00041{left:246.533333pt;}
.xe_c00041{left:280.133333pt;}
.xd_c00041{left:293.600000pt;}
.x10_c00041{left:334.201538pt;}
.xf_c00041{left:729.333333pt;}
}





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

.ir_c00042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00042;src:url('chunks/assets/font_12f9fed0e5d9bed457c83b4b.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_6dbcf5139f6a9a4769ed49d8.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_2f2424f8e37611635ce2f707.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_62c937fe325660155ce80146.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_e1bd849a2a700f72b4accab9.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00042;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00042{font-family:ff6_c00042;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{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_c00042{vertical-align:0.000000px;}
.ls4_c00042{letter-spacing:0.000000px;}
.ls5_c00042{letter-spacing:6.000000px;}
.ls0_c00042{letter-spacing:11.352000px;}
.ls1_c00042{letter-spacing:18.108000px;}
.ls3_c00042{letter-spacing:18.852000px;}
.ls2_c00042{letter-spacing:23.652000px;}
.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;}
}
.ws5_c00042{word-spacing:-57.000000px;}
.ws1_c00042{word-spacing:-41.250000px;}
.ws7_c00042{word-spacing:-24.750000px;}
.ws0_c00042{word-spacing:-23.859000px;}
.ws2_c00042{word-spacing:-20.967000px;}
.ws3_c00042{word-spacing:-20.244000px;}
.ws6_c00042{word-spacing:-0.420000px;}
.ws8_c00042{word-spacing:0.000000px;}
.ws4_c00042{word-spacing:14.448000px;}
._58_c00042{margin-left:-78.009000px;}
._45_c00042{margin-left:-57.090000px;}
._3b_c00042{margin-left:-54.951000px;}
._3a_c00042{margin-left:-40.935000px;}
._35_c00042{margin-left:-39.840000px;}
._44_c00042{margin-left:-38.649000px;}
._39_c00042{margin-left:-36.720000px;}
._4a_c00042{margin-left:-34.485000px;}
._3c_c00042{margin-left:-32.505000px;}
._37_c00042{margin-left:-31.500000px;}
._46_c00042{margin-left:-30.285000px;}
._5c_c00042{margin-left:-28.887000px;}
._4b_c00042{margin-left:-27.195000px;}
._2a_c00042{margin-left:-25.440000px;}
._3e_c00042{margin-left:-22.662000px;}
._47_c00042{margin-left:-20.565000px;}
._42_c00042{margin-left:-19.518000px;}
._33_c00042{margin-left:-17.970000px;}
._3d_c00042{margin-left:-15.660000px;}
._52_c00042{margin-left:-14.622000px;}
._34_c00042{margin-left:-11.712000px;}
._3f_c00042{margin-left:-9.888000px;}
._2d_c00042{margin-left:-8.640000px;}
._5d_c00042{margin-left:-7.638000px;}
._27_c00042{margin-left:-6.216000px;}
._5e_c00042{margin-left:-5.133000px;}
._10_c00042{margin-left:-4.128000px;}
._11_c00042{margin-left:-2.688000px;}
._a_c00042{margin-left:-1.344000px;}
._7_c00042{width:1.056000px;}
._6_c00042{width:2.112000px;}
._2_c00042{width:3.360000px;}
._1_c00042{width:5.184000px;}
._13_c00042{width:6.528000px;}
._3_c00042{width:7.584000px;}
._22_c00042{width:8.640000px;}
._5_c00042{width:9.696000px;}
._d_c00042{width:11.424000px;}
._f_c00042{width:13.152000px;}
._8_c00042{width:15.072000px;}
._9_c00042{width:16.992000px;}
._28_c00042{width:18.816000px;}
._41_c00042{width:19.968000px;}
._e_c00042{width:21.312000px;}
._0_c00042{width:24.288000px;}
._25_c00042{width:26.400000px;}
._17_c00042{width:27.840000px;}
._23_c00042{width:29.952000px;}
._b_c00042{width:31.296000px;}
._15_c00042{width:33.024000px;}
._12_c00042{width:34.656000px;}
._1b_c00042{width:36.000000px;}
._4_c00042{width:38.400000px;}
._14_c00042{width:40.320000px;}
._21_c00042{width:41.376000px;}
._16_c00042{width:42.528000px;}
._1f_c00042{width:43.584000px;}
._18_c00042{width:44.928000px;}
._1d_c00042{width:47.136000px;}
._2b_c00042{width:48.960000px;}
._65_c00042{width:50.016000px;}
._2c_c00042{width:51.168000px;}
._1c_c00042{width:53.376000px;}
._43_c00042{width:54.981000px;}
._24_c00042{width:56.544000px;}
._56_c00042{width:57.642000px;}
._66_c00042{width:58.968000px;}
._40_c00042{width:60.816000px;}
._c_c00042{width:62.208000px;}
._19_c00042{width:63.840000px;}
._20_c00042{width:65.184000px;}
._1e_c00042{width:66.816000px;}
._48_c00042{width:68.448000px;}
._1a_c00042{width:72.384000px;}
._50_c00042{width:73.551000px;}
._29_c00042{width:79.200000px;}
._2f_c00042{width:82.752000px;}
._5b_c00042{width:84.639000px;}
._5a_c00042{width:86.100000px;}
._62_c00042{width:94.629000px;}
._2e_c00042{width:97.848000px;}
._54_c00042{width:99.264000px;}
._53_c00042{width:106.368000px;}
._4e_c00042{width:115.155000px;}
._5f_c00042{width:165.924000px;}
._30_c00042{width:189.600000px;}
._26_c00042{width:217.824000px;}
._4d_c00042{width:229.968000px;}
._32_c00042{width:261.408000px;}
._36_c00042{width:263.976000px;}
._38_c00042{width:270.240000px;}
._59_c00042{width:303.339000px;}
._61_c00042{width:387.072000px;}
._4f_c00042{width:456.228000px;}
._31_c00042{width:527.112000px;}
._51_c00042{width:581.577000px;}
._64_c00042{width:623.706000px;}
._63_c00042{width:633.942000px;}
._57_c00042{width:696.378000px;}
._4c_c00042{width:774.429000px;}
._55_c00042{width:797.496000px;}
._49_c00042{width:1120.560000px;}
._60_c00042{width:1910.388000px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(128,128,128);}
.fc0_c00042{color:rgb(0,0,0);}
.fs7_c00042{font-size:48.000000px;}
.fs4_c00042{font-size:78.000000px;}
.fs1_c00042{font-size:84.000000px;}
.fs5_c00042{font-size:87.000000px;}
.fs0_c00042{font-size:96.000000px;}
.fs2_c00042{font-size:99.000000px;}
.fs6_c00042{font-size:102.000000px;}
.fs3_c00042{font-size:165.000000px;}
.y0_c00042{bottom:0.000000px;}
.y28_c00042{bottom:3.105000px;}
.y27_c00042{bottom:7.228369px;}
.y26_c00042{bottom:112.020000px;}
.y25_c00042{bottom:142.470000px;}
.y24_c00042{bottom:176.220000px;}
.y23_c00042{bottom:209.970000px;}
.y22_c00042{bottom:244.920000px;}
.y21_c00042{bottom:263.970000px;}
.y20_c00042{bottom:290.520000px;}
.y1f_c00042{bottom:311.070000px;}
.y1e_c00042{bottom:355.020000px;}
.y1d_c00042{bottom:378.570000px;}
.y1c_c00042{bottom:412.470000px;}
.y1b_c00042{bottom:444.120000px;}
.y1a_c00042{bottom:475.470000px;}
.y19_c00042{bottom:510.870000px;}
.y18_c00042{bottom:542.370000px;}
.y17_c00042{bottom:560.820000px;}
.y16_c00042{bottom:578.370000px;}
.y15_c00042{bottom:612.570000px;}
.y14_c00042{bottom:644.220000px;}
.y13_c00042{bottom:677.370000px;}
.y12_c00042{bottom:711.120000px;}
.y11_c00042{bottom:744.570000px;}
.y10_c00042{bottom:777.270000px;}
.yf_c00042{bottom:810.570000px;}
.ye_c00042{bottom:843.720000px;}
.yd_c00042{bottom:875.820000px;}
.yc_c00042{bottom:909.270000px;}
.yb_c00042{bottom:943.320000px;}
.ya_c00042{bottom:976.320000px;}
.y9_c00042{bottom:1009.470000px;}
.y8_c00042{bottom:1042.470000px;}
.y7_c00042{bottom:1076.070000px;}
.y6_c00042{bottom:1108.920000px;}
.y5_c00042{bottom:1141.770000px;}
.y4_c00042{bottom:1175.220000px;}
.y3_c00042{bottom:1208.820000px;}
.y2_c00042{bottom:1241.220000px;}
.y1_c00042{bottom:1274.970000px;}
.h6_c00042{height:13.200073px;}
.h7_c00042{height:43.804688px;}
.h5_c00042{height:91.291992px;}
.h4_c00042{height:110.151855px;}
.h2_c00042{height:121.546875px;}
.h3_c00042{height:161.857910px;}
.h0_c00042{height:1383.450000px;}
.h1_c00042{height:1383.750000px;}
.w2_c00042{width:104.875500px;}
.w0_c00042{width:878.025000px;}
.w1_c00042{width:878.250000px;}
.x0_c00042{left:0.000000px;}
.xd_c00042{left:27.750000px;}
.xa_c00042{left:30.000000px;}
.x8_c00042{left:31.050000px;}
.x9_c00042{left:33.150000px;}
.x7_c00042{left:34.200000px;}
.x6_c00042{left:35.400000px;}
.x5_c00042{left:36.450000px;}
.x4_c00042{left:38.100000px;}
.x3_c00042{left:39.750000px;}
.xb_c00042{left:41.850000px;}
.x2_c00042{left:44.100000px;}
.x1_c00042{left:45.600000px;}
.xe_c00042{left:48.900000px;}
.xc_c00042{left:86.700000px;}
.x10_c00042{left:390.826721px;}
.xf_c00042{left:542.400000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls4_c00042{letter-spacing:0.000000pt;}
.ls5_c00042{letter-spacing:5.333333pt;}
.ls0_c00042{letter-spacing:10.090667pt;}
.ls1_c00042{letter-spacing:16.096000pt;}
.ls3_c00042{letter-spacing:16.757333pt;}
.ls2_c00042{letter-spacing:21.024000pt;}
.ws5_c00042{word-spacing:-50.666667pt;}
.ws1_c00042{word-spacing:-36.666667pt;}
.ws7_c00042{word-spacing:-22.000000pt;}
.ws0_c00042{word-spacing:-21.208000pt;}
.ws2_c00042{word-spacing:-18.637333pt;}
.ws3_c00042{word-spacing:-17.994667pt;}
.ws6_c00042{word-spacing:-0.373333pt;}
.ws8_c00042{word-spacing:0.000000pt;}
.ws4_c00042{word-spacing:12.842667pt;}
._58_c00042{margin-left:-69.341333pt;}
._45_c00042{margin-left:-50.746667pt;}
._3b_c00042{margin-left:-48.845333pt;}
._3a_c00042{margin-left:-36.386667pt;}
._35_c00042{margin-left:-35.413333pt;}
._44_c00042{margin-left:-34.354667pt;}
._39_c00042{margin-left:-32.640000pt;}
._4a_c00042{margin-left:-30.653333pt;}
._3c_c00042{margin-left:-28.893333pt;}
._37_c00042{margin-left:-28.000000pt;}
._46_c00042{margin-left:-26.920000pt;}
._5c_c00042{margin-left:-25.677333pt;}
._4b_c00042{margin-left:-24.173333pt;}
._2a_c00042{margin-left:-22.613333pt;}
._3e_c00042{margin-left:-20.144000pt;}
._47_c00042{margin-left:-18.280000pt;}
._42_c00042{margin-left:-17.349333pt;}
._33_c00042{margin-left:-15.973333pt;}
._3d_c00042{margin-left:-13.920000pt;}
._52_c00042{margin-left:-12.997333pt;}
._34_c00042{margin-left:-10.410667pt;}
._3f_c00042{margin-left:-8.789333pt;}
._2d_c00042{margin-left:-7.680000pt;}
._5d_c00042{margin-left:-6.789333pt;}
._27_c00042{margin-left:-5.525333pt;}
._5e_c00042{margin-left:-4.562667pt;}
._10_c00042{margin-left:-3.669333pt;}
._11_c00042{margin-left:-2.389333pt;}
._a_c00042{margin-left:-1.194667pt;}
._7_c00042{width:0.938667pt;}
._6_c00042{width:1.877333pt;}
._2_c00042{width:2.986667pt;}
._1_c00042{width:4.608000pt;}
._13_c00042{width:5.802667pt;}
._3_c00042{width:6.741333pt;}
._22_c00042{width:7.680000pt;}
._5_c00042{width:8.618667pt;}
._d_c00042{width:10.154667pt;}
._f_c00042{width:11.690667pt;}
._8_c00042{width:13.397333pt;}
._9_c00042{width:15.104000pt;}
._28_c00042{width:16.725333pt;}
._41_c00042{width:17.749333pt;}
._e_c00042{width:18.944000pt;}
._0_c00042{width:21.589333pt;}
._25_c00042{width:23.466667pt;}
._17_c00042{width:24.746667pt;}
._23_c00042{width:26.624000pt;}
._b_c00042{width:27.818667pt;}
._15_c00042{width:29.354667pt;}
._12_c00042{width:30.805333pt;}
._1b_c00042{width:32.000000pt;}
._4_c00042{width:34.133333pt;}
._14_c00042{width:35.840000pt;}
._21_c00042{width:36.778667pt;}
._16_c00042{width:37.802667pt;}
._1f_c00042{width:38.741333pt;}
._18_c00042{width:39.936000pt;}
._1d_c00042{width:41.898667pt;}
._2b_c00042{width:43.520000pt;}
._65_c00042{width:44.458667pt;}
._2c_c00042{width:45.482667pt;}
._1c_c00042{width:47.445333pt;}
._43_c00042{width:48.872000pt;}
._24_c00042{width:50.261333pt;}
._56_c00042{width:51.237333pt;}
._66_c00042{width:52.416000pt;}
._40_c00042{width:54.058667pt;}
._c_c00042{width:55.296000pt;}
._19_c00042{width:56.746667pt;}
._20_c00042{width:57.941333pt;}
._1e_c00042{width:59.392000pt;}
._48_c00042{width:60.842667pt;}
._1a_c00042{width:64.341333pt;}
._50_c00042{width:65.378667pt;}
._29_c00042{width:70.400000pt;}
._2f_c00042{width:73.557333pt;}
._5b_c00042{width:75.234667pt;}
._5a_c00042{width:76.533333pt;}
._62_c00042{width:84.114667pt;}
._2e_c00042{width:86.976000pt;}
._54_c00042{width:88.234667pt;}
._53_c00042{width:94.549333pt;}
._4e_c00042{width:102.360000pt;}
._5f_c00042{width:147.488000pt;}
._30_c00042{width:168.533333pt;}
._26_c00042{width:193.621333pt;}
._4d_c00042{width:204.416000pt;}
._32_c00042{width:232.362667pt;}
._36_c00042{width:234.645333pt;}
._38_c00042{width:240.213333pt;}
._59_c00042{width:269.634667pt;}
._61_c00042{width:344.064000pt;}
._4f_c00042{width:405.536000pt;}
._31_c00042{width:468.544000pt;}
._51_c00042{width:516.957333pt;}
._64_c00042{width:554.405333pt;}
._63_c00042{width:563.504000pt;}
._57_c00042{width:619.002667pt;}
._4c_c00042{width:688.381333pt;}
._55_c00042{width:708.885333pt;}
._49_c00042{width:996.053333pt;}
._60_c00042{width:1698.122667pt;}
.fs7_c00042{font-size:42.666667pt;}
.fs4_c00042{font-size:69.333333pt;}
.fs1_c00042{font-size:74.666667pt;}
.fs5_c00042{font-size:77.333333pt;}
.fs0_c00042{font-size:85.333333pt;}
.fs2_c00042{font-size:88.000000pt;}
.fs6_c00042{font-size:90.666667pt;}
.fs3_c00042{font-size:146.666667pt;}
.y0_c00042{bottom:0.000000pt;}
.y28_c00042{bottom:2.760000pt;}
.y27_c00042{bottom:6.425217pt;}
.y26_c00042{bottom:99.573333pt;}
.y25_c00042{bottom:126.640000pt;}
.y24_c00042{bottom:156.640000pt;}
.y23_c00042{bottom:186.640000pt;}
.y22_c00042{bottom:217.706667pt;}
.y21_c00042{bottom:234.640000pt;}
.y20_c00042{bottom:258.240000pt;}
.y1f_c00042{bottom:276.506667pt;}
.y1e_c00042{bottom:315.573333pt;}
.y1d_c00042{bottom:336.506667pt;}
.y1c_c00042{bottom:366.640000pt;}
.y1b_c00042{bottom:394.773333pt;}
.y1a_c00042{bottom:422.640000pt;}
.y19_c00042{bottom:454.106667pt;}
.y18_c00042{bottom:482.106667pt;}
.y17_c00042{bottom:498.506667pt;}
.y16_c00042{bottom:514.106667pt;}
.y15_c00042{bottom:544.506667pt;}
.y14_c00042{bottom:572.640000pt;}
.y13_c00042{bottom:602.106667pt;}
.y12_c00042{bottom:632.106667pt;}
.y11_c00042{bottom:661.840000pt;}
.y10_c00042{bottom:690.906667pt;}
.yf_c00042{bottom:720.506667pt;}
.ye_c00042{bottom:749.973333pt;}
.yd_c00042{bottom:778.506667pt;}
.yc_c00042{bottom:808.240000pt;}
.yb_c00042{bottom:838.506667pt;}
.ya_c00042{bottom:867.840000pt;}
.y9_c00042{bottom:897.306667pt;}
.y8_c00042{bottom:926.640000pt;}
.y7_c00042{bottom:956.506667pt;}
.y6_c00042{bottom:985.706667pt;}
.y5_c00042{bottom:1014.906667pt;}
.y4_c00042{bottom:1044.640000pt;}
.y3_c00042{bottom:1074.506667pt;}
.y2_c00042{bottom:1103.306667pt;}
.y1_c00042{bottom:1133.306667pt;}
.h6_c00042{height:11.733399pt;}
.h7_c00042{height:38.937500pt;}
.h5_c00042{height:81.148438pt;}
.h4_c00042{height:97.912760pt;}
.h2_c00042{height:108.041667pt;}
.h3_c00042{height:143.873698pt;}
.h0_c00042{height:1229.733333pt;}
.h1_c00042{height:1230.000000pt;}
.w2_c00042{width:93.222667pt;}
.w0_c00042{width:780.466667pt;}
.w1_c00042{width:780.666667pt;}
.x0_c00042{left:0.000000pt;}
.xd_c00042{left:24.666667pt;}
.xa_c00042{left:26.666667pt;}
.x8_c00042{left:27.600000pt;}
.x9_c00042{left:29.466667pt;}
.x7_c00042{left:30.400000pt;}
.x6_c00042{left:31.466667pt;}
.x5_c00042{left:32.400000pt;}
.x4_c00042{left:33.866667pt;}
.x3_c00042{left:35.333333pt;}
.xb_c00042{left:37.200000pt;}
.x2_c00042{left:39.200000pt;}
.x1_c00042{left:40.533333pt;}
.xe_c00042{left:43.466667pt;}
.xc_c00042{left:77.066667pt;}
.x10_c00042{left:347.401530pt;}
.xf_c00042{left:482.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_563e6b340cb802c6368311b5.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_8e46cc448b2ba7fae455aca7.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls1_c00043{letter-spacing:0.000000px;}
.ls2_c00043{letter-spacing:6.000000px;}
.ls0_c00043{letter-spacing:11.856000px;}
.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;}
}
.ws1_c00043{word-spacing:-57.000000px;}
.ws3_c00043{word-spacing:-23.136000px;}
.ws0_c00043{word-spacing:-14.676000px;}
.ws4_c00043{word-spacing:0.000000px;}
.ws2_c00043{word-spacing:0.084000px;}
._e_c00043{margin-left:-30.528000px;}
._2c_c00043{margin-left:-17.664000px;}
._11_c00043{margin-left:-13.920000px;}
._29_c00043{margin-left:-11.808000px;}
._2a_c00043{margin-left:-10.560000px;}
._2e_c00043{margin-left:-8.664000px;}
._32_c00043{margin-left:-7.524000px;}
._25_c00043{margin-left:-6.240000px;}
._4_c00043{margin-left:-4.608000px;}
._1_c00043{margin-left:-3.204000px;}
._0_c00043{margin-left:-2.160000px;}
._28_c00043{margin-left:-1.152000px;}
._9_c00043{width:1.440000px;}
._3_c00043{width:3.072000px;}
._24_c00043{width:4.080000px;}
._2_c00043{width:5.088000px;}
._b_c00043{width:6.432000px;}
._16_c00043{width:8.064000px;}
._d_c00043{width:10.080000px;}
._23_c00043{width:11.136000px;}
._14_c00043{width:12.288000px;}
._1c_c00043{width:14.016000px;}
._26_c00043{width:15.456000px;}
._7_c00043{width:17.184000px;}
._2d_c00043{width:18.864000px;}
._33_c00043{width:19.884000px;}
._12_c00043{width:21.216000px;}
._31_c00043{width:24.384000px;}
._c_c00043{width:25.440000px;}
._f_c00043{width:27.648000px;}
._22_c00043{width:29.604000px;}
._1f_c00043{width:30.816000px;}
._1e_c00043{width:32.352000px;}
._17_c00043{width:33.600000px;}
._1d_c00043{width:35.136000px;}
._8_c00043{width:36.768000px;}
._18_c00043{width:38.016000px;}
._21_c00043{width:39.168000px;}
._10_c00043{width:41.184000px;}
._27_c00043{width:42.576000px;}
._15_c00043{width:43.680000px;}
._a_c00043{width:44.928000px;}
._6_c00043{width:46.752000px;}
._34_c00043{width:47.952000px;}
._2f_c00043{width:49.776000px;}
._19_c00043{width:50.784000px;}
._30_c00043{width:52.080000px;}
._1a_c00043{width:53.760000px;}
._5_c00043{width:55.776000px;}
._20_c00043{width:59.232000px;}
._2b_c00043{width:62.220000px;}
._1b_c00043{width:66.336000px;}
._13_c00043{width:67.776000px;}
._35_c00043{width:101.016000px;}
._36_c00043{width:379.296000px;}
.fc2_c00043{color:transparent;}
.fc1_c00043{color:rgb(128,128,128);}
.fc0_c00043{color:rgb(0,0,0);}
.fs1_c00043{font-size:36.000000px;}
.fs4_c00043{font-size:48.000000px;}
.fs2_c00043{font-size:84.000000px;}
.fs0_c00043{font-size:96.000000px;}
.fs3_c00043{font-size:102.000000px;}
.y0_c00043{bottom:0.000000px;}
.y28_c00043{bottom:3.105000px;}
.y27_c00043{bottom:7.228357px;}
.y26_c00043{bottom:79.980000px;}
.y25_c00043{bottom:115.380000px;}
.y24_c00043{bottom:149.880000px;}
.y23_c00043{bottom:184.980000px;}
.y22_c00043{bottom:217.680000px;}
.y21_c00043{bottom:251.730000px;}
.y20_c00043{bottom:285.180000px;}
.y1f_c00043{bottom:318.930000px;}
.y1e_c00043{bottom:352.080000px;}
.y1d_c00043{bottom:386.130000px;}
.y2_c00043{bottom:415.230000px;}
.y1c_c00043{bottom:419.280000px;}
.y1b_c00043{bottom:453.030000px;}
.y1_c00043{bottom:476.280000px;}
.y1a_c00043{bottom:486.330000px;}
.y19_c00043{bottom:519.780000px;}
.y18_c00043{bottom:552.780000px;}
.y17_c00043{bottom:586.230000px;}
.y16_c00043{bottom:619.380000px;}
.y15_c00043{bottom:652.380000px;}
.y14_c00043{bottom:685.530000px;}
.y13_c00043{bottom:718.830000px;}
.y12_c00043{bottom:752.280000px;}
.y11_c00043{bottom:785.730000px;}
.y10_c00043{bottom:818.880000px;}
.yf_c00043{bottom:852.630000px;}
.ye_c00043{bottom:884.880000px;}
.yd_c00043{bottom:917.430000px;}
.yc_c00043{bottom:951.030000px;}
.yb_c00043{bottom:983.580000px;}
.ya_c00043{bottom:1016.580000px;}
.y9_c00043{bottom:1050.030000px;}
.y8_c00043{bottom:1082.730000px;}
.y7_c00043{bottom:1116.180000px;}
.y6_c00043{bottom:1149.930000px;}
.y5_c00043{bottom:1182.330000px;}
.y4_c00043{bottom:1215.630000px;}
.y3_c00043{bottom:1248.780000px;}
.h4_c00043{height:13.200074px;}
.h5_c00043{height:43.804688px;}
.h3_c00043{height:45.580078px;}
.h2_c00043{height:121.546875px;}
.h1_c00043{height:1351.500000px;}
.h0_c00043{height:1351.650000px;}
.w2_c00043{width:104.875500px;}
.w0_c00043{width:843.450000px;}
.w1_c00043{width:843.750000px;}
.x0_c00043{left:0.000000px;}
.x2_c00043{left:38.100000px;}
.x1_c00043{left:216.900000px;}
.xa_c00043{left:263.700000px;}
.x4_c00043{left:265.950000px;}
.x3_c00043{left:268.050000px;}
.x5_c00043{left:269.100000px;}
.x7_c00043{left:270.750000px;}
.x6_c00043{left:271.800000px;}
.x8_c00043{left:273.000000px;}
.x9_c00043{left:274.500000px;}
.xb_c00043{left:323.700000px;}
.xd_c00043{left:373.539230px;}
.xc_c00043{left:815.100000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls1_c00043{letter-spacing:0.000000pt;}
.ls2_c00043{letter-spacing:5.333333pt;}
.ls0_c00043{letter-spacing:10.538667pt;}
.ws1_c00043{word-spacing:-50.666667pt;}
.ws3_c00043{word-spacing:-20.565333pt;}
.ws0_c00043{word-spacing:-13.045333pt;}
.ws4_c00043{word-spacing:0.000000pt;}
.ws2_c00043{word-spacing:0.074667pt;}
._e_c00043{margin-left:-27.136000pt;}
._2c_c00043{margin-left:-15.701333pt;}
._11_c00043{margin-left:-12.373333pt;}
._29_c00043{margin-left:-10.496000pt;}
._2a_c00043{margin-left:-9.386667pt;}
._2e_c00043{margin-left:-7.701333pt;}
._32_c00043{margin-left:-6.688000pt;}
._25_c00043{margin-left:-5.546667pt;}
._4_c00043{margin-left:-4.096000pt;}
._1_c00043{margin-left:-2.848000pt;}
._0_c00043{margin-left:-1.920000pt;}
._28_c00043{margin-left:-1.024000pt;}
._9_c00043{width:1.280000pt;}
._3_c00043{width:2.730667pt;}
._24_c00043{width:3.626667pt;}
._2_c00043{width:4.522667pt;}
._b_c00043{width:5.717333pt;}
._16_c00043{width:7.168000pt;}
._d_c00043{width:8.960000pt;}
._23_c00043{width:9.898667pt;}
._14_c00043{width:10.922667pt;}
._1c_c00043{width:12.458667pt;}
._26_c00043{width:13.738667pt;}
._7_c00043{width:15.274667pt;}
._2d_c00043{width:16.768000pt;}
._33_c00043{width:17.674667pt;}
._12_c00043{width:18.858667pt;}
._31_c00043{width:21.674667pt;}
._c_c00043{width:22.613333pt;}
._f_c00043{width:24.576000pt;}
._22_c00043{width:26.314667pt;}
._1f_c00043{width:27.392000pt;}
._1e_c00043{width:28.757333pt;}
._17_c00043{width:29.866667pt;}
._1d_c00043{width:31.232000pt;}
._8_c00043{width:32.682667pt;}
._18_c00043{width:33.792000pt;}
._21_c00043{width:34.816000pt;}
._10_c00043{width:36.608000pt;}
._27_c00043{width:37.845333pt;}
._15_c00043{width:38.826667pt;}
._a_c00043{width:39.936000pt;}
._6_c00043{width:41.557333pt;}
._34_c00043{width:42.624000pt;}
._2f_c00043{width:44.245333pt;}
._19_c00043{width:45.141333pt;}
._30_c00043{width:46.293333pt;}
._1a_c00043{width:47.786667pt;}
._5_c00043{width:49.578667pt;}
._20_c00043{width:52.650667pt;}
._2b_c00043{width:55.306667pt;}
._1b_c00043{width:58.965333pt;}
._13_c00043{width:60.245333pt;}
._35_c00043{width:89.792000pt;}
._36_c00043{width:337.152000pt;}
.fs1_c00043{font-size:32.000000pt;}
.fs4_c00043{font-size:42.666667pt;}
.fs2_c00043{font-size:74.666667pt;}
.fs0_c00043{font-size:85.333333pt;}
.fs3_c00043{font-size:90.666667pt;}
.y0_c00043{bottom:0.000000pt;}
.y28_c00043{bottom:2.760000pt;}
.y27_c00043{bottom:6.425206pt;}
.y26_c00043{bottom:71.093333pt;}
.y25_c00043{bottom:102.560000pt;}
.y24_c00043{bottom:133.226667pt;}
.y23_c00043{bottom:164.426667pt;}
.y22_c00043{bottom:193.493333pt;}
.y21_c00043{bottom:223.760000pt;}
.y20_c00043{bottom:253.493333pt;}
.y1f_c00043{bottom:283.493333pt;}
.y1e_c00043{bottom:312.960000pt;}
.y1d_c00043{bottom:343.226667pt;}
.y2_c00043{bottom:369.093333pt;}
.y1c_c00043{bottom:372.693333pt;}
.y1b_c00043{bottom:402.693333pt;}
.y1_c00043{bottom:423.360000pt;}
.y1a_c00043{bottom:432.293333pt;}
.y19_c00043{bottom:462.026667pt;}
.y18_c00043{bottom:491.360000pt;}
.y17_c00043{bottom:521.093333pt;}
.y16_c00043{bottom:550.560000pt;}
.y15_c00043{bottom:579.893333pt;}
.y14_c00043{bottom:609.360000pt;}
.y13_c00043{bottom:638.960000pt;}
.y12_c00043{bottom:668.693333pt;}
.y11_c00043{bottom:698.426667pt;}
.y10_c00043{bottom:727.893333pt;}
.yf_c00043{bottom:757.893333pt;}
.ye_c00043{bottom:786.560000pt;}
.yd_c00043{bottom:815.493333pt;}
.yc_c00043{bottom:845.360000pt;}
.yb_c00043{bottom:874.293333pt;}
.ya_c00043{bottom:903.626667pt;}
.y9_c00043{bottom:933.360000pt;}
.y8_c00043{bottom:962.426667pt;}
.y7_c00043{bottom:992.160000pt;}
.y6_c00043{bottom:1022.160000pt;}
.y5_c00043{bottom:1050.960000pt;}
.y4_c00043{bottom:1080.560000pt;}
.y3_c00043{bottom:1110.026667pt;}
.h4_c00043{height:11.733399pt;}
.h5_c00043{height:38.937500pt;}
.h3_c00043{height:40.515625pt;}
.h2_c00043{height:108.041667pt;}
.h1_c00043{height:1201.333333pt;}
.h0_c00043{height:1201.466667pt;}
.w2_c00043{width:93.222667pt;}
.w0_c00043{width:749.733333pt;}
.w1_c00043{width:750.000000pt;}
.x0_c00043{left:0.000000pt;}
.x2_c00043{left:33.866667pt;}
.x1_c00043{left:192.800000pt;}
.xa_c00043{left:234.400000pt;}
.x4_c00043{left:236.400000pt;}
.x3_c00043{left:238.266667pt;}
.x5_c00043{left:239.200000pt;}
.x7_c00043{left:240.666667pt;}
.x6_c00043{left:241.600000pt;}
.x8_c00043{left:242.666667pt;}
.x9_c00043{left:244.000000pt;}
.xb_c00043{left:287.733333pt;}
.xd_c00043{left:332.034871pt;}
.xc_c00043{left:724.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33b9893f8ebd80250de288fd.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_e6041894c36aecfe89fb1ba8.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_65ec3e7313a09190c6791629.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:10.800000px;}
.ls3_c00044{letter-spacing:0.000000px;}
.ls4_c00044{letter-spacing:6.000000px;}
.ls0_c00044{letter-spacing:6.120000px;}
.ls1_c00044{letter-spacing:6.720000px;}
.ls2_c00044{letter-spacing:722.751000px;}
.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;}
}
.ws2_c00044{word-spacing:-25.305000px;}
.ws0_c00044{word-spacing:-20.244000px;}
.ws1_c00044{word-spacing:-18.798000px;}
.ws3_c00044{word-spacing:0.000000px;}
._2b_c00044{margin-left:-28.416000px;}
._0_c00044{margin-left:-16.380000px;}
._1d_c00044{margin-left:-14.436000px;}
._8_c00044{margin-left:-13.020000px;}
._7_c00044{margin-left:-10.080000px;}
._4_c00044{margin-left:-6.300000px;}
._5_c00044{margin-left:-5.124000px;}
._1_c00044{margin-left:-3.276000px;}
._2_c00044{margin-left:-1.596000px;}
._17_c00044{width:1.152000px;}
._b_c00044{width:2.208000px;}
._e_c00044{width:3.360000px;}
._c_c00044{width:4.704000px;}
._a_c00044{width:6.336000px;}
._1a_c00044{width:8.352000px;}
._9_c00044{width:9.804000px;}
._3_c00044{width:11.676000px;}
._6_c00044{width:13.356000px;}
._12_c00044{width:14.784000px;}
._11_c00044{width:16.704000px;}
._f_c00044{width:18.612000px;}
._1f_c00044{width:19.692000px;}
._d_c00044{width:21.024000px;}
._20_c00044{width:25.464000px;}
._19_c00044{width:27.456000px;}
._1e_c00044{width:28.800000px;}
._21_c00044{width:30.432000px;}
._23_c00044{width:31.908000px;}
._16_c00044{width:33.000000px;}
._29_c00044{width:34.692000px;}
._22_c00044{width:36.480000px;}
._14_c00044{width:38.112000px;}
._1b_c00044{width:39.288000px;}
._26_c00044{width:40.968000px;}
._28_c00044{width:42.144000px;}
._24_c00044{width:43.500000px;}
._2c_c00044{width:44.604000px;}
._27_c00044{width:47.040000px;}
._2a_c00044{width:48.120000px;}
._13_c00044{width:52.164000px;}
._18_c00044{width:53.376000px;}
._10_c00044{width:55.872000px;}
._1c_c00044{width:201.480000px;}
._15_c00044{width:385.440000px;}
._25_c00044{width:388.512000px;}
.fc2_c00044{color:transparent;}
.fc1_c00044{color:rgb(128,128,128);}
.fc0_c00044{color:rgb(0,0,0);}
.fs6_c00044{font-size:48.000000px;}
.fs2_c00044{font-size:66.000000px;}
.fs3_c00044{font-size:78.000000px;}
.fs0_c00044{font-size:84.000000px;}
.fs4_c00044{font-size:87.000000px;}
.fs1_c00044{font-size:96.000000px;}
.fs5_c00044{font-size:105.000000px;}
.y0_c00044{bottom:0.000000px;}
.y17_c00044{bottom:3.105000px;}
.y16_c00044{bottom:7.228369px;}
.y15_c00044{bottom:112.320000px;}
.y13_c00044{bottom:717.870000px;}
.y12_c00044{bottom:752.970000px;}
.y11_c00044{bottom:787.020000px;}
.y10_c00044{bottom:820.470000px;}
.yf_c00044{bottom:853.470000px;}
.ye_c00044{bottom:886.920000px;}
.yd_c00044{bottom:920.070000px;}
.yc_c00044{bottom:953.070000px;}
.yb_c00044{bottom:987.420000px;}
.y14_c00044{bottom:1003.770000px;}
.ya_c00044{bottom:1018.620000px;}
.y9_c00044{bottom:1053.270000px;}
.y8_c00044{bottom:1086.720000px;}
.y7_c00044{bottom:1120.170000px;}
.y6_c00044{bottom:1155.570000px;}
.y5_c00044{bottom:1186.620000px;}
.y1_c00044{bottom:1196.370000px;}
.y4_c00044{bottom:1219.320000px;}
.y3_c00044{bottom:1252.470000px;}
.y2_c00044{bottom:1285.920000px;}
.h6_c00044{height:13.200073px;}
.h7_c00044{height:43.804688px;}
.h4_c00044{height:91.291992px;}
.h2_c00044{height:98.314453px;}
.h3_c00044{height:121.546875px;}
.h5_c00044{height:143.741895px;}
.h0_c00044{height:1383.450000px;}
.h1_c00044{height:1383.750000px;}
.w2_c00044{width:104.875500px;}
.w0_c00044{width:878.025000px;}
.w1_c00044{width:878.250000px;}
.x0_c00044{left:0.000000px;}
.x8_c00044{left:17.550000px;}
.x9_c00044{left:18.600000px;}
.x6_c00044{left:19.650000px;}
.x5_c00044{left:21.300000px;}
.x3_c00044{left:22.950000px;}
.x2_c00044{left:24.600000px;}
.x7_c00044{left:70.950000px;}
.x4_c00044{left:73.200000px;}
.xb_c00044{left:304.350000px;}
.xc_c00044{left:390.826721px;}
.x1_c00044{left:628.800000px;}
.xa_c00044{left:631.500000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:9.600000pt;}
.ls3_c00044{letter-spacing:0.000000pt;}
.ls4_c00044{letter-spacing:5.333333pt;}
.ls0_c00044{letter-spacing:5.440000pt;}
.ls1_c00044{letter-spacing:5.973333pt;}
.ls2_c00044{letter-spacing:642.445333pt;}
.ws2_c00044{word-spacing:-22.493333pt;}
.ws0_c00044{word-spacing:-17.994667pt;}
.ws1_c00044{word-spacing:-16.709333pt;}
.ws3_c00044{word-spacing:0.000000pt;}
._2b_c00044{margin-left:-25.258667pt;}
._0_c00044{margin-left:-14.560000pt;}
._1d_c00044{margin-left:-12.832000pt;}
._8_c00044{margin-left:-11.573333pt;}
._7_c00044{margin-left:-8.960000pt;}
._4_c00044{margin-left:-5.600000pt;}
._5_c00044{margin-left:-4.554667pt;}
._1_c00044{margin-left:-2.912000pt;}
._2_c00044{margin-left:-1.418667pt;}
._17_c00044{width:1.024000pt;}
._b_c00044{width:1.962667pt;}
._e_c00044{width:2.986667pt;}
._c_c00044{width:4.181333pt;}
._a_c00044{width:5.632000pt;}
._1a_c00044{width:7.424000pt;}
._9_c00044{width:8.714667pt;}
._3_c00044{width:10.378667pt;}
._6_c00044{width:11.872000pt;}
._12_c00044{width:13.141333pt;}
._11_c00044{width:14.848000pt;}
._f_c00044{width:16.544000pt;}
._1f_c00044{width:17.504000pt;}
._d_c00044{width:18.688000pt;}
._20_c00044{width:22.634667pt;}
._19_c00044{width:24.405333pt;}
._1e_c00044{width:25.600000pt;}
._21_c00044{width:27.050667pt;}
._23_c00044{width:28.362667pt;}
._16_c00044{width:29.333333pt;}
._29_c00044{width:30.837333pt;}
._22_c00044{width:32.426667pt;}
._14_c00044{width:33.877333pt;}
._1b_c00044{width:34.922667pt;}
._26_c00044{width:36.416000pt;}
._28_c00044{width:37.461333pt;}
._24_c00044{width:38.666667pt;}
._2c_c00044{width:39.648000pt;}
._27_c00044{width:41.813333pt;}
._2a_c00044{width:42.773333pt;}
._13_c00044{width:46.368000pt;}
._18_c00044{width:47.445333pt;}
._10_c00044{width:49.664000pt;}
._1c_c00044{width:179.093333pt;}
._15_c00044{width:342.613333pt;}
._25_c00044{width:345.344000pt;}
.fs6_c00044{font-size:42.666667pt;}
.fs2_c00044{font-size:58.666667pt;}
.fs3_c00044{font-size:69.333333pt;}
.fs0_c00044{font-size:74.666667pt;}
.fs4_c00044{font-size:77.333333pt;}
.fs1_c00044{font-size:85.333333pt;}
.fs5_c00044{font-size:93.333333pt;}
.y0_c00044{bottom:0.000000pt;}
.y17_c00044{bottom:2.760000pt;}
.y16_c00044{bottom:6.425217pt;}
.y15_c00044{bottom:99.840000pt;}
.y13_c00044{bottom:638.106667pt;}
.y12_c00044{bottom:669.306667pt;}
.y11_c00044{bottom:699.573333pt;}
.y10_c00044{bottom:729.306667pt;}
.yf_c00044{bottom:758.640000pt;}
.ye_c00044{bottom:788.373333pt;}
.yd_c00044{bottom:817.840000pt;}
.yc_c00044{bottom:847.173333pt;}
.yb_c00044{bottom:877.706667pt;}
.y14_c00044{bottom:892.240000pt;}
.ya_c00044{bottom:905.440000pt;}
.y9_c00044{bottom:936.240000pt;}
.y8_c00044{bottom:965.973333pt;}
.y7_c00044{bottom:995.706667pt;}
.y6_c00044{bottom:1027.173333pt;}
.y5_c00044{bottom:1054.773333pt;}
.y1_c00044{bottom:1063.440000pt;}
.y4_c00044{bottom:1083.840000pt;}
.y3_c00044{bottom:1113.306667pt;}
.y2_c00044{bottom:1143.040000pt;}
.h6_c00044{height:11.733399pt;}
.h7_c00044{height:38.937500pt;}
.h4_c00044{height:81.148438pt;}
.h2_c00044{height:87.390625pt;}
.h3_c00044{height:108.041667pt;}
.h5_c00044{height:127.770573pt;}
.h0_c00044{height:1229.733333pt;}
.h1_c00044{height:1230.000000pt;}
.w2_c00044{width:93.222667pt;}
.w0_c00044{width:780.466667pt;}
.w1_c00044{width:780.666667pt;}
.x0_c00044{left:0.000000pt;}
.x8_c00044{left:15.600000pt;}
.x9_c00044{left:16.533333pt;}
.x6_c00044{left:17.466667pt;}
.x5_c00044{left:18.933333pt;}
.x3_c00044{left:20.400000pt;}
.x2_c00044{left:21.866667pt;}
.x7_c00044{left:63.066667pt;}
.x4_c00044{left:65.066667pt;}
.xb_c00044{left:270.533333pt;}
.xc_c00044{left:347.401530pt;}
.x1_c00044{left:558.933333pt;}
.xa_c00044{left:561.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f4e871ebf86985d44ef327f5.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_eeeb9b6b6c4fb33180a38ab7.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_1a8829ba50c35ca1070d5c08.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls1_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:14.433000px;}
.ls2_c00045{letter-spacing:15.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00045{word-spacing:-49.704000px;}
.ws3_c00045{word-spacing:-34.704000px;}
.ws4_c00045{word-spacing:-23.136000px;}
.ws0_c00045{word-spacing:-18.798000px;}
.ws2_c00045{word-spacing:-0.168000px;}
.ws5_c00045{word-spacing:0.000000px;}
._3b_c00045{margin-left:-38.304000px;}
._3_c00045{margin-left:-29.841000px;}
._4_c00045{margin-left:-26.796000px;}
._2_c00045{margin-left:-24.273000px;}
._0_c00045{margin-left:-14.355000px;}
._9_c00045{margin-left:-12.528000px;}
._1_c00045{margin-left:-11.049000px;}
._31_c00045{margin-left:-9.879000px;}
._11_c00045{margin-left:-8.424000px;}
._a_c00045{margin-left:-7.392000px;}
._23_c00045{margin-left:-6.090000px;}
._12_c00045{margin-left:-5.070000px;}
._b_c00045{margin-left:-3.456000px;}
._6_c00045{margin-left:-1.740000px;}
._f_c00045{width:1.014000px;}
._14_c00045{width:2.034000px;}
._e_c00045{width:3.042000px;}
._20_c00045{width:4.134000px;}
._16_c00045{width:5.148000px;}
._15_c00045{width:6.504000px;}
._1a_c00045{width:7.617000px;}
._17_c00045{width:9.072000px;}
._c_c00045{width:10.176000px;}
._1f_c00045{width:11.571000px;}
._10_c00045{width:13.380000px;}
._8_c00045{width:14.529000px;}
._5_c00045{width:15.921000px;}
._7_c00045{width:18.009000px;}
._19_c00045{width:19.584000px;}
._27_c00045{width:21.450000px;}
._28_c00045{width:22.506000px;}
._1b_c00045{width:24.150000px;}
._d_c00045{width:25.440000px;}
._29_c00045{width:26.583000px;}
._18_c00045{width:27.726000px;}
._45_c00045{width:28.956000px;}
._13_c00045{width:30.108000px;}
._26_c00045{width:31.332000px;}
._22_c00045{width:32.940000px;}
._24_c00045{width:35.316000px;}
._44_c00045{width:36.378000px;}
._1d_c00045{width:37.464000px;}
._25_c00045{width:39.342000px;}
._41_c00045{width:40.668000px;}
._30_c00045{width:42.177000px;}
._21_c00045{width:44.376000px;}
._1c_c00045{width:46.458000px;}
._42_c00045{width:47.796000px;}
._39_c00045{width:48.816000px;}
._2b_c00045{width:49.848000px;}
._36_c00045{width:51.480000px;}
._35_c00045{width:52.641000px;}
._43_c00045{width:54.012000px;}
._2d_c00045{width:57.978000px;}
._38_c00045{width:62.352000px;}
._2e_c00045{width:63.996000px;}
._32_c00045{width:65.808000px;}
._34_c00045{width:67.416000px;}
._2f_c00045{width:68.724000px;}
._2c_c00045{width:70.896000px;}
._2a_c00045{width:83.625000px;}
._33_c00045{width:91.452000px;}
._37_c00045{width:103.371000px;}
._3e_c00045{width:140.967000px;}
._3a_c00045{width:150.060000px;}
._1e_c00045{width:165.636000px;}
._3f_c00045{width:198.468000px;}
._40_c00045{width:232.527000px;}
._3c_c00045{width:389.808000px;}
._3d_c00045{width:691.995000px;}
.fc2_c00045{color:transparent;}
.fc1_c00045{color:rgb(128,128,128);}
.fc0_c00045{color:rgb(0,0,0);}
.fs5_c00045{font-size:48.000000px;}
.fs2_c00045{font-size:78.000000px;}
.fs0_c00045{font-size:87.000000px;}
.fs1_c00045{font-size:96.000000px;}
.fs3_c00045{font-size:144.000000px;}
.fs4_c00045{font-size:168.000000px;}
.y0_c00045{bottom:0.000000px;}
.y36_c00045{bottom:3.105000px;}
.y35_c00045{bottom:7.228357px;}
.y34_c00045{bottom:108.780000px;}
.y33_c00045{bottom:145.230000px;}
.y18_c00045{bottom:149.880000px;}
.y32_c00045{bottom:180.180000px;}
.y17_c00045{bottom:180.330000px;}
.y16_c00045{bottom:210.030000px;}
.y31_c00045{bottom:214.080000px;}
.y15_c00045{bottom:240.030000px;}
.y30_c00045{bottom:248.130000px;}
.y14_c00045{bottom:269.730000px;}
.y2f_c00045{bottom:282.180000px;}
.y13_c00045{bottom:299.730000px;}
.y2e_c00045{bottom:316.230000px;}
.y12_c00045{bottom:330.480000px;}
.y2d_c00045{bottom:349.980000px;}
.y11_c00045{bottom:360.180000px;}
.y2c_c00045{bottom:383.730000px;}
.y10_c00045{bottom:390.180000px;}
.y2b_c00045{bottom:417.780000px;}
.yf_c00045{bottom:419.280000px;}
.ye_c00045{bottom:449.280000px;}
.y2a_c00045{bottom:451.680000px;}
.yd_c00045{bottom:478.980000px;}
.y29_c00045{bottom:485.280000px;}
.yc_c00045{bottom:509.280000px;}
.y28_c00045{bottom:517.830000px;}
.yb_c00045{bottom:538.680000px;}
.y27_c00045{bottom:551.580000px;}
.ya_c00045{bottom:568.680000px;}
.y26_c00045{bottom:585.630000px;}
.y9_c00045{bottom:598.080000px;}
.y8_c00045{bottom:627.480000px;}
.y25_c00045{bottom:652.080000px;}
.y7_c00045{bottom:657.180000px;}
.y6_c00045{bottom:686.430000px;}
.y5_c00045{bottom:715.830000px;}
.y24_c00045{bottom:724.980000px;}
.y4_c00045{bottom:745.830000px;}
.y3_c00045{bottom:773.880000px;}
.y23_c00045{bottom:777.330000px;}
.y2_c00045{bottom:804.030000px;}
.y22_c00045{bottom:828.180000px;}
.y21_c00045{bottom:878.280000px;}
.y20_c00045{bottom:928.530000px;}
.y1f_c00045{bottom:978.030000px;}
.y1e_c00045{bottom:1029.030000px;}
.y1d_c00045{bottom:1078.080000px;}
.y1_c00045{bottom:1114.530000px;}
.y1c_c00045{bottom:1129.380000px;}
.y1b_c00045{bottom:1179.630000px;}
.y1a_c00045{bottom:1229.880000px;}
.y19_c00045{bottom:1280.130000px;}
.h7_c00045{height:13.200074px;}
.h8_c00045{height:43.804688px;}
.h5_c00045{height:91.291992px;}
.h4_c00045{height:98.756836px;}
.h2_c00045{height:110.151855px;}
.h3_c00045{height:121.546875px;}
.h6_c00045{height:182.320312px;}
.h0_c00045{height:1382.700000px;}
.h1_c00045{height:1383.000000px;}
.w2_c00045{width:104.875500px;}
.w0_c00045{width:863.175000px;}
.w1_c00045{width:863.250000px;}
.x0_c00045{left:0.000000px;}
.x4_c00045{left:54.300000px;}
.x1_c00045{left:55.650000px;}
.x5_c00045{left:57.150000px;}
.x3_c00045{left:85.800000px;}
.x2_c00045{left:100.950000px;}
.x6_c00045{left:276.300000px;}
.x7_c00045{left:277.800000px;}
.x9_c00045{left:279.450000px;}
.x8_c00045{left:280.500000px;}
.xb_c00045{left:282.750000px;}
.xa_c00045{left:284.400000px;}
.x11_c00045{left:285.900000px;}
.xe_c00045{left:335.100000px;}
.x13_c00045{left:383.401749px;}
.xd_c00045{left:414.000000px;}
.xf_c00045{left:423.600000px;}
.x10_c00045{left:499.200000px;}
.xc_c00045{left:514.950000px;}
.x12_c00045{left:794.100000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:12.829333pt;}
.ls2_c00045{letter-spacing:13.333333pt;}
.ws1_c00045{word-spacing:-44.181333pt;}
.ws3_c00045{word-spacing:-30.848000pt;}
.ws4_c00045{word-spacing:-20.565333pt;}
.ws0_c00045{word-spacing:-16.709333pt;}
.ws2_c00045{word-spacing:-0.149333pt;}
.ws5_c00045{word-spacing:0.000000pt;}
._3b_c00045{margin-left:-34.048000pt;}
._3_c00045{margin-left:-26.525333pt;}
._4_c00045{margin-left:-23.818667pt;}
._2_c00045{margin-left:-21.576000pt;}
._0_c00045{margin-left:-12.760000pt;}
._9_c00045{margin-left:-11.136000pt;}
._1_c00045{margin-left:-9.821333pt;}
._31_c00045{margin-left:-8.781333pt;}
._11_c00045{margin-left:-7.488000pt;}
._a_c00045{margin-left:-6.570667pt;}
._23_c00045{margin-left:-5.413333pt;}
._12_c00045{margin-left:-4.506667pt;}
._b_c00045{margin-left:-3.072000pt;}
._6_c00045{margin-left:-1.546667pt;}
._f_c00045{width:0.901333pt;}
._14_c00045{width:1.808000pt;}
._e_c00045{width:2.704000pt;}
._20_c00045{width:3.674667pt;}
._16_c00045{width:4.576000pt;}
._15_c00045{width:5.781333pt;}
._1a_c00045{width:6.770667pt;}
._17_c00045{width:8.064000pt;}
._c_c00045{width:9.045333pt;}
._1f_c00045{width:10.285333pt;}
._10_c00045{width:11.893333pt;}
._8_c00045{width:12.914667pt;}
._5_c00045{width:14.152000pt;}
._7_c00045{width:16.008000pt;}
._19_c00045{width:17.408000pt;}
._27_c00045{width:19.066667pt;}
._28_c00045{width:20.005333pt;}
._1b_c00045{width:21.466667pt;}
._d_c00045{width:22.613333pt;}
._29_c00045{width:23.629333pt;}
._18_c00045{width:24.645333pt;}
._45_c00045{width:25.738667pt;}
._13_c00045{width:26.762667pt;}
._26_c00045{width:27.850667pt;}
._22_c00045{width:29.280000pt;}
._24_c00045{width:31.392000pt;}
._44_c00045{width:32.336000pt;}
._1d_c00045{width:33.301333pt;}
._25_c00045{width:34.970667pt;}
._41_c00045{width:36.149333pt;}
._30_c00045{width:37.490667pt;}
._21_c00045{width:39.445333pt;}
._1c_c00045{width:41.296000pt;}
._42_c00045{width:42.485333pt;}
._39_c00045{width:43.392000pt;}
._2b_c00045{width:44.309333pt;}
._36_c00045{width:45.760000pt;}
._35_c00045{width:46.792000pt;}
._43_c00045{width:48.010667pt;}
._2d_c00045{width:51.536000pt;}
._38_c00045{width:55.424000pt;}
._2e_c00045{width:56.885333pt;}
._32_c00045{width:58.496000pt;}
._34_c00045{width:59.925333pt;}
._2f_c00045{width:61.088000pt;}
._2c_c00045{width:63.018667pt;}
._2a_c00045{width:74.333333pt;}
._33_c00045{width:81.290667pt;}
._37_c00045{width:91.885333pt;}
._3e_c00045{width:125.304000pt;}
._3a_c00045{width:133.386667pt;}
._1e_c00045{width:147.232000pt;}
._3f_c00045{width:176.416000pt;}
._40_c00045{width:206.690667pt;}
._3c_c00045{width:346.496000pt;}
._3d_c00045{width:615.106667pt;}
.fs5_c00045{font-size:42.666667pt;}
.fs2_c00045{font-size:69.333333pt;}
.fs0_c00045{font-size:77.333333pt;}
.fs1_c00045{font-size:85.333333pt;}
.fs3_c00045{font-size:128.000000pt;}
.fs4_c00045{font-size:149.333333pt;}
.y0_c00045{bottom:0.000000pt;}
.y36_c00045{bottom:2.760000pt;}
.y35_c00045{bottom:6.425206pt;}
.y34_c00045{bottom:96.693333pt;}
.y33_c00045{bottom:129.093333pt;}
.y18_c00045{bottom:133.226667pt;}
.y32_c00045{bottom:160.160000pt;}
.y17_c00045{bottom:160.293333pt;}
.y16_c00045{bottom:186.693333pt;}
.y31_c00045{bottom:190.293333pt;}
.y15_c00045{bottom:213.360000pt;}
.y30_c00045{bottom:220.560000pt;}
.y14_c00045{bottom:239.760000pt;}
.y2f_c00045{bottom:250.826667pt;}
.y13_c00045{bottom:266.426667pt;}
.y2e_c00045{bottom:281.093333pt;}
.y12_c00045{bottom:293.760000pt;}
.y2d_c00045{bottom:311.093333pt;}
.y11_c00045{bottom:320.160000pt;}
.y2c_c00045{bottom:341.093333pt;}
.y10_c00045{bottom:346.826667pt;}
.y2b_c00045{bottom:371.360000pt;}
.yf_c00045{bottom:372.693333pt;}
.ye_c00045{bottom:399.360000pt;}
.y2a_c00045{bottom:401.493333pt;}
.yd_c00045{bottom:425.760000pt;}
.y29_c00045{bottom:431.360000pt;}
.yc_c00045{bottom:452.693333pt;}
.y28_c00045{bottom:460.293333pt;}
.yb_c00045{bottom:478.826667pt;}
.y27_c00045{bottom:490.293333pt;}
.ya_c00045{bottom:505.493333pt;}
.y26_c00045{bottom:520.560000pt;}
.y9_c00045{bottom:531.626667pt;}
.y8_c00045{bottom:557.760000pt;}
.y25_c00045{bottom:579.626667pt;}
.y7_c00045{bottom:584.160000pt;}
.y6_c00045{bottom:610.160000pt;}
.y5_c00045{bottom:636.293333pt;}
.y24_c00045{bottom:644.426667pt;}
.y4_c00045{bottom:662.960000pt;}
.y3_c00045{bottom:687.893333pt;}
.y23_c00045{bottom:690.960000pt;}
.y2_c00045{bottom:714.693333pt;}
.y22_c00045{bottom:736.160000pt;}
.y21_c00045{bottom:780.693333pt;}
.y20_c00045{bottom:825.360000pt;}
.y1f_c00045{bottom:869.360000pt;}
.y1e_c00045{bottom:914.693333pt;}
.y1d_c00045{bottom:958.293333pt;}
.y1_c00045{bottom:990.693333pt;}
.y1c_c00045{bottom:1003.893333pt;}
.y1b_c00045{bottom:1048.560000pt;}
.y1a_c00045{bottom:1093.226667pt;}
.y19_c00045{bottom:1137.893333pt;}
.h7_c00045{height:11.733399pt;}
.h8_c00045{height:38.937500pt;}
.h5_c00045{height:81.148438pt;}
.h4_c00045{height:87.783854pt;}
.h2_c00045{height:97.912760pt;}
.h3_c00045{height:108.041667pt;}
.h6_c00045{height:162.062500pt;}
.h0_c00045{height:1229.066667pt;}
.h1_c00045{height:1229.333333pt;}
.w2_c00045{width:93.222667pt;}
.w0_c00045{width:767.266667pt;}
.w1_c00045{width:767.333333pt;}
.x0_c00045{left:0.000000pt;}
.x4_c00045{left:48.266667pt;}
.x1_c00045{left:49.466667pt;}
.x5_c00045{left:50.800000pt;}
.x3_c00045{left:76.266667pt;}
.x2_c00045{left:89.733333pt;}
.x6_c00045{left:245.600000pt;}
.x7_c00045{left:246.933333pt;}
.x9_c00045{left:248.400000pt;}
.x8_c00045{left:249.333333pt;}
.xb_c00045{left:251.333333pt;}
.xa_c00045{left:252.800000pt;}
.x11_c00045{left:254.133333pt;}
.xe_c00045{left:297.866667pt;}
.x13_c00045{left:340.801554pt;}
.xd_c00045{left:368.000000pt;}
.xf_c00045{left:376.533333pt;}
.x10_c00045{left:443.733333pt;}
.xc_c00045{left:457.733333pt;}
.x12_c00045{left:705.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c3c306736972a2c2f715ab0.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_114e9c6805864de60ce014e2.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls1_c00046{letter-spacing:0.000000px;}
.ls0_c00046{letter-spacing:4.752000px;}
.ls2_c00046{letter-spacing:27.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:-50.136000px;}
.ws1_c00046{word-spacing:0.000000px;}
._2f_c00046{margin-left:-16.512000px;}
._1a_c00046{margin-left:-13.824000px;}
._2b_c00046{margin-left:-11.040000px;}
._33_c00046{margin-left:-9.792000px;}
._29_c00046{margin-left:-8.448000px;}
._2a_c00046{margin-left:-7.392000px;}
._1b_c00046{margin-left:-6.240000px;}
._25_c00046{margin-left:-4.800000px;}
._1d_c00046{margin-left:-3.072000px;}
._b_c00046{margin-left:-1.632000px;}
._1_c00046{width:1.248000px;}
._0_c00046{width:2.592000px;}
._7_c00046{width:3.840000px;}
._3_c00046{width:5.184000px;}
._6_c00046{width:6.432000px;}
._f_c00046{width:7.872000px;}
._10_c00046{width:9.024000px;}
._9_c00046{width:10.944000px;}
._13_c00046{width:12.288000px;}
._5_c00046{width:13.440000px;}
._17_c00046{width:14.496000px;}
._a_c00046{width:15.648000px;}
._2_c00046{width:16.704000px;}
._16_c00046{width:18.144000px;}
._2c_c00046{width:19.488000px;}
._4_c00046{width:20.736000px;}
._34_c00046{width:21.792000px;}
._8_c00046{width:25.152000px;}
._32_c00046{width:26.304000px;}
._18_c00046{width:27.840000px;}
._24_c00046{width:30.048000px;}
._c_c00046{width:32.160000px;}
._26_c00046{width:33.888000px;}
._e_c00046{width:34.944000px;}
._d_c00046{width:36.768000px;}
._11_c00046{width:38.304000px;}
._12_c00046{width:39.360000px;}
._23_c00046{width:41.088000px;}
._1e_c00046{width:42.336000px;}
._2e_c00046{width:43.584000px;}
._15_c00046{width:44.736000px;}
._22_c00046{width:46.080000px;}
._1c_c00046{width:48.096000px;}
._20_c00046{width:49.920000px;}
._14_c00046{width:51.360000px;}
._21_c00046{width:53.472000px;}
._19_c00046{width:56.064000px;}
._2d_c00046{width:58.752000px;}
._30_c00046{width:60.864000px;}
._1f_c00046{width:65.088000px;}
._35_c00046{width:67.008000px;}
._28_c00046{width:68.568000px;}
._27_c00046{width:74.688000px;}
._31_c00046{width:116.448000px;}
._36_c00046{width:1996.512000px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(128,128,128);}
.fc0_c00046{color:rgb(0,0,0);}
.fs2_c00046{font-size:48.000000px;}
.fs1_c00046{font-size:84.000000px;}
.fs0_c00046{font-size:96.000000px;}
.y0_c00046{bottom:0.000000px;}
.y26_c00046{bottom:3.105000px;}
.y25_c00046{bottom:7.228369px;}
.y24_c00046{bottom:116.070000px;}
.y23_c00046{bottom:149.820000px;}
.y22_c00046{bottom:184.170000px;}
.y21_c00046{bottom:218.370000px;}
.y20_c00046{bottom:252.120000px;}
.y1f_c00046{bottom:286.170000px;}
.y1e_c00046{bottom:319.920000px;}
.y1d_c00046{bottom:353.070000px;}
.y1c_c00046{bottom:387.120000px;}
.y1b_c00046{bottom:420.420000px;}
.y1a_c00046{bottom:454.170000px;}
.y19_c00046{bottom:487.920000px;}
.y18_c00046{bottom:521.370000px;}
.y17_c00046{bottom:555.120000px;}
.y16_c00046{bottom:588.270000px;}
.y15_c00046{bottom:621.570000px;}
.y14_c00046{bottom:654.720000px;}
.y13_c00046{bottom:688.170000px;}
.y12_c00046{bottom:721.620000px;}
.y11_c00046{bottom:755.370000px;}
.y10_c00046{bottom:788.670000px;}
.yf_c00046{bottom:821.820000px;}
.ye_c00046{bottom:855.270000px;}
.yd_c00046{bottom:888.270000px;}
.yc_c00046{bottom:921.270000px;}
.yb_c00046{bottom:955.020000px;}
.ya_c00046{bottom:988.170000px;}
.y9_c00046{bottom:1021.620000px;}
.y8_c00046{bottom:1054.620000px;}
.y7_c00046{bottom:1088.370000px;}
.y6_c00046{bottom:1121.520000px;}
.y5_c00046{bottom:1154.820000px;}
.y4_c00046{bottom:1187.970000px;}
.y3_c00046{bottom:1220.970000px;}
.y2_c00046{bottom:1254.120000px;}
.y1_c00046{bottom:1287.270000px;}
.h3_c00046{height:13.200073px;}
.h4_c00046{height:43.804688px;}
.h2_c00046{height:121.546875px;}
.h0_c00046{height:1383.450000px;}
.h1_c00046{height:1383.750000px;}
.w2_c00046{width:104.875500px;}
.w0_c00046{width:878.025000px;}
.w1_c00046{width:878.250000px;}
.x0_c00046{left:0.000000px;}
.xc_c00046{left:30.600000px;}
.xb_c00046{left:31.650000px;}
.xa_c00046{left:34.350000px;}
.x9_c00046{left:36.000000px;}
.x8_c00046{left:37.050000px;}
.x7_c00046{left:38.100000px;}
.x6_c00046{left:39.750000px;}
.x5_c00046{left:40.800000px;}
.x4_c00046{left:41.850000px;}
.x3_c00046{left:42.900000px;}
.x2_c00046{left:44.100000px;}
.x1_c00046{left:46.200000px;}
.xd_c00046{left:390.826721px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls1_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:4.224000pt;}
.ls2_c00046{letter-spacing:24.000000pt;}
.ws0_c00046{word-spacing:-44.565333pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._2f_c00046{margin-left:-14.677333pt;}
._1a_c00046{margin-left:-12.288000pt;}
._2b_c00046{margin-left:-9.813333pt;}
._33_c00046{margin-left:-8.704000pt;}
._29_c00046{margin-left:-7.509333pt;}
._2a_c00046{margin-left:-6.570667pt;}
._1b_c00046{margin-left:-5.546667pt;}
._25_c00046{margin-left:-4.266667pt;}
._1d_c00046{margin-left:-2.730667pt;}
._b_c00046{margin-left:-1.450667pt;}
._1_c00046{width:1.109333pt;}
._0_c00046{width:2.304000pt;}
._7_c00046{width:3.413333pt;}
._3_c00046{width:4.608000pt;}
._6_c00046{width:5.717333pt;}
._f_c00046{width:6.997333pt;}
._10_c00046{width:8.021333pt;}
._9_c00046{width:9.728000pt;}
._13_c00046{width:10.922667pt;}
._5_c00046{width:11.946667pt;}
._17_c00046{width:12.885333pt;}
._a_c00046{width:13.909333pt;}
._2_c00046{width:14.848000pt;}
._16_c00046{width:16.128000pt;}
._2c_c00046{width:17.322667pt;}
._4_c00046{width:18.432000pt;}
._34_c00046{width:19.370667pt;}
._8_c00046{width:22.357333pt;}
._32_c00046{width:23.381333pt;}
._18_c00046{width:24.746667pt;}
._24_c00046{width:26.709333pt;}
._c_c00046{width:28.586667pt;}
._26_c00046{width:30.122667pt;}
._e_c00046{width:31.061333pt;}
._d_c00046{width:32.682667pt;}
._11_c00046{width:34.048000pt;}
._12_c00046{width:34.986667pt;}
._23_c00046{width:36.522667pt;}
._1e_c00046{width:37.632000pt;}
._2e_c00046{width:38.741333pt;}
._15_c00046{width:39.765333pt;}
._22_c00046{width:40.960000pt;}
._1c_c00046{width:42.752000pt;}
._20_c00046{width:44.373333pt;}
._14_c00046{width:45.653333pt;}
._21_c00046{width:47.530667pt;}
._19_c00046{width:49.834667pt;}
._2d_c00046{width:52.224000pt;}
._30_c00046{width:54.101333pt;}
._1f_c00046{width:57.856000pt;}
._35_c00046{width:59.562667pt;}
._28_c00046{width:60.949333pt;}
._27_c00046{width:66.389333pt;}
._31_c00046{width:103.509333pt;}
._36_c00046{width:1774.677333pt;}
.fs2_c00046{font-size:42.666667pt;}
.fs1_c00046{font-size:74.666667pt;}
.fs0_c00046{font-size:85.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y26_c00046{bottom:2.760000pt;}
.y25_c00046{bottom:6.425217pt;}
.y24_c00046{bottom:103.173333pt;}
.y23_c00046{bottom:133.173333pt;}
.y22_c00046{bottom:163.706667pt;}
.y21_c00046{bottom:194.106667pt;}
.y20_c00046{bottom:224.106667pt;}
.y1f_c00046{bottom:254.373333pt;}
.y1e_c00046{bottom:284.373333pt;}
.y1d_c00046{bottom:313.840000pt;}
.y1c_c00046{bottom:344.106667pt;}
.y1b_c00046{bottom:373.706667pt;}
.y1a_c00046{bottom:403.706667pt;}
.y19_c00046{bottom:433.706667pt;}
.y18_c00046{bottom:463.440000pt;}
.y17_c00046{bottom:493.440000pt;}
.y16_c00046{bottom:522.906667pt;}
.y15_c00046{bottom:552.506667pt;}
.y14_c00046{bottom:581.973333pt;}
.y13_c00046{bottom:611.706667pt;}
.y12_c00046{bottom:641.440000pt;}
.y11_c00046{bottom:671.440000pt;}
.y10_c00046{bottom:701.040000pt;}
.yf_c00046{bottom:730.506667pt;}
.ye_c00046{bottom:760.240000pt;}
.yd_c00046{bottom:789.573333pt;}
.yc_c00046{bottom:818.906667pt;}
.yb_c00046{bottom:848.906667pt;}
.ya_c00046{bottom:878.373333pt;}
.y9_c00046{bottom:908.106667pt;}
.y8_c00046{bottom:937.440000pt;}
.y7_c00046{bottom:967.440000pt;}
.y6_c00046{bottom:996.906667pt;}
.y5_c00046{bottom:1026.506667pt;}
.y4_c00046{bottom:1055.973333pt;}
.y3_c00046{bottom:1085.306667pt;}
.y2_c00046{bottom:1114.773333pt;}
.y1_c00046{bottom:1144.240000pt;}
.h3_c00046{height:11.733399pt;}
.h4_c00046{height:38.937500pt;}
.h2_c00046{height:108.041667pt;}
.h0_c00046{height:1229.733333pt;}
.h1_c00046{height:1230.000000pt;}
.w2_c00046{width:93.222667pt;}
.w0_c00046{width:780.466667pt;}
.w1_c00046{width:780.666667pt;}
.x0_c00046{left:0.000000pt;}
.xc_c00046{left:27.200000pt;}
.xb_c00046{left:28.133333pt;}
.xa_c00046{left:30.533333pt;}
.x9_c00046{left:32.000000pt;}
.x8_c00046{left:32.933333pt;}
.x7_c00046{left:33.866667pt;}
.x6_c00046{left:35.333333pt;}
.x5_c00046{left:36.266667pt;}
.x4_c00046{left:37.200000pt;}
.x3_c00046{left:38.133333pt;}
.x2_c00046{left:39.200000pt;}
.x1_c00046{left:41.066667pt;}
.xd_c00046{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6c117a47dc6703c52fc2bd8.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_7ba5c43bcc066403d630e876.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_a2ff0ac77936d4488b043a87.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_e00c6fb35378a71ce4840ee2.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_30c9b7b354fd20787d555dd1.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00047;src:url('chunks/assets/font_95b8ae19c9fe83e094020f25.woff2')format("woff");}.ff6_c00047{font-family:ff6_c00047;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00047;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00047{font-family:ff7_c00047;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00047{vertical-align:-32.400000px;}
.v0_c00047{vertical-align:0.000000px;}
.lsb_c00047{letter-spacing:-3.000000px;}
.lsa_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:4.164000px;}
.lsc_c00047{letter-spacing:6.000000px;}
.ls3_c00047{letter-spacing:6.552000px;}
.ls1_c00047{letter-spacing:11.784000px;}
.ls7_c00047{letter-spacing:12.900000px;}
.ls2_c00047{letter-spacing:22.833000px;}
.ls9_c00047{letter-spacing:53.664000px;}
.ls5_c00047{letter-spacing:70.833000px;}
.ls4_c00047{letter-spacing:81.633000px;}
.ls6_c00047{letter-spacing:111.633000px;}
.ls8_c00047{letter-spacing:591.633000px;}
.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:-57.000000px;}
.ws3_c00047{word-spacing:-23.136000px;}
.ws1_c00047{word-spacing:-18.798000px;}
.ws4_c00047{word-spacing:0.000000px;}
.ws0_c00047{word-spacing:0.588000px;}
._31_c00047{margin-left:-74.994000px;}
._34_c00047{margin-left:-22.755000px;}
._2d_c00047{margin-left:-21.558000px;}
._27_c00047{margin-left:-17.664000px;}
._33_c00047{margin-left:-16.008000px;}
._3e_c00047{margin-left:-13.074000px;}
._1f_c00047{margin-left:-11.616000px;}
._24_c00047{margin-left:-9.144000px;}
._22_c00047{margin-left:-6.960000px;}
._2e_c00047{margin-left:-5.832000px;}
._11_c00047{margin-left:-4.392000px;}
._8_c00047{margin-left:-2.976000px;}
._7_c00047{margin-left:-1.056000px;}
._1_c00047{width:1.536000px;}
._0_c00047{width:2.688000px;}
._5_c00047{width:3.840000px;}
._4_c00047{width:5.088000px;}
._a_c00047{width:6.528000px;}
._1a_c00047{width:7.584000px;}
._15_c00047{width:8.760000px;}
._2_c00047{width:10.560000px;}
._1d_c00047{width:12.192000px;}
._9_c00047{width:13.632000px;}
._16_c00047{width:15.072000px;}
._b_c00047{width:16.800000px;}
._c_c00047{width:18.816000px;}
._14_c00047{width:20.160000px;}
._17_c00047{width:21.768000px;}
._20_c00047{width:24.312000px;}
._13_c00047{width:26.208000px;}
._18_c00047{width:27.840000px;}
._12_c00047{width:29.664000px;}
._40_c00047{width:30.978000px;}
._6_c00047{width:32.448000px;}
._d_c00047{width:34.104000px;}
._3_c00047{width:36.480000px;}
._1b_c00047{width:38.208000px;}
._25_c00047{width:39.408000px;}
._e_c00047{width:40.776000px;}
._19_c00047{width:43.392000px;}
._10_c00047{width:46.080000px;}
._1c_c00047{width:47.712000px;}
._f_c00047{width:49.440000px;}
._1e_c00047{width:52.128000px;}
._28_c00047{width:54.576000px;}
._3b_c00047{width:60.084000px;}
._23_c00047{width:61.128000px;}
._29_c00047{width:62.808000px;}
._26_c00047{width:64.932000px;}
._2a_c00047{width:69.531000px;}
._2b_c00047{width:74.016000px;}
._37_c00047{width:86.424000px;}
._2c_c00047{width:105.834000px;}
._32_c00047{width:111.969000px;}
._38_c00047{width:151.725000px;}
._2f_c00047{width:178.800000px;}
._39_c00047{width:196.644000px;}
._35_c00047{width:241.251000px;}
._30_c00047{width:285.111000px;}
._21_c00047{width:536.640000px;}
._36_c00047{width:542.490000px;}
._3c_c00047{width:603.867000px;}
._3f_c00047{width:669.030000px;}
._3d_c00047{width:764.628000px;}
._3a_c00047{width:982.995000px;}
.fc2_c00047{color:transparent;}
.fc1_c00047{color:rgb(128,128,128);}
.fc0_c00047{color:rgb(0,0,0);}
.fs5_c00047{font-size:30.000000px;}
.fs8_c00047{font-size:48.000000px;}
.fs4_c00047{font-size:75.000000px;}
.fs2_c00047{font-size:78.000000px;}
.fs1_c00047{font-size:84.000000px;}
.fs3_c00047{font-size:87.000000px;}
.fs0_c00047{font-size:96.000000px;}
.fs6_c00047{font-size:102.000000px;}
.fs7_c00047{font-size:168.000000px;}
.y0_c00047{bottom:0.000000px;}
.y27_c00047{bottom:3.105000px;}
.y26_c00047{bottom:7.228357px;}
.y25_c00047{bottom:124.980000px;}
.y24_c00047{bottom:159.930000px;}
.y23_c00047{bottom:190.980000px;}
.y22_c00047{bottom:212.280000px;}
.y21_c00047{bottom:244.080000px;}
.y20_c00047{bottom:267.930000px;}
.y1f_c00047{bottom:303.480000px;}
.y1e_c00047{bottom:332.880000px;}
.y1d_c00047{bottom:364.830000px;}
.y1c_c00047{bottom:397.980000px;}
.y1b_c00047{bottom:430.680000px;}
.y1a_c00047{bottom:467.430000px;}
.y19_c00047{bottom:501.180000px;}
.y18_c00047{bottom:534.930000px;}
.y17_c00047{bottom:568.380000px;}
.y16_c00047{bottom:602.130000px;}
.y15_c00047{bottom:635.280000px;}
.y14_c00047{bottom:668.880000px;}
.y13_c00047{bottom:702.030000px;}
.y12_c00047{bottom:735.180000px;}
.y11_c00047{bottom:768.780000px;}
.y10_c00047{bottom:802.530000px;}
.yf_c00047{bottom:835.680000px;}
.ye_c00047{bottom:869.430000px;}
.yd_c00047{bottom:902.580000px;}
.yc_c00047{bottom:935.880000px;}
.yb_c00047{bottom:969.030000px;}
.ya_c00047{bottom:1001.730000px;}
.y9_c00047{bottom:1035.480000px;}
.y8_c00047{bottom:1068.180000px;}
.y7_c00047{bottom:1101.330000px;}
.y6_c00047{bottom:1134.630000px;}
.y5_c00047{bottom:1167.780000px;}
.y4_c00047{bottom:1201.530000px;}
.y3_c00047{bottom:1234.530000px;}
.y2_c00047{bottom:1267.380000px;}
.y1_c00047{bottom:1300.680000px;}
.h5_c00047{height:13.200074px;}
.h6_c00047{height:43.804688px;}
.h3_c00047{height:110.151855px;}
.h2_c00047{height:121.546875px;}
.h4_c00047{height:175.300781px;}
.h0_c00047{height:1382.700000px;}
.h1_c00047{height:1383.000000px;}
.w2_c00047{width:104.875500px;}
.w0_c00047{width:863.175000px;}
.w1_c00047{width:863.250000px;}
.x0_c00047{left:0.000000px;}
.xe_c00047{left:38.550000px;}
.xc_c00047{left:39.600000px;}
.xb_c00047{left:40.800000px;}
.xd_c00047{left:42.300000px;}
.xa_c00047{left:70.500000px;}
.x6_c00047{left:124.500000px;}
.x3_c00047{left:264.900000px;}
.x1_c00047{left:265.950000px;}
.x4_c00047{left:267.600000px;}
.x2_c00047{left:269.100000px;}
.x5_c00047{left:270.300000px;}
.x7_c00047{left:271.350000px;}
.x8_c00047{left:272.400000px;}
.x9_c00047{left:273.450000px;}
.x10_c00047{left:383.401749px;}
.xf_c00047{left:798.900000px;}
@media print{
.v1_c00047{vertical-align:-28.800000pt;}
.v0_c00047{vertical-align:0.000000pt;}
.lsb_c00047{letter-spacing:-2.666667pt;}
.lsa_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:3.701333pt;}
.lsc_c00047{letter-spacing:5.333333pt;}
.ls3_c00047{letter-spacing:5.824000pt;}
.ls1_c00047{letter-spacing:10.474667pt;}
.ls7_c00047{letter-spacing:11.466667pt;}
.ls2_c00047{letter-spacing:20.296000pt;}
.ls9_c00047{letter-spacing:47.701333pt;}
.ls5_c00047{letter-spacing:62.962667pt;}
.ls4_c00047{letter-spacing:72.562667pt;}
.ls6_c00047{letter-spacing:99.229333pt;}
.ls8_c00047{letter-spacing:525.896000pt;}
.ws2_c00047{word-spacing:-50.666667pt;}
.ws3_c00047{word-spacing:-20.565333pt;}
.ws1_c00047{word-spacing:-16.709333pt;}
.ws4_c00047{word-spacing:0.000000pt;}
.ws0_c00047{word-spacing:0.522667pt;}
._31_c00047{margin-left:-66.661333pt;}
._34_c00047{margin-left:-20.226667pt;}
._2d_c00047{margin-left:-19.162667pt;}
._27_c00047{margin-left:-15.701333pt;}
._33_c00047{margin-left:-14.229333pt;}
._3e_c00047{margin-left:-11.621333pt;}
._1f_c00047{margin-left:-10.325333pt;}
._24_c00047{margin-left:-8.128000pt;}
._22_c00047{margin-left:-6.186667pt;}
._2e_c00047{margin-left:-5.184000pt;}
._11_c00047{margin-left:-3.904000pt;}
._8_c00047{margin-left:-2.645333pt;}
._7_c00047{margin-left:-0.938667pt;}
._1_c00047{width:1.365333pt;}
._0_c00047{width:2.389333pt;}
._5_c00047{width:3.413333pt;}
._4_c00047{width:4.522667pt;}
._a_c00047{width:5.802667pt;}
._1a_c00047{width:6.741333pt;}
._15_c00047{width:7.786667pt;}
._2_c00047{width:9.386667pt;}
._1d_c00047{width:10.837333pt;}
._9_c00047{width:12.117333pt;}
._16_c00047{width:13.397333pt;}
._b_c00047{width:14.933333pt;}
._c_c00047{width:16.725333pt;}
._14_c00047{width:17.920000pt;}
._17_c00047{width:19.349333pt;}
._20_c00047{width:21.610667pt;}
._13_c00047{width:23.296000pt;}
._18_c00047{width:24.746667pt;}
._12_c00047{width:26.368000pt;}
._40_c00047{width:27.536000pt;}
._6_c00047{width:28.842667pt;}
._d_c00047{width:30.314667pt;}
._3_c00047{width:32.426667pt;}
._1b_c00047{width:33.962667pt;}
._25_c00047{width:35.029333pt;}
._e_c00047{width:36.245333pt;}
._19_c00047{width:38.570667pt;}
._10_c00047{width:40.960000pt;}
._1c_c00047{width:42.410667pt;}
._f_c00047{width:43.946667pt;}
._1e_c00047{width:46.336000pt;}
._28_c00047{width:48.512000pt;}
._3b_c00047{width:53.408000pt;}
._23_c00047{width:54.336000pt;}
._29_c00047{width:55.829333pt;}
._26_c00047{width:57.717333pt;}
._2a_c00047{width:61.805333pt;}
._2b_c00047{width:65.792000pt;}
._37_c00047{width:76.821333pt;}
._2c_c00047{width:94.074667pt;}
._32_c00047{width:99.528000pt;}
._38_c00047{width:134.866667pt;}
._2f_c00047{width:158.933333pt;}
._39_c00047{width:174.794667pt;}
._35_c00047{width:214.445333pt;}
._30_c00047{width:253.432000pt;}
._21_c00047{width:477.013333pt;}
._36_c00047{width:482.213333pt;}
._3c_c00047{width:536.770667pt;}
._3f_c00047{width:594.693333pt;}
._3d_c00047{width:679.669333pt;}
._3a_c00047{width:873.773333pt;}
.fs5_c00047{font-size:26.666667pt;}
.fs8_c00047{font-size:42.666667pt;}
.fs4_c00047{font-size:66.666667pt;}
.fs2_c00047{font-size:69.333333pt;}
.fs1_c00047{font-size:74.666667pt;}
.fs3_c00047{font-size:77.333333pt;}
.fs0_c00047{font-size:85.333333pt;}
.fs6_c00047{font-size:90.666667pt;}
.fs7_c00047{font-size:149.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y27_c00047{bottom:2.760000pt;}
.y26_c00047{bottom:6.425206pt;}
.y25_c00047{bottom:111.093333pt;}
.y24_c00047{bottom:142.160000pt;}
.y23_c00047{bottom:169.760000pt;}
.y22_c00047{bottom:188.693333pt;}
.y21_c00047{bottom:216.960000pt;}
.y20_c00047{bottom:238.160000pt;}
.y1f_c00047{bottom:269.760000pt;}
.y1e_c00047{bottom:295.893333pt;}
.y1d_c00047{bottom:324.293333pt;}
.y1c_c00047{bottom:353.760000pt;}
.y1b_c00047{bottom:382.826667pt;}
.y1a_c00047{bottom:415.493333pt;}
.y19_c00047{bottom:445.493333pt;}
.y18_c00047{bottom:475.493333pt;}
.y17_c00047{bottom:505.226667pt;}
.y16_c00047{bottom:535.226667pt;}
.y15_c00047{bottom:564.693333pt;}
.y14_c00047{bottom:594.560000pt;}
.y13_c00047{bottom:624.026667pt;}
.y12_c00047{bottom:653.493333pt;}
.y11_c00047{bottom:683.360000pt;}
.y10_c00047{bottom:713.360000pt;}
.yf_c00047{bottom:742.826667pt;}
.ye_c00047{bottom:772.826667pt;}
.yd_c00047{bottom:802.293333pt;}
.yc_c00047{bottom:831.893333pt;}
.yb_c00047{bottom:861.360000pt;}
.ya_c00047{bottom:890.426667pt;}
.y9_c00047{bottom:920.426667pt;}
.y8_c00047{bottom:949.493333pt;}
.y7_c00047{bottom:978.960000pt;}
.y6_c00047{bottom:1008.560000pt;}
.y5_c00047{bottom:1038.026667pt;}
.y4_c00047{bottom:1068.026667pt;}
.y3_c00047{bottom:1097.360000pt;}
.y2_c00047{bottom:1126.560000pt;}
.y1_c00047{bottom:1156.160000pt;}
.h5_c00047{height:11.733399pt;}
.h6_c00047{height:38.937500pt;}
.h3_c00047{height:97.912760pt;}
.h2_c00047{height:108.041667pt;}
.h4_c00047{height:155.822917pt;}
.h0_c00047{height:1229.066667pt;}
.h1_c00047{height:1229.333333pt;}
.w2_c00047{width:93.222667pt;}
.w0_c00047{width:767.266667pt;}
.w1_c00047{width:767.333333pt;}
.x0_c00047{left:0.000000pt;}
.xe_c00047{left:34.266667pt;}
.xc_c00047{left:35.200000pt;}
.xb_c00047{left:36.266667pt;}
.xd_c00047{left:37.600000pt;}
.xa_c00047{left:62.666667pt;}
.x6_c00047{left:110.666667pt;}
.x3_c00047{left:235.466667pt;}
.x1_c00047{left:236.400000pt;}
.x4_c00047{left:237.866667pt;}
.x2_c00047{left:239.200000pt;}
.x5_c00047{left:240.266667pt;}
.x7_c00047{left:241.200000pt;}
.x8_c00047{left:242.133333pt;}
.x9_c00047{left:243.066667pt;}
.x10_c00047{left:340.801554pt;}
.xf_c00047{left:710.133333pt;}
}





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

.ir_c00048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_27ed3a797916ec6bbd65df92.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_0e3d494179de79ece3b8a318.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_82522ba74ae394d43634d595.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_c413e7fdd6bef6100325ee5c.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{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_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.ls1_c00048{letter-spacing:6.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00048{word-spacing:-23.136000px;}
.ws0_c00048{word-spacing:-18.798000px;}
.ws1_c00048{word-spacing:-0.756000px;}
.ws3_c00048{word-spacing:0.000000px;}
._33_c00048{margin-left:-84.288000px;}
._1d_c00048{margin-left:-30.336000px;}
._26_c00048{margin-left:-27.936000px;}
._2b_c00048{margin-left:-22.368000px;}
._2a_c00048{margin-left:-16.608000px;}
._21_c00048{margin-left:-11.424000px;}
._28_c00048{margin-left:-10.176000px;}
._27_c00048{margin-left:-8.160000px;}
._25_c00048{margin-left:-7.104000px;}
._14_c00048{margin-left:-5.184000px;}
._f_c00048{margin-left:-3.264000px;}
._8_c00048{margin-left:-2.016000px;}
._0_c00048{width:1.920000px;}
._2_c00048{width:3.072000px;}
._6_c00048{width:4.320000px;}
._4_c00048{width:6.144000px;}
._5_c00048{width:7.488000px;}
._a_c00048{width:8.640000px;}
._9_c00048{width:10.272000px;}
._19_c00048{width:11.424000px;}
._e_c00048{width:12.576000px;}
._20_c00048{width:13.728000px;}
._16_c00048{width:14.784000px;}
._d_c00048{width:16.032000px;}
._1a_c00048{width:17.280000px;}
._12_c00048{width:18.816000px;}
._3_c00048{width:19.872000px;}
._17_c00048{width:21.504000px;}
._31_c00048{width:23.586000px;}
._10_c00048{width:24.960000px;}
._c_c00048{width:26.400000px;}
._15_c00048{width:27.456000px;}
._1c_c00048{width:29.280000px;}
._1_c00048{width:31.200000px;}
._22_c00048{width:32.256000px;}
._13_c00048{width:33.792000px;}
._11_c00048{width:35.520000px;}
._18_c00048{width:37.056000px;}
._1e_c00048{width:39.168000px;}
._b_c00048{width:40.896000px;}
._1f_c00048{width:43.008000px;}
._7_c00048{width:45.120000px;}
._24_c00048{width:49.056000px;}
._37_c00048{width:50.784000px;}
._1b_c00048{width:53.280000px;}
._2d_c00048{width:59.520000px;}
._35_c00048{width:61.632000px;}
._23_c00048{width:67.488000px;}
._32_c00048{width:116.427000px;}
._2e_c00048{width:138.720000px;}
._38_c00048{width:169.824000px;}
._29_c00048{width:183.168000px;}
._34_c00048{width:219.552000px;}
._2c_c00048{width:517.152000px;}
._30_c00048{width:614.901000px;}
._36_c00048{width:755.430000px;}
._39_c00048{width:901.632000px;}
._2f_c00048{width:1004.640000px;}
.fc2_c00048{color:transparent;}
.fc1_c00048{color:rgb(128,128,128);}
.fc0_c00048{color:rgb(0,0,0);}
.fs5_c00048{font-size:48.000000px;}
.fs3_c00048{font-size:66.000000px;}
.fs1_c00048{font-size:78.000000px;}
.fs4_c00048{font-size:84.000000px;}
.fs2_c00048{font-size:87.000000px;}
.fs0_c00048{font-size:96.000000px;}
.y0_c00048{bottom:0.000000px;}
.y26_c00048{bottom:3.105000px;}
.y25_c00048{bottom:7.228363px;}
.y24_c00048{bottom:63.900000px;}
.y23_c00048{bottom:97.500000px;}
.y22_c00048{bottom:130.200000px;}
.y21_c00048{bottom:162.600000px;}
.y20_c00048{bottom:199.050000px;}
.y1f_c00048{bottom:218.400000px;}
.y1e_c00048{bottom:248.400000px;}
.y1d_c00048{bottom:265.200000px;}
.y1c_c00048{bottom:333.900000px;}
.y1b_c00048{bottom:368.100000px;}
.y1a_c00048{bottom:401.850000px;}
.y19_c00048{bottom:434.700000px;}
.y18_c00048{bottom:468.450000px;}
.y17_c00048{bottom:501.450000px;}
.y16_c00048{bottom:535.350000px;}
.y15_c00048{bottom:568.650000px;}
.y14_c00048{bottom:601.200000px;}
.y13_c00048{bottom:634.200000px;}
.y12_c00048{bottom:668.250000px;}
.y11_c00048{bottom:702.000000px;}
.y10_c00048{bottom:735.150000px;}
.yf_c00048{bottom:768.150000px;}
.ye_c00048{bottom:801.000000px;}
.yd_c00048{bottom:834.150000px;}
.yc_c00048{bottom:867.450000px;}
.yb_c00048{bottom:900.750000px;}
.ya_c00048{bottom:933.900000px;}
.y9_c00048{bottom:967.050000px;}
.y8_c00048{bottom:1000.350000px;}
.y7_c00048{bottom:1033.800000px;}
.y6_c00048{bottom:1066.800000px;}
.y5_c00048{bottom:1099.950000px;}
.y4_c00048{bottom:1132.950000px;}
.y3_c00048{bottom:1165.800000px;}
.y2_c00048{bottom:1198.500000px;}
.y1_c00048{bottom:1231.950000px;}
.h5_c00048{height:13.200074px;}
.h6_c00048{height:43.804688px;}
.h4_c00048{height:100.608000px;}
.h3_c00048{height:110.151855px;}
.h2_c00048{height:121.546875px;}
.h1_c00048{height:1328.250000px;}
.h0_c00048{height:1328.400000px;}
.w2_c00048{width:104.875500px;}
.w0_c00048{width:842.925000px;}
.w1_c00048{width:843.000000px;}
.x0_c00048{left:0.000000px;}
.x7_c00048{left:23.400000px;}
.x4_c00048{left:28.350000px;}
.x5_c00048{left:29.400000px;}
.x6_c00048{left:30.600000px;}
.x3_c00048{left:32.700000px;}
.x2_c00048{left:33.750000px;}
.x1_c00048{left:36.000000px;}
.xb_c00048{left:37.050000px;}
.xc_c00048{left:38.700000px;}
.xd_c00048{left:51.600000px;}
.x8_c00048{left:164.700000px;}
.xe_c00048{left:231.900000px;}
.xa_c00048{left:343.500000px;}
.xf_c00048{left:373.276749px;}
.x9_c00048{left:617.400000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ls1_c00048{letter-spacing:5.333333pt;}
.ws2_c00048{word-spacing:-20.565333pt;}
.ws0_c00048{word-spacing:-16.709333pt;}
.ws1_c00048{word-spacing:-0.672000pt;}
.ws3_c00048{word-spacing:0.000000pt;}
._33_c00048{margin-left:-74.922667pt;}
._1d_c00048{margin-left:-26.965333pt;}
._26_c00048{margin-left:-24.832000pt;}
._2b_c00048{margin-left:-19.882667pt;}
._2a_c00048{margin-left:-14.762667pt;}
._21_c00048{margin-left:-10.154667pt;}
._28_c00048{margin-left:-9.045333pt;}
._27_c00048{margin-left:-7.253333pt;}
._25_c00048{margin-left:-6.314667pt;}
._14_c00048{margin-left:-4.608000pt;}
._f_c00048{margin-left:-2.901333pt;}
._8_c00048{margin-left:-1.792000pt;}
._0_c00048{width:1.706667pt;}
._2_c00048{width:2.730667pt;}
._6_c00048{width:3.840000pt;}
._4_c00048{width:5.461333pt;}
._5_c00048{width:6.656000pt;}
._a_c00048{width:7.680000pt;}
._9_c00048{width:9.130667pt;}
._19_c00048{width:10.154667pt;}
._e_c00048{width:11.178667pt;}
._20_c00048{width:12.202667pt;}
._16_c00048{width:13.141333pt;}
._d_c00048{width:14.250667pt;}
._1a_c00048{width:15.360000pt;}
._12_c00048{width:16.725333pt;}
._3_c00048{width:17.664000pt;}
._17_c00048{width:19.114667pt;}
._31_c00048{width:20.965333pt;}
._10_c00048{width:22.186667pt;}
._c_c00048{width:23.466667pt;}
._15_c00048{width:24.405333pt;}
._1c_c00048{width:26.026667pt;}
._1_c00048{width:27.733333pt;}
._22_c00048{width:28.672000pt;}
._13_c00048{width:30.037333pt;}
._11_c00048{width:31.573333pt;}
._18_c00048{width:32.938667pt;}
._1e_c00048{width:34.816000pt;}
._b_c00048{width:36.352000pt;}
._1f_c00048{width:38.229333pt;}
._7_c00048{width:40.106667pt;}
._24_c00048{width:43.605333pt;}
._37_c00048{width:45.141333pt;}
._1b_c00048{width:47.360000pt;}
._2d_c00048{width:52.906667pt;}
._35_c00048{width:54.784000pt;}
._23_c00048{width:59.989333pt;}
._32_c00048{width:103.490667pt;}
._2e_c00048{width:123.306667pt;}
._38_c00048{width:150.954667pt;}
._29_c00048{width:162.816000pt;}
._34_c00048{width:195.157333pt;}
._2c_c00048{width:459.690667pt;}
._30_c00048{width:546.578667pt;}
._36_c00048{width:671.493333pt;}
._39_c00048{width:801.450667pt;}
._2f_c00048{width:893.013333pt;}
.fs5_c00048{font-size:42.666667pt;}
.fs3_c00048{font-size:58.666667pt;}
.fs1_c00048{font-size:69.333333pt;}
.fs4_c00048{font-size:74.666667pt;}
.fs2_c00048{font-size:77.333333pt;}
.fs0_c00048{font-size:85.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y26_c00048{bottom:2.760000pt;}
.y25_c00048{bottom:6.425212pt;}
.y24_c00048{bottom:56.800000pt;}
.y23_c00048{bottom:86.666667pt;}
.y22_c00048{bottom:115.733333pt;}
.y21_c00048{bottom:144.533333pt;}
.y20_c00048{bottom:176.933333pt;}
.y1f_c00048{bottom:194.133333pt;}
.y1e_c00048{bottom:220.800000pt;}
.y1d_c00048{bottom:235.733333pt;}
.y1c_c00048{bottom:296.800000pt;}
.y1b_c00048{bottom:327.200000pt;}
.y1a_c00048{bottom:357.200000pt;}
.y19_c00048{bottom:386.400000pt;}
.y18_c00048{bottom:416.400000pt;}
.y17_c00048{bottom:445.733333pt;}
.y16_c00048{bottom:475.866667pt;}
.y15_c00048{bottom:505.466667pt;}
.y14_c00048{bottom:534.400000pt;}
.y13_c00048{bottom:563.733333pt;}
.y12_c00048{bottom:594.000000pt;}
.y11_c00048{bottom:624.000000pt;}
.y10_c00048{bottom:653.466667pt;}
.yf_c00048{bottom:682.800000pt;}
.ye_c00048{bottom:712.000000pt;}
.yd_c00048{bottom:741.466667pt;}
.yc_c00048{bottom:771.066667pt;}
.yb_c00048{bottom:800.666667pt;}
.ya_c00048{bottom:830.133333pt;}
.y9_c00048{bottom:859.600000pt;}
.y8_c00048{bottom:889.200000pt;}
.y7_c00048{bottom:918.933333pt;}
.y6_c00048{bottom:948.266667pt;}
.y5_c00048{bottom:977.733333pt;}
.y4_c00048{bottom:1007.066667pt;}
.y3_c00048{bottom:1036.266667pt;}
.y2_c00048{bottom:1065.333333pt;}
.y1_c00048{bottom:1095.066667pt;}
.h5_c00048{height:11.733399pt;}
.h6_c00048{height:38.937500pt;}
.h4_c00048{height:89.429333pt;}
.h3_c00048{height:97.912760pt;}
.h2_c00048{height:108.041667pt;}
.h1_c00048{height:1180.666667pt;}
.h0_c00048{height:1180.800000pt;}
.w2_c00048{width:93.222667pt;}
.w0_c00048{width:749.266667pt;}
.w1_c00048{width:749.333333pt;}
.x0_c00048{left:0.000000pt;}
.x7_c00048{left:20.800000pt;}
.x4_c00048{left:25.200000pt;}
.x5_c00048{left:26.133333pt;}
.x6_c00048{left:27.200000pt;}
.x3_c00048{left:29.066667pt;}
.x2_c00048{left:30.000000pt;}
.x1_c00048{left:32.000000pt;}
.xb_c00048{left:32.933333pt;}
.xc_c00048{left:34.400000pt;}
.xd_c00048{left:45.866667pt;}
.x8_c00048{left:146.400000pt;}
.xe_c00048{left:206.133333pt;}
.xa_c00048{left:305.333333pt;}
.xf_c00048{left:331.801554pt;}
.x9_c00048{left:548.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_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_a43cb8ad3b2f765c89f80256.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_b991e033706cce2a519df935.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_f3b2d1ebc8fb39d10bc960b2.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;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_c00049;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls5_c00049{letter-spacing:0.000000px;}
.ls4_c00049{letter-spacing:1.200000px;}
.ls0_c00049{letter-spacing:4.752000px;}
.ls6_c00049{letter-spacing:6.000000px;}
.ls3_c00049{letter-spacing:7.152000px;}
.ls2_c00049{letter-spacing:32.064000px;}
.ls1_c00049{letter-spacing:36.264000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:-63.504000px;}
.ws1_c00049{word-spacing:-57.000000px;}
.ws2_c00049{word-spacing:-24.000000px;}
.ws3_c00049{word-spacing:0.000000px;}
._3b_c00049{margin-left:-34.416000px;}
._38_c00049{margin-left:-30.144000px;}
._37_c00049{margin-left:-28.308000px;}
._3a_c00049{margin-left:-26.592000px;}
._31_c00049{margin-left:-24.000000px;}
._2e_c00049{margin-left:-16.608000px;}
._2c_c00049{margin-left:-15.456000px;}
._32_c00049{margin-left:-13.632000px;}
._2b_c00049{margin-left:-12.564000px;}
._34_c00049{margin-left:-11.436000px;}
._29_c00049{margin-left:-9.408000px;}
._c_c00049{margin-left:-7.296000px;}
._25_c00049{margin-left:-5.376000px;}
._b_c00049{margin-left:-4.128000px;}
._11_c00049{margin-left:-2.880000px;}
._20_c00049{margin-left:-1.824000px;}
._1_c00049{width:1.632000px;}
._0_c00049{width:3.360000px;}
._5_c00049{width:4.608000px;}
._8_c00049{width:6.144000px;}
._f_c00049{width:7.200000px;}
._7_c00049{width:8.832000px;}
._19_c00049{width:10.848000px;}
._1b_c00049{width:12.096000px;}
._16_c00049{width:13.728000px;}
._1e_c00049{width:15.648000px;}
._17_c00049{width:17.568000px;}
._1a_c00049{width:19.104000px;}
._18_c00049{width:20.448000px;}
._39_c00049{width:21.660000px;}
._2f_c00049{width:24.384000px;}
._35_c00049{width:26.100000px;}
._24_c00049{width:27.744000px;}
._22_c00049{width:29.376000px;}
._33_c00049{width:31.128000px;}
._3_c00049{width:32.256000px;}
._1c_c00049{width:34.068000px;}
._2a_c00049{width:35.424000px;}
._23_c00049{width:36.768000px;}
._1d_c00049{width:38.208000px;}
._28_c00049{width:39.264000px;}
._d_c00049{width:40.800000px;}
._2_c00049{width:42.912000px;}
._21_c00049{width:44.928000px;}
._30_c00049{width:45.984000px;}
._4_c00049{width:47.616000px;}
._1f_c00049{width:48.672000px;}
._a_c00049{width:51.936000px;}
._e_c00049{width:53.376000px;}
._36_c00049{width:54.648000px;}
._2d_c00049{width:56.064000px;}
._6_c00049{width:58.464000px;}
._15_c00049{width:59.472000px;}
._14_c00049{width:61.920000px;}
._26_c00049{width:62.988000px;}
._10_c00049{width:67.776000px;}
._13_c00049{width:69.216000px;}
._27_c00049{width:73.728000px;}
._9_c00049{width:75.168000px;}
._12_c00049{width:82.848000px;}
.fc2_c00049{color:transparent;}
.fc1_c00049{color:rgb(128,128,128);}
.fc0_c00049{color:rgb(0,0,0);}
.fs4_c00049{font-size:48.000000px;}
.fs1_c00049{font-size:60.000000px;}
.fs2_c00049{font-size:84.000000px;}
.fs0_c00049{font-size:96.000000px;}
.fs3_c00049{font-size:102.000000px;}
.y0_c00049{bottom:0.000000px;}
.y26_c00049{bottom:3.105000px;}
.y25_c00049{bottom:7.228355px;}
.y24_c00049{bottom:69.735000px;}
.y23_c00049{bottom:107.685000px;}
.y22_c00049{bottom:142.335000px;}
.y21_c00049{bottom:174.435000px;}
.y20_c00049{bottom:210.135000px;}
.y1f_c00049{bottom:244.035000px;}
.y1e_c00049{bottom:278.685000px;}
.y1d_c00049{bottom:312.135000px;}
.y1c_c00049{bottom:345.285000px;}
.y1b_c00049{bottom:379.335000px;}
.y1a_c00049{bottom:413.385000px;}
.y19_c00049{bottom:446.835000px;}
.y18_c00049{bottom:481.185000px;}
.y17_c00049{bottom:514.935000px;}
.y16_c00049{bottom:548.985000px;}
.y15_c00049{bottom:582.135000px;}
.y14_c00049{bottom:616.185000px;}
.y13_c00049{bottom:649.035000px;}
.y12_c00049{bottom:682.785000px;}
.y11_c00049{bottom:715.785000px;}
.y10_c00049{bottom:749.535000px;}
.yf_c00049{bottom:782.985000px;}
.ye_c00049{bottom:816.285000px;}
.yd_c00049{bottom:850.035000px;}
.yc_c00049{bottom:882.885000px;}
.yb_c00049{bottom:915.885000px;}
.ya_c00049{bottom:948.585000px;}
.y9_c00049{bottom:981.735000px;}
.y8_c00049{bottom:1015.185000px;}
.y7_c00049{bottom:1048.485000px;}
.y6_c00049{bottom:1081.935000px;}
.y5_c00049{bottom:1114.785000px;}
.y4_c00049{bottom:1147.785000px;}
.y3_c00049{bottom:1180.935000px;}
.y2_c00049{bottom:1214.535000px;}
.y1_c00049{bottom:1247.085000px;}
.h4_c00049{height:13.200074px;}
.h5_c00049{height:43.804688px;}
.h3_c00049{height:100.608000px;}
.h2_c00049{height:121.546875px;}
.h1_c00049{height:1366.500000px;}
.h0_c00049{height:1366.725000px;}
.w2_c00049{width:104.875500px;}
.w0_c00049{width:852.675000px;}
.w1_c00049{width:852.750000px;}
.x0_c00049{left:0.000000px;}
.x2_c00049{left:274.650000px;}
.x1_c00049{left:276.750000px;}
.x4_c00049{left:277.800000px;}
.x6_c00049{left:279.000000px;}
.x3_c00049{left:280.050000px;}
.x5_c00049{left:281.700000px;}
.x9_c00049{left:283.200000px;}
.xa_c00049{left:284.400000px;}
.x8_c00049{left:305.400000px;}
.x7_c00049{left:330.750000px;}
.xc_c00049{left:378.151749px;}
.xb_c00049{left:802.800000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls5_c00049{letter-spacing:0.000000pt;}
.ls4_c00049{letter-spacing:1.066667pt;}
.ls0_c00049{letter-spacing:4.224000pt;}
.ls6_c00049{letter-spacing:5.333333pt;}
.ls3_c00049{letter-spacing:6.357333pt;}
.ls2_c00049{letter-spacing:28.501333pt;}
.ls1_c00049{letter-spacing:32.234667pt;}
.ws0_c00049{word-spacing:-56.448000pt;}
.ws1_c00049{word-spacing:-50.666667pt;}
.ws2_c00049{word-spacing:-21.333333pt;}
.ws3_c00049{word-spacing:0.000000pt;}
._3b_c00049{margin-left:-30.592000pt;}
._38_c00049{margin-left:-26.794667pt;}
._37_c00049{margin-left:-25.162667pt;}
._3a_c00049{margin-left:-23.637333pt;}
._31_c00049{margin-left:-21.333333pt;}
._2e_c00049{margin-left:-14.762667pt;}
._2c_c00049{margin-left:-13.738667pt;}
._32_c00049{margin-left:-12.117333pt;}
._2b_c00049{margin-left:-11.168000pt;}
._34_c00049{margin-left:-10.165333pt;}
._29_c00049{margin-left:-8.362667pt;}
._c_c00049{margin-left:-6.485333pt;}
._25_c00049{margin-left:-4.778667pt;}
._b_c00049{margin-left:-3.669333pt;}
._11_c00049{margin-left:-2.560000pt;}
._20_c00049{margin-left:-1.621333pt;}
._1_c00049{width:1.450667pt;}
._0_c00049{width:2.986667pt;}
._5_c00049{width:4.096000pt;}
._8_c00049{width:5.461333pt;}
._f_c00049{width:6.400000pt;}
._7_c00049{width:7.850667pt;}
._19_c00049{width:9.642667pt;}
._1b_c00049{width:10.752000pt;}
._16_c00049{width:12.202667pt;}
._1e_c00049{width:13.909333pt;}
._17_c00049{width:15.616000pt;}
._1a_c00049{width:16.981333pt;}
._18_c00049{width:18.176000pt;}
._39_c00049{width:19.253333pt;}
._2f_c00049{width:21.674667pt;}
._35_c00049{width:23.200000pt;}
._24_c00049{width:24.661333pt;}
._22_c00049{width:26.112000pt;}
._33_c00049{width:27.669333pt;}
._3_c00049{width:28.672000pt;}
._1c_c00049{width:30.282667pt;}
._2a_c00049{width:31.488000pt;}
._23_c00049{width:32.682667pt;}
._1d_c00049{width:33.962667pt;}
._28_c00049{width:34.901333pt;}
._d_c00049{width:36.266667pt;}
._2_c00049{width:38.144000pt;}
._21_c00049{width:39.936000pt;}
._30_c00049{width:40.874667pt;}
._4_c00049{width:42.325333pt;}
._1f_c00049{width:43.264000pt;}
._a_c00049{width:46.165333pt;}
._e_c00049{width:47.445333pt;}
._36_c00049{width:48.576000pt;}
._2d_c00049{width:49.834667pt;}
._6_c00049{width:51.968000pt;}
._15_c00049{width:52.864000pt;}
._14_c00049{width:55.040000pt;}
._26_c00049{width:55.989333pt;}
._10_c00049{width:60.245333pt;}
._13_c00049{width:61.525333pt;}
._27_c00049{width:65.536000pt;}
._9_c00049{width:66.816000pt;}
._12_c00049{width:73.642667pt;}
.fs4_c00049{font-size:42.666667pt;}
.fs1_c00049{font-size:53.333333pt;}
.fs2_c00049{font-size:74.666667pt;}
.fs0_c00049{font-size:85.333333pt;}
.fs3_c00049{font-size:90.666667pt;}
.y0_c00049{bottom:0.000000pt;}
.y26_c00049{bottom:2.760000pt;}
.y25_c00049{bottom:6.425204pt;}
.y24_c00049{bottom:61.986667pt;}
.y23_c00049{bottom:95.720000pt;}
.y22_c00049{bottom:126.520000pt;}
.y21_c00049{bottom:155.053333pt;}
.y20_c00049{bottom:186.786667pt;}
.y1f_c00049{bottom:216.920000pt;}
.y1e_c00049{bottom:247.720000pt;}
.y1d_c00049{bottom:277.453333pt;}
.y1c_c00049{bottom:306.920000pt;}
.y1b_c00049{bottom:337.186667pt;}
.y1a_c00049{bottom:367.453333pt;}
.y19_c00049{bottom:397.186667pt;}
.y18_c00049{bottom:427.720000pt;}
.y17_c00049{bottom:457.720000pt;}
.y16_c00049{bottom:487.986667pt;}
.y15_c00049{bottom:517.453333pt;}
.y14_c00049{bottom:547.720000pt;}
.y13_c00049{bottom:576.920000pt;}
.y12_c00049{bottom:606.920000pt;}
.y11_c00049{bottom:636.253333pt;}
.y10_c00049{bottom:666.253333pt;}
.yf_c00049{bottom:695.986667pt;}
.ye_c00049{bottom:725.586667pt;}
.yd_c00049{bottom:755.586667pt;}
.yc_c00049{bottom:784.786667pt;}
.yb_c00049{bottom:814.120000pt;}
.ya_c00049{bottom:843.186667pt;}
.y9_c00049{bottom:872.653333pt;}
.y8_c00049{bottom:902.386667pt;}
.y7_c00049{bottom:931.986667pt;}
.y6_c00049{bottom:961.720000pt;}
.y5_c00049{bottom:990.920000pt;}
.y4_c00049{bottom:1020.253333pt;}
.y3_c00049{bottom:1049.720000pt;}
.y2_c00049{bottom:1079.586667pt;}
.y1_c00049{bottom:1108.520000pt;}
.h4_c00049{height:11.733399pt;}
.h5_c00049{height:38.937500pt;}
.h3_c00049{height:89.429333pt;}
.h2_c00049{height:108.041667pt;}
.h1_c00049{height:1214.666667pt;}
.h0_c00049{height:1214.866667pt;}
.w2_c00049{width:93.222667pt;}
.w0_c00049{width:757.933333pt;}
.w1_c00049{width:758.000000pt;}
.x0_c00049{left:0.000000pt;}
.x2_c00049{left:244.133333pt;}
.x1_c00049{left:246.000000pt;}
.x4_c00049{left:246.933333pt;}
.x6_c00049{left:248.000000pt;}
.x3_c00049{left:248.933333pt;}
.x5_c00049{left:250.400000pt;}
.x9_c00049{left:251.733333pt;}
.xa_c00049{left:252.800000pt;}
.x8_c00049{left:271.466667pt;}
.x7_c00049{left:294.000000pt;}
.xc_c00049{left:336.134888pt;}
.xb_c00049{left:713.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_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_705674b703510f97637cc7cd.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_0e919db12b9db29a98a08795.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_795ed1abd36d1bc4216d6836.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_15cfe975e425277ebfa2add3.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00050;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls2_c00050{letter-spacing:0.000000px;}
.ls1_c00050{letter-spacing:3.552000px;}
.ls0_c00050{letter-spacing:17.100000px;}
.ls3_c00050{letter-spacing:21.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00050{word-spacing:-76.038000px;}
.ws3_c00050{word-spacing:-23.136000px;}
.ws0_c00050{word-spacing:-20.244000px;}
.ws1_c00050{word-spacing:-1.344000px;}
.ws4_c00050{word-spacing:0.000000px;}
._31_c00050{margin-left:-53.865000px;}
._2f_c00050{margin-left:-52.500000px;}
._37_c00050{margin-left:-38.400000px;}
._21_c00050{margin-left:-34.752000px;}
._3a_c00050{margin-left:-29.313000px;}
._3b_c00050{margin-left:-26.040000px;}
._46_c00050{margin-left:-23.892000px;}
._43_c00050{margin-left:-21.336000px;}
._34_c00050{margin-left:-19.845000px;}
._33_c00050{margin-left:-18.480000px;}
._41_c00050{margin-left:-16.488000px;}
._35_c00050{margin-left:-14.175000px;}
._15_c00050{margin-left:-12.480000px;}
._16_c00050{margin-left:-11.232000px;}
._17_c00050{margin-left:-9.792000px;}
._28_c00050{margin-left:-8.088000px;}
._22_c00050{margin-left:-6.192000px;}
._23_c00050{margin-left:-5.124000px;}
._a_c00050{margin-left:-3.648000px;}
._d_c00050{margin-left:-2.592000px;}
._0_c00050{margin-left:-1.248000px;}
._2_c00050{width:1.152000px;}
._4_c00050{width:2.496000px;}
._8_c00050{width:3.936000px;}
._c_c00050{width:5.376000px;}
._7_c00050{width:7.392000px;}
._b_c00050{width:8.448000px;}
._18_c00050{width:10.080000px;}
._1b_c00050{width:11.712000px;}
._14_c00050{width:13.248000px;}
._19_c00050{width:15.168000px;}
._42_c00050{width:16.320000px;}
._13_c00050{width:17.376000px;}
._1_c00050{width:18.432000px;}
._24_c00050{width:19.584000px;}
._1e_c00050{width:21.120000px;}
._29_c00050{width:23.352000px;}
._12_c00050{width:25.440000px;}
._26_c00050{width:26.916000px;}
._1f_c00050{width:28.128000px;}
._6_c00050{width:30.528000px;}
._3_c00050{width:32.256000px;}
._f_c00050{width:33.600000px;}
._10_c00050{width:34.656000px;}
._3c_c00050{width:35.868000px;}
._5_c00050{width:37.152000px;}
._9_c00050{width:38.592000px;}
._40_c00050{width:40.128000px;}
._1d_c00050{width:41.280000px;}
._e_c00050{width:42.912000px;}
._11_c00050{width:45.216000px;}
._2b_c00050{width:47.424000px;}
._3f_c00050{width:49.440000px;}
._2e_c00050{width:52.128000px;}
._2c_c00050{width:54.336000px;}
._47_c00050{width:55.872000px;}
._30_c00050{width:57.855000px;}
._48_c00050{width:75.264000px;}
._45_c00050{width:82.080000px;}
._1a_c00050{width:94.944000px;}
._25_c00050{width:108.084000px;}
._2a_c00050{width:119.280000px;}
._2d_c00050{width:121.932000px;}
._20_c00050{width:144.480000px;}
._32_c00050{width:171.480000px;}
._1c_c00050{width:177.312000px;}
._3e_c00050{width:191.520000px;}
._36_c00050{width:201.975000px;}
._27_c00050{width:211.536000px;}
._44_c00050{width:265.983000px;}
._3d_c00050{width:671.052000px;}
._38_c00050{width:784.140000px;}
._39_c00050{width:1092.870000px;}
.fc2_c00050{color:transparent;}
.fc1_c00050{color:rgb(128,128,128);}
.fc0_c00050{color:rgb(0,0,0);}
.fs7_c00050{font-size:48.000000px;}
.fs1_c00050{font-size:78.000000px;}
.fs3_c00050{font-size:84.000000px;}
.fs0_c00050{font-size:87.000000px;}
.fs6_c00050{font-size:93.000000px;}
.fs2_c00050{font-size:96.000000px;}
.fs4_c00050{font-size:105.000000px;}
.fs5_c00050{font-size:114.000000px;}
.y0_c00050{bottom:0.000000px;}
.y26_c00050{bottom:3.105000px;}
.y25_c00050{bottom:7.228369px;}
.y24_c00050{bottom:111.270000px;}
.y23_c00050{bottom:142.020000px;}
.y22_c00050{bottom:176.220000px;}
.y21_c00050{bottom:209.970000px;}
.y20_c00050{bottom:244.020000px;}
.y1f_c00050{bottom:277.470000px;}
.y1e_c00050{bottom:311.220000px;}
.y1d_c00050{bottom:344.520000px;}
.y1c_c00050{bottom:378.270000px;}
.y1b_c00050{bottom:412.470000px;}
.y1a_c00050{bottom:444.870000px;}
.y19_c00050{bottom:479.820000px;}
.y18_c00050{bottom:511.620000px;}
.y17_c00050{bottom:545.070000px;}
.y16_c00050{bottom:579.120000px;}
.y15_c00050{bottom:612.270000px;}
.y14_c00050{bottom:647.220000px;}
.y13_c00050{bottom:679.320000px;}
.y12_c00050{bottom:712.020000px;}
.y11_c00050{bottom:744.570000px;}
.y10_c00050{bottom:763.470000px;}
.yf_c00050{bottom:779.520000px;}
.ye_c00050{bottom:814.770000px;}
.yd_c00050{bottom:847.470000px;}
.yc_c00050{bottom:879.570000px;}
.yb_c00050{bottom:911.220000px;}
.ya_c00050{bottom:943.620000px;}
.y9_c00050{bottom:977.070000px;}
.y8_c00050{bottom:1011.420000px;}
.y7_c00050{bottom:1048.620000px;}
.y6_c00050{bottom:1111.020000px;}
.y5_c00050{bottom:1177.470000px;}
.y4_c00050{bottom:1211.520000px;}
.y3_c00050{bottom:1244.070000px;}
.y2_c00050{bottom:1277.370000px;}
.y1_c00050{bottom:1310.520000px;}
.h5_c00050{height:13.200073px;}
.h6_c00050{height:43.804688px;}
.h2_c00050{height:91.291992px;}
.h3_c00050{height:121.546875px;}
.h4_c00050{height:132.941895px;}
.h0_c00050{height:1383.450000px;}
.h1_c00050{height:1383.750000px;}
.w2_c00050{width:104.875500px;}
.w0_c00050{width:878.025000px;}
.w1_c00050{width:878.250000px;}
.x0_c00050{left:0.000000px;}
.x10_c00050{left:12.150000px;}
.xd_c00050{left:17.550000px;}
.xc_c00050{left:20.850000px;}
.xb_c00050{left:21.900000px;}
.xa_c00050{left:23.550000px;}
.x9_c00050{left:25.200000px;}
.x8_c00050{left:27.300000px;}
.x7_c00050{left:28.350000px;}
.xe_c00050{left:29.400000px;}
.xf_c00050{left:30.600000px;}
.x4_c00050{left:32.100000px;}
.x3_c00050{left:33.150000px;}
.x2_c00050{left:35.400000px;}
.x6_c00050{left:80.700000px;}
.x5_c00050{left:156.900000px;}
.x12_c00050{left:390.826721px;}
.x1_c00050{left:525.150000px;}
.x11_c00050{left:559.200000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls2_c00050{letter-spacing:0.000000pt;}
.ls1_c00050{letter-spacing:3.157333pt;}
.ls0_c00050{letter-spacing:15.200000pt;}
.ls3_c00050{letter-spacing:18.666667pt;}
.ws2_c00050{word-spacing:-67.589333pt;}
.ws3_c00050{word-spacing:-20.565333pt;}
.ws0_c00050{word-spacing:-17.994667pt;}
.ws1_c00050{word-spacing:-1.194667pt;}
.ws4_c00050{word-spacing:0.000000pt;}
._31_c00050{margin-left:-47.880000pt;}
._2f_c00050{margin-left:-46.666667pt;}
._37_c00050{margin-left:-34.133333pt;}
._21_c00050{margin-left:-30.890667pt;}
._3a_c00050{margin-left:-26.056000pt;}
._3b_c00050{margin-left:-23.146667pt;}
._46_c00050{margin-left:-21.237333pt;}
._43_c00050{margin-left:-18.965333pt;}
._34_c00050{margin-left:-17.640000pt;}
._33_c00050{margin-left:-16.426667pt;}
._41_c00050{margin-left:-14.656000pt;}
._35_c00050{margin-left:-12.600000pt;}
._15_c00050{margin-left:-11.093333pt;}
._16_c00050{margin-left:-9.984000pt;}
._17_c00050{margin-left:-8.704000pt;}
._28_c00050{margin-left:-7.189333pt;}
._22_c00050{margin-left:-5.504000pt;}
._23_c00050{margin-left:-4.554667pt;}
._a_c00050{margin-left:-3.242667pt;}
._d_c00050{margin-left:-2.304000pt;}
._0_c00050{margin-left:-1.109333pt;}
._2_c00050{width:1.024000pt;}
._4_c00050{width:2.218667pt;}
._8_c00050{width:3.498667pt;}
._c_c00050{width:4.778667pt;}
._7_c00050{width:6.570667pt;}
._b_c00050{width:7.509333pt;}
._18_c00050{width:8.960000pt;}
._1b_c00050{width:10.410667pt;}
._14_c00050{width:11.776000pt;}
._19_c00050{width:13.482667pt;}
._42_c00050{width:14.506667pt;}
._13_c00050{width:15.445333pt;}
._1_c00050{width:16.384000pt;}
._24_c00050{width:17.408000pt;}
._1e_c00050{width:18.773333pt;}
._29_c00050{width:20.757333pt;}
._12_c00050{width:22.613333pt;}
._26_c00050{width:23.925333pt;}
._1f_c00050{width:25.002667pt;}
._6_c00050{width:27.136000pt;}
._3_c00050{width:28.672000pt;}
._f_c00050{width:29.866667pt;}
._10_c00050{width:30.805333pt;}
._3c_c00050{width:31.882667pt;}
._5_c00050{width:33.024000pt;}
._9_c00050{width:34.304000pt;}
._40_c00050{width:35.669333pt;}
._1d_c00050{width:36.693333pt;}
._e_c00050{width:38.144000pt;}
._11_c00050{width:40.192000pt;}
._2b_c00050{width:42.154667pt;}
._3f_c00050{width:43.946667pt;}
._2e_c00050{width:46.336000pt;}
._2c_c00050{width:48.298667pt;}
._47_c00050{width:49.664000pt;}
._30_c00050{width:51.426667pt;}
._48_c00050{width:66.901333pt;}
._45_c00050{width:72.960000pt;}
._1a_c00050{width:84.394667pt;}
._25_c00050{width:96.074667pt;}
._2a_c00050{width:106.026667pt;}
._2d_c00050{width:108.384000pt;}
._20_c00050{width:128.426667pt;}
._32_c00050{width:152.426667pt;}
._1c_c00050{width:157.610667pt;}
._3e_c00050{width:170.240000pt;}
._36_c00050{width:179.533333pt;}
._27_c00050{width:188.032000pt;}
._44_c00050{width:236.429333pt;}
._3d_c00050{width:596.490667pt;}
._38_c00050{width:697.013333pt;}
._39_c00050{width:971.440000pt;}
.fs7_c00050{font-size:42.666667pt;}
.fs1_c00050{font-size:69.333333pt;}
.fs3_c00050{font-size:74.666667pt;}
.fs0_c00050{font-size:77.333333pt;}
.fs6_c00050{font-size:82.666667pt;}
.fs2_c00050{font-size:85.333333pt;}
.fs4_c00050{font-size:93.333333pt;}
.fs5_c00050{font-size:101.333333pt;}
.y0_c00050{bottom:0.000000pt;}
.y26_c00050{bottom:2.760000pt;}
.y25_c00050{bottom:6.425217pt;}
.y24_c00050{bottom:98.906667pt;}
.y23_c00050{bottom:126.240000pt;}
.y22_c00050{bottom:156.640000pt;}
.y21_c00050{bottom:186.640000pt;}
.y20_c00050{bottom:216.906667pt;}
.y1f_c00050{bottom:246.640000pt;}
.y1e_c00050{bottom:276.640000pt;}
.y1d_c00050{bottom:306.240000pt;}
.y1c_c00050{bottom:336.240000pt;}
.y1b_c00050{bottom:366.640000pt;}
.y1a_c00050{bottom:395.440000pt;}
.y19_c00050{bottom:426.506667pt;}
.y18_c00050{bottom:454.773333pt;}
.y17_c00050{bottom:484.506667pt;}
.y16_c00050{bottom:514.773333pt;}
.y15_c00050{bottom:544.240000pt;}
.y14_c00050{bottom:575.306667pt;}
.y13_c00050{bottom:603.840000pt;}
.y12_c00050{bottom:632.906667pt;}
.y11_c00050{bottom:661.840000pt;}
.y10_c00050{bottom:678.640000pt;}
.yf_c00050{bottom:692.906667pt;}
.ye_c00050{bottom:724.240000pt;}
.yd_c00050{bottom:753.306667pt;}
.yc_c00050{bottom:781.840000pt;}
.yb_c00050{bottom:809.973333pt;}
.ya_c00050{bottom:838.773333pt;}
.y9_c00050{bottom:868.506667pt;}
.y8_c00050{bottom:899.040000pt;}
.y7_c00050{bottom:932.106667pt;}
.y6_c00050{bottom:987.573333pt;}
.y5_c00050{bottom:1046.640000pt;}
.y4_c00050{bottom:1076.906667pt;}
.y3_c00050{bottom:1105.840000pt;}
.y2_c00050{bottom:1135.440000pt;}
.y1_c00050{bottom:1164.906667pt;}
.h5_c00050{height:11.733399pt;}
.h6_c00050{height:38.937500pt;}
.h2_c00050{height:81.148438pt;}
.h3_c00050{height:108.041667pt;}
.h4_c00050{height:118.170573pt;}
.h0_c00050{height:1229.733333pt;}
.h1_c00050{height:1230.000000pt;}
.w2_c00050{width:93.222667pt;}
.w0_c00050{width:780.466667pt;}
.w1_c00050{width:780.666667pt;}
.x0_c00050{left:0.000000pt;}
.x10_c00050{left:10.800000pt;}
.xd_c00050{left:15.600000pt;}
.xc_c00050{left:18.533333pt;}
.xb_c00050{left:19.466667pt;}
.xa_c00050{left:20.933333pt;}
.x9_c00050{left:22.400000pt;}
.x8_c00050{left:24.266667pt;}
.x7_c00050{left:25.200000pt;}
.xe_c00050{left:26.133333pt;}
.xf_c00050{left:27.200000pt;}
.x4_c00050{left:28.533333pt;}
.x3_c00050{left:29.466667pt;}
.x2_c00050{left:31.466667pt;}
.x6_c00050{left:71.733333pt;}
.x5_c00050{left:139.466667pt;}
.x12_c00050{left:347.401530pt;}
.x1_c00050{left:466.800000pt;}
.x11_c00050{left:497.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_40d94e8f47322f7ab707c14a.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_be3e8cc2208998286f716847.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_e11330836485d48c83190059.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00051;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls4_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:0.876000px;}
.ls2_c00051{letter-spacing:2.352000px;}
.ls3_c00051{letter-spacing:3.552000px;}
.ls5_c00051{letter-spacing:6.000000px;}
.ls1_c00051{letter-spacing:6.552000px;}
.ls6_c00051{letter-spacing:9.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00051{word-spacing:-57.000000px;}
.ws3_c00051{word-spacing:-29.448000px;}
.ws1_c00051{word-spacing:-23.136000px;}
.ws0_c00051{word-spacing:-20.244000px;}
.ws4_c00051{word-spacing:0.000000px;}
._34_c00051{margin-left:-39.264000px;}
._35_c00051{margin-left:-34.464000px;}
._4f_c00051{margin-left:-28.968000px;}
._48_c00051{margin-left:-23.904000px;}
._31_c00051{margin-left:-21.504000px;}
._2b_c00051{margin-left:-16.416000px;}
._38_c00051{margin-left:-13.632000px;}
._2c_c00051{margin-left:-12.336000px;}
._23_c00051{margin-left:-10.464000px;}
._1e_c00051{margin-left:-9.240000px;}
._1d_c00051{margin-left:-8.220000px;}
._1b_c00051{margin-left:-6.300000px;}
._1c_c00051{margin-left:-5.124000px;}
._b_c00051{margin-left:-3.360000px;}
._26_c00051{margin-left:-2.304000px;}
._13_c00051{margin-left:-1.248000px;}
._0_c00051{width:1.152000px;}
._6_c00051{width:2.592000px;}
._2_c00051{width:3.936000px;}
._11_c00051{width:5.088000px;}
._4_c00051{width:6.336000px;}
._15_c00051{width:7.392000px;}
._3_c00051{width:8.928000px;}
._18_c00051{width:10.752000px;}
._17_c00051{width:12.576000px;}
._1f_c00051{width:13.668000px;}
._21_c00051{width:14.976000px;}
._3b_c00051{width:16.260000px;}
._1_c00051{width:17.568000px;}
._c_c00051{width:18.816000px;}
._12_c00051{width:21.216000px;}
._24_c00051{width:23.556000px;}
._14_c00051{width:25.248000px;}
._51_c00051{width:26.400000px;}
._a_c00051{width:27.840000px;}
._8_c00051{width:29.760000px;}
._22_c00051{width:31.008000px;}
._16_c00051{width:32.064000px;}
._28_c00051{width:33.756000px;}
._7_c00051{width:35.136000px;}
._9_c00051{width:36.960000px;}
._37_c00051{width:38.364000px;}
._5_c00051{width:39.840000px;}
._19_c00051{width:40.992000px;}
._e_c00051{width:42.720000px;}
._f_c00051{width:44.736000px;}
._45_c00051{width:47.400000px;}
._2d_c00051{width:48.792000px;}
._d_c00051{width:49.824000px;}
._10_c00051{width:51.936000px;}
._46_c00051{width:53.760000px;}
._47_c00051{width:55.356000px;}
._4d_c00051{width:56.640000px;}
._3e_c00051{width:58.056000px;}
._27_c00051{width:60.420000px;}
._3f_c00051{width:61.428000px;}
._29_c00051{width:63.156000px;}
._25_c00051{width:64.632000px;}
._40_c00051{width:73.500000px;}
._41_c00051{width:77.724000px;}
._42_c00051{width:79.320000px;}
._49_c00051{width:86.016000px;}
._4a_c00051{width:92.520000px;}
._44_c00051{width:97.284000px;}
._1a_c00051{width:107.808000px;}
._4c_c00051{width:136.368000px;}
._4e_c00051{width:191.808000px;}
._2f_c00051{width:208.464000px;}
._32_c00051{width:214.248000px;}
._33_c00051{width:228.864000px;}
._52_c00051{width:235.548000px;}
._3a_c00051{width:246.720000px;}
._2e_c00051{width:252.756000px;}
._50_c00051{width:254.496000px;}
._2a_c00051{width:265.056000px;}
._3c_c00051{width:341.688000px;}
._43_c00051{width:378.528000px;}
._30_c00051{width:398.208000px;}
._39_c00051{width:404.928000px;}
._4b_c00051{width:582.480000px;}
._20_c00051{width:588.000000px;}
._36_c00051{width:772.704000px;}
._3d_c00051{width:1731.384000px;}
.fc2_c00051{color:transparent;}
.fc1_c00051{color:rgb(128,128,128);}
.fc0_c00051{color:rgb(0,0,0);}
.fs2_c00051{font-size:36.000000px;}
.fs5_c00051{font-size:48.000000px;}
.fs4_c00051{font-size:72.000000px;}
.fs1_c00051{font-size:84.000000px;}
.fs0_c00051{font-size:96.000000px;}
.fs3_c00051{font-size:102.000000px;}
.y0_c00051{bottom:0.000000px;}
.y26_c00051{bottom:3.105000px;}
.y25_c00051{bottom:7.228357px;}
.y24_c00051{bottom:100.980000px;}
.y23_c00051{bottom:135.780000px;}
.y22_c00051{bottom:172.080000px;}
.y21_c00051{bottom:205.530000px;}
.y20_c00051{bottom:238.680000px;}
.y1f_c00051{bottom:272.130000px;}
.y1e_c00051{bottom:306.480000px;}
.y1d_c00051{bottom:340.530000px;}
.y1c_c00051{bottom:373.980000px;}
.y1b_c00051{bottom:407.730000px;}
.y1a_c00051{bottom:441.180000px;}
.y19_c00051{bottom:475.530000px;}
.y18_c00051{bottom:508.980000px;}
.y17_c00051{bottom:541.680000px;}
.y16_c00051{bottom:576.180000px;}
.y15_c00051{bottom:609.930000px;}
.y14_c00051{bottom:642.930000px;}
.y13_c00051{bottom:676.080000px;}
.y12_c00051{bottom:708.480000px;}
.y11_c00051{bottom:740.580000px;}
.y10_c00051{bottom:773.280000px;}
.yf_c00051{bottom:795.180000px;}
.ye_c00051{bottom:810.030000px;}
.yd_c00051{bottom:825.180000px;}
.yc_c00051{bottom:847.530000px;}
.yb_c00051{bottom:880.230000px;}
.ya_c00051{bottom:910.230000px;}
.y9_c00051{bottom:942.030000px;}
.y8_c00051{bottom:974.130000px;}
.y7_c00051{bottom:1006.830000px;}
.y6_c00051{bottom:1075.230000px;}
.y5_c00051{bottom:1141.080000px;}
.y4_c00051{bottom:1176.180000px;}
.y3_c00051{bottom:1208.880000px;}
.y2_c00051{bottom:1241.430000px;}
.y1_c00051{bottom:1274.730000px;}
.h4_c00051{height:13.200074px;}
.h5_c00051{height:43.804688px;}
.h3_c00051{height:75.832031px;}
.h2_c00051{height:121.546875px;}
.h0_c00051{height:1382.700000px;}
.h1_c00051{height:1383.000000px;}
.w2_c00051{width:104.875500px;}
.w0_c00051{width:863.175000px;}
.w1_c00051{width:863.250000px;}
.x0_c00051{left:0.000000px;}
.x5_c00051{left:45.600000px;}
.xe_c00051{left:57.000000px;}
.x7_c00051{left:61.800000px;}
.x9_c00051{left:62.850000px;}
.x6_c00051{left:64.500000px;}
.x8_c00051{left:65.550000px;}
.x4_c00051{left:136.650000px;}
.x15_c00051{left:268.200000px;}
.x12_c00051{left:271.950000px;}
.x13_c00051{left:273.000000px;}
.x11_c00051{left:274.050000px;}
.x10_c00051{left:276.750000px;}
.xc_c00051{left:280.050000px;}
.xf_c00051{left:281.100000px;}
.xb_c00051{left:282.150000px;}
.x1_c00051{left:283.800000px;}
.x2_c00051{left:284.850000px;}
.x14_c00051{left:286.500000px;}
.xa_c00051{left:288.600000px;}
.xd_c00051{left:290.250000px;}
.x17_c00051{left:383.401749px;}
.x3_c00051{left:416.700000px;}
.x16_c00051{left:816.750000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls4_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:0.778667pt;}
.ls2_c00051{letter-spacing:2.090667pt;}
.ls3_c00051{letter-spacing:3.157333pt;}
.ls5_c00051{letter-spacing:5.333333pt;}
.ls1_c00051{letter-spacing:5.824000pt;}
.ls6_c00051{letter-spacing:8.000000pt;}
.ws2_c00051{word-spacing:-50.666667pt;}
.ws3_c00051{word-spacing:-26.176000pt;}
.ws1_c00051{word-spacing:-20.565333pt;}
.ws0_c00051{word-spacing:-17.994667pt;}
.ws4_c00051{word-spacing:0.000000pt;}
._34_c00051{margin-left:-34.901333pt;}
._35_c00051{margin-left:-30.634667pt;}
._4f_c00051{margin-left:-25.749333pt;}
._48_c00051{margin-left:-21.248000pt;}
._31_c00051{margin-left:-19.114667pt;}
._2b_c00051{margin-left:-14.592000pt;}
._38_c00051{margin-left:-12.117333pt;}
._2c_c00051{margin-left:-10.965333pt;}
._23_c00051{margin-left:-9.301333pt;}
._1e_c00051{margin-left:-8.213333pt;}
._1d_c00051{margin-left:-7.306667pt;}
._1b_c00051{margin-left:-5.600000pt;}
._1c_c00051{margin-left:-4.554667pt;}
._b_c00051{margin-left:-2.986667pt;}
._26_c00051{margin-left:-2.048000pt;}
._13_c00051{margin-left:-1.109333pt;}
._0_c00051{width:1.024000pt;}
._6_c00051{width:2.304000pt;}
._2_c00051{width:3.498667pt;}
._11_c00051{width:4.522667pt;}
._4_c00051{width:5.632000pt;}
._15_c00051{width:6.570667pt;}
._3_c00051{width:7.936000pt;}
._18_c00051{width:9.557333pt;}
._17_c00051{width:11.178667pt;}
._1f_c00051{width:12.149333pt;}
._21_c00051{width:13.312000pt;}
._3b_c00051{width:14.453333pt;}
._1_c00051{width:15.616000pt;}
._c_c00051{width:16.725333pt;}
._12_c00051{width:18.858667pt;}
._24_c00051{width:20.938667pt;}
._14_c00051{width:22.442667pt;}
._51_c00051{width:23.466667pt;}
._a_c00051{width:24.746667pt;}
._8_c00051{width:26.453333pt;}
._22_c00051{width:27.562667pt;}
._16_c00051{width:28.501333pt;}
._28_c00051{width:30.005333pt;}
._7_c00051{width:31.232000pt;}
._9_c00051{width:32.853333pt;}
._37_c00051{width:34.101333pt;}
._5_c00051{width:35.413333pt;}
._19_c00051{width:36.437333pt;}
._e_c00051{width:37.973333pt;}
._f_c00051{width:39.765333pt;}
._45_c00051{width:42.133333pt;}
._2d_c00051{width:43.370667pt;}
._d_c00051{width:44.288000pt;}
._10_c00051{width:46.165333pt;}
._46_c00051{width:47.786667pt;}
._47_c00051{width:49.205333pt;}
._4d_c00051{width:50.346667pt;}
._3e_c00051{width:51.605333pt;}
._27_c00051{width:53.706667pt;}
._3f_c00051{width:54.602667pt;}
._29_c00051{width:56.138667pt;}
._25_c00051{width:57.450667pt;}
._40_c00051{width:65.333333pt;}
._41_c00051{width:69.088000pt;}
._42_c00051{width:70.506667pt;}
._49_c00051{width:76.458667pt;}
._4a_c00051{width:82.240000pt;}
._44_c00051{width:86.474667pt;}
._1a_c00051{width:95.829333pt;}
._4c_c00051{width:121.216000pt;}
._4e_c00051{width:170.496000pt;}
._2f_c00051{width:185.301333pt;}
._32_c00051{width:190.442667pt;}
._33_c00051{width:203.434667pt;}
._52_c00051{width:209.376000pt;}
._3a_c00051{width:219.306667pt;}
._2e_c00051{width:224.672000pt;}
._50_c00051{width:226.218667pt;}
._2a_c00051{width:235.605333pt;}
._3c_c00051{width:303.722667pt;}
._43_c00051{width:336.469333pt;}
._30_c00051{width:353.962667pt;}
._39_c00051{width:359.936000pt;}
._4b_c00051{width:517.760000pt;}
._20_c00051{width:522.666667pt;}
._36_c00051{width:686.848000pt;}
._3d_c00051{width:1539.008000pt;}
.fs2_c00051{font-size:32.000000pt;}
.fs5_c00051{font-size:42.666667pt;}
.fs4_c00051{font-size:64.000000pt;}
.fs1_c00051{font-size:74.666667pt;}
.fs0_c00051{font-size:85.333333pt;}
.fs3_c00051{font-size:90.666667pt;}
.y0_c00051{bottom:0.000000pt;}
.y26_c00051{bottom:2.760000pt;}
.y25_c00051{bottom:6.425206pt;}
.y24_c00051{bottom:89.760000pt;}
.y23_c00051{bottom:120.693333pt;}
.y22_c00051{bottom:152.960000pt;}
.y21_c00051{bottom:182.693333pt;}
.y20_c00051{bottom:212.160000pt;}
.y1f_c00051{bottom:241.893333pt;}
.y1e_c00051{bottom:272.426667pt;}
.y1d_c00051{bottom:302.693333pt;}
.y1c_c00051{bottom:332.426667pt;}
.y1b_c00051{bottom:362.426667pt;}
.y1a_c00051{bottom:392.160000pt;}
.y19_c00051{bottom:422.693333pt;}
.y18_c00051{bottom:452.426667pt;}
.y17_c00051{bottom:481.493333pt;}
.y16_c00051{bottom:512.160000pt;}
.y15_c00051{bottom:542.160000pt;}
.y14_c00051{bottom:571.493333pt;}
.y13_c00051{bottom:600.960000pt;}
.y12_c00051{bottom:629.760000pt;}
.y11_c00051{bottom:658.293333pt;}
.y10_c00051{bottom:687.360000pt;}
.yf_c00051{bottom:706.826667pt;}
.ye_c00051{bottom:720.026667pt;}
.yd_c00051{bottom:733.493333pt;}
.yc_c00051{bottom:753.360000pt;}
.yb_c00051{bottom:782.426667pt;}
.ya_c00051{bottom:809.093333pt;}
.y9_c00051{bottom:837.360000pt;}
.y8_c00051{bottom:865.893333pt;}
.y7_c00051{bottom:894.960000pt;}
.y6_c00051{bottom:955.760000pt;}
.y5_c00051{bottom:1014.293333pt;}
.y4_c00051{bottom:1045.493333pt;}
.y3_c00051{bottom:1074.560000pt;}
.y2_c00051{bottom:1103.493333pt;}
.y1_c00051{bottom:1133.093333pt;}
.h4_c00051{height:11.733399pt;}
.h5_c00051{height:38.937500pt;}
.h3_c00051{height:67.406250pt;}
.h2_c00051{height:108.041667pt;}
.h0_c00051{height:1229.066667pt;}
.h1_c00051{height:1229.333333pt;}
.w2_c00051{width:93.222667pt;}
.w0_c00051{width:767.266667pt;}
.w1_c00051{width:767.333333pt;}
.x0_c00051{left:0.000000pt;}
.x5_c00051{left:40.533333pt;}
.xe_c00051{left:50.666667pt;}
.x7_c00051{left:54.933333pt;}
.x9_c00051{left:55.866667pt;}
.x6_c00051{left:57.333333pt;}
.x8_c00051{left:58.266667pt;}
.x4_c00051{left:121.466667pt;}
.x15_c00051{left:238.400000pt;}
.x12_c00051{left:241.733333pt;}
.x13_c00051{left:242.666667pt;}
.x11_c00051{left:243.600000pt;}
.x10_c00051{left:246.000000pt;}
.xc_c00051{left:248.933333pt;}
.xf_c00051{left:249.866667pt;}
.xb_c00051{left:250.800000pt;}
.x1_c00051{left:252.266667pt;}
.x2_c00051{left:253.200000pt;}
.x14_c00051{left:254.666667pt;}
.xa_c00051{left:256.533333pt;}
.xd_c00051{left:258.000000pt;}
.x17_c00051{left:340.801554pt;}
.x3_c00051{left:370.400000pt;}
.x16_c00051{left:726.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_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_ef7000ce6a8f9bfaf31719f8.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_ca7d7a565ecebc000336dc3b.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.ls1_c00052{letter-spacing:6.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-57.000000px;}
.ws1_c00052{word-spacing:0.000000px;}
._2_c00052{margin-left:-74.994000px;}
._2c_c00052{margin-left:-19.392000px;}
._1c_c00052{margin-left:-12.558000px;}
._2d_c00052{margin-left:-7.914000px;}
._28_c00052{margin-left:-6.489000px;}
._0_c00052{margin-left:-5.481000px;}
._5_c00052{margin-left:-3.072000px;}
._3e_c00052{margin-left:-2.049000px;}
._4_c00052{margin-left:-1.020000px;}
._d_c00052{width:1.440000px;}
._b_c00052{width:2.496000px;}
._8_c00052{width:3.552000px;}
._24_c00052{width:4.611000px;}
._a_c00052{width:5.664000px;}
._14_c00052{width:7.374000px;}
._1b_c00052{width:8.874000px;}
._7_c00052{width:10.932000px;}
._1d_c00052{width:12.576000px;}
._6_c00052{width:14.697000px;}
._23_c00052{width:16.215000px;}
._22_c00052{width:17.736000px;}
._12_c00052{width:19.200000px;}
._c_c00052{width:20.544000px;}
._20_c00052{width:22.044000px;}
._27_c00052{width:24.213000px;}
._e_c00052{width:25.536000px;}
._2e_c00052{width:26.574000px;}
._f_c00052{width:27.840000px;}
._10_c00052{width:29.760000px;}
._33_c00052{width:30.813000px;}
._1f_c00052{width:31.989000px;}
._9_c00052{width:34.080000px;}
._13_c00052{width:35.337000px;}
._15_c00052{width:36.480000px;}
._21_c00052{width:37.881000px;}
._16_c00052{width:39.264000px;}
._11_c00052{width:41.076000px;}
._3f_c00052{width:42.489000px;}
._18_c00052{width:43.584000px;}
._1e_c00052{width:45.330000px;}
._26_c00052{width:46.737000px;}
._29_c00052{width:49.047000px;}
._2b_c00052{width:51.708000px;}
._17_c00052{width:54.336000px;}
._19_c00052{width:56.832000px;}
._25_c00052{width:57.990000px;}
._3a_c00052{width:61.170000px;}
._1a_c00052{width:62.688000px;}
._35_c00052{width:65.184000px;}
._30_c00052{width:67.272000px;}
._2f_c00052{width:70.092000px;}
._38_c00052{width:71.976000px;}
._3d_c00052{width:73.476000px;}
._3b_c00052{width:76.224000px;}
._39_c00052{width:77.952000px;}
._3c_c00052{width:79.509000px;}
._31_c00052{width:85.680000px;}
._32_c00052{width:87.009000px;}
._36_c00052{width:88.785000px;}
._37_c00052{width:97.800000px;}
._34_c00052{width:153.342000px;}
._1_c00052{width:211.236000px;}
._2a_c00052{width:235.092000px;}
._40_c00052{width:744.186000px;}
._3_c00052{width:1003.215000px;}
.fc2_c00052{color:transparent;}
.fc1_c00052{color:rgb(128,128,128);}
.fc0_c00052{color:rgb(0,0,0);}
.fs4_c00052{font-size:48.000000px;}
.fs0_c00052{font-size:87.000000px;}
.fs2_c00052{font-size:96.000000px;}
.fs1_c00052{font-size:102.000000px;}
.fs3_c00052{font-size:105.000000px;}
.y0_c00052{bottom:0.000000px;}
.y27_c00052{bottom:3.105000px;}
.y26_c00052{bottom:7.228369px;}
.y25_c00052{bottom:120.720000px;}
.y24_c00052{bottom:154.470000px;}
.y23_c00052{bottom:188.370000px;}
.y22_c00052{bottom:221.670000px;}
.y21_c00052{bottom:255.870000px;}
.y20_c00052{bottom:289.170000px;}
.y1f_c00052{bottom:322.620000px;}
.y1e_c00052{bottom:355.620000px;}
.y1d_c00052{bottom:389.520000px;}
.y1c_c00052{bottom:422.520000px;}
.y1b_c00052{bottom:456.270000px;}
.y1a_c00052{bottom:489.720000px;}
.y19_c00052{bottom:522.720000px;}
.y18_c00052{bottom:555.870000px;}
.y17_c00052{bottom:589.620000px;}
.y16_c00052{bottom:622.920000px;}
.y15_c00052{bottom:655.770000px;}
.y14_c00052{bottom:688.770000px;}
.y13_c00052{bottom:722.220000px;}
.y12_c00052{bottom:755.670000px;}
.y11_c00052{bottom:788.670000px;}
.y10_c00052{bottom:821.820000px;}
.yf_c00052{bottom:854.220000px;}
.ye_c00052{bottom:887.520000px;}
.yd_c00052{bottom:920.670000px;}
.yc_c00052{bottom:954.120000px;}
.yb_c00052{bottom:986.820000px;}
.ya_c00052{bottom:1019.970000px;}
.y9_c00052{bottom:1052.970000px;}
.y8_c00052{bottom:1086.120000px;}
.y7_c00052{bottom:1119.270000px;}
.y6_c00052{bottom:1152.270000px;}
.y5_c00052{bottom:1185.270000px;}
.y4_c00052{bottom:1217.970000px;}
.y3_c00052{bottom:1251.120000px;}
.y2_c00052{bottom:1284.120000px;}
.y1_c00052{bottom:1303.770000px;}
.h5_c00052{height:13.200073px;}
.h6_c00052{height:43.804688px;}
.h2_c00052{height:110.151855px;}
.h3_c00052{height:121.546875px;}
.h4_c00052{height:132.941895px;}
.h0_c00052{height:1383.450000px;}
.h1_c00052{height:1383.750000px;}
.w2_c00052{width:104.875500px;}
.w0_c00052{width:878.025000px;}
.w1_c00052{width:878.250000px;}
.x0_c00052{left:0.000000px;}
.x9_c00052{left:14.250000px;}
.x8_c00052{left:15.300000px;}
.x7_c00052{left:16.500000px;}
.xa_c00052{left:17.550000px;}
.x6_c00052{left:18.600000px;}
.x5_c00052{left:20.250000px;}
.x4_c00052{left:21.300000px;}
.x3_c00052{left:22.950000px;}
.x2_c00052{left:25.050000px;}
.x1_c00052{left:190.650000px;}
.xb_c00052{left:300.750000px;}
.xc_c00052{left:390.826721px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ls1_c00052{letter-spacing:5.333333pt;}
.ws0_c00052{word-spacing:-50.666667pt;}
.ws1_c00052{word-spacing:0.000000pt;}
._2_c00052{margin-left:-66.661333pt;}
._2c_c00052{margin-left:-17.237333pt;}
._1c_c00052{margin-left:-11.162667pt;}
._2d_c00052{margin-left:-7.034667pt;}
._28_c00052{margin-left:-5.768000pt;}
._0_c00052{margin-left:-4.872000pt;}
._5_c00052{margin-left:-2.730667pt;}
._3e_c00052{margin-left:-1.821333pt;}
._4_c00052{margin-left:-0.906667pt;}
._d_c00052{width:1.280000pt;}
._b_c00052{width:2.218667pt;}
._8_c00052{width:3.157333pt;}
._24_c00052{width:4.098667pt;}
._a_c00052{width:5.034667pt;}
._14_c00052{width:6.554667pt;}
._1b_c00052{width:7.888000pt;}
._7_c00052{width:9.717333pt;}
._1d_c00052{width:11.178667pt;}
._6_c00052{width:13.064000pt;}
._23_c00052{width:14.413333pt;}
._22_c00052{width:15.765333pt;}
._12_c00052{width:17.066667pt;}
._c_c00052{width:18.261333pt;}
._20_c00052{width:19.594667pt;}
._27_c00052{width:21.522667pt;}
._e_c00052{width:22.698667pt;}
._2e_c00052{width:23.621333pt;}
._f_c00052{width:24.746667pt;}
._10_c00052{width:26.453333pt;}
._33_c00052{width:27.389333pt;}
._1f_c00052{width:28.434667pt;}
._9_c00052{width:30.293333pt;}
._13_c00052{width:31.410667pt;}
._15_c00052{width:32.426667pt;}
._21_c00052{width:33.672000pt;}
._16_c00052{width:34.901333pt;}
._11_c00052{width:36.512000pt;}
._3f_c00052{width:37.768000pt;}
._18_c00052{width:38.741333pt;}
._1e_c00052{width:40.293333pt;}
._26_c00052{width:41.544000pt;}
._29_c00052{width:43.597333pt;}
._2b_c00052{width:45.962667pt;}
._17_c00052{width:48.298667pt;}
._19_c00052{width:50.517333pt;}
._25_c00052{width:51.546667pt;}
._3a_c00052{width:54.373333pt;}
._1a_c00052{width:55.722667pt;}
._35_c00052{width:57.941333pt;}
._30_c00052{width:59.797333pt;}
._2f_c00052{width:62.304000pt;}
._38_c00052{width:63.978667pt;}
._3d_c00052{width:65.312000pt;}
._3b_c00052{width:67.754667pt;}
._39_c00052{width:69.290667pt;}
._3c_c00052{width:70.674667pt;}
._31_c00052{width:76.160000pt;}
._32_c00052{width:77.341333pt;}
._36_c00052{width:78.920000pt;}
._37_c00052{width:86.933333pt;}
._34_c00052{width:136.304000pt;}
._1_c00052{width:187.765333pt;}
._2a_c00052{width:208.970667pt;}
._40_c00052{width:661.498667pt;}
._3_c00052{width:891.746667pt;}
.fs4_c00052{font-size:42.666667pt;}
.fs0_c00052{font-size:77.333333pt;}
.fs2_c00052{font-size:85.333333pt;}
.fs1_c00052{font-size:90.666667pt;}
.fs3_c00052{font-size:93.333333pt;}
.y0_c00052{bottom:0.000000pt;}
.y27_c00052{bottom:2.760000pt;}
.y26_c00052{bottom:6.425217pt;}
.y25_c00052{bottom:107.306667pt;}
.y24_c00052{bottom:137.306667pt;}
.y23_c00052{bottom:167.440000pt;}
.y22_c00052{bottom:197.040000pt;}
.y21_c00052{bottom:227.440000pt;}
.y20_c00052{bottom:257.040000pt;}
.y1f_c00052{bottom:286.773333pt;}
.y1e_c00052{bottom:316.106667pt;}
.y1d_c00052{bottom:346.240000pt;}
.y1c_c00052{bottom:375.573333pt;}
.y1b_c00052{bottom:405.573333pt;}
.y1a_c00052{bottom:435.306667pt;}
.y19_c00052{bottom:464.640000pt;}
.y18_c00052{bottom:494.106667pt;}
.y17_c00052{bottom:524.106667pt;}
.y16_c00052{bottom:553.706667pt;}
.y15_c00052{bottom:582.906667pt;}
.y14_c00052{bottom:612.240000pt;}
.y13_c00052{bottom:641.973333pt;}
.y12_c00052{bottom:671.706667pt;}
.y11_c00052{bottom:701.040000pt;}
.y10_c00052{bottom:730.506667pt;}
.yf_c00052{bottom:759.306667pt;}
.ye_c00052{bottom:788.906667pt;}
.yd_c00052{bottom:818.373333pt;}
.yc_c00052{bottom:848.106667pt;}
.yb_c00052{bottom:877.173333pt;}
.ya_c00052{bottom:906.640000pt;}
.y9_c00052{bottom:935.973333pt;}
.y8_c00052{bottom:965.440000pt;}
.y7_c00052{bottom:994.906667pt;}
.y6_c00052{bottom:1024.240000pt;}
.y5_c00052{bottom:1053.573333pt;}
.y4_c00052{bottom:1082.640000pt;}
.y3_c00052{bottom:1112.106667pt;}
.y2_c00052{bottom:1141.440000pt;}
.y1_c00052{bottom:1158.906667pt;}
.h5_c00052{height:11.733399pt;}
.h6_c00052{height:38.937500pt;}
.h2_c00052{height:97.912760pt;}
.h3_c00052{height:108.041667pt;}
.h4_c00052{height:118.170573pt;}
.h0_c00052{height:1229.733333pt;}
.h1_c00052{height:1230.000000pt;}
.w2_c00052{width:93.222667pt;}
.w0_c00052{width:780.466667pt;}
.w1_c00052{width:780.666667pt;}
.x0_c00052{left:0.000000pt;}
.x9_c00052{left:12.666667pt;}
.x8_c00052{left:13.600000pt;}
.x7_c00052{left:14.666667pt;}
.xa_c00052{left:15.600000pt;}
.x6_c00052{left:16.533333pt;}
.x5_c00052{left:18.000000pt;}
.x4_c00052{left:18.933333pt;}
.x3_c00052{left:20.400000pt;}
.x2_c00052{left:22.266667pt;}
.x1_c00052{left:169.466667pt;}
.xb_c00052{left:267.333333pt;}
.xc_c00052{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa35662a49c319c4d7c0eae9.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_102f7431d22f63b0e9f8dbc4.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_03e8c14f81c171f45852b258.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_e90b864939fd30b8a5c30f40.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_49fed6faf6eafc663e662f3b.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00053;src:url('chunks/assets/font_79196653b13276975b5f6952.woff2')format("woff");}.ff6_c00053{font-family:ff6_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00053;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00053{font-family:ff7_c00053;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{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_c00053{vertical-align:0.000000px;}
.lsf_c00053{letter-spacing:0.000000px;}
.ls11_c00053{letter-spacing:6.000000px;}
.lsd_c00053{letter-spacing:7.200000px;}
.lsc_c00053{letter-spacing:9.600000px;}
.ls10_c00053{letter-spacing:12.000000px;}
.ls3_c00053{letter-spacing:12.633000px;}
.lsb_c00053{letter-spacing:19.233000px;}
.ls2_c00053{letter-spacing:27.633000px;}
.lse_c00053{letter-spacing:30.846000px;}
.ls8_c00053{letter-spacing:48.588000px;}
.ls5_c00053{letter-spacing:64.833000px;}
.ls6_c00053{letter-spacing:68.433000px;}
.ls1_c00053{letter-spacing:70.833000px;}
.ls4_c00053{letter-spacing:73.233000px;}
.ls0_c00053{letter-spacing:273.633000px;}
.lsa_c00053{letter-spacing:274.233000px;}
.ls7_c00053{letter-spacing:402.033000px;}
.ls9_c00053{letter-spacing:601.233000px;}
.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;}
}
.ws4_c00053{word-spacing:-57.000000px;}
.ws0_c00053{word-spacing:-48.372000px;}
.ws3_c00053{word-spacing:-30.798000px;}
.ws2_c00053{word-spacing:-20.244000px;}
.ws1_c00053{word-spacing:-18.798000px;}
.ws5_c00053{word-spacing:0.000000px;}
._4c_c00053{margin-left:-42.336000px;}
._4b_c00053{margin-left:-38.976000px;}
._46_c00053{margin-left:-30.168000px;}
._3f_c00053{margin-left:-28.824000px;}
._49_c00053{margin-left:-23.583000px;}
._34_c00053{margin-left:-18.009000px;}
._3b_c00053{margin-left:-15.921000px;}
._35_c00053{margin-left:-14.592000px;}
._54_c00053{margin-left:-13.248000px;}
._38_c00053{margin-left:-11.571000px;}
._22_c00053{margin-left:-10.212000px;}
._1d_c00053{margin-left:-7.818000px;}
._1f_c00053{margin-left:-5.778000px;}
._a_c00053{margin-left:-4.320000px;}
._13_c00053{margin-left:-2.592000px;}
._c_c00053{margin-left:-1.056000px;}
._4_c00053{width:1.248000px;}
._8_c00053{width:2.592000px;}
._3_c00053{width:3.648000px;}
._6_c00053{width:4.704000px;}
._0_c00053{width:5.952000px;}
._1_c00053{width:7.296000px;}
._f_c00053{width:8.832000px;}
._11_c00053{width:10.560000px;}
._2_c00053{width:11.712000px;}
._b_c00053{width:12.768000px;}
._2e_c00053{width:14.136000px;}
._10_c00053{width:15.168000px;}
._d_c00053{width:16.320000px;}
._28_c00053{width:17.472000px;}
._5_c00053{width:18.720000px;}
._23_c00053{width:19.890000px;}
._e_c00053{width:21.792000px;}
._31_c00053{width:23.118000px;}
._26_c00053{width:24.288000px;}
._1a_c00053{width:25.536000px;}
._18_c00053{width:27.840000px;}
._7_c00053{width:29.088000px;}
._2b_c00053{width:30.432000px;}
._1e_c00053{width:31.950000px;}
._24_c00053{width:33.696000px;}
._9_c00053{width:34.848000px;}
._25_c00053{width:36.384000px;}
._12_c00053{width:39.072000px;}
._42_c00053{width:40.536000px;}
._15_c00053{width:41.634000px;}
._29_c00053{width:42.894000px;}
._4a_c00053{width:44.928000px;}
._27_c00053{width:46.080000px;}
._20_c00053{width:47.136000px;}
._52_c00053{width:49.446000px;}
._2f_c00053{width:51.078000px;}
._2d_c00053{width:52.146000px;}
._1b_c00053{width:53.664000px;}
._2c_c00053{width:55.200000px;}
._19_c00053{width:58.176000px;}
._17_c00053{width:59.232000px;}
._3c_c00053{width:63.780000px;}
._1c_c00053{width:64.992000px;}
._48_c00053{width:69.120000px;}
._2a_c00053{width:70.962000px;}
._43_c00053{width:73.548000px;}
._4d_c00053{width:83.640000px;}
._39_c00053{width:90.306000px;}
._32_c00053{width:96.462000px;}
._4e_c00053{width:103.848000px;}
._14_c00053{width:105.792000px;}
._36_c00053{width:118.233000px;}
._45_c00053{width:139.998000px;}
._3a_c00053{width:175.041000px;}
._16_c00053{width:181.206000px;}
._47_c00053{width:243.552000px;}
._37_c00053{width:247.926000px;}
._56_c00053{width:250.080000px;}
._21_c00053{width:267.894000px;}
._33_c00053{width:270.441000px;}
._53_c00053{width:283.020000px;}
._55_c00053{width:290.280000px;}
._30_c00053{width:333.978000px;}
._3e_c00053{width:399.324000px;}
._41_c00053{width:414.705000px;}
._40_c00053{width:498.945000px;}
._4f_c00053{width:546.414000px;}
._50_c00053{width:626.184000px;}
._57_c00053{width:959.697000px;}
._44_c00053{width:980.532000px;}
._3d_c00053{width:1028.640000px;}
._51_c00053{width:1148.064000px;}
.fc2_c00053{color:transparent;}
.fc1_c00053{color:rgb(128,128,128);}
.fc0_c00053{color:rgb(0,0,0);}
.fs5_c00053{font-size:36.000000px;}
.fs6_c00053{font-size:48.000000px;}
.fs1_c00053{font-size:78.000000px;}
.fs3_c00053{font-size:84.000000px;}
.fs2_c00053{font-size:87.000000px;}
.fs0_c00053{font-size:96.000000px;}
.fs4_c00053{font-size:102.000000px;}
.y0_c00053{bottom:0.000000px;}
.y26_c00053{bottom:3.105000px;}
.y25_c00053{bottom:7.228357px;}
.y24_c00053{bottom:121.530000px;}
.y23_c00053{bottom:151.980000px;}
.y22_c00053{bottom:185.280000px;}
.y21_c00053{bottom:215.430000px;}
.y20_c00053{bottom:238.380000px;}
.y1f_c00053{bottom:257.280000px;}
.y1e_c00053{bottom:292.230000px;}
.y1d_c00053{bottom:326.730000px;}
.y1c_c00053{bottom:358.530000px;}
.y1b_c00053{bottom:389.430000px;}
.y1a_c00053{bottom:417.930000px;}
.y19_c00053{bottom:451.680000px;}
.y18_c00053{bottom:474.180000px;}
.y17_c00053{bottom:496.530000px;}
.y16_c00053{bottom:530.280000px;}
.y15_c00053{bottom:561.030000px;}
.y14_c00053{bottom:593.430000px;}
.y13_c00053{bottom:625.080000px;}
.y12_c00053{bottom:658.530000px;}
.y11_c00053{bottom:691.980000px;}
.y10_c00053{bottom:725.580000px;}
.yf_c00053{bottom:758.730000px;}
.ye_c00053{bottom:792.180000px;}
.yd_c00053{bottom:825.630000px;}
.yc_c00053{bottom:859.230000px;}
.yb_c00053{bottom:892.380000px;}
.ya_c00053{bottom:925.380000px;}
.y9_c00053{bottom:957.930000px;}
.y8_c00053{bottom:993.630000px;}
.y7_c00053{bottom:1026.030000px;}
.y6_c00053{bottom:1057.830000px;}
.y5_c00053{bottom:1122.630000px;}
.y4_c00053{bottom:1189.980000px;}
.y3_c00053{bottom:1222.830000px;}
.y2_c00053{bottom:1257.180000px;}
.y1_c00053{bottom:1289.580000px;}
.h4_c00053{height:13.200074px;}
.h5_c00053{height:43.804688px;}
.h3_c00053{height:110.151855px;}
.h2_c00053{height:121.546875px;}
.h0_c00053{height:1382.700000px;}
.h1_c00053{height:1383.000000px;}
.w2_c00053{width:104.875500px;}
.w0_c00053{width:863.175000px;}
.w1_c00053{width:863.250000px;}
.x0_c00053{left:0.000000px;}
.xa_c00053{left:61.800000px;}
.xb_c00053{left:63.900000px;}
.x8_c00053{left:65.550000px;}
.x5_c00053{left:66.600000px;}
.x9_c00053{left:67.800000px;}
.x4_c00053{left:94.800000px;}
.x1_c00053{left:283.200000px;}
.x2_c00053{left:284.400000px;}
.x6_c00053{left:285.900000px;}
.x7_c00053{left:286.950000px;}
.xd_c00053{left:383.401749px;}
.x3_c00053{left:426.900000px;}
.xc_c00053{left:535.650000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.lsf_c00053{letter-spacing:0.000000pt;}
.ls11_c00053{letter-spacing:5.333333pt;}
.lsd_c00053{letter-spacing:6.400000pt;}
.lsc_c00053{letter-spacing:8.533333pt;}
.ls10_c00053{letter-spacing:10.666667pt;}
.ls3_c00053{letter-spacing:11.229333pt;}
.lsb_c00053{letter-spacing:17.096000pt;}
.ls2_c00053{letter-spacing:24.562667pt;}
.lse_c00053{letter-spacing:27.418667pt;}
.ls8_c00053{letter-spacing:43.189333pt;}
.ls5_c00053{letter-spacing:57.629333pt;}
.ls6_c00053{letter-spacing:60.829333pt;}
.ls1_c00053{letter-spacing:62.962667pt;}
.ls4_c00053{letter-spacing:65.096000pt;}
.ls0_c00053{letter-spacing:243.229333pt;}
.lsa_c00053{letter-spacing:243.762667pt;}
.ls7_c00053{letter-spacing:357.362667pt;}
.ls9_c00053{letter-spacing:534.429333pt;}
.ws4_c00053{word-spacing:-50.666667pt;}
.ws0_c00053{word-spacing:-42.997333pt;}
.ws3_c00053{word-spacing:-27.376000pt;}
.ws2_c00053{word-spacing:-17.994667pt;}
.ws1_c00053{word-spacing:-16.709333pt;}
.ws5_c00053{word-spacing:0.000000pt;}
._4c_c00053{margin-left:-37.632000pt;}
._4b_c00053{margin-left:-34.645333pt;}
._46_c00053{margin-left:-26.816000pt;}
._3f_c00053{margin-left:-25.621333pt;}
._49_c00053{margin-left:-20.962667pt;}
._34_c00053{margin-left:-16.008000pt;}
._3b_c00053{margin-left:-14.152000pt;}
._35_c00053{margin-left:-12.970667pt;}
._54_c00053{margin-left:-11.776000pt;}
._38_c00053{margin-left:-10.285333pt;}
._22_c00053{margin-left:-9.077333pt;}
._1d_c00053{margin-left:-6.949333pt;}
._1f_c00053{margin-left:-5.136000pt;}
._a_c00053{margin-left:-3.840000pt;}
._13_c00053{margin-left:-2.304000pt;}
._c_c00053{margin-left:-0.938667pt;}
._4_c00053{width:1.109333pt;}
._8_c00053{width:2.304000pt;}
._3_c00053{width:3.242667pt;}
._6_c00053{width:4.181333pt;}
._0_c00053{width:5.290667pt;}
._1_c00053{width:6.485333pt;}
._f_c00053{width:7.850667pt;}
._11_c00053{width:9.386667pt;}
._2_c00053{width:10.410667pt;}
._b_c00053{width:11.349333pt;}
._2e_c00053{width:12.565333pt;}
._10_c00053{width:13.482667pt;}
._d_c00053{width:14.506667pt;}
._28_c00053{width:15.530667pt;}
._5_c00053{width:16.640000pt;}
._23_c00053{width:17.680000pt;}
._e_c00053{width:19.370667pt;}
._31_c00053{width:20.549333pt;}
._26_c00053{width:21.589333pt;}
._1a_c00053{width:22.698667pt;}
._18_c00053{width:24.746667pt;}
._7_c00053{width:25.856000pt;}
._2b_c00053{width:27.050667pt;}
._1e_c00053{width:28.400000pt;}
._24_c00053{width:29.952000pt;}
._9_c00053{width:30.976000pt;}
._25_c00053{width:32.341333pt;}
._12_c00053{width:34.730667pt;}
._42_c00053{width:36.032000pt;}
._15_c00053{width:37.008000pt;}
._29_c00053{width:38.128000pt;}
._4a_c00053{width:39.936000pt;}
._27_c00053{width:40.960000pt;}
._20_c00053{width:41.898667pt;}
._52_c00053{width:43.952000pt;}
._2f_c00053{width:45.402667pt;}
._2d_c00053{width:46.352000pt;}
._1b_c00053{width:47.701333pt;}
._2c_c00053{width:49.066667pt;}
._19_c00053{width:51.712000pt;}
._17_c00053{width:52.650667pt;}
._3c_c00053{width:56.693333pt;}
._1c_c00053{width:57.770667pt;}
._48_c00053{width:61.440000pt;}
._2a_c00053{width:63.077333pt;}
._43_c00053{width:65.376000pt;}
._4d_c00053{width:74.346667pt;}
._39_c00053{width:80.272000pt;}
._32_c00053{width:85.744000pt;}
._4e_c00053{width:92.309333pt;}
._14_c00053{width:94.037333pt;}
._36_c00053{width:105.096000pt;}
._45_c00053{width:124.442667pt;}
._3a_c00053{width:155.592000pt;}
._16_c00053{width:161.072000pt;}
._47_c00053{width:216.490667pt;}
._37_c00053{width:220.378667pt;}
._56_c00053{width:222.293333pt;}
._21_c00053{width:238.128000pt;}
._33_c00053{width:240.392000pt;}
._53_c00053{width:251.573333pt;}
._55_c00053{width:258.026667pt;}
._30_c00053{width:296.869333pt;}
._3e_c00053{width:354.954667pt;}
._41_c00053{width:368.626667pt;}
._40_c00053{width:443.506667pt;}
._4f_c00053{width:485.701333pt;}
._50_c00053{width:556.608000pt;}
._57_c00053{width:853.064000pt;}
._44_c00053{width:871.584000pt;}
._3d_c00053{width:914.346667pt;}
._51_c00053{width:1020.501333pt;}
.fs5_c00053{font-size:32.000000pt;}
.fs6_c00053{font-size:42.666667pt;}
.fs1_c00053{font-size:69.333333pt;}
.fs3_c00053{font-size:74.666667pt;}
.fs2_c00053{font-size:77.333333pt;}
.fs0_c00053{font-size:85.333333pt;}
.fs4_c00053{font-size:90.666667pt;}
.y0_c00053{bottom:0.000000pt;}
.y26_c00053{bottom:2.760000pt;}
.y25_c00053{bottom:6.425206pt;}
.y24_c00053{bottom:108.026667pt;}
.y23_c00053{bottom:135.093333pt;}
.y22_c00053{bottom:164.693333pt;}
.y21_c00053{bottom:191.493333pt;}
.y20_c00053{bottom:211.893333pt;}
.y1f_c00053{bottom:228.693333pt;}
.y1e_c00053{bottom:259.760000pt;}
.y1d_c00053{bottom:290.426667pt;}
.y1c_c00053{bottom:318.693333pt;}
.y1b_c00053{bottom:346.160000pt;}
.y1a_c00053{bottom:371.493333pt;}
.y19_c00053{bottom:401.493333pt;}
.y18_c00053{bottom:421.493333pt;}
.y17_c00053{bottom:441.360000pt;}
.y16_c00053{bottom:471.360000pt;}
.y15_c00053{bottom:498.693333pt;}
.y14_c00053{bottom:527.493333pt;}
.y13_c00053{bottom:555.626667pt;}
.y12_c00053{bottom:585.360000pt;}
.y11_c00053{bottom:615.093333pt;}
.y10_c00053{bottom:644.960000pt;}
.yf_c00053{bottom:674.426667pt;}
.ye_c00053{bottom:704.160000pt;}
.yd_c00053{bottom:733.893333pt;}
.yc_c00053{bottom:763.760000pt;}
.yb_c00053{bottom:793.226667pt;}
.ya_c00053{bottom:822.560000pt;}
.y9_c00053{bottom:851.493333pt;}
.y8_c00053{bottom:883.226667pt;}
.y7_c00053{bottom:912.026667pt;}
.y6_c00053{bottom:940.293333pt;}
.y5_c00053{bottom:997.893333pt;}
.y4_c00053{bottom:1057.760000pt;}
.y3_c00053{bottom:1086.960000pt;}
.y2_c00053{bottom:1117.493333pt;}
.y1_c00053{bottom:1146.293333pt;}
.h4_c00053{height:11.733399pt;}
.h5_c00053{height:38.937500pt;}
.h3_c00053{height:97.912760pt;}
.h2_c00053{height:108.041667pt;}
.h0_c00053{height:1229.066667pt;}
.h1_c00053{height:1229.333333pt;}
.w2_c00053{width:93.222667pt;}
.w0_c00053{width:767.266667pt;}
.w1_c00053{width:767.333333pt;}
.x0_c00053{left:0.000000pt;}
.xa_c00053{left:54.933333pt;}
.xb_c00053{left:56.800000pt;}
.x8_c00053{left:58.266667pt;}
.x5_c00053{left:59.200000pt;}
.x9_c00053{left:60.266667pt;}
.x4_c00053{left:84.266667pt;}
.x1_c00053{left:251.733333pt;}
.x2_c00053{left:252.800000pt;}
.x6_c00053{left:254.133333pt;}
.x7_c00053{left:255.066667pt;}
.xd_c00053{left:340.801554pt;}
.x3_c00053{left:379.466667pt;}
.xc_c00053{left:476.133333pt;}
}





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

.ir_c00054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00054;src:url('chunks/assets/font_4d55a89e53447fef0c5ea35e.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_d76af803807e42be568e046f.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls2_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:6.552000px;}
.ls1_c00054{letter-spacing:12.552000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:-23.136000px;}
.ws1_c00054{word-spacing:0.000000px;}
._30_c00054{margin-left:-34.464000px;}
._31_c00054{margin-left:-22.176000px;}
._29_c00054{margin-left:-19.632000px;}
._32_c00054{margin-left:-16.704000px;}
._33_c00054{margin-left:-14.400000px;}
._a_c00054{margin-left:-11.328000px;}
._c_c00054{margin-left:-9.696000px;}
._b_c00054{margin-left:-5.952000px;}
._4_c00054{margin-left:-4.032000px;}
._14_c00054{margin-left:-2.976000px;}
._15_c00054{margin-left:-1.632000px;}
._7_c00054{width:1.536000px;}
._0_c00054{width:2.688000px;}
._2_c00054{width:3.744000px;}
._12_c00054{width:5.280000px;}
._1_c00054{width:6.816000px;}
._1b_c00054{width:8.544000px;}
._25_c00054{width:9.696000px;}
._1d_c00054{width:10.848000px;}
._1f_c00054{width:12.000000px;}
._9_c00054{width:13.344000px;}
._13_c00054{width:14.976000px;}
._3_c00054{width:16.896000px;}
._10_c00054{width:18.144000px;}
._17_c00054{width:19.296000px;}
._1e_c00054{width:21.312000px;}
._28_c00054{width:24.192000px;}
._1a_c00054{width:25.728000px;}
._6_c00054{width:27.360000px;}
._2a_c00054{width:28.416000px;}
._23_c00054{width:29.760000px;}
._e_c00054{width:30.816000px;}
._8_c00054{width:32.064000px;}
._24_c00054{width:33.216000px;}
._11_c00054{width:34.656000px;}
._2c_c00054{width:36.096000px;}
._f_c00054{width:37.152000px;}
._5_c00054{width:38.880000px;}
._18_c00054{width:40.800000px;}
._d_c00054{width:42.816000px;}
._1c_c00054{width:45.312000px;}
._27_c00054{width:46.752000px;}
._2e_c00054{width:47.808000px;}
._21_c00054{width:48.864000px;}
._26_c00054{width:50.400000px;}
._19_c00054{width:51.840000px;}
._22_c00054{width:54.240000px;}
._16_c00054{width:55.776000px;}
._20_c00054{width:58.656000px;}
._2b_c00054{width:63.360000px;}
._2d_c00054{width:67.200000px;}
._2f_c00054{width:84.096000px;}
._34_c00054{width:132.000000px;}
._35_c00054{width:437.952000px;}
.fc2_c00054{color:transparent;}
.fc1_c00054{color:rgb(128,128,128);}
.fc0_c00054{color:rgb(0,0,0);}
.fs2_c00054{font-size:48.000000px;}
.fs1_c00054{font-size:84.000000px;}
.fs0_c00054{font-size:96.000000px;}
.y0_c00054{bottom:0.000000px;}
.y27_c00054{bottom:3.105000px;}
.y26_c00054{bottom:7.228369px;}
.y25_c00054{bottom:123.870000px;}
.y24_c00054{bottom:156.870000px;}
.y23_c00054{bottom:190.620000px;}
.y22_c00054{bottom:224.370000px;}
.y21_c00054{bottom:258.120000px;}
.y20_c00054{bottom:290.820000px;}
.y1f_c00054{bottom:325.020000px;}
.y1e_c00054{bottom:358.020000px;}
.y1d_c00054{bottom:391.470000px;}
.y1c_c00054{bottom:425.220000px;}
.y1b_c00054{bottom:458.970000px;}
.y1a_c00054{bottom:491.370000px;}
.y19_c00054{bottom:524.820000px;}
.y18_c00054{bottom:557.220000px;}
.y17_c00054{bottom:590.970000px;}
.y16_c00054{bottom:623.970000px;}
.y15_c00054{bottom:656.670000px;}
.y14_c00054{bottom:689.820000px;}
.y13_c00054{bottom:723.570000px;}
.y12_c00054{bottom:757.320000px;}
.y11_c00054{bottom:790.020000px;}
.y10_c00054{bottom:823.770000px;}
.yf_c00054{bottom:856.170000px;}
.ye_c00054{bottom:889.920000px;}
.yd_c00054{bottom:921.720000px;}
.yc_c00054{bottom:955.470000px;}
.yb_c00054{bottom:988.770000px;}
.ya_c00054{bottom:1021.320000px;}
.y9_c00054{bottom:1054.620000px;}
.y8_c00054{bottom:1088.070000px;}
.y7_c00054{bottom:1120.770000px;}
.y6_c00054{bottom:1154.520000px;}
.y5_c00054{bottom:1187.220000px;}
.y4_c00054{bottom:1219.770000px;}
.y3_c00054{bottom:1253.370000px;}
.y2_c00054{bottom:1285.920000px;}
.y1_c00054{bottom:1315.920000px;}
.h3_c00054{height:13.200073px;}
.h4_c00054{height:43.804688px;}
.h2_c00054{height:121.546875px;}
.h0_c00054{height:1383.450000px;}
.h1_c00054{height:1383.750000px;}
.w2_c00054{width:104.875500px;}
.w0_c00054{width:878.025000px;}
.w1_c00054{width:878.250000px;}
.x0_c00054{left:0.000000px;}
.xb_c00054{left:30.450000px;}
.xa_c00054{left:32.700000px;}
.x9_c00054{left:35.400000px;}
.x8_c00054{left:37.500000px;}
.x7_c00054{left:38.550000px;}
.x6_c00054{left:39.600000px;}
.x5_c00054{left:41.250000px;}
.x4_c00054{left:42.300000px;}
.x3_c00054{left:43.500000px;}
.x2_c00054{left:44.550000px;}
.xc_c00054{left:390.826721px;}
.x1_c00054{left:533.250000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls2_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:5.824000pt;}
.ls1_c00054{letter-spacing:11.157333pt;}
.ws0_c00054{word-spacing:-20.565333pt;}
.ws1_c00054{word-spacing:0.000000pt;}
._30_c00054{margin-left:-30.634667pt;}
._31_c00054{margin-left:-19.712000pt;}
._29_c00054{margin-left:-17.450667pt;}
._32_c00054{margin-left:-14.848000pt;}
._33_c00054{margin-left:-12.800000pt;}
._a_c00054{margin-left:-10.069333pt;}
._c_c00054{margin-left:-8.618667pt;}
._b_c00054{margin-left:-5.290667pt;}
._4_c00054{margin-left:-3.584000pt;}
._14_c00054{margin-left:-2.645333pt;}
._15_c00054{margin-left:-1.450667pt;}
._7_c00054{width:1.365333pt;}
._0_c00054{width:2.389333pt;}
._2_c00054{width:3.328000pt;}
._12_c00054{width:4.693333pt;}
._1_c00054{width:6.058667pt;}
._1b_c00054{width:7.594667pt;}
._25_c00054{width:8.618667pt;}
._1d_c00054{width:9.642667pt;}
._1f_c00054{width:10.666667pt;}
._9_c00054{width:11.861333pt;}
._13_c00054{width:13.312000pt;}
._3_c00054{width:15.018667pt;}
._10_c00054{width:16.128000pt;}
._17_c00054{width:17.152000pt;}
._1e_c00054{width:18.944000pt;}
._28_c00054{width:21.504000pt;}
._1a_c00054{width:22.869333pt;}
._6_c00054{width:24.320000pt;}
._2a_c00054{width:25.258667pt;}
._23_c00054{width:26.453333pt;}
._e_c00054{width:27.392000pt;}
._8_c00054{width:28.501333pt;}
._24_c00054{width:29.525333pt;}
._11_c00054{width:30.805333pt;}
._2c_c00054{width:32.085333pt;}
._f_c00054{width:33.024000pt;}
._5_c00054{width:34.560000pt;}
._18_c00054{width:36.266667pt;}
._d_c00054{width:38.058667pt;}
._1c_c00054{width:40.277333pt;}
._27_c00054{width:41.557333pt;}
._2e_c00054{width:42.496000pt;}
._21_c00054{width:43.434667pt;}
._26_c00054{width:44.800000pt;}
._19_c00054{width:46.080000pt;}
._22_c00054{width:48.213333pt;}
._16_c00054{width:49.578667pt;}
._20_c00054{width:52.138667pt;}
._2b_c00054{width:56.320000pt;}
._2d_c00054{width:59.733333pt;}
._2f_c00054{width:74.752000pt;}
._34_c00054{width:117.333333pt;}
._35_c00054{width:389.290667pt;}
.fs2_c00054{font-size:42.666667pt;}
.fs1_c00054{font-size:74.666667pt;}
.fs0_c00054{font-size:85.333333pt;}
.y0_c00054{bottom:0.000000pt;}
.y27_c00054{bottom:2.760000pt;}
.y26_c00054{bottom:6.425217pt;}
.y25_c00054{bottom:110.106667pt;}
.y24_c00054{bottom:139.440000pt;}
.y23_c00054{bottom:169.440000pt;}
.y22_c00054{bottom:199.440000pt;}
.y21_c00054{bottom:229.440000pt;}
.y20_c00054{bottom:258.506667pt;}
.y1f_c00054{bottom:288.906667pt;}
.y1e_c00054{bottom:318.240000pt;}
.y1d_c00054{bottom:347.973333pt;}
.y1c_c00054{bottom:377.973333pt;}
.y1b_c00054{bottom:407.973333pt;}
.y1a_c00054{bottom:436.773333pt;}
.y19_c00054{bottom:466.506667pt;}
.y18_c00054{bottom:495.306667pt;}
.y17_c00054{bottom:525.306667pt;}
.y16_c00054{bottom:554.640000pt;}
.y15_c00054{bottom:583.706667pt;}
.y14_c00054{bottom:613.173333pt;}
.y13_c00054{bottom:643.173333pt;}
.y12_c00054{bottom:673.173333pt;}
.y11_c00054{bottom:702.240000pt;}
.y10_c00054{bottom:732.240000pt;}
.yf_c00054{bottom:761.040000pt;}
.ye_c00054{bottom:791.040000pt;}
.yd_c00054{bottom:819.306667pt;}
.yc_c00054{bottom:849.306667pt;}
.yb_c00054{bottom:878.906667pt;}
.ya_c00054{bottom:907.840000pt;}
.y9_c00054{bottom:937.440000pt;}
.y8_c00054{bottom:967.173333pt;}
.y7_c00054{bottom:996.240000pt;}
.y6_c00054{bottom:1026.240000pt;}
.y5_c00054{bottom:1055.306667pt;}
.y4_c00054{bottom:1084.240000pt;}
.y3_c00054{bottom:1114.106667pt;}
.y2_c00054{bottom:1143.040000pt;}
.y1_c00054{bottom:1169.706667pt;}
.h3_c00054{height:11.733399pt;}
.h4_c00054{height:38.937500pt;}
.h2_c00054{height:108.041667pt;}
.h0_c00054{height:1229.733333pt;}
.h1_c00054{height:1230.000000pt;}
.w2_c00054{width:93.222667pt;}
.w0_c00054{width:780.466667pt;}
.w1_c00054{width:780.666667pt;}
.x0_c00054{left:0.000000pt;}
.xb_c00054{left:27.066667pt;}
.xa_c00054{left:29.066667pt;}
.x9_c00054{left:31.466667pt;}
.x8_c00054{left:33.333333pt;}
.x7_c00054{left:34.266667pt;}
.x6_c00054{left:35.200000pt;}
.x5_c00054{left:36.666667pt;}
.x4_c00054{left:37.600000pt;}
.x3_c00054{left:38.666667pt;}
.x2_c00054{left:39.600000pt;}
.xc_c00054{left:347.401530pt;}
.x1_c00054{left:474.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_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_6a781d2b53423e6feb285795.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_ffa06a078e0eab94d259785c.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_2644c9748562776864ab6a00.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls3_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:1.833000px;}
.ls2_c00055{letter-spacing:4.500000px;}
.ls1_c00055{letter-spacing:77.532000px;}
.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;}
}
.ws1_c00055{word-spacing:-48.372000px;}
.ws0_c00055{word-spacing:-18.798000px;}
.ws2_c00055{word-spacing:0.000000px;}
._14_c00055{margin-left:-30.246000px;}
._16_c00055{margin-left:-27.006000px;}
._4_c00055{margin-left:-21.837000px;}
._31_c00055{margin-left:-19.680000px;}
._21_c00055{margin-left:-17.538000px;}
._5_c00055{margin-left:-16.188000px;}
._24_c00055{margin-left:-12.360000px;}
._20_c00055{margin-left:-7.326000px;}
._2d_c00055{margin-left:-6.198000px;}
._28_c00055{margin-left:-5.178000px;}
._f_c00055{margin-left:-3.978000px;}
._7_c00055{margin-left:-2.652000px;}
._b_c00055{margin-left:-1.482000px;}
._9_c00055{width:1.482000px;}
._a_c00055{width:2.496000px;}
._e_c00055{width:4.290000px;}
._d_c00055{width:6.006000px;}
._3_c00055{width:7.752000px;}
._1_c00055{width:9.594000px;}
._2_c00055{width:10.608000px;}
._6_c00055{width:12.402000px;}
._0_c00055{width:14.040000px;}
._8_c00055{width:15.834000px;}
._1b_c00055{width:17.556000px;}
._13_c00055{width:19.326000px;}
._2b_c00055{width:20.556000px;}
._10_c00055{width:21.606000px;}
._1a_c00055{width:24.150000px;}
._1f_c00055{width:25.194000px;}
._26_c00055{width:26.214000px;}
._18_c00055{width:27.972000px;}
._c_c00055{width:30.108000px;}
._1c_c00055{width:32.118000px;}
._17_c00055{width:33.738000px;}
._2a_c00055{width:34.794000px;}
._25_c00055{width:37.062000px;}
._12_c00055{width:38.868000px;}
._15_c00055{width:40.308000px;}
._1e_c00055{width:42.366000px;}
._1d_c00055{width:43.476000px;}
._22_c00055{width:44.952000px;}
._23_c00055{width:47.778000px;}
._19_c00055{width:49.080000px;}
._27_c00055{width:51.102000px;}
._2c_c00055{width:55.881000px;}
._32_c00055{width:59.760000px;}
._29_c00055{width:62.712000px;}
._2f_c00055{width:107.334000px;}
._33_c00055{width:129.498000px;}
._2e_c00055{width:214.494000px;}
._11_c00055{width:355.536000px;}
._30_c00055{width:394.194000px;}
._35_c00055{width:722.592000px;}
._34_c00055{width:987.288000px;}
.fc2_c00055{color:transparent;}
.fc1_c00055{color:rgb(128,128,128);}
.fc0_c00055{color:rgb(0,0,0);}
.fs5_c00055{font-size:48.000000px;}
.fs0_c00055{font-size:78.000000px;}
.fs3_c00055{font-size:84.000000px;}
.fs1_c00055{font-size:87.000000px;}
.fs2_c00055{font-size:96.000000px;}
.fs4_c00055{font-size:99.000000px;}
.y0_c00055{bottom:0.000000px;}
.y32_c00055{bottom:3.105000px;}
.y31_c00055{bottom:7.228357px;}
.y30_c00055{bottom:109.380000px;}
.y25_c00055{bottom:124.530000px;}
.y2f_c00055{bottom:141.780000px;}
.y24_c00055{bottom:157.680000px;}
.y2e_c00055{bottom:176.580000px;}
.y23_c00055{bottom:191.130000px;}
.y2d_c00055{bottom:210.330000px;}
.y22_c00055{bottom:221.130000px;}
.y2c_c00055{bottom:244.080000px;}
.y21_c00055{bottom:250.080000px;}
.y2b_c00055{bottom:277.830000px;}
.y20_c00055{bottom:280.230000px;}
.y1f_c00055{bottom:309.480000px;}
.y2a_c00055{bottom:311.580000px;}
.y1e_c00055{bottom:339.480000px;}
.y29_c00055{bottom:345.030000px;}
.y1d_c00055{bottom:368.880000px;}
.y28_c00055{bottom:378.780000px;}
.y1c_c00055{bottom:399.030000px;}
.y27_c00055{bottom:412.530000px;}
.y1b_c00055{bottom:429.330000px;}
.y26_c00055{bottom:479.580000px;}
.y1a_c00055{bottom:547.530000px;}
.y19_c00055{bottom:581.130000px;}
.y18_c00055{bottom:614.280000px;}
.y17_c00055{bottom:647.430000px;}
.y16_c00055{bottom:681.030000px;}
.y15_c00055{bottom:713.880000px;}
.y14_c00055{bottom:747.930000px;}
.y13_c00055{bottom:780.930000px;}
.y12_c00055{bottom:814.230000px;}
.y11_c00055{bottom:847.230000px;}
.y10_c00055{bottom:880.230000px;}
.yf_c00055{bottom:913.380000px;}
.ye_c00055{bottom:946.080000px;}
.yd_c00055{bottom:979.080000px;}
.yc_c00055{bottom:1011.780000px;}
.yb_c00055{bottom:1045.230000px;}
.ya_c00055{bottom:1078.080000px;}
.y5_c00055{bottom:1093.530000px;}
.y9_c00055{bottom:1110.930000px;}
.y4_c00055{bottom:1122.180000px;}
.y8_c00055{bottom:1144.080000px;}
.y3_c00055{bottom:1150.980000px;}
.y7_c00055{bottom:1177.230000px;}
.y2_c00055{bottom:1181.580000px;}
.y1_c00055{bottom:1209.630000px;}
.y6_c00055{bottom:1210.380000px;}
.h7_c00055{height:13.200074px;}
.h8_c00055{height:43.804688px;}
.h2_c00055{height:91.291992px;}
.h6_c00055{height:98.314453px;}
.h3_c00055{height:98.756836px;}
.h5_c00055{height:110.151855px;}
.h4_c00055{height:121.546875px;}
.h0_c00055{height:1382.700000px;}
.h1_c00055{height:1383.000000px;}
.w2_c00055{width:104.875500px;}
.w0_c00055{width:863.175000px;}
.w1_c00055{width:863.250000px;}
.x0_c00055{left:0.000000px;}
.xc_c00055{left:53.700000px;}
.xb_c00055{left:58.050000px;}
.x9_c00055{left:59.100000px;}
.xa_c00055{left:60.750000px;}
.x2_c00055{left:61.800000px;}
.x8_c00055{left:62.850000px;}
.x1_c00055{left:75.300000px;}
.x7_c00055{left:90.900000px;}
.x10_c00055{left:279.900000px;}
.x12_c00055{left:281.100000px;}
.x4_c00055{left:285.450000px;}
.x5_c00055{left:286.500000px;}
.x6_c00055{left:287.550000px;}
.xf_c00055{left:288.600000px;}
.x11_c00055{left:290.250000px;}
.x14_c00055{left:292.350000px;}
.x13_c00055{left:293.400000px;}
.x3_c00055{left:333.900000px;}
.xe_c00055{left:337.800000px;}
.x15_c00055{left:383.401749px;}
.xd_c00055{left:437.100000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls3_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:1.629333pt;}
.ls2_c00055{letter-spacing:4.000000pt;}
.ls1_c00055{letter-spacing:68.917333pt;}
.ws1_c00055{word-spacing:-42.997333pt;}
.ws0_c00055{word-spacing:-16.709333pt;}
.ws2_c00055{word-spacing:0.000000pt;}
._14_c00055{margin-left:-26.885333pt;}
._16_c00055{margin-left:-24.005333pt;}
._4_c00055{margin-left:-19.410667pt;}
._31_c00055{margin-left:-17.493333pt;}
._21_c00055{margin-left:-15.589333pt;}
._5_c00055{margin-left:-14.389333pt;}
._24_c00055{margin-left:-10.986667pt;}
._20_c00055{margin-left:-6.512000pt;}
._2d_c00055{margin-left:-5.509333pt;}
._28_c00055{margin-left:-4.602667pt;}
._f_c00055{margin-left:-3.536000pt;}
._7_c00055{margin-left:-2.357333pt;}
._b_c00055{margin-left:-1.317333pt;}
._9_c00055{width:1.317333pt;}
._a_c00055{width:2.218667pt;}
._e_c00055{width:3.813333pt;}
._d_c00055{width:5.338667pt;}
._3_c00055{width:6.890667pt;}
._1_c00055{width:8.528000pt;}
._2_c00055{width:9.429333pt;}
._6_c00055{width:11.024000pt;}
._0_c00055{width:12.480000pt;}
._8_c00055{width:14.074667pt;}
._1b_c00055{width:15.605333pt;}
._13_c00055{width:17.178667pt;}
._2b_c00055{width:18.272000pt;}
._10_c00055{width:19.205333pt;}
._1a_c00055{width:21.466667pt;}
._1f_c00055{width:22.394667pt;}
._26_c00055{width:23.301333pt;}
._18_c00055{width:24.864000pt;}
._c_c00055{width:26.762667pt;}
._1c_c00055{width:28.549333pt;}
._17_c00055{width:29.989333pt;}
._2a_c00055{width:30.928000pt;}
._25_c00055{width:32.944000pt;}
._12_c00055{width:34.549333pt;}
._15_c00055{width:35.829333pt;}
._1e_c00055{width:37.658667pt;}
._1d_c00055{width:38.645333pt;}
._22_c00055{width:39.957333pt;}
._23_c00055{width:42.469333pt;}
._19_c00055{width:43.626667pt;}
._27_c00055{width:45.424000pt;}
._2c_c00055{width:49.672000pt;}
._32_c00055{width:53.120000pt;}
._29_c00055{width:55.744000pt;}
._2f_c00055{width:95.408000pt;}
._33_c00055{width:115.109333pt;}
._2e_c00055{width:190.661333pt;}
._11_c00055{width:316.032000pt;}
._30_c00055{width:350.394667pt;}
._35_c00055{width:642.304000pt;}
._34_c00055{width:877.589333pt;}
.fs5_c00055{font-size:42.666667pt;}
.fs0_c00055{font-size:69.333333pt;}
.fs3_c00055{font-size:74.666667pt;}
.fs1_c00055{font-size:77.333333pt;}
.fs2_c00055{font-size:85.333333pt;}
.fs4_c00055{font-size:88.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y32_c00055{bottom:2.760000pt;}
.y31_c00055{bottom:6.425206pt;}
.y30_c00055{bottom:97.226667pt;}
.y25_c00055{bottom:110.693333pt;}
.y2f_c00055{bottom:126.026667pt;}
.y24_c00055{bottom:140.160000pt;}
.y2e_c00055{bottom:156.960000pt;}
.y23_c00055{bottom:169.893333pt;}
.y2d_c00055{bottom:186.960000pt;}
.y22_c00055{bottom:196.560000pt;}
.y2c_c00055{bottom:216.960000pt;}
.y21_c00055{bottom:222.293333pt;}
.y2b_c00055{bottom:246.960000pt;}
.y20_c00055{bottom:249.093333pt;}
.y1f_c00055{bottom:275.093333pt;}
.y2a_c00055{bottom:276.960000pt;}
.y1e_c00055{bottom:301.760000pt;}
.y29_c00055{bottom:306.693333pt;}
.y1d_c00055{bottom:327.893333pt;}
.y28_c00055{bottom:336.693333pt;}
.y1c_c00055{bottom:354.693333pt;}
.y27_c00055{bottom:366.693333pt;}
.y1b_c00055{bottom:381.626667pt;}
.y26_c00055{bottom:426.293333pt;}
.y1a_c00055{bottom:486.693333pt;}
.y19_c00055{bottom:516.560000pt;}
.y18_c00055{bottom:546.026667pt;}
.y17_c00055{bottom:575.493333pt;}
.y16_c00055{bottom:605.360000pt;}
.y15_c00055{bottom:634.560000pt;}
.y14_c00055{bottom:664.826667pt;}
.y13_c00055{bottom:694.160000pt;}
.y12_c00055{bottom:723.760000pt;}
.y11_c00055{bottom:753.093333pt;}
.y10_c00055{bottom:782.426667pt;}
.yf_c00055{bottom:811.893333pt;}
.ye_c00055{bottom:840.960000pt;}
.yd_c00055{bottom:870.293333pt;}
.yc_c00055{bottom:899.360000pt;}
.yb_c00055{bottom:929.093333pt;}
.ya_c00055{bottom:958.293333pt;}
.y5_c00055{bottom:972.026667pt;}
.y9_c00055{bottom:987.493333pt;}
.y4_c00055{bottom:997.493333pt;}
.y8_c00055{bottom:1016.960000pt;}
.y3_c00055{bottom:1023.093333pt;}
.y7_c00055{bottom:1046.426667pt;}
.y2_c00055{bottom:1050.293333pt;}
.y1_c00055{bottom:1075.226667pt;}
.y6_c00055{bottom:1075.893333pt;}
.h7_c00055{height:11.733399pt;}
.h8_c00055{height:38.937500pt;}
.h2_c00055{height:81.148438pt;}
.h6_c00055{height:87.390625pt;}
.h3_c00055{height:87.783854pt;}
.h5_c00055{height:97.912760pt;}
.h4_c00055{height:108.041667pt;}
.h0_c00055{height:1229.066667pt;}
.h1_c00055{height:1229.333333pt;}
.w2_c00055{width:93.222667pt;}
.w0_c00055{width:767.266667pt;}
.w1_c00055{width:767.333333pt;}
.x0_c00055{left:0.000000pt;}
.xc_c00055{left:47.733333pt;}
.xb_c00055{left:51.600000pt;}
.x9_c00055{left:52.533333pt;}
.xa_c00055{left:54.000000pt;}
.x2_c00055{left:54.933333pt;}
.x8_c00055{left:55.866667pt;}
.x1_c00055{left:66.933333pt;}
.x7_c00055{left:80.800000pt;}
.x10_c00055{left:248.800000pt;}
.x12_c00055{left:249.866667pt;}
.x4_c00055{left:253.733333pt;}
.x5_c00055{left:254.666667pt;}
.x6_c00055{left:255.600000pt;}
.xf_c00055{left:256.533333pt;}
.x11_c00055{left:258.000000pt;}
.x14_c00055{left:259.866667pt;}
.x13_c00055{left:260.800000pt;}
.x3_c00055{left:296.800000pt;}
.xe_c00055{left:300.266667pt;}
.x15_c00055{left:340.801554pt;}
.xd_c00055{left:388.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c29eb35aedcfd8199ffeea9.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_6334ab9610818dadf596924e.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_136f7b0a617e90de39e74995.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_8f7033eb1f8463a56e3b9362.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_5703250d5c05e259e1bfbdc2.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00056;src:url('chunks/assets/font_7c9b0bd5dfb53515c1bee4d6.woff2')format("woff");}.ff6_c00056{font-family:ff6_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00056;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00056{font-family:ff7_c00056;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00056{vertical-align:-129.600000px;}
.v0_c00056{vertical-align:0.000000px;}
.ls3_c00056{letter-spacing:-6.000000px;}
.ls6_c00056{letter-spacing:-3.000000px;}
.ls4_c00056{letter-spacing:0.000000px;}
.ls1_c00056{letter-spacing:3.633000px;}
.ls5_c00056{letter-spacing:6.000000px;}
.ls0_c00056{letter-spacing:7.584000px;}
.ls8_c00056{letter-spacing:12.000000px;}
.ls7_c00056{letter-spacing:36.000000px;}
.ls2_c00056{letter-spacing:105.864000px;}
.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:-57.000000px;}
.ws6_c00056{word-spacing:-48.372000px;}
.ws3_c00056{word-spacing:-30.798000px;}
.ws0_c00056{word-spacing:-23.136000px;}
.ws2_c00056{word-spacing:-20.244000px;}
.ws4_c00056{word-spacing:-18.798000px;}
.ws5_c00056{word-spacing:-15.984000px;}
.ws7_c00056{word-spacing:0.000000px;}
._4e_c00056{margin-left:-89.280000px;}
._4f_c00056{margin-left:-83.220000px;}
._50_c00056{margin-left:-71.664000px;}
._49_c00056{margin-left:-65.394000px;}
._43_c00056{margin-left:-62.325000px;}
._46_c00056{margin-left:-44.268000px;}
._37_c00056{margin-left:-34.590000px;}
._36_c00056{margin-left:-29.952000px;}
._22_c00056{margin-left:-26.868000px;}
._26_c00056{margin-left:-24.960000px;}
._31_c00056{margin-left:-21.180000px;}
._27_c00056{margin-left:-19.680000px;}
._33_c00056{margin-left:-18.384000px;}
._30_c00056{margin-left:-17.352000px;}
._34_c00056{margin-left:-15.336000px;}
._42_c00056{margin-left:-13.311000px;}
._25_c00056{margin-left:-11.748000px;}
._28_c00056{margin-left:-9.240000px;}
._f_c00056{margin-left:-7.752000px;}
._1a_c00056{margin-left:-6.048000px;}
._e_c00056{margin-left:-4.878000px;}
._1f_c00056{margin-left:-3.648000px;}
._21_c00056{margin-left:-2.460000px;}
._7_c00056{margin-left:-1.440000px;}
._1_c00056{width:1.536000px;}
._0_c00056{width:3.264000px;}
._b_c00056{width:4.320000px;}
._4_c00056{width:5.568000px;}
._d_c00056{width:6.816000px;}
._a_c00056{width:8.064000px;}
._14_c00056{width:9.120000px;}
._c_c00056{width:10.272000px;}
._19_c00056{width:11.424000px;}
._3_c00056{width:12.480000px;}
._2c_c00056{width:13.536000px;}
._11_c00056{width:14.592000px;}
._1b_c00056{width:15.600000px;}
._10_c00056{width:16.800000px;}
._13_c00056{width:18.336000px;}
._5_c00056{width:19.584000px;}
._2b_c00056{width:21.576000px;}
._51_c00056{width:22.650000px;}
._29_c00056{width:24.192000px;}
._15_c00056{width:25.632000px;}
._12_c00056{width:27.744000px;}
._1d_c00056{width:29.298000px;}
._1c_c00056{width:30.624000px;}
._9_c00056{width:32.448000px;}
._18_c00056{width:34.062000px;}
._6_c00056{width:36.192000px;}
._32_c00056{width:37.272000px;}
._16_c00056{width:38.496000px;}
._35_c00056{width:40.032000px;}
._2_c00056{width:41.280000px;}
._17_c00056{width:42.816000px;}
._1e_c00056{width:45.330000px;}
._8_c00056{width:47.040000px;}
._38_c00056{width:49.128000px;}
._2d_c00056{width:51.648000px;}
._39_c00056{width:55.422000px;}
._20_c00056{width:58.656000px;}
._23_c00056{width:60.996000px;}
._3a_c00056{width:72.576000px;}
._3b_c00056{width:78.018000px;}
._40_c00056{width:87.873000px;}
._4d_c00056{width:95.976000px;}
._4a_c00056{width:107.328000px;}
._24_c00056{width:110.592000px;}
._48_c00056{width:118.392000px;}
._3e_c00056{width:138.912000px;}
._44_c00056{width:154.557000px;}
._47_c00056{width:181.716000px;}
._3d_c00056{width:201.060000px;}
._2f_c00056{width:245.520000px;}
._2e_c00056{width:289.050000px;}
._3c_c00056{width:290.208000px;}
._45_c00056{width:303.492000px;}
._2a_c00056{width:326.292000px;}
._3f_c00056{width:528.768000px;}
._4c_c00056{width:837.984000px;}
._4b_c00056{width:949.032000px;}
._41_c00056{width:1199.343000px;}
.fc2_c00056{color:transparent;}
.fc1_c00056{color:rgb(128,128,128);}
.fc0_c00056{color:rgb(0,0,0);}
.fs3_c00056{font-size:30.000000px;}
.fs8_c00056{font-size:36.000000px;}
.fs9_c00056{font-size:48.000000px;}
.fs0_c00056{font-size:60.000000px;}
.fs7_c00056{font-size:63.000000px;}
.fs6_c00056{font-size:78.000000px;}
.fs4_c00056{font-size:84.000000px;}
.fs5_c00056{font-size:87.000000px;}
.fs1_c00056{font-size:96.000000px;}
.fs2_c00056{font-size:102.000000px;}
.y0_c00056{bottom:0.000000px;}
.y39_c00056{bottom:3.105000px;}
.y38_c00056{bottom:7.228363px;}
.y26_c00056{bottom:86.850000px;}
.y37_c00056{bottom:116.400000px;}
.y25_c00056{bottom:121.500000px;}
.y36_c00056{bottom:147.150000px;}
.y24_c00056{bottom:155.550000px;}
.y35_c00056{bottom:177.300000px;}
.y23_c00056{bottom:189.750000px;}
.y34_c00056{bottom:207.900000px;}
.y22_c00056{bottom:220.050000px;}
.y21_c00056{bottom:233.850000px;}
.y33_c00056{bottom:237.600000px;}
.y20_c00056{bottom:256.950000px;}
.y32_c00056{bottom:268.350000px;}
.y31_c00056{bottom:297.750000px;}
.y1f_c00056{bottom:324.750000px;}
.y30_c00056{bottom:327.450000px;}
.y1e_c00056{bottom:358.200000px;}
.y1d_c00056{bottom:391.800000px;}
.y2f_c00056{bottom:417.600000px;}
.y1c_c00056{bottom:425.250000px;}
.y1b_c00056{bottom:459.000000px;}
.y2e_c00056{bottom:475.200000px;}
.y1a_c00056{bottom:492.150000px;}
.y19_c00056{bottom:525.600000px;}
.y18_c00056{bottom:558.750000px;}
.y17_c00056{bottom:591.750000px;}
.y16_c00056{bottom:624.750000px;}
.y15_c00056{bottom:658.200000px;}
.y2d_c00056{bottom:686.850000px;}
.y14_c00056{bottom:691.950000px;}
.y2c_c00056{bottom:718.500000px;}
.y13_c00056{bottom:724.350000px;}
.y2b_c00056{bottom:747.300000px;}
.y12_c00056{bottom:758.400000px;}
.y2a_c00056{bottom:777.000000px;}
.y11_c00056{bottom:779.400000px;}
.y10_c00056{bottom:791.100000px;}
.y29_c00056{bottom:806.250000px;}
.yf_c00056{bottom:824.550000px;}
.y28_c00056{bottom:835.650000px;}
.ye_c00056{bottom:857.550000px;}
.y27_c00056{bottom:865.650000px;}
.yd_c00056{bottom:897.450000px;}
.yc_c00056{bottom:906.300000px;}
.yb_c00056{bottom:925.050000px;}
.ya_c00056{bottom:991.200000px;}
.y9_c00056{bottom:1024.650000px;}
.y8_c00056{bottom:1057.500000px;}
.y7_c00056{bottom:1090.500000px;}
.y6_c00056{bottom:1123.950000px;}
.y5_c00056{bottom:1156.350000px;}
.y4_c00056{bottom:1189.350000px;}
.y3_c00056{bottom:1222.050000px;}
.y2_c00056{bottom:1255.200000px;}
.y1_c00056{bottom:1305.000000px;}
.h8_c00056{height:13.200074px;}
.h7_c00056{height:35.314453px;}
.h9_c00056{height:43.804688px;}
.h1_c00056{height:75.966797px;}
.h6_c00056{height:91.291992px;}
.h5_c00056{height:98.756836px;}
.h3_c00056{height:110.151855px;}
.h2_c00056{height:121.546875px;}
.h4_c00056{height:122.146875px;}
.h0_c00056{height:1363.500000px;}
.w2_c00056{width:104.875500px;}
.w1_c00056{width:864.750000px;}
.w0_c00056{width:865.050000px;}
.x0_c00056{left:0.000000px;}
.xd_c00056{left:23.400000px;}
.xc_c00056{left:24.600000px;}
.xe_c00056{left:25.650000px;}
.xa_c00056{left:26.700000px;}
.x5_c00056{left:28.350000px;}
.x4_c00056{left:29.400000px;}
.x3_c00056{left:31.050000px;}
.x2_c00056{left:32.100000px;}
.x9_c00056{left:74.250000px;}
.x10_c00056{left:80.250000px;}
.x6_c00056{left:186.000000px;}
.x7_c00056{left:320.850000px;}
.x8_c00056{left:333.150000px;}
.xf_c00056{left:367.650000px;}
.x1a_c00056{left:384.339249px;}
.xb_c00056{left:434.100000px;}
.x1_c00056{left:519.750000px;}
.x14_c00056{left:606.750000px;}
.x12_c00056{left:608.250000px;}
.x13_c00056{left:610.200000px;}
.x18_c00056{left:612.000000px;}
.x19_c00056{left:613.200000px;}
.x17_c00056{left:641.250000px;}
.x15_c00056{left:652.350000px;}
.x11_c00056{left:678.450000px;}
.x16_c00056{left:682.350000px;}
@media print{
.v1_c00056{vertical-align:-115.200000pt;}
.v0_c00056{vertical-align:0.000000pt;}
.ls3_c00056{letter-spacing:-5.333333pt;}
.ls6_c00056{letter-spacing:-2.666667pt;}
.ls4_c00056{letter-spacing:0.000000pt;}
.ls1_c00056{letter-spacing:3.229333pt;}
.ls5_c00056{letter-spacing:5.333333pt;}
.ls0_c00056{letter-spacing:6.741333pt;}
.ls8_c00056{letter-spacing:10.666667pt;}
.ls7_c00056{letter-spacing:32.000000pt;}
.ls2_c00056{letter-spacing:94.101333pt;}
.ws1_c00056{word-spacing:-50.666667pt;}
.ws6_c00056{word-spacing:-42.997333pt;}
.ws3_c00056{word-spacing:-27.376000pt;}
.ws0_c00056{word-spacing:-20.565333pt;}
.ws2_c00056{word-spacing:-17.994667pt;}
.ws4_c00056{word-spacing:-16.709333pt;}
.ws5_c00056{word-spacing:-14.208000pt;}
.ws7_c00056{word-spacing:0.000000pt;}
._4e_c00056{margin-left:-79.360000pt;}
._4f_c00056{margin-left:-73.973333pt;}
._50_c00056{margin-left:-63.701333pt;}
._49_c00056{margin-left:-58.128000pt;}
._43_c00056{margin-left:-55.400000pt;}
._46_c00056{margin-left:-39.349333pt;}
._37_c00056{margin-left:-30.746667pt;}
._36_c00056{margin-left:-26.624000pt;}
._22_c00056{margin-left:-23.882667pt;}
._26_c00056{margin-left:-22.186667pt;}
._31_c00056{margin-left:-18.826667pt;}
._27_c00056{margin-left:-17.493333pt;}
._33_c00056{margin-left:-16.341333pt;}
._30_c00056{margin-left:-15.424000pt;}
._34_c00056{margin-left:-13.632000pt;}
._42_c00056{margin-left:-11.832000pt;}
._25_c00056{margin-left:-10.442667pt;}
._28_c00056{margin-left:-8.213333pt;}
._f_c00056{margin-left:-6.890667pt;}
._1a_c00056{margin-left:-5.376000pt;}
._e_c00056{margin-left:-4.336000pt;}
._1f_c00056{margin-left:-3.242667pt;}
._21_c00056{margin-left:-2.186667pt;}
._7_c00056{margin-left:-1.280000pt;}
._1_c00056{width:1.365333pt;}
._0_c00056{width:2.901333pt;}
._b_c00056{width:3.840000pt;}
._4_c00056{width:4.949333pt;}
._d_c00056{width:6.058667pt;}
._a_c00056{width:7.168000pt;}
._14_c00056{width:8.106667pt;}
._c_c00056{width:9.130667pt;}
._19_c00056{width:10.154667pt;}
._3_c00056{width:11.093333pt;}
._2c_c00056{width:12.032000pt;}
._11_c00056{width:12.970667pt;}
._1b_c00056{width:13.866667pt;}
._10_c00056{width:14.933333pt;}
._13_c00056{width:16.298667pt;}
._5_c00056{width:17.408000pt;}
._2b_c00056{width:19.178667pt;}
._51_c00056{width:20.133333pt;}
._29_c00056{width:21.504000pt;}
._15_c00056{width:22.784000pt;}
._12_c00056{width:24.661333pt;}
._1d_c00056{width:26.042667pt;}
._1c_c00056{width:27.221333pt;}
._9_c00056{width:28.842667pt;}
._18_c00056{width:30.277333pt;}
._6_c00056{width:32.170667pt;}
._32_c00056{width:33.130667pt;}
._16_c00056{width:34.218667pt;}
._35_c00056{width:35.584000pt;}
._2_c00056{width:36.693333pt;}
._17_c00056{width:38.058667pt;}
._1e_c00056{width:40.293333pt;}
._8_c00056{width:41.813333pt;}
._38_c00056{width:43.669333pt;}
._2d_c00056{width:45.909333pt;}
._39_c00056{width:49.264000pt;}
._20_c00056{width:52.138667pt;}
._23_c00056{width:54.218667pt;}
._3a_c00056{width:64.512000pt;}
._3b_c00056{width:69.349333pt;}
._40_c00056{width:78.109333pt;}
._4d_c00056{width:85.312000pt;}
._4a_c00056{width:95.402667pt;}
._24_c00056{width:98.304000pt;}
._48_c00056{width:105.237333pt;}
._3e_c00056{width:123.477333pt;}
._44_c00056{width:137.384000pt;}
._47_c00056{width:161.525333pt;}
._3d_c00056{width:178.720000pt;}
._2f_c00056{width:218.240000pt;}
._2e_c00056{width:256.933333pt;}
._3c_c00056{width:257.962667pt;}
._45_c00056{width:269.770667pt;}
._2a_c00056{width:290.037333pt;}
._3f_c00056{width:470.016000pt;}
._4c_c00056{width:744.874667pt;}
._4b_c00056{width:843.584000pt;}
._41_c00056{width:1066.082667pt;}
.fs3_c00056{font-size:26.666667pt;}
.fs8_c00056{font-size:32.000000pt;}
.fs9_c00056{font-size:42.666667pt;}
.fs0_c00056{font-size:53.333333pt;}
.fs7_c00056{font-size:56.000000pt;}
.fs6_c00056{font-size:69.333333pt;}
.fs4_c00056{font-size:74.666667pt;}
.fs5_c00056{font-size:77.333333pt;}
.fs1_c00056{font-size:85.333333pt;}
.fs2_c00056{font-size:90.666667pt;}
.y0_c00056{bottom:0.000000pt;}
.y39_c00056{bottom:2.760000pt;}
.y38_c00056{bottom:6.425212pt;}
.y26_c00056{bottom:77.200000pt;}
.y37_c00056{bottom:103.466667pt;}
.y25_c00056{bottom:108.000000pt;}
.y36_c00056{bottom:130.800000pt;}
.y24_c00056{bottom:138.266667pt;}
.y35_c00056{bottom:157.600000pt;}
.y23_c00056{bottom:168.666667pt;}
.y34_c00056{bottom:184.800000pt;}
.y22_c00056{bottom:195.600000pt;}
.y21_c00056{bottom:207.866667pt;}
.y33_c00056{bottom:211.200000pt;}
.y20_c00056{bottom:228.400000pt;}
.y32_c00056{bottom:238.533333pt;}
.y31_c00056{bottom:264.666667pt;}
.y1f_c00056{bottom:288.666667pt;}
.y30_c00056{bottom:291.066667pt;}
.y1e_c00056{bottom:318.400000pt;}
.y1d_c00056{bottom:348.266667pt;}
.y2f_c00056{bottom:371.200000pt;}
.y1c_c00056{bottom:378.000000pt;}
.y1b_c00056{bottom:408.000000pt;}
.y2e_c00056{bottom:422.400000pt;}
.y1a_c00056{bottom:437.466667pt;}
.y19_c00056{bottom:467.200000pt;}
.y18_c00056{bottom:496.666667pt;}
.y17_c00056{bottom:526.000000pt;}
.y16_c00056{bottom:555.333333pt;}
.y15_c00056{bottom:585.066667pt;}
.y2d_c00056{bottom:610.533333pt;}
.y14_c00056{bottom:615.066667pt;}
.y2c_c00056{bottom:638.666667pt;}
.y13_c00056{bottom:643.866667pt;}
.y2b_c00056{bottom:664.266667pt;}
.y12_c00056{bottom:674.133333pt;}
.y2a_c00056{bottom:690.666667pt;}
.y11_c00056{bottom:692.800000pt;}
.y10_c00056{bottom:703.200000pt;}
.y29_c00056{bottom:716.666667pt;}
.yf_c00056{bottom:732.933333pt;}
.y28_c00056{bottom:742.800000pt;}
.ye_c00056{bottom:762.266667pt;}
.y27_c00056{bottom:769.466667pt;}
.yd_c00056{bottom:797.733333pt;}
.yc_c00056{bottom:805.600000pt;}
.yb_c00056{bottom:822.266667pt;}
.ya_c00056{bottom:881.066667pt;}
.y9_c00056{bottom:910.800000pt;}
.y8_c00056{bottom:940.000000pt;}
.y7_c00056{bottom:969.333333pt;}
.y6_c00056{bottom:999.066667pt;}
.y5_c00056{bottom:1027.866667pt;}
.y4_c00056{bottom:1057.200000pt;}
.y3_c00056{bottom:1086.266667pt;}
.y2_c00056{bottom:1115.733333pt;}
.y1_c00056{bottom:1160.000000pt;}
.h8_c00056{height:11.733399pt;}
.h7_c00056{height:31.390625pt;}
.h9_c00056{height:38.937500pt;}
.h1_c00056{height:67.526042pt;}
.h6_c00056{height:81.148438pt;}
.h5_c00056{height:87.783854pt;}
.h3_c00056{height:97.912760pt;}
.h2_c00056{height:108.041667pt;}
.h4_c00056{height:108.575000pt;}
.h0_c00056{height:1212.000000pt;}
.w2_c00056{width:93.222667pt;}
.w1_c00056{width:768.666667pt;}
.w0_c00056{width:768.933333pt;}
.x0_c00056{left:0.000000pt;}
.xd_c00056{left:20.800000pt;}
.xc_c00056{left:21.866667pt;}
.xe_c00056{left:22.800000pt;}
.xa_c00056{left:23.733333pt;}
.x5_c00056{left:25.200000pt;}
.x4_c00056{left:26.133333pt;}
.x3_c00056{left:27.600000pt;}
.x2_c00056{left:28.533333pt;}
.x9_c00056{left:66.000000pt;}
.x10_c00056{left:71.333333pt;}
.x6_c00056{left:165.333333pt;}
.x7_c00056{left:285.200000pt;}
.x8_c00056{left:296.133333pt;}
.xf_c00056{left:326.800000pt;}
.x1a_c00056{left:341.634888pt;}
.xb_c00056{left:385.866667pt;}
.x1_c00056{left:462.000000pt;}
.x14_c00056{left:539.333333pt;}
.x12_c00056{left:540.666667pt;}
.x13_c00056{left:542.400000pt;}
.x18_c00056{left:544.000000pt;}
.x19_c00056{left:545.066667pt;}
.x17_c00056{left:570.000000pt;}
.x15_c00056{left:579.866667pt;}
.x11_c00056{left:603.066667pt;}
.x16_c00056{left:606.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d8eeb6999986bd3f22d79131.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_31fce5b1ab54f52582679324.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_0dc3b0b99e39fd995ec839f9.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00057;src:url('chunks/assets/font_929980addba4bab9cd0831e2.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00057;src:url('chunks/assets/font_2a5e7074c2ef39cd47f104d8.woff2')format("woff");}.ff6_c00057{font-family:ff6_c00057;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00057;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00057{font-family:ff7_c00057;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.lsa_c00057{letter-spacing:-6.000000px;}
.ls9_c00057{letter-spacing:0.000000px;}
.ls7_c00057{letter-spacing:1.800000px;}
.ls6_c00057{letter-spacing:2.400000px;}
.ls3_c00057{letter-spacing:4.752000px;}
.ls8_c00057{letter-spacing:6.000000px;}
.ls2_c00057{letter-spacing:13.152000px;}
.ls0_c00057{letter-spacing:22.800000px;}
.ls1_c00057{letter-spacing:24.600000px;}
.ls4_c00057{letter-spacing:82.464000px;}
.ls5_c00057{letter-spacing:90.864000px;}
.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;}
}
.ws4_c00057{word-spacing:-53.856000px;}
.ws5_c00057{word-spacing:-43.084800px;}
.ws0_c00057{word-spacing:-23.136000px;}
.ws3_c00057{word-spacing:-20.244000px;}
.ws2_c00057{word-spacing:-1.560000px;}
.ws6_c00057{word-spacing:0.000000px;}
.ws1_c00057{word-spacing:14.976000px;}
._2a_c00057{margin-left:-86.700000px;}
._34_c00057{margin-left:-51.456000px;}
._31_c00057{margin-left:-36.804000px;}
._45_c00057{margin-left:-28.128000px;}
._0_c00057{margin-left:-19.260000px;}
._33_c00057{margin-left:-18.240000px;}
._2b_c00057{margin-left:-16.164000px;}
._3d_c00057{margin-left:-14.016000px;}
._5_c00057{margin-left:-12.792000px;}
._46_c00057{margin-left:-11.568000px;}
._1a_c00057{margin-left:-10.176000px;}
._2d_c00057{margin-left:-8.232000px;}
._6_c00057{margin-left:-7.008000px;}
._3_c00057{margin-left:-5.760000px;}
._2_c00057{margin-left:-4.608000px;}
._18_c00057{margin-left:-3.480000px;}
._4_c00057{margin-left:-2.400000px;}
._15_c00057{margin-left:-1.344000px;}
._12_c00057{width:1.152000px;}
._8_c00057{width:2.208000px;}
._9_c00057{width:3.360000px;}
._c_c00057{width:4.428000px;}
._26_c00057{width:5.472000px;}
._d_c00057{width:6.528000px;}
._b_c00057{width:7.776000px;}
._e_c00057{width:9.336000px;}
._1_c00057{width:10.836000px;}
._37_c00057{width:12.024000px;}
._22_c00057{width:13.440000px;}
._7_c00057{width:14.688000px;}
._2c_c00057{width:15.828000px;}
._20_c00057{width:17.352000px;}
._a_c00057{width:19.320000px;}
._54_c00057{width:20.352000px;}
._17_c00057{width:21.600000px;}
._4a_c00057{width:22.692000px;}
._1b_c00057{width:24.564000px;}
._24_c00057{width:26.532000px;}
._25_c00057{width:27.696000px;}
._41_c00057{width:29.028000px;}
._1f_c00057{width:30.096000px;}
._1c_c00057{width:32.244000px;}
._43_c00057{width:33.804000px;}
._42_c00057{width:35.436000px;}
._10_c00057{width:36.480000px;}
._29_c00057{width:38.016000px;}
._23_c00057{width:39.072000px;}
._f_c00057{width:40.800000px;}
._13_c00057{width:43.296000px;}
._40_c00057{width:44.784000px;}
._11_c00057{width:46.176000px;}
._16_c00057{width:48.000000px;}
._27_c00057{width:49.200000px;}
._21_c00057{width:50.280000px;}
._14_c00057{width:51.840000px;}
._28_c00057{width:54.456000px;}
._51_c00057{width:60.060000px;}
._19_c00057{width:64.560000px;}
._1d_c00057{width:69.804000px;}
._47_c00057{width:73.824000px;}
._32_c00057{width:74.880000px;}
._4e_c00057{width:81.696000px;}
._3a_c00057{width:82.848000px;}
._3e_c00057{width:92.352000px;}
._36_c00057{width:95.040000px;}
._4b_c00057{width:109.068000px;}
._4d_c00057{width:125.184000px;}
._35_c00057{width:150.528000px;}
._3c_c00057{width:174.828000px;}
._39_c00057{width:183.420000px;}
._53_c00057{width:194.412000px;}
._2f_c00057{width:220.032000px;}
._50_c00057{width:222.384000px;}
._48_c00057{width:262.380000px;}
._2e_c00057{width:280.032000px;}
._38_c00057{width:289.248000px;}
._30_c00057{width:291.240000px;}
._1e_c00057{width:383.376000px;}
._4c_c00057{width:400.356000px;}
._3b_c00057{width:420.204000px;}
._49_c00057{width:516.708000px;}
._3f_c00057{width:590.016000px;}
._4f_c00057{width:601.680000px;}
._52_c00057{width:693.960000px;}
._44_c00057{width:1068.252000px;}
._55_c00057{width:1882.012800px;}
.fc2_c00057{color:transparent;}
.fc1_c00057{color:rgb(128,128,128);}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:36.000000px;}
.fs6_c00057{font-size:48.000000px;}
.fs4_c00057{font-size:60.000000px;}
.fs5_c00057{font-size:76.800000px;}
.fs3_c00057{font-size:84.000000px;}
.fs1_c00057{font-size:96.000000px;}
.fs2_c00057{font-size:102.000000px;}
.y0_c00057{bottom:0.000000px;}
.y25_c00057{bottom:3.105000px;}
.y24_c00057{bottom:7.228357px;}
.y23_c00057{bottom:90.180000px;}
.y22_c00057{bottom:124.980000px;}
.y21_c00057{bottom:160.080000px;}
.y20_c00057{bottom:194.130000px;}
.y1f_c00057{bottom:227.580000px;}
.y1e_c00057{bottom:262.530000px;}
.y1d_c00057{bottom:296.430000px;}
.y1c_c00057{bottom:329.430000px;}
.y1b_c00057{bottom:363.180000px;}
.y1a_c00057{bottom:396.330000px;}
.y19_c00057{bottom:437.730000px;}
.y18_c00057{bottom:468.780000px;}
.y17_c00057{bottom:501.630000px;}
.y16_c00057{bottom:534.330000px;}
.y15_c00057{bottom:565.980000px;}
.y14_c00057{bottom:598.830000px;}
.y13_c00057{bottom:629.880000px;}
.y12_c00057{bottom:700.080000px;}
.y11_c00057{bottom:767.130000px;}
.y10_c00057{bottom:803.280000px;}
.yf_c00057{bottom:835.380000px;}
.ye_c00057{bottom:867.480000px;}
.yd_c00057{bottom:902.130000px;}
.yc_c00057{bottom:935.280000px;}
.yb_c00057{bottom:967.980000px;}
.ya_c00057{bottom:1002.030000px;}
.y9_c00057{bottom:1033.830000px;}
.y8_c00057{bottom:1067.580000px;}
.y7_c00057{bottom:1099.980000px;}
.y6_c00057{bottom:1134.030000px;}
.y5_c00057{bottom:1167.780000px;}
.y4_c00057{bottom:1198.530000px;}
.y3_c00057{bottom:1231.980000px;}
.y2_c00057{bottom:1264.980000px;}
.y1_c00057{bottom:1293.630000px;}
.h4_c00057{height:13.200074px;}
.h5_c00057{height:43.804688px;}
.h2_c00057{height:45.580078px;}
.h3_c00057{height:121.546875px;}
.h0_c00057{height:1382.700000px;}
.h1_c00057{height:1383.000000px;}
.w2_c00057{width:104.875500px;}
.w0_c00057{width:863.175000px;}
.w1_c00057{width:863.250000px;}
.x0_c00057{left:0.000000px;}
.xe_c00057{left:59.100000px;}
.x8_c00057{left:63.000000px;}
.x7_c00057{left:64.500000px;}
.xd_c00057{left:66.750000px;}
.xc_c00057{left:67.800000px;}
.xb_c00057{left:68.850000px;}
.xf_c00057{left:79.650000px;}
.xa_c00057{left:97.500000px;}
.x10_c00057{left:125.850000px;}
.x3_c00057{left:277.800000px;}
.x2_c00057{left:279.450000px;}
.x4_c00057{left:280.500000px;}
.x5_c00057{left:282.150000px;}
.x6_c00057{left:283.800000px;}
.x11_c00057{left:284.850000px;}
.x9_c00057{left:296.250000px;}
.x12_c00057{left:300.450000px;}
.x1_c00057{left:323.700000px;}
.x13_c00057{left:383.401749px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.lsa_c00057{letter-spacing:-5.333333pt;}
.ls9_c00057{letter-spacing:0.000000pt;}
.ls7_c00057{letter-spacing:1.600000pt;}
.ls6_c00057{letter-spacing:2.133333pt;}
.ls3_c00057{letter-spacing:4.224000pt;}
.ls8_c00057{letter-spacing:5.333333pt;}
.ls2_c00057{letter-spacing:11.690667pt;}
.ls0_c00057{letter-spacing:20.266667pt;}
.ls1_c00057{letter-spacing:21.866667pt;}
.ls4_c00057{letter-spacing:73.301333pt;}
.ls5_c00057{letter-spacing:80.768000pt;}
.ws4_c00057{word-spacing:-47.872000pt;}
.ws5_c00057{word-spacing:-38.297600pt;}
.ws0_c00057{word-spacing:-20.565333pt;}
.ws3_c00057{word-spacing:-17.994667pt;}
.ws2_c00057{word-spacing:-1.386667pt;}
.ws6_c00057{word-spacing:0.000000pt;}
.ws1_c00057{word-spacing:13.312000pt;}
._2a_c00057{margin-left:-77.066667pt;}
._34_c00057{margin-left:-45.738667pt;}
._31_c00057{margin-left:-32.714667pt;}
._45_c00057{margin-left:-25.002667pt;}
._0_c00057{margin-left:-17.120000pt;}
._33_c00057{margin-left:-16.213333pt;}
._2b_c00057{margin-left:-14.368000pt;}
._3d_c00057{margin-left:-12.458667pt;}
._5_c00057{margin-left:-11.370667pt;}
._46_c00057{margin-left:-10.282667pt;}
._1a_c00057{margin-left:-9.045333pt;}
._2d_c00057{margin-left:-7.317333pt;}
._6_c00057{margin-left:-6.229333pt;}
._3_c00057{margin-left:-5.120000pt;}
._2_c00057{margin-left:-4.096000pt;}
._18_c00057{margin-left:-3.093333pt;}
._4_c00057{margin-left:-2.133333pt;}
._15_c00057{margin-left:-1.194667pt;}
._12_c00057{width:1.024000pt;}
._8_c00057{width:1.962667pt;}
._9_c00057{width:2.986667pt;}
._c_c00057{width:3.936000pt;}
._26_c00057{width:4.864000pt;}
._d_c00057{width:5.802667pt;}
._b_c00057{width:6.912000pt;}
._e_c00057{width:8.298667pt;}
._1_c00057{width:9.632000pt;}
._37_c00057{width:10.688000pt;}
._22_c00057{width:11.946667pt;}
._7_c00057{width:13.056000pt;}
._2c_c00057{width:14.069333pt;}
._20_c00057{width:15.424000pt;}
._a_c00057{width:17.173333pt;}
._54_c00057{width:18.090667pt;}
._17_c00057{width:19.200000pt;}
._4a_c00057{width:20.170667pt;}
._1b_c00057{width:21.834667pt;}
._24_c00057{width:23.584000pt;}
._25_c00057{width:24.618667pt;}
._41_c00057{width:25.802667pt;}
._1f_c00057{width:26.752000pt;}
._1c_c00057{width:28.661333pt;}
._43_c00057{width:30.048000pt;}
._42_c00057{width:31.498667pt;}
._10_c00057{width:32.426667pt;}
._29_c00057{width:33.792000pt;}
._23_c00057{width:34.730667pt;}
._f_c00057{width:36.266667pt;}
._13_c00057{width:38.485333pt;}
._40_c00057{width:39.808000pt;}
._11_c00057{width:41.045333pt;}
._16_c00057{width:42.666667pt;}
._27_c00057{width:43.733333pt;}
._21_c00057{width:44.693333pt;}
._14_c00057{width:46.080000pt;}
._28_c00057{width:48.405333pt;}
._51_c00057{width:53.386667pt;}
._19_c00057{width:57.386667pt;}
._1d_c00057{width:62.048000pt;}
._47_c00057{width:65.621333pt;}
._32_c00057{width:66.560000pt;}
._4e_c00057{width:72.618667pt;}
._3a_c00057{width:73.642667pt;}
._3e_c00057{width:82.090667pt;}
._36_c00057{width:84.480000pt;}
._4b_c00057{width:96.949333pt;}
._4d_c00057{width:111.274667pt;}
._35_c00057{width:133.802667pt;}
._3c_c00057{width:155.402667pt;}
._39_c00057{width:163.040000pt;}
._53_c00057{width:172.810667pt;}
._2f_c00057{width:195.584000pt;}
._50_c00057{width:197.674667pt;}
._48_c00057{width:233.226667pt;}
._2e_c00057{width:248.917333pt;}
._38_c00057{width:257.109333pt;}
._30_c00057{width:258.880000pt;}
._1e_c00057{width:340.778667pt;}
._4c_c00057{width:355.872000pt;}
._3b_c00057{width:373.514667pt;}
._49_c00057{width:459.296000pt;}
._3f_c00057{width:524.458667pt;}
._4f_c00057{width:534.826667pt;}
._52_c00057{width:616.853333pt;}
._44_c00057{width:949.557333pt;}
._55_c00057{width:1672.900267pt;}
.fs0_c00057{font-size:32.000000pt;}
.fs6_c00057{font-size:42.666667pt;}
.fs4_c00057{font-size:53.333333pt;}
.fs5_c00057{font-size:68.266667pt;}
.fs3_c00057{font-size:74.666667pt;}
.fs1_c00057{font-size:85.333333pt;}
.fs2_c00057{font-size:90.666667pt;}
.y0_c00057{bottom:0.000000pt;}
.y25_c00057{bottom:2.760000pt;}
.y24_c00057{bottom:6.425206pt;}
.y23_c00057{bottom:80.160000pt;}
.y22_c00057{bottom:111.093333pt;}
.y21_c00057{bottom:142.293333pt;}
.y20_c00057{bottom:172.560000pt;}
.y1f_c00057{bottom:202.293333pt;}
.y1e_c00057{bottom:233.360000pt;}
.y1d_c00057{bottom:263.493333pt;}
.y1c_c00057{bottom:292.826667pt;}
.y1b_c00057{bottom:322.826667pt;}
.y1a_c00057{bottom:352.293333pt;}
.y19_c00057{bottom:389.093333pt;}
.y18_c00057{bottom:416.693333pt;}
.y17_c00057{bottom:445.893333pt;}
.y16_c00057{bottom:474.960000pt;}
.y15_c00057{bottom:503.093333pt;}
.y14_c00057{bottom:532.293333pt;}
.y13_c00057{bottom:559.893333pt;}
.y12_c00057{bottom:622.293333pt;}
.y11_c00057{bottom:681.893333pt;}
.y10_c00057{bottom:714.026667pt;}
.yf_c00057{bottom:742.560000pt;}
.ye_c00057{bottom:771.093333pt;}
.yd_c00057{bottom:801.893333pt;}
.yc_c00057{bottom:831.360000pt;}
.yb_c00057{bottom:860.426667pt;}
.ya_c00057{bottom:890.693333pt;}
.y9_c00057{bottom:918.960000pt;}
.y8_c00057{bottom:948.960000pt;}
.y7_c00057{bottom:977.760000pt;}
.y6_c00057{bottom:1008.026667pt;}
.y5_c00057{bottom:1038.026667pt;}
.y4_c00057{bottom:1065.360000pt;}
.y3_c00057{bottom:1095.093333pt;}
.y2_c00057{bottom:1124.426667pt;}
.y1_c00057{bottom:1149.893333pt;}
.h4_c00057{height:11.733399pt;}
.h5_c00057{height:38.937500pt;}
.h2_c00057{height:40.515625pt;}
.h3_c00057{height:108.041667pt;}
.h0_c00057{height:1229.066667pt;}
.h1_c00057{height:1229.333333pt;}
.w2_c00057{width:93.222667pt;}
.w0_c00057{width:767.266667pt;}
.w1_c00057{width:767.333333pt;}
.x0_c00057{left:0.000000pt;}
.xe_c00057{left:52.533333pt;}
.x8_c00057{left:56.000000pt;}
.x7_c00057{left:57.333333pt;}
.xd_c00057{left:59.333333pt;}
.xc_c00057{left:60.266667pt;}
.xb_c00057{left:61.200000pt;}
.xf_c00057{left:70.800000pt;}
.xa_c00057{left:86.666667pt;}
.x10_c00057{left:111.866667pt;}
.x3_c00057{left:246.933333pt;}
.x2_c00057{left:248.400000pt;}
.x4_c00057{left:249.333333pt;}
.x5_c00057{left:250.800000pt;}
.x6_c00057{left:252.266667pt;}
.x11_c00057{left:253.200000pt;}
.x9_c00057{left:263.333333pt;}
.x12_c00057{left:267.066667pt;}
.x1_c00057{left:287.733333pt;}
.x13_c00057{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cccd9a1e875170bf939d1e68.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_5ddaddc912af6f4bd51f80f4.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_d4c9c50f7d452740526fa90a.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_d9fcfc79cc47578fdbd60c1f.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00058;src:url('chunks/assets/font_a5f701dcdb240ce234bf455c.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00058;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00058{font-family:ff6_c00058;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls2_c00058{letter-spacing:0.000000px;}
.ls1_c00058{letter-spacing:4.200000px;}
.ls3_c00058{letter-spacing:6.000000px;}
.ls0_c00058{letter-spacing:9.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00058{word-spacing:-57.000000px;}
.ws0_c00058{word-spacing:-32.424000px;}
.ws1_c00058{word-spacing:-25.939200px;}
.ws3_c00058{word-spacing:-23.136000px;}
.ws4_c00058{word-spacing:-20.244000px;}
.ws5_c00058{word-spacing:0.000000px;}
._28_c00058{margin-left:-84.288000px;}
._1e_c00058{margin-left:-30.528000px;}
._31_c00058{margin-left:-28.512000px;}
._21_c00058{margin-left:-24.768000px;}
._2a_c00058{margin-left:-22.944000px;}
._2b_c00058{margin-left:-21.336000px;}
._2d_c00058{margin-left:-18.168000px;}
._34_c00058{margin-left:-16.128000px;}
._35_c00058{margin-left:-14.976000px;}
._13_c00058{margin-left:-12.768000px;}
._24_c00058{margin-left:-10.656000px;}
._14_c00058{margin-left:-9.120000px;}
._25_c00058{margin-left:-7.488000px;}
._3_c00058{margin-left:-6.144000px;}
._1b_c00058{margin-left:-4.320000px;}
._16_c00058{margin-left:-2.784000px;}
._d_c00058{margin-left:-1.056000px;}
._5_c00058{width:1.248000px;}
._0_c00058{width:2.784000px;}
._1_c00058{width:4.608000px;}
._18_c00058{width:5.952000px;}
._8_c00058{width:7.200000px;}
._15_c00058{width:8.640000px;}
._11_c00058{width:9.696000px;}
._26_c00058{width:11.040000px;}
._9_c00058{width:12.576000px;}
._2e_c00058{width:14.016000px;}
._b_c00058{width:15.264000px;}
._1d_c00058{width:16.608000px;}
._23_c00058{width:17.664000px;}
._6_c00058{width:19.104000px;}
._10_c00058{width:21.216000px;}
._39_c00058{width:24.192000px;}
._4_c00058{width:25.440000px;}
._e_c00058{width:27.072000px;}
._1a_c00058{width:28.512000px;}
._2f_c00058{width:29.952000px;}
._19_c00058{width:31.680000px;}
._c_c00058{width:33.216000px;}
._20_c00058{width:34.464000px;}
._1f_c00058{width:36.192000px;}
._1c_c00058{width:37.248000px;}
._7_c00058{width:38.592000px;}
._12_c00058{width:39.648000px;}
._30_c00058{width:41.088000px;}
._f_c00058{width:42.240000px;}
._3b_c00058{width:43.296000px;}
._32_c00058{width:44.352000px;}
._17_c00058{width:47.040000px;}
._3a_c00058{width:48.768000px;}
._2_c00058{width:49.968000px;}
._a_c00058{width:52.128000px;}
._33_c00058{width:54.336000px;}
._36_c00058{width:56.736000px;}
._3c_c00058{width:59.232000px;}
._37_c00058{width:60.672000px;}
._38_c00058{width:139.392000px;}
._3d_c00058{width:153.216000px;}
._29_c00058{width:210.960000px;}
._27_c00058{width:343.872000px;}
._2c_c00058{width:417.600000px;}
._22_c00058{width:735.264000px;}
._3e_c00058{width:1729.440000px;}
.fc2_c00058{color:transparent;}
.fc1_c00058{color:rgb(128,128,128);}
.fc0_c00058{color:rgb(0,0,0);}
.fs5_c00058{font-size:48.000000px;}
.fs4_c00058{font-size:63.000000px;}
.fs3_c00058{font-size:67.200000px;}
.fs2_c00058{font-size:84.000000px;}
.fs0_c00058{font-size:96.000000px;}
.fs1_c00058{font-size:102.000000px;}
.y0_c00058{bottom:0.000000px;}
.y27_c00058{bottom:3.105000px;}
.y26_c00058{bottom:7.228369px;}
.y25_c00058{bottom:75.570000px;}
.y24_c00058{bottom:104.970000px;}
.y23_c00058{bottom:139.320000px;}
.y22_c00058{bottom:173.520000px;}
.y21_c00058{bottom:207.270000px;}
.y20_c00058{bottom:237.870000px;}
.y1f_c00058{bottom:273.420000px;}
.y1e_c00058{bottom:307.470000px;}
.y1d_c00058{bottom:341.520000px;}
.y1c_c00058{bottom:373.620000px;}
.y1b_c00058{bottom:408.720000px;}
.y1a_c00058{bottom:441.720000px;}
.y19_c00058{bottom:475.470000px;}
.y18_c00058{bottom:508.620000px;}
.y17_c00058{bottom:541.920000px;}
.y16_c00058{bottom:575.070000px;}
.y15_c00058{bottom:607.770000px;}
.y14_c00058{bottom:640.620000px;}
.y13_c00058{bottom:674.220000px;}
.y12_c00058{bottom:707.670000px;}
.y11_c00058{bottom:740.820000px;}
.y10_c00058{bottom:774.270000px;}
.yf_c00058{bottom:806.970000px;}
.ye_c00058{bottom:840.420000px;}
.yd_c00058{bottom:873.120000px;}
.yc_c00058{bottom:906.570000px;}
.yb_c00058{bottom:938.520000px;}
.ya_c00058{bottom:973.320000px;}
.y9_c00058{bottom:1005.720000px;}
.y8_c00058{bottom:1039.770000px;}
.y7_c00058{bottom:1074.870000px;}
.y6_c00058{bottom:1105.920000px;}
.y5_c00058{bottom:1138.620000px;}
.y4_c00058{bottom:1172.370000px;}
.y3_c00058{bottom:1204.920000px;}
.y2_c00058{bottom:1237.620000px;}
.y1_c00058{bottom:1269.570000px;}
.h4_c00058{height:13.200073px;}
.h5_c00058{height:43.804688px;}
.h3_c00058{height:54.269824px;}
.h2_c00058{height:121.546875px;}
.h0_c00058{height:1383.450000px;}
.h1_c00058{height:1383.750000px;}
.w2_c00058{width:104.875500px;}
.w0_c00058{width:878.025000px;}
.w1_c00058{width:878.250000px;}
.x0_c00058{left:0.000000px;}
.xa_c00058{left:18.000000px;}
.xb_c00058{left:19.650000px;}
.x9_c00058{left:20.700000px;}
.x8_c00058{left:22.350000px;}
.x7_c00058{left:24.000000px;}
.x6_c00058{left:25.050000px;}
.x5_c00058{left:26.100000px;}
.x4_c00058{left:27.300000px;}
.x3_c00058{left:28.800000px;}
.x2_c00058{left:30.000000px;}
.x1_c00058{left:31.500000px;}
.xd_c00058{left:390.826721px;}
.xc_c00058{left:706.500000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls2_c00058{letter-spacing:0.000000pt;}
.ls1_c00058{letter-spacing:3.733333pt;}
.ls3_c00058{letter-spacing:5.333333pt;}
.ls0_c00058{letter-spacing:8.000000pt;}
.ws2_c00058{word-spacing:-50.666667pt;}
.ws0_c00058{word-spacing:-28.821333pt;}
.ws1_c00058{word-spacing:-23.057067pt;}
.ws3_c00058{word-spacing:-20.565333pt;}
.ws4_c00058{word-spacing:-17.994667pt;}
.ws5_c00058{word-spacing:0.000000pt;}
._28_c00058{margin-left:-74.922667pt;}
._1e_c00058{margin-left:-27.136000pt;}
._31_c00058{margin-left:-25.344000pt;}
._21_c00058{margin-left:-22.016000pt;}
._2a_c00058{margin-left:-20.394667pt;}
._2b_c00058{margin-left:-18.965333pt;}
._2d_c00058{margin-left:-16.149333pt;}
._34_c00058{margin-left:-14.336000pt;}
._35_c00058{margin-left:-13.312000pt;}
._13_c00058{margin-left:-11.349333pt;}
._24_c00058{margin-left:-9.472000pt;}
._14_c00058{margin-left:-8.106667pt;}
._25_c00058{margin-left:-6.656000pt;}
._3_c00058{margin-left:-5.461333pt;}
._1b_c00058{margin-left:-3.840000pt;}
._16_c00058{margin-left:-2.474667pt;}
._d_c00058{margin-left:-0.938667pt;}
._5_c00058{width:1.109333pt;}
._0_c00058{width:2.474667pt;}
._1_c00058{width:4.096000pt;}
._18_c00058{width:5.290667pt;}
._8_c00058{width:6.400000pt;}
._15_c00058{width:7.680000pt;}
._11_c00058{width:8.618667pt;}
._26_c00058{width:9.813333pt;}
._9_c00058{width:11.178667pt;}
._2e_c00058{width:12.458667pt;}
._b_c00058{width:13.568000pt;}
._1d_c00058{width:14.762667pt;}
._23_c00058{width:15.701333pt;}
._6_c00058{width:16.981333pt;}
._10_c00058{width:18.858667pt;}
._39_c00058{width:21.504000pt;}
._4_c00058{width:22.613333pt;}
._e_c00058{width:24.064000pt;}
._1a_c00058{width:25.344000pt;}
._2f_c00058{width:26.624000pt;}
._19_c00058{width:28.160000pt;}
._c_c00058{width:29.525333pt;}
._20_c00058{width:30.634667pt;}
._1f_c00058{width:32.170667pt;}
._1c_c00058{width:33.109333pt;}
._7_c00058{width:34.304000pt;}
._12_c00058{width:35.242667pt;}
._30_c00058{width:36.522667pt;}
._f_c00058{width:37.546667pt;}
._3b_c00058{width:38.485333pt;}
._32_c00058{width:39.424000pt;}
._17_c00058{width:41.813333pt;}
._3a_c00058{width:43.349333pt;}
._2_c00058{width:44.416000pt;}
._a_c00058{width:46.336000pt;}
._33_c00058{width:48.298667pt;}
._36_c00058{width:50.432000pt;}
._3c_c00058{width:52.650667pt;}
._37_c00058{width:53.930667pt;}
._38_c00058{width:123.904000pt;}
._3d_c00058{width:136.192000pt;}
._29_c00058{width:187.520000pt;}
._27_c00058{width:305.664000pt;}
._2c_c00058{width:371.200000pt;}
._22_c00058{width:653.568000pt;}
._3e_c00058{width:1537.280000pt;}
.fs5_c00058{font-size:42.666667pt;}
.fs4_c00058{font-size:56.000000pt;}
.fs3_c00058{font-size:59.733333pt;}
.fs2_c00058{font-size:74.666667pt;}
.fs0_c00058{font-size:85.333333pt;}
.fs1_c00058{font-size:90.666667pt;}
.y0_c00058{bottom:0.000000pt;}
.y27_c00058{bottom:2.760000pt;}
.y26_c00058{bottom:6.425217pt;}
.y25_c00058{bottom:67.173333pt;}
.y24_c00058{bottom:93.306667pt;}
.y23_c00058{bottom:123.840000pt;}
.y22_c00058{bottom:154.240000pt;}
.y21_c00058{bottom:184.240000pt;}
.y20_c00058{bottom:211.440000pt;}
.y1f_c00058{bottom:243.040000pt;}
.y1e_c00058{bottom:273.306667pt;}
.y1d_c00058{bottom:303.573333pt;}
.y1c_c00058{bottom:332.106667pt;}
.y1b_c00058{bottom:363.306667pt;}
.y1a_c00058{bottom:392.640000pt;}
.y19_c00058{bottom:422.640000pt;}
.y18_c00058{bottom:452.106667pt;}
.y17_c00058{bottom:481.706667pt;}
.y16_c00058{bottom:511.173333pt;}
.y15_c00058{bottom:540.240000pt;}
.y14_c00058{bottom:569.440000pt;}
.y13_c00058{bottom:599.306667pt;}
.y12_c00058{bottom:629.040000pt;}
.y11_c00058{bottom:658.506667pt;}
.y10_c00058{bottom:688.240000pt;}
.yf_c00058{bottom:717.306667pt;}
.ye_c00058{bottom:747.040000pt;}
.yd_c00058{bottom:776.106667pt;}
.yc_c00058{bottom:805.840000pt;}
.yb_c00058{bottom:834.240000pt;}
.ya_c00058{bottom:865.173333pt;}
.y9_c00058{bottom:893.973333pt;}
.y8_c00058{bottom:924.240000pt;}
.y7_c00058{bottom:955.440000pt;}
.y6_c00058{bottom:983.040000pt;}
.y5_c00058{bottom:1012.106667pt;}
.y4_c00058{bottom:1042.106667pt;}
.y3_c00058{bottom:1071.040000pt;}
.y2_c00058{bottom:1100.106667pt;}
.y1_c00058{bottom:1128.506667pt;}
.h4_c00058{height:11.733399pt;}
.h5_c00058{height:38.937500pt;}
.h3_c00058{height:48.239844pt;}
.h2_c00058{height:108.041667pt;}
.h0_c00058{height:1229.733333pt;}
.h1_c00058{height:1230.000000pt;}
.w2_c00058{width:93.222667pt;}
.w0_c00058{width:780.466667pt;}
.w1_c00058{width:780.666667pt;}
.x0_c00058{left:0.000000pt;}
.xa_c00058{left:16.000000pt;}
.xb_c00058{left:17.466667pt;}
.x9_c00058{left:18.400000pt;}
.x8_c00058{left:19.866667pt;}
.x7_c00058{left:21.333333pt;}
.x6_c00058{left:22.266667pt;}
.x5_c00058{left:23.200000pt;}
.x4_c00058{left:24.266667pt;}
.x3_c00058{left:25.600000pt;}
.x2_c00058{left:26.666667pt;}
.x1_c00058{left:28.000000pt;}
.xd_c00058{left:347.401530pt;}
.xc_c00058{left:628.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_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_4506c3cfe9e93b336f821f17.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_2ca6d7294143b852037aefc4.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_ad9b7e3d4479715e0e76ecc3.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;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_c00059;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls9_c00059{letter-spacing:0.000000px;}
.ls4_c00059{letter-spacing:2.352000px;}
.ls1_c00059{letter-spacing:5.184000px;}
.lsa_c00059{letter-spacing:6.000000px;}
.ls6_c00059{letter-spacing:7.584000px;}
.ls5_c00059{letter-spacing:8.520000px;}
.ls8_c00059{letter-spacing:19.032000px;}
.ls2_c00059{letter-spacing:29.433000px;}
.ls7_c00059{letter-spacing:46.833000px;}
.ls3_c00059{letter-spacing:114.633000px;}
.ls0_c00059{letter-spacing:121.833000px;}
.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:-57.000000px;}
.ws3_c00059{word-spacing:-25.305000px;}
.ws1_c00059{word-spacing:-20.244000px;}
.ws0_c00059{word-spacing:-18.798000px;}
.ws4_c00059{word-spacing:0.000000px;}
._37_c00059{margin-left:-86.181000px;}
._33_c00059{margin-left:-30.030000px;}
._35_c00059{margin-left:-23.721000px;}
._39_c00059{margin-left:-21.357000px;}
._11_c00059{margin-left:-18.375000px;}
._16_c00059{margin-left:-16.131000px;}
._3b_c00059{margin-left:-13.896000px;}
._34_c00059{margin-left:-11.991000px;}
._c_c00059{margin-left:-10.500000px;}
._d_c00059{margin-left:-8.715000px;}
._a_c00059{margin-left:-6.300000px;}
._e_c00059{margin-left:-4.410000px;}
._f_c00059{margin-left:-2.940000px;}
._3_c00059{margin-left:-1.890000px;}
._5_c00059{width:1.155000px;}
._1_c00059{width:3.150000px;}
._0_c00059{width:4.410000px;}
._2_c00059{width:5.670000px;}
._8_c00059{width:6.825000px;}
._7_c00059{width:8.820000px;}
._b_c00059{width:10.395000px;}
._9_c00059{width:11.865000px;}
._18_c00059{width:13.152000px;}
._6_c00059{width:14.910000px;}
._32_c00059{width:16.329000px;}
._4_c00059{width:17.430000px;}
._21_c00059{width:18.525000px;}
._20_c00059{width:19.710000px;}
._1a_c00059{width:21.537000px;}
._23_c00059{width:22.692000px;}
._28_c00059{width:24.480000px;}
._24_c00059{width:26.253000px;}
._31_c00059{width:27.975000px;}
._36_c00059{width:29.613000px;}
._3d_c00059{width:31.368000px;}
._1d_c00059{width:32.778000px;}
._1b_c00059{width:34.071000px;}
._10_c00059{width:36.120000px;}
._3c_c00059{width:37.368000px;}
._22_c00059{width:38.418000px;}
._1f_c00059{width:39.597000px;}
._1c_c00059{width:42.006000px;}
._29_c00059{width:43.368000px;}
._38_c00059{width:45.228000px;}
._30_c00059{width:46.323000px;}
._27_c00059{width:49.872000px;}
._25_c00059{width:51.738000px;}
._19_c00059{width:52.950000px;}
._2c_c00059{width:55.800000px;}
._2a_c00059{width:57.768000px;}
._15_c00059{width:70.830000px;}
._3a_c00059{width:77.619000px;}
._14_c00059{width:101.832000px;}
._2b_c00059{width:114.924000px;}
._1e_c00059{width:116.919000px;}
._2e_c00059{width:129.234000px;}
._12_c00059{width:189.420000px;}
._13_c00059{width:424.305000px;}
._2f_c00059{width:430.782000px;}
._17_c00059{width:466.176000px;}
._26_c00059{width:999.876000px;}
._2d_c00059{width:1694.199000px;}
.fc2_c00059{color:transparent;}
.fc1_c00059{color:rgb(128,128,128);}
.fc0_c00059{color:rgb(0,0,0);}
.fs8_c00059{font-size:48.000000px;}
.fs2_c00059{font-size:78.000000px;}
.fs4_c00059{font-size:84.000000px;}
.fs3_c00059{font-size:87.000000px;}
.fs6_c00059{font-size:93.000000px;}
.fs1_c00059{font-size:96.000000px;}
.fs5_c00059{font-size:102.000000px;}
.fs0_c00059{font-size:105.000000px;}
.fs7_c00059{font-size:144.000000px;}
.y0_c00059{bottom:0.000000px;}
.y22_c00059{bottom:3.105000px;}
.y21_c00059{bottom:7.228357px;}
.y20_c00059{bottom:90.780000px;}
.y1f_c00059{bottom:229.830000px;}
.y1e_c00059{bottom:264.630000px;}
.y1d_c00059{bottom:298.980000px;}
.y1c_c00059{bottom:332.730000px;}
.y1b_c00059{bottom:366.180000px;}
.y1a_c00059{bottom:400.380000px;}
.y19_c00059{bottom:434.130000px;}
.y18_c00059{bottom:467.730000px;}
.y17_c00059{bottom:501.630000px;}
.y16_c00059{bottom:534.930000px;}
.y15_c00059{bottom:568.680000px;}
.y14_c00059{bottom:601.830000px;}
.y13_c00059{bottom:635.580000px;}
.y12_c00059{bottom:668.580000px;}
.y11_c00059{bottom:702.030000px;}
.y10_c00059{bottom:735.180000px;}
.yf_c00059{bottom:768.780000px;}
.ye_c00059{bottom:802.530000px;}
.yd_c00059{bottom:835.980000px;}
.yc_c00059{bottom:869.130000px;}
.yb_c00059{bottom:902.430000px;}
.ya_c00059{bottom:934.830000px;}
.y9_c00059{bottom:970.380000px;}
.y8_c00059{bottom:1009.530000px;}
.y7_c00059{bottom:1039.830000px;}
.y6_c00059{bottom:1069.980000px;}
.y5_c00059{bottom:1100.880000px;}
.y4_c00059{bottom:1133.730000px;}
.y3_c00059{bottom:1199.130000px;}
.y2_c00059{bottom:1231.830000px;}
.y1_c00059{bottom:1265.580000px;}
.h6_c00059{height:13.200074px;}
.h7_c00059{height:43.804688px;}
.h4_c00059{height:100.608000px;}
.h3_c00059{height:121.546875px;}
.h2_c00059{height:132.941895px;}
.h5_c00059{height:182.320312px;}
.h0_c00059{height:1362.450000px;}
.h1_c00059{height:1362.750000px;}
.w2_c00059{width:104.875500px;}
.w1_c00059{width:849.750000px;}
.w0_c00059{width:849.975000px;}
.x0_c00059{left:0.000000px;}
.x5_c00059{left:56.400000px;}
.x4_c00059{left:59.100000px;}
.x6_c00059{left:60.150000px;}
.x7_c00059{left:61.800000px;}
.x8_c00059{left:62.850000px;}
.x3_c00059{left:86.100000px;}
.x1_c00059{left:275.700000px;}
.xc_c00059{left:277.200000px;}
.xb_c00059{left:278.400000px;}
.xa_c00059{left:279.450000px;}
.x9_c00059{left:281.100000px;}
.xe_c00059{left:376.801758px;}
.x2_c00059{left:422.850000px;}
.xd_c00059{left:751.950000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls9_c00059{letter-spacing:0.000000pt;}
.ls4_c00059{letter-spacing:2.090667pt;}
.ls1_c00059{letter-spacing:4.608000pt;}
.lsa_c00059{letter-spacing:5.333333pt;}
.ls6_c00059{letter-spacing:6.741333pt;}
.ls5_c00059{letter-spacing:7.573333pt;}
.ls8_c00059{letter-spacing:16.917333pt;}
.ls2_c00059{letter-spacing:26.162667pt;}
.ls7_c00059{letter-spacing:41.629333pt;}
.ls3_c00059{letter-spacing:101.896000pt;}
.ls0_c00059{letter-spacing:108.296000pt;}
.ws2_c00059{word-spacing:-50.666667pt;}
.ws3_c00059{word-spacing:-22.493333pt;}
.ws1_c00059{word-spacing:-17.994667pt;}
.ws0_c00059{word-spacing:-16.709333pt;}
.ws4_c00059{word-spacing:0.000000pt;}
._37_c00059{margin-left:-76.605333pt;}
._33_c00059{margin-left:-26.693333pt;}
._35_c00059{margin-left:-21.085333pt;}
._39_c00059{margin-left:-18.984000pt;}
._11_c00059{margin-left:-16.333333pt;}
._16_c00059{margin-left:-14.338667pt;}
._3b_c00059{margin-left:-12.352000pt;}
._34_c00059{margin-left:-10.658667pt;}
._c_c00059{margin-left:-9.333333pt;}
._d_c00059{margin-left:-7.746667pt;}
._a_c00059{margin-left:-5.600000pt;}
._e_c00059{margin-left:-3.920000pt;}
._f_c00059{margin-left:-2.613333pt;}
._3_c00059{margin-left:-1.680000pt;}
._5_c00059{width:1.026667pt;}
._1_c00059{width:2.800000pt;}
._0_c00059{width:3.920000pt;}
._2_c00059{width:5.040000pt;}
._8_c00059{width:6.066667pt;}
._7_c00059{width:7.840000pt;}
._b_c00059{width:9.240000pt;}
._9_c00059{width:10.546667pt;}
._18_c00059{width:11.690667pt;}
._6_c00059{width:13.253333pt;}
._32_c00059{width:14.514667pt;}
._4_c00059{width:15.493333pt;}
._21_c00059{width:16.466667pt;}
._20_c00059{width:17.520000pt;}
._1a_c00059{width:19.144000pt;}
._23_c00059{width:20.170667pt;}
._28_c00059{width:21.760000pt;}
._24_c00059{width:23.336000pt;}
._31_c00059{width:24.866667pt;}
._36_c00059{width:26.322667pt;}
._3d_c00059{width:27.882667pt;}
._1d_c00059{width:29.136000pt;}
._1b_c00059{width:30.285333pt;}
._10_c00059{width:32.106667pt;}
._3c_c00059{width:33.216000pt;}
._22_c00059{width:34.149333pt;}
._1f_c00059{width:35.197333pt;}
._1c_c00059{width:37.338667pt;}
._29_c00059{width:38.549333pt;}
._38_c00059{width:40.202667pt;}
._30_c00059{width:41.176000pt;}
._27_c00059{width:44.330667pt;}
._25_c00059{width:45.989333pt;}
._19_c00059{width:47.066667pt;}
._2c_c00059{width:49.600000pt;}
._2a_c00059{width:51.349333pt;}
._15_c00059{width:62.960000pt;}
._3a_c00059{width:68.994667pt;}
._14_c00059{width:90.517333pt;}
._2b_c00059{width:102.154667pt;}
._1e_c00059{width:103.928000pt;}
._2e_c00059{width:114.874667pt;}
._12_c00059{width:168.373333pt;}
._13_c00059{width:377.160000pt;}
._2f_c00059{width:382.917333pt;}
._17_c00059{width:414.378667pt;}
._26_c00059{width:888.778667pt;}
._2d_c00059{width:1505.954667pt;}
.fs8_c00059{font-size:42.666667pt;}
.fs2_c00059{font-size:69.333333pt;}
.fs4_c00059{font-size:74.666667pt;}
.fs3_c00059{font-size:77.333333pt;}
.fs6_c00059{font-size:82.666667pt;}
.fs1_c00059{font-size:85.333333pt;}
.fs5_c00059{font-size:90.666667pt;}
.fs0_c00059{font-size:93.333333pt;}
.fs7_c00059{font-size:128.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y22_c00059{bottom:2.760000pt;}
.y21_c00059{bottom:6.425206pt;}
.y20_c00059{bottom:80.693333pt;}
.y1f_c00059{bottom:204.293333pt;}
.y1e_c00059{bottom:235.226667pt;}
.y1d_c00059{bottom:265.760000pt;}
.y1c_c00059{bottom:295.760000pt;}
.y1b_c00059{bottom:325.493333pt;}
.y1a_c00059{bottom:355.893333pt;}
.y19_c00059{bottom:385.893333pt;}
.y18_c00059{bottom:415.760000pt;}
.y17_c00059{bottom:445.893333pt;}
.y16_c00059{bottom:475.493333pt;}
.y15_c00059{bottom:505.493333pt;}
.y14_c00059{bottom:534.960000pt;}
.y13_c00059{bottom:564.960000pt;}
.y12_c00059{bottom:594.293333pt;}
.y11_c00059{bottom:624.026667pt;}
.y10_c00059{bottom:653.493333pt;}
.yf_c00059{bottom:683.360000pt;}
.ye_c00059{bottom:713.360000pt;}
.yd_c00059{bottom:743.093333pt;}
.yc_c00059{bottom:772.560000pt;}
.yb_c00059{bottom:802.160000pt;}
.ya_c00059{bottom:830.960000pt;}
.y9_c00059{bottom:862.560000pt;}
.y8_c00059{bottom:897.360000pt;}
.y7_c00059{bottom:924.293333pt;}
.y6_c00059{bottom:951.093333pt;}
.y5_c00059{bottom:978.560000pt;}
.y4_c00059{bottom:1007.760000pt;}
.y3_c00059{bottom:1065.893333pt;}
.y2_c00059{bottom:1094.960000pt;}
.y1_c00059{bottom:1124.960000pt;}
.h6_c00059{height:11.733399pt;}
.h7_c00059{height:38.937500pt;}
.h4_c00059{height:89.429333pt;}
.h3_c00059{height:108.041667pt;}
.h2_c00059{height:118.170573pt;}
.h5_c00059{height:162.062500pt;}
.h0_c00059{height:1211.066667pt;}
.h1_c00059{height:1211.333333pt;}
.w2_c00059{width:93.222667pt;}
.w1_c00059{width:755.333333pt;}
.w0_c00059{width:755.533333pt;}
.x0_c00059{left:0.000000pt;}
.x5_c00059{left:50.133333pt;}
.x4_c00059{left:52.533333pt;}
.x6_c00059{left:53.466667pt;}
.x7_c00059{left:54.933333pt;}
.x8_c00059{left:55.866667pt;}
.x3_c00059{left:76.533333pt;}
.x1_c00059{left:245.066667pt;}
.xc_c00059{left:246.400000pt;}
.xb_c00059{left:247.466667pt;}
.xa_c00059{left:248.400000pt;}
.x9_c00059{left:249.866667pt;}
.xe_c00059{left:334.934896pt;}
.x2_c00059{left:375.866667pt;}
.xd_c00059{left:668.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_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_6777d7cb3ec79b4d5cb69529.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_5b8a110a382d9662b4e6b9fd.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-20.244000px;}
.ws2_c00060{word-spacing:0.000000px;}
.ws1_c00060{word-spacing:16.884000px;}
._2d_c00060{margin-left:-10.236000px;}
._29_c00060{margin-left:-8.352000px;}
._17_c00060{margin-left:-6.972000px;}
._16_c00060{margin-left:-5.796000px;}
._0_c00060{margin-left:-4.116000px;}
._1_c00060{margin-left:-2.604000px;}
._a_c00060{margin-left:-1.332000px;}
._15_c00060{width:1.284000px;}
._14_c00060{width:2.412000px;}
._12_c00060{width:3.648000px;}
._8_c00060{width:4.992000px;}
._10_c00060{width:6.720000px;}
._2_c00060{width:7.968000px;}
._4_c00060{width:9.024000px;}
._3_c00060{width:10.176000px;}
._6_c00060{width:11.328000px;}
._20_c00060{width:12.564000px;}
._21_c00060{width:13.932000px;}
._d_c00060{width:15.360000px;}
._e_c00060{width:16.992000px;}
._c_c00060{width:18.144000px;}
._25_c00060{width:19.800000px;}
._1b_c00060{width:21.204000px;}
._27_c00060{width:24.792000px;}
._24_c00060{width:26.160000px;}
._1a_c00060{width:28.296000px;}
._11_c00060{width:29.760000px;}
._19_c00060{width:32.460000px;}
._1e_c00060{width:33.744000px;}
._18_c00060{width:34.944000px;}
._1f_c00060{width:36.756000px;}
._f_c00060{width:38.688000px;}
._13_c00060{width:40.320000px;}
._2b_c00060{width:41.736000px;}
._b_c00060{width:42.816000px;}
._1c_c00060{width:45.516000px;}
._9_c00060{width:46.848000px;}
._23_c00060{width:49.104000px;}
._2a_c00060{width:51.864000px;}
._26_c00060{width:54.420000px;}
._2c_c00060{width:56.484000px;}
._28_c00060{width:65.112000px;}
._5_c00060{width:110.304000px;}
._2e_c00060{width:170.376000px;}
._7_c00060{width:176.940000px;}
._1d_c00060{width:556.548000px;}
._22_c00060{width:722.268000px;}
.fc2_c00060{color:transparent;}
.fc1_c00060{color:rgb(128,128,128);}
.fc0_c00060{color:rgb(0,0,0);}
.fs2_c00060{font-size:48.000000px;}
.fs0_c00060{font-size:84.000000px;}
.fs1_c00060{font-size:96.000000px;}
.y0_c00060{bottom:0.000000px;}
.y18_c00060{bottom:3.105000px;}
.y17_c00060{bottom:7.228355px;}
.y16_c00060{bottom:533.835000px;}
.y15_c00060{bottom:568.335000px;}
.y14_c00060{bottom:601.785000px;}
.y13_c00060{bottom:634.785000px;}
.y12_c00060{bottom:667.935000px;}
.y11_c00060{bottom:700.935000px;}
.y10_c00060{bottom:734.985000px;}
.yf_c00060{bottom:768.885000px;}
.ye_c00060{bottom:801.885000px;}
.yd_c00060{bottom:834.885000px;}
.yc_c00060{bottom:867.735000px;}
.yb_c00060{bottom:901.035000px;}
.ya_c00060{bottom:933.735000px;}
.y9_c00060{bottom:967.485000px;}
.y8_c00060{bottom:1000.635000px;}
.y1_c00060{bottom:1026.585000px;}
.y7_c00060{bottom:1033.335000px;}
.y6_c00060{bottom:1065.735000px;}
.y5_c00060{bottom:1099.935000px;}
.y4_c00060{bottom:1134.885000px;}
.y3_c00060{bottom:1167.435000px;}
.y2_c00060{bottom:1231.485000px;}
.h4_c00060{height:13.200074px;}
.h5_c00060{height:43.804688px;}
.h2_c00060{height:98.314453px;}
.h3_c00060{height:121.546875px;}
.h1_c00060{height:1353.000000px;}
.h0_c00060{height:1353.225000px;}
.w2_c00060{width:104.875500px;}
.w0_c00060{width:858.600000px;}
.w1_c00060{width:858.750000px;}
.x0_c00060{left:0.000000px;}
.x7_c00060{left:8.400000px;}
.x6_c00060{left:10.050000px;}
.x5_c00060{left:11.100000px;}
.x4_c00060{left:12.150000px;}
.x9_c00060{left:13.200000px;}
.x8_c00060{left:60.300000px;}
.x3_c00060{left:63.450000px;}
.x2_c00060{left:111.600000px;}
.xa_c00060{left:381.114258px;}
.x1_c00060{left:585.600000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:-17.994667pt;}
.ws2_c00060{word-spacing:0.000000pt;}
.ws1_c00060{word-spacing:15.008000pt;}
._2d_c00060{margin-left:-9.098667pt;}
._29_c00060{margin-left:-7.424000pt;}
._17_c00060{margin-left:-6.197333pt;}
._16_c00060{margin-left:-5.152000pt;}
._0_c00060{margin-left:-3.658667pt;}
._1_c00060{margin-left:-2.314667pt;}
._a_c00060{margin-left:-1.184000pt;}
._15_c00060{width:1.141333pt;}
._14_c00060{width:2.144000pt;}
._12_c00060{width:3.242667pt;}
._8_c00060{width:4.437333pt;}
._10_c00060{width:5.973333pt;}
._2_c00060{width:7.082667pt;}
._4_c00060{width:8.021333pt;}
._3_c00060{width:9.045333pt;}
._6_c00060{width:10.069333pt;}
._20_c00060{width:11.168000pt;}
._21_c00060{width:12.384000pt;}
._d_c00060{width:13.653333pt;}
._e_c00060{width:15.104000pt;}
._c_c00060{width:16.128000pt;}
._25_c00060{width:17.600000pt;}
._1b_c00060{width:18.848000pt;}
._27_c00060{width:22.037333pt;}
._24_c00060{width:23.253333pt;}
._1a_c00060{width:25.152000pt;}
._11_c00060{width:26.453333pt;}
._19_c00060{width:28.853333pt;}
._1e_c00060{width:29.994667pt;}
._18_c00060{width:31.061333pt;}
._1f_c00060{width:32.672000pt;}
._f_c00060{width:34.389333pt;}
._13_c00060{width:35.840000pt;}
._2b_c00060{width:37.098667pt;}
._b_c00060{width:38.058667pt;}
._1c_c00060{width:40.458667pt;}
._9_c00060{width:41.642667pt;}
._23_c00060{width:43.648000pt;}
._2a_c00060{width:46.101333pt;}
._26_c00060{width:48.373333pt;}
._2c_c00060{width:50.208000pt;}
._28_c00060{width:57.877333pt;}
._5_c00060{width:98.048000pt;}
._2e_c00060{width:151.445333pt;}
._7_c00060{width:157.280000pt;}
._1d_c00060{width:494.709333pt;}
._22_c00060{width:642.016000pt;}
.fs2_c00060{font-size:42.666667pt;}
.fs0_c00060{font-size:74.666667pt;}
.fs1_c00060{font-size:85.333333pt;}
.y0_c00060{bottom:0.000000pt;}
.y18_c00060{bottom:2.760000pt;}
.y17_c00060{bottom:6.425204pt;}
.y16_c00060{bottom:474.520000pt;}
.y15_c00060{bottom:505.186667pt;}
.y14_c00060{bottom:534.920000pt;}
.y13_c00060{bottom:564.253333pt;}
.y12_c00060{bottom:593.720000pt;}
.y11_c00060{bottom:623.053333pt;}
.y10_c00060{bottom:653.320000pt;}
.yf_c00060{bottom:683.453333pt;}
.ye_c00060{bottom:712.786667pt;}
.yd_c00060{bottom:742.120000pt;}
.yc_c00060{bottom:771.320000pt;}
.yb_c00060{bottom:800.920000pt;}
.ya_c00060{bottom:829.986667pt;}
.y9_c00060{bottom:859.986667pt;}
.y8_c00060{bottom:889.453333pt;}
.y1_c00060{bottom:912.520000pt;}
.y7_c00060{bottom:918.520000pt;}
.y6_c00060{bottom:947.320000pt;}
.y5_c00060{bottom:977.720000pt;}
.y4_c00060{bottom:1008.786667pt;}
.y3_c00060{bottom:1037.720000pt;}
.y2_c00060{bottom:1094.653333pt;}
.h4_c00060{height:11.733399pt;}
.h5_c00060{height:38.937500pt;}
.h2_c00060{height:87.390625pt;}
.h3_c00060{height:108.041667pt;}
.h1_c00060{height:1202.666667pt;}
.h0_c00060{height:1202.866667pt;}
.w2_c00060{width:93.222667pt;}
.w0_c00060{width:763.200000pt;}
.w1_c00060{width:763.333333pt;}
.x0_c00060{left:0.000000pt;}
.x7_c00060{left:7.466667pt;}
.x6_c00060{left:8.933333pt;}
.x5_c00060{left:9.866667pt;}
.x4_c00060{left:10.800000pt;}
.x9_c00060{left:11.733333pt;}
.x8_c00060{left:53.600000pt;}
.x3_c00060{left:56.400000pt;}
.x2_c00060{left:99.200000pt;}
.xa_c00060{left:338.768229pt;}
.x1_c00060{left:520.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb74fa99b19ed013b48d696e.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_492c6caa0fd9316af4366371.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_ae489bd9201f08405d683f64.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls6_c00061{letter-spacing:0.000000px;}
.ls4_c00061{letter-spacing:2.460000px;}
.ls7_c00061{letter-spacing:9.000000px;}
.ls5_c00061{letter-spacing:9.156000px;}
.ls0_c00061{letter-spacing:9.840000px;}
.ls2_c00061{letter-spacing:58.896000px;}
.ls1_c00061{letter-spacing:66.096000px;}
.ls3_c00061{letter-spacing:81.096000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00061{word-spacing:-27.763200px;}
.ws5_c00061{word-spacing:-23.460000px;}
.ws7_c00061{word-spacing:-23.136000px;}
.ws6_c00061{word-spacing:-20.244000px;}
.ws8_c00061{word-spacing:0.000000px;}
.ws2_c00061{word-spacing:0.561600px;}
.ws4_c00061{word-spacing:4.147200px;}
.ws0_c00061{word-spacing:5.184000px;}
.ws3_c00061{word-spacing:10.713600px;}
._33_c00061{margin-left:-127.008000px;}
._37_c00061{margin-left:-65.952000px;}
._35_c00061{margin-left:-54.864000px;}
._31_c00061{margin-left:-32.688000px;}
._44_c00061{margin-left:-30.336000px;}
._2d_c00061{margin-left:-25.344000px;}
._32_c00061{margin-left:-21.888000px;}
._2f_c00061{margin-left:-20.016000px;}
._43_c00061{margin-left:-18.996000px;}
._38_c00061{margin-left:-16.992000px;}
._3a_c00061{margin-left:-14.956800px;}
._9_c00061{margin-left:-13.920000px;}
._15_c00061{margin-left:-11.952000px;}
._0_c00061{margin-left:-10.080000px;}
._17_c00061{margin-left:-8.496000px;}
._8_c00061{margin-left:-7.296000px;}
._1b_c00061{margin-left:-6.192000px;}
._1_c00061{margin-left:-4.896000px;}
._19_c00061{margin-left:-3.456000px;}
._13_c00061{margin-left:-2.448000px;}
._3_c00061{margin-left:-1.344000px;}
._22_c00061{width:1.584000px;}
._1d_c00061{width:2.928000px;}
._7_c00061{width:4.128000px;}
._6_c00061{width:5.184000px;}
._40_c00061{width:6.288000px;}
._4_c00061{width:7.488000px;}
._30_c00061{width:8.592000px;}
._5_c00061{width:9.696000px;}
._21_c00061{width:11.520000px;}
._23_c00061{width:13.392000px;}
._2_c00061{width:14.592000px;}
._3b_c00061{width:16.548000px;}
._f_c00061{width:18.124800px;}
._28_c00061{width:19.459200px;}
._29_c00061{width:21.024000px;}
._e_c00061{width:22.872000px;}
._d_c00061{width:24.768000px;}
._b_c00061{width:26.150400px;}
._a_c00061{width:27.993600px;}
._c_c00061{width:29.491200px;}
._10_c00061{width:31.564800px;}
._42_c00061{width:33.216000px;}
._12_c00061{width:34.675200px;}
._41_c00061{width:36.748800px;}
._25_c00061{width:37.872000px;}
._4a_c00061{width:39.254400px;}
._24_c00061{width:40.579200px;}
._11_c00061{width:42.643200px;}
._49_c00061{width:43.680000px;}
._4b_c00061{width:45.081600px;}
._20_c00061{width:46.176000px;}
._47_c00061{width:47.664000px;}
._3f_c00061{width:49.200000px;}
._3d_c00061{width:51.312000px;}
._48_c00061{width:52.416000px;}
._3c_c00061{width:54.348000px;}
._1a_c00061{width:56.640000px;}
._4c_c00061{width:58.752000px;}
._14_c00061{width:66.144000px;}
._2b_c00061{width:67.680000px;}
._4d_c00061{width:74.304000px;}
._18_c00061{width:76.608000px;}
._26_c00061{width:79.440000px;}
._16_c00061{width:80.784000px;}
._46_c00061{width:86.872800px;}
._1c_c00061{width:90.096000px;}
._2c_c00061{width:96.480000px;}
._2a_c00061{width:103.056000px;}
._27_c00061{width:107.424000px;}
._1f_c00061{width:113.760000px;}
._1e_c00061{width:116.304000px;}
._34_c00061{width:130.608000px;}
._36_c00061{width:169.344000px;}
._45_c00061{width:179.808000px;}
._2e_c00061{width:339.696000px;}
._3e_c00061{width:353.952000px;}
._39_c00061{width:570.096000px;}
._4e_c00061{width:661.536000px;}
._4f_c00061{width:911.205600px;}
.fc2_c00061{color:transparent;}
.fc1_c00061{color:rgb(128,128,128);}
.fc0_c00061{color:rgb(0,0,0);}
.fs5_c00061{font-size:48.000000px;}
.fs4_c00061{font-size:60.000000px;}
.fs3_c00061{font-size:84.000000px;}
.fs0_c00061{font-size:96.000000px;}
.fs1_c00061{font-size:115.200000px;}
.fs2_c00061{font-size:144.000000px;}
.y0_c00061{bottom:0.000000px;}
.y2d_c00061{bottom:3.105000px;}
.y2c_c00061{bottom:7.228357px;}
.y2b_c00061{bottom:100.680000px;}
.y2a_c00061{bottom:142.380000px;}
.y29_c00061{bottom:176.280000px;}
.y28_c00061{bottom:210.930000px;}
.y17_c00061{bottom:241.980000px;}
.y27_c00061{bottom:244.980000px;}
.y16_c00061{bottom:272.430000px;}
.y26_c00061{bottom:278.880000px;}
.y15_c00061{bottom:304.080000px;}
.y25_c00061{bottom:312.630000px;}
.y14_c00061{bottom:334.830000px;}
.y24_c00061{bottom:346.380000px;}
.y13_c00061{bottom:363.780000px;}
.y23_c00061{bottom:380.130000px;}
.y12_c00061{bottom:393.630000px;}
.y22_c00061{bottom:413.730000px;}
.y11_c00061{bottom:422.880000px;}
.y21_c00061{bottom:447.630000px;}
.y20_c00061{bottom:481.230000px;}
.y1f_c00061{bottom:514.980000px;}
.y10_c00061{bottom:518.430000px;}
.y1e_c00061{bottom:548.430000px;}
.yf_c00061{bottom:548.730000px;}
.ye_c00061{bottom:578.580000px;}
.y1d_c00061{bottom:581.880000px;}
.yd_c00061{bottom:607.530000px;}
.y1c_c00061{bottom:615.030000px;}
.yc_c00061{bottom:637.230000px;}
.y1b_c00061{bottom:648.630000px;}
.yb_c00061{bottom:663.480000px;}
.y1a_c00061{bottom:681.780000px;}
.y19_c00061{bottom:715.830000px;}
.y18_c00061{bottom:748.980000px;}
.ya_c00061{bottom:872.880000px;}
.y9_c00061{bottom:923.130000px;}
.y8_c00061{bottom:973.080000px;}
.y7_c00061{bottom:1022.730000px;}
.y6_c00061{bottom:1072.980000px;}
.y5_c00061{bottom:1123.980000px;}
.y4_c00061{bottom:1173.480000px;}
.y1_c00061{bottom:1182.930000px;}
.y3_c00061{bottom:1223.130000px;}
.y2_c00061{bottom:1273.380000px;}
.h7_c00061{height:13.200074px;}
.h8_c00061{height:43.804688px;}
.h6_c00061{height:75.966797px;}
.h5_c00061{height:98.314453px;}
.h4_c00061{height:106.353516px;}
.h2_c00061{height:121.546875px;}
.h3_c00061{height:182.320312px;}
.h0_c00061{height:1382.700000px;}
.h1_c00061{height:1383.000000px;}
.w2_c00061{width:104.875500px;}
.w0_c00061{width:863.175000px;}
.w1_c00061{width:863.250000px;}
.x0_c00061{left:0.000000px;}
.x9_c00061{left:62.700000px;}
.xd_c00061{left:64.200000px;}
.xe_c00061{left:65.250000px;}
.xb_c00061{left:66.900000px;}
.xa_c00061{left:67.950000px;}
.x7_c00061{left:69.150000px;}
.x1_c00061{left:70.950000px;}
.x8_c00061{left:82.650000px;}
.xc_c00061{left:95.550000px;}
.x13_c00061{left:281.100000px;}
.x14_c00061{left:282.150000px;}
.x2_c00061{left:283.800000px;}
.x3_c00061{left:285.450000px;}
.x6_c00061{left:287.100000px;}
.x5_c00061{left:288.150000px;}
.x16_c00061{left:326.400000px;}
.x15_c00061{left:335.550000px;}
.x4_c00061{left:348.600000px;}
.x11_c00061{left:365.850000px;}
.x17_c00061{left:383.401749px;}
.x12_c00061{left:399.300000px;}
.xf_c00061{left:474.450000px;}
.x10_c00061{left:509.550000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls6_c00061{letter-spacing:0.000000pt;}
.ls4_c00061{letter-spacing:2.186667pt;}
.ls7_c00061{letter-spacing:8.000000pt;}
.ls5_c00061{letter-spacing:8.138667pt;}
.ls0_c00061{letter-spacing:8.746667pt;}
.ls2_c00061{letter-spacing:52.352000pt;}
.ls1_c00061{letter-spacing:58.752000pt;}
.ls3_c00061{letter-spacing:72.085333pt;}
.ws1_c00061{word-spacing:-24.678400pt;}
.ws5_c00061{word-spacing:-20.853333pt;}
.ws7_c00061{word-spacing:-20.565333pt;}
.ws6_c00061{word-spacing:-17.994667pt;}
.ws8_c00061{word-spacing:0.000000pt;}
.ws2_c00061{word-spacing:0.499200pt;}
.ws4_c00061{word-spacing:3.686400pt;}
.ws0_c00061{word-spacing:4.608000pt;}
.ws3_c00061{word-spacing:9.523200pt;}
._33_c00061{margin-left:-112.896000pt;}
._37_c00061{margin-left:-58.624000pt;}
._35_c00061{margin-left:-48.768000pt;}
._31_c00061{margin-left:-29.056000pt;}
._44_c00061{margin-left:-26.965333pt;}
._2d_c00061{margin-left:-22.528000pt;}
._32_c00061{margin-left:-19.456000pt;}
._2f_c00061{margin-left:-17.792000pt;}
._43_c00061{margin-left:-16.885333pt;}
._38_c00061{margin-left:-15.104000pt;}
._3a_c00061{margin-left:-13.294933pt;}
._9_c00061{margin-left:-12.373333pt;}
._15_c00061{margin-left:-10.624000pt;}
._0_c00061{margin-left:-8.960000pt;}
._17_c00061{margin-left:-7.552000pt;}
._8_c00061{margin-left:-6.485333pt;}
._1b_c00061{margin-left:-5.504000pt;}
._1_c00061{margin-left:-4.352000pt;}
._19_c00061{margin-left:-3.072000pt;}
._13_c00061{margin-left:-2.176000pt;}
._3_c00061{margin-left:-1.194667pt;}
._22_c00061{width:1.408000pt;}
._1d_c00061{width:2.602667pt;}
._7_c00061{width:3.669333pt;}
._6_c00061{width:4.608000pt;}
._40_c00061{width:5.589333pt;}
._4_c00061{width:6.656000pt;}
._30_c00061{width:7.637333pt;}
._5_c00061{width:8.618667pt;}
._21_c00061{width:10.240000pt;}
._23_c00061{width:11.904000pt;}
._2_c00061{width:12.970667pt;}
._3b_c00061{width:14.709333pt;}
._f_c00061{width:16.110933pt;}
._28_c00061{width:17.297067pt;}
._29_c00061{width:18.688000pt;}
._e_c00061{width:20.330667pt;}
._d_c00061{width:22.016000pt;}
._b_c00061{width:23.244800pt;}
._a_c00061{width:24.883200pt;}
._c_c00061{width:26.214400pt;}
._10_c00061{width:28.057600pt;}
._42_c00061{width:29.525333pt;}
._12_c00061{width:30.822400pt;}
._41_c00061{width:32.665600pt;}
._25_c00061{width:33.664000pt;}
._4a_c00061{width:34.892800pt;}
._24_c00061{width:36.070400pt;}
._11_c00061{width:37.905067pt;}
._49_c00061{width:38.826667pt;}
._4b_c00061{width:40.072533pt;}
._20_c00061{width:41.045333pt;}
._47_c00061{width:42.368000pt;}
._3f_c00061{width:43.733333pt;}
._3d_c00061{width:45.610667pt;}
._48_c00061{width:46.592000pt;}
._3c_c00061{width:48.309333pt;}
._1a_c00061{width:50.346667pt;}
._4c_c00061{width:52.224000pt;}
._14_c00061{width:58.794667pt;}
._2b_c00061{width:60.160000pt;}
._4d_c00061{width:66.048000pt;}
._18_c00061{width:68.096000pt;}
._26_c00061{width:70.613333pt;}
._16_c00061{width:71.808000pt;}
._46_c00061{width:77.220267pt;}
._1c_c00061{width:80.085333pt;}
._2c_c00061{width:85.760000pt;}
._2a_c00061{width:91.605333pt;}
._27_c00061{width:95.488000pt;}
._1f_c00061{width:101.120000pt;}
._1e_c00061{width:103.381333pt;}
._34_c00061{width:116.096000pt;}
._36_c00061{width:150.528000pt;}
._45_c00061{width:159.829333pt;}
._2e_c00061{width:301.952000pt;}
._3e_c00061{width:314.624000pt;}
._39_c00061{width:506.752000pt;}
._4e_c00061{width:588.032000pt;}
._4f_c00061{width:809.960533pt;}
.fs5_c00061{font-size:42.666667pt;}
.fs4_c00061{font-size:53.333333pt;}
.fs3_c00061{font-size:74.666667pt;}
.fs0_c00061{font-size:85.333333pt;}
.fs1_c00061{font-size:102.400000pt;}
.fs2_c00061{font-size:128.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y2d_c00061{bottom:2.760000pt;}
.y2c_c00061{bottom:6.425206pt;}
.y2b_c00061{bottom:89.493333pt;}
.y2a_c00061{bottom:126.560000pt;}
.y29_c00061{bottom:156.693333pt;}
.y28_c00061{bottom:187.493333pt;}
.y17_c00061{bottom:215.093333pt;}
.y27_c00061{bottom:217.760000pt;}
.y16_c00061{bottom:242.160000pt;}
.y26_c00061{bottom:247.893333pt;}
.y15_c00061{bottom:270.293333pt;}
.y25_c00061{bottom:277.893333pt;}
.y14_c00061{bottom:297.626667pt;}
.y24_c00061{bottom:307.893333pt;}
.y13_c00061{bottom:323.360000pt;}
.y23_c00061{bottom:337.893333pt;}
.y12_c00061{bottom:349.893333pt;}
.y22_c00061{bottom:367.760000pt;}
.y11_c00061{bottom:375.893333pt;}
.y21_c00061{bottom:397.893333pt;}
.y20_c00061{bottom:427.760000pt;}
.y1f_c00061{bottom:457.760000pt;}
.y10_c00061{bottom:460.826667pt;}
.y1e_c00061{bottom:487.493333pt;}
.yf_c00061{bottom:487.760000pt;}
.ye_c00061{bottom:514.293333pt;}
.y1d_c00061{bottom:517.226667pt;}
.yd_c00061{bottom:540.026667pt;}
.y1c_c00061{bottom:546.693333pt;}
.yc_c00061{bottom:566.426667pt;}
.y1b_c00061{bottom:576.560000pt;}
.yb_c00061{bottom:589.760000pt;}
.y1a_c00061{bottom:606.026667pt;}
.y19_c00061{bottom:636.293333pt;}
.y18_c00061{bottom:665.760000pt;}
.ya_c00061{bottom:775.893333pt;}
.y9_c00061{bottom:820.560000pt;}
.y8_c00061{bottom:864.960000pt;}
.y7_c00061{bottom:909.093333pt;}
.y6_c00061{bottom:953.760000pt;}
.y5_c00061{bottom:999.093333pt;}
.y4_c00061{bottom:1043.093333pt;}
.y1_c00061{bottom:1051.493333pt;}
.y3_c00061{bottom:1087.226667pt;}
.y2_c00061{bottom:1131.893333pt;}
.h7_c00061{height:11.733399pt;}
.h8_c00061{height:38.937500pt;}
.h6_c00061{height:67.526042pt;}
.h5_c00061{height:87.390625pt;}
.h4_c00061{height:94.536458pt;}
.h2_c00061{height:108.041667pt;}
.h3_c00061{height:162.062500pt;}
.h0_c00061{height:1229.066667pt;}
.h1_c00061{height:1229.333333pt;}
.w2_c00061{width:93.222667pt;}
.w0_c00061{width:767.266667pt;}
.w1_c00061{width:767.333333pt;}
.x0_c00061{left:0.000000pt;}
.x9_c00061{left:55.733333pt;}
.xd_c00061{left:57.066667pt;}
.xe_c00061{left:58.000000pt;}
.xb_c00061{left:59.466667pt;}
.xa_c00061{left:60.400000pt;}
.x7_c00061{left:61.466667pt;}
.x1_c00061{left:63.066667pt;}
.x8_c00061{left:73.466667pt;}
.xc_c00061{left:84.933333pt;}
.x13_c00061{left:249.866667pt;}
.x14_c00061{left:250.800000pt;}
.x2_c00061{left:252.266667pt;}
.x3_c00061{left:253.733333pt;}
.x6_c00061{left:255.200000pt;}
.x5_c00061{left:256.133333pt;}
.x16_c00061{left:290.133333pt;}
.x15_c00061{left:298.266667pt;}
.x4_c00061{left:309.866667pt;}
.x11_c00061{left:325.200000pt;}
.x17_c00061{left:340.801554pt;}
.x12_c00061{left:354.933333pt;}
.xf_c00061{left:421.733333pt;}
.x10_c00061{left:452.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b27ba9dc193c922017d35e2a.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_733a515f766c3951b46e262f.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_76af5c6d8ad9a26f3c4cb1ac.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{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_c00062{vertical-align:0.000000px;}
.ls2_c00062{letter-spacing:0.000000px;}
.ls1_c00062{letter-spacing:4.452000px;}
.ls3_c00062{letter-spacing:12.000000px;}
.ls0_c00062{letter-spacing:21.252000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00062{word-spacing:-63.000000px;}
.ws6_c00062{word-spacing:-41.496000px;}
.ws4_c00062{word-spacing:-23.136000px;}
.ws2_c00062{word-spacing:-22.413000px;}
.ws0_c00062{word-spacing:-20.244000px;}
.ws7_c00062{word-spacing:0.000000px;}
.ws3_c00062{word-spacing:0.924000px;}
.ws5_c00062{word-spacing:12.312000px;}
._5e_c00062{margin-left:-86.652000px;}
._55_c00062{margin-left:-74.688000px;}
._56_c00062{margin-left:-35.424000px;}
._2e_c00062{margin-left:-33.024000px;}
._25_c00062{margin-left:-29.400000px;}
._1d_c00062{margin-left:-26.976000px;}
._4d_c00062{margin-left:-22.944000px;}
._3b_c00062{margin-left:-21.504000px;}
._2f_c00062{margin-left:-19.620000px;}
._36_c00062{margin-left:-17.880000px;}
._2a_c00062{margin-left:-15.288000px;}
._2b_c00062{margin-left:-12.528000px;}
._32_c00062{margin-left:-10.848000px;}
._62_c00062{margin-left:-9.810000px;}
._31_c00062{margin-left:-8.736000px;}
._23_c00062{margin-left:-6.780000px;}
._24_c00062{margin-left:-5.520000px;}
._8_c00062{margin-left:-4.320000px;}
._13_c00062{margin-left:-2.496000px;}
._0_c00062{margin-left:-1.344000px;}
._6_c00062{width:1.680000px;}
._4_c00062{width:3.672000px;}
._5_c00062{width:5.088000px;}
._3_c00062{width:6.552000px;}
._2_c00062{width:7.812000px;}
._10_c00062{width:9.696000px;}
._34_c00062{width:10.854000px;}
._14_c00062{width:11.856000px;}
._35_c00062{width:13.845000px;}
._16_c00062{width:15.312000px;}
._e_c00062{width:16.632000px;}
._60_c00062{width:18.024000px;}
._15_c00062{width:19.272000px;}
._12_c00062{width:21.720000px;}
._26_c00062{width:23.544000px;}
._c_c00062{width:25.440000px;}
._1a_c00062{width:27.888000px;}
._7_c00062{width:29.664000px;}
._47_c00062{width:30.816000px;}
._64_c00062{width:31.956000px;}
._f_c00062{width:33.024000px;}
._17_c00062{width:34.692000px;}
._19_c00062{width:36.396000px;}
._41_c00062{width:37.920000px;}
._1_c00062{width:39.720000px;}
._1b_c00062{width:40.896000px;}
._d_c00062{width:43.104000px;}
._9_c00062{width:44.208000px;}
._11_c00062{width:45.924000px;}
._5b_c00062{width:47.160000px;}
._27_c00062{width:48.216000px;}
._20_c00062{width:49.536000px;}
._b_c00062{width:51.072000px;}
._40_c00062{width:52.119000px;}
._a_c00062{width:53.232000px;}
._45_c00062{width:55.080000px;}
._21_c00062{width:56.232000px;}
._30_c00062{width:57.888000px;}
._42_c00062{width:60.744000px;}
._43_c00062{width:62.532000px;}
._3f_c00062{width:64.044000px;}
._5c_c00062{width:65.160000px;}
._48_c00062{width:67.200000px;}
._18_c00062{width:68.268000px;}
._46_c00062{width:71.640000px;}
._57_c00062{width:73.584000px;}
._65_c00062{width:74.748000px;}
._39_c00062{width:89.856000px;}
._67_c00062{width:93.180000px;}
._29_c00062{width:99.660000px;}
._53_c00062{width:101.760000px;}
._58_c00062{width:111.240000px;}
._3d_c00062{width:113.568000px;}
._3c_c00062{width:126.816000px;}
._3a_c00062{width:128.700000px;}
._3e_c00062{width:135.768000px;}
._52_c00062{width:143.136000px;}
._4e_c00062{width:163.752000px;}
._1f_c00062{width:169.992000px;}
._33_c00062{width:171.864000px;}
._5a_c00062{width:177.228000px;}
._22_c00062{width:183.312000px;}
._5d_c00062{width:185.841000px;}
._51_c00062{width:187.224000px;}
._44_c00062{width:230.328000px;}
._28_c00062{width:233.808000px;}
._2d_c00062{width:262.704000px;}
._4f_c00062{width:268.344000px;}
._66_c00062{width:289.512000px;}
._4a_c00062{width:303.744000px;}
._4b_c00062{width:312.060000px;}
._37_c00062{width:342.705000px;}
._61_c00062{width:346.116000px;}
._59_c00062{width:348.924000px;}
._5f_c00062{width:402.264000px;}
._49_c00062{width:406.308000px;}
._54_c00062{width:441.264000px;}
._50_c00062{width:502.662000px;}
._63_c00062{width:506.487000px;}
._4c_c00062{width:515.844000px;}
._38_c00062{width:546.216000px;}
._2c_c00062{width:769.440000px;}
._1c_c00062{width:856.620000px;}
._1e_c00062{width:1595.136000px;}
.fc2_c00062{color:transparent;}
.fc1_c00062{color:rgb(128,128,128);}
.fc0_c00062{color:rgb(0,0,0);}
.fs5_c00062{font-size:48.000000px;}
.fs4_c00062{font-size:54.000000px;}
.fs1_c00062{font-size:84.000000px;}
.fs3_c00062{font-size:93.000000px;}
.fs0_c00062{font-size:96.000000px;}
.fs2_c00062{font-size:102.000000px;}
.y0_c00062{bottom:0.000000px;}
.y28_c00062{bottom:3.105000px;}
.y27_c00062{bottom:7.228369px;}
.y26_c00062{bottom:98.820000px;}
.y25_c00062{bottom:198.120000px;}
.y24_c00062{bottom:235.470000px;}
.y23_c00062{bottom:267.570000px;}
.y22_c00062{bottom:300.720000px;}
.y21_c00062{bottom:334.020000px;}
.y20_c00062{bottom:366.570000px;}
.y1f_c00062{bottom:392.070000px;}
.y1e_c00062{bottom:434.070000px;}
.y1d_c00062{bottom:468.420000px;}
.y1c_c00062{bottom:503.220000px;}
.y1b_c00062{bottom:535.170000px;}
.y1a_c00062{bottom:568.020000px;}
.y19_c00062{bottom:599.970000px;}
.y18_c00062{bottom:632.370000px;}
.y17_c00062{bottom:667.470000px;}
.y16_c00062{bottom:686.520000px;}
.y15_c00062{bottom:700.320000px;}
.y14_c00062{bottom:716.520000px;}
.y13_c00062{bottom:733.620000px;}
.y12_c00062{bottom:769.770000px;}
.y11_c00062{bottom:801.270000px;}
.y10_c00062{bottom:833.670000px;}
.yf_c00062{bottom:864.720000px;}
.ye_c00062{bottom:896.370000px;}
.yd_c00062{bottom:918.270000px;}
.yc_c00062{bottom:932.820000px;}
.yb_c00062{bottom:948.270000px;}
.ya_c00062{bottom:965.520000px;}
.y9_c00062{bottom:1001.670000px;}
.y8_c00062{bottom:1031.970000px;}
.y7_c00062{bottom:1064.070000px;}
.y6_c00062{bottom:1097.820000px;}
.y5_c00062{bottom:1131.270000px;}
.y4_c00062{bottom:1164.270000px;}
.y3_c00062{bottom:1196.670000px;}
.y2_c00062{bottom:1230.120000px;}
.y1_c00062{bottom:1262.520000px;}
.h5_c00062{height:13.200073px;}
.h6_c00062{height:43.804688px;}
.h4_c00062{height:98.314453px;}
.h3_c00062{height:117.748535px;}
.h2_c00062{height:121.546875px;}
.h0_c00062{height:1356.450000px;}
.h1_c00062{height:1356.750000px;}
.w2_c00062{width:104.875500px;}
.w0_c00062{width:860.775000px;}
.w1_c00062{width:861.000000px;}
.x0_c00062{left:0.000000px;}
.xd_c00062{left:18.600000px;}
.x7_c00062{left:19.650000px;}
.x6_c00062{left:20.850000px;}
.xa_c00062{left:22.950000px;}
.x4_c00062{left:24.000000px;}
.x3_c00062{left:25.650000px;}
.x2_c00062{left:26.700000px;}
.x1_c00062{left:27.750000px;}
.x5_c00062{left:71.100000px;}
.x8_c00062{left:91.050000px;}
.xb_c00062{left:107.100000px;}
.x9_c00062{left:214.350000px;}
.xf_c00062{left:382.201721px;}
.xe_c00062{left:493.800000px;}
.xc_c00062{left:629.400000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls2_c00062{letter-spacing:0.000000pt;}
.ls1_c00062{letter-spacing:3.957333pt;}
.ls3_c00062{letter-spacing:10.666667pt;}
.ls0_c00062{letter-spacing:18.890667pt;}
.ws1_c00062{word-spacing:-56.000000pt;}
.ws6_c00062{word-spacing:-36.885333pt;}
.ws4_c00062{word-spacing:-20.565333pt;}
.ws2_c00062{word-spacing:-19.922667pt;}
.ws0_c00062{word-spacing:-17.994667pt;}
.ws7_c00062{word-spacing:0.000000pt;}
.ws3_c00062{word-spacing:0.821333pt;}
.ws5_c00062{word-spacing:10.944000pt;}
._5e_c00062{margin-left:-77.024000pt;}
._55_c00062{margin-left:-66.389333pt;}
._56_c00062{margin-left:-31.488000pt;}
._2e_c00062{margin-left:-29.354667pt;}
._25_c00062{margin-left:-26.133333pt;}
._1d_c00062{margin-left:-23.978667pt;}
._4d_c00062{margin-left:-20.394667pt;}
._3b_c00062{margin-left:-19.114667pt;}
._2f_c00062{margin-left:-17.440000pt;}
._36_c00062{margin-left:-15.893333pt;}
._2a_c00062{margin-left:-13.589333pt;}
._2b_c00062{margin-left:-11.136000pt;}
._32_c00062{margin-left:-9.642667pt;}
._62_c00062{margin-left:-8.720000pt;}
._31_c00062{margin-left:-7.765333pt;}
._23_c00062{margin-left:-6.026667pt;}
._24_c00062{margin-left:-4.906667pt;}
._8_c00062{margin-left:-3.840000pt;}
._13_c00062{margin-left:-2.218667pt;}
._0_c00062{margin-left:-1.194667pt;}
._6_c00062{width:1.493333pt;}
._4_c00062{width:3.264000pt;}
._5_c00062{width:4.522667pt;}
._3_c00062{width:5.824000pt;}
._2_c00062{width:6.944000pt;}
._10_c00062{width:8.618667pt;}
._34_c00062{width:9.648000pt;}
._14_c00062{width:10.538667pt;}
._35_c00062{width:12.306667pt;}
._16_c00062{width:13.610667pt;}
._e_c00062{width:14.784000pt;}
._60_c00062{width:16.021333pt;}
._15_c00062{width:17.130667pt;}
._12_c00062{width:19.306667pt;}
._26_c00062{width:20.928000pt;}
._c_c00062{width:22.613333pt;}
._1a_c00062{width:24.789333pt;}
._7_c00062{width:26.368000pt;}
._47_c00062{width:27.392000pt;}
._64_c00062{width:28.405333pt;}
._f_c00062{width:29.354667pt;}
._17_c00062{width:30.837333pt;}
._19_c00062{width:32.352000pt;}
._41_c00062{width:33.706667pt;}
._1_c00062{width:35.306667pt;}
._1b_c00062{width:36.352000pt;}
._d_c00062{width:38.314667pt;}
._9_c00062{width:39.296000pt;}
._11_c00062{width:40.821333pt;}
._5b_c00062{width:41.920000pt;}
._27_c00062{width:42.858667pt;}
._20_c00062{width:44.032000pt;}
._b_c00062{width:45.397333pt;}
._40_c00062{width:46.328000pt;}
._a_c00062{width:47.317333pt;}
._45_c00062{width:48.960000pt;}
._21_c00062{width:49.984000pt;}
._30_c00062{width:51.456000pt;}
._42_c00062{width:53.994667pt;}
._43_c00062{width:55.584000pt;}
._3f_c00062{width:56.928000pt;}
._5c_c00062{width:57.920000pt;}
._48_c00062{width:59.733333pt;}
._18_c00062{width:60.682667pt;}
._46_c00062{width:63.680000pt;}
._57_c00062{width:65.408000pt;}
._65_c00062{width:66.442667pt;}
._39_c00062{width:79.872000pt;}
._67_c00062{width:82.826667pt;}
._29_c00062{width:88.586667pt;}
._53_c00062{width:90.453333pt;}
._58_c00062{width:98.880000pt;}
._3d_c00062{width:100.949333pt;}
._3c_c00062{width:112.725333pt;}
._3a_c00062{width:114.400000pt;}
._3e_c00062{width:120.682667pt;}
._52_c00062{width:127.232000pt;}
._4e_c00062{width:145.557333pt;}
._1f_c00062{width:151.104000pt;}
._33_c00062{width:152.768000pt;}
._5a_c00062{width:157.536000pt;}
._22_c00062{width:162.944000pt;}
._5d_c00062{width:165.192000pt;}
._51_c00062{width:166.421333pt;}
._44_c00062{width:204.736000pt;}
._28_c00062{width:207.829333pt;}
._2d_c00062{width:233.514667pt;}
._4f_c00062{width:238.528000pt;}
._66_c00062{width:257.344000pt;}
._4a_c00062{width:269.994667pt;}
._4b_c00062{width:277.386667pt;}
._37_c00062{width:304.626667pt;}
._61_c00062{width:307.658667pt;}
._59_c00062{width:310.154667pt;}
._5f_c00062{width:357.568000pt;}
._49_c00062{width:361.162667pt;}
._54_c00062{width:392.234667pt;}
._50_c00062{width:446.810667pt;}
._63_c00062{width:450.210667pt;}
._4c_c00062{width:458.528000pt;}
._38_c00062{width:485.525333pt;}
._2c_c00062{width:683.946667pt;}
._1c_c00062{width:761.440000pt;}
._1e_c00062{width:1417.898667pt;}
.fs5_c00062{font-size:42.666667pt;}
.fs4_c00062{font-size:48.000000pt;}
.fs1_c00062{font-size:74.666667pt;}
.fs3_c00062{font-size:82.666667pt;}
.fs0_c00062{font-size:85.333333pt;}
.fs2_c00062{font-size:90.666667pt;}
.y0_c00062{bottom:0.000000pt;}
.y28_c00062{bottom:2.760000pt;}
.y27_c00062{bottom:6.425217pt;}
.y26_c00062{bottom:87.840000pt;}
.y25_c00062{bottom:176.106667pt;}
.y24_c00062{bottom:209.306667pt;}
.y23_c00062{bottom:237.840000pt;}
.y22_c00062{bottom:267.306667pt;}
.y21_c00062{bottom:296.906667pt;}
.y20_c00062{bottom:325.840000pt;}
.y1f_c00062{bottom:348.506667pt;}
.y1e_c00062{bottom:385.840000pt;}
.y1d_c00062{bottom:416.373333pt;}
.y1c_c00062{bottom:447.306667pt;}
.y1b_c00062{bottom:475.706667pt;}
.y1a_c00062{bottom:504.906667pt;}
.y19_c00062{bottom:533.306667pt;}
.y18_c00062{bottom:562.106667pt;}
.y17_c00062{bottom:593.306667pt;}
.y16_c00062{bottom:610.240000pt;}
.y15_c00062{bottom:622.506667pt;}
.y14_c00062{bottom:636.906667pt;}
.y13_c00062{bottom:652.106667pt;}
.y12_c00062{bottom:684.240000pt;}
.y11_c00062{bottom:712.240000pt;}
.y10_c00062{bottom:741.040000pt;}
.yf_c00062{bottom:768.640000pt;}
.ye_c00062{bottom:796.773333pt;}
.yd_c00062{bottom:816.240000pt;}
.yc_c00062{bottom:829.173333pt;}
.yb_c00062{bottom:842.906667pt;}
.ya_c00062{bottom:858.240000pt;}
.y9_c00062{bottom:890.373333pt;}
.y8_c00062{bottom:917.306667pt;}
.y7_c00062{bottom:945.840000pt;}
.y6_c00062{bottom:975.840000pt;}
.y5_c00062{bottom:1005.573333pt;}
.y4_c00062{bottom:1034.906667pt;}
.y3_c00062{bottom:1063.706667pt;}
.y2_c00062{bottom:1093.440000pt;}
.y1_c00062{bottom:1122.240000pt;}
.h5_c00062{height:11.733399pt;}
.h6_c00062{height:38.937500pt;}
.h4_c00062{height:87.390625pt;}
.h3_c00062{height:104.665365pt;}
.h2_c00062{height:108.041667pt;}
.h0_c00062{height:1205.733333pt;}
.h1_c00062{height:1206.000000pt;}
.w2_c00062{width:93.222667pt;}
.w0_c00062{width:765.133333pt;}
.w1_c00062{width:765.333333pt;}
.x0_c00062{left:0.000000pt;}
.xd_c00062{left:16.533333pt;}
.x7_c00062{left:17.466667pt;}
.x6_c00062{left:18.533333pt;}
.xa_c00062{left:20.400000pt;}
.x4_c00062{left:21.333333pt;}
.x3_c00062{left:22.800000pt;}
.x2_c00062{left:23.733333pt;}
.x1_c00062{left:24.666667pt;}
.x5_c00062{left:63.200000pt;}
.x8_c00062{left:80.933333pt;}
.xb_c00062{left:95.200000pt;}
.x9_c00062{left:190.533333pt;}
.xf_c00062{left:339.734863pt;}
.xe_c00062{left:438.933333pt;}
.xc_c00062{left:559.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_765d8d58fee0f09064e44a22.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_9c6e2337c2ac336ce1aebe79.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_8ff689a23151403cd844132c.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_cbfb331c6f2511c53ac74356.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls1_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:17.964000px;}
.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;}
}
.ws3_c00063{word-spacing:-32.424000px;}
.ws1_c00063{word-spacing:-25.939200px;}
.ws4_c00063{word-spacing:-23.136000px;}
.ws2_c00063{word-spacing:-20.244000px;}
.ws5_c00063{word-spacing:0.000000px;}
.ws0_c00063{word-spacing:1.075200px;}
._3b_c00063{margin-left:-67.951200px;}
._30_c00063{margin-left:-30.240000px;}
._62_c00063{margin-left:-29.088000px;}
._43_c00063{margin-left:-24.288000px;}
._46_c00063{margin-left:-21.240000px;}
._45_c00063{margin-left:-20.064000px;}
._3e_c00063{margin-left:-18.732000px;}
._37_c00063{margin-left:-16.380000px;}
._5e_c00063{margin-left:-15.160800px;}
._1e_c00063{margin-left:-14.016000px;}
._1f_c00063{margin-left:-12.998400px;}
._1d_c00063{margin-left:-11.424000px;}
._2c_c00063{margin-left:-9.660000px;}
._35_c00063{margin-left:-8.109600px;}
._1b_c00063{margin-left:-7.065600px;}
._7_c00063{margin-left:-5.952000px;}
._9_c00063{margin-left:-4.531200px;}
._8_c00063{margin-left:-2.784000px;}
._b_c00063{margin-left:-1.680000px;}
._16_c00063{width:1.080000px;}
._d_c00063{width:2.244000px;}
._2b_c00063{width:3.300000px;}
._11_c00063{width:4.320000px;}
._c_c00063{width:6.048000px;}
._19_c00063{width:7.140000px;}
._0_c00063{width:8.256000px;}
._2_c00063{width:10.176000px;}
._1_c00063{width:11.424000px;}
._31_c00063{width:12.484800px;}
._1a_c00063{width:13.608000px;}
._21_c00063{width:15.288000px;}
._4_c00063{width:16.435200px;}
._6_c00063{width:17.971200px;}
._f_c00063{width:19.680000px;}
._32_c00063{width:21.348000px;}
._18_c00063{width:22.428000px;}
._5d_c00063{width:24.156000px;}
._5_c00063{width:26.073600px;}
._28_c00063{width:28.248000px;}
._27_c00063{width:29.961600px;}
._24_c00063{width:31.020000px;}
._33_c00063{width:32.935200px;}
._12_c00063{width:34.176000px;}
._29_c00063{width:35.532000px;}
._34_c00063{width:37.024800px;}
._20_c00063{width:38.400000px;}
._13_c00063{width:39.672000px;}
._14_c00063{width:41.052000px;}
._25_c00063{width:43.284000px;}
._15_c00063{width:44.376000px;}
._5a_c00063{width:45.660000px;}
._22_c00063{width:47.268000px;}
._2d_c00063{width:48.280800px;}
._17_c00063{width:49.344000px;}
._42_c00063{width:50.976000px;}
._36_c00063{width:52.024800px;}
._56_c00063{width:54.360000px;}
._4f_c00063{width:56.088000px;}
._55_c00063{width:58.759200px;}
._23_c00063{width:60.252000px;}
._50_c00063{width:63.619200px;}
._39_c00063{width:64.958400px;}
._4e_c00063{width:66.240000px;}
._3a_c00063{width:67.262400px;}
._60_c00063{width:70.716000px;}
._3_c00063{width:72.168000px;}
._4d_c00063{width:74.304000px;}
._57_c00063{width:75.400800px;}
._51_c00063{width:76.872000px;}
._44_c00063{width:80.232000px;}
._49_c00063{width:96.768000px;}
._1c_c00063{width:115.387200px;}
._61_c00063{width:125.760000px;}
._58_c00063{width:129.660000px;}
._47_c00063{width:131.424000px;}
._5b_c00063{width:152.796000px;}
._3d_c00063{width:155.431200px;}
._41_c00063{width:172.608000px;}
._2f_c00063{width:188.568000px;}
._10_c00063{width:192.384000px;}
._5c_c00063{width:204.576000px;}
._40_c00063{width:208.620000px;}
._3f_c00063{width:221.952000px;}
._59_c00063{width:252.672000px;}
._4a_c00063{width:256.629600px;}
._3c_c00063{width:282.192000px;}
._48_c00063{width:294.300000px;}
._e_c00063{width:297.012000px;}
._2a_c00063{width:311.856000px;}
._63_c00063{width:316.992000px;}
._38_c00063{width:424.092000px;}
._4c_c00063{width:434.112000px;}
._53_c00063{width:465.948000px;}
._5f_c00063{width:537.832800px;}
._54_c00063{width:557.133600px;}
._4b_c00063{width:612.748800px;}
._26_c00063{width:674.325600px;}
._52_c00063{width:767.868000px;}
._2e_c00063{width:1811.923200px;}
._a_c00063{width:2852.640000px;}
.fc2_c00063{color:transparent;}
.fc1_c00063{color:rgb(128,128,128);}
.fc0_c00063{color:rgb(0,0,0);}
.fs4_c00063{font-size:48.000000px;}
.fs3_c00063{font-size:67.200000px;}
.fs1_c00063{font-size:76.800000px;}
.fs2_c00063{font-size:84.000000px;}
.fs0_c00063{font-size:96.000000px;}
.y0_c00063{bottom:0.000000px;}
.y29_c00063{bottom:3.105000px;}
.y28_c00063{bottom:7.228357px;}
.y27_c00063{bottom:97.530000px;}
.y26_c00063{bottom:135.330000px;}
.y25_c00063{bottom:170.430000px;}
.y24_c00063{bottom:204.480000px;}
.y23_c00063{bottom:238.380000px;}
.y22_c00063{bottom:271.980000px;}
.y21_c00063{bottom:307.230000px;}
.y20_c00063{bottom:340.530000px;}
.y1f_c00063{bottom:375.030000px;}
.y1e_c00063{bottom:408.480000px;}
.y1d_c00063{bottom:441.780000px;}
.y1c_c00063{bottom:475.980000px;}
.y1b_c00063{bottom:509.580000px;}
.y1a_c00063{bottom:543.030000px;}
.y19_c00063{bottom:576.480000px;}
.y18_c00063{bottom:609.930000px;}
.y17_c00063{bottom:642.930000px;}
.y16_c00063{bottom:676.680000px;}
.y15_c00063{bottom:708.780000px;}
.y14_c00063{bottom:742.830000px;}
.y13_c00063{bottom:775.530000px;}
.y12_c00063{bottom:807.330000px;}
.y11_c00063{bottom:830.280000px;}
.y10_c00063{bottom:842.730000px;}
.yf_c00063{bottom:858.030000px;}
.ye_c00063{bottom:881.580000px;}
.yd_c00063{bottom:913.230000px;}
.yc_c00063{bottom:944.280000px;}
.yb_c00063{bottom:975.780000px;}
.ya_c00063{bottom:1007.130000px;}
.y9_c00063{bottom:1039.830000px;}
.y8_c00063{bottom:1070.580000px;}
.y7_c00063{bottom:1092.480000px;}
.y6_c00063{bottom:1111.380000px;}
.y5_c00063{bottom:1145.580000px;}
.y4_c00063{bottom:1175.580000px;}
.y3_c00063{bottom:1207.230000px;}
.y2_c00063{bottom:1239.630000px;}
.y1_c00063{bottom:1271.430000px;}
.h3_c00063{height:13.200074px;}
.h4_c00063{height:43.804688px;}
.h2_c00063{height:121.546875px;}
.h0_c00063{height:1382.700000px;}
.h1_c00063{height:1383.000000px;}
.w2_c00063{width:104.875500px;}
.w0_c00063{width:863.175000px;}
.w1_c00063{width:863.250000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:67.200000px;}
.x4_c00063{left:68.250000px;}
.x5_c00063{left:69.900000px;}
.x3_c00063{left:96.300000px;}
.x6_c00063{left:105.600000px;}
.x8_c00063{left:136.350000px;}
.xe_c00063{left:155.700000px;}
.xa_c00063{left:171.900000px;}
.xf_c00063{left:208.200000px;}
.xc_c00063{left:222.750000px;}
.xb_c00063{left:225.450000px;}
.xd_c00063{left:256.800000px;}
.x10_c00063{left:283.200000px;}
.x7_c00063{left:284.250000px;}
.x9_c00063{left:285.900000px;}
.x12_c00063{left:383.401749px;}
.x1_c00063{left:416.100000px;}
.x11_c00063{left:787.050000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls1_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:15.968000pt;}
.ws3_c00063{word-spacing:-28.821333pt;}
.ws1_c00063{word-spacing:-23.057067pt;}
.ws4_c00063{word-spacing:-20.565333pt;}
.ws2_c00063{word-spacing:-17.994667pt;}
.ws5_c00063{word-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.955733pt;}
._3b_c00063{margin-left:-60.401067pt;}
._30_c00063{margin-left:-26.880000pt;}
._62_c00063{margin-left:-25.856000pt;}
._43_c00063{margin-left:-21.589333pt;}
._46_c00063{margin-left:-18.880000pt;}
._45_c00063{margin-left:-17.834667pt;}
._3e_c00063{margin-left:-16.650667pt;}
._37_c00063{margin-left:-14.560000pt;}
._5e_c00063{margin-left:-13.476267pt;}
._1e_c00063{margin-left:-12.458667pt;}
._1f_c00063{margin-left:-11.554133pt;}
._1d_c00063{margin-left:-10.154667pt;}
._2c_c00063{margin-left:-8.586667pt;}
._35_c00063{margin-left:-7.208533pt;}
._1b_c00063{margin-left:-6.280533pt;}
._7_c00063{margin-left:-5.290667pt;}
._9_c00063{margin-left:-4.027733pt;}
._8_c00063{margin-left:-2.474667pt;}
._b_c00063{margin-left:-1.493333pt;}
._16_c00063{width:0.960000pt;}
._d_c00063{width:1.994667pt;}
._2b_c00063{width:2.933333pt;}
._11_c00063{width:3.840000pt;}
._c_c00063{width:5.376000pt;}
._19_c00063{width:6.346667pt;}
._0_c00063{width:7.338667pt;}
._2_c00063{width:9.045333pt;}
._1_c00063{width:10.154667pt;}
._31_c00063{width:11.097600pt;}
._1a_c00063{width:12.096000pt;}
._21_c00063{width:13.589333pt;}
._4_c00063{width:14.609067pt;}
._6_c00063{width:15.974400pt;}
._f_c00063{width:17.493333pt;}
._32_c00063{width:18.976000pt;}
._18_c00063{width:19.936000pt;}
._5d_c00063{width:21.472000pt;}
._5_c00063{width:23.176533pt;}
._28_c00063{width:25.109333pt;}
._27_c00063{width:26.632533pt;}
._24_c00063{width:27.573333pt;}
._33_c00063{width:29.275733pt;}
._12_c00063{width:30.378667pt;}
._29_c00063{width:31.584000pt;}
._34_c00063{width:32.910933pt;}
._20_c00063{width:34.133333pt;}
._13_c00063{width:35.264000pt;}
._14_c00063{width:36.490667pt;}
._25_c00063{width:38.474667pt;}
._15_c00063{width:39.445333pt;}
._5a_c00063{width:40.586667pt;}
._22_c00063{width:42.016000pt;}
._2d_c00063{width:42.916267pt;}
._17_c00063{width:43.861333pt;}
._42_c00063{width:45.312000pt;}
._36_c00063{width:46.244267pt;}
._56_c00063{width:48.320000pt;}
._4f_c00063{width:49.856000pt;}
._55_c00063{width:52.230400pt;}
._23_c00063{width:53.557333pt;}
._50_c00063{width:56.550400pt;}
._39_c00063{width:57.740800pt;}
._4e_c00063{width:58.880000pt;}
._3a_c00063{width:59.788800pt;}
._60_c00063{width:62.858667pt;}
._3_c00063{width:64.149333pt;}
._4d_c00063{width:66.048000pt;}
._57_c00063{width:67.022933pt;}
._51_c00063{width:68.330667pt;}
._44_c00063{width:71.317333pt;}
._49_c00063{width:86.016000pt;}
._1c_c00063{width:102.566400pt;}
._61_c00063{width:111.786667pt;}
._58_c00063{width:115.253333pt;}
._47_c00063{width:116.821333pt;}
._5b_c00063{width:135.818667pt;}
._3d_c00063{width:138.161067pt;}
._41_c00063{width:153.429333pt;}
._2f_c00063{width:167.616000pt;}
._10_c00063{width:171.008000pt;}
._5c_c00063{width:181.845333pt;}
._40_c00063{width:185.440000pt;}
._3f_c00063{width:197.290667pt;}
._59_c00063{width:224.597333pt;}
._4a_c00063{width:228.115200pt;}
._3c_c00063{width:250.837333pt;}
._48_c00063{width:261.600000pt;}
._e_c00063{width:264.010667pt;}
._2a_c00063{width:277.205333pt;}
._63_c00063{width:281.770667pt;}
._38_c00063{width:376.970667pt;}
._4c_c00063{width:385.877333pt;}
._53_c00063{width:414.176000pt;}
._5f_c00063{width:478.073600pt;}
._54_c00063{width:495.229867pt;}
._4b_c00063{width:544.665600pt;}
._26_c00063{width:599.400533pt;}
._52_c00063{width:682.549333pt;}
._2e_c00063{width:1610.598400pt;}
._a_c00063{width:2535.680000pt;}
.fs4_c00063{font-size:42.666667pt;}
.fs3_c00063{font-size:59.733333pt;}
.fs1_c00063{font-size:68.266667pt;}
.fs2_c00063{font-size:74.666667pt;}
.fs0_c00063{font-size:85.333333pt;}
.y0_c00063{bottom:0.000000pt;}
.y29_c00063{bottom:2.760000pt;}
.y28_c00063{bottom:6.425206pt;}
.y27_c00063{bottom:86.693333pt;}
.y26_c00063{bottom:120.293333pt;}
.y25_c00063{bottom:151.493333pt;}
.y24_c00063{bottom:181.760000pt;}
.y23_c00063{bottom:211.893333pt;}
.y22_c00063{bottom:241.760000pt;}
.y21_c00063{bottom:273.093333pt;}
.y20_c00063{bottom:302.693333pt;}
.y1f_c00063{bottom:333.360000pt;}
.y1e_c00063{bottom:363.093333pt;}
.y1d_c00063{bottom:392.693333pt;}
.y1c_c00063{bottom:423.093333pt;}
.y1b_c00063{bottom:452.960000pt;}
.y1a_c00063{bottom:482.693333pt;}
.y19_c00063{bottom:512.426667pt;}
.y18_c00063{bottom:542.160000pt;}
.y17_c00063{bottom:571.493333pt;}
.y16_c00063{bottom:601.493333pt;}
.y15_c00063{bottom:630.026667pt;}
.y14_c00063{bottom:660.293333pt;}
.y13_c00063{bottom:689.360000pt;}
.y12_c00063{bottom:717.626667pt;}
.y11_c00063{bottom:738.026667pt;}
.y10_c00063{bottom:749.093333pt;}
.yf_c00063{bottom:762.693333pt;}
.ye_c00063{bottom:783.626667pt;}
.yd_c00063{bottom:811.760000pt;}
.yc_c00063{bottom:839.360000pt;}
.yb_c00063{bottom:867.360000pt;}
.ya_c00063{bottom:895.226667pt;}
.y9_c00063{bottom:924.293333pt;}
.y8_c00063{bottom:951.626667pt;}
.y7_c00063{bottom:971.093333pt;}
.y6_c00063{bottom:987.893333pt;}
.y5_c00063{bottom:1018.293333pt;}
.y4_c00063{bottom:1044.960000pt;}
.y3_c00063{bottom:1073.093333pt;}
.y2_c00063{bottom:1101.893333pt;}
.y1_c00063{bottom:1130.160000pt;}
.h3_c00063{height:11.733399pt;}
.h4_c00063{height:38.937500pt;}
.h2_c00063{height:108.041667pt;}
.h0_c00063{height:1229.066667pt;}
.h1_c00063{height:1229.333333pt;}
.w2_c00063{width:93.222667pt;}
.w0_c00063{width:767.266667pt;}
.w1_c00063{width:767.333333pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:59.733333pt;}
.x4_c00063{left:60.666667pt;}
.x5_c00063{left:62.133333pt;}
.x3_c00063{left:85.600000pt;}
.x6_c00063{left:93.866667pt;}
.x8_c00063{left:121.200000pt;}
.xe_c00063{left:138.400000pt;}
.xa_c00063{left:152.800000pt;}
.xf_c00063{left:185.066667pt;}
.xc_c00063{left:198.000000pt;}
.xb_c00063{left:200.400000pt;}
.xd_c00063{left:228.266667pt;}
.x10_c00063{left:251.733333pt;}
.x7_c00063{left:252.666667pt;}
.x9_c00063{left:254.133333pt;}
.x12_c00063{left:340.801554pt;}
.x1_c00063{left:369.866667pt;}
.x11_c00063{left:699.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_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_ec0449f0f45e7d464ea54eea.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;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:ff2_c00064;src:url('chunks/assets/font_decb8f0d510ff9ad9caca2b3.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_d78f549b185e328e2c81329f.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_9ecf96ffc04355bca990d6c0.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00064{vertical-align:-117.000000px;}
.v0_c00064{vertical-align:0.000000px;}
.ls5_c00064{letter-spacing:0.000000px;}
.ls6_c00064{letter-spacing:3.000000px;}
.ls1_c00064{letter-spacing:6.552000px;}
.ls0_c00064{letter-spacing:8.520000px;}
.ls2_c00064{letter-spacing:8.664000px;}
.ls4_c00064{letter-spacing:12.000000px;}
.ls3_c00064{letter-spacing:14.709000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:-63.000000px;}
.ws1_c00064{word-spacing:-20.244000px;}
.ws2_c00064{word-spacing:-18.768000px;}
.ws3_c00064{word-spacing:0.000000px;}
._32_c00064{margin-left:-84.000000px;}
._30_c00064{margin-left:-79.776000px;}
._25_c00064{margin-left:-78.624000px;}
._2e_c00064{margin-left:-77.064000px;}
._24_c00064{margin-left:-49.056000px;}
._5_c00064{margin-left:-32.640000px;}
._23_c00064{margin-left:-31.236000px;}
._3f_c00064{margin-left:-29.760000px;}
._3d_c00064{margin-left:-28.476000px;}
._26_c00064{margin-left:-24.576000px;}
._35_c00064{margin-left:-20.448000px;}
._2c_c00064{margin-left:-18.228000px;}
._28_c00064{margin-left:-16.320000px;}
._41_c00064{margin-left:-12.744000px;}
._48_c00064{margin-left:-11.676000px;}
._18_c00064{margin-left:-10.656000px;}
._1f_c00064{margin-left:-8.736000px;}
._2a_c00064{margin-left:-7.056000px;}
._46_c00064{margin-left:-6.000000px;}
._4_c00064{margin-left:-4.800000px;}
._f_c00064{margin-left:-3.648000px;}
._d_c00064{margin-left:-2.496000px;}
._c_c00064{margin-left:-1.056000px;}
._2_c00064{width:2.016000px;}
._3_c00064{width:3.840000px;}
._b_c00064{width:4.992000px;}
._8_c00064{width:6.432000px;}
._9_c00064{width:8.064000px;}
._1e_c00064{width:9.504000px;}
._a_c00064{width:10.656000px;}
._6_c00064{width:12.576000px;}
._1_c00064{width:14.076000px;}
._40_c00064{width:15.168000px;}
._0_c00064{width:16.320000px;}
._1d_c00064{width:18.084000px;}
._10_c00064{width:19.104000px;}
._20_c00064{width:20.736000px;}
._47_c00064{width:22.584000px;}
._45_c00064{width:23.856000px;}
._16_c00064{width:25.116000px;}
._7_c00064{width:26.592000px;}
._3c_c00064{width:28.320000px;}
._3a_c00064{width:29.472000px;}
._39_c00064{width:30.660000px;}
._1b_c00064{width:32.352000px;}
._13_c00064{width:33.408000px;}
._21_c00064{width:34.656000px;}
._14_c00064{width:36.480000px;}
._15_c00064{width:37.728000px;}
._e_c00064{width:39.012000px;}
._12_c00064{width:40.608000px;}
._22_c00064{width:41.664000px;}
._17_c00064{width:43.008000px;}
._11_c00064{width:44.160000px;}
._43_c00064{width:45.192000px;}
._3e_c00064{width:46.536000px;}
._36_c00064{width:50.016000px;}
._1a_c00064{width:51.168000px;}
._49_c00064{width:52.464000px;}
._3b_c00064{width:54.624000px;}
._19_c00064{width:56.448000px;}
._2d_c00064{width:60.732000px;}
._1c_c00064{width:65.376000px;}
._42_c00064{width:66.432000px;}
._27_c00064{width:92.352000px;}
._34_c00064{width:105.396000px;}
._2b_c00064{width:114.744000px;}
._31_c00064{width:128.928000px;}
._2f_c00064{width:161.088000px;}
._38_c00064{width:177.504000px;}
._33_c00064{width:209.088000px;}
._29_c00064{width:268.728000px;}
._44_c00064{width:876.288000px;}
._37_c00064{width:1357.584000px;}
.fc2_c00064{color:transparent;}
.fc1_c00064{color:rgb(128,128,128);}
.fc0_c00064{color:rgb(0,0,0);}
.fs5_c00064{font-size:48.000000px;}
.fs4_c00064{font-size:51.000000px;}
.fs3_c00064{font-size:54.000000px;}
.fs2_c00064{font-size:84.000000px;}
.fs1_c00064{font-size:96.000000px;}
.fs0_c00064{font-size:102.000000px;}
.y0_c00064{bottom:0.000000px;}
.y33_c00064{bottom:3.105000px;}
.y32_c00064{bottom:7.228369px;}
.y25_c00064{bottom:104.670000px;}
.y24_c00064{bottom:137.970000px;}
.y23_c00064{bottom:172.470000px;}
.y22_c00064{bottom:206.220000px;}
.y21_c00064{bottom:239.670000px;}
.y20_c00064{bottom:274.320000px;}
.y1f_c00064{bottom:307.470000px;}
.y1e_c00064{bottom:342.120000px;}
.y1d_c00064{bottom:374.970000px;}
.y1c_c00064{bottom:408.270000px;}
.y1b_c00064{bottom:441.720000px;}
.y1a_c00064{bottom:475.470000px;}
.y19_c00064{bottom:508.920000px;}
.y31_c00064{bottom:528.120000px;}
.y18_c00064{bottom:542.370000px;}
.y30_c00064{bottom:558.870000px;}
.y17_c00064{bottom:575.370000px;}
.y2f_c00064{bottom:587.970000px;}
.y16_c00064{bottom:609.120000px;}
.y2e_c00064{bottom:617.220000px;}
.y15_c00064{bottom:641.970000px;}
.y2d_c00064{bottom:647.220000px;}
.y14_c00064{bottom:675.270000px;}
.y2c_c00064{bottom:676.320000px;}
.y2b_c00064{bottom:706.020000px;}
.y13_c00064{bottom:709.020000px;}
.y2a_c00064{bottom:735.720000px;}
.y12_c00064{bottom:742.470000px;}
.y29_c00064{bottom:765.420000px;}
.y11_c00064{bottom:776.520000px;}
.y28_c00064{bottom:794.520000px;}
.y10_c00064{bottom:808.920000px;}
.y27_c00064{bottom:824.070000px;}
.yf_c00064{bottom:842.370000px;}
.y26_c00064{bottom:854.220000px;}
.ye_c00064{bottom:908.220000px;}
.yc_c00064{bottom:947.070000px;}
.yd_c00064{bottom:975.270000px;}
.yb_c00064{bottom:980.670000px;}
.ya_c00064{bottom:1009.470000px;}
.y9_c00064{bottom:1043.820000px;}
.y8_c00064{bottom:1076.670000px;}
.y7_c00064{bottom:1109.520000px;}
.y6_c00064{bottom:1142.820000px;}
.y5_c00064{bottom:1176.120000px;}
.y4_c00064{bottom:1208.820000px;}
.y3_c00064{bottom:1242.270000px;}
.y2_c00064{bottom:1275.420000px;}
.y1_c00064{bottom:1299.720000px;}
.h6_c00064{height:13.200073px;}
.h7_c00064{height:43.804688px;}
.h5_c00064{height:98.314453px;}
.h2_c00064{height:102.796875px;}
.h4_c00064{height:106.353516px;}
.h3_c00064{height:121.546875px;}
.h0_c00064{height:1356.450000px;}
.h1_c00064{height:1356.750000px;}
.w2_c00064{width:104.875500px;}
.w0_c00064{width:860.775000px;}
.w1_c00064{width:861.000000px;}
.x0_c00064{left:0.000000px;}
.xb_c00064{left:12.750000px;}
.xa_c00064{left:14.400000px;}
.xd_c00064{left:15.450000px;}
.xc_c00064{left:16.500000px;}
.x5_c00064{left:17.550000px;}
.x4_c00064{left:18.600000px;}
.x3_c00064{left:19.650000px;}
.x2_c00064{left:21.900000px;}
.x9_c00064{left:63.450000px;}
.x8_c00064{left:145.050000px;}
.x6_c00064{left:265.950000px;}
.x7_c00064{left:283.800000px;}
.x13_c00064{left:382.201721px;}
.x1_c00064{left:484.650000px;}
.x11_c00064{left:592.050000px;}
.x10_c00064{left:593.250000px;}
.x12_c00064{left:594.300000px;}
.xf_c00064{left:595.950000px;}
.xe_c00064{left:621.300000px;}
@media print{
.v1_c00064{vertical-align:-104.000000pt;}
.v0_c00064{vertical-align:0.000000pt;}
.ls5_c00064{letter-spacing:0.000000pt;}
.ls6_c00064{letter-spacing:2.666667pt;}
.ls1_c00064{letter-spacing:5.824000pt;}
.ls0_c00064{letter-spacing:7.573333pt;}
.ls2_c00064{letter-spacing:7.701333pt;}
.ls4_c00064{letter-spacing:10.666667pt;}
.ls3_c00064{letter-spacing:13.074667pt;}
.ws0_c00064{word-spacing:-56.000000pt;}
.ws1_c00064{word-spacing:-17.994667pt;}
.ws2_c00064{word-spacing:-16.682667pt;}
.ws3_c00064{word-spacing:0.000000pt;}
._32_c00064{margin-left:-74.666667pt;}
._30_c00064{margin-left:-70.912000pt;}
._25_c00064{margin-left:-69.888000pt;}
._2e_c00064{margin-left:-68.501333pt;}
._24_c00064{margin-left:-43.605333pt;}
._5_c00064{margin-left:-29.013333pt;}
._23_c00064{margin-left:-27.765333pt;}
._3f_c00064{margin-left:-26.453333pt;}
._3d_c00064{margin-left:-25.312000pt;}
._26_c00064{margin-left:-21.845333pt;}
._35_c00064{margin-left:-18.176000pt;}
._2c_c00064{margin-left:-16.202667pt;}
._28_c00064{margin-left:-14.506667pt;}
._41_c00064{margin-left:-11.328000pt;}
._48_c00064{margin-left:-10.378667pt;}
._18_c00064{margin-left:-9.472000pt;}
._1f_c00064{margin-left:-7.765333pt;}
._2a_c00064{margin-left:-6.272000pt;}
._46_c00064{margin-left:-5.333333pt;}
._4_c00064{margin-left:-4.266667pt;}
._f_c00064{margin-left:-3.242667pt;}
._d_c00064{margin-left:-2.218667pt;}
._c_c00064{margin-left:-0.938667pt;}
._2_c00064{width:1.792000pt;}
._3_c00064{width:3.413333pt;}
._b_c00064{width:4.437333pt;}
._8_c00064{width:5.717333pt;}
._9_c00064{width:7.168000pt;}
._1e_c00064{width:8.448000pt;}
._a_c00064{width:9.472000pt;}
._6_c00064{width:11.178667pt;}
._1_c00064{width:12.512000pt;}
._40_c00064{width:13.482667pt;}
._0_c00064{width:14.506667pt;}
._1d_c00064{width:16.074667pt;}
._10_c00064{width:16.981333pt;}
._20_c00064{width:18.432000pt;}
._47_c00064{width:20.074667pt;}
._45_c00064{width:21.205333pt;}
._16_c00064{width:22.325333pt;}
._7_c00064{width:23.637333pt;}
._3c_c00064{width:25.173333pt;}
._3a_c00064{width:26.197333pt;}
._39_c00064{width:27.253333pt;}
._1b_c00064{width:28.757333pt;}
._13_c00064{width:29.696000pt;}
._21_c00064{width:30.805333pt;}
._14_c00064{width:32.426667pt;}
._15_c00064{width:33.536000pt;}
._e_c00064{width:34.677333pt;}
._12_c00064{width:36.096000pt;}
._22_c00064{width:37.034667pt;}
._17_c00064{width:38.229333pt;}
._11_c00064{width:39.253333pt;}
._43_c00064{width:40.170667pt;}
._3e_c00064{width:41.365333pt;}
._36_c00064{width:44.458667pt;}
._1a_c00064{width:45.482667pt;}
._49_c00064{width:46.634667pt;}
._3b_c00064{width:48.554667pt;}
._19_c00064{width:50.176000pt;}
._2d_c00064{width:53.984000pt;}
._1c_c00064{width:58.112000pt;}
._42_c00064{width:59.050667pt;}
._27_c00064{width:82.090667pt;}
._34_c00064{width:93.685333pt;}
._2b_c00064{width:101.994667pt;}
._31_c00064{width:114.602667pt;}
._2f_c00064{width:143.189333pt;}
._38_c00064{width:157.781333pt;}
._33_c00064{width:185.856000pt;}
._29_c00064{width:238.869333pt;}
._44_c00064{width:778.922667pt;}
._37_c00064{width:1206.741333pt;}
.fs5_c00064{font-size:42.666667pt;}
.fs4_c00064{font-size:45.333333pt;}
.fs3_c00064{font-size:48.000000pt;}
.fs2_c00064{font-size:74.666667pt;}
.fs1_c00064{font-size:85.333333pt;}
.fs0_c00064{font-size:90.666667pt;}
.y0_c00064{bottom:0.000000pt;}
.y33_c00064{bottom:2.760000pt;}
.y32_c00064{bottom:6.425217pt;}
.y25_c00064{bottom:93.040000pt;}
.y24_c00064{bottom:122.640000pt;}
.y23_c00064{bottom:153.306667pt;}
.y22_c00064{bottom:183.306667pt;}
.y21_c00064{bottom:213.040000pt;}
.y20_c00064{bottom:243.840000pt;}
.y1f_c00064{bottom:273.306667pt;}
.y1e_c00064{bottom:304.106667pt;}
.y1d_c00064{bottom:333.306667pt;}
.y1c_c00064{bottom:362.906667pt;}
.y1b_c00064{bottom:392.640000pt;}
.y1a_c00064{bottom:422.640000pt;}
.y19_c00064{bottom:452.373333pt;}
.y31_c00064{bottom:469.440000pt;}
.y18_c00064{bottom:482.106667pt;}
.y30_c00064{bottom:496.773333pt;}
.y17_c00064{bottom:511.440000pt;}
.y2f_c00064{bottom:522.640000pt;}
.y16_c00064{bottom:541.440000pt;}
.y2e_c00064{bottom:548.640000pt;}
.y15_c00064{bottom:570.640000pt;}
.y2d_c00064{bottom:575.306667pt;}
.y14_c00064{bottom:600.240000pt;}
.y2c_c00064{bottom:601.173333pt;}
.y2b_c00064{bottom:627.573333pt;}
.y13_c00064{bottom:630.240000pt;}
.y2a_c00064{bottom:653.973333pt;}
.y12_c00064{bottom:659.973333pt;}
.y29_c00064{bottom:680.373333pt;}
.y11_c00064{bottom:690.240000pt;}
.y28_c00064{bottom:706.240000pt;}
.y10_c00064{bottom:719.040000pt;}
.y27_c00064{bottom:732.506667pt;}
.yf_c00064{bottom:748.773333pt;}
.y26_c00064{bottom:759.306667pt;}
.ye_c00064{bottom:807.306667pt;}
.yc_c00064{bottom:841.840000pt;}
.yd_c00064{bottom:866.906667pt;}
.yb_c00064{bottom:871.706667pt;}
.ya_c00064{bottom:897.306667pt;}
.y9_c00064{bottom:927.840000pt;}
.y8_c00064{bottom:957.040000pt;}
.y7_c00064{bottom:986.240000pt;}
.y6_c00064{bottom:1015.840000pt;}
.y5_c00064{bottom:1045.440000pt;}
.y4_c00064{bottom:1074.506667pt;}
.y3_c00064{bottom:1104.240000pt;}
.y2_c00064{bottom:1133.706667pt;}
.y1_c00064{bottom:1155.306667pt;}
.h6_c00064{height:11.733399pt;}
.h7_c00064{height:38.937500pt;}
.h5_c00064{height:87.390625pt;}
.h2_c00064{height:91.375000pt;}
.h4_c00064{height:94.536458pt;}
.h3_c00064{height:108.041667pt;}
.h0_c00064{height:1205.733333pt;}
.h1_c00064{height:1206.000000pt;}
.w2_c00064{width:93.222667pt;}
.w0_c00064{width:765.133333pt;}
.w1_c00064{width:765.333333pt;}
.x0_c00064{left:0.000000pt;}
.xb_c00064{left:11.333333pt;}
.xa_c00064{left:12.800000pt;}
.xd_c00064{left:13.733333pt;}
.xc_c00064{left:14.666667pt;}
.x5_c00064{left:15.600000pt;}
.x4_c00064{left:16.533333pt;}
.x3_c00064{left:17.466667pt;}
.x2_c00064{left:19.466667pt;}
.x9_c00064{left:56.400000pt;}
.x8_c00064{left:128.933333pt;}
.x6_c00064{left:236.400000pt;}
.x7_c00064{left:252.266667pt;}
.x13_c00064{left:339.734863pt;}
.x1_c00064{left:430.800000pt;}
.x11_c00064{left:526.266667pt;}
.x10_c00064{left:527.333333pt;}
.x12_c00064{left:528.266667pt;}
.xf_c00064{left:529.733333pt;}
.xe_c00064{left:552.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58092a446f05a0d7370f6a5e.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_9b3519039d68ff675264257b.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_862a85c2305fb28fb7103ad5.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls3_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:0.540000px;}
.ls1_c00065{letter-spacing:5.400000px;}
.ls2_c00065{letter-spacing:7.152000px;}
.ls4_c00065{letter-spacing:12.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00065{word-spacing:-63.000000px;}
.ws0_c00065{word-spacing:-23.136000px;}
.ws2_c00065{word-spacing:0.000000px;}
._4_c00065{margin-left:-34.224000px;}
._2f_c00065{margin-left:-29.568000px;}
._3b_c00065{margin-left:-26.652000px;}
._30_c00065{margin-left:-24.444000px;}
._23_c00065{margin-left:-15.552000px;}
._22_c00065{margin-left:-13.536000px;}
._24_c00065{margin-left:-11.520000px;}
._32_c00065{margin-left:-9.696000px;}
._31_c00065{margin-left:-7.620000px;}
._2_c00065{margin-left:-5.376000px;}
._5_c00065{margin-left:-3.360000px;}
._6_c00065{margin-left:-1.440000px;}
._14_c00065{width:1.152000px;}
._d_c00065{width:2.496000px;}
._1_c00065{width:3.780000px;}
._2b_c00065{width:4.800000px;}
._9_c00065{width:5.856000px;}
._b_c00065{width:7.584000px;}
._1a_c00065{width:8.640000px;}
._8_c00065{width:9.792000px;}
._a_c00065{width:11.520000px;}
._c_c00065{width:12.576000px;}
._0_c00065{width:14.364000px;}
._19_c00065{width:16.404000px;}
._12_c00065{width:18.528000px;}
._11_c00065{width:20.412000px;}
._25_c00065{width:21.468000px;}
._1c_c00065{width:24.408000px;}
._26_c00065{width:25.836000px;}
._1f_c00065{width:27.396000px;}
._1b_c00065{width:29.040000px;}
._2d_c00065{width:30.468000px;}
._20_c00065{width:31.488000px;}
._16_c00065{width:33.024000px;}
._27_c00065{width:34.080000px;}
._35_c00065{width:35.412000px;}
._1d_c00065{width:36.612000px;}
._21_c00065{width:38.880000px;}
._28_c00065{width:40.968000px;}
._2a_c00065{width:42.540000px;}
._2c_c00065{width:44.256000px;}
._29_c00065{width:45.324000px;}
._38_c00065{width:47.328000px;}
._2e_c00065{width:49.116000px;}
._17_c00065{width:51.768000px;}
._1e_c00065{width:53.352000px;}
._39_c00065{width:56.160000px;}
._3a_c00065{width:62.340000px;}
._e_c00065{width:64.728000px;}
._f_c00065{width:67.584000px;}
._18_c00065{width:69.792000px;}
._13_c00065{width:75.168000px;}
._37_c00065{width:102.432000px;}
._10_c00065{width:107.328000px;}
._15_c00065{width:140.064000px;}
._36_c00065{width:185.088000px;}
._33_c00065{width:318.240000px;}
._34_c00065{width:323.520000px;}
._3_c00065{width:571.368000px;}
._7_c00065{width:748.512000px;}
.fc2_c00065{color:transparent;}
.fc1_c00065{color:rgb(128,128,128);}
.fc0_c00065{color:rgb(0,0,0);}
.fs3_c00065{font-size:48.000000px;}
.fs0_c00065{font-size:84.000000px;}
.fs1_c00065{font-size:96.000000px;}
.fs2_c00065{font-size:102.000000px;}
.y0_c00065{bottom:0.000000px;}
.y27_c00065{bottom:3.105000px;}
.y26_c00065{bottom:7.228357px;}
.y25_c00065{bottom:113.130000px;}
.y24_c00065{bottom:147.480000px;}
.y23_c00065{bottom:183.330000px;}
.y22_c00065{bottom:217.980000px;}
.y21_c00065{bottom:251.730000px;}
.y20_c00065{bottom:285.930000px;}
.y1f_c00065{bottom:319.980000px;}
.y1e_c00065{bottom:354.480000px;}
.y1d_c00065{bottom:388.530000px;}
.y1c_c00065{bottom:422.280000px;}
.y1b_c00065{bottom:456.330000px;}
.y1a_c00065{bottom:489.480000px;}
.y19_c00065{bottom:523.530000px;}
.y18_c00065{bottom:557.280000px;}
.y17_c00065{bottom:591.030000px;}
.y16_c00065{bottom:624.480000px;}
.y15_c00065{bottom:658.080000px;}
.y14_c00065{bottom:691.530000px;}
.y13_c00065{bottom:725.280000px;}
.y12_c00065{bottom:758.730000px;}
.y11_c00065{bottom:792.480000px;}
.y10_c00065{bottom:825.630000px;}
.yf_c00065{bottom:861.330000px;}
.ye_c00065{bottom:892.980000px;}
.yd_c00065{bottom:925.530000px;}
.yc_c00065{bottom:959.130000px;}
.yb_c00065{bottom:992.430000px;}
.ya_c00065{bottom:1025.280000px;}
.y9_c00065{bottom:1058.130000px;}
.y8_c00065{bottom:1092.480000px;}
.y7_c00065{bottom:1124.580000px;}
.y6_c00065{bottom:1158.330000px;}
.y5_c00065{bottom:1191.480000px;}
.y4_c00065{bottom:1225.230000px;}
.y3_c00065{bottom:1257.630000px;}
.y2_c00065{bottom:1291.980000px;}
.y1_c00065{bottom:1318.380000px;}
.h4_c00065{height:13.200074px;}
.h5_c00065{height:43.804688px;}
.h2_c00065{height:106.353516px;}
.h3_c00065{height:121.546875px;}
.h0_c00065{height:1382.700000px;}
.h1_c00065{height:1383.000000px;}
.w2_c00065{width:104.875500px;}
.w0_c00065{width:863.175000px;}
.w1_c00065{width:863.250000px;}
.x0_c00065{left:0.000000px;}
.x6_c00065{left:76.950000px;}
.x7_c00065{left:229.800000px;}
.x8_c00065{left:243.300000px;}
.x3_c00065{left:244.350000px;}
.x2_c00065{left:282.150000px;}
.x4_c00065{left:283.200000px;}
.x5_c00065{left:284.400000px;}
.xa_c00065{left:285.900000px;}
.x9_c00065{left:287.550000px;}
.xb_c00065{left:289.200000px;}
.xc_c00065{left:291.300000px;}
.xd_c00065{left:293.550000px;}
.x1_c00065{left:321.300000px;}
.xf_c00065{left:383.401749px;}
.xe_c00065{left:805.950000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls3_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:0.480000pt;}
.ls1_c00065{letter-spacing:4.800000pt;}
.ls2_c00065{letter-spacing:6.357333pt;}
.ls4_c00065{letter-spacing:10.666667pt;}
.ws1_c00065{word-spacing:-56.000000pt;}
.ws0_c00065{word-spacing:-20.565333pt;}
.ws2_c00065{word-spacing:0.000000pt;}
._4_c00065{margin-left:-30.421333pt;}
._2f_c00065{margin-left:-26.282667pt;}
._3b_c00065{margin-left:-23.690667pt;}
._30_c00065{margin-left:-21.728000pt;}
._23_c00065{margin-left:-13.824000pt;}
._22_c00065{margin-left:-12.032000pt;}
._24_c00065{margin-left:-10.240000pt;}
._32_c00065{margin-left:-8.618667pt;}
._31_c00065{margin-left:-6.773333pt;}
._2_c00065{margin-left:-4.778667pt;}
._5_c00065{margin-left:-2.986667pt;}
._6_c00065{margin-left:-1.280000pt;}
._14_c00065{width:1.024000pt;}
._d_c00065{width:2.218667pt;}
._1_c00065{width:3.360000pt;}
._2b_c00065{width:4.266667pt;}
._9_c00065{width:5.205333pt;}
._b_c00065{width:6.741333pt;}
._1a_c00065{width:7.680000pt;}
._8_c00065{width:8.704000pt;}
._a_c00065{width:10.240000pt;}
._c_c00065{width:11.178667pt;}
._0_c00065{width:12.768000pt;}
._19_c00065{width:14.581333pt;}
._12_c00065{width:16.469333pt;}
._11_c00065{width:18.144000pt;}
._25_c00065{width:19.082667pt;}
._1c_c00065{width:21.696000pt;}
._26_c00065{width:22.965333pt;}
._1f_c00065{width:24.352000pt;}
._1b_c00065{width:25.813333pt;}
._2d_c00065{width:27.082667pt;}
._20_c00065{width:27.989333pt;}
._16_c00065{width:29.354667pt;}
._27_c00065{width:30.293333pt;}
._35_c00065{width:31.477333pt;}
._1d_c00065{width:32.544000pt;}
._21_c00065{width:34.560000pt;}
._28_c00065{width:36.416000pt;}
._2a_c00065{width:37.813333pt;}
._2c_c00065{width:39.338667pt;}
._29_c00065{width:40.288000pt;}
._38_c00065{width:42.069333pt;}
._2e_c00065{width:43.658667pt;}
._17_c00065{width:46.016000pt;}
._1e_c00065{width:47.424000pt;}
._39_c00065{width:49.920000pt;}
._3a_c00065{width:55.413333pt;}
._e_c00065{width:57.536000pt;}
._f_c00065{width:60.074667pt;}
._18_c00065{width:62.037333pt;}
._13_c00065{width:66.816000pt;}
._37_c00065{width:91.050667pt;}
._10_c00065{width:95.402667pt;}
._15_c00065{width:124.501333pt;}
._36_c00065{width:164.522667pt;}
._33_c00065{width:282.880000pt;}
._34_c00065{width:287.573333pt;}
._3_c00065{width:507.882667pt;}
._7_c00065{width:665.344000pt;}
.fs3_c00065{font-size:42.666667pt;}
.fs0_c00065{font-size:74.666667pt;}
.fs1_c00065{font-size:85.333333pt;}
.fs2_c00065{font-size:90.666667pt;}
.y0_c00065{bottom:0.000000pt;}
.y27_c00065{bottom:2.760000pt;}
.y26_c00065{bottom:6.425206pt;}
.y25_c00065{bottom:100.560000pt;}
.y24_c00065{bottom:131.093333pt;}
.y23_c00065{bottom:162.960000pt;}
.y22_c00065{bottom:193.760000pt;}
.y21_c00065{bottom:223.760000pt;}
.y20_c00065{bottom:254.160000pt;}
.y1f_c00065{bottom:284.426667pt;}
.y1e_c00065{bottom:315.093333pt;}
.y1d_c00065{bottom:345.360000pt;}
.y1c_c00065{bottom:375.360000pt;}
.y1b_c00065{bottom:405.626667pt;}
.y1a_c00065{bottom:435.093333pt;}
.y19_c00065{bottom:465.360000pt;}
.y18_c00065{bottom:495.360000pt;}
.y17_c00065{bottom:525.360000pt;}
.y16_c00065{bottom:555.093333pt;}
.y15_c00065{bottom:584.960000pt;}
.y14_c00065{bottom:614.693333pt;}
.y13_c00065{bottom:644.693333pt;}
.y12_c00065{bottom:674.426667pt;}
.y11_c00065{bottom:704.426667pt;}
.y10_c00065{bottom:733.893333pt;}
.yf_c00065{bottom:765.626667pt;}
.ye_c00065{bottom:793.760000pt;}
.yd_c00065{bottom:822.693333pt;}
.yc_c00065{bottom:852.560000pt;}
.yb_c00065{bottom:882.160000pt;}
.ya_c00065{bottom:911.360000pt;}
.y9_c00065{bottom:940.560000pt;}
.y8_c00065{bottom:971.093333pt;}
.y7_c00065{bottom:999.626667pt;}
.y6_c00065{bottom:1029.626667pt;}
.y5_c00065{bottom:1059.093333pt;}
.y4_c00065{bottom:1089.093333pt;}
.y3_c00065{bottom:1117.893333pt;}
.y2_c00065{bottom:1148.426667pt;}
.y1_c00065{bottom:1171.893333pt;}
.h4_c00065{height:11.733399pt;}
.h5_c00065{height:38.937500pt;}
.h2_c00065{height:94.536458pt;}
.h3_c00065{height:108.041667pt;}
.h0_c00065{height:1229.066667pt;}
.h1_c00065{height:1229.333333pt;}
.w2_c00065{width:93.222667pt;}
.w0_c00065{width:767.266667pt;}
.w1_c00065{width:767.333333pt;}
.x0_c00065{left:0.000000pt;}
.x6_c00065{left:68.400000pt;}
.x7_c00065{left:204.266667pt;}
.x8_c00065{left:216.266667pt;}
.x3_c00065{left:217.200000pt;}
.x2_c00065{left:250.800000pt;}
.x4_c00065{left:251.733333pt;}
.x5_c00065{left:252.800000pt;}
.xa_c00065{left:254.133333pt;}
.x9_c00065{left:255.600000pt;}
.xb_c00065{left:257.066667pt;}
.xc_c00065{left:258.933333pt;}
.xd_c00065{left:260.933333pt;}
.x1_c00065{left:285.600000pt;}
.xf_c00065{left:340.801554pt;}
.xe_c00065{left:716.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_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_1656e0399a1449ae7ec6dae3.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_a91fcae1a792f8317e3d3bbd.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_dd97ebb02f17a54ab78c3d5d.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_25c039a33276f99460ec61ce.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls6_c00066{letter-spacing:-6.000000px;}
.ls5_c00066{letter-spacing:0.000000px;}
.ls2_c00066{letter-spacing:0.600000px;}
.ls3_c00066{letter-spacing:1.872000px;}
.ls1_c00066{letter-spacing:11.187000px;}
.ls7_c00066{letter-spacing:12.000000px;}
.ls4_c00066{letter-spacing:23.664000px;}
.ls0_c00066{letter-spacing:35.976000px;}
.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:-63.504000px;}
.ws5_c00066{word-spacing:-63.000000px;}
.ws4_c00066{word-spacing:-53.856000px;}
.ws3_c00066{word-spacing:-43.084800px;}
.ws2_c00066{word-spacing:-23.136000px;}
.ws0_c00066{word-spacing:-16.413000px;}
.ws6_c00066{word-spacing:0.000000px;}
._1a_c00066{margin-left:-29.856000px;}
._32_c00066{margin-left:-27.642000px;}
._2f_c00066{margin-left:-21.504000px;}
._1c_c00066{margin-left:-18.432000px;}
._0_c00066{margin-left:-17.280000px;}
._36_c00066{margin-left:-15.846000px;}
._1b_c00066{margin-left:-14.688000px;}
._29_c00066{margin-left:-12.000000px;}
._23_c00066{margin-left:-9.888000px;}
._2_c00066{margin-left:-7.680000px;}
._3_c00066{margin-left:-5.568000px;}
._19_c00066{margin-left:-3.840000px;}
._12_c00066{margin-left:-2.592000px;}
._16_c00066{margin-left:-1.536000px;}
._6_c00066{width:1.152000px;}
._5_c00066{width:2.688000px;}
._8_c00066{width:4.512000px;}
._a_c00066{width:6.048000px;}
._f_c00066{width:7.392000px;}
._22_c00066{width:8.448000px;}
._e_c00066{width:10.272000px;}
._14_c00066{width:12.000000px;}
._27_c00066{width:13.008000px;}
._9_c00066{width:14.208000px;}
._d_c00066{width:15.264000px;}
._2b_c00066{width:16.512000px;}
._30_c00066{width:17.568000px;}
._b_c00066{width:19.104000px;}
._15_c00066{width:20.736000px;}
._35_c00066{width:21.792000px;}
._c_c00066{width:26.208000px;}
._26_c00066{width:27.648000px;}
._7_c00066{width:28.800000px;}
._18_c00066{width:30.816000px;}
._11_c00066{width:32.736000px;}
._34_c00066{width:33.792000px;}
._1f_c00066{width:34.848000px;}
._1e_c00066{width:36.864000px;}
._20_c00066{width:38.592000px;}
._28_c00066{width:40.896000px;}
._13_c00066{width:42.816000px;}
._10_c00066{width:43.968000px;}
._2a_c00066{width:46.368000px;}
._2d_c00066{width:48.000000px;}
._1d_c00066{width:50.400000px;}
._2c_c00066{width:51.456000px;}
._37_c00066{width:53.904000px;}
._25_c00066{width:57.600000px;}
._17_c00066{width:59.616000px;}
._33_c00066{width:183.552000px;}
._31_c00066{width:209.904000px;}
._1_c00066{width:241.440000px;}
._24_c00066{width:242.592000px;}
._21_c00066{width:245.184000px;}
._4_c00066{width:392.736000px;}
._2e_c00066{width:463.776000px;}
._38_c00066{width:1838.880000px;}
.fc2_c00066{color:transparent;}
.fc1_c00066{color:rgb(128,128,128);}
.fc0_c00066{color:rgb(0,0,0);}
.fs6_c00066{font-size:48.000000px;}
.fs2_c00066{font-size:54.000000px;}
.fs5_c00066{font-size:76.800000px;}
.fs3_c00066{font-size:84.000000px;}
.fs1_c00066{font-size:93.000000px;}
.fs0_c00066{font-size:96.000000px;}
.fs4_c00066{font-size:102.000000px;}
.y0_c00066{bottom:0.000000px;}
.y27_c00066{bottom:3.105000px;}
.y26_c00066{bottom:7.228369px;}
.y25_c00066{bottom:71.820000px;}
.y24_c00066{bottom:104.520000px;}
.y23_c00066{bottom:139.020000px;}
.y22_c00066{bottom:172.770000px;}
.y21_c00066{bottom:206.520000px;}
.y20_c00066{bottom:239.220000px;}
.y1f_c00066{bottom:274.020000px;}
.y1e_c00066{bottom:307.770000px;}
.y1d_c00066{bottom:340.920000px;}
.y1c_c00066{bottom:373.920000px;}
.y1b_c00066{bottom:408.270000px;}
.y1a_c00066{bottom:441.420000px;}
.y19_c00066{bottom:475.470000px;}
.y18_c00066{bottom:507.570000px;}
.y17_c00066{bottom:542.370000px;}
.y16_c00066{bottom:574.770000px;}
.y15_c00066{bottom:609.120000px;}
.y14_c00066{bottom:640.470000px;}
.y13_c00066{bottom:674.670000px;}
.y12_c00066{bottom:708.720000px;}
.y11_c00066{bottom:742.770000px;}
.y10_c00066{bottom:775.170000px;}
.yf_c00066{bottom:809.670000px;}
.ye_c00066{bottom:840.720000px;}
.yd_c00066{bottom:875.820000px;}
.yc_c00066{bottom:907.770000px;}
.yb_c00066{bottom:941.970000px;}
.ya_c00066{bottom:975.720000px;}
.y9_c00066{bottom:1009.020000px;}
.y8_c00066{bottom:1042.470000px;}
.y7_c00066{bottom:1075.320000px;}
.y6_c00066{bottom:1108.920000px;}
.y5_c00066{bottom:1141.770000px;}
.y4_c00066{bottom:1175.220000px;}
.y3_c00066{bottom:1207.170000px;}
.y2_c00066{bottom:1238.970000px;}
.y1_c00066{bottom:1257.120000px;}
.h4_c00066{height:13.200073px;}
.h5_c00066{height:43.804688px;}
.h3_c00066{height:117.748535px;}
.h2_c00066{height:121.546875px;}
.h0_c00066{height:1334.850000px;}
.h1_c00066{height:1335.000000px;}
.w2_c00066{width:104.875500px;}
.w0_c00066{width:847.275000px;}
.w1_c00066{width:847.500000px;}
.x0_c00066{left:0.000000px;}
.xb_c00066{left:17.550000px;}
.xa_c00066{left:18.600000px;}
.x9_c00066{left:19.650000px;}
.x7_c00066{left:20.700000px;}
.x8_c00066{left:21.900000px;}
.x6_c00066{left:22.950000px;}
.x5_c00066{left:24.600000px;}
.x4_c00066{left:25.650000px;}
.x3_c00066{left:27.300000px;}
.x2_c00066{left:28.950000px;}
.xc_c00066{left:70.950000px;}
.x1_c00066{left:305.850000px;}
.xd_c00066{left:375.451721px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls6_c00066{letter-spacing:-5.333333pt;}
.ls5_c00066{letter-spacing:0.000000pt;}
.ls2_c00066{letter-spacing:0.533333pt;}
.ls3_c00066{letter-spacing:1.664000pt;}
.ls1_c00066{letter-spacing:9.944000pt;}
.ls7_c00066{letter-spacing:10.666667pt;}
.ls4_c00066{letter-spacing:21.034667pt;}
.ls0_c00066{letter-spacing:31.978667pt;}
.ws1_c00066{word-spacing:-56.448000pt;}
.ws5_c00066{word-spacing:-56.000000pt;}
.ws4_c00066{word-spacing:-47.872000pt;}
.ws3_c00066{word-spacing:-38.297600pt;}
.ws2_c00066{word-spacing:-20.565333pt;}
.ws0_c00066{word-spacing:-14.589333pt;}
.ws6_c00066{word-spacing:0.000000pt;}
._1a_c00066{margin-left:-26.538667pt;}
._32_c00066{margin-left:-24.570667pt;}
._2f_c00066{margin-left:-19.114667pt;}
._1c_c00066{margin-left:-16.384000pt;}
._0_c00066{margin-left:-15.360000pt;}
._36_c00066{margin-left:-14.085333pt;}
._1b_c00066{margin-left:-13.056000pt;}
._29_c00066{margin-left:-10.666667pt;}
._23_c00066{margin-left:-8.789333pt;}
._2_c00066{margin-left:-6.826667pt;}
._3_c00066{margin-left:-4.949333pt;}
._19_c00066{margin-left:-3.413333pt;}
._12_c00066{margin-left:-2.304000pt;}
._16_c00066{margin-left:-1.365333pt;}
._6_c00066{width:1.024000pt;}
._5_c00066{width:2.389333pt;}
._8_c00066{width:4.010667pt;}
._a_c00066{width:5.376000pt;}
._f_c00066{width:6.570667pt;}
._22_c00066{width:7.509333pt;}
._e_c00066{width:9.130667pt;}
._14_c00066{width:10.666667pt;}
._27_c00066{width:11.562667pt;}
._9_c00066{width:12.629333pt;}
._d_c00066{width:13.568000pt;}
._2b_c00066{width:14.677333pt;}
._30_c00066{width:15.616000pt;}
._b_c00066{width:16.981333pt;}
._15_c00066{width:18.432000pt;}
._35_c00066{width:19.370667pt;}
._c_c00066{width:23.296000pt;}
._26_c00066{width:24.576000pt;}
._7_c00066{width:25.600000pt;}
._18_c00066{width:27.392000pt;}
._11_c00066{width:29.098667pt;}
._34_c00066{width:30.037333pt;}
._1f_c00066{width:30.976000pt;}
._1e_c00066{width:32.768000pt;}
._20_c00066{width:34.304000pt;}
._28_c00066{width:36.352000pt;}
._13_c00066{width:38.058667pt;}
._10_c00066{width:39.082667pt;}
._2a_c00066{width:41.216000pt;}
._2d_c00066{width:42.666667pt;}
._1d_c00066{width:44.800000pt;}
._2c_c00066{width:45.738667pt;}
._37_c00066{width:47.914667pt;}
._25_c00066{width:51.200000pt;}
._17_c00066{width:52.992000pt;}
._33_c00066{width:163.157333pt;}
._31_c00066{width:186.581333pt;}
._1_c00066{width:214.613333pt;}
._24_c00066{width:215.637333pt;}
._21_c00066{width:217.941333pt;}
._4_c00066{width:349.098667pt;}
._2e_c00066{width:412.245333pt;}
._38_c00066{width:1634.560000pt;}
.fs6_c00066{font-size:42.666667pt;}
.fs2_c00066{font-size:48.000000pt;}
.fs5_c00066{font-size:68.266667pt;}
.fs3_c00066{font-size:74.666667pt;}
.fs1_c00066{font-size:82.666667pt;}
.fs0_c00066{font-size:85.333333pt;}
.fs4_c00066{font-size:90.666667pt;}
.y0_c00066{bottom:0.000000pt;}
.y27_c00066{bottom:2.760000pt;}
.y26_c00066{bottom:6.425217pt;}
.y25_c00066{bottom:63.840000pt;}
.y24_c00066{bottom:92.906667pt;}
.y23_c00066{bottom:123.573333pt;}
.y22_c00066{bottom:153.573333pt;}
.y21_c00066{bottom:183.573333pt;}
.y20_c00066{bottom:212.640000pt;}
.y1f_c00066{bottom:243.573333pt;}
.y1e_c00066{bottom:273.573333pt;}
.y1d_c00066{bottom:303.040000pt;}
.y1c_c00066{bottom:332.373333pt;}
.y1b_c00066{bottom:362.906667pt;}
.y1a_c00066{bottom:392.373333pt;}
.y19_c00066{bottom:422.640000pt;}
.y18_c00066{bottom:451.173333pt;}
.y17_c00066{bottom:482.106667pt;}
.y16_c00066{bottom:510.906667pt;}
.y15_c00066{bottom:541.440000pt;}
.y14_c00066{bottom:569.306667pt;}
.y13_c00066{bottom:599.706667pt;}
.y12_c00066{bottom:629.973333pt;}
.y11_c00066{bottom:660.240000pt;}
.y10_c00066{bottom:689.040000pt;}
.yf_c00066{bottom:719.706667pt;}
.ye_c00066{bottom:747.306667pt;}
.yd_c00066{bottom:778.506667pt;}
.yc_c00066{bottom:806.906667pt;}
.yb_c00066{bottom:837.306667pt;}
.ya_c00066{bottom:867.306667pt;}
.y9_c00066{bottom:896.906667pt;}
.y8_c00066{bottom:926.640000pt;}
.y7_c00066{bottom:955.840000pt;}
.y6_c00066{bottom:985.706667pt;}
.y5_c00066{bottom:1014.906667pt;}
.y4_c00066{bottom:1044.640000pt;}
.y3_c00066{bottom:1073.040000pt;}
.y2_c00066{bottom:1101.306667pt;}
.y1_c00066{bottom:1117.440000pt;}
.h4_c00066{height:11.733399pt;}
.h5_c00066{height:38.937500pt;}
.h3_c00066{height:104.665365pt;}
.h2_c00066{height:108.041667pt;}
.h0_c00066{height:1186.533333pt;}
.h1_c00066{height:1186.666667pt;}
.w2_c00066{width:93.222667pt;}
.w0_c00066{width:753.133333pt;}
.w1_c00066{width:753.333333pt;}
.x0_c00066{left:0.000000pt;}
.xb_c00066{left:15.600000pt;}
.xa_c00066{left:16.533333pt;}
.x9_c00066{left:17.466667pt;}
.x7_c00066{left:18.400000pt;}
.x8_c00066{left:19.466667pt;}
.x6_c00066{left:20.400000pt;}
.x5_c00066{left:21.866667pt;}
.x4_c00066{left:22.800000pt;}
.x3_c00066{left:24.266667pt;}
.x2_c00066{left:25.733333pt;}
.xc_c00066{left:63.066667pt;}
.x1_c00066{left:271.866667pt;}
.xd_c00066{left:333.734863pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_752eae057a3d25bbe1234265.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_fb2469d7a54a40caaccfde72.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls3_c00067{letter-spacing:0.000000px;}
.ls2_c00067{letter-spacing:2.556000px;}
.ls0_c00067{letter-spacing:6.120000px;}
.ls1_c00067{letter-spacing:8.952000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00067{word-spacing:-24.582000px;}
.ws0_c00067{word-spacing:-23.136000px;}
.ws2_c00067{word-spacing:0.000000px;}
._1b_c00067{margin-left:-32.256000px;}
._18_c00067{margin-left:-13.824000px;}
._33_c00067{margin-left:-12.192000px;}
._1e_c00067{margin-left:-9.384000px;}
._25_c00067{margin-left:-8.352000px;}
._26_c00067{margin-left:-6.648000px;}
._15_c00067{margin-left:-5.088000px;}
._c_c00067{margin-left:-3.840000px;}
._b_c00067{margin-left:-2.784000px;}
._5_c00067{margin-left:-1.344000px;}
._0_c00067{width:2.016000px;}
._12_c00067{width:3.264000px;}
._3_c00067{width:4.512000px;}
._8_c00067{width:6.336000px;}
._16_c00067{width:7.488000px;}
._21_c00067{width:8.544000px;}
._7_c00067{width:9.696000px;}
._13_c00067{width:10.848000px;}
._9_c00067{width:12.288000px;}
._1d_c00067{width:13.440000px;}
._1c_c00067{width:14.880000px;}
._19_c00067{width:16.224000px;}
._d_c00067{width:17.568000px;}
._10_c00067{width:18.720000px;}
._1f_c00067{width:20.160000px;}
._f_c00067{width:21.408000px;}
._20_c00067{width:24.480000px;}
._2d_c00067{width:25.728000px;}
._1_c00067{width:26.976000px;}
._6_c00067{width:28.704000px;}
._11_c00067{width:30.240000px;}
._2_c00067{width:31.296000px;}
._17_c00067{width:32.544000px;}
._24_c00067{width:33.696000px;}
._e_c00067{width:34.944000px;}
._14_c00067{width:36.672000px;}
._2f_c00067{width:38.400000px;}
._35_c00067{width:39.456000px;}
._a_c00067{width:41.376000px;}
._1a_c00067{width:42.528000px;}
._23_c00067{width:43.680000px;}
._2a_c00067{width:45.600000px;}
._27_c00067{width:47.328000px;}
._28_c00067{width:49.824000px;}
._2b_c00067{width:51.456000px;}
._2c_c00067{width:53.568000px;}
._2e_c00067{width:54.624000px;}
._22_c00067{width:55.656000px;}
._31_c00067{width:58.464000px;}
._29_c00067{width:60.864000px;}
._32_c00067{width:62.208000px;}
._30_c00067{width:65.184000px;}
._34_c00067{width:68.856000px;}
._4_c00067{width:257.472000px;}
.fc2_c00067{color:transparent;}
.fc1_c00067{color:rgb(128,128,128);}
.fc0_c00067{color:rgb(0,0,0);}
.fs4_c00067{font-size:48.000000px;}
.fs1_c00067{font-size:84.000000px;}
.fs2_c00067{font-size:93.000000px;}
.fs0_c00067{font-size:96.000000px;}
.fs3_c00067{font-size:102.000000px;}
.y0_c00067{bottom:0.000000px;}
.y24_c00067{bottom:3.105000px;}
.y23_c00067{bottom:7.228357px;}
.y22_c00067{bottom:72.330000px;}
.y21_c00067{bottom:210.930000px;}
.y20_c00067{bottom:245.130000px;}
.y1f_c00067{bottom:280.080000px;}
.y1e_c00067{bottom:313.980000px;}
.y1d_c00067{bottom:347.730000px;}
.y1c_c00067{bottom:381.780000px;}
.y1b_c00067{bottom:415.830000px;}
.y1a_c00067{bottom:449.280000px;}
.y19_c00067{bottom:483.030000px;}
.y18_c00067{bottom:517.080000px;}
.y17_c00067{bottom:550.080000px;}
.y16_c00067{bottom:584.280000px;}
.y15_c00067{bottom:617.280000px;}
.y14_c00067{bottom:651.030000px;}
.y13_c00067{bottom:684.480000px;}
.y12_c00067{bottom:717.930000px;}
.y11_c00067{bottom:751.380000px;}
.y10_c00067{bottom:784.980000px;}
.yf_c00067{bottom:818.730000px;}
.ye_c00067{bottom:852.180000px;}
.yd_c00067{bottom:885.630000px;}
.yc_c00067{bottom:919.080000px;}
.yb_c00067{bottom:951.780000px;}
.ya_c00067{bottom:984.780000px;}
.y9_c00067{bottom:1018.230000px;}
.y8_c00067{bottom:1051.080000px;}
.y7_c00067{bottom:1084.080000px;}
.y6_c00067{bottom:1116.780000px;}
.y5_c00067{bottom:1139.730000px;}
.y4_c00067{bottom:1150.530000px;}
.y3_c00067{bottom:1184.280000px;}
.y2_c00067{bottom:1216.080000px;}
.y1_c00067{bottom:1249.830000px;}
.h5_c00067{height:13.200074px;}
.h6_c00067{height:43.804688px;}
.h3_c00067{height:117.748535px;}
.h2_c00067{height:121.546875px;}
.h4_c00067{height:129.143555px;}
.h1_c00067{height:1351.500000px;}
.h0_c00067{height:1351.650000px;}
.w2_c00067{width:104.875500px;}
.w0_c00067{width:843.450000px;}
.w1_c00067{width:843.750000px;}
.x0_c00067{left:0.000000px;}
.x8_c00067{left:270.300000px;}
.x7_c00067{left:271.950000px;}
.x6_c00067{left:273.600000px;}
.x5_c00067{left:274.650000px;}
.x4_c00067{left:275.700000px;}
.x2_c00067{left:277.200000px;}
.x1_c00067{left:278.400000px;}
.xa_c00067{left:373.539230px;}
.x3_c00067{left:451.500000px;}
.x9_c00067{left:747.150000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls3_c00067{letter-spacing:0.000000pt;}
.ls2_c00067{letter-spacing:2.272000pt;}
.ls0_c00067{letter-spacing:5.440000pt;}
.ls1_c00067{letter-spacing:7.957333pt;}
.ws1_c00067{word-spacing:-21.850667pt;}
.ws0_c00067{word-spacing:-20.565333pt;}
.ws2_c00067{word-spacing:0.000000pt;}
._1b_c00067{margin-left:-28.672000pt;}
._18_c00067{margin-left:-12.288000pt;}
._33_c00067{margin-left:-10.837333pt;}
._1e_c00067{margin-left:-8.341333pt;}
._25_c00067{margin-left:-7.424000pt;}
._26_c00067{margin-left:-5.909333pt;}
._15_c00067{margin-left:-4.522667pt;}
._c_c00067{margin-left:-3.413333pt;}
._b_c00067{margin-left:-2.474667pt;}
._5_c00067{margin-left:-1.194667pt;}
._0_c00067{width:1.792000pt;}
._12_c00067{width:2.901333pt;}
._3_c00067{width:4.010667pt;}
._8_c00067{width:5.632000pt;}
._16_c00067{width:6.656000pt;}
._21_c00067{width:7.594667pt;}
._7_c00067{width:8.618667pt;}
._13_c00067{width:9.642667pt;}
._9_c00067{width:10.922667pt;}
._1d_c00067{width:11.946667pt;}
._1c_c00067{width:13.226667pt;}
._19_c00067{width:14.421333pt;}
._d_c00067{width:15.616000pt;}
._10_c00067{width:16.640000pt;}
._1f_c00067{width:17.920000pt;}
._f_c00067{width:19.029333pt;}
._20_c00067{width:21.760000pt;}
._2d_c00067{width:22.869333pt;}
._1_c00067{width:23.978667pt;}
._6_c00067{width:25.514667pt;}
._11_c00067{width:26.880000pt;}
._2_c00067{width:27.818667pt;}
._17_c00067{width:28.928000pt;}
._24_c00067{width:29.952000pt;}
._e_c00067{width:31.061333pt;}
._14_c00067{width:32.597333pt;}
._2f_c00067{width:34.133333pt;}
._35_c00067{width:35.072000pt;}
._a_c00067{width:36.778667pt;}
._1a_c00067{width:37.802667pt;}
._23_c00067{width:38.826667pt;}
._2a_c00067{width:40.533333pt;}
._27_c00067{width:42.069333pt;}
._28_c00067{width:44.288000pt;}
._2b_c00067{width:45.738667pt;}
._2c_c00067{width:47.616000pt;}
._2e_c00067{width:48.554667pt;}
._22_c00067{width:49.472000pt;}
._31_c00067{width:51.968000pt;}
._29_c00067{width:54.101333pt;}
._32_c00067{width:55.296000pt;}
._30_c00067{width:57.941333pt;}
._34_c00067{width:61.205333pt;}
._4_c00067{width:228.864000pt;}
.fs4_c00067{font-size:42.666667pt;}
.fs1_c00067{font-size:74.666667pt;}
.fs2_c00067{font-size:82.666667pt;}
.fs0_c00067{font-size:85.333333pt;}
.fs3_c00067{font-size:90.666667pt;}
.y0_c00067{bottom:0.000000pt;}
.y24_c00067{bottom:2.760000pt;}
.y23_c00067{bottom:6.425206pt;}
.y22_c00067{bottom:64.293333pt;}
.y21_c00067{bottom:187.493333pt;}
.y20_c00067{bottom:217.893333pt;}
.y1f_c00067{bottom:248.960000pt;}
.y1e_c00067{bottom:279.093333pt;}
.y1d_c00067{bottom:309.093333pt;}
.y1c_c00067{bottom:339.360000pt;}
.y1b_c00067{bottom:369.626667pt;}
.y1a_c00067{bottom:399.360000pt;}
.y19_c00067{bottom:429.360000pt;}
.y18_c00067{bottom:459.626667pt;}
.y17_c00067{bottom:488.960000pt;}
.y16_c00067{bottom:519.360000pt;}
.y15_c00067{bottom:548.693333pt;}
.y14_c00067{bottom:578.693333pt;}
.y13_c00067{bottom:608.426667pt;}
.y12_c00067{bottom:638.160000pt;}
.y11_c00067{bottom:667.893333pt;}
.y10_c00067{bottom:697.760000pt;}
.yf_c00067{bottom:727.760000pt;}
.ye_c00067{bottom:757.493333pt;}
.yd_c00067{bottom:787.226667pt;}
.yc_c00067{bottom:816.960000pt;}
.yb_c00067{bottom:846.026667pt;}
.ya_c00067{bottom:875.360000pt;}
.y9_c00067{bottom:905.093333pt;}
.y8_c00067{bottom:934.293333pt;}
.y7_c00067{bottom:963.626667pt;}
.y6_c00067{bottom:992.693333pt;}
.y5_c00067{bottom:1013.093333pt;}
.y4_c00067{bottom:1022.693333pt;}
.y3_c00067{bottom:1052.693333pt;}
.y2_c00067{bottom:1080.960000pt;}
.y1_c00067{bottom:1110.960000pt;}
.h5_c00067{height:11.733399pt;}
.h6_c00067{height:38.937500pt;}
.h3_c00067{height:104.665365pt;}
.h2_c00067{height:108.041667pt;}
.h4_c00067{height:114.794271pt;}
.h1_c00067{height:1201.333333pt;}
.h0_c00067{height:1201.466667pt;}
.w2_c00067{width:93.222667pt;}
.w0_c00067{width:749.733333pt;}
.w1_c00067{width:750.000000pt;}
.x0_c00067{left:0.000000pt;}
.x8_c00067{left:240.266667pt;}
.x7_c00067{left:241.733333pt;}
.x6_c00067{left:243.200000pt;}
.x5_c00067{left:244.133333pt;}
.x4_c00067{left:245.066667pt;}
.x2_c00067{left:246.400000pt;}
.x1_c00067{left:247.466667pt;}
.xa_c00067{left:332.034871pt;}
.x3_c00067{left:401.333333pt;}
.x9_c00067{left:664.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ceeca23f322782866315ee16.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_7493b5afac84cee4f9602777.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_46e4c0554a0af1931c6a4c06.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls1_c00068{letter-spacing:0.000000px;}
.ls2_c00068{letter-spacing:3.000000px;}
.ls0_c00068{letter-spacing:8.520000px;}
.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;}
}
.ws0_c00068{word-spacing:0.000000px;}
._1b_c00068{margin-left:-81.888000px;}
._2e_c00068{margin-left:-32.352000px;}
._38_c00068{margin-left:-28.224000px;}
._28_c00068{margin-left:-21.792000px;}
._2b_c00068{margin-left:-20.298000px;}
._29_c00068{margin-left:-19.062000px;}
._32_c00068{margin-left:-17.028000px;}
._33_c00068{margin-left:-15.810000px;}
._12_c00068{margin-left:-14.004000px;}
._30_c00068{margin-left:-12.468000px;}
._13_c00068{margin-left:-11.124000px;}
._31_c00068{margin-left:-9.972000px;}
._11_c00068{margin-left:-7.956000px;}
._1a_c00068{margin-left:-5.952000px;}
._16_c00068{margin-left:-4.320000px;}
._a_c00068{margin-left:-2.604000px;}
._b_c00068{margin-left:-1.596000px;}
._2_c00068{width:1.632000px;}
._6_c00068{width:2.688000px;}
._3_c00068{width:4.224000px;}
._0_c00068{width:5.472000px;}
._e_c00068{width:6.912000px;}
._14_c00068{width:8.544000px;}
._19_c00068{width:10.542000px;}
._23_c00068{width:12.096000px;}
._10_c00068{width:13.608000px;}
._20_c00068{width:15.168000px;}
._35_c00068{width:16.470000px;}
._8_c00068{width:17.664000px;}
._27_c00068{width:19.008000px;}
._d_c00068{width:20.352000px;}
._2d_c00068{width:21.882000px;}
._18_c00068{width:24.960000px;}
._7_c00068{width:26.112000px;}
._4_c00068{width:27.552000px;}
._c_c00068{width:29.994000px;}
._2a_c00068{width:31.878000px;}
._22_c00068{width:32.928000px;}
._1d_c00068{width:34.188000px;}
._1c_c00068{width:35.712000px;}
._24_c00068{width:36.936000px;}
._2f_c00068{width:38.226000px;}
._2c_c00068{width:39.348000px;}
._1e_c00068{width:40.416000px;}
._25_c00068{width:41.478000px;}
._1f_c00068{width:42.720000px;}
._21_c00068{width:44.640000px;}
._39_c00068{width:45.768000px;}
._15_c00068{width:47.040000px;}
._26_c00068{width:49.752000px;}
._5_c00068{width:51.840000px;}
._17_c00068{width:53.646000px;}
._3b_c00068{width:56.532000px;}
._36_c00068{width:58.242000px;}
._f_c00068{width:71.286000px;}
._37_c00068{width:77.718000px;}
._3a_c00068{width:86.166000px;}
._9_c00068{width:185.376000px;}
._1_c00068{width:395.712000px;}
._34_c00068{width:733.608000px;}
._3d_c00068{width:857.916000px;}
._3c_c00068{width:942.516000px;}
.fc2_c00068{color:transparent;}
.fc1_c00068{color:rgb(128,128,128);}
.fc0_c00068{color:rgb(0,0,0);}
.fs4_c00068{font-size:48.000000px;}
.fs2_c00068{font-size:78.000000px;}
.fs1_c00068{font-size:84.000000px;}
.fs0_c00068{font-size:96.000000px;}
.fs3_c00068{font-size:102.000000px;}
.y0_c00068{bottom:0.000000px;}
.y23_c00068{bottom:3.105000px;}
.y22_c00068{bottom:7.228355px;}
.y21_c00068{bottom:82.035000px;}
.y20_c00068{bottom:115.635000px;}
.y1f_c00068{bottom:149.535000px;}
.y1e_c00068{bottom:183.885000px;}
.y1d_c00068{bottom:217.035000px;}
.y1c_c00068{bottom:250.785000px;}
.y1b_c00068{bottom:284.535000px;}
.y1a_c00068{bottom:317.835000px;}
.y19_c00068{bottom:351.585000px;}
.y18_c00068{bottom:385.035000px;}
.y17_c00068{bottom:418.485000px;}
.y16_c00068{bottom:451.785000px;}
.y15_c00068{bottom:485.685000px;}
.y14_c00068{bottom:518.985000px;}
.y13_c00068{bottom:552.435000px;}
.y12_c00068{bottom:585.585000px;}
.y11_c00068{bottom:618.885000px;}
.y10_c00068{bottom:652.635000px;}
.yf_c00068{bottom:685.785000px;}
.ye_c00068{bottom:718.785000px;}
.yd_c00068{bottom:751.935000px;}
.yc_c00068{bottom:785.235000px;}
.yb_c00068{bottom:818.685000px;}
.ya_c00068{bottom:851.385000px;}
.y9_c00068{bottom:884.835000px;}
.y8_c00068{bottom:917.235000px;}
.y7_c00068{bottom:950.985000px;}
.y6_c00068{bottom:983.835000px;}
.y5_c00068{bottom:1017.585000px;}
.y4_c00068{bottom:1051.185000px;}
.y3_c00068{bottom:1083.735000px;}
.y2_c00068{bottom:1120.035000px;}
.y1_c00068{bottom:1152.135000px;}
.h4_c00068{height:13.200074px;}
.h5_c00068{height:43.804688px;}
.h2_c00068{height:121.546875px;}
.h3_c00068{height:129.143555px;}
.h1_c00068{height:1353.000000px;}
.h0_c00068{height:1353.225000px;}
.w2_c00068{width:104.875500px;}
.w0_c00068{width:858.600000px;}
.w1_c00068{width:858.750000px;}
.x0_c00068{left:0.000000px;}
.x6_c00068{left:11.100000px;}
.x5_c00068{left:12.150000px;}
.x4_c00068{left:13.800000px;}
.x3_c00068{left:14.850000px;}
.x2_c00068{left:16.500000px;}
.x7_c00068{left:19.800000px;}
.x8_c00068{left:63.450000px;}
.x1_c00068{left:65.700000px;}
.x9_c00068{left:381.114258px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls1_c00068{letter-spacing:0.000000pt;}
.ls2_c00068{letter-spacing:2.666667pt;}
.ls0_c00068{letter-spacing:7.573333pt;}
.ws0_c00068{word-spacing:0.000000pt;}
._1b_c00068{margin-left:-72.789333pt;}
._2e_c00068{margin-left:-28.757333pt;}
._38_c00068{margin-left:-25.088000pt;}
._28_c00068{margin-left:-19.370667pt;}
._2b_c00068{margin-left:-18.042667pt;}
._29_c00068{margin-left:-16.944000pt;}
._32_c00068{margin-left:-15.136000pt;}
._33_c00068{margin-left:-14.053333pt;}
._12_c00068{margin-left:-12.448000pt;}
._30_c00068{margin-left:-11.082667pt;}
._13_c00068{margin-left:-9.888000pt;}
._31_c00068{margin-left:-8.864000pt;}
._11_c00068{margin-left:-7.072000pt;}
._1a_c00068{margin-left:-5.290667pt;}
._16_c00068{margin-left:-3.840000pt;}
._a_c00068{margin-left:-2.314667pt;}
._b_c00068{margin-left:-1.418667pt;}
._2_c00068{width:1.450667pt;}
._6_c00068{width:2.389333pt;}
._3_c00068{width:3.754667pt;}
._0_c00068{width:4.864000pt;}
._e_c00068{width:6.144000pt;}
._14_c00068{width:7.594667pt;}
._19_c00068{width:9.370667pt;}
._23_c00068{width:10.752000pt;}
._10_c00068{width:12.096000pt;}
._20_c00068{width:13.482667pt;}
._35_c00068{width:14.640000pt;}
._8_c00068{width:15.701333pt;}
._27_c00068{width:16.896000pt;}
._d_c00068{width:18.090667pt;}
._2d_c00068{width:19.450667pt;}
._18_c00068{width:22.186667pt;}
._7_c00068{width:23.210667pt;}
._4_c00068{width:24.490667pt;}
._c_c00068{width:26.661333pt;}
._2a_c00068{width:28.336000pt;}
._22_c00068{width:29.269333pt;}
._1d_c00068{width:30.389333pt;}
._1c_c00068{width:31.744000pt;}
._24_c00068{width:32.832000pt;}
._2f_c00068{width:33.978667pt;}
._2c_c00068{width:34.976000pt;}
._1e_c00068{width:35.925333pt;}
._25_c00068{width:36.869333pt;}
._1f_c00068{width:37.973333pt;}
._21_c00068{width:39.680000pt;}
._39_c00068{width:40.682667pt;}
._15_c00068{width:41.813333pt;}
._26_c00068{width:44.224000pt;}
._5_c00068{width:46.080000pt;}
._17_c00068{width:47.685333pt;}
._3b_c00068{width:50.250667pt;}
._36_c00068{width:51.770667pt;}
._f_c00068{width:63.365333pt;}
._37_c00068{width:69.082667pt;}
._3a_c00068{width:76.592000pt;}
._9_c00068{width:164.778667pt;}
._1_c00068{width:351.744000pt;}
._34_c00068{width:652.096000pt;}
._3d_c00068{width:762.592000pt;}
._3c_c00068{width:837.792000pt;}
.fs4_c00068{font-size:42.666667pt;}
.fs2_c00068{font-size:69.333333pt;}
.fs1_c00068{font-size:74.666667pt;}
.fs0_c00068{font-size:85.333333pt;}
.fs3_c00068{font-size:90.666667pt;}
.y0_c00068{bottom:0.000000pt;}
.y23_c00068{bottom:2.760000pt;}
.y22_c00068{bottom:6.425204pt;}
.y21_c00068{bottom:72.920000pt;}
.y20_c00068{bottom:102.786667pt;}
.y1f_c00068{bottom:132.920000pt;}
.y1e_c00068{bottom:163.453333pt;}
.y1d_c00068{bottom:192.920000pt;}
.y1c_c00068{bottom:222.920000pt;}
.y1b_c00068{bottom:252.920000pt;}
.y1a_c00068{bottom:282.520000pt;}
.y19_c00068{bottom:312.520000pt;}
.y18_c00068{bottom:342.253333pt;}
.y17_c00068{bottom:371.986667pt;}
.y16_c00068{bottom:401.586667pt;}
.y15_c00068{bottom:431.720000pt;}
.y14_c00068{bottom:461.320000pt;}
.y13_c00068{bottom:491.053333pt;}
.y12_c00068{bottom:520.520000pt;}
.y11_c00068{bottom:550.120000pt;}
.y10_c00068{bottom:580.120000pt;}
.yf_c00068{bottom:609.586667pt;}
.ye_c00068{bottom:638.920000pt;}
.yd_c00068{bottom:668.386667pt;}
.yc_c00068{bottom:697.986667pt;}
.yb_c00068{bottom:727.720000pt;}
.ya_c00068{bottom:756.786667pt;}
.y9_c00068{bottom:786.520000pt;}
.y8_c00068{bottom:815.320000pt;}
.y7_c00068{bottom:845.320000pt;}
.y6_c00068{bottom:874.520000pt;}
.y5_c00068{bottom:904.520000pt;}
.y4_c00068{bottom:934.386667pt;}
.y3_c00068{bottom:963.320000pt;}
.y2_c00068{bottom:995.586667pt;}
.y1_c00068{bottom:1024.120000pt;}
.h4_c00068{height:11.733399pt;}
.h5_c00068{height:38.937500pt;}
.h2_c00068{height:108.041667pt;}
.h3_c00068{height:114.794271pt;}
.h1_c00068{height:1202.666667pt;}
.h0_c00068{height:1202.866667pt;}
.w2_c00068{width:93.222667pt;}
.w0_c00068{width:763.200000pt;}
.w1_c00068{width:763.333333pt;}
.x0_c00068{left:0.000000pt;}
.x6_c00068{left:9.866667pt;}
.x5_c00068{left:10.800000pt;}
.x4_c00068{left:12.266667pt;}
.x3_c00068{left:13.200000pt;}
.x2_c00068{left:14.666667pt;}
.x7_c00068{left:17.600000pt;}
.x8_c00068{left:56.400000pt;}
.x1_c00068{left:58.400000pt;}
.x9_c00068{left:338.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e58c70b25512d07b14d6701c.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_f2ade4052ddf418d2ba1c9a9.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_feee66217d71d69c1b6f0990.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;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_c00069;src:url('chunks/assets/font_ba0f10b7ecd1453f23aeaed3.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00069;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00069{font-family:ff6_c00069;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls8_c00069{letter-spacing:0.000000px;}
.ls4_c00069{letter-spacing:2.400000px;}
.ls9_c00069{letter-spacing:3.000000px;}
.ls2_c00069{letter-spacing:6.552000px;}
.ls6_c00069{letter-spacing:7.152000px;}
.ls7_c00069{letter-spacing:7.200000px;}
.ls0_c00069{letter-spacing:7.356000px;}
.ls1_c00069{letter-spacing:14.292000px;}
.ls5_c00069{letter-spacing:21.252000px;}
.ls3_c00069{letter-spacing:23.652000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00069{word-spacing:-23.136000px;}
.ws0_c00069{word-spacing:-19.764000px;}
.ws2_c00069{word-spacing:0.000000px;}
._1b_c00069{margin-left:-76.320000px;}
._18_c00069{margin-left:-59.424000px;}
._3_c00069{margin-left:-32.352000px;}
._2f_c00069{margin-left:-28.704000px;}
._1c_c00069{margin-left:-20.544000px;}
._35_c00069{margin-left:-18.288000px;}
._36_c00069{margin-left:-16.704000px;}
._38_c00069{margin-left:-14.016000px;}
._17_c00069{margin-left:-12.864000px;}
._25_c00069{margin-left:-11.232000px;}
._26_c00069{margin-left:-9.216000px;}
._2d_c00069{margin-left:-8.160000px;}
._39_c00069{margin-left:-6.912000px;}
._3a_c00069{margin-left:-5.472000px;}
._27_c00069{margin-left:-4.128000px;}
._2c_c00069{margin-left:-3.072000px;}
._13_c00069{margin-left:-2.016000px;}
._8_c00069{width:1.728000px;}
._5_c00069{width:2.880000px;}
._0_c00069{width:4.032000px;}
._a_c00069{width:6.048000px;}
._1_c00069{width:7.104000px;}
._c_c00069{width:8.736000px;}
._11_c00069{width:9.792000px;}
._15_c00069{width:11.328000px;}
._14_c00069{width:13.248000px;}
._12_c00069{width:14.880000px;}
._28_c00069{width:16.584000px;}
._1e_c00069{width:18.336000px;}
._30_c00069{width:19.512000px;}
._29_c00069{width:21.030000px;}
._2b_c00069{width:22.104000px;}
._24_c00069{width:24.576000px;}
._16_c00069{width:26.496000px;}
._1a_c00069{width:27.648000px;}
._1d_c00069{width:29.664000px;}
._21_c00069{width:30.720000px;}
._1f_c00069{width:31.776000px;}
._37_c00069{width:33.024000px;}
._20_c00069{width:34.272000px;}
._f_c00069{width:35.808000px;}
._31_c00069{width:37.080000px;}
._2e_c00069{width:38.976000px;}
._22_c00069{width:40.890000px;}
._e_c00069{width:43.296000px;}
._2a_c00069{width:45.120000px;}
._10_c00069{width:47.520000px;}
._33_c00069{width:49.632000px;}
._32_c00069{width:50.658000px;}
._6_c00069{width:52.416000px;}
._23_c00069{width:54.432000px;}
._7_c00069{width:56.064000px;}
._2_c00069{width:57.888000px;}
._4_c00069{width:64.992000px;}
._d_c00069{width:69.504000px;}
._9_c00069{width:80.448000px;}
._b_c00069{width:82.464000px;}
._3b_c00069{width:143.424000px;}
._34_c00069{width:161.760000px;}
._19_c00069{width:252.288000px;}
.fc2_c00069{color:transparent;}
.fc1_c00069{color:rgb(128,128,128);}
.fc0_c00069{color:rgb(0,0,0);}
.fs5_c00069{font-size:48.000000px;}
.fs4_c00069{font-size:60.000000px;}
.fs1_c00069{font-size:66.000000px;}
.fs2_c00069{font-size:84.000000px;}
.fs0_c00069{font-size:96.000000px;}
.fs3_c00069{font-size:102.000000px;}
.y0_c00069{bottom:0.000000px;}
.y25_c00069{bottom:3.105000px;}
.y24_c00069{bottom:7.228357px;}
.y23_c00069{bottom:111.780000px;}
.y22_c00069{bottom:179.880000px;}
.y21_c00069{bottom:214.680000px;}
.y20_c00069{bottom:248.730000px;}
.y1f_c00069{bottom:282.930000px;}
.y1e_c00069{bottom:317.580000px;}
.y1d_c00069{bottom:351.030000px;}
.y1c_c00069{bottom:385.380000px;}
.y1b_c00069{bottom:419.130000px;}
.y1a_c00069{bottom:452.280000px;}
.y19_c00069{bottom:486.630000px;}
.y18_c00069{bottom:520.080000px;}
.y17_c00069{bottom:554.130000px;}
.y16_c00069{bottom:587.880000px;}
.y15_c00069{bottom:621.630000px;}
.y14_c00069{bottom:654.480000px;}
.y13_c00069{bottom:687.480000px;}
.y12_c00069{bottom:721.530000px;}
.y11_c00069{bottom:754.980000px;}
.y10_c00069{bottom:789.030000px;}
.yf_c00069{bottom:822.180000px;}
.ye_c00069{bottom:855.330000px;}
.yd_c00069{bottom:889.380000px;}
.yc_c00069{bottom:922.380000px;}
.yb_c00069{bottom:955.230000px;}
.ya_c00069{bottom:988.530000px;}
.y9_c00069{bottom:1021.980000px;}
.y8_c00069{bottom:1054.080000px;}
.y7_c00069{bottom:1088.730000px;}
.y6_c00069{bottom:1120.830000px;}
.y5_c00069{bottom:1154.280000px;}
.y4_c00069{bottom:1188.330000px;}
.y3_c00069{bottom:1220.430000px;}
.y2_c00069{bottom:1253.130000px;}
.y1_c00069{bottom:1285.830000px;}
.h3_c00069{height:13.200074px;}
.h4_c00069{height:43.804688px;}
.h2_c00069{height:121.546875px;}
.h0_c00069{height:1382.700000px;}
.h1_c00069{height:1383.000000px;}
.w2_c00069{width:104.875500px;}
.w0_c00069{width:863.175000px;}
.w1_c00069{width:863.250000px;}
.x0_c00069{left:0.000000px;}
.x4_c00069{left:209.250000px;}
.x5_c00069{left:286.500000px;}
.x1_c00069{left:287.550000px;}
.x3_c00069{left:289.200000px;}
.x2_c00069{left:290.250000px;}
.x7_c00069{left:293.400000px;}
.x6_c00069{left:318.300000px;}
.xa_c00069{left:383.401749px;}
.x8_c00069{left:399.300000px;}
.x9_c00069{left:721.200000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls8_c00069{letter-spacing:0.000000pt;}
.ls4_c00069{letter-spacing:2.133333pt;}
.ls9_c00069{letter-spacing:2.666667pt;}
.ls2_c00069{letter-spacing:5.824000pt;}
.ls6_c00069{letter-spacing:6.357333pt;}
.ls7_c00069{letter-spacing:6.400000pt;}
.ls0_c00069{letter-spacing:6.538667pt;}
.ls1_c00069{letter-spacing:12.704000pt;}
.ls5_c00069{letter-spacing:18.890667pt;}
.ls3_c00069{letter-spacing:21.024000pt;}
.ws1_c00069{word-spacing:-20.565333pt;}
.ws0_c00069{word-spacing:-17.568000pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._1b_c00069{margin-left:-67.840000pt;}
._18_c00069{margin-left:-52.821333pt;}
._3_c00069{margin-left:-28.757333pt;}
._2f_c00069{margin-left:-25.514667pt;}
._1c_c00069{margin-left:-18.261333pt;}
._35_c00069{margin-left:-16.256000pt;}
._36_c00069{margin-left:-14.848000pt;}
._38_c00069{margin-left:-12.458667pt;}
._17_c00069{margin-left:-11.434667pt;}
._25_c00069{margin-left:-9.984000pt;}
._26_c00069{margin-left:-8.192000pt;}
._2d_c00069{margin-left:-7.253333pt;}
._39_c00069{margin-left:-6.144000pt;}
._3a_c00069{margin-left:-4.864000pt;}
._27_c00069{margin-left:-3.669333pt;}
._2c_c00069{margin-left:-2.730667pt;}
._13_c00069{margin-left:-1.792000pt;}
._8_c00069{width:1.536000pt;}
._5_c00069{width:2.560000pt;}
._0_c00069{width:3.584000pt;}
._a_c00069{width:5.376000pt;}
._1_c00069{width:6.314667pt;}
._c_c00069{width:7.765333pt;}
._11_c00069{width:8.704000pt;}
._15_c00069{width:10.069333pt;}
._14_c00069{width:11.776000pt;}
._12_c00069{width:13.226667pt;}
._28_c00069{width:14.741333pt;}
._1e_c00069{width:16.298667pt;}
._30_c00069{width:17.344000pt;}
._29_c00069{width:18.693333pt;}
._2b_c00069{width:19.648000pt;}
._24_c00069{width:21.845333pt;}
._16_c00069{width:23.552000pt;}
._1a_c00069{width:24.576000pt;}
._1d_c00069{width:26.368000pt;}
._21_c00069{width:27.306667pt;}
._1f_c00069{width:28.245333pt;}
._37_c00069{width:29.354667pt;}
._20_c00069{width:30.464000pt;}
._f_c00069{width:31.829333pt;}
._31_c00069{width:32.960000pt;}
._2e_c00069{width:34.645333pt;}
._22_c00069{width:36.346667pt;}
._e_c00069{width:38.485333pt;}
._2a_c00069{width:40.106667pt;}
._10_c00069{width:42.240000pt;}
._33_c00069{width:44.117333pt;}
._32_c00069{width:45.029333pt;}
._6_c00069{width:46.592000pt;}
._23_c00069{width:48.384000pt;}
._7_c00069{width:49.834667pt;}
._2_c00069{width:51.456000pt;}
._4_c00069{width:57.770667pt;}
._d_c00069{width:61.781333pt;}
._9_c00069{width:71.509333pt;}
._b_c00069{width:73.301333pt;}
._3b_c00069{width:127.488000pt;}
._34_c00069{width:143.786667pt;}
._19_c00069{width:224.256000pt;}
.fs5_c00069{font-size:42.666667pt;}
.fs4_c00069{font-size:53.333333pt;}
.fs1_c00069{font-size:58.666667pt;}
.fs2_c00069{font-size:74.666667pt;}
.fs0_c00069{font-size:85.333333pt;}
.fs3_c00069{font-size:90.666667pt;}
.y0_c00069{bottom:0.000000pt;}
.y25_c00069{bottom:2.760000pt;}
.y24_c00069{bottom:6.425206pt;}
.y23_c00069{bottom:99.360000pt;}
.y22_c00069{bottom:159.893333pt;}
.y21_c00069{bottom:190.826667pt;}
.y20_c00069{bottom:221.093333pt;}
.y1f_c00069{bottom:251.493333pt;}
.y1e_c00069{bottom:282.293333pt;}
.y1d_c00069{bottom:312.026667pt;}
.y1c_c00069{bottom:342.560000pt;}
.y1b_c00069{bottom:372.560000pt;}
.y1a_c00069{bottom:402.026667pt;}
.y19_c00069{bottom:432.560000pt;}
.y18_c00069{bottom:462.293333pt;}
.y17_c00069{bottom:492.560000pt;}
.y16_c00069{bottom:522.560000pt;}
.y15_c00069{bottom:552.560000pt;}
.y14_c00069{bottom:581.760000pt;}
.y13_c00069{bottom:611.093333pt;}
.y12_c00069{bottom:641.360000pt;}
.y11_c00069{bottom:671.093333pt;}
.y10_c00069{bottom:701.360000pt;}
.yf_c00069{bottom:730.826667pt;}
.ye_c00069{bottom:760.293333pt;}
.yd_c00069{bottom:790.560000pt;}
.yc_c00069{bottom:819.893333pt;}
.yb_c00069{bottom:849.093333pt;}
.ya_c00069{bottom:878.693333pt;}
.y9_c00069{bottom:908.426667pt;}
.y8_c00069{bottom:936.960000pt;}
.y7_c00069{bottom:967.760000pt;}
.y6_c00069{bottom:996.293333pt;}
.y5_c00069{bottom:1026.026667pt;}
.y4_c00069{bottom:1056.293333pt;}
.y3_c00069{bottom:1084.826667pt;}
.y2_c00069{bottom:1113.893333pt;}
.y1_c00069{bottom:1142.960000pt;}
.h3_c00069{height:11.733399pt;}
.h4_c00069{height:38.937500pt;}
.h2_c00069{height:108.041667pt;}
.h0_c00069{height:1229.066667pt;}
.h1_c00069{height:1229.333333pt;}
.w2_c00069{width:93.222667pt;}
.w0_c00069{width:767.266667pt;}
.w1_c00069{width:767.333333pt;}
.x0_c00069{left:0.000000pt;}
.x4_c00069{left:186.000000pt;}
.x5_c00069{left:254.666667pt;}
.x1_c00069{left:255.600000pt;}
.x3_c00069{left:257.066667pt;}
.x2_c00069{left:258.000000pt;}
.x7_c00069{left:260.800000pt;}
.x6_c00069{left:282.933333pt;}
.xa_c00069{left:340.801554pt;}
.x8_c00069{left:354.933333pt;}
.x9_c00069{left:641.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4118436df72560898f4deaf5.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_8eb66260357427b3cadd28e4.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_d5e584a3aba1b63817947441.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.v1_c00070{vertical-align:51.000000px;}
.ls6_c00070{letter-spacing:0.000000px;}
.ls4_c00070{letter-spacing:3.480000px;}
.ls2_c00070{letter-spacing:7.584000px;}
.ls0_c00070{letter-spacing:9.984000px;}
.ls5_c00070{letter-spacing:12.105600px;}
.ls3_c00070{letter-spacing:21.033000px;}
.ls7_c00070{letter-spacing:36.000000px;}
.ls1_c00070{letter-spacing:49.233000px;}
.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;}
}
.ws1_c00070{word-spacing:-20.244000px;}
.ws0_c00070{word-spacing:-18.798000px;}
.ws2_c00070{word-spacing:0.000000px;}
._47_c00070{margin-left:-86.400000px;}
._2a_c00070{margin-left:-56.985000px;}
._23_c00070{margin-left:-43.239000px;}
._20_c00070{margin-left:-38.019000px;}
._21_c00070{margin-left:-34.626000px;}
._32_c00070{margin-left:-32.640000px;}
._1f_c00070{margin-left:-31.407000px;}
._2b_c00070{margin-left:-29.994000px;}
._29_c00070{margin-left:-25.491000px;}
._4e_c00070{margin-left:-23.697000px;}
._5c_c00070{margin-left:-20.928000px;}
._5e_c00070{margin-left:-19.392000px;}
._34_c00070{margin-left:-17.952000px;}
._37_c00070{margin-left:-16.512000px;}
._27_c00070{margin-left:-13.572000px;}
._50_c00070{margin-left:-10.656000px;}
._28_c00070{margin-left:-9.318000px;}
._26_c00070{margin-left:-8.190000px;}
._11_c00070{margin-left:-7.104000px;}
._12_c00070{margin-left:-5.460000px;}
._13_c00070{margin-left:-3.792000px;}
._6_c00070{margin-left:-2.592000px;}
._e_c00070{margin-left:-1.056000px;}
._3_c00070{width:1.920000px;}
._45_c00070{width:2.928000px;}
._b_c00070{width:3.936000px;}
._4_c00070{width:5.472000px;}
._8_c00070{width:6.816000px;}
._9_c00070{width:7.968000px;}
._a_c00070{width:9.216000px;}
._3e_c00070{width:10.224000px;}
._0_c00070{width:11.232000px;}
._1_c00070{width:12.672000px;}
._15_c00070{width:14.016000px;}
._64_c00070{width:15.264000px;}
._38_c00070{width:16.368000px;}
._1d_c00070{width:17.664000px;}
._42_c00070{width:18.720000px;}
._4c_c00070{width:20.544000px;}
._35_c00070{width:22.080000px;}
._18_c00070{width:24.864000px;}
._c_c00070{width:26.016000px;}
._19_c00070{width:27.264000px;}
._7_c00070{width:28.416000px;}
._36_c00070{width:29.472000px;}
._14_c00070{width:32.160000px;}
._5_c00070{width:34.176000px;}
._d_c00070{width:36.384000px;}
._2c_c00070{width:37.812000px;}
._1c_c00070{width:39.072000px;}
._1b_c00070{width:40.320000px;}
._16_c00070{width:42.144000px;}
._56_c00070{width:43.200000px;}
._f_c00070{width:44.448000px;}
._17_c00070{width:46.272000px;}
._54_c00070{width:48.192000px;}
._3d_c00070{width:49.248000px;}
._3f_c00070{width:51.264000px;}
._3c_c00070{width:53.172000px;}
._40_c00070{width:54.624000px;}
._44_c00070{width:56.736000px;}
._41_c00070{width:60.576000px;}
._30_c00070{width:61.638000px;}
._43_c00070{width:63.552000px;}
._58_c00070{width:64.704000px;}
._59_c00070{width:65.856000px;}
._55_c00070{width:67.344000px;}
._53_c00070{width:69.408000px;}
._1e_c00070{width:75.627000px;}
._1a_c00070{width:77.472000px;}
._2f_c00070{width:78.696000px;}
._5b_c00070{width:81.207000px;}
._39_c00070{width:88.128000px;}
._2e_c00070{width:89.544000px;}
._4b_c00070{width:90.720000px;}
._3a_c00070{width:93.312000px;}
._5f_c00070{width:111.840000px;}
._3b_c00070{width:124.836000px;}
._63_c00070{width:142.647000px;}
._25_c00070{width:158.379000px;}
._46_c00070{width:161.760000px;}
._62_c00070{width:168.210000px;}
._60_c00070{width:177.579000px;}
._4f_c00070{width:179.712000px;}
._10_c00070{width:186.960000px;}
._51_c00070{width:195.714000px;}
._2d_c00070{width:196.824000px;}
._31_c00070{width:231.168000px;}
._5d_c00070{width:238.782000px;}
._33_c00070{width:250.176000px;}
._24_c00070{width:287.361000px;}
._49_c00070{width:306.528000px;}
._4d_c00070{width:336.216000px;}
._2_c00070{width:360.192000px;}
._4a_c00070{width:388.512000px;}
._52_c00070{width:402.168000px;}
._57_c00070{width:579.816000px;}
._61_c00070{width:616.224000px;}
._48_c00070{width:659.616000px;}
._22_c00070{width:785.436000px;}
._5a_c00070{width:789.216000px;}
._65_c00070{width:2134.896000px;}
.fc2_c00070{color:transparent;}
.fc1_c00070{color:rgb(128,128,128);}
.fc0_c00070{color:rgb(0,0,0);}
.fs5_c00070{font-size:48.000000px;}
.fs4_c00070{font-size:67.200000px;}
.fs1_c00070{font-size:78.000000px;}
.fs3_c00070{font-size:84.000000px;}
.fs2_c00070{font-size:87.000000px;}
.fs0_c00070{font-size:96.000000px;}
.y0_c00070{bottom:0.000000px;}
.y24_c00070{bottom:3.105000px;}
.y23_c00070{bottom:7.228369px;}
.y22_c00070{bottom:115.770000px;}
.y21_c00070{bottom:149.070000px;}
.y20_c00070{bottom:182.970000px;}
.y1f_c00070{bottom:217.320000px;}
.y1e_c00070{bottom:250.770000px;}
.y1d_c00070{bottom:285.120000px;}
.y1c_c00070{bottom:317.820000px;}
.y1b_c00070{bottom:351.270000px;}
.y1a_c00070{bottom:370.920000px;}
.y19_c00070{bottom:385.020000px;}
.y18_c00070{bottom:400.620000px;}
.y17_c00070{bottom:420.420000px;}
.y16_c00070{bottom:454.170000px;}
.y15_c00070{bottom:485.670000px;}
.y14_c00070{bottom:552.120000px;}
.y13_c00070{bottom:619.920000px;}
.y12_c00070{bottom:652.770000px;}
.y11_c00070{bottom:686.970000px;}
.y10_c00070{bottom:719.820000px;}
.yf_c00070{bottom:752.670000px;}
.ye_c00070{bottom:786.720000px;}
.yd_c00070{bottom:819.120000px;}
.yc_c00070{bottom:852.570000px;}
.yb_c00070{bottom:885.570000px;}
.ya_c00070{bottom:918.570000px;}
.y9_c00070{bottom:952.320000px;}
.y8_c00070{bottom:985.170000px;}
.y7_c00070{bottom:1018.620000px;}
.y6_c00070{bottom:1051.620000px;}
.y5_c00070{bottom:1083.270000px;}
.y4_c00070{bottom:1101.270000px;}
.y3_c00070{bottom:1118.370000px;}
.y2_c00070{bottom:1154.220000px;}
.y1_c00070{bottom:1186.020000px;}
.h5_c00070{height:13.200073px;}
.h6_c00070{height:43.804688px;}
.h3_c00070{height:110.151855px;}
.h2_c00070{height:121.546875px;}
.h4_c00070{height:172.546875px;}
.h0_c00070{height:1383.450000px;}
.h1_c00070{height:1383.750000px;}
.w2_c00070{width:104.875500px;}
.w0_c00070{width:878.025000px;}
.w1_c00070{width:878.250000px;}
.x0_c00070{left:0.000000px;}
.xc_c00070{left:37.500000px;}
.x7_c00070{left:39.150000px;}
.x6_c00070{left:40.200000px;}
.x5_c00070{left:41.250000px;}
.x3_c00070{left:42.450000px;}
.x2_c00070{left:43.950000px;}
.xb_c00070{left:47.700000px;}
.x9_c00070{left:57.000000px;}
.x1_c00070{left:92.100000px;}
.x4_c00070{left:128.250000px;}
.x8_c00070{left:160.050000px;}
.xa_c00070{left:169.950000px;}
.xd_c00070{left:390.826721px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.v1_c00070{vertical-align:45.333333pt;}
.ls6_c00070{letter-spacing:0.000000pt;}
.ls4_c00070{letter-spacing:3.093333pt;}
.ls2_c00070{letter-spacing:6.741333pt;}
.ls0_c00070{letter-spacing:8.874667pt;}
.ls5_c00070{letter-spacing:10.760533pt;}
.ls3_c00070{letter-spacing:18.696000pt;}
.ls7_c00070{letter-spacing:32.000000pt;}
.ls1_c00070{letter-spacing:43.762667pt;}
.ws1_c00070{word-spacing:-17.994667pt;}
.ws0_c00070{word-spacing:-16.709333pt;}
.ws2_c00070{word-spacing:0.000000pt;}
._47_c00070{margin-left:-76.800000pt;}
._2a_c00070{margin-left:-50.653333pt;}
._23_c00070{margin-left:-38.434667pt;}
._20_c00070{margin-left:-33.794667pt;}
._21_c00070{margin-left:-30.778667pt;}
._32_c00070{margin-left:-29.013333pt;}
._1f_c00070{margin-left:-27.917333pt;}
._2b_c00070{margin-left:-26.661333pt;}
._29_c00070{margin-left:-22.658667pt;}
._4e_c00070{margin-left:-21.064000pt;}
._5c_c00070{margin-left:-18.602667pt;}
._5e_c00070{margin-left:-17.237333pt;}
._34_c00070{margin-left:-15.957333pt;}
._37_c00070{margin-left:-14.677333pt;}
._27_c00070{margin-left:-12.064000pt;}
._50_c00070{margin-left:-9.472000pt;}
._28_c00070{margin-left:-8.282667pt;}
._26_c00070{margin-left:-7.280000pt;}
._11_c00070{margin-left:-6.314667pt;}
._12_c00070{margin-left:-4.853333pt;}
._13_c00070{margin-left:-3.370667pt;}
._6_c00070{margin-left:-2.304000pt;}
._e_c00070{margin-left:-0.938667pt;}
._3_c00070{width:1.706667pt;}
._45_c00070{width:2.602667pt;}
._b_c00070{width:3.498667pt;}
._4_c00070{width:4.864000pt;}
._8_c00070{width:6.058667pt;}
._9_c00070{width:7.082667pt;}
._a_c00070{width:8.192000pt;}
._3e_c00070{width:9.088000pt;}
._0_c00070{width:9.984000pt;}
._1_c00070{width:11.264000pt;}
._15_c00070{width:12.458667pt;}
._64_c00070{width:13.568000pt;}
._38_c00070{width:14.549333pt;}
._1d_c00070{width:15.701333pt;}
._42_c00070{width:16.640000pt;}
._4c_c00070{width:18.261333pt;}
._35_c00070{width:19.626667pt;}
._18_c00070{width:22.101333pt;}
._c_c00070{width:23.125333pt;}
._19_c00070{width:24.234667pt;}
._7_c00070{width:25.258667pt;}
._36_c00070{width:26.197333pt;}
._14_c00070{width:28.586667pt;}
._5_c00070{width:30.378667pt;}
._d_c00070{width:32.341333pt;}
._2c_c00070{width:33.610667pt;}
._1c_c00070{width:34.730667pt;}
._1b_c00070{width:35.840000pt;}
._16_c00070{width:37.461333pt;}
._56_c00070{width:38.400000pt;}
._f_c00070{width:39.509333pt;}
._17_c00070{width:41.130667pt;}
._54_c00070{width:42.837333pt;}
._3d_c00070{width:43.776000pt;}
._3f_c00070{width:45.568000pt;}
._3c_c00070{width:47.264000pt;}
._40_c00070{width:48.554667pt;}
._44_c00070{width:50.432000pt;}
._41_c00070{width:53.845333pt;}
._30_c00070{width:54.789333pt;}
._43_c00070{width:56.490667pt;}
._58_c00070{width:57.514667pt;}
._59_c00070{width:58.538667pt;}
._55_c00070{width:59.861333pt;}
._53_c00070{width:61.696000pt;}
._1e_c00070{width:67.224000pt;}
._1a_c00070{width:68.864000pt;}
._2f_c00070{width:69.952000pt;}
._5b_c00070{width:72.184000pt;}
._39_c00070{width:78.336000pt;}
._2e_c00070{width:79.594667pt;}
._4b_c00070{width:80.640000pt;}
._3a_c00070{width:82.944000pt;}
._5f_c00070{width:99.413333pt;}
._3b_c00070{width:110.965333pt;}
._63_c00070{width:126.797333pt;}
._25_c00070{width:140.781333pt;}
._46_c00070{width:143.786667pt;}
._62_c00070{width:149.520000pt;}
._60_c00070{width:157.848000pt;}
._4f_c00070{width:159.744000pt;}
._10_c00070{width:166.186667pt;}
._51_c00070{width:173.968000pt;}
._2d_c00070{width:174.954667pt;}
._31_c00070{width:205.482667pt;}
._5d_c00070{width:212.250667pt;}
._33_c00070{width:222.378667pt;}
._24_c00070{width:255.432000pt;}
._49_c00070{width:272.469333pt;}
._4d_c00070{width:298.858667pt;}
._2_c00070{width:320.170667pt;}
._4a_c00070{width:345.344000pt;}
._52_c00070{width:357.482667pt;}
._57_c00070{width:515.392000pt;}
._61_c00070{width:547.754667pt;}
._48_c00070{width:586.325333pt;}
._22_c00070{width:698.165333pt;}
._5a_c00070{width:701.525333pt;}
._65_c00070{width:1897.685333pt;}
.fs5_c00070{font-size:42.666667pt;}
.fs4_c00070{font-size:59.733333pt;}
.fs1_c00070{font-size:69.333333pt;}
.fs3_c00070{font-size:74.666667pt;}
.fs2_c00070{font-size:77.333333pt;}
.fs0_c00070{font-size:85.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y24_c00070{bottom:2.760000pt;}
.y23_c00070{bottom:6.425217pt;}
.y22_c00070{bottom:102.906667pt;}
.y21_c00070{bottom:132.506667pt;}
.y20_c00070{bottom:162.640000pt;}
.y1f_c00070{bottom:193.173333pt;}
.y1e_c00070{bottom:222.906667pt;}
.y1d_c00070{bottom:253.440000pt;}
.y1c_c00070{bottom:282.506667pt;}
.y1b_c00070{bottom:312.240000pt;}
.y1a_c00070{bottom:329.706667pt;}
.y19_c00070{bottom:342.240000pt;}
.y18_c00070{bottom:356.106667pt;}
.y17_c00070{bottom:373.706667pt;}
.y16_c00070{bottom:403.706667pt;}
.y15_c00070{bottom:431.706667pt;}
.y14_c00070{bottom:490.773333pt;}
.y13_c00070{bottom:551.040000pt;}
.y12_c00070{bottom:580.240000pt;}
.y11_c00070{bottom:610.640000pt;}
.y10_c00070{bottom:639.840000pt;}
.yf_c00070{bottom:669.040000pt;}
.ye_c00070{bottom:699.306667pt;}
.yd_c00070{bottom:728.106667pt;}
.yc_c00070{bottom:757.840000pt;}
.yb_c00070{bottom:787.173333pt;}
.ya_c00070{bottom:816.506667pt;}
.y9_c00070{bottom:846.506667pt;}
.y8_c00070{bottom:875.706667pt;}
.y7_c00070{bottom:905.440000pt;}
.y6_c00070{bottom:934.773333pt;}
.y5_c00070{bottom:962.906667pt;}
.y4_c00070{bottom:978.906667pt;}
.y3_c00070{bottom:994.106667pt;}
.y2_c00070{bottom:1025.973333pt;}
.y1_c00070{bottom:1054.240000pt;}
.h5_c00070{height:11.733399pt;}
.h6_c00070{height:38.937500pt;}
.h3_c00070{height:97.912760pt;}
.h2_c00070{height:108.041667pt;}
.h4_c00070{height:153.375000pt;}
.h0_c00070{height:1229.733333pt;}
.h1_c00070{height:1230.000000pt;}
.w2_c00070{width:93.222667pt;}
.w0_c00070{width:780.466667pt;}
.w1_c00070{width:780.666667pt;}
.x0_c00070{left:0.000000pt;}
.xc_c00070{left:33.333333pt;}
.x7_c00070{left:34.800000pt;}
.x6_c00070{left:35.733333pt;}
.x5_c00070{left:36.666667pt;}
.x3_c00070{left:37.733333pt;}
.x2_c00070{left:39.066667pt;}
.xb_c00070{left:42.400000pt;}
.x9_c00070{left:50.666667pt;}
.x1_c00070{left:81.866667pt;}
.x4_c00070{left:114.000000pt;}
.x8_c00070{left:142.266667pt;}
.xa_c00070{left:151.066667pt;}
.xd_c00070{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43672e0ea0c3b8083b513a5e.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_31dbf4b45ef7e00783f4b360.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls1_c00071{letter-spacing:0.000000px;}
.ls3_c00071{letter-spacing:24.000000px;}
.ls2_c00071{letter-spacing:36.000000px;}
.ls0_c00071{letter-spacing:459.033000px;}
.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;}
}
.ws2_c00071{word-spacing:-23.136000px;}
.ws0_c00071{word-spacing:-20.244000px;}
.ws1_c00071{word-spacing:-18.798000px;}
.ws3_c00071{word-spacing:0.000000px;}
._2d_c00071{margin-left:-40.629000px;}
._3b_c00071{margin-left:-34.017000px;}
._29_c00071{margin-left:-32.364000px;}
._c_c00071{margin-left:-30.528000px;}
._2b_c00071{margin-left:-28.971000px;}
._2a_c00071{margin-left:-27.057000px;}
._36_c00071{margin-left:-15.552000px;}
._3d_c00071{margin-left:-11.520000px;}
._28_c00071{margin-left:-9.966000px;}
._35_c00071{margin-left:-8.544000px;}
._10_c00071{margin-left:-6.528000px;}
._25_c00071{margin-left:-4.704000px;}
._f_c00071{margin-left:-3.648000px;}
._27_c00071{margin-left:-2.502000px;}
._0_c00071{margin-left:-1.440000px;}
._4_c00071{width:1.728000px;}
._1_c00071{width:3.168000px;}
._7_c00071{width:4.704000px;}
._14_c00071{width:6.240000px;}
._b_c00071{width:7.776000px;}
._13_c00071{width:9.024000px;}
._1a_c00071{width:10.368000px;}
._12_c00071{width:11.712000px;}
._22_c00071{width:13.056000px;}
._24_c00071{width:14.208000px;}
._20_c00071{width:16.224000px;}
._19_c00071{width:17.760000px;}
._1f_c00071{width:19.296000px;}
._6_c00071{width:20.544000px;}
._21_c00071{width:21.600000px;}
._8_c00071{width:25.248000px;}
._1b_c00071{width:26.400000px;}
._18_c00071{width:27.840000px;}
._9_c00071{width:29.568000px;}
._1c_c00071{width:30.912000px;}
._d_c00071{width:32.064000px;}
._2_c00071{width:34.176000px;}
._1e_c00071{width:36.096000px;}
._32_c00071{width:37.248000px;}
._2f_c00071{width:38.592000px;}
._11_c00071{width:40.224000px;}
._a_c00071{width:41.472000px;}
._1d_c00071{width:42.624000px;}
._3_c00071{width:44.160000px;}
._5_c00071{width:45.312000px;}
._15_c00071{width:47.136000px;}
._e_c00071{width:49.536000px;}
._30_c00071{width:51.264000px;}
._16_c00071{width:54.048000px;}
._17_c00071{width:57.312000px;}
._37_c00071{width:60.672000px;}
._31_c00071{width:62.016000px;}
._3a_c00071{width:68.352000px;}
._23_c00071{width:71.040000px;}
._39_c00071{width:83.328000px;}
._26_c00071{width:106.176000px;}
._2c_c00071{width:117.102000px;}
._34_c00071{width:141.792000px;}
._38_c00071{width:252.384000px;}
._2e_c00071{width:342.615000px;}
._33_c00071{width:471.552000px;}
._3c_c00071{width:1973.160000px;}
.fc2_c00071{color:transparent;}
.fc1_c00071{color:rgb(128,128,128);}
.fc0_c00071{color:rgb(0,0,0);}
.fs4_c00071{font-size:48.000000px;}
.fs2_c00071{font-size:78.000000px;}
.fs1_c00071{font-size:84.000000px;}
.fs3_c00071{font-size:87.000000px;}
.fs0_c00071{font-size:96.000000px;}
.y0_c00071{bottom:0.000000px;}
.y24_c00071{bottom:3.105000px;}
.y23_c00071{bottom:7.228357px;}
.y22_c00071{bottom:75.930000px;}
.y21_c00071{bottom:113.130000px;}
.y20_c00071{bottom:147.780000px;}
.y1f_c00071{bottom:181.680000px;}
.y1e_c00071{bottom:215.730000px;}
.y1d_c00071{bottom:249.780000px;}
.y1c_c00071{bottom:283.830000px;}
.y1b_c00071{bottom:317.880000px;}
.y1a_c00071{bottom:351.630000px;}
.y19_c00071{bottom:385.380000px;}
.y18_c00071{bottom:419.130000px;}
.y17_c00071{bottom:451.680000px;}
.y16_c00071{bottom:486.330000px;}
.y15_c00071{bottom:520.080000px;}
.y14_c00071{bottom:553.830000px;}
.y13_c00071{bottom:587.280000px;}
.y12_c00071{bottom:620.280000px;}
.y11_c00071{bottom:653.730000px;}
.y10_c00071{bottom:687.180000px;}
.yf_c00071{bottom:720.630000px;}
.ye_c00071{bottom:754.380000px;}
.yd_c00071{bottom:787.680000px;}
.yc_c00071{bottom:821.130000px;}
.yb_c00071{bottom:855.180000px;}
.ya_c00071{bottom:888.330000px;}
.y9_c00071{bottom:953.880000px;}
.y8_c00071{bottom:1019.880000px;}
.y7_c00071{bottom:1053.630000px;}
.y6_c00071{bottom:1086.780000px;}
.y5_c00071{bottom:1119.480000px;}
.y4_c00071{bottom:1152.930000px;}
.y3_c00071{bottom:1185.630000px;}
.y2_c00071{bottom:1218.480000px;}
.y1_c00071{bottom:1251.780000px;}
.h3_c00071{height:13.200074px;}
.h4_c00071{height:43.804688px;}
.h2_c00071{height:121.546875px;}
.h1_c00071{height:1351.500000px;}
.h0_c00071{height:1351.650000px;}
.w2_c00071{width:104.875500px;}
.w0_c00071{width:843.450000px;}
.w1_c00071{width:843.750000px;}
.x0_c00071{left:0.000000px;}
.x6_c00071{left:50.550000px;}
.x8_c00071{left:78.600000px;}
.x5_c00071{left:79.650000px;}
.xa_c00071{left:176.850000px;}
.x3_c00071{left:208.800000px;}
.xb_c00071{left:220.650000px;}
.xf_c00071{left:256.200000px;}
.xd_c00071{left:257.400000px;}
.xc_c00071{left:260.550000px;}
.xe_c00071{left:261.600000px;}
.x9_c00071{left:262.800000px;}
.x1_c00071{left:266.400000px;}
.x2_c00071{left:267.600000px;}
.x7_c00071{left:268.650000px;}
.x10_c00071{left:292.200000px;}
.x11_c00071{left:373.539230px;}
.x4_c00071{left:406.350000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls1_c00071{letter-spacing:0.000000pt;}
.ls3_c00071{letter-spacing:21.333333pt;}
.ls2_c00071{letter-spacing:32.000000pt;}
.ls0_c00071{letter-spacing:408.029333pt;}
.ws2_c00071{word-spacing:-20.565333pt;}
.ws0_c00071{word-spacing:-17.994667pt;}
.ws1_c00071{word-spacing:-16.709333pt;}
.ws3_c00071{word-spacing:0.000000pt;}
._2d_c00071{margin-left:-36.114667pt;}
._3b_c00071{margin-left:-30.237333pt;}
._29_c00071{margin-left:-28.768000pt;}
._c_c00071{margin-left:-27.136000pt;}
._2b_c00071{margin-left:-25.752000pt;}
._2a_c00071{margin-left:-24.050667pt;}
._36_c00071{margin-left:-13.824000pt;}
._3d_c00071{margin-left:-10.240000pt;}
._28_c00071{margin-left:-8.858667pt;}
._35_c00071{margin-left:-7.594667pt;}
._10_c00071{margin-left:-5.802667pt;}
._25_c00071{margin-left:-4.181333pt;}
._f_c00071{margin-left:-3.242667pt;}
._27_c00071{margin-left:-2.224000pt;}
._0_c00071{margin-left:-1.280000pt;}
._4_c00071{width:1.536000pt;}
._1_c00071{width:2.816000pt;}
._7_c00071{width:4.181333pt;}
._14_c00071{width:5.546667pt;}
._b_c00071{width:6.912000pt;}
._13_c00071{width:8.021333pt;}
._1a_c00071{width:9.216000pt;}
._12_c00071{width:10.410667pt;}
._22_c00071{width:11.605333pt;}
._24_c00071{width:12.629333pt;}
._20_c00071{width:14.421333pt;}
._19_c00071{width:15.786667pt;}
._1f_c00071{width:17.152000pt;}
._6_c00071{width:18.261333pt;}
._21_c00071{width:19.200000pt;}
._8_c00071{width:22.442667pt;}
._1b_c00071{width:23.466667pt;}
._18_c00071{width:24.746667pt;}
._9_c00071{width:26.282667pt;}
._1c_c00071{width:27.477333pt;}
._d_c00071{width:28.501333pt;}
._2_c00071{width:30.378667pt;}
._1e_c00071{width:32.085333pt;}
._32_c00071{width:33.109333pt;}
._2f_c00071{width:34.304000pt;}
._11_c00071{width:35.754667pt;}
._a_c00071{width:36.864000pt;}
._1d_c00071{width:37.888000pt;}
._3_c00071{width:39.253333pt;}
._5_c00071{width:40.277333pt;}
._15_c00071{width:41.898667pt;}
._e_c00071{width:44.032000pt;}
._30_c00071{width:45.568000pt;}
._16_c00071{width:48.042667pt;}
._17_c00071{width:50.944000pt;}
._37_c00071{width:53.930667pt;}
._31_c00071{width:55.125333pt;}
._3a_c00071{width:60.757333pt;}
._23_c00071{width:63.146667pt;}
._39_c00071{width:74.069333pt;}
._26_c00071{width:94.378667pt;}
._2c_c00071{width:104.090667pt;}
._34_c00071{width:126.037333pt;}
._38_c00071{width:224.341333pt;}
._2e_c00071{width:304.546667pt;}
._33_c00071{width:419.157333pt;}
._3c_c00071{width:1753.920000pt;}
.fs4_c00071{font-size:42.666667pt;}
.fs2_c00071{font-size:69.333333pt;}
.fs1_c00071{font-size:74.666667pt;}
.fs3_c00071{font-size:77.333333pt;}
.fs0_c00071{font-size:85.333333pt;}
.y0_c00071{bottom:0.000000pt;}
.y24_c00071{bottom:2.760000pt;}
.y23_c00071{bottom:6.425206pt;}
.y22_c00071{bottom:67.493333pt;}
.y21_c00071{bottom:100.560000pt;}
.y20_c00071{bottom:131.360000pt;}
.y1f_c00071{bottom:161.493333pt;}
.y1e_c00071{bottom:191.760000pt;}
.y1d_c00071{bottom:222.026667pt;}
.y1c_c00071{bottom:252.293333pt;}
.y1b_c00071{bottom:282.560000pt;}
.y1a_c00071{bottom:312.560000pt;}
.y19_c00071{bottom:342.560000pt;}
.y18_c00071{bottom:372.560000pt;}
.y17_c00071{bottom:401.493333pt;}
.y16_c00071{bottom:432.293333pt;}
.y15_c00071{bottom:462.293333pt;}
.y14_c00071{bottom:492.293333pt;}
.y13_c00071{bottom:522.026667pt;}
.y12_c00071{bottom:551.360000pt;}
.y11_c00071{bottom:581.093333pt;}
.y10_c00071{bottom:610.826667pt;}
.yf_c00071{bottom:640.560000pt;}
.ye_c00071{bottom:670.560000pt;}
.yd_c00071{bottom:700.160000pt;}
.yc_c00071{bottom:729.893333pt;}
.yb_c00071{bottom:760.160000pt;}
.ya_c00071{bottom:789.626667pt;}
.y9_c00071{bottom:847.893333pt;}
.y8_c00071{bottom:906.560000pt;}
.y7_c00071{bottom:936.560000pt;}
.y6_c00071{bottom:966.026667pt;}
.y5_c00071{bottom:995.093333pt;}
.y4_c00071{bottom:1024.826667pt;}
.y3_c00071{bottom:1053.893333pt;}
.y2_c00071{bottom:1083.093333pt;}
.y1_c00071{bottom:1112.693333pt;}
.h3_c00071{height:11.733399pt;}
.h4_c00071{height:38.937500pt;}
.h2_c00071{height:108.041667pt;}
.h1_c00071{height:1201.333333pt;}
.h0_c00071{height:1201.466667pt;}
.w2_c00071{width:93.222667pt;}
.w0_c00071{width:749.733333pt;}
.w1_c00071{width:750.000000pt;}
.x0_c00071{left:0.000000pt;}
.x6_c00071{left:44.933333pt;}
.x8_c00071{left:69.866667pt;}
.x5_c00071{left:70.800000pt;}
.xa_c00071{left:157.200000pt;}
.x3_c00071{left:185.600000pt;}
.xb_c00071{left:196.133333pt;}
.xf_c00071{left:227.733333pt;}
.xd_c00071{left:228.800000pt;}
.xc_c00071{left:231.600000pt;}
.xe_c00071{left:232.533333pt;}
.x9_c00071{left:233.600000pt;}
.x1_c00071{left:236.800000pt;}
.x2_c00071{left:237.866667pt;}
.x7_c00071{left:238.800000pt;}
.x10_c00071{left:259.733333pt;}
.x11_c00071{left:332.034871pt;}
.x4_c00071{left:361.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a853b0e21e664be74a1948d3.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_795884b2c6fc2eada0bf2a09.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_521ada371cb3c4d567bbbb32.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;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_c00072;src:url('chunks/assets/font_6da85a5da229337a856dbd4a.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00072;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00072{font-family:ff6_c00072;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls1_c00072{letter-spacing:0.000000px;}
.ls3_c00072{letter-spacing:3.000000px;}
.ls2_c00072{letter-spacing:6.000000px;}
.ls5_c00072{letter-spacing:9.000000px;}
.ls0_c00072{letter-spacing:20.400000px;}
.ls4_c00072{letter-spacing:36.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00072{word-spacing:-54.000000px;}
.ws4_c00072{word-spacing:-27.798000px;}
.ws3_c00072{word-spacing:-20.967000px;}
.ws0_c00072{word-spacing:-20.244000px;}
.ws2_c00072{word-spacing:-18.798000px;}
.ws5_c00072{word-spacing:0.000000px;}
._46_c00072{margin-left:-59.091000px;}
._36_c00072{margin-left:-47.136000px;}
._22_c00072{margin-left:-27.840000px;}
._24_c00072{margin-left:-25.728000px;}
._3d_c00072{margin-left:-21.216000px;}
._39_c00072{margin-left:-19.668000px;}
._3f_c00072{margin-left:-16.608000px;}
._26_c00072{margin-left:-15.168000px;}
._28_c00072{margin-left:-13.311000px;}
._42_c00072{margin-left:-12.288000px;}
._3a_c00072{margin-left:-11.232000px;}
._b_c00072{margin-left:-9.792000px;}
._d_c00072{margin-left:-8.448000px;}
._c_c00072{margin-left:-7.200000px;}
._f_c00072{margin-left:-5.472000px;}
._38_c00072{margin-left:-4.320000px;}
._1b_c00072{margin-left:-3.168000px;}
._6_c00072{margin-left:-1.920000px;}
._a_c00072{width:1.152000px;}
._8_c00072{width:2.208000px;}
._3_c00072{width:4.032000px;}
._14_c00072{width:5.184000px;}
._0_c00072{width:6.240000px;}
._2e_c00072{width:7.296000px;}
._1_c00072{width:8.352000px;}
._2_c00072{width:10.176000px;}
._18_c00072{width:11.712000px;}
._4_c00072{width:13.344000px;}
._1a_c00072{width:14.688000px;}
._5_c00072{width:15.936000px;}
._12_c00072{width:16.992000px;}
._34_c00072{width:18.720000px;}
._e_c00072{width:19.872000px;}
._1e_c00072{width:21.120000px;}
._37_c00072{width:22.608000px;}
._47_c00072{width:23.682000px;}
._15_c00072{width:25.728000px;}
._1f_c00072{width:26.784000px;}
._13_c00072{width:28.224000px;}
._30_c00072{width:29.280000px;}
._17_c00072{width:30.816000px;}
._2f_c00072{width:32.544000px;}
._9_c00072{width:34.752000px;}
._32_c00072{width:36.624000px;}
._16_c00072{width:38.880000px;}
._7_c00072{width:40.416000px;}
._10_c00072{width:41.568000px;}
._31_c00072{width:43.872000px;}
._11_c00072{width:45.120000px;}
._35_c00072{width:46.752000px;}
._19_c00072{width:47.808000px;}
._1c_c00072{width:49.824000px;}
._1d_c00072{width:51.456000px;}
._33_c00072{width:53.376000px;}
._41_c00072{width:57.888000px;}
._20_c00072{width:62.112000px;}
._3b_c00072{width:68.832000px;}
._23_c00072{width:70.752000px;}
._27_c00072{width:92.352000px;}
._2d_c00072{width:93.696000px;}
._3c_c00072{width:99.840000px;}
._3e_c00072{width:101.088000px;}
._2b_c00072{width:107.232000px;}
._29_c00072{width:133.545000px;}
._43_c00072{width:160.128000px;}
._21_c00072{width:180.960000px;}
._40_c00072{width:186.144000px;}
._25_c00072{width:284.640000px;}
._2c_c00072{width:292.032000px;}
._2a_c00072{width:545.664000px;}
._44_c00072{width:836.736000px;}
._45_c00072{width:900.576000px;}
.fc2_c00072{color:transparent;}
.fc1_c00072{color:rgb(128,128,128);}
.fc0_c00072{color:rgb(0,0,0);}
.fs2_c00072{font-size:36.000000px;}
.fs8_c00072{font-size:48.000000px;}
.fs3_c00072{font-size:60.000000px;}
.fs7_c00072{font-size:78.000000px;}
.fs4_c00072{font-size:84.000000px;}
.fs1_c00072{font-size:87.000000px;}
.fs0_c00072{font-size:96.000000px;}
.fs5_c00072{font-size:102.000000px;}
.fs6_c00072{font-size:111.000000px;}
.y0_c00072{bottom:0.000000px;}
.y2c_c00072{bottom:3.105000px;}
.y2b_c00072{bottom:7.228363px;}
.y24_c00072{bottom:94.500000px;}
.y23_c00072{bottom:129.900000px;}
.y22_c00072{bottom:164.400000px;}
.y21_c00072{bottom:198.150000px;}
.y20_c00072{bottom:232.200000px;}
.y1f_c00072{bottom:265.050000px;}
.y1e_c00072{bottom:300.000000px;}
.y1d_c00072{bottom:333.150000px;}
.y1c_c00072{bottom:366.900000px;}
.y1b_c00072{bottom:401.400000px;}
.y1a_c00072{bottom:434.100000px;}
.y2a_c00072{bottom:456.300000px;}
.y19_c00072{bottom:468.900000px;}
.y29_c00072{bottom:486.450000px;}
.y18_c00072{bottom:501.900000px;}
.y28_c00072{bottom:516.000000px;}
.y17_c00072{bottom:535.950000px;}
.y27_c00072{bottom:547.050000px;}
.y16_c00072{bottom:602.400000px;}
.y15_c00072{bottom:666.900000px;}
.y14_c00072{bottom:702.750000px;}
.y13_c00072{bottom:737.850000px;}
.y12_c00072{bottom:772.200000px;}
.y11_c00072{bottom:803.250000px;}
.y10_c00072{bottom:835.650000px;}
.yf_c00072{bottom:869.850000px;}
.ye_c00072{bottom:902.850000px;}
.yd_c00072{bottom:935.550000px;}
.yc_c00072{bottom:969.600000px;}
.y26_c00072{bottom:982.800000px;}
.yb_c00072{bottom:1002.750000px;}
.y25_c00072{bottom:1011.600000px;}
.ya_c00072{bottom:1036.800000px;}
.y9_c00072{bottom:1069.500000px;}
.y8_c00072{bottom:1120.950000px;}
.y7_c00072{bottom:1134.300000px;}
.y6_c00072{bottom:1170.450000px;}
.y5_c00072{bottom:1202.850000px;}
.y4_c00072{bottom:1236.600000px;}
.y3_c00072{bottom:1270.050000px;}
.y2_c00072{bottom:1297.050000px;}
.y1_c00072{bottom:1309.800000px;}
.h8_c00072{height:13.200074px;}
.h9_c00072{height:43.804688px;}
.h4_c00072{height:45.580078px;}
.h7_c00072{height:91.291992px;}
.h5_c00072{height:98.756836px;}
.h2_c00072{height:100.608000px;}
.h3_c00072{height:101.825684px;}
.h6_c00072{height:110.151855px;}
.h1_c00072{height:121.546875px;}
.h0_c00072{height:1363.500000px;}
.w2_c00072{width:104.875500px;}
.w1_c00072{width:864.750000px;}
.w0_c00072{width:865.050000px;}
.x0_c00072{left:0.000000px;}
.x8_c00072{left:34.800000px;}
.x3_c00072{left:36.000000px;}
.x2_c00072{left:37.500000px;}
.xb_c00072{left:38.550000px;}
.xa_c00072{left:39.600000px;}
.xc_c00072{left:41.250000px;}
.x5_c00072{left:42.900000px;}
.x7_c00072{left:84.000000px;}
.x6_c00072{left:158.400000px;}
.x9_c00072{left:165.000000px;}
.x4_c00072{left:289.650000px;}
.x13_c00072{left:384.339249px;}
.x1_c00072{left:526.800000px;}
.xe_c00072{left:616.950000px;}
.x11_c00072{left:624.000000px;}
.x12_c00072{left:625.050000px;}
.x10_c00072{left:627.750000px;}
.xd_c00072{left:644.400000px;}
.xf_c00072{left:654.150000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls1_c00072{letter-spacing:0.000000pt;}
.ls3_c00072{letter-spacing:2.666667pt;}
.ls2_c00072{letter-spacing:5.333333pt;}
.ls5_c00072{letter-spacing:8.000000pt;}
.ls0_c00072{letter-spacing:18.133333pt;}
.ls4_c00072{letter-spacing:32.000000pt;}
.ws1_c00072{word-spacing:-48.000000pt;}
.ws4_c00072{word-spacing:-24.709333pt;}
.ws3_c00072{word-spacing:-18.637333pt;}
.ws0_c00072{word-spacing:-17.994667pt;}
.ws2_c00072{word-spacing:-16.709333pt;}
.ws5_c00072{word-spacing:0.000000pt;}
._46_c00072{margin-left:-52.525333pt;}
._36_c00072{margin-left:-41.898667pt;}
._22_c00072{margin-left:-24.746667pt;}
._24_c00072{margin-left:-22.869333pt;}
._3d_c00072{margin-left:-18.858667pt;}
._39_c00072{margin-left:-17.482667pt;}
._3f_c00072{margin-left:-14.762667pt;}
._26_c00072{margin-left:-13.482667pt;}
._28_c00072{margin-left:-11.832000pt;}
._42_c00072{margin-left:-10.922667pt;}
._3a_c00072{margin-left:-9.984000pt;}
._b_c00072{margin-left:-8.704000pt;}
._d_c00072{margin-left:-7.509333pt;}
._c_c00072{margin-left:-6.400000pt;}
._f_c00072{margin-left:-4.864000pt;}
._38_c00072{margin-left:-3.840000pt;}
._1b_c00072{margin-left:-2.816000pt;}
._6_c00072{margin-left:-1.706667pt;}
._a_c00072{width:1.024000pt;}
._8_c00072{width:1.962667pt;}
._3_c00072{width:3.584000pt;}
._14_c00072{width:4.608000pt;}
._0_c00072{width:5.546667pt;}
._2e_c00072{width:6.485333pt;}
._1_c00072{width:7.424000pt;}
._2_c00072{width:9.045333pt;}
._18_c00072{width:10.410667pt;}
._4_c00072{width:11.861333pt;}
._1a_c00072{width:13.056000pt;}
._5_c00072{width:14.165333pt;}
._12_c00072{width:15.104000pt;}
._34_c00072{width:16.640000pt;}
._e_c00072{width:17.664000pt;}
._1e_c00072{width:18.773333pt;}
._37_c00072{width:20.096000pt;}
._47_c00072{width:21.050667pt;}
._15_c00072{width:22.869333pt;}
._1f_c00072{width:23.808000pt;}
._13_c00072{width:25.088000pt;}
._30_c00072{width:26.026667pt;}
._17_c00072{width:27.392000pt;}
._2f_c00072{width:28.928000pt;}
._9_c00072{width:30.890667pt;}
._32_c00072{width:32.554667pt;}
._16_c00072{width:34.560000pt;}
._7_c00072{width:35.925333pt;}
._10_c00072{width:36.949333pt;}
._31_c00072{width:38.997333pt;}
._11_c00072{width:40.106667pt;}
._35_c00072{width:41.557333pt;}
._19_c00072{width:42.496000pt;}
._1c_c00072{width:44.288000pt;}
._1d_c00072{width:45.738667pt;}
._33_c00072{width:47.445333pt;}
._41_c00072{width:51.456000pt;}
._20_c00072{width:55.210667pt;}
._3b_c00072{width:61.184000pt;}
._23_c00072{width:62.890667pt;}
._27_c00072{width:82.090667pt;}
._2d_c00072{width:83.285333pt;}
._3c_c00072{width:88.746667pt;}
._3e_c00072{width:89.856000pt;}
._2b_c00072{width:95.317333pt;}
._29_c00072{width:118.706667pt;}
._43_c00072{width:142.336000pt;}
._21_c00072{width:160.853333pt;}
._40_c00072{width:165.461333pt;}
._25_c00072{width:253.013333pt;}
._2c_c00072{width:259.584000pt;}
._2a_c00072{width:485.034667pt;}
._44_c00072{width:743.765333pt;}
._45_c00072{width:800.512000pt;}
.fs2_c00072{font-size:32.000000pt;}
.fs8_c00072{font-size:42.666667pt;}
.fs3_c00072{font-size:53.333333pt;}
.fs7_c00072{font-size:69.333333pt;}
.fs4_c00072{font-size:74.666667pt;}
.fs1_c00072{font-size:77.333333pt;}
.fs0_c00072{font-size:85.333333pt;}
.fs5_c00072{font-size:90.666667pt;}
.fs6_c00072{font-size:98.666667pt;}
.y0_c00072{bottom:0.000000pt;}
.y2c_c00072{bottom:2.760000pt;}
.y2b_c00072{bottom:6.425212pt;}
.y24_c00072{bottom:84.000000pt;}
.y23_c00072{bottom:115.466667pt;}
.y22_c00072{bottom:146.133333pt;}
.y21_c00072{bottom:176.133333pt;}
.y20_c00072{bottom:206.400000pt;}
.y1f_c00072{bottom:235.600000pt;}
.y1e_c00072{bottom:266.666667pt;}
.y1d_c00072{bottom:296.133333pt;}
.y1c_c00072{bottom:326.133333pt;}
.y1b_c00072{bottom:356.800000pt;}
.y1a_c00072{bottom:385.866667pt;}
.y2a_c00072{bottom:405.600000pt;}
.y19_c00072{bottom:416.800000pt;}
.y29_c00072{bottom:432.400000pt;}
.y18_c00072{bottom:446.133333pt;}
.y28_c00072{bottom:458.666667pt;}
.y17_c00072{bottom:476.400000pt;}
.y27_c00072{bottom:486.266667pt;}
.y16_c00072{bottom:535.466667pt;}
.y15_c00072{bottom:592.800000pt;}
.y14_c00072{bottom:624.666667pt;}
.y13_c00072{bottom:655.866667pt;}
.y12_c00072{bottom:686.400000pt;}
.y11_c00072{bottom:714.000000pt;}
.y10_c00072{bottom:742.800000pt;}
.yf_c00072{bottom:773.200000pt;}
.ye_c00072{bottom:802.533333pt;}
.yd_c00072{bottom:831.600000pt;}
.yc_c00072{bottom:861.866667pt;}
.y26_c00072{bottom:873.600000pt;}
.yb_c00072{bottom:891.333333pt;}
.y25_c00072{bottom:899.200000pt;}
.ya_c00072{bottom:921.600000pt;}
.y9_c00072{bottom:950.666667pt;}
.y8_c00072{bottom:996.400000pt;}
.y7_c00072{bottom:1008.266667pt;}
.y6_c00072{bottom:1040.400000pt;}
.y5_c00072{bottom:1069.200000pt;}
.y4_c00072{bottom:1099.200000pt;}
.y3_c00072{bottom:1128.933333pt;}
.y2_c00072{bottom:1152.933333pt;}
.y1_c00072{bottom:1164.266667pt;}
.h8_c00072{height:11.733399pt;}
.h9_c00072{height:38.937500pt;}
.h4_c00072{height:40.515625pt;}
.h7_c00072{height:81.148438pt;}
.h5_c00072{height:87.783854pt;}
.h2_c00072{height:89.429333pt;}
.h3_c00072{height:90.511719pt;}
.h6_c00072{height:97.912760pt;}
.h1_c00072{height:108.041667pt;}
.h0_c00072{height:1212.000000pt;}
.w2_c00072{width:93.222667pt;}
.w1_c00072{width:768.666667pt;}
.w0_c00072{width:768.933333pt;}
.x0_c00072{left:0.000000pt;}
.x8_c00072{left:30.933333pt;}
.x3_c00072{left:32.000000pt;}
.x2_c00072{left:33.333333pt;}
.xb_c00072{left:34.266667pt;}
.xa_c00072{left:35.200000pt;}
.xc_c00072{left:36.666667pt;}
.x5_c00072{left:38.133333pt;}
.x7_c00072{left:74.666667pt;}
.x6_c00072{left:140.800000pt;}
.x9_c00072{left:146.666667pt;}
.x4_c00072{left:257.466667pt;}
.x13_c00072{left:341.634888pt;}
.x1_c00072{left:468.266667pt;}
.xe_c00072{left:548.400000pt;}
.x11_c00072{left:554.666667pt;}
.x12_c00072{left:555.600000pt;}
.x10_c00072{left:558.000000pt;}
.xd_c00072{left:572.800000pt;}
.xf_c00072{left:581.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10636d2c94d8c5a1a5255ef6.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_2f03ec266f0fd716ed08c6e9.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_e8ef6551d94283264e606ddd.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls5_c00073{letter-spacing:0.000000px;}
.ls8_c00073{letter-spacing:6.000000px;}
.ls2_c00073{letter-spacing:8.652000px;}
.ls1_c00073{letter-spacing:10.236000px;}
.ls4_c00073{letter-spacing:13.434000px;}
.ls6_c00073{letter-spacing:36.000000px;}
.ls7_c00073{letter-spacing:45.000000px;}
.ls0_c00073{letter-spacing:49.233000px;}
.ls3_c00073{letter-spacing:62.433000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00073{word-spacing:-29.976000px;}
.ws1_c00073{word-spacing:-20.244000px;}
.ws0_c00073{word-spacing:-18.798000px;}
.ws4_c00073{word-spacing:0.000000px;}
.ws3_c00073{word-spacing:11.508000px;}
._59_c00073{margin-left:-81.888000px;}
._4f_c00073{margin-left:-77.256000px;}
._50_c00073{margin-left:-73.080000px;}
._4e_c00073{margin-left:-60.171000px;}
._4d_c00073{margin-left:-37.044000px;}
._51_c00073{margin-left:-33.555000px;}
._41_c00073{margin-left:-30.048000px;}
._3b_c00073{margin-left:-19.680000px;}
._2c_c00073{margin-left:-15.396000px;}
._2b_c00073{margin-left:-13.440000px;}
._25_c00073{margin-left:-11.772000px;}
._39_c00073{margin-left:-10.002000px;}
._4c_c00073{margin-left:-8.844000px;}
._44_c00073{margin-left:-7.740000px;}
._c_c00073{margin-left:-6.090000px;}
._17_c00073{margin-left:-4.920000px;}
._14_c00073{margin-left:-3.648000px;}
._15_c00073{margin-left:-2.400000px;}
._30_c00073{margin-left:-1.104000px;}
._5_c00073{width:1.920000px;}
._7_c00073{width:3.000000px;}
._0_c00073{width:4.872000px;}
._2_c00073{width:6.420000px;}
._a_c00073{width:8.052000px;}
._f_c00073{width:9.216000px;}
._1f_c00073{width:10.272000px;}
._e_c00073{width:11.820000px;}
._27_c00073{width:13.416000px;}
._2a_c00073{width:15.024000px;}
._34_c00073{width:16.416000px;}
._33_c00073{width:17.856000px;}
._26_c00073{width:18.912000px;}
._1c_c00073{width:20.484000px;}
._3e_c00073{width:21.660000px;}
._d_c00073{width:22.800000px;}
._32_c00073{width:24.264000px;}
._1a_c00073{width:25.608000px;}
._3f_c00073{width:26.688000px;}
._10_c00073{width:27.960000px;}
._11_c00073{width:30.072000px;}
._31_c00073{width:31.212000px;}
._19_c00073{width:32.760000px;}
._29_c00073{width:34.692000px;}
._54_c00073{width:35.850000px;}
._6_c00073{width:36.864000px;}
._12_c00073{width:38.616000px;}
._28_c00073{width:39.672000px;}
._35_c00073{width:40.764000px;}
._1_c00073{width:42.000000px;}
._55_c00073{width:43.308000px;}
._24_c00073{width:44.640000px;}
._13_c00073{width:46.764000px;}
._4_c00073{width:47.820000px;}
._3_c00073{width:49.440000px;}
._1b_c00073{width:50.688000px;}
._23_c00073{width:52.164000px;}
._56_c00073{width:53.508000px;}
._52_c00073{width:56.154000px;}
._22_c00073{width:57.576000px;}
._9_c00073{width:60.132000px;}
._21_c00073{width:62.280000px;}
._1d_c00073{width:65.952000px;}
._8_c00073{width:66.984000px;}
._3a_c00073{width:70.548000px;}
._b_c00073{width:77.736000px;}
._18_c00073{width:79.488000px;}
._20_c00073{width:83.772000px;}
._16_c00073{width:88.224000px;}
._1e_c00073{width:95.160000px;}
._38_c00073{width:104.940000px;}
._49_c00073{width:111.012000px;}
._46_c00073{width:150.960000px;}
._4b_c00073{width:153.852000px;}
._3c_c00073{width:159.264000px;}
._2e_c00073{width:163.212000px;}
._42_c00073{width:167.976000px;}
._3d_c00073{width:174.408000px;}
._2f_c00073{width:189.048000px;}
._36_c00073{width:199.068000px;}
._43_c00073{width:207.264000px;}
._45_c00073{width:209.118000px;}
._5a_c00073{width:211.104000px;}
._53_c00073{width:233.712000px;}
._40_c00073{width:250.620000px;}
._2d_c00073{width:258.912000px;}
._4a_c00073{width:293.922000px;}
._47_c00073{width:435.168000px;}
._48_c00073{width:475.608000px;}
._58_c00073{width:827.424000px;}
._57_c00073{width:846.948000px;}
._37_c00073{width:1864.032000px;}
.fc2_c00073{color:transparent;}
.fc1_c00073{color:rgb(128,128,128);}
.fc0_c00073{color:rgb(0,0,0);}
.fs7_c00073{font-size:48.000000px;}
.fs6_c00073{font-size:72.000000px;}
.fs3_c00073{font-size:78.000000px;}
.fs0_c00073{font-size:84.000000px;}
.fs4_c00073{font-size:87.000000px;}
.fs1_c00073{font-size:96.000000px;}
.fs5_c00073{font-size:102.000000px;}
.fs2_c00073{font-size:105.000000px;}
.y0_c00073{bottom:0.000000px;}
.y25_c00073{bottom:3.105000px;}
.y24_c00073{bottom:7.228357px;}
.y23_c00073{bottom:104.730000px;}
.y22_c00073{bottom:139.080000px;}
.y21_c00073{bottom:174.180000px;}
.y20_c00073{bottom:208.230000px;}
.y1f_c00073{bottom:243.030000px;}
.y1e_c00073{bottom:276.480000px;}
.y1d_c00073{bottom:311.130000px;}
.y1c_c00073{bottom:345.630000px;}
.y1b_c00073{bottom:378.630000px;}
.y1a_c00073{bottom:411.780000px;}
.y19_c00073{bottom:447.480000px;}
.y18_c00073{bottom:466.830000px;}
.y17_c00073{bottom:484.080000px;}
.y16_c00073{bottom:520.080000px;}
.y15_c00073{bottom:550.530000px;}
.y14_c00073{bottom:616.680000px;}
.y13_c00073{bottom:683.880000px;}
.y12_c00073{bottom:718.530000px;}
.y11_c00073{bottom:751.680000px;}
.y10_c00073{bottom:785.430000px;}
.yf_c00073{bottom:819.180000px;}
.ye_c00073{bottom:852.930000px;}
.yd_c00073{bottom:887.280000px;}
.yc_c00073{bottom:920.130000px;}
.yb_c00073{bottom:952.530000px;}
.ya_c00073{bottom:986.280000px;}
.y9_c00073{bottom:1019.280000px;}
.y8_c00073{bottom:1053.630000px;}
.y7_c00073{bottom:1085.430000px;}
.y6_c00073{bottom:1119.480000px;}
.y5_c00073{bottom:1152.180000px;}
.y4_c00073{bottom:1185.330000px;}
.y3_c00073{bottom:1217.730000px;}
.y2_c00073{bottom:1251.780000px;}
.y1_c00073{bottom:1284.180000px;}
.h5_c00073{height:13.200074px;}
.h6_c00073{height:43.804688px;}
.h2_c00073{height:121.546875px;}
.h4_c00073{height:129.143555px;}
.h3_c00073{height:132.941895px;}
.h0_c00073{height:1382.700000px;}
.h1_c00073{height:1383.000000px;}
.w2_c00073{width:104.875500px;}
.w0_c00073{width:863.175000px;}
.w1_c00073{width:863.250000px;}
.x0_c00073{left:0.000000px;}
.x9_c00073{left:66.750000px;}
.xc_c00073{left:67.800000px;}
.xb_c00073{left:68.850000px;}
.x4_c00073{left:74.850000px;}
.x8_c00073{left:103.500000px;}
.xa_c00073{left:123.450000px;}
.x10_c00073{left:277.350000px;}
.xf_c00073{left:281.700000px;}
.xd_c00073{left:282.750000px;}
.xe_c00073{left:284.400000px;}
.x5_c00073{left:285.450000px;}
.x2_c00073{left:286.500000px;}
.x1_c00073{left:287.550000px;}
.x6_c00073{left:288.600000px;}
.x3_c00073{left:290.850000px;}
.x11_c00073{left:383.401749px;}
.x7_c00073{left:420.450000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls5_c00073{letter-spacing:0.000000pt;}
.ls8_c00073{letter-spacing:5.333333pt;}
.ls2_c00073{letter-spacing:7.690667pt;}
.ls1_c00073{letter-spacing:9.098667pt;}
.ls4_c00073{letter-spacing:11.941333pt;}
.ls6_c00073{letter-spacing:32.000000pt;}
.ls7_c00073{letter-spacing:40.000000pt;}
.ls0_c00073{letter-spacing:43.762667pt;}
.ls3_c00073{letter-spacing:55.496000pt;}
.ws2_c00073{word-spacing:-26.645333pt;}
.ws1_c00073{word-spacing:-17.994667pt;}
.ws0_c00073{word-spacing:-16.709333pt;}
.ws4_c00073{word-spacing:0.000000pt;}
.ws3_c00073{word-spacing:10.229333pt;}
._59_c00073{margin-left:-72.789333pt;}
._4f_c00073{margin-left:-68.672000pt;}
._50_c00073{margin-left:-64.960000pt;}
._4e_c00073{margin-left:-53.485333pt;}
._4d_c00073{margin-left:-32.928000pt;}
._51_c00073{margin-left:-29.826667pt;}
._41_c00073{margin-left:-26.709333pt;}
._3b_c00073{margin-left:-17.493333pt;}
._2c_c00073{margin-left:-13.685333pt;}
._2b_c00073{margin-left:-11.946667pt;}
._25_c00073{margin-left:-10.464000pt;}
._39_c00073{margin-left:-8.890667pt;}
._4c_c00073{margin-left:-7.861333pt;}
._44_c00073{margin-left:-6.880000pt;}
._c_c00073{margin-left:-5.413333pt;}
._17_c00073{margin-left:-4.373333pt;}
._14_c00073{margin-left:-3.242667pt;}
._15_c00073{margin-left:-2.133333pt;}
._30_c00073{margin-left:-0.981333pt;}
._5_c00073{width:1.706667pt;}
._7_c00073{width:2.666667pt;}
._0_c00073{width:4.330667pt;}
._2_c00073{width:5.706667pt;}
._a_c00073{width:7.157333pt;}
._f_c00073{width:8.192000pt;}
._1f_c00073{width:9.130667pt;}
._e_c00073{width:10.506667pt;}
._27_c00073{width:11.925333pt;}
._2a_c00073{width:13.354667pt;}
._34_c00073{width:14.592000pt;}
._33_c00073{width:15.872000pt;}
._26_c00073{width:16.810667pt;}
._1c_c00073{width:18.208000pt;}
._3e_c00073{width:19.253333pt;}
._d_c00073{width:20.266667pt;}
._32_c00073{width:21.568000pt;}
._1a_c00073{width:22.762667pt;}
._3f_c00073{width:23.722667pt;}
._10_c00073{width:24.853333pt;}
._11_c00073{width:26.730667pt;}
._31_c00073{width:27.744000pt;}
._19_c00073{width:29.120000pt;}
._29_c00073{width:30.837333pt;}
._54_c00073{width:31.866667pt;}
._6_c00073{width:32.768000pt;}
._12_c00073{width:34.325333pt;}
._28_c00073{width:35.264000pt;}
._35_c00073{width:36.234667pt;}
._1_c00073{width:37.333333pt;}
._55_c00073{width:38.496000pt;}
._24_c00073{width:39.680000pt;}
._13_c00073{width:41.568000pt;}
._4_c00073{width:42.506667pt;}
._3_c00073{width:43.946667pt;}
._1b_c00073{width:45.056000pt;}
._23_c00073{width:46.368000pt;}
._56_c00073{width:47.562667pt;}
._52_c00073{width:49.914667pt;}
._22_c00073{width:51.178667pt;}
._9_c00073{width:53.450667pt;}
._21_c00073{width:55.360000pt;}
._1d_c00073{width:58.624000pt;}
._8_c00073{width:59.541333pt;}
._3a_c00073{width:62.709333pt;}
._b_c00073{width:69.098667pt;}
._18_c00073{width:70.656000pt;}
._20_c00073{width:74.464000pt;}
._16_c00073{width:78.421333pt;}
._1e_c00073{width:84.586667pt;}
._38_c00073{width:93.280000pt;}
._49_c00073{width:98.677333pt;}
._46_c00073{width:134.186667pt;}
._4b_c00073{width:136.757333pt;}
._3c_c00073{width:141.568000pt;}
._2e_c00073{width:145.077333pt;}
._42_c00073{width:149.312000pt;}
._3d_c00073{width:155.029333pt;}
._2f_c00073{width:168.042667pt;}
._36_c00073{width:176.949333pt;}
._43_c00073{width:184.234667pt;}
._45_c00073{width:185.882667pt;}
._5a_c00073{width:187.648000pt;}
._53_c00073{width:207.744000pt;}
._40_c00073{width:222.773333pt;}
._2d_c00073{width:230.144000pt;}
._4a_c00073{width:261.264000pt;}
._47_c00073{width:386.816000pt;}
._48_c00073{width:422.762667pt;}
._58_c00073{width:735.488000pt;}
._57_c00073{width:752.842667pt;}
._37_c00073{width:1656.917333pt;}
.fs7_c00073{font-size:42.666667pt;}
.fs6_c00073{font-size:64.000000pt;}
.fs3_c00073{font-size:69.333333pt;}
.fs0_c00073{font-size:74.666667pt;}
.fs4_c00073{font-size:77.333333pt;}
.fs1_c00073{font-size:85.333333pt;}
.fs5_c00073{font-size:90.666667pt;}
.fs2_c00073{font-size:93.333333pt;}
.y0_c00073{bottom:0.000000pt;}
.y25_c00073{bottom:2.760000pt;}
.y24_c00073{bottom:6.425206pt;}
.y23_c00073{bottom:93.093333pt;}
.y22_c00073{bottom:123.626667pt;}
.y21_c00073{bottom:154.826667pt;}
.y20_c00073{bottom:185.093333pt;}
.y1f_c00073{bottom:216.026667pt;}
.y1e_c00073{bottom:245.760000pt;}
.y1d_c00073{bottom:276.560000pt;}
.y1c_c00073{bottom:307.226667pt;}
.y1b_c00073{bottom:336.560000pt;}
.y1a_c00073{bottom:366.026667pt;}
.y19_c00073{bottom:397.760000pt;}
.y18_c00073{bottom:414.960000pt;}
.y17_c00073{bottom:430.293333pt;}
.y16_c00073{bottom:462.293333pt;}
.y15_c00073{bottom:489.360000pt;}
.y14_c00073{bottom:548.160000pt;}
.y13_c00073{bottom:607.893333pt;}
.y12_c00073{bottom:638.693333pt;}
.y11_c00073{bottom:668.160000pt;}
.y10_c00073{bottom:698.160000pt;}
.yf_c00073{bottom:728.160000pt;}
.ye_c00073{bottom:758.160000pt;}
.yd_c00073{bottom:788.693333pt;}
.yc_c00073{bottom:817.893333pt;}
.yb_c00073{bottom:846.693333pt;}
.ya_c00073{bottom:876.693333pt;}
.y9_c00073{bottom:906.026667pt;}
.y8_c00073{bottom:936.560000pt;}
.y7_c00073{bottom:964.826667pt;}
.y6_c00073{bottom:995.093333pt;}
.y5_c00073{bottom:1024.160000pt;}
.y4_c00073{bottom:1053.626667pt;}
.y3_c00073{bottom:1082.426667pt;}
.y2_c00073{bottom:1112.693333pt;}
.y1_c00073{bottom:1141.493333pt;}
.h5_c00073{height:11.733399pt;}
.h6_c00073{height:38.937500pt;}
.h2_c00073{height:108.041667pt;}
.h4_c00073{height:114.794271pt;}
.h3_c00073{height:118.170573pt;}
.h0_c00073{height:1229.066667pt;}
.h1_c00073{height:1229.333333pt;}
.w2_c00073{width:93.222667pt;}
.w0_c00073{width:767.266667pt;}
.w1_c00073{width:767.333333pt;}
.x0_c00073{left:0.000000pt;}
.x9_c00073{left:59.333333pt;}
.xc_c00073{left:60.266667pt;}
.xb_c00073{left:61.200000pt;}
.x4_c00073{left:66.533333pt;}
.x8_c00073{left:92.000000pt;}
.xa_c00073{left:109.733333pt;}
.x10_c00073{left:246.533333pt;}
.xf_c00073{left:250.400000pt;}
.xd_c00073{left:251.333333pt;}
.xe_c00073{left:252.800000pt;}
.x5_c00073{left:253.733333pt;}
.x2_c00073{left:254.666667pt;}
.x1_c00073{left:255.600000pt;}
.x6_c00073{left:256.533333pt;}
.x3_c00073{left:258.533333pt;}
.x11_c00073{left:340.801554pt;}
.x7_c00073{left:373.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2314f677ac3ffe058882f43.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_8f8f0a1414ce2a8f448e2e49.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_f47097f7c240ba3b9434a7b5.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;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_c00074;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00074;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00074{font-family:ff6_c00074;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls6_c00074{letter-spacing:0.000000px;}
.ls4_c00074{letter-spacing:3.000000px;}
.ls2_c00074{letter-spacing:7.152000px;}
.ls0_c00074{letter-spacing:9.384000px;}
.ls5_c00074{letter-spacing:12.000000px;}
.ls1_c00074{letter-spacing:16.833000px;}
.ls3_c00074{letter-spacing:20.943000px;}
.ls7_c00074{letter-spacing:45.000000px;}
.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;}
}
.ws1_c00074{word-spacing:-23.136000px;}
.ws0_c00074{word-spacing:-17.930400px;}
.ws2_c00074{word-spacing:0.000000px;}
._15_c00074{margin-left:-44.760000px;}
._2c_c00074{margin-left:-26.080800px;}
._35_c00074{margin-left:-25.032000px;}
._36_c00074{margin-left:-14.592000px;}
._26_c00074{margin-left:-6.048000px;}
._1e_c00074{margin-left:-4.128000px;}
._0_c00074{margin-left:-2.208000px;}
._1c_c00074{margin-left:-1.128000px;}
._2_c00074{width:1.440000px;}
._4_c00074{width:2.592000px;}
._5_c00074{width:4.032000px;}
._9_c00074{width:5.088000px;}
._c_c00074{width:6.816000px;}
._f_c00074{width:8.256000px;}
._e_c00074{width:9.984000px;}
._22_c00074{width:11.232000px;}
._10_c00074{width:12.768000px;}
._28_c00074{width:13.824000px;}
._1d_c00074{width:15.552000px;}
._17_c00074{width:16.704000px;}
._27_c00074{width:17.760000px;}
._1a_c00074{width:19.392000px;}
._30_c00074{width:20.616000px;}
._19_c00074{width:21.696000px;}
._33_c00074{width:24.384000px;}
._12_c00074{width:25.632000px;}
._1f_c00074{width:27.552000px;}
._a_c00074{width:28.800000px;}
._11_c00074{width:29.952000px;}
._3_c00074{width:31.680000px;}
._24_c00074{width:32.904000px;}
._d_c00074{width:34.080000px;}
._21_c00074{width:35.232000px;}
._7_c00074{width:36.576000px;}
._6_c00074{width:38.496000px;}
._b_c00074{width:39.552000px;}
._18_c00074{width:41.088000px;}
._2a_c00074{width:42.816000px;}
._20_c00074{width:43.872000px;}
._23_c00074{width:45.504000px;}
._25_c00074{width:47.616000px;}
._2f_c00074{width:49.440000px;}
._1_c00074{width:51.264000px;}
._2e_c00074{width:53.952000px;}
._34_c00074{width:55.296000px;}
._2b_c00074{width:60.384000px;}
._13_c00074{width:66.720000px;}
._8_c00074{width:76.128000px;}
._29_c00074{width:82.560000px;}
._2d_c00074{width:84.000000px;}
._31_c00074{width:93.312000px;}
._16_c00074{width:149.154000px;}
._1b_c00074{width:332.136000px;}
._14_c00074{width:369.696000px;}
._32_c00074{width:549.376800px;}
.fc2_c00074{color:transparent;}
.fc1_c00074{color:rgb(128,128,128);}
.fc0_c00074{color:rgb(0,0,0);}
.fs7_c00074{font-size:48.000000px;}
.fs5_c00074{font-size:74.400000px;}
.fs1_c00074{font-size:78.000000px;}
.fs3_c00074{font-size:84.000000px;}
.fs2_c00074{font-size:87.000000px;}
.fs4_c00074{font-size:93.000000px;}
.fs0_c00074{font-size:96.000000px;}
.fs6_c00074{font-size:102.000000px;}
.y0_c00074{bottom:0.000000px;}
.y24_c00074{bottom:3.105000px;}
.y23_c00074{bottom:7.228369px;}
.y22_c00074{bottom:105.270000px;}
.y21_c00074{bottom:137.970000px;}
.y20_c00074{bottom:173.520000px;}
.y1f_c00074{bottom:206.820000px;}
.y1e_c00074{bottom:240.870000px;}
.y1d_c00074{bottom:274.320000px;}
.y1c_c00074{bottom:308.520000px;}
.y1b_c00074{bottom:341.820000px;}
.y1a_c00074{bottom:374.970000px;}
.y19_c00074{bottom:409.620000px;}
.y18_c00074{bottom:443.520000px;}
.y17_c00074{bottom:476.520000px;}
.y16_c00074{bottom:510.570000px;}
.y15_c00074{bottom:543.720000px;}
.y14_c00074{bottom:577.470000px;}
.y13_c00074{bottom:610.770000px;}
.y12_c00074{bottom:643.920000px;}
.y11_c00074{bottom:677.370000px;}
.y10_c00074{bottom:711.120000px;}
.yf_c00074{bottom:744.570000px;}
.ye_c00074{bottom:777.270000px;}
.yd_c00074{bottom:811.020000px;}
.yc_c00074{bottom:844.320000px;}
.yb_c00074{bottom:877.470000px;}
.ya_c00074{bottom:910.470000px;}
.y9_c00074{bottom:943.620000px;}
.y8_c00074{bottom:976.020000px;}
.y7_c00074{bottom:1010.820000px;}
.y6_c00074{bottom:1044.870000px;}
.y5_c00074{bottom:1076.220000px;}
.y4_c00074{bottom:1143.420000px;}
.y3_c00074{bottom:1210.920000px;}
.y2_c00074{bottom:1243.620000px;}
.y1_c00074{bottom:1276.770000px;}
.h3_c00074{height:13.200073px;}
.h4_c00074{height:43.804688px;}
.h2_c00074{height:121.546875px;}
.h0_c00074{height:1383.450000px;}
.h1_c00074{height:1383.750000px;}
.w2_c00074{width:104.875500px;}
.w0_c00074{width:878.025000px;}
.w1_c00074{width:878.250000px;}
.x0_c00074{left:0.000000px;}
.xe_c00074{left:44.550000px;}
.xd_c00074{left:45.600000px;}
.xc_c00074{left:47.250000px;}
.xb_c00074{left:48.300000px;}
.xa_c00074{left:49.350000px;}
.x9_c00074{left:51.000000px;}
.x8_c00074{left:52.650000px;}
.x7_c00074{left:53.700000px;}
.x6_c00074{left:55.350000px;}
.x3_c00074{left:59.100000px;}
.x2_c00074{left:60.750000px;}
.x1_c00074{left:61.800000px;}
.x5_c00074{left:106.050000px;}
.x4_c00074{left:215.250000px;}
.x10_c00074{left:390.826721px;}
.xf_c00074{left:569.400000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls6_c00074{letter-spacing:0.000000pt;}
.ls4_c00074{letter-spacing:2.666667pt;}
.ls2_c00074{letter-spacing:6.357333pt;}
.ls0_c00074{letter-spacing:8.341333pt;}
.ls5_c00074{letter-spacing:10.666667pt;}
.ls1_c00074{letter-spacing:14.962667pt;}
.ls3_c00074{letter-spacing:18.616000pt;}
.ls7_c00074{letter-spacing:40.000000pt;}
.ws1_c00074{word-spacing:-20.565333pt;}
.ws0_c00074{word-spacing:-15.938133pt;}
.ws2_c00074{word-spacing:0.000000pt;}
._15_c00074{margin-left:-39.786667pt;}
._2c_c00074{margin-left:-23.182933pt;}
._35_c00074{margin-left:-22.250667pt;}
._36_c00074{margin-left:-12.970667pt;}
._26_c00074{margin-left:-5.376000pt;}
._1e_c00074{margin-left:-3.669333pt;}
._0_c00074{margin-left:-1.962667pt;}
._1c_c00074{margin-left:-1.002667pt;}
._2_c00074{width:1.280000pt;}
._4_c00074{width:2.304000pt;}
._5_c00074{width:3.584000pt;}
._9_c00074{width:4.522667pt;}
._c_c00074{width:6.058667pt;}
._f_c00074{width:7.338667pt;}
._e_c00074{width:8.874667pt;}
._22_c00074{width:9.984000pt;}
._10_c00074{width:11.349333pt;}
._28_c00074{width:12.288000pt;}
._1d_c00074{width:13.824000pt;}
._17_c00074{width:14.848000pt;}
._27_c00074{width:15.786667pt;}
._1a_c00074{width:17.237333pt;}
._30_c00074{width:18.325333pt;}
._19_c00074{width:19.285333pt;}
._33_c00074{width:21.674667pt;}
._12_c00074{width:22.784000pt;}
._1f_c00074{width:24.490667pt;}
._a_c00074{width:25.600000pt;}
._11_c00074{width:26.624000pt;}
._3_c00074{width:28.160000pt;}
._24_c00074{width:29.248000pt;}
._d_c00074{width:30.293333pt;}
._21_c00074{width:31.317333pt;}
._7_c00074{width:32.512000pt;}
._6_c00074{width:34.218667pt;}
._b_c00074{width:35.157333pt;}
._18_c00074{width:36.522667pt;}
._2a_c00074{width:38.058667pt;}
._20_c00074{width:38.997333pt;}
._23_c00074{width:40.448000pt;}
._25_c00074{width:42.325333pt;}
._2f_c00074{width:43.946667pt;}
._1_c00074{width:45.568000pt;}
._2e_c00074{width:47.957333pt;}
._34_c00074{width:49.152000pt;}
._2b_c00074{width:53.674667pt;}
._13_c00074{width:59.306667pt;}
._8_c00074{width:67.669333pt;}
._29_c00074{width:73.386667pt;}
._2d_c00074{width:74.666667pt;}
._31_c00074{width:82.944000pt;}
._16_c00074{width:132.581333pt;}
._1b_c00074{width:295.232000pt;}
._14_c00074{width:328.618667pt;}
._32_c00074{width:488.334933pt;}
.fs7_c00074{font-size:42.666667pt;}
.fs5_c00074{font-size:66.133333pt;}
.fs1_c00074{font-size:69.333333pt;}
.fs3_c00074{font-size:74.666667pt;}
.fs2_c00074{font-size:77.333333pt;}
.fs4_c00074{font-size:82.666667pt;}
.fs0_c00074{font-size:85.333333pt;}
.fs6_c00074{font-size:90.666667pt;}
.y0_c00074{bottom:0.000000pt;}
.y24_c00074{bottom:2.760000pt;}
.y23_c00074{bottom:6.425217pt;}
.y22_c00074{bottom:93.573333pt;}
.y21_c00074{bottom:122.640000pt;}
.y20_c00074{bottom:154.240000pt;}
.y1f_c00074{bottom:183.840000pt;}
.y1e_c00074{bottom:214.106667pt;}
.y1d_c00074{bottom:243.840000pt;}
.y1c_c00074{bottom:274.240000pt;}
.y1b_c00074{bottom:303.840000pt;}
.y1a_c00074{bottom:333.306667pt;}
.y19_c00074{bottom:364.106667pt;}
.y18_c00074{bottom:394.240000pt;}
.y17_c00074{bottom:423.573333pt;}
.y16_c00074{bottom:453.840000pt;}
.y15_c00074{bottom:483.306667pt;}
.y14_c00074{bottom:513.306667pt;}
.y13_c00074{bottom:542.906667pt;}
.y12_c00074{bottom:572.373333pt;}
.y11_c00074{bottom:602.106667pt;}
.y10_c00074{bottom:632.106667pt;}
.yf_c00074{bottom:661.840000pt;}
.ye_c00074{bottom:690.906667pt;}
.yd_c00074{bottom:720.906667pt;}
.yc_c00074{bottom:750.506667pt;}
.yb_c00074{bottom:779.973333pt;}
.ya_c00074{bottom:809.306667pt;}
.y9_c00074{bottom:838.773333pt;}
.y8_c00074{bottom:867.573333pt;}
.y7_c00074{bottom:898.506667pt;}
.y6_c00074{bottom:928.773333pt;}
.y5_c00074{bottom:956.640000pt;}
.y4_c00074{bottom:1016.373333pt;}
.y3_c00074{bottom:1076.373333pt;}
.y2_c00074{bottom:1105.440000pt;}
.y1_c00074{bottom:1134.906667pt;}
.h3_c00074{height:11.733399pt;}
.h4_c00074{height:38.937500pt;}
.h2_c00074{height:108.041667pt;}
.h0_c00074{height:1229.733333pt;}
.h1_c00074{height:1230.000000pt;}
.w2_c00074{width:93.222667pt;}
.w0_c00074{width:780.466667pt;}
.w1_c00074{width:780.666667pt;}
.x0_c00074{left:0.000000pt;}
.xe_c00074{left:39.600000pt;}
.xd_c00074{left:40.533333pt;}
.xc_c00074{left:42.000000pt;}
.xb_c00074{left:42.933333pt;}
.xa_c00074{left:43.866667pt;}
.x9_c00074{left:45.333333pt;}
.x8_c00074{left:46.800000pt;}
.x7_c00074{left:47.733333pt;}
.x6_c00074{left:49.200000pt;}
.x3_c00074{left:52.533333pt;}
.x2_c00074{left:54.000000pt;}
.x1_c00074{left:54.933333pt;}
.x5_c00074{left:94.266667pt;}
.x4_c00074{left:191.333333pt;}
.x10_c00074{left:347.401530pt;}
.xf_c00074{left:506.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52fa11893eceed46066588d7.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_fc25aa62f3168b590d378172.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_559999cfbed743c211cf659c.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_870d505f31072d739da4f910.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00075;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00075{vertical-align:-133.800000px;}
.v0_c00075{vertical-align:0.000000px;}
.ls1_c00075{letter-spacing:0.000000px;}
.ls0_c00075{letter-spacing:3.000000px;}
.ls2_c00075{letter-spacing:12.000000px;}
.ls3_c00075{letter-spacing:51.000000px;}
.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:-74.136000px;}
.ws0_c00075{word-spacing:-63.000000px;}
.ws4_c00075{word-spacing:-23.136000px;}
.ws1_c00075{word-spacing:-20.244000px;}
.ws3_c00075{word-spacing:-19.764000px;}
.ws5_c00075{word-spacing:0.000000px;}
._1b_c00075{margin-left:-38.400000px;}
._17_c00075{margin-left:-36.000000px;}
._19_c00075{margin-left:-32.160000px;}
._33_c00075{margin-left:-30.144000px;}
._3f_c00075{margin-left:-24.456000px;}
._3c_c00075{margin-left:-23.040000px;}
._36_c00075{margin-left:-21.168000px;}
._37_c00075{margin-left:-18.564000px;}
._30_c00075{margin-left:-17.280000px;}
._35_c00075{margin-left:-15.876000px;}
._1f_c00075{margin-left:-14.028000px;}
._25_c00075{margin-left:-11.328000px;}
._43_c00075{margin-left:-10.104000px;}
._7_c00075{margin-left:-8.640000px;}
._1d_c00075{margin-left:-7.200000px;}
._22_c00075{margin-left:-6.048000px;}
._21_c00075{margin-left:-4.896000px;}
._2c_c00075{margin-left:-3.840000px;}
._1c_c00075{margin-left:-2.688000px;}
._5_c00075{margin-left:-1.248000px;}
._3_c00075{width:1.728000px;}
._0_c00075{width:3.072000px;}
._6_c00075{width:4.224000px;}
._1_c00075{width:5.376000px;}
._10_c00075{width:6.432000px;}
._2_c00075{width:7.488000px;}
._4_c00075{width:9.312000px;}
._23_c00075{width:11.040000px;}
._9_c00075{width:12.960000px;}
._2d_c00075{width:14.112000px;}
._14_c00075{width:15.360000px;}
._1a_c00075{width:17.016000px;}
._42_c00075{width:18.624000px;}
._11_c00075{width:19.680000px;}
._8_c00075{width:20.928000px;}
._e_c00075{width:24.960000px;}
._c_c00075{width:26.880000px;}
._24_c00075{width:28.200000px;}
._d_c00075{width:29.568000px;}
._28_c00075{width:31.296000px;}
._12_c00075{width:32.832000px;}
._27_c00075{width:34.368000px;}
._41_c00075{width:36.000000px;}
._15_c00075{width:37.056000px;}
._13_c00075{width:38.304000px;}
._a_c00075{width:39.648000px;}
._b_c00075{width:41.088000px;}
._f_c00075{width:42.528000px;}
._45_c00075{width:43.908000px;}
._18_c00075{width:44.928000px;}
._2a_c00075{width:48.000000px;}
._26_c00075{width:49.752000px;}
._16_c00075{width:52.104000px;}
._2b_c00075{width:53.952000px;}
._31_c00075{width:55.392000px;}
._29_c00075{width:58.368000px;}
._34_c00075{width:73.776000px;}
._44_c00075{width:79.392000px;}
._3d_c00075{width:101.088000px;}
._40_c00075{width:108.000000px;}
._2e_c00075{width:112.512000px;}
._20_c00075{width:117.780000px;}
._46_c00075{width:149.232000px;}
._3a_c00075{width:174.816000px;}
._39_c00075{width:176.928000px;}
._3e_c00075{width:204.816000px;}
._38_c00075{width:226.704000px;}
._32_c00075{width:399.360000px;}
._2f_c00075{width:492.936000px;}
._1e_c00075{width:575.016000px;}
._3b_c00075{width:590.880000px;}
.fc2_c00075{color:transparent;}
.fc1_c00075{color:rgb(128,128,128);}
.fc0_c00075{color:rgb(0,0,0);}
.fs4_c00075{font-size:48.000000px;}
.fs3_c00075{font-size:66.000000px;}
.fs2_c00075{font-size:84.000000px;}
.fs0_c00075{font-size:96.000000px;}
.fs1_c00075{font-size:102.000000px;}
.y0_c00075{bottom:0.000000px;}
.y24_c00075{bottom:3.105000px;}
.y23_c00075{bottom:7.228371px;}
.y22_c00075{bottom:113.865000px;}
.y21_c00075{bottom:150.315000px;}
.y20_c00075{bottom:183.915000px;}
.y1f_c00075{bottom:217.815000px;}
.y1e_c00075{bottom:252.465000px;}
.y1d_c00075{bottom:284.565000px;}
.y1c_c00075{bottom:320.265000px;}
.y1b_c00075{bottom:354.465000px;}
.y1a_c00075{bottom:387.915000px;}
.y19_c00075{bottom:421.965000px;}
.y18_c00075{bottom:455.715000px;}
.y17_c00075{bottom:490.065000px;}
.y16_c00075{bottom:524.115000px;}
.y15_c00075{bottom:557.265000px;}
.y14_c00075{bottom:591.615000px;}
.y13_c00075{bottom:606.465000px;}
.y12_c00075{bottom:628.065000px;}
.y11_c00075{bottom:693.015000px;}
.y10_c00075{bottom:760.365000px;}
.yf_c00075{bottom:794.265000px;}
.ye_c00075{bottom:828.015000px;}
.yd_c00075{bottom:861.315000px;}
.yc_c00075{bottom:895.065000px;}
.yb_c00075{bottom:927.165000px;}
.ya_c00075{bottom:960.615000px;}
.y9_c00075{bottom:993.615000px;}
.y8_c00075{bottom:1027.065000px;}
.y7_c00075{bottom:1059.765000px;}
.y6_c00075{bottom:1092.615000px;}
.y5_c00075{bottom:1126.365000px;}
.y4_c00075{bottom:1159.665000px;}
.y3_c00075{bottom:1192.515000px;}
.y2_c00075{bottom:1225.215000px;}
.y1_c00075{bottom:1257.615000px;}
.h3_c00075{height:13.200074px;}
.h4_c00075{height:43.804688px;}
.h2_c00075{height:121.546875px;}
.h0_c00075{height:1354.875000px;}
.h1_c00075{height:1355.250000px;}
.w2_c00075{width:104.875500px;}
.w0_c00075{width:845.625000px;}
.w1_c00075{width:846.000000px;}
.x0_c00075{left:0.000000px;}
.x9_c00075{left:53.250000px;}
.x4_c00075{left:66.150000px;}
.x8_c00075{left:82.950000px;}
.x5_c00075{left:235.800000px;}
.xb_c00075{left:238.950000px;}
.xf_c00075{left:268.650000px;}
.xe_c00075{left:269.700000px;}
.xd_c00075{left:271.350000px;}
.xc_c00075{left:273.000000px;}
.xa_c00075{left:274.050000px;}
.x6_c00075{left:275.700000px;}
.x3_c00075{left:276.750000px;}
.x2_c00075{left:277.800000px;}
.x1_c00075{left:278.850000px;}
.x10_c00075{left:374.626740px;}
.x7_c00075{left:422.550000px;}
@media print{
.v1_c00075{vertical-align:-118.933333pt;}
.v0_c00075{vertical-align:0.000000pt;}
.ls1_c00075{letter-spacing:0.000000pt;}
.ls0_c00075{letter-spacing:2.666667pt;}
.ls2_c00075{letter-spacing:10.666667pt;}
.ls3_c00075{letter-spacing:45.333333pt;}
.ws2_c00075{word-spacing:-65.898667pt;}
.ws0_c00075{word-spacing:-56.000000pt;}
.ws4_c00075{word-spacing:-20.565333pt;}
.ws1_c00075{word-spacing:-17.994667pt;}
.ws3_c00075{word-spacing:-17.568000pt;}
.ws5_c00075{word-spacing:0.000000pt;}
._1b_c00075{margin-left:-34.133333pt;}
._17_c00075{margin-left:-32.000000pt;}
._19_c00075{margin-left:-28.586667pt;}
._33_c00075{margin-left:-26.794667pt;}
._3f_c00075{margin-left:-21.738667pt;}
._3c_c00075{margin-left:-20.480000pt;}
._36_c00075{margin-left:-18.816000pt;}
._37_c00075{margin-left:-16.501333pt;}
._30_c00075{margin-left:-15.360000pt;}
._35_c00075{margin-left:-14.112000pt;}
._1f_c00075{margin-left:-12.469333pt;}
._25_c00075{margin-left:-10.069333pt;}
._43_c00075{margin-left:-8.981333pt;}
._7_c00075{margin-left:-7.680000pt;}
._1d_c00075{margin-left:-6.400000pt;}
._22_c00075{margin-left:-5.376000pt;}
._21_c00075{margin-left:-4.352000pt;}
._2c_c00075{margin-left:-3.413333pt;}
._1c_c00075{margin-left:-2.389333pt;}
._5_c00075{margin-left:-1.109333pt;}
._3_c00075{width:1.536000pt;}
._0_c00075{width:2.730667pt;}
._6_c00075{width:3.754667pt;}
._1_c00075{width:4.778667pt;}
._10_c00075{width:5.717333pt;}
._2_c00075{width:6.656000pt;}
._4_c00075{width:8.277333pt;}
._23_c00075{width:9.813333pt;}
._9_c00075{width:11.520000pt;}
._2d_c00075{width:12.544000pt;}
._14_c00075{width:13.653333pt;}
._1a_c00075{width:15.125333pt;}
._42_c00075{width:16.554667pt;}
._11_c00075{width:17.493333pt;}
._8_c00075{width:18.602667pt;}
._e_c00075{width:22.186667pt;}
._c_c00075{width:23.893333pt;}
._24_c00075{width:25.066667pt;}
._d_c00075{width:26.282667pt;}
._28_c00075{width:27.818667pt;}
._12_c00075{width:29.184000pt;}
._27_c00075{width:30.549333pt;}
._41_c00075{width:32.000000pt;}
._15_c00075{width:32.938667pt;}
._13_c00075{width:34.048000pt;}
._a_c00075{width:35.242667pt;}
._b_c00075{width:36.522667pt;}
._f_c00075{width:37.802667pt;}
._45_c00075{width:39.029333pt;}
._18_c00075{width:39.936000pt;}
._2a_c00075{width:42.666667pt;}
._26_c00075{width:44.224000pt;}
._16_c00075{width:46.314667pt;}
._2b_c00075{width:47.957333pt;}
._31_c00075{width:49.237333pt;}
._29_c00075{width:51.882667pt;}
._34_c00075{width:65.578667pt;}
._44_c00075{width:70.570667pt;}
._3d_c00075{width:89.856000pt;}
._40_c00075{width:96.000000pt;}
._2e_c00075{width:100.010667pt;}
._20_c00075{width:104.693333pt;}
._46_c00075{width:132.650667pt;}
._3a_c00075{width:155.392000pt;}
._39_c00075{width:157.269333pt;}
._3e_c00075{width:182.058667pt;}
._38_c00075{width:201.514667pt;}
._32_c00075{width:354.986667pt;}
._2f_c00075{width:438.165333pt;}
._1e_c00075{width:511.125333pt;}
._3b_c00075{width:525.226667pt;}
.fs4_c00075{font-size:42.666667pt;}
.fs3_c00075{font-size:58.666667pt;}
.fs2_c00075{font-size:74.666667pt;}
.fs0_c00075{font-size:85.333333pt;}
.fs1_c00075{font-size:90.666667pt;}
.y0_c00075{bottom:0.000000pt;}
.y24_c00075{bottom:2.760000pt;}
.y23_c00075{bottom:6.425219pt;}
.y22_c00075{bottom:101.213333pt;}
.y21_c00075{bottom:133.613333pt;}
.y20_c00075{bottom:163.480000pt;}
.y1f_c00075{bottom:193.613333pt;}
.y1e_c00075{bottom:224.413333pt;}
.y1d_c00075{bottom:252.946667pt;}
.y1c_c00075{bottom:284.680000pt;}
.y1b_c00075{bottom:315.080000pt;}
.y1a_c00075{bottom:344.813333pt;}
.y19_c00075{bottom:375.080000pt;}
.y18_c00075{bottom:405.080000pt;}
.y17_c00075{bottom:435.613333pt;}
.y16_c00075{bottom:465.880000pt;}
.y15_c00075{bottom:495.346667pt;}
.y14_c00075{bottom:525.880000pt;}
.y13_c00075{bottom:539.080000pt;}
.y12_c00075{bottom:558.280000pt;}
.y11_c00075{bottom:616.013333pt;}
.y10_c00075{bottom:675.880000pt;}
.yf_c00075{bottom:706.013333pt;}
.ye_c00075{bottom:736.013333pt;}
.yd_c00075{bottom:765.613333pt;}
.yc_c00075{bottom:795.613333pt;}
.yb_c00075{bottom:824.146667pt;}
.ya_c00075{bottom:853.880000pt;}
.y9_c00075{bottom:883.213333pt;}
.y8_c00075{bottom:912.946667pt;}
.y7_c00075{bottom:942.013333pt;}
.y6_c00075{bottom:971.213333pt;}
.y5_c00075{bottom:1001.213333pt;}
.y4_c00075{bottom:1030.813333pt;}
.y3_c00075{bottom:1060.013333pt;}
.y2_c00075{bottom:1089.080000pt;}
.y1_c00075{bottom:1117.880000pt;}
.h3_c00075{height:11.733399pt;}
.h4_c00075{height:38.937500pt;}
.h2_c00075{height:108.041667pt;}
.h0_c00075{height:1204.333333pt;}
.h1_c00075{height:1204.666667pt;}
.w2_c00075{width:93.222667pt;}
.w0_c00075{width:751.666667pt;}
.w1_c00075{width:752.000000pt;}
.x0_c00075{left:0.000000pt;}
.x9_c00075{left:47.333333pt;}
.x4_c00075{left:58.800000pt;}
.x8_c00075{left:73.733333pt;}
.x5_c00075{left:209.600000pt;}
.xb_c00075{left:212.400000pt;}
.xf_c00075{left:238.800000pt;}
.xe_c00075{left:239.733333pt;}
.xd_c00075{left:241.200000pt;}
.xc_c00075{left:242.666667pt;}
.xa_c00075{left:243.600000pt;}
.x6_c00075{left:245.066667pt;}
.x3_c00075{left:246.000000pt;}
.x2_c00075{left:246.933333pt;}
.x1_c00075{left:247.866667pt;}
.x10_c00075{left:333.001546pt;}
.x7_c00075{left:375.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_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_0ce239bdf254163d96ec24ff.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_8df259e34f330e0c451ff921.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_a3b9ac0651e1ae7c1cec5364.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_f9a65571c1050cb043cdb8f3.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_9cf2273f74844d46a62857e2.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00076;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00076{font-family:ff6_c00076;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.v2_c00076{vertical-align:6.000000px;}
.v1_c00076{vertical-align:101.400000px;}
.ls2_c00076{letter-spacing:-3.000000px;}
.ls1_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:767.160000px;}
.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;}
}
.ws2_c00076{word-spacing:-25.305000px;}
.ws0_c00076{word-spacing:-20.244000px;}
.ws3_c00076{word-spacing:0.000000px;}
.ws1_c00076{word-spacing:46.377000px;}
._34_c00076{margin-left:-81.888000px;}
._33_c00076{margin-left:-29.760000px;}
._21_c00076{margin-left:-16.704000px;}
._31_c00076{margin-left:-13.824000px;}
._35_c00076{margin-left:-12.384000px;}
._36_c00076{margin-left:-8.532000px;}
._1_c00076{margin-left:-6.912000px;}
._1c_c00076{margin-left:-5.472000px;}
._0_c00076{margin-left:-4.128000px;}
._6_c00076{margin-left:-3.072000px;}
._19_c00076{margin-left:-1.536000px;}
._d_c00076{width:1.152000px;}
._3_c00076{width:2.784000px;}
._9_c00076{width:3.840000px;}
._4_c00076{width:4.992000px;}
._a_c00076{width:6.816000px;}
._15_c00076{width:8.448000px;}
._17_c00076{width:9.696000px;}
._18_c00076{width:10.848000px;}
._11_c00076{width:12.672000px;}
._12_c00076{width:14.208000px;}
._1f_c00076{width:15.264000px;}
._5_c00076{width:17.088000px;}
._16_c00076{width:18.816000px;}
._1d_c00076{width:19.968000px;}
._1e_c00076{width:21.024000px;}
._2d_c00076{width:22.080000px;}
._29_c00076{width:24.192000px;}
._c_c00076{width:25.248000px;}
._1a_c00076{width:26.784000px;}
._28_c00076{width:28.320000px;}
._20_c00076{width:30.432000px;}
._b_c00076{width:31.680000px;}
._7_c00076{width:33.792000px;}
._e_c00076{width:34.848000px;}
._f_c00076{width:37.056000px;}
._8_c00076{width:38.688000px;}
._2f_c00076{width:40.128000px;}
._13_c00076{width:41.376000px;}
._22_c00076{width:43.488000px;}
._1b_c00076{width:44.832000px;}
._14_c00076{width:45.888000px;}
._10_c00076{width:47.808000px;}
._2e_c00076{width:49.632000px;}
._27_c00076{width:50.976000px;}
._23_c00076{width:52.416000px;}
._2b_c00076{width:53.568000px;}
._2c_c00076{width:61.824000px;}
._2a_c00076{width:64.992000px;}
._25_c00076{width:66.816000px;}
._24_c00076{width:99.072000px;}
._2_c00076{width:178.944000px;}
._26_c00076{width:183.936000px;}
._32_c00076{width:185.376000px;}
._30_c00076{width:1296.672000px;}
.fc2_c00076{color:transparent;}
.fc1_c00076{color:rgb(128,128,128);}
.fc0_c00076{color:rgb(0,0,0);}
.fs5_c00076{font-size:48.000000px;}
.fs3_c00076{font-size:78.000000px;}
.fs1_c00076{font-size:84.000000px;}
.fs2_c00076{font-size:93.000000px;}
.fs0_c00076{font-size:96.000000px;}
.fs4_c00076{font-size:105.000000px;}
.y0_c00076{bottom:0.000000px;}
.y23_c00076{bottom:3.105000px;}
.y22_c00076{bottom:7.228371px;}
.y21_c00076{bottom:98.865000px;}
.y1a_c00076{bottom:271.815000px;}
.y19_c00076{bottom:305.115000px;}
.y18_c00076{bottom:339.165000px;}
.y17_c00076{bottom:372.915000px;}
.y16_c00076{bottom:406.365000px;}
.y15_c00076{bottom:440.115000px;}
.y14_c00076{bottom:473.565000px;}
.y13_c00076{bottom:507.315000px;}
.y20_c00076{bottom:522.165000px;}
.y12_c00076{bottom:540.765000px;}
.y1f_c00076{bottom:553.215000px;}
.y11_c00076{bottom:574.215000px;}
.y10_c00076{bottom:607.515000px;}
.yf_c00076{bottom:640.665000px;}
.y1e_c00076{bottom:660.915000px;}
.ye_c00076{bottom:674.715000px;}
.y1d_c00076{bottom:689.265000px;}
.yd_c00076{bottom:741.915000px;}
.yc_c00076{bottom:807.765000px;}
.yb_c00076{bottom:842.115000px;}
.ya_c00076{bottom:876.165000px;}
.y9_c00076{bottom:908.865000px;}
.y8_c00076{bottom:942.315000px;}
.y7_c00076{bottom:975.465000px;}
.y6_c00076{bottom:1008.915000px;}
.y5_c00076{bottom:1042.515000px;}
.y4_c00076{bottom:1075.665000px;}
.y3_c00076{bottom:1108.965000px;}
.y2_c00076{bottom:1142.415000px;}
.y1c_c00076{bottom:1152.915000px;}
.y1_c00076{bottom:1175.865000px;}
.y1b_c00076{bottom:1182.315000px;}
.h8_c00076{height:13.200074px;}
.h9_c00076{height:43.804688px;}
.h5_c00076{height:97.464000px;}
.h4_c00076{height:98.314453px;}
.h3_c00076{height:106.353516px;}
.h2_c00076{height:121.546875px;}
.h7_c00076{height:138.941895px;}
.h6_c00076{height:185.952000px;}
.h0_c00076{height:1360.275000px;}
.h1_c00076{height:1360.500000px;}
.w2_c00076{width:104.875500px;}
.w1_c00076{width:863.250000px;}
.w0_c00076{width:863.475000px;}
.x0_c00076{left:0.000000px;}
.x6_c00076{left:27.750000px;}
.x5_c00076{left:28.800000px;}
.x4_c00076{left:30.000000px;}
.x3_c00076{left:31.500000px;}
.x2_c00076{left:32.700000px;}
.x8_c00076{left:36.450000px;}
.x1_c00076{left:83.400000px;}
.x7_c00076{left:173.100000px;}
.xe_c00076{left:306.450000px;}
.xf_c00076{left:383.551758px;}
.xa_c00076{left:617.550000px;}
.xd_c00076{left:619.200000px;}
.xc_c00076{left:625.050000px;}
.x9_c00076{left:645.600000px;}
.xb_c00076{left:646.650000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.v2_c00076{vertical-align:5.333333pt;}
.v1_c00076{vertical-align:90.133333pt;}
.ls2_c00076{letter-spacing:-2.666667pt;}
.ls1_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:681.920000pt;}
.ws2_c00076{word-spacing:-22.493333pt;}
.ws0_c00076{word-spacing:-17.994667pt;}
.ws3_c00076{word-spacing:0.000000pt;}
.ws1_c00076{word-spacing:41.224000pt;}
._34_c00076{margin-left:-72.789333pt;}
._33_c00076{margin-left:-26.453333pt;}
._21_c00076{margin-left:-14.848000pt;}
._31_c00076{margin-left:-12.288000pt;}
._35_c00076{margin-left:-11.008000pt;}
._36_c00076{margin-left:-7.584000pt;}
._1_c00076{margin-left:-6.144000pt;}
._1c_c00076{margin-left:-4.864000pt;}
._0_c00076{margin-left:-3.669333pt;}
._6_c00076{margin-left:-2.730667pt;}
._19_c00076{margin-left:-1.365333pt;}
._d_c00076{width:1.024000pt;}
._3_c00076{width:2.474667pt;}
._9_c00076{width:3.413333pt;}
._4_c00076{width:4.437333pt;}
._a_c00076{width:6.058667pt;}
._15_c00076{width:7.509333pt;}
._17_c00076{width:8.618667pt;}
._18_c00076{width:9.642667pt;}
._11_c00076{width:11.264000pt;}
._12_c00076{width:12.629333pt;}
._1f_c00076{width:13.568000pt;}
._5_c00076{width:15.189333pt;}
._16_c00076{width:16.725333pt;}
._1d_c00076{width:17.749333pt;}
._1e_c00076{width:18.688000pt;}
._2d_c00076{width:19.626667pt;}
._29_c00076{width:21.504000pt;}
._c_c00076{width:22.442667pt;}
._1a_c00076{width:23.808000pt;}
._28_c00076{width:25.173333pt;}
._20_c00076{width:27.050667pt;}
._b_c00076{width:28.160000pt;}
._7_c00076{width:30.037333pt;}
._e_c00076{width:30.976000pt;}
._f_c00076{width:32.938667pt;}
._8_c00076{width:34.389333pt;}
._2f_c00076{width:35.669333pt;}
._13_c00076{width:36.778667pt;}
._22_c00076{width:38.656000pt;}
._1b_c00076{width:39.850667pt;}
._14_c00076{width:40.789333pt;}
._10_c00076{width:42.496000pt;}
._2e_c00076{width:44.117333pt;}
._27_c00076{width:45.312000pt;}
._23_c00076{width:46.592000pt;}
._2b_c00076{width:47.616000pt;}
._2c_c00076{width:54.954667pt;}
._2a_c00076{width:57.770667pt;}
._25_c00076{width:59.392000pt;}
._24_c00076{width:88.064000pt;}
._2_c00076{width:159.061333pt;}
._26_c00076{width:163.498667pt;}
._32_c00076{width:164.778667pt;}
._30_c00076{width:1152.597333pt;}
.fs5_c00076{font-size:42.666667pt;}
.fs3_c00076{font-size:69.333333pt;}
.fs1_c00076{font-size:74.666667pt;}
.fs2_c00076{font-size:82.666667pt;}
.fs0_c00076{font-size:85.333333pt;}
.fs4_c00076{font-size:93.333333pt;}
.y0_c00076{bottom:0.000000pt;}
.y23_c00076{bottom:2.760000pt;}
.y22_c00076{bottom:6.425219pt;}
.y21_c00076{bottom:87.880000pt;}
.y1a_c00076{bottom:241.613333pt;}
.y19_c00076{bottom:271.213333pt;}
.y18_c00076{bottom:301.480000pt;}
.y17_c00076{bottom:331.480000pt;}
.y16_c00076{bottom:361.213333pt;}
.y15_c00076{bottom:391.213333pt;}
.y14_c00076{bottom:420.946667pt;}
.y13_c00076{bottom:450.946667pt;}
.y20_c00076{bottom:464.146667pt;}
.y12_c00076{bottom:480.680000pt;}
.y1f_c00076{bottom:491.746667pt;}
.y11_c00076{bottom:510.413333pt;}
.y10_c00076{bottom:540.013333pt;}
.yf_c00076{bottom:569.480000pt;}
.y1e_c00076{bottom:587.480000pt;}
.ye_c00076{bottom:599.746667pt;}
.y1d_c00076{bottom:612.680000pt;}
.yd_c00076{bottom:659.480000pt;}
.yc_c00076{bottom:718.013333pt;}
.yb_c00076{bottom:748.546667pt;}
.ya_c00076{bottom:778.813333pt;}
.y9_c00076{bottom:807.880000pt;}
.y8_c00076{bottom:837.613333pt;}
.y7_c00076{bottom:867.080000pt;}
.y6_c00076{bottom:896.813333pt;}
.y5_c00076{bottom:926.680000pt;}
.y4_c00076{bottom:956.146667pt;}
.y3_c00076{bottom:985.746667pt;}
.y2_c00076{bottom:1015.480000pt;}
.y1c_c00076{bottom:1024.813333pt;}
.y1_c00076{bottom:1045.213333pt;}
.y1b_c00076{bottom:1050.946667pt;}
.h8_c00076{height:11.733399pt;}
.h9_c00076{height:38.937500pt;}
.h5_c00076{height:86.634667pt;}
.h4_c00076{height:87.390625pt;}
.h3_c00076{height:94.536458pt;}
.h2_c00076{height:108.041667pt;}
.h7_c00076{height:123.503906pt;}
.h6_c00076{height:165.290667pt;}
.h0_c00076{height:1209.133333pt;}
.h1_c00076{height:1209.333333pt;}
.w2_c00076{width:93.222667pt;}
.w1_c00076{width:767.333333pt;}
.w0_c00076{width:767.533333pt;}
.x0_c00076{left:0.000000pt;}
.x6_c00076{left:24.666667pt;}
.x5_c00076{left:25.600000pt;}
.x4_c00076{left:26.666667pt;}
.x3_c00076{left:28.000000pt;}
.x2_c00076{left:29.066667pt;}
.x8_c00076{left:32.400000pt;}
.x1_c00076{left:74.133333pt;}
.x7_c00076{left:153.866667pt;}
.xe_c00076{left:272.400000pt;}
.xf_c00076{left:340.934896pt;}
.xa_c00076{left:548.933333pt;}
.xd_c00076{left:550.400000pt;}
.xc_c00076{left:555.600000pt;}
.x9_c00076{left:573.866667pt;}
.xb_c00076{left:574.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_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_a459b70b2c2e2e9ad2ee1151.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_72e534654366a438a720692c.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_7e02cb0817feec6fdf7e4d1d.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_862a85c2305fb28fb7103ad5.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;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_c00077;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00077{vertical-align:-84.600000px;}
.v0_c00077{vertical-align:0.000000px;}
.ls3_c00077{letter-spacing:0.000000px;}
.ls1_c00077{letter-spacing:5.184000px;}
.ls0_c00077{letter-spacing:5.664000px;}
.ls4_c00077{letter-spacing:9.000000px;}
.ls6_c00077{letter-spacing:12.000000px;}
.ls7_c00077{letter-spacing:24.000000px;}
.ls2_c00077{letter-spacing:40.833000px;}
.ls5_c00077{letter-spacing:45.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00077{word-spacing:-41.352000px;}
.ws0_c00077{word-spacing:-27.798000px;}
.ws5_c00077{word-spacing:-23.136000px;}
.ws1_c00077{word-spacing:-18.798000px;}
.ws2_c00077{word-spacing:-11.460000px;}
.ws6_c00077{word-spacing:0.000000px;}
.ws3_c00077{word-spacing:4.620000px;}
._31_c00077{margin-left:-65.511000px;}
._38_c00077{margin-left:-64.230000px;}
._3c_c00077{margin-left:-54.114000px;}
._32_c00077{margin-left:-52.200000px;}
._34_c00077{margin-left:-50.982000px;}
._39_c00077{margin-left:-46.494000px;}
._12_c00077{margin-left:-43.608000px;}
._13_c00077{margin-left:-41.499000px;}
._3d_c00077{margin-left:-38.454000px;}
._3a_c00077{margin-left:-36.504000px;}
._3b_c00077{margin-left:-34.452000px;}
._3e_c00077{margin-left:-32.937000px;}
._37_c00077{margin-left:-23.730000px;}
._16_c00077{margin-left:-17.706000px;}
._14_c00077{margin-left:-15.573000px;}
._17_c00077{margin-left:-13.248000px;}
._3f_c00077{margin-left:-11.979000px;}
._15_c00077{margin-left:-9.984000px;}
._28_c00077{margin-left:-8.271000px;}
._5_c00077{margin-left:-6.864000px;}
._2_c00077{margin-left:-4.758000px;}
._9_c00077{margin-left:-3.432000px;}
._3_c00077{margin-left:-2.184000px;}
._6_c00077{margin-left:-1.014000px;}
._0_c00077{width:1.092000px;}
._d_c00077{width:2.262000px;}
._c_c00077{width:4.134000px;}
._21_c00077{width:5.586000px;}
._1a_c00077{width:7.020000px;}
._b_c00077{width:8.346000px;}
._1d_c00077{width:9.402000px;}
._1f_c00077{width:11.094000px;}
._1_c00077{width:12.948000px;}
._4_c00077{width:14.898000px;}
._22_c00077{width:16.641000px;}
._29_c00077{width:17.796000px;}
._27_c00077{width:19.761000px;}
._26_c00077{width:21.054000px;}
._e_c00077{width:24.336000px;}
._23_c00077{width:26.211000px;}
._19_c00077{width:28.236000px;}
._2b_c00077{width:29.775000px;}
._f_c00077{width:30.930000px;}
._36_c00077{width:32.058000px;}
._11_c00077{width:33.306000px;}
._2a_c00077{width:35.058000px;}
._1b_c00077{width:36.237000px;}
._40_c00077{width:38.283000px;}
._7_c00077{width:39.546000px;}
._10_c00077{width:40.950000px;}
._2f_c00077{width:42.546000px;}
._18_c00077{width:43.602000px;}
._2e_c00077{width:45.363000px;}
._24_c00077{width:47.367000px;}
._25_c00077{width:49.134000px;}
._a_c00077{width:51.402000px;}
._8_c00077{width:53.742000px;}
._1e_c00077{width:108.300000px;}
._35_c00077{width:109.968000px;}
._2c_c00077{width:121.410000px;}
._33_c00077{width:139.548000px;}
._1c_c00077{width:144.576000px;}
._20_c00077{width:172.692000px;}
._2d_c00077{width:184.992000px;}
._30_c00077{width:204.933000px;}
.fc2_c00077{color:transparent;}
.fc1_c00077{color:rgb(128,128,128);}
.fc0_c00077{color:rgb(0,0,0);}
.fs7_c00077{font-size:48.000000px;}
.fs3_c00077{font-size:57.000000px;}
.fs2_c00077{font-size:60.000000px;}
.fs0_c00077{font-size:78.000000px;}
.fs5_c00077{font-size:84.000000px;}
.fs1_c00077{font-size:87.000000px;}
.fs4_c00077{font-size:96.000000px;}
.fs6_c00077{font-size:102.000000px;}
.y0_c00077{bottom:0.000000px;}
.y2e_c00077{bottom:3.105000px;}
.y2d_c00077{bottom:7.228357px;}
.y2c_c00077{bottom:115.530000px;}
.y2b_c00077{bottom:254.580000px;}
.y2a_c00077{bottom:288.630000px;}
.y29_c00077{bottom:321.930000px;}
.y24_c00077{bottom:340.830000px;}
.y28_c00077{bottom:356.430000px;}
.y23_c00077{bottom:370.980000px;}
.y27_c00077{bottom:390.930000px;}
.y22_c00077{bottom:401.580000px;}
.y26_c00077{bottom:424.680000px;}
.y21_c00077{bottom:430.680000px;}
.y25_c00077{bottom:458.730000px;}
.y20_c00077{bottom:460.680000px;}
.y1f_c00077{bottom:527.130000px;}
.y1e_c00077{bottom:595.980000px;}
.ya_c00077{bottom:624.030000px;}
.y1d_c00077{bottom:629.730000px;}
.y9_c00077{bottom:655.380000px;}
.y1c_c00077{bottom:663.480000px;}
.y8_c00077{bottom:684.780000px;}
.y1b_c00077{bottom:697.380000px;}
.y7_c00077{bottom:703.680000px;}
.y1a_c00077{bottom:764.430000px;}
.y19_c00077{bottom:832.980000px;}
.y18_c00077{bottom:867.030000px;}
.y17_c00077{bottom:900.780000px;}
.y16_c00077{bottom:933.630000px;}
.y15_c00077{bottom:967.380000px;}
.y14_c00077{bottom:1000.380000px;}
.y13_c00077{bottom:1033.830000px;}
.y12_c00077{bottom:1067.280000px;}
.y6_c00077{bottom:1085.130000px;}
.y11_c00077{bottom:1100.880000px;}
.y5_c00077{bottom:1114.830000px;}
.y10_c00077{bottom:1133.730000px;}
.y4_c00077{bottom:1144.230000px;}
.yf_c00077{bottom:1167.180000px;}
.y3_c00077{bottom:1173.780000px;}
.ye_c00077{bottom:1200.780000px;}
.y2_c00077{bottom:1202.280000px;}
.y1_c00077{bottom:1231.830000px;}
.yd_c00077{bottom:1233.930000px;}
.yc_c00077{bottom:1272.480000px;}
.yb_c00077{bottom:1299.480000px;}
.h7_c00077{height:13.200074px;}
.h8_c00077{height:43.804688px;}
.h5_c00077{height:75.966797px;}
.h3_c00077{height:91.291992px;}
.h2_c00077{height:98.756836px;}
.h4_c00077{height:110.151855px;}
.h6_c00077{height:121.546875px;}
.h0_c00077{height:1382.700000px;}
.h1_c00077{height:1383.000000px;}
.w2_c00077{width:104.875500px;}
.w0_c00077{width:863.175000px;}
.w1_c00077{width:863.250000px;}
.x0_c00077{left:0.000000px;}
.x6_c00077{left:46.200000px;}
.x10_c00077{left:48.150000px;}
.x2_c00077{left:51.300000px;}
.x11_c00077{left:52.650000px;}
.x3_c00077{left:53.700000px;}
.x5_c00077{left:62.550000px;}
.x1_c00077{left:78.750000px;}
.x4_c00077{left:157.950000px;}
.xa_c00077{left:270.300000px;}
.xb_c00077{left:271.800000px;}
.xc_c00077{left:273.000000px;}
.x9_c00077{left:318.300000px;}
.xe_c00077{left:321.000000px;}
.x7_c00077{left:336.600000px;}
.xf_c00077{left:377.700000px;}
.x14_c00077{left:383.401749px;}
.x12_c00077{left:397.800000px;}
.xd_c00077{left:403.650000px;}
.x8_c00077{left:441.750000px;}
.x13_c00077{left:756.600000px;}
@media print{
.v1_c00077{vertical-align:-75.200000pt;}
.v0_c00077{vertical-align:0.000000pt;}
.ls3_c00077{letter-spacing:0.000000pt;}
.ls1_c00077{letter-spacing:4.608000pt;}
.ls0_c00077{letter-spacing:5.034667pt;}
.ls4_c00077{letter-spacing:8.000000pt;}
.ls6_c00077{letter-spacing:10.666667pt;}
.ls7_c00077{letter-spacing:21.333333pt;}
.ls2_c00077{letter-spacing:36.296000pt;}
.ls5_c00077{letter-spacing:40.000000pt;}
.ws4_c00077{word-spacing:-36.757333pt;}
.ws0_c00077{word-spacing:-24.709333pt;}
.ws5_c00077{word-spacing:-20.565333pt;}
.ws1_c00077{word-spacing:-16.709333pt;}
.ws2_c00077{word-spacing:-10.186667pt;}
.ws6_c00077{word-spacing:0.000000pt;}
.ws3_c00077{word-spacing:4.106667pt;}
._31_c00077{margin-left:-58.232000pt;}
._38_c00077{margin-left:-57.093333pt;}
._3c_c00077{margin-left:-48.101333pt;}
._32_c00077{margin-left:-46.400000pt;}
._34_c00077{margin-left:-45.317333pt;}
._39_c00077{margin-left:-41.328000pt;}
._12_c00077{margin-left:-38.762667pt;}
._13_c00077{margin-left:-36.888000pt;}
._3d_c00077{margin-left:-34.181333pt;}
._3a_c00077{margin-left:-32.448000pt;}
._3b_c00077{margin-left:-30.624000pt;}
._3e_c00077{margin-left:-29.277333pt;}
._37_c00077{margin-left:-21.093333pt;}
._16_c00077{margin-left:-15.738667pt;}
._14_c00077{margin-left:-13.842667pt;}
._17_c00077{margin-left:-11.776000pt;}
._3f_c00077{margin-left:-10.648000pt;}
._15_c00077{margin-left:-8.874667pt;}
._28_c00077{margin-left:-7.352000pt;}
._5_c00077{margin-left:-6.101333pt;}
._2_c00077{margin-left:-4.229333pt;}
._9_c00077{margin-left:-3.050667pt;}
._3_c00077{margin-left:-1.941333pt;}
._6_c00077{margin-left:-0.901333pt;}
._0_c00077{width:0.970667pt;}
._d_c00077{width:2.010667pt;}
._c_c00077{width:3.674667pt;}
._21_c00077{width:4.965333pt;}
._1a_c00077{width:6.240000pt;}
._b_c00077{width:7.418667pt;}
._1d_c00077{width:8.357333pt;}
._1f_c00077{width:9.861333pt;}
._1_c00077{width:11.509333pt;}
._4_c00077{width:13.242667pt;}
._22_c00077{width:14.792000pt;}
._29_c00077{width:15.818667pt;}
._27_c00077{width:17.565333pt;}
._26_c00077{width:18.714667pt;}
._e_c00077{width:21.632000pt;}
._23_c00077{width:23.298667pt;}
._19_c00077{width:25.098667pt;}
._2b_c00077{width:26.466667pt;}
._f_c00077{width:27.493333pt;}
._36_c00077{width:28.496000pt;}
._11_c00077{width:29.605333pt;}
._2a_c00077{width:31.162667pt;}
._1b_c00077{width:32.210667pt;}
._40_c00077{width:34.029333pt;}
._7_c00077{width:35.152000pt;}
._10_c00077{width:36.400000pt;}
._2f_c00077{width:37.818667pt;}
._18_c00077{width:38.757333pt;}
._2e_c00077{width:40.322667pt;}
._24_c00077{width:42.104000pt;}
._25_c00077{width:43.674667pt;}
._a_c00077{width:45.690667pt;}
._8_c00077{width:47.770667pt;}
._1e_c00077{width:96.266667pt;}
._35_c00077{width:97.749333pt;}
._2c_c00077{width:107.920000pt;}
._33_c00077{width:124.042667pt;}
._1c_c00077{width:128.512000pt;}
._20_c00077{width:153.504000pt;}
._2d_c00077{width:164.437333pt;}
._30_c00077{width:182.162667pt;}
.fs7_c00077{font-size:42.666667pt;}
.fs3_c00077{font-size:50.666667pt;}
.fs2_c00077{font-size:53.333333pt;}
.fs0_c00077{font-size:69.333333pt;}
.fs5_c00077{font-size:74.666667pt;}
.fs1_c00077{font-size:77.333333pt;}
.fs4_c00077{font-size:85.333333pt;}
.fs6_c00077{font-size:90.666667pt;}
.y0_c00077{bottom:0.000000pt;}
.y2e_c00077{bottom:2.760000pt;}
.y2d_c00077{bottom:6.425206pt;}
.y2c_c00077{bottom:102.693333pt;}
.y2b_c00077{bottom:226.293333pt;}
.y2a_c00077{bottom:256.560000pt;}
.y29_c00077{bottom:286.160000pt;}
.y24_c00077{bottom:302.960000pt;}
.y28_c00077{bottom:316.826667pt;}
.y23_c00077{bottom:329.760000pt;}
.y27_c00077{bottom:347.493333pt;}
.y22_c00077{bottom:356.960000pt;}
.y26_c00077{bottom:377.493333pt;}
.y21_c00077{bottom:382.826667pt;}
.y25_c00077{bottom:407.760000pt;}
.y20_c00077{bottom:409.493333pt;}
.y1f_c00077{bottom:468.560000pt;}
.y1e_c00077{bottom:529.760000pt;}
.ya_c00077{bottom:554.693333pt;}
.y1d_c00077{bottom:559.760000pt;}
.y9_c00077{bottom:582.560000pt;}
.y1c_c00077{bottom:589.760000pt;}
.y8_c00077{bottom:608.693333pt;}
.y1b_c00077{bottom:619.893333pt;}
.y7_c00077{bottom:625.493333pt;}
.y1a_c00077{bottom:679.493333pt;}
.y19_c00077{bottom:740.426667pt;}
.y18_c00077{bottom:770.693333pt;}
.y17_c00077{bottom:800.693333pt;}
.y16_c00077{bottom:829.893333pt;}
.y15_c00077{bottom:859.893333pt;}
.y14_c00077{bottom:889.226667pt;}
.y13_c00077{bottom:918.960000pt;}
.y12_c00077{bottom:948.693333pt;}
.y6_c00077{bottom:964.560000pt;}
.y11_c00077{bottom:978.560000pt;}
.y5_c00077{bottom:990.960000pt;}
.y10_c00077{bottom:1007.760000pt;}
.y4_c00077{bottom:1017.093333pt;}
.yf_c00077{bottom:1037.493333pt;}
.y3_c00077{bottom:1043.360000pt;}
.ye_c00077{bottom:1067.360000pt;}
.y2_c00077{bottom:1068.693333pt;}
.y1_c00077{bottom:1094.960000pt;}
.yd_c00077{bottom:1096.826667pt;}
.yc_c00077{bottom:1131.093333pt;}
.yb_c00077{bottom:1155.093333pt;}
.h7_c00077{height:11.733399pt;}
.h8_c00077{height:38.937500pt;}
.h5_c00077{height:67.526042pt;}
.h3_c00077{height:81.148438pt;}
.h2_c00077{height:87.783854pt;}
.h4_c00077{height:97.912760pt;}
.h6_c00077{height:108.041667pt;}
.h0_c00077{height:1229.066667pt;}
.h1_c00077{height:1229.333333pt;}
.w2_c00077{width:93.222667pt;}
.w0_c00077{width:767.266667pt;}
.w1_c00077{width:767.333333pt;}
.x0_c00077{left:0.000000pt;}
.x6_c00077{left:41.066667pt;}
.x10_c00077{left:42.800000pt;}
.x2_c00077{left:45.600000pt;}
.x11_c00077{left:46.800000pt;}
.x3_c00077{left:47.733333pt;}
.x5_c00077{left:55.600000pt;}
.x1_c00077{left:70.000000pt;}
.x4_c00077{left:140.400000pt;}
.xa_c00077{left:240.266667pt;}
.xb_c00077{left:241.600000pt;}
.xc_c00077{left:242.666667pt;}
.x9_c00077{left:282.933333pt;}
.xe_c00077{left:285.333333pt;}
.x7_c00077{left:299.200000pt;}
.xf_c00077{left:335.733333pt;}
.x14_c00077{left:340.801554pt;}
.x12_c00077{left:353.600000pt;}
.xd_c00077{left:358.800000pt;}
.x8_c00077{left:392.666667pt;}
.x13_c00077{left:672.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6c61490b8527959977241a8.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;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:ff2_c00078;src:url('chunks/assets/font_627379e7bcc304f16f0643e9.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_21ed0cb5dd6fec8e0ab235de.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_c6d44b04c73110ccf64df932.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00078;src:url('chunks/assets/font_9fc2b04f035c3365b55a43f3.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00078;src:url('chunks/assets/font_8864dd4ab5873caa3b9461c8.woff2')format("woff");}.ff6_c00078{font-family:ff6_c00078;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00078;src:url('chunks/assets/font_d8fdeb291df6ecb50c228d05.woff2')format("woff");}.ff7_c00078{font-family:ff7_c00078;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00078;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00078{font-family:ff8_c00078;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls6_c00078{letter-spacing:0.000000px;}
.ls4_c00078{letter-spacing:2.952000px;}
.ls7_c00078{letter-spacing:6.000000px;}
.ls0_c00078{letter-spacing:6.720000px;}
.ls5_c00078{letter-spacing:12.000000px;}
.ls3_c00078{letter-spacing:18.000000px;}
.ls2_c00078{letter-spacing:22.230000px;}
.ls1_c00078{letter-spacing:664.800000px;}
.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:-23.136000px;}
.ws0_c00078{word-spacing:-20.244000px;}
.ws2_c00078{word-spacing:0.000000px;}
._2f_c00078{margin-left:-61.875000px;}
._2c_c00078{margin-left:-51.297000px;}
._2d_c00078{margin-left:-43.395000px;}
._28_c00078{margin-left:-41.745000px;}
._2b_c00078{margin-left:-38.940000px;}
._29_c00078{margin-left:-37.290000px;}
._23_c00078{margin-left:-33.024000px;}
._47_c00078{margin-left:-30.876000px;}
._21_c00078{margin-left:-28.545000px;}
._22_c00078{margin-left:-25.659000px;}
._2e_c00078{margin-left:-22.935000px;}
._2a_c00078{margin-left:-21.072000px;}
._45_c00078{margin-left:-17.664000px;}
._3f_c00078{margin-left:-14.304000px;}
._0_c00078{margin-left:-10.260000px;}
._17_c00078{margin-left:-7.296000px;}
._27_c00078{margin-left:-5.166000px;}
._15_c00078{margin-left:-4.032000px;}
._13_c00078{margin-left:-2.556000px;}
._2_c00078{margin-left:-1.188000px;}
._10_c00078{width:1.536000px;}
._e_c00078{width:2.592000px;}
._c_c00078{width:3.648000px;}
._8_c00078{width:5.280000px;}
._5_c00078{width:6.720000px;}
._4_c00078{width:8.160000px;}
._b_c00078{width:9.360000px;}
._7_c00078{width:10.752000px;}
._1f_c00078{width:12.420000px;}
._a_c00078{width:13.728000px;}
._3a_c00078{width:15.516000px;}
._14_c00078{width:17.472000px;}
._34_c00078{width:18.912000px;}
._16_c00078{width:20.928000px;}
._41_c00078{width:21.960000px;}
._d_c00078{width:24.864000px;}
._37_c00078{width:26.112000px;}
._3c_c00078{width:27.216000px;}
._1b_c00078{width:28.224000px;}
._1a_c00078{width:30.072000px;}
._3_c00078{width:31.212000px;}
._f_c00078{width:32.256000px;}
._30_c00078{width:34.227000px;}
._32_c00078{width:35.328000px;}
._9_c00078{width:36.768000px;}
._11_c00078{width:38.784000px;}
._1c_c00078{width:40.968000px;}
._19_c00078{width:42.528000px;}
._35_c00078{width:43.689000px;}
._18_c00078{width:45.024000px;}
._3b_c00078{width:48.000000px;}
._1e_c00078{width:50.160000px;}
._33_c00078{width:51.984000px;}
._42_c00078{width:54.048000px;}
._20_c00078{width:55.668000px;}
._31_c00078{width:58.344000px;}
._36_c00078{width:64.512000px;}
._43_c00078{width:66.504000px;}
._3e_c00078{width:77.502000px;}
._39_c00078{width:80.016000px;}
._1_c00078{width:115.524000px;}
._6_c00078{width:178.464000px;}
._1d_c00078{width:190.632000px;}
._26_c00078{width:204.336000px;}
._49_c00078{width:254.688000px;}
._46_c00078{width:273.888000px;}
._3d_c00078{width:317.700000px;}
._38_c00078{width:383.727000px;}
._24_c00078{width:420.000000px;}
._12_c00078{width:456.288000px;}
._25_c00078{width:516.000000px;}
._44_c00078{width:558.144000px;}
._40_c00078{width:732.864000px;}
._48_c00078{width:2163.240000px;}
.fc2_c00078{color:transparent;}
.fc1_c00078{color:rgb(128,128,128);}
.fc0_c00078{color:rgb(0,0,0);}
.fs8_c00078{font-size:24.000000px;}
.fs1_c00078{font-size:36.000000px;}
.fs9_c00078{font-size:48.000000px;}
.fs6_c00078{font-size:72.000000px;}
.fs3_c00078{font-size:84.000000px;}
.fs2_c00078{font-size:96.000000px;}
.fs5_c00078{font-size:99.000000px;}
.fs0_c00078{font-size:102.000000px;}
.fs7_c00078{font-size:105.000000px;}
.fs4_c00078{font-size:165.000000px;}
.y0_c00078{bottom:0.000000px;}
.y27_c00078{bottom:3.105000px;}
.y26_c00078{bottom:7.228369px;}
.y24_c00078{bottom:95.520000px;}
.y23_c00078{bottom:130.170000px;}
.y22_c00078{bottom:164.670000px;}
.y21_c00078{bottom:198.120000px;}
.y20_c00078{bottom:232.770000px;}
.y1f_c00078{bottom:266.220000px;}
.y1e_c00078{bottom:300.420000px;}
.y1d_c00078{bottom:333.720000px;}
.y1c_c00078{bottom:367.770000px;}
.y1b_c00078{bottom:401.670000px;}
.y1a_c00078{bottom:436.020000px;}
.y19_c00078{bottom:469.020000px;}
.y18_c00078{bottom:502.470000px;}
.y17_c00078{bottom:536.520000px;}
.y16_c00078{bottom:569.670000px;}
.y15_c00078{bottom:603.120000px;}
.y14_c00078{bottom:636.570000px;}
.y13_c00078{bottom:669.870000px;}
.y12_c00078{bottom:703.620000px;}
.y11_c00078{bottom:737.670000px;}
.y10_c00078{bottom:771.120000px;}
.yf_c00078{bottom:805.170000px;}
.ye_c00078{bottom:836.970000px;}
.yd_c00078{bottom:871.020000px;}
.y25_c00078{bottom:891.570000px;}
.yc_c00078{bottom:904.770000px;}
.yb_c00078{bottom:938.820000px;}
.ya_c00078{bottom:971.970000px;}
.y9_c00078{bottom:1005.120000px;}
.y8_c00078{bottom:1038.870000px;}
.y7_c00078{bottom:1072.170000px;}
.y6_c00078{bottom:1087.320000px;}
.y5_c00078{bottom:1108.920000px;}
.y4_c00078{bottom:1139.070000px;}
.y3_c00078{bottom:1173.420000px;}
.y2_c00078{bottom:1289.820000px;}
.y1_c00078{bottom:1299.720000px;}
.h7_c00078{height:13.200073px;}
.h8_c00078{height:43.804688px;}
.h3_c00078{height:45.580078px;}
.h2_c00078{height:102.796875px;}
.h4_c00078{height:121.546875px;}
.h6_c00078{height:132.941895px;}
.h5_c00078{height:161.857910px;}
.h0_c00078{height:1383.450000px;}
.h1_c00078{height:1383.750000px;}
.w2_c00078{width:104.875500px;}
.w0_c00078{width:878.025000px;}
.w1_c00078{width:878.250000px;}
.x0_c00078{left:0.000000px;}
.xa_c00078{left:15.300000px;}
.x8_c00078{left:19.650000px;}
.xb_c00078{left:34.200000px;}
.x9_c00078{left:35.400000px;}
.x7_c00078{left:36.450000px;}
.x6_c00078{left:37.500000px;}
.x5_c00078{left:38.550000px;}
.x4_c00078{left:39.600000px;}
.xc_c00078{left:40.800000px;}
.x3_c00078{left:91.200000px;}
.xe_c00078{left:390.826721px;}
.x2_c00078{left:499.800000px;}
.x1_c00078{left:532.650000px;}
.xd_c00078{left:844.500000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls6_c00078{letter-spacing:0.000000pt;}
.ls4_c00078{letter-spacing:2.624000pt;}
.ls7_c00078{letter-spacing:5.333333pt;}
.ls0_c00078{letter-spacing:5.973333pt;}
.ls5_c00078{letter-spacing:10.666667pt;}
.ls3_c00078{letter-spacing:16.000000pt;}
.ls2_c00078{letter-spacing:19.760000pt;}
.ls1_c00078{letter-spacing:590.933333pt;}
.ws1_c00078{word-spacing:-20.565333pt;}
.ws0_c00078{word-spacing:-17.994667pt;}
.ws2_c00078{word-spacing:0.000000pt;}
._2f_c00078{margin-left:-55.000000pt;}
._2c_c00078{margin-left:-45.597333pt;}
._2d_c00078{margin-left:-38.573333pt;}
._28_c00078{margin-left:-37.106667pt;}
._2b_c00078{margin-left:-34.613333pt;}
._29_c00078{margin-left:-33.146667pt;}
._23_c00078{margin-left:-29.354667pt;}
._47_c00078{margin-left:-27.445333pt;}
._21_c00078{margin-left:-25.373333pt;}
._22_c00078{margin-left:-22.808000pt;}
._2e_c00078{margin-left:-20.386667pt;}
._2a_c00078{margin-left:-18.730667pt;}
._45_c00078{margin-left:-15.701333pt;}
._3f_c00078{margin-left:-12.714667pt;}
._0_c00078{margin-left:-9.120000pt;}
._17_c00078{margin-left:-6.485333pt;}
._27_c00078{margin-left:-4.592000pt;}
._15_c00078{margin-left:-3.584000pt;}
._13_c00078{margin-left:-2.272000pt;}
._2_c00078{margin-left:-1.056000pt;}
._10_c00078{width:1.365333pt;}
._e_c00078{width:2.304000pt;}
._c_c00078{width:3.242667pt;}
._8_c00078{width:4.693333pt;}
._5_c00078{width:5.973333pt;}
._4_c00078{width:7.253333pt;}
._b_c00078{width:8.320000pt;}
._7_c00078{width:9.557333pt;}
._1f_c00078{width:11.040000pt;}
._a_c00078{width:12.202667pt;}
._3a_c00078{width:13.792000pt;}
._14_c00078{width:15.530667pt;}
._34_c00078{width:16.810667pt;}
._16_c00078{width:18.602667pt;}
._41_c00078{width:19.520000pt;}
._d_c00078{width:22.101333pt;}
._37_c00078{width:23.210667pt;}
._3c_c00078{width:24.192000pt;}
._1b_c00078{width:25.088000pt;}
._1a_c00078{width:26.730667pt;}
._3_c00078{width:27.744000pt;}
._f_c00078{width:28.672000pt;}
._30_c00078{width:30.424000pt;}
._32_c00078{width:31.402667pt;}
._9_c00078{width:32.682667pt;}
._11_c00078{width:34.474667pt;}
._1c_c00078{width:36.416000pt;}
._19_c00078{width:37.802667pt;}
._35_c00078{width:38.834667pt;}
._18_c00078{width:40.021333pt;}
._3b_c00078{width:42.666667pt;}
._1e_c00078{width:44.586667pt;}
._33_c00078{width:46.208000pt;}
._42_c00078{width:48.042667pt;}
._20_c00078{width:49.482667pt;}
._31_c00078{width:51.861333pt;}
._36_c00078{width:57.344000pt;}
._43_c00078{width:59.114667pt;}
._3e_c00078{width:68.890667pt;}
._39_c00078{width:71.125333pt;}
._1_c00078{width:102.688000pt;}
._6_c00078{width:158.634667pt;}
._1d_c00078{width:169.450667pt;}
._26_c00078{width:181.632000pt;}
._49_c00078{width:226.389333pt;}
._46_c00078{width:243.456000pt;}
._3d_c00078{width:282.400000pt;}
._38_c00078{width:341.090667pt;}
._24_c00078{width:373.333333pt;}
._12_c00078{width:405.589333pt;}
._25_c00078{width:458.666667pt;}
._44_c00078{width:496.128000pt;}
._40_c00078{width:651.434667pt;}
._48_c00078{width:1922.880000pt;}
.fs8_c00078{font-size:21.333333pt;}
.fs1_c00078{font-size:32.000000pt;}
.fs9_c00078{font-size:42.666667pt;}
.fs6_c00078{font-size:64.000000pt;}
.fs3_c00078{font-size:74.666667pt;}
.fs2_c00078{font-size:85.333333pt;}
.fs5_c00078{font-size:88.000000pt;}
.fs0_c00078{font-size:90.666667pt;}
.fs7_c00078{font-size:93.333333pt;}
.fs4_c00078{font-size:146.666667pt;}
.y0_c00078{bottom:0.000000pt;}
.y27_c00078{bottom:2.760000pt;}
.y26_c00078{bottom:6.425217pt;}
.y24_c00078{bottom:84.906667pt;}
.y23_c00078{bottom:115.706667pt;}
.y22_c00078{bottom:146.373333pt;}
.y21_c00078{bottom:176.106667pt;}
.y20_c00078{bottom:206.906667pt;}
.y1f_c00078{bottom:236.640000pt;}
.y1e_c00078{bottom:267.040000pt;}
.y1d_c00078{bottom:296.640000pt;}
.y1c_c00078{bottom:326.906667pt;}
.y1b_c00078{bottom:357.040000pt;}
.y1a_c00078{bottom:387.573333pt;}
.y19_c00078{bottom:416.906667pt;}
.y18_c00078{bottom:446.640000pt;}
.y17_c00078{bottom:476.906667pt;}
.y16_c00078{bottom:506.373333pt;}
.y15_c00078{bottom:536.106667pt;}
.y14_c00078{bottom:565.840000pt;}
.y13_c00078{bottom:595.440000pt;}
.y12_c00078{bottom:625.440000pt;}
.y11_c00078{bottom:655.706667pt;}
.y10_c00078{bottom:685.440000pt;}
.yf_c00078{bottom:715.706667pt;}
.ye_c00078{bottom:743.973333pt;}
.yd_c00078{bottom:774.240000pt;}
.y25_c00078{bottom:792.506667pt;}
.yc_c00078{bottom:804.240000pt;}
.yb_c00078{bottom:834.506667pt;}
.ya_c00078{bottom:863.973333pt;}
.y9_c00078{bottom:893.440000pt;}
.y8_c00078{bottom:923.440000pt;}
.y7_c00078{bottom:953.040000pt;}
.y6_c00078{bottom:966.506667pt;}
.y5_c00078{bottom:985.706667pt;}
.y4_c00078{bottom:1012.506667pt;}
.y3_c00078{bottom:1043.040000pt;}
.y2_c00078{bottom:1146.506667pt;}
.y1_c00078{bottom:1155.306667pt;}
.h7_c00078{height:11.733399pt;}
.h8_c00078{height:38.937500pt;}
.h3_c00078{height:40.515625pt;}
.h2_c00078{height:91.375000pt;}
.h4_c00078{height:108.041667pt;}
.h6_c00078{height:118.170573pt;}
.h5_c00078{height:143.873698pt;}
.h0_c00078{height:1229.733333pt;}
.h1_c00078{height:1230.000000pt;}
.w2_c00078{width:93.222667pt;}
.w0_c00078{width:780.466667pt;}
.w1_c00078{width:780.666667pt;}
.x0_c00078{left:0.000000pt;}
.xa_c00078{left:13.600000pt;}
.x8_c00078{left:17.466667pt;}
.xb_c00078{left:30.400000pt;}
.x9_c00078{left:31.466667pt;}
.x7_c00078{left:32.400000pt;}
.x6_c00078{left:33.333333pt;}
.x5_c00078{left:34.266667pt;}
.x4_c00078{left:35.200000pt;}
.xc_c00078{left:36.266667pt;}
.x3_c00078{left:81.066667pt;}
.xe_c00078{left:347.401530pt;}
.x2_c00078{left:444.266667pt;}
.x1_c00078{left:473.466667pt;}
.xd_c00078{left:750.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4919e347515a289ad5519fa0.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_943a57efc02e950445fc6bbe.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_2e2d998278a9d6cb6efeb589.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_df7b6154e90c1f9bf8a4af6c.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_96b5146435ee5fb48895fcf3.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00079;src:url('chunks/assets/font_77fa4f69cd7c1e7e9266cb5d.woff2')format("woff");}.ff6_c00079{font-family:ff6_c00079;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00079;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00079{font-family:ff7_c00079;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls9_c00079{letter-spacing:0.000000px;}
.lsb_c00079{letter-spacing:3.000000px;}
.ls7_c00079{letter-spacing:5.196000px;}
.ls5_c00079{letter-spacing:6.996000px;}
.ls0_c00079{letter-spacing:7.290000px;}
.ls6_c00079{letter-spacing:10.092000px;}
.ls2_c00079{letter-spacing:10.155000px;}
.ls4_c00079{letter-spacing:20.292000px;}
.ls1_c00079{letter-spacing:22.754400px;}
.lsa_c00079{letter-spacing:24.000000px;}
.ls3_c00079{letter-spacing:24.555000px;}
.ls8_c00079{letter-spacing:33.492000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-23.136000px;}
.ws1_c00079{word-spacing:0.000000px;}
._5_c00079{margin-left:-45.327000px;}
._2_c00079{margin-left:-42.903000px;}
._7_c00079{margin-left:-37.149000px;}
._6_c00079{margin-left:-36.018000px;}
._3_c00079{margin-left:-30.090000px;}
._33_c00079{margin-left:-12.624000px;}
._23_c00079{margin-left:-10.428000px;}
._24_c00079{margin-left:-8.262000px;}
._22_c00079{margin-left:-6.339000px;}
._19_c00079{margin-left:-4.416000px;}
._17_c00079{margin-left:-3.216000px;}
._d_c00079{margin-left:-1.536000px;}
._1_c00079{width:1.200000px;}
._0_c00079{width:2.430000px;}
._1d_c00079{width:3.492000px;}
._e_c00079{width:4.512000px;}
._b_c00079{width:5.616000px;}
._9_c00079{width:6.720000px;}
._a_c00079{width:7.848000px;}
._4_c00079{width:9.048000px;}
._15_c00079{width:10.656000px;}
._c_c00079{width:12.480000px;}
._10_c00079{width:14.496000px;}
._2e_c00079{width:15.672000px;}
._14_c00079{width:16.722000px;}
._28_c00079{width:17.724000px;}
._1b_c00079{width:19.560000px;}
._18_c00079{width:21.312000px;}
._2b_c00079{width:25.182000px;}
._20_c00079{width:26.202000px;}
._8_c00079{width:27.714000px;}
._26_c00079{width:28.992000px;}
._1e_c00079{width:30.768000px;}
._13_c00079{width:32.562000px;}
._16_c00079{width:34.278000px;}
._2f_c00079{width:35.736000px;}
._1a_c00079{width:36.816000px;}
._11_c00079{width:38.628000px;}
._1c_c00079{width:39.954000px;}
._2a_c00079{width:41.574000px;}
._29_c00079{width:42.648000px;}
._12_c00079{width:43.806000px;}
._2c_c00079{width:45.498000px;}
._32_c00079{width:47.316000px;}
._1f_c00079{width:49.428000px;}
._f_c00079{width:50.592000px;}
._2d_c00079{width:52.110000px;}
._31_c00079{width:55.158000px;}
._25_c00079{width:58.578000px;}
._21_c00079{width:60.288000px;}
._30_c00079{width:64.002000px;}
._27_c00079{width:177.408000px;}
.fc2_c00079{color:transparent;}
.fc1_c00079{color:rgb(128,128,128);}
.fc0_c00079{color:rgb(0,0,0);}
.fs0_c00079{font-size:30.000000px;}
.fs8_c00079{font-size:48.000000px;}
.fs4_c00079{font-size:64.800000px;}
.fs7_c00079{font-size:78.000000px;}
.fs3_c00079{font-size:81.000000px;}
.fs6_c00079{font-size:84.000000px;}
.fs1_c00079{font-size:87.000000px;}
.fs2_c00079{font-size:96.000000px;}
.fs5_c00079{font-size:102.000000px;}
.y0_c00079{bottom:0.000000px;}
.y30_c00079{bottom:3.105000px;}
.y2f_c00079{bottom:7.228357px;}
.y2e_c00079{bottom:80.280000px;}
.y2d_c00079{bottom:113.730000px;}
.y2c_c00079{bottom:148.230000px;}
.y2b_c00079{bottom:181.680000px;}
.y2a_c00079{bottom:216.330000px;}
.y29_c00079{bottom:250.530000px;}
.y28_c00079{bottom:284.280000px;}
.y27_c00079{bottom:318.630000px;}
.y26_c00079{bottom:352.380000px;}
.y25_c00079{bottom:386.730000px;}
.y24_c00079{bottom:420.180000px;}
.y23_c00079{bottom:454.530000px;}
.y22_c00079{bottom:487.980000px;}
.y21_c00079{bottom:521.430000px;}
.y20_c00079{bottom:555.630000px;}
.y1f_c00079{bottom:589.380000px;}
.y1e_c00079{bottom:622.980000px;}
.y1d_c00079{bottom:656.730000px;}
.y14_c00079{bottom:663.480000px;}
.y1c_c00079{bottom:690.180000px;}
.y13_c00079{bottom:693.330000px;}
.y12_c00079{bottom:723.330000px;}
.y1b_c00079{bottom:724.230000px;}
.y11_c00079{bottom:751.980000px;}
.y1a_c00079{bottom:757.680000px;}
.y10_c00079{bottom:781.980000px;}
.y19_c00079{bottom:791.430000px;}
.yf_c00079{bottom:811.080000px;}
.y18_c00079{bottom:824.580000px;}
.ye_c00079{bottom:841.080000px;}
.y17_c00079{bottom:858.330000px;}
.yd_c00079{bottom:869.730000px;}
.y16_c00079{bottom:891.780000px;}
.yc_c00079{bottom:898.080000px;}
.y15_c00079{bottom:925.380000px;}
.yb_c00079{bottom:927.480000px;}
.ya_c00079{bottom:991.530000px;}
.y9_c00079{bottom:1057.830000px;}
.y2_c00079{bottom:1066.230000px;}
.y1_c00079{bottom:1074.030000px;}
.y8_c00079{bottom:1091.580000px;}
.y7_c00079{bottom:1125.180000px;}
.y6_c00079{bottom:1157.730000px;}
.y5_c00079{bottom:1191.330000px;}
.y4_c00079{bottom:1224.480000px;}
.y3_c00079{bottom:1257.180000px;}
.h9_c00079{height:13.200074px;}
.ha_c00079{height:43.804688px;}
.h5_c00079{height:87.804000px;}
.h6_c00079{height:98.314453px;}
.h7_c00079{height:98.756836px;}
.h2_c00079{height:110.151855px;}
.h3_c00079{height:121.546875px;}
.h8_c00079{height:128.543555px;}
.h4_c00079{height:129.143555px;}
.h0_c00079{height:1382.700000px;}
.h1_c00079{height:1383.000000px;}
.w2_c00079{width:104.875500px;}
.w0_c00079{width:863.175000px;}
.w1_c00079{width:863.250000px;}
.x0_c00079{left:0.000000px;}
.xa_c00079{left:58.500000px;}
.x9_c00079{left:59.700000px;}
.x1_c00079{left:61.800000px;}
.xb_c00079{left:86.700000px;}
.x8_c00079{left:87.750000px;}
.xc_c00079{left:101.700000px;}
.xf_c00079{left:273.600000px;}
.xe_c00079{left:275.100000px;}
.x6_c00079{left:276.750000px;}
.x5_c00079{left:277.800000px;}
.x4_c00079{left:278.850000px;}
.x3_c00079{left:279.900000px;}
.x2_c00079{left:281.700000px;}
.xd_c00079{left:326.400000px;}
.x7_c00079{left:375.600000px;}
.x11_c00079{left:383.401749px;}
.x10_c00079{left:818.400000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls9_c00079{letter-spacing:0.000000pt;}
.lsb_c00079{letter-spacing:2.666667pt;}
.ls7_c00079{letter-spacing:4.618667pt;}
.ls5_c00079{letter-spacing:6.218667pt;}
.ls0_c00079{letter-spacing:6.480000pt;}
.ls6_c00079{letter-spacing:8.970667pt;}
.ls2_c00079{letter-spacing:9.026667pt;}
.ls4_c00079{letter-spacing:18.037333pt;}
.ls1_c00079{letter-spacing:20.226133pt;}
.lsa_c00079{letter-spacing:21.333333pt;}
.ls3_c00079{letter-spacing:21.826667pt;}
.ls8_c00079{letter-spacing:29.770667pt;}
.ws0_c00079{word-spacing:-20.565333pt;}
.ws1_c00079{word-spacing:0.000000pt;}
._5_c00079{margin-left:-40.290667pt;}
._2_c00079{margin-left:-38.136000pt;}
._7_c00079{margin-left:-33.021333pt;}
._6_c00079{margin-left:-32.016000pt;}
._3_c00079{margin-left:-26.746667pt;}
._33_c00079{margin-left:-11.221333pt;}
._23_c00079{margin-left:-9.269333pt;}
._24_c00079{margin-left:-7.344000pt;}
._22_c00079{margin-left:-5.634667pt;}
._19_c00079{margin-left:-3.925333pt;}
._17_c00079{margin-left:-2.858667pt;}
._d_c00079{margin-left:-1.365333pt;}
._1_c00079{width:1.066667pt;}
._0_c00079{width:2.160000pt;}
._1d_c00079{width:3.104000pt;}
._e_c00079{width:4.010667pt;}
._b_c00079{width:4.992000pt;}
._9_c00079{width:5.973333pt;}
._a_c00079{width:6.976000pt;}
._4_c00079{width:8.042667pt;}
._15_c00079{width:9.472000pt;}
._c_c00079{width:11.093333pt;}
._10_c00079{width:12.885333pt;}
._2e_c00079{width:13.930667pt;}
._14_c00079{width:14.864000pt;}
._28_c00079{width:15.754667pt;}
._1b_c00079{width:17.386667pt;}
._18_c00079{width:18.944000pt;}
._2b_c00079{width:22.384000pt;}
._20_c00079{width:23.290667pt;}
._8_c00079{width:24.634667pt;}
._26_c00079{width:25.770667pt;}
._1e_c00079{width:27.349333pt;}
._13_c00079{width:28.944000pt;}
._16_c00079{width:30.469333pt;}
._2f_c00079{width:31.765333pt;}
._1a_c00079{width:32.725333pt;}
._11_c00079{width:34.336000pt;}
._1c_c00079{width:35.514667pt;}
._2a_c00079{width:36.954667pt;}
._29_c00079{width:37.909333pt;}
._12_c00079{width:38.938667pt;}
._2c_c00079{width:40.442667pt;}
._32_c00079{width:42.058667pt;}
._1f_c00079{width:43.936000pt;}
._f_c00079{width:44.970667pt;}
._2d_c00079{width:46.320000pt;}
._31_c00079{width:49.029333pt;}
._25_c00079{width:52.069333pt;}
._21_c00079{width:53.589333pt;}
._30_c00079{width:56.890667pt;}
._27_c00079{width:157.696000pt;}
.fs0_c00079{font-size:26.666667pt;}
.fs8_c00079{font-size:42.666667pt;}
.fs4_c00079{font-size:57.600000pt;}
.fs7_c00079{font-size:69.333333pt;}
.fs3_c00079{font-size:72.000000pt;}
.fs6_c00079{font-size:74.666667pt;}
.fs1_c00079{font-size:77.333333pt;}
.fs2_c00079{font-size:85.333333pt;}
.fs5_c00079{font-size:90.666667pt;}
.y0_c00079{bottom:0.000000pt;}
.y30_c00079{bottom:2.760000pt;}
.y2f_c00079{bottom:6.425206pt;}
.y2e_c00079{bottom:71.360000pt;}
.y2d_c00079{bottom:101.093333pt;}
.y2c_c00079{bottom:131.760000pt;}
.y2b_c00079{bottom:161.493333pt;}
.y2a_c00079{bottom:192.293333pt;}
.y29_c00079{bottom:222.693333pt;}
.y28_c00079{bottom:252.693333pt;}
.y27_c00079{bottom:283.226667pt;}
.y26_c00079{bottom:313.226667pt;}
.y25_c00079{bottom:343.760000pt;}
.y24_c00079{bottom:373.493333pt;}
.y23_c00079{bottom:404.026667pt;}
.y22_c00079{bottom:433.760000pt;}
.y21_c00079{bottom:463.493333pt;}
.y20_c00079{bottom:493.893333pt;}
.y1f_c00079{bottom:523.893333pt;}
.y1e_c00079{bottom:553.760000pt;}
.y1d_c00079{bottom:583.760000pt;}
.y14_c00079{bottom:589.760000pt;}
.y1c_c00079{bottom:613.493333pt;}
.y13_c00079{bottom:616.293333pt;}
.y12_c00079{bottom:642.960000pt;}
.y1b_c00079{bottom:643.760000pt;}
.y11_c00079{bottom:668.426667pt;}
.y1a_c00079{bottom:673.493333pt;}
.y10_c00079{bottom:695.093333pt;}
.y19_c00079{bottom:703.493333pt;}
.yf_c00079{bottom:720.960000pt;}
.y18_c00079{bottom:732.960000pt;}
.ye_c00079{bottom:747.626667pt;}
.y17_c00079{bottom:762.960000pt;}
.yd_c00079{bottom:773.093333pt;}
.y16_c00079{bottom:792.693333pt;}
.yc_c00079{bottom:798.293333pt;}
.y15_c00079{bottom:822.560000pt;}
.yb_c00079{bottom:824.426667pt;}
.ya_c00079{bottom:881.360000pt;}
.y9_c00079{bottom:940.293333pt;}
.y2_c00079{bottom:947.760000pt;}
.y1_c00079{bottom:954.693333pt;}
.y8_c00079{bottom:970.293333pt;}
.y7_c00079{bottom:1000.160000pt;}
.y6_c00079{bottom:1029.093333pt;}
.y5_c00079{bottom:1058.960000pt;}
.y4_c00079{bottom:1088.426667pt;}
.y3_c00079{bottom:1117.493333pt;}
.h9_c00079{height:11.733399pt;}
.ha_c00079{height:38.937500pt;}
.h5_c00079{height:78.048000pt;}
.h6_c00079{height:87.390625pt;}
.h7_c00079{height:87.783854pt;}
.h2_c00079{height:97.912760pt;}
.h3_c00079{height:108.041667pt;}
.h8_c00079{height:114.260937pt;}
.h4_c00079{height:114.794271pt;}
.h0_c00079{height:1229.066667pt;}
.h1_c00079{height:1229.333333pt;}
.w2_c00079{width:93.222667pt;}
.w0_c00079{width:767.266667pt;}
.w1_c00079{width:767.333333pt;}
.x0_c00079{left:0.000000pt;}
.xa_c00079{left:52.000000pt;}
.x9_c00079{left:53.066667pt;}
.x1_c00079{left:54.933333pt;}
.xb_c00079{left:77.066667pt;}
.x8_c00079{left:78.000000pt;}
.xc_c00079{left:90.400000pt;}
.xf_c00079{left:243.200000pt;}
.xe_c00079{left:244.533333pt;}
.x6_c00079{left:246.000000pt;}
.x5_c00079{left:246.933333pt;}
.x4_c00079{left:247.866667pt;}
.x3_c00079{left:248.800000pt;}
.x2_c00079{left:250.400000pt;}
.xd_c00079{left:290.133333pt;}
.x7_c00079{left:333.866667pt;}
.x11_c00079{left:340.801554pt;}
.x10_c00079{left:727.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_713e15ee7479357bb819e89e.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_d4c9e443ee936058a709b7a1.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_7d3efc1a7fd4914c18d03dfa.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_e6ec19418fd9534103d03b78.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_f164acb2b7dc42f724d4faa9.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00080;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00080{font-family:ff6_c00080;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls1_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:2.352000px;}
.ls2_c00080{letter-spacing:3.000000px;}
.ls3_c00080{letter-spacing:6.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:-20.244000px;}
.ws1_c00080{word-spacing:0.000000px;}
._4b_c00080{margin-left:-67.788000px;}
._53_c00080{margin-left:-52.965000px;}
._55_c00080{margin-left:-42.369000px;}
._51_c00080{margin-left:-36.630000px;}
._57_c00080{margin-left:-35.406000px;}
._54_c00080{margin-left:-32.505000px;}
._12_c00080{margin-left:-28.416000px;}
._58_c00080{margin-left:-27.390000px;}
._56_c00080{margin-left:-24.039000px;}
._42_c00080{margin-left:-21.732000px;}
._52_c00080{margin-left:-20.295000px;}
._59_c00080{margin-left:-18.666000px;}
._2f_c00080{margin-left:-17.556000px;}
._c_c00080{margin-left:-16.320000px;}
._31_c00080{margin-left:-15.072000px;}
._2e_c00080{margin-left:-13.920000px;}
._2d_c00080{margin-left:-12.000000px;}
._29_c00080{margin-left:-10.944000px;}
._1a_c00080{margin-left:-9.216000px;}
._19_c00080{margin-left:-8.160000px;}
._e_c00080{margin-left:-7.104000px;}
._9_c00080{margin-left:-5.184000px;}
._23_c00080{margin-left:-3.552000px;}
._13_c00080{margin-left:-2.400000px;}
._8_c00080{margin-left:-1.248000px;}
._10_c00080{width:1.536000px;}
._1_c00080{width:3.552000px;}
._2_c00080{width:5.568000px;}
._6_c00080{width:7.200000px;}
._5_c00080{width:8.640000px;}
._1b_c00080{width:9.696000px;}
._16_c00080{width:11.616000px;}
._25_c00080{width:12.672000px;}
._17_c00080{width:13.728000px;}
._21_c00080{width:14.880000px;}
._18_c00080{width:16.320000px;}
._b_c00080{width:17.376000px;}
._2c_c00080{width:18.432000px;}
._4_c00080{width:19.584000px;}
._15_c00080{width:20.736000px;}
._a_c00080{width:22.080000px;}
._32_c00080{width:24.288000px;}
._34_c00080{width:25.536000px;}
._1f_c00080{width:26.592000px;}
._7_c00080{width:27.648000px;}
._f_c00080{width:29.664000px;}
._3_c00080{width:31.104000px;}
._2b_c00080{width:32.448000px;}
._14_c00080{width:34.176000px;}
._11_c00080{width:36.288000px;}
._d_c00080{width:38.304000px;}
._0_c00080{width:39.744000px;}
._1d_c00080{width:41.184000px;}
._1e_c00080{width:42.336000px;}
._33_c00080{width:43.872000px;}
._24_c00080{width:45.408000px;}
._1c_c00080{width:47.040000px;}
._35_c00080{width:49.248000px;}
._2a_c00080{width:50.400000px;}
._26_c00080{width:51.936000px;}
._36_c00080{width:53.856000px;}
._3b_c00080{width:56.352000px;}
._22_c00080{width:57.888000px;}
._30_c00080{width:59.808000px;}
._4a_c00080{width:63.696000px;}
._4c_c00080{width:65.268000px;}
._5a_c00080{width:68.184000px;}
._27_c00080{width:69.600000px;}
._46_c00080{width:71.520000px;}
._4d_c00080{width:78.084000px;}
._3f_c00080{width:80.472000px;}
._40_c00080{width:83.376000px;}
._28_c00080{width:87.072000px;}
._41_c00080{width:88.872000px;}
._3c_c00080{width:98.880000px;}
._39_c00080{width:101.376000px;}
._38_c00080{width:103.488000px;}
._3a_c00080{width:104.544000px;}
._49_c00080{width:122.424000px;}
._48_c00080{width:130.848000px;}
._20_c00080{width:139.392000px;}
._3d_c00080{width:162.336000px;}
._3e_c00080{width:210.096000px;}
._45_c00080{width:261.504000px;}
._4e_c00080{width:305.376000px;}
._43_c00080{width:370.080000px;}
._50_c00080{width:474.168000px;}
._47_c00080{width:611.232000px;}
._44_c00080{width:686.016000px;}
._4f_c00080{width:701.760000px;}
._5b_c00080{width:705.600000px;}
._37_c00080{width:983.616000px;}
.fc2_c00080{color:transparent;}
.fc1_c00080{color:rgb(128,128,128);}
.fc0_c00080{color:rgb(0,0,0);}
.fs4_c00080{font-size:48.000000px;}
.fs1_c00080{font-size:84.000000px;}
.fs0_c00080{font-size:96.000000px;}
.fs2_c00080{font-size:102.000000px;}
.fs3_c00080{font-size:165.000000px;}
.y0_c00080{bottom:0.000000px;}
.y26_c00080{bottom:3.105000px;}
.y25_c00080{bottom:7.228363px;}
.y24_c00080{bottom:90.000000px;}
.y23_c00080{bottom:123.750000px;}
.y22_c00080{bottom:157.950000px;}
.y21_c00080{bottom:191.700000px;}
.y20_c00080{bottom:225.750000px;}
.y1f_c00080{bottom:259.200000px;}
.y1e_c00080{bottom:292.200000px;}
.y1d_c00080{bottom:324.300000px;}
.y1c_c00080{bottom:347.250000px;}
.y1b_c00080{bottom:360.450000px;}
.y1a_c00080{bottom:376.200000px;}
.y19_c00080{bottom:399.150000px;}
.y18_c00080{bottom:431.250000px;}
.y17_c00080{bottom:464.100000px;}
.y16_c00080{bottom:496.350000px;}
.y15_c00080{bottom:529.200000px;}
.y14_c00080{bottom:597.300000px;}
.y13_c00080{bottom:662.550000px;}
.y12_c00080{bottom:697.950000px;}
.y11_c00080{bottom:732.000000px;}
.y10_c00080{bottom:765.900000px;}
.yf_c00080{bottom:798.900000px;}
.ye_c00080{bottom:831.900000px;}
.yd_c00080{bottom:864.750000px;}
.yc_c00080{bottom:898.800000px;}
.yb_c00080{bottom:932.250000px;}
.ya_c00080{bottom:964.800000px;}
.y9_c00080{bottom:998.700000px;}
.y8_c00080{bottom:1032.000000px;}
.y7_c00080{bottom:1065.750000px;}
.y6_c00080{bottom:1099.950000px;}
.y5_c00080{bottom:1132.050000px;}
.y4_c00080{bottom:1165.350000px;}
.y3_c00080{bottom:1198.500000px;}
.y2_c00080{bottom:1231.500000px;}
.y1_c00080{bottom:1264.650000px;}
.h5_c00080{height:13.200074px;}
.h6_c00080{height:43.804688px;}
.h2_c00080{height:121.546875px;}
.h3_c00080{height:129.143555px;}
.h4_c00080{height:161.857910px;}
.h1_c00080{height:1341.750000px;}
.h0_c00080{height:1341.900000px;}
.w2_c00080{width:104.875500px;}
.w1_c00080{width:851.250000px;}
.w0_c00080{width:851.550000px;}
.x0_c00080{left:0.000000px;}
.x3_c00080{left:15.450000px;}
.x6_c00080{left:17.100000px;}
.x5_c00080{left:18.150000px;}
.x4_c00080{left:19.200000px;}
.x2_c00080{left:20.850000px;}
.x1_c00080{left:22.350000px;}
.xc_c00080{left:24.000000px;}
.xb_c00080{left:25.050000px;}
.x9_c00080{left:45.000000px;}
.x8_c00080{left:70.500000px;}
.x7_c00080{left:82.350000px;}
.xa_c00080{left:189.450000px;}
.xd_c00080{left:315.600000px;}
.xe_c00080{left:377.589249px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls1_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:2.090667pt;}
.ls2_c00080{letter-spacing:2.666667pt;}
.ls3_c00080{letter-spacing:5.333333pt;}
.ws0_c00080{word-spacing:-17.994667pt;}
.ws1_c00080{word-spacing:0.000000pt;}
._4b_c00080{margin-left:-60.256000pt;}
._53_c00080{margin-left:-47.080000pt;}
._55_c00080{margin-left:-37.661333pt;}
._51_c00080{margin-left:-32.560000pt;}
._57_c00080{margin-left:-31.472000pt;}
._54_c00080{margin-left:-28.893333pt;}
._12_c00080{margin-left:-25.258667pt;}
._58_c00080{margin-left:-24.346667pt;}
._56_c00080{margin-left:-21.368000pt;}
._42_c00080{margin-left:-19.317333pt;}
._52_c00080{margin-left:-18.040000pt;}
._59_c00080{margin-left:-16.592000pt;}
._2f_c00080{margin-left:-15.605333pt;}
._c_c00080{margin-left:-14.506667pt;}
._31_c00080{margin-left:-13.397333pt;}
._2e_c00080{margin-left:-12.373333pt;}
._2d_c00080{margin-left:-10.666667pt;}
._29_c00080{margin-left:-9.728000pt;}
._1a_c00080{margin-left:-8.192000pt;}
._19_c00080{margin-left:-7.253333pt;}
._e_c00080{margin-left:-6.314667pt;}
._9_c00080{margin-left:-4.608000pt;}
._23_c00080{margin-left:-3.157333pt;}
._13_c00080{margin-left:-2.133333pt;}
._8_c00080{margin-left:-1.109333pt;}
._10_c00080{width:1.365333pt;}
._1_c00080{width:3.157333pt;}
._2_c00080{width:4.949333pt;}
._6_c00080{width:6.400000pt;}
._5_c00080{width:7.680000pt;}
._1b_c00080{width:8.618667pt;}
._16_c00080{width:10.325333pt;}
._25_c00080{width:11.264000pt;}
._17_c00080{width:12.202667pt;}
._21_c00080{width:13.226667pt;}
._18_c00080{width:14.506667pt;}
._b_c00080{width:15.445333pt;}
._2c_c00080{width:16.384000pt;}
._4_c00080{width:17.408000pt;}
._15_c00080{width:18.432000pt;}
._a_c00080{width:19.626667pt;}
._32_c00080{width:21.589333pt;}
._34_c00080{width:22.698667pt;}
._1f_c00080{width:23.637333pt;}
._7_c00080{width:24.576000pt;}
._f_c00080{width:26.368000pt;}
._3_c00080{width:27.648000pt;}
._2b_c00080{width:28.842667pt;}
._14_c00080{width:30.378667pt;}
._11_c00080{width:32.256000pt;}
._d_c00080{width:34.048000pt;}
._0_c00080{width:35.328000pt;}
._1d_c00080{width:36.608000pt;}
._1e_c00080{width:37.632000pt;}
._33_c00080{width:38.997333pt;}
._24_c00080{width:40.362667pt;}
._1c_c00080{width:41.813333pt;}
._35_c00080{width:43.776000pt;}
._2a_c00080{width:44.800000pt;}
._26_c00080{width:46.165333pt;}
._36_c00080{width:47.872000pt;}
._3b_c00080{width:50.090667pt;}
._22_c00080{width:51.456000pt;}
._30_c00080{width:53.162667pt;}
._4a_c00080{width:56.618667pt;}
._4c_c00080{width:58.016000pt;}
._5a_c00080{width:60.608000pt;}
._27_c00080{width:61.866667pt;}
._46_c00080{width:63.573333pt;}
._4d_c00080{width:69.408000pt;}
._3f_c00080{width:71.530667pt;}
._40_c00080{width:74.112000pt;}
._28_c00080{width:77.397333pt;}
._41_c00080{width:78.997333pt;}
._3c_c00080{width:87.893333pt;}
._39_c00080{width:90.112000pt;}
._38_c00080{width:91.989333pt;}
._3a_c00080{width:92.928000pt;}
._49_c00080{width:108.821333pt;}
._48_c00080{width:116.309333pt;}
._20_c00080{width:123.904000pt;}
._3d_c00080{width:144.298667pt;}
._3e_c00080{width:186.752000pt;}
._45_c00080{width:232.448000pt;}
._4e_c00080{width:271.445333pt;}
._43_c00080{width:328.960000pt;}
._50_c00080{width:421.482667pt;}
._47_c00080{width:543.317333pt;}
._44_c00080{width:609.792000pt;}
._4f_c00080{width:623.786667pt;}
._5b_c00080{width:627.200000pt;}
._37_c00080{width:874.325333pt;}
.fs4_c00080{font-size:42.666667pt;}
.fs1_c00080{font-size:74.666667pt;}
.fs0_c00080{font-size:85.333333pt;}
.fs2_c00080{font-size:90.666667pt;}
.fs3_c00080{font-size:146.666667pt;}
.y0_c00080{bottom:0.000000pt;}
.y26_c00080{bottom:2.760000pt;}
.y25_c00080{bottom:6.425212pt;}
.y24_c00080{bottom:80.000000pt;}
.y23_c00080{bottom:110.000000pt;}
.y22_c00080{bottom:140.400000pt;}
.y21_c00080{bottom:170.400000pt;}
.y20_c00080{bottom:200.666667pt;}
.y1f_c00080{bottom:230.400000pt;}
.y1e_c00080{bottom:259.733333pt;}
.y1d_c00080{bottom:288.266667pt;}
.y1c_c00080{bottom:308.666667pt;}
.y1b_c00080{bottom:320.400000pt;}
.y1a_c00080{bottom:334.400000pt;}
.y19_c00080{bottom:354.800000pt;}
.y18_c00080{bottom:383.333333pt;}
.y17_c00080{bottom:412.533333pt;}
.y16_c00080{bottom:441.200000pt;}
.y15_c00080{bottom:470.400000pt;}
.y14_c00080{bottom:530.933333pt;}
.y13_c00080{bottom:588.933333pt;}
.y12_c00080{bottom:620.400000pt;}
.y11_c00080{bottom:650.666667pt;}
.y10_c00080{bottom:680.800000pt;}
.yf_c00080{bottom:710.133333pt;}
.ye_c00080{bottom:739.466667pt;}
.yd_c00080{bottom:768.666667pt;}
.yc_c00080{bottom:798.933333pt;}
.yb_c00080{bottom:828.666667pt;}
.ya_c00080{bottom:857.600000pt;}
.y9_c00080{bottom:887.733333pt;}
.y8_c00080{bottom:917.333333pt;}
.y7_c00080{bottom:947.333333pt;}
.y6_c00080{bottom:977.733333pt;}
.y5_c00080{bottom:1006.266667pt;}
.y4_c00080{bottom:1035.866667pt;}
.y3_c00080{bottom:1065.333333pt;}
.y2_c00080{bottom:1094.666667pt;}
.y1_c00080{bottom:1124.133333pt;}
.h5_c00080{height:11.733399pt;}
.h6_c00080{height:38.937500pt;}
.h2_c00080{height:108.041667pt;}
.h3_c00080{height:114.794271pt;}
.h4_c00080{height:143.873698pt;}
.h1_c00080{height:1192.666667pt;}
.h0_c00080{height:1192.800000pt;}
.w2_c00080{width:93.222667pt;}
.w1_c00080{width:756.666667pt;}
.w0_c00080{width:756.933333pt;}
.x0_c00080{left:0.000000pt;}
.x3_c00080{left:13.733333pt;}
.x6_c00080{left:15.200000pt;}
.x5_c00080{left:16.133333pt;}
.x4_c00080{left:17.066667pt;}
.x2_c00080{left:18.533333pt;}
.x1_c00080{left:19.866667pt;}
.xc_c00080{left:21.333333pt;}
.xb_c00080{left:22.266667pt;}
.x9_c00080{left:40.000000pt;}
.x8_c00080{left:62.666667pt;}
.x7_c00080{left:73.200000pt;}
.xa_c00080{left:168.400000pt;}
.xd_c00080{left:280.533333pt;}
.xe_c00080{left:335.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75aee2d6ffbd36f60b7b4512.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_7f23fea68b67145f3a2899ae.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_65241be733f3c2ae4cdc43a4.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls4_c00081{letter-spacing:0.000000px;}
.ls2_c00081{letter-spacing:4.752000px;}
.ls0_c00081{letter-spacing:6.552000px;}
.ls1_c00081{letter-spacing:9.588000px;}
.ls3_c00081{letter-spacing:11.052000px;}
.ls5_c00081{letter-spacing:45.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:-23.136000px;}
.ws1_c00081{word-spacing:0.000000px;}
._44_c00081{margin-left:-72.993000px;}
._3f_c00081{margin-left:-64.350000px;}
._49_c00081{margin-left:-62.292000px;}
._46_c00081{margin-left:-61.161000px;}
._40_c00081{margin-left:-59.073000px;}
._48_c00081{margin-left:-56.985000px;}
._43_c00081{margin-left:-51.852000px;}
._47_c00081{margin-left:-50.547000px;}
._45_c00081{margin-left:-48.111000px;}
._4a_c00081{margin-left:-45.849000px;}
._41_c00081{margin-left:-44.370000px;}
._4b_c00081{margin-left:-41.847000px;}
._39_c00081{margin-left:-36.576000px;}
._d_c00081{margin-left:-28.704000px;}
._3e_c00081{margin-left:-27.264000px;}
._1f_c00081{margin-left:-25.920000px;}
._42_c00081{margin-left:-20.013000px;}
._2d_c00081{margin-left:-18.528000px;}
._1e_c00081{margin-left:-16.704000px;}
._1d_c00081{margin-left:-15.552000px;}
._12_c00081{margin-left:-13.536000px;}
._13_c00081{margin-left:-10.848000px;}
._18_c00081{margin-left:-6.720000px;}
._25_c00081{margin-left:-4.224000px;}
._24_c00081{margin-left:-3.168000px;}
._7_c00081{margin-left:-1.920000px;}
._9_c00081{width:2.016000px;}
._2_c00081{width:3.072000px;}
._3_c00081{width:4.320000px;}
._1_c00081{width:5.376000px;}
._4_c00081{width:6.624000px;}
._17_c00081{width:7.680000px;}
._6_c00081{width:8.736000px;}
._0_c00081{width:10.272000px;}
._b_c00081{width:12.384000px;}
._1a_c00081{width:13.440000px;}
._5_c00081{width:14.592000px;}
._8_c00081{width:16.992000px;}
._3c_c00081{width:18.144000px;}
._1c_c00081{width:19.392000px;}
._2a_c00081{width:20.640000px;}
._2c_c00081{width:21.696000px;}
._23_c00081{width:24.192000px;}
._14_c00081{width:25.536000px;}
._2e_c00081{width:26.784000px;}
._15_c00081{width:28.128000px;}
._c_c00081{width:30.336000px;}
._10_c00081{width:31.488000px;}
._31_c00081{width:32.544000px;}
._e_c00081{width:34.176000px;}
._26_c00081{width:37.056000px;}
._a_c00081{width:38.112000px;}
._27_c00081{width:39.360000px;}
._f_c00081{width:40.416000px;}
._3d_c00081{width:41.472000px;}
._29_c00081{width:42.528000px;}
._16_c00081{width:43.584000px;}
._19_c00081{width:45.024000px;}
._2b_c00081{width:47.232000px;}
._22_c00081{width:48.288000px;}
._1b_c00081{width:49.344000px;}
._11_c00081{width:50.880000px;}
._32_c00081{width:52.320000px;}
._28_c00081{width:54.432000px;}
._34_c00081{width:56.064000px;}
._35_c00081{width:58.272000px;}
._20_c00081{width:60.000000px;}
._21_c00081{width:62.208000px;}
._33_c00081{width:64.320000px;}
._37_c00081{width:69.792000px;}
._2f_c00081{width:70.848000px;}
._38_c00081{width:80.832000px;}
._36_c00081{width:85.920000px;}
._30_c00081{width:140.448000px;}
._3a_c00081{width:196.224000px;}
._3b_c00081{width:211.560000px;}
.fc2_c00081{color:transparent;}
.fc1_c00081{color:rgb(128,128,128);}
.fc0_c00081{color:rgb(0,0,0);}
.fs2_c00081{font-size:24.000000px;}
.fs4_c00081{font-size:48.000000px;}
.fs1_c00081{font-size:84.000000px;}
.fs3_c00081{font-size:87.000000px;}
.fs0_c00081{font-size:96.000000px;}
.y0_c00081{bottom:0.000000px;}
.y28_c00081{bottom:3.105000px;}
.y27_c00081{bottom:7.228369px;}
.y24_c00081{bottom:72.270000px;}
.y23_c00081{bottom:106.920000px;}
.y22_c00081{bottom:142.020000px;}
.y21_c00081{bottom:176.520000px;}
.y20_c00081{bottom:210.270000px;}
.y1f_c00081{bottom:244.920000px;}
.y1e_c00081{bottom:280.020000px;}
.y1d_c00081{bottom:312.420000px;}
.y26_c00081{bottom:336.870000px;}
.y1c_c00081{bottom:347.220000px;}
.y1b_c00081{bottom:382.020000px;}
.y1a_c00081{bottom:415.470000px;}
.y19_c00081{bottom:449.820000px;}
.y25_c00081{bottom:455.970000px;}
.y18_c00081{bottom:483.570000px;}
.y17_c00081{bottom:517.620000px;}
.y16_c00081{bottom:551.520000px;}
.y15_c00081{bottom:585.120000px;}
.y14_c00081{bottom:619.020000px;}
.y13_c00081{bottom:652.620000px;}
.y12_c00081{bottom:686.370000px;}
.y11_c00081{bottom:720.120000px;}
.y10_c00081{bottom:753.570000px;}
.yf_c00081{bottom:787.020000px;}
.ye_c00081{bottom:821.070000px;}
.yd_c00081{bottom:854.520000px;}
.yc_c00081{bottom:888.270000px;}
.yb_c00081{bottom:921.420000px;}
.ya_c00081{bottom:954.420000px;}
.y9_c00081{bottom:987.870000px;}
.y8_c00081{bottom:1021.320000px;}
.y7_c00081{bottom:1054.320000px;}
.y6_c00081{bottom:1088.070000px;}
.y5_c00081{bottom:1121.220000px;}
.y4_c00081{bottom:1154.220000px;}
.y3_c00081{bottom:1187.970000px;}
.y2_c00081{bottom:1220.370000px;}
.y1_c00081{bottom:1253.820000px;}
.h4_c00081{height:13.200073px;}
.h5_c00081{height:43.804688px;}
.h3_c00081{height:110.151855px;}
.h2_c00081{height:121.546875px;}
.h1_c00081{height:1359.000000px;}
.h0_c00081{height:1359.150000px;}
.w2_c00081{width:104.875500px;}
.w1_c00081{width:848.250000px;}
.w0_c00081{width:848.325000px;}
.x0_c00081{left:0.000000px;}
.xd_c00081{left:43.200000px;}
.xc_c00081{left:87.450000px;}
.x7_c00081{left:134.100000px;}
.xa_c00081{left:243.750000px;}
.x9_c00081{left:261.600000px;}
.x8_c00081{left:262.650000px;}
.x6_c00081{left:263.700000px;}
.x5_c00081{left:264.900000px;}
.x4_c00081{left:265.950000px;}
.x3_c00081{left:267.000000px;}
.x2_c00081{left:268.050000px;}
.x1_c00081{left:269.100000px;}
.xe_c00081{left:375.976730px;}
.xb_c00081{left:781.650000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls4_c00081{letter-spacing:0.000000pt;}
.ls2_c00081{letter-spacing:4.224000pt;}
.ls0_c00081{letter-spacing:5.824000pt;}
.ls1_c00081{letter-spacing:8.522667pt;}
.ls3_c00081{letter-spacing:9.824000pt;}
.ls5_c00081{letter-spacing:40.000000pt;}
.ws0_c00081{word-spacing:-20.565333pt;}
.ws1_c00081{word-spacing:0.000000pt;}
._44_c00081{margin-left:-64.882667pt;}
._3f_c00081{margin-left:-57.200000pt;}
._49_c00081{margin-left:-55.370667pt;}
._46_c00081{margin-left:-54.365333pt;}
._40_c00081{margin-left:-52.509333pt;}
._48_c00081{margin-left:-50.653333pt;}
._43_c00081{margin-left:-46.090667pt;}
._47_c00081{margin-left:-44.930667pt;}
._45_c00081{margin-left:-42.765333pt;}
._4a_c00081{margin-left:-40.754667pt;}
._41_c00081{margin-left:-39.440000pt;}
._4b_c00081{margin-left:-37.197333pt;}
._39_c00081{margin-left:-32.512000pt;}
._d_c00081{margin-left:-25.514667pt;}
._3e_c00081{margin-left:-24.234667pt;}
._1f_c00081{margin-left:-23.040000pt;}
._42_c00081{margin-left:-17.789333pt;}
._2d_c00081{margin-left:-16.469333pt;}
._1e_c00081{margin-left:-14.848000pt;}
._1d_c00081{margin-left:-13.824000pt;}
._12_c00081{margin-left:-12.032000pt;}
._13_c00081{margin-left:-9.642667pt;}
._18_c00081{margin-left:-5.973333pt;}
._25_c00081{margin-left:-3.754667pt;}
._24_c00081{margin-left:-2.816000pt;}
._7_c00081{margin-left:-1.706667pt;}
._9_c00081{width:1.792000pt;}
._2_c00081{width:2.730667pt;}
._3_c00081{width:3.840000pt;}
._1_c00081{width:4.778667pt;}
._4_c00081{width:5.888000pt;}
._17_c00081{width:6.826667pt;}
._6_c00081{width:7.765333pt;}
._0_c00081{width:9.130667pt;}
._b_c00081{width:11.008000pt;}
._1a_c00081{width:11.946667pt;}
._5_c00081{width:12.970667pt;}
._8_c00081{width:15.104000pt;}
._3c_c00081{width:16.128000pt;}
._1c_c00081{width:17.237333pt;}
._2a_c00081{width:18.346667pt;}
._2c_c00081{width:19.285333pt;}
._23_c00081{width:21.504000pt;}
._14_c00081{width:22.698667pt;}
._2e_c00081{width:23.808000pt;}
._15_c00081{width:25.002667pt;}
._c_c00081{width:26.965333pt;}
._10_c00081{width:27.989333pt;}
._31_c00081{width:28.928000pt;}
._e_c00081{width:30.378667pt;}
._26_c00081{width:32.938667pt;}
._a_c00081{width:33.877333pt;}
._27_c00081{width:34.986667pt;}
._f_c00081{width:35.925333pt;}
._3d_c00081{width:36.864000pt;}
._29_c00081{width:37.802667pt;}
._16_c00081{width:38.741333pt;}
._19_c00081{width:40.021333pt;}
._2b_c00081{width:41.984000pt;}
._22_c00081{width:42.922667pt;}
._1b_c00081{width:43.861333pt;}
._11_c00081{width:45.226667pt;}
._32_c00081{width:46.506667pt;}
._28_c00081{width:48.384000pt;}
._34_c00081{width:49.834667pt;}
._35_c00081{width:51.797333pt;}
._20_c00081{width:53.333333pt;}
._21_c00081{width:55.296000pt;}
._33_c00081{width:57.173333pt;}
._37_c00081{width:62.037333pt;}
._2f_c00081{width:62.976000pt;}
._38_c00081{width:71.850667pt;}
._36_c00081{width:76.373333pt;}
._30_c00081{width:124.842667pt;}
._3a_c00081{width:174.421333pt;}
._3b_c00081{width:188.053333pt;}
.fs2_c00081{font-size:21.333333pt;}
.fs4_c00081{font-size:42.666667pt;}
.fs1_c00081{font-size:74.666667pt;}
.fs3_c00081{font-size:77.333333pt;}
.fs0_c00081{font-size:85.333333pt;}
.y0_c00081{bottom:0.000000pt;}
.y28_c00081{bottom:2.760000pt;}
.y27_c00081{bottom:6.425217pt;}
.y24_c00081{bottom:64.240000pt;}
.y23_c00081{bottom:95.040000pt;}
.y22_c00081{bottom:126.240000pt;}
.y21_c00081{bottom:156.906667pt;}
.y20_c00081{bottom:186.906667pt;}
.y1f_c00081{bottom:217.706667pt;}
.y1e_c00081{bottom:248.906667pt;}
.y1d_c00081{bottom:277.706667pt;}
.y26_c00081{bottom:299.440000pt;}
.y1c_c00081{bottom:308.640000pt;}
.y1b_c00081{bottom:339.573333pt;}
.y1a_c00081{bottom:369.306667pt;}
.y19_c00081{bottom:399.840000pt;}
.y25_c00081{bottom:405.306667pt;}
.y18_c00081{bottom:429.840000pt;}
.y17_c00081{bottom:460.106667pt;}
.y16_c00081{bottom:490.240000pt;}
.y15_c00081{bottom:520.106667pt;}
.y14_c00081{bottom:550.240000pt;}
.y13_c00081{bottom:580.106667pt;}
.y12_c00081{bottom:610.106667pt;}
.y11_c00081{bottom:640.106667pt;}
.y10_c00081{bottom:669.840000pt;}
.yf_c00081{bottom:699.573333pt;}
.ye_c00081{bottom:729.840000pt;}
.yd_c00081{bottom:759.573333pt;}
.yc_c00081{bottom:789.573333pt;}
.yb_c00081{bottom:819.040000pt;}
.ya_c00081{bottom:848.373333pt;}
.y9_c00081{bottom:878.106667pt;}
.y8_c00081{bottom:907.840000pt;}
.y7_c00081{bottom:937.173333pt;}
.y6_c00081{bottom:967.173333pt;}
.y5_c00081{bottom:996.640000pt;}
.y4_c00081{bottom:1025.973333pt;}
.y3_c00081{bottom:1055.973333pt;}
.y2_c00081{bottom:1084.773333pt;}
.y1_c00081{bottom:1114.506667pt;}
.h4_c00081{height:11.733399pt;}
.h5_c00081{height:38.937500pt;}
.h3_c00081{height:97.912760pt;}
.h2_c00081{height:108.041667pt;}
.h1_c00081{height:1208.000000pt;}
.h0_c00081{height:1208.133333pt;}
.w2_c00081{width:93.222667pt;}
.w1_c00081{width:754.000000pt;}
.w0_c00081{width:754.066667pt;}
.x0_c00081{left:0.000000pt;}
.xd_c00081{left:38.400000pt;}
.xc_c00081{left:77.733333pt;}
.x7_c00081{left:119.200000pt;}
.xa_c00081{left:216.666667pt;}
.x9_c00081{left:232.533333pt;}
.x8_c00081{left:233.466667pt;}
.x6_c00081{left:234.400000pt;}
.x5_c00081{left:235.466667pt;}
.x4_c00081{left:236.400000pt;}
.x3_c00081{left:237.333333pt;}
.x2_c00081{left:238.266667pt;}
.x1_c00081{left:239.200000pt;}
.xe_c00081{left:334.201538pt;}
.xb_c00081{left:694.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_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_7eed850de849e41057724a94.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_a297ef4fea029123cc0c177d.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_61367de1b9831009e3d93a82.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls3_c00082{letter-spacing:0.000000px;}
.ls1_c00082{letter-spacing:4.752000px;}
.ls4_c00082{letter-spacing:6.000000px;}
.ls2_c00082{letter-spacing:10.752000px;}
.ls0_c00082{letter-spacing:23.976000px;}
.ls5_c00082{letter-spacing:45.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:-23.136000px;}
.ws1_c00082{word-spacing:0.000000px;}
._32_c00082{margin-left:-74.076000px;}
._2c_c00082{margin-left:-66.294000px;}
._2e_c00082{margin-left:-42.528000px;}
._2d_c00082{margin-left:-40.203000px;}
._30_c00082{margin-left:-16.044000px;}
._22_c00082{margin-left:-11.328000px;}
._19_c00082{margin-left:-7.872000px;}
._f_c00082{margin-left:-4.128000px;}
._1d_c00082{margin-left:-2.496000px;}
._12_c00082{margin-left:-1.056000px;}
._3_c00082{width:1.920000px;}
._0_c00082{width:3.936000px;}
._1_c00082{width:5.280000px;}
._a_c00082{width:6.528000px;}
._d_c00082{width:7.968000px;}
._15_c00082{width:9.216000px;}
._9_c00082{width:11.232000px;}
._c_c00082{width:13.056000px;}
._e_c00082{width:14.304000px;}
._1c_c00082{width:15.552000px;}
._5_c00082{width:16.800000px;}
._28_c00082{width:18.048000px;}
._7_c00082{width:19.104000px;}
._20_c00082{width:20.736000px;}
._16_c00082{width:21.888000px;}
._2_c00082{width:25.536000px;}
._18_c00082{width:26.976000px;}
._6_c00082{width:28.704000px;}
._8_c00082{width:29.760000px;}
._1b_c00082{width:30.912000px;}
._17_c00082{width:32.448000px;}
._b_c00082{width:34.464000px;}
._13_c00082{width:36.000000px;}
._4_c00082{width:37.632000px;}
._10_c00082{width:39.648000px;}
._14_c00082{width:40.992000px;}
._25_c00082{width:42.432000px;}
._2a_c00082{width:43.680000px;}
._1f_c00082{width:45.216000px;}
._24_c00082{width:47.232000px;}
._11_c00082{width:48.960000px;}
._1a_c00082{width:50.112000px;}
._29_c00082{width:51.360000px;}
._27_c00082{width:52.608000px;}
._2b_c00082{width:55.200000px;}
._2f_c00082{width:56.952000px;}
._26_c00082{width:59.904000px;}
._23_c00082{width:62.304000px;}
._1e_c00082{width:63.936000px;}
._21_c00082{width:66.624000px;}
._33_c00082{width:227.328000px;}
._31_c00082{width:981.312000px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(128,128,128);}
.fc0_c00082{color:rgb(0,0,0);}
.fs5_c00082{font-size:48.000000px;}
.fs4_c00082{font-size:78.000000px;}
.fs2_c00082{font-size:84.000000px;}
.fs3_c00082{font-size:87.000000px;}
.fs0_c00082{font-size:96.000000px;}
.fs1_c00082{font-size:144.000000px;}
.y0_c00082{bottom:0.000000px;}
.y26_c00082{bottom:3.105000px;}
.y25_c00082{bottom:7.228369px;}
.y24_c00082{bottom:86.970000px;}
.y23_c00082{bottom:122.520000px;}
.y21_c00082{bottom:221.370000px;}
.y20_c00082{bottom:257.070000px;}
.y1f_c00082{bottom:291.270000px;}
.y1e_c00082{bottom:325.020000px;}
.y1d_c00082{bottom:359.070000px;}
.y1c_c00082{bottom:392.820000px;}
.y1b_c00082{bottom:427.170000px;}
.y1a_c00082{bottom:460.320000px;}
.y19_c00082{bottom:494.070000px;}
.y18_c00082{bottom:527.220000px;}
.y17_c00082{bottom:562.020000px;}
.y16_c00082{bottom:595.020000px;}
.y15_c00082{bottom:628.020000px;}
.y14_c00082{bottom:661.770000px;}
.y13_c00082{bottom:695.820000px;}
.y12_c00082{bottom:728.670000px;}
.y11_c00082{bottom:762.720000px;}
.y10_c00082{bottom:796.020000px;}
.yf_c00082{bottom:829.170000px;}
.ye_c00082{bottom:862.320000px;}
.yd_c00082{bottom:895.620000px;}
.yc_c00082{bottom:929.070000px;}
.yb_c00082{bottom:963.120000px;}
.y22_c00082{bottom:972.570000px;}
.ya_c00082{bottom:996.870000px;}
.y9_c00082{bottom:1029.720000px;}
.y8_c00082{bottom:1063.170000px;}
.y7_c00082{bottom:1096.470000px;}
.y6_c00082{bottom:1129.920000px;}
.y5_c00082{bottom:1163.070000px;}
.y4_c00082{bottom:1196.070000px;}
.y3_c00082{bottom:1229.220000px;}
.y2_c00082{bottom:1262.970000px;}
.y1_c00082{bottom:1279.170000px;}
.h5_c00082{height:13.200073px;}
.h6_c00082{height:43.804688px;}
.h4_c00082{height:110.151855px;}
.h3_c00082{height:121.546875px;}
.h2_c00082{height:168.539062px;}
.h0_c00082{height:1383.450000px;}
.h1_c00082{height:1383.750000px;}
.w2_c00082{width:104.875500px;}
.w0_c00082{width:878.025000px;}
.w1_c00082{width:878.250000px;}
.x0_c00082{left:0.000000px;}
.x5_c00082{left:50.400000px;}
.x4_c00082{left:51.600000px;}
.x3_c00082{left:52.650000px;}
.x2_c00082{left:53.700000px;}
.x6_c00082{left:55.350000px;}
.x7_c00082{left:56.400000px;}
.x8_c00082{left:57.600000px;}
.xa_c00082{left:142.350000px;}
.xc_c00082{left:390.826721px;}
.x1_c00082{left:534.300000px;}
.xb_c00082{left:544.500000px;}
.x9_c00082{left:659.700000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls3_c00082{letter-spacing:0.000000pt;}
.ls1_c00082{letter-spacing:4.224000pt;}
.ls4_c00082{letter-spacing:5.333333pt;}
.ls2_c00082{letter-spacing:9.557333pt;}
.ls0_c00082{letter-spacing:21.312000pt;}
.ls5_c00082{letter-spacing:40.000000pt;}
.ws0_c00082{word-spacing:-20.565333pt;}
.ws1_c00082{word-spacing:0.000000pt;}
._32_c00082{margin-left:-65.845333pt;}
._2c_c00082{margin-left:-58.928000pt;}
._2e_c00082{margin-left:-37.802667pt;}
._2d_c00082{margin-left:-35.736000pt;}
._30_c00082{margin-left:-14.261333pt;}
._22_c00082{margin-left:-10.069333pt;}
._19_c00082{margin-left:-6.997333pt;}
._f_c00082{margin-left:-3.669333pt;}
._1d_c00082{margin-left:-2.218667pt;}
._12_c00082{margin-left:-0.938667pt;}
._3_c00082{width:1.706667pt;}
._0_c00082{width:3.498667pt;}
._1_c00082{width:4.693333pt;}
._a_c00082{width:5.802667pt;}
._d_c00082{width:7.082667pt;}
._15_c00082{width:8.192000pt;}
._9_c00082{width:9.984000pt;}
._c_c00082{width:11.605333pt;}
._e_c00082{width:12.714667pt;}
._1c_c00082{width:13.824000pt;}
._5_c00082{width:14.933333pt;}
._28_c00082{width:16.042667pt;}
._7_c00082{width:16.981333pt;}
._20_c00082{width:18.432000pt;}
._16_c00082{width:19.456000pt;}
._2_c00082{width:22.698667pt;}
._18_c00082{width:23.978667pt;}
._6_c00082{width:25.514667pt;}
._8_c00082{width:26.453333pt;}
._1b_c00082{width:27.477333pt;}
._17_c00082{width:28.842667pt;}
._b_c00082{width:30.634667pt;}
._13_c00082{width:32.000000pt;}
._4_c00082{width:33.450667pt;}
._10_c00082{width:35.242667pt;}
._14_c00082{width:36.437333pt;}
._25_c00082{width:37.717333pt;}
._2a_c00082{width:38.826667pt;}
._1f_c00082{width:40.192000pt;}
._24_c00082{width:41.984000pt;}
._11_c00082{width:43.520000pt;}
._1a_c00082{width:44.544000pt;}
._29_c00082{width:45.653333pt;}
._27_c00082{width:46.762667pt;}
._2b_c00082{width:49.066667pt;}
._2f_c00082{width:50.624000pt;}
._26_c00082{width:53.248000pt;}
._23_c00082{width:55.381333pt;}
._1e_c00082{width:56.832000pt;}
._21_c00082{width:59.221333pt;}
._33_c00082{width:202.069333pt;}
._31_c00082{width:872.277333pt;}
.fs5_c00082{font-size:42.666667pt;}
.fs4_c00082{font-size:69.333333pt;}
.fs2_c00082{font-size:74.666667pt;}
.fs3_c00082{font-size:77.333333pt;}
.fs0_c00082{font-size:85.333333pt;}
.fs1_c00082{font-size:128.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y26_c00082{bottom:2.760000pt;}
.y25_c00082{bottom:6.425217pt;}
.y24_c00082{bottom:77.306667pt;}
.y23_c00082{bottom:108.906667pt;}
.y21_c00082{bottom:196.773333pt;}
.y20_c00082{bottom:228.506667pt;}
.y1f_c00082{bottom:258.906667pt;}
.y1e_c00082{bottom:288.906667pt;}
.y1d_c00082{bottom:319.173333pt;}
.y1c_c00082{bottom:349.173333pt;}
.y1b_c00082{bottom:379.706667pt;}
.y1a_c00082{bottom:409.173333pt;}
.y19_c00082{bottom:439.173333pt;}
.y18_c00082{bottom:468.640000pt;}
.y17_c00082{bottom:499.573333pt;}
.y16_c00082{bottom:528.906667pt;}
.y15_c00082{bottom:558.240000pt;}
.y14_c00082{bottom:588.240000pt;}
.y13_c00082{bottom:618.506667pt;}
.y12_c00082{bottom:647.706667pt;}
.y11_c00082{bottom:677.973333pt;}
.y10_c00082{bottom:707.573333pt;}
.yf_c00082{bottom:737.040000pt;}
.ye_c00082{bottom:766.506667pt;}
.yd_c00082{bottom:796.106667pt;}
.yc_c00082{bottom:825.840000pt;}
.yb_c00082{bottom:856.106667pt;}
.y22_c00082{bottom:864.506667pt;}
.ya_c00082{bottom:886.106667pt;}
.y9_c00082{bottom:915.306667pt;}
.y8_c00082{bottom:945.040000pt;}
.y7_c00082{bottom:974.640000pt;}
.y6_c00082{bottom:1004.373333pt;}
.y5_c00082{bottom:1033.840000pt;}
.y4_c00082{bottom:1063.173333pt;}
.y3_c00082{bottom:1092.640000pt;}
.y2_c00082{bottom:1122.640000pt;}
.y1_c00082{bottom:1137.040000pt;}
.h5_c00082{height:11.733399pt;}
.h6_c00082{height:38.937500pt;}
.h4_c00082{height:97.912760pt;}
.h3_c00082{height:108.041667pt;}
.h2_c00082{height:149.812500pt;}
.h0_c00082{height:1229.733333pt;}
.h1_c00082{height:1230.000000pt;}
.w2_c00082{width:93.222667pt;}
.w0_c00082{width:780.466667pt;}
.w1_c00082{width:780.666667pt;}
.x0_c00082{left:0.000000pt;}
.x5_c00082{left:44.800000pt;}
.x4_c00082{left:45.866667pt;}
.x3_c00082{left:46.800000pt;}
.x2_c00082{left:47.733333pt;}
.x6_c00082{left:49.200000pt;}
.x7_c00082{left:50.133333pt;}
.x8_c00082{left:51.200000pt;}
.xa_c00082{left:126.533333pt;}
.xc_c00082{left:347.401530pt;}
.x1_c00082{left:474.933333pt;}
.xb_c00082{left:484.000000pt;}
.x9_c00082{left:586.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_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_dd56f65fa1c909aeb0a6bc91.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_e2a71daa4dc23030d4b3459d.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_ddcc69c4d812accd603c7b04.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_f10fd6f9aa2eeee73d04e389.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_45342242d1b8430c031661e2.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00083;src:url('chunks/assets/font_d6d87349a15ad3b25b6775a2.woff2')format("woff");}.ff6_c00083{font-family:ff6_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00083;src:url('chunks/assets/font_05e5baa7a3685a6a0f9d6093.woff2')format("woff");}.ff7_c00083{font-family:ff7_c00083;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00083;src:url('chunks/assets/font_f924d1dec0da6b724a7a07f3.woff2')format("woff");}.ff8_c00083{font-family:ff8_c00083;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00083;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00083{font-family:ff9_c00083;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.lsc_c00083{letter-spacing:-3.000000px;}
.ls7_c00083{letter-spacing:0.000000px;}
.ls9_c00083{letter-spacing:3.000000px;}
.ls0_c00083{letter-spacing:5.880000px;}
.lsa_c00083{letter-spacing:6.000000px;}
.ls1_c00083{letter-spacing:13.905600px;}
.ls8_c00083{letter-spacing:24.000000px;}
.ls2_c00083{letter-spacing:24.240000px;}
.lsb_c00083{letter-spacing:33.000000px;}
.ls5_c00083{letter-spacing:61.692000px;}
.ls3_c00083{letter-spacing:197.892000px;}
.ls6_c00083{letter-spacing:202.092000px;}
.lsd_c00083{letter-spacing:276.000000px;}
.ls4_c00083{letter-spacing:311.664000px;}
.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;}
}
.ws1_c00083{word-spacing:-56.859000px;}
.ws0_c00083{word-spacing:-20.244000px;}
.ws4_c00083{word-spacing:0.000000px;}
.ws2_c00083{word-spacing:4.056000px;}
.ws3_c00083{word-spacing:1369.536000px;}
._6e_c00083{margin-left:-281.760000px;}
._6d_c00083{margin-left:-280.512000px;}
._6f_c00083{margin-left:-258.816000px;}
._48_c00083{margin-left:-66.990000px;}
._50_c00083{margin-left:-63.525000px;}
._54_c00083{margin-left:-55.170000px;}
._56_c00083{margin-left:-53.034000px;}
._47_c00083{margin-left:-50.325000px;}
._4f_c00083{margin-left:-47.937000px;}
._51_c00083{margin-left:-46.017000px;}
._4a_c00083{margin-left:-44.385000px;}
._4b_c00083{margin-left:-41.808000px;}
._4c_c00083{margin-left:-36.795000px;}
._35_c00083{margin-left:-34.680000px;}
._55_c00083{margin-left:-33.096000px;}
._31_c00083{margin-left:-31.626000px;}
._33_c00083{margin-left:-29.376000px;}
._49_c00083{margin-left:-27.885000px;}
._1a_c00083{margin-left:-26.796000px;}
._28_c00083{margin-left:-24.600000px;}
._4e_c00083{margin-left:-23.037000px;}
._9_c00083{margin-left:-20.448000px;}
._27_c00083{margin-left:-18.996000px;}
._1e_c00083{margin-left:-17.793000px;}
._39_c00083{margin-left:-16.044000px;}
._4d_c00083{margin-left:-15.015000px;}
._46_c00083{margin-left:-13.632000px;}
._5b_c00083{margin-left:-11.376000px;}
._23_c00083{margin-left:-9.576000px;}
._22_c00083{margin-left:-7.728000px;}
._5_c00083{margin-left:-6.132000px;}
._1_c00083{margin-left:-4.956000px;}
._0_c00083{margin-left:-3.780000px;}
._3_c00083{margin-left:-2.604000px;}
._1c_c00083{margin-left:-1.377000px;}
._f_c00083{width:1.464000px;}
._4_c00083{width:2.604000px;}
._11_c00083{width:4.212000px;}
._e_c00083{width:5.472000px;}
._b_c00083{width:6.492000px;}
._c_c00083{width:7.656000px;}
._2_c00083{width:8.988000px;}
._7_c00083{width:10.788000px;}
._60_c00083{width:11.844000px;}
._d_c00083{width:13.008000px;}
._10_c00083{width:14.688000px;}
._6c_c00083{width:16.110000px;}
._12_c00083{width:17.364000px;}
._1d_c00083{width:19.545000px;}
._5e_c00083{width:21.072000px;}
._30_c00083{width:22.080000px;}
._21_c00083{width:24.192000px;}
._42_c00083{width:25.512000px;}
._a_c00083{width:27.840000px;}
._16_c00083{width:30.108000px;}
._3a_c00083{width:31.200000px;}
._19_c00083{width:32.256000px;}
._2f_c00083{width:34.908000px;}
._44_c00083{width:36.108000px;}
._17_c00083{width:37.200000px;}
._68_c00083{width:38.283000px;}
._1b_c00083{width:39.324000px;}
._43_c00083{width:40.404000px;}
._3c_c00083{width:42.408000px;}
._5c_c00083{width:43.416000px;}
._15_c00083{width:45.516000px;}
._18_c00083{width:47.724000px;}
._5f_c00083{width:48.792000px;}
._41_c00083{width:50.223000px;}
._40_c00083{width:51.720000px;}
._3f_c00083{width:53.529000px;}
._1f_c00083{width:54.717000px;}
._5d_c00083{width:55.824000px;}
._14_c00083{width:57.132000px;}
._3b_c00083{width:58.224000px;}
._32_c00083{width:60.792000px;}
._3d_c00083{width:62.964000px;}
._2d_c00083{width:64.032000px;}
._3e_c00083{width:65.256000px;}
._2b_c00083{width:69.588000px;}
._5a_c00083{width:70.821000px;}
._52_c00083{width:72.576000px;}
._6a_c00083{width:75.033000px;}
._13_c00083{width:81.804000px;}
._69_c00083{width:90.171000px;}
._24_c00083{width:95.508000px;}
._29_c00083{width:98.976000px;}
._8_c00083{width:109.728000px;}
._62_c00083{width:115.863000px;}
._61_c00083{width:144.132000px;}
._2a_c00083{width:160.980000px;}
._37_c00083{width:162.168000px;}
._58_c00083{width:176.997000px;}
._64_c00083{width:192.234000px;}
._36_c00083{width:214.098000px;}
._57_c00083{width:217.536000px;}
._25_c00083{width:221.664000px;}
._59_c00083{width:233.385000px;}
._6_c00083{width:250.800000px;}
._63_c00083{width:263.919000px;}
._34_c00083{width:315.486000px;}
._53_c00083{width:319.977000px;}
._26_c00083{width:367.956000px;}
._2e_c00083{width:385.836000px;}
._6b_c00083{width:445.656000px;}
._45_c00083{width:485.328000px;}
._20_c00083{width:501.948000px;}
._67_c00083{width:505.422000px;}
._2c_c00083{width:539.472000px;}
._65_c00083{width:544.296000px;}
._38_c00083{width:691.152000px;}
._66_c00083{width:692.196000px;}
.fc2_c00083{color:transparent;}
.fc1_c00083{color:rgb(128,128,128);}
.fc0_c00083{color:rgb(0,0,0);}
.fsb_c00083{font-size:48.000000px;}
.fs3_c00083{font-size:60.000000px;}
.fs1_c00083{font-size:67.200000px;}
.fs9_c00083{font-size:78.000000px;}
.fs5_c00083{font-size:81.000000px;}
.fs0_c00083{font-size:84.000000px;}
.fs4_c00083{font-size:87.000000px;}
.fs2_c00083{font-size:96.000000px;}
.fs8_c00083{font-size:99.000000px;}
.fs6_c00083{font-size:102.000000px;}
.fsa_c00083{font-size:105.000000px;}
.fs7_c00083{font-size:165.000000px;}
.y0_c00083{bottom:0.000000px;}
.y28_c00083{bottom:3.105000px;}
.y27_c00083{bottom:7.228357px;}
.y26_c00083{bottom:68.580000px;}
.y25_c00083{bottom:105.930000px;}
.y24_c00083{bottom:140.430000px;}
.y23_c00083{bottom:174.930000px;}
.y22_c00083{bottom:208.680000px;}
.y21_c00083{bottom:243.330000px;}
.y20_c00083{bottom:277.830000px;}
.y1f_c00083{bottom:311.880000px;}
.y1e_c00083{bottom:345.930000px;}
.y1d_c00083{bottom:379.830000px;}
.y1c_c00083{bottom:413.730000px;}
.y1b_c00083{bottom:447.630000px;}
.y1a_c00083{bottom:481.980000px;}
.y19_c00083{bottom:514.980000px;}
.y18_c00083{bottom:547.380000px;}
.y17_c00083{bottom:581.280000px;}
.y16_c00083{bottom:601.530000px;}
.y15_c00083{bottom:621.780000px;}
.y14_c00083{bottom:654.030000px;}
.y13_c00083{bottom:686.880000px;}
.y12_c00083{bottom:718.530000px;}
.y11_c00083{bottom:751.230000px;}
.y10_c00083{bottom:783.330000px;}
.yf_c00083{bottom:814.830000px;}
.ye_c00083{bottom:835.380000px;}
.yd_c00083{bottom:857.280000px;}
.yc_c00083{bottom:889.080000px;}
.yb_c00083{bottom:921.480000px;}
.ya_c00083{bottom:953.130000px;}
.y9_c00083{bottom:984.780000px;}
.y8_c00083{bottom:1016.880000px;}
.y7_c00083{bottom:1038.780000px;}
.y6_c00083{bottom:1052.280000px;}
.y5_c00083{bottom:1069.830000px;}
.y4_c00083{bottom:1091.130000px;}
.y3_c00083{bottom:1121.880000px;}
.y2_c00083{bottom:1154.580000px;}
.y1_c00083{bottom:1185.630000px;}
.h6_c00083{height:13.200074px;}
.h7_c00083{height:43.804688px;}
.h2_c00083{height:121.546875px;}
.h3_c00083{height:129.143555px;}
.h5_c00083{height:132.941895px;}
.h4_c00083{height:161.857910px;}
.h0_c00083{height:1362.450000px;}
.h1_c00083{height:1362.750000px;}
.w2_c00083{width:104.875500px;}
.w1_c00083{width:849.750000px;}
.w0_c00083{width:849.975000px;}
.x0_c00083{left:0.000000px;}
.x8_c00083{left:45.150000px;}
.x6_c00083{left:46.200000px;}
.x5_c00083{left:47.250000px;}
.x3_c00083{left:48.300000px;}
.x2_c00083{left:49.350000px;}
.x1_c00083{left:78.000000px;}
.x4_c00083{left:143.400000px;}
.x7_c00083{left:164.700000px;}
.xb_c00083{left:258.450000px;}
.xc_c00083{left:261.150000px;}
.xa_c00083{left:263.850000px;}
.x9_c00083{left:264.900000px;}
.xd_c00083{left:281.100000px;}
.xe_c00083{left:376.801758px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.lsc_c00083{letter-spacing:-2.666667pt;}
.ls7_c00083{letter-spacing:0.000000pt;}
.ls9_c00083{letter-spacing:2.666667pt;}
.ls0_c00083{letter-spacing:5.226667pt;}
.lsa_c00083{letter-spacing:5.333333pt;}
.ls1_c00083{letter-spacing:12.360533pt;}
.ls8_c00083{letter-spacing:21.333333pt;}
.ls2_c00083{letter-spacing:21.546667pt;}
.lsb_c00083{letter-spacing:29.333333pt;}
.ls5_c00083{letter-spacing:54.837333pt;}
.ls3_c00083{letter-spacing:175.904000pt;}
.ls6_c00083{letter-spacing:179.637333pt;}
.lsd_c00083{letter-spacing:245.333333pt;}
.ls4_c00083{letter-spacing:277.034667pt;}
.ws1_c00083{word-spacing:-50.541333pt;}
.ws0_c00083{word-spacing:-17.994667pt;}
.ws4_c00083{word-spacing:0.000000pt;}
.ws2_c00083{word-spacing:3.605333pt;}
.ws3_c00083{word-spacing:1217.365333pt;}
._6e_c00083{margin-left:-250.453333pt;}
._6d_c00083{margin-left:-249.344000pt;}
._6f_c00083{margin-left:-230.058667pt;}
._48_c00083{margin-left:-59.546667pt;}
._50_c00083{margin-left:-56.466667pt;}
._54_c00083{margin-left:-49.040000pt;}
._56_c00083{margin-left:-47.141333pt;}
._47_c00083{margin-left:-44.733333pt;}
._4f_c00083{margin-left:-42.610667pt;}
._51_c00083{margin-left:-40.904000pt;}
._4a_c00083{margin-left:-39.453333pt;}
._4b_c00083{margin-left:-37.162667pt;}
._4c_c00083{margin-left:-32.706667pt;}
._35_c00083{margin-left:-30.826667pt;}
._55_c00083{margin-left:-29.418667pt;}
._31_c00083{margin-left:-28.112000pt;}
._33_c00083{margin-left:-26.112000pt;}
._49_c00083{margin-left:-24.786667pt;}
._1a_c00083{margin-left:-23.818667pt;}
._28_c00083{margin-left:-21.866667pt;}
._4e_c00083{margin-left:-20.477333pt;}
._9_c00083{margin-left:-18.176000pt;}
._27_c00083{margin-left:-16.885333pt;}
._1e_c00083{margin-left:-15.816000pt;}
._39_c00083{margin-left:-14.261333pt;}
._4d_c00083{margin-left:-13.346667pt;}
._46_c00083{margin-left:-12.117333pt;}
._5b_c00083{margin-left:-10.112000pt;}
._23_c00083{margin-left:-8.512000pt;}
._22_c00083{margin-left:-6.869333pt;}
._5_c00083{margin-left:-5.450667pt;}
._1_c00083{margin-left:-4.405333pt;}
._0_c00083{margin-left:-3.360000pt;}
._3_c00083{margin-left:-2.314667pt;}
._1c_c00083{margin-left:-1.224000pt;}
._f_c00083{width:1.301333pt;}
._4_c00083{width:2.314667pt;}
._11_c00083{width:3.744000pt;}
._e_c00083{width:4.864000pt;}
._b_c00083{width:5.770667pt;}
._c_c00083{width:6.805333pt;}
._2_c00083{width:7.989333pt;}
._7_c00083{width:9.589333pt;}
._60_c00083{width:10.528000pt;}
._d_c00083{width:11.562667pt;}
._10_c00083{width:13.056000pt;}
._6c_c00083{width:14.320000pt;}
._12_c00083{width:15.434667pt;}
._1d_c00083{width:17.373333pt;}
._5e_c00083{width:18.730667pt;}
._30_c00083{width:19.626667pt;}
._21_c00083{width:21.504000pt;}
._42_c00083{width:22.677333pt;}
._a_c00083{width:24.746667pt;}
._16_c00083{width:26.762667pt;}
._3a_c00083{width:27.733333pt;}
._19_c00083{width:28.672000pt;}
._2f_c00083{width:31.029333pt;}
._44_c00083{width:32.096000pt;}
._17_c00083{width:33.066667pt;}
._68_c00083{width:34.029333pt;}
._1b_c00083{width:34.954667pt;}
._43_c00083{width:35.914667pt;}
._3c_c00083{width:37.696000pt;}
._5c_c00083{width:38.592000pt;}
._15_c00083{width:40.458667pt;}
._18_c00083{width:42.421333pt;}
._5f_c00083{width:43.370667pt;}
._41_c00083{width:44.642667pt;}
._40_c00083{width:45.973333pt;}
._3f_c00083{width:47.581333pt;}
._1f_c00083{width:48.637333pt;}
._5d_c00083{width:49.621333pt;}
._14_c00083{width:50.784000pt;}
._3b_c00083{width:51.754667pt;}
._32_c00083{width:54.037333pt;}
._3d_c00083{width:55.968000pt;}
._2d_c00083{width:56.917333pt;}
._3e_c00083{width:58.005333pt;}
._2b_c00083{width:61.856000pt;}
._5a_c00083{width:62.952000pt;}
._52_c00083{width:64.512000pt;}
._6a_c00083{width:66.696000pt;}
._13_c00083{width:72.714667pt;}
._69_c00083{width:80.152000pt;}
._24_c00083{width:84.896000pt;}
._29_c00083{width:87.978667pt;}
._8_c00083{width:97.536000pt;}
._62_c00083{width:102.989333pt;}
._61_c00083{width:128.117333pt;}
._2a_c00083{width:143.093333pt;}
._37_c00083{width:144.149333pt;}
._58_c00083{width:157.330667pt;}
._64_c00083{width:170.874667pt;}
._36_c00083{width:190.309333pt;}
._57_c00083{width:193.365333pt;}
._25_c00083{width:197.034667pt;}
._59_c00083{width:207.453333pt;}
._6_c00083{width:222.933333pt;}
._63_c00083{width:234.594667pt;}
._34_c00083{width:280.432000pt;}
._53_c00083{width:284.424000pt;}
._26_c00083{width:327.072000pt;}
._2e_c00083{width:342.965333pt;}
._6b_c00083{width:396.138667pt;}
._45_c00083{width:431.402667pt;}
._20_c00083{width:446.176000pt;}
._67_c00083{width:449.264000pt;}
._2c_c00083{width:479.530667pt;}
._65_c00083{width:483.818667pt;}
._38_c00083{width:614.357333pt;}
._66_c00083{width:615.285333pt;}
.fsb_c00083{font-size:42.666667pt;}
.fs3_c00083{font-size:53.333333pt;}
.fs1_c00083{font-size:59.733333pt;}
.fs9_c00083{font-size:69.333333pt;}
.fs5_c00083{font-size:72.000000pt;}
.fs0_c00083{font-size:74.666667pt;}
.fs4_c00083{font-size:77.333333pt;}
.fs2_c00083{font-size:85.333333pt;}
.fs8_c00083{font-size:88.000000pt;}
.fs6_c00083{font-size:90.666667pt;}
.fsa_c00083{font-size:93.333333pt;}
.fs7_c00083{font-size:146.666667pt;}
.y0_c00083{bottom:0.000000pt;}
.y28_c00083{bottom:2.760000pt;}
.y27_c00083{bottom:6.425206pt;}
.y26_c00083{bottom:60.960000pt;}
.y25_c00083{bottom:94.160000pt;}
.y24_c00083{bottom:124.826667pt;}
.y23_c00083{bottom:155.493333pt;}
.y22_c00083{bottom:185.493333pt;}
.y21_c00083{bottom:216.293333pt;}
.y20_c00083{bottom:246.960000pt;}
.y1f_c00083{bottom:277.226667pt;}
.y1e_c00083{bottom:307.493333pt;}
.y1d_c00083{bottom:337.626667pt;}
.y1c_c00083{bottom:367.760000pt;}
.y1b_c00083{bottom:397.893333pt;}
.y1a_c00083{bottom:428.426667pt;}
.y19_c00083{bottom:457.760000pt;}
.y18_c00083{bottom:486.560000pt;}
.y17_c00083{bottom:516.693333pt;}
.y16_c00083{bottom:534.693333pt;}
.y15_c00083{bottom:552.693333pt;}
.y14_c00083{bottom:581.360000pt;}
.y13_c00083{bottom:610.560000pt;}
.y12_c00083{bottom:638.693333pt;}
.y11_c00083{bottom:667.760000pt;}
.y10_c00083{bottom:696.293333pt;}
.yf_c00083{bottom:724.293333pt;}
.ye_c00083{bottom:742.560000pt;}
.yd_c00083{bottom:762.026667pt;}
.yc_c00083{bottom:790.293333pt;}
.yb_c00083{bottom:819.093333pt;}
.ya_c00083{bottom:847.226667pt;}
.y9_c00083{bottom:875.360000pt;}
.y8_c00083{bottom:903.893333pt;}
.y7_c00083{bottom:923.360000pt;}
.y6_c00083{bottom:935.360000pt;}
.y5_c00083{bottom:950.960000pt;}
.y4_c00083{bottom:969.893333pt;}
.y3_c00083{bottom:997.226667pt;}
.y2_c00083{bottom:1026.293333pt;}
.y1_c00083{bottom:1053.893333pt;}
.h6_c00083{height:11.733399pt;}
.h7_c00083{height:38.937500pt;}
.h2_c00083{height:108.041667pt;}
.h3_c00083{height:114.794271pt;}
.h5_c00083{height:118.170573pt;}
.h4_c00083{height:143.873698pt;}
.h0_c00083{height:1211.066667pt;}
.h1_c00083{height:1211.333333pt;}
.w2_c00083{width:93.222667pt;}
.w1_c00083{width:755.333333pt;}
.w0_c00083{width:755.533333pt;}
.x0_c00083{left:0.000000pt;}
.x8_c00083{left:40.133333pt;}
.x6_c00083{left:41.066667pt;}
.x5_c00083{left:42.000000pt;}
.x3_c00083{left:42.933333pt;}
.x2_c00083{left:43.866667pt;}
.x1_c00083{left:69.333333pt;}
.x4_c00083{left:127.466667pt;}
.x7_c00083{left:146.400000pt;}
.xb_c00083{left:229.733333pt;}
.xc_c00083{left:232.133333pt;}
.xa_c00083{left:234.533333pt;}
.x9_c00083{left:235.466667pt;}
.xd_c00083{left:249.866667pt;}
.xe_c00083{left:334.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_580cf117404684ea15b64517.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_e43a6eb60e34cc9516c388d1.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_d6df50f45cf662e7c8e344aa.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls9_c00084{letter-spacing:0.000000px;}
.ls8_c00084{letter-spacing:3.660000px;}
.ls1_c00084{letter-spacing:5.814000px;}
.ls5_c00084{letter-spacing:6.120000px;}
.ls4_c00084{letter-spacing:6.618000px;}
.ls7_c00084{letter-spacing:9.000000px;}
.lsa_c00084{letter-spacing:12.000000px;}
.ls6_c00084{letter-spacing:15.822000px;}
.ls2_c00084{letter-spacing:30.618000px;}
.ls3_c00084{letter-spacing:32.640000px;}
.ls0_c00084{letter-spacing:43.620000px;}
.lsb_c00084{letter-spacing:276.000000px;}
.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;}
}
.ws8_c00084{word-spacing:-299.136000px;}
.ws4_c00084{word-spacing:-54.360000px;}
.ws0_c00084{word-spacing:-38.040000px;}
.ws5_c00084{word-spacing:-26.460000px;}
.ws6_c00084{word-spacing:-25.860000px;}
.ws2_c00084{word-spacing:-11.340000px;}
.ws3_c00084{word-spacing:-9.120000px;}
.ws1_c00084{word-spacing:-1.680000px;}
.ws9_c00084{word-spacing:0.000000px;}
.ws7_c00084{word-spacing:1.140000px;}
._41_c00084{margin-left:-280.320000px;}
._3b_c00084{margin-left:-277.404000px;}
._3c_c00084{margin-left:-275.520000px;}
._3f_c00084{margin-left:-265.800000px;}
._3e_c00084{margin-left:-260.928000px;}
._3d_c00084{margin-left:-258.912000px;}
._44_c00084{margin-left:-90.270000px;}
._45_c00084{margin-left:-29.886000px;}
._42_c00084{margin-left:-25.062000px;}
._2e_c00084{margin-left:-23.664000px;}
._30_c00084{margin-left:-21.948000px;}
._2d_c00084{margin-left:-19.950000px;}
._33_c00084{margin-left:-17.442000px;}
._2c_c00084{margin-left:-15.912000px;}
._2b_c00084{margin-left:-13.668000px;}
._23_c00084{margin-left:-12.444000px;}
._34_c00084{margin-left:-10.710000px;}
._20_c00084{margin-left:-9.690000px;}
._32_c00084{margin-left:-8.160000px;}
._1f_c00084{margin-left:-7.140000px;}
._36_c00084{margin-left:-6.120000px;}
._2_c00084{margin-left:-5.100000px;}
._b_c00084{margin-left:-4.080000px;}
._4_c00084{margin-left:-2.754000px;}
._0_c00084{margin-left:-1.020000px;}
._7_c00084{width:1.020000px;}
._6_c00084{width:2.754000px;}
._c_c00084{width:4.488000px;}
._11_c00084{width:5.508000px;}
._19_c00084{width:6.528000px;}
._5_c00084{width:7.548000px;}
._26_c00084{width:8.646000px;}
._9_c00084{width:9.792000px;}
._3_c00084{width:11.628000px;}
._13_c00084{width:12.852000px;}
._12_c00084{width:13.974000px;}
._8_c00084{width:15.300000px;}
._16_c00084{width:17.058000px;}
._10_c00084{width:18.300000px;}
._a_c00084{width:20.094000px;}
._1_c00084{width:21.114000px;}
._28_c00084{width:22.848000px;}
._15_c00084{width:24.120000px;}
._d_c00084{width:25.806000px;}
._27_c00084{width:26.808000px;}
._18_c00084{width:27.948000px;}
._1d_c00084{width:29.682000px;}
._f_c00084{width:30.864000px;}
._1e_c00084{width:32.448000px;}
._1a_c00084{width:33.558000px;}
._e_c00084{width:35.190000px;}
._2f_c00084{width:36.720000px;}
._1c_c00084{width:37.740000px;}
._14_c00084{width:39.564000px;}
._1b_c00084{width:41.106000px;}
._17_c00084{width:43.656000px;}
._29_c00084{width:45.594000px;}
._25_c00084{width:48.450000px;}
._24_c00084{width:49.584000px;}
._39_c00084{width:51.000000px;}
._31_c00084{width:53.040000px;}
._35_c00084{width:54.162000px;}
._2a_c00084{width:55.344000px;}
._37_c00084{width:57.198000px;}
._22_c00084{width:58.956000px;}
._48_c00084{width:61.056000px;}
._38_c00084{width:63.840000px;}
._21_c00084{width:69.564000px;}
._43_c00084{width:75.888000px;}
._3a_c00084{width:95.574000px;}
._46_c00084{width:214.200000px;}
._40_c00084{width:295.842000px;}
._47_c00084{width:320.994000px;}
._49_c00084{width:685.974000px;}
.fc2_c00084{color:transparent;}
.fc1_c00084{color:rgb(128,128,128);}
.fc0_c00084{color:rgb(0,0,0);}
.fs3_c00084{font-size:48.000000px;}
.fs1_c00084{font-size:60.000000px;}
.fs2_c00084{font-size:96.000000px;}
.fs0_c00084{font-size:102.000000px;}
.y0_c00084{bottom:0.000000px;}
.y26_c00084{bottom:3.105000px;}
.y25_c00084{bottom:7.228357px;}
.y24_c00084{bottom:100.680000px;}
.y23_c00084{bottom:128.580000px;}
.y22_c00084{bottom:162.630000px;}
.y21_c00084{bottom:197.880000px;}
.y20_c00084{bottom:229.830000px;}
.y1f_c00084{bottom:263.580000px;}
.y1e_c00084{bottom:298.380000px;}
.y1d_c00084{bottom:331.530000px;}
.y1c_c00084{bottom:364.230000px;}
.y1b_c00084{bottom:399.630000px;}
.y1a_c00084{bottom:432.630000px;}
.y19_c00084{bottom:466.530000px;}
.y18_c00084{bottom:500.430000px;}
.y17_c00084{bottom:533.580000px;}
.y16_c00084{bottom:566.730000px;}
.y15_c00084{bottom:600.030000px;}
.y14_c00084{bottom:632.580000px;}
.y13_c00084{bottom:666.180000px;}
.y12_c00084{bottom:700.080000px;}
.y11_c00084{bottom:734.130000px;}
.y10_c00084{bottom:766.530000px;}
.yf_c00084{bottom:799.530000px;}
.ye_c00084{bottom:832.380000px;}
.yd_c00084{bottom:865.980000px;}
.yc_c00084{bottom:898.530000px;}
.yb_c00084{bottom:932.130000px;}
.ya_c00084{bottom:966.630000px;}
.y9_c00084{bottom:998.880000px;}
.y8_c00084{bottom:1032.030000px;}
.y7_c00084{bottom:1065.180000px;}
.y6_c00084{bottom:1098.330000px;}
.y5_c00084{bottom:1131.930000px;}
.y4_c00084{bottom:1165.080000px;}
.y3_c00084{bottom:1198.230000px;}
.y2_c00084{bottom:1231.530000px;}
.y1_c00084{bottom:1264.980000px;}
.h3_c00084{height:13.200074px;}
.h4_c00084{height:43.804688px;}
.h2_c00084{height:129.143555px;}
.h1_c00084{height:1338.000000px;}
.h0_c00084{height:1338.150000px;}
.w2_c00084{width:104.875500px;}
.w0_c00084{width:848.850000px;}
.w1_c00084{width:849.000000px;}
.x0_c00084{left:0.000000px;}
.x4_c00084{left:22.500000px;}
.x3_c00084{left:23.550000px;}
.x2_c00084{left:24.600000px;}
.x5_c00084{left:26.100000px;}
.x1_c00084{left:27.300000px;}
.x6_c00084{left:29.400000px;}
.x7_c00084{left:31.500000px;}
.x8_c00084{left:32.700000px;}
.x9_c00084{left:87.300000px;}
.xa_c00084{left:376.239258px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls9_c00084{letter-spacing:0.000000pt;}
.ls8_c00084{letter-spacing:3.253333pt;}
.ls1_c00084{letter-spacing:5.168000pt;}
.ls5_c00084{letter-spacing:5.440000pt;}
.ls4_c00084{letter-spacing:5.882667pt;}
.ls7_c00084{letter-spacing:8.000000pt;}
.lsa_c00084{letter-spacing:10.666667pt;}
.ls6_c00084{letter-spacing:14.064000pt;}
.ls2_c00084{letter-spacing:27.216000pt;}
.ls3_c00084{letter-spacing:29.013333pt;}
.ls0_c00084{letter-spacing:38.773333pt;}
.lsb_c00084{letter-spacing:245.333333pt;}
.ws8_c00084{word-spacing:-265.898667pt;}
.ws4_c00084{word-spacing:-48.320000pt;}
.ws0_c00084{word-spacing:-33.813333pt;}
.ws5_c00084{word-spacing:-23.520000pt;}
.ws6_c00084{word-spacing:-22.986667pt;}
.ws2_c00084{word-spacing:-10.080000pt;}
.ws3_c00084{word-spacing:-8.106667pt;}
.ws1_c00084{word-spacing:-1.493333pt;}
.ws9_c00084{word-spacing:0.000000pt;}
.ws7_c00084{word-spacing:1.013333pt;}
._41_c00084{margin-left:-249.173333pt;}
._3b_c00084{margin-left:-246.581333pt;}
._3c_c00084{margin-left:-244.906667pt;}
._3f_c00084{margin-left:-236.266667pt;}
._3e_c00084{margin-left:-231.936000pt;}
._3d_c00084{margin-left:-230.144000pt;}
._44_c00084{margin-left:-80.240000pt;}
._45_c00084{margin-left:-26.565333pt;}
._42_c00084{margin-left:-22.277333pt;}
._2e_c00084{margin-left:-21.034667pt;}
._30_c00084{margin-left:-19.509333pt;}
._2d_c00084{margin-left:-17.733333pt;}
._33_c00084{margin-left:-15.504000pt;}
._2c_c00084{margin-left:-14.144000pt;}
._2b_c00084{margin-left:-12.149333pt;}
._23_c00084{margin-left:-11.061333pt;}
._34_c00084{margin-left:-9.520000pt;}
._20_c00084{margin-left:-8.613333pt;}
._32_c00084{margin-left:-7.253333pt;}
._1f_c00084{margin-left:-6.346667pt;}
._36_c00084{margin-left:-5.440000pt;}
._2_c00084{margin-left:-4.533333pt;}
._b_c00084{margin-left:-3.626667pt;}
._4_c00084{margin-left:-2.448000pt;}
._0_c00084{margin-left:-0.906667pt;}
._7_c00084{width:0.906667pt;}
._6_c00084{width:2.448000pt;}
._c_c00084{width:3.989333pt;}
._11_c00084{width:4.896000pt;}
._19_c00084{width:5.802667pt;}
._5_c00084{width:6.709333pt;}
._26_c00084{width:7.685333pt;}
._9_c00084{width:8.704000pt;}
._3_c00084{width:10.336000pt;}
._13_c00084{width:11.424000pt;}
._12_c00084{width:12.421333pt;}
._8_c00084{width:13.600000pt;}
._16_c00084{width:15.162667pt;}
._10_c00084{width:16.266667pt;}
._a_c00084{width:17.861333pt;}
._1_c00084{width:18.768000pt;}
._28_c00084{width:20.309333pt;}
._15_c00084{width:21.440000pt;}
._d_c00084{width:22.938667pt;}
._27_c00084{width:23.829333pt;}
._18_c00084{width:24.842667pt;}
._1d_c00084{width:26.384000pt;}
._f_c00084{width:27.434667pt;}
._1e_c00084{width:28.842667pt;}
._1a_c00084{width:29.829333pt;}
._e_c00084{width:31.280000pt;}
._2f_c00084{width:32.640000pt;}
._1c_c00084{width:33.546667pt;}
._14_c00084{width:35.168000pt;}
._1b_c00084{width:36.538667pt;}
._17_c00084{width:38.805333pt;}
._29_c00084{width:40.528000pt;}
._25_c00084{width:43.066667pt;}
._24_c00084{width:44.074667pt;}
._39_c00084{width:45.333333pt;}
._31_c00084{width:47.146667pt;}
._35_c00084{width:48.144000pt;}
._2a_c00084{width:49.194667pt;}
._37_c00084{width:50.842667pt;}
._22_c00084{width:52.405333pt;}
._48_c00084{width:54.272000pt;}
._38_c00084{width:56.746667pt;}
._21_c00084{width:61.834667pt;}
._43_c00084{width:67.456000pt;}
._3a_c00084{width:84.954667pt;}
._46_c00084{width:190.400000pt;}
._40_c00084{width:262.970667pt;}
._47_c00084{width:285.328000pt;}
._49_c00084{width:609.754667pt;}
.fs3_c00084{font-size:42.666667pt;}
.fs1_c00084{font-size:53.333333pt;}
.fs2_c00084{font-size:85.333333pt;}
.fs0_c00084{font-size:90.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y26_c00084{bottom:2.760000pt;}
.y25_c00084{bottom:6.425206pt;}
.y24_c00084{bottom:89.493333pt;}
.y23_c00084{bottom:114.293333pt;}
.y22_c00084{bottom:144.560000pt;}
.y21_c00084{bottom:175.893333pt;}
.y20_c00084{bottom:204.293333pt;}
.y1f_c00084{bottom:234.293333pt;}
.y1e_c00084{bottom:265.226667pt;}
.y1d_c00084{bottom:294.693333pt;}
.y1c_c00084{bottom:323.760000pt;}
.y1b_c00084{bottom:355.226667pt;}
.y1a_c00084{bottom:384.560000pt;}
.y19_c00084{bottom:414.693333pt;}
.y18_c00084{bottom:444.826667pt;}
.y17_c00084{bottom:474.293333pt;}
.y16_c00084{bottom:503.760000pt;}
.y15_c00084{bottom:533.360000pt;}
.y14_c00084{bottom:562.293333pt;}
.y13_c00084{bottom:592.160000pt;}
.y12_c00084{bottom:622.293333pt;}
.y11_c00084{bottom:652.560000pt;}
.y10_c00084{bottom:681.360000pt;}
.yf_c00084{bottom:710.693333pt;}
.ye_c00084{bottom:739.893333pt;}
.yd_c00084{bottom:769.760000pt;}
.yc_c00084{bottom:798.693333pt;}
.yb_c00084{bottom:828.560000pt;}
.ya_c00084{bottom:859.226667pt;}
.y9_c00084{bottom:887.893333pt;}
.y8_c00084{bottom:917.360000pt;}
.y7_c00084{bottom:946.826667pt;}
.y6_c00084{bottom:976.293333pt;}
.y5_c00084{bottom:1006.160000pt;}
.y4_c00084{bottom:1035.626667pt;}
.y3_c00084{bottom:1065.093333pt;}
.y2_c00084{bottom:1094.693333pt;}
.y1_c00084{bottom:1124.426667pt;}
.h3_c00084{height:11.733399pt;}
.h4_c00084{height:38.937500pt;}
.h2_c00084{height:114.794271pt;}
.h1_c00084{height:1189.333333pt;}
.h0_c00084{height:1189.466667pt;}
.w2_c00084{width:93.222667pt;}
.w0_c00084{width:754.533333pt;}
.w1_c00084{width:754.666667pt;}
.x0_c00084{left:0.000000pt;}
.x4_c00084{left:20.000000pt;}
.x3_c00084{left:20.933333pt;}
.x2_c00084{left:21.866667pt;}
.x5_c00084{left:23.200000pt;}
.x1_c00084{left:24.266667pt;}
.x6_c00084{left:26.133333pt;}
.x7_c00084{left:28.000000pt;}
.x8_c00084{left:29.066667pt;}
.x9_c00084{left:77.600000pt;}
.xa_c00084{left:334.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39373fd83df4dcd13200441e.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_472bfec8dfd6c175cc6c4b5c.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_d6c8378b2bffe9c0c2ff4fc9.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_2966e76e9ff94040bd062ba0.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00085;src:url('chunks/assets/font_6bf41bd82364311646e351bc.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00085;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00085{font-family:ff6_c00085;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls8_c00085{letter-spacing:0.000000px;}
.ls9_c00085{letter-spacing:3.000000px;}
.ls7_c00085{letter-spacing:3.588000px;}
.ls6_c00085{letter-spacing:4.224000px;}
.ls0_c00085{letter-spacing:5.196000px;}
.ls2_c00085{letter-spacing:7.776000px;}
.ls3_c00085{letter-spacing:26.418000px;}
.ls1_c00085{letter-spacing:33.492000px;}
.ls4_c00085{letter-spacing:79.092000px;}
.ls5_c00085{letter-spacing:96.492000px;}
.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:-16.068000px;}
.ws3_c00085{word-spacing:0.000000px;}
.ws0_c00085{word-spacing:1.142400px;}
.ws1_c00085{word-spacing:5.140800px;}
._3f_c00085{margin-left:-50.634000px;}
._3a_c00085{margin-left:-45.696000px;}
._14_c00085{margin-left:-32.256000px;}
._36_c00085{margin-left:-27.234000px;}
._2b_c00085{margin-left:-25.248000px;}
._3e_c00085{margin-left:-22.548000px;}
._37_c00085{margin-left:-19.482000px;}
._2c_c00085{margin-left:-12.096000px;}
._40_c00085{margin-left:-10.320000px;}
._42_c00085{margin-left:-9.165000px;}
._30_c00085{margin-left:-7.776000px;}
._31_c00085{margin-left:-5.952000px;}
._2f_c00085{margin-left:-4.800000px;}
._13_c00085{margin-left:-3.168000px;}
._10_c00085{margin-left:-1.920000px;}
._0_c00085{width:1.632000px;}
._5_c00085{width:2.880000px;}
._8_c00085{width:4.512000px;}
._2_c00085{width:5.664000px;}
._11_c00085{width:6.912000px;}
._7_c00085{width:8.160000px;}
._f_c00085{width:9.696000px;}
._27_c00085{width:10.848000px;}
._d_c00085{width:12.864000px;}
._15_c00085{width:14.688000px;}
._9_c00085{width:16.704000px;}
._c_c00085{width:19.104000px;}
._26_c00085{width:20.832000px;}
._2d_c00085{width:22.080000px;}
._19_c00085{width:24.960000px;}
._4_c00085{width:26.112000px;}
._1_c00085{width:27.264000px;}
._18_c00085{width:28.320000px;}
._e_c00085{width:29.568000px;}
._3c_c00085{width:30.573000px;}
._3_c00085{width:31.680000px;}
._28_c00085{width:32.928000px;}
._6_c00085{width:34.560000px;}
._16_c00085{width:36.672000px;}
._12_c00085{width:38.784000px;}
._25_c00085{width:40.224000px;}
._17_c00085{width:41.280000px;}
._1b_c00085{width:42.336000px;}
._1a_c00085{width:43.392000px;}
._b_c00085{width:44.448000px;}
._1e_c00085{width:45.696000px;}
._29_c00085{width:48.000000px;}
._1c_c00085{width:49.728000px;}
._32_c00085{width:50.784000px;}
._a_c00085{width:51.840000px;}
._1d_c00085{width:53.952000px;}
._2a_c00085{width:55.488000px;}
._2e_c00085{width:56.928000px;}
._20_c00085{width:58.176000px;}
._24_c00085{width:60.288000px;}
._1f_c00085{width:62.496000px;}
._22_c00085{width:65.184000px;}
._41_c00085{width:68.130000px;}
._21_c00085{width:69.504000px;}
._33_c00085{width:71.616000px;}
._23_c00085{width:76.032000px;}
._3b_c00085{width:78.234000px;}
._38_c00085{width:220.944000px;}
._39_c00085{width:281.370000px;}
._34_c00085{width:346.488000px;}
._35_c00085{width:626.541000px;}
._3d_c00085{width:747.150000px;}
._43_c00085{width:1058.688000px;}
.fc2_c00085{color:transparent;}
.fc1_c00085{color:rgb(128,128,128);}
.fc0_c00085{color:rgb(0,0,0);}
.fs7_c00085{font-size:48.000000px;}
.fs5_c00085{font-size:78.000000px;}
.fs1_c00085{font-size:81.000000px;}
.fs3_c00085{font-size:81.600000px;}
.fs6_c00085{font-size:84.000000px;}
.fs0_c00085{font-size:96.000000px;}
.fs2_c00085{font-size:102.000000px;}
.fs4_c00085{font-size:105.000000px;}
.y0_c00085{bottom:0.000000px;}
.y25_c00085{bottom:3.105000px;}
.y24_c00085{bottom:7.228357px;}
.y23_c00085{bottom:112.680000px;}
.y22_c00085{bottom:147.930000px;}
.y21_c00085{bottom:184.980000px;}
.y20_c00085{bottom:216.030000px;}
.y1f_c00085{bottom:248.730000px;}
.y1e_c00085{bottom:273.330000px;}
.y1d_c00085{bottom:316.680000px;}
.y1c_c00085{bottom:387.480000px;}
.y1b_c00085{bottom:421.980000px;}
.y1a_c00085{bottom:454.830000px;}
.y19_c00085{bottom:489.030000px;}
.y18_c00085{bottom:523.230000px;}
.y17_c00085{bottom:556.830000px;}
.y16_c00085{bottom:589.980000px;}
.y15_c00085{bottom:624.030000px;}
.y14_c00085{bottom:656.880000px;}
.y13_c00085{bottom:690.480000px;}
.y12_c00085{bottom:723.930000px;}
.y11_c00085{bottom:757.080000px;}
.y10_c00085{bottom:790.530000px;}
.yf_c00085{bottom:824.280000px;}
.ye_c00085{bottom:857.580000px;}
.yd_c00085{bottom:891.030000px;}
.yc_c00085{bottom:924.030000px;}
.yb_c00085{bottom:956.730000px;}
.ya_c00085{bottom:989.880000px;}
.y9_c00085{bottom:1023.030000px;}
.y8_c00085{bottom:1056.330000px;}
.y7_c00085{bottom:1089.180000px;}
.y6_c00085{bottom:1122.480000px;}
.y5_c00085{bottom:1155.630000px;}
.y4_c00085{bottom:1188.780000px;}
.y3_c00085{bottom:1221.780000px;}
.y2_c00085{bottom:1255.230000px;}
.y1_c00085{bottom:1288.230000px;}
.h5_c00085{height:13.200074px;}
.h6_c00085{height:43.804688px;}
.h2_c00085{height:121.546875px;}
.h3_c00085{height:129.143555px;}
.h4_c00085{height:132.941895px;}
.h0_c00085{height:1382.700000px;}
.h1_c00085{height:1383.000000px;}
.w2_c00085{width:104.875500px;}
.w0_c00085{width:863.175000px;}
.w1_c00085{width:863.250000px;}
.x0_c00085{left:0.000000px;}
.x8_c00085{left:60.750000px;}
.x7_c00085{left:62.400000px;}
.x6_c00085{left:286.800000px;}
.x5_c00085{left:288.000000px;}
.x3_c00085{left:289.200000px;}
.x4_c00085{left:290.250000px;}
.x2_c00085{left:291.900000px;}
.x1_c00085{left:293.400000px;}
.x9_c00085{left:339.450000px;}
.xb_c00085{left:383.401749px;}
.xa_c00085{left:527.550000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls8_c00085{letter-spacing:0.000000pt;}
.ls9_c00085{letter-spacing:2.666667pt;}
.ls7_c00085{letter-spacing:3.189333pt;}
.ls6_c00085{letter-spacing:3.754667pt;}
.ls0_c00085{letter-spacing:4.618667pt;}
.ls2_c00085{letter-spacing:6.912000pt;}
.ls3_c00085{letter-spacing:23.482667pt;}
.ls1_c00085{letter-spacing:29.770667pt;}
.ls4_c00085{letter-spacing:70.304000pt;}
.ls5_c00085{letter-spacing:85.770667pt;}
.ws2_c00085{word-spacing:-14.282667pt;}
.ws3_c00085{word-spacing:0.000000pt;}
.ws0_c00085{word-spacing:1.015467pt;}
.ws1_c00085{word-spacing:4.569600pt;}
._3f_c00085{margin-left:-45.008000pt;}
._3a_c00085{margin-left:-40.618667pt;}
._14_c00085{margin-left:-28.672000pt;}
._36_c00085{margin-left:-24.208000pt;}
._2b_c00085{margin-left:-22.442667pt;}
._3e_c00085{margin-left:-20.042667pt;}
._37_c00085{margin-left:-17.317333pt;}
._2c_c00085{margin-left:-10.752000pt;}
._40_c00085{margin-left:-9.173333pt;}
._42_c00085{margin-left:-8.146667pt;}
._30_c00085{margin-left:-6.912000pt;}
._31_c00085{margin-left:-5.290667pt;}
._2f_c00085{margin-left:-4.266667pt;}
._13_c00085{margin-left:-2.816000pt;}
._10_c00085{margin-left:-1.706667pt;}
._0_c00085{width:1.450667pt;}
._5_c00085{width:2.560000pt;}
._8_c00085{width:4.010667pt;}
._2_c00085{width:5.034667pt;}
._11_c00085{width:6.144000pt;}
._7_c00085{width:7.253333pt;}
._f_c00085{width:8.618667pt;}
._27_c00085{width:9.642667pt;}
._d_c00085{width:11.434667pt;}
._15_c00085{width:13.056000pt;}
._9_c00085{width:14.848000pt;}
._c_c00085{width:16.981333pt;}
._26_c00085{width:18.517333pt;}
._2d_c00085{width:19.626667pt;}
._19_c00085{width:22.186667pt;}
._4_c00085{width:23.210667pt;}
._1_c00085{width:24.234667pt;}
._18_c00085{width:25.173333pt;}
._e_c00085{width:26.282667pt;}
._3c_c00085{width:27.176000pt;}
._3_c00085{width:28.160000pt;}
._28_c00085{width:29.269333pt;}
._6_c00085{width:30.720000pt;}
._16_c00085{width:32.597333pt;}
._12_c00085{width:34.474667pt;}
._25_c00085{width:35.754667pt;}
._17_c00085{width:36.693333pt;}
._1b_c00085{width:37.632000pt;}
._1a_c00085{width:38.570667pt;}
._b_c00085{width:39.509333pt;}
._1e_c00085{width:40.618667pt;}
._29_c00085{width:42.666667pt;}
._1c_c00085{width:44.202667pt;}
._32_c00085{width:45.141333pt;}
._a_c00085{width:46.080000pt;}
._1d_c00085{width:47.957333pt;}
._2a_c00085{width:49.322667pt;}
._2e_c00085{width:50.602667pt;}
._20_c00085{width:51.712000pt;}
._24_c00085{width:53.589333pt;}
._1f_c00085{width:55.552000pt;}
._22_c00085{width:57.941333pt;}
._41_c00085{width:60.560000pt;}
._21_c00085{width:61.781333pt;}
._33_c00085{width:63.658667pt;}
._23_c00085{width:67.584000pt;}
._3b_c00085{width:69.541333pt;}
._38_c00085{width:196.394667pt;}
._39_c00085{width:250.106667pt;}
._34_c00085{width:307.989333pt;}
._35_c00085{width:556.925333pt;}
._3d_c00085{width:664.133333pt;}
._43_c00085{width:941.056000pt;}
.fs7_c00085{font-size:42.666667pt;}
.fs5_c00085{font-size:69.333333pt;}
.fs1_c00085{font-size:72.000000pt;}
.fs3_c00085{font-size:72.533333pt;}
.fs6_c00085{font-size:74.666667pt;}
.fs0_c00085{font-size:85.333333pt;}
.fs2_c00085{font-size:90.666667pt;}
.fs4_c00085{font-size:93.333333pt;}
.y0_c00085{bottom:0.000000pt;}
.y25_c00085{bottom:2.760000pt;}
.y24_c00085{bottom:6.425206pt;}
.y23_c00085{bottom:100.160000pt;}
.y22_c00085{bottom:131.493333pt;}
.y21_c00085{bottom:164.426667pt;}
.y20_c00085{bottom:192.026667pt;}
.y1f_c00085{bottom:221.093333pt;}
.y1e_c00085{bottom:242.960000pt;}
.y1d_c00085{bottom:281.493333pt;}
.y1c_c00085{bottom:344.426667pt;}
.y1b_c00085{bottom:375.093333pt;}
.y1a_c00085{bottom:404.293333pt;}
.y19_c00085{bottom:434.693333pt;}
.y18_c00085{bottom:465.093333pt;}
.y17_c00085{bottom:494.960000pt;}
.y16_c00085{bottom:524.426667pt;}
.y15_c00085{bottom:554.693333pt;}
.y14_c00085{bottom:583.893333pt;}
.y13_c00085{bottom:613.760000pt;}
.y12_c00085{bottom:643.493333pt;}
.y11_c00085{bottom:672.960000pt;}
.y10_c00085{bottom:702.693333pt;}
.yf_c00085{bottom:732.693333pt;}
.ye_c00085{bottom:762.293333pt;}
.yd_c00085{bottom:792.026667pt;}
.yc_c00085{bottom:821.360000pt;}
.yb_c00085{bottom:850.426667pt;}
.ya_c00085{bottom:879.893333pt;}
.y9_c00085{bottom:909.360000pt;}
.y8_c00085{bottom:938.960000pt;}
.y7_c00085{bottom:968.160000pt;}
.y6_c00085{bottom:997.760000pt;}
.y5_c00085{bottom:1027.226667pt;}
.y4_c00085{bottom:1056.693333pt;}
.y3_c00085{bottom:1086.026667pt;}
.y2_c00085{bottom:1115.760000pt;}
.y1_c00085{bottom:1145.093333pt;}
.h5_c00085{height:11.733399pt;}
.h6_c00085{height:38.937500pt;}
.h2_c00085{height:108.041667pt;}
.h3_c00085{height:114.794271pt;}
.h4_c00085{height:118.170573pt;}
.h0_c00085{height:1229.066667pt;}
.h1_c00085{height:1229.333333pt;}
.w2_c00085{width:93.222667pt;}
.w0_c00085{width:767.266667pt;}
.w1_c00085{width:767.333333pt;}
.x0_c00085{left:0.000000pt;}
.x8_c00085{left:54.000000pt;}
.x7_c00085{left:55.466667pt;}
.x6_c00085{left:254.933333pt;}
.x5_c00085{left:256.000000pt;}
.x3_c00085{left:257.066667pt;}
.x4_c00085{left:258.000000pt;}
.x2_c00085{left:259.466667pt;}
.x1_c00085{left:260.800000pt;}
.x9_c00085{left:301.733333pt;}
.xb_c00085{left:340.801554pt;}
.xa_c00085{left:468.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba2db4f83f9ee78e37d31cc4.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_5146940fcf37ca930e37b0cf.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_757c9c6fbc5c31d000a11df3.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00086;src:url('chunks/assets/font_1ce429c381a06f9f6a079618.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00086;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00086{font-family:ff6_c00086;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls1_c00086{letter-spacing:0.000000px;}
.ls3_c00086{letter-spacing:12.000000px;}
.ls0_c00086{letter-spacing:23.700000px;}
.ls2_c00086{letter-spacing:45.000000px;}
.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;}
}
.ws3_c00086{word-spacing:-80.784000px;}
.ws1_c00086{word-spacing:-79.704000px;}
.ws2_c00086{word-spacing:-64.627200px;}
.ws4_c00086{word-spacing:-63.000000px;}
.ws0_c00086{word-spacing:-20.244000px;}
.ws5_c00086{word-spacing:0.000000px;}
._34_c00086{margin-left:-82.656000px;}
._49_c00086{margin-left:-30.600000px;}
._2a_c00086{margin-left:-29.232000px;}
._39_c00086{margin-left:-22.752000px;}
._29_c00086{margin-left:-20.016000px;}
._2b_c00086{margin-left:-18.744000px;}
._3b_c00086{margin-left:-17.404800px;}
._2f_c00086{margin-left:-12.480000px;}
._30_c00086{margin-left:-10.848000px;}
._32_c00086{margin-left:-9.288000px;}
._2e_c00086{margin-left:-8.148000px;}
._22_c00086{margin-left:-6.336000px;}
._24_c00086{margin-left:-5.040000px;}
._37_c00086{margin-left:-3.984000px;}
._c_c00086{margin-left:-2.940000px;}
._e_c00086{margin-left:-1.056000px;}
._5_c00086{width:1.920000px;}
._4_c00086{width:3.360000px;}
._0_c00086{width:4.872000px;}
._8_c00086{width:5.940000px;}
._2_c00086{width:6.972000px;}
._1_c00086{width:8.904000px;}
._11_c00086{width:10.668000px;}
._12_c00086{width:11.700000px;}
._9_c00086{width:13.080000px;}
._13_c00086{width:14.136000px;}
._7_c00086{width:15.744000px;}
._44_c00086{width:16.944000px;}
._1b_c00086{width:18.144000px;}
._3_c00086{width:19.488000px;}
._f_c00086{width:21.120000px;}
._1e_c00086{width:23.460000px;}
._b_c00086{width:25.236000px;}
._1f_c00086{width:26.640000px;}
._1c_c00086{width:28.704000px;}
._1a_c00086{width:29.988000px;}
._6_c00086{width:31.644000px;}
._31_c00086{width:32.748000px;}
._d_c00086{width:34.176000px;}
._18_c00086{width:36.192000px;}
._47_c00086{width:37.320000px;}
._10_c00086{width:38.724000px;}
._19_c00086{width:39.840000px;}
._a_c00086{width:41.976000px;}
._36_c00086{width:44.892000px;}
._16_c00086{width:46.908000px;}
._14_c00086{width:49.536000px;}
._15_c00086{width:50.580000px;}
._46_c00086{width:53.496000px;}
._17_c00086{width:54.528000px;}
._45_c00086{width:55.932000px;}
._3e_c00086{width:57.984000px;}
._33_c00086{width:59.472000px;}
._3f_c00086{width:62.304000px;}
._20_c00086{width:63.360000px;}
._35_c00086{width:69.984000px;}
._2d_c00086{width:74.820000px;}
._1d_c00086{width:78.780000px;}
._2c_c00086{width:85.248000px;}
._28_c00086{width:102.288000px;}
._26_c00086{width:105.588000px;}
._23_c00086{width:109.728000px;}
._25_c00086{width:124.416000px;}
._21_c00086{width:132.864000px;}
._27_c00086{width:143.244000px;}
._42_c00086{width:174.624000px;}
._48_c00086{width:187.536000px;}
._3c_c00086{width:207.312000px;}
._3a_c00086{width:227.568000px;}
._3d_c00086{width:269.760000px;}
._4a_c00086{width:284.148000px;}
._40_c00086{width:423.840000px;}
._41_c00086{width:576.312000px;}
._43_c00086{width:612.576000px;}
._38_c00086{width:622.536000px;}
._4b_c00086{width:1814.508000px;}
.fc2_c00086{color:transparent;}
.fc1_c00086{color:rgb(128,128,128);}
.fc0_c00086{color:rgb(0,0,0);}
.fs7_c00086{font-size:30.000000px;}
.fs6_c00086{font-size:36.000000px;}
.fs8_c00086{font-size:48.000000px;}
.fs0_c00086{font-size:84.000000px;}
.fs1_c00086{font-size:96.000000px;}
.fs4_c00086{font-size:99.000000px;}
.fs5_c00086{font-size:102.000000px;}
.fs3_c00086{font-size:115.200000px;}
.fs2_c00086{font-size:144.000000px;}
.y0_c00086{bottom:0.000000px;}
.y1d_c00086{bottom:3.105000px;}
.y1c_c00086{bottom:7.228371px;}
.y1b_c00086{bottom:80.715000px;}
.y19_c00086{bottom:246.765000px;}
.y1a_c00086{bottom:279.765000px;}
.y18_c00086{bottom:282.915000px;}
.y17_c00086{bottom:316.365000px;}
.y16_c00086{bottom:349.965000px;}
.y15_c00086{bottom:383.115000px;}
.y14_c00086{bottom:416.565000px;}
.y13_c00086{bottom:450.315000px;}
.y12_c00086{bottom:483.015000px;}
.y11_c00086{bottom:516.765000px;}
.y10_c00086{bottom:551.115000px;}
.yf_c00086{bottom:580.965000px;}
.ye_c00086{bottom:617.415000px;}
.yd_c00086{bottom:704.715000px;}
.yc_c00086{bottom:756.015000px;}
.yb_c00086{bottom:805.965000px;}
.ya_c00086{bottom:856.215000px;}
.y9_c00086{bottom:906.165000px;}
.y8_c00086{bottom:956.865000px;}
.y7_c00086{bottom:1007.115000px;}
.y6_c00086{bottom:1084.065000px;}
.y5_c00086{bottom:1116.915000px;}
.y4_c00086{bottom:1150.215000px;}
.y3_c00086{bottom:1183.665000px;}
.y2_c00086{bottom:1216.665000px;}
.y1_c00086{bottom:1249.815000px;}
.h6_c00086{height:13.200074px;}
.h5_c00086{height:37.983398px;}
.h7_c00086{height:43.804688px;}
.h4_c00086{height:45.580078px;}
.h2_c00086{height:121.546875px;}
.h3_c00086{height:182.320312px;}
.h0_c00086{height:1319.775000px;}
.h1_c00086{height:1320.000000px;}
.w1_c00086{width:104.875500px;}
.w0_c00086{width:837.000000px;}
.x0_c00086{left:0.000000px;}
.xe_c00086{left:24.000000px;}
.xd_c00086{left:25.650000px;}
.x5_c00086{left:26.700000px;}
.xc_c00086{left:27.750000px;}
.x4_c00086{left:30.000000px;}
.x3_c00086{left:33.150000px;}
.x2_c00086{left:34.800000px;}
.x1_c00086{left:36.450000px;}
.x6_c00086{left:57.000000px;}
.x7_c00086{left:80.700000px;}
.x8_c00086{left:114.150000px;}
.x9_c00086{left:115.800000px;}
.xb_c00086{left:156.600000px;}
.xa_c00086{left:234.000000px;}
.x11_c00086{left:370.314240px;}
.xf_c00086{left:618.300000px;}
.x10_c00086{left:722.850000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls1_c00086{letter-spacing:0.000000pt;}
.ls3_c00086{letter-spacing:10.666667pt;}
.ls0_c00086{letter-spacing:21.066667pt;}
.ls2_c00086{letter-spacing:40.000000pt;}
.ws3_c00086{word-spacing:-71.808000pt;}
.ws1_c00086{word-spacing:-70.848000pt;}
.ws2_c00086{word-spacing:-57.446400pt;}
.ws4_c00086{word-spacing:-56.000000pt;}
.ws0_c00086{word-spacing:-17.994667pt;}
.ws5_c00086{word-spacing:0.000000pt;}
._34_c00086{margin-left:-73.472000pt;}
._49_c00086{margin-left:-27.200000pt;}
._2a_c00086{margin-left:-25.984000pt;}
._39_c00086{margin-left:-20.224000pt;}
._29_c00086{margin-left:-17.792000pt;}
._2b_c00086{margin-left:-16.661333pt;}
._3b_c00086{margin-left:-15.470933pt;}
._2f_c00086{margin-left:-11.093333pt;}
._30_c00086{margin-left:-9.642667pt;}
._32_c00086{margin-left:-8.256000pt;}
._2e_c00086{margin-left:-7.242667pt;}
._22_c00086{margin-left:-5.632000pt;}
._24_c00086{margin-left:-4.480000pt;}
._37_c00086{margin-left:-3.541333pt;}
._c_c00086{margin-left:-2.613333pt;}
._e_c00086{margin-left:-0.938667pt;}
._5_c00086{width:1.706667pt;}
._4_c00086{width:2.986667pt;}
._0_c00086{width:4.330667pt;}
._8_c00086{width:5.280000pt;}
._2_c00086{width:6.197333pt;}
._1_c00086{width:7.914667pt;}
._11_c00086{width:9.482667pt;}
._12_c00086{width:10.400000pt;}
._9_c00086{width:11.626667pt;}
._13_c00086{width:12.565333pt;}
._7_c00086{width:13.994667pt;}
._44_c00086{width:15.061333pt;}
._1b_c00086{width:16.128000pt;}
._3_c00086{width:17.322667pt;}
._f_c00086{width:18.773333pt;}
._1e_c00086{width:20.853333pt;}
._b_c00086{width:22.432000pt;}
._1f_c00086{width:23.680000pt;}
._1c_c00086{width:25.514667pt;}
._1a_c00086{width:26.656000pt;}
._6_c00086{width:28.128000pt;}
._31_c00086{width:29.109333pt;}
._d_c00086{width:30.378667pt;}
._18_c00086{width:32.170667pt;}
._47_c00086{width:33.173333pt;}
._10_c00086{width:34.421333pt;}
._19_c00086{width:35.413333pt;}
._a_c00086{width:37.312000pt;}
._36_c00086{width:39.904000pt;}
._16_c00086{width:41.696000pt;}
._14_c00086{width:44.032000pt;}
._15_c00086{width:44.960000pt;}
._46_c00086{width:47.552000pt;}
._17_c00086{width:48.469333pt;}
._45_c00086{width:49.717333pt;}
._3e_c00086{width:51.541333pt;}
._33_c00086{width:52.864000pt;}
._3f_c00086{width:55.381333pt;}
._20_c00086{width:56.320000pt;}
._35_c00086{width:62.208000pt;}
._2d_c00086{width:66.506667pt;}
._1d_c00086{width:70.026667pt;}
._2c_c00086{width:75.776000pt;}
._28_c00086{width:90.922667pt;}
._26_c00086{width:93.856000pt;}
._23_c00086{width:97.536000pt;}
._25_c00086{width:110.592000pt;}
._21_c00086{width:118.101333pt;}
._27_c00086{width:127.328000pt;}
._42_c00086{width:155.221333pt;}
._48_c00086{width:166.698667pt;}
._3c_c00086{width:184.277333pt;}
._3a_c00086{width:202.282667pt;}
._3d_c00086{width:239.786667pt;}
._4a_c00086{width:252.576000pt;}
._40_c00086{width:376.746667pt;}
._41_c00086{width:512.277333pt;}
._43_c00086{width:544.512000pt;}
._38_c00086{width:553.365333pt;}
._4b_c00086{width:1612.896000pt;}
.fs7_c00086{font-size:26.666667pt;}
.fs6_c00086{font-size:32.000000pt;}
.fs8_c00086{font-size:42.666667pt;}
.fs0_c00086{font-size:74.666667pt;}
.fs1_c00086{font-size:85.333333pt;}
.fs4_c00086{font-size:88.000000pt;}
.fs5_c00086{font-size:90.666667pt;}
.fs3_c00086{font-size:102.400000pt;}
.fs2_c00086{font-size:128.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y1d_c00086{bottom:2.760000pt;}
.y1c_c00086{bottom:6.425219pt;}
.y1b_c00086{bottom:71.746667pt;}
.y19_c00086{bottom:219.346667pt;}
.y1a_c00086{bottom:248.680000pt;}
.y18_c00086{bottom:251.480000pt;}
.y17_c00086{bottom:281.213333pt;}
.y16_c00086{bottom:311.080000pt;}
.y15_c00086{bottom:340.546667pt;}
.y14_c00086{bottom:370.280000pt;}
.y13_c00086{bottom:400.280000pt;}
.y12_c00086{bottom:429.346667pt;}
.y11_c00086{bottom:459.346667pt;}
.y10_c00086{bottom:489.880000pt;}
.yf_c00086{bottom:516.413333pt;}
.ye_c00086{bottom:548.813333pt;}
.yd_c00086{bottom:626.413333pt;}
.yc_c00086{bottom:672.013333pt;}
.yb_c00086{bottom:716.413333pt;}
.ya_c00086{bottom:761.080000pt;}
.y9_c00086{bottom:805.480000pt;}
.y8_c00086{bottom:850.546667pt;}
.y7_c00086{bottom:895.213333pt;}
.y6_c00086{bottom:963.613333pt;}
.y5_c00086{bottom:992.813333pt;}
.y4_c00086{bottom:1022.413333pt;}
.y3_c00086{bottom:1052.146667pt;}
.y2_c00086{bottom:1081.480000pt;}
.y1_c00086{bottom:1110.946667pt;}
.h6_c00086{height:11.733399pt;}
.h5_c00086{height:33.763021pt;}
.h7_c00086{height:38.937500pt;}
.h4_c00086{height:40.515625pt;}
.h2_c00086{height:108.041667pt;}
.h3_c00086{height:162.062500pt;}
.h0_c00086{height:1173.133333pt;}
.h1_c00086{height:1173.333333pt;}
.w1_c00086{width:93.222667pt;}
.w0_c00086{width:744.000000pt;}
.x0_c00086{left:0.000000pt;}
.xe_c00086{left:21.333333pt;}
.xd_c00086{left:22.800000pt;}
.x5_c00086{left:23.733333pt;}
.xc_c00086{left:24.666667pt;}
.x4_c00086{left:26.666667pt;}
.x3_c00086{left:29.466667pt;}
.x2_c00086{left:30.933333pt;}
.x1_c00086{left:32.400000pt;}
.x6_c00086{left:50.666667pt;}
.x7_c00086{left:71.733333pt;}
.x8_c00086{left:101.466667pt;}
.x9_c00086{left:102.933333pt;}
.xb_c00086{left:139.200000pt;}
.xa_c00086{left:208.000000pt;}
.x11_c00086{left:329.168213pt;}
.xf_c00086{left:549.600000pt;}
.x10_c00086{left:642.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38072a17310b9bc99b2099d8.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_fc9f5eae6c3431e3c6d9a9d5.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_175a617af54189886bcc03e0.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_3fe58b5de5a2e4583e749873.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00087;src:url('chunks/assets/font_903935d1c59aad17ed55b36e.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00087;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00087{font-family:ff6_c00087;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00087{vertical-align:-48.600000px;}
.v0_c00087{vertical-align:0.000000px;}
.ls4_c00087{letter-spacing:0.000000px;}
.ls3_c00087{letter-spacing:0.120000px;}
.ls5_c00087{letter-spacing:3.000000px;}
.ls7_c00087{letter-spacing:12.000000px;}
.ls6_c00087{letter-spacing:24.000000px;}
.ls1_c00087{letter-spacing:48.492000px;}
.ls2_c00087{letter-spacing:210.492000px;}
.ls0_c00087{letter-spacing:552.492000px;}
.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:-63.000000px;}
.ws0_c00087{word-spacing:-20.244000px;}
.ws2_c00087{word-spacing:0.000000px;}
._41_c00087{margin-left:-49.329000px;}
._40_c00087{margin-left:-41.760000px;}
._a_c00087{margin-left:-18.192000px;}
._3d_c00087{margin-left:-15.936000px;}
._29_c00087{margin-left:-14.700000px;}
._28_c00087{margin-left:-10.785000px;}
._26_c00087{margin-left:-8.400000px;}
._1e_c00087{margin-left:-7.344000px;}
._25_c00087{margin-left:-5.544000px;}
._d_c00087{margin-left:-4.131000px;}
._0_c00087{margin-left:-2.688000px;}
._1_c00087{margin-left:-1.632000px;}
._12_c00087{width:1.344000px;}
._7_c00087{width:2.592000px;}
._4_c00087{width:4.608000px;}
._31_c00087{width:5.619000px;}
._3_c00087{width:6.624000px;}
._6_c00087{width:7.680000px;}
._2f_c00087{width:8.682000px;}
._5_c00087{width:9.696000px;}
._16_c00087{width:10.752000px;}
._17_c00087{width:12.192000px;}
._1d_c00087{width:13.272000px;}
._19_c00087{width:14.499000px;}
._21_c00087{width:15.504000px;}
._18_c00087{width:16.608000px;}
._4a_c00087{width:17.832000px;}
._15_c00087{width:19.677000px;}
._1a_c00087{width:21.408000px;}
._e_c00087{width:24.579000px;}
._32_c00087{width:25.698000px;}
._24_c00087{width:26.910000px;}
._b_c00087{width:28.122000px;}
._22_c00087{width:30.096000px;}
._10_c00087{width:31.104000px;}
._2e_c00087{width:32.190000px;}
._1f_c00087{width:33.417000px;}
._1c_c00087{width:34.722000px;}
._c_c00087{width:37.287000px;}
._30_c00087{width:38.715000px;}
._f_c00087{width:40.416000px;}
._44_c00087{width:41.790000px;}
._11_c00087{width:43.680000px;}
._14_c00087{width:44.874000px;}
._13_c00087{width:47.184000px;}
._3a_c00087{width:49.656000px;}
._20_c00087{width:51.744000px;}
._45_c00087{width:53.652000px;}
._47_c00087{width:55.326000px;}
._2_c00087{width:69.120000px;}
._3b_c00087{width:78.960000px;}
._3f_c00087{width:82.023000px;}
._23_c00087{width:84.864000px;}
._2a_c00087{width:88.323000px;}
._38_c00087{width:103.236000px;}
._34_c00087{width:126.624000px;}
._3c_c00087{width:133.923000px;}
._2b_c00087{width:138.480000px;}
._9_c00087{width:153.312000px;}
._3e_c00087{width:157.152000px;}
._1b_c00087{width:169.218000px;}
._43_c00087{width:180.654000px;}
._37_c00087{width:188.340000px;}
._36_c00087{width:194.544000px;}
._33_c00087{width:269.760000px;}
._8_c00087{width:276.192000px;}
._42_c00087{width:278.139000px;}
._49_c00087{width:367.776000px;}
._35_c00087{width:419.328000px;}
._27_c00087{width:422.655000px;}
._48_c00087{width:444.960000px;}
._2d_c00087{width:527.064000px;}
._39_c00087{width:681.696000px;}
._46_c00087{width:717.852000px;}
._2c_c00087{width:1510.464000px;}
.fc2_c00087{color:transparent;}
.fc1_c00087{color:rgb(128,128,128);}
.fc0_c00087{color:rgb(0,0,0);}
.fs1_c00087{font-size:36.000000px;}
.fs6_c00087{font-size:48.000000px;}
.fs2_c00087{font-size:81.000000px;}
.fs4_c00087{font-size:84.000000px;}
.fs5_c00087{font-size:87.000000px;}
.fs0_c00087{font-size:96.000000px;}
.fs3_c00087{font-size:102.000000px;}
.y0_c00087{bottom:0.000000px;}
.y24_c00087{bottom:3.105000px;}
.y23_c00087{bottom:7.228357px;}
.y22_c00087{bottom:135.030000px;}
.y21_c00087{bottom:169.530000px;}
.y20_c00087{bottom:203.130000px;}
.y1f_c00087{bottom:237.330000px;}
.y1e_c00087{bottom:270.330000px;}
.y1d_c00087{bottom:303.180000px;}
.y1c_c00087{bottom:334.530000px;}
.y1b_c00087{bottom:396.930000px;}
.y1a_c00087{bottom:405.630000px;}
.y19_c00087{bottom:474.480000px;}
.y18_c00087{bottom:507.030000px;}
.y17_c00087{bottom:540.330000px;}
.y16_c00087{bottom:574.830000px;}
.y15_c00087{bottom:607.830000px;}
.y14_c00087{bottom:642.330000px;}
.y13_c00087{bottom:673.680000px;}
.y12_c00087{bottom:707.130000px;}
.y11_c00087{bottom:740.580000px;}
.y10_c00087{bottom:773.880000px;}
.yf_c00087{bottom:807.180000px;}
.ye_c00087{bottom:840.480000px;}
.yd_c00087{bottom:873.780000px;}
.yc_c00087{bottom:906.930000px;}
.yb_c00087{bottom:939.630000px;}
.ya_c00087{bottom:972.780000px;}
.y9_c00087{bottom:1005.780000px;}
.y8_c00087{bottom:1036.830000px;}
.y7_c00087{bottom:1057.680000px;}
.y6_c00087{bottom:1077.930000px;}
.y5_c00087{bottom:1109.130000px;}
.y4_c00087{bottom:1141.530000px;}
.y3_c00087{bottom:1172.130000px;}
.y2_c00087{bottom:1204.530000px;}
.y1_c00087{bottom:1269.630000px;}
.h5_c00087{height:13.200074px;}
.h6_c00087{height:43.804688px;}
.h4_c00087{height:110.151855px;}
.h2_c00087{height:121.546875px;}
.h3_c00087{height:129.143555px;}
.h0_c00087{height:1382.700000px;}
.h1_c00087{height:1383.000000px;}
.w2_c00087{width:104.875500px;}
.w0_c00087{width:863.175000px;}
.w1_c00087{width:863.250000px;}
.x0_c00087{left:0.000000px;}
.xb_c00087{left:57.000000px;}
.x3_c00087{left:58.050000px;}
.x4_c00087{left:59.700000px;}
.x14_c00087{left:63.000000px;}
.x13_c00087{left:64.050000px;}
.x2_c00087{left:86.100000px;}
.x12_c00087{left:91.500000px;}
.xd_c00087{left:96.450000px;}
.x15_c00087{left:177.450000px;}
.x9_c00087{left:202.800000px;}
.x8_c00087{left:240.000000px;}
.xe_c00087{left:253.050000px;}
.x5_c00087{left:274.650000px;}
.x6_c00087{left:276.300000px;}
.x7_c00087{left:277.350000px;}
.xc_c00087{left:279.000000px;}
.xa_c00087{left:280.050000px;}
.xf_c00087{left:281.100000px;}
.x10_c00087{left:314.550000px;}
.x11_c00087{left:334.800000px;}
.x16_c00087{left:383.401749px;}
.x1_c00087{left:394.500000px;}
@media print{
.v1_c00087{vertical-align:-43.200000pt;}
.v0_c00087{vertical-align:0.000000pt;}
.ls4_c00087{letter-spacing:0.000000pt;}
.ls3_c00087{letter-spacing:0.106667pt;}
.ls5_c00087{letter-spacing:2.666667pt;}
.ls7_c00087{letter-spacing:10.666667pt;}
.ls6_c00087{letter-spacing:21.333333pt;}
.ls1_c00087{letter-spacing:43.104000pt;}
.ls2_c00087{letter-spacing:187.104000pt;}
.ls0_c00087{letter-spacing:491.104000pt;}
.ws1_c00087{word-spacing:-56.000000pt;}
.ws0_c00087{word-spacing:-17.994667pt;}
.ws2_c00087{word-spacing:0.000000pt;}
._41_c00087{margin-left:-43.848000pt;}
._40_c00087{margin-left:-37.120000pt;}
._a_c00087{margin-left:-16.170667pt;}
._3d_c00087{margin-left:-14.165333pt;}
._29_c00087{margin-left:-13.066667pt;}
._28_c00087{margin-left:-9.586667pt;}
._26_c00087{margin-left:-7.466667pt;}
._1e_c00087{margin-left:-6.528000pt;}
._25_c00087{margin-left:-4.928000pt;}
._d_c00087{margin-left:-3.672000pt;}
._0_c00087{margin-left:-2.389333pt;}
._1_c00087{margin-left:-1.450667pt;}
._12_c00087{width:1.194667pt;}
._7_c00087{width:2.304000pt;}
._4_c00087{width:4.096000pt;}
._31_c00087{width:4.994667pt;}
._3_c00087{width:5.888000pt;}
._6_c00087{width:6.826667pt;}
._2f_c00087{width:7.717333pt;}
._5_c00087{width:8.618667pt;}
._16_c00087{width:9.557333pt;}
._17_c00087{width:10.837333pt;}
._1d_c00087{width:11.797333pt;}
._19_c00087{width:12.888000pt;}
._21_c00087{width:13.781333pt;}
._18_c00087{width:14.762667pt;}
._4a_c00087{width:15.850667pt;}
._15_c00087{width:17.490667pt;}
._1a_c00087{width:19.029333pt;}
._e_c00087{width:21.848000pt;}
._32_c00087{width:22.842667pt;}
._24_c00087{width:23.920000pt;}
._b_c00087{width:24.997333pt;}
._22_c00087{width:26.752000pt;}
._10_c00087{width:27.648000pt;}
._2e_c00087{width:28.613333pt;}
._1f_c00087{width:29.704000pt;}
._1c_c00087{width:30.864000pt;}
._c_c00087{width:33.144000pt;}
._30_c00087{width:34.413333pt;}
._f_c00087{width:35.925333pt;}
._44_c00087{width:37.146667pt;}
._11_c00087{width:38.826667pt;}
._14_c00087{width:39.888000pt;}
._13_c00087{width:41.941333pt;}
._3a_c00087{width:44.138667pt;}
._20_c00087{width:45.994667pt;}
._45_c00087{width:47.690667pt;}
._47_c00087{width:49.178667pt;}
._2_c00087{width:61.440000pt;}
._3b_c00087{width:70.186667pt;}
._3f_c00087{width:72.909333pt;}
._23_c00087{width:75.434667pt;}
._2a_c00087{width:78.509333pt;}
._38_c00087{width:91.765333pt;}
._34_c00087{width:112.554667pt;}
._3c_c00087{width:119.042667pt;}
._2b_c00087{width:123.093333pt;}
._9_c00087{width:136.277333pt;}
._3e_c00087{width:139.690667pt;}
._1b_c00087{width:150.416000pt;}
._43_c00087{width:160.581333pt;}
._37_c00087{width:167.413333pt;}
._36_c00087{width:172.928000pt;}
._33_c00087{width:239.786667pt;}
._8_c00087{width:245.504000pt;}
._42_c00087{width:247.234667pt;}
._49_c00087{width:326.912000pt;}
._35_c00087{width:372.736000pt;}
._27_c00087{width:375.693333pt;}
._48_c00087{width:395.520000pt;}
._2d_c00087{width:468.501333pt;}
._39_c00087{width:605.952000pt;}
._46_c00087{width:638.090667pt;}
._2c_c00087{width:1342.634667pt;}
.fs1_c00087{font-size:32.000000pt;}
.fs6_c00087{font-size:42.666667pt;}
.fs2_c00087{font-size:72.000000pt;}
.fs4_c00087{font-size:74.666667pt;}
.fs5_c00087{font-size:77.333333pt;}
.fs0_c00087{font-size:85.333333pt;}
.fs3_c00087{font-size:90.666667pt;}
.y0_c00087{bottom:0.000000pt;}
.y24_c00087{bottom:2.760000pt;}
.y23_c00087{bottom:6.425206pt;}
.y22_c00087{bottom:120.026667pt;}
.y21_c00087{bottom:150.693333pt;}
.y20_c00087{bottom:180.560000pt;}
.y1f_c00087{bottom:210.960000pt;}
.y1e_c00087{bottom:240.293333pt;}
.y1d_c00087{bottom:269.493333pt;}
.y1c_c00087{bottom:297.360000pt;}
.y1b_c00087{bottom:352.826667pt;}
.y1a_c00087{bottom:360.560000pt;}
.y19_c00087{bottom:421.760000pt;}
.y18_c00087{bottom:450.693333pt;}
.y17_c00087{bottom:480.293333pt;}
.y16_c00087{bottom:510.960000pt;}
.y15_c00087{bottom:540.293333pt;}
.y14_c00087{bottom:570.960000pt;}
.y13_c00087{bottom:598.826667pt;}
.y12_c00087{bottom:628.560000pt;}
.y11_c00087{bottom:658.293333pt;}
.y10_c00087{bottom:687.893333pt;}
.yf_c00087{bottom:717.493333pt;}
.ye_c00087{bottom:747.093333pt;}
.yd_c00087{bottom:776.693333pt;}
.yc_c00087{bottom:806.160000pt;}
.yb_c00087{bottom:835.226667pt;}
.ya_c00087{bottom:864.693333pt;}
.y9_c00087{bottom:894.026667pt;}
.y8_c00087{bottom:921.626667pt;}
.y7_c00087{bottom:940.160000pt;}
.y6_c00087{bottom:958.160000pt;}
.y5_c00087{bottom:985.893333pt;}
.y4_c00087{bottom:1014.693333pt;}
.y3_c00087{bottom:1041.893333pt;}
.y2_c00087{bottom:1070.693333pt;}
.y1_c00087{bottom:1128.560000pt;}
.h5_c00087{height:11.733399pt;}
.h6_c00087{height:38.937500pt;}
.h4_c00087{height:97.912760pt;}
.h2_c00087{height:108.041667pt;}
.h3_c00087{height:114.794271pt;}
.h0_c00087{height:1229.066667pt;}
.h1_c00087{height:1229.333333pt;}
.w2_c00087{width:93.222667pt;}
.w0_c00087{width:767.266667pt;}
.w1_c00087{width:767.333333pt;}
.x0_c00087{left:0.000000pt;}
.xb_c00087{left:50.666667pt;}
.x3_c00087{left:51.600000pt;}
.x4_c00087{left:53.066667pt;}
.x14_c00087{left:56.000000pt;}
.x13_c00087{left:56.933333pt;}
.x2_c00087{left:76.533333pt;}
.x12_c00087{left:81.333333pt;}
.xd_c00087{left:85.733333pt;}
.x15_c00087{left:157.733333pt;}
.x9_c00087{left:180.266667pt;}
.x8_c00087{left:213.333333pt;}
.xe_c00087{left:224.933333pt;}
.x5_c00087{left:244.133333pt;}
.x6_c00087{left:245.600000pt;}
.x7_c00087{left:246.533333pt;}
.xc_c00087{left:248.000000pt;}
.xa_c00087{left:248.933333pt;}
.xf_c00087{left:249.866667pt;}
.x10_c00087{left:279.600000pt;}
.x11_c00087{left:297.600000pt;}
.x16_c00087{left:340.801554pt;}
.x1_c00087{left:350.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_efdc832ee3e61ba8cc6e9f26.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_e68c990ecd3dcfb01c54d759.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_12976206cb6e4a8814b113df.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;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_c00088;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00088;src:url('chunks/assets/font_a1bafc87a75e8752f8ae419c.woff2')format("woff");}.ff6_c00088{font-family:ff6_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00088;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff7_c00088{font-family:ff7_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00088;src:url('chunks/assets/font_d4ae40fbcf75a28c94be9968.woff2')format("woff");}.ff8_c00088{font-family:ff8_c00088;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00088;src:url('chunks/assets/font_8209e2c5f70e3d55fe92b13e.woff2')format("woff");}.ff9_c00088{font-family:ff9_c00088;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00088;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffa_c00088{font-family:ffa_c00088;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00088{vertical-align:-107.400000px;}
.v0_c00088{vertical-align:0.000000px;}
.ls4_c00088{letter-spacing:0.000000px;}
.ls0_c00088{letter-spacing:1.980000px;}
.ls3_c00088{letter-spacing:2.700000px;}
.ls6_c00088{letter-spacing:3.000000px;}
.ls2_c00088{letter-spacing:8.100000px;}
.ls1_c00088{letter-spacing:12.000000px;}
.ls5_c00088{letter-spacing:45.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00088{word-spacing:-63.000000px;}
.ws0_c00088{word-spacing:-20.244000px;}
.ws3_c00088{word-spacing:-18.798000px;}
.ws4_c00088{word-spacing:-16.686000px;}
.ws2_c00088{word-spacing:-15.984000px;}
.ws5_c00088{word-spacing:0.000000px;}
._34_c00088{margin-left:-88.224000px;}
._43_c00088{margin-left:-47.325000px;}
._41_c00088{margin-left:-38.718000px;}
._42_c00088{margin-left:-37.323000px;}
._2c_c00088{margin-left:-30.720000px;}
._2f_c00088{margin-left:-24.132000px;}
._33_c00088{margin-left:-21.024000px;}
._25_c00088{margin-left:-19.632000px;}
._2e_c00088{margin-left:-18.144000px;}
._35_c00088{margin-left:-16.608000px;}
._27_c00088{margin-left:-15.468000px;}
._37_c00088{margin-left:-14.016000px;}
._39_c00088{margin-left:-12.936000px;}
._31_c00088{margin-left:-11.832000px;}
._36_c00088{margin-left:-10.440000px;}
._22_c00088{margin-left:-9.216000px;}
._23_c00088{margin-left:-7.776000px;}
._d_c00088{margin-left:-6.144000px;}
._b_c00088{margin-left:-4.224000px;}
._c_c00088{margin-left:-2.304000px;}
._e_c00088{margin-left:-1.056000px;}
._f_c00088{width:1.056000px;}
._3_c00088{width:2.208000px;}
._2_c00088{width:4.128000px;}
._0_c00088{width:5.280000px;}
._14_c00088{width:6.624000px;}
._1_c00088{width:8.352000px;}
._7_c00088{width:9.504000px;}
._6_c00088{width:11.040000px;}
._18_c00088{width:12.288000px;}
._1e_c00088{width:14.208000px;}
._4_c00088{width:15.720000px;}
._26_c00088{width:16.992000px;}
._20_c00088{width:18.144000px;}
._1d_c00088{width:19.968000px;}
._1c_c00088{width:21.552000px;}
._38_c00088{width:24.504000px;}
._17_c00088{width:25.536000px;}
._10_c00088{width:27.648000px;}
._24_c00088{width:28.896000px;}
._16_c00088{width:30.912000px;}
._1f_c00088{width:32.256000px;}
._19_c00088{width:34.392000px;}
._a_c00088{width:36.384000px;}
._8_c00088{width:37.824000px;}
._11_c00088{width:38.880000px;}
._9_c00088{width:40.320000px;}
._3e_c00088{width:41.784000px;}
._12_c00088{width:43.104000px;}
._5_c00088{width:44.268000px;}
._3a_c00088{width:45.336000px;}
._15_c00088{width:46.872000px;}
._21_c00088{width:48.864000px;}
._13_c00088{width:50.040000px;}
._29_c00088{width:51.744000px;}
._28_c00088{width:54.288000px;}
._2b_c00088{width:60.936000px;}
._30_c00088{width:62.304000px;}
._2a_c00088{width:65.280000px;}
._1a_c00088{width:108.192000px;}
._3f_c00088{width:126.528000px;}
._32_c00088{width:129.024000px;}
._3c_c00088{width:162.768000px;}
._1b_c00088{width:178.236000px;}
._3d_c00088{width:189.408000px;}
._3b_c00088{width:602.304000px;}
._40_c00088{width:792.216000px;}
._2d_c00088{width:1295.040000px;}
.fc2_c00088{color:transparent;}
.fc1_c00088{color:rgb(128,128,128);}
.fc0_c00088{color:rgb(0,0,0);}
.fs2_c00088{font-size:30.000000px;}
.fs5_c00088{font-size:36.000000px;}
.fs9_c00088{font-size:48.000000px;}
.fs6_c00088{font-size:78.000000px;}
.fs8_c00088{font-size:81.000000px;}
.fs1_c00088{font-size:84.000000px;}
.fs4_c00088{font-size:87.000000px;}
.fs0_c00088{font-size:96.000000px;}
.fs7_c00088{font-size:99.000000px;}
.fs3_c00088{font-size:102.000000px;}
.y0_c00088{bottom:0.000000px;}
.y36_c00088{bottom:3.105000px;}
.y35_c00088{bottom:7.228369px;}
.y23_c00088{bottom:115.470000px;}
.y34_c00088{bottom:148.170000px;}
.y22_c00088{bottom:150.870000px;}
.y33_c00088{bottom:179.520000px;}
.y21_c00088{bottom:184.170000px;}
.y32_c00088{bottom:209.220000px;}
.y20_c00088{bottom:218.670000px;}
.y31_c00088{bottom:239.220000px;}
.y1f_c00088{bottom:251.670000px;}
.y30_c00088{bottom:268.920000px;}
.y1e_c00088{bottom:285.870000px;}
.y2f_c00088{bottom:300.270000px;}
.y1d_c00088{bottom:319.320000px;}
.y1c_c00088{bottom:353.370000px;}
.y1b_c00088{bottom:386.370000px;}
.y1a_c00088{bottom:421.470000px;}
.y2e_c00088{bottom:437.970000px;}
.y19_c00088{bottom:452.520000px;}
.y2d_c00088{bottom:467.370000px;}
.y18_c00088{bottom:486.570000px;}
.y2c_c00088{bottom:498.120000px;}
.y17_c00088{bottom:519.720000px;}
.y2b_c00088{bottom:528.420000px;}
.y16_c00088{bottom:553.470000px;}
.y15_c00088{bottom:589.620000px;}
.y14_c00088{bottom:628.020000px;}
.y12_c00088{bottom:655.320000px;}
.y13_c00088{bottom:661.770000px;}
.y11_c00088{bottom:689.220000px;}
.y10_c00088{bottom:722.520000px;}
.yf_c00088{bottom:755.370000px;}
.ye_c00088{bottom:789.120000px;}
.y2a_c00088{bottom:805.170000px;}
.yd_c00088{bottom:820.170000px;}
.y29_c00088{bottom:835.470000px;}
.yc_c00088{bottom:855.120000px;}
.y28_c00088{bottom:864.870000px;}
.yb_c00088{bottom:887.670000px;}
.y27_c00088{bottom:894.270000px;}
.ya_c00088{bottom:921.420000px;}
.y26_c00088{bottom:923.670000px;}
.y25_c00088{bottom:952.320000px;}
.y9_c00088{bottom:954.420000px;}
.y24_c00088{bottom:981.420000px;}
.y8_c00088{bottom:987.570000px;}
.y7_c00088{bottom:1054.620000px;}
.y6_c00088{bottom:1120.470000px;}
.y5_c00088{bottom:1154.220000px;}
.y4_c00088{bottom:1187.970000px;}
.y3_c00088{bottom:1220.370000px;}
.y2_c00088{bottom:1254.120000px;}
.y1_c00088{bottom:1287.120000px;}
.ha_c00088{height:13.200073px;}
.hb_c00088{height:43.804688px;}
.h3_c00088{height:45.580078px;}
.h8_c00088{height:87.804000px;}
.h5_c00088{height:91.291992px;}
.h6_c00088{height:98.314453px;}
.h4_c00088{height:98.756836px;}
.h7_c00088{height:109.551855px;}
.h2_c00088{height:121.546875px;}
.h9_c00088{height:129.143555px;}
.h0_c00088{height:1383.450000px;}
.h1_c00088{height:1383.750000px;}
.w2_c00088{width:104.875500px;}
.w0_c00088{width:878.025000px;}
.w1_c00088{width:878.250000px;}
.x0_c00088{left:0.000000px;}
.x10_c00088{left:31.050000px;}
.xf_c00088{left:32.100000px;}
.x11_c00088{left:33.150000px;}
.xa_c00088{left:34.200000px;}
.x9_c00088{left:35.400000px;}
.x8_c00088{left:36.900000px;}
.x7_c00088{left:38.100000px;}
.x4_c00088{left:43.500000px;}
.x3_c00088{left:45.000000px;}
.x2_c00088{left:46.200000px;}
.x1_c00088{left:48.900000px;}
.x6_c00088{left:87.150000px;}
.x5_c00088{left:160.050000px;}
.xd_c00088{left:164.400000px;}
.x12_c00088{left:333.150000px;}
.x1b_c00088{left:390.826721px;}
.xe_c00088{left:400.350000px;}
.xb_c00088{left:525.900000px;}
.xc_c00088{left:538.050000px;}
.x17_c00088{left:619.650000px;}
.x14_c00088{left:620.700000px;}
.x16_c00088{left:621.750000px;}
.x15_c00088{left:622.800000px;}
.x1a_c00088{left:626.700000px;}
.x18_c00088{left:650.400000px;}
.x19_c00088{left:651.600000px;}
.x13_c00088{left:695.700000px;}
@media print{
.v1_c00088{vertical-align:-95.466667pt;}
.v0_c00088{vertical-align:0.000000pt;}
.ls4_c00088{letter-spacing:0.000000pt;}
.ls0_c00088{letter-spacing:1.760000pt;}
.ls3_c00088{letter-spacing:2.400000pt;}
.ls6_c00088{letter-spacing:2.666667pt;}
.ls2_c00088{letter-spacing:7.200000pt;}
.ls1_c00088{letter-spacing:10.666667pt;}
.ls5_c00088{letter-spacing:40.000000pt;}
.ws1_c00088{word-spacing:-56.000000pt;}
.ws0_c00088{word-spacing:-17.994667pt;}
.ws3_c00088{word-spacing:-16.709333pt;}
.ws4_c00088{word-spacing:-14.832000pt;}
.ws2_c00088{word-spacing:-14.208000pt;}
.ws5_c00088{word-spacing:0.000000pt;}
._34_c00088{margin-left:-78.421333pt;}
._43_c00088{margin-left:-42.066667pt;}
._41_c00088{margin-left:-34.416000pt;}
._42_c00088{margin-left:-33.176000pt;}
._2c_c00088{margin-left:-27.306667pt;}
._2f_c00088{margin-left:-21.450667pt;}
._33_c00088{margin-left:-18.688000pt;}
._25_c00088{margin-left:-17.450667pt;}
._2e_c00088{margin-left:-16.128000pt;}
._35_c00088{margin-left:-14.762667pt;}
._27_c00088{margin-left:-13.749333pt;}
._37_c00088{margin-left:-12.458667pt;}
._39_c00088{margin-left:-11.498667pt;}
._31_c00088{margin-left:-10.517333pt;}
._36_c00088{margin-left:-9.280000pt;}
._22_c00088{margin-left:-8.192000pt;}
._23_c00088{margin-left:-6.912000pt;}
._d_c00088{margin-left:-5.461333pt;}
._b_c00088{margin-left:-3.754667pt;}
._c_c00088{margin-left:-2.048000pt;}
._e_c00088{margin-left:-0.938667pt;}
._f_c00088{width:0.938667pt;}
._3_c00088{width:1.962667pt;}
._2_c00088{width:3.669333pt;}
._0_c00088{width:4.693333pt;}
._14_c00088{width:5.888000pt;}
._1_c00088{width:7.424000pt;}
._7_c00088{width:8.448000pt;}
._6_c00088{width:9.813333pt;}
._18_c00088{width:10.922667pt;}
._1e_c00088{width:12.629333pt;}
._4_c00088{width:13.973333pt;}
._26_c00088{width:15.104000pt;}
._20_c00088{width:16.128000pt;}
._1d_c00088{width:17.749333pt;}
._1c_c00088{width:19.157333pt;}
._38_c00088{width:21.781333pt;}
._17_c00088{width:22.698667pt;}
._10_c00088{width:24.576000pt;}
._24_c00088{width:25.685333pt;}
._16_c00088{width:27.477333pt;}
._1f_c00088{width:28.672000pt;}
._19_c00088{width:30.570667pt;}
._a_c00088{width:32.341333pt;}
._8_c00088{width:33.621333pt;}
._11_c00088{width:34.560000pt;}
._9_c00088{width:35.840000pt;}
._3e_c00088{width:37.141333pt;}
._12_c00088{width:38.314667pt;}
._5_c00088{width:39.349333pt;}
._3a_c00088{width:40.298667pt;}
._15_c00088{width:41.664000pt;}
._21_c00088{width:43.434667pt;}
._13_c00088{width:44.480000pt;}
._29_c00088{width:45.994667pt;}
._28_c00088{width:48.256000pt;}
._2b_c00088{width:54.165333pt;}
._30_c00088{width:55.381333pt;}
._2a_c00088{width:58.026667pt;}
._1a_c00088{width:96.170667pt;}
._3f_c00088{width:112.469333pt;}
._32_c00088{width:114.688000pt;}
._3c_c00088{width:144.682667pt;}
._1b_c00088{width:158.432000pt;}
._3d_c00088{width:168.362667pt;}
._3b_c00088{width:535.381333pt;}
._40_c00088{width:704.192000pt;}
._2d_c00088{width:1151.146667pt;}
.fs2_c00088{font-size:26.666667pt;}
.fs5_c00088{font-size:32.000000pt;}
.fs9_c00088{font-size:42.666667pt;}
.fs6_c00088{font-size:69.333333pt;}
.fs8_c00088{font-size:72.000000pt;}
.fs1_c00088{font-size:74.666667pt;}
.fs4_c00088{font-size:77.333333pt;}
.fs0_c00088{font-size:85.333333pt;}
.fs7_c00088{font-size:88.000000pt;}
.fs3_c00088{font-size:90.666667pt;}
.y0_c00088{bottom:0.000000pt;}
.y36_c00088{bottom:2.760000pt;}
.y35_c00088{bottom:6.425217pt;}
.y23_c00088{bottom:102.640000pt;}
.y34_c00088{bottom:131.706667pt;}
.y22_c00088{bottom:134.106667pt;}
.y33_c00088{bottom:159.573333pt;}
.y21_c00088{bottom:163.706667pt;}
.y32_c00088{bottom:185.973333pt;}
.y20_c00088{bottom:194.373333pt;}
.y31_c00088{bottom:212.640000pt;}
.y1f_c00088{bottom:223.706667pt;}
.y30_c00088{bottom:239.040000pt;}
.y1e_c00088{bottom:254.106667pt;}
.y2f_c00088{bottom:266.906667pt;}
.y1d_c00088{bottom:283.840000pt;}
.y1c_c00088{bottom:314.106667pt;}
.y1b_c00088{bottom:343.440000pt;}
.y1a_c00088{bottom:374.640000pt;}
.y2e_c00088{bottom:389.306667pt;}
.y19_c00088{bottom:402.240000pt;}
.y2d_c00088{bottom:415.440000pt;}
.y18_c00088{bottom:432.506667pt;}
.y2c_c00088{bottom:442.773333pt;}
.y17_c00088{bottom:461.973333pt;}
.y2b_c00088{bottom:469.706667pt;}
.y16_c00088{bottom:491.973333pt;}
.y15_c00088{bottom:524.106667pt;}
.y14_c00088{bottom:558.240000pt;}
.y12_c00088{bottom:582.506667pt;}
.y13_c00088{bottom:588.240000pt;}
.y11_c00088{bottom:612.640000pt;}
.y10_c00088{bottom:642.240000pt;}
.yf_c00088{bottom:671.440000pt;}
.ye_c00088{bottom:701.440000pt;}
.y2a_c00088{bottom:715.706667pt;}
.yd_c00088{bottom:729.040000pt;}
.y29_c00088{bottom:742.640000pt;}
.yc_c00088{bottom:760.106667pt;}
.y28_c00088{bottom:768.773333pt;}
.yb_c00088{bottom:789.040000pt;}
.y27_c00088{bottom:794.906667pt;}
.ya_c00088{bottom:819.040000pt;}
.y26_c00088{bottom:821.040000pt;}
.y25_c00088{bottom:846.506667pt;}
.y9_c00088{bottom:848.373333pt;}
.y24_c00088{bottom:872.373333pt;}
.y8_c00088{bottom:877.840000pt;}
.y7_c00088{bottom:937.440000pt;}
.y6_c00088{bottom:995.973333pt;}
.y5_c00088{bottom:1025.973333pt;}
.y4_c00088{bottom:1055.973333pt;}
.y3_c00088{bottom:1084.773333pt;}
.y2_c00088{bottom:1114.773333pt;}
.y1_c00088{bottom:1144.106667pt;}
.ha_c00088{height:11.733399pt;}
.hb_c00088{height:38.937500pt;}
.h3_c00088{height:40.515625pt;}
.h8_c00088{height:78.048000pt;}
.h5_c00088{height:81.148438pt;}
.h6_c00088{height:87.390625pt;}
.h4_c00088{height:87.783854pt;}
.h7_c00088{height:97.379427pt;}
.h2_c00088{height:108.041667pt;}
.h9_c00088{height:114.794271pt;}
.h0_c00088{height:1229.733333pt;}
.h1_c00088{height:1230.000000pt;}
.w2_c00088{width:93.222667pt;}
.w0_c00088{width:780.466667pt;}
.w1_c00088{width:780.666667pt;}
.x0_c00088{left:0.000000pt;}
.x10_c00088{left:27.600000pt;}
.xf_c00088{left:28.533333pt;}
.x11_c00088{left:29.466667pt;}
.xa_c00088{left:30.400000pt;}
.x9_c00088{left:31.466667pt;}
.x8_c00088{left:32.800000pt;}
.x7_c00088{left:33.866667pt;}
.x4_c00088{left:38.666667pt;}
.x3_c00088{left:40.000000pt;}
.x2_c00088{left:41.066667pt;}
.x1_c00088{left:43.466667pt;}
.x6_c00088{left:77.466667pt;}
.x5_c00088{left:142.266667pt;}
.xd_c00088{left:146.133333pt;}
.x12_c00088{left:296.133333pt;}
.x1b_c00088{left:347.401530pt;}
.xe_c00088{left:355.866667pt;}
.xb_c00088{left:467.466667pt;}
.xc_c00088{left:478.266667pt;}
.x17_c00088{left:550.800000pt;}
.x14_c00088{left:551.733333pt;}
.x16_c00088{left:552.666667pt;}
.x15_c00088{left:553.600000pt;}
.x1a_c00088{left:557.066667pt;}
.x18_c00088{left:578.133333pt;}
.x19_c00088{left:579.200000pt;}
.x13_c00088{left:618.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_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_224d83fab76deb60b686be98.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_bd2eac55dceaa32e99da54f6.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_2d15ad145ef040b3e0ebeec6.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_ac98be77f219ede14dd908da.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00089;src:url('chunks/assets/font_da7b354c5c754c04816d9f17.woff2')format("woff");}.ff6_c00089{font-family:ff6_c00089;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00089;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00089{font-family:ff7_c00089;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls9_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:2.496000px;}
.ls7_c00089{letter-spacing:4.752000px;}
.lsb_c00089{letter-spacing:9.000000px;}
.lse_c00089{letter-spacing:12.000000px;}
.ls8_c00089{letter-spacing:12.036000px;}
.ls2_c00089{letter-spacing:25.848000px;}
.lsa_c00089{letter-spacing:27.000000px;}
.ls0_c00089{letter-spacing:33.633000px;}
.lsc_c00089{letter-spacing:45.000000px;}
.ls3_c00089{letter-spacing:46.833000px;}
.lsd_c00089{letter-spacing:66.000000px;}
.ls6_c00089{letter-spacing:70.092000px;}
.ls5_c00089{letter-spacing:72.492000px;}
.ls4_c00089{letter-spacing:74.892000px;}
.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;}
}
.ws6_c00089{word-spacing:-89.136000px;}
.ws7_c00089{word-spacing:-63.000000px;}
.ws3_c00089{word-spacing:-53.856000px;}
.ws2_c00089{word-spacing:-50.136000px;}
.ws4_c00089{word-spacing:-27.798000px;}
.ws0_c00089{word-spacing:-20.244000px;}
.ws1_c00089{word-spacing:-18.798000px;}
.ws5_c00089{word-spacing:-16.686000px;}
.ws8_c00089{word-spacing:0.000000px;}
._24_c00089{margin-left:-81.888000px;}
._17_c00089{margin-left:-52.428000px;}
._58_c00089{margin-left:-50.964000px;}
._3b_c00089{margin-left:-39.243000px;}
._26_c00089{margin-left:-36.864000px;}
._43_c00089{margin-left:-30.195000px;}
._27_c00089{margin-left:-27.072000px;}
._4a_c00089{margin-left:-26.016000px;}
._25_c00089{margin-left:-24.384000px;}
._29_c00089{margin-left:-21.576000px;}
._47_c00089{margin-left:-20.148000px;}
._2e_c00089{margin-left:-19.032000px;}
._33_c00089{margin-left:-17.280000px;}
._2a_c00089{margin-left:-15.744000px;}
._2d_c00089{margin-left:-13.632000px;}
._2b_c00089{margin-left:-12.600000px;}
._36_c00089{margin-left:-10.980000px;}
._b_c00089{margin-left:-9.600000px;}
._1a_c00089{margin-left:-8.448000px;}
._18_c00089{margin-left:-7.392000px;}
._19_c00089{margin-left:-6.048000px;}
._8_c00089{margin-left:-4.044000px;}
._7_c00089{margin-left:-2.436000px;}
._e_c00089{margin-left:-1.212000px;}
._55_c00089{width:1.008000px;}
._0_c00089{width:2.016000px;}
._c_c00089{width:3.072000px;}
._a_c00089{width:4.128000px;}
._f_c00089{width:5.856000px;}
._2_c00089{width:6.912000px;}
._11_c00089{width:8.160000px;}
._4_c00089{width:9.504000px;}
._5_c00089{width:11.040000px;}
._1_c00089{width:12.960000px;}
._15_c00089{width:14.016000px;}
._1c_c00089{width:15.876000px;}
._d_c00089{width:16.992000px;}
._3_c00089{width:18.912000px;}
._39_c00089{width:20.004000px;}
._16_c00089{width:21.084000px;}
._23_c00089{width:24.600000px;}
._14_c00089{width:26.340000px;}
._22_c00089{width:28.284000px;}
._1b_c00089{width:29.376000px;}
._12_c00089{width:30.432000px;}
._56_c00089{width:31.944000px;}
._3e_c00089{width:33.084000px;}
._13_c00089{width:34.560000px;}
._1f_c00089{width:36.192000px;}
._52_c00089{width:37.248000px;}
._1d_c00089{width:38.400000px;}
._10_c00089{width:39.420000px;}
._35_c00089{width:41.376000px;}
._37_c00089{width:42.588000px;}
._40_c00089{width:44.448000px;}
._38_c00089{width:47.328000px;}
._20_c00089{width:49.380000px;}
._53_c00089{width:51.552000px;}
._9_c00089{width:53.664000px;}
._34_c00089{width:56.196000px;}
._3d_c00089{width:58.326000px;}
._44_c00089{width:60.264000px;}
._3c_c00089{width:65.610000px;}
._46_c00089{width:67.176000px;}
._41_c00089{width:69.564000px;}
._3f_c00089{width:72.852000px;}
._42_c00089{width:76.818000px;}
._1e_c00089{width:83.394000px;}
._51_c00089{width:86.484000px;}
._4c_c00089{width:92.640000px;}
._3a_c00089{width:97.968000px;}
._50_c00089{width:103.296000px;}
._4d_c00089{width:119.976000px;}
._4b_c00089{width:140.064000px;}
._4f_c00089{width:141.984000px;}
._57_c00089{width:146.712000px;}
._28_c00089{width:150.528000px;}
._2c_c00089{width:160.200000px;}
._4e_c00089{width:194.346000px;}
._6_c00089{width:202.032000px;}
._49_c00089{width:234.654000px;}
._31_c00089{width:254.400000px;}
._59_c00089{width:284.400000px;}
._48_c00089{width:298.872000px;}
._54_c00089{width:332.892000px;}
._30_c00089{width:365.784000px;}
._2f_c00089{width:371.328000px;}
._45_c00089{width:462.600000px;}
._21_c00089{width:573.792000px;}
._32_c00089{width:806.688000px;}
._5a_c00089{width:1025.340000px;}
.fc2_c00089{color:transparent;}
.fc1_c00089{color:rgb(128,128,128);}
.fc0_c00089{color:rgb(0,0,0);}
.fs7_c00089{font-size:48.000000px;}
.fs4_c00089{font-size:76.800000px;}
.fs2_c00089{font-size:78.000000px;}
.fs5_c00089{font-size:81.000000px;}
.fs1_c00089{font-size:84.000000px;}
.fs3_c00089{font-size:87.000000px;}
.fs0_c00089{font-size:96.000000px;}
.fs6_c00089{font-size:102.000000px;}
.y0_c00089{bottom:0.000000px;}
.y27_c00089{bottom:3.105000px;}
.y26_c00089{bottom:7.228357px;}
.y25_c00089{bottom:75.630000px;}
.y24_c00089{bottom:111.030000px;}
.y23_c00089{bottom:145.230000px;}
.y22_c00089{bottom:178.530000px;}
.y21_c00089{bottom:213.030000px;}
.y20_c00089{bottom:247.380000px;}
.y1f_c00089{bottom:281.580000px;}
.y1e_c00089{bottom:314.880000px;}
.y1d_c00089{bottom:349.680000px;}
.y1c_c00089{bottom:383.730000px;}
.y1b_c00089{bottom:417.480000px;}
.y1a_c00089{bottom:433.980000px;}
.y19_c00089{bottom:453.030000px;}
.y18_c00089{bottom:485.430000px;}
.y17_c00089{bottom:519.480000px;}
.y16_c00089{bottom:554.280000px;}
.y15_c00089{bottom:586.980000px;}
.y14_c00089{bottom:621.030000px;}
.y13_c00089{bottom:654.180000px;}
.y12_c00089{bottom:686.580000px;}
.y11_c00089{bottom:719.280000px;}
.y10_c00089{bottom:757.980000px;}
.yf_c00089{bottom:790.080000px;}
.ye_c00089{bottom:821.580000px;}
.yd_c00089{bottom:856.230000px;}
.yc_c00089{bottom:888.630000px;}
.yb_c00089{bottom:921.780000px;}
.ya_c00089{bottom:955.080000px;}
.y9_c00089{bottom:988.980000px;}
.y8_c00089{bottom:1022.280000px;}
.y7_c00089{bottom:1055.730000px;}
.y6_c00089{bottom:1088.880000px;}
.y5_c00089{bottom:1123.980000px;}
.y4_c00089{bottom:1155.930000px;}
.y3_c00089{bottom:1190.130000px;}
.y2_c00089{bottom:1221.180000px;}
.y1_c00089{bottom:1254.780000px;}
.h4_c00089{height:13.200074px;}
.h5_c00089{height:43.804688px;}
.h2_c00089{height:121.546875px;}
.h3_c00089{height:129.143555px;}
.h1_c00089{height:1351.500000px;}
.h0_c00089{height:1351.650000px;}
.w2_c00089{width:104.875500px;}
.w0_c00089{width:843.450000px;}
.w1_c00089{width:843.750000px;}
.x0_c00089{left:0.000000px;}
.xe_c00089{left:38.100000px;}
.x12_c00089{left:39.150000px;}
.xd_c00089{left:40.200000px;}
.xb_c00089{left:41.850000px;}
.x5_c00089{left:43.500000px;}
.xa_c00089{left:49.500000px;}
.x4_c00089{left:68.400000px;}
.x9_c00089{left:82.350000px;}
.x14_c00089{left:102.900000px;}
.x15_c00089{left:128.250000px;}
.xc_c00089{left:157.950000px;}
.x8_c00089{left:174.150000px;}
.x7_c00089{left:187.650000px;}
.x10_c00089{left:223.800000px;}
.x11_c00089{left:258.450000px;}
.xf_c00089{left:259.500000px;}
.x6_c00089{left:261.150000px;}
.x3_c00089{left:263.250000px;}
.x1_c00089{left:264.300000px;}
.x2_c00089{left:265.500000px;}
.x16_c00089{left:288.900000px;}
.x17_c00089{left:373.539230px;}
.x13_c00089{left:410.700000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls9_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:2.218667pt;}
.ls7_c00089{letter-spacing:4.224000pt;}
.lsb_c00089{letter-spacing:8.000000pt;}
.lse_c00089{letter-spacing:10.666667pt;}
.ls8_c00089{letter-spacing:10.698667pt;}
.ls2_c00089{letter-spacing:22.976000pt;}
.lsa_c00089{letter-spacing:24.000000pt;}
.ls0_c00089{letter-spacing:29.896000pt;}
.lsc_c00089{letter-spacing:40.000000pt;}
.ls3_c00089{letter-spacing:41.629333pt;}
.lsd_c00089{letter-spacing:58.666667pt;}
.ls6_c00089{letter-spacing:62.304000pt;}
.ls5_c00089{letter-spacing:64.437333pt;}
.ls4_c00089{letter-spacing:66.570667pt;}
.ws6_c00089{word-spacing:-79.232000pt;}
.ws7_c00089{word-spacing:-56.000000pt;}
.ws3_c00089{word-spacing:-47.872000pt;}
.ws2_c00089{word-spacing:-44.565333pt;}
.ws4_c00089{word-spacing:-24.709333pt;}
.ws0_c00089{word-spacing:-17.994667pt;}
.ws1_c00089{word-spacing:-16.709333pt;}
.ws5_c00089{word-spacing:-14.832000pt;}
.ws8_c00089{word-spacing:0.000000pt;}
._24_c00089{margin-left:-72.789333pt;}
._17_c00089{margin-left:-46.602667pt;}
._58_c00089{margin-left:-45.301333pt;}
._3b_c00089{margin-left:-34.882667pt;}
._26_c00089{margin-left:-32.768000pt;}
._43_c00089{margin-left:-26.840000pt;}
._27_c00089{margin-left:-24.064000pt;}
._4a_c00089{margin-left:-23.125333pt;}
._25_c00089{margin-left:-21.674667pt;}
._29_c00089{margin-left:-19.178667pt;}
._47_c00089{margin-left:-17.909333pt;}
._2e_c00089{margin-left:-16.917333pt;}
._33_c00089{margin-left:-15.360000pt;}
._2a_c00089{margin-left:-13.994667pt;}
._2d_c00089{margin-left:-12.117333pt;}
._2b_c00089{margin-left:-11.200000pt;}
._36_c00089{margin-left:-9.760000pt;}
._b_c00089{margin-left:-8.533333pt;}
._1a_c00089{margin-left:-7.509333pt;}
._18_c00089{margin-left:-6.570667pt;}
._19_c00089{margin-left:-5.376000pt;}
._8_c00089{margin-left:-3.594667pt;}
._7_c00089{margin-left:-2.165333pt;}
._e_c00089{margin-left:-1.077333pt;}
._55_c00089{width:0.896000pt;}
._0_c00089{width:1.792000pt;}
._c_c00089{width:2.730667pt;}
._a_c00089{width:3.669333pt;}
._f_c00089{width:5.205333pt;}
._2_c00089{width:6.144000pt;}
._11_c00089{width:7.253333pt;}
._4_c00089{width:8.448000pt;}
._5_c00089{width:9.813333pt;}
._1_c00089{width:11.520000pt;}
._15_c00089{width:12.458667pt;}
._1c_c00089{width:14.112000pt;}
._d_c00089{width:15.104000pt;}
._3_c00089{width:16.810667pt;}
._39_c00089{width:17.781333pt;}
._16_c00089{width:18.741333pt;}
._23_c00089{width:21.866667pt;}
._14_c00089{width:23.413333pt;}
._22_c00089{width:25.141333pt;}
._1b_c00089{width:26.112000pt;}
._12_c00089{width:27.050667pt;}
._56_c00089{width:28.394667pt;}
._3e_c00089{width:29.408000pt;}
._13_c00089{width:30.720000pt;}
._1f_c00089{width:32.170667pt;}
._52_c00089{width:33.109333pt;}
._1d_c00089{width:34.133333pt;}
._10_c00089{width:35.040000pt;}
._35_c00089{width:36.778667pt;}
._37_c00089{width:37.856000pt;}
._40_c00089{width:39.509333pt;}
._38_c00089{width:42.069333pt;}
._20_c00089{width:43.893333pt;}
._53_c00089{width:45.824000pt;}
._9_c00089{width:47.701333pt;}
._34_c00089{width:49.952000pt;}
._3d_c00089{width:51.845333pt;}
._44_c00089{width:53.568000pt;}
._3c_c00089{width:58.320000pt;}
._46_c00089{width:59.712000pt;}
._41_c00089{width:61.834667pt;}
._3f_c00089{width:64.757333pt;}
._42_c00089{width:68.282667pt;}
._1e_c00089{width:74.128000pt;}
._51_c00089{width:76.874667pt;}
._4c_c00089{width:82.346667pt;}
._3a_c00089{width:87.082667pt;}
._50_c00089{width:91.818667pt;}
._4d_c00089{width:106.645333pt;}
._4b_c00089{width:124.501333pt;}
._4f_c00089{width:126.208000pt;}
._57_c00089{width:130.410667pt;}
._28_c00089{width:133.802667pt;}
._2c_c00089{width:142.400000pt;}
._4e_c00089{width:172.752000pt;}
._6_c00089{width:179.584000pt;}
._49_c00089{width:208.581333pt;}
._31_c00089{width:226.133333pt;}
._59_c00089{width:252.800000pt;}
._48_c00089{width:265.664000pt;}
._54_c00089{width:295.904000pt;}
._30_c00089{width:325.141333pt;}
._2f_c00089{width:330.069333pt;}
._45_c00089{width:411.200000pt;}
._21_c00089{width:510.037333pt;}
._32_c00089{width:717.056000pt;}
._5a_c00089{width:911.413333pt;}
.fs7_c00089{font-size:42.666667pt;}
.fs4_c00089{font-size:68.266667pt;}
.fs2_c00089{font-size:69.333333pt;}
.fs5_c00089{font-size:72.000000pt;}
.fs1_c00089{font-size:74.666667pt;}
.fs3_c00089{font-size:77.333333pt;}
.fs0_c00089{font-size:85.333333pt;}
.fs6_c00089{font-size:90.666667pt;}
.y0_c00089{bottom:0.000000pt;}
.y27_c00089{bottom:2.760000pt;}
.y26_c00089{bottom:6.425206pt;}
.y25_c00089{bottom:67.226667pt;}
.y24_c00089{bottom:98.693333pt;}
.y23_c00089{bottom:129.093333pt;}
.y22_c00089{bottom:158.693333pt;}
.y21_c00089{bottom:189.360000pt;}
.y20_c00089{bottom:219.893333pt;}
.y1f_c00089{bottom:250.293333pt;}
.y1e_c00089{bottom:279.893333pt;}
.y1d_c00089{bottom:310.826667pt;}
.y1c_c00089{bottom:341.093333pt;}
.y1b_c00089{bottom:371.093333pt;}
.y1a_c00089{bottom:385.760000pt;}
.y19_c00089{bottom:402.693333pt;}
.y18_c00089{bottom:431.493333pt;}
.y17_c00089{bottom:461.760000pt;}
.y16_c00089{bottom:492.693333pt;}
.y15_c00089{bottom:521.760000pt;}
.y14_c00089{bottom:552.026667pt;}
.y13_c00089{bottom:581.493333pt;}
.y12_c00089{bottom:610.293333pt;}
.y11_c00089{bottom:639.360000pt;}
.y10_c00089{bottom:673.760000pt;}
.yf_c00089{bottom:702.293333pt;}
.ye_c00089{bottom:730.293333pt;}
.yd_c00089{bottom:761.093333pt;}
.yc_c00089{bottom:789.893333pt;}
.yb_c00089{bottom:819.360000pt;}
.ya_c00089{bottom:848.960000pt;}
.y9_c00089{bottom:879.093333pt;}
.y8_c00089{bottom:908.693333pt;}
.y7_c00089{bottom:938.426667pt;}
.y6_c00089{bottom:967.893333pt;}
.y5_c00089{bottom:999.093333pt;}
.y4_c00089{bottom:1027.493333pt;}
.y3_c00089{bottom:1057.893333pt;}
.y2_c00089{bottom:1085.493333pt;}
.y1_c00089{bottom:1115.360000pt;}
.h4_c00089{height:11.733399pt;}
.h5_c00089{height:38.937500pt;}
.h2_c00089{height:108.041667pt;}
.h3_c00089{height:114.794271pt;}
.h1_c00089{height:1201.333333pt;}
.h0_c00089{height:1201.466667pt;}
.w2_c00089{width:93.222667pt;}
.w0_c00089{width:749.733333pt;}
.w1_c00089{width:750.000000pt;}
.x0_c00089{left:0.000000pt;}
.xe_c00089{left:33.866667pt;}
.x12_c00089{left:34.800000pt;}
.xd_c00089{left:35.733333pt;}
.xb_c00089{left:37.200000pt;}
.x5_c00089{left:38.666667pt;}
.xa_c00089{left:44.000000pt;}
.x4_c00089{left:60.800000pt;}
.x9_c00089{left:73.200000pt;}
.x14_c00089{left:91.466667pt;}
.x15_c00089{left:114.000000pt;}
.xc_c00089{left:140.400000pt;}
.x8_c00089{left:154.800000pt;}
.x7_c00089{left:166.800000pt;}
.x10_c00089{left:198.933333pt;}
.x11_c00089{left:229.733333pt;}
.xf_c00089{left:230.666667pt;}
.x6_c00089{left:232.133333pt;}
.x3_c00089{left:234.000000pt;}
.x1_c00089{left:234.933333pt;}
.x2_c00089{left:236.000000pt;}
.x16_c00089{left:256.800000pt;}
.x17_c00089{left:332.034871pt;}
.x13_c00089{left:365.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5014cb432f61bae9f8769c82.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_fc187cc28816d787b977516a.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00090;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls4_c00090{letter-spacing:0.000000px;}
.ls1_c00090{letter-spacing:8.652000px;}
.ls0_c00090{letter-spacing:9.600000px;}
.ls3_c00090{letter-spacing:12.000000px;}
.ls2_c00090{letter-spacing:20.400000px;}
.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:-63.504000px;}
.ws1_c00090{word-spacing:0.000000px;}
._3c_c00090{margin-left:-26.973000px;}
._25_c00090{margin-left:-25.524000px;}
._2f_c00090{margin-left:-19.965000px;}
._27_c00090{margin-left:-15.744000px;}
._37_c00090{margin-left:-14.208000px;}
._28_c00090{margin-left:-12.576000px;}
._10_c00090{margin-left:-10.560000px;}
._11_c00090{margin-left:-8.640000px;}
._f_c00090{margin-left:-7.014000px;}
._4_c00090{margin-left:-5.880000px;}
._3a_c00090{margin-left:-4.584000px;}
._13_c00090{margin-left:-3.432000px;}
._c_c00090{margin-left:-1.737000px;}
._9_c00090{width:1.014000px;}
._1_c00090{width:2.976000px;}
._a_c00090{width:4.245000px;}
._2_c00090{width:5.376000px;}
._0_c00090{width:6.720000px;}
._1a_c00090{width:7.860000px;}
._6_c00090{width:8.928000px;}
._7_c00090{width:10.752000px;}
._3_c00090{width:12.576000px;}
._b_c00090{width:14.592000px;}
._8_c00090{width:16.512000px;}
._5_c00090{width:17.733000px;}
._d_c00090{width:19.104000px;}
._34_c00090{width:20.358000px;}
._e_c00090{width:22.068000px;}
._19_c00090{width:24.150000px;}
._21_c00090{width:25.569000px;}
._3b_c00090{width:26.628000px;}
._14_c00090{width:27.858000px;}
._17_c00090{width:29.994000px;}
._35_c00090{width:31.335000px;}
._12_c00090{width:32.778000px;}
._18_c00090{width:34.725000px;}
._1d_c00090{width:36.213000px;}
._36_c00090{width:37.242000px;}
._1e_c00090{width:38.244000px;}
._38_c00090{width:39.288000px;}
._1f_c00090{width:40.884000px;}
._33_c00090{width:42.240000px;}
._1b_c00090{width:43.308000px;}
._16_c00090{width:45.675000px;}
._24_c00090{width:47.562000px;}
._1c_c00090{width:49.131000px;}
._2e_c00090{width:51.333000px;}
._15_c00090{width:53.433000px;}
._39_c00090{width:55.032000px;}
._3e_c00090{width:56.466000px;}
._29_c00090{width:60.102000px;}
._2b_c00090{width:62.427000px;}
._2c_c00090{width:63.897000px;}
._2a_c00090{width:66.618000px;}
._31_c00090{width:69.507000px;}
._30_c00090{width:72.267000px;}
._2d_c00090{width:79.884000px;}
._3d_c00090{width:119.112000px;}
._22_c00090{width:122.913000px;}
._20_c00090{width:128.757000px;}
._23_c00090{width:157.515000px;}
._26_c00090{width:177.492000px;}
._32_c00090{width:218.529000px;}
._3f_c00090{width:2130.651000px;}
.fc2_c00090{color:transparent;}
.fc1_c00090{color:rgb(128,128,128);}
.fc0_c00090{color:rgb(0,0,0);}
.fs4_c00090{font-size:48.000000px;}
.fs3_c00090{font-size:84.000000px;}
.fs0_c00090{font-size:96.000000px;}
.fs2_c00090{font-size:102.000000px;}
.fs1_c00090{font-size:105.000000px;}
.y0_c00090{bottom:0.000000px;}
.y27_c00090{bottom:3.105000px;}
.y26_c00090{bottom:7.228369px;}
.y25_c00090{bottom:97.470000px;}
.y24_c00090{bottom:130.620000px;}
.y22_c00090{bottom:165.270000px;}
.y21_c00090{bottom:199.470000px;}
.y20_c00090{bottom:233.520000px;}
.y1f_c00090{bottom:266.970000px;}
.y1e_c00090{bottom:301.020000px;}
.y1d_c00090{bottom:335.520000px;}
.y1c_c00090{bottom:368.220000px;}
.y1b_c00090{bottom:401.670000px;}
.y1a_c00090{bottom:437.070000px;}
.y19_c00090{bottom:470.070000px;}
.y18_c00090{bottom:503.820000px;}
.y17_c00090{bottom:537.570000px;}
.y16_c00090{bottom:570.720000px;}
.y15_c00090{bottom:605.070000px;}
.y14_c00090{bottom:638.520000px;}
.y13_c00090{bottom:671.220000px;}
.y12_c00090{bottom:705.270000px;}
.y11_c00090{bottom:739.170000px;}
.y10_c00090{bottom:772.170000px;}
.yf_c00090{bottom:805.620000px;}
.ye_c00090{bottom:838.620000px;}
.yd_c00090{bottom:871.770000px;}
.yc_c00090{bottom:904.770000px;}
.yb_c00090{bottom:937.920000px;}
.ya_c00090{bottom:971.670000px;}
.y23_c00090{bottom:979.470000px;}
.y9_c00090{bottom:1004.370000px;}
.y8_c00090{bottom:1038.720000px;}
.y7_c00090{bottom:1071.570000px;}
.y6_c00090{bottom:1105.920000px;}
.y5_c00090{bottom:1138.770000px;}
.y4_c00090{bottom:1172.070000px;}
.y3_c00090{bottom:1205.520000px;}
.y2_c00090{bottom:1239.270000px;}
.y1_c00090{bottom:1272.720000px;}
.h4_c00090{height:13.200073px;}
.h5_c00090{height:43.804688px;}
.h3_c00090{height:121.546875px;}
.h2_c00090{height:132.941895px;}
.h0_c00090{height:1383.450000px;}
.h1_c00090{height:1383.750000px;}
.w2_c00090{width:104.875500px;}
.w0_c00090{width:878.025000px;}
.w1_c00090{width:878.250000px;}
.x0_c00090{left:0.000000px;}
.x5_c00090{left:50.550000px;}
.x4_c00090{left:51.600000px;}
.x3_c00090{left:53.100000px;}
.x2_c00090{left:54.300000px;}
.x1_c00090{left:55.950000px;}
.x7_c00090{left:390.826721px;}
.x6_c00090{left:640.200000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls4_c00090{letter-spacing:0.000000pt;}
.ls1_c00090{letter-spacing:7.690667pt;}
.ls0_c00090{letter-spacing:8.533333pt;}
.ls3_c00090{letter-spacing:10.666667pt;}
.ls2_c00090{letter-spacing:18.133333pt;}
.ws0_c00090{word-spacing:-56.448000pt;}
.ws1_c00090{word-spacing:0.000000pt;}
._3c_c00090{margin-left:-23.976000pt;}
._25_c00090{margin-left:-22.688000pt;}
._2f_c00090{margin-left:-17.746667pt;}
._27_c00090{margin-left:-13.994667pt;}
._37_c00090{margin-left:-12.629333pt;}
._28_c00090{margin-left:-11.178667pt;}
._10_c00090{margin-left:-9.386667pt;}
._11_c00090{margin-left:-7.680000pt;}
._f_c00090{margin-left:-6.234667pt;}
._4_c00090{margin-left:-5.226667pt;}
._3a_c00090{margin-left:-4.074667pt;}
._13_c00090{margin-left:-3.050667pt;}
._c_c00090{margin-left:-1.544000pt;}
._9_c00090{width:0.901333pt;}
._1_c00090{width:2.645333pt;}
._a_c00090{width:3.773333pt;}
._2_c00090{width:4.778667pt;}
._0_c00090{width:5.973333pt;}
._1a_c00090{width:6.986667pt;}
._6_c00090{width:7.936000pt;}
._7_c00090{width:9.557333pt;}
._3_c00090{width:11.178667pt;}
._b_c00090{width:12.970667pt;}
._8_c00090{width:14.677333pt;}
._5_c00090{width:15.762667pt;}
._d_c00090{width:16.981333pt;}
._34_c00090{width:18.096000pt;}
._e_c00090{width:19.616000pt;}
._19_c00090{width:21.466667pt;}
._21_c00090{width:22.728000pt;}
._3b_c00090{width:23.669333pt;}
._14_c00090{width:24.762667pt;}
._17_c00090{width:26.661333pt;}
._35_c00090{width:27.853333pt;}
._12_c00090{width:29.136000pt;}
._18_c00090{width:30.866667pt;}
._1d_c00090{width:32.189333pt;}
._36_c00090{width:33.104000pt;}
._1e_c00090{width:33.994667pt;}
._38_c00090{width:34.922667pt;}
._1f_c00090{width:36.341333pt;}
._33_c00090{width:37.546667pt;}
._1b_c00090{width:38.496000pt;}
._16_c00090{width:40.600000pt;}
._24_c00090{width:42.277333pt;}
._1c_c00090{width:43.672000pt;}
._2e_c00090{width:45.629333pt;}
._15_c00090{width:47.496000pt;}
._39_c00090{width:48.917333pt;}
._3e_c00090{width:50.192000pt;}
._29_c00090{width:53.424000pt;}
._2b_c00090{width:55.490667pt;}
._2c_c00090{width:56.797333pt;}
._2a_c00090{width:59.216000pt;}
._31_c00090{width:61.784000pt;}
._30_c00090{width:64.237333pt;}
._2d_c00090{width:71.008000pt;}
._3d_c00090{width:105.877333pt;}
._22_c00090{width:109.256000pt;}
._20_c00090{width:114.450667pt;}
._23_c00090{width:140.013333pt;}
._26_c00090{width:157.770667pt;}
._32_c00090{width:194.248000pt;}
._3f_c00090{width:1893.912000pt;}
.fs4_c00090{font-size:42.666667pt;}
.fs3_c00090{font-size:74.666667pt;}
.fs0_c00090{font-size:85.333333pt;}
.fs2_c00090{font-size:90.666667pt;}
.fs1_c00090{font-size:93.333333pt;}
.y0_c00090{bottom:0.000000pt;}
.y27_c00090{bottom:2.760000pt;}
.y26_c00090{bottom:6.425217pt;}
.y25_c00090{bottom:86.640000pt;}
.y24_c00090{bottom:116.106667pt;}
.y22_c00090{bottom:146.906667pt;}
.y21_c00090{bottom:177.306667pt;}
.y20_c00090{bottom:207.573333pt;}
.y1f_c00090{bottom:237.306667pt;}
.y1e_c00090{bottom:267.573333pt;}
.y1d_c00090{bottom:298.240000pt;}
.y1c_c00090{bottom:327.306667pt;}
.y1b_c00090{bottom:357.040000pt;}
.y1a_c00090{bottom:388.506667pt;}
.y19_c00090{bottom:417.840000pt;}
.y18_c00090{bottom:447.840000pt;}
.y17_c00090{bottom:477.840000pt;}
.y16_c00090{bottom:507.306667pt;}
.y15_c00090{bottom:537.840000pt;}
.y14_c00090{bottom:567.573333pt;}
.y13_c00090{bottom:596.640000pt;}
.y12_c00090{bottom:626.906667pt;}
.y11_c00090{bottom:657.040000pt;}
.y10_c00090{bottom:686.373333pt;}
.yf_c00090{bottom:716.106667pt;}
.ye_c00090{bottom:745.440000pt;}
.yd_c00090{bottom:774.906667pt;}
.yc_c00090{bottom:804.240000pt;}
.yb_c00090{bottom:833.706667pt;}
.ya_c00090{bottom:863.706667pt;}
.y23_c00090{bottom:870.640000pt;}
.y9_c00090{bottom:892.773333pt;}
.y8_c00090{bottom:923.306667pt;}
.y7_c00090{bottom:952.506667pt;}
.y6_c00090{bottom:983.040000pt;}
.y5_c00090{bottom:1012.240000pt;}
.y4_c00090{bottom:1041.840000pt;}
.y3_c00090{bottom:1071.573333pt;}
.y2_c00090{bottom:1101.573333pt;}
.y1_c00090{bottom:1131.306667pt;}
.h4_c00090{height:11.733399pt;}
.h5_c00090{height:38.937500pt;}
.h3_c00090{height:108.041667pt;}
.h2_c00090{height:118.170573pt;}
.h0_c00090{height:1229.733333pt;}
.h1_c00090{height:1230.000000pt;}
.w2_c00090{width:93.222667pt;}
.w0_c00090{width:780.466667pt;}
.w1_c00090{width:780.666667pt;}
.x0_c00090{left:0.000000pt;}
.x5_c00090{left:44.933333pt;}
.x4_c00090{left:45.866667pt;}
.x3_c00090{left:47.200000pt;}
.x2_c00090{left:48.266667pt;}
.x1_c00090{left:49.733333pt;}
.x7_c00090{left:347.401530pt;}
.x6_c00090{left:569.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_74ec4fb271b35d1671592fbb.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_6826acfaa4ea4ad886da77e8.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls2_c00091{letter-spacing:0.000000px;}
.ls3_c00091{letter-spacing:6.000000px;}
.ls0_c00091{letter-spacing:20.400000px;}
.ls1_c00091{letter-spacing:36.852000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:0.000000px;}
._1f_c00091{margin-left:-31.776000px;}
._20_c00091{margin-left:-29.712000px;}
._29_c00091{margin-left:-10.848000px;}
._28_c00091{margin-left:-9.144000px;}
._2a_c00091{margin-left:-7.392000px;}
._f_c00091{margin-left:-5.472000px;}
._e_c00091{margin-left:-4.320000px;}
._10_c00091{margin-left:-2.880000px;}
._8_c00091{margin-left:-1.728000px;}
._0_c00091{width:1.920000px;}
._4_c00091{width:2.976000px;}
._3_c00091{width:4.224000px;}
._16_c00091{width:5.664000px;}
._2_c00091{width:6.816000px;}
._a_c00091{width:8.256000px;}
._c_c00091{width:9.888000px;}
._1_c00091{width:11.712000px;}
._7_c00091{width:13.728000px;}
._1d_c00091{width:15.360000px;}
._19_c00091{width:17.184000px;}
._1e_c00091{width:18.912000px;}
._9_c00091{width:20.208000px;}
._d_c00091{width:22.080000px;}
._13_c00091{width:24.768000px;}
._26_c00091{width:25.824000px;}
._11_c00091{width:27.264000px;}
._15_c00091{width:28.488000px;}
._5_c00091{width:29.856000px;}
._6_c00091{width:31.680000px;}
._25_c00091{width:32.688000px;}
._12_c00091{width:33.696000px;}
._14_c00091{width:35.424000px;}
._24_c00091{width:37.176000px;}
._23_c00091{width:39.264000px;}
._22_c00091{width:40.512000px;}
._b_c00091{width:41.568000px;}
._1b_c00091{width:43.392000px;}
._2c_c00091{width:44.400000px;}
._1c_c00091{width:45.600000px;}
._1a_c00091{width:47.040000px;}
._21_c00091{width:49.536000px;}
._2b_c00091{width:51.552000px;}
._18_c00091{width:53.472000px;}
._17_c00091{width:62.592000px;}
._27_c00091{width:107.808000px;}
.fc2_c00091{color:transparent;}
.fc1_c00091{color:rgb(128,128,128);}
.fc0_c00091{color:rgb(0,0,0);}
.fs4_c00091{font-size:48.000000px;}
.fs2_c00091{font-size:60.000000px;}
.fs3_c00091{font-size:84.000000px;}
.fs0_c00091{font-size:96.000000px;}
.fs1_c00091{font-size:102.000000px;}
.y0_c00091{bottom:0.000000px;}
.y25_c00091{bottom:3.105000px;}
.y24_c00091{bottom:7.228355px;}
.y23_c00091{bottom:115.035000px;}
.y22_c00091{bottom:149.085000px;}
.y21_c00091{bottom:184.485000px;}
.y20_c00091{bottom:218.235000px;}
.y1f_c00091{bottom:252.135000px;}
.y1e_c00091{bottom:286.485000px;}
.y1d_c00091{bottom:320.985000px;}
.y1c_c00091{bottom:355.335000px;}
.y1b_c00091{bottom:388.785000px;}
.y1a_c00091{bottom:422.535000px;}
.y19_c00091{bottom:456.585000px;}
.y18_c00091{bottom:490.935000px;}
.y17_c00091{bottom:524.835000px;}
.y16_c00091{bottom:558.585000px;}
.y15_c00091{bottom:592.635000px;}
.y14_c00091{bottom:625.635000px;}
.y13_c00091{bottom:658.785000px;}
.y12_c00091{bottom:692.535000px;}
.y11_c00091{bottom:726.885000px;}
.y10_c00091{bottom:759.735000px;}
.yf_c00091{bottom:794.085000px;}
.ye_c00091{bottom:827.235000px;}
.yd_c00091{bottom:860.985000px;}
.yc_c00091{bottom:895.035000px;}
.yb_c00091{bottom:927.585000px;}
.ya_c00091{bottom:960.885000px;}
.y9_c00091{bottom:994.185000px;}
.y8_c00091{bottom:1027.335000px;}
.y7_c00091{bottom:1060.035000px;}
.y6_c00091{bottom:1093.785000px;}
.y5_c00091{bottom:1126.185000px;}
.y4_c00091{bottom:1160.235000px;}
.y3_c00091{bottom:1194.285000px;}
.y2_c00091{bottom:1226.085000px;}
.y1_c00091{bottom:1259.535000px;}
.h3_c00091{height:13.200074px;}
.h4_c00091{height:43.804688px;}
.h2_c00091{height:121.546875px;}
.h1_c00091{height:1366.500000px;}
.h0_c00091{height:1366.725000px;}
.w2_c00091{width:104.875500px;}
.w0_c00091{width:852.675000px;}
.w1_c00091{width:852.750000px;}
.x0_c00091{left:0.000000px;}
.x2_c00091{left:263.250000px;}
.x1_c00091{left:264.300000px;}
.x3_c00091{left:265.500000px;}
.x4_c00091{left:266.550000px;}
.x5_c00091{left:268.200000px;}
.x6_c00091{left:378.151749px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls2_c00091{letter-spacing:0.000000pt;}
.ls3_c00091{letter-spacing:5.333333pt;}
.ls0_c00091{letter-spacing:18.133333pt;}
.ls1_c00091{letter-spacing:32.757333pt;}
.ws0_c00091{word-spacing:0.000000pt;}
._1f_c00091{margin-left:-28.245333pt;}
._20_c00091{margin-left:-26.410667pt;}
._29_c00091{margin-left:-9.642667pt;}
._28_c00091{margin-left:-8.128000pt;}
._2a_c00091{margin-left:-6.570667pt;}
._f_c00091{margin-left:-4.864000pt;}
._e_c00091{margin-left:-3.840000pt;}
._10_c00091{margin-left:-2.560000pt;}
._8_c00091{margin-left:-1.536000pt;}
._0_c00091{width:1.706667pt;}
._4_c00091{width:2.645333pt;}
._3_c00091{width:3.754667pt;}
._16_c00091{width:5.034667pt;}
._2_c00091{width:6.058667pt;}
._a_c00091{width:7.338667pt;}
._c_c00091{width:8.789333pt;}
._1_c00091{width:10.410667pt;}
._7_c00091{width:12.202667pt;}
._1d_c00091{width:13.653333pt;}
._19_c00091{width:15.274667pt;}
._1e_c00091{width:16.810667pt;}
._9_c00091{width:17.962667pt;}
._d_c00091{width:19.626667pt;}
._13_c00091{width:22.016000pt;}
._26_c00091{width:22.954667pt;}
._11_c00091{width:24.234667pt;}
._15_c00091{width:25.322667pt;}
._5_c00091{width:26.538667pt;}
._6_c00091{width:28.160000pt;}
._25_c00091{width:29.056000pt;}
._12_c00091{width:29.952000pt;}
._14_c00091{width:31.488000pt;}
._24_c00091{width:33.045333pt;}
._23_c00091{width:34.901333pt;}
._22_c00091{width:36.010667pt;}
._b_c00091{width:36.949333pt;}
._1b_c00091{width:38.570667pt;}
._2c_c00091{width:39.466667pt;}
._1c_c00091{width:40.533333pt;}
._1a_c00091{width:41.813333pt;}
._21_c00091{width:44.032000pt;}
._2b_c00091{width:45.824000pt;}
._18_c00091{width:47.530667pt;}
._17_c00091{width:55.637333pt;}
._27_c00091{width:95.829333pt;}
.fs4_c00091{font-size:42.666667pt;}
.fs2_c00091{font-size:53.333333pt;}
.fs3_c00091{font-size:74.666667pt;}
.fs0_c00091{font-size:85.333333pt;}
.fs1_c00091{font-size:90.666667pt;}
.y0_c00091{bottom:0.000000pt;}
.y25_c00091{bottom:2.760000pt;}
.y24_c00091{bottom:6.425204pt;}
.y23_c00091{bottom:102.253333pt;}
.y22_c00091{bottom:132.520000pt;}
.y21_c00091{bottom:163.986667pt;}
.y20_c00091{bottom:193.986667pt;}
.y1f_c00091{bottom:224.120000pt;}
.y1e_c00091{bottom:254.653333pt;}
.y1d_c00091{bottom:285.320000pt;}
.y1c_c00091{bottom:315.853333pt;}
.y1b_c00091{bottom:345.586667pt;}
.y1a_c00091{bottom:375.586667pt;}
.y19_c00091{bottom:405.853333pt;}
.y18_c00091{bottom:436.386667pt;}
.y17_c00091{bottom:466.520000pt;}
.y16_c00091{bottom:496.520000pt;}
.y15_c00091{bottom:526.786667pt;}
.y14_c00091{bottom:556.120000pt;}
.y13_c00091{bottom:585.586667pt;}
.y12_c00091{bottom:615.586667pt;}
.y11_c00091{bottom:646.120000pt;}
.y10_c00091{bottom:675.320000pt;}
.yf_c00091{bottom:705.853333pt;}
.ye_c00091{bottom:735.320000pt;}
.yd_c00091{bottom:765.320000pt;}
.yc_c00091{bottom:795.586667pt;}
.yb_c00091{bottom:824.520000pt;}
.ya_c00091{bottom:854.120000pt;}
.y9_c00091{bottom:883.720000pt;}
.y8_c00091{bottom:913.186667pt;}
.y7_c00091{bottom:942.253333pt;}
.y6_c00091{bottom:972.253333pt;}
.y5_c00091{bottom:1001.053333pt;}
.y4_c00091{bottom:1031.320000pt;}
.y3_c00091{bottom:1061.586667pt;}
.y2_c00091{bottom:1089.853333pt;}
.y1_c00091{bottom:1119.586667pt;}
.h3_c00091{height:11.733399pt;}
.h4_c00091{height:38.937500pt;}
.h2_c00091{height:108.041667pt;}
.h1_c00091{height:1214.666667pt;}
.h0_c00091{height:1214.866667pt;}
.w2_c00091{width:93.222667pt;}
.w0_c00091{width:757.933333pt;}
.w1_c00091{width:758.000000pt;}
.x0_c00091{left:0.000000pt;}
.x2_c00091{left:234.000000pt;}
.x1_c00091{left:234.933333pt;}
.x3_c00091{left:236.000000pt;}
.x4_c00091{left:236.933333pt;}
.x5_c00091{left:238.400000pt;}
.x6_c00091{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3968853a0f00ef099dcb3c0.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls2_c00092{letter-spacing:0.000000px;}
.ls1_c00092{letter-spacing:3.000000px;}
.ls0_c00092{letter-spacing:7.344000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:0.000000px;}
._2b_c00092{margin-left:-29.952000px;}
._33_c00092{margin-left:-27.360000px;}
._31_c00092{margin-left:-21.600000px;}
._29_c00092{margin-left:-18.816000px;}
._28_c00092{margin-left:-17.760000px;}
._1a_c00092{margin-left:-12.576000px;}
._19_c00092{margin-left:-11.424000px;}
._26_c00092{margin-left:-9.504000px;}
._2e_c00092{margin-left:-8.160000px;}
._27_c00092{margin-left:-6.624000px;}
._12_c00092{margin-left:-4.992000px;}
._15_c00092{margin-left:-3.840000px;}
._1d_c00092{margin-left:-2.784000px;}
._11_c00092{margin-left:-1.440000px;}
._17_c00092{width:1.152000px;}
._b_c00092{width:2.208000px;}
._d_c00092{width:3.264000px;}
._6_c00092{width:4.320000px;}
._8_c00092{width:5.856000px;}
._1_c00092{width:7.488000px;}
._3_c00092{width:9.216000px;}
._0_c00092{width:11.040000px;}
._2_c00092{width:12.480000px;}
._20_c00092{width:13.536000px;}
._c_c00092{width:14.976000px;}
._5_c00092{width:16.032000px;}
._f_c00092{width:17.376000px;}
._10_c00092{width:18.912000px;}
._4_c00092{width:20.064000px;}
._18_c00092{width:21.696000px;}
._a_c00092{width:24.192000px;}
._13_c00092{width:25.344000px;}
._14_c00092{width:27.936000px;}
._1b_c00092{width:29.952000px;}
._e_c00092{width:32.256000px;}
._30_c00092{width:33.504000px;}
._23_c00092{width:34.656000px;}
._2a_c00092{width:35.808000px;}
._9_c00092{width:36.960000px;}
._2d_c00092{width:38.016000px;}
._22_c00092{width:39.360000px;}
._16_c00092{width:40.512000px;}
._7_c00092{width:42.528000px;}
._24_c00092{width:43.872000px;}
._21_c00092{width:45.024000px;}
._32_c00092{width:46.272000px;}
._1c_c00092{width:47.520000px;}
._25_c00092{width:49.824000px;}
._1e_c00092{width:51.456000px;}
._2c_c00092{width:53.280000px;}
._1f_c00092{width:55.872000px;}
._2f_c00092{width:58.176000px;}
._34_c00092{width:818.976000px;}
._35_c00092{width:834.144000px;}
.fc2_c00092{color:transparent;}
.fc1_c00092{color:rgb(128,128,128);}
.fc0_c00092{color:rgb(0,0,0);}
.fs2_c00092{font-size:48.000000px;}
.fs0_c00092{font-size:96.000000px;}
.fs1_c00092{font-size:102.000000px;}
.y0_c00092{bottom:0.000000px;}
.y26_c00092{bottom:3.105000px;}
.y25_c00092{bottom:7.228369px;}
.y24_c00092{bottom:99.570000px;}
.y23_c00092{bottom:133.620000px;}
.y22_c00092{bottom:168.120000px;}
.y21_c00092{bottom:202.470000px;}
.y20_c00092{bottom:237.270000px;}
.y1f_c00092{bottom:269.970000px;}
.y1e_c00092{bottom:304.020000px;}
.y1d_c00092{bottom:338.070000px;}
.y1c_c00092{bottom:371.520000px;}
.y1b_c00092{bottom:405.270000px;}
.y1a_c00092{bottom:439.470000px;}
.y19_c00092{bottom:472.770000px;}
.y18_c00092{bottom:506.520000px;}
.y17_c00092{bottom:540.270000px;}
.y16_c00092{bottom:573.720000px;}
.y15_c00092{bottom:606.720000px;}
.y14_c00092{bottom:639.570000px;}
.y13_c00092{bottom:673.320000px;}
.y12_c00092{bottom:706.620000px;}
.y11_c00092{bottom:740.820000px;}
.y10_c00092{bottom:775.470000px;}
.yf_c00092{bottom:808.620000px;}
.ye_c00092{bottom:841.620000px;}
.yd_c00092{bottom:875.520000px;}
.yc_c00092{bottom:908.220000px;}
.yb_c00092{bottom:940.620000px;}
.ya_c00092{bottom:974.970000px;}
.y9_c00092{bottom:1008.720000px;}
.y8_c00092{bottom:1042.170000px;}
.y7_c00092{bottom:1075.320000px;}
.y6_c00092{bottom:1109.070000px;}
.y5_c00092{bottom:1142.370000px;}
.y4_c00092{bottom:1175.820000px;}
.y3_c00092{bottom:1208.970000px;}
.y2_c00092{bottom:1242.570000px;}
.y1_c00092{bottom:1275.420000px;}
.h3_c00092{height:13.200073px;}
.h4_c00092{height:43.804688px;}
.h2_c00092{height:121.546875px;}
.h0_c00092{height:1383.450000px;}
.h1_c00092{height:1383.750000px;}
.w2_c00092{width:104.875500px;}
.w0_c00092{width:878.025000px;}
.w1_c00092{width:878.250000px;}
.x0_c00092{left:0.000000px;}
.x3_c00092{left:39.750000px;}
.x4_c00092{left:40.800000px;}
.x2_c00092{left:41.850000px;}
.x1_c00092{left:42.900000px;}
.x6_c00092{left:44.100000px;}
.x5_c00092{left:45.600000px;}
.x7_c00092{left:85.650000px;}
.x8_c00092{left:390.826721px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls2_c00092{letter-spacing:0.000000pt;}
.ls1_c00092{letter-spacing:2.666667pt;}
.ls0_c00092{letter-spacing:6.528000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
._2b_c00092{margin-left:-26.624000pt;}
._33_c00092{margin-left:-24.320000pt;}
._31_c00092{margin-left:-19.200000pt;}
._29_c00092{margin-left:-16.725333pt;}
._28_c00092{margin-left:-15.786667pt;}
._1a_c00092{margin-left:-11.178667pt;}
._19_c00092{margin-left:-10.154667pt;}
._26_c00092{margin-left:-8.448000pt;}
._2e_c00092{margin-left:-7.253333pt;}
._27_c00092{margin-left:-5.888000pt;}
._12_c00092{margin-left:-4.437333pt;}
._15_c00092{margin-left:-3.413333pt;}
._1d_c00092{margin-left:-2.474667pt;}
._11_c00092{margin-left:-1.280000pt;}
._17_c00092{width:1.024000pt;}
._b_c00092{width:1.962667pt;}
._d_c00092{width:2.901333pt;}
._6_c00092{width:3.840000pt;}
._8_c00092{width:5.205333pt;}
._1_c00092{width:6.656000pt;}
._3_c00092{width:8.192000pt;}
._0_c00092{width:9.813333pt;}
._2_c00092{width:11.093333pt;}
._20_c00092{width:12.032000pt;}
._c_c00092{width:13.312000pt;}
._5_c00092{width:14.250667pt;}
._f_c00092{width:15.445333pt;}
._10_c00092{width:16.810667pt;}
._4_c00092{width:17.834667pt;}
._18_c00092{width:19.285333pt;}
._a_c00092{width:21.504000pt;}
._13_c00092{width:22.528000pt;}
._14_c00092{width:24.832000pt;}
._1b_c00092{width:26.624000pt;}
._e_c00092{width:28.672000pt;}
._30_c00092{width:29.781333pt;}
._23_c00092{width:30.805333pt;}
._2a_c00092{width:31.829333pt;}
._9_c00092{width:32.853333pt;}
._2d_c00092{width:33.792000pt;}
._22_c00092{width:34.986667pt;}
._16_c00092{width:36.010667pt;}
._7_c00092{width:37.802667pt;}
._24_c00092{width:38.997333pt;}
._21_c00092{width:40.021333pt;}
._32_c00092{width:41.130667pt;}
._1c_c00092{width:42.240000pt;}
._25_c00092{width:44.288000pt;}
._1e_c00092{width:45.738667pt;}
._2c_c00092{width:47.360000pt;}
._1f_c00092{width:49.664000pt;}
._2f_c00092{width:51.712000pt;}
._34_c00092{width:727.978667pt;}
._35_c00092{width:741.461333pt;}
.fs2_c00092{font-size:42.666667pt;}
.fs0_c00092{font-size:85.333333pt;}
.fs1_c00092{font-size:90.666667pt;}
.y0_c00092{bottom:0.000000pt;}
.y26_c00092{bottom:2.760000pt;}
.y25_c00092{bottom:6.425217pt;}
.y24_c00092{bottom:88.506667pt;}
.y23_c00092{bottom:118.773333pt;}
.y22_c00092{bottom:149.440000pt;}
.y21_c00092{bottom:179.973333pt;}
.y20_c00092{bottom:210.906667pt;}
.y1f_c00092{bottom:239.973333pt;}
.y1e_c00092{bottom:270.240000pt;}
.y1d_c00092{bottom:300.506667pt;}
.y1c_c00092{bottom:330.240000pt;}
.y1b_c00092{bottom:360.240000pt;}
.y1a_c00092{bottom:390.640000pt;}
.y19_c00092{bottom:420.240000pt;}
.y18_c00092{bottom:450.240000pt;}
.y17_c00092{bottom:480.240000pt;}
.y16_c00092{bottom:509.973333pt;}
.y15_c00092{bottom:539.306667pt;}
.y14_c00092{bottom:568.506667pt;}
.y13_c00092{bottom:598.506667pt;}
.y12_c00092{bottom:628.106667pt;}
.y11_c00092{bottom:658.506667pt;}
.y10_c00092{bottom:689.306667pt;}
.yf_c00092{bottom:718.773333pt;}
.ye_c00092{bottom:748.106667pt;}
.yd_c00092{bottom:778.240000pt;}
.yc_c00092{bottom:807.306667pt;}
.yb_c00092{bottom:836.106667pt;}
.ya_c00092{bottom:866.640000pt;}
.y9_c00092{bottom:896.640000pt;}
.y8_c00092{bottom:926.373333pt;}
.y7_c00092{bottom:955.840000pt;}
.y6_c00092{bottom:985.840000pt;}
.y5_c00092{bottom:1015.440000pt;}
.y4_c00092{bottom:1045.173333pt;}
.y3_c00092{bottom:1074.640000pt;}
.y2_c00092{bottom:1104.506667pt;}
.y1_c00092{bottom:1133.706667pt;}
.h3_c00092{height:11.733399pt;}
.h4_c00092{height:38.937500pt;}
.h2_c00092{height:108.041667pt;}
.h0_c00092{height:1229.733333pt;}
.h1_c00092{height:1230.000000pt;}
.w2_c00092{width:93.222667pt;}
.w0_c00092{width:780.466667pt;}
.w1_c00092{width:780.666667pt;}
.x0_c00092{left:0.000000pt;}
.x3_c00092{left:35.333333pt;}
.x4_c00092{left:36.266667pt;}
.x2_c00092{left:37.200000pt;}
.x1_c00092{left:38.133333pt;}
.x6_c00092{left:39.200000pt;}
.x5_c00092{left:40.533333pt;}
.x7_c00092{left:76.133333pt;}
.x8_c00092{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86fef299146ddce2fef79645.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_ec6306d065ec5cfe25adcadd.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_35b13d3cdb50bbbccff1de46.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_8eb9a24cacf25704447c0754.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00093;src:url('chunks/assets/font_a2274e4d7c5ff2262562fffe.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00093;src:url('chunks/assets/font_0789964a9d4084a12f148bd2.woff2')format("woff");}.ff6_c00093{font-family:ff6_c00093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00093;src:url('chunks/assets/font_6cd6d21666f6525e76803249.woff2')format("woff");}.ff7_c00093{font-family:ff7_c00093;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00093;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00093{font-family:ff8_c00093;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls3_c00093{letter-spacing:-6.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.ls2_c00093{letter-spacing:6.000000px;}
.ls1_c00093{letter-spacing:24.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00093{word-spacing:-91.740000px;}
.ws2_c00093{word-spacing:-23.880000px;}
.ws0_c00093{word-spacing:-20.967000px;}
.ws3_c00093{word-spacing:0.000000px;}
._32_c00093{margin-left:-64.128000px;}
._3b_c00093{margin-left:-55.404000px;}
._38_c00093{margin-left:-41.076000px;}
._3a_c00093{margin-left:-35.496000px;}
._31_c00093{margin-left:-32.640000px;}
._26_c00093{margin-left:-25.752000px;}
._3e_c00093{margin-left:-24.603000px;}
._25_c00093{margin-left:-21.663000px;}
._3d_c00093{margin-left:-18.849000px;}
._1e_c00093{margin-left:-16.704000px;}
._20_c00093{margin-left:-14.976000px;}
._1f_c00093{margin-left:-11.232000px;}
._3c_c00093{margin-left:-9.888000px;}
._21_c00093{margin-left:-8.160000px;}
._e_c00093{margin-left:-6.720000px;}
._9_c00093{margin-left:-4.248000px;}
._f_c00093{margin-left:-2.928000px;}
._4_c00093{margin-left:-1.536000px;}
._2_c00093{width:1.920000px;}
._1_c00093{width:3.360000px;}
._8_c00093{width:4.512000px;}
._7_c00093{width:5.856000px;}
._d_c00093{width:7.104000px;}
._c_c00093{width:8.160000px;}
._22_c00093{width:9.792000px;}
._6_c00093{width:10.944000px;}
._12_c00093{width:12.576000px;}
._27_c00093{width:14.046000px;}
._b_c00093{width:15.264000px;}
._10_c00093{width:16.752000px;}
._15_c00093{width:18.408000px;}
._11_c00093{width:19.680000px;}
._3_c00093{width:21.984000px;}
._2d_c00093{width:24.576000px;}
._2c_c00093{width:26.034000px;}
._24_c00093{width:28.536000px;}
._1b_c00093{width:30.240000px;}
._0_c00093{width:31.392000px;}
._1a_c00093{width:32.928000px;}
._17_c00093{width:34.296000px;}
._19_c00093{width:36.192000px;}
._1d_c00093{width:37.848000px;}
._a_c00093{width:39.144000px;}
._29_c00093{width:40.320000px;}
._28_c00093{width:42.336000px;}
._1c_c00093{width:43.416000px;}
._16_c00093{width:45.216000px;}
._5_c00093{width:46.464000px;}
._23_c00093{width:47.520000px;}
._18_c00093{width:51.168000px;}
._2a_c00093{width:53.442000px;}
._2b_c00093{width:56.088000px;}
._2e_c00093{width:69.144000px;}
._13_c00093{width:70.848000px;}
._14_c00093{width:73.440000px;}
._39_c00093{width:137.460000px;}
._35_c00093{width:147.678000px;}
._37_c00093{width:170.460000px;}
._36_c00093{width:173.532000px;}
._34_c00093{width:202.704000px;}
._30_c00093{width:300.864000px;}
._33_c00093{width:324.672000px;}
._2f_c00093{width:800.448000px;}
.fc2_c00093{color:transparent;}
.fc1_c00093{color:rgb(128,128,128);}
.fc0_c00093{color:rgb(0,0,0);}
.fs5_c00093{font-size:30.000000px;}
.fs4_c00093{font-size:36.000000px;}
.fs3_c00093{font-size:42.000000px;}
.fs8_c00093{font-size:48.000000px;}
.fs1_c00093{font-size:84.000000px;}
.fs2_c00093{font-size:87.000000px;}
.fs0_c00093{font-size:96.000000px;}
.fs7_c00093{font-size:120.000000px;}
.fs6_c00093{font-size:165.000000px;}
.y0_c00093{bottom:0.000000px;}
.y1f_c00093{bottom:3.105000px;}
.y1e_c00093{bottom:7.228357px;}
.y1d_c00093{bottom:84.480000px;}
.y1c_c00093{bottom:116.880000px;}
.y1b_c00093{bottom:152.880000px;}
.y1a_c00093{bottom:187.080000px;}
.y19_c00093{bottom:201.480000px;}
.y18_c00093{bottom:213.630000px;}
.y17_c00093{bottom:223.830000px;}
.y16_c00093{bottom:441.780000px;}
.y15_c00093{bottom:595.680000px;}
.y14_c00093{bottom:630.780000px;}
.y13_c00093{bottom:665.280000px;}
.y12_c00093{bottom:699.030000px;}
.y11_c00093{bottom:733.080000px;}
.y10_c00093{bottom:765.780000px;}
.yf_c00093{bottom:800.880000px;}
.ye_c00093{bottom:833.280000px;}
.yd_c00093{bottom:868.380000px;}
.yc_c00093{bottom:901.530000px;}
.yb_c00093{bottom:934.230000px;}
.ya_c00093{bottom:967.230000px;}
.y9_c00093{bottom:1000.380000px;}
.y8_c00093{bottom:1033.830000px;}
.y7_c00093{bottom:1067.580000px;}
.y6_c00093{bottom:1100.880000px;}
.y5_c00093{bottom:1133.730000px;}
.y4_c00093{bottom:1167.780000px;}
.y3_c00093{bottom:1200.780000px;}
.y2_c00093{bottom:1233.630000px;}
.y1_c00093{bottom:1267.080000px;}
.h8_c00093{height:13.200074px;}
.h9_c00093{height:43.804688px;}
.h3_c00093{height:45.528000px;}
.h4_c00093{height:45.580078px;}
.h5_c00093{height:110.151855px;}
.h2_c00093{height:121.546875px;}
.h7_c00093{height:128.040000px;}
.h6_c00093{height:161.857910px;}
.h0_c00093{height:1382.700000px;}
.h1_c00093{height:1383.000000px;}
.w2_c00093{width:104.875500px;}
.w0_c00093{width:863.175000px;}
.w1_c00093{width:863.250000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:268.200000px;}
.x1_c00093{left:269.700000px;}
.x3_c00093{left:271.350000px;}
.xb_c00093{left:383.401749px;}
.x7_c00093{left:575.100000px;}
.x4_c00093{left:612.000000px;}
.x5_c00093{left:660.900000px;}
.x8_c00093{left:666.900000px;}
.x6_c00093{left:675.000000px;}
.x9_c00093{left:686.700000px;}
.xa_c00093{left:755.550000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls3_c00093{letter-spacing:-5.333333pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ls2_c00093{letter-spacing:5.333333pt;}
.ls1_c00093{letter-spacing:21.333333pt;}
.ws1_c00093{word-spacing:-81.546667pt;}
.ws2_c00093{word-spacing:-21.226667pt;}
.ws0_c00093{word-spacing:-18.637333pt;}
.ws3_c00093{word-spacing:0.000000pt;}
._32_c00093{margin-left:-57.002667pt;}
._3b_c00093{margin-left:-49.248000pt;}
._38_c00093{margin-left:-36.512000pt;}
._3a_c00093{margin-left:-31.552000pt;}
._31_c00093{margin-left:-29.013333pt;}
._26_c00093{margin-left:-22.890667pt;}
._3e_c00093{margin-left:-21.869333pt;}
._25_c00093{margin-left:-19.256000pt;}
._3d_c00093{margin-left:-16.754667pt;}
._1e_c00093{margin-left:-14.848000pt;}
._20_c00093{margin-left:-13.312000pt;}
._1f_c00093{margin-left:-9.984000pt;}
._3c_c00093{margin-left:-8.789333pt;}
._21_c00093{margin-left:-7.253333pt;}
._e_c00093{margin-left:-5.973333pt;}
._9_c00093{margin-left:-3.776000pt;}
._f_c00093{margin-left:-2.602667pt;}
._4_c00093{margin-left:-1.365333pt;}
._2_c00093{width:1.706667pt;}
._1_c00093{width:2.986667pt;}
._8_c00093{width:4.010667pt;}
._7_c00093{width:5.205333pt;}
._d_c00093{width:6.314667pt;}
._c_c00093{width:7.253333pt;}
._22_c00093{width:8.704000pt;}
._6_c00093{width:9.728000pt;}
._12_c00093{width:11.178667pt;}
._27_c00093{width:12.485333pt;}
._b_c00093{width:13.568000pt;}
._10_c00093{width:14.890667pt;}
._15_c00093{width:16.362667pt;}
._11_c00093{width:17.493333pt;}
._3_c00093{width:19.541333pt;}
._2d_c00093{width:21.845333pt;}
._2c_c00093{width:23.141333pt;}
._24_c00093{width:25.365333pt;}
._1b_c00093{width:26.880000pt;}
._0_c00093{width:27.904000pt;}
._1a_c00093{width:29.269333pt;}
._17_c00093{width:30.485333pt;}
._19_c00093{width:32.170667pt;}
._1d_c00093{width:33.642667pt;}
._a_c00093{width:34.794667pt;}
._29_c00093{width:35.840000pt;}
._28_c00093{width:37.632000pt;}
._1c_c00093{width:38.592000pt;}
._16_c00093{width:40.192000pt;}
._5_c00093{width:41.301333pt;}
._23_c00093{width:42.240000pt;}
._18_c00093{width:45.482667pt;}
._2a_c00093{width:47.504000pt;}
._2b_c00093{width:49.856000pt;}
._2e_c00093{width:61.461333pt;}
._13_c00093{width:62.976000pt;}
._14_c00093{width:65.280000pt;}
._39_c00093{width:122.186667pt;}
._35_c00093{width:131.269333pt;}
._37_c00093{width:151.520000pt;}
._36_c00093{width:154.250667pt;}
._34_c00093{width:180.181333pt;}
._30_c00093{width:267.434667pt;}
._33_c00093{width:288.597333pt;}
._2f_c00093{width:711.509333pt;}
.fs5_c00093{font-size:26.666667pt;}
.fs4_c00093{font-size:32.000000pt;}
.fs3_c00093{font-size:37.333333pt;}
.fs8_c00093{font-size:42.666667pt;}
.fs1_c00093{font-size:74.666667pt;}
.fs2_c00093{font-size:77.333333pt;}
.fs0_c00093{font-size:85.333333pt;}
.fs7_c00093{font-size:106.666667pt;}
.fs6_c00093{font-size:146.666667pt;}
.y0_c00093{bottom:0.000000pt;}
.y1f_c00093{bottom:2.760000pt;}
.y1e_c00093{bottom:6.425206pt;}
.y1d_c00093{bottom:75.093333pt;}
.y1c_c00093{bottom:103.893333pt;}
.y1b_c00093{bottom:135.893333pt;}
.y1a_c00093{bottom:166.293333pt;}
.y19_c00093{bottom:179.093333pt;}
.y18_c00093{bottom:189.893333pt;}
.y17_c00093{bottom:198.960000pt;}
.y16_c00093{bottom:392.693333pt;}
.y15_c00093{bottom:529.493333pt;}
.y14_c00093{bottom:560.693333pt;}
.y13_c00093{bottom:591.360000pt;}
.y12_c00093{bottom:621.360000pt;}
.y11_c00093{bottom:651.626667pt;}
.y10_c00093{bottom:680.693333pt;}
.yf_c00093{bottom:711.893333pt;}
.ye_c00093{bottom:740.693333pt;}
.yd_c00093{bottom:771.893333pt;}
.yc_c00093{bottom:801.360000pt;}
.yb_c00093{bottom:830.426667pt;}
.ya_c00093{bottom:859.760000pt;}
.y9_c00093{bottom:889.226667pt;}
.y8_c00093{bottom:918.960000pt;}
.y7_c00093{bottom:948.960000pt;}
.y6_c00093{bottom:978.560000pt;}
.y5_c00093{bottom:1007.760000pt;}
.y4_c00093{bottom:1038.026667pt;}
.y3_c00093{bottom:1067.360000pt;}
.y2_c00093{bottom:1096.560000pt;}
.y1_c00093{bottom:1126.293333pt;}
.h8_c00093{height:11.733399pt;}
.h9_c00093{height:38.937500pt;}
.h3_c00093{height:40.469333pt;}
.h4_c00093{height:40.515625pt;}
.h5_c00093{height:97.912760pt;}
.h2_c00093{height:108.041667pt;}
.h7_c00093{height:113.813333pt;}
.h6_c00093{height:143.873698pt;}
.h0_c00093{height:1229.066667pt;}
.h1_c00093{height:1229.333333pt;}
.w2_c00093{width:93.222667pt;}
.w0_c00093{width:767.266667pt;}
.w1_c00093{width:767.333333pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:238.400000pt;}
.x1_c00093{left:239.733333pt;}
.x3_c00093{left:241.200000pt;}
.xb_c00093{left:340.801554pt;}
.x7_c00093{left:511.200000pt;}
.x4_c00093{left:544.000000pt;}
.x5_c00093{left:587.466667pt;}
.x8_c00093{left:592.800000pt;}
.x6_c00093{left:600.000000pt;}
.x9_c00093{left:610.400000pt;}
.xa_c00093{left:671.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_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_6c7aae87a2c632387f2d64c9.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_9d01c4978538b09166f15cad.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_e0a70ace0a4070f98b3a93ec.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_24b46bfcf501b9b889dfc341.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_4715796e4e610b2be4a97a79.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00094;src:url('chunks/assets/font_8f17df9eff51393605cf443e.woff2')format("woff");}.ff6_c00094{font-family:ff6_c00094;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00094;src:url('chunks/assets/font_0e077e3031361f04da7d4ec1.woff2')format("woff");}.ff7_c00094{font-family:ff7_c00094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00094;src:url('chunks/assets/font_06640960bfb16974bae0b3c0.woff2')format("woff");}.ff8_c00094{font-family:ff8_c00094;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00094;src:url('chunks/assets/font_574e286783ead7fa296b5880.woff2')format("woff");}.ff9_c00094{font-family:ff9_c00094;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00094;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ffa_c00094{font-family:ffa_c00094;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:ffb_c00094;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ffb_c00094{font-family:ffb_c00094;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00094;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffc_c00094{font-family:ffc_c00094;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.v1_c00094{vertical-align:-91.800000px;}
.v0_c00094{vertical-align:0.000000px;}
.ls2_c00094{letter-spacing:0.000000px;}
.ls3_c00094{letter-spacing:3.000000px;}
.ls4_c00094{letter-spacing:12.000000px;}
.ls1_c00094{letter-spacing:23.400000px;}
.ls5_c00094{letter-spacing:24.000000px;}
.ls0_c00094{letter-spacing:45.000000px;}
.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;}
}
.ws6_c00094{word-spacing:-55.044000px;}
.ws3_c00094{word-spacing:-39.816000px;}
.ws0_c00094{word-spacing:-34.704000px;}
.ws1_c00094{word-spacing:-27.763200px;}
.ws7_c00094{word-spacing:-23.136000px;}
.ws5_c00094{word-spacing:-20.244000px;}
.ws2_c00094{word-spacing:-0.168000px;}
.ws8_c00094{word-spacing:0.000000px;}
.ws4_c00094{word-spacing:61.293000px;}
._32_c00094{margin-left:-58.320000px;}
._4d_c00094{margin-left:-55.563000px;}
._34_c00094{margin-left:-50.832000px;}
._49_c00094{margin-left:-49.677000px;}
._12_c00094{margin-left:-45.186000px;}
._39_c00094{margin-left:-36.870000px;}
._e_c00094{margin-left:-35.136000px;}
._f_c00094{margin-left:-33.984000px;}
._a_c00094{margin-left:-32.260800px;}
._48_c00094{margin-left:-30.168000px;}
._33_c00094{margin-left:-29.088000px;}
._45_c00094{margin-left:-25.986000px;}
._0_c00094{margin-left:-24.864000px;}
._56_c00094{margin-left:-23.760000px;}
._10_c00094{margin-left:-22.608000px;}
._14_c00094{margin-left:-21.318000px;}
._9_c00094{margin-left:-20.304000px;}
._27_c00094{margin-left:-16.941000px;}
._2f_c00094{margin-left:-14.679000px;}
._13_c00094{margin-left:-12.648000px;}
._41_c00094{margin-left:-10.965000px;}
._2_c00094{margin-left:-9.696000px;}
._46_c00094{margin-left:-8.625000px;}
._25_c00094{margin-left:-7.359000px;}
._4_c00094{margin-left:-5.472000px;}
._18_c00094{margin-left:-3.681000px;}
._c_c00094{margin-left:-2.016000px;}
._b_c00094{margin-left:-1.008000px;}
._2c_c00094{width:1.008000px;}
._20_c00094{width:2.016000px;}
._7_c00094{width:3.456000px;}
._24_c00094{width:4.815000px;}
._6_c00094{width:6.528000px;}
._3b_c00094{width:7.554000px;}
._28_c00094{width:8.574000px;}
._1d_c00094{width:9.792000px;}
._1f_c00094{width:11.169000px;}
._31_c00094{width:12.435000px;}
._23_c00094{width:13.635000px;}
._21_c00094{width:15.552000px;}
._8_c00094{width:16.800000px;}
._29_c00094{width:18.144000px;}
._35_c00094{width:20.154000px;}
._3c_c00094{width:21.408000px;}
._2a_c00094{width:22.590000px;}
._1a_c00094{width:24.768000px;}
._58_c00094{width:25.884000px;}
._19_c00094{width:27.360000px;}
._11_c00094{width:29.088000px;}
._1b_c00094{width:30.144000px;}
._1c_c00094{width:31.776000px;}
._1e_c00094{width:33.525000px;}
._5c_c00094{width:34.752000px;}
._3_c00094{width:36.192000px;}
._22_c00094{width:38.424000px;}
._2b_c00094{width:40.239000px;}
._2d_c00094{width:41.877000px;}
._55_c00094{width:43.461000px;}
._4e_c00094{width:44.763000px;}
._5f_c00094{width:45.951000px;}
._36_c00094{width:47.823000px;}
._30_c00094{width:50.418000px;}
._5a_c00094{width:52.170000px;}
._38_c00094{width:53.409000px;}
._4f_c00094{width:54.495000px;}
._5_c00094{width:55.776000px;}
._26_c00094{width:57.246000px;}
._54_c00094{width:60.066000px;}
._4a_c00094{width:61.188000px;}
._51_c00094{width:62.685000px;}
._37_c00094{width:63.717000px;}
._57_c00094{width:64.752000px;}
._5d_c00094{width:68.850000px;}
._17_c00094{width:70.236000px;}
._3f_c00094{width:75.057000px;}
._53_c00094{width:76.218000px;}
._42_c00094{width:86.544000px;}
._15_c00094{width:88.740000px;}
._59_c00094{width:95.616000px;}
._43_c00094{width:102.324000px;}
._1_c00094{width:115.968000px;}
._3d_c00094{width:129.810000px;}
._4c_c00094{width:135.741000px;}
._3e_c00094{width:143.361000px;}
._2e_c00094{width:152.055000px;}
._52_c00094{width:182.448000px;}
._3a_c00094{width:190.518000px;}
._47_c00094{width:218.700000px;}
._5b_c00094{width:230.331000px;}
._16_c00094{width:263.772000px;}
._40_c00094{width:278.356800px;}
._5e_c00094{width:339.504000px;}
._44_c00094{width:441.825000px;}
._d_c00094{width:473.760000px;}
._60_c00094{width:583.680000px;}
._50_c00094{width:652.497000px;}
._4b_c00094{width:881.448000px;}
.fc2_c00094{color:transparent;}
.fc1_c00094{color:rgb(128,128,128);}
.fc0_c00094{color:rgb(0,0,0);}
.fs8_c00094{font-size:36.000000px;}
.fsd_c00094{font-size:48.000000px;}
.fs7_c00094{font-size:72.000000px;}
.fs6_c00094{font-size:75.000000px;}
.fs4_c00094{font-size:81.000000px;}
.fsb_c00094{font-size:84.000000px;}
.fsa_c00094{font-size:87.000000px;}
.fs0_c00094{font-size:96.000000px;}
.fsc_c00094{font-size:99.000000px;}
.fs3_c00094{font-size:102.000000px;}
.fs2_c00094{font-size:115.200000px;}
.fs1_c00094{font-size:144.000000px;}
.fs5_c00094{font-size:168.000000px;}
.fs9_c00094{font-size:189.000000px;}
.y0_c00094{bottom:0.000000px;}
.y21_c00094{bottom:3.105000px;}
.y20_c00094{bottom:7.228369px;}
.y1f_c00094{bottom:87.420000px;}
.y1e_c00094{bottom:121.470000px;}
.y1d_c00094{bottom:155.970000px;}
.y1c_c00094{bottom:190.020000px;}
.y1b_c00094{bottom:224.070000px;}
.y1a_c00094{bottom:258.120000px;}
.y19_c00094{bottom:292.920000px;}
.y18_c00094{bottom:325.620000px;}
.y17_c00094{bottom:358.770000px;}
.y16_c00094{bottom:391.170000px;}
.y15_c00094{bottom:428.520000px;}
.y14_c00094{bottom:463.320000px;}
.y13_c00094{bottom:496.170000px;}
.y12_c00094{bottom:569.070000px;}
.y11_c00094{bottom:598.020000px;}
.y10_c00094{bottom:620.220000px;}
.yf_c00094{bottom:669.870000px;}
.ye_c00094{bottom:698.520000px;}
.yd_c00094{bottom:721.470000px;}
.yc_c00094{bottom:772.170000px;}
.yb_c00094{bottom:823.770000px;}
.ya_c00094{bottom:873.720000px;}
.y9_c00094{bottom:925.020000px;}
.y8_c00094{bottom:973.920000px;}
.y7_c00094{bottom:1026.570000px;}
.y6_c00094{bottom:1075.620000px;}
.y5_c00094{bottom:1126.470000px;}
.y4_c00094{bottom:1178.220000px;}
.y1_c00094{bottom:1201.170000px;}
.y3_c00094{bottom:1212.870000px;}
.y2_c00094{bottom:1229.070000px;}
.h7_c00094{height:13.200073px;}
.h8_c00094{height:43.804688px;}
.h5_c00094{height:75.456000px;}
.h2_c00094{height:121.546875px;}
.h4_c00094{height:129.143555px;}
.h3_c00094{height:182.320312px;}
.h6_c00094{height:239.295410px;}
.h0_c00094{height:1383.450000px;}
.h1_c00094{height:1383.750000px;}
.w2_c00094{width:104.875500px;}
.w0_c00094{width:878.025000px;}
.w1_c00094{width:878.250000px;}
.x0_c00094{left:0.000000px;}
.xf_c00094{left:52.200000px;}
.x10_c00094{left:53.250000px;}
.x6_c00094{left:54.900000px;}
.x5_c00094{left:56.400000px;}
.x4_c00094{left:57.600000px;}
.xb_c00094{left:67.800000px;}
.xc_c00094{left:100.800000px;}
.xd_c00094{left:165.600000px;}
.xa_c00094{left:184.500000px;}
.x7_c00094{left:238.500000px;}
.xe_c00094{left:269.250000px;}
.x8_c00094{left:272.400000px;}
.x9_c00094{left:296.550000px;}
.x1_c00094{left:364.800000px;}
.x13_c00094{left:390.826721px;}
.x12_c00094{left:400.950000px;}
.x2_c00094{left:420.900000px;}
.x3_c00094{left:488.250000px;}
.x11_c00094{left:798.450000px;}
@media print{
.v1_c00094{vertical-align:-81.600000pt;}
.v0_c00094{vertical-align:0.000000pt;}
.ls2_c00094{letter-spacing:0.000000pt;}
.ls3_c00094{letter-spacing:2.666667pt;}
.ls4_c00094{letter-spacing:10.666667pt;}
.ls1_c00094{letter-spacing:20.800000pt;}
.ls5_c00094{letter-spacing:21.333333pt;}
.ls0_c00094{letter-spacing:40.000000pt;}
.ws6_c00094{word-spacing:-48.928000pt;}
.ws3_c00094{word-spacing:-35.392000pt;}
.ws0_c00094{word-spacing:-30.848000pt;}
.ws1_c00094{word-spacing:-24.678400pt;}
.ws7_c00094{word-spacing:-20.565333pt;}
.ws5_c00094{word-spacing:-17.994667pt;}
.ws2_c00094{word-spacing:-0.149333pt;}
.ws8_c00094{word-spacing:0.000000pt;}
.ws4_c00094{word-spacing:54.482667pt;}
._32_c00094{margin-left:-51.840000pt;}
._4d_c00094{margin-left:-49.389333pt;}
._34_c00094{margin-left:-45.184000pt;}
._49_c00094{margin-left:-44.157333pt;}
._12_c00094{margin-left:-40.165333pt;}
._39_c00094{margin-left:-32.773333pt;}
._e_c00094{margin-left:-31.232000pt;}
._f_c00094{margin-left:-30.208000pt;}
._a_c00094{margin-left:-28.676267pt;}
._48_c00094{margin-left:-26.816000pt;}
._33_c00094{margin-left:-25.856000pt;}
._45_c00094{margin-left:-23.098667pt;}
._0_c00094{margin-left:-22.101333pt;}
._56_c00094{margin-left:-21.120000pt;}
._10_c00094{margin-left:-20.096000pt;}
._14_c00094{margin-left:-18.949333pt;}
._9_c00094{margin-left:-18.048000pt;}
._27_c00094{margin-left:-15.058667pt;}
._2f_c00094{margin-left:-13.048000pt;}
._13_c00094{margin-left:-11.242667pt;}
._41_c00094{margin-left:-9.746667pt;}
._2_c00094{margin-left:-8.618667pt;}
._46_c00094{margin-left:-7.666667pt;}
._25_c00094{margin-left:-6.541333pt;}
._4_c00094{margin-left:-4.864000pt;}
._18_c00094{margin-left:-3.272000pt;}
._c_c00094{margin-left:-1.792000pt;}
._b_c00094{margin-left:-0.896000pt;}
._2c_c00094{width:0.896000pt;}
._20_c00094{width:1.792000pt;}
._7_c00094{width:3.072000pt;}
._24_c00094{width:4.280000pt;}
._6_c00094{width:5.802667pt;}
._3b_c00094{width:6.714667pt;}
._28_c00094{width:7.621333pt;}
._1d_c00094{width:8.704000pt;}
._1f_c00094{width:9.928000pt;}
._31_c00094{width:11.053333pt;}
._23_c00094{width:12.120000pt;}
._21_c00094{width:13.824000pt;}
._8_c00094{width:14.933333pt;}
._29_c00094{width:16.128000pt;}
._35_c00094{width:17.914667pt;}
._3c_c00094{width:19.029333pt;}
._2a_c00094{width:20.080000pt;}
._1a_c00094{width:22.016000pt;}
._58_c00094{width:23.008000pt;}
._19_c00094{width:24.320000pt;}
._11_c00094{width:25.856000pt;}
._1b_c00094{width:26.794667pt;}
._1c_c00094{width:28.245333pt;}
._1e_c00094{width:29.800000pt;}
._5c_c00094{width:30.890667pt;}
._3_c00094{width:32.170667pt;}
._22_c00094{width:34.154667pt;}
._2b_c00094{width:35.768000pt;}
._2d_c00094{width:37.224000pt;}
._55_c00094{width:38.632000pt;}
._4e_c00094{width:39.789333pt;}
._5f_c00094{width:40.845333pt;}
._36_c00094{width:42.509333pt;}
._30_c00094{width:44.816000pt;}
._5a_c00094{width:46.373333pt;}
._38_c00094{width:47.474667pt;}
._4f_c00094{width:48.440000pt;}
._5_c00094{width:49.578667pt;}
._26_c00094{width:50.885333pt;}
._54_c00094{width:53.392000pt;}
._4a_c00094{width:54.389333pt;}
._51_c00094{width:55.720000pt;}
._37_c00094{width:56.637333pt;}
._57_c00094{width:57.557333pt;}
._5d_c00094{width:61.200000pt;}
._17_c00094{width:62.432000pt;}
._3f_c00094{width:66.717333pt;}
._53_c00094{width:67.749333pt;}
._42_c00094{width:76.928000pt;}
._15_c00094{width:78.880000pt;}
._59_c00094{width:84.992000pt;}
._43_c00094{width:90.954667pt;}
._1_c00094{width:103.082667pt;}
._3d_c00094{width:115.386667pt;}
._4c_c00094{width:120.658667pt;}
._3e_c00094{width:127.432000pt;}
._2e_c00094{width:135.160000pt;}
._52_c00094{width:162.176000pt;}
._3a_c00094{width:169.349333pt;}
._47_c00094{width:194.400000pt;}
._5b_c00094{width:204.738667pt;}
._16_c00094{width:234.464000pt;}
._40_c00094{width:247.428267pt;}
._5e_c00094{width:301.781333pt;}
._44_c00094{width:392.733333pt;}
._d_c00094{width:421.120000pt;}
._60_c00094{width:518.826667pt;}
._50_c00094{width:579.997333pt;}
._4b_c00094{width:783.509333pt;}
.fs8_c00094{font-size:32.000000pt;}
.fsd_c00094{font-size:42.666667pt;}
.fs7_c00094{font-size:64.000000pt;}
.fs6_c00094{font-size:66.666667pt;}
.fs4_c00094{font-size:72.000000pt;}
.fsb_c00094{font-size:74.666667pt;}
.fsa_c00094{font-size:77.333333pt;}
.fs0_c00094{font-size:85.333333pt;}
.fsc_c00094{font-size:88.000000pt;}
.fs3_c00094{font-size:90.666667pt;}
.fs2_c00094{font-size:102.400000pt;}
.fs1_c00094{font-size:128.000000pt;}
.fs5_c00094{font-size:149.333333pt;}
.fs9_c00094{font-size:168.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y21_c00094{bottom:2.760000pt;}
.y20_c00094{bottom:6.425217pt;}
.y1f_c00094{bottom:77.706667pt;}
.y1e_c00094{bottom:107.973333pt;}
.y1d_c00094{bottom:138.640000pt;}
.y1c_c00094{bottom:168.906667pt;}
.y1b_c00094{bottom:199.173333pt;}
.y1a_c00094{bottom:229.440000pt;}
.y19_c00094{bottom:260.373333pt;}
.y18_c00094{bottom:289.440000pt;}
.y17_c00094{bottom:318.906667pt;}
.y16_c00094{bottom:347.706667pt;}
.y15_c00094{bottom:380.906667pt;}
.y14_c00094{bottom:411.840000pt;}
.y13_c00094{bottom:441.040000pt;}
.y12_c00094{bottom:505.840000pt;}
.y11_c00094{bottom:531.573333pt;}
.y10_c00094{bottom:551.306667pt;}
.yf_c00094{bottom:595.440000pt;}
.ye_c00094{bottom:620.906667pt;}
.yd_c00094{bottom:641.306667pt;}
.yc_c00094{bottom:686.373333pt;}
.yb_c00094{bottom:732.240000pt;}
.ya_c00094{bottom:776.640000pt;}
.y9_c00094{bottom:822.240000pt;}
.y8_c00094{bottom:865.706667pt;}
.y7_c00094{bottom:912.506667pt;}
.y6_c00094{bottom:956.106667pt;}
.y5_c00094{bottom:1001.306667pt;}
.y4_c00094{bottom:1047.306667pt;}
.y1_c00094{bottom:1067.706667pt;}
.y3_c00094{bottom:1078.106667pt;}
.y2_c00094{bottom:1092.506667pt;}
.h7_c00094{height:11.733399pt;}
.h8_c00094{height:38.937500pt;}
.h5_c00094{height:67.072000pt;}
.h2_c00094{height:108.041667pt;}
.h4_c00094{height:114.794271pt;}
.h3_c00094{height:162.062500pt;}
.h6_c00094{height:212.707031pt;}
.h0_c00094{height:1229.733333pt;}
.h1_c00094{height:1230.000000pt;}
.w2_c00094{width:93.222667pt;}
.w0_c00094{width:780.466667pt;}
.w1_c00094{width:780.666667pt;}
.x0_c00094{left:0.000000pt;}
.xf_c00094{left:46.400000pt;}
.x10_c00094{left:47.333333pt;}
.x6_c00094{left:48.800000pt;}
.x5_c00094{left:50.133333pt;}
.x4_c00094{left:51.200000pt;}
.xb_c00094{left:60.266667pt;}
.xc_c00094{left:89.600000pt;}
.xd_c00094{left:147.200000pt;}
.xa_c00094{left:164.000000pt;}
.x7_c00094{left:212.000000pt;}
.xe_c00094{left:239.333333pt;}
.x8_c00094{left:242.133333pt;}
.x9_c00094{left:263.600000pt;}
.x1_c00094{left:324.266667pt;}
.x13_c00094{left:347.401530pt;}
.x12_c00094{left:356.400000pt;}
.x2_c00094{left:374.133333pt;}
.x3_c00094{left:434.000000pt;}
.x11_c00094{left:709.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_073c8e2f19ca1999025d1a0b.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_a7615694924decd6444bcf53.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_3c73cc4b9b43a78766fdad24.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_b70196eb8ea61b79e71de701.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00095;src:url('chunks/assets/font_fa14662af7891f58c256c7a0.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00095;src:url('chunks/assets/font_6126e28097642cb241fe7ccb.woff2')format("woff");}.ff7_c00095{font-family:ff7_c00095;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00095;src:url('chunks/assets/font_d6b4a9c6f39dba9fd2bd527e.woff2')format("woff");}.ff8_c00095{font-family:ff8_c00095;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00095;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00095{font-family:ff9_c00095;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00095{vertical-align:-15.000000px;}
.v0_c00095{vertical-align:0.000000px;}
.ls2_c00095{letter-spacing:0.000000px;}
.ls1_c00095{letter-spacing:5.400000px;}
.ls4_c00095{letter-spacing:6.000000px;}
.ls3_c00095{letter-spacing:9.000000px;}
.ls0_c00095{letter-spacing:22.452000px;}
.ls5_c00095{letter-spacing:24.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00095{word-spacing:-27.798000px;}
.ws2_c00095{word-spacing:-23.136000px;}
.ws0_c00095{word-spacing:-20.244000px;}
.ws3_c00095{word-spacing:0.000000px;}
._3e_c00095{margin-left:-106.488000px;}
._40_c00095{margin-left:-60.552000px;}
._41_c00095{margin-left:-53.940000px;}
._43_c00095{margin-left:-36.927000px;}
._44_c00095{margin-left:-35.667000px;}
._48_c00095{margin-left:-34.656000px;}
._4c_c00095{margin-left:-32.100000px;}
._26_c00095{margin-left:-31.008000px;}
._32_c00095{margin-left:-25.728000px;}
._2f_c00095{margin-left:-23.916000px;}
._39_c00095{margin-left:-21.972000px;}
._2e_c00095{margin-left:-17.376000px;}
._53_c00095{margin-left:-16.050000px;}
._1b_c00095{margin-left:-15.036000px;}
._16_c00095{margin-left:-13.248000px;}
._24_c00095{margin-left:-11.808000px;}
._f_c00095{margin-left:-10.752000px;}
._3_c00095{margin-left:-9.600000px;}
._36_c00095{margin-left:-7.740000px;}
._25_c00095{margin-left:-6.312000px;}
._19_c00095{margin-left:-5.040000px;}
._2a_c00095{margin-left:-4.032000px;}
._18_c00095{margin-left:-3.024000px;}
._21_c00095{margin-left:-1.872000px;}
._0_c00095{width:1.440000px;}
._1_c00095{width:2.784000px;}
._5_c00095{width:4.320000px;}
._15_c00095{width:5.472000px;}
._a_c00095{width:6.588000px;}
._9_c00095{width:8.064000px;}
._12_c00095{width:9.408000px;}
._13_c00095{width:11.040000px;}
._11_c00095{width:12.768000px;}
._d_c00095{width:14.016000px;}
._1f_c00095{width:15.636000px;}
._1a_c00095{width:16.920000px;}
._b_c00095{width:18.912000px;}
._1e_c00095{width:20.652000px;}
._7_c00095{width:21.984000px;}
._c_c00095{width:25.152000px;}
._1d_c00095{width:26.592000px;}
._8_c00095{width:27.792000px;}
._1c_c00095{width:29.664000px;}
._22_c00095{width:30.696000px;}
._6_c00095{width:32.640000px;}
._2b_c00095{width:33.744000px;}
._e_c00095{width:34.752000px;}
._14_c00095{width:36.672000px;}
._10_c00095{width:38.784000px;}
._31_c00095{width:40.956000px;}
._4_c00095{width:42.816000px;}
._2_c00095{width:44.928000px;}
._37_c00095{width:45.948000px;}
._38_c00095{width:47.292000px;}
._4d_c00095{width:48.612000px;}
._23_c00095{width:49.716000px;}
._2c_c00095{width:50.880000px;}
._30_c00095{width:51.948000px;}
._17_c00095{width:53.664000px;}
._56_c00095{width:54.828000px;}
._34_c00095{width:56.040000px;}
._3a_c00095{width:58.632000px;}
._20_c00095{width:60.960000px;}
._4b_c00095{width:62.904000px;}
._28_c00095{width:64.704000px;}
._27_c00095{width:66.624000px;}
._4a_c00095{width:69.672000px;}
._4f_c00095{width:76.173000px;}
._55_c00095{width:83.640000px;}
._3c_c00095{width:86.289000px;}
._3d_c00095{width:103.812000px;}
._54_c00095{width:123.150000px;}
._3f_c00095{width:126.585000px;}
._2d_c00095{width:128.832000px;}
._42_c00095{width:133.197000px;}
._50_c00095{width:199.740000px;}
._29_c00095{width:203.448000px;}
._45_c00095{width:216.630000px;}
._49_c00095{width:254.496000px;}
._4e_c00095{width:294.600000px;}
._52_c00095{width:337.344000px;}
._51_c00095{width:343.980000px;}
._3b_c00095{width:750.921000px;}
._46_c00095{width:787.548000px;}
._35_c00095{width:795.264000px;}
._33_c00095{width:797.376000px;}
._47_c00095{width:1197.396000px;}
.fc2_c00095{color:transparent;}
.fc1_c00095{color:rgb(128,128,128);}
.fc0_c00095{color:rgb(0,0,0);}
.fs7_c00095{font-size:24.000000px;}
.fs6_c00095{font-size:30.000000px;}
.fs9_c00095{font-size:48.000000px;}
.fs4_c00095{font-size:75.000000px;}
.fs2_c00095{font-size:78.000000px;}
.fs1_c00095{font-size:84.000000px;}
.fs5_c00095{font-size:87.000000px;}
.fs0_c00095{font-size:96.000000px;}
.fs3_c00095{font-size:102.000000px;}
.fs8_c00095{font-size:105.000000px;}
.y0_c00095{bottom:0.000000px;}
.y2b_c00095{bottom:3.105000px;}
.y2a_c00095{bottom:7.228371px;}
.y29_c00095{bottom:75.615000px;}
.y28_c00095{bottom:109.365000px;}
.y27_c00095{bottom:145.065000px;}
.y26_c00095{bottom:179.565000px;}
.y25_c00095{bottom:214.065000px;}
.y24_c00095{bottom:230.865000px;}
.y23_c00095{bottom:247.515000px;}
.y22_c00095{bottom:285.915000px;}
.y21_c00095{bottom:318.915000px;}
.y20_c00095{bottom:350.715000px;}
.y1f_c00095{bottom:384.765000px;}
.y1e_c00095{bottom:417.465000px;}
.y1d_c00095{bottom:447.315000px;}
.y1c_c00095{bottom:479.565000px;}
.y1b_c00095{bottom:488.715000px;}
.y1a_c00095{bottom:494.565000px;}
.y19_c00095{bottom:521.415000px;}
.y18_c00095{bottom:556.215000px;}
.y17_c00095{bottom:575.565000px;}
.y16_c00095{bottom:589.965000px;}
.y15_c00095{bottom:623.715000px;}
.y14_c00095{bottom:656.565000px;}
.y13_c00095{bottom:691.215000px;}
.y12_c00095{bottom:724.065000px;}
.y11_c00095{bottom:758.115000px;}
.y10_c00095{bottom:791.865000px;}
.yf_c00095{bottom:825.315000px;}
.ye_c00095{bottom:859.665000px;}
.yd_c00095{bottom:877.965000px;}
.yc_c00095{bottom:893.115000px;}
.yb_c00095{bottom:926.865000px;}
.ya_c00095{bottom:960.165000px;}
.y9_c00095{bottom:993.315000px;}
.y8_c00095{bottom:1025.715000px;}
.y7_c00095{bottom:1060.065000px;}
.y6_c00095{bottom:1093.215000px;}
.y5_c00095{bottom:1127.115000px;}
.y4_c00095{bottom:1159.965000px;}
.y3_c00095{bottom:1192.815000px;}
.y2_c00095{bottom:1225.815000px;}
.y1_c00095{bottom:1259.265000px;}
.hb_c00095{height:13.200074px;}
.h8_c00095{height:23.941406px;}
.h7_c00095{height:37.983398px;}
.hc_c00095{height:43.804688px;}
.h5_c00095{height:73.608398px;}
.ha_c00095{height:78.600000px;}
.h3_c00095{height:91.291992px;}
.h4_c00095{height:98.314453px;}
.h6_c00095{height:110.151855px;}
.h2_c00095{height:121.546875px;}
.h9_c00095{height:132.941895px;}
.h0_c00095{height:1354.875000px;}
.h1_c00095{height:1355.250000px;}
.w2_c00095{width:104.875500px;}
.w0_c00095{width:845.625000px;}
.w1_c00095{width:846.000000px;}
.x0_c00095{left:0.000000px;}
.x10_c00095{left:48.300000px;}
.x11_c00095{left:49.950000px;}
.x8_c00095{left:58.650000px;}
.xf_c00095{left:76.950000px;}
.x2_c00095{left:243.900000px;}
.x4_c00095{left:261.600000px;}
.x1_c00095{left:263.850000px;}
.x3_c00095{left:265.500000px;}
.x6_c00095{left:266.550000px;}
.x7_c00095{left:267.600000px;}
.x9_c00095{left:268.650000px;}
.x12_c00095{left:340.800000px;}
.x14_c00095{left:374.626740px;}
.xe_c00095{left:385.650000px;}
.xb_c00095{left:392.850000px;}
.xd_c00095{left:398.550000px;}
.xa_c00095{left:508.950000px;}
.xc_c00095{left:555.900000px;}
.x13_c00095{left:789.750000px;}
.x5_c00095{left:805.650000px;}
@media print{
.v1_c00095{vertical-align:-13.333333pt;}
.v0_c00095{vertical-align:0.000000pt;}
.ls2_c00095{letter-spacing:0.000000pt;}
.ls1_c00095{letter-spacing:4.800000pt;}
.ls4_c00095{letter-spacing:5.333333pt;}
.ls3_c00095{letter-spacing:8.000000pt;}
.ls0_c00095{letter-spacing:19.957333pt;}
.ls5_c00095{letter-spacing:21.333333pt;}
.ws1_c00095{word-spacing:-24.709333pt;}
.ws2_c00095{word-spacing:-20.565333pt;}
.ws0_c00095{word-spacing:-17.994667pt;}
.ws3_c00095{word-spacing:0.000000pt;}
._3e_c00095{margin-left:-94.656000pt;}
._40_c00095{margin-left:-53.824000pt;}
._41_c00095{margin-left:-47.946667pt;}
._43_c00095{margin-left:-32.824000pt;}
._44_c00095{margin-left:-31.704000pt;}
._48_c00095{margin-left:-30.805333pt;}
._4c_c00095{margin-left:-28.533333pt;}
._26_c00095{margin-left:-27.562667pt;}
._32_c00095{margin-left:-22.869333pt;}
._2f_c00095{margin-left:-21.258667pt;}
._39_c00095{margin-left:-19.530667pt;}
._2e_c00095{margin-left:-15.445333pt;}
._53_c00095{margin-left:-14.266667pt;}
._1b_c00095{margin-left:-13.365333pt;}
._16_c00095{margin-left:-11.776000pt;}
._24_c00095{margin-left:-10.496000pt;}
._f_c00095{margin-left:-9.557333pt;}
._3_c00095{margin-left:-8.533333pt;}
._36_c00095{margin-left:-6.880000pt;}
._25_c00095{margin-left:-5.610667pt;}
._19_c00095{margin-left:-4.480000pt;}
._2a_c00095{margin-left:-3.584000pt;}
._18_c00095{margin-left:-2.688000pt;}
._21_c00095{margin-left:-1.664000pt;}
._0_c00095{width:1.280000pt;}
._1_c00095{width:2.474667pt;}
._5_c00095{width:3.840000pt;}
._15_c00095{width:4.864000pt;}
._a_c00095{width:5.856000pt;}
._9_c00095{width:7.168000pt;}
._12_c00095{width:8.362667pt;}
._13_c00095{width:9.813333pt;}
._11_c00095{width:11.349333pt;}
._d_c00095{width:12.458667pt;}
._1f_c00095{width:13.898667pt;}
._1a_c00095{width:15.040000pt;}
._b_c00095{width:16.810667pt;}
._1e_c00095{width:18.357333pt;}
._7_c00095{width:19.541333pt;}
._c_c00095{width:22.357333pt;}
._1d_c00095{width:23.637333pt;}
._8_c00095{width:24.704000pt;}
._1c_c00095{width:26.368000pt;}
._22_c00095{width:27.285333pt;}
._6_c00095{width:29.013333pt;}
._2b_c00095{width:29.994667pt;}
._e_c00095{width:30.890667pt;}
._14_c00095{width:32.597333pt;}
._10_c00095{width:34.474667pt;}
._31_c00095{width:36.405333pt;}
._4_c00095{width:38.058667pt;}
._2_c00095{width:39.936000pt;}
._37_c00095{width:40.842667pt;}
._38_c00095{width:42.037333pt;}
._4d_c00095{width:43.210667pt;}
._23_c00095{width:44.192000pt;}
._2c_c00095{width:45.226667pt;}
._30_c00095{width:46.176000pt;}
._17_c00095{width:47.701333pt;}
._56_c00095{width:48.736000pt;}
._34_c00095{width:49.813333pt;}
._3a_c00095{width:52.117333pt;}
._20_c00095{width:54.186667pt;}
._4b_c00095{width:55.914667pt;}
._28_c00095{width:57.514667pt;}
._27_c00095{width:59.221333pt;}
._4a_c00095{width:61.930667pt;}
._4f_c00095{width:67.709333pt;}
._55_c00095{width:74.346667pt;}
._3c_c00095{width:76.701333pt;}
._3d_c00095{width:92.277333pt;}
._54_c00095{width:109.466667pt;}
._3f_c00095{width:112.520000pt;}
._2d_c00095{width:114.517333pt;}
._42_c00095{width:118.397333pt;}
._50_c00095{width:177.546667pt;}
._29_c00095{width:180.842667pt;}
._45_c00095{width:192.560000pt;}
._49_c00095{width:226.218667pt;}
._4e_c00095{width:261.866667pt;}
._52_c00095{width:299.861333pt;}
._51_c00095{width:305.760000pt;}
._3b_c00095{width:667.485333pt;}
._46_c00095{width:700.042667pt;}
._35_c00095{width:706.901333pt;}
._33_c00095{width:708.778667pt;}
._47_c00095{width:1064.352000pt;}
.fs7_c00095{font-size:21.333333pt;}
.fs6_c00095{font-size:26.666667pt;}
.fs9_c00095{font-size:42.666667pt;}
.fs4_c00095{font-size:66.666667pt;}
.fs2_c00095{font-size:69.333333pt;}
.fs1_c00095{font-size:74.666667pt;}
.fs5_c00095{font-size:77.333333pt;}
.fs0_c00095{font-size:85.333333pt;}
.fs3_c00095{font-size:90.666667pt;}
.fs8_c00095{font-size:93.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.y2b_c00095{bottom:2.760000pt;}
.y2a_c00095{bottom:6.425219pt;}
.y29_c00095{bottom:67.213333pt;}
.y28_c00095{bottom:97.213333pt;}
.y27_c00095{bottom:128.946667pt;}
.y26_c00095{bottom:159.613333pt;}
.y25_c00095{bottom:190.280000pt;}
.y24_c00095{bottom:205.213333pt;}
.y23_c00095{bottom:220.013333pt;}
.y22_c00095{bottom:254.146667pt;}
.y21_c00095{bottom:283.480000pt;}
.y20_c00095{bottom:311.746667pt;}
.y1f_c00095{bottom:342.013333pt;}
.y1e_c00095{bottom:371.080000pt;}
.y1d_c00095{bottom:397.613333pt;}
.y1c_c00095{bottom:426.280000pt;}
.y1b_c00095{bottom:434.413333pt;}
.y1a_c00095{bottom:439.613333pt;}
.y19_c00095{bottom:463.480000pt;}
.y18_c00095{bottom:494.413333pt;}
.y17_c00095{bottom:511.613333pt;}
.y16_c00095{bottom:524.413333pt;}
.y15_c00095{bottom:554.413333pt;}
.y14_c00095{bottom:583.613333pt;}
.y13_c00095{bottom:614.413333pt;}
.y12_c00095{bottom:643.613333pt;}
.y11_c00095{bottom:673.880000pt;}
.y10_c00095{bottom:703.880000pt;}
.yf_c00095{bottom:733.613333pt;}
.ye_c00095{bottom:764.146667pt;}
.yd_c00095{bottom:780.413333pt;}
.yc_c00095{bottom:793.880000pt;}
.yb_c00095{bottom:823.880000pt;}
.ya_c00095{bottom:853.480000pt;}
.y9_c00095{bottom:882.946667pt;}
.y8_c00095{bottom:911.746667pt;}
.y7_c00095{bottom:942.280000pt;}
.y6_c00095{bottom:971.746667pt;}
.y5_c00095{bottom:1001.880000pt;}
.y4_c00095{bottom:1031.080000pt;}
.y3_c00095{bottom:1060.280000pt;}
.y2_c00095{bottom:1089.613333pt;}
.y1_c00095{bottom:1119.346667pt;}
.hb_c00095{height:11.733399pt;}
.h8_c00095{height:21.281250pt;}
.h7_c00095{height:33.763021pt;}
.hc_c00095{height:38.937500pt;}
.h5_c00095{height:65.429688pt;}
.ha_c00095{height:69.866667pt;}
.h3_c00095{height:81.148438pt;}
.h4_c00095{height:87.390625pt;}
.h6_c00095{height:97.912760pt;}
.h2_c00095{height:108.041667pt;}
.h9_c00095{height:118.170573pt;}
.h0_c00095{height:1204.333333pt;}
.h1_c00095{height:1204.666667pt;}
.w2_c00095{width:93.222667pt;}
.w0_c00095{width:751.666667pt;}
.w1_c00095{width:752.000000pt;}
.x0_c00095{left:0.000000pt;}
.x10_c00095{left:42.933333pt;}
.x11_c00095{left:44.400000pt;}
.x8_c00095{left:52.133333pt;}
.xf_c00095{left:68.400000pt;}
.x2_c00095{left:216.800000pt;}
.x4_c00095{left:232.533333pt;}
.x1_c00095{left:234.533333pt;}
.x3_c00095{left:236.000000pt;}
.x6_c00095{left:236.933333pt;}
.x7_c00095{left:237.866667pt;}
.x9_c00095{left:238.800000pt;}
.x12_c00095{left:302.933333pt;}
.x14_c00095{left:333.001546pt;}
.xe_c00095{left:342.800000pt;}
.xb_c00095{left:349.200000pt;}
.xd_c00095{left:354.266667pt;}
.xa_c00095{left:452.400000pt;}
.xc_c00095{left:494.133333pt;}
.x13_c00095{left:702.000000pt;}
.x5_c00095{left:716.133333pt;}
}





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

.ir_c00096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00096;src:url('chunks/assets/font_33a28968283bda0dc61b0f81.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_cc4b8cb0cbbaf100a9a2ceb0.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_3a74fa159eacb65a70561e1f.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_7d48747c9bd9200c6d77980e.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_1a78b76a3c1bb198f24aa9cf.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00096;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00096{font-family:ff6_c00096;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00096{vertical-align:-70.800000px;}
.v0_c00096{vertical-align:0.000000px;}
.ls3_c00096{letter-spacing:0.000000px;}
.ls2_c00096{letter-spacing:3.000000px;}
.ls0_c00096{letter-spacing:3.300000px;}
.ls4_c00096{letter-spacing:9.000000px;}
.ls1_c00096{letter-spacing:9.120000px;}
.ls7_c00096{letter-spacing:12.000000px;}
.ls6_c00096{letter-spacing:27.000000px;}
.ls5_c00096{letter-spacing:45.000000px;}
.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;}
}
.ws5_c00096{word-spacing:-63.000000px;}
.ws4_c00096{word-spacing:-50.136000px;}
.ws3_c00096{word-spacing:-25.098000px;}
.ws1_c00096{word-spacing:-23.136000px;}
.ws2_c00096{word-spacing:-20.244000px;}
.ws6_c00096{word-spacing:0.000000px;}
.ws0_c00096{word-spacing:1451.280000px;}
._39_c00096{margin-left:-37.152000px;}
._40_c00096{margin-left:-35.904000px;}
._f_c00096{margin-left:-29.280000px;}
._2a_c00096{margin-left:-20.928000px;}
._11_c00096{margin-left:-19.188000px;}
._12_c00096{margin-left:-18.168000px;}
._51_c00096{margin-left:-16.608000px;}
._25_c00096{margin-left:-15.288000px;}
._1f_c00096{margin-left:-11.424000px;}
._1e_c00096{margin-left:-9.588000px;}
._4e_c00096{margin-left:-7.836000px;}
._20_c00096{margin-left:-6.612000px;}
._2e_c00096{margin-left:-4.836000px;}
._1c_c00096{margin-left:-3.768000px;}
._c_c00096{margin-left:-1.800000px;}
._1a_c00096{width:1.248000px;}
._0_c00096{width:2.400000px;}
._7_c00096{width:3.456000px;}
._1_c00096{width:4.608000px;}
._9_c00096{width:5.760000px;}
._5_c00096{width:7.008000px;}
._2_c00096{width:8.448000px;}
._16_c00096{width:9.984000px;}
._6_c00096{width:11.136000px;}
._30_c00096{width:12.384000px;}
._3_c00096{width:14.112000px;}
._34_c00096{width:15.588000px;}
._8_c00096{width:16.800000px;}
._35_c00096{width:18.144000px;}
._26_c00096{width:19.200000px;}
._37_c00096{width:21.024000px;}
._33_c00096{width:23.700000px;}
._41_c00096{width:25.440000px;}
._14_c00096{width:26.976000px;}
._23_c00096{width:28.320000px;}
._24_c00096{width:30.816000px;}
._4_c00096{width:32.736000px;}
._18_c00096{width:33.888000px;}
._2f_c00096{width:35.232000px;}
._17_c00096{width:36.552000px;}
._22_c00096{width:38.880000px;}
._47_c00096{width:40.488000px;}
._3d_c00096{width:41.568000px;}
._36_c00096{width:42.912000px;}
._21_c00096{width:45.024000px;}
._43_c00096{width:46.272000px;}
._3c_c00096{width:47.352000px;}
._19_c00096{width:49.152000px;}
._1b_c00096{width:51.552000px;}
._3b_c00096{width:54.336000px;}
._48_c00096{width:55.776000px;}
._4d_c00096{width:61.824000px;}
._42_c00096{width:62.976000px;}
._4b_c00096{width:64.128000px;}
._4a_c00096{width:66.432000px;}
._45_c00096{width:69.120000px;}
._e_c00096{width:71.616000px;}
._44_c00096{width:73.896000px;}
._49_c00096{width:75.072000px;}
._3e_c00096{width:76.116000px;}
._46_c00096{width:84.000000px;}
._a_c00096{width:87.744000px;}
._3f_c00096{width:93.240000px;}
._10_c00096{width:100.620000px;}
._4c_c00096{width:104.784000px;}
._31_c00096{width:106.080000px;}
._b_c00096{width:124.128000px;}
._1d_c00096{width:154.272000px;}
._2d_c00096{width:172.536000px;}
._15_c00096{width:185.760000px;}
._4f_c00096{width:187.776000px;}
._38_c00096{width:192.624000px;}
._2b_c00096{width:222.336000px;}
._32_c00096{width:270.684000px;}
._3a_c00096{width:383.040000px;}
._2c_c00096{width:439.860000px;}
._28_c00096{width:462.132000px;}
._27_c00096{width:495.432000px;}
._29_c00096{width:553.152000px;}
._13_c00096{width:597.951000px;}
._50_c00096{width:718.200000px;}
._53_c00096{width:819.840000px;}
._52_c00096{width:920.688000px;}
._d_c00096{width:1184.208000px;}
.fc2_c00096{color:transparent;}
.fc1_c00096{color:rgb(128,128,128);}
.fc0_c00096{color:rgb(0,0,0);}
.fs2_c00096{font-size:24.000000px;}
.fs1_c00096{font-size:36.000000px;}
.fs9_c00096{font-size:48.000000px;}
.fs3_c00096{font-size:60.000000px;}
.fs4_c00096{font-size:78.000000px;}
.fs6_c00096{font-size:84.000000px;}
.fs5_c00096{font-size:87.000000px;}
.fs0_c00096{font-size:96.000000px;}
.fs8_c00096{font-size:102.000000px;}
.fs7_c00096{font-size:144.000000px;}
.y0_c00096{bottom:0.000000px;}
.y23_c00096{bottom:3.105000px;}
.y22_c00096{bottom:7.228357px;}
.y21_c00096{bottom:88.380000px;}
.y20_c00096{bottom:123.480000px;}
.y1f_c00096{bottom:157.980000px;}
.y1e_c00096{bottom:192.030000px;}
.y1d_c00096{bottom:225.780000px;}
.y1c_c00096{bottom:259.830000px;}
.y1b_c00096{bottom:293.730000px;}
.y1a_c00096{bottom:331.080000px;}
.y19_c00096{bottom:418.830000px;}
.y18_c00096{bottom:470.430000px;}
.y17_c00096{bottom:520.530000px;}
.y16_c00096{bottom:598.980000px;}
.y15_c00096{bottom:632.580000px;}
.y14_c00096{bottom:666.180000px;}
.y13_c00096{bottom:699.630000px;}
.y12_c00096{bottom:733.080000px;}
.y11_c00096{bottom:766.530000px;}
.y10_c00096{bottom:799.980000px;}
.yf_c00096{bottom:833.280000px;}
.ye_c00096{bottom:866.430000px;}
.yd_c00096{bottom:899.730000px;}
.yc_c00096{bottom:933.180000px;}
.yb_c00096{bottom:965.280000px;}
.ya_c00096{bottom:1000.380000px;}
.y9_c00096{bottom:1031.130000px;}
.y8_c00096{bottom:1049.580000px;}
.y7_c00096{bottom:1068.630000px;}
.y6_c00096{bottom:1102.680000px;}
.y5_c00096{bottom:1149.930000px;}
.y4_c00096{bottom:1168.080000px;}
.y3_c00096{bottom:1210.680000px;}
.y2_c00096{bottom:1233.330000px;}
.y1_c00096{bottom:1269.030000px;}
.h5_c00096{height:13.200074px;}
.h6_c00096{height:43.804688px;}
.h3_c00096{height:70.224609px;}
.h2_c00096{height:121.546875px;}
.h4_c00096{height:182.320312px;}
.h0_c00096{height:1367.850000px;}
.h1_c00096{height:1368.000000px;}
.w1_c00096{width:104.875500px;}
.w0_c00096{width:867.750000px;}
.x0_c00096{left:0.000000px;}
.xf_c00096{left:46.200000px;}
.x10_c00096{left:47.250000px;}
.xa_c00096{left:54.300000px;}
.x9_c00096{left:55.800000px;}
.x7_c00096{left:57.000000px;}
.x2_c00096{left:59.100000px;}
.x1_c00096{left:60.300000px;}
.x6_c00096{left:106.650000px;}
.xd_c00096{left:108.300000px;}
.x8_c00096{left:120.900000px;}
.x5_c00096{left:162.000000px;}
.xb_c00096{left:182.850000px;}
.x4_c00096{left:187.650000px;}
.xe_c00096{left:213.000000px;}
.xc_c00096{left:248.100000px;}
.x3_c00096{left:262.800000px;}
.x11_c00096{left:344.250000px;}
.x12_c00096{left:385.689240px;}
@media print{
.v1_c00096{vertical-align:-62.933333pt;}
.v0_c00096{vertical-align:0.000000pt;}
.ls3_c00096{letter-spacing:0.000000pt;}
.ls2_c00096{letter-spacing:2.666667pt;}
.ls0_c00096{letter-spacing:2.933333pt;}
.ls4_c00096{letter-spacing:8.000000pt;}
.ls1_c00096{letter-spacing:8.106667pt;}
.ls7_c00096{letter-spacing:10.666667pt;}
.ls6_c00096{letter-spacing:24.000000pt;}
.ls5_c00096{letter-spacing:40.000000pt;}
.ws5_c00096{word-spacing:-56.000000pt;}
.ws4_c00096{word-spacing:-44.565333pt;}
.ws3_c00096{word-spacing:-22.309333pt;}
.ws1_c00096{word-spacing:-20.565333pt;}
.ws2_c00096{word-spacing:-17.994667pt;}
.ws6_c00096{word-spacing:0.000000pt;}
.ws0_c00096{word-spacing:1290.026667pt;}
._39_c00096{margin-left:-33.024000pt;}
._40_c00096{margin-left:-31.914667pt;}
._f_c00096{margin-left:-26.026667pt;}
._2a_c00096{margin-left:-18.602667pt;}
._11_c00096{margin-left:-17.056000pt;}
._12_c00096{margin-left:-16.149333pt;}
._51_c00096{margin-left:-14.762667pt;}
._25_c00096{margin-left:-13.589333pt;}
._1f_c00096{margin-left:-10.154667pt;}
._1e_c00096{margin-left:-8.522667pt;}
._4e_c00096{margin-left:-6.965333pt;}
._20_c00096{margin-left:-5.877333pt;}
._2e_c00096{margin-left:-4.298667pt;}
._1c_c00096{margin-left:-3.349333pt;}
._c_c00096{margin-left:-1.600000pt;}
._1a_c00096{width:1.109333pt;}
._0_c00096{width:2.133333pt;}
._7_c00096{width:3.072000pt;}
._1_c00096{width:4.096000pt;}
._9_c00096{width:5.120000pt;}
._5_c00096{width:6.229333pt;}
._2_c00096{width:7.509333pt;}
._16_c00096{width:8.874667pt;}
._6_c00096{width:9.898667pt;}
._30_c00096{width:11.008000pt;}
._3_c00096{width:12.544000pt;}
._34_c00096{width:13.856000pt;}
._8_c00096{width:14.933333pt;}
._35_c00096{width:16.128000pt;}
._26_c00096{width:17.066667pt;}
._37_c00096{width:18.688000pt;}
._33_c00096{width:21.066667pt;}
._41_c00096{width:22.613333pt;}
._14_c00096{width:23.978667pt;}
._23_c00096{width:25.173333pt;}
._24_c00096{width:27.392000pt;}
._4_c00096{width:29.098667pt;}
._18_c00096{width:30.122667pt;}
._2f_c00096{width:31.317333pt;}
._17_c00096{width:32.490667pt;}
._22_c00096{width:34.560000pt;}
._47_c00096{width:35.989333pt;}
._3d_c00096{width:36.949333pt;}
._36_c00096{width:38.144000pt;}
._21_c00096{width:40.021333pt;}
._43_c00096{width:41.130667pt;}
._3c_c00096{width:42.090667pt;}
._19_c00096{width:43.690667pt;}
._1b_c00096{width:45.824000pt;}
._3b_c00096{width:48.298667pt;}
._48_c00096{width:49.578667pt;}
._4d_c00096{width:54.954667pt;}
._42_c00096{width:55.978667pt;}
._4b_c00096{width:57.002667pt;}
._4a_c00096{width:59.050667pt;}
._45_c00096{width:61.440000pt;}
._e_c00096{width:63.658667pt;}
._44_c00096{width:65.685333pt;}
._49_c00096{width:66.730667pt;}
._3e_c00096{width:67.658667pt;}
._46_c00096{width:74.666667pt;}
._a_c00096{width:77.994667pt;}
._3f_c00096{width:82.880000pt;}
._10_c00096{width:89.440000pt;}
._4c_c00096{width:93.141333pt;}
._31_c00096{width:94.293333pt;}
._b_c00096{width:110.336000pt;}
._1d_c00096{width:137.130667pt;}
._2d_c00096{width:153.365333pt;}
._15_c00096{width:165.120000pt;}
._4f_c00096{width:166.912000pt;}
._38_c00096{width:171.221333pt;}
._2b_c00096{width:197.632000pt;}
._32_c00096{width:240.608000pt;}
._3a_c00096{width:340.480000pt;}
._2c_c00096{width:390.986667pt;}
._28_c00096{width:410.784000pt;}
._27_c00096{width:440.384000pt;}
._29_c00096{width:491.690667pt;}
._13_c00096{width:531.512000pt;}
._50_c00096{width:638.400000pt;}
._53_c00096{width:728.746667pt;}
._52_c00096{width:818.389333pt;}
._d_c00096{width:1052.629333pt;}
.fs2_c00096{font-size:21.333333pt;}
.fs1_c00096{font-size:32.000000pt;}
.fs9_c00096{font-size:42.666667pt;}
.fs3_c00096{font-size:53.333333pt;}
.fs4_c00096{font-size:69.333333pt;}
.fs6_c00096{font-size:74.666667pt;}
.fs5_c00096{font-size:77.333333pt;}
.fs0_c00096{font-size:85.333333pt;}
.fs8_c00096{font-size:90.666667pt;}
.fs7_c00096{font-size:128.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y23_c00096{bottom:2.760000pt;}
.y22_c00096{bottom:6.425206pt;}
.y21_c00096{bottom:78.560000pt;}
.y20_c00096{bottom:109.760000pt;}
.y1f_c00096{bottom:140.426667pt;}
.y1e_c00096{bottom:170.693333pt;}
.y1d_c00096{bottom:200.693333pt;}
.y1c_c00096{bottom:230.960000pt;}
.y1b_c00096{bottom:261.093333pt;}
.y1a_c00096{bottom:294.293333pt;}
.y19_c00096{bottom:372.293333pt;}
.y18_c00096{bottom:418.160000pt;}
.y17_c00096{bottom:462.693333pt;}
.y16_c00096{bottom:532.426667pt;}
.y15_c00096{bottom:562.293333pt;}
.y14_c00096{bottom:592.160000pt;}
.y13_c00096{bottom:621.893333pt;}
.y12_c00096{bottom:651.626667pt;}
.y11_c00096{bottom:681.360000pt;}
.y10_c00096{bottom:711.093333pt;}
.yf_c00096{bottom:740.693333pt;}
.ye_c00096{bottom:770.160000pt;}
.yd_c00096{bottom:799.760000pt;}
.yc_c00096{bottom:829.493333pt;}
.yb_c00096{bottom:858.026667pt;}
.ya_c00096{bottom:889.226667pt;}
.y9_c00096{bottom:916.560000pt;}
.y8_c00096{bottom:932.960000pt;}
.y7_c00096{bottom:949.893333pt;}
.y6_c00096{bottom:980.160000pt;}
.y5_c00096{bottom:1022.160000pt;}
.y4_c00096{bottom:1038.293333pt;}
.y3_c00096{bottom:1076.160000pt;}
.y2_c00096{bottom:1096.293333pt;}
.y1_c00096{bottom:1128.026667pt;}
.h5_c00096{height:11.733399pt;}
.h6_c00096{height:38.937500pt;}
.h3_c00096{height:62.421875pt;}
.h2_c00096{height:108.041667pt;}
.h4_c00096{height:162.062500pt;}
.h0_c00096{height:1215.866667pt;}
.h1_c00096{height:1216.000000pt;}
.w1_c00096{width:93.222667pt;}
.w0_c00096{width:771.333333pt;}
.x0_c00096{left:0.000000pt;}
.xf_c00096{left:41.066667pt;}
.x10_c00096{left:42.000000pt;}
.xa_c00096{left:48.266667pt;}
.x9_c00096{left:49.600000pt;}
.x7_c00096{left:50.666667pt;}
.x2_c00096{left:52.533333pt;}
.x1_c00096{left:53.600000pt;}
.x6_c00096{left:94.800000pt;}
.xd_c00096{left:96.266667pt;}
.x8_c00096{left:107.466667pt;}
.x5_c00096{left:144.000000pt;}
.xb_c00096{left:162.533333pt;}
.x4_c00096{left:166.800000pt;}
.xe_c00096{left:189.333333pt;}
.xc_c00096{left:220.533333pt;}
.x3_c00096{left:233.600000pt;}
.x11_c00096{left:306.000000pt;}
.x12_c00096{left:342.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_160098cbadece7dec8f95614.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_9059a2f71ecae9a83f32ccae.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_1d04a802cf40a2aba9282ab9.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls3_c00097{letter-spacing:0.000000px;}
.ls1_c00097{letter-spacing:8.364000px;}
.ls2_c00097{letter-spacing:9.156000px;}
.ls0_c00097{letter-spacing:22.176000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00097{word-spacing:-85.680000px;}
.ws0_c00097{word-spacing:-63.504000px;}
.ws2_c00097{word-spacing:0.000000px;}
._3b_c00097{margin-left:-20.790000px;}
._34_c00097{margin-left:-15.744000px;}
._28_c00097{margin-left:-13.920000px;}
._26_c00097{margin-left:-12.912000px;}
._27_c00097{margin-left:-11.136000px;}
._1f_c00097{margin-left:-10.080000px;}
._1a_c00097{margin-left:-8.352000px;}
._0_c00097{margin-left:-6.528000px;}
._3e_c00097{margin-left:-5.322000px;}
._d_c00097{margin-left:-4.128000px;}
._1_c00097{margin-left:-2.784000px;}
._7_c00097{margin-left:-1.152000px;}
._3_c00097{width:1.824000px;}
._5_c00097{width:2.880000px;}
._b_c00097{width:3.936000px;}
._c_c00097{width:5.472000px;}
._a_c00097{width:7.200000px;}
._9_c00097{width:8.640000px;}
._f_c00097{width:9.720000px;}
._15_c00097{width:11.040000px;}
._6_c00097{width:12.480000px;}
._e_c00097{width:14.160000px;}
._1e_c00097{width:16.128000px;}
._1d_c00097{width:17.664000px;}
._2_c00097{width:19.200000px;}
._18_c00097{width:20.784000px;}
._1b_c00097{width:21.792000px;}
._1c_c00097{width:25.008000px;}
._2c_c00097{width:26.304000px;}
._13_c00097{width:28.416000px;}
._12_c00097{width:29.832000px;}
._11_c00097{width:31.872000px;}
._2b_c00097{width:32.928000px;}
._19_c00097{width:33.984000px;}
._8_c00097{width:35.808000px;}
._10_c00097{width:37.488000px;}
._24_c00097{width:38.880000px;}
._14_c00097{width:40.224000px;}
._17_c00097{width:41.280000px;}
._16_c00097{width:43.008000px;}
._30_c00097{width:45.120000px;}
._2f_c00097{width:46.752000px;}
._23_c00097{width:47.976000px;}
._2d_c00097{width:49.560000px;}
._33_c00097{width:51.072000px;}
._31_c00097{width:52.152000px;}
._20_c00097{width:54.624000px;}
._39_c00097{width:55.656000px;}
._2a_c00097{width:57.024000px;}
._2e_c00097{width:58.440000px;}
._32_c00097{width:60.672000px;}
._37_c00097{width:63.072000px;}
._38_c00097{width:68.784000px;}
._4_c00097{width:77.856000px;}
._29_c00097{width:81.696000px;}
._36_c00097{width:172.488000px;}
._22_c00097{width:190.464000px;}
._3a_c00097{width:256.608000px;}
._21_c00097{width:280.512000px;}
._25_c00097{width:333.888000px;}
._3c_c00097{width:555.765000px;}
._3d_c00097{width:649.863000px;}
._35_c00097{width:765.888000px;}
.fc2_c00097{color:transparent;}
.fc1_c00097{color:rgb(128,128,128);}
.fc0_c00097{color:rgb(0,0,0);}
.fs4_c00097{font-size:48.000000px;}
.fs1_c00097{font-size:72.000000px;}
.fs2_c00097{font-size:84.000000px;}
.fs0_c00097{font-size:96.000000px;}
.fs3_c00097{font-size:105.000000px;}
.y0_c00097{bottom:0.000000px;}
.y26_c00097{bottom:3.105000px;}
.y25_c00097{bottom:7.228369px;}
.y24_c00097{bottom:90.420000px;}
.y23_c00097{bottom:126.270000px;}
.y22_c00097{bottom:160.020000px;}
.y21_c00097{bottom:195.120000px;}
.y20_c00097{bottom:229.770000px;}
.y1f_c00097{bottom:263.970000px;}
.y1e_c00097{bottom:298.020000px;}
.y1d_c00097{bottom:332.370000px;}
.y1c_c00097{bottom:366.570000px;}
.y1b_c00097{bottom:400.920000px;}
.y1a_c00097{bottom:434.670000px;}
.y19_c00097{bottom:469.170000px;}
.y18_c00097{bottom:502.770000px;}
.y17_c00097{bottom:536.970000px;}
.y16_c00097{bottom:572.370000px;}
.y15_c00097{bottom:605.070000px;}
.y14_c00097{bottom:638.820000px;}
.y13_c00097{bottom:672.570000px;}
.y12_c00097{bottom:706.020000px;}
.y11_c00097{bottom:740.370000px;}
.y10_c00097{bottom:774.120000px;}
.yf_c00097{bottom:807.870000px;}
.ye_c00097{bottom:841.770000px;}
.yd_c00097{bottom:875.520000px;}
.yc_c00097{bottom:909.120000px;}
.yb_c00097{bottom:944.670000px;}
.ya_c00097{bottom:975.720000px;}
.y9_c00097{bottom:1009.770000px;}
.y8_c00097{bottom:1041.870000px;}
.y7_c00097{bottom:1075.920000px;}
.y6_c00097{bottom:1109.370000px;}
.y5_c00097{bottom:1142.670000px;}
.y4_c00097{bottom:1175.820000px;}
.y3_c00097{bottom:1209.570000px;}
.y2_c00097{bottom:1242.720000px;}
.y1_c00097{bottom:1275.420000px;}
.h4_c00097{height:13.200073px;}
.h5_c00097{height:43.804688px;}
.h2_c00097{height:121.546875px;}
.h3_c00097{height:132.941895px;}
.h0_c00097{height:1369.950000px;}
.h1_c00097{height:1370.250000px;}
.w2_c00097{width:104.875500px;}
.w0_c00097{width:854.850000px;}
.w1_c00097{width:855.000000px;}
.x0_c00097{left:0.000000px;}
.x7_c00097{left:87.300000px;}
.x9_c00097{left:130.950000px;}
.x6_c00097{left:184.350000px;}
.x1_c00097{left:189.900000px;}
.xa_c00097{left:235.800000px;}
.x4_c00097{left:274.500000px;}
.x3_c00097{left:275.700000px;}
.x5_c00097{left:276.750000px;}
.x2_c00097{left:277.800000px;}
.x8_c00097{left:279.450000px;}
.xc_c00097{left:379.239258px;}
.xb_c00097{left:490.650000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls3_c00097{letter-spacing:0.000000pt;}
.ls1_c00097{letter-spacing:7.434667pt;}
.ls2_c00097{letter-spacing:8.138667pt;}
.ls0_c00097{letter-spacing:19.712000pt;}
.ws1_c00097{word-spacing:-76.160000pt;}
.ws0_c00097{word-spacing:-56.448000pt;}
.ws2_c00097{word-spacing:0.000000pt;}
._3b_c00097{margin-left:-18.480000pt;}
._34_c00097{margin-left:-13.994667pt;}
._28_c00097{margin-left:-12.373333pt;}
._26_c00097{margin-left:-11.477333pt;}
._27_c00097{margin-left:-9.898667pt;}
._1f_c00097{margin-left:-8.960000pt;}
._1a_c00097{margin-left:-7.424000pt;}
._0_c00097{margin-left:-5.802667pt;}
._3e_c00097{margin-left:-4.730667pt;}
._d_c00097{margin-left:-3.669333pt;}
._1_c00097{margin-left:-2.474667pt;}
._7_c00097{margin-left:-1.024000pt;}
._3_c00097{width:1.621333pt;}
._5_c00097{width:2.560000pt;}
._b_c00097{width:3.498667pt;}
._c_c00097{width:4.864000pt;}
._a_c00097{width:6.400000pt;}
._9_c00097{width:7.680000pt;}
._f_c00097{width:8.640000pt;}
._15_c00097{width:9.813333pt;}
._6_c00097{width:11.093333pt;}
._e_c00097{width:12.586667pt;}
._1e_c00097{width:14.336000pt;}
._1d_c00097{width:15.701333pt;}
._2_c00097{width:17.066667pt;}
._18_c00097{width:18.474667pt;}
._1b_c00097{width:19.370667pt;}
._1c_c00097{width:22.229333pt;}
._2c_c00097{width:23.381333pt;}
._13_c00097{width:25.258667pt;}
._12_c00097{width:26.517333pt;}
._11_c00097{width:28.330667pt;}
._2b_c00097{width:29.269333pt;}
._19_c00097{width:30.208000pt;}
._8_c00097{width:31.829333pt;}
._10_c00097{width:33.322667pt;}
._24_c00097{width:34.560000pt;}
._14_c00097{width:35.754667pt;}
._17_c00097{width:36.693333pt;}
._16_c00097{width:38.229333pt;}
._30_c00097{width:40.106667pt;}
._2f_c00097{width:41.557333pt;}
._23_c00097{width:42.645333pt;}
._2d_c00097{width:44.053333pt;}
._33_c00097{width:45.397333pt;}
._31_c00097{width:46.357333pt;}
._20_c00097{width:48.554667pt;}
._39_c00097{width:49.472000pt;}
._2a_c00097{width:50.688000pt;}
._2e_c00097{width:51.946667pt;}
._32_c00097{width:53.930667pt;}
._37_c00097{width:56.064000pt;}
._38_c00097{width:61.141333pt;}
._4_c00097{width:69.205333pt;}
._29_c00097{width:72.618667pt;}
._36_c00097{width:153.322667pt;}
._22_c00097{width:169.301333pt;}
._3a_c00097{width:228.096000pt;}
._21_c00097{width:249.344000pt;}
._25_c00097{width:296.789333pt;}
._3c_c00097{width:494.013333pt;}
._3d_c00097{width:577.656000pt;}
._35_c00097{width:680.789333pt;}
.fs4_c00097{font-size:42.666667pt;}
.fs1_c00097{font-size:64.000000pt;}
.fs2_c00097{font-size:74.666667pt;}
.fs0_c00097{font-size:85.333333pt;}
.fs3_c00097{font-size:93.333333pt;}
.y0_c00097{bottom:0.000000pt;}
.y26_c00097{bottom:2.760000pt;}
.y25_c00097{bottom:6.425217pt;}
.y24_c00097{bottom:80.373333pt;}
.y23_c00097{bottom:112.240000pt;}
.y22_c00097{bottom:142.240000pt;}
.y21_c00097{bottom:173.440000pt;}
.y20_c00097{bottom:204.240000pt;}
.y1f_c00097{bottom:234.640000pt;}
.y1e_c00097{bottom:264.906667pt;}
.y1d_c00097{bottom:295.440000pt;}
.y1c_c00097{bottom:325.840000pt;}
.y1b_c00097{bottom:356.373333pt;}
.y1a_c00097{bottom:386.373333pt;}
.y19_c00097{bottom:417.040000pt;}
.y18_c00097{bottom:446.906667pt;}
.y17_c00097{bottom:477.306667pt;}
.y16_c00097{bottom:508.773333pt;}
.y15_c00097{bottom:537.840000pt;}
.y14_c00097{bottom:567.840000pt;}
.y13_c00097{bottom:597.840000pt;}
.y12_c00097{bottom:627.573333pt;}
.y11_c00097{bottom:658.106667pt;}
.y10_c00097{bottom:688.106667pt;}
.yf_c00097{bottom:718.106667pt;}
.ye_c00097{bottom:748.240000pt;}
.yd_c00097{bottom:778.240000pt;}
.yc_c00097{bottom:808.106667pt;}
.yb_c00097{bottom:839.706667pt;}
.ya_c00097{bottom:867.306667pt;}
.y9_c00097{bottom:897.573333pt;}
.y8_c00097{bottom:926.106667pt;}
.y7_c00097{bottom:956.373333pt;}
.y6_c00097{bottom:986.106667pt;}
.y5_c00097{bottom:1015.706667pt;}
.y4_c00097{bottom:1045.173333pt;}
.y3_c00097{bottom:1075.173333pt;}
.y2_c00097{bottom:1104.640000pt;}
.y1_c00097{bottom:1133.706667pt;}
.h4_c00097{height:11.733399pt;}
.h5_c00097{height:38.937500pt;}
.h2_c00097{height:108.041667pt;}
.h3_c00097{height:118.170573pt;}
.h0_c00097{height:1217.733333pt;}
.h1_c00097{height:1218.000000pt;}
.w2_c00097{width:93.222667pt;}
.w0_c00097{width:759.866667pt;}
.w1_c00097{width:760.000000pt;}
.x0_c00097{left:0.000000pt;}
.x7_c00097{left:77.600000pt;}
.x9_c00097{left:116.400000pt;}
.x6_c00097{left:163.866667pt;}
.x1_c00097{left:168.800000pt;}
.xa_c00097{left:209.600000pt;}
.x4_c00097{left:244.000000pt;}
.x3_c00097{left:245.066667pt;}
.x5_c00097{left:246.000000pt;}
.x2_c00097{left:246.933333pt;}
.x8_c00097{left:248.400000pt;}
.xc_c00097{left:337.101563pt;}
.xb_c00097{left:436.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3679a6adff34dd05cb8b720a.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_f6ec80c2b7a3d30bb89bc33f.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_e15e6ba2e32c2d005bc9977c.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls3_c00098{letter-spacing:0.000000px;}
.ls2_c00098{letter-spacing:16.200000px;}
.ls0_c00098{letter-spacing:22.800000px;}
.ls1_c00098{letter-spacing:40.464000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:-23.136000px;}
.ws1_c00098{word-spacing:-20.244000px;}
.ws4_c00098{word-spacing:0.000000px;}
.ws3_c00098{word-spacing:0.336000px;}
.ws2_c00098{word-spacing:2.856000px;}
._12_c00098{margin-left:-19.200000px;}
._24_c00098{margin-left:-17.844000px;}
._f_c00098{margin-left:-15.840000px;}
._3_c00098{margin-left:-13.920000px;}
._10_c00098{margin-left:-12.576000px;}
._3e_c00098{margin-left:-11.064000px;}
._27_c00098{margin-left:-8.856000px;}
._3d_c00098{margin-left:-7.656000px;}
._30_c00098{margin-left:-6.240000px;}
._32_c00098{margin-left:-4.992000px;}
._1c_c00098{margin-left:-2.976000px;}
._14_c00098{margin-left:-1.824000px;}
._8_c00098{width:1.920000px;}
._0_c00098{width:3.168000px;}
._1d_c00098{width:4.224000px;}
._1_c00098{width:5.280000px;}
._d_c00098{width:6.624000px;}
._6_c00098{width:7.968000px;}
._5_c00098{width:9.216000px;}
._4_c00098{width:10.464000px;}
._11_c00098{width:12.216000px;}
._2a_c00098{width:14.016000px;}
._2_c00098{width:15.072000px;}
._39_c00098{width:16.224000px;}
._20_c00098{width:17.472000px;}
._28_c00098{width:18.816000px;}
._1a_c00098{width:19.848000px;}
._b_c00098{width:21.888000px;}
._35_c00098{width:24.480000px;}
._a_c00098{width:25.536000px;}
._7_c00098{width:27.936000px;}
._1f_c00098{width:30.048000px;}
._c_c00098{width:31.872000px;}
._13_c00098{width:34.080000px;}
._29_c00098{width:36.000000px;}
._16_c00098{width:37.344000px;}
._1b_c00098{width:38.880000px;}
._1e_c00098{width:40.608000px;}
._33_c00098{width:41.652000px;}
._3f_c00098{width:42.696000px;}
._19_c00098{width:43.968000px;}
._9_c00098{width:45.024000px;}
._26_c00098{width:47.616000px;}
._18_c00098{width:49.056000px;}
._2c_c00098{width:50.892000px;}
._3b_c00098{width:52.200000px;}
._36_c00098{width:53.952000px;}
._2b_c00098{width:56.736000px;}
._15_c00098{width:58.560000px;}
._17_c00098{width:60.864000px;}
._3a_c00098{width:62.076000px;}
._37_c00098{width:65.184000px;}
._2e_c00098{width:66.912000px;}
._22_c00098{width:68.928000px;}
._21_c00098{width:71.520000px;}
._31_c00098{width:73.536000px;}
._38_c00098{width:76.512000px;}
._23_c00098{width:81.984000px;}
._2f_c00098{width:86.208000px;}
._e_c00098{width:95.424000px;}
._25_c00098{width:101.532000px;}
._2d_c00098{width:172.992000px;}
._3c_c00098{width:178.368000px;}
._34_c00098{width:259.188000px;}
.fc2_c00098{color:transparent;}
.fc1_c00098{color:rgb(128,128,128);}
.fc0_c00098{color:rgb(0,0,0);}
.fs4_c00098{font-size:48.000000px;}
.fs3_c00098{font-size:72.000000px;}
.fs2_c00098{font-size:84.000000px;}
.fs0_c00098{font-size:96.000000px;}
.fs1_c00098{font-size:102.000000px;}
.y0_c00098{bottom:0.000000px;}
.y26_c00098{bottom:3.105000px;}
.y25_c00098{bottom:7.228369px;}
.y24_c00098{bottom:104.670000px;}
.y23_c00098{bottom:137.670000px;}
.y22_c00098{bottom:172.470000px;}
.y21_c00098{bottom:206.520000px;}
.y20_c00098{bottom:241.320000px;}
.y1f_c00098{bottom:274.020000px;}
.y1e_c00098{bottom:308.520000px;}
.y1d_c00098{bottom:342.270000px;}
.y1c_c00098{bottom:376.920000px;}
.y1b_c00098{bottom:410.070000px;}
.y1a_c00098{bottom:444.420000px;}
.y19_c00098{bottom:478.470000px;}
.y18_c00098{bottom:511.620000px;}
.y17_c00098{bottom:545.670000px;}
.y16_c00098{bottom:579.720000px;}
.y15_c00098{bottom:612.870000px;}
.y14_c00098{bottom:646.320000px;}
.y13_c00098{bottom:679.320000px;}
.y12_c00098{bottom:713.070000px;}
.y11_c00098{bottom:747.120000px;}
.y10_c00098{bottom:780.570000px;}
.yf_c00098{bottom:814.320000px;}
.ye_c00098{bottom:846.420000px;}
.yd_c00098{bottom:880.470000px;}
.yc_c00098{bottom:914.220000px;}
.yb_c00098{bottom:948.270000px;}
.ya_c00098{bottom:981.720000px;}
.y9_c00098{bottom:1014.570000px;}
.y8_c00098{bottom:1048.620000px;}
.y7_c00098{bottom:1081.920000px;}
.y6_c00098{bottom:1115.820000px;}
.y5_c00098{bottom:1148.220000px;}
.y4_c00098{bottom:1181.970000px;}
.y3_c00098{bottom:1215.720000px;}
.y2_c00098{bottom:1249.020000px;}
.y1_c00098{bottom:1282.170000px;}
.h3_c00098{height:13.200073px;}
.h4_c00098{height:43.804688px;}
.h2_c00098{height:121.546875px;}
.h0_c00098{height:1383.450000px;}
.h1_c00098{height:1383.750000px;}
.w2_c00098{width:104.875500px;}
.w0_c00098{width:878.025000px;}
.w1_c00098{width:878.250000px;}
.x0_c00098{left:0.000000px;}
.x6_c00098{left:67.800000px;}
.x4_c00098{left:68.850000px;}
.x3_c00098{left:70.950000px;}
.x2_c00098{left:72.000000px;}
.x1_c00098{left:75.900000px;}
.x7_c00098{left:121.800000px;}
.x5_c00098{left:123.450000px;}
.x9_c00098{left:390.826721px;}
.x8_c00098{left:584.550000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls3_c00098{letter-spacing:0.000000pt;}
.ls2_c00098{letter-spacing:14.400000pt;}
.ls0_c00098{letter-spacing:20.266667pt;}
.ls1_c00098{letter-spacing:35.968000pt;}
.ws0_c00098{word-spacing:-20.565333pt;}
.ws1_c00098{word-spacing:-17.994667pt;}
.ws4_c00098{word-spacing:0.000000pt;}
.ws3_c00098{word-spacing:0.298667pt;}
.ws2_c00098{word-spacing:2.538667pt;}
._12_c00098{margin-left:-17.066667pt;}
._24_c00098{margin-left:-15.861333pt;}
._f_c00098{margin-left:-14.080000pt;}
._3_c00098{margin-left:-12.373333pt;}
._10_c00098{margin-left:-11.178667pt;}
._3e_c00098{margin-left:-9.834667pt;}
._27_c00098{margin-left:-7.872000pt;}
._3d_c00098{margin-left:-6.805333pt;}
._30_c00098{margin-left:-5.546667pt;}
._32_c00098{margin-left:-4.437333pt;}
._1c_c00098{margin-left:-2.645333pt;}
._14_c00098{margin-left:-1.621333pt;}
._8_c00098{width:1.706667pt;}
._0_c00098{width:2.816000pt;}
._1d_c00098{width:3.754667pt;}
._1_c00098{width:4.693333pt;}
._d_c00098{width:5.888000pt;}
._6_c00098{width:7.082667pt;}
._5_c00098{width:8.192000pt;}
._4_c00098{width:9.301333pt;}
._11_c00098{width:10.858667pt;}
._2a_c00098{width:12.458667pt;}
._2_c00098{width:13.397333pt;}
._39_c00098{width:14.421333pt;}
._20_c00098{width:15.530667pt;}
._28_c00098{width:16.725333pt;}
._1a_c00098{width:17.642667pt;}
._b_c00098{width:19.456000pt;}
._35_c00098{width:21.760000pt;}
._a_c00098{width:22.698667pt;}
._7_c00098{width:24.832000pt;}
._1f_c00098{width:26.709333pt;}
._c_c00098{width:28.330667pt;}
._13_c00098{width:30.293333pt;}
._29_c00098{width:32.000000pt;}
._16_c00098{width:33.194667pt;}
._1b_c00098{width:34.560000pt;}
._1e_c00098{width:36.096000pt;}
._33_c00098{width:37.024000pt;}
._3f_c00098{width:37.952000pt;}
._19_c00098{width:39.082667pt;}
._9_c00098{width:40.021333pt;}
._26_c00098{width:42.325333pt;}
._18_c00098{width:43.605333pt;}
._2c_c00098{width:45.237333pt;}
._3b_c00098{width:46.400000pt;}
._36_c00098{width:47.957333pt;}
._2b_c00098{width:50.432000pt;}
._15_c00098{width:52.053333pt;}
._17_c00098{width:54.101333pt;}
._3a_c00098{width:55.178667pt;}
._37_c00098{width:57.941333pt;}
._2e_c00098{width:59.477333pt;}
._22_c00098{width:61.269333pt;}
._21_c00098{width:63.573333pt;}
._31_c00098{width:65.365333pt;}
._38_c00098{width:68.010667pt;}
._23_c00098{width:72.874667pt;}
._2f_c00098{width:76.629333pt;}
._e_c00098{width:84.821333pt;}
._25_c00098{width:90.250667pt;}
._2d_c00098{width:153.770667pt;}
._3c_c00098{width:158.549333pt;}
._34_c00098{width:230.389333pt;}
.fs4_c00098{font-size:42.666667pt;}
.fs3_c00098{font-size:64.000000pt;}
.fs2_c00098{font-size:74.666667pt;}
.fs0_c00098{font-size:85.333333pt;}
.fs1_c00098{font-size:90.666667pt;}
.y0_c00098{bottom:0.000000pt;}
.y26_c00098{bottom:2.760000pt;}
.y25_c00098{bottom:6.425217pt;}
.y24_c00098{bottom:93.040000pt;}
.y23_c00098{bottom:122.373333pt;}
.y22_c00098{bottom:153.306667pt;}
.y21_c00098{bottom:183.573333pt;}
.y20_c00098{bottom:214.506667pt;}
.y1f_c00098{bottom:243.573333pt;}
.y1e_c00098{bottom:274.240000pt;}
.y1d_c00098{bottom:304.240000pt;}
.y1c_c00098{bottom:335.040000pt;}
.y1b_c00098{bottom:364.506667pt;}
.y1a_c00098{bottom:395.040000pt;}
.y19_c00098{bottom:425.306667pt;}
.y18_c00098{bottom:454.773333pt;}
.y17_c00098{bottom:485.040000pt;}
.y16_c00098{bottom:515.306667pt;}
.y15_c00098{bottom:544.773333pt;}
.y14_c00098{bottom:574.506667pt;}
.y13_c00098{bottom:603.840000pt;}
.y12_c00098{bottom:633.840000pt;}
.y11_c00098{bottom:664.106667pt;}
.y10_c00098{bottom:693.840000pt;}
.yf_c00098{bottom:723.840000pt;}
.ye_c00098{bottom:752.373333pt;}
.yd_c00098{bottom:782.640000pt;}
.yc_c00098{bottom:812.640000pt;}
.yb_c00098{bottom:842.906667pt;}
.ya_c00098{bottom:872.640000pt;}
.y9_c00098{bottom:901.840000pt;}
.y8_c00098{bottom:932.106667pt;}
.y7_c00098{bottom:961.706667pt;}
.y6_c00098{bottom:991.840000pt;}
.y5_c00098{bottom:1020.640000pt;}
.y4_c00098{bottom:1050.640000pt;}
.y3_c00098{bottom:1080.640000pt;}
.y2_c00098{bottom:1110.240000pt;}
.y1_c00098{bottom:1139.706667pt;}
.h3_c00098{height:11.733399pt;}
.h4_c00098{height:38.937500pt;}
.h2_c00098{height:108.041667pt;}
.h0_c00098{height:1229.733333pt;}
.h1_c00098{height:1230.000000pt;}
.w2_c00098{width:93.222667pt;}
.w0_c00098{width:780.466667pt;}
.w1_c00098{width:780.666667pt;}
.x0_c00098{left:0.000000pt;}
.x6_c00098{left:60.266667pt;}
.x4_c00098{left:61.200000pt;}
.x3_c00098{left:63.066667pt;}
.x2_c00098{left:64.000000pt;}
.x1_c00098{left:67.466667pt;}
.x7_c00098{left:108.266667pt;}
.x5_c00098{left:109.733333pt;}
.x9_c00098{left:347.401530pt;}
.x8_c00098{left:519.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_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_a54ee0622a3e7fef8810973e.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_fc25aa62f3168b590d378172.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_df59d90c3ba5233a87308a52.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00099;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.ls1_c00099{letter-spacing:12.000000px;}
.ls2_c00099{letter-spacing:27.000000px;}
.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:-63.000000px;}
.ws2_c00099{word-spacing:-50.136000px;}
.ws6_c00099{word-spacing:-23.136000px;}
.ws1_c00099{word-spacing:-20.244000px;}
.ws7_c00099{word-spacing:0.000000px;}
.ws5_c00099{word-spacing:1.596000px;}
.ws3_c00099{word-spacing:3.612000px;}
.ws4_c00099{word-spacing:9.072000px;}
._35_c00099{margin-left:-23.784000px;}
._38_c00099{margin-left:-21.060000px;}
._2f_c00099{margin-left:-19.620000px;}
._34_c00099{margin-left:-16.608000px;}
._1e_c00099{margin-left:-14.880000px;}
._20_c00099{margin-left:-13.056000px;}
._2a_c00099{margin-left:-10.944000px;}
._6_c00099{margin-left:-8.988000px;}
._2c_c00099{margin-left:-7.968000px;}
._5_c00099{margin-left:-5.928000px;}
._e_c00099{margin-left:-4.032000px;}
._13_c00099{margin-left:-2.208000px;}
._d_c00099{margin-left:-1.152000px;}
._0_c00099{width:1.728000px;}
._b_c00099{width:2.784000px;}
._4_c00099{width:4.032000px;}
._8_c00099{width:5.184000px;}
._9_c00099{width:6.624000px;}
._3_c00099{width:8.256000px;}
._2_c00099{width:9.600000px;}
._10_c00099{width:11.232000px;}
._7_c00099{width:12.288000px;}
._28_c00099{width:13.548000px;}
._a_c00099{width:14.784000px;}
._19_c00099{width:15.840000px;}
._1_c00099{width:17.760000px;}
._f_c00099{width:19.584000px;}
._21_c00099{width:21.840000px;}
._11_c00099{width:24.384000px;}
._1d_c00099{width:26.352000px;}
._2e_c00099{width:27.720000px;}
._29_c00099{width:28.752000px;}
._1a_c00099{width:30.048000px;}
._33_c00099{width:31.956000px;}
._25_c00099{width:34.464000px;}
._27_c00099{width:36.168000px;}
._c_c00099{width:38.976000px;}
._1b_c00099{width:40.800000px;}
._12_c00099{width:42.816000px;}
._15_c00099{width:45.120000px;}
._1c_c00099{width:46.176000px;}
._18_c00099{width:47.520000px;}
._26_c00099{width:49.344000px;}
._22_c00099{width:51.216000px;}
._16_c00099{width:54.336000px;}
._23_c00099{width:56.640000px;}
._24_c00099{width:58.656000px;}
._17_c00099{width:60.864000px;}
._14_c00099{width:62.688000px;}
._30_c00099{width:66.528000px;}
._2d_c00099{width:73.884000px;}
._31_c00099{width:81.216000px;}
._1f_c00099{width:98.592000px;}
._36_c00099{width:106.632000px;}
._32_c00099{width:178.944000px;}
._37_c00099{width:349.344000px;}
._2b_c00099{width:503.784000px;}
.fc2_c00099{color:transparent;}
.fc1_c00099{color:rgb(128,128,128);}
.fc0_c00099{color:rgb(0,0,0);}
.fs3_c00099{font-size:48.000000px;}
.fs2_c00099{font-size:84.000000px;}
.fs0_c00099{font-size:96.000000px;}
.fs1_c00099{font-size:102.000000px;}
.y0_c00099{bottom:0.000000px;}
.y27_c00099{bottom:3.105000px;}
.y26_c00099{bottom:7.228371px;}
.y25_c00099{bottom:72.315000px;}
.y24_c00099{bottom:106.665000px;}
.y23_c00099{bottom:140.865000px;}
.y22_c00099{bottom:175.515000px;}
.y21_c00099{bottom:209.715000px;}
.y1_c00099{bottom:231.315000px;}
.y20_c00099{bottom:244.065000px;}
.y1f_c00099{bottom:278.415000px;}
.y1e_c00099{bottom:312.315000px;}
.y1d_c00099{bottom:346.665000px;}
.y1c_c00099{bottom:380.715000px;}
.y1b_c00099{bottom:414.765000px;}
.y1a_c00099{bottom:448.665000px;}
.y19_c00099{bottom:483.015000px;}
.y18_c00099{bottom:517.065000px;}
.y17_c00099{bottom:550.815000px;}
.y16_c00099{bottom:584.865000px;}
.y15_c00099{bottom:618.615000px;}
.y14_c00099{bottom:652.365000px;}
.y13_c00099{bottom:686.115000px;}
.y12_c00099{bottom:719.265000px;}
.y11_c00099{bottom:753.015000px;}
.y10_c00099{bottom:786.765000px;}
.yf_c00099{bottom:821.115000px;}
.ye_c00099{bottom:854.565000px;}
.yd_c00099{bottom:888.765000px;}
.yc_c00099{bottom:922.065000px;}
.yb_c00099{bottom:954.765000px;}
.ya_c00099{bottom:988.215000px;}
.y9_c00099{bottom:1022.265000px;}
.y8_c00099{bottom:1054.815000px;}
.y7_c00099{bottom:1088.115000px;}
.y6_c00099{bottom:1121.865000px;}
.y5_c00099{bottom:1155.015000px;}
.y4_c00099{bottom:1188.465000px;}
.y3_c00099{bottom:1221.465000px;}
.y2_c00099{bottom:1254.615000px;}
.h3_c00099{height:13.200074px;}
.h4_c00099{height:43.804688px;}
.h2_c00099{height:121.546875px;}
.h0_c00099{height:1354.875000px;}
.h1_c00099{height:1355.250000px;}
.w2_c00099{width:104.875500px;}
.w0_c00099{width:845.625000px;}
.w1_c00099{width:846.000000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:87.450000px;}
.x9_c00099{left:107.250000px;}
.x6_c00099{left:108.900000px;}
.xe_c00099{left:133.200000px;}
.x7_c00099{left:145.050000px;}
.xc_c00099{left:179.100000px;}
.x4_c00099{left:225.900000px;}
.xf_c00099{left:248.100000px;}
.xd_c00099{left:254.100000px;}
.x5_c00099{left:258.300000px;}
.xb_c00099{left:259.950000px;}
.x8_c00099{left:261.150000px;}
.x3_c00099{left:262.200000px;}
.x2_c00099{left:263.250000px;}
.xa_c00099{left:264.900000px;}
.x11_c00099{left:374.626740px;}
.x10_c00099{left:775.800000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ls1_c00099{letter-spacing:10.666667pt;}
.ls2_c00099{letter-spacing:24.000000pt;}
.ws0_c00099{word-spacing:-56.000000pt;}
.ws2_c00099{word-spacing:-44.565333pt;}
.ws6_c00099{word-spacing:-20.565333pt;}
.ws1_c00099{word-spacing:-17.994667pt;}
.ws7_c00099{word-spacing:0.000000pt;}
.ws5_c00099{word-spacing:1.418667pt;}
.ws3_c00099{word-spacing:3.210667pt;}
.ws4_c00099{word-spacing:8.064000pt;}
._35_c00099{margin-left:-21.141333pt;}
._38_c00099{margin-left:-18.720000pt;}
._2f_c00099{margin-left:-17.440000pt;}
._34_c00099{margin-left:-14.762667pt;}
._1e_c00099{margin-left:-13.226667pt;}
._20_c00099{margin-left:-11.605333pt;}
._2a_c00099{margin-left:-9.728000pt;}
._6_c00099{margin-left:-7.989333pt;}
._2c_c00099{margin-left:-7.082667pt;}
._5_c00099{margin-left:-5.269333pt;}
._e_c00099{margin-left:-3.584000pt;}
._13_c00099{margin-left:-1.962667pt;}
._d_c00099{margin-left:-1.024000pt;}
._0_c00099{width:1.536000pt;}
._b_c00099{width:2.474667pt;}
._4_c00099{width:3.584000pt;}
._8_c00099{width:4.608000pt;}
._9_c00099{width:5.888000pt;}
._3_c00099{width:7.338667pt;}
._2_c00099{width:8.533333pt;}
._10_c00099{width:9.984000pt;}
._7_c00099{width:10.922667pt;}
._28_c00099{width:12.042667pt;}
._a_c00099{width:13.141333pt;}
._19_c00099{width:14.080000pt;}
._1_c00099{width:15.786667pt;}
._f_c00099{width:17.408000pt;}
._21_c00099{width:19.413333pt;}
._11_c00099{width:21.674667pt;}
._1d_c00099{width:23.424000pt;}
._2e_c00099{width:24.640000pt;}
._29_c00099{width:25.557333pt;}
._1a_c00099{width:26.709333pt;}
._33_c00099{width:28.405333pt;}
._25_c00099{width:30.634667pt;}
._27_c00099{width:32.149333pt;}
._c_c00099{width:34.645333pt;}
._1b_c00099{width:36.266667pt;}
._12_c00099{width:38.058667pt;}
._15_c00099{width:40.106667pt;}
._1c_c00099{width:41.045333pt;}
._18_c00099{width:42.240000pt;}
._26_c00099{width:43.861333pt;}
._22_c00099{width:45.525333pt;}
._16_c00099{width:48.298667pt;}
._23_c00099{width:50.346667pt;}
._24_c00099{width:52.138667pt;}
._17_c00099{width:54.101333pt;}
._14_c00099{width:55.722667pt;}
._30_c00099{width:59.136000pt;}
._2d_c00099{width:65.674667pt;}
._31_c00099{width:72.192000pt;}
._1f_c00099{width:87.637333pt;}
._36_c00099{width:94.784000pt;}
._32_c00099{width:159.061333pt;}
._37_c00099{width:310.528000pt;}
._2b_c00099{width:447.808000pt;}
.fs3_c00099{font-size:42.666667pt;}
.fs2_c00099{font-size:74.666667pt;}
.fs0_c00099{font-size:85.333333pt;}
.fs1_c00099{font-size:90.666667pt;}
.y0_c00099{bottom:0.000000pt;}
.y27_c00099{bottom:2.760000pt;}
.y26_c00099{bottom:6.425219pt;}
.y25_c00099{bottom:64.280000pt;}
.y24_c00099{bottom:94.813333pt;}
.y23_c00099{bottom:125.213333pt;}
.y22_c00099{bottom:156.013333pt;}
.y21_c00099{bottom:186.413333pt;}
.y1_c00099{bottom:205.613333pt;}
.y20_c00099{bottom:216.946667pt;}
.y1f_c00099{bottom:247.480000pt;}
.y1e_c00099{bottom:277.613333pt;}
.y1d_c00099{bottom:308.146667pt;}
.y1c_c00099{bottom:338.413333pt;}
.y1b_c00099{bottom:368.680000pt;}
.y1a_c00099{bottom:398.813333pt;}
.y19_c00099{bottom:429.346667pt;}
.y18_c00099{bottom:459.613333pt;}
.y17_c00099{bottom:489.613333pt;}
.y16_c00099{bottom:519.880000pt;}
.y15_c00099{bottom:549.880000pt;}
.y14_c00099{bottom:579.880000pt;}
.y13_c00099{bottom:609.880000pt;}
.y12_c00099{bottom:639.346667pt;}
.y11_c00099{bottom:669.346667pt;}
.y10_c00099{bottom:699.346667pt;}
.yf_c00099{bottom:729.880000pt;}
.ye_c00099{bottom:759.613333pt;}
.yd_c00099{bottom:790.013333pt;}
.yc_c00099{bottom:819.613333pt;}
.yb_c00099{bottom:848.680000pt;}
.ya_c00099{bottom:878.413333pt;}
.y9_c00099{bottom:908.680000pt;}
.y8_c00099{bottom:937.613333pt;}
.y7_c00099{bottom:967.213333pt;}
.y6_c00099{bottom:997.213333pt;}
.y5_c00099{bottom:1026.680000pt;}
.y4_c00099{bottom:1056.413333pt;}
.y3_c00099{bottom:1085.746667pt;}
.y2_c00099{bottom:1115.213333pt;}
.h3_c00099{height:11.733399pt;}
.h4_c00099{height:38.937500pt;}
.h2_c00099{height:108.041667pt;}
.h0_c00099{height:1204.333333pt;}
.h1_c00099{height:1204.666667pt;}
.w2_c00099{width:93.222667pt;}
.w0_c00099{width:751.666667pt;}
.w1_c00099{width:752.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:77.733333pt;}
.x9_c00099{left:95.333333pt;}
.x6_c00099{left:96.800000pt;}
.xe_c00099{left:118.400000pt;}
.x7_c00099{left:128.933333pt;}
.xc_c00099{left:159.200000pt;}
.x4_c00099{left:200.800000pt;}
.xf_c00099{left:220.533333pt;}
.xd_c00099{left:225.866667pt;}
.x5_c00099{left:229.600000pt;}
.xb_c00099{left:231.066667pt;}
.x8_c00099{left:232.133333pt;}
.x3_c00099{left:233.066667pt;}
.x2_c00099{left:234.000000pt;}
.xa_c00099{left:235.466667pt;}
.x11_c00099{left:333.001546pt;}
.x10_c00099{left:689.600000pt;}
}





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

.ir_c00100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00100;src:url('chunks/assets/font_307705ae662511fe4385fadb.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_4be77c3ae9a6166be37200d2.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_af3bcfb882ad48cd69a48b1c.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;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_c00100;src:url('chunks/assets/font_5c692155cef22709e47736ac.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.ls2_c00100{letter-spacing:45.000000px;}
.ls1_c00100{letter-spacing:66.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:-20.244000px;}
.ws1_c00100{word-spacing:0.000000px;}
._2b_c00100{margin-left:-84.288000px;}
._2c_c00100{margin-left:-80.064000px;}
._2d_c00100{margin-left:-74.208000px;}
._3c_c00100{margin-left:-65.424000px;}
._3d_c00100{margin-left:-45.540000px;}
._38_c00100{margin-left:-31.200000px;}
._37_c00100{margin-left:-30.144000px;}
._3a_c00100{margin-left:-22.272000px;}
._36_c00100{margin-left:-20.064000px;}
._20_c00100{margin-left:-14.880000px;}
._34_c00100{margin-left:-10.944000px;}
._27_c00100{margin-left:-9.696000px;}
._33_c00100{margin-left:-8.352000px;}
._26_c00100{margin-left:-6.912000px;}
._28_c00100{margin-left:-5.376000px;}
._2_c00100{margin-left:-3.648000px;}
._3_c00100{margin-left:-2.400000px;}
._b_c00100{margin-left:-1.152000px;}
._0_c00100{width:1.824000px;}
._6_c00100{width:3.360000px;}
._8_c00100{width:4.416000px;}
._4_c00100{width:5.472000px;}
._f_c00100{width:7.104000px;}
._e_c00100{width:8.160000px;}
._14_c00100{width:9.312000px;}
._16_c00100{width:11.136000px;}
._15_c00100{width:12.288000px;}
._a_c00100{width:13.920000px;}
._17_c00100{width:15.072000px;}
._12_c00100{width:16.224000px;}
._9_c00100{width:17.472000px;}
._18_c00100{width:19.392000px;}
._5_c00100{width:20.928000px;}
._32_c00100{width:22.080000px;}
._13_c00100{width:24.960000px;}
._19_c00100{width:26.400000px;}
._11_c00100{width:28.320000px;}
._1b_c00100{width:30.144000px;}
._35_c00100{width:31.392000px;}
._1e_c00100{width:32.544000px;}
._10_c00100{width:34.272000px;}
._7_c00100{width:36.576000px;}
._1_c00100{width:38.688000px;}
._1a_c00100{width:41.376000px;}
._39_c00100{width:42.432000px;}
._c_c00100{width:43.488000px;}
._d_c00100{width:46.080000px;}
._1d_c00100{width:47.520000px;}
._23_c00100{width:49.344000px;}
._22_c00100{width:51.552000px;}
._25_c00100{width:54.048000px;}
._1c_c00100{width:55.584000px;}
._2f_c00100{width:57.504000px;}
._1f_c00100{width:59.424000px;}
._24_c00100{width:61.056000px;}
._21_c00100{width:62.400000px;}
._2e_c00100{width:64.608000px;}
._30_c00100{width:76.896000px;}
._29_c00100{width:127.104000px;}
._2a_c00100{width:215.016000px;}
._31_c00100{width:295.764000px;}
._3b_c00100{width:816.660000px;}
.fc2_c00100{color:transparent;}
.fc1_c00100{color:rgb(128,128,128);}
.fc0_c00100{color:rgb(0,0,0);}
.fs4_c00100{font-size:24.000000px;}
.fs5_c00100{font-size:48.000000px;}
.fs1_c00100{font-size:84.000000px;}
.fs3_c00100{font-size:87.000000px;}
.fs0_c00100{font-size:96.000000px;}
.fs2_c00100{font-size:111.000000px;}
.y0_c00100{bottom:0.000000px;}
.y27_c00100{bottom:3.105000px;}
.y26_c00100{bottom:7.228371px;}
.y24_c00100{bottom:97.515000px;}
.y23_c00100{bottom:132.015000px;}
.y22_c00100{bottom:166.365000px;}
.y21_c00100{bottom:200.115000px;}
.y20_c00100{bottom:233.565000px;}
.y1f_c00100{bottom:267.615000px;}
.y1e_c00100{bottom:301.515000px;}
.y1d_c00100{bottom:335.265000px;}
.y1c_c00100{bottom:368.565000px;}
.y1b_c00100{bottom:402.015000px;}
.y1a_c00100{bottom:436.365000px;}
.y19_c00100{bottom:469.515000px;}
.y18_c00100{bottom:503.265000px;}
.y17_c00100{bottom:536.715000px;}
.y16_c00100{bottom:569.415000px;}
.y15_c00100{bottom:603.765000px;}
.y25_c00100{bottom:627.165000px;}
.y14_c00100{bottom:636.615000px;}
.y13_c00100{bottom:669.615000px;}
.y12_c00100{bottom:703.365000px;}
.y11_c00100{bottom:737.115000px;}
.y10_c00100{bottom:770.565000px;}
.yf_c00100{bottom:803.565000px;}
.ye_c00100{bottom:837.315000px;}
.yd_c00100{bottom:869.865000px;}
.yc_c00100{bottom:903.465000px;}
.yb_c00100{bottom:936.915000px;}
.ya_c00100{bottom:969.765000px;}
.y9_c00100{bottom:1003.515000px;}
.y8_c00100{bottom:1036.815000px;}
.y7_c00100{bottom:1070.265000px;}
.y6_c00100{bottom:1103.415000px;}
.y5_c00100{bottom:1137.315000px;}
.y4_c00100{bottom:1170.465000px;}
.y3_c00100{bottom:1203.615000px;}
.y2_c00100{bottom:1236.915000px;}
.y1_c00100{bottom:1270.365000px;}
.h5_c00100{height:13.200074px;}
.h6_c00100{height:43.804688px;}
.h3_c00100{height:108.940430px;}
.h4_c00100{height:110.151855px;}
.h2_c00100{height:121.546875px;}
.h0_c00100{height:1360.275000px;}
.h1_c00100{height:1360.500000px;}
.w2_c00100{width:104.875500px;}
.w1_c00100{width:863.250000px;}
.w0_c00100{width:863.475000px;}
.x0_c00100{left:0.000000px;}
.x6_c00100{left:32.100000px;}
.x7_c00100{left:33.150000px;}
.x5_c00100{left:34.200000px;}
.x4_c00100{left:35.850000px;}
.x3_c00100{left:36.900000px;}
.x8_c00100{left:38.100000px;}
.x2_c00100{left:39.150000px;}
.x1_c00100{left:40.800000px;}
.x9_c00100{left:41.850000px;}
.xa_c00100{left:328.350000px;}
.xc_c00100{left:383.551758px;}
.xb_c00100{left:640.800000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ls2_c00100{letter-spacing:40.000000pt;}
.ls1_c00100{letter-spacing:58.666667pt;}
.ws0_c00100{word-spacing:-17.994667pt;}
.ws1_c00100{word-spacing:0.000000pt;}
._2b_c00100{margin-left:-74.922667pt;}
._2c_c00100{margin-left:-71.168000pt;}
._2d_c00100{margin-left:-65.962667pt;}
._3c_c00100{margin-left:-58.154667pt;}
._3d_c00100{margin-left:-40.480000pt;}
._38_c00100{margin-left:-27.733333pt;}
._37_c00100{margin-left:-26.794667pt;}
._3a_c00100{margin-left:-19.797333pt;}
._36_c00100{margin-left:-17.834667pt;}
._20_c00100{margin-left:-13.226667pt;}
._34_c00100{margin-left:-9.728000pt;}
._27_c00100{margin-left:-8.618667pt;}
._33_c00100{margin-left:-7.424000pt;}
._26_c00100{margin-left:-6.144000pt;}
._28_c00100{margin-left:-4.778667pt;}
._2_c00100{margin-left:-3.242667pt;}
._3_c00100{margin-left:-2.133333pt;}
._b_c00100{margin-left:-1.024000pt;}
._0_c00100{width:1.621333pt;}
._6_c00100{width:2.986667pt;}
._8_c00100{width:3.925333pt;}
._4_c00100{width:4.864000pt;}
._f_c00100{width:6.314667pt;}
._e_c00100{width:7.253333pt;}
._14_c00100{width:8.277333pt;}
._16_c00100{width:9.898667pt;}
._15_c00100{width:10.922667pt;}
._a_c00100{width:12.373333pt;}
._17_c00100{width:13.397333pt;}
._12_c00100{width:14.421333pt;}
._9_c00100{width:15.530667pt;}
._18_c00100{width:17.237333pt;}
._5_c00100{width:18.602667pt;}
._32_c00100{width:19.626667pt;}
._13_c00100{width:22.186667pt;}
._19_c00100{width:23.466667pt;}
._11_c00100{width:25.173333pt;}
._1b_c00100{width:26.794667pt;}
._35_c00100{width:27.904000pt;}
._1e_c00100{width:28.928000pt;}
._10_c00100{width:30.464000pt;}
._7_c00100{width:32.512000pt;}
._1_c00100{width:34.389333pt;}
._1a_c00100{width:36.778667pt;}
._39_c00100{width:37.717333pt;}
._c_c00100{width:38.656000pt;}
._d_c00100{width:40.960000pt;}
._1d_c00100{width:42.240000pt;}
._23_c00100{width:43.861333pt;}
._22_c00100{width:45.824000pt;}
._25_c00100{width:48.042667pt;}
._1c_c00100{width:49.408000pt;}
._2f_c00100{width:51.114667pt;}
._1f_c00100{width:52.821333pt;}
._24_c00100{width:54.272000pt;}
._21_c00100{width:55.466667pt;}
._2e_c00100{width:57.429333pt;}
._30_c00100{width:68.352000pt;}
._29_c00100{width:112.981333pt;}
._2a_c00100{width:191.125333pt;}
._31_c00100{width:262.901333pt;}
._3b_c00100{width:725.920000pt;}
.fs4_c00100{font-size:21.333333pt;}
.fs5_c00100{font-size:42.666667pt;}
.fs1_c00100{font-size:74.666667pt;}
.fs3_c00100{font-size:77.333333pt;}
.fs0_c00100{font-size:85.333333pt;}
.fs2_c00100{font-size:98.666667pt;}
.y0_c00100{bottom:0.000000pt;}
.y27_c00100{bottom:2.760000pt;}
.y26_c00100{bottom:6.425219pt;}
.y24_c00100{bottom:86.680000pt;}
.y23_c00100{bottom:117.346667pt;}
.y22_c00100{bottom:147.880000pt;}
.y21_c00100{bottom:177.880000pt;}
.y20_c00100{bottom:207.613333pt;}
.y1f_c00100{bottom:237.880000pt;}
.y1e_c00100{bottom:268.013333pt;}
.y1d_c00100{bottom:298.013333pt;}
.y1c_c00100{bottom:327.613333pt;}
.y1b_c00100{bottom:357.346667pt;}
.y1a_c00100{bottom:387.880000pt;}
.y19_c00100{bottom:417.346667pt;}
.y18_c00100{bottom:447.346667pt;}
.y17_c00100{bottom:477.080000pt;}
.y16_c00100{bottom:506.146667pt;}
.y15_c00100{bottom:536.680000pt;}
.y25_c00100{bottom:557.480000pt;}
.y14_c00100{bottom:565.880000pt;}
.y13_c00100{bottom:595.213333pt;}
.y12_c00100{bottom:625.213333pt;}
.y11_c00100{bottom:655.213333pt;}
.y10_c00100{bottom:684.946667pt;}
.yf_c00100{bottom:714.280000pt;}
.ye_c00100{bottom:744.280000pt;}
.yd_c00100{bottom:773.213333pt;}
.yc_c00100{bottom:803.080000pt;}
.yb_c00100{bottom:832.813333pt;}
.ya_c00100{bottom:862.013333pt;}
.y9_c00100{bottom:892.013333pt;}
.y8_c00100{bottom:921.613333pt;}
.y7_c00100{bottom:951.346667pt;}
.y6_c00100{bottom:980.813333pt;}
.y5_c00100{bottom:1010.946667pt;}
.y4_c00100{bottom:1040.413333pt;}
.y3_c00100{bottom:1069.880000pt;}
.y2_c00100{bottom:1099.480000pt;}
.y1_c00100{bottom:1129.213333pt;}
.h5_c00100{height:11.733399pt;}
.h6_c00100{height:38.937500pt;}
.h3_c00100{height:96.835938pt;}
.h4_c00100{height:97.912760pt;}
.h2_c00100{height:108.041667pt;}
.h0_c00100{height:1209.133333pt;}
.h1_c00100{height:1209.333333pt;}
.w2_c00100{width:93.222667pt;}
.w1_c00100{width:767.333333pt;}
.w0_c00100{width:767.533333pt;}
.x0_c00100{left:0.000000pt;}
.x6_c00100{left:28.533333pt;}
.x7_c00100{left:29.466667pt;}
.x5_c00100{left:30.400000pt;}
.x4_c00100{left:31.866667pt;}
.x3_c00100{left:32.800000pt;}
.x8_c00100{left:33.866667pt;}
.x2_c00100{left:34.800000pt;}
.x1_c00100{left:36.266667pt;}
.x9_c00100{left:37.200000pt;}
.xa_c00100{left:291.866667pt;}
.xc_c00100{left:340.934896pt;}
.xb_c00100{left:569.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_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_0f032b72243b61faa1a4513b.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_1bc4c83086125f2e2c0e1e36.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_5f102509718509e8cc7bca09.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_0b71ea3ee9004beb897b6f23.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls6_c00101{letter-spacing:0.000000px;}
.ls0_c00101{letter-spacing:3.396000px;}
.ls2_c00101{letter-spacing:7.200000px;}
.ls4_c00101{letter-spacing:9.900000px;}
.ls1_c00101{letter-spacing:10.344000px;}
.ls5_c00101{letter-spacing:39.900000px;}
.ls3_c00101{letter-spacing:64.152000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00101{word-spacing:-55.044000px;}
.ws0_c00101{word-spacing:-20.244000px;}
.ws3_c00101{word-spacing:0.000000px;}
.ws2_c00101{word-spacing:5.964000px;}
._30_c00101{margin-left:-47.904000px;}
._3c_c00101{margin-left:-25.728000px;}
._3f_c00101{margin-left:-20.928000px;}
._2e_c00101{margin-left:-19.776000px;}
._3e_c00101{margin-left:-16.896000px;}
._13_c00101{margin-left:-15.072000px;}
._14_c00101{margin-left:-13.536000px;}
._15_c00101{margin-left:-11.808000px;}
._1d_c00101{margin-left:-9.504000px;}
._1c_c00101{margin-left:-7.680000px;}
._b_c00101{margin-left:-5.952000px;}
._1_c00101{margin-left:-4.896000px;}
._0_c00101{margin-left:-3.840000px;}
._c_c00101{margin-left:-2.784000px;}
._27_c00101{margin-left:-1.440000px;}
._6_c00101{width:1.920000px;}
._18_c00101{width:2.976000px;}
._2_c00101{width:4.224000px;}
._4_c00101{width:6.048000px;}
._3_c00101{width:7.488000px;}
._5_c00101{width:8.640000px;}
._42_c00101{width:9.696000px;}
._7_c00101{width:10.752000px;}
._8_c00101{width:12.672000px;}
._f_c00101{width:14.304000px;}
._26_c00101{width:15.648000px;}
._11_c00101{width:17.760000px;}
._1f_c00101{width:19.104000px;}
._12_c00101{width:20.928000px;}
._17_c00101{width:22.080000px;}
._a_c00101{width:25.152000px;}
._28_c00101{width:26.208000px;}
._16_c00101{width:27.552000px;}
._9_c00101{width:28.704000px;}
._22_c00101{width:29.856000px;}
._20_c00101{width:31.584000px;}
._21_c00101{width:33.600000px;}
._1a_c00101{width:35.040000px;}
._38_c00101{width:36.096000px;}
._1b_c00101{width:37.224000px;}
._23_c00101{width:38.400000px;}
._3a_c00101{width:40.224000px;}
._24_c00101{width:41.664000px;}
._37_c00101{width:42.720000px;}
._25_c00101{width:43.800000px;}
._d_c00101{width:45.024000px;}
._3b_c00101{width:47.040000px;}
._35_c00101{width:48.888000px;}
._19_c00101{width:50.016000px;}
._2a_c00101{width:51.168000px;}
._29_c00101{width:55.392000px;}
._39_c00101{width:56.448000px;}
._2f_c00101{width:60.864000px;}
._33_c00101{width:62.688000px;}
._44_c00101{width:81.708000px;}
._32_c00101{width:83.712000px;}
._2d_c00101{width:92.448000px;}
._3d_c00101{width:101.568000px;}
._2c_c00101{width:119.712000px;}
._2b_c00101{width:126.720000px;}
._41_c00101{width:130.752000px;}
._31_c00101{width:148.416000px;}
._1e_c00101{width:155.904000px;}
._10_c00101{width:172.512000px;}
._34_c00101{width:309.048000px;}
._40_c00101{width:352.800000px;}
._e_c00101{width:355.776000px;}
._43_c00101{width:501.600000px;}
._36_c00101{width:676.764000px;}
._45_c00101{width:806.352000px;}
._46_c00101{width:978.060000px;}
.fc2_c00101{color:transparent;}
.fc1_c00101{color:rgb(128,128,128);}
.fc0_c00101{color:rgb(0,0,0);}
.fs5_c00101{font-size:48.000000px;}
.fs2_c00101{font-size:67.200000px;}
.fs1_c00101{font-size:84.000000px;}
.fs0_c00101{font-size:96.000000px;}
.fs3_c00101{font-size:99.000000px;}
.fs4_c00101{font-size:102.000000px;}
.y0_c00101{bottom:0.000000px;}
.y26_c00101{bottom:3.105000px;}
.y25_c00101{bottom:7.228357px;}
.y24_c00101{bottom:93.180000px;}
.y23_c00101{bottom:127.980000px;}
.y22_c00101{bottom:163.080000px;}
.y21_c00101{bottom:195.480000px;}
.y20_c00101{bottom:232.830000px;}
.y1f_c00101{bottom:266.580000px;}
.y1e_c00101{bottom:301.080000px;}
.y1d_c00101{bottom:333.180000px;}
.y1c_c00101{bottom:368.880000px;}
.y1b_c00101{bottom:400.380000px;}
.y1a_c00101{bottom:437.130000px;}
.y19_c00101{bottom:470.430000px;}
.y18_c00101{bottom:504.630000px;}
.y17_c00101{bottom:538.980000px;}
.y16_c00101{bottom:572.430000px;}
.y15_c00101{bottom:609.480000px;}
.y14_c00101{bottom:640.530000px;}
.y13_c00101{bottom:672.930000px;}
.y12_c00101{bottom:706.830000px;}
.y11_c00101{bottom:740.580000px;}
.y10_c00101{bottom:773.580000px;}
.yf_c00101{bottom:808.080000px;}
.ye_c00101{bottom:841.680000px;}
.yd_c00101{bottom:875.580000px;}
.yc_c00101{bottom:909.180000px;}
.yb_c00101{bottom:942.030000px;}
.ya_c00101{bottom:976.080000px;}
.y9_c00101{bottom:1008.780000px;}
.y8_c00101{bottom:1042.230000px;}
.y7_c00101{bottom:1075.380000px;}
.y6_c00101{bottom:1108.680000px;}
.y5_c00101{bottom:1141.830000px;}
.y4_c00101{bottom:1175.130000px;}
.y3_c00101{bottom:1208.580000px;}
.y2_c00101{bottom:1242.330000px;}
.y1_c00101{bottom:1274.730000px;}
.h3_c00101{height:13.200074px;}
.h4_c00101{height:43.804688px;}
.h2_c00101{height:121.546875px;}
.h0_c00101{height:1382.700000px;}
.h1_c00101{height:1383.000000px;}
.w2_c00101{width:104.875500px;}
.w0_c00101{width:863.175000px;}
.w1_c00101{width:863.250000px;}
.x0_c00101{left:0.000000px;}
.xb_c00101{left:60.750000px;}
.xa_c00101{left:89.400000px;}
.x7_c00101{left:95.850000px;}
.x2_c00101{left:178.200000px;}
.x4_c00101{left:183.300000px;}
.x8_c00101{left:238.500000px;}
.xc_c00101{left:261.600000px;}
.x9_c00101{left:283.800000px;}
.x5_c00101{left:285.450000px;}
.x3_c00101{left:287.100000px;}
.x1_c00101{left:288.600000px;}
.x6_c00101{left:350.250000px;}
.xe_c00101{left:383.401749px;}
.xd_c00101{left:478.650000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls6_c00101{letter-spacing:0.000000pt;}
.ls0_c00101{letter-spacing:3.018667pt;}
.ls2_c00101{letter-spacing:6.400000pt;}
.ls4_c00101{letter-spacing:8.800000pt;}
.ls1_c00101{letter-spacing:9.194667pt;}
.ls5_c00101{letter-spacing:35.466667pt;}
.ls3_c00101{letter-spacing:57.024000pt;}
.ws1_c00101{word-spacing:-48.928000pt;}
.ws0_c00101{word-spacing:-17.994667pt;}
.ws3_c00101{word-spacing:0.000000pt;}
.ws2_c00101{word-spacing:5.301333pt;}
._30_c00101{margin-left:-42.581333pt;}
._3c_c00101{margin-left:-22.869333pt;}
._3f_c00101{margin-left:-18.602667pt;}
._2e_c00101{margin-left:-17.578667pt;}
._3e_c00101{margin-left:-15.018667pt;}
._13_c00101{margin-left:-13.397333pt;}
._14_c00101{margin-left:-12.032000pt;}
._15_c00101{margin-left:-10.496000pt;}
._1d_c00101{margin-left:-8.448000pt;}
._1c_c00101{margin-left:-6.826667pt;}
._b_c00101{margin-left:-5.290667pt;}
._1_c00101{margin-left:-4.352000pt;}
._0_c00101{margin-left:-3.413333pt;}
._c_c00101{margin-left:-2.474667pt;}
._27_c00101{margin-left:-1.280000pt;}
._6_c00101{width:1.706667pt;}
._18_c00101{width:2.645333pt;}
._2_c00101{width:3.754667pt;}
._4_c00101{width:5.376000pt;}
._3_c00101{width:6.656000pt;}
._5_c00101{width:7.680000pt;}
._42_c00101{width:8.618667pt;}
._7_c00101{width:9.557333pt;}
._8_c00101{width:11.264000pt;}
._f_c00101{width:12.714667pt;}
._26_c00101{width:13.909333pt;}
._11_c00101{width:15.786667pt;}
._1f_c00101{width:16.981333pt;}
._12_c00101{width:18.602667pt;}
._17_c00101{width:19.626667pt;}
._a_c00101{width:22.357333pt;}
._28_c00101{width:23.296000pt;}
._16_c00101{width:24.490667pt;}
._9_c00101{width:25.514667pt;}
._22_c00101{width:26.538667pt;}
._20_c00101{width:28.074667pt;}
._21_c00101{width:29.866667pt;}
._1a_c00101{width:31.146667pt;}
._38_c00101{width:32.085333pt;}
._1b_c00101{width:33.088000pt;}
._23_c00101{width:34.133333pt;}
._3a_c00101{width:35.754667pt;}
._24_c00101{width:37.034667pt;}
._37_c00101{width:37.973333pt;}
._25_c00101{width:38.933333pt;}
._d_c00101{width:40.021333pt;}
._3b_c00101{width:41.813333pt;}
._35_c00101{width:43.456000pt;}
._19_c00101{width:44.458667pt;}
._2a_c00101{width:45.482667pt;}
._29_c00101{width:49.237333pt;}
._39_c00101{width:50.176000pt;}
._2f_c00101{width:54.101333pt;}
._33_c00101{width:55.722667pt;}
._44_c00101{width:72.629333pt;}
._32_c00101{width:74.410667pt;}
._2d_c00101{width:82.176000pt;}
._3d_c00101{width:90.282667pt;}
._2c_c00101{width:106.410667pt;}
._2b_c00101{width:112.640000pt;}
._41_c00101{width:116.224000pt;}
._31_c00101{width:131.925333pt;}
._1e_c00101{width:138.581333pt;}
._10_c00101{width:153.344000pt;}
._34_c00101{width:274.709333pt;}
._40_c00101{width:313.600000pt;}
._e_c00101{width:316.245333pt;}
._43_c00101{width:445.866667pt;}
._36_c00101{width:601.568000pt;}
._45_c00101{width:716.757333pt;}
._46_c00101{width:869.386667pt;}
.fs5_c00101{font-size:42.666667pt;}
.fs2_c00101{font-size:59.733333pt;}
.fs1_c00101{font-size:74.666667pt;}
.fs0_c00101{font-size:85.333333pt;}
.fs3_c00101{font-size:88.000000pt;}
.fs4_c00101{font-size:90.666667pt;}
.y0_c00101{bottom:0.000000pt;}
.y26_c00101{bottom:2.760000pt;}
.y25_c00101{bottom:6.425206pt;}
.y24_c00101{bottom:82.826667pt;}
.y23_c00101{bottom:113.760000pt;}
.y22_c00101{bottom:144.960000pt;}
.y21_c00101{bottom:173.760000pt;}
.y20_c00101{bottom:206.960000pt;}
.y1f_c00101{bottom:236.960000pt;}
.y1e_c00101{bottom:267.626667pt;}
.y1d_c00101{bottom:296.160000pt;}
.y1c_c00101{bottom:327.893333pt;}
.y1b_c00101{bottom:355.893333pt;}
.y1a_c00101{bottom:388.560000pt;}
.y19_c00101{bottom:418.160000pt;}
.y18_c00101{bottom:448.560000pt;}
.y17_c00101{bottom:479.093333pt;}
.y16_c00101{bottom:508.826667pt;}
.y15_c00101{bottom:541.760000pt;}
.y14_c00101{bottom:569.360000pt;}
.y13_c00101{bottom:598.160000pt;}
.y12_c00101{bottom:628.293333pt;}
.y11_c00101{bottom:658.293333pt;}
.y10_c00101{bottom:687.626667pt;}
.yf_c00101{bottom:718.293333pt;}
.ye_c00101{bottom:748.160000pt;}
.yd_c00101{bottom:778.293333pt;}
.yc_c00101{bottom:808.160000pt;}
.yb_c00101{bottom:837.360000pt;}
.ya_c00101{bottom:867.626667pt;}
.y9_c00101{bottom:896.693333pt;}
.y8_c00101{bottom:926.426667pt;}
.y7_c00101{bottom:955.893333pt;}
.y6_c00101{bottom:985.493333pt;}
.y5_c00101{bottom:1014.960000pt;}
.y4_c00101{bottom:1044.560000pt;}
.y3_c00101{bottom:1074.293333pt;}
.y2_c00101{bottom:1104.293333pt;}
.y1_c00101{bottom:1133.093333pt;}
.h3_c00101{height:11.733399pt;}
.h4_c00101{height:38.937500pt;}
.h2_c00101{height:108.041667pt;}
.h0_c00101{height:1229.066667pt;}
.h1_c00101{height:1229.333333pt;}
.w2_c00101{width:93.222667pt;}
.w0_c00101{width:767.266667pt;}
.w1_c00101{width:767.333333pt;}
.x0_c00101{left:0.000000pt;}
.xb_c00101{left:54.000000pt;}
.xa_c00101{left:79.466667pt;}
.x7_c00101{left:85.200000pt;}
.x2_c00101{left:158.400000pt;}
.x4_c00101{left:162.933333pt;}
.x8_c00101{left:212.000000pt;}
.xc_c00101{left:232.533333pt;}
.x9_c00101{left:252.266667pt;}
.x5_c00101{left:253.733333pt;}
.x3_c00101{left:255.200000pt;}
.x1_c00101{left:256.533333pt;}
.x6_c00101{left:311.333333pt;}
.xe_c00101{left:340.801554pt;}
.xd_c00101{left:425.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b13b55358435a15a3af0def3.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_80f1661e13ca814eb695c561.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_1cadb4a44c88acb9ac1bda0e.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;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_c00102;src:url('chunks/assets/font_62b278648de40a9cce123be1.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_2e40088446747378a7b1e75e.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00102;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.ls1_c00102{letter-spacing:12.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00102{word-spacing:-63.000000px;}
.ws2_c00102{word-spacing:-43.084800px;}
.ws5_c00102{word-spacing:-23.136000px;}
.ws3_c00102{word-spacing:-20.448000px;}
.ws1_c00102{word-spacing:-20.244000px;}
.ws6_c00102{word-spacing:0.000000px;}
.ws0_c00102{word-spacing:0.084000px;}
._39_c00102{margin-left:-47.424000px;}
._3f_c00102{margin-left:-21.840000px;}
._1d_c00102{margin-left:-20.640000px;}
._37_c00102{margin-left:-19.128000px;}
._2a_c00102{margin-left:-17.280000px;}
._11_c00102{margin-left:-14.328000px;}
._24_c00102{margin-left:-13.152000px;}
._41_c00102{margin-left:-12.144000px;}
._25_c00102{margin-left:-10.944000px;}
._c_c00102{margin-left:-8.928000px;}
._28_c00102{margin-left:-6.780000px;}
._21_c00102{margin-left:-5.064000px;}
._b_c00102{margin-left:-3.072000px;}
._1b_c00102{margin-left:-1.944000px;}
._0_c00102{width:1.440000px;}
._10_c00102{width:2.496000px;}
._4_c00102{width:3.552000px;}
._a_c00102{width:4.992000px;}
._2_c00102{width:6.192000px;}
._9_c00102{width:8.064000px;}
._6_c00102{width:9.600000px;}
._19_c00102{width:10.656000px;}
._8_c00102{width:12.000000px;}
._1e_c00102{width:13.032000px;}
._5_c00102{width:14.304000px;}
._1f_c00102{width:15.360000px;}
._1_c00102{width:17.400000px;}
._3d_c00102{width:18.528000px;}
._14_c00102{width:19.776000px;}
._7_c00102{width:21.600000px;}
._17_c00102{width:24.288000px;}
._1a_c00102{width:26.160000px;}
._18_c00102{width:28.128000px;}
._3_c00102{width:29.664000px;}
._f_c00102{width:32.640000px;}
._27_c00102{width:34.296000px;}
._13_c00102{width:36.672000px;}
._29_c00102{width:39.024000px;}
._12_c00102{width:40.704000px;}
._2b_c00102{width:42.168000px;}
._15_c00102{width:43.488000px;}
._d_c00102{width:44.928000px;}
._3c_c00102{width:46.200000px;}
._16_c00102{width:47.952000px;}
._26_c00102{width:50.304000px;}
._e_c00102{width:51.648000px;}
._23_c00102{width:54.432000px;}
._3e_c00102{width:57.936000px;}
._40_c00102{width:60.144000px;}
._32_c00102{width:61.944000px;}
._2e_c00102{width:65.136000px;}
._1c_c00102{width:96.912000px;}
._33_c00102{width:98.568000px;}
._31_c00102{width:104.256000px;}
._20_c00102{width:114.744000px;}
._34_c00102{width:116.256000px;}
._36_c00102{width:119.328000px;}
._35_c00102{width:148.032000px;}
._2d_c00102{width:180.384000px;}
._22_c00102{width:191.448000px;}
._2f_c00102{width:198.840000px;}
._38_c00102{width:239.040000px;}
._3a_c00102{width:278.736000px;}
._30_c00102{width:287.232000px;}
._2c_c00102{width:336.420000px;}
._3b_c00102{width:848.304000px;}
.fc2_c00102{color:transparent;}
.fc1_c00102{color:rgb(128,128,128);}
.fc0_c00102{color:rgb(0,0,0);}
.fs5_c00102{font-size:48.000000px;}
.fs3_c00102{font-size:76.800000px;}
.fs1_c00102{font-size:84.000000px;}
.fs0_c00102{font-size:96.000000px;}
.fs4_c00102{font-size:102.000000px;}
.fs2_c00102{font-size:111.000000px;}
.y0_c00102{bottom:0.000000px;}
.y28_c00102{bottom:3.105000px;}
.y27_c00102{bottom:7.228369px;}
.y25_c00102{bottom:115.020000px;}
.y24_c00102{bottom:147.720000px;}
.y23_c00102{bottom:182.820000px;}
.y22_c00102{bottom:216.720000px;}
.y21_c00102{bottom:248.970000px;}
.y20_c00102{bottom:284.520000px;}
.y1f_c00102{bottom:318.570000px;}
.y1e_c00102{bottom:352.020000px;}
.y1d_c00102{bottom:385.770000px;}
.y1c_c00102{bottom:420.120000px;}
.y1b_c00102{bottom:452.970000px;}
.y1a_c00102{bottom:487.020000px;}
.y26_c00102{bottom:501.120000px;}
.y19_c00102{bottom:521.070000px;}
.y18_c00102{bottom:536.220000px;}
.y17_c00102{bottom:553.770000px;}
.y16_c00102{bottom:587.820000px;}
.y15_c00102{bottom:620.370000px;}
.y14_c00102{bottom:653.070000px;}
.y13_c00102{bottom:687.420000px;}
.y12_c00102{bottom:719.820000px;}
.y11_c00102{bottom:755.220000px;}
.y10_c00102{bottom:788.370000px;}
.yf_c00102{bottom:822.120000px;}
.ye_c00102{bottom:854.820000px;}
.yd_c00102{bottom:887.970000px;}
.yc_c00102{bottom:922.770000px;}
.yb_c00102{bottom:954.720000px;}
.ya_c00102{bottom:987.570000px;}
.y9_c00102{bottom:1021.920000px;}
.y8_c00102{bottom:1054.320000px;}
.y7_c00102{bottom:1088.670000px;}
.y6_c00102{bottom:1121.820000px;}
.y5_c00102{bottom:1154.520000px;}
.y4_c00102{bottom:1188.570000px;}
.y3_c00102{bottom:1221.420000px;}
.y2_c00102{bottom:1254.720000px;}
.y1_c00102{bottom:1288.470000px;}
.h4_c00102{height:13.200073px;}
.h5_c00102{height:43.804688px;}
.h3_c00102{height:102.796875px;}
.h2_c00102{height:121.546875px;}
.h0_c00102{height:1383.450000px;}
.h1_c00102{height:1383.750000px;}
.w2_c00102{width:104.875500px;}
.w0_c00102{width:878.025000px;}
.w1_c00102{width:878.250000px;}
.x0_c00102{left:0.000000px;}
.xd_c00102{left:57.000000px;}
.xb_c00102{left:58.500000px;}
.x9_c00102{left:59.700000px;}
.x7_c00102{left:61.200000px;}
.xe_c00102{left:62.400000px;}
.x6_c00102{left:63.450000px;}
.x5_c00102{left:64.500000px;}
.x4_c00102{left:66.150000px;}
.x3_c00102{left:67.800000px;}
.x2_c00102{left:69.300000px;}
.x1_c00102{left:70.500000px;}
.xa_c00102{left:114.750000px;}
.x8_c00102{left:117.450000px;}
.xc_c00102{left:190.350000px;}
.x11_c00102{left:390.826721px;}
.xf_c00102{left:594.750000px;}
.x10_c00102{left:654.150000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ls1_c00102{letter-spacing:10.666667pt;}
.ws4_c00102{word-spacing:-56.000000pt;}
.ws2_c00102{word-spacing:-38.297600pt;}
.ws5_c00102{word-spacing:-20.565333pt;}
.ws3_c00102{word-spacing:-18.176000pt;}
.ws1_c00102{word-spacing:-17.994667pt;}
.ws6_c00102{word-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.074667pt;}
._39_c00102{margin-left:-42.154667pt;}
._3f_c00102{margin-left:-19.413333pt;}
._1d_c00102{margin-left:-18.346667pt;}
._37_c00102{margin-left:-17.002667pt;}
._2a_c00102{margin-left:-15.360000pt;}
._11_c00102{margin-left:-12.736000pt;}
._24_c00102{margin-left:-11.690667pt;}
._41_c00102{margin-left:-10.794667pt;}
._25_c00102{margin-left:-9.728000pt;}
._c_c00102{margin-left:-7.936000pt;}
._28_c00102{margin-left:-6.026667pt;}
._21_c00102{margin-left:-4.501333pt;}
._b_c00102{margin-left:-2.730667pt;}
._1b_c00102{margin-left:-1.728000pt;}
._0_c00102{width:1.280000pt;}
._10_c00102{width:2.218667pt;}
._4_c00102{width:3.157333pt;}
._a_c00102{width:4.437333pt;}
._2_c00102{width:5.504000pt;}
._9_c00102{width:7.168000pt;}
._6_c00102{width:8.533333pt;}
._19_c00102{width:9.472000pt;}
._8_c00102{width:10.666667pt;}
._1e_c00102{width:11.584000pt;}
._5_c00102{width:12.714667pt;}
._1f_c00102{width:13.653333pt;}
._1_c00102{width:15.466667pt;}
._3d_c00102{width:16.469333pt;}
._14_c00102{width:17.578667pt;}
._7_c00102{width:19.200000pt;}
._17_c00102{width:21.589333pt;}
._1a_c00102{width:23.253333pt;}
._18_c00102{width:25.002667pt;}
._3_c00102{width:26.368000pt;}
._f_c00102{width:29.013333pt;}
._27_c00102{width:30.485333pt;}
._13_c00102{width:32.597333pt;}
._29_c00102{width:34.688000pt;}
._12_c00102{width:36.181333pt;}
._2b_c00102{width:37.482667pt;}
._15_c00102{width:38.656000pt;}
._d_c00102{width:39.936000pt;}
._3c_c00102{width:41.066667pt;}
._16_c00102{width:42.624000pt;}
._26_c00102{width:44.714667pt;}
._e_c00102{width:45.909333pt;}
._23_c00102{width:48.384000pt;}
._3e_c00102{width:51.498667pt;}
._40_c00102{width:53.461333pt;}
._32_c00102{width:55.061333pt;}
._2e_c00102{width:57.898667pt;}
._1c_c00102{width:86.144000pt;}
._33_c00102{width:87.616000pt;}
._31_c00102{width:92.672000pt;}
._20_c00102{width:101.994667pt;}
._34_c00102{width:103.338667pt;}
._36_c00102{width:106.069333pt;}
._35_c00102{width:131.584000pt;}
._2d_c00102{width:160.341333pt;}
._22_c00102{width:170.176000pt;}
._2f_c00102{width:176.746667pt;}
._38_c00102{width:212.480000pt;}
._3a_c00102{width:247.765333pt;}
._30_c00102{width:255.317333pt;}
._2c_c00102{width:299.040000pt;}
._3b_c00102{width:754.048000pt;}
.fs5_c00102{font-size:42.666667pt;}
.fs3_c00102{font-size:68.266667pt;}
.fs1_c00102{font-size:74.666667pt;}
.fs0_c00102{font-size:85.333333pt;}
.fs4_c00102{font-size:90.666667pt;}
.fs2_c00102{font-size:98.666667pt;}
.y0_c00102{bottom:0.000000pt;}
.y28_c00102{bottom:2.760000pt;}
.y27_c00102{bottom:6.425217pt;}
.y25_c00102{bottom:102.240000pt;}
.y24_c00102{bottom:131.306667pt;}
.y23_c00102{bottom:162.506667pt;}
.y22_c00102{bottom:192.640000pt;}
.y21_c00102{bottom:221.306667pt;}
.y20_c00102{bottom:252.906667pt;}
.y1f_c00102{bottom:283.173333pt;}
.y1e_c00102{bottom:312.906667pt;}
.y1d_c00102{bottom:342.906667pt;}
.y1c_c00102{bottom:373.440000pt;}
.y1b_c00102{bottom:402.640000pt;}
.y1a_c00102{bottom:432.906667pt;}
.y26_c00102{bottom:445.440000pt;}
.y19_c00102{bottom:463.173333pt;}
.y18_c00102{bottom:476.640000pt;}
.y17_c00102{bottom:492.240000pt;}
.y16_c00102{bottom:522.506667pt;}
.y15_c00102{bottom:551.440000pt;}
.y14_c00102{bottom:580.506667pt;}
.y13_c00102{bottom:611.040000pt;}
.y12_c00102{bottom:639.840000pt;}
.y11_c00102{bottom:671.306667pt;}
.y10_c00102{bottom:700.773333pt;}
.yf_c00102{bottom:730.773333pt;}
.ye_c00102{bottom:759.840000pt;}
.yd_c00102{bottom:789.306667pt;}
.yc_c00102{bottom:820.240000pt;}
.yb_c00102{bottom:848.640000pt;}
.ya_c00102{bottom:877.840000pt;}
.y9_c00102{bottom:908.373333pt;}
.y8_c00102{bottom:937.173333pt;}
.y7_c00102{bottom:967.706667pt;}
.y6_c00102{bottom:997.173333pt;}
.y5_c00102{bottom:1026.240000pt;}
.y4_c00102{bottom:1056.506667pt;}
.y3_c00102{bottom:1085.706667pt;}
.y2_c00102{bottom:1115.306667pt;}
.y1_c00102{bottom:1145.306667pt;}
.h4_c00102{height:11.733399pt;}
.h5_c00102{height:38.937500pt;}
.h3_c00102{height:91.375000pt;}
.h2_c00102{height:108.041667pt;}
.h0_c00102{height:1229.733333pt;}
.h1_c00102{height:1230.000000pt;}
.w2_c00102{width:93.222667pt;}
.w0_c00102{width:780.466667pt;}
.w1_c00102{width:780.666667pt;}
.x0_c00102{left:0.000000pt;}
.xd_c00102{left:50.666667pt;}
.xb_c00102{left:52.000000pt;}
.x9_c00102{left:53.066667pt;}
.x7_c00102{left:54.400000pt;}
.xe_c00102{left:55.466667pt;}
.x6_c00102{left:56.400000pt;}
.x5_c00102{left:57.333333pt;}
.x4_c00102{left:58.800000pt;}
.x3_c00102{left:60.266667pt;}
.x2_c00102{left:61.600000pt;}
.x1_c00102{left:62.666667pt;}
.xa_c00102{left:102.000000pt;}
.x8_c00102{left:104.400000pt;}
.xc_c00102{left:169.200000pt;}
.x11_c00102{left:347.401530pt;}
.xf_c00102{left:528.666667pt;}
.x10_c00102{left:581.466667pt;}
}





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

.ir_c00103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00103;src:url('chunks/assets/font_582f02b2b3b36633c6aaaf55.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_b355de5cab7fca7d5a44f235.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls2_c00103{letter-spacing:0.000000px;}
.ls1_c00103{letter-spacing:19.452000px;}
.ls3_c00103{letter-spacing:24.000000px;}
.ls0_c00103{letter-spacing:33.600000px;}
.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;}
}
.ws2_c00103{word-spacing:-44.967000px;}
.ws1_c00103{word-spacing:-23.136000px;}
.ws0_c00103{word-spacing:-20.244000px;}
.ws3_c00103{word-spacing:0.000000px;}
._30_c00103{margin-left:-42.891000px;}
._31_c00103{margin-left:-35.931000px;}
._2e_c00103{margin-left:-15.444000px;}
._2b_c00103{margin-left:-11.244000px;}
._2f_c00103{margin-left:-9.684000px;}
._a_c00103{margin-left:-8.472000px;}
._14_c00103{margin-left:-5.280000px;}
._12_c00103{margin-left:-3.672000px;}
._17_c00103{margin-left:-2.424000px;}
._c_c00103{margin-left:-1.032000px;}
._1a_c00103{width:1.188000px;}
._5_c00103{width:2.220000px;}
._1e_c00103{width:3.264000px;}
._3_c00103{width:4.320000px;}
._1_c00103{width:5.952000px;}
._0_c00103{width:7.296000px;}
._2_c00103{width:8.352000px;}
._8_c00103{width:10.272000px;}
._b_c00103{width:11.508000px;}
._4_c00103{width:12.576000px;}
._e_c00103{width:14.736000px;}
._13_c00103{width:16.728000px;}
._29_c00103{width:17.736000px;}
._9_c00103{width:19.104000px;}
._26_c00103{width:20.520000px;}
._7_c00103{width:21.972000px;}
._d_c00103{width:24.288000px;}
._6_c00103{width:25.896000px;}
._11_c00103{width:27.492000px;}
._2a_c00103{width:28.776000px;}
._16_c00103{width:30.024000px;}
._21_c00103{width:31.860000px;}
._19_c00103{width:33.144000px;}
._1b_c00103{width:34.260000px;}
._f_c00103{width:35.676000px;}
._23_c00103{width:36.948000px;}
._1f_c00103{width:38.952000px;}
._18_c00103{width:41.196000px;}
._15_c00103{width:42.528000px;}
._27_c00103{width:44.256000px;}
._1d_c00103{width:45.912000px;}
._1c_c00103{width:47.040000px;}
._24_c00103{width:49.296000px;}
._10_c00103{width:51.708000px;}
._22_c00103{width:53.832000px;}
._25_c00103{width:56.616000px;}
._20_c00103{width:58.236000px;}
._2d_c00103{width:98.244000px;}
._28_c00103{width:131.880000px;}
._2c_c00103{width:265.968000px;}
.fc2_c00103{color:transparent;}
.fc1_c00103{color:rgb(128,128,128);}
.fc0_c00103{color:rgb(0,0,0);}
.fs4_c00103{font-size:48.000000px;}
.fs1_c00103{font-size:84.000000px;}
.fs3_c00103{font-size:87.000000px;}
.fs0_c00103{font-size:96.000000px;}
.fs2_c00103{font-size:102.000000px;}
.y0_c00103{bottom:0.000000px;}
.y27_c00103{bottom:3.105000px;}
.y26_c00103{bottom:7.228357px;}
.y25_c00103{bottom:22.980000px;}
.y24_c00103{bottom:89.430000px;}
.y23_c00103{bottom:126.330000px;}
.y22_c00103{bottom:161.280000px;}
.y21_c00103{bottom:195.480000px;}
.y20_c00103{bottom:229.530000px;}
.y1f_c00103{bottom:264.030000px;}
.y1e_c00103{bottom:297.630000px;}
.y1d_c00103{bottom:332.130000px;}
.y1c_c00103{bottom:366.180000px;}
.y1b_c00103{bottom:400.380000px;}
.y1a_c00103{bottom:434.430000px;}
.y19_c00103{bottom:467.130000px;}
.y18_c00103{bottom:502.230000px;}
.y17_c00103{bottom:535.380000px;}
.y16_c00103{bottom:570.330000px;}
.y15_c00103{bottom:603.480000px;}
.y14_c00103{bottom:636.930000px;}
.y13_c00103{bottom:670.530000px;}
.y12_c00103{bottom:704.130000px;}
.y11_c00103{bottom:737.730000px;}
.y10_c00103{bottom:771.630000px;}
.yf_c00103{bottom:805.380000px;}
.ye_c00103{bottom:838.980000px;}
.yd_c00103{bottom:872.430000px;}
.yc_c00103{bottom:905.730000px;}
.yb_c00103{bottom:938.880000px;}
.ya_c00103{bottom:972.030000px;}
.y9_c00103{bottom:1005.030000px;}
.y8_c00103{bottom:1038.180000px;}
.y7_c00103{bottom:1071.930000px;}
.y6_c00103{bottom:1105.380000px;}
.y5_c00103{bottom:1138.680000px;}
.y4_c00103{bottom:1171.530000px;}
.y3_c00103{bottom:1204.980000px;}
.y2_c00103{bottom:1237.980000px;}
.y1_c00103{bottom:1271.130000px;}
.h4_c00103{height:13.200074px;}
.h5_c00103{height:43.804688px;}
.h3_c00103{height:110.151855px;}
.h2_c00103{height:121.546875px;}
.h0_c00103{height:1382.700000px;}
.h1_c00103{height:1383.000000px;}
.w2_c00103{width:104.875500px;}
.w0_c00103{width:863.175000px;}
.w1_c00103{width:863.250000px;}
.x0_c00103{left:0.000000px;}
.x9_c00103{left:253.500000px;}
.x8_c00103{left:255.150000px;}
.x6_c00103{left:257.400000px;}
.x5_c00103{left:259.500000px;}
.x7_c00103{left:266.550000px;}
.x3_c00103{left:268.200000px;}
.x2_c00103{left:269.250000px;}
.x1_c00103{left:270.300000px;}
.x4_c00103{left:318.900000px;}
.xb_c00103{left:383.401749px;}
.xa_c00103{left:782.250000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls2_c00103{letter-spacing:0.000000pt;}
.ls1_c00103{letter-spacing:17.290667pt;}
.ls3_c00103{letter-spacing:21.333333pt;}
.ls0_c00103{letter-spacing:29.866667pt;}
.ws2_c00103{word-spacing:-39.970667pt;}
.ws1_c00103{word-spacing:-20.565333pt;}
.ws0_c00103{word-spacing:-17.994667pt;}
.ws3_c00103{word-spacing:0.000000pt;}
._30_c00103{margin-left:-38.125333pt;}
._31_c00103{margin-left:-31.938667pt;}
._2e_c00103{margin-left:-13.728000pt;}
._2b_c00103{margin-left:-9.994667pt;}
._2f_c00103{margin-left:-8.608000pt;}
._a_c00103{margin-left:-7.530667pt;}
._14_c00103{margin-left:-4.693333pt;}
._12_c00103{margin-left:-3.264000pt;}
._17_c00103{margin-left:-2.154667pt;}
._c_c00103{margin-left:-0.917333pt;}
._1a_c00103{width:1.056000pt;}
._5_c00103{width:1.973333pt;}
._1e_c00103{width:2.901333pt;}
._3_c00103{width:3.840000pt;}
._1_c00103{width:5.290667pt;}
._0_c00103{width:6.485333pt;}
._2_c00103{width:7.424000pt;}
._8_c00103{width:9.130667pt;}
._b_c00103{width:10.229333pt;}
._4_c00103{width:11.178667pt;}
._e_c00103{width:13.098667pt;}
._13_c00103{width:14.869333pt;}
._29_c00103{width:15.765333pt;}
._9_c00103{width:16.981333pt;}
._26_c00103{width:18.240000pt;}
._7_c00103{width:19.530667pt;}
._d_c00103{width:21.589333pt;}
._6_c00103{width:23.018667pt;}
._11_c00103{width:24.437333pt;}
._2a_c00103{width:25.578667pt;}
._16_c00103{width:26.688000pt;}
._21_c00103{width:28.320000pt;}
._19_c00103{width:29.461333pt;}
._1b_c00103{width:30.453333pt;}
._f_c00103{width:31.712000pt;}
._23_c00103{width:32.842667pt;}
._1f_c00103{width:34.624000pt;}
._18_c00103{width:36.618667pt;}
._15_c00103{width:37.802667pt;}
._27_c00103{width:39.338667pt;}
._1d_c00103{width:40.810667pt;}
._1c_c00103{width:41.813333pt;}
._24_c00103{width:43.818667pt;}
._10_c00103{width:45.962667pt;}
._22_c00103{width:47.850667pt;}
._25_c00103{width:50.325333pt;}
._20_c00103{width:51.765333pt;}
._2d_c00103{width:87.328000pt;}
._28_c00103{width:117.226667pt;}
._2c_c00103{width:236.416000pt;}
.fs4_c00103{font-size:42.666667pt;}
.fs1_c00103{font-size:74.666667pt;}
.fs3_c00103{font-size:77.333333pt;}
.fs0_c00103{font-size:85.333333pt;}
.fs2_c00103{font-size:90.666667pt;}
.y0_c00103{bottom:0.000000pt;}
.y27_c00103{bottom:2.760000pt;}
.y26_c00103{bottom:6.425206pt;}
.y25_c00103{bottom:20.426667pt;}
.y24_c00103{bottom:79.493333pt;}
.y23_c00103{bottom:112.293333pt;}
.y22_c00103{bottom:143.360000pt;}
.y21_c00103{bottom:173.760000pt;}
.y20_c00103{bottom:204.026667pt;}
.y1f_c00103{bottom:234.693333pt;}
.y1e_c00103{bottom:264.560000pt;}
.y1d_c00103{bottom:295.226667pt;}
.y1c_c00103{bottom:325.493333pt;}
.y1b_c00103{bottom:355.893333pt;}
.y1a_c00103{bottom:386.160000pt;}
.y19_c00103{bottom:415.226667pt;}
.y18_c00103{bottom:446.426667pt;}
.y17_c00103{bottom:475.893333pt;}
.y16_c00103{bottom:506.960000pt;}
.y15_c00103{bottom:536.426667pt;}
.y14_c00103{bottom:566.160000pt;}
.y13_c00103{bottom:596.026667pt;}
.y12_c00103{bottom:625.893333pt;}
.y11_c00103{bottom:655.760000pt;}
.y10_c00103{bottom:685.893333pt;}
.yf_c00103{bottom:715.893333pt;}
.ye_c00103{bottom:745.760000pt;}
.yd_c00103{bottom:775.493333pt;}
.yc_c00103{bottom:805.093333pt;}
.yb_c00103{bottom:834.560000pt;}
.ya_c00103{bottom:864.026667pt;}
.y9_c00103{bottom:893.360000pt;}
.y8_c00103{bottom:922.826667pt;}
.y7_c00103{bottom:952.826667pt;}
.y6_c00103{bottom:982.560000pt;}
.y5_c00103{bottom:1012.160000pt;}
.y4_c00103{bottom:1041.360000pt;}
.y3_c00103{bottom:1071.093333pt;}
.y2_c00103{bottom:1100.426667pt;}
.y1_c00103{bottom:1129.893333pt;}
.h4_c00103{height:11.733399pt;}
.h5_c00103{height:38.937500pt;}
.h3_c00103{height:97.912760pt;}
.h2_c00103{height:108.041667pt;}
.h0_c00103{height:1229.066667pt;}
.h1_c00103{height:1229.333333pt;}
.w2_c00103{width:93.222667pt;}
.w0_c00103{width:767.266667pt;}
.w1_c00103{width:767.333333pt;}
.x0_c00103{left:0.000000pt;}
.x9_c00103{left:225.333333pt;}
.x8_c00103{left:226.800000pt;}
.x6_c00103{left:228.800000pt;}
.x5_c00103{left:230.666667pt;}
.x7_c00103{left:236.933333pt;}
.x3_c00103{left:238.400000pt;}
.x2_c00103{left:239.333333pt;}
.x1_c00103{left:240.266667pt;}
.x4_c00103{left:283.466667pt;}
.xb_c00103{left:340.801554pt;}
.xa_c00103{left:695.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2a0e0982bdf2d6e4c420c2c.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_1c6085ebc617f33b94a88398.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_72fa529d948891e090efee11.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_7115e9220c1457b695efd036.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{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_c00104{vertical-align:0.000000px;}
.ls5_c00104{letter-spacing:0.000000px;}
.ls3_c00104{letter-spacing:6.120000px;}
.ls2_c00104{letter-spacing:10.372800px;}
.ls6_c00104{letter-spacing:12.000000px;}
.ls1_c00104{letter-spacing:13.800000px;}
.ls0_c00104{letter-spacing:21.252000px;}
.ls4_c00104{letter-spacing:24.000000px;}
.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;}
}
.ws4_c00104{word-spacing:-63.000000px;}
.ws2_c00104{word-spacing:-41.496000px;}
.ws1_c00104{word-spacing:-35.664000px;}
.ws5_c00104{word-spacing:-23.136000px;}
.ws0_c00104{word-spacing:-20.244000px;}
.ws3_c00104{word-spacing:0.000000px;}
.ws6_c00104{word-spacing:2.100000px;}
._3d_c00104{margin-left:-44.304000px;}
._3e_c00104{margin-left:-40.788000px;}
._48_c00104{margin-left:-34.656000px;}
._4_c00104{margin-left:-33.408000px;}
._0_c00104{margin-left:-29.232000px;}
._28_c00104{margin-left:-24.660000px;}
._2_c00104{margin-left:-22.533000px;}
._36_c00104{margin-left:-20.196000px;}
._24_c00104{margin-left:-18.144000px;}
._25_c00104{margin-left:-14.400000px;}
._41_c00104{margin-left:-12.636000px;}
._46_c00104{margin-left:-8.796000px;}
._20_c00104{margin-left:-7.080000px;}
._10_c00104{margin-left:-5.376000px;}
._26_c00104{margin-left:-3.840000px;}
._15_c00104{margin-left:-2.496000px;}
._1d_c00104{margin-left:-1.152000px;}
._e_c00104{width:1.248000px;}
._9_c00104{width:2.784000px;}
._c_c00104{width:3.936000px;}
._6_c00104{width:5.124000px;}
._7_c00104{width:6.300000px;}
._b_c00104{width:7.872000px;}
._8_c00104{width:9.576000px;}
._13_c00104{width:11.172000px;}
._11_c00104{width:12.480000px;}
._12_c00104{width:14.436000px;}
._1c_c00104{width:15.552000px;}
._a_c00104{width:17.088000px;}
._1e_c00104{width:18.912000px;}
._45_c00104{width:19.992000px;}
._1b_c00104{width:21.084000px;}
._2d_c00104{width:24.408000px;}
._d_c00104{width:25.440000px;}
._2c_c00104{width:26.580000px;}
._f_c00104{width:27.648000px;}
._1f_c00104{width:30.108000px;}
._27_c00104{width:32.064000px;}
._2a_c00104{width:33.072000px;}
._14_c00104{width:34.560000px;}
._18_c00104{width:35.616000px;}
._19_c00104{width:36.876000px;}
._21_c00104{width:38.268000px;}
._30_c00104{width:39.840000px;}
._2e_c00104{width:40.980000px;}
._2f_c00104{width:43.008000px;}
._16_c00104{width:44.940000px;}
._1a_c00104{width:47.808000px;}
._39_c00104{width:49.188000px;}
._34_c00104{width:51.504000px;}
._29_c00104{width:53.568000px;}
._38_c00104{width:56.220000px;}
._37_c00104{width:59.400000px;}
._33_c00104{width:60.768000px;}
._17_c00104{width:62.688000px;}
._22_c00104{width:64.800000px;}
._2b_c00104{width:67.356000px;}
._43_c00104{width:68.748000px;}
._3_c00104{width:96.657000px;}
._23_c00104{width:105.372000px;}
._40_c00104{width:109.500000px;}
._32_c00104{width:112.416000px;}
._3b_c00104{width:120.480000px;}
._1_c00104{width:150.336000px;}
._42_c00104{width:175.896000px;}
._3c_c00104{width:271.932000px;}
._35_c00104{width:336.708000px;}
._5_c00104{width:353.394000px;}
._3f_c00104{width:376.716000px;}
._3a_c00104{width:391.872000px;}
._31_c00104{width:438.684000px;}
._44_c00104{width:441.816000px;}
._47_c00104{width:689.664000px;}
._4a_c00104{width:709.692000px;}
._49_c00104{width:1015.488000px;}
.fc2_c00104{color:transparent;}
.fc1_c00104{color:rgb(128,128,128);}
.fc0_c00104{color:rgb(0,0,0);}
.fs5_c00104{font-size:48.000000px;}
.fs4_c00104{font-size:76.800000px;}
.fs2_c00104{font-size:84.000000px;}
.fs0_c00104{font-size:87.000000px;}
.fs1_c00104{font-size:96.000000px;}
.fs3_c00104{font-size:102.000000px;}
.y0_c00104{bottom:0.000000px;}
.y27_c00104{bottom:3.105000px;}
.y26_c00104{bottom:7.228369px;}
.y25_c00104{bottom:105.570000px;}
.y24_c00104{bottom:139.770000px;}
.y23_c00104{bottom:173.820000px;}
.y22_c00104{bottom:208.170000px;}
.y21_c00104{bottom:241.920000px;}
.y20_c00104{bottom:272.970000px;}
.y1f_c00104{bottom:310.470000px;}
.y1e_c00104{bottom:344.820000px;}
.y1d_c00104{bottom:379.020000px;}
.y1c_c00104{bottom:412.470000px;}
.y1b_c00104{bottom:446.220000px;}
.y1a_c00104{bottom:479.670000px;}
.y19_c00104{bottom:513.570000px;}
.y18_c00104{bottom:547.470000px;}
.y17_c00104{bottom:580.770000px;}
.y16_c00104{bottom:613.920000px;}
.y15_c00104{bottom:647.370000px;}
.y14_c00104{bottom:680.670000px;}
.y13_c00104{bottom:714.120000px;}
.y12_c00104{bottom:747.270000px;}
.y11_c00104{bottom:781.320000px;}
.y10_c00104{bottom:814.770000px;}
.yf_c00104{bottom:847.020000px;}
.ye_c00104{bottom:881.220000px;}
.yd_c00104{bottom:914.970000px;}
.yc_c00104{bottom:947.970000px;}
.yb_c00104{bottom:981.120000px;}
.ya_c00104{bottom:1014.570000px;}
.y9_c00104{bottom:1048.320000px;}
.y8_c00104{bottom:1081.620000px;}
.y7_c00104{bottom:1114.320000px;}
.y6_c00104{bottom:1147.770000px;}
.y5_c00104{bottom:1180.920000px;}
.y4_c00104{bottom:1213.920000px;}
.y3_c00104{bottom:1247.370000px;}
.y2_c00104{bottom:1280.820000px;}
.y1_c00104{bottom:1300.770000px;}
.h4_c00104{height:13.200073px;}
.h5_c00104{height:43.804688px;}
.h2_c00104{height:110.151855px;}
.h3_c00104{height:121.546875px;}
.h0_c00104{height:1383.450000px;}
.h1_c00104{height:1383.750000px;}
.w2_c00104{width:104.875500px;}
.w0_c00104{width:878.025000px;}
.w1_c00104{width:878.250000px;}
.x0_c00104{left:0.000000px;}
.xc_c00104{left:53.100000px;}
.xa_c00104{left:54.750000px;}
.x9_c00104{left:55.800000px;}
.x8_c00104{left:57.000000px;}
.x7_c00104{left:58.500000px;}
.x6_c00104{left:59.700000px;}
.x5_c00104{left:60.750000px;}
.x4_c00104{left:62.400000px;}
.x3_c00104{left:63.900000px;}
.x2_c00104{left:66.150000px;}
.xf_c00104{left:86.100000px;}
.xd_c00104{left:103.950000px;}
.xb_c00104{left:107.700000px;}
.xe_c00104{left:123.300000px;}
.x1_c00104{left:181.200000px;}
.x10_c00104{left:390.826721px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls5_c00104{letter-spacing:0.000000pt;}
.ls3_c00104{letter-spacing:5.440000pt;}
.ls2_c00104{letter-spacing:9.220267pt;}
.ls6_c00104{letter-spacing:10.666667pt;}
.ls1_c00104{letter-spacing:12.266667pt;}
.ls0_c00104{letter-spacing:18.890667pt;}
.ls4_c00104{letter-spacing:21.333333pt;}
.ws4_c00104{word-spacing:-56.000000pt;}
.ws2_c00104{word-spacing:-36.885333pt;}
.ws1_c00104{word-spacing:-31.701333pt;}
.ws5_c00104{word-spacing:-20.565333pt;}
.ws0_c00104{word-spacing:-17.994667pt;}
.ws3_c00104{word-spacing:0.000000pt;}
.ws6_c00104{word-spacing:1.866667pt;}
._3d_c00104{margin-left:-39.381333pt;}
._3e_c00104{margin-left:-36.256000pt;}
._48_c00104{margin-left:-30.805333pt;}
._4_c00104{margin-left:-29.696000pt;}
._0_c00104{margin-left:-25.984000pt;}
._28_c00104{margin-left:-21.920000pt;}
._2_c00104{margin-left:-20.029333pt;}
._36_c00104{margin-left:-17.952000pt;}
._24_c00104{margin-left:-16.128000pt;}
._25_c00104{margin-left:-12.800000pt;}
._41_c00104{margin-left:-11.232000pt;}
._46_c00104{margin-left:-7.818667pt;}
._20_c00104{margin-left:-6.293333pt;}
._10_c00104{margin-left:-4.778667pt;}
._26_c00104{margin-left:-3.413333pt;}
._15_c00104{margin-left:-2.218667pt;}
._1d_c00104{margin-left:-1.024000pt;}
._e_c00104{width:1.109333pt;}
._9_c00104{width:2.474667pt;}
._c_c00104{width:3.498667pt;}
._6_c00104{width:4.554667pt;}
._7_c00104{width:5.600000pt;}
._b_c00104{width:6.997333pt;}
._8_c00104{width:8.512000pt;}
._13_c00104{width:9.930667pt;}
._11_c00104{width:11.093333pt;}
._12_c00104{width:12.832000pt;}
._1c_c00104{width:13.824000pt;}
._a_c00104{width:15.189333pt;}
._1e_c00104{width:16.810667pt;}
._45_c00104{width:17.770667pt;}
._1b_c00104{width:18.741333pt;}
._2d_c00104{width:21.696000pt;}
._d_c00104{width:22.613333pt;}
._2c_c00104{width:23.626667pt;}
._f_c00104{width:24.576000pt;}
._1f_c00104{width:26.762667pt;}
._27_c00104{width:28.501333pt;}
._2a_c00104{width:29.397333pt;}
._14_c00104{width:30.720000pt;}
._18_c00104{width:31.658667pt;}
._19_c00104{width:32.778667pt;}
._21_c00104{width:34.016000pt;}
._30_c00104{width:35.413333pt;}
._2e_c00104{width:36.426667pt;}
._2f_c00104{width:38.229333pt;}
._16_c00104{width:39.946667pt;}
._1a_c00104{width:42.496000pt;}
._39_c00104{width:43.722667pt;}
._34_c00104{width:45.781333pt;}
._29_c00104{width:47.616000pt;}
._38_c00104{width:49.973333pt;}
._37_c00104{width:52.800000pt;}
._33_c00104{width:54.016000pt;}
._17_c00104{width:55.722667pt;}
._22_c00104{width:57.600000pt;}
._2b_c00104{width:59.872000pt;}
._43_c00104{width:61.109333pt;}
._3_c00104{width:85.917333pt;}
._23_c00104{width:93.664000pt;}
._40_c00104{width:97.333333pt;}
._32_c00104{width:99.925333pt;}
._3b_c00104{width:107.093333pt;}
._1_c00104{width:133.632000pt;}
._42_c00104{width:156.352000pt;}
._3c_c00104{width:241.717333pt;}
._35_c00104{width:299.296000pt;}
._5_c00104{width:314.128000pt;}
._3f_c00104{width:334.858667pt;}
._3a_c00104{width:348.330667pt;}
._31_c00104{width:389.941333pt;}
._44_c00104{width:392.725333pt;}
._47_c00104{width:613.034667pt;}
._4a_c00104{width:630.837333pt;}
._49_c00104{width:902.656000pt;}
.fs5_c00104{font-size:42.666667pt;}
.fs4_c00104{font-size:68.266667pt;}
.fs2_c00104{font-size:74.666667pt;}
.fs0_c00104{font-size:77.333333pt;}
.fs1_c00104{font-size:85.333333pt;}
.fs3_c00104{font-size:90.666667pt;}
.y0_c00104{bottom:0.000000pt;}
.y27_c00104{bottom:2.760000pt;}
.y26_c00104{bottom:6.425217pt;}
.y25_c00104{bottom:93.840000pt;}
.y24_c00104{bottom:124.240000pt;}
.y23_c00104{bottom:154.506667pt;}
.y22_c00104{bottom:185.040000pt;}
.y21_c00104{bottom:215.040000pt;}
.y20_c00104{bottom:242.640000pt;}
.y1f_c00104{bottom:275.973333pt;}
.y1e_c00104{bottom:306.506667pt;}
.y1d_c00104{bottom:336.906667pt;}
.y1c_c00104{bottom:366.640000pt;}
.y1b_c00104{bottom:396.640000pt;}
.y1a_c00104{bottom:426.373333pt;}
.y19_c00104{bottom:456.506667pt;}
.y18_c00104{bottom:486.640000pt;}
.y17_c00104{bottom:516.240000pt;}
.y16_c00104{bottom:545.706667pt;}
.y15_c00104{bottom:575.440000pt;}
.y14_c00104{bottom:605.040000pt;}
.y13_c00104{bottom:634.773333pt;}
.y12_c00104{bottom:664.240000pt;}
.y11_c00104{bottom:694.506667pt;}
.y10_c00104{bottom:724.240000pt;}
.yf_c00104{bottom:752.906667pt;}
.ye_c00104{bottom:783.306667pt;}
.yd_c00104{bottom:813.306667pt;}
.yc_c00104{bottom:842.640000pt;}
.yb_c00104{bottom:872.106667pt;}
.ya_c00104{bottom:901.840000pt;}
.y9_c00104{bottom:931.840000pt;}
.y8_c00104{bottom:961.440000pt;}
.y7_c00104{bottom:990.506667pt;}
.y6_c00104{bottom:1020.240000pt;}
.y5_c00104{bottom:1049.706667pt;}
.y4_c00104{bottom:1079.040000pt;}
.y3_c00104{bottom:1108.773333pt;}
.y2_c00104{bottom:1138.506667pt;}
.y1_c00104{bottom:1156.240000pt;}
.h4_c00104{height:11.733399pt;}
.h5_c00104{height:38.937500pt;}
.h2_c00104{height:97.912760pt;}
.h3_c00104{height:108.041667pt;}
.h0_c00104{height:1229.733333pt;}
.h1_c00104{height:1230.000000pt;}
.w2_c00104{width:93.222667pt;}
.w0_c00104{width:780.466667pt;}
.w1_c00104{width:780.666667pt;}
.x0_c00104{left:0.000000pt;}
.xc_c00104{left:47.200000pt;}
.xa_c00104{left:48.666667pt;}
.x9_c00104{left:49.600000pt;}
.x8_c00104{left:50.666667pt;}
.x7_c00104{left:52.000000pt;}
.x6_c00104{left:53.066667pt;}
.x5_c00104{left:54.000000pt;}
.x4_c00104{left:55.466667pt;}
.x3_c00104{left:56.800000pt;}
.x2_c00104{left:58.800000pt;}
.xf_c00104{left:76.533333pt;}
.xd_c00104{left:92.400000pt;}
.xb_c00104{left:95.733333pt;}
.xe_c00104{left:109.600000pt;}
.x1_c00104{left:161.066667pt;}
.x10_c00104{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d692e509a28228c63af8813.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_7c649b390b0357e35be395c5.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_285eec8d0760b65535076a45.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.314453;font-style:normal;font-weight:normal;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_4c1ad33b8c5fadd51dc7893a.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00105;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls1_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:12.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-31.872000px;}
.ws1_c00105{word-spacing:-22.413000px;}
.ws3_c00105{word-spacing:-20.244000px;}
.ws2_c00105{word-spacing:-19.872000px;}
.ws4_c00105{word-spacing:0.000000px;}
._1b_c00105{margin-left:-19.791000px;}
._36_c00105{margin-left:-17.937000px;}
._14_c00105{margin-left:-15.192000px;}
._32_c00105{margin-left:-11.583000px;}
._2f_c00105{margin-left:-8.370000px;}
._37_c00105{margin-left:-7.005000px;}
._39_c00105{margin-left:-5.655000px;}
._2e_c00105{margin-left:-4.218000px;}
._24_c00105{margin-left:-2.745000px;}
._27_c00105{margin-left:-1.371000px;}
._15_c00105{width:1.644000px;}
._3_c00105{width:2.697000px;}
._2_c00105{width:3.999000px;}
._7_c00105{width:5.328000px;}
._12_c00105{width:6.384000px;}
._8_c00105{width:7.512000px;}
._e_c00105{width:8.706000px;}
._6_c00105{width:9.720000px;}
._21_c00105{width:10.749000px;}
._9_c00105{width:11.790000px;}
._10_c00105{width:12.981000px;}
._5_c00105{width:14.247000px;}
._0_c00105{width:15.345000px;}
._1c_c00105{width:16.431000px;}
._4_c00105{width:17.490000px;}
._13_c00105{width:18.726000px;}
._26_c00105{width:19.782000px;}
._c_c00105{width:21.960000px;}
._11_c00105{width:24.282000px;}
._25_c00105{width:25.536000px;}
._1e_c00105{width:26.607000px;}
._17_c00105{width:27.720000px;}
._29_c00105{width:29.601000px;}
._18_c00105{width:30.936000px;}
._3c_c00105{width:32.238000px;}
._a_c00105{width:33.453000px;}
._1d_c00105{width:35.352000px;}
._2a_c00105{width:36.816000px;}
._f_c00105{width:38.175000px;}
._19_c00105{width:40.194000px;}
._b_c00105{width:42.168000px;}
._33_c00105{width:43.614000px;}
._22_c00105{width:44.730000px;}
._3b_c00105{width:46.002000px;}
._3a_c00105{width:47.655000px;}
._1f_c00105{width:48.666000px;}
._1a_c00105{width:50.331000px;}
._23_c00105{width:52.479000px;}
._2b_c00105{width:53.508000px;}
._d_c00105{width:56.397000px;}
._28_c00105{width:57.876000px;}
._16_c00105{width:78.192000px;}
._38_c00105{width:96.864000px;}
._30_c00105{width:112.296000px;}
._40_c00105{width:129.609000px;}
._2c_c00105{width:130.713000px;}
._2d_c00105{width:175.149000px;}
._3f_c00105{width:178.896000px;}
._31_c00105{width:222.285000px;}
._1_c00105{width:241.893000px;}
._3d_c00105{width:252.213000px;}
._3e_c00105{width:325.881000px;}
._34_c00105{width:330.546000px;}
._35_c00105{width:596.877000px;}
._20_c00105{width:673.671000px;}
._41_c00105{width:853.566000px;}
._42_c00105{width:1068.867000px;}
.fc2_c00105{color:transparent;}
.fc1_c00105{color:rgb(128,128,128);}
.fc0_c00105{color:rgb(0,0,0);}
.fs4_c00105{font-size:48.000000px;}
.fs1_c00105{font-size:72.000000px;}
.fs3_c00105{font-size:84.000000px;}
.fs0_c00105{font-size:93.000000px;}
.fs2_c00105{font-size:96.000000px;}
.y0_c00105{bottom:0.000000px;}
.y26_c00105{bottom:3.105000px;}
.y25_c00105{bottom:7.228369px;}
.y24_c00105{bottom:83.670000px;}
.y23_c00105{bottom:117.720000px;}
.y22_c00105{bottom:153.270000px;}
.y21_c00105{bottom:188.220000px;}
.y20_c00105{bottom:219.270000px;}
.y1f_c00105{bottom:254.520000px;}
.y1e_c00105{bottom:290.520000px;}
.y1d_c00105{bottom:323.970000px;}
.y1c_c00105{bottom:358.770000px;}
.y1b_c00105{bottom:392.820000px;}
.y1a_c00105{bottom:427.170000px;}
.y19_c00105{bottom:460.920000px;}
.y18_c00105{bottom:494.670000px;}
.y17_c00105{bottom:528.870000px;}
.y16_c00105{bottom:562.620000px;}
.y15_c00105{bottom:596.970000px;}
.y14_c00105{bottom:629.070000px;}
.y13_c00105{bottom:660.720000px;}
.y12_c00105{bottom:698.520000px;}
.y11_c00105{bottom:731.970000px;}
.y10_c00105{bottom:765.420000px;}
.yf_c00105{bottom:799.770000px;}
.ye_c00105{bottom:836.370000px;}
.yd_c00105{bottom:868.020000px;}
.yc_c00105{bottom:901.170000px;}
.yb_c00105{bottom:934.770000px;}
.ya_c00105{bottom:967.920000px;}
.y9_c00105{bottom:1001.670000px;}
.y8_c00105{bottom:1035.120000px;}
.y7_c00105{bottom:1068.120000px;}
.y6_c00105{bottom:1101.270000px;}
.y5_c00105{bottom:1134.270000px;}
.y4_c00105{bottom:1167.720000px;}
.y3_c00105{bottom:1200.870000px;}
.y2_c00105{bottom:1234.620000px;}
.y1_c00105{bottom:1267.020000px;}
.h5_c00105{height:13.200073px;}
.h6_c00105{height:43.804688px;}
.h3_c00105{height:75.832031px;}
.h2_c00105{height:117.748535px;}
.h4_c00105{height:121.546875px;}
.h0_c00105{height:1369.950000px;}
.h1_c00105{height:1370.250000px;}
.w2_c00105{width:104.875500px;}
.w0_c00105{width:854.850000px;}
.w1_c00105{width:855.000000px;}
.x0_c00105{left:0.000000px;}
.x7_c00105{left:51.000000px;}
.x4_c00105{left:87.750000px;}
.x9_c00105{left:165.600000px;}
.x3_c00105{left:207.600000px;}
.xb_c00105{left:228.150000px;}
.xc_c00105{left:267.000000px;}
.x2_c00105{left:270.300000px;}
.x5_c00105{left:271.350000px;}
.x8_c00105{left:272.400000px;}
.xa_c00105{left:273.600000px;}
.x6_c00105{left:274.650000px;}
.x1_c00105{left:319.350000px;}
.xd_c00105{left:379.239258px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:10.666667pt;}
.ws0_c00105{word-spacing:-28.330667pt;}
.ws1_c00105{word-spacing:-19.922667pt;}
.ws3_c00105{word-spacing:-17.994667pt;}
.ws2_c00105{word-spacing:-17.664000pt;}
.ws4_c00105{word-spacing:0.000000pt;}
._1b_c00105{margin-left:-17.592000pt;}
._36_c00105{margin-left:-15.944000pt;}
._14_c00105{margin-left:-13.504000pt;}
._32_c00105{margin-left:-10.296000pt;}
._2f_c00105{margin-left:-7.440000pt;}
._37_c00105{margin-left:-6.226667pt;}
._39_c00105{margin-left:-5.026667pt;}
._2e_c00105{margin-left:-3.749333pt;}
._24_c00105{margin-left:-2.440000pt;}
._27_c00105{margin-left:-1.218667pt;}
._15_c00105{width:1.461333pt;}
._3_c00105{width:2.397333pt;}
._2_c00105{width:3.554667pt;}
._7_c00105{width:4.736000pt;}
._12_c00105{width:5.674667pt;}
._8_c00105{width:6.677333pt;}
._e_c00105{width:7.738667pt;}
._6_c00105{width:8.640000pt;}
._21_c00105{width:9.554667pt;}
._9_c00105{width:10.480000pt;}
._10_c00105{width:11.538667pt;}
._5_c00105{width:12.664000pt;}
._0_c00105{width:13.640000pt;}
._1c_c00105{width:14.605333pt;}
._4_c00105{width:15.546667pt;}
._13_c00105{width:16.645333pt;}
._26_c00105{width:17.584000pt;}
._c_c00105{width:19.520000pt;}
._11_c00105{width:21.584000pt;}
._25_c00105{width:22.698667pt;}
._1e_c00105{width:23.650667pt;}
._17_c00105{width:24.640000pt;}
._29_c00105{width:26.312000pt;}
._18_c00105{width:27.498667pt;}
._3c_c00105{width:28.656000pt;}
._a_c00105{width:29.736000pt;}
._1d_c00105{width:31.424000pt;}
._2a_c00105{width:32.725333pt;}
._f_c00105{width:33.933333pt;}
._19_c00105{width:35.728000pt;}
._b_c00105{width:37.482667pt;}
._33_c00105{width:38.768000pt;}
._22_c00105{width:39.760000pt;}
._3b_c00105{width:40.890667pt;}
._3a_c00105{width:42.360000pt;}
._1f_c00105{width:43.258667pt;}
._1a_c00105{width:44.738667pt;}
._23_c00105{width:46.648000pt;}
._2b_c00105{width:47.562667pt;}
._d_c00105{width:50.130667pt;}
._28_c00105{width:51.445333pt;}
._16_c00105{width:69.504000pt;}
._38_c00105{width:86.101333pt;}
._30_c00105{width:99.818667pt;}
._40_c00105{width:115.208000pt;}
._2c_c00105{width:116.189333pt;}
._2d_c00105{width:155.688000pt;}
._3f_c00105{width:159.018667pt;}
._31_c00105{width:197.586667pt;}
._1_c00105{width:215.016000pt;}
._3d_c00105{width:224.189333pt;}
._3e_c00105{width:289.672000pt;}
._34_c00105{width:293.818667pt;}
._35_c00105{width:530.557333pt;}
._20_c00105{width:598.818667pt;}
._41_c00105{width:758.725333pt;}
._42_c00105{width:950.104000pt;}
.fs4_c00105{font-size:42.666667pt;}
.fs1_c00105{font-size:64.000000pt;}
.fs3_c00105{font-size:74.666667pt;}
.fs0_c00105{font-size:82.666667pt;}
.fs2_c00105{font-size:85.333333pt;}
.y0_c00105{bottom:0.000000pt;}
.y26_c00105{bottom:2.760000pt;}
.y25_c00105{bottom:6.425217pt;}
.y24_c00105{bottom:74.373333pt;}
.y23_c00105{bottom:104.640000pt;}
.y22_c00105{bottom:136.240000pt;}
.y21_c00105{bottom:167.306667pt;}
.y20_c00105{bottom:194.906667pt;}
.y1f_c00105{bottom:226.240000pt;}
.y1e_c00105{bottom:258.240000pt;}
.y1d_c00105{bottom:287.973333pt;}
.y1c_c00105{bottom:318.906667pt;}
.y1b_c00105{bottom:349.173333pt;}
.y1a_c00105{bottom:379.706667pt;}
.y19_c00105{bottom:409.706667pt;}
.y18_c00105{bottom:439.706667pt;}
.y17_c00105{bottom:470.106667pt;}
.y16_c00105{bottom:500.106667pt;}
.y15_c00105{bottom:530.640000pt;}
.y14_c00105{bottom:559.173333pt;}
.y13_c00105{bottom:587.306667pt;}
.y12_c00105{bottom:620.906667pt;}
.y11_c00105{bottom:650.640000pt;}
.y10_c00105{bottom:680.373333pt;}
.yf_c00105{bottom:710.906667pt;}
.ye_c00105{bottom:743.440000pt;}
.yd_c00105{bottom:771.573333pt;}
.yc_c00105{bottom:801.040000pt;}
.yb_c00105{bottom:830.906667pt;}
.ya_c00105{bottom:860.373333pt;}
.y9_c00105{bottom:890.373333pt;}
.y8_c00105{bottom:920.106667pt;}
.y7_c00105{bottom:949.440000pt;}
.y6_c00105{bottom:978.906667pt;}
.y5_c00105{bottom:1008.240000pt;}
.y4_c00105{bottom:1037.973333pt;}
.y3_c00105{bottom:1067.440000pt;}
.y2_c00105{bottom:1097.440000pt;}
.y1_c00105{bottom:1126.240000pt;}
.h5_c00105{height:11.733399pt;}
.h6_c00105{height:38.937500pt;}
.h3_c00105{height:67.406250pt;}
.h2_c00105{height:104.665365pt;}
.h4_c00105{height:108.041667pt;}
.h0_c00105{height:1217.733333pt;}
.h1_c00105{height:1218.000000pt;}
.w2_c00105{width:93.222667pt;}
.w0_c00105{width:759.866667pt;}
.w1_c00105{width:760.000000pt;}
.x0_c00105{left:0.000000pt;}
.x7_c00105{left:45.333333pt;}
.x4_c00105{left:78.000000pt;}
.x9_c00105{left:147.200000pt;}
.x3_c00105{left:184.533333pt;}
.xb_c00105{left:202.800000pt;}
.xc_c00105{left:237.333333pt;}
.x2_c00105{left:240.266667pt;}
.x5_c00105{left:241.200000pt;}
.x8_c00105{left:242.133333pt;}
.xa_c00105{left:243.200000pt;}
.x6_c00105{left:244.133333pt;}
.x1_c00105{left:283.866667pt;}
.xd_c00105{left:337.101563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d52e3c31ea6dcff00cbb2b5b.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_c5c3ed1956a84cb34f45086c.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_0960d2f7d6330315b9c16988.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_cfd1b591df41313c9c5dd2c7.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_4135304475606935b51087a5.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00106;src:url('chunks/assets/font_8dae86a10e14da0b6d0762d9.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00106;src:url('chunks/assets/font_4c03809968220d863f75117c.woff2')format("woff");}.ff7_c00106{font-family:ff7_c00106;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00106;src:url('chunks/assets/font_5d62e91a3aa7806ba2b71696.woff2')format("woff");}.ff8_c00106{font-family:ff8_c00106;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00106;src:url('chunks/assets/font_aeb58ec359a82fafa542f0f7.woff2')format("woff");}.ff9_c00106{font-family:ff9_c00106;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00106;src:url('chunks/assets/font_15cfe975e425277ebfa2add3.woff2')format("woff");}.ffa_c00106{font-family:ffa_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00106;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffb_c00106{font-family:ffb_c00106;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00106{vertical-align:-90.600000px;}
.v2_c00106{vertical-align:-76.800000px;}
.v0_c00106{vertical-align:0.000000px;}
.ls2_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:3.000000px;}
.ls3_c00106{letter-spacing:6.000000px;}
.ls4_c00106{letter-spacing:24.000000px;}
.ls1_c00106{letter-spacing:756.012000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00106{word-spacing:-26.013000px;}
.ws4_c00106{word-spacing:-23.136000px;}
.ws1_c00106{word-spacing:-20.244000px;}
.ws2_c00106{word-spacing:-15.180000px;}
.ws5_c00106{word-spacing:0.000000px;}
.ws0_c00106{word-spacing:0.084000px;}
._53_c00106{margin-left:-87.264000px;}
._36_c00106{margin-left:-27.168000px;}
._57_c00106{margin-left:-26.028000px;}
._16_c00106{margin-left:-23.808000px;}
._46_c00106{margin-left:-21.504000px;}
._5b_c00106{margin-left:-19.980000px;}
._37_c00106{margin-left:-18.144000px;}
._41_c00106{margin-left:-13.728000px;}
._42_c00106{margin-left:-12.480000px;}
._40_c00106{margin-left:-11.136000px;}
._43_c00106{margin-left:-9.744000px;}
._22_c00106{margin-left:-8.352000px;}
._2f_c00106{margin-left:-7.104000px;}
._24_c00106{margin-left:-5.376000px;}
._2d_c00106{margin-left:-3.456000px;}
._11_c00106{margin-left:-1.632000px;}
._12_c00106{width:1.056000px;}
._9_c00106{width:2.112000px;}
._6_c00106{width:3.552000px;}
._29_c00106{width:4.560000px;}
._5_c00106{width:5.568000px;}
._d_c00106{width:6.624000px;}
._4_c00106{width:7.680000px;}
._1_c00106{width:9.696000px;}
._10_c00106{width:10.848000px;}
._f_c00106{width:12.096000px;}
._30_c00106{width:13.152000px;}
._15_c00106{width:14.304000px;}
._2_c00106{width:16.320000px;}
._1c_c00106{width:17.472000px;}
._7_c00106{width:18.816000px;}
._0_c00106{width:20.544000px;}
._59_c00106{width:22.428000px;}
._13_c00106{width:25.440000px;}
._28_c00106{width:28.368000px;}
._e_c00106{width:30.432000px;}
._a_c00106{width:32.160000px;}
._3c_c00106{width:33.216000px;}
._b_c00106{width:35.136000px;}
._1d_c00106{width:36.768000px;}
._19_c00106{width:38.880000px;}
._3_c00106{width:40.512000px;}
._3a_c00106{width:42.000000px;}
._1a_c00106{width:43.392000px;}
._21_c00106{width:44.832000px;}
._20_c00106{width:46.752000px;}
._1b_c00106{width:50.688000px;}
._5f_c00106{width:52.368000px;}
._1f_c00106{width:53.472000px;}
._50_c00106{width:55.416000px;}
._4c_c00106{width:56.499000px;}
._25_c00106{width:57.888000px;}
._56_c00106{width:59.370000px;}
._3d_c00106{width:60.912000px;}
._3b_c00106{width:62.928000px;}
._2b_c00106{width:64.992000px;}
._2a_c00106{width:67.008000px;}
._2c_c00106{width:69.552000px;}
._4a_c00106{width:72.192000px;}
._32_c00106{width:73.776000px;}
._48_c00106{width:75.072000px;}
._4b_c00106{width:78.282000px;}
._38_c00106{width:79.488000px;}
._5a_c00106{width:96.738000px;}
._8_c00106{width:100.704000px;}
._5d_c00106{width:102.288000px;}
._45_c00106{width:107.616000px;}
._51_c00106{width:111.012000px;}
._47_c00106{width:122.688000px;}
._3e_c00106{width:127.296000px;}
._5c_c00106{width:139.128000px;}
._26_c00106{width:142.848000px;}
._4e_c00106{width:149.067000px;}
._14_c00106{width:153.024000px;}
._33_c00106{width:172.320000px;}
._18_c00106{width:174.912000px;}
._2e_c00106{width:177.504000px;}
._34_c00106{width:179.712000px;}
._60_c00106{width:187.956000px;}
._39_c00106{width:192.192000px;}
._c_c00106{width:194.304000px;}
._17_c00106{width:228.576000px;}
._35_c00106{width:278.784000px;}
._1e_c00106{width:288.288000px;}
._23_c00106{width:292.032000px;}
._3f_c00106{width:323.808000px;}
._4d_c00106{width:369.462000px;}
._54_c00106{width:377.064000px;}
._58_c00106{width:412.236000px;}
._52_c00106{width:426.408000px;}
._31_c00106{width:473.568000px;}
._55_c00106{width:505.428000px;}
._44_c00106{width:551.712000px;}
._27_c00106{width:562.272000px;}
._49_c00106{width:656.208000px;}
._5e_c00106{width:723.456000px;}
._4f_c00106{width:959.784000px;}
.fc2_c00106{color:transparent;}
.fc1_c00106{color:rgb(128,128,128);}
.fc0_c00106{color:rgb(0,0,0);}
.fs7_c00106{font-size:27.000000px;}
.fs6_c00106{font-size:30.000000px;}
.fs4_c00106{font-size:36.000000px;}
.fs8_c00106{font-size:39.000000px;}
.fs9_c00106{font-size:48.000000px;}
.fs3_c00106{font-size:81.000000px;}
.fs2_c00106{font-size:84.000000px;}
.fs5_c00106{font-size:87.000000px;}
.fs0_c00106{font-size:96.000000px;}
.fs1_c00106{font-size:102.000000px;}
.y0_c00106{bottom:0.000000px;}
.y24_c00106{bottom:3.105000px;}
.y23_c00106{bottom:7.228369px;}
.y22_c00106{bottom:89.670000px;}
.y21_c00106{bottom:119.520000px;}
.y20_c00106{bottom:126.870000px;}
.y1f_c00106{bottom:132.570000px;}
.y1e_c00106{bottom:153.120000px;}
.y1d_c00106{bottom:159.270000px;}
.y1c_c00106{bottom:165.720000px;}
.y1b_c00106{bottom:188.370000px;}
.y1a_c00106{bottom:221.970000px;}
.y19_c00106{bottom:263.220000px;}
.y18_c00106{bottom:323.970000px;}
.y17_c00106{bottom:528.120000px;}
.y16_c00106{bottom:562.920000px;}
.y15_c00106{bottom:597.720000px;}
.y14_c00106{bottom:630.420000px;}
.y13_c00106{bottom:663.870000px;}
.y12_c00106{bottom:697.320000px;}
.y11_c00106{bottom:731.070000px;}
.y10_c00106{bottom:761.970000px;}
.yf_c00106{bottom:798.570000px;}
.ye_c00106{bottom:828.870000px;}
.yd_c00106{bottom:863.970000px;}
.yc_c00106{bottom:898.320000px;}
.yb_c00106{bottom:931.770000px;}
.ya_c00106{bottom:964.920000px;}
.y9_c00106{bottom:998.970000px;}
.y8_c00106{bottom:1032.420000px;}
.y7_c00106{bottom:1066.470000px;}
.y6_c00106{bottom:1098.870000px;}
.y5_c00106{bottom:1133.370000px;}
.y4_c00106{bottom:1162.920000px;}
.y3_c00106{bottom:1199.820000px;}
.y2_c00106{bottom:1231.920000px;}
.y1_c00106{bottom:1265.670000px;}
.h7_c00106{height:13.200073px;}
.h6_c00106{height:37.983398px;}
.h8_c00106{height:43.804688px;}
.h4_c00106{height:45.580078px;}
.h3_c00106{height:87.804000px;}
.h5_c00106{height:110.151855px;}
.h2_c00106{height:121.546875px;}
.h0_c00106{height:1356.450000px;}
.h1_c00106{height:1356.750000px;}
.w2_c00106{width:104.875500px;}
.w0_c00106{width:860.775000px;}
.w1_c00106{width:861.000000px;}
.x0_c00106{left:0.000000px;}
.x7_c00106{left:42.900000px;}
.x6_c00106{left:43.950000px;}
.x5_c00106{left:45.000000px;}
.x4_c00106{left:46.200000px;}
.x2_c00106{left:47.850000px;}
.x1_c00106{left:49.500000px;}
.x8_c00106{left:67.200000px;}
.x3_c00106{left:99.600000px;}
.x11_c00106{left:158.700000px;}
.xf_c00106{left:161.100000px;}
.x10_c00106{left:163.050000px;}
.xe_c00106{left:166.500000px;}
.xd_c00106{left:249.150000px;}
.x9_c00106{left:293.700000px;}
.xb_c00106{left:369.300000px;}
.x13_c00106{left:382.201721px;}
.xc_c00106{left:439.800000px;}
.xa_c00106{left:510.300000px;}
.x12_c00106{left:551.100000px;}
@media print{
.v1_c00106{vertical-align:-80.533333pt;}
.v2_c00106{vertical-align:-68.266667pt;}
.v0_c00106{vertical-align:0.000000pt;}
.ls2_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:2.666667pt;}
.ls3_c00106{letter-spacing:5.333333pt;}
.ls4_c00106{letter-spacing:21.333333pt;}
.ls1_c00106{letter-spacing:672.010667pt;}
.ws3_c00106{word-spacing:-23.122667pt;}
.ws4_c00106{word-spacing:-20.565333pt;}
.ws1_c00106{word-spacing:-17.994667pt;}
.ws2_c00106{word-spacing:-13.493333pt;}
.ws5_c00106{word-spacing:0.000000pt;}
.ws0_c00106{word-spacing:0.074667pt;}
._53_c00106{margin-left:-77.568000pt;}
._36_c00106{margin-left:-24.149333pt;}
._57_c00106{margin-left:-23.136000pt;}
._16_c00106{margin-left:-21.162667pt;}
._46_c00106{margin-left:-19.114667pt;}
._5b_c00106{margin-left:-17.760000pt;}
._37_c00106{margin-left:-16.128000pt;}
._41_c00106{margin-left:-12.202667pt;}
._42_c00106{margin-left:-11.093333pt;}
._40_c00106{margin-left:-9.898667pt;}
._43_c00106{margin-left:-8.661333pt;}
._22_c00106{margin-left:-7.424000pt;}
._2f_c00106{margin-left:-6.314667pt;}
._24_c00106{margin-left:-4.778667pt;}
._2d_c00106{margin-left:-3.072000pt;}
._11_c00106{margin-left:-1.450667pt;}
._12_c00106{width:0.938667pt;}
._9_c00106{width:1.877333pt;}
._6_c00106{width:3.157333pt;}
._29_c00106{width:4.053333pt;}
._5_c00106{width:4.949333pt;}
._d_c00106{width:5.888000pt;}
._4_c00106{width:6.826667pt;}
._1_c00106{width:8.618667pt;}
._10_c00106{width:9.642667pt;}
._f_c00106{width:10.752000pt;}
._30_c00106{width:11.690667pt;}
._15_c00106{width:12.714667pt;}
._2_c00106{width:14.506667pt;}
._1c_c00106{width:15.530667pt;}
._7_c00106{width:16.725333pt;}
._0_c00106{width:18.261333pt;}
._59_c00106{width:19.936000pt;}
._13_c00106{width:22.613333pt;}
._28_c00106{width:25.216000pt;}
._e_c00106{width:27.050667pt;}
._a_c00106{width:28.586667pt;}
._3c_c00106{width:29.525333pt;}
._b_c00106{width:31.232000pt;}
._1d_c00106{width:32.682667pt;}
._19_c00106{width:34.560000pt;}
._3_c00106{width:36.010667pt;}
._3a_c00106{width:37.333333pt;}
._1a_c00106{width:38.570667pt;}
._21_c00106{width:39.850667pt;}
._20_c00106{width:41.557333pt;}
._1b_c00106{width:45.056000pt;}
._5f_c00106{width:46.549333pt;}
._1f_c00106{width:47.530667pt;}
._50_c00106{width:49.258667pt;}
._4c_c00106{width:50.221333pt;}
._25_c00106{width:51.456000pt;}
._56_c00106{width:52.773333pt;}
._3d_c00106{width:54.144000pt;}
._3b_c00106{width:55.936000pt;}
._2b_c00106{width:57.770667pt;}
._2a_c00106{width:59.562667pt;}
._2c_c00106{width:61.824000pt;}
._4a_c00106{width:64.170667pt;}
._32_c00106{width:65.578667pt;}
._48_c00106{width:66.730667pt;}
._4b_c00106{width:69.584000pt;}
._38_c00106{width:70.656000pt;}
._5a_c00106{width:85.989333pt;}
._8_c00106{width:89.514667pt;}
._5d_c00106{width:90.922667pt;}
._45_c00106{width:95.658667pt;}
._51_c00106{width:98.677333pt;}
._47_c00106{width:109.056000pt;}
._3e_c00106{width:113.152000pt;}
._5c_c00106{width:123.669333pt;}
._26_c00106{width:126.976000pt;}
._4e_c00106{width:132.504000pt;}
._14_c00106{width:136.021333pt;}
._33_c00106{width:153.173333pt;}
._18_c00106{width:155.477333pt;}
._2e_c00106{width:157.781333pt;}
._34_c00106{width:159.744000pt;}
._60_c00106{width:167.072000pt;}
._39_c00106{width:170.837333pt;}
._c_c00106{width:172.714667pt;}
._17_c00106{width:203.178667pt;}
._35_c00106{width:247.808000pt;}
._1e_c00106{width:256.256000pt;}
._23_c00106{width:259.584000pt;}
._3f_c00106{width:287.829333pt;}
._4d_c00106{width:328.410667pt;}
._54_c00106{width:335.168000pt;}
._58_c00106{width:366.432000pt;}
._52_c00106{width:379.029333pt;}
._31_c00106{width:420.949333pt;}
._55_c00106{width:449.269333pt;}
._44_c00106{width:490.410667pt;}
._27_c00106{width:499.797333pt;}
._49_c00106{width:583.296000pt;}
._5e_c00106{width:643.072000pt;}
._4f_c00106{width:853.141333pt;}
.fs7_c00106{font-size:24.000000pt;}
.fs6_c00106{font-size:26.666667pt;}
.fs4_c00106{font-size:32.000000pt;}
.fs8_c00106{font-size:34.666667pt;}
.fs9_c00106{font-size:42.666667pt;}
.fs3_c00106{font-size:72.000000pt;}
.fs2_c00106{font-size:74.666667pt;}
.fs5_c00106{font-size:77.333333pt;}
.fs0_c00106{font-size:85.333333pt;}
.fs1_c00106{font-size:90.666667pt;}
.y0_c00106{bottom:0.000000pt;}
.y24_c00106{bottom:2.760000pt;}
.y23_c00106{bottom:6.425217pt;}
.y22_c00106{bottom:79.706667pt;}
.y21_c00106{bottom:106.240000pt;}
.y20_c00106{bottom:112.773333pt;}
.y1f_c00106{bottom:117.840000pt;}
.y1e_c00106{bottom:136.106667pt;}
.y1d_c00106{bottom:141.573333pt;}
.y1c_c00106{bottom:147.306667pt;}
.y1b_c00106{bottom:167.440000pt;}
.y1a_c00106{bottom:197.306667pt;}
.y19_c00106{bottom:233.973333pt;}
.y18_c00106{bottom:287.973333pt;}
.y17_c00106{bottom:469.440000pt;}
.y16_c00106{bottom:500.373333pt;}
.y15_c00106{bottom:531.306667pt;}
.y14_c00106{bottom:560.373333pt;}
.y13_c00106{bottom:590.106667pt;}
.y12_c00106{bottom:619.840000pt;}
.y11_c00106{bottom:649.840000pt;}
.y10_c00106{bottom:677.306667pt;}
.yf_c00106{bottom:709.840000pt;}
.ye_c00106{bottom:736.773333pt;}
.yd_c00106{bottom:767.973333pt;}
.yc_c00106{bottom:798.506667pt;}
.yb_c00106{bottom:828.240000pt;}
.ya_c00106{bottom:857.706667pt;}
.y9_c00106{bottom:887.973333pt;}
.y8_c00106{bottom:917.706667pt;}
.y7_c00106{bottom:947.973333pt;}
.y6_c00106{bottom:976.773333pt;}
.y5_c00106{bottom:1007.440000pt;}
.y4_c00106{bottom:1033.706667pt;}
.y3_c00106{bottom:1066.506667pt;}
.y2_c00106{bottom:1095.040000pt;}
.y1_c00106{bottom:1125.040000pt;}
.h7_c00106{height:11.733399pt;}
.h6_c00106{height:33.763021pt;}
.h8_c00106{height:38.937500pt;}
.h4_c00106{height:40.515625pt;}
.h3_c00106{height:78.048000pt;}
.h5_c00106{height:97.912760pt;}
.h2_c00106{height:108.041667pt;}
.h0_c00106{height:1205.733333pt;}
.h1_c00106{height:1206.000000pt;}
.w2_c00106{width:93.222667pt;}
.w0_c00106{width:765.133333pt;}
.w1_c00106{width:765.333333pt;}
.x0_c00106{left:0.000000pt;}
.x7_c00106{left:38.133333pt;}
.x6_c00106{left:39.066667pt;}
.x5_c00106{left:40.000000pt;}
.x4_c00106{left:41.066667pt;}
.x2_c00106{left:42.533333pt;}
.x1_c00106{left:44.000000pt;}
.x8_c00106{left:59.733333pt;}
.x3_c00106{left:88.533333pt;}
.x11_c00106{left:141.066667pt;}
.xf_c00106{left:143.200000pt;}
.x10_c00106{left:144.933333pt;}
.xe_c00106{left:148.000000pt;}
.xd_c00106{left:221.466667pt;}
.x9_c00106{left:261.066667pt;}
.xb_c00106{left:328.266667pt;}
.x13_c00106{left:339.734863pt;}
.xc_c00106{left:390.933333pt;}
.xa_c00106{left:453.600000pt;}
.x12_c00106{left:489.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_330c097383d436cc75183d2a.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_e19232b0cf10724ceb302bdf.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_778276f88d06a4a40bf68300.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls1_c00107{letter-spacing:0.000000px;}
.ls2_c00107{letter-spacing:12.000000px;}
.ls0_c00107{letter-spacing:21.852000px;}
.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:-63.000000px;}
.ws1_c00107{word-spacing:-20.244000px;}
.ws2_c00107{word-spacing:-1.512000px;}
.ws3_c00107{word-spacing:0.000000px;}
._33_c00107{margin-left:-14.736000px;}
._12_c00107{margin-left:-10.128000px;}
._3e_c00107{margin-left:-8.496000px;}
._a_c00107{margin-left:-7.056000px;}
._3d_c00107{margin-left:-6.048000px;}
._b_c00107{margin-left:-4.752000px;}
._3c_c00107{margin-left:-3.744000px;}
._8_c00107{margin-left:-2.448000px;}
._9_c00107{margin-left:-1.440000px;}
._10_c00107{width:1.344000px;}
._1b_c00107{width:2.784000px;}
._1d_c00107{width:4.320000px;}
._21_c00107{width:5.472000px;}
._28_c00107{width:7.104000px;}
._0_c00107{width:8.208000px;}
._1_c00107{width:9.216000px;}
._3_c00107{width:10.224000px;}
._24_c00107{width:11.520000px;}
._23_c00107{width:12.672000px;}
._27_c00107{width:13.824000px;}
._2b_c00107{width:15.648000px;}
._16_c00107{width:16.704000px;}
._18_c00107{width:18.048000px;}
._30_c00107{width:19.584000px;}
._5_c00107{width:21.312000px;}
._6_c00107{width:22.608000px;}
._7_c00107{width:26.640000px;}
._2e_c00107{width:28.224000px;}
._14_c00107{width:29.760000px;}
._2c_c00107{width:31.008000px;}
._19_c00107{width:32.352000px;}
._d_c00107{width:33.552000px;}
._2d_c00107{width:35.136000px;}
._22_c00107{width:36.288000px;}
._26_c00107{width:38.592000px;}
._1e_c00107{width:40.800000px;}
._c_c00107{width:42.048000px;}
._2f_c00107{width:43.908000px;}
._3b_c00107{width:45.216000px;}
._17_c00107{width:47.328000px;}
._1f_c00107{width:48.336000px;}
._39_c00107{width:50.016000px;}
._25_c00107{width:51.648000px;}
._34_c00107{width:53.616000px;}
._35_c00107{width:58.740000px;}
._32_c00107{width:60.468000px;}
._1c_c00107{width:62.112000px;}
._38_c00107{width:63.360000px;}
._3a_c00107{width:64.896000px;}
._37_c00107{width:67.392000px;}
._29_c00107{width:72.000000px;}
._1a_c00107{width:74.976000px;}
._e_c00107{width:77.376000px;}
._31_c00107{width:81.840000px;}
._f_c00107{width:83.904000px;}
._15_c00107{width:87.840000px;}
._36_c00107{width:99.864000px;}
._4_c00107{width:102.384000px;}
._2_c00107{width:111.312000px;}
._13_c00107{width:181.152000px;}
._11_c00107{width:271.704000px;}
._2a_c00107{width:276.552000px;}
._40_c00107{width:982.806000px;}
._20_c00107{width:1494.480000px;}
._3f_c00107{width:1878.768000px;}
.fc2_c00107{color:transparent;}
.fc1_c00107{color:rgb(128,128,128);}
.fc0_c00107{color:rgb(0,0,0);}
.fs4_c00107{font-size:30.000000px;}
.fs5_c00107{font-size:48.000000px;}
.fs3_c00107{font-size:84.000000px;}
.fs1_c00107{font-size:96.000000px;}
.fs2_c00107{font-size:102.000000px;}
.fs0_c00107{font-size:144.000000px;}
.y0_c00107{bottom:0.000000px;}
.y23_c00107{bottom:3.105000px;}
.y22_c00107{bottom:7.228357px;}
.y21_c00107{bottom:85.830000px;}
.y20_c00107{bottom:92.430000px;}
.y1f_c00107{bottom:117.480000px;}
.y1e_c00107{bottom:152.280000px;}
.y1d_c00107{bottom:186.030000px;}
.y1c_c00107{bottom:220.380000px;}
.y1b_c00107{bottom:254.880000px;}
.y1a_c00107{bottom:288.930000px;}
.y19_c00107{bottom:323.280000px;}
.y18_c00107{bottom:357.030000px;}
.y17_c00107{bottom:391.230000px;}
.y16_c00107{bottom:424.980000px;}
.y15_c00107{bottom:459.030000px;}
.y14_c00107{bottom:493.380000px;}
.y13_c00107{bottom:527.130000px;}
.y12_c00107{bottom:560.580000px;}
.y11_c00107{bottom:595.080000px;}
.y10_c00107{bottom:628.830000px;}
.yf_c00107{bottom:661.830000px;}
.ye_c00107{bottom:695.880000px;}
.yd_c00107{bottom:729.330000px;}
.yc_c00107{bottom:763.380000px;}
.yb_c00107{bottom:797.130000px;}
.ya_c00107{bottom:831.030000px;}
.y9_c00107{bottom:864.630000px;}
.y8_c00107{bottom:897.930000px;}
.y7_c00107{bottom:931.230000px;}
.y6_c00107{bottom:964.530000px;}
.y5_c00107{bottom:998.430000px;}
.y4_c00107{bottom:1030.680000px;}
.y3_c00107{bottom:1062.780000px;}
.y2_c00107{bottom:1205.880000px;}
.y1_c00107{bottom:1255.530000px;}
.h5_c00107{height:13.200074px;}
.h4_c00107{height:37.983398px;}
.h6_c00107{height:43.804688px;}
.h3_c00107{height:121.546875px;}
.h2_c00107{height:182.320312px;}
.h0_c00107{height:1362.450000px;}
.h1_c00107{height:1362.750000px;}
.w2_c00107{width:104.875500px;}
.w1_c00107{width:849.750000px;}
.w0_c00107{width:849.975000px;}
.x0_c00107{left:0.000000px;}
.x4_c00107{left:58.650000px;}
.x3_c00107{left:87.300000px;}
.xe_c00107{left:262.200000px;}
.xd_c00107{left:270.750000px;}
.xc_c00107{left:271.800000px;}
.xb_c00107{left:273.450000px;}
.x9_c00107{left:274.650000px;}
.x7_c00107{left:275.700000px;}
.x6_c00107{left:277.200000px;}
.x8_c00107{left:279.450000px;}
.xf_c00107{left:305.700000px;}
.x1_c00107{left:310.500000px;}
.x10_c00107{left:322.350000px;}
.xa_c00107{left:330.150000px;}
.x11_c00107{left:376.801758px;}
.x2_c00107{left:403.200000px;}
.x5_c00107{left:517.050000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls1_c00107{letter-spacing:0.000000pt;}
.ls2_c00107{letter-spacing:10.666667pt;}
.ls0_c00107{letter-spacing:19.424000pt;}
.ws0_c00107{word-spacing:-56.000000pt;}
.ws1_c00107{word-spacing:-17.994667pt;}
.ws2_c00107{word-spacing:-1.344000pt;}
.ws3_c00107{word-spacing:0.000000pt;}
._33_c00107{margin-left:-13.098667pt;}
._12_c00107{margin-left:-9.002667pt;}
._3e_c00107{margin-left:-7.552000pt;}
._a_c00107{margin-left:-6.272000pt;}
._3d_c00107{margin-left:-5.376000pt;}
._b_c00107{margin-left:-4.224000pt;}
._3c_c00107{margin-left:-3.328000pt;}
._8_c00107{margin-left:-2.176000pt;}
._9_c00107{margin-left:-1.280000pt;}
._10_c00107{width:1.194667pt;}
._1b_c00107{width:2.474667pt;}
._1d_c00107{width:3.840000pt;}
._21_c00107{width:4.864000pt;}
._28_c00107{width:6.314667pt;}
._0_c00107{width:7.296000pt;}
._1_c00107{width:8.192000pt;}
._3_c00107{width:9.088000pt;}
._24_c00107{width:10.240000pt;}
._23_c00107{width:11.264000pt;}
._27_c00107{width:12.288000pt;}
._2b_c00107{width:13.909333pt;}
._16_c00107{width:14.848000pt;}
._18_c00107{width:16.042667pt;}
._30_c00107{width:17.408000pt;}
._5_c00107{width:18.944000pt;}
._6_c00107{width:20.096000pt;}
._7_c00107{width:23.680000pt;}
._2e_c00107{width:25.088000pt;}
._14_c00107{width:26.453333pt;}
._2c_c00107{width:27.562667pt;}
._19_c00107{width:28.757333pt;}
._d_c00107{width:29.824000pt;}
._2d_c00107{width:31.232000pt;}
._22_c00107{width:32.256000pt;}
._26_c00107{width:34.304000pt;}
._1e_c00107{width:36.266667pt;}
._c_c00107{width:37.376000pt;}
._2f_c00107{width:39.029333pt;}
._3b_c00107{width:40.192000pt;}
._17_c00107{width:42.069333pt;}
._1f_c00107{width:42.965333pt;}
._39_c00107{width:44.458667pt;}
._25_c00107{width:45.909333pt;}
._34_c00107{width:47.658667pt;}
._35_c00107{width:52.213333pt;}
._32_c00107{width:53.749333pt;}
._1c_c00107{width:55.210667pt;}
._38_c00107{width:56.320000pt;}
._3a_c00107{width:57.685333pt;}
._37_c00107{width:59.904000pt;}
._29_c00107{width:64.000000pt;}
._1a_c00107{width:66.645333pt;}
._e_c00107{width:68.778667pt;}
._31_c00107{width:72.746667pt;}
._f_c00107{width:74.581333pt;}
._15_c00107{width:78.080000pt;}
._36_c00107{width:88.768000pt;}
._4_c00107{width:91.008000pt;}
._2_c00107{width:98.944000pt;}
._13_c00107{width:161.024000pt;}
._11_c00107{width:241.514667pt;}
._2a_c00107{width:245.824000pt;}
._40_c00107{width:873.605333pt;}
._20_c00107{width:1328.426667pt;}
._3f_c00107{width:1670.016000pt;}
.fs4_c00107{font-size:26.666667pt;}
.fs5_c00107{font-size:42.666667pt;}
.fs3_c00107{font-size:74.666667pt;}
.fs1_c00107{font-size:85.333333pt;}
.fs2_c00107{font-size:90.666667pt;}
.fs0_c00107{font-size:128.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y23_c00107{bottom:2.760000pt;}
.y22_c00107{bottom:6.425206pt;}
.y21_c00107{bottom:76.293333pt;}
.y20_c00107{bottom:82.160000pt;}
.y1f_c00107{bottom:104.426667pt;}
.y1e_c00107{bottom:135.360000pt;}
.y1d_c00107{bottom:165.360000pt;}
.y1c_c00107{bottom:195.893333pt;}
.y1b_c00107{bottom:226.560000pt;}
.y1a_c00107{bottom:256.826667pt;}
.y19_c00107{bottom:287.360000pt;}
.y18_c00107{bottom:317.360000pt;}
.y17_c00107{bottom:347.760000pt;}
.y16_c00107{bottom:377.760000pt;}
.y15_c00107{bottom:408.026667pt;}
.y14_c00107{bottom:438.560000pt;}
.y13_c00107{bottom:468.560000pt;}
.y12_c00107{bottom:498.293333pt;}
.y11_c00107{bottom:528.960000pt;}
.y10_c00107{bottom:558.960000pt;}
.yf_c00107{bottom:588.293333pt;}
.ye_c00107{bottom:618.560000pt;}
.yd_c00107{bottom:648.293333pt;}
.yc_c00107{bottom:678.560000pt;}
.yb_c00107{bottom:708.560000pt;}
.ya_c00107{bottom:738.693333pt;}
.y9_c00107{bottom:768.560000pt;}
.y8_c00107{bottom:798.160000pt;}
.y7_c00107{bottom:827.760000pt;}
.y6_c00107{bottom:857.360000pt;}
.y5_c00107{bottom:887.493333pt;}
.y4_c00107{bottom:916.160000pt;}
.y3_c00107{bottom:944.693333pt;}
.y2_c00107{bottom:1071.893333pt;}
.y1_c00107{bottom:1116.026667pt;}
.h5_c00107{height:11.733399pt;}
.h4_c00107{height:33.763021pt;}
.h6_c00107{height:38.937500pt;}
.h3_c00107{height:108.041667pt;}
.h2_c00107{height:162.062500pt;}
.h0_c00107{height:1211.066667pt;}
.h1_c00107{height:1211.333333pt;}
.w2_c00107{width:93.222667pt;}
.w1_c00107{width:755.333333pt;}
.w0_c00107{width:755.533333pt;}
.x0_c00107{left:0.000000pt;}
.x4_c00107{left:52.133333pt;}
.x3_c00107{left:77.600000pt;}
.xe_c00107{left:233.066667pt;}
.xd_c00107{left:240.666667pt;}
.xc_c00107{left:241.600000pt;}
.xb_c00107{left:243.066667pt;}
.x9_c00107{left:244.133333pt;}
.x7_c00107{left:245.066667pt;}
.x6_c00107{left:246.400000pt;}
.x8_c00107{left:248.400000pt;}
.xf_c00107{left:271.733333pt;}
.x1_c00107{left:276.000000pt;}
.x10_c00107{left:286.533333pt;}
.xa_c00107{left:293.466667pt;}
.x11_c00107{left:334.934896pt;}
.x2_c00107{left:358.400000pt;}
.x5_c00107{left:459.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_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_f0c0a21eac95786528bae27e.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_51448b7aaa5af54c3e4d5fc0.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls1_c00108{letter-spacing:0.000000px;}
.ls2_c00108{letter-spacing:3.000000px;}
.ls0_c00108{letter-spacing:15.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00108{word-spacing:-23.136000px;}
.ws3_c00108{word-spacing:0.000000px;}
.ws0_c00108{word-spacing:1.920000px;}
.ws1_c00108{word-spacing:119.988000px;}
._27_c00108{margin-left:-15.840000px;}
._25_c00108{margin-left:-12.000000px;}
._31_c00108{margin-left:-10.848000px;}
._26_c00108{margin-left:-7.008000px;}
._2e_c00108{margin-left:-5.856000px;}
._2b_c00108{margin-left:-4.800000px;}
._15_c00108{margin-left:-3.552000px;}
._10_c00108{margin-left:-2.208000px;}
._f_c00108{margin-left:-1.152000px;}
._b_c00108{width:1.152000px;}
._7_c00108{width:2.592000px;}
._d_c00108{width:4.128000px;}
._1_c00108{width:5.760000px;}
._12_c00108{width:7.488000px;}
._3_c00108{width:9.408000px;}
._4_c00108{width:10.464000px;}
._0_c00108{width:12.288000px;}
._2d_c00108{width:13.344000px;}
._29_c00108{width:14.496000px;}
._1b_c00108{width:15.552000px;}
._2_c00108{width:17.376000px;}
._18_c00108{width:19.680000px;}
._2f_c00108{width:21.600000px;}
._30_c00108{width:23.016000px;}
._17_c00108{width:24.960000px;}
._1e_c00108{width:26.112000px;}
._1c_c00108{width:27.840000px;}
._13_c00108{width:29.472000px;}
._1a_c00108{width:30.624000px;}
._11_c00108{width:32.064000px;}
._16_c00108{width:34.176000px;}
._32_c00108{width:35.424000px;}
._5_c00108{width:36.768000px;}
._1f_c00108{width:39.072000px;}
._c_c00108{width:40.800000px;}
._8_c00108{width:42.624000px;}
._2a_c00108{width:43.776000px;}
._23_c00108{width:45.696000px;}
._e_c00108{width:47.808000px;}
._14_c00108{width:49.728000px;}
._19_c00108{width:52.032000px;}
._9_c00108{width:53.088000px;}
._a_c00108{width:55.968000px;}
._28_c00108{width:58.752000px;}
._22_c00108{width:59.808000px;}
._2c_c00108{width:60.864000px;}
._6_c00108{width:62.400000px;}
._24_c00108{width:65.088000px;}
._1d_c00108{width:66.624000px;}
._20_c00108{width:69.024000px;}
._21_c00108{width:71.040000px;}
._33_c00108{width:366.240000px;}
._34_c00108{width:831.552000px;}
.fc2_c00108{color:transparent;}
.fc1_c00108{color:rgb(128,128,128);}
.fc0_c00108{color:rgb(0,0,0);}
.fs3_c00108{font-size:48.000000px;}
.fs1_c00108{font-size:60.000000px;}
.fs2_c00108{font-size:84.000000px;}
.fs0_c00108{font-size:96.000000px;}
.y0_c00108{bottom:0.000000px;}
.y26_c00108{bottom:3.105000px;}
.y25_c00108{bottom:7.228371px;}
.y24_c00108{bottom:104.265000px;}
.y23_c00108{bottom:137.415000px;}
.y22_c00108{bottom:172.215000px;}
.y21_c00108{bottom:205.665000px;}
.y20_c00108{bottom:240.015000px;}
.y1f_c00108{bottom:274.065000px;}
.y1e_c00108{bottom:307.515000px;}
.y1d_c00108{bottom:342.315000px;}
.y1c_c00108{bottom:375.615000px;}
.y1b_c00108{bottom:409.365000px;}
.y1a_c00108{bottom:443.115000px;}
.y19_c00108{bottom:476.865000px;}
.y18_c00108{bottom:511.065000px;}
.y17_c00108{bottom:543.765000px;}
.y16_c00108{bottom:577.215000px;}
.y15_c00108{bottom:610.965000px;}
.y14_c00108{bottom:644.715000px;}
.y13_c00108{bottom:677.115000px;}
.y12_c00108{bottom:710.865000px;}
.y11_c00108{bottom:744.165000px;}
.y10_c00108{bottom:777.315000px;}
.yf_c00108{bottom:810.765000px;}
.ye_c00108{bottom:844.065000px;}
.yd_c00108{bottom:877.215000px;}
.yc_c00108{bottom:910.365000px;}
.yb_c00108{bottom:943.965000px;}
.ya_c00108{bottom:977.115000px;}
.y9_c00108{bottom:1010.265000px;}
.y8_c00108{bottom:1043.565000px;}
.y7_c00108{bottom:1077.615000px;}
.y6_c00108{bottom:1110.765000px;}
.y5_c00108{bottom:1143.915000px;}
.y4_c00108{bottom:1177.515000px;}
.y3_c00108{bottom:1210.665000px;}
.y2_c00108{bottom:1243.815000px;}
.y1_c00108{bottom:1277.115000px;}
.h3_c00108{height:13.200074px;}
.h4_c00108{height:43.804688px;}
.h2_c00108{height:121.546875px;}
.h0_c00108{height:1360.275000px;}
.h1_c00108{height:1360.500000px;}
.w2_c00108{width:104.875500px;}
.w1_c00108{width:863.250000px;}
.w0_c00108{width:863.475000px;}
.x0_c00108{left:0.000000px;}
.x7_c00108{left:37.500000px;}
.x5_c00108{left:38.550000px;}
.x6_c00108{left:39.750000px;}
.x8_c00108{left:40.800000px;}
.x4_c00108{left:41.850000px;}
.x3_c00108{left:43.500000px;}
.x2_c00108{left:45.000000px;}
.x1_c00108{left:46.200000px;}
.x9_c00108{left:47.850000px;}
.xa_c00108{left:117.900000px;}
.xb_c00108{left:244.950000px;}
.xc_c00108{left:383.551758px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls1_c00108{letter-spacing:0.000000pt;}
.ls2_c00108{letter-spacing:2.666667pt;}
.ls0_c00108{letter-spacing:13.333333pt;}
.ws2_c00108{word-spacing:-20.565333pt;}
.ws3_c00108{word-spacing:0.000000pt;}
.ws0_c00108{word-spacing:1.706667pt;}
.ws1_c00108{word-spacing:106.656000pt;}
._27_c00108{margin-left:-14.080000pt;}
._25_c00108{margin-left:-10.666667pt;}
._31_c00108{margin-left:-9.642667pt;}
._26_c00108{margin-left:-6.229333pt;}
._2e_c00108{margin-left:-5.205333pt;}
._2b_c00108{margin-left:-4.266667pt;}
._15_c00108{margin-left:-3.157333pt;}
._10_c00108{margin-left:-1.962667pt;}
._f_c00108{margin-left:-1.024000pt;}
._b_c00108{width:1.024000pt;}
._7_c00108{width:2.304000pt;}
._d_c00108{width:3.669333pt;}
._1_c00108{width:5.120000pt;}
._12_c00108{width:6.656000pt;}
._3_c00108{width:8.362667pt;}
._4_c00108{width:9.301333pt;}
._0_c00108{width:10.922667pt;}
._2d_c00108{width:11.861333pt;}
._29_c00108{width:12.885333pt;}
._1b_c00108{width:13.824000pt;}
._2_c00108{width:15.445333pt;}
._18_c00108{width:17.493333pt;}
._2f_c00108{width:19.200000pt;}
._30_c00108{width:20.458667pt;}
._17_c00108{width:22.186667pt;}
._1e_c00108{width:23.210667pt;}
._1c_c00108{width:24.746667pt;}
._13_c00108{width:26.197333pt;}
._1a_c00108{width:27.221333pt;}
._11_c00108{width:28.501333pt;}
._16_c00108{width:30.378667pt;}
._32_c00108{width:31.488000pt;}
._5_c00108{width:32.682667pt;}
._1f_c00108{width:34.730667pt;}
._c_c00108{width:36.266667pt;}
._8_c00108{width:37.888000pt;}
._2a_c00108{width:38.912000pt;}
._23_c00108{width:40.618667pt;}
._e_c00108{width:42.496000pt;}
._14_c00108{width:44.202667pt;}
._19_c00108{width:46.250667pt;}
._9_c00108{width:47.189333pt;}
._a_c00108{width:49.749333pt;}
._28_c00108{width:52.224000pt;}
._22_c00108{width:53.162667pt;}
._2c_c00108{width:54.101333pt;}
._6_c00108{width:55.466667pt;}
._24_c00108{width:57.856000pt;}
._1d_c00108{width:59.221333pt;}
._20_c00108{width:61.354667pt;}
._21_c00108{width:63.146667pt;}
._33_c00108{width:325.546667pt;}
._34_c00108{width:739.157333pt;}
.fs3_c00108{font-size:42.666667pt;}
.fs1_c00108{font-size:53.333333pt;}
.fs2_c00108{font-size:74.666667pt;}
.fs0_c00108{font-size:85.333333pt;}
.y0_c00108{bottom:0.000000pt;}
.y26_c00108{bottom:2.760000pt;}
.y25_c00108{bottom:6.425219pt;}
.y24_c00108{bottom:92.680000pt;}
.y23_c00108{bottom:122.146667pt;}
.y22_c00108{bottom:153.080000pt;}
.y21_c00108{bottom:182.813333pt;}
.y20_c00108{bottom:213.346667pt;}
.y1f_c00108{bottom:243.613333pt;}
.y1e_c00108{bottom:273.346667pt;}
.y1d_c00108{bottom:304.280000pt;}
.y1c_c00108{bottom:333.880000pt;}
.y1b_c00108{bottom:363.880000pt;}
.y1a_c00108{bottom:393.880000pt;}
.y19_c00108{bottom:423.880000pt;}
.y18_c00108{bottom:454.280000pt;}
.y17_c00108{bottom:483.346667pt;}
.y16_c00108{bottom:513.080000pt;}
.y15_c00108{bottom:543.080000pt;}
.y14_c00108{bottom:573.080000pt;}
.y13_c00108{bottom:601.880000pt;}
.y12_c00108{bottom:631.880000pt;}
.y11_c00108{bottom:661.480000pt;}
.y10_c00108{bottom:690.946667pt;}
.yf_c00108{bottom:720.680000pt;}
.ye_c00108{bottom:750.280000pt;}
.yd_c00108{bottom:779.746667pt;}
.yc_c00108{bottom:809.213333pt;}
.yb_c00108{bottom:839.080000pt;}
.ya_c00108{bottom:868.546667pt;}
.y9_c00108{bottom:898.013333pt;}
.y8_c00108{bottom:927.613333pt;}
.y7_c00108{bottom:957.880000pt;}
.y6_c00108{bottom:987.346667pt;}
.y5_c00108{bottom:1016.813333pt;}
.y4_c00108{bottom:1046.680000pt;}
.y3_c00108{bottom:1076.146667pt;}
.y2_c00108{bottom:1105.613333pt;}
.y1_c00108{bottom:1135.213333pt;}
.h3_c00108{height:11.733399pt;}
.h4_c00108{height:38.937500pt;}
.h2_c00108{height:108.041667pt;}
.h0_c00108{height:1209.133333pt;}
.h1_c00108{height:1209.333333pt;}
.w2_c00108{width:93.222667pt;}
.w1_c00108{width:767.333333pt;}
.w0_c00108{width:767.533333pt;}
.x0_c00108{left:0.000000pt;}
.x7_c00108{left:33.333333pt;}
.x5_c00108{left:34.266667pt;}
.x6_c00108{left:35.333333pt;}
.x8_c00108{left:36.266667pt;}
.x4_c00108{left:37.200000pt;}
.x3_c00108{left:38.666667pt;}
.x2_c00108{left:40.000000pt;}
.x1_c00108{left:41.066667pt;}
.x9_c00108{left:42.533333pt;}
.xa_c00108{left:104.800000pt;}
.xb_c00108{left:217.733333pt;}
.xc_c00108{left:340.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f0f1267c969fd91919011b8e.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_387a704f30c3cde4796811f2.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_7782f0e31912d0aa57597919.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls4_c00109{letter-spacing:0.000000px;}
.ls5_c00109{letter-spacing:3.000000px;}
.ls1_c00109{letter-spacing:6.720000px;}
.ls0_c00109{letter-spacing:8.520000px;}
.ls3_c00109{letter-spacing:10.920000px;}
.ls2_c00109{letter-spacing:25.908000px;}
.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:-1.092000px;}
.ws2_c00109{word-spacing:0.000000px;}
.ws0_c00109{word-spacing:0.084000px;}
._2a_c00109{margin-left:-84.000000px;}
._34_c00109{margin-left:-28.128000px;}
._3d_c00109{margin-left:-25.092000px;}
._38_c00109{margin-left:-21.948000px;}
._37_c00109{margin-left:-17.088000px;}
._3a_c00109{margin-left:-13.920000px;}
._e_c00109{margin-left:-9.024000px;}
._2f_c00109{margin-left:-7.572000px;}
._1d_c00109{margin-left:-6.240000px;}
._f_c00109{margin-left:-4.512000px;}
._a_c00109{margin-left:-3.360000px;}
._12_c00109{margin-left:-2.208000px;}
._9_c00109{margin-left:-1.152000px;}
._13_c00109{width:1.632000px;}
._5_c00109{width:2.880000px;}
._4_c00109{width:4.896000px;}
._2_c00109{width:6.144000px;}
._25_c00109{width:7.488000px;}
._1_c00109{width:8.544000px;}
._27_c00109{width:9.600000px;}
._7_c00109{width:10.752000px;}
._26_c00109{width:12.444000px;}
._18_c00109{width:14.112000px;}
._3_c00109{width:15.360000px;}
._28_c00109{width:17.280000px;}
._24_c00109{width:18.300000px;}
._15_c00109{width:19.488000px;}
._c_c00109{width:21.348000px;}
._2e_c00109{width:24.672000px;}
._b_c00109{width:26.016000px;}
._29_c00109{width:27.696000px;}
._6_c00109{width:28.896000px;}
._2d_c00109{width:30.432000px;}
._2c_c00109{width:31.488000px;}
._8_c00109{width:32.640000px;}
._10_c00109{width:34.176000px;}
._17_c00109{width:36.288000px;}
._32_c00109{width:37.344000px;}
._11_c00109{width:38.400000px;}
._21_c00109{width:40.608000px;}
._0_c00109{width:41.952000px;}
._20_c00109{width:43.296000px;}
._1b_c00109{width:44.352000px;}
._1e_c00109{width:45.600000px;}
._30_c00109{width:46.632000px;}
._16_c00109{width:47.904000px;}
._1f_c00109{width:49.920000px;}
._d_c00109{width:51.516000px;}
._31_c00109{width:54.240000px;}
._2b_c00109{width:56.292000px;}
._1c_c00109{width:57.984000px;}
._22_c00109{width:60.096000px;}
._19_c00109{width:61.248000px;}
._23_c00109{width:64.128000px;}
._14_c00109{width:66.912000px;}
._1a_c00109{width:73.632000px;}
._39_c00109{width:75.552000px;}
._35_c00109{width:79.488000px;}
._3b_c00109{width:80.988000px;}
._33_c00109{width:82.176000px;}
._36_c00109{width:86.916000px;}
._3c_c00109{width:851.220000px;}
.fc2_c00109{color:transparent;}
.fc1_c00109{color:rgb(128,128,128);}
.fc0_c00109{color:rgb(0,0,0);}
.fs2_c00109{font-size:30.000000px;}
.fs4_c00109{font-size:48.000000px;}
.fs1_c00109{font-size:84.000000px;}
.fs0_c00109{font-size:96.000000px;}
.fs3_c00109{font-size:102.000000px;}
.y0_c00109{bottom:0.000000px;}
.y22_c00109{bottom:3.105000px;}
.y21_c00109{bottom:7.228357px;}
.y20_c00109{bottom:220.680000px;}
.y1f_c00109{bottom:254.880000px;}
.y1e_c00109{bottom:304.380000px;}
.y1d_c00109{bottom:338.280000px;}
.y1c_c00109{bottom:374.580000px;}
.y1b_c00109{bottom:408.030000px;}
.y1a_c00109{bottom:441.780000px;}
.y19_c00109{bottom:475.530000px;}
.y18_c00109{bottom:509.280000px;}
.y17_c00109{bottom:543.780000px;}
.y16_c00109{bottom:578.130000px;}
.y15_c00109{bottom:611.880000px;}
.y14_c00109{bottom:644.580000px;}
.y13_c00109{bottom:679.080000px;}
.y12_c00109{bottom:712.530000px;}
.y11_c00109{bottom:746.280000px;}
.y10_c00109{bottom:780.030000px;}
.yf_c00109{bottom:813.480000px;}
.ye_c00109{bottom:847.530000px;}
.yd_c00109{bottom:880.980000px;}
.yc_c00109{bottom:914.280000px;}
.yb_c00109{bottom:947.430000px;}
.ya_c00109{bottom:980.730000px;}
.y9_c00109{bottom:1014.180000px;}
.y8_c00109{bottom:1047.630000px;}
.y7_c00109{bottom:1081.080000px;}
.y6_c00109{bottom:1114.530000px;}
.y5_c00109{bottom:1147.530000px;}
.y4_c00109{bottom:1180.980000px;}
.y3_c00109{bottom:1213.980000px;}
.y2_c00109{bottom:1246.830000px;}
.y1_c00109{bottom:1280.130000px;}
.h5_c00109{height:13.200074px;}
.h3_c00109{height:37.983398px;}
.h6_c00109{height:43.804688px;}
.h2_c00109{height:121.546875px;}
.h4_c00109{height:129.143555px;}
.h0_c00109{height:1382.700000px;}
.h1_c00109{height:1383.000000px;}
.w2_c00109{width:104.875500px;}
.w0_c00109{width:863.175000px;}
.w1_c00109{width:863.250000px;}
.x0_c00109{left:0.000000px;}
.x7_c00109{left:274.050000px;}
.x1_c00109{left:275.100000px;}
.x2_c00109{left:276.150000px;}
.x4_c00109{left:277.200000px;}
.x3_c00109{left:278.400000px;}
.x6_c00109{left:327.000000px;}
.x5_c00109{left:328.050000px;}
.xa_c00109{left:383.401749px;}
.x8_c00109{left:430.650000px;}
.x9_c00109{left:444.900000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls4_c00109{letter-spacing:0.000000pt;}
.ls5_c00109{letter-spacing:2.666667pt;}
.ls1_c00109{letter-spacing:5.973333pt;}
.ls0_c00109{letter-spacing:7.573333pt;}
.ls3_c00109{letter-spacing:9.706667pt;}
.ls2_c00109{letter-spacing:23.029333pt;}
.ws1_c00109{word-spacing:-0.970667pt;}
.ws2_c00109{word-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.074667pt;}
._2a_c00109{margin-left:-74.666667pt;}
._34_c00109{margin-left:-25.002667pt;}
._3d_c00109{margin-left:-22.304000pt;}
._38_c00109{margin-left:-19.509333pt;}
._37_c00109{margin-left:-15.189333pt;}
._3a_c00109{margin-left:-12.373333pt;}
._e_c00109{margin-left:-8.021333pt;}
._2f_c00109{margin-left:-6.730667pt;}
._1d_c00109{margin-left:-5.546667pt;}
._f_c00109{margin-left:-4.010667pt;}
._a_c00109{margin-left:-2.986667pt;}
._12_c00109{margin-left:-1.962667pt;}
._9_c00109{margin-left:-1.024000pt;}
._13_c00109{width:1.450667pt;}
._5_c00109{width:2.560000pt;}
._4_c00109{width:4.352000pt;}
._2_c00109{width:5.461333pt;}
._25_c00109{width:6.656000pt;}
._1_c00109{width:7.594667pt;}
._27_c00109{width:8.533333pt;}
._7_c00109{width:9.557333pt;}
._26_c00109{width:11.061333pt;}
._18_c00109{width:12.544000pt;}
._3_c00109{width:13.653333pt;}
._28_c00109{width:15.360000pt;}
._24_c00109{width:16.266667pt;}
._15_c00109{width:17.322667pt;}
._c_c00109{width:18.976000pt;}
._2e_c00109{width:21.930667pt;}
._b_c00109{width:23.125333pt;}
._29_c00109{width:24.618667pt;}
._6_c00109{width:25.685333pt;}
._2d_c00109{width:27.050667pt;}
._2c_c00109{width:27.989333pt;}
._8_c00109{width:29.013333pt;}
._10_c00109{width:30.378667pt;}
._17_c00109{width:32.256000pt;}
._32_c00109{width:33.194667pt;}
._11_c00109{width:34.133333pt;}
._21_c00109{width:36.096000pt;}
._0_c00109{width:37.290667pt;}
._20_c00109{width:38.485333pt;}
._1b_c00109{width:39.424000pt;}
._1e_c00109{width:40.533333pt;}
._30_c00109{width:41.450667pt;}
._16_c00109{width:42.581333pt;}
._1f_c00109{width:44.373333pt;}
._d_c00109{width:45.792000pt;}
._31_c00109{width:48.213333pt;}
._2b_c00109{width:50.037333pt;}
._1c_c00109{width:51.541333pt;}
._22_c00109{width:53.418667pt;}
._19_c00109{width:54.442667pt;}
._23_c00109{width:57.002667pt;}
._14_c00109{width:59.477333pt;}
._1a_c00109{width:65.450667pt;}
._39_c00109{width:67.157333pt;}
._35_c00109{width:70.656000pt;}
._3b_c00109{width:71.989333pt;}
._33_c00109{width:73.045333pt;}
._36_c00109{width:77.258667pt;}
._3c_c00109{width:756.640000pt;}
.fs2_c00109{font-size:26.666667pt;}
.fs4_c00109{font-size:42.666667pt;}
.fs1_c00109{font-size:74.666667pt;}
.fs0_c00109{font-size:85.333333pt;}
.fs3_c00109{font-size:90.666667pt;}
.y0_c00109{bottom:0.000000pt;}
.y22_c00109{bottom:2.760000pt;}
.y21_c00109{bottom:6.425206pt;}
.y20_c00109{bottom:196.160000pt;}
.y1f_c00109{bottom:226.560000pt;}
.y1e_c00109{bottom:270.560000pt;}
.y1d_c00109{bottom:300.693333pt;}
.y1c_c00109{bottom:332.960000pt;}
.y1b_c00109{bottom:362.693333pt;}
.y1a_c00109{bottom:392.693333pt;}
.y19_c00109{bottom:422.693333pt;}
.y18_c00109{bottom:452.693333pt;}
.y17_c00109{bottom:483.360000pt;}
.y16_c00109{bottom:513.893333pt;}
.y15_c00109{bottom:543.893333pt;}
.y14_c00109{bottom:572.960000pt;}
.y13_c00109{bottom:603.626667pt;}
.y12_c00109{bottom:633.360000pt;}
.y11_c00109{bottom:663.360000pt;}
.y10_c00109{bottom:693.360000pt;}
.yf_c00109{bottom:723.093333pt;}
.ye_c00109{bottom:753.360000pt;}
.yd_c00109{bottom:783.093333pt;}
.yc_c00109{bottom:812.693333pt;}
.yb_c00109{bottom:842.160000pt;}
.ya_c00109{bottom:871.760000pt;}
.y9_c00109{bottom:901.493333pt;}
.y8_c00109{bottom:931.226667pt;}
.y7_c00109{bottom:960.960000pt;}
.y6_c00109{bottom:990.693333pt;}
.y5_c00109{bottom:1020.026667pt;}
.y4_c00109{bottom:1049.760000pt;}
.y3_c00109{bottom:1079.093333pt;}
.y2_c00109{bottom:1108.293333pt;}
.y1_c00109{bottom:1137.893333pt;}
.h5_c00109{height:11.733399pt;}
.h3_c00109{height:33.763021pt;}
.h6_c00109{height:38.937500pt;}
.h2_c00109{height:108.041667pt;}
.h4_c00109{height:114.794271pt;}
.h0_c00109{height:1229.066667pt;}
.h1_c00109{height:1229.333333pt;}
.w2_c00109{width:93.222667pt;}
.w0_c00109{width:767.266667pt;}
.w1_c00109{width:767.333333pt;}
.x0_c00109{left:0.000000pt;}
.x7_c00109{left:243.600000pt;}
.x1_c00109{left:244.533333pt;}
.x2_c00109{left:245.466667pt;}
.x4_c00109{left:246.400000pt;}
.x3_c00109{left:247.466667pt;}
.x6_c00109{left:290.666667pt;}
.x5_c00109{left:291.600000pt;}
.xa_c00109{left:340.801554pt;}
.x8_c00109{left:382.800000pt;}
.x9_c00109{left:395.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a5ad934d0aae0a663ce1afd7.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_80d9c70fd1f4ccd1b2eb5555.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_108a1466151d793029a413d3.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_77c13aa4255004e456f0be9d.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_b0d978ca5295dc3342434710.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00110;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00110{font-family:ff6_c00110;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls3_c00110{letter-spacing:-12.000000px;}
.ls2_c00110{letter-spacing:0.000000px;}
.ls1_c00110{letter-spacing:6.000000px;}
.ls0_c00110{letter-spacing:8.520000px;}
.ls4_c00110{letter-spacing:45.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00110{word-spacing:-20.244000px;}
.ws1_c00110{word-spacing:-18.798000px;}
.ws3_c00110{word-spacing:0.000000px;}
.ws0_c00110{word-spacing:11.280000px;}
._3a_c00110{margin-left:-71.775000px;}
._32_c00110{margin-left:-67.599000px;}
._53_c00110{margin-left:-63.597000px;}
._30_c00110{margin-left:-60.900000px;}
._55_c00110{margin-left:-59.856000px;}
._57_c00110{margin-left:-57.507000px;}
._38_c00110{margin-left:-52.287000px;}
._33_c00110{margin-left:-50.856000px;}
._36_c00110{margin-left:-49.851000px;}
._5a_c00110{margin-left:-43.413000px;}
._59_c00110{margin-left:-42.195000px;}
._34_c00110{margin-left:-36.675000px;}
._5f_c00110{margin-left:-33.792000px;}
._52_c00110{margin-left:-30.528000px;}
._a_c00110{margin-left:-27.840000px;}
._3_c00110{margin-left:-25.824000px;}
._5_c00110{margin-left:-22.848000px;}
._44_c00110{margin-left:-21.504000px;}
._6_c00110{margin-left:-20.256000px;}
._1a_c00110{margin-left:-17.280000px;}
._1_c00110{margin-left:-12.480000px;}
._60_c00110{margin-left:-11.232000px;}
._0_c00110{margin-left:-9.216000px;}
._19_c00110{margin-left:-6.480000px;}
._2b_c00110{margin-left:-5.184000px;}
._18_c00110{margin-left:-4.176000px;}
._16_c00110{margin-left:-2.880000px;}
._17_c00110{margin-left:-1.584000px;}
._4d_c00110{width:1.008000px;}
._14_c00110{width:2.016000px;}
._1c_c00110{width:3.168000px;}
._1d_c00110{width:4.704000px;}
._27_c00110{width:5.760000px;}
._26_c00110{width:7.560000px;}
._2f_c00110{width:8.880000px;}
._8_c00110{width:9.888000px;}
._41_c00110{width:10.944000px;}
._c_c00110{width:12.096000px;}
._e_c00110{width:13.680000px;}
._10_c00110{width:14.688000px;}
._d_c00110{width:15.696000px;}
._13_c00110{width:17.568000px;}
._f_c00110{width:19.152000px;}
._21_c00110{width:20.160000px;}
._29_c00110{width:21.864000px;}
._5c_c00110{width:24.312000px;}
._42_c00110{width:25.920000px;}
._2_c00110{width:27.360000px;}
._1e_c00110{width:30.336000px;}
._47_c00110{width:31.524000px;}
._3d_c00110{width:32.640000px;}
._25_c00110{width:33.840000px;}
._49_c00110{width:34.896000px;}
._20_c00110{width:36.144000px;}
._2d_c00110{width:37.152000px;}
._24_c00110{width:38.688000px;}
._4a_c00110{width:39.792000px;}
._5d_c00110{width:41.496000px;}
._28_c00110{width:42.960000px;}
._22_c00110{width:45.312000px;}
._50_c00110{width:46.848000px;}
._2c_c00110{width:48.612000px;}
._4_c00110{width:50.112000px;}
._3c_c00110{width:51.552000px;}
._23_c00110{width:53.376000px;}
._35_c00110{width:55.854000px;}
._4f_c00110{width:58.128000px;}
._15_c00110{width:61.056000px;}
._7_c00110{width:62.688000px;}
._9_c00110{width:68.064000px;}
._4c_c00110{width:77.184000px;}
._48_c00110{width:94.716000px;}
._5b_c00110{width:96.426000px;}
._1f_c00110{width:99.600000px;}
._3e_c00110{width:101.784000px;}
._12_c00110{width:113.088000px;}
._51_c00110{width:123.168000px;}
._11_c00110{width:138.528000px;}
._62_c00110{width:140.352000px;}
._39_c00110{width:144.681000px;}
._61_c00110{width:159.360000px;}
._3b_c00110{width:164.133000px;}
._4b_c00110{width:167.496000px;}
._5e_c00110{width:170.736000px;}
._2a_c00110{width:209.040000px;}
._64_c00110{width:222.780000px;}
._4e_c00110{width:248.592000px;}
._63_c00110{width:259.080000px;}
._3f_c00110{width:267.288000px;}
._56_c00110{width:291.624000px;}
._54_c00110{width:307.806000px;}
._40_c00110{width:378.720000px;}
._2e_c00110{width:379.872000px;}
._37_c00110{width:401.679000px;}
._45_c00110{width:417.648000px;}
._43_c00110{width:471.312000px;}
._58_c00110{width:484.938000px;}
._46_c00110{width:539.376000px;}
._b_c00110{width:560.640000px;}
._31_c00110{width:621.006000px;}
._1b_c00110{width:664.416000px;}
._65_c00110{width:2057.376000px;}
.fc2_c00110{color:transparent;}
.fc1_c00110{color:rgb(128,128,128);}
.fc0_c00110{color:rgb(0,0,0);}
.fs7_c00110{font-size:48.000000px;}
.fs6_c00110{font-size:76.800000px;}
.fs5_c00110{font-size:78.000000px;}
.fs3_c00110{font-size:84.000000px;}
.fs4_c00110{font-size:87.000000px;}
.fs0_c00110{font-size:96.000000px;}
.fs1_c00110{font-size:144.000000px;}
.fs2_c00110{font-size:240.000000px;}
.y0_c00110{bottom:0.000000px;}
.y26_c00110{bottom:3.105000px;}
.y25_c00110{bottom:7.228369px;}
.y24_c00110{bottom:114.120000px;}
.y23_c00110{bottom:147.420000px;}
.y22_c00110{bottom:182.970000px;}
.y21_c00110{bottom:215.970000px;}
.y20_c00110{bottom:250.020000px;}
.y1f_c00110{bottom:283.770000px;}
.y1e_c00110{bottom:317.520000px;}
.y1d_c00110{bottom:351.570000px;}
.y1c_c00110{bottom:384.870000px;}
.y1b_c00110{bottom:419.220000px;}
.y1a_c00110{bottom:453.570000px;}
.y19_c00110{bottom:485.670000px;}
.y18_c00110{bottom:520.470000px;}
.y17_c00110{bottom:554.520000px;}
.y16_c00110{bottom:568.320000px;}
.y15_c00110{bottom:590.520000px;}
.y14_c00110{bottom:622.920000px;}
.y13_c00110{bottom:655.770000px;}
.y12_c00110{bottom:688.170000px;}
.y11_c00110{bottom:721.170000px;}
.y10_c00110{bottom:753.870000px;}
.yf_c00110{bottom:787.770000px;}
.ye_c00110{bottom:821.370000px;}
.yd_c00110{bottom:854.520000px;}
.yc_c00110{bottom:871.020000px;}
.yb_c00110{bottom:889.320000px;}
.ya_c00110{bottom:922.620000px;}
.y9_c00110{bottom:953.820000px;}
.y6_c00110{bottom:983.820000px;}
.y8_c00110{bottom:987.120000px;}
.y7_c00110{bottom:1021.320000px;}
.y5_c00110{bottom:1092.870000px;}
.y4_c00110{bottom:1144.770000px;}
.y3_c00110{bottom:1194.120000px;}
.y2_c00110{bottom:1245.270000px;}
.y1_c00110{bottom:1301.370000px;}
.h7_c00110{height:13.200073px;}
.h8_c00110{height:43.804688px;}
.h2_c00110{height:100.608000px;}
.h6_c00110{height:110.151855px;}
.h5_c00110{height:121.546875px;}
.h3_c00110{height:182.320312px;}
.h4_c00110{height:241.875000px;}
.h0_c00110{height:1383.450000px;}
.h1_c00110{height:1383.750000px;}
.w2_c00110{width:104.875500px;}
.w0_c00110{width:878.025000px;}
.w1_c00110{width:878.250000px;}
.x0_c00110{left:0.000000px;}
.x11_c00110{left:33.000000px;}
.xf_c00110{left:34.200000px;}
.xd_c00110{left:35.400000px;}
.xc_c00110{left:37.500000px;}
.xa_c00110{left:39.750000px;}
.x9_c00110{left:40.800000px;}
.x2_c00110{left:47.250000px;}
.xe_c00110{left:88.800000px;}
.x6_c00110{left:94.800000px;}
.xb_c00110{left:96.450000px;}
.x10_c00110{left:98.100000px;}
.x3_c00110{left:170.400000px;}
.x5_c00110{left:191.100000px;}
.x4_c00110{left:212.400000px;}
.x8_c00110{left:295.050000px;}
.x7_c00110{left:296.100000px;}
.x1_c00110{left:297.450000px;}
.x12_c00110{left:390.826721px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls3_c00110{letter-spacing:-10.666667pt;}
.ls2_c00110{letter-spacing:0.000000pt;}
.ls1_c00110{letter-spacing:5.333333pt;}
.ls0_c00110{letter-spacing:7.573333pt;}
.ls4_c00110{letter-spacing:40.000000pt;}
.ws2_c00110{word-spacing:-17.994667pt;}
.ws1_c00110{word-spacing:-16.709333pt;}
.ws3_c00110{word-spacing:0.000000pt;}
.ws0_c00110{word-spacing:10.026667pt;}
._3a_c00110{margin-left:-63.800000pt;}
._32_c00110{margin-left:-60.088000pt;}
._53_c00110{margin-left:-56.530667pt;}
._30_c00110{margin-left:-54.133333pt;}
._55_c00110{margin-left:-53.205333pt;}
._57_c00110{margin-left:-51.117333pt;}
._38_c00110{margin-left:-46.477333pt;}
._33_c00110{margin-left:-45.205333pt;}
._36_c00110{margin-left:-44.312000pt;}
._5a_c00110{margin-left:-38.589333pt;}
._59_c00110{margin-left:-37.506667pt;}
._34_c00110{margin-left:-32.600000pt;}
._5f_c00110{margin-left:-30.037333pt;}
._52_c00110{margin-left:-27.136000pt;}
._a_c00110{margin-left:-24.746667pt;}
._3_c00110{margin-left:-22.954667pt;}
._5_c00110{margin-left:-20.309333pt;}
._44_c00110{margin-left:-19.114667pt;}
._6_c00110{margin-left:-18.005333pt;}
._1a_c00110{margin-left:-15.360000pt;}
._1_c00110{margin-left:-11.093333pt;}
._60_c00110{margin-left:-9.984000pt;}
._0_c00110{margin-left:-8.192000pt;}
._19_c00110{margin-left:-5.760000pt;}
._2b_c00110{margin-left:-4.608000pt;}
._18_c00110{margin-left:-3.712000pt;}
._16_c00110{margin-left:-2.560000pt;}
._17_c00110{margin-left:-1.408000pt;}
._4d_c00110{width:0.896000pt;}
._14_c00110{width:1.792000pt;}
._1c_c00110{width:2.816000pt;}
._1d_c00110{width:4.181333pt;}
._27_c00110{width:5.120000pt;}
._26_c00110{width:6.720000pt;}
._2f_c00110{width:7.893333pt;}
._8_c00110{width:8.789333pt;}
._41_c00110{width:9.728000pt;}
._c_c00110{width:10.752000pt;}
._e_c00110{width:12.160000pt;}
._10_c00110{width:13.056000pt;}
._d_c00110{width:13.952000pt;}
._13_c00110{width:15.616000pt;}
._f_c00110{width:17.024000pt;}
._21_c00110{width:17.920000pt;}
._29_c00110{width:19.434667pt;}
._5c_c00110{width:21.610667pt;}
._42_c00110{width:23.040000pt;}
._2_c00110{width:24.320000pt;}
._1e_c00110{width:26.965333pt;}
._47_c00110{width:28.021333pt;}
._3d_c00110{width:29.013333pt;}
._25_c00110{width:30.080000pt;}
._49_c00110{width:31.018667pt;}
._20_c00110{width:32.128000pt;}
._2d_c00110{width:33.024000pt;}
._24_c00110{width:34.389333pt;}
._4a_c00110{width:35.370667pt;}
._5d_c00110{width:36.885333pt;}
._28_c00110{width:38.186667pt;}
._22_c00110{width:40.277333pt;}
._50_c00110{width:41.642667pt;}
._2c_c00110{width:43.210667pt;}
._4_c00110{width:44.544000pt;}
._3c_c00110{width:45.824000pt;}
._23_c00110{width:47.445333pt;}
._35_c00110{width:49.648000pt;}
._4f_c00110{width:51.669333pt;}
._15_c00110{width:54.272000pt;}
._7_c00110{width:55.722667pt;}
._9_c00110{width:60.501333pt;}
._4c_c00110{width:68.608000pt;}
._48_c00110{width:84.192000pt;}
._5b_c00110{width:85.712000pt;}
._1f_c00110{width:88.533333pt;}
._3e_c00110{width:90.474667pt;}
._12_c00110{width:100.522667pt;}
._51_c00110{width:109.482667pt;}
._11_c00110{width:123.136000pt;}
._62_c00110{width:124.757333pt;}
._39_c00110{width:128.605333pt;}
._61_c00110{width:141.653333pt;}
._3b_c00110{width:145.896000pt;}
._4b_c00110{width:148.885333pt;}
._5e_c00110{width:151.765333pt;}
._2a_c00110{width:185.813333pt;}
._64_c00110{width:198.026667pt;}
._4e_c00110{width:220.970667pt;}
._63_c00110{width:230.293333pt;}
._3f_c00110{width:237.589333pt;}
._56_c00110{width:259.221333pt;}
._54_c00110{width:273.605333pt;}
._40_c00110{width:336.640000pt;}
._2e_c00110{width:337.664000pt;}
._37_c00110{width:357.048000pt;}
._45_c00110{width:371.242667pt;}
._43_c00110{width:418.944000pt;}
._58_c00110{width:431.056000pt;}
._46_c00110{width:479.445333pt;}
._b_c00110{width:498.346667pt;}
._31_c00110{width:552.005333pt;}
._1b_c00110{width:590.592000pt;}
._65_c00110{width:1828.778667pt;}
.fs7_c00110{font-size:42.666667pt;}
.fs6_c00110{font-size:68.266667pt;}
.fs5_c00110{font-size:69.333333pt;}
.fs3_c00110{font-size:74.666667pt;}
.fs4_c00110{font-size:77.333333pt;}
.fs0_c00110{font-size:85.333333pt;}
.fs1_c00110{font-size:128.000000pt;}
.fs2_c00110{font-size:213.333333pt;}
.y0_c00110{bottom:0.000000pt;}
.y26_c00110{bottom:2.760000pt;}
.y25_c00110{bottom:6.425217pt;}
.y24_c00110{bottom:101.440000pt;}
.y23_c00110{bottom:131.040000pt;}
.y22_c00110{bottom:162.640000pt;}
.y21_c00110{bottom:191.973333pt;}
.y20_c00110{bottom:222.240000pt;}
.y1f_c00110{bottom:252.240000pt;}
.y1e_c00110{bottom:282.240000pt;}
.y1d_c00110{bottom:312.506667pt;}
.y1c_c00110{bottom:342.106667pt;}
.y1b_c00110{bottom:372.640000pt;}
.y1a_c00110{bottom:403.173333pt;}
.y19_c00110{bottom:431.706667pt;}
.y18_c00110{bottom:462.640000pt;}
.y17_c00110{bottom:492.906667pt;}
.y16_c00110{bottom:505.173333pt;}
.y15_c00110{bottom:524.906667pt;}
.y14_c00110{bottom:553.706667pt;}
.y13_c00110{bottom:582.906667pt;}
.y12_c00110{bottom:611.706667pt;}
.y11_c00110{bottom:641.040000pt;}
.y10_c00110{bottom:670.106667pt;}
.yf_c00110{bottom:700.240000pt;}
.ye_c00110{bottom:730.106667pt;}
.yd_c00110{bottom:759.573333pt;}
.yc_c00110{bottom:774.240000pt;}
.yb_c00110{bottom:790.506667pt;}
.ya_c00110{bottom:820.106667pt;}
.y9_c00110{bottom:847.840000pt;}
.y6_c00110{bottom:874.506667pt;}
.y8_c00110{bottom:877.440000pt;}
.y7_c00110{bottom:907.840000pt;}
.y5_c00110{bottom:971.440000pt;}
.y4_c00110{bottom:1017.573333pt;}
.y3_c00110{bottom:1061.440000pt;}
.y2_c00110{bottom:1106.906667pt;}
.y1_c00110{bottom:1156.773333pt;}
.h7_c00110{height:11.733399pt;}
.h8_c00110{height:38.937500pt;}
.h2_c00110{height:89.429333pt;}
.h6_c00110{height:97.912760pt;}
.h5_c00110{height:108.041667pt;}
.h3_c00110{height:162.062500pt;}
.h4_c00110{height:215.000000pt;}
.h0_c00110{height:1229.733333pt;}
.h1_c00110{height:1230.000000pt;}
.w2_c00110{width:93.222667pt;}
.w0_c00110{width:780.466667pt;}
.w1_c00110{width:780.666667pt;}
.x0_c00110{left:0.000000pt;}
.x11_c00110{left:29.333333pt;}
.xf_c00110{left:30.400000pt;}
.xd_c00110{left:31.466667pt;}
.xc_c00110{left:33.333333pt;}
.xa_c00110{left:35.333333pt;}
.x9_c00110{left:36.266667pt;}
.x2_c00110{left:42.000000pt;}
.xe_c00110{left:78.933333pt;}
.x6_c00110{left:84.266667pt;}
.xb_c00110{left:85.733333pt;}
.x10_c00110{left:87.200000pt;}
.x3_c00110{left:151.466667pt;}
.x5_c00110{left:169.866667pt;}
.x4_c00110{left:188.800000pt;}
.x8_c00110{left:262.266667pt;}
.x7_c00110{left:263.200000pt;}
.x1_c00110{left:264.400000pt;}
.x12_c00110{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c40ab2a75b5b6f177b631472.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_8cf965f73d1b7fd2a2e59b24.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls9_c00111{letter-spacing:0.000000px;}
.ls2_c00111{letter-spacing:31.833000px;}
.ls1_c00111{letter-spacing:32.433000px;}
.lsa_c00111{letter-spacing:45.000000px;}
.ls7_c00111{letter-spacing:97.833000px;}
.ls6_c00111{letter-spacing:112.833000px;}
.ls8_c00111{letter-spacing:119.433000px;}
.ls3_c00111{letter-spacing:261.033000px;}
.ls5_c00111{letter-spacing:355.233000px;}
.ls4_c00111{letter-spacing:436.833000px;}
.ls0_c00111{letter-spacing:480.033000px;}
.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;}
}
.ws1_c00111{word-spacing:-20.244000px;}
.ws0_c00111{word-spacing:-18.798000px;}
.ws2_c00111{word-spacing:0.000000px;}
._53_c00111{margin-left:-86.400000px;}
._45_c00111{margin-left:-71.514000px;}
._41_c00111{margin-left:-60.492000px;}
._47_c00111{margin-left:-54.723000px;}
._48_c00111{margin-left:-51.402000px;}
._43_c00111{margin-left:-50.199000px;}
._39_c00111{margin-left:-49.173000px;}
._37_c00111{margin-left:-48.111000px;}
._3b_c00111{margin-left:-46.284000px;}
._32_c00111{margin-left:-43.587000px;}
._38_c00111{margin-left:-40.362000px;}
._5f_c00111{margin-left:-38.643000px;}
._60_c00111{margin-left:-30.246000px;}
._14_c00111{margin-left:-28.224000px;}
._27_c00111{margin-left:-24.876000px;}
._56_c00111{margin-left:-22.950000px;}
._5a_c00111{margin-left:-21.687000px;}
._4c_c00111{margin-left:-17.088000px;}
._15_c00111{margin-left:-16.032000px;}
._46_c00111{margin-left:-13.224000px;}
._58_c00111{margin-left:-11.145000px;}
._29_c00111{margin-left:-9.696000px;}
._3c_c00111{margin-left:-7.530000px;}
._0_c00111{margin-left:-5.952000px;}
._2_c00111{margin-left:-4.320000px;}
._1_c00111{margin-left:-2.880000px;}
._1e_c00111{margin-left:-1.728000px;}
._4_c00111{width:1.920000px;}
._3f_c00111{width:2.922000px;}
._5_c00111{width:3.936000px;}
._8_c00111{width:5.184000px;}
._21_c00111{width:6.432000px;}
._b_c00111{width:7.488000px;}
._17_c00111{width:8.736000px;}
._25_c00111{width:10.368000px;}
._1a_c00111{width:12.000000px;}
._1b_c00111{width:13.824000px;}
._19_c00111{width:14.976000px;}
._4b_c00111{width:16.128000px;}
._13_c00111{width:17.664000px;}
._3_c00111{width:19.680000px;}
._1c_c00111{width:21.504000px;}
._12_c00111{width:24.672000px;}
._40_c00111{width:25.860000px;}
._2b_c00111{width:27.072000px;}
._3d_c00111{width:28.800000px;}
._7_c00111{width:29.952000px;}
._6_c00111{width:31.392000px;}
._55_c00111{width:32.556000px;}
._24_c00111{width:33.792000px;}
._3e_c00111{width:35.190000px;}
._18_c00111{width:36.192000px;}
._16_c00111{width:38.400000px;}
._a_c00111{width:40.032000px;}
._5e_c00111{width:41.070000px;}
._9_c00111{width:42.720000px;}
._57_c00111{width:43.758000px;}
._22_c00111{width:45.024000px;}
._1d_c00111{width:46.560000px;}
._23_c00111{width:47.904000px;}
._20_c00111{width:49.920000px;}
._10_c00111{width:51.456000px;}
._d_c00111{width:53.760000px;}
._11_c00111{width:55.584000px;}
._1f_c00111{width:58.176000px;}
._c_c00111{width:60.288000px;}
._34_c00111{width:62.496000px;}
._f_c00111{width:64.320000px;}
._50_c00111{width:67.362000px;}
._4f_c00111{width:68.940000px;}
._e_c00111{width:72.576000px;}
._2c_c00111{width:75.756000px;}
._3a_c00111{width:79.866000px;}
._4e_c00111{width:85.014000px;}
._28_c00111{width:92.640000px;}
._5c_c00111{width:104.652000px;}
._49_c00111{width:160.032000px;}
._33_c00111{width:185.745000px;}
._2d_c00111{width:194.778000px;}
._2e_c00111{width:206.958000px;}
._42_c00111{width:218.508000px;}
._26_c00111{width:220.572000px;}
._54_c00111{width:221.952000px;}
._31_c00111{width:261.432000px;}
._2a_c00111{width:269.376000px;}
._51_c00111{width:353.568000px;}
._30_c00111{width:377.700000px;}
._61_c00111{width:396.204000px;}
._2f_c00111{width:400.590000px;}
._35_c00111{width:409.110000px;}
._44_c00111{width:450.399000px;}
._5b_c00111{width:548.277000px;}
._4a_c00111{width:549.600000px;}
._5d_c00111{width:550.626000px;}
._36_c00111{width:725.319000px;}
._4d_c00111{width:799.776000px;}
._52_c00111{width:801.984000px;}
._59_c00111{width:1235.010000px;}
.fc2_c00111{color:transparent;}
.fc1_c00111{color:rgb(128,128,128);}
.fc0_c00111{color:rgb(0,0,0);}
.fs5_c00111{font-size:48.000000px;}
.fs2_c00111{font-size:78.000000px;}
.fs1_c00111{font-size:84.000000px;}
.fs3_c00111{font-size:87.000000px;}
.fs0_c00111{font-size:96.000000px;}
.fs4_c00111{font-size:105.000000px;}
.y0_c00111{bottom:0.000000px;}
.y29_c00111{bottom:3.105000px;}
.y28_c00111{bottom:7.228357px;}
.y27_c00111{bottom:97.530000px;}
.y26_c00111{bottom:138.030000px;}
.y25_c00111{bottom:171.480000px;}
.y24_c00111{bottom:204.180000px;}
.y23_c00111{bottom:236.280000px;}
.y22_c00111{bottom:267.930000px;}
.y21_c00111{bottom:292.380000px;}
.y20_c00111{bottom:339.480000px;}
.y1f_c00111{bottom:373.380000px;}
.y1e_c00111{bottom:407.130000px;}
.y1d_c00111{bottom:441.480000px;}
.y1c_c00111{bottom:474.930000px;}
.y1b_c00111{bottom:508.380000px;}
.y1a_c00111{bottom:540.780000px;}
.y19_c00111{bottom:576.780000px;}
.y18_c00111{bottom:610.230000px;}
.y17_c00111{bottom:643.680000px;}
.y16_c00111{bottom:677.730000px;}
.y15_c00111{bottom:709.380000px;}
.y14_c00111{bottom:728.730000px;}
.y13_c00111{bottom:749.580000px;}
.y12_c00111{bottom:781.980000px;}
.y11_c00111{bottom:814.380000px;}
.y10_c00111{bottom:846.780000px;}
.yf_c00111{bottom:878.880000px;}
.ye_c00111{bottom:910.680000px;}
.yd_c00111{bottom:932.580000px;}
.yc_c00111{bottom:946.380000px;}
.yb_c00111{bottom:963.930000px;}
.ya_c00111{bottom:979.380000px;}
.y9_c00111{bottom:1013.130000px;}
.y8_c00111{bottom:1046.430000px;}
.y7_c00111{bottom:1079.730000px;}
.y6_c00111{bottom:1113.030000px;}
.y5_c00111{bottom:1146.180000px;}
.y4_c00111{bottom:1179.180000px;}
.y3_c00111{bottom:1212.630000px;}
.y2_c00111{bottom:1245.480000px;}
.y1_c00111{bottom:1278.780000px;}
.h5_c00111{height:13.200074px;}
.h6_c00111{height:43.804688px;}
.h3_c00111{height:110.151855px;}
.h2_c00111{height:121.546875px;}
.h4_c00111{height:132.941895px;}
.h0_c00111{height:1382.700000px;}
.h1_c00111{height:1383.000000px;}
.w2_c00111{width:104.875500px;}
.w0_c00111{width:863.175000px;}
.w1_c00111{width:863.250000px;}
.x0_c00111{left:0.000000px;}
.xe_c00111{left:53.700000px;}
.x6_c00111{left:54.900000px;}
.x7_c00111{left:56.400000px;}
.x9_c00111{left:59.100000px;}
.xa_c00111{left:61.350000px;}
.xd_c00111{left:83.700000px;}
.x4_c00111{left:86.700000px;}
.xb_c00111{left:167.700000px;}
.x3_c00111{left:253.050000px;}
.x2_c00111{left:271.350000px;}
.x1_c00111{left:273.000000px;}
.xc_c00111{left:274.050000px;}
.x8_c00111{left:275.100000px;}
.x10_c00111{left:383.401749px;}
.x5_c00111{left:420.900000px;}
.xf_c00111{left:704.100000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls9_c00111{letter-spacing:0.000000pt;}
.ls2_c00111{letter-spacing:28.296000pt;}
.ls1_c00111{letter-spacing:28.829333pt;}
.lsa_c00111{letter-spacing:40.000000pt;}
.ls7_c00111{letter-spacing:86.962667pt;}
.ls6_c00111{letter-spacing:100.296000pt;}
.ls8_c00111{letter-spacing:106.162667pt;}
.ls3_c00111{letter-spacing:232.029333pt;}
.ls5_c00111{letter-spacing:315.762667pt;}
.ls4_c00111{letter-spacing:388.296000pt;}
.ls0_c00111{letter-spacing:426.696000pt;}
.ws1_c00111{word-spacing:-17.994667pt;}
.ws0_c00111{word-spacing:-16.709333pt;}
.ws2_c00111{word-spacing:0.000000pt;}
._53_c00111{margin-left:-76.800000pt;}
._45_c00111{margin-left:-63.568000pt;}
._41_c00111{margin-left:-53.770667pt;}
._47_c00111{margin-left:-48.642667pt;}
._48_c00111{margin-left:-45.690667pt;}
._43_c00111{margin-left:-44.621333pt;}
._39_c00111{margin-left:-43.709333pt;}
._37_c00111{margin-left:-42.765333pt;}
._3b_c00111{margin-left:-41.141333pt;}
._32_c00111{margin-left:-38.744000pt;}
._38_c00111{margin-left:-35.877333pt;}
._5f_c00111{margin-left:-34.349333pt;}
._60_c00111{margin-left:-26.885333pt;}
._14_c00111{margin-left:-25.088000pt;}
._27_c00111{margin-left:-22.112000pt;}
._56_c00111{margin-left:-20.400000pt;}
._5a_c00111{margin-left:-19.277333pt;}
._4c_c00111{margin-left:-15.189333pt;}
._15_c00111{margin-left:-14.250667pt;}
._46_c00111{margin-left:-11.754667pt;}
._58_c00111{margin-left:-9.906667pt;}
._29_c00111{margin-left:-8.618667pt;}
._3c_c00111{margin-left:-6.693333pt;}
._0_c00111{margin-left:-5.290667pt;}
._2_c00111{margin-left:-3.840000pt;}
._1_c00111{margin-left:-2.560000pt;}
._1e_c00111{margin-left:-1.536000pt;}
._4_c00111{width:1.706667pt;}
._3f_c00111{width:2.597333pt;}
._5_c00111{width:3.498667pt;}
._8_c00111{width:4.608000pt;}
._21_c00111{width:5.717333pt;}
._b_c00111{width:6.656000pt;}
._17_c00111{width:7.765333pt;}
._25_c00111{width:9.216000pt;}
._1a_c00111{width:10.666667pt;}
._1b_c00111{width:12.288000pt;}
._19_c00111{width:13.312000pt;}
._4b_c00111{width:14.336000pt;}
._13_c00111{width:15.701333pt;}
._3_c00111{width:17.493333pt;}
._1c_c00111{width:19.114667pt;}
._12_c00111{width:21.930667pt;}
._40_c00111{width:22.986667pt;}
._2b_c00111{width:24.064000pt;}
._3d_c00111{width:25.600000pt;}
._7_c00111{width:26.624000pt;}
._6_c00111{width:27.904000pt;}
._55_c00111{width:28.938667pt;}
._24_c00111{width:30.037333pt;}
._3e_c00111{width:31.280000pt;}
._18_c00111{width:32.170667pt;}
._16_c00111{width:34.133333pt;}
._a_c00111{width:35.584000pt;}
._5e_c00111{width:36.506667pt;}
._9_c00111{width:37.973333pt;}
._57_c00111{width:38.896000pt;}
._22_c00111{width:40.021333pt;}
._1d_c00111{width:41.386667pt;}
._23_c00111{width:42.581333pt;}
._20_c00111{width:44.373333pt;}
._10_c00111{width:45.738667pt;}
._d_c00111{width:47.786667pt;}
._11_c00111{width:49.408000pt;}
._1f_c00111{width:51.712000pt;}
._c_c00111{width:53.589333pt;}
._34_c00111{width:55.552000pt;}
._f_c00111{width:57.173333pt;}
._50_c00111{width:59.877333pt;}
._4f_c00111{width:61.280000pt;}
._e_c00111{width:64.512000pt;}
._2c_c00111{width:67.338667pt;}
._3a_c00111{width:70.992000pt;}
._4e_c00111{width:75.568000pt;}
._28_c00111{width:82.346667pt;}
._5c_c00111{width:93.024000pt;}
._49_c00111{width:142.250667pt;}
._33_c00111{width:165.106667pt;}
._2d_c00111{width:173.136000pt;}
._2e_c00111{width:183.962667pt;}
._42_c00111{width:194.229333pt;}
._26_c00111{width:196.064000pt;}
._54_c00111{width:197.290667pt;}
._31_c00111{width:232.384000pt;}
._2a_c00111{width:239.445333pt;}
._51_c00111{width:314.282667pt;}
._30_c00111{width:335.733333pt;}
._61_c00111{width:352.181333pt;}
._2f_c00111{width:356.080000pt;}
._35_c00111{width:363.653333pt;}
._44_c00111{width:400.354667pt;}
._5b_c00111{width:487.357333pt;}
._4a_c00111{width:488.533333pt;}
._5d_c00111{width:489.445333pt;}
._36_c00111{width:644.728000pt;}
._4d_c00111{width:710.912000pt;}
._52_c00111{width:712.874667pt;}
._59_c00111{width:1097.786667pt;}
.fs5_c00111{font-size:42.666667pt;}
.fs2_c00111{font-size:69.333333pt;}
.fs1_c00111{font-size:74.666667pt;}
.fs3_c00111{font-size:77.333333pt;}
.fs0_c00111{font-size:85.333333pt;}
.fs4_c00111{font-size:93.333333pt;}
.y0_c00111{bottom:0.000000pt;}
.y29_c00111{bottom:2.760000pt;}
.y28_c00111{bottom:6.425206pt;}
.y27_c00111{bottom:86.693333pt;}
.y26_c00111{bottom:122.693333pt;}
.y25_c00111{bottom:152.426667pt;}
.y24_c00111{bottom:181.493333pt;}
.y23_c00111{bottom:210.026667pt;}
.y22_c00111{bottom:238.160000pt;}
.y21_c00111{bottom:259.893333pt;}
.y20_c00111{bottom:301.760000pt;}
.y1f_c00111{bottom:331.893333pt;}
.y1e_c00111{bottom:361.893333pt;}
.y1d_c00111{bottom:392.426667pt;}
.y1c_c00111{bottom:422.160000pt;}
.y1b_c00111{bottom:451.893333pt;}
.y1a_c00111{bottom:480.693333pt;}
.y19_c00111{bottom:512.693333pt;}
.y18_c00111{bottom:542.426667pt;}
.y17_c00111{bottom:572.160000pt;}
.y16_c00111{bottom:602.426667pt;}
.y15_c00111{bottom:630.560000pt;}
.y14_c00111{bottom:647.760000pt;}
.y13_c00111{bottom:666.293333pt;}
.y12_c00111{bottom:695.093333pt;}
.y11_c00111{bottom:723.893333pt;}
.y10_c00111{bottom:752.693333pt;}
.yf_c00111{bottom:781.226667pt;}
.ye_c00111{bottom:809.493333pt;}
.yd_c00111{bottom:828.960000pt;}
.yc_c00111{bottom:841.226667pt;}
.yb_c00111{bottom:856.826667pt;}
.ya_c00111{bottom:870.560000pt;}
.y9_c00111{bottom:900.560000pt;}
.y8_c00111{bottom:930.160000pt;}
.y7_c00111{bottom:959.760000pt;}
.y6_c00111{bottom:989.360000pt;}
.y5_c00111{bottom:1018.826667pt;}
.y4_c00111{bottom:1048.160000pt;}
.y3_c00111{bottom:1077.893333pt;}
.y2_c00111{bottom:1107.093333pt;}
.y1_c00111{bottom:1136.693333pt;}
.h5_c00111{height:11.733399pt;}
.h6_c00111{height:38.937500pt;}
.h3_c00111{height:97.912760pt;}
.h2_c00111{height:108.041667pt;}
.h4_c00111{height:118.170573pt;}
.h0_c00111{height:1229.066667pt;}
.h1_c00111{height:1229.333333pt;}
.w2_c00111{width:93.222667pt;}
.w0_c00111{width:767.266667pt;}
.w1_c00111{width:767.333333pt;}
.x0_c00111{left:0.000000pt;}
.xe_c00111{left:47.733333pt;}
.x6_c00111{left:48.800000pt;}
.x7_c00111{left:50.133333pt;}
.x9_c00111{left:52.533333pt;}
.xa_c00111{left:54.533333pt;}
.xd_c00111{left:74.400000pt;}
.x4_c00111{left:77.066667pt;}
.xb_c00111{left:149.066667pt;}
.x3_c00111{left:224.933333pt;}
.x2_c00111{left:241.200000pt;}
.x1_c00111{left:242.666667pt;}
.xc_c00111{left:243.600000pt;}
.x8_c00111{left:244.533333pt;}
.x10_c00111{left:340.801554pt;}
.x5_c00111{left:374.133333pt;}
.xf_c00111{left:625.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68e3fed39b0a6db000d17ef2.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_221deb1676d93378ac152142.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls2_c00112{letter-spacing:0.000000px;}
.ls1_c00112{letter-spacing:8.520000px;}
.ls0_c00112{letter-spacing:10.920000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00112{word-spacing:-23.136000px;}
.ws0_c00112{word-spacing:-20.244000px;}
.ws2_c00112{word-spacing:0.000000px;}
._3e_c00112{margin-left:-34.752000px;}
._30_c00112{margin-left:-26.592000px;}
._40_c00112{margin-left:-23.136000px;}
._31_c00112{margin-left:-20.592000px;}
._3b_c00112{margin-left:-18.432000px;}
._4_c00112{margin-left:-15.552000px;}
._34_c00112{margin-left:-14.400000px;}
._26_c00112{margin-left:-12.672000px;}
._6_c00112{margin-left:-11.232000px;}
._2d_c00112{margin-left:-9.984000px;}
._2c_c00112{margin-left:-8.280000px;}
._5_c00112{margin-left:-6.816000px;}
._24_c00112{margin-left:-4.788000px;}
._2e_c00112{margin-left:-3.660000px;}
._e_c00112{margin-left:-2.208000px;}
._c_c00112{margin-left:-1.152000px;}
._10_c00112{width:1.440000px;}
._2_c00112{width:2.880000px;}
._a_c00112{width:4.608000px;}
._1_c00112{width:5.856000px;}
._1b_c00112{width:7.296000px;}
._9_c00112{width:8.640000px;}
._16_c00112{width:9.792000px;}
._25_c00112{width:11.040000px;}
._17_c00112{width:12.288000px;}
._3_c00112{width:14.304000px;}
._28_c00112{width:15.552000px;}
._8_c00112{width:16.608000px;}
._2f_c00112{width:18.096000px;}
._d_c00112{width:19.200000px;}
._1c_c00112{width:20.640000px;}
._1f_c00112{width:21.792000px;}
._18_c00112{width:24.384000px;}
._1d_c00112{width:25.728000px;}
._7_c00112{width:27.552000px;}
._15_c00112{width:29.184000px;}
._0_c00112{width:30.528000px;}
._41_c00112{width:31.632000px;}
._21_c00112{width:32.688000px;}
._12_c00112{width:34.368000px;}
._1a_c00112{width:36.480000px;}
._22_c00112{width:38.112000px;}
._b_c00112{width:40.512000px;}
._f_c00112{width:41.568000px;}
._3c_c00112{width:43.488000px;}
._19_c00112{width:45.888000px;}
._14_c00112{width:47.424000px;}
._42_c00112{width:49.536000px;}
._2a_c00112{width:52.128000px;}
._32_c00112{width:53.856000px;}
._13_c00112{width:55.392000px;}
._2b_c00112{width:57.960000px;}
._37_c00112{width:97.548000px;}
._38_c00112{width:121.236000px;}
._11_c00112{width:138.240000px;}
._3f_c00112{width:155.136000px;}
._1e_c00112{width:174.132000px;}
._39_c00112{width:205.056000px;}
._27_c00112{width:267.384000px;}
._35_c00112{width:377.664000px;}
._29_c00112{width:389.856000px;}
._33_c00112{width:396.192000px;}
._3d_c00112{width:456.480000px;}
._20_c00112{width:485.424000px;}
._44_c00112{width:561.984000px;}
._36_c00112{width:704.544000px;}
._3a_c00112{width:719.304000px;}
._23_c00112{width:739.104000px;}
._43_c00112{width:886.656000px;}
.fc2_c00112{color:transparent;}
.fc1_c00112{color:rgb(128,128,128);}
.fc0_c00112{color:rgb(0,0,0);}
.fs2_c00112{font-size:48.000000px;}
.fs1_c00112{font-size:84.000000px;}
.fs0_c00112{font-size:96.000000px;}
.y0_c00112{bottom:0.000000px;}
.y26_c00112{bottom:3.105000px;}
.y25_c00112{bottom:7.228369px;}
.y24_c00112{bottom:101.220000px;}
.y23_c00112{bottom:134.220000px;}
.y22_c00112{bottom:168.720000px;}
.y21_c00112{bottom:203.070000px;}
.y20_c00112{bottom:236.520000px;}
.y1f_c00112{bottom:270.720000px;}
.y1e_c00112{bottom:304.470000px;}
.y1d_c00112{bottom:339.120000px;}
.y1c_c00112{bottom:372.870000px;}
.y1b_c00112{bottom:406.020000px;}
.y1a_c00112{bottom:441.120000px;}
.y19_c00112{bottom:474.420000px;}
.y18_c00112{bottom:508.170000px;}
.y17_c00112{bottom:541.920000px;}
.y16_c00112{bottom:575.070000px;}
.y15_c00112{bottom:608.820000px;}
.y14_c00112{bottom:642.270000px;}
.y13_c00112{bottom:676.320000px;}
.y12_c00112{bottom:709.320000px;}
.y11_c00112{bottom:741.870000px;}
.y10_c00112{bottom:775.470000px;}
.yf_c00112{bottom:808.920000px;}
.ye_c00112{bottom:842.070000px;}
.yd_c00112{bottom:875.820000px;}
.yc_c00112{bottom:907.920000px;}
.yb_c00112{bottom:940.320000px;}
.ya_c00112{bottom:973.920000px;}
.y9_c00112{bottom:1007.370000px;}
.y8_c00112{bottom:1043.220000px;}
.y7_c00112{bottom:1076.970000px;}
.y6_c00112{bottom:1108.020000px;}
.y5_c00112{bottom:1143.420000px;}
.y4_c00112{bottom:1176.420000px;}
.y3_c00112{bottom:1209.870000px;}
.y2_c00112{bottom:1243.320000px;}
.y1_c00112{bottom:1275.720000px;}
.h3_c00112{height:13.200073px;}
.h4_c00112{height:43.804688px;}
.h2_c00112{height:121.546875px;}
.h0_c00112{height:1383.450000px;}
.h1_c00112{height:1383.750000px;}
.w2_c00112{width:104.875500px;}
.w0_c00112{width:878.025000px;}
.w1_c00112{width:878.250000px;}
.x0_c00112{left:0.000000px;}
.xb_c00112{left:34.800000px;}
.x9_c00112{left:35.850000px;}
.x8_c00112{left:36.900000px;}
.xa_c00112{left:38.100000px;}
.x7_c00112{left:39.150000px;}
.x6_c00112{left:40.200000px;}
.x5_c00112{left:41.250000px;}
.x3_c00112{left:42.300000px;}
.x2_c00112{left:43.500000px;}
.x1_c00112{left:44.550000px;}
.x4_c00112{left:94.050000px;}
.xc_c00112{left:327.000000px;}
.xd_c00112{left:390.826721px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls2_c00112{letter-spacing:0.000000pt;}
.ls1_c00112{letter-spacing:7.573333pt;}
.ls0_c00112{letter-spacing:9.706667pt;}
.ws1_c00112{word-spacing:-20.565333pt;}
.ws0_c00112{word-spacing:-17.994667pt;}
.ws2_c00112{word-spacing:0.000000pt;}
._3e_c00112{margin-left:-30.890667pt;}
._30_c00112{margin-left:-23.637333pt;}
._40_c00112{margin-left:-20.565333pt;}
._31_c00112{margin-left:-18.304000pt;}
._3b_c00112{margin-left:-16.384000pt;}
._4_c00112{margin-left:-13.824000pt;}
._34_c00112{margin-left:-12.800000pt;}
._26_c00112{margin-left:-11.264000pt;}
._6_c00112{margin-left:-9.984000pt;}
._2d_c00112{margin-left:-8.874667pt;}
._2c_c00112{margin-left:-7.360000pt;}
._5_c00112{margin-left:-6.058667pt;}
._24_c00112{margin-left:-4.256000pt;}
._2e_c00112{margin-left:-3.253333pt;}
._e_c00112{margin-left:-1.962667pt;}
._c_c00112{margin-left:-1.024000pt;}
._10_c00112{width:1.280000pt;}
._2_c00112{width:2.560000pt;}
._a_c00112{width:4.096000pt;}
._1_c00112{width:5.205333pt;}
._1b_c00112{width:6.485333pt;}
._9_c00112{width:7.680000pt;}
._16_c00112{width:8.704000pt;}
._25_c00112{width:9.813333pt;}
._17_c00112{width:10.922667pt;}
._3_c00112{width:12.714667pt;}
._28_c00112{width:13.824000pt;}
._8_c00112{width:14.762667pt;}
._2f_c00112{width:16.085333pt;}
._d_c00112{width:17.066667pt;}
._1c_c00112{width:18.346667pt;}
._1f_c00112{width:19.370667pt;}
._18_c00112{width:21.674667pt;}
._1d_c00112{width:22.869333pt;}
._7_c00112{width:24.490667pt;}
._15_c00112{width:25.941333pt;}
._0_c00112{width:27.136000pt;}
._41_c00112{width:28.117333pt;}
._21_c00112{width:29.056000pt;}
._12_c00112{width:30.549333pt;}
._1a_c00112{width:32.426667pt;}
._22_c00112{width:33.877333pt;}
._b_c00112{width:36.010667pt;}
._f_c00112{width:36.949333pt;}
._3c_c00112{width:38.656000pt;}
._19_c00112{width:40.789333pt;}
._14_c00112{width:42.154667pt;}
._42_c00112{width:44.032000pt;}
._2a_c00112{width:46.336000pt;}
._32_c00112{width:47.872000pt;}
._13_c00112{width:49.237333pt;}
._2b_c00112{width:51.520000pt;}
._37_c00112{width:86.709333pt;}
._38_c00112{width:107.765333pt;}
._11_c00112{width:122.880000pt;}
._3f_c00112{width:137.898667pt;}
._1e_c00112{width:154.784000pt;}
._39_c00112{width:182.272000pt;}
._27_c00112{width:237.674667pt;}
._35_c00112{width:335.701333pt;}
._29_c00112{width:346.538667pt;}
._33_c00112{width:352.170667pt;}
._3d_c00112{width:405.760000pt;}
._20_c00112{width:431.488000pt;}
._44_c00112{width:499.541333pt;}
._36_c00112{width:626.261333pt;}
._3a_c00112{width:639.381333pt;}
._23_c00112{width:656.981333pt;}
._43_c00112{width:788.138667pt;}
.fs2_c00112{font-size:42.666667pt;}
.fs1_c00112{font-size:74.666667pt;}
.fs0_c00112{font-size:85.333333pt;}
.y0_c00112{bottom:0.000000pt;}
.y26_c00112{bottom:2.760000pt;}
.y25_c00112{bottom:6.425217pt;}
.y24_c00112{bottom:89.973333pt;}
.y23_c00112{bottom:119.306667pt;}
.y22_c00112{bottom:149.973333pt;}
.y21_c00112{bottom:180.506667pt;}
.y20_c00112{bottom:210.240000pt;}
.y1f_c00112{bottom:240.640000pt;}
.y1e_c00112{bottom:270.640000pt;}
.y1d_c00112{bottom:301.440000pt;}
.y1c_c00112{bottom:331.440000pt;}
.y1b_c00112{bottom:360.906667pt;}
.y1a_c00112{bottom:392.106667pt;}
.y19_c00112{bottom:421.706667pt;}
.y18_c00112{bottom:451.706667pt;}
.y17_c00112{bottom:481.706667pt;}
.y16_c00112{bottom:511.173333pt;}
.y15_c00112{bottom:541.173333pt;}
.y14_c00112{bottom:570.906667pt;}
.y13_c00112{bottom:601.173333pt;}
.y12_c00112{bottom:630.506667pt;}
.y11_c00112{bottom:659.440000pt;}
.y10_c00112{bottom:689.306667pt;}
.yf_c00112{bottom:719.040000pt;}
.ye_c00112{bottom:748.506667pt;}
.yd_c00112{bottom:778.506667pt;}
.yc_c00112{bottom:807.040000pt;}
.yb_c00112{bottom:835.840000pt;}
.ya_c00112{bottom:865.706667pt;}
.y9_c00112{bottom:895.440000pt;}
.y8_c00112{bottom:927.306667pt;}
.y7_c00112{bottom:957.306667pt;}
.y6_c00112{bottom:984.906667pt;}
.y5_c00112{bottom:1016.373333pt;}
.y4_c00112{bottom:1045.706667pt;}
.y3_c00112{bottom:1075.440000pt;}
.y2_c00112{bottom:1105.173333pt;}
.y1_c00112{bottom:1133.973333pt;}
.h3_c00112{height:11.733399pt;}
.h4_c00112{height:38.937500pt;}
.h2_c00112{height:108.041667pt;}
.h0_c00112{height:1229.733333pt;}
.h1_c00112{height:1230.000000pt;}
.w2_c00112{width:93.222667pt;}
.w0_c00112{width:780.466667pt;}
.w1_c00112{width:780.666667pt;}
.x0_c00112{left:0.000000pt;}
.xb_c00112{left:30.933333pt;}
.x9_c00112{left:31.866667pt;}
.x8_c00112{left:32.800000pt;}
.xa_c00112{left:33.866667pt;}
.x7_c00112{left:34.800000pt;}
.x6_c00112{left:35.733333pt;}
.x5_c00112{left:36.666667pt;}
.x3_c00112{left:37.600000pt;}
.x2_c00112{left:38.666667pt;}
.x1_c00112{left:39.600000pt;}
.x4_c00112{left:83.600000pt;}
.xc_c00112{left:290.666667pt;}
.xd_c00112{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e2b8288075c0ab69570b9c4.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_04c86f1fe618f9702e12c7d8.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls1_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:13.800000px;}
.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;}
}
.ws0_c00113{word-spacing:-20.244000px;}
.ws1_c00113{word-spacing:0.000000px;}
._30_c00113{margin-left:-89.172000px;}
._e_c00113{margin-left:-85.152000px;}
._27_c00113{margin-left:-32.796000px;}
._2c_c00113{margin-left:-30.648000px;}
._33_c00113{margin-left:-27.180000px;}
._28_c00113{margin-left:-24.192000px;}
._45_c00113{margin-left:-21.504000px;}
._35_c00113{margin-left:-19.632000px;}
._34_c00113{margin-left:-17.556000px;}
._11_c00113{margin-left:-15.264000px;}
._2b_c00113{margin-left:-14.028000px;}
._13_c00113{margin-left:-11.616000px;}
._46_c00113{margin-left:-10.524000px;}
._12_c00113{margin-left:-9.504000px;}
._2e_c00113{margin-left:-7.680000px;}
._9_c00113{margin-left:-5.856000px;}
._a_c00113{margin-left:-4.608000px;}
._25_c00113{margin-left:-3.552000px;}
._1a_c00113{margin-left:-2.460000px;}
._1c_c00113{margin-left:-1.116000px;}
._17_c00113{width:1.056000px;}
._3_c00113{width:2.268000px;}
._4_c00113{width:4.128000px;}
._5_c00113{width:5.568000px;}
._0_c00113{width:7.476000px;}
._26_c00113{width:8.664000px;}
._1_c00113{width:9.828000px;}
._1f_c00113{width:10.980000px;}
._d_c00113{width:13.164000px;}
._8_c00113{width:14.508000px;}
._22_c00113{width:15.516000px;}
._1d_c00113{width:16.776000px;}
._29_c00113{width:18.804000px;}
._c_c00113{width:20.004000px;}
._1e_c00113{width:21.324000px;}
._1b_c00113{width:24.180000px;}
._6_c00113{width:25.440000px;}
._23_c00113{width:26.532000px;}
._2_c00113{width:28.500000px;}
._2a_c00113{width:30.444000px;}
._7_c00113{width:31.488000px;}
._24_c00113{width:32.844000px;}
._21_c00113{width:34.584000px;}
._36_c00113{width:36.168000px;}
._20_c00113{width:37.392000px;}
._18_c00113{width:38.760000px;}
._16_c00113{width:41.316000px;}
._15_c00113{width:42.864000px;}
._10_c00113{width:44.568000px;}
._b_c00113{width:47.040000px;}
._41_c00113{width:48.072000px;}
._19_c00113{width:49.476000px;}
._3e_c00113{width:52.140000px;}
._40_c00113{width:53.940000px;}
._14_c00113{width:55.488000px;}
._2f_c00113{width:60.588000px;}
._42_c00113{width:65.520000px;}
._f_c00113{width:67.332000px;}
._3f_c00113{width:68.712000px;}
._37_c00113{width:72.840000px;}
._38_c00113{width:74.112000px;}
._3b_c00113{width:117.024000px;}
._3a_c00113{width:120.288000px;}
._3d_c00113{width:187.968000px;}
._3c_c00113{width:237.144000px;}
._2d_c00113{width:258.816000px;}
._44_c00113{width:323.400000px;}
._39_c00113{width:401.472000px;}
._43_c00113{width:504.204000px;}
._32_c00113{width:620.724000px;}
._31_c00113{width:920.736000px;}
._47_c00113{width:990.120000px;}
.fc2_c00113{color:transparent;}
.fc1_c00113{color:rgb(128,128,128);}
.fc0_c00113{color:rgb(0,0,0);}
.fs4_c00113{font-size:48.000000px;}
.fs2_c00113{font-size:78.000000px;}
.fs0_c00113{font-size:84.000000px;}
.fs1_c00113{font-size:96.000000px;}
.fs3_c00113{font-size:102.000000px;}
.y0_c00113{bottom:0.000000px;}
.y27_c00113{bottom:3.105000px;}
.y26_c00113{bottom:7.228355px;}
.y25_c00113{bottom:75.135000px;}
.y24_c00113{bottom:109.035000px;}
.y23_c00113{bottom:143.085000px;}
.y22_c00113{bottom:176.835000px;}
.y21_c00113{bottom:210.585000px;}
.y20_c00113{bottom:245.985000px;}
.y1f_c00113{bottom:280.035000px;}
.y1e_c00113{bottom:313.185000px;}
.y1d_c00113{bottom:347.835000px;}
.y1c_c00113{bottom:382.035000px;}
.y1b_c00113{bottom:416.085000px;}
.y1a_c00113{bottom:450.135000px;}
.y19_c00113{bottom:483.885000px;}
.y18_c00113{bottom:518.385000px;}
.y17_c00113{bottom:552.135000px;}
.y16_c00113{bottom:585.435000px;}
.y15_c00113{bottom:622.635000px;}
.y14_c00113{bottom:656.685000px;}
.y13_c00113{bottom:688.485000px;}
.y12_c00113{bottom:720.585000px;}
.y11_c00113{bottom:753.585000px;}
.y10_c00113{bottom:785.685000px;}
.yf_c00113{bottom:818.385000px;}
.ye_c00113{bottom:836.235000px;}
.yd_c00113{bottom:856.185000px;}
.yc_c00113{bottom:891.285000px;}
.yb_c00113{bottom:924.285000px;}
.ya_c00113{bottom:955.335000px;}
.y9_c00113{bottom:989.235000px;}
.y8_c00113{bottom:1022.235000px;}
.y7_c00113{bottom:1055.385000px;}
.y6_c00113{bottom:1089.135000px;}
.y5_c00113{bottom:1122.435000px;}
.y4_c00113{bottom:1155.585000px;}
.y3_c00113{bottom:1189.335000px;}
.y2_c00113{bottom:1222.785000px;}
.y1_c00113{bottom:1256.085000px;}
.h3_c00113{height:13.200074px;}
.h4_c00113{height:43.804688px;}
.h2_c00113{height:121.546875px;}
.h1_c00113{height:1366.500000px;}
.h0_c00113{height:1366.725000px;}
.w2_c00113{width:104.875500px;}
.w0_c00113{width:852.675000px;}
.w1_c00113{width:852.750000px;}
.x0_c00113{left:0.000000px;}
.x5_c00113{left:49.950000px;}
.x8_c00113{left:51.000000px;}
.x9_c00113{left:52.200000px;}
.x7_c00113{left:53.250000px;}
.x4_c00113{left:82.350000px;}
.x6_c00113{left:206.550000px;}
.xc_c00113{left:265.950000px;}
.xb_c00113{left:267.000000px;}
.x1_c00113{left:269.100000px;}
.x2_c00113{left:270.900000px;}
.x3_c00113{left:272.400000px;}
.xa_c00113{left:341.550000px;}
.xe_c00113{left:378.151749px;}
.xd_c00113{left:517.350000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls1_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:12.266667pt;}
.ws0_c00113{word-spacing:-17.994667pt;}
.ws1_c00113{word-spacing:0.000000pt;}
._30_c00113{margin-left:-79.264000pt;}
._e_c00113{margin-left:-75.690667pt;}
._27_c00113{margin-left:-29.152000pt;}
._2c_c00113{margin-left:-27.242667pt;}
._33_c00113{margin-left:-24.160000pt;}
._28_c00113{margin-left:-21.504000pt;}
._45_c00113{margin-left:-19.114667pt;}
._35_c00113{margin-left:-17.450667pt;}
._34_c00113{margin-left:-15.605333pt;}
._11_c00113{margin-left:-13.568000pt;}
._2b_c00113{margin-left:-12.469333pt;}
._13_c00113{margin-left:-10.325333pt;}
._46_c00113{margin-left:-9.354667pt;}
._12_c00113{margin-left:-8.448000pt;}
._2e_c00113{margin-left:-6.826667pt;}
._9_c00113{margin-left:-5.205333pt;}
._a_c00113{margin-left:-4.096000pt;}
._25_c00113{margin-left:-3.157333pt;}
._1a_c00113{margin-left:-2.186667pt;}
._1c_c00113{margin-left:-0.992000pt;}
._17_c00113{width:0.938667pt;}
._3_c00113{width:2.016000pt;}
._4_c00113{width:3.669333pt;}
._5_c00113{width:4.949333pt;}
._0_c00113{width:6.645333pt;}
._26_c00113{width:7.701333pt;}
._1_c00113{width:8.736000pt;}
._1f_c00113{width:9.760000pt;}
._d_c00113{width:11.701333pt;}
._8_c00113{width:12.896000pt;}
._22_c00113{width:13.792000pt;}
._1d_c00113{width:14.912000pt;}
._29_c00113{width:16.714667pt;}
._c_c00113{width:17.781333pt;}
._1e_c00113{width:18.954667pt;}
._1b_c00113{width:21.493333pt;}
._6_c00113{width:22.613333pt;}
._23_c00113{width:23.584000pt;}
._2_c00113{width:25.333333pt;}
._2a_c00113{width:27.061333pt;}
._7_c00113{width:27.989333pt;}
._24_c00113{width:29.194667pt;}
._21_c00113{width:30.741333pt;}
._36_c00113{width:32.149333pt;}
._20_c00113{width:33.237333pt;}
._18_c00113{width:34.453333pt;}
._16_c00113{width:36.725333pt;}
._15_c00113{width:38.101333pt;}
._10_c00113{width:39.616000pt;}
._b_c00113{width:41.813333pt;}
._41_c00113{width:42.730667pt;}
._19_c00113{width:43.978667pt;}
._3e_c00113{width:46.346667pt;}
._40_c00113{width:47.946667pt;}
._14_c00113{width:49.322667pt;}
._2f_c00113{width:53.856000pt;}
._42_c00113{width:58.240000pt;}
._f_c00113{width:59.850667pt;}
._3f_c00113{width:61.077333pt;}
._37_c00113{width:64.746667pt;}
._38_c00113{width:65.877333pt;}
._3b_c00113{width:104.021333pt;}
._3a_c00113{width:106.922667pt;}
._3d_c00113{width:167.082667pt;}
._3c_c00113{width:210.794667pt;}
._2d_c00113{width:230.058667pt;}
._44_c00113{width:287.466667pt;}
._39_c00113{width:356.864000pt;}
._43_c00113{width:448.181333pt;}
._32_c00113{width:551.754667pt;}
._31_c00113{width:818.432000pt;}
._47_c00113{width:880.106667pt;}
.fs4_c00113{font-size:42.666667pt;}
.fs2_c00113{font-size:69.333333pt;}
.fs0_c00113{font-size:74.666667pt;}
.fs1_c00113{font-size:85.333333pt;}
.fs3_c00113{font-size:90.666667pt;}
.y0_c00113{bottom:0.000000pt;}
.y27_c00113{bottom:2.760000pt;}
.y26_c00113{bottom:6.425204pt;}
.y25_c00113{bottom:66.786667pt;}
.y24_c00113{bottom:96.920000pt;}
.y23_c00113{bottom:127.186667pt;}
.y22_c00113{bottom:157.186667pt;}
.y21_c00113{bottom:187.186667pt;}
.y20_c00113{bottom:218.653333pt;}
.y1f_c00113{bottom:248.920000pt;}
.y1e_c00113{bottom:278.386667pt;}
.y1d_c00113{bottom:309.186667pt;}
.y1c_c00113{bottom:339.586667pt;}
.y1b_c00113{bottom:369.853333pt;}
.y1a_c00113{bottom:400.120000pt;}
.y19_c00113{bottom:430.120000pt;}
.y18_c00113{bottom:460.786667pt;}
.y17_c00113{bottom:490.786667pt;}
.y16_c00113{bottom:520.386667pt;}
.y15_c00113{bottom:553.453333pt;}
.y14_c00113{bottom:583.720000pt;}
.y13_c00113{bottom:611.986667pt;}
.y12_c00113{bottom:640.520000pt;}
.y11_c00113{bottom:669.853333pt;}
.y10_c00113{bottom:698.386667pt;}
.yf_c00113{bottom:727.453333pt;}
.ye_c00113{bottom:743.320000pt;}
.yd_c00113{bottom:761.053333pt;}
.yc_c00113{bottom:792.253333pt;}
.yb_c00113{bottom:821.586667pt;}
.ya_c00113{bottom:849.186667pt;}
.y9_c00113{bottom:879.320000pt;}
.y8_c00113{bottom:908.653333pt;}
.y7_c00113{bottom:938.120000pt;}
.y6_c00113{bottom:968.120000pt;}
.y5_c00113{bottom:997.720000pt;}
.y4_c00113{bottom:1027.186667pt;}
.y3_c00113{bottom:1057.186667pt;}
.y2_c00113{bottom:1086.920000pt;}
.y1_c00113{bottom:1116.520000pt;}
.h3_c00113{height:11.733399pt;}
.h4_c00113{height:38.937500pt;}
.h2_c00113{height:108.041667pt;}
.h1_c00113{height:1214.666667pt;}
.h0_c00113{height:1214.866667pt;}
.w2_c00113{width:93.222667pt;}
.w0_c00113{width:757.933333pt;}
.w1_c00113{width:758.000000pt;}
.x0_c00113{left:0.000000pt;}
.x5_c00113{left:44.400000pt;}
.x8_c00113{left:45.333333pt;}
.x9_c00113{left:46.400000pt;}
.x7_c00113{left:47.333333pt;}
.x4_c00113{left:73.200000pt;}
.x6_c00113{left:183.600000pt;}
.xc_c00113{left:236.400000pt;}
.xb_c00113{left:237.333333pt;}
.x1_c00113{left:239.200000pt;}
.x2_c00113{left:240.800000pt;}
.x3_c00113{left:242.133333pt;}
.xa_c00113{left:303.600000pt;}
.xe_c00113{left:336.134888pt;}
.xd_c00113{left:459.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c67f38d40bf3629478f6503d.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_1623ce40d9e8d8810a5bed16.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_3012a6cb586ebbcab2f621fa.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_563a026c59965778ff285c65.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00114;src:url('chunks/assets/font_380c074562ccd1def2c47d10.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00114;src:url('chunks/assets/font_27ca41e077d78d73ab49f9a5.woff2')format("woff");}.ff7_c00114{font-family:ff7_c00114;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00114;src:url('chunks/assets/font_eb191625185856fd65457216.woff2')format("woff");}.ff8_c00114{font-family:ff8_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00114;src:url('chunks/assets/font_493ba9d763026c4db9eddfdc.woff2')format("woff");}.ff9_c00114{font-family:ff9_c00114;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00114;src:url('chunks/assets/font_2be85a0dfebbbb2f898541f1.woff2')format("woff");}.ffa_c00114{font-family:ffa_c00114;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00114;src:url('chunks/assets/font_0dab8a63054d5fe41a98220f.woff2')format("woff");}.ffb_c00114{font-family:ffb_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00114;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffc_c00114{font-family:ffc_c00114;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls6_c00114{letter-spacing:0.000000px;}
.ls9_c00114{letter-spacing:6.000000px;}
.ls2_c00114{letter-spacing:9.816000px;}
.ls4_c00114{letter-spacing:10.860000px;}
.ls0_c00114{letter-spacing:14.400000px;}
.lsa_c00114{letter-spacing:15.000000px;}
.ls5_c00114{letter-spacing:15.300000px;}
.ls3_c00114{letter-spacing:17.100000px;}
.ls8_c00114{letter-spacing:24.000000px;}
.ls1_c00114{letter-spacing:24.024000px;}
.ls7_c00114{letter-spacing:45.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00114{word-spacing:-43.084800px;}
.ws6_c00114{word-spacing:-35.244000px;}
.ws0_c00114{word-spacing:-25.305000px;}
.ws2_c00114{word-spacing:-23.136000px;}
.ws4_c00114{word-spacing:-20.967000px;}
.ws1_c00114{word-spacing:-20.244000px;}
.ws5_c00114{word-spacing:-15.060000px;}
.ws7_c00114{word-spacing:0.000000px;}
._6b_c00114{margin-left:-109.800000px;}
._64_c00114{margin-left:-87.963000px;}
._4d_c00114{margin-left:-84.000000px;}
._5d_c00114{margin-left:-80.160000px;}
._6c_c00114{margin-left:-65.250000px;}
._41_c00114{margin-left:-62.205000px;}
._69_c00114{margin-left:-57.240000px;}
._63_c00114{margin-left:-56.028000px;}
._3c_c00114{margin-left:-54.462000px;}
._3f_c00114{margin-left:-52.287000px;}
._6d_c00114{margin-left:-50.895000px;}
._45_c00114{margin-left:-48.285000px;}
._6a_c00114{margin-left:-46.458000px;}
._40_c00114{margin-left:-45.372000px;}
._46_c00114{margin-left:-42.804000px;}
._44_c00114{margin-left:-38.322000px;}
._1f_c00114{margin-left:-30.240000px;}
._32_c00114{margin-left:-28.581000px;}
._49_c00114{margin-left:-27.480000px;}
._47_c00114{margin-left:-26.274000px;}
._43_c00114{margin-left:-24.621000px;}
._4f_c00114{margin-left:-23.541000px;}
._30_c00114{margin-left:-22.026000px;}
._58_c00114{margin-left:-21.003000px;}
._55_c00114{margin-left:-19.740000px;}
._4_c00114{margin-left:-16.170000px;}
._3_c00114{margin-left:-13.335000px;}
._5_c00114{margin-left:-11.130000px;}
._10_c00114{margin-left:-9.345000px;}
._2a_c00114{margin-left:-7.776000px;}
._a_c00114{margin-left:-6.684000px;}
._6_c00114{margin-left:-5.460000px;}
._9_c00114{margin-left:-3.636000px;}
._8_c00114{margin-left:-2.220000px;}
._e_c00114{margin-left:-1.032000px;}
._0_c00114{width:1.800000px;}
._7_c00114{width:3.750000px;}
._f_c00114{width:5.520000px;}
._12_c00114{width:6.912000px;}
._14_c00114{width:7.968000px;}
._4a_c00114{width:9.042000px;}
._1b_c00114{width:10.140000px;}
._1a_c00114{width:11.856000px;}
._15_c00114{width:13.008000px;}
._18_c00114{width:14.850000px;}
._16_c00114{width:16.824000px;}
._23_c00114{width:18.276000px;}
._25_c00114{width:19.728000px;}
._24_c00114{width:20.832000px;}
._1c_c00114{width:25.536000px;}
._b_c00114{width:27.684000px;}
._c_c00114{width:30.210000px;}
._2f_c00114{width:31.326000px;}
._1_c00114{width:35.070000px;}
._17_c00114{width:36.870000px;}
._27_c00114{width:37.932000px;}
._29_c00114{width:39.744000px;}
._39_c00114{width:41.280000px;}
._3a_c00114{width:42.780000px;}
._26_c00114{width:43.968000px;}
._13_c00114{width:45.396000px;}
._1e_c00114{width:46.932000px;}
._28_c00114{width:49.020000px;}
._31_c00114{width:50.916000px;}
._19_c00114{width:52.086000px;}
._11_c00114{width:53.235000px;}
._4c_c00114{width:54.348000px;}
._2e_c00114{width:56.538000px;}
._20_c00114{width:57.888000px;}
._5f_c00114{width:59.544000px;}
._d_c00114{width:62.124000px;}
._3b_c00114{width:63.228000px;}
._22_c00114{width:65.694000px;}
._1d_c00114{width:67.608000px;}
._21_c00114{width:69.546000px;}
._48_c00114{width:77.721000px;}
._2_c00114{width:80.640000px;}
._2d_c00114{width:83.712000px;}
._5a_c00114{width:88.725000px;}
._2b_c00114{width:92.820000px;}
._57_c00114{width:97.800000px;}
._4e_c00114{width:100.992000px;}
._66_c00114{width:102.768000px;}
._54_c00114{width:105.867000px;}
._33_c00114{width:114.990000px;}
._42_c00114{width:120.930000px;}
._2c_c00114{width:123.162000px;}
._59_c00114{width:145.050000px;}
._53_c00114{width:165.090000px;}
._67_c00114{width:169.356000px;}
._34_c00114{width:170.892000px;}
._3d_c00114{width:174.957000px;}
._56_c00114{width:182.580000px;}
._38_c00114{width:187.056000px;}
._4b_c00114{width:206.478000px;}
._5b_c00114{width:209.118000px;}
._65_c00114{width:212.925000px;}
._51_c00114{width:217.761000px;}
._36_c00114{width:244.596000px;}
._52_c00114{width:255.567000px;}
._60_c00114{width:331.242000px;}
._5c_c00114{width:394.230000px;}
._68_c00114{width:469.944000px;}
._62_c00114{width:523.872000px;}
._61_c00114{width:532.575000px;}
._50_c00114{width:620.397000px;}
._5e_c00114{width:966.285000px;}
._35_c00114{width:983.706000px;}
._3e_c00114{width:1050.612000px;}
._37_c00114{width:1502.613000px;}
.fc2_c00114{color:transparent;}
.fc1_c00114{color:rgb(128,128,128);}
.fc0_c00114{color:rgb(0,0,0);}
.fs0_c00114{font-size:30.000000px;}
.fsa_c00114{font-size:36.000000px;}
.fsb_c00114{font-size:48.000000px;}
.fs8_c00114{font-size:60.000000px;}
.fs9_c00114{font-size:75.000000px;}
.fs5_c00114{font-size:76.800000px;}
.fs6_c00114{font-size:78.000000px;}
.fs4_c00114{font-size:84.000000px;}
.fs7_c00114{font-size:87.000000px;}
.fs2_c00114{font-size:96.000000px;}
.fs1_c00114{font-size:102.000000px;}
.fs3_c00114{font-size:105.000000px;}
.y0_c00114{bottom:0.000000px;}
.y28_c00114{bottom:3.105000px;}
.y27_c00114{bottom:7.228371px;}
.y26_c00114{bottom:80.415000px;}
.y25_c00114{bottom:158.265000px;}
.y24_c00114{bottom:216.465000px;}
.y23_c00114{bottom:231.315000px;}
.y22_c00114{bottom:250.215000px;}
.y21_c00114{bottom:284.565000px;}
.y20_c00114{bottom:300.165000px;}
.y1f_c00114{bottom:309.915000px;}
.y1e_c00114{bottom:318.915000px;}
.y1d_c00114{bottom:352.665000px;}
.y1c_c00114{bottom:387.165000px;}
.y1b_c00114{bottom:420.165000px;}
.y1a_c00114{bottom:453.915000px;}
.y19_c00114{bottom:469.215000px;}
.y18_c00114{bottom:489.015000px;}
.y17_c00114{bottom:524.265000px;}
.y16_c00114{bottom:556.515000px;}
.y15_c00114{bottom:590.265000px;}
.y14_c00114{bottom:621.015000px;}
.y13_c00114{bottom:637.515000px;}
.y12_c00114{bottom:656.115000px;}
.y11_c00114{bottom:688.965000px;}
.y10_c00114{bottom:723.315000px;}
.yf_c00114{bottom:757.815000px;}
.ye_c00114{bottom:790.515000px;}
.yd_c00114{bottom:823.215000px;}
.yc_c00114{bottom:856.665000px;}
.yb_c00114{bottom:889.665000px;}
.ya_c00114{bottom:923.865000px;}
.y9_c00114{bottom:955.815000px;}
.y8_c00114{bottom:1057.515000px;}
.y7_c00114{bottom:1090.665000px;}
.y6_c00114{bottom:1123.965000px;}
.y5_c00114{bottom:1157.265000px;}
.y4_c00114{bottom:1191.015000px;}
.y3_c00114{bottom:1224.165000px;}
.y2_c00114{bottom:1256.865000px;}
.y1_c00114{bottom:1290.015000px;}
.h9_c00114{height:13.200074px;}
.h4_c00114{height:37.983398px;}
.ha_c00114{height:43.804688px;}
.h8_c00114{height:45.580078px;}
.h6_c00114{height:70.224609px;}
.h7_c00114{height:78.600000px;}
.h5_c00114{height:110.151855px;}
.h2_c00114{height:121.546875px;}
.h3_c00114{height:132.941895px;}
.h0_c00114{height:1360.275000px;}
.h1_c00114{height:1360.500000px;}
.w2_c00114{width:104.875500px;}
.w1_c00114{width:863.250000px;}
.w0_c00114{width:863.475000px;}
.x0_c00114{left:0.000000px;}
.x8_c00114{left:35.400000px;}
.x5_c00114{left:37.050000px;}
.x6_c00114{left:38.100000px;}
.x4_c00114{left:41.400000px;}
.x3_c00114{left:42.900000px;}
.x2_c00114{left:44.550000px;}
.xc_c00114{left:49.050000px;}
.xf_c00114{left:62.100000px;}
.x9_c00114{left:73.200000px;}
.xa_c00114{left:87.150000px;}
.xe_c00114{left:168.450000px;}
.xb_c00114{left:255.450000px;}
.xd_c00114{left:264.600000px;}
.x12_c00114{left:383.551758px;}
.x10_c00114{left:415.200000px;}
.x1_c00114{left:505.650000px;}
.x11_c00114{left:543.000000px;}
.x7_c00114{left:707.700000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls6_c00114{letter-spacing:0.000000pt;}
.ls9_c00114{letter-spacing:5.333333pt;}
.ls2_c00114{letter-spacing:8.725333pt;}
.ls4_c00114{letter-spacing:9.653333pt;}
.ls0_c00114{letter-spacing:12.800000pt;}
.lsa_c00114{letter-spacing:13.333333pt;}
.ls5_c00114{letter-spacing:13.600000pt;}
.ls3_c00114{letter-spacing:15.200000pt;}
.ls8_c00114{letter-spacing:21.333333pt;}
.ls1_c00114{letter-spacing:21.354667pt;}
.ls7_c00114{letter-spacing:40.000000pt;}
.ws3_c00114{word-spacing:-38.297600pt;}
.ws6_c00114{word-spacing:-31.328000pt;}
.ws0_c00114{word-spacing:-22.493333pt;}
.ws2_c00114{word-spacing:-20.565333pt;}
.ws4_c00114{word-spacing:-18.637333pt;}
.ws1_c00114{word-spacing:-17.994667pt;}
.ws5_c00114{word-spacing:-13.386667pt;}
.ws7_c00114{word-spacing:0.000000pt;}
._6b_c00114{margin-left:-97.600000pt;}
._64_c00114{margin-left:-78.189333pt;}
._4d_c00114{margin-left:-74.666667pt;}
._5d_c00114{margin-left:-71.253333pt;}
._6c_c00114{margin-left:-58.000000pt;}
._41_c00114{margin-left:-55.293333pt;}
._69_c00114{margin-left:-50.880000pt;}
._63_c00114{margin-left:-49.802667pt;}
._3c_c00114{margin-left:-48.410667pt;}
._3f_c00114{margin-left:-46.477333pt;}
._6d_c00114{margin-left:-45.240000pt;}
._45_c00114{margin-left:-42.920000pt;}
._6a_c00114{margin-left:-41.296000pt;}
._40_c00114{margin-left:-40.330667pt;}
._46_c00114{margin-left:-38.048000pt;}
._44_c00114{margin-left:-34.064000pt;}
._1f_c00114{margin-left:-26.880000pt;}
._32_c00114{margin-left:-25.405333pt;}
._49_c00114{margin-left:-24.426667pt;}
._47_c00114{margin-left:-23.354667pt;}
._43_c00114{margin-left:-21.885333pt;}
._4f_c00114{margin-left:-20.925333pt;}
._30_c00114{margin-left:-19.578667pt;}
._58_c00114{margin-left:-18.669333pt;}
._55_c00114{margin-left:-17.546667pt;}
._4_c00114{margin-left:-14.373333pt;}
._3_c00114{margin-left:-11.853333pt;}
._5_c00114{margin-left:-9.893333pt;}
._10_c00114{margin-left:-8.306667pt;}
._2a_c00114{margin-left:-6.912000pt;}
._a_c00114{margin-left:-5.941333pt;}
._6_c00114{margin-left:-4.853333pt;}
._9_c00114{margin-left:-3.232000pt;}
._8_c00114{margin-left:-1.973333pt;}
._e_c00114{margin-left:-0.917333pt;}
._0_c00114{width:1.600000pt;}
._7_c00114{width:3.333333pt;}
._f_c00114{width:4.906667pt;}
._12_c00114{width:6.144000pt;}
._14_c00114{width:7.082667pt;}
._4a_c00114{width:8.037333pt;}
._1b_c00114{width:9.013333pt;}
._1a_c00114{width:10.538667pt;}
._15_c00114{width:11.562667pt;}
._18_c00114{width:13.200000pt;}
._16_c00114{width:14.954667pt;}
._23_c00114{width:16.245333pt;}
._25_c00114{width:17.536000pt;}
._24_c00114{width:18.517333pt;}
._1c_c00114{width:22.698667pt;}
._b_c00114{width:24.608000pt;}
._c_c00114{width:26.853333pt;}
._2f_c00114{width:27.845333pt;}
._1_c00114{width:31.173333pt;}
._17_c00114{width:32.773333pt;}
._27_c00114{width:33.717333pt;}
._29_c00114{width:35.328000pt;}
._39_c00114{width:36.693333pt;}
._3a_c00114{width:38.026667pt;}
._26_c00114{width:39.082667pt;}
._13_c00114{width:40.352000pt;}
._1e_c00114{width:41.717333pt;}
._28_c00114{width:43.573333pt;}
._31_c00114{width:45.258667pt;}
._19_c00114{width:46.298667pt;}
._11_c00114{width:47.320000pt;}
._4c_c00114{width:48.309333pt;}
._2e_c00114{width:50.256000pt;}
._20_c00114{width:51.456000pt;}
._5f_c00114{width:52.928000pt;}
._d_c00114{width:55.221333pt;}
._3b_c00114{width:56.202667pt;}
._22_c00114{width:58.394667pt;}
._1d_c00114{width:60.096000pt;}
._21_c00114{width:61.818667pt;}
._48_c00114{width:69.085333pt;}
._2_c00114{width:71.680000pt;}
._2d_c00114{width:74.410667pt;}
._5a_c00114{width:78.866667pt;}
._2b_c00114{width:82.506667pt;}
._57_c00114{width:86.933333pt;}
._4e_c00114{width:89.770667pt;}
._66_c00114{width:91.349333pt;}
._54_c00114{width:94.104000pt;}
._33_c00114{width:102.213333pt;}
._42_c00114{width:107.493333pt;}
._2c_c00114{width:109.477333pt;}
._59_c00114{width:128.933333pt;}
._53_c00114{width:146.746667pt;}
._67_c00114{width:150.538667pt;}
._34_c00114{width:151.904000pt;}
._3d_c00114{width:155.517333pt;}
._56_c00114{width:162.293333pt;}
._38_c00114{width:166.272000pt;}
._4b_c00114{width:183.536000pt;}
._5b_c00114{width:185.882667pt;}
._65_c00114{width:189.266667pt;}
._51_c00114{width:193.565333pt;}
._36_c00114{width:217.418667pt;}
._52_c00114{width:227.170667pt;}
._60_c00114{width:294.437333pt;}
._5c_c00114{width:350.426667pt;}
._68_c00114{width:417.728000pt;}
._62_c00114{width:465.664000pt;}
._61_c00114{width:473.400000pt;}
._50_c00114{width:551.464000pt;}
._5e_c00114{width:858.920000pt;}
._35_c00114{width:874.405333pt;}
._3e_c00114{width:933.877333pt;}
._37_c00114{width:1335.656000pt;}
.fs0_c00114{font-size:26.666667pt;}
.fsa_c00114{font-size:32.000000pt;}
.fsb_c00114{font-size:42.666667pt;}
.fs8_c00114{font-size:53.333333pt;}
.fs9_c00114{font-size:66.666667pt;}
.fs5_c00114{font-size:68.266667pt;}
.fs6_c00114{font-size:69.333333pt;}
.fs4_c00114{font-size:74.666667pt;}
.fs7_c00114{font-size:77.333333pt;}
.fs2_c00114{font-size:85.333333pt;}
.fs1_c00114{font-size:90.666667pt;}
.fs3_c00114{font-size:93.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.y28_c00114{bottom:2.760000pt;}
.y27_c00114{bottom:6.425219pt;}
.y26_c00114{bottom:71.480000pt;}
.y25_c00114{bottom:140.680000pt;}
.y24_c00114{bottom:192.413333pt;}
.y23_c00114{bottom:205.613333pt;}
.y22_c00114{bottom:222.413333pt;}
.y21_c00114{bottom:252.946667pt;}
.y20_c00114{bottom:266.813333pt;}
.y1f_c00114{bottom:275.480000pt;}
.y1e_c00114{bottom:283.480000pt;}
.y1d_c00114{bottom:313.480000pt;}
.y1c_c00114{bottom:344.146667pt;}
.y1b_c00114{bottom:373.480000pt;}
.y1a_c00114{bottom:403.480000pt;}
.y19_c00114{bottom:417.080000pt;}
.y18_c00114{bottom:434.680000pt;}
.y17_c00114{bottom:466.013333pt;}
.y16_c00114{bottom:494.680000pt;}
.y15_c00114{bottom:524.680000pt;}
.y14_c00114{bottom:552.013333pt;}
.y13_c00114{bottom:566.680000pt;}
.y12_c00114{bottom:583.213333pt;}
.y11_c00114{bottom:612.413333pt;}
.y10_c00114{bottom:642.946667pt;}
.yf_c00114{bottom:673.613333pt;}
.ye_c00114{bottom:702.680000pt;}
.yd_c00114{bottom:731.746667pt;}
.yc_c00114{bottom:761.480000pt;}
.yb_c00114{bottom:790.813333pt;}
.ya_c00114{bottom:821.213333pt;}
.y9_c00114{bottom:849.613333pt;}
.y8_c00114{bottom:940.013333pt;}
.y7_c00114{bottom:969.480000pt;}
.y6_c00114{bottom:999.080000pt;}
.y5_c00114{bottom:1028.680000pt;}
.y4_c00114{bottom:1058.680000pt;}
.y3_c00114{bottom:1088.146667pt;}
.y2_c00114{bottom:1117.213333pt;}
.y1_c00114{bottom:1146.680000pt;}
.h9_c00114{height:11.733399pt;}
.h4_c00114{height:33.763021pt;}
.ha_c00114{height:38.937500pt;}
.h8_c00114{height:40.515625pt;}
.h6_c00114{height:62.421875pt;}
.h7_c00114{height:69.866667pt;}
.h5_c00114{height:97.912760pt;}
.h2_c00114{height:108.041667pt;}
.h3_c00114{height:118.170573pt;}
.h0_c00114{height:1209.133333pt;}
.h1_c00114{height:1209.333333pt;}
.w2_c00114{width:93.222667pt;}
.w1_c00114{width:767.333333pt;}
.w0_c00114{width:767.533333pt;}
.x0_c00114{left:0.000000pt;}
.x8_c00114{left:31.466667pt;}
.x5_c00114{left:32.933333pt;}
.x6_c00114{left:33.866667pt;}
.x4_c00114{left:36.800000pt;}
.x3_c00114{left:38.133333pt;}
.x2_c00114{left:39.600000pt;}
.xc_c00114{left:43.600000pt;}
.xf_c00114{left:55.200000pt;}
.x9_c00114{left:65.066667pt;}
.xa_c00114{left:77.466667pt;}
.xe_c00114{left:149.733333pt;}
.xb_c00114{left:227.066667pt;}
.xd_c00114{left:235.200000pt;}
.x12_c00114{left:340.934896pt;}
.x10_c00114{left:369.066667pt;}
.x1_c00114{left:449.466667pt;}
.x11_c00114{left:482.666667pt;}
.x7_c00114{left:629.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_53151165b9cc912426636d8e.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_d9e71df6c788b1f7a15ceb19.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_dde43dee1c22a8719c66e673.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_7522d8cead8d222e94e8489d.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls7_c00115{letter-spacing:-18.000000px;}
.ls5_c00115{letter-spacing:0.000000px;}
.ls8_c00115{letter-spacing:12.000000px;}
.ls6_c00115{letter-spacing:15.000000px;}
.ls2_c00115{letter-spacing:26.112000px;}
.ls0_c00115{letter-spacing:132.696000px;}
.ls1_c00115{letter-spacing:137.496000px;}
.ls4_c00115{letter-spacing:230.895000px;}
.ls3_c00115{letter-spacing:1071.495000px;}
.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;}
}
.ws3_c00115{word-spacing:-35.244000px;}
.ws5_c00115{word-spacing:-28.068000px;}
.ws0_c00115{word-spacing:-0.249600px;}
.ws7_c00115{word-spacing:0.000000px;}
.ws1_c00115{word-spacing:0.216000px;}
.ws6_c00115{word-spacing:3.432000px;}
.ws2_c00115{word-spacing:12.902400px;}
.ws4_c00115{word-spacing:22.620000px;}
._21_c00115{margin-left:-33.345000px;}
._43_c00115{margin-left:-24.780000px;}
._41_c00115{margin-left:-22.260000px;}
._28_c00115{margin-left:-20.928000px;}
._4c_c00115{margin-left:-19.686000px;}
._3f_c00115{margin-left:-18.060000px;}
._4d_c00115{margin-left:-16.878000px;}
._4e_c00115{margin-left:-14.880000px;}
._2f_c00115{margin-left:-13.500000px;}
._3d_c00115{margin-left:-11.209800px;}
._f_c00115{margin-left:-8.928000px;}
._11_c00115{margin-left:-7.632000px;}
._14_c00115{margin-left:-5.568000px;}
._12_c00115{margin-left:-4.320000px;}
._6_c00115{margin-left:-3.024000px;}
._8_c00115{margin-left:-1.296000px;}
._b_c00115{width:1.584000px;}
._a_c00115{width:3.312000px;}
._d_c00115{width:4.608000px;}
._c_c00115{width:6.336000px;}
._2e_c00115{width:7.440000px;}
._1a_c00115{width:8.448000px;}
._19_c00115{width:9.876000px;}
._1f_c00115{width:11.340000px;}
._e_c00115{width:12.672000px;}
._13_c00115{width:13.824000px;}
._22_c00115{width:14.895000px;}
._1d_c00115{width:16.224000px;}
._18_c00115{width:17.784000px;}
._17_c00115{width:19.392000px;}
._10_c00115{width:20.448000px;}
._1c_c00115{width:21.840000px;}
._26_c00115{width:25.728000px;}
._20_c00115{width:26.874000px;}
._51_c00115{width:28.320000px;}
._0_c00115{width:29.376000px;}
._4_c00115{width:30.528000px;}
._2_c00115{width:32.256000px;}
._25_c00115{width:34.176000px;}
._24_c00115{width:35.832000px;}
._1_c00115{width:37.440000px;}
._34_c00115{width:39.168000px;}
._23_c00115{width:40.224000px;}
._2b_c00115{width:41.700000px;}
._5_c00115{width:42.892800px;}
._4a_c00115{width:44.352000px;}
._3_c00115{width:45.619200px;}
._4b_c00115{width:46.668000px;}
._1e_c00115{width:48.156000px;}
._36_c00115{width:49.512000px;}
._52_c00115{width:50.884800px;}
._50_c00115{width:53.215200px;}
._33_c00115{width:54.289200px;}
._29_c00115{width:55.776000px;}
._4f_c00115{width:60.528000px;}
._46_c00115{width:61.593000px;}
._3e_c00115{width:62.805000px;}
._9_c00115{width:65.808000px;}
._7_c00115{width:67.824000px;}
._35_c00115{width:68.976000px;}
._32_c00115{width:77.664000px;}
._31_c00115{width:81.264000px;}
._30_c00115{width:86.256000px;}
._48_c00115{width:125.895000px;}
._49_c00115{width:127.575000px;}
._45_c00115{width:136.218000px;}
._38_c00115{width:161.040000px;}
._44_c00115{width:165.795000px;}
._3b_c00115{width:171.180000px;}
._42_c00115{width:181.125000px;}
._40_c00115{width:185.220000px;}
._2d_c00115{width:194.292000px;}
._3a_c00115{width:266.584800px;}
._47_c00115{width:276.141000px;}
._27_c00115{width:518.892000px;}
._3c_c00115{width:549.586800px;}
._2c_c00115{width:647.850000px;}
._16_c00115{width:652.704000px;}
._2a_c00115{width:664.602000px;}
._15_c00115{width:715.132800px;}
._37_c00115{width:761.088000px;}
._1b_c00115{width:1252.854000px;}
._39_c00115{width:1531.200000px;}
._53_c00115{width:1857.600000px;}
.fc2_c00115{color:transparent;}
.fc1_c00115{color:rgb(128,128,128);}
.fc0_c00115{color:rgb(0,0,0);}
.fs6_c00115{font-size:48.000000px;}
.fs3_c00115{font-size:78.000000px;}
.fs4_c00115{font-size:84.000000px;}
.fs2_c00115{font-size:96.000000px;}
.fs5_c00115{font-size:105.000000px;}
.fs0_c00115{font-size:115.200000px;}
.fs1_c00115{font-size:144.000000px;}
.y0_c00115{bottom:0.000000px;}
.y25_c00115{bottom:3.105000px;}
.y24_c00115{bottom:7.228357px;}
.y23_c00115{bottom:80.730000px;}
.y22_c00115{bottom:115.830000px;}
.y21_c00115{bottom:150.930000px;}
.y20_c00115{bottom:185.280000px;}
.y1f_c00115{bottom:219.480000px;}
.y1e_c00115{bottom:253.230000px;}
.y1d_c00115{bottom:286.980000px;}
.y1c_c00115{bottom:321.330000px;}
.y1b_c00115{bottom:355.080000px;}
.y1a_c00115{bottom:389.430000px;}
.y19_c00115{bottom:423.030000px;}
.y18_c00115{bottom:457.080000px;}
.y17_c00115{bottom:491.130000px;}
.y16_c00115{bottom:508.380000px;}
.y15_c00115{bottom:529.980000px;}
.y14_c00115{bottom:562.980000px;}
.y13_c00115{bottom:592.680000px;}
.y12_c00115{bottom:626.730000px;}
.y11_c00115{bottom:660.930000px;}
.y10_c00115{bottom:694.680000px;}
.yf_c00115{bottom:728.280000px;}
.ye_c00115{bottom:761.430000px;}
.yd_c00115{bottom:780.630000px;}
.yc_c00115{bottom:795.480000px;}
.yb_c00115{bottom:829.230000px;}
.ya_c00115{bottom:862.980000px;}
.y9_c00115{bottom:896.730000px;}
.y8_c00115{bottom:932.580000px;}
.y7_c00115{bottom:967.230000px;}
.y6_c00115{bottom:999.780000px;}
.y5_c00115{bottom:1030.080000px;}
.y4_c00115{bottom:1102.380000px;}
.y3_c00115{bottom:1148.880000px;}
.y2_c00115{bottom:1203.630000px;}
.y1_c00115{bottom:1254.930000px;}
.h5_c00115{height:13.200074px;}
.h6_c00115{height:43.804688px;}
.h3_c00115{height:121.546875px;}
.h4_c00115{height:132.941895px;}
.h2_c00115{height:182.320312px;}
.h0_c00115{height:1382.700000px;}
.h1_c00115{height:1383.000000px;}
.w2_c00115{width:104.875500px;}
.w0_c00115{width:863.175000px;}
.w1_c00115{width:863.250000px;}
.x0_c00115{left:0.000000px;}
.x11_c00115{left:49.350000px;}
.x10_c00115{left:51.600000px;}
.x7_c00115{left:53.700000px;}
.x5_c00115{left:55.800000px;}
.xf_c00115{left:66.600000px;}
.xe_c00115{left:68.850000px;}
.x6_c00115{left:83.400000px;}
.xb_c00115{left:96.300000px;}
.xa_c00115{left:98.550000px;}
.x12_c00115{left:264.900000px;}
.xd_c00115{left:266.400000px;}
.x8_c00115{left:267.600000px;}
.x9_c00115{left:268.650000px;}
.x1_c00115{left:271.350000px;}
.xc_c00115{left:318.900000px;}
.x13_c00115{left:321.000000px;}
.x2_c00115{left:372.900000px;}
.x14_c00115{left:383.401749px;}
.x3_c00115{left:421.500000px;}
.x4_c00115{left:451.650000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls7_c00115{letter-spacing:-16.000000pt;}
.ls5_c00115{letter-spacing:0.000000pt;}
.ls8_c00115{letter-spacing:10.666667pt;}
.ls6_c00115{letter-spacing:13.333333pt;}
.ls2_c00115{letter-spacing:23.210667pt;}
.ls0_c00115{letter-spacing:117.952000pt;}
.ls1_c00115{letter-spacing:122.218667pt;}
.ls4_c00115{letter-spacing:205.240000pt;}
.ls3_c00115{letter-spacing:952.440000pt;}
.ws3_c00115{word-spacing:-31.328000pt;}
.ws5_c00115{word-spacing:-24.949333pt;}
.ws0_c00115{word-spacing:-0.221867pt;}
.ws7_c00115{word-spacing:0.000000pt;}
.ws1_c00115{word-spacing:0.192000pt;}
.ws6_c00115{word-spacing:3.050667pt;}
.ws2_c00115{word-spacing:11.468800pt;}
.ws4_c00115{word-spacing:20.106667pt;}
._21_c00115{margin-left:-29.640000pt;}
._43_c00115{margin-left:-22.026667pt;}
._41_c00115{margin-left:-19.786667pt;}
._28_c00115{margin-left:-18.602667pt;}
._4c_c00115{margin-left:-17.498667pt;}
._3f_c00115{margin-left:-16.053333pt;}
._4d_c00115{margin-left:-15.002667pt;}
._4e_c00115{margin-left:-13.226667pt;}
._2f_c00115{margin-left:-12.000000pt;}
._3d_c00115{margin-left:-9.964267pt;}
._f_c00115{margin-left:-7.936000pt;}
._11_c00115{margin-left:-6.784000pt;}
._14_c00115{margin-left:-4.949333pt;}
._12_c00115{margin-left:-3.840000pt;}
._6_c00115{margin-left:-2.688000pt;}
._8_c00115{margin-left:-1.152000pt;}
._b_c00115{width:1.408000pt;}
._a_c00115{width:2.944000pt;}
._d_c00115{width:4.096000pt;}
._c_c00115{width:5.632000pt;}
._2e_c00115{width:6.613333pt;}
._1a_c00115{width:7.509333pt;}
._19_c00115{width:8.778667pt;}
._1f_c00115{width:10.080000pt;}
._e_c00115{width:11.264000pt;}
._13_c00115{width:12.288000pt;}
._22_c00115{width:13.240000pt;}
._1d_c00115{width:14.421333pt;}
._18_c00115{width:15.808000pt;}
._17_c00115{width:17.237333pt;}
._10_c00115{width:18.176000pt;}
._1c_c00115{width:19.413333pt;}
._26_c00115{width:22.869333pt;}
._20_c00115{width:23.888000pt;}
._51_c00115{width:25.173333pt;}
._0_c00115{width:26.112000pt;}
._4_c00115{width:27.136000pt;}
._2_c00115{width:28.672000pt;}
._25_c00115{width:30.378667pt;}
._24_c00115{width:31.850667pt;}
._1_c00115{width:33.280000pt;}
._34_c00115{width:34.816000pt;}
._23_c00115{width:35.754667pt;}
._2b_c00115{width:37.066667pt;}
._5_c00115{width:38.126933pt;}
._4a_c00115{width:39.424000pt;}
._3_c00115{width:40.550400pt;}
._4b_c00115{width:41.482667pt;}
._1e_c00115{width:42.805333pt;}
._36_c00115{width:44.010667pt;}
._52_c00115{width:45.230933pt;}
._50_c00115{width:47.302400pt;}
._33_c00115{width:48.257067pt;}
._29_c00115{width:49.578667pt;}
._4f_c00115{width:53.802667pt;}
._46_c00115{width:54.749333pt;}
._3e_c00115{width:55.826667pt;}
._9_c00115{width:58.496000pt;}
._7_c00115{width:60.288000pt;}
._35_c00115{width:61.312000pt;}
._32_c00115{width:69.034667pt;}
._31_c00115{width:72.234667pt;}
._30_c00115{width:76.672000pt;}
._48_c00115{width:111.906667pt;}
._49_c00115{width:113.400000pt;}
._45_c00115{width:121.082667pt;}
._38_c00115{width:143.146667pt;}
._44_c00115{width:147.373333pt;}
._3b_c00115{width:152.160000pt;}
._42_c00115{width:161.000000pt;}
._40_c00115{width:164.640000pt;}
._2d_c00115{width:172.704000pt;}
._3a_c00115{width:236.964267pt;}
._47_c00115{width:245.458667pt;}
._27_c00115{width:461.237333pt;}
._3c_c00115{width:488.521600pt;}
._2c_c00115{width:575.866667pt;}
._16_c00115{width:580.181333pt;}
._2a_c00115{width:590.757333pt;}
._15_c00115{width:635.673600pt;}
._37_c00115{width:676.522667pt;}
._1b_c00115{width:1113.648000pt;}
._39_c00115{width:1361.066667pt;}
._53_c00115{width:1651.200000pt;}
.fs6_c00115{font-size:42.666667pt;}
.fs3_c00115{font-size:69.333333pt;}
.fs4_c00115{font-size:74.666667pt;}
.fs2_c00115{font-size:85.333333pt;}
.fs5_c00115{font-size:93.333333pt;}
.fs0_c00115{font-size:102.400000pt;}
.fs1_c00115{font-size:128.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y25_c00115{bottom:2.760000pt;}
.y24_c00115{bottom:6.425206pt;}
.y23_c00115{bottom:71.760000pt;}
.y22_c00115{bottom:102.960000pt;}
.y21_c00115{bottom:134.160000pt;}
.y20_c00115{bottom:164.693333pt;}
.y1f_c00115{bottom:195.093333pt;}
.y1e_c00115{bottom:225.093333pt;}
.y1d_c00115{bottom:255.093333pt;}
.y1c_c00115{bottom:285.626667pt;}
.y1b_c00115{bottom:315.626667pt;}
.y1a_c00115{bottom:346.160000pt;}
.y19_c00115{bottom:376.026667pt;}
.y18_c00115{bottom:406.293333pt;}
.y17_c00115{bottom:436.560000pt;}
.y16_c00115{bottom:451.893333pt;}
.y15_c00115{bottom:471.093333pt;}
.y14_c00115{bottom:500.426667pt;}
.y13_c00115{bottom:526.826667pt;}
.y12_c00115{bottom:557.093333pt;}
.y11_c00115{bottom:587.493333pt;}
.y10_c00115{bottom:617.493333pt;}
.yf_c00115{bottom:647.360000pt;}
.ye_c00115{bottom:676.826667pt;}
.yd_c00115{bottom:693.893333pt;}
.yc_c00115{bottom:707.093333pt;}
.yb_c00115{bottom:737.093333pt;}
.ya_c00115{bottom:767.093333pt;}
.y9_c00115{bottom:797.093333pt;}
.y8_c00115{bottom:828.960000pt;}
.y7_c00115{bottom:859.760000pt;}
.y6_c00115{bottom:888.693333pt;}
.y5_c00115{bottom:915.626667pt;}
.y4_c00115{bottom:979.893333pt;}
.y3_c00115{bottom:1021.226667pt;}
.y2_c00115{bottom:1069.893333pt;}
.y1_c00115{bottom:1115.493333pt;}
.h5_c00115{height:11.733399pt;}
.h6_c00115{height:38.937500pt;}
.h3_c00115{height:108.041667pt;}
.h4_c00115{height:118.170573pt;}
.h2_c00115{height:162.062500pt;}
.h0_c00115{height:1229.066667pt;}
.h1_c00115{height:1229.333333pt;}
.w2_c00115{width:93.222667pt;}
.w0_c00115{width:767.266667pt;}
.w1_c00115{width:767.333333pt;}
.x0_c00115{left:0.000000pt;}
.x11_c00115{left:43.866667pt;}
.x10_c00115{left:45.866667pt;}
.x7_c00115{left:47.733333pt;}
.x5_c00115{left:49.600000pt;}
.xf_c00115{left:59.200000pt;}
.xe_c00115{left:61.200000pt;}
.x6_c00115{left:74.133333pt;}
.xb_c00115{left:85.600000pt;}
.xa_c00115{left:87.600000pt;}
.x12_c00115{left:235.466667pt;}
.xd_c00115{left:236.800000pt;}
.x8_c00115{left:237.866667pt;}
.x9_c00115{left:238.800000pt;}
.x1_c00115{left:241.200000pt;}
.xc_c00115{left:283.466667pt;}
.x13_c00115{left:285.333333pt;}
.x2_c00115{left:331.466667pt;}
.x14_c00115{left:340.801554pt;}
.x3_c00115{left:374.666667pt;}
.x4_c00115{left:401.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af3bed975522b4876ab0b39c.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_cd01ee66a55e6c7f29e0421e.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_470a5ff8c31740afeaaae025.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_afc3ab1d1da6721f044ff6c3.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls2_c00116{letter-spacing:0.000000px;}
.ls5_c00116{letter-spacing:3.000000px;}
.ls3_c00116{letter-spacing:6.000000px;}
.ls4_c00116{letter-spacing:33.000000px;}
.ls0_c00116{letter-spacing:117.600000px;}
.ls1_c00116{letter-spacing:283.800000px;}
.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;}
}
.ws2_c00116{word-spacing:-56.859000px;}
.ws0_c00116{word-spacing:-23.136000px;}
.ws1_c00116{word-spacing:-20.244000px;}
.ws3_c00116{word-spacing:-18.798000px;}
.ws4_c00116{word-spacing:0.000000px;}
._4a_c00116{margin-left:-81.888000px;}
._4c_c00116{margin-left:-77.664000px;}
._38_c00116{margin-left:-54.510000px;}
._36_c00116{margin-left:-52.770000px;}
._37_c00116{margin-left:-49.500000px;}
._33_c00116{margin-left:-41.856000px;}
._46_c00116{margin-left:-29.472000px;}
._51_c00116{margin-left:-26.880000px;}
._4f_c00116{margin-left:-24.576000px;}
._4_c00116{margin-left:-19.296000px;}
._32_c00116{margin-left:-18.240000px;}
._30_c00116{margin-left:-17.184000px;}
._3b_c00116{margin-left:-15.648000px;}
._5_c00116{margin-left:-13.920000px;}
._44_c00116{margin-left:-12.552000px;}
._45_c00116{margin-left:-11.496000px;}
._22_c00116{margin-left:-9.504000px;}
._1e_c00116{margin-left:-8.256000px;}
._2a_c00116{margin-left:-7.224000px;}
._29_c00116{margin-left:-6.168000px;}
._21_c00116{margin-left:-4.488000px;}
._a_c00116{margin-left:-2.592000px;}
._b_c00116{margin-left:-1.344000px;}
._0_c00116{width:1.728000px;}
._2_c00116{width:3.360000px;}
._8_c00116{width:4.896000px;}
._f_c00116{width:6.240000px;}
._10_c00116{width:7.584000px;}
._1a_c00116{width:9.408000px;}
._d_c00116{width:10.464000px;}
._1b_c00116{width:11.808000px;}
._2b_c00116{width:12.864000px;}
._1d_c00116{width:14.592000px;}
._3c_c00116{width:16.488000px;}
._20_c00116{width:17.544000px;}
._16_c00116{width:19.200000px;}
._15_c00116{width:21.600000px;}
._14_c00116{width:25.056000px;}
._12_c00116{width:26.400000px;}
._11_c00116{width:27.552000px;}
._48_c00116{width:28.704000px;}
._26_c00116{width:29.952000px;}
._1_c00116{width:32.064000px;}
._9_c00116{width:33.984000px;}
._c_c00116{width:36.000000px;}
._e_c00116{width:37.824000px;}
._13_c00116{width:38.880000px;}
._2d_c00116{width:40.464000px;}
._23_c00116{width:41.568000px;}
._6_c00116{width:42.816000px;}
._24_c00116{width:43.848000px;}
._7_c00116{width:46.368000px;}
._2c_c00116{width:47.616000px;}
._2f_c00116{width:48.864000px;}
._3_c00116{width:50.304000px;}
._19_c00116{width:51.840000px;}
._18_c00116{width:53.472000px;}
._49_c00116{width:55.488000px;}
._17_c00116{width:57.984000px;}
._43_c00116{width:59.616000px;}
._50_c00116{width:61.536000px;}
._2e_c00116{width:62.976000px;}
._47_c00116{width:65.856000px;}
._28_c00116{width:68.640000px;}
._40_c00116{width:71.040000px;}
._41_c00116{width:75.720000px;}
._27_c00116{width:77.280000px;}
._3e_c00116{width:81.864000px;}
._3a_c00116{width:90.528000px;}
._34_c00116{width:124.416000px;}
._3f_c00116{width:131.424000px;}
._39_c00116{width:159.264000px;}
._31_c00116{width:169.728000px;}
._1c_c00116{width:178.656000px;}
._42_c00116{width:203.448000px;}
._35_c00116{width:265.536000px;}
._4b_c00116{width:267.168000px;}
._25_c00116{width:271.464000px;}
._3d_c00116{width:343.464000px;}
._1f_c00116{width:374.568000px;}
._4e_c00116{width:591.492000px;}
._4d_c00116{width:1063.488000px;}
.fc2_c00116{color:transparent;}
.fc1_c00116{color:rgb(128,128,128);}
.fc0_c00116{color:rgb(0,0,0);}
.fs6_c00116{font-size:30.000000px;}
.fs7_c00116{font-size:36.000000px;}
.fs8_c00116{font-size:48.000000px;}
.fs3_c00116{font-size:78.000000px;}
.fs1_c00116{font-size:84.000000px;}
.fs4_c00116{font-size:87.000000px;}
.fs0_c00116{font-size:96.000000px;}
.fs2_c00116{font-size:99.000000px;}
.fs5_c00116{font-size:102.000000px;}
.y0_c00116{bottom:0.000000px;}
.y28_c00116{bottom:3.105000px;}
.y27_c00116{bottom:7.228369px;}
.y24_c00116{bottom:104.520000px;}
.y23_c00116{bottom:142.770000px;}
.y22_c00116{bottom:177.870000px;}
.y21_c00116{bottom:211.920000px;}
.y20_c00116{bottom:246.270000px;}
.y1f_c00116{bottom:279.120000px;}
.y1e_c00116{bottom:313.470000px;}
.y1d_c00116{bottom:347.520000px;}
.y1c_c00116{bottom:380.970000px;}
.y26_c00116{bottom:412.320000px;}
.y1b_c00116{bottom:415.020000px;}
.y1a_c00116{bottom:448.920000px;}
.y25_c00116{bottom:453.570000px;}
.y19_c00116{bottom:482.670000px;}
.y18_c00116{bottom:516.270000px;}
.y17_c00116{bottom:550.020000px;}
.y16_c00116{bottom:583.770000px;}
.y15_c00116{bottom:619.320000px;}
.y14_c00116{bottom:651.420000px;}
.y13_c00116{bottom:684.120000px;}
.y12_c00116{bottom:716.070000px;}
.y11_c00116{bottom:749.220000px;}
.y10_c00116{bottom:768.120000px;}
.yf_c00116{bottom:819.120000px;}
.ye_c00116{bottom:852.870000px;}
.yd_c00116{bottom:886.320000px;}
.yc_c00116{bottom:919.020000px;}
.yb_c00116{bottom:952.770000px;}
.ya_c00116{bottom:986.220000px;}
.y9_c00116{bottom:1020.570000px;}
.y8_c00116{bottom:1055.970000px;}
.y7_c00116{bottom:1090.770000px;}
.y6_c00116{bottom:1122.120000px;}
.y5_c00116{bottom:1152.870000px;}
.y4_c00116{bottom:1187.220000px;}
.y3_c00116{bottom:1220.370000px;}
.y2_c00116{bottom:1253.520000px;}
.y1_c00116{bottom:1286.520000px;}
.h5_c00116{height:13.200073px;}
.h6_c00116{height:43.804688px;}
.h2_c00116{height:121.546875px;}
.h3_c00116{height:125.345215px;}
.h4_c00116{height:129.143555px;}
.h0_c00116{height:1356.450000px;}
.h1_c00116{height:1356.750000px;}
.w2_c00116{width:104.875500px;}
.w0_c00116{width:860.775000px;}
.w1_c00116{width:861.000000px;}
.x0_c00116{left:0.000000px;}
.x9_c00116{left:21.300000px;}
.x6_c00116{left:22.500000px;}
.x5_c00116{left:24.000000px;}
.x3_c00116{left:25.200000px;}
.x2_c00116{left:27.300000px;}
.x1_c00116{left:28.350000px;}
.x8_c00116{left:42.300000px;}
.x4_c00116{left:77.250000px;}
.x7_c00116{left:106.350000px;}
.xa_c00116{left:132.000000px;}
.xb_c00116{left:186.000000px;}
.xe_c00116{left:382.201721px;}
.xd_c00116{left:626.700000px;}
.xc_c00116{left:703.650000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls2_c00116{letter-spacing:0.000000pt;}
.ls5_c00116{letter-spacing:2.666667pt;}
.ls3_c00116{letter-spacing:5.333333pt;}
.ls4_c00116{letter-spacing:29.333333pt;}
.ls0_c00116{letter-spacing:104.533333pt;}
.ls1_c00116{letter-spacing:252.266667pt;}
.ws2_c00116{word-spacing:-50.541333pt;}
.ws0_c00116{word-spacing:-20.565333pt;}
.ws1_c00116{word-spacing:-17.994667pt;}
.ws3_c00116{word-spacing:-16.709333pt;}
.ws4_c00116{word-spacing:0.000000pt;}
._4a_c00116{margin-left:-72.789333pt;}
._4c_c00116{margin-left:-69.034667pt;}
._38_c00116{margin-left:-48.453333pt;}
._36_c00116{margin-left:-46.906667pt;}
._37_c00116{margin-left:-44.000000pt;}
._33_c00116{margin-left:-37.205333pt;}
._46_c00116{margin-left:-26.197333pt;}
._51_c00116{margin-left:-23.893333pt;}
._4f_c00116{margin-left:-21.845333pt;}
._4_c00116{margin-left:-17.152000pt;}
._32_c00116{margin-left:-16.213333pt;}
._30_c00116{margin-left:-15.274667pt;}
._3b_c00116{margin-left:-13.909333pt;}
._5_c00116{margin-left:-12.373333pt;}
._44_c00116{margin-left:-11.157333pt;}
._45_c00116{margin-left:-10.218667pt;}
._22_c00116{margin-left:-8.448000pt;}
._1e_c00116{margin-left:-7.338667pt;}
._2a_c00116{margin-left:-6.421333pt;}
._29_c00116{margin-left:-5.482667pt;}
._21_c00116{margin-left:-3.989333pt;}
._a_c00116{margin-left:-2.304000pt;}
._b_c00116{margin-left:-1.194667pt;}
._0_c00116{width:1.536000pt;}
._2_c00116{width:2.986667pt;}
._8_c00116{width:4.352000pt;}
._f_c00116{width:5.546667pt;}
._10_c00116{width:6.741333pt;}
._1a_c00116{width:8.362667pt;}
._d_c00116{width:9.301333pt;}
._1b_c00116{width:10.496000pt;}
._2b_c00116{width:11.434667pt;}
._1d_c00116{width:12.970667pt;}
._3c_c00116{width:14.656000pt;}
._20_c00116{width:15.594667pt;}
._16_c00116{width:17.066667pt;}
._15_c00116{width:19.200000pt;}
._14_c00116{width:22.272000pt;}
._12_c00116{width:23.466667pt;}
._11_c00116{width:24.490667pt;}
._48_c00116{width:25.514667pt;}
._26_c00116{width:26.624000pt;}
._1_c00116{width:28.501333pt;}
._9_c00116{width:30.208000pt;}
._c_c00116{width:32.000000pt;}
._e_c00116{width:33.621333pt;}
._13_c00116{width:34.560000pt;}
._2d_c00116{width:35.968000pt;}
._23_c00116{width:36.949333pt;}
._6_c00116{width:38.058667pt;}
._24_c00116{width:38.976000pt;}
._7_c00116{width:41.216000pt;}
._2c_c00116{width:42.325333pt;}
._2f_c00116{width:43.434667pt;}
._3_c00116{width:44.714667pt;}
._19_c00116{width:46.080000pt;}
._18_c00116{width:47.530667pt;}
._49_c00116{width:49.322667pt;}
._17_c00116{width:51.541333pt;}
._43_c00116{width:52.992000pt;}
._50_c00116{width:54.698667pt;}
._2e_c00116{width:55.978667pt;}
._47_c00116{width:58.538667pt;}
._28_c00116{width:61.013333pt;}
._40_c00116{width:63.146667pt;}
._41_c00116{width:67.306667pt;}
._27_c00116{width:68.693333pt;}
._3e_c00116{width:72.768000pt;}
._3a_c00116{width:80.469333pt;}
._34_c00116{width:110.592000pt;}
._3f_c00116{width:116.821333pt;}
._39_c00116{width:141.568000pt;}
._31_c00116{width:150.869333pt;}
._1c_c00116{width:158.805333pt;}
._42_c00116{width:180.842667pt;}
._35_c00116{width:236.032000pt;}
._4b_c00116{width:237.482667pt;}
._25_c00116{width:241.301333pt;}
._3d_c00116{width:305.301333pt;}
._1f_c00116{width:332.949333pt;}
._4e_c00116{width:525.770667pt;}
._4d_c00116{width:945.322667pt;}
.fs6_c00116{font-size:26.666667pt;}
.fs7_c00116{font-size:32.000000pt;}
.fs8_c00116{font-size:42.666667pt;}
.fs3_c00116{font-size:69.333333pt;}
.fs1_c00116{font-size:74.666667pt;}
.fs4_c00116{font-size:77.333333pt;}
.fs0_c00116{font-size:85.333333pt;}
.fs2_c00116{font-size:88.000000pt;}
.fs5_c00116{font-size:90.666667pt;}
.y0_c00116{bottom:0.000000pt;}
.y28_c00116{bottom:2.760000pt;}
.y27_c00116{bottom:6.425217pt;}
.y24_c00116{bottom:92.906667pt;}
.y23_c00116{bottom:126.906667pt;}
.y22_c00116{bottom:158.106667pt;}
.y21_c00116{bottom:188.373333pt;}
.y20_c00116{bottom:218.906667pt;}
.y1f_c00116{bottom:248.106667pt;}
.y1e_c00116{bottom:278.640000pt;}
.y1d_c00116{bottom:308.906667pt;}
.y1c_c00116{bottom:338.640000pt;}
.y26_c00116{bottom:366.506667pt;}
.y1b_c00116{bottom:368.906667pt;}
.y1a_c00116{bottom:399.040000pt;}
.y25_c00116{bottom:403.173333pt;}
.y19_c00116{bottom:429.040000pt;}
.y18_c00116{bottom:458.906667pt;}
.y17_c00116{bottom:488.906667pt;}
.y16_c00116{bottom:518.906667pt;}
.y15_c00116{bottom:550.506667pt;}
.y14_c00116{bottom:579.040000pt;}
.y13_c00116{bottom:608.106667pt;}
.y12_c00116{bottom:636.506667pt;}
.y11_c00116{bottom:665.973333pt;}
.y10_c00116{bottom:682.773333pt;}
.yf_c00116{bottom:728.106667pt;}
.ye_c00116{bottom:758.106667pt;}
.yd_c00116{bottom:787.840000pt;}
.yc_c00116{bottom:816.906667pt;}
.yb_c00116{bottom:846.906667pt;}
.ya_c00116{bottom:876.640000pt;}
.y9_c00116{bottom:907.173333pt;}
.y8_c00116{bottom:938.640000pt;}
.y7_c00116{bottom:969.573333pt;}
.y6_c00116{bottom:997.440000pt;}
.y5_c00116{bottom:1024.773333pt;}
.y4_c00116{bottom:1055.306667pt;}
.y3_c00116{bottom:1084.773333pt;}
.y2_c00116{bottom:1114.240000pt;}
.y1_c00116{bottom:1143.573333pt;}
.h5_c00116{height:11.733399pt;}
.h6_c00116{height:38.937500pt;}
.h2_c00116{height:108.041667pt;}
.h3_c00116{height:111.417969pt;}
.h4_c00116{height:114.794271pt;}
.h0_c00116{height:1205.733333pt;}
.h1_c00116{height:1206.000000pt;}
.w2_c00116{width:93.222667pt;}
.w0_c00116{width:765.133333pt;}
.w1_c00116{width:765.333333pt;}
.x0_c00116{left:0.000000pt;}
.x9_c00116{left:18.933333pt;}
.x6_c00116{left:20.000000pt;}
.x5_c00116{left:21.333333pt;}
.x3_c00116{left:22.400000pt;}
.x2_c00116{left:24.266667pt;}
.x1_c00116{left:25.200000pt;}
.x8_c00116{left:37.600000pt;}
.x4_c00116{left:68.666667pt;}
.x7_c00116{left:94.533333pt;}
.xa_c00116{left:117.333333pt;}
.xb_c00116{left:165.333333pt;}
.xe_c00116{left:339.734863pt;}
.xd_c00116{left:557.066667pt;}
.xc_c00116{left:625.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c7559706570d4a23b308578.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_1d35abc63f92d88f70b73955.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls1_c00117{letter-spacing:0.000000px;}
.ls2_c00117{letter-spacing:15.000000px;}
.ls5_c00117{letter-spacing:27.000000px;}
.ls3_c00117{letter-spacing:36.000000px;}
.ls0_c00117{letter-spacing:51.264000px;}
.ls4_c00117{letter-spacing:66.000000px;}
.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;}
}
.ws2_c00117{word-spacing:-89.136000px;}
.ws1_c00117{word-spacing:-36.924000px;}
.ws0_c00117{word-spacing:-23.136000px;}
.ws3_c00117{word-spacing:-20.244000px;}
.ws4_c00117{word-spacing:0.000000px;}
._4b_c00117{margin-left:-175.014000px;}
._47_c00117{margin-left:-93.909000px;}
._46_c00117{margin-left:-89.670000px;}
._49_c00117{margin-left:-55.944000px;}
._4d_c00117{margin-left:-54.432000px;}
._38_c00117{margin-left:-51.156000px;}
._37_c00117{margin-left:-44.604000px;}
._36_c00117{margin-left:-41.160000px;}
._4f_c00117{margin-left:-34.008000px;}
._39_c00117{margin-left:-30.828000px;}
._21_c00117{margin-left:-28.704000px;}
._3d_c00117{margin-left:-24.096000px;}
._3e_c00117{margin-left:-21.120000px;}
._1d_c00117{margin-left:-20.076000px;}
._12_c00117{margin-left:-18.624000px;}
._45_c00117{margin-left:-17.388000px;}
._57_c00117{margin-left:-15.960000px;}
._11_c00117{margin-left:-14.592000px;}
._20_c00117{margin-left:-12.864000px;}
._3a_c00117{margin-left:-11.352000px;}
._25_c00117{margin-left:-10.008000px;}
._54_c00117{margin-left:-8.232000px;}
._24_c00117{margin-left:-7.140000px;}
._e_c00117{margin-left:-5.964000px;}
._f_c00117{margin-left:-4.956000px;}
._c_c00117{margin-left:-2.976000px;}
._a_c00117{margin-left:-1.440000px;}
._0_c00117{width:1.344000px;}
._1_c00117{width:2.688000px;}
._6_c00117{width:4.128000px;}
._4_c00117{width:5.472000px;}
._2d_c00117{width:6.528000px;}
._8_c00117{width:7.680000px;}
._3_c00117{width:8.928000px;}
._b_c00117{width:10.176000px;}
._14_c00117{width:11.712000px;}
._7_c00117{width:13.056000px;}
._2_c00117{width:14.688000px;}
._52_c00117{width:15.840000px;}
._17_c00117{width:16.896000px;}
._19_c00117{width:18.048000px;}
._9_c00117{width:19.488000px;}
._18_c00117{width:21.120000px;}
._33_c00117{width:23.472000px;}
._23_c00117{width:24.672000px;}
._16_c00117{width:25.824000px;}
._d_c00117{width:27.744000px;}
._1b_c00117{width:29.316000px;}
._31_c00117{width:30.804000px;}
._22_c00117{width:32.064000px;}
._4c_c00117{width:33.453000px;}
._1f_c00117{width:34.752000px;}
._5_c00117{width:36.288000px;}
._30_c00117{width:38.592000px;}
._53_c00117{width:40.224000px;}
._1c_c00117{width:41.568000px;}
._42_c00117{width:42.672000px;}
._2a_c00117{width:43.776000px;}
._28_c00117{width:45.048000px;}
._27_c00117{width:47.304000px;}
._2c_c00117{width:49.152000px;}
._2f_c00117{width:51.840000px;}
._56_c00117{width:53.184000px;}
._41_c00117{width:55.584000px;}
._34_c00117{width:57.348000px;}
._26_c00117{width:58.764000px;}
._2e_c00117{width:60.192000px;}
._35_c00117{width:61.248000px;}
._2b_c00117{width:64.800000px;}
._1a_c00117{width:67.260000px;}
._1e_c00117{width:71.124000px;}
._32_c00117{width:75.984000px;}
._10_c00117{width:87.132000px;}
._43_c00117{width:92.832000px;}
._3c_c00117{width:98.448000px;}
._13_c00117{width:105.216000px;}
._44_c00117{width:132.984000px;}
._3b_c00117{width:146.400000px;}
._15_c00117{width:175.296000px;}
._3f_c00117{width:202.836000px;}
._40_c00117{width:235.776000px;}
._48_c00117{width:266.490000px;}
._55_c00117{width:329.544000px;}
._29_c00117{width:379.248000px;}
._4a_c00117{width:409.920000px;}
._4e_c00117{width:438.639000px;}
._51_c00117{width:720.876000px;}
._50_c00117{width:783.840000px;}
._58_c00117{width:898.980000px;}
.fc2_c00117{color:transparent;}
.fc1_c00117{color:rgb(128,128,128);}
.fc0_c00117{color:rgb(0,0,0);}
.fs4_c00117{font-size:48.000000px;}
.fs1_c00117{font-size:84.000000px;}
.fs0_c00117{font-size:96.000000px;}
.fs2_c00117{font-size:144.000000px;}
.fs3_c00117{font-size:189.000000px;}
.y0_c00117{bottom:0.000000px;}
.y22_c00117{bottom:3.105000px;}
.y21_c00117{bottom:7.228357px;}
.y20_c00117{bottom:106.680000px;}
.y1f_c00117{bottom:142.080000px;}
.y1e_c00117{bottom:177.480000px;}
.y1d_c00117{bottom:211.380000px;}
.y1c_c00117{bottom:245.730000px;}
.y1b_c00117{bottom:279.780000px;}
.y1a_c00117{bottom:316.680000px;}
.y19_c00117{bottom:350.280000px;}
.y18_c00117{bottom:382.380000px;}
.y17_c00117{bottom:415.080000px;}
.y16_c00117{bottom:445.830000px;}
.y15_c00117{bottom:559.680000px;}
.y14_c00117{bottom:610.230000px;}
.y13_c00117{bottom:659.580000px;}
.y12_c00117{bottom:685.830000px;}
.y11_c00117{bottom:712.080000px;}
.y10_c00117{bottom:789.180000px;}
.yf_c00117{bottom:824.880000px;}
.ye_c00117{bottom:858.630000px;}
.yd_c00117{bottom:892.380000px;}
.yc_c00117{bottom:925.530000px;}
.yb_c00117{bottom:958.530000px;}
.ya_c00117{bottom:992.280000px;}
.y9_c00117{bottom:1025.430000px;}
.y8_c00117{bottom:1059.180000px;}
.y7_c00117{bottom:1095.930000px;}
.y6_c00117{bottom:1129.380000px;}
.y5_c00117{bottom:1161.030000px;}
.y4_c00117{bottom:1193.430000px;}
.y3_c00117{bottom:1225.230000px;}
.y2_c00117{bottom:1256.580000px;}
.y1_c00117{bottom:1292.280000px;}
.h5_c00117{height:13.200074px;}
.h6_c00117{height:43.804688px;}
.h2_c00117{height:121.546875px;}
.h3_c00117{height:182.320312px;}
.h4_c00117{height:239.295410px;}
.h0_c00117{height:1382.700000px;}
.h1_c00117{height:1383.000000px;}
.w2_c00117{width:104.875500px;}
.w0_c00117{width:863.175000px;}
.w1_c00117{width:863.250000px;}
.x0_c00117{left:0.000000px;}
.xe_c00117{left:48.300000px;}
.x5_c00117{left:51.600000px;}
.xd_c00117{left:52.650000px;}
.x4_c00117{left:53.700000px;}
.x6_c00117{left:57.000000px;}
.x3_c00117{left:74.250000px;}
.x10_c00117{left:265.500000px;}
.xf_c00117{left:266.550000px;}
.x9_c00117{left:270.750000px;}
.x7_c00117{left:272.400000px;}
.x1_c00117{left:274.650000px;}
.x2_c00117{left:275.700000px;}
.xa_c00117{left:277.800000px;}
.x8_c00117{left:301.650000px;}
.xc_c00117{left:364.200000px;}
.xb_c00117{left:373.500000px;}
.x11_c00117{left:383.401749px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls1_c00117{letter-spacing:0.000000pt;}
.ls2_c00117{letter-spacing:13.333333pt;}
.ls5_c00117{letter-spacing:24.000000pt;}
.ls3_c00117{letter-spacing:32.000000pt;}
.ls0_c00117{letter-spacing:45.568000pt;}
.ls4_c00117{letter-spacing:58.666667pt;}
.ws2_c00117{word-spacing:-79.232000pt;}
.ws1_c00117{word-spacing:-32.821333pt;}
.ws0_c00117{word-spacing:-20.565333pt;}
.ws3_c00117{word-spacing:-17.994667pt;}
.ws4_c00117{word-spacing:0.000000pt;}
._4b_c00117{margin-left:-155.568000pt;}
._47_c00117{margin-left:-83.474667pt;}
._46_c00117{margin-left:-79.706667pt;}
._49_c00117{margin-left:-49.728000pt;}
._4d_c00117{margin-left:-48.384000pt;}
._38_c00117{margin-left:-45.472000pt;}
._37_c00117{margin-left:-39.648000pt;}
._36_c00117{margin-left:-36.586667pt;}
._4f_c00117{margin-left:-30.229333pt;}
._39_c00117{margin-left:-27.402667pt;}
._21_c00117{margin-left:-25.514667pt;}
._3d_c00117{margin-left:-21.418667pt;}
._3e_c00117{margin-left:-18.773333pt;}
._1d_c00117{margin-left:-17.845333pt;}
._12_c00117{margin-left:-16.554667pt;}
._45_c00117{margin-left:-15.456000pt;}
._57_c00117{margin-left:-14.186667pt;}
._11_c00117{margin-left:-12.970667pt;}
._20_c00117{margin-left:-11.434667pt;}
._3a_c00117{margin-left:-10.090667pt;}
._25_c00117{margin-left:-8.896000pt;}
._54_c00117{margin-left:-7.317333pt;}
._24_c00117{margin-left:-6.346667pt;}
._e_c00117{margin-left:-5.301333pt;}
._f_c00117{margin-left:-4.405333pt;}
._c_c00117{margin-left:-2.645333pt;}
._a_c00117{margin-left:-1.280000pt;}
._0_c00117{width:1.194667pt;}
._1_c00117{width:2.389333pt;}
._6_c00117{width:3.669333pt;}
._4_c00117{width:4.864000pt;}
._2d_c00117{width:5.802667pt;}
._8_c00117{width:6.826667pt;}
._3_c00117{width:7.936000pt;}
._b_c00117{width:9.045333pt;}
._14_c00117{width:10.410667pt;}
._7_c00117{width:11.605333pt;}
._2_c00117{width:13.056000pt;}
._52_c00117{width:14.080000pt;}
._17_c00117{width:15.018667pt;}
._19_c00117{width:16.042667pt;}
._9_c00117{width:17.322667pt;}
._18_c00117{width:18.773333pt;}
._33_c00117{width:20.864000pt;}
._23_c00117{width:21.930667pt;}
._16_c00117{width:22.954667pt;}
._d_c00117{width:24.661333pt;}
._1b_c00117{width:26.058667pt;}
._31_c00117{width:27.381333pt;}
._22_c00117{width:28.501333pt;}
._4c_c00117{width:29.736000pt;}
._1f_c00117{width:30.890667pt;}
._5_c00117{width:32.256000pt;}
._30_c00117{width:34.304000pt;}
._53_c00117{width:35.754667pt;}
._1c_c00117{width:36.949333pt;}
._42_c00117{width:37.930667pt;}
._2a_c00117{width:38.912000pt;}
._28_c00117{width:40.042667pt;}
._27_c00117{width:42.048000pt;}
._2c_c00117{width:43.690667pt;}
._2f_c00117{width:46.080000pt;}
._56_c00117{width:47.274667pt;}
._41_c00117{width:49.408000pt;}
._34_c00117{width:50.976000pt;}
._26_c00117{width:52.234667pt;}
._2e_c00117{width:53.504000pt;}
._35_c00117{width:54.442667pt;}
._2b_c00117{width:57.600000pt;}
._1a_c00117{width:59.786667pt;}
._1e_c00117{width:63.221333pt;}
._32_c00117{width:67.541333pt;}
._10_c00117{width:77.450667pt;}
._43_c00117{width:82.517333pt;}
._3c_c00117{width:87.509333pt;}
._13_c00117{width:93.525333pt;}
._44_c00117{width:118.208000pt;}
._3b_c00117{width:130.133333pt;}
._15_c00117{width:155.818667pt;}
._3f_c00117{width:180.298667pt;}
._40_c00117{width:209.578667pt;}
._48_c00117{width:236.880000pt;}
._55_c00117{width:292.928000pt;}
._29_c00117{width:337.109333pt;}
._4a_c00117{width:364.373333pt;}
._4e_c00117{width:389.901333pt;}
._51_c00117{width:640.778667pt;}
._50_c00117{width:696.746667pt;}
._58_c00117{width:799.093333pt;}
.fs4_c00117{font-size:42.666667pt;}
.fs1_c00117{font-size:74.666667pt;}
.fs0_c00117{font-size:85.333333pt;}
.fs2_c00117{font-size:128.000000pt;}
.fs3_c00117{font-size:168.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y22_c00117{bottom:2.760000pt;}
.y21_c00117{bottom:6.425206pt;}
.y20_c00117{bottom:94.826667pt;}
.y1f_c00117{bottom:126.293333pt;}
.y1e_c00117{bottom:157.760000pt;}
.y1d_c00117{bottom:187.893333pt;}
.y1c_c00117{bottom:218.426667pt;}
.y1b_c00117{bottom:248.693333pt;}
.y1a_c00117{bottom:281.493333pt;}
.y19_c00117{bottom:311.360000pt;}
.y18_c00117{bottom:339.893333pt;}
.y17_c00117{bottom:368.960000pt;}
.y16_c00117{bottom:396.293333pt;}
.y15_c00117{bottom:497.493333pt;}
.y14_c00117{bottom:542.426667pt;}
.y13_c00117{bottom:586.293333pt;}
.y12_c00117{bottom:609.626667pt;}
.y11_c00117{bottom:632.960000pt;}
.y10_c00117{bottom:701.493333pt;}
.yf_c00117{bottom:733.226667pt;}
.ye_c00117{bottom:763.226667pt;}
.yd_c00117{bottom:793.226667pt;}
.yc_c00117{bottom:822.693333pt;}
.yb_c00117{bottom:852.026667pt;}
.ya_c00117{bottom:882.026667pt;}
.y9_c00117{bottom:911.493333pt;}
.y8_c00117{bottom:941.493333pt;}
.y7_c00117{bottom:974.160000pt;}
.y6_c00117{bottom:1003.893333pt;}
.y5_c00117{bottom:1032.026667pt;}
.y4_c00117{bottom:1060.826667pt;}
.y3_c00117{bottom:1089.093333pt;}
.y2_c00117{bottom:1116.960000pt;}
.y1_c00117{bottom:1148.693333pt;}
.h5_c00117{height:11.733399pt;}
.h6_c00117{height:38.937500pt;}
.h2_c00117{height:108.041667pt;}
.h3_c00117{height:162.062500pt;}
.h4_c00117{height:212.707031pt;}
.h0_c00117{height:1229.066667pt;}
.h1_c00117{height:1229.333333pt;}
.w2_c00117{width:93.222667pt;}
.w0_c00117{width:767.266667pt;}
.w1_c00117{width:767.333333pt;}
.x0_c00117{left:0.000000pt;}
.xe_c00117{left:42.933333pt;}
.x5_c00117{left:45.866667pt;}
.xd_c00117{left:46.800000pt;}
.x4_c00117{left:47.733333pt;}
.x6_c00117{left:50.666667pt;}
.x3_c00117{left:66.000000pt;}
.x10_c00117{left:236.000000pt;}
.xf_c00117{left:236.933333pt;}
.x9_c00117{left:240.666667pt;}
.x7_c00117{left:242.133333pt;}
.x1_c00117{left:244.133333pt;}
.x2_c00117{left:245.066667pt;}
.xa_c00117{left:246.933333pt;}
.x8_c00117{left:268.133333pt;}
.xc_c00117{left:323.733333pt;}
.xb_c00117{left:332.000000pt;}
.x11_c00117{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_76af21a2b9caa9ed6b20228d.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_71a016365ac431b9f108daf9.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_6a9c1a499f51019bb6b6feb6.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_dd145e85b82424818c9f4c3e.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_14925d739aecf2f5cb36ac32.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00118;src:url('chunks/assets/font_bf8ed60a57c7cc7196b91159.woff2')format("woff");}.ff6_c00118{font-family:ff6_c00118;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00118;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00118{font-family:ff7_c00118;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls3_c00118{letter-spacing:0.000000px;}
.ls2_c00118{letter-spacing:3.030000px;}
.ls6_c00118{letter-spacing:6.000000px;}
.ls1_c00118{letter-spacing:6.720000px;}
.ls0_c00118{letter-spacing:12.495000px;}
.ls5_c00118{letter-spacing:33.000000px;}
.ls4_c00118{letter-spacing:114.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:-137.136000px;}
.ws3_c00118{word-spacing:-56.859000px;}
.ws5_c00118{word-spacing:-23.136000px;}
.ws2_c00118{word-spacing:-20.244000px;}
.ws1_c00118{word-spacing:-18.798000px;}
.ws4_c00118{word-spacing:-1.800000px;}
.ws6_c00118{word-spacing:0.000000px;}
._52_c00118{margin-left:-51.645000px;}
._47_c00118{margin-left:-46.050000px;}
._45_c00118{margin-left:-44.640000px;}
._53_c00118{margin-left:-40.029000px;}
._4d_c00118{margin-left:-38.775000px;}
._42_c00118{margin-left:-37.422000px;}
._4f_c00118{margin-left:-35.640000px;}
._50_c00118{margin-left:-31.845000px;}
._56_c00118{margin-left:-29.472000px;}
._51_c00118{margin-left:-27.885000px;}
._43_c00118{margin-left:-26.433000px;}
._2a_c00118{margin-left:-22.464000px;}
._2b_c00118{margin-left:-20.736000px;}
._29_c00118{margin-left:-19.392000px;}
._35_c00118{margin-left:-17.280000px;}
._39_c00118{margin-left:-14.478000px;}
._3_c00118{margin-left:-12.636000px;}
._4e_c00118{margin-left:-11.385000px;}
._3f_c00118{margin-left:-9.984000px;}
._30_c00118{margin-left:-8.766000px;}
._c_c00118{margin-left:-6.492000px;}
._26_c00118{margin-left:-5.178000px;}
._2f_c00118{margin-left:-4.026000px;}
._27_c00118{margin-left:-2.886000px;}
._11_c00118{margin-left:-1.554000px;}
._9_c00118{width:1.314000px;}
._7_c00118{width:2.772000px;}
._e_c00118{width:3.906000px;}
._4_c00118{width:4.914000px;}
._1_c00118{width:5.928000px;}
._6_c00118{width:7.146000px;}
._12_c00118{width:8.280000px;}
._5_c00118{width:9.516000px;}
._10_c00118{width:10.926000px;}
._0_c00118{width:11.934000px;}
._8_c00118{width:13.416000px;}
._20_c00118{width:14.574000px;}
._b_c00118{width:15.936000px;}
._1b_c00118{width:17.196000px;}
._1c_c00118{width:19.488000px;}
._1f_c00118{width:21.468000px;}
._a_c00118{width:24.360000px;}
._21_c00118{width:25.782000px;}
._1d_c00118{width:27.216000px;}
._2d_c00118{width:28.374000px;}
._d_c00118{width:30.564000px;}
._19_c00118{width:31.890000px;}
._2_c00118{width:33.306000px;}
._16_c00118{width:34.518000px;}
._14_c00118{width:37.158000px;}
._f_c00118{width:39.018000px;}
._13_c00118{width:40.728000px;}
._23_c00118{width:41.922000px;}
._1e_c00118{width:43.098000px;}
._1a_c00118{width:44.688000px;}
._17_c00118{width:47.364000px;}
._18_c00118{width:50.136000px;}
._24_c00118{width:51.954000px;}
._22_c00118{width:53.892000px;}
._2c_c00118{width:57.912000px;}
._25_c00118{width:62.286000px;}
._15_c00118{width:66.792000px;}
._3d_c00118{width:68.586000px;}
._33_c00118{width:70.854000px;}
._4b_c00118{width:73.260000px;}
._32_c00118{width:88.392000px;}
._38_c00118{width:104.970000px;}
._4c_c00118{width:112.050000px;}
._3e_c00118{width:122.550000px;}
._44_c00118{width:127.968000px;}
._34_c00118{width:140.424000px;}
._40_c00118{width:155.040000px;}
._3c_c00118{width:164.262000px;}
._48_c00118{width:168.576000px;}
._41_c00118{width:177.618000px;}
._46_c00118{width:197.400000px;}
._49_c00118{width:199.494000px;}
._36_c00118{width:278.418000px;}
._55_c00118{width:282.510000px;}
._28_c00118{width:318.858000px;}
._2e_c00118{width:321.378000px;}
._3a_c00118{width:343.200000px;}
._54_c00118{width:422.802000px;}
._37_c00118{width:435.738000px;}
._3b_c00118{width:467.898000px;}
._31_c00118{width:526.836000px;}
._4a_c00118{width:585.858000px;}
.fc2_c00118{color:transparent;}
.fc1_c00118{color:rgb(128,128,128);}
.fc0_c00118{color:rgb(0,0,0);}
.fs8_c00118{font-size:48.000000px;}
.fs7_c00118{font-size:72.000000px;}
.fs0_c00118{font-size:78.000000px;}
.fs3_c00118{font-size:84.000000px;}
.fs2_c00118{font-size:96.000000px;}
.fs4_c00118{font-size:99.000000px;}
.fs6_c00118{font-size:102.000000px;}
.fs1_c00118{font-size:105.000000px;}
.fs5_c00118{font-size:165.000000px;}
.y0_c00118{bottom:0.000000px;}
.y27_c00118{bottom:3.105000px;}
.y26_c00118{bottom:7.228369px;}
.y25_c00118{bottom:93.870000px;}
.y24_c00118{bottom:126.870000px;}
.y23_c00118{bottom:159.870000px;}
.y22_c00118{bottom:193.320000px;}
.y21_c00118{bottom:228.420000px;}
.y20_c00118{bottom:244.020000px;}
.y1f_c00118{bottom:264.270000px;}
.y1e_c00118{bottom:299.670000px;}
.y1d_c00118{bottom:331.020000px;}
.y1c_c00118{bottom:364.770000px;}
.y1b_c00118{bottom:398.220000px;}
.y1a_c00118{bottom:432.270000px;}
.y19_c00118{bottom:466.020000px;}
.y18_c00118{bottom:499.470000px;}
.y17_c00118{bottom:532.920000px;}
.y16_c00118{bottom:566.970000px;}
.y15_c00118{bottom:600.420000px;}
.y14_c00118{bottom:634.170000px;}
.y13_c00118{bottom:667.170000px;}
.y12_c00118{bottom:702.270000px;}
.y11_c00118{bottom:735.420000px;}
.y10_c00118{bottom:767.370000px;}
.yf_c00118{bottom:801.120000px;}
.ye_c00118{bottom:834.870000px;}
.yd_c00118{bottom:868.020000px;}
.yc_c00118{bottom:901.770000px;}
.yb_c00118{bottom:934.770000px;}
.ya_c00118{bottom:968.520000px;}
.y9_c00118{bottom:1002.270000px;}
.y8_c00118{bottom:1035.420000px;}
.y7_c00118{bottom:1069.170000px;}
.y6_c00118{bottom:1102.620000px;}
.y5_c00118{bottom:1135.920000px;}
.y4_c00118{bottom:1169.070000px;}
.y3_c00118{bottom:1201.770000px;}
.y2_c00118{bottom:1235.520000px;}
.y1_c00118{bottom:1269.570000px;}
.h6_c00118{height:13.200073px;}
.h7_c00118{height:43.804688px;}
.h3_c00118{height:121.546875px;}
.h5_c00118{height:129.143555px;}
.h2_c00118{height:132.941895px;}
.h4_c00118{height:161.857910px;}
.h0_c00118{height:1356.450000px;}
.h1_c00118{height:1356.750000px;}
.w2_c00118{width:104.875500px;}
.w0_c00118{width:860.775000px;}
.w1_c00118{width:861.000000px;}
.x0_c00118{left:0.000000px;}
.x5_c00118{left:36.450000px;}
.x7_c00118{left:37.500000px;}
.x4_c00118{left:38.550000px;}
.x3_c00118{left:39.600000px;}
.x2_c00118{left:40.800000px;}
.x1_c00118{left:42.450000px;}
.x6_c00118{left:91.050000px;}
.x9_c00118{left:382.201721px;}
.x8_c00118{left:564.000000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls3_c00118{letter-spacing:0.000000pt;}
.ls2_c00118{letter-spacing:2.693333pt;}
.ls6_c00118{letter-spacing:5.333333pt;}
.ls1_c00118{letter-spacing:5.973333pt;}
.ls0_c00118{letter-spacing:11.106667pt;}
.ls5_c00118{letter-spacing:29.333333pt;}
.ls4_c00118{letter-spacing:101.333333pt;}
.ws0_c00118{word-spacing:-121.898667pt;}
.ws3_c00118{word-spacing:-50.541333pt;}
.ws5_c00118{word-spacing:-20.565333pt;}
.ws2_c00118{word-spacing:-17.994667pt;}
.ws1_c00118{word-spacing:-16.709333pt;}
.ws4_c00118{word-spacing:-1.600000pt;}
.ws6_c00118{word-spacing:0.000000pt;}
._52_c00118{margin-left:-45.906667pt;}
._47_c00118{margin-left:-40.933333pt;}
._45_c00118{margin-left:-39.680000pt;}
._53_c00118{margin-left:-35.581333pt;}
._4d_c00118{margin-left:-34.466667pt;}
._42_c00118{margin-left:-33.264000pt;}
._4f_c00118{margin-left:-31.680000pt;}
._50_c00118{margin-left:-28.306667pt;}
._56_c00118{margin-left:-26.197333pt;}
._51_c00118{margin-left:-24.786667pt;}
._43_c00118{margin-left:-23.496000pt;}
._2a_c00118{margin-left:-19.968000pt;}
._2b_c00118{margin-left:-18.432000pt;}
._29_c00118{margin-left:-17.237333pt;}
._35_c00118{margin-left:-15.360000pt;}
._39_c00118{margin-left:-12.869333pt;}
._3_c00118{margin-left:-11.232000pt;}
._4e_c00118{margin-left:-10.120000pt;}
._3f_c00118{margin-left:-8.874667pt;}
._30_c00118{margin-left:-7.792000pt;}
._c_c00118{margin-left:-5.770667pt;}
._26_c00118{margin-left:-4.602667pt;}
._2f_c00118{margin-left:-3.578667pt;}
._27_c00118{margin-left:-2.565333pt;}
._11_c00118{margin-left:-1.381333pt;}
._9_c00118{width:1.168000pt;}
._7_c00118{width:2.464000pt;}
._e_c00118{width:3.472000pt;}
._4_c00118{width:4.368000pt;}
._1_c00118{width:5.269333pt;}
._6_c00118{width:6.352000pt;}
._12_c00118{width:7.360000pt;}
._5_c00118{width:8.458667pt;}
._10_c00118{width:9.712000pt;}
._0_c00118{width:10.608000pt;}
._8_c00118{width:11.925333pt;}
._20_c00118{width:12.954667pt;}
._b_c00118{width:14.165333pt;}
._1b_c00118{width:15.285333pt;}
._1c_c00118{width:17.322667pt;}
._1f_c00118{width:19.082667pt;}
._a_c00118{width:21.653333pt;}
._21_c00118{width:22.917333pt;}
._1d_c00118{width:24.192000pt;}
._2d_c00118{width:25.221333pt;}
._d_c00118{width:27.168000pt;}
._19_c00118{width:28.346667pt;}
._2_c00118{width:29.605333pt;}
._16_c00118{width:30.682667pt;}
._14_c00118{width:33.029333pt;}
._f_c00118{width:34.682667pt;}
._13_c00118{width:36.202667pt;}
._23_c00118{width:37.264000pt;}
._1e_c00118{width:38.309333pt;}
._1a_c00118{width:39.722667pt;}
._17_c00118{width:42.101333pt;}
._18_c00118{width:44.565333pt;}
._24_c00118{width:46.181333pt;}
._22_c00118{width:47.904000pt;}
._2c_c00118{width:51.477333pt;}
._25_c00118{width:55.365333pt;}
._15_c00118{width:59.370667pt;}
._3d_c00118{width:60.965333pt;}
._33_c00118{width:62.981333pt;}
._4b_c00118{width:65.120000pt;}
._32_c00118{width:78.570667pt;}
._38_c00118{width:93.306667pt;}
._4c_c00118{width:99.600000pt;}
._3e_c00118{width:108.933333pt;}
._44_c00118{width:113.749333pt;}
._34_c00118{width:124.821333pt;}
._40_c00118{width:137.813333pt;}
._3c_c00118{width:146.010667pt;}
._48_c00118{width:149.845333pt;}
._41_c00118{width:157.882667pt;}
._46_c00118{width:175.466667pt;}
._49_c00118{width:177.328000pt;}
._36_c00118{width:247.482667pt;}
._55_c00118{width:251.120000pt;}
._28_c00118{width:283.429333pt;}
._2e_c00118{width:285.669333pt;}
._3a_c00118{width:305.066667pt;}
._54_c00118{width:375.824000pt;}
._37_c00118{width:387.322667pt;}
._3b_c00118{width:415.909333pt;}
._31_c00118{width:468.298667pt;}
._4a_c00118{width:520.762667pt;}
.fs8_c00118{font-size:42.666667pt;}
.fs7_c00118{font-size:64.000000pt;}
.fs0_c00118{font-size:69.333333pt;}
.fs3_c00118{font-size:74.666667pt;}
.fs2_c00118{font-size:85.333333pt;}
.fs4_c00118{font-size:88.000000pt;}
.fs6_c00118{font-size:90.666667pt;}
.fs1_c00118{font-size:93.333333pt;}
.fs5_c00118{font-size:146.666667pt;}
.y0_c00118{bottom:0.000000pt;}
.y27_c00118{bottom:2.760000pt;}
.y26_c00118{bottom:6.425217pt;}
.y25_c00118{bottom:83.440000pt;}
.y24_c00118{bottom:112.773333pt;}
.y23_c00118{bottom:142.106667pt;}
.y22_c00118{bottom:171.840000pt;}
.y21_c00118{bottom:203.040000pt;}
.y20_c00118{bottom:216.906667pt;}
.y1f_c00118{bottom:234.906667pt;}
.y1e_c00118{bottom:266.373333pt;}
.y1d_c00118{bottom:294.240000pt;}
.y1c_c00118{bottom:324.240000pt;}
.y1b_c00118{bottom:353.973333pt;}
.y1a_c00118{bottom:384.240000pt;}
.y19_c00118{bottom:414.240000pt;}
.y18_c00118{bottom:443.973333pt;}
.y17_c00118{bottom:473.706667pt;}
.y16_c00118{bottom:503.973333pt;}
.y15_c00118{bottom:533.706667pt;}
.y14_c00118{bottom:563.706667pt;}
.y13_c00118{bottom:593.040000pt;}
.y12_c00118{bottom:624.240000pt;}
.y11_c00118{bottom:653.706667pt;}
.y10_c00118{bottom:682.106667pt;}
.yf_c00118{bottom:712.106667pt;}
.ye_c00118{bottom:742.106667pt;}
.yd_c00118{bottom:771.573333pt;}
.yc_c00118{bottom:801.573333pt;}
.yb_c00118{bottom:830.906667pt;}
.ya_c00118{bottom:860.906667pt;}
.y9_c00118{bottom:890.906667pt;}
.y8_c00118{bottom:920.373333pt;}
.y7_c00118{bottom:950.373333pt;}
.y6_c00118{bottom:980.106667pt;}
.y5_c00118{bottom:1009.706667pt;}
.y4_c00118{bottom:1039.173333pt;}
.y3_c00118{bottom:1068.240000pt;}
.y2_c00118{bottom:1098.240000pt;}
.y1_c00118{bottom:1128.506667pt;}
.h6_c00118{height:11.733399pt;}
.h7_c00118{height:38.937500pt;}
.h3_c00118{height:108.041667pt;}
.h5_c00118{height:114.794271pt;}
.h2_c00118{height:118.170573pt;}
.h4_c00118{height:143.873698pt;}
.h0_c00118{height:1205.733333pt;}
.h1_c00118{height:1206.000000pt;}
.w2_c00118{width:93.222667pt;}
.w0_c00118{width:765.133333pt;}
.w1_c00118{width:765.333333pt;}
.x0_c00118{left:0.000000pt;}
.x5_c00118{left:32.400000pt;}
.x7_c00118{left:33.333333pt;}
.x4_c00118{left:34.266667pt;}
.x3_c00118{left:35.200000pt;}
.x2_c00118{left:36.266667pt;}
.x1_c00118{left:37.733333pt;}
.x6_c00118{left:80.933333pt;}
.x9_c00118{left:339.734863pt;}
.x8_c00118{left:501.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c7a38f0436ac6d3876a5a67.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_eaeda045b6ae80a8e8ee0ce7.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_87e5dee68e16405269f49eeb.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls1_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:12.000000px;}
.ls0_c00119{letter-spacing:32.940000px;}
.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;}
}
.ws0_c00119{word-spacing:-63.000000px;}
.ws1_c00119{word-spacing:-35.136000px;}
.ws2_c00119{word-spacing:0.000000px;}
._37_c00119{margin-left:-24.270000px;}
._29_c00119{margin-left:-21.924000px;}
._2c_c00119{margin-left:-18.564000px;}
._38_c00119{margin-left:-15.840000px;}
._2b_c00119{margin-left:-13.338000px;}
._a_c00119{margin-left:-12.048000px;}
._28_c00119{margin-left:-10.980000px;}
._b_c00119{margin-left:-8.688000px;}
._8_c00119{margin-left:-7.020000px;}
._9_c00119{margin-left:-5.712000px;}
._7_c00119{margin-left:-3.666000px;}
._1_c00119{margin-left:-2.496000px;}
._0_c00119{margin-left:-1.404000px;}
._5_c00119{width:1.170000px;}
._12_c00119{width:2.358000px;}
._3_c00119{width:3.900000px;}
._f_c00119{width:5.136000px;}
._1f_c00119{width:6.174000px;}
._c_c00119{width:7.446000px;}
._18_c00119{width:9.408000px;}
._14_c00119{width:10.524000px;}
._25_c00119{width:12.096000px;}
._d_c00119{width:13.260000px;}
._17_c00119{width:15.168000px;}
._20_c00119{width:16.284000px;}
._1d_c00119{width:17.568000px;}
._16_c00119{width:18.624000px;}
._1e_c00119{width:19.968000px;}
._13_c00119{width:21.078000px;}
._2a_c00119{width:22.188000px;}
._4_c00119{width:23.244000px;}
._2d_c00119{width:24.336000px;}
._10_c00119{width:25.362000px;}
._2_c00119{width:27.690000px;}
._3e_c00119{width:28.776000px;}
._6_c00119{width:29.796000px;}
._e_c00119{width:31.902000px;}
._35_c00119{width:32.910000px;}
._24_c00119{width:33.990000px;}
._27_c00119{width:35.028000px;}
._3f_c00119{width:36.144000px;}
._11_c00119{width:37.152000px;}
._21_c00119{width:38.826000px;}
._1c_c00119{width:40.962000px;}
._15_c00119{width:41.982000px;}
._32_c00119{width:43.656000px;}
._19_c00119{width:45.096000px;}
._2e_c00119{width:47.280000px;}
._36_c00119{width:49.026000px;}
._33_c00119{width:50.058000px;}
._22_c00119{width:51.156000px;}
._30_c00119{width:53.742000px;}
._1b_c00119{width:55.890000px;}
._1a_c00119{width:58.242000px;}
._23_c00119{width:60.168000px;}
._3a_c00119{width:62.550000px;}
._3d_c00119{width:65.076000px;}
._2f_c00119{width:66.810000px;}
._26_c00119{width:68.640000px;}
._39_c00119{width:71.634000px;}
._34_c00119{width:72.702000px;}
._31_c00119{width:77.994000px;}
._3c_c00119{width:191.616000px;}
._3b_c00119{width:711.606000px;}
._40_c00119{width:2093.178000px;}
.fc2_c00119{color:transparent;}
.fc1_c00119{color:rgb(128,128,128);}
.fc0_c00119{color:rgb(0,0,0);}
.fs4_c00119{font-size:48.000000px;}
.fs0_c00119{font-size:78.000000px;}
.fs1_c00119{font-size:84.000000px;}
.fs2_c00119{font-size:96.000000px;}
.fs3_c00119{font-size:102.000000px;}
.y0_c00119{bottom:0.000000px;}
.y29_c00119{bottom:3.105000px;}
.y28_c00119{bottom:7.228357px;}
.y27_c00119{bottom:97.830000px;}
.y26_c00119{bottom:133.680000px;}
.y25_c00119{bottom:168.780000px;}
.y24_c00119{bottom:201.780000px;}
.y23_c00119{bottom:236.880000px;}
.y22_c00119{bottom:270.780000px;}
.y21_c00119{bottom:304.830000px;}
.y3_c00119{bottom:330.030000px;}
.y20_c00119{bottom:338.880000px;}
.y2_c00119{bottom:360.180000px;}
.y1f_c00119{bottom:372.630000px;}
.y1_c00119{bottom:389.430000px;}
.y1e_c00119{bottom:408.780000px;}
.y1d_c00119{bottom:440.730000px;}
.y1c_c00119{bottom:475.230000px;}
.y1b_c00119{bottom:508.680000px;}
.y1a_c00119{bottom:543.030000px;}
.y19_c00119{bottom:576.180000px;}
.y18_c00119{bottom:610.530000px;}
.y17_c00119{bottom:643.680000px;}
.y16_c00119{bottom:676.680000px;}
.y15_c00119{bottom:710.730000px;}
.y14_c00119{bottom:744.630000px;}
.y13_c00119{bottom:778.680000px;}
.y12_c00119{bottom:811.980000px;}
.y11_c00119{bottom:845.430000px;}
.y10_c00119{bottom:879.180000px;}
.yf_c00119{bottom:912.030000px;}
.ye_c00119{bottom:945.330000px;}
.yd_c00119{bottom:978.180000px;}
.yc_c00119{bottom:1011.780000px;}
.yb_c00119{bottom:1044.630000px;}
.ya_c00119{bottom:1078.380000px;}
.y9_c00119{bottom:1111.830000px;}
.y8_c00119{bottom:1144.830000px;}
.y7_c00119{bottom:1177.830000px;}
.y6_c00119{bottom:1211.280000px;}
.y5_c00119{bottom:1243.980000px;}
.y4_c00119{bottom:1276.830000px;}
.h6_c00119{height:13.200074px;}
.h7_c00119{height:43.804688px;}
.h4_c00119{height:91.291992px;}
.h2_c00119{height:98.756836px;}
.h3_c00119{height:106.353516px;}
.h5_c00119{height:121.546875px;}
.h0_c00119{height:1362.450000px;}
.h1_c00119{height:1362.750000px;}
.w2_c00119{width:104.875500px;}
.w1_c00119{width:849.750000px;}
.w0_c00119{width:849.975000px;}
.x0_c00119{left:0.000000px;}
.x3_c00119{left:38.100000px;}
.x2_c00119{left:39.600000px;}
.x1_c00119{left:68.850000px;}
.xc_c00119{left:262.650000px;}
.xb_c00119{left:263.700000px;}
.x9_c00119{left:264.900000px;}
.x7_c00119{left:266.400000px;}
.x6_c00119{left:267.600000px;}
.x8_c00119{left:268.650000px;}
.x5_c00119{left:270.750000px;}
.x4_c00119{left:272.400000px;}
.xa_c00119{left:317.250000px;}
.xd_c00119{left:376.801758px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls1_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:10.666667pt;}
.ls0_c00119{letter-spacing:29.280000pt;}
.ws0_c00119{word-spacing:-56.000000pt;}
.ws1_c00119{word-spacing:-31.232000pt;}
.ws2_c00119{word-spacing:0.000000pt;}
._37_c00119{margin-left:-21.573333pt;}
._29_c00119{margin-left:-19.488000pt;}
._2c_c00119{margin-left:-16.501333pt;}
._38_c00119{margin-left:-14.080000pt;}
._2b_c00119{margin-left:-11.856000pt;}
._a_c00119{margin-left:-10.709333pt;}
._28_c00119{margin-left:-9.760000pt;}
._b_c00119{margin-left:-7.722667pt;}
._8_c00119{margin-left:-6.240000pt;}
._9_c00119{margin-left:-5.077333pt;}
._7_c00119{margin-left:-3.258667pt;}
._1_c00119{margin-left:-2.218667pt;}
._0_c00119{margin-left:-1.248000pt;}
._5_c00119{width:1.040000pt;}
._12_c00119{width:2.096000pt;}
._3_c00119{width:3.466667pt;}
._f_c00119{width:4.565333pt;}
._1f_c00119{width:5.488000pt;}
._c_c00119{width:6.618667pt;}
._18_c00119{width:8.362667pt;}
._14_c00119{width:9.354667pt;}
._25_c00119{width:10.752000pt;}
._d_c00119{width:11.786667pt;}
._17_c00119{width:13.482667pt;}
._20_c00119{width:14.474667pt;}
._1d_c00119{width:15.616000pt;}
._16_c00119{width:16.554667pt;}
._1e_c00119{width:17.749333pt;}
._13_c00119{width:18.736000pt;}
._2a_c00119{width:19.722667pt;}
._4_c00119{width:20.661333pt;}
._2d_c00119{width:21.632000pt;}
._10_c00119{width:22.544000pt;}
._2_c00119{width:24.613333pt;}
._3e_c00119{width:25.578667pt;}
._6_c00119{width:26.485333pt;}
._e_c00119{width:28.357333pt;}
._35_c00119{width:29.253333pt;}
._24_c00119{width:30.213333pt;}
._27_c00119{width:31.136000pt;}
._3f_c00119{width:32.128000pt;}
._11_c00119{width:33.024000pt;}
._21_c00119{width:34.512000pt;}
._1c_c00119{width:36.410667pt;}
._15_c00119{width:37.317333pt;}
._32_c00119{width:38.805333pt;}
._19_c00119{width:40.085333pt;}
._2e_c00119{width:42.026667pt;}
._36_c00119{width:43.578667pt;}
._33_c00119{width:44.496000pt;}
._22_c00119{width:45.472000pt;}
._30_c00119{width:47.770667pt;}
._1b_c00119{width:49.680000pt;}
._1a_c00119{width:51.770667pt;}
._23_c00119{width:53.482667pt;}
._3a_c00119{width:55.600000pt;}
._3d_c00119{width:57.845333pt;}
._2f_c00119{width:59.386667pt;}
._26_c00119{width:61.013333pt;}
._39_c00119{width:63.674667pt;}
._34_c00119{width:64.624000pt;}
._31_c00119{width:69.328000pt;}
._3c_c00119{width:170.325333pt;}
._3b_c00119{width:632.538667pt;}
._40_c00119{width:1860.602667pt;}
.fs4_c00119{font-size:42.666667pt;}
.fs0_c00119{font-size:69.333333pt;}
.fs1_c00119{font-size:74.666667pt;}
.fs2_c00119{font-size:85.333333pt;}
.fs3_c00119{font-size:90.666667pt;}
.y0_c00119{bottom:0.000000pt;}
.y29_c00119{bottom:2.760000pt;}
.y28_c00119{bottom:6.425206pt;}
.y27_c00119{bottom:86.960000pt;}
.y26_c00119{bottom:118.826667pt;}
.y25_c00119{bottom:150.026667pt;}
.y24_c00119{bottom:179.360000pt;}
.y23_c00119{bottom:210.560000pt;}
.y22_c00119{bottom:240.693333pt;}
.y21_c00119{bottom:270.960000pt;}
.y3_c00119{bottom:293.360000pt;}
.y20_c00119{bottom:301.226667pt;}
.y2_c00119{bottom:320.160000pt;}
.y1f_c00119{bottom:331.226667pt;}
.y1_c00119{bottom:346.160000pt;}
.y1e_c00119{bottom:363.360000pt;}
.y1d_c00119{bottom:391.760000pt;}
.y1c_c00119{bottom:422.426667pt;}
.y1b_c00119{bottom:452.160000pt;}
.y1a_c00119{bottom:482.693333pt;}
.y19_c00119{bottom:512.160000pt;}
.y18_c00119{bottom:542.693333pt;}
.y17_c00119{bottom:572.160000pt;}
.y16_c00119{bottom:601.493333pt;}
.y15_c00119{bottom:631.760000pt;}
.y14_c00119{bottom:661.893333pt;}
.y13_c00119{bottom:692.160000pt;}
.y12_c00119{bottom:721.760000pt;}
.y11_c00119{bottom:751.493333pt;}
.y10_c00119{bottom:781.493333pt;}
.yf_c00119{bottom:810.693333pt;}
.ye_c00119{bottom:840.293333pt;}
.yd_c00119{bottom:869.493333pt;}
.yc_c00119{bottom:899.360000pt;}
.yb_c00119{bottom:928.560000pt;}
.ya_c00119{bottom:958.560000pt;}
.y9_c00119{bottom:988.293333pt;}
.y8_c00119{bottom:1017.626667pt;}
.y7_c00119{bottom:1046.960000pt;}
.y6_c00119{bottom:1076.693333pt;}
.y5_c00119{bottom:1105.760000pt;}
.y4_c00119{bottom:1134.960000pt;}
.h6_c00119{height:11.733399pt;}
.h7_c00119{height:38.937500pt;}
.h4_c00119{height:81.148438pt;}
.h2_c00119{height:87.783854pt;}
.h3_c00119{height:94.536458pt;}
.h5_c00119{height:108.041667pt;}
.h0_c00119{height:1211.066667pt;}
.h1_c00119{height:1211.333333pt;}
.w2_c00119{width:93.222667pt;}
.w1_c00119{width:755.333333pt;}
.w0_c00119{width:755.533333pt;}
.x0_c00119{left:0.000000pt;}
.x3_c00119{left:33.866667pt;}
.x2_c00119{left:35.200000pt;}
.x1_c00119{left:61.200000pt;}
.xc_c00119{left:233.466667pt;}
.xb_c00119{left:234.400000pt;}
.x9_c00119{left:235.466667pt;}
.x7_c00119{left:236.800000pt;}
.x6_c00119{left:237.866667pt;}
.x8_c00119{left:238.800000pt;}
.x5_c00119{left:240.666667pt;}
.x4_c00119{left:242.133333pt;}
.xa_c00119{left:282.000000pt;}
.xd_c00119{left:334.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aa89fd6a4e870807321b20ce.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_d5e53de63adaf19c12b140e6.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls1_c00120{letter-spacing:0.000000px;}
.ls2_c00120{letter-spacing:6.000000px;}
.ls0_c00120{letter-spacing:6.720000px;}
.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;}
}
.ws0_c00120{word-spacing:-20.244000px;}
.ws1_c00120{word-spacing:0.000000px;}
._39_c00120{margin-left:-39.264000px;}
._27_c00120{margin-left:-33.600000px;}
._38_c00120{margin-left:-32.208000px;}
._53_c00120{margin-left:-28.440000px;}
._2f_c00120{margin-left:-26.460000px;}
._1e_c00120{margin-left:-24.696000px;}
._3a_c00120{margin-left:-23.232000px;}
._32_c00120{margin-left:-21.504000px;}
._28_c00120{margin-left:-17.856000px;}
._f_c00120{margin-left:-15.936000px;}
._37_c00120{margin-left:-13.260000px;}
._2a_c00120{margin-left:-11.580000px;}
._c_c00120{margin-left:-9.888000px;}
._1f_c00120{margin-left:-8.064000px;}
._14_c00120{margin-left:-6.240000px;}
._23_c00120{margin-left:-4.992000px;}
._15_c00120{margin-left:-3.744000px;}
._e_c00120{margin-left:-2.112000px;}
._17_c00120{margin-left:-1.080000px;}
._12_c00120{width:1.548000px;}
._8_c00120{width:2.688000px;}
._1_c00120{width:3.840000px;}
._2_c00120{width:4.896000px;}
._d_c00120{width:6.528000px;}
._9_c00120{width:7.584000px;}
._11_c00120{width:8.688000px;}
._4_c00120{width:9.888000px;}
._13_c00120{width:11.280000px;}
._3_c00120{width:12.672000px;}
._4d_c00120{width:13.752000px;}
._6_c00120{width:14.976000px;}
._0_c00120{width:16.800000px;}
._5_c00120{width:18.816000px;}
._7_c00120{width:20.448000px;}
._21_c00120{width:22.080000px;}
._52_c00120{width:24.204000px;}
._a_c00120{width:25.440000px;}
._20_c00120{width:26.496000px;}
._10_c00120{width:28.464000px;}
._4e_c00120{width:29.664000px;}
._40_c00120{width:30.684000px;}
._2b_c00120{width:32.064000px;}
._1c_c00120{width:33.840000px;}
._b_c00120{width:35.424000px;}
._25_c00120{width:36.804000px;}
._1b_c00120{width:38.592000px;}
._24_c00120{width:41.952000px;}
._3b_c00120{width:43.428000px;}
._45_c00120{width:44.886000px;}
._29_c00120{width:47.040000px;}
._22_c00120{width:49.152000px;}
._1a_c00120{width:50.184000px;}
._1d_c00120{width:52.152000px;}
._18_c00120{width:53.364000px;}
._51_c00120{width:55.494000px;}
._41_c00120{width:56.724000px;}
._19_c00120{width:58.548000px;}
._3c_c00120{width:63.264000px;}
._4c_c00120{width:68.784000px;}
._2e_c00120{width:71.772000px;}
._2d_c00120{width:77.184000px;}
._2c_c00120{width:83.580000px;}
._50_c00120{width:96.924000px;}
._3f_c00120{width:102.516000px;}
._4f_c00120{width:107.808000px;}
._30_c00120{width:116.064000px;}
._26_c00120{width:125.676000px;}
._36_c00120{width:133.200000px;}
._34_c00120{width:147.936000px;}
._48_c00120{width:157.116000px;}
._44_c00120{width:163.467000px;}
._31_c00120{width:170.112000px;}
._3e_c00120{width:208.068000px;}
._47_c00120{width:210.156000px;}
._4a_c00120{width:238.854000px;}
._35_c00120{width:252.384000px;}
._54_c00120{width:259.596000px;}
._46_c00120{width:267.939000px;}
._4b_c00120{width:346.653000px;}
._49_c00120{width:466.020000px;}
._42_c00120{width:534.600000px;}
._3d_c00120{width:556.272000px;}
._16_c00120{width:574.752000px;}
._43_c00120{width:596.532000px;}
._33_c00120{width:748.128000px;}
._55_c00120{width:921.216000px;}
.fc2_c00120{color:transparent;}
.fc1_c00120{color:rgb(128,128,128);}
.fc0_c00120{color:rgb(0,0,0);}
.fs5_c00120{font-size:48.000000px;}
.fs3_c00120{font-size:60.000000px;}
.fs2_c00120{font-size:75.000000px;}
.fs1_c00120{font-size:84.000000px;}
.fs4_c00120{font-size:87.000000px;}
.fs0_c00120{font-size:96.000000px;}
.y0_c00120{bottom:0.000000px;}
.y28_c00120{bottom:3.105000px;}
.y27_c00120{bottom:7.228371px;}
.y26_c00120{bottom:90.915000px;}
.y25_c00120{bottom:124.515000px;}
.y24_c00120{bottom:159.015000px;}
.y23_c00120{bottom:193.065000px;}
.y22_c00120{bottom:227.115000px;}
.y21_c00120{bottom:260.865000px;}
.y20_c00120{bottom:295.065000px;}
.y1f_c00120{bottom:328.815000px;}
.y1e_c00120{bottom:363.465000px;}
.y1d_c00120{bottom:396.315000px;}
.y1c_c00120{bottom:430.065000px;}
.y1b_c00120{bottom:464.115000px;}
.y1a_c00120{bottom:497.265000px;}
.y19_c00120{bottom:531.615000px;}
.y18_c00120{bottom:565.065000px;}
.y17_c00120{bottom:598.065000px;}
.y16_c00120{bottom:631.815000px;}
.y15_c00120{bottom:663.915000px;}
.y14_c00120{bottom:699.315000px;}
.y13_c00120{bottom:714.615000px;}
.y12_c00120{bottom:734.865000px;}
.y11_c00120{bottom:768.615000px;}
.y10_c00120{bottom:802.215000px;}
.yf_c00120{bottom:834.615000px;}
.ye_c00120{bottom:866.715000px;}
.yd_c00120{bottom:899.565000px;}
.yc_c00120{bottom:931.515000px;}
.yb_c00120{bottom:966.015000px;}
.ya_c00120{bottom:983.565000px;}
.y9_c00120{bottom:1004.415000px;}
.y8_c00120{bottom:1037.115000px;}
.y7_c00120{bottom:1069.215000px;}
.y6_c00120{bottom:1101.915000px;}
.y5_c00120{bottom:1136.115000px;}
.y4_c00120{bottom:1168.815000px;}
.y3_c00120{bottom:1202.865000px;}
.y2_c00120{bottom:1235.715000px;}
.y1_c00120{bottom:1268.415000px;}
.h4_c00120{height:13.200074px;}
.h5_c00120{height:43.804688px;}
.h3_c00120{height:87.780762px;}
.h2_c00120{height:121.546875px;}
.h0_c00120{height:1360.275000px;}
.h1_c00120{height:1360.500000px;}
.w2_c00120{width:104.875500px;}
.w1_c00120{width:863.250000px;}
.w0_c00120{width:863.475000px;}
.x0_c00120{left:0.000000px;}
.x8_c00120{left:50.400000px;}
.x7_c00120{left:51.600000px;}
.x6_c00120{left:52.650000px;}
.x9_c00120{left:53.700000px;}
.x3_c00120{left:54.750000px;}
.x2_c00120{left:55.800000px;}
.x4_c00120{left:57.450000px;}
.x1_c00120{left:58.500000px;}
.x5_c00120{left:61.800000px;}
.xa_c00120{left:255.750000px;}
.xb_c00120{left:383.551758px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls1_c00120{letter-spacing:0.000000pt;}
.ls2_c00120{letter-spacing:5.333333pt;}
.ls0_c00120{letter-spacing:5.973333pt;}
.ws0_c00120{word-spacing:-17.994667pt;}
.ws1_c00120{word-spacing:0.000000pt;}
._39_c00120{margin-left:-34.901333pt;}
._27_c00120{margin-left:-29.866667pt;}
._38_c00120{margin-left:-28.629333pt;}
._53_c00120{margin-left:-25.280000pt;}
._2f_c00120{margin-left:-23.520000pt;}
._1e_c00120{margin-left:-21.952000pt;}
._3a_c00120{margin-left:-20.650667pt;}
._32_c00120{margin-left:-19.114667pt;}
._28_c00120{margin-left:-15.872000pt;}
._f_c00120{margin-left:-14.165333pt;}
._37_c00120{margin-left:-11.786667pt;}
._2a_c00120{margin-left:-10.293333pt;}
._c_c00120{margin-left:-8.789333pt;}
._1f_c00120{margin-left:-7.168000pt;}
._14_c00120{margin-left:-5.546667pt;}
._23_c00120{margin-left:-4.437333pt;}
._15_c00120{margin-left:-3.328000pt;}
._e_c00120{margin-left:-1.877333pt;}
._17_c00120{margin-left:-0.960000pt;}
._12_c00120{width:1.376000pt;}
._8_c00120{width:2.389333pt;}
._1_c00120{width:3.413333pt;}
._2_c00120{width:4.352000pt;}
._d_c00120{width:5.802667pt;}
._9_c00120{width:6.741333pt;}
._11_c00120{width:7.722667pt;}
._4_c00120{width:8.789333pt;}
._13_c00120{width:10.026667pt;}
._3_c00120{width:11.264000pt;}
._4d_c00120{width:12.224000pt;}
._6_c00120{width:13.312000pt;}
._0_c00120{width:14.933333pt;}
._5_c00120{width:16.725333pt;}
._7_c00120{width:18.176000pt;}
._21_c00120{width:19.626667pt;}
._52_c00120{width:21.514667pt;}
._a_c00120{width:22.613333pt;}
._20_c00120{width:23.552000pt;}
._10_c00120{width:25.301333pt;}
._4e_c00120{width:26.368000pt;}
._40_c00120{width:27.274667pt;}
._2b_c00120{width:28.501333pt;}
._1c_c00120{width:30.080000pt;}
._b_c00120{width:31.488000pt;}
._25_c00120{width:32.714667pt;}
._1b_c00120{width:34.304000pt;}
._24_c00120{width:37.290667pt;}
._3b_c00120{width:38.602667pt;}
._45_c00120{width:39.898667pt;}
._29_c00120{width:41.813333pt;}
._22_c00120{width:43.690667pt;}
._1a_c00120{width:44.608000pt;}
._1d_c00120{width:46.357333pt;}
._18_c00120{width:47.434667pt;}
._51_c00120{width:49.328000pt;}
._41_c00120{width:50.421333pt;}
._19_c00120{width:52.042667pt;}
._3c_c00120{width:56.234667pt;}
._4c_c00120{width:61.141333pt;}
._2e_c00120{width:63.797333pt;}
._2d_c00120{width:68.608000pt;}
._2c_c00120{width:74.293333pt;}
._50_c00120{width:86.154667pt;}
._3f_c00120{width:91.125333pt;}
._4f_c00120{width:95.829333pt;}
._30_c00120{width:103.168000pt;}
._26_c00120{width:111.712000pt;}
._36_c00120{width:118.400000pt;}
._34_c00120{width:131.498667pt;}
._48_c00120{width:139.658667pt;}
._44_c00120{width:145.304000pt;}
._31_c00120{width:151.210667pt;}
._3e_c00120{width:184.949333pt;}
._47_c00120{width:186.805333pt;}
._4a_c00120{width:212.314667pt;}
._35_c00120{width:224.341333pt;}
._54_c00120{width:230.752000pt;}
._46_c00120{width:238.168000pt;}
._4b_c00120{width:308.136000pt;}
._49_c00120{width:414.240000pt;}
._42_c00120{width:475.200000pt;}
._3d_c00120{width:494.464000pt;}
._16_c00120{width:510.890667pt;}
._43_c00120{width:530.250667pt;}
._33_c00120{width:665.002667pt;}
._55_c00120{width:818.858667pt;}
.fs5_c00120{font-size:42.666667pt;}
.fs3_c00120{font-size:53.333333pt;}
.fs2_c00120{font-size:66.666667pt;}
.fs1_c00120{font-size:74.666667pt;}
.fs4_c00120{font-size:77.333333pt;}
.fs0_c00120{font-size:85.333333pt;}
.y0_c00120{bottom:0.000000pt;}
.y28_c00120{bottom:2.760000pt;}
.y27_c00120{bottom:6.425219pt;}
.y26_c00120{bottom:80.813333pt;}
.y25_c00120{bottom:110.680000pt;}
.y24_c00120{bottom:141.346667pt;}
.y23_c00120{bottom:171.613333pt;}
.y22_c00120{bottom:201.880000pt;}
.y21_c00120{bottom:231.880000pt;}
.y20_c00120{bottom:262.280000pt;}
.y1f_c00120{bottom:292.280000pt;}
.y1e_c00120{bottom:323.080000pt;}
.y1d_c00120{bottom:352.280000pt;}
.y1c_c00120{bottom:382.280000pt;}
.y1b_c00120{bottom:412.546667pt;}
.y1a_c00120{bottom:442.013333pt;}
.y19_c00120{bottom:472.546667pt;}
.y18_c00120{bottom:502.280000pt;}
.y17_c00120{bottom:531.613333pt;}
.y16_c00120{bottom:561.613333pt;}
.y15_c00120{bottom:590.146667pt;}
.y14_c00120{bottom:621.613333pt;}
.y13_c00120{bottom:635.213333pt;}
.y12_c00120{bottom:653.213333pt;}
.y11_c00120{bottom:683.213333pt;}
.y10_c00120{bottom:713.080000pt;}
.yf_c00120{bottom:741.880000pt;}
.ye_c00120{bottom:770.413333pt;}
.yd_c00120{bottom:799.613333pt;}
.yc_c00120{bottom:828.013333pt;}
.yb_c00120{bottom:858.680000pt;}
.ya_c00120{bottom:874.280000pt;}
.y9_c00120{bottom:892.813333pt;}
.y8_c00120{bottom:921.880000pt;}
.y7_c00120{bottom:950.413333pt;}
.y6_c00120{bottom:979.480000pt;}
.y5_c00120{bottom:1009.880000pt;}
.y4_c00120{bottom:1038.946667pt;}
.y3_c00120{bottom:1069.213333pt;}
.y2_c00120{bottom:1098.413333pt;}
.y1_c00120{bottom:1127.480000pt;}
.h4_c00120{height:11.733399pt;}
.h5_c00120{height:38.937500pt;}
.h3_c00120{height:78.027344pt;}
.h2_c00120{height:108.041667pt;}
.h0_c00120{height:1209.133333pt;}
.h1_c00120{height:1209.333333pt;}
.w2_c00120{width:93.222667pt;}
.w1_c00120{width:767.333333pt;}
.w0_c00120{width:767.533333pt;}
.x0_c00120{left:0.000000pt;}
.x8_c00120{left:44.800000pt;}
.x7_c00120{left:45.866667pt;}
.x6_c00120{left:46.800000pt;}
.x9_c00120{left:47.733333pt;}
.x3_c00120{left:48.666667pt;}
.x2_c00120{left:49.600000pt;}
.x4_c00120{left:51.066667pt;}
.x1_c00120{left:52.000000pt;}
.x5_c00120{left:54.933333pt;}
.xa_c00120{left:227.333333pt;}
.xb_c00120{left:340.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b182f5b95a5b87b57a37a76.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_28eba38078dbb99e1a7f1bab.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_1e84e19535fc269f9032e5bf.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_61f617401224a048049b894e.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_633078a36a296b09204dc7fb.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00121;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00121{font-family:ff6_c00121;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.ls2_c00121{letter-spacing:3.000000px;}
.ls1_c00121{letter-spacing:24.000000px;}
.ls3_c00121{letter-spacing:129.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00121{word-spacing:-26.859000px;}
.ws0_c00121{word-spacing:-24.000000px;}
.ws3_c00121{word-spacing:0.000000px;}
.ws2_c00121{word-spacing:2.064000px;}
._3b_c00121{margin-left:-145.986000px;}
._41_c00121{margin-left:-144.855000px;}
._3e_c00121{margin-left:-142.767000px;}
._3c_c00121{margin-left:-115.095000px;}
._43_c00121{margin-left:-79.083000px;}
._40_c00121{margin-left:-60.291000px;}
._34_c00121{margin-left:-46.176000px;}
._3f_c00121{margin-left:-38.715000px;}
._7_c00121{margin-left:-30.144000px;}
._a_c00121{margin-left:-29.088000px;}
._8_c00121{margin-left:-26.112000px;}
._9_c00121{margin-left:-24.096000px;}
._11_c00121{margin-left:-21.408000px;}
._5_c00121{margin-left:-20.256000px;}
._10_c00121{margin-left:-18.624000px;}
._1e_c00121{margin-left:-16.128000px;}
._31_c00121{margin-left:-15.048000px;}
._12_c00121{margin-left:-12.024000px;}
._1f_c00121{margin-left:-10.248000px;}
._6_c00121{margin-left:-8.064000px;}
._32_c00121{margin-left:-6.816000px;}
._4_c00121{margin-left:-5.784000px;}
._29_c00121{margin-left:-4.536000px;}
._19_c00121{margin-left:-3.456000px;}
._16_c00121{margin-left:-2.400000px;}
._17_c00121{margin-left:-1.056000px;}
._46_c00121{width:1.008000px;}
._14_c00121{width:2.016000px;}
._3_c00121{width:3.360000px;}
._2_c00121{width:4.416000px;}
._13_c00121{width:6.240000px;}
._1c_c00121{width:7.392000px;}
._1_c00121{width:8.448000px;}
._0_c00121{width:9.504000px;}
._1a_c00121{width:10.560000px;}
._15_c00121{width:11.880000px;}
._20_c00121{width:13.800000px;}
._28_c00121{width:15.648000px;}
._22_c00121{width:17.376000px;}
._26_c00121{width:18.720000px;}
._d_c00121{width:20.160000px;}
._1d_c00121{width:22.272000px;}
._30_c00121{width:25.320000px;}
._e_c00121{width:26.880000px;}
._21_c00121{width:27.960000px;}
._c_c00121{width:29.664000px;}
._45_c00121{width:30.720000px;}
._f_c00121{width:31.776000px;}
._18_c00121{width:33.504000px;}
._25_c00121{width:34.752000px;}
._b_c00121{width:36.480000px;}
._2f_c00121{width:37.536000px;}
._2a_c00121{width:39.264000px;}
._24_c00121{width:40.992000px;}
._2d_c00121{width:42.192000px;}
._1b_c00121{width:43.584000px;}
._2b_c00121{width:45.792000px;}
._23_c00121{width:49.056000px;}
._37_c00121{width:50.832000px;}
._2e_c00121{width:51.912000px;}
._44_c00121{width:53.376000px;}
._38_c00121{width:54.438000px;}
._47_c00121{width:56.976000px;}
._27_c00121{width:65.784000px;}
._2c_c00121{width:160.248000px;}
._36_c00121{width:161.391000px;}
._48_c00121{width:169.464000px;}
._3d_c00121{width:172.869000px;}
._33_c00121{width:218.976000px;}
._39_c00121{width:386.820000px;}
._42_c00121{width:393.588000px;}
._3a_c00121{width:433.803000px;}
._35_c00121{width:530.976000px;}
._49_c00121{width:569.424000px;}
._4a_c00121{width:912.768000px;}
._4b_c00121{width:968.448000px;}
.fc2_c00121{color:transparent;}
.fc1_c00121{color:rgb(128,128,128);}
.fc0_c00121{color:rgb(0,0,0);}
.fs5_c00121{font-size:48.000000px;}
.fs3_c00121{font-size:78.000000px;}
.fs4_c00121{font-size:87.000000px;}
.fs1_c00121{font-size:93.000000px;}
.fs0_c00121{font-size:96.000000px;}
.fs2_c00121{font-size:99.000000px;}
.y0_c00121{bottom:0.000000px;}
.y27_c00121{bottom:3.105000px;}
.y26_c00121{bottom:7.228357px;}
.y25_c00121{bottom:110.430000px;}
.y24_c00121{bottom:142.830000px;}
.y23_c00121{bottom:177.180000px;}
.y22_c00121{bottom:211.680000px;}
.y21_c00121{bottom:246.030000px;}
.y20_c00121{bottom:280.080000px;}
.y1f_c00121{bottom:312.930000px;}
.y1e_c00121{bottom:348.630000px;}
.y1d_c00121{bottom:382.830000px;}
.y1c_c00121{bottom:416.880000px;}
.y1b_c00121{bottom:450.930000px;}
.y1a_c00121{bottom:467.880000px;}
.y19_c00121{bottom:488.730000px;}
.y18_c00121{bottom:521.130000px;}
.y17_c00121{bottom:552.930000px;}
.y16_c00121{bottom:587.880000px;}
.y15_c00121{bottom:621.030000px;}
.y14_c00121{bottom:654.780000px;}
.y13_c00121{bottom:688.230000px;}
.y12_c00121{bottom:722.280000px;}
.y11_c00121{bottom:756.630000px;}
.y10_c00121{bottom:790.080000px;}
.yf_c00121{bottom:823.830000px;}
.ye_c00121{bottom:857.880000px;}
.yd_c00121{bottom:891.630000px;}
.yc_c00121{bottom:925.830000px;}
.yb_c00121{bottom:958.530000px;}
.ya_c00121{bottom:989.280000px;}
.y9_c00121{bottom:1026.780000px;}
.y8_c00121{bottom:1059.180000px;}
.y7_c00121{bottom:1092.180000px;}
.y6_c00121{bottom:1124.580000px;}
.y5_c00121{bottom:1159.680000px;}
.y4_c00121{bottom:1192.830000px;}
.y3_c00121{bottom:1227.180000px;}
.y2_c00121{bottom:1260.180000px;}
.y1_c00121{bottom:1293.330000px;}
.h6_c00121{height:13.200074px;}
.h7_c00121{height:43.804688px;}
.h2_c00121{height:100.608000px;}
.h5_c00121{height:110.151855px;}
.h3_c00121{height:117.748535px;}
.h4_c00121{height:125.345215px;}
.h0_c00121{height:1382.700000px;}
.h1_c00121{height:1383.000000px;}
.w2_c00121{width:104.875500px;}
.w0_c00121{width:863.175000px;}
.w1_c00121{width:863.250000px;}
.x0_c00121{left:0.000000px;}
.xe_c00121{left:51.600000px;}
.xd_c00121{left:80.700000px;}
.x6_c00121{left:208.200000px;}
.x4_c00121{left:244.800000px;}
.x1_c00121{left:265.350000px;}
.x2_c00121{left:267.600000px;}
.x3_c00121{left:268.650000px;}
.x5_c00121{left:270.300000px;}
.x7_c00121{left:271.350000px;}
.x8_c00121{left:272.400000px;}
.x9_c00121{left:274.050000px;}
.xa_c00121{left:275.100000px;}
.xb_c00121{left:276.300000px;}
.xf_c00121{left:282.150000px;}
.xc_c00121{left:328.050000px;}
.x10_c00121{left:383.401749px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ls2_c00121{letter-spacing:2.666667pt;}
.ls1_c00121{letter-spacing:21.333333pt;}
.ls3_c00121{letter-spacing:114.666667pt;}
.ws1_c00121{word-spacing:-23.874667pt;}
.ws0_c00121{word-spacing:-21.333333pt;}
.ws3_c00121{word-spacing:0.000000pt;}
.ws2_c00121{word-spacing:1.834667pt;}
._3b_c00121{margin-left:-129.765333pt;}
._41_c00121{margin-left:-128.760000pt;}
._3e_c00121{margin-left:-126.904000pt;}
._3c_c00121{margin-left:-102.306667pt;}
._43_c00121{margin-left:-70.296000pt;}
._40_c00121{margin-left:-53.592000pt;}
._34_c00121{margin-left:-41.045333pt;}
._3f_c00121{margin-left:-34.413333pt;}
._7_c00121{margin-left:-26.794667pt;}
._a_c00121{margin-left:-25.856000pt;}
._8_c00121{margin-left:-23.210667pt;}
._9_c00121{margin-left:-21.418667pt;}
._11_c00121{margin-left:-19.029333pt;}
._5_c00121{margin-left:-18.005333pt;}
._10_c00121{margin-left:-16.554667pt;}
._1e_c00121{margin-left:-14.336000pt;}
._31_c00121{margin-left:-13.376000pt;}
._12_c00121{margin-left:-10.688000pt;}
._1f_c00121{margin-left:-9.109333pt;}
._6_c00121{margin-left:-7.168000pt;}
._32_c00121{margin-left:-6.058667pt;}
._4_c00121{margin-left:-5.141333pt;}
._29_c00121{margin-left:-4.032000pt;}
._19_c00121{margin-left:-3.072000pt;}
._16_c00121{margin-left:-2.133333pt;}
._17_c00121{margin-left:-0.938667pt;}
._46_c00121{width:0.896000pt;}
._14_c00121{width:1.792000pt;}
._3_c00121{width:2.986667pt;}
._2_c00121{width:3.925333pt;}
._13_c00121{width:5.546667pt;}
._1c_c00121{width:6.570667pt;}
._1_c00121{width:7.509333pt;}
._0_c00121{width:8.448000pt;}
._1a_c00121{width:9.386667pt;}
._15_c00121{width:10.560000pt;}
._20_c00121{width:12.266667pt;}
._28_c00121{width:13.909333pt;}
._22_c00121{width:15.445333pt;}
._26_c00121{width:16.640000pt;}
._d_c00121{width:17.920000pt;}
._1d_c00121{width:19.797333pt;}
._30_c00121{width:22.506667pt;}
._e_c00121{width:23.893333pt;}
._21_c00121{width:24.853333pt;}
._c_c00121{width:26.368000pt;}
._45_c00121{width:27.306667pt;}
._f_c00121{width:28.245333pt;}
._18_c00121{width:29.781333pt;}
._25_c00121{width:30.890667pt;}
._b_c00121{width:32.426667pt;}
._2f_c00121{width:33.365333pt;}
._2a_c00121{width:34.901333pt;}
._24_c00121{width:36.437333pt;}
._2d_c00121{width:37.504000pt;}
._1b_c00121{width:38.741333pt;}
._2b_c00121{width:40.704000pt;}
._23_c00121{width:43.605333pt;}
._37_c00121{width:45.184000pt;}
._2e_c00121{width:46.144000pt;}
._44_c00121{width:47.445333pt;}
._38_c00121{width:48.389333pt;}
._47_c00121{width:50.645333pt;}
._27_c00121{width:58.474667pt;}
._2c_c00121{width:142.442667pt;}
._36_c00121{width:143.458667pt;}
._48_c00121{width:150.634667pt;}
._3d_c00121{width:153.661333pt;}
._33_c00121{width:194.645333pt;}
._39_c00121{width:343.840000pt;}
._42_c00121{width:349.856000pt;}
._3a_c00121{width:385.602667pt;}
._35_c00121{width:471.978667pt;}
._49_c00121{width:506.154667pt;}
._4a_c00121{width:811.349333pt;}
._4b_c00121{width:860.842667pt;}
.fs5_c00121{font-size:42.666667pt;}
.fs3_c00121{font-size:69.333333pt;}
.fs4_c00121{font-size:77.333333pt;}
.fs1_c00121{font-size:82.666667pt;}
.fs0_c00121{font-size:85.333333pt;}
.fs2_c00121{font-size:88.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y27_c00121{bottom:2.760000pt;}
.y26_c00121{bottom:6.425206pt;}
.y25_c00121{bottom:98.160000pt;}
.y24_c00121{bottom:126.960000pt;}
.y23_c00121{bottom:157.493333pt;}
.y22_c00121{bottom:188.160000pt;}
.y21_c00121{bottom:218.693333pt;}
.y20_c00121{bottom:248.960000pt;}
.y1f_c00121{bottom:278.160000pt;}
.y1e_c00121{bottom:309.893333pt;}
.y1d_c00121{bottom:340.293333pt;}
.y1c_c00121{bottom:370.560000pt;}
.y1b_c00121{bottom:400.826667pt;}
.y1a_c00121{bottom:415.893333pt;}
.y19_c00121{bottom:434.426667pt;}
.y18_c00121{bottom:463.226667pt;}
.y17_c00121{bottom:491.493333pt;}
.y16_c00121{bottom:522.560000pt;}
.y15_c00121{bottom:552.026667pt;}
.y14_c00121{bottom:582.026667pt;}
.y13_c00121{bottom:611.760000pt;}
.y12_c00121{bottom:642.026667pt;}
.y11_c00121{bottom:672.560000pt;}
.y10_c00121{bottom:702.293333pt;}
.yf_c00121{bottom:732.293333pt;}
.ye_c00121{bottom:762.560000pt;}
.yd_c00121{bottom:792.560000pt;}
.yc_c00121{bottom:822.960000pt;}
.yb_c00121{bottom:852.026667pt;}
.ya_c00121{bottom:879.360000pt;}
.y9_c00121{bottom:912.693333pt;}
.y8_c00121{bottom:941.493333pt;}
.y7_c00121{bottom:970.826667pt;}
.y6_c00121{bottom:999.626667pt;}
.y5_c00121{bottom:1030.826667pt;}
.y4_c00121{bottom:1060.293333pt;}
.y3_c00121{bottom:1090.826667pt;}
.y2_c00121{bottom:1120.160000pt;}
.y1_c00121{bottom:1149.626667pt;}
.h6_c00121{height:11.733399pt;}
.h7_c00121{height:38.937500pt;}
.h2_c00121{height:89.429333pt;}
.h5_c00121{height:97.912760pt;}
.h3_c00121{height:104.665365pt;}
.h4_c00121{height:111.417969pt;}
.h0_c00121{height:1229.066667pt;}
.h1_c00121{height:1229.333333pt;}
.w2_c00121{width:93.222667pt;}
.w0_c00121{width:767.266667pt;}
.w1_c00121{width:767.333333pt;}
.x0_c00121{left:0.000000pt;}
.xe_c00121{left:45.866667pt;}
.xd_c00121{left:71.733333pt;}
.x6_c00121{left:185.066667pt;}
.x4_c00121{left:217.600000pt;}
.x1_c00121{left:235.866667pt;}
.x2_c00121{left:237.866667pt;}
.x3_c00121{left:238.800000pt;}
.x5_c00121{left:240.266667pt;}
.x7_c00121{left:241.200000pt;}
.x8_c00121{left:242.133333pt;}
.x9_c00121{left:243.600000pt;}
.xa_c00121{left:244.533333pt;}
.xb_c00121{left:245.600000pt;}
.xf_c00121{left:250.800000pt;}
.xc_c00121{left:291.600000pt;}
.x10_c00121{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2aeace1f695109b56f18ca68.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_77a96604eed3b28bf5c16011.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_27f816c6d4a91dc40aed076a.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls6_c00122{letter-spacing:0.000000px;}
.ls3_c00122{letter-spacing:1.200000px;}
.ls4_c00122{letter-spacing:3.540000px;}
.ls7_c00122{letter-spacing:9.000000px;}
.ls2_c00122{letter-spacing:22.200000px;}
.ls0_c00122{letter-spacing:28.200000px;}
.ls5_c00122{letter-spacing:30.840000px;}
.ls1_c00122{letter-spacing:110.187000px;}
.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:-42.660000px;}
.ws7_c00122{word-spacing:-14.460000px;}
.ws4_c00122{word-spacing:-5.940000px;}
.ws2_c00122{word-spacing:-2.880000px;}
.ws5_c00122{word-spacing:-0.540000px;}
.ws0_c00122{word-spacing:-0.168000px;}
.ws8_c00122{word-spacing:0.000000px;}
.ws6_c00122{word-spacing:4.320000px;}
.ws3_c00122{word-spacing:27.900000px;}
._14_c00122{margin-left:-129.888000px;}
._19_c00122{margin-left:-78.093000px;}
._1a_c00122{margin-left:-44.019000px;}
._40_c00122{margin-left:-32.829000px;}
._15_c00122{margin-left:-28.788000px;}
._51_c00122{margin-left:-27.084000px;}
._1f_c00122{margin-left:-24.192000px;}
._25_c00122{margin-left:-22.560000px;}
._34_c00122{margin-left:-19.701000px;}
._38_c00122{margin-left:-18.228000px;}
._21_c00122{margin-left:-16.755000px;}
._8_c00122{margin-left:-15.750000px;}
._4e_c00122{margin-left:-14.373000px;}
._6_c00122{margin-left:-13.020000px;}
._5_c00122{margin-left:-11.760000px;}
._d_c00122{margin-left:-10.605000px;}
._0_c00122{margin-left:-9.240000px;}
._2_c00122{margin-left:-7.875000px;}
._1_c00122{margin-left:-6.300000px;}
._3_c00122{margin-left:-4.725000px;}
._23_c00122{margin-left:-3.012000px;}
._9_c00122{margin-left:-1.995000px;}
._b_c00122{width:1.785000px;}
._2e_c00122{width:3.072000px;}
._17_c00122{width:4.176000px;}
._2a_c00122{width:5.241000px;}
._2c_c00122{width:6.426000px;}
._c_c00122{width:8.400000px;}
._22_c00122{width:10.176000px;}
._46_c00122{width:11.778000px;}
._30_c00122{width:12.969000px;}
._49_c00122{width:14.883000px;}
._e_c00122{width:16.416000px;}
._10_c00122{width:18.000000px;}
._f_c00122{width:19.728000px;}
._a_c00122{width:21.210000px;}
._7_c00122{width:23.415000px;}
._12_c00122{width:24.480000px;}
._50_c00122{width:25.806000px;}
._4_c00122{width:27.300000px;}
._3d_c00122{width:28.653000px;}
._4a_c00122{width:30.747000px;}
._47_c00122{width:32.760000px;}
._24_c00122{width:34.176000px;}
._58_c00122{width:35.439000px;}
._37_c00122{width:36.474000px;}
._13_c00122{width:37.563000px;}
._20_c00122{width:39.456000px;}
._28_c00122{width:41.199000px;}
._59_c00122{width:42.282000px;}
._2b_c00122{width:43.419000px;}
._3b_c00122{width:45.321000px;}
._42_c00122{width:46.593000px;}
._18_c00122{width:48.300000px;}
._16_c00122{width:49.302000px;}
._4f_c00122{width:50.661000px;}
._29_c00122{width:51.708000px;}
._3a_c00122{width:53.721000px;}
._4d_c00122{width:54.804000px;}
._52_c00122{width:56.832000px;}
._55_c00122{width:58.515000px;}
._4c_c00122{width:62.370000px;}
._4b_c00122{width:64.188000px;}
._33_c00122{width:66.000000px;}
._56_c00122{width:67.365000px;}
._53_c00122{width:69.219000px;}
._11_c00122{width:72.489000px;}
._35_c00122{width:73.542000px;}
._45_c00122{width:75.462000px;}
._3f_c00122{width:78.432000px;}
._1c_c00122{width:79.518000px;}
._57_c00122{width:82.428000px;}
._1e_c00122{width:84.534000px;}
._3e_c00122{width:104.328000px;}
._26_c00122{width:128.187000px;}
._31_c00122{width:164.418000px;}
._2d_c00122{width:172.563000px;}
._44_c00122{width:174.021000px;}
._27_c00122{width:177.786000px;}
._39_c00122{width:309.390000px;}
._36_c00122{width:325.872000px;}
._3c_c00122{width:326.934000px;}
._43_c00122{width:341.559000px;}
._32_c00122{width:360.297000px;}
._54_c00122{width:364.272000px;}
._2f_c00122{width:398.427000px;}
._41_c00122{width:556.233000px;}
._48_c00122{width:614.028000px;}
._1b_c00122{width:723.942000px;}
._1d_c00122{width:776.937000px;}
._5a_c00122{width:1935.687000px;}
.fc2_c00122{color:transparent;}
.fc1_c00122{color:rgb(128,128,128);}
.fc0_c00122{color:rgb(0,0,0);}
.fs7_c00122{font-size:48.000000px;}
.fs5_c00122{font-size:60.000000px;}
.fs6_c00122{font-size:87.000000px;}
.fs4_c00122{font-size:93.000000px;}
.fs3_c00122{font-size:96.000000px;}
.fs0_c00122{font-size:105.000000px;}
.fs1_c00122{font-size:144.000000px;}
.fs2_c00122{font-size:168.000000px;}
.y0_c00122{bottom:0.000000px;}
.y26_c00122{bottom:3.105000px;}
.y25_c00122{bottom:7.228357px;}
.y24_c00122{bottom:70.830000px;}
.y23_c00122{bottom:112.830000px;}
.y22_c00122{bottom:146.880000px;}
.y21_c00122{bottom:180.930000px;}
.y20_c00122{bottom:215.280000px;}
.y1f_c00122{bottom:249.180000px;}
.y1e_c00122{bottom:282.480000px;}
.y1d_c00122{bottom:316.980000px;}
.y1c_c00122{bottom:350.730000px;}
.y1b_c00122{bottom:384.180000px;}
.y1a_c00122{bottom:417.930000px;}
.y19_c00122{bottom:451.530000px;}
.y18_c00122{bottom:485.430000px;}
.y17_c00122{bottom:519.180000px;}
.y16_c00122{bottom:552.480000px;}
.y15_c00122{bottom:585.330000px;}
.y14_c00122{bottom:618.930000px;}
.y13_c00122{bottom:652.680000px;}
.y12_c00122{bottom:686.430000px;}
.y11_c00122{bottom:721.980000px;}
.y10_c00122{bottom:755.430000px;}
.yf_c00122{bottom:787.830000px;}
.ye_c00122{bottom:820.230000px;}
.yd_c00122{bottom:852.630000px;}
.yc_c00122{bottom:887.280000px;}
.yb_c00122{bottom:907.530000px;}
.ya_c00122{bottom:920.430000px;}
.y9_c00122{bottom:935.580000px;}
.y8_c00122{bottom:958.830000px;}
.y7_c00122{bottom:988.530000px;}
.y6_c00122{bottom:1023.630000px;}
.y5_c00122{bottom:1056.480000px;}
.y4_c00122{bottom:1078.980000px;}
.y3_c00122{bottom:1126.530000px;}
.y2_c00122{bottom:1179.330000px;}
.y1_c00122{bottom:1255.530000px;}
.h5_c00122{height:13.200074px;}
.h6_c00122{height:43.804688px;}
.h4_c00122{height:117.748535px;}
.h3_c00122{height:121.546875px;}
.h1_c00122{height:132.941895px;}
.h2_c00122{height:182.320312px;}
.h0_c00122{height:1346.250000px;}
.w1_c00122{width:104.875500px;}
.w0_c00122{width:854.250000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:45.900000px;}
.xb_c00122{left:47.700000px;}
.x1_c00122{left:48.900000px;}
.xc_c00122{left:49.950000px;}
.xd_c00122{left:51.600000px;}
.xe_c00122{left:52.650000px;}
.xf_c00122{left:53.700000px;}
.x4_c00122{left:55.350000px;}
.x3_c00122{left:115.350000px;}
.x9_c00122{left:161.550000px;}
.x7_c00122{left:163.050000px;}
.x8_c00122{left:174.900000px;}
.x10_c00122{left:378.939240px;}
.xa_c00122{left:392.550000px;}
.x5_c00122{left:487.350000px;}
.x6_c00122{left:496.500000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls6_c00122{letter-spacing:0.000000pt;}
.ls3_c00122{letter-spacing:1.066667pt;}
.ls4_c00122{letter-spacing:3.146667pt;}
.ls7_c00122{letter-spacing:8.000000pt;}
.ls2_c00122{letter-spacing:19.733333pt;}
.ls0_c00122{letter-spacing:25.066667pt;}
.ls5_c00122{letter-spacing:27.413333pt;}
.ls1_c00122{letter-spacing:97.944000pt;}
.ws1_c00122{word-spacing:-37.920000pt;}
.ws7_c00122{word-spacing:-12.853333pt;}
.ws4_c00122{word-spacing:-5.280000pt;}
.ws2_c00122{word-spacing:-2.560000pt;}
.ws5_c00122{word-spacing:-0.480000pt;}
.ws0_c00122{word-spacing:-0.149333pt;}
.ws8_c00122{word-spacing:0.000000pt;}
.ws6_c00122{word-spacing:3.840000pt;}
.ws3_c00122{word-spacing:24.800000pt;}
._14_c00122{margin-left:-115.456000pt;}
._19_c00122{margin-left:-69.416000pt;}
._1a_c00122{margin-left:-39.128000pt;}
._40_c00122{margin-left:-29.181333pt;}
._15_c00122{margin-left:-25.589333pt;}
._51_c00122{margin-left:-24.074667pt;}
._1f_c00122{margin-left:-21.504000pt;}
._25_c00122{margin-left:-20.053333pt;}
._34_c00122{margin-left:-17.512000pt;}
._38_c00122{margin-left:-16.202667pt;}
._21_c00122{margin-left:-14.893333pt;}
._8_c00122{margin-left:-14.000000pt;}
._4e_c00122{margin-left:-12.776000pt;}
._6_c00122{margin-left:-11.573333pt;}
._5_c00122{margin-left:-10.453333pt;}
._d_c00122{margin-left:-9.426667pt;}
._0_c00122{margin-left:-8.213333pt;}
._2_c00122{margin-left:-7.000000pt;}
._1_c00122{margin-left:-5.600000pt;}
._3_c00122{margin-left:-4.200000pt;}
._23_c00122{margin-left:-2.677333pt;}
._9_c00122{margin-left:-1.773333pt;}
._b_c00122{width:1.586667pt;}
._2e_c00122{width:2.730667pt;}
._17_c00122{width:3.712000pt;}
._2a_c00122{width:4.658667pt;}
._2c_c00122{width:5.712000pt;}
._c_c00122{width:7.466667pt;}
._22_c00122{width:9.045333pt;}
._46_c00122{width:10.469333pt;}
._30_c00122{width:11.528000pt;}
._49_c00122{width:13.229333pt;}
._e_c00122{width:14.592000pt;}
._10_c00122{width:16.000000pt;}
._f_c00122{width:17.536000pt;}
._a_c00122{width:18.853333pt;}
._7_c00122{width:20.813333pt;}
._12_c00122{width:21.760000pt;}
._50_c00122{width:22.938667pt;}
._4_c00122{width:24.266667pt;}
._3d_c00122{width:25.469333pt;}
._4a_c00122{width:27.330667pt;}
._47_c00122{width:29.120000pt;}
._24_c00122{width:30.378667pt;}
._58_c00122{width:31.501333pt;}
._37_c00122{width:32.421333pt;}
._13_c00122{width:33.389333pt;}
._20_c00122{width:35.072000pt;}
._28_c00122{width:36.621333pt;}
._59_c00122{width:37.584000pt;}
._2b_c00122{width:38.594667pt;}
._3b_c00122{width:40.285333pt;}
._42_c00122{width:41.416000pt;}
._18_c00122{width:42.933333pt;}
._16_c00122{width:43.824000pt;}
._4f_c00122{width:45.032000pt;}
._29_c00122{width:45.962667pt;}
._3a_c00122{width:47.752000pt;}
._4d_c00122{width:48.714667pt;}
._52_c00122{width:50.517333pt;}
._55_c00122{width:52.013333pt;}
._4c_c00122{width:55.440000pt;}
._4b_c00122{width:57.056000pt;}
._33_c00122{width:58.666667pt;}
._56_c00122{width:59.880000pt;}
._53_c00122{width:61.528000pt;}
._11_c00122{width:64.434667pt;}
._35_c00122{width:65.370667pt;}
._45_c00122{width:67.077333pt;}
._3f_c00122{width:69.717333pt;}
._1c_c00122{width:70.682667pt;}
._57_c00122{width:73.269333pt;}
._1e_c00122{width:75.141333pt;}
._3e_c00122{width:92.736000pt;}
._26_c00122{width:113.944000pt;}
._31_c00122{width:146.149333pt;}
._2d_c00122{width:153.389333pt;}
._44_c00122{width:154.685333pt;}
._27_c00122{width:158.032000pt;}
._39_c00122{width:275.013333pt;}
._36_c00122{width:289.664000pt;}
._3c_c00122{width:290.608000pt;}
._43_c00122{width:303.608000pt;}
._32_c00122{width:320.264000pt;}
._54_c00122{width:323.797333pt;}
._2f_c00122{width:354.157333pt;}
._41_c00122{width:494.429333pt;}
._48_c00122{width:545.802667pt;}
._1b_c00122{width:643.504000pt;}
._1d_c00122{width:690.610667pt;}
._5a_c00122{width:1720.610667pt;}
.fs7_c00122{font-size:42.666667pt;}
.fs5_c00122{font-size:53.333333pt;}
.fs6_c00122{font-size:77.333333pt;}
.fs4_c00122{font-size:82.666667pt;}
.fs3_c00122{font-size:85.333333pt;}
.fs0_c00122{font-size:93.333333pt;}
.fs1_c00122{font-size:128.000000pt;}
.fs2_c00122{font-size:149.333333pt;}
.y0_c00122{bottom:0.000000pt;}
.y26_c00122{bottom:2.760000pt;}
.y25_c00122{bottom:6.425206pt;}
.y24_c00122{bottom:62.960000pt;}
.y23_c00122{bottom:100.293333pt;}
.y22_c00122{bottom:130.560000pt;}
.y21_c00122{bottom:160.826667pt;}
.y20_c00122{bottom:191.360000pt;}
.y1f_c00122{bottom:221.493333pt;}
.y1e_c00122{bottom:251.093333pt;}
.y1d_c00122{bottom:281.760000pt;}
.y1c_c00122{bottom:311.760000pt;}
.y1b_c00122{bottom:341.493333pt;}
.y1a_c00122{bottom:371.493333pt;}
.y19_c00122{bottom:401.360000pt;}
.y18_c00122{bottom:431.493333pt;}
.y17_c00122{bottom:461.493333pt;}
.y16_c00122{bottom:491.093333pt;}
.y15_c00122{bottom:520.293333pt;}
.y14_c00122{bottom:550.160000pt;}
.y13_c00122{bottom:580.160000pt;}
.y12_c00122{bottom:610.160000pt;}
.y11_c00122{bottom:641.760000pt;}
.y10_c00122{bottom:671.493333pt;}
.yf_c00122{bottom:700.293333pt;}
.ye_c00122{bottom:729.093333pt;}
.yd_c00122{bottom:757.893333pt;}
.yc_c00122{bottom:788.693333pt;}
.yb_c00122{bottom:806.693333pt;}
.ya_c00122{bottom:818.160000pt;}
.y9_c00122{bottom:831.626667pt;}
.y8_c00122{bottom:852.293333pt;}
.y7_c00122{bottom:878.693333pt;}
.y6_c00122{bottom:909.893333pt;}
.y5_c00122{bottom:939.093333pt;}
.y4_c00122{bottom:959.093333pt;}
.y3_c00122{bottom:1001.360000pt;}
.y2_c00122{bottom:1048.293333pt;}
.y1_c00122{bottom:1116.026667pt;}
.h5_c00122{height:11.733399pt;}
.h6_c00122{height:38.937500pt;}
.h4_c00122{height:104.665365pt;}
.h3_c00122{height:108.041667pt;}
.h1_c00122{height:118.170573pt;}
.h2_c00122{height:162.062500pt;}
.h0_c00122{height:1196.666667pt;}
.w1_c00122{width:93.222667pt;}
.w0_c00122{width:759.333333pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:40.800000pt;}
.xb_c00122{left:42.400000pt;}
.x1_c00122{left:43.466667pt;}
.xc_c00122{left:44.400000pt;}
.xd_c00122{left:45.866667pt;}
.xe_c00122{left:46.800000pt;}
.xf_c00122{left:47.733333pt;}
.x4_c00122{left:49.200000pt;}
.x3_c00122{left:102.533333pt;}
.x9_c00122{left:143.600000pt;}
.x7_c00122{left:144.933333pt;}
.x8_c00122{left:155.466667pt;}
.x10_c00122{left:336.834880pt;}
.xa_c00122{left:348.933333pt;}
.x5_c00122{left:433.200000pt;}
.x6_c00122{left:441.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eed9c8f073b7dbc139865b78.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_544e8bf5c9db50fa95fbf785.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00123;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls2_c00123{letter-spacing:0.000000px;}
.ls1_c00123{letter-spacing:6.120000px;}
.ls0_c00123{letter-spacing:22.176000px;}
.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;}
}
.ws2_c00123{word-spacing:-85.680000px;}
.ws0_c00123{word-spacing:-63.504000px;}
.ws1_c00123{word-spacing:-51.000000px;}
.ws3_c00123{word-spacing:-42.672000px;}
.ws4_c00123{word-spacing:-23.136000px;}
.ws5_c00123{word-spacing:0.000000px;}
._2_c00123{margin-left:-79.776000px;}
._15_c00123{margin-left:-29.331000px;}
._23_c00123{margin-left:-21.786000px;}
._1f_c00123{margin-left:-20.160000px;}
._0_c00123{margin-left:-19.053000px;}
._24_c00123{margin-left:-15.456000px;}
._2a_c00123{margin-left:-14.451000px;}
._1_c00123{margin-left:-11.919000px;}
._2f_c00123{margin-left:-10.809000px;}
._6_c00123{margin-left:-8.904000px;}
._1c_c00123{margin-left:-6.471000px;}
._7_c00123{margin-left:-4.632000px;}
._a_c00123{margin-left:-2.304000px;}
._3_c00123{margin-left:-1.152000px;}
._f_c00123{width:1.056000px;}
._9_c00123{width:2.208000px;}
._c_c00123{width:3.264000px;}
._b_c00123{width:4.851000px;}
._d_c00123{width:6.528000px;}
._14_c00123{width:7.776000px;}
._17_c00123{width:8.928000px;}
._4_c00123{width:10.656000px;}
._1e_c00123{width:12.039000px;}
._11_c00123{width:13.401000px;}
._13_c00123{width:14.784000px;}
._16_c00123{width:16.704000px;}
._2e_c00123{width:17.988000px;}
._20_c00123{width:19.566000px;}
._27_c00123{width:21.882000px;}
._26_c00123{width:24.180000px;}
._10_c00123{width:26.016000px;}
._12_c00123{width:28.026000px;}
._21_c00123{width:29.994000px;}
._e_c00123{width:31.956000px;}
._32_c00123{width:33.036000px;}
._8_c00123{width:34.176000px;}
._5_c00123{width:36.525000px;}
._1a_c00123{width:38.682000px;}
._1b_c00123{width:41.223000px;}
._18_c00123{width:42.951000px;}
._29_c00123{width:44.013000px;}
._19_c00123{width:45.666000px;}
._22_c00123{width:47.022000px;}
._25_c00123{width:48.678000px;}
._1d_c00123{width:50.151000px;}
._2c_c00123{width:51.603000px;}
._28_c00123{width:53.817000px;}
._2d_c00123{width:56.928000px;}
._2b_c00123{width:59.994000px;}
._34_c00123{width:64.755000px;}
._33_c00123{width:75.264000px;}
._35_c00123{width:169.524000px;}
._31_c00123{width:174.912000px;}
._30_c00123{width:276.333000px;}
.fc2_c00123{color:transparent;}
.fc1_c00123{color:rgb(128,128,128);}
.fc0_c00123{color:rgb(0,0,0);}
.fs4_c00123{font-size:48.000000px;}
.fs2_c00123{font-size:84.000000px;}
.fs0_c00123{font-size:87.000000px;}
.fs1_c00123{font-size:96.000000px;}
.fs3_c00123{font-size:102.000000px;}
.y0_c00123{bottom:0.000000px;}
.y2a_c00123{bottom:3.105000px;}
.y29_c00123{bottom:7.228357px;}
.y28_c00123{bottom:103.980000px;}
.y27_c00123{bottom:139.830000px;}
.y26_c00123{bottom:174.480000px;}
.y25_c00123{bottom:208.980000px;}
.y24_c00123{bottom:242.730000px;}
.y23_c00123{bottom:277.080000px;}
.y22_c00123{bottom:311.580000px;}
.y4_c00123{bottom:322.680000px;}
.y21_c00123{bottom:344.880000px;}
.y20_c00123{bottom:378.780000px;}
.y1f_c00123{bottom:413.730000px;}
.y1e_c00123{bottom:447.180000px;}
.y1d_c00123{bottom:480.630000px;}
.y1c_c00123{bottom:515.430000px;}
.y1b_c00123{bottom:549.180000px;}
.y1a_c00123{bottom:582.630000px;}
.y19_c00123{bottom:617.130000px;}
.y18_c00123{bottom:650.430000px;}
.y17_c00123{bottom:683.730000px;}
.y16_c00123{bottom:717.630000px;}
.y15_c00123{bottom:751.380000px;}
.y14_c00123{bottom:785.130000px;}
.y13_c00123{bottom:818.880000px;}
.y12_c00123{bottom:852.180000px;}
.y11_c00123{bottom:886.680000px;}
.y10_c00123{bottom:919.080000px;}
.yf_c00123{bottom:952.530000px;}
.y2_c00123{bottom:955.080000px;}
.y1_c00123{bottom:966.330000px;}
.ye_c00123{bottom:985.530000px;}
.yd_c00123{bottom:1018.980000px;}
.y3_c00123{bottom:1023.030000px;}
.yc_c00123{bottom:1052.430000px;}
.yb_c00123{bottom:1086.030000px;}
.ya_c00123{bottom:1118.880000px;}
.y9_c00123{bottom:1152.180000px;}
.y8_c00123{bottom:1185.330000px;}
.y7_c00123{bottom:1218.780000px;}
.y6_c00123{bottom:1251.780000px;}
.y5_c00123{bottom:1286.280000px;}
.h5_c00123{height:13.200074px;}
.h6_c00123{height:43.804688px;}
.h4_c00123{height:98.314453px;}
.h2_c00123{height:110.151855px;}
.h3_c00123{height:121.546875px;}
.h0_c00123{height:1382.700000px;}
.h1_c00123{height:1383.000000px;}
.w2_c00123{width:104.875500px;}
.w0_c00123{width:863.175000px;}
.w1_c00123{width:863.250000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:91.500000px;}
.x2_c00123{left:96.900000px;}
.x4_c00123{left:168.300000px;}
.x3_c00123{left:241.950000px;}
.x7_c00123{left:272.400000px;}
.x8_c00123{left:273.600000px;}
.x5_c00123{left:274.650000px;}
.x9_c00123{left:275.700000px;}
.xa_c00123{left:276.750000px;}
.x6_c00123{left:279.000000px;}
.xb_c00123{left:325.800000px;}
.xc_c00123{left:327.000000px;}
.xe_c00123{left:383.401749px;}
.xd_c00123{left:796.200000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls2_c00123{letter-spacing:0.000000pt;}
.ls1_c00123{letter-spacing:5.440000pt;}
.ls0_c00123{letter-spacing:19.712000pt;}
.ws2_c00123{word-spacing:-76.160000pt;}
.ws0_c00123{word-spacing:-56.448000pt;}
.ws1_c00123{word-spacing:-45.333333pt;}
.ws3_c00123{word-spacing:-37.930667pt;}
.ws4_c00123{word-spacing:-20.565333pt;}
.ws5_c00123{word-spacing:0.000000pt;}
._2_c00123{margin-left:-70.912000pt;}
._15_c00123{margin-left:-26.072000pt;}
._23_c00123{margin-left:-19.365333pt;}
._1f_c00123{margin-left:-17.920000pt;}
._0_c00123{margin-left:-16.936000pt;}
._24_c00123{margin-left:-13.738667pt;}
._2a_c00123{margin-left:-12.845333pt;}
._1_c00123{margin-left:-10.594667pt;}
._2f_c00123{margin-left:-9.608000pt;}
._6_c00123{margin-left:-7.914667pt;}
._1c_c00123{margin-left:-5.752000pt;}
._7_c00123{margin-left:-4.117333pt;}
._a_c00123{margin-left:-2.048000pt;}
._3_c00123{margin-left:-1.024000pt;}
._f_c00123{width:0.938667pt;}
._9_c00123{width:1.962667pt;}
._c_c00123{width:2.901333pt;}
._b_c00123{width:4.312000pt;}
._d_c00123{width:5.802667pt;}
._14_c00123{width:6.912000pt;}
._17_c00123{width:7.936000pt;}
._4_c00123{width:9.472000pt;}
._1e_c00123{width:10.701333pt;}
._11_c00123{width:11.912000pt;}
._13_c00123{width:13.141333pt;}
._16_c00123{width:14.848000pt;}
._2e_c00123{width:15.989333pt;}
._20_c00123{width:17.392000pt;}
._27_c00123{width:19.450667pt;}
._26_c00123{width:21.493333pt;}
._10_c00123{width:23.125333pt;}
._12_c00123{width:24.912000pt;}
._21_c00123{width:26.661333pt;}
._e_c00123{width:28.405333pt;}
._32_c00123{width:29.365333pt;}
._8_c00123{width:30.378667pt;}
._5_c00123{width:32.466667pt;}
._1a_c00123{width:34.384000pt;}
._1b_c00123{width:36.642667pt;}
._18_c00123{width:38.178667pt;}
._29_c00123{width:39.122667pt;}
._19_c00123{width:40.592000pt;}
._22_c00123{width:41.797333pt;}
._25_c00123{width:43.269333pt;}
._1d_c00123{width:44.578667pt;}
._2c_c00123{width:45.869333pt;}
._28_c00123{width:47.837333pt;}
._2d_c00123{width:50.602667pt;}
._2b_c00123{width:53.328000pt;}
._34_c00123{width:57.560000pt;}
._33_c00123{width:66.901333pt;}
._35_c00123{width:150.688000pt;}
._31_c00123{width:155.477333pt;}
._30_c00123{width:245.629333pt;}
.fs4_c00123{font-size:42.666667pt;}
.fs2_c00123{font-size:74.666667pt;}
.fs0_c00123{font-size:77.333333pt;}
.fs1_c00123{font-size:85.333333pt;}
.fs3_c00123{font-size:90.666667pt;}
.y0_c00123{bottom:0.000000pt;}
.y2a_c00123{bottom:2.760000pt;}
.y29_c00123{bottom:6.425206pt;}
.y28_c00123{bottom:92.426667pt;}
.y27_c00123{bottom:124.293333pt;}
.y26_c00123{bottom:155.093333pt;}
.y25_c00123{bottom:185.760000pt;}
.y24_c00123{bottom:215.760000pt;}
.y23_c00123{bottom:246.293333pt;}
.y22_c00123{bottom:276.960000pt;}
.y4_c00123{bottom:286.826667pt;}
.y21_c00123{bottom:306.560000pt;}
.y20_c00123{bottom:336.693333pt;}
.y1f_c00123{bottom:367.760000pt;}
.y1e_c00123{bottom:397.493333pt;}
.y1d_c00123{bottom:427.226667pt;}
.y1c_c00123{bottom:458.160000pt;}
.y1b_c00123{bottom:488.160000pt;}
.y1a_c00123{bottom:517.893333pt;}
.y19_c00123{bottom:548.560000pt;}
.y18_c00123{bottom:578.160000pt;}
.y17_c00123{bottom:607.760000pt;}
.y16_c00123{bottom:637.893333pt;}
.y15_c00123{bottom:667.893333pt;}
.y14_c00123{bottom:697.893333pt;}
.y13_c00123{bottom:727.893333pt;}
.y12_c00123{bottom:757.493333pt;}
.y11_c00123{bottom:788.160000pt;}
.y10_c00123{bottom:816.960000pt;}
.yf_c00123{bottom:846.693333pt;}
.y2_c00123{bottom:848.960000pt;}
.y1_c00123{bottom:858.960000pt;}
.ye_c00123{bottom:876.026667pt;}
.yd_c00123{bottom:905.760000pt;}
.y3_c00123{bottom:909.360000pt;}
.yc_c00123{bottom:935.493333pt;}
.yb_c00123{bottom:965.360000pt;}
.ya_c00123{bottom:994.560000pt;}
.y9_c00123{bottom:1024.160000pt;}
.y8_c00123{bottom:1053.626667pt;}
.y7_c00123{bottom:1083.360000pt;}
.y6_c00123{bottom:1112.693333pt;}
.y5_c00123{bottom:1143.360000pt;}
.h5_c00123{height:11.733399pt;}
.h6_c00123{height:38.937500pt;}
.h4_c00123{height:87.390625pt;}
.h2_c00123{height:97.912760pt;}
.h3_c00123{height:108.041667pt;}
.h0_c00123{height:1229.066667pt;}
.h1_c00123{height:1229.333333pt;}
.w2_c00123{width:93.222667pt;}
.w0_c00123{width:767.266667pt;}
.w1_c00123{width:767.333333pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:81.333333pt;}
.x2_c00123{left:86.133333pt;}
.x4_c00123{left:149.600000pt;}
.x3_c00123{left:215.066667pt;}
.x7_c00123{left:242.133333pt;}
.x8_c00123{left:243.200000pt;}
.x5_c00123{left:244.133333pt;}
.x9_c00123{left:245.066667pt;}
.xa_c00123{left:246.000000pt;}
.x6_c00123{left:248.000000pt;}
.xb_c00123{left:289.600000pt;}
.xc_c00123{left:290.666667pt;}
.xe_c00123{left:340.801554pt;}
.xd_c00123{left:707.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_750d3c466b63e66233422324.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_056056700beaa0a3c4f02046.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_c345b0bb1cb8c45a988caf43.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_2fbc61c63e1997b7c31c1911.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls3_c00124{letter-spacing:-6.000000px;}
.ls1_c00124{letter-spacing:0.000000px;}
.ls2_c00124{letter-spacing:12.000000px;}
.ls0_c00124{letter-spacing:22.176000px;}
.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;}
}
.ws3_c00124{word-spacing:-42.420000px;}
.ws0_c00124{word-spacing:-23.136000px;}
.ws2_c00124{word-spacing:-20.244000px;}
.ws5_c00124{word-spacing:-7.953000px;}
.ws4_c00124{word-spacing:-0.504000px;}
.ws6_c00124{word-spacing:0.000000px;}
.ws1_c00124{word-spacing:4.032000px;}
._4c_c00124{margin-left:-87.000000px;}
._50_c00124{margin-left:-56.202000px;}
._63_c00124{margin-left:-47.904000px;}
._4d_c00124{margin-left:-46.806000px;}
._4e_c00124{margin-left:-41.784000px;}
._3f_c00124{margin-left:-31.536000px;}
._41_c00124{margin-left:-29.652000px;}
._4a_c00124{margin-left:-28.524000px;}
._48_c00124{margin-left:-26.709000px;}
._28_c00124{margin-left:-25.578000px;}
._46_c00124{margin-left:-24.048000px;}
._35_c00124{margin-left:-21.312000px;}
._36_c00124{margin-left:-20.118000px;}
._5b_c00124{margin-left:-18.624000px;}
._3a_c00124{margin-left:-17.568000px;}
._38_c00124{margin-left:-15.480000px;}
._49_c00124{margin-left:-13.257000px;}
._34_c00124{margin-left:-11.319000px;}
._59_c00124{margin-left:-10.050000px;}
._2b_c00124{margin-left:-8.928000px;}
._20_c00124{margin-left:-7.680000px;}
._54_c00124{margin-left:-6.642000px;}
._0_c00124{margin-left:-5.220000px;}
._f_c00124{margin-left:-3.072000px;}
._d_c00124{margin-left:-1.920000px;}
._6_c00124{width:1.632000px;}
._3_c00124{width:2.880000px;}
._4_c00124{width:3.936000px;}
._a_c00124{width:5.568000px;}
._12_c00124{width:7.200000px;}
._8_c00124{width:8.352000px;}
._9_c00124{width:9.792000px;}
._7_c00124{width:11.520000px;}
._14_c00124{width:12.960000px;}
._b_c00124{width:14.688000px;}
._16_c00124{width:15.744000px;}
._1c_c00124{width:17.685000px;}
._19_c00124{width:19.605000px;}
._26_c00124{width:20.736000px;}
._2d_c00124{width:21.888000px;}
._2_c00124{width:23.925000px;}
._27_c00124{width:25.248000px;}
._10_c00124{width:27.360000px;}
._e_c00124{width:29.760000px;}
._15_c00124{width:32.523000px;}
._13_c00124{width:34.176000px;}
._18_c00124{width:35.349000px;}
._c_c00124{width:36.480000px;}
._5_c00124{width:38.496000px;}
._23_c00124{width:40.224000px;}
._1a_c00124{width:41.664000px;}
._29_c00124{width:43.776000px;}
._37_c00124{width:45.024000px;}
._2c_c00124{width:47.040000px;}
._17_c00124{width:48.117000px;}
._1e_c00124{width:49.227000px;}
._11_c00124{width:52.224000px;}
._33_c00124{width:53.712000px;}
._22_c00124{width:55.755000px;}
._2e_c00124{width:57.792000px;}
._39_c00124{width:63.189000px;}
._1f_c00124{width:65.472000px;}
._5a_c00124{width:73.743000px;}
._25_c00124{width:78.336000px;}
._5d_c00124{width:82.080000px;}
._52_c00124{width:83.286000px;}
._24_c00124{width:91.200000px;}
._5c_c00124{width:92.640000px;}
._42_c00124{width:101.556000px;}
._40_c00124{width:103.536000px;}
._45_c00124{width:117.012000px;}
._30_c00124{width:133.536000px;}
._47_c00124{width:136.065000px;}
._58_c00124{width:146.685000px;}
._53_c00124{width:156.300000px;}
._2f_c00124{width:158.112000px;}
._4b_c00124{width:163.560000px;}
._56_c00124{width:165.528000px;}
._31_c00124{width:170.112000px;}
._44_c00124{width:176.832000px;}
._60_c00124{width:210.372000px;}
._64_c00124{width:214.800000px;}
._2a_c00124{width:216.192000px;}
._3e_c00124{width:230.184000px;}
._5f_c00124{width:242.136000px;}
._51_c00124{width:244.797000px;}
._43_c00124{width:246.048000px;}
._1d_c00124{width:248.256000px;}
._65_c00124{width:258.588000px;}
._21_c00124{width:262.656000px;}
._1_c00124{width:276.051000px;}
._1b_c00124{width:285.078000px;}
._57_c00124{width:290.613000px;}
._3b_c00124{width:315.744000px;}
._3c_c00124{width:399.636000px;}
._32_c00124{width:417.675000px;}
._62_c00124{width:435.312000px;}
._4f_c00124{width:442.221000px;}
._61_c00124{width:591.357000px;}
._66_c00124{width:698.688000px;}
._55_c00124{width:702.393000px;}
._3d_c00124{width:744.696000px;}
._5e_c00124{width:767.286000px;}
.fc2_c00124{color:transparent;}
.fc1_c00124{color:rgb(128,128,128);}
.fc0_c00124{color:rgb(0,0,0);}
.fs5_c00124{font-size:30.000000px;}
.fs6_c00124{font-size:33.000000px;}
.fs4_c00124{font-size:36.000000px;}
.fs7_c00124{font-size:48.000000px;}
.fs3_c00124{font-size:78.000000px;}
.fs2_c00124{font-size:84.000000px;}
.fs0_c00124{font-size:87.000000px;}
.fs1_c00124{font-size:96.000000px;}
.y0_c00124{bottom:0.000000px;}
.y21_c00124{bottom:3.105000px;}
.y20_c00124{bottom:7.228363px;}
.y1f_c00124{bottom:71.850000px;}
.y1e_c00124{bottom:255.450000px;}
.y1d_c00124{bottom:345.000000px;}
.y1c_c00124{bottom:381.000000px;}
.y1b_c00124{bottom:395.250000px;}
.y1a_c00124{bottom:412.200000px;}
.y19_c00124{bottom:446.850000px;}
.y18_c00124{bottom:480.600000px;}
.y17_c00124{bottom:493.800000px;}
.y16_c00124{bottom:573.450000px;}
.y15_c00124{bottom:614.250000px;}
.y14_c00124{bottom:648.750000px;}
.y13_c00124{bottom:682.500000px;}
.y12_c00124{bottom:714.900000px;}
.y11_c00124{bottom:748.650000px;}
.y10_c00124{bottom:783.450000px;}
.yf_c00124{bottom:815.850000px;}
.ye_c00124{bottom:849.600000px;}
.yd_c00124{bottom:883.350000px;}
.yc_c00124{bottom:916.650000px;}
.yb_c00124{bottom:949.350000px;}
.ya_c00124{bottom:983.550000px;}
.y9_c00124{bottom:1016.550000px;}
.y8_c00124{bottom:1050.000000px;}
.y7_c00124{bottom:1083.750000px;}
.y6_c00124{bottom:1116.750000px;}
.y5_c00124{bottom:1149.750000px;}
.y4_c00124{bottom:1183.500000px;}
.y3_c00124{bottom:1216.650000px;}
.y2_c00124{bottom:1250.100000px;}
.y1_c00124{bottom:1269.450000px;}
.h6_c00124{height:13.200074px;}
.h5_c00124{height:41.781738px;}
.h7_c00124{height:43.804688px;}
.h4_c00124{height:45.580078px;}
.h3_c00124{height:91.291992px;}
.h1_c00124{height:110.151855px;}
.h2_c00124{height:121.546875px;}
.h0_c00124{height:1363.500000px;}
.w2_c00124{width:104.875500px;}
.w1_c00124{width:864.750000px;}
.w0_c00124{width:865.050000px;}
.x0_c00124{left:0.000000px;}
.x6_c00124{left:57.600000px;}
.x4_c00124{left:58.650000px;}
.x2_c00124{left:60.300000px;}
.x3_c00124{left:61.350000px;}
.xa_c00124{left:63.450000px;}
.x7_c00124{left:65.100000px;}
.xd_c00124{left:78.300000px;}
.x9_c00124{left:100.500000px;}
.xc_c00124{left:106.200000px;}
.x5_c00124{left:126.600000px;}
.x8_c00124{left:169.800000px;}
.xb_c00124{left:186.900000px;}
.xe_c00124{left:254.400000px;}
.x1_c00124{left:255.450000px;}
.xf_c00124{left:358.350000px;}
.x10_c00124{left:384.339249px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls3_c00124{letter-spacing:-5.333333pt;}
.ls1_c00124{letter-spacing:0.000000pt;}
.ls2_c00124{letter-spacing:10.666667pt;}
.ls0_c00124{letter-spacing:19.712000pt;}
.ws3_c00124{word-spacing:-37.706667pt;}
.ws0_c00124{word-spacing:-20.565333pt;}
.ws2_c00124{word-spacing:-17.994667pt;}
.ws5_c00124{word-spacing:-7.069333pt;}
.ws4_c00124{word-spacing:-0.448000pt;}
.ws6_c00124{word-spacing:0.000000pt;}
.ws1_c00124{word-spacing:3.584000pt;}
._4c_c00124{margin-left:-77.333333pt;}
._50_c00124{margin-left:-49.957333pt;}
._63_c00124{margin-left:-42.581333pt;}
._4d_c00124{margin-left:-41.605333pt;}
._4e_c00124{margin-left:-37.141333pt;}
._3f_c00124{margin-left:-28.032000pt;}
._41_c00124{margin-left:-26.357333pt;}
._4a_c00124{margin-left:-25.354667pt;}
._48_c00124{margin-left:-23.741333pt;}
._28_c00124{margin-left:-22.736000pt;}
._46_c00124{margin-left:-21.376000pt;}
._35_c00124{margin-left:-18.944000pt;}
._36_c00124{margin-left:-17.882667pt;}
._5b_c00124{margin-left:-16.554667pt;}
._3a_c00124{margin-left:-15.616000pt;}
._38_c00124{margin-left:-13.760000pt;}
._49_c00124{margin-left:-11.784000pt;}
._34_c00124{margin-left:-10.061333pt;}
._59_c00124{margin-left:-8.933333pt;}
._2b_c00124{margin-left:-7.936000pt;}
._20_c00124{margin-left:-6.826667pt;}
._54_c00124{margin-left:-5.904000pt;}
._0_c00124{margin-left:-4.640000pt;}
._f_c00124{margin-left:-2.730667pt;}
._d_c00124{margin-left:-1.706667pt;}
._6_c00124{width:1.450667pt;}
._3_c00124{width:2.560000pt;}
._4_c00124{width:3.498667pt;}
._a_c00124{width:4.949333pt;}
._12_c00124{width:6.400000pt;}
._8_c00124{width:7.424000pt;}
._9_c00124{width:8.704000pt;}
._7_c00124{width:10.240000pt;}
._14_c00124{width:11.520000pt;}
._b_c00124{width:13.056000pt;}
._16_c00124{width:13.994667pt;}
._1c_c00124{width:15.720000pt;}
._19_c00124{width:17.426667pt;}
._26_c00124{width:18.432000pt;}
._2d_c00124{width:19.456000pt;}
._2_c00124{width:21.266667pt;}
._27_c00124{width:22.442667pt;}
._10_c00124{width:24.320000pt;}
._e_c00124{width:26.453333pt;}
._15_c00124{width:28.909333pt;}
._13_c00124{width:30.378667pt;}
._18_c00124{width:31.421333pt;}
._c_c00124{width:32.426667pt;}
._5_c00124{width:34.218667pt;}
._23_c00124{width:35.754667pt;}
._1a_c00124{width:37.034667pt;}
._29_c00124{width:38.912000pt;}
._37_c00124{width:40.021333pt;}
._2c_c00124{width:41.813333pt;}
._17_c00124{width:42.770667pt;}
._1e_c00124{width:43.757333pt;}
._11_c00124{width:46.421333pt;}
._33_c00124{width:47.744000pt;}
._22_c00124{width:49.560000pt;}
._2e_c00124{width:51.370667pt;}
._39_c00124{width:56.168000pt;}
._1f_c00124{width:58.197333pt;}
._5a_c00124{width:65.549333pt;}
._25_c00124{width:69.632000pt;}
._5d_c00124{width:72.960000pt;}
._52_c00124{width:74.032000pt;}
._24_c00124{width:81.066667pt;}
._5c_c00124{width:82.346667pt;}
._42_c00124{width:90.272000pt;}
._40_c00124{width:92.032000pt;}
._45_c00124{width:104.010667pt;}
._30_c00124{width:118.698667pt;}
._47_c00124{width:120.946667pt;}
._58_c00124{width:130.386667pt;}
._53_c00124{width:138.933333pt;}
._2f_c00124{width:140.544000pt;}
._4b_c00124{width:145.386667pt;}
._56_c00124{width:147.136000pt;}
._31_c00124{width:151.210667pt;}
._44_c00124{width:157.184000pt;}
._60_c00124{width:186.997333pt;}
._64_c00124{width:190.933333pt;}
._2a_c00124{width:192.170667pt;}
._3e_c00124{width:204.608000pt;}
._5f_c00124{width:215.232000pt;}
._51_c00124{width:217.597333pt;}
._43_c00124{width:218.709333pt;}
._1d_c00124{width:220.672000pt;}
._65_c00124{width:229.856000pt;}
._21_c00124{width:233.472000pt;}
._1_c00124{width:245.378667pt;}
._1b_c00124{width:253.402667pt;}
._57_c00124{width:258.322667pt;}
._3b_c00124{width:280.661333pt;}
._3c_c00124{width:355.232000pt;}
._32_c00124{width:371.266667pt;}
._62_c00124{width:386.944000pt;}
._4f_c00124{width:393.085333pt;}
._61_c00124{width:525.650667pt;}
._66_c00124{width:621.056000pt;}
._55_c00124{width:624.349333pt;}
._3d_c00124{width:661.952000pt;}
._5e_c00124{width:682.032000pt;}
.fs5_c00124{font-size:26.666667pt;}
.fs6_c00124{font-size:29.333333pt;}
.fs4_c00124{font-size:32.000000pt;}
.fs7_c00124{font-size:42.666667pt;}
.fs3_c00124{font-size:69.333333pt;}
.fs2_c00124{font-size:74.666667pt;}
.fs0_c00124{font-size:77.333333pt;}
.fs1_c00124{font-size:85.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y21_c00124{bottom:2.760000pt;}
.y20_c00124{bottom:6.425212pt;}
.y1f_c00124{bottom:63.866667pt;}
.y1e_c00124{bottom:227.066667pt;}
.y1d_c00124{bottom:306.666667pt;}
.y1c_c00124{bottom:338.666667pt;}
.y1b_c00124{bottom:351.333333pt;}
.y1a_c00124{bottom:366.400000pt;}
.y19_c00124{bottom:397.200000pt;}
.y18_c00124{bottom:427.200000pt;}
.y17_c00124{bottom:438.933333pt;}
.y16_c00124{bottom:509.733333pt;}
.y15_c00124{bottom:546.000000pt;}
.y14_c00124{bottom:576.666667pt;}
.y13_c00124{bottom:606.666667pt;}
.y12_c00124{bottom:635.466667pt;}
.y11_c00124{bottom:665.466667pt;}
.y10_c00124{bottom:696.400000pt;}
.yf_c00124{bottom:725.200000pt;}
.ye_c00124{bottom:755.200000pt;}
.yd_c00124{bottom:785.200000pt;}
.yc_c00124{bottom:814.800000pt;}
.yb_c00124{bottom:843.866667pt;}
.ya_c00124{bottom:874.266667pt;}
.y9_c00124{bottom:903.600000pt;}
.y8_c00124{bottom:933.333333pt;}
.y7_c00124{bottom:963.333333pt;}
.y6_c00124{bottom:992.666667pt;}
.y5_c00124{bottom:1022.000000pt;}
.y4_c00124{bottom:1052.000000pt;}
.y3_c00124{bottom:1081.466667pt;}
.y2_c00124{bottom:1111.200000pt;}
.y1_c00124{bottom:1128.400000pt;}
.h6_c00124{height:11.733399pt;}
.h5_c00124{height:37.139323pt;}
.h7_c00124{height:38.937500pt;}
.h4_c00124{height:40.515625pt;}
.h3_c00124{height:81.148438pt;}
.h1_c00124{height:97.912760pt;}
.h2_c00124{height:108.041667pt;}
.h0_c00124{height:1212.000000pt;}
.w2_c00124{width:93.222667pt;}
.w1_c00124{width:768.666667pt;}
.w0_c00124{width:768.933333pt;}
.x0_c00124{left:0.000000pt;}
.x6_c00124{left:51.200000pt;}
.x4_c00124{left:52.133333pt;}
.x2_c00124{left:53.600000pt;}
.x3_c00124{left:54.533333pt;}
.xa_c00124{left:56.400000pt;}
.x7_c00124{left:57.866667pt;}
.xd_c00124{left:69.600000pt;}
.x9_c00124{left:89.333333pt;}
.xc_c00124{left:94.400000pt;}
.x5_c00124{left:112.533333pt;}
.x8_c00124{left:150.933333pt;}
.xb_c00124{left:166.133333pt;}
.xe_c00124{left:226.133333pt;}
.x1_c00124{left:227.066667pt;}
.xf_c00124{left:318.533333pt;}
.x10_c00124{left:341.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_790479fd1fe7864716f5b5ca.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_fba59386c09004f9d811bc64.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_d053b6cbad0badda2a6e0ef5.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_04fac15f4d25925ee862cdb1.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_8765f1e87108a8b855d6e56f.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00125;src:url('chunks/assets/font_253addb62901381c833f4620.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00125;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00125{font-family:ff7_c00125;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls3_c00125{letter-spacing:-42.000000px;}
.ls5_c00125{letter-spacing:-3.000000px;}
.ls2_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:7.800000px;}
.ls0_c00125{letter-spacing:12.348000px;}
.ls4_c00125{letter-spacing:15.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00125{word-spacing:-63.504000px;}
.ws0_c00125{word-spacing:-51.000000px;}
.ws2_c00125{word-spacing:-14.820000px;}
.ws3_c00125{word-spacing:0.000000px;}
._16_c00125{margin-left:-51.528000px;}
._14_c00125{margin-left:-24.492000px;}
._25_c00125{margin-left:-23.328000px;}
._26_c00125{margin-left:-21.792000px;}
._34_c00125{margin-left:-18.270000px;}
._3e_c00125{margin-left:-16.734000px;}
._3a_c00125{margin-left:-12.192000px;}
._27_c00125{margin-left:-10.080000px;}
._39_c00125{margin-left:-8.526000px;}
._2b_c00125{margin-left:-6.972000px;}
._f_c00125{margin-left:-5.472000px;}
._10_c00125{margin-left:-3.744000px;}
._b_c00125{margin-left:-2.304000px;}
._45_c00125{margin-left:-1.176000px;}
._9_c00125{width:1.296000px;}
._13_c00125{width:2.364000px;}
._17_c00125{width:3.744000px;}
._e_c00125{width:4.896000px;}
._d_c00125{width:6.336000px;}
._1a_c00125{width:7.488000px;}
._44_c00125{width:8.496000px;}
._2_c00125{width:9.504000px;}
._7_c00125{width:11.088000px;}
._6_c00125{width:12.672000px;}
._40_c00125{width:13.692000px;}
._12_c00125{width:14.784000px;}
._0_c00125{width:15.840000px;}
._3_c00125{width:16.992000px;}
._1_c00125{width:18.000000px;}
._4_c00125{width:19.296000px;}
._1b_c00125{width:21.408000px;}
._38_c00125{width:22.932000px;}
._3c_c00125{width:25.128000px;}
._21_c00125{width:26.208000px;}
._23_c00125{width:27.468000px;}
._a_c00125{width:29.088000px;}
._41_c00125{width:30.444000px;}
._29_c00125{width:31.464000px;}
._2a_c00125{width:32.964000px;}
._24_c00125{width:34.644000px;}
._22_c00125{width:36.948000px;}
._3d_c00125{width:39.048000px;}
._4c_c00125{width:40.332000px;}
._1d_c00125{width:41.376000px;}
._28_c00125{width:42.624000px;}
._47_c00125{width:43.692000px;}
._2d_c00125{width:45.504000px;}
._c_c00125{width:46.512000px;}
._3b_c00125{width:47.676000px;}
._20_c00125{width:48.948000px;}
._2c_c00125{width:50.388000px;}
._46_c00125{width:52.392000px;}
._42_c00125{width:53.448000px;}
._2e_c00125{width:54.972000px;}
._1f_c00125{width:56.328000px;}
._19_c00125{width:58.560000px;}
._43_c00125{width:60.612000px;}
._1e_c00125{width:62.784000px;}
._1c_c00125{width:64.800000px;}
._4b_c00125{width:67.392000px;}
._11_c00125{width:68.544000px;}
._3f_c00125{width:73.080000px;}
._8_c00125{width:74.448000px;}
._18_c00125{width:78.132000px;}
._2f_c00125{width:80.814000px;}
._4a_c00125{width:82.560000px;}
._48_c00125{width:86.304000px;}
._49_c00125{width:90.324000px;}
._35_c00125{width:109.320000px;}
._5_c00125{width:115.632000px;}
._32_c00125{width:152.244000px;}
._37_c00125{width:164.844000px;}
._31_c00125{width:207.768000px;}
._36_c00125{width:279.984000px;}
._30_c00125{width:556.227000px;}
._15_c00125{width:650.016000px;}
._4d_c00125{width:935.982000px;}
._33_c00125{width:955.161000px;}
.fc2_c00125{color:transparent;}
.fc1_c00125{color:rgb(128,128,128);}
.fc0_c00125{color:rgb(0,0,0);}
.fs9_c00125{font-size:48.000000px;}
.fs7_c00125{font-size:60.000000px;}
.fs5_c00125{font-size:84.000000px;}
.fs6_c00125{font-size:87.000000px;}
.fs1_c00125{font-size:96.000000px;}
.fs2_c00125{font-size:102.000000px;}
.fs8_c00125{font-size:114.000000px;}
.fs0_c00125{font-size:144.000000px;}
.fs4_c00125{font-size:408.000000px;}
.fs3_c00125{font-size:423.000000px;}
.y0_c00125{bottom:0.000000px;}
.y23_c00125{bottom:3.105000px;}
.y22_c00125{bottom:7.228357px;}
.y21_c00125{bottom:70.530000px;}
.y20_c00125{bottom:106.680000px;}
.y1f_c00125{bottom:141.480000px;}
.y1e_c00125{bottom:176.130000px;}
.y1d_c00125{bottom:209.880000px;}
.y1c_c00125{bottom:244.380000px;}
.y1b_c00125{bottom:278.130000px;}
.y1a_c00125{bottom:312.180000px;}
.y19_c00125{bottom:346.230000px;}
.y18_c00125{bottom:380.130000px;}
.y17_c00125{bottom:414.480000px;}
.y16_c00125{bottom:447.930000px;}
.y15_c00125{bottom:481.980000px;}
.y14_c00125{bottom:516.330000px;}
.y13_c00125{bottom:549.780000px;}
.y12_c00125{bottom:583.830000px;}
.y11_c00125{bottom:617.280000px;}
.y10_c00125{bottom:650.430000px;}
.yf_c00125{bottom:683.880000px;}
.ye_c00125{bottom:717.930000px;}
.yd_c00125{bottom:751.680000px;}
.yc_c00125{bottom:785.730000px;}
.yb_c00125{bottom:819.180000px;}
.ya_c00125{bottom:840.330000px;}
.y9_c00125{bottom:887.730000px;}
.y8_c00125{bottom:920.730000px;}
.y7_c00125{bottom:953.130000px;}
.y6_c00125{bottom:986.880000px;}
.y5_c00125{bottom:1020.630000px;}
.y4_c00125{bottom:1050.030000px;}
.y3_c00125{bottom:1144.080000px;}
.y2_c00125{bottom:1193.730000px;}
.y1_c00125{bottom:1244.730000px;}
.h7_c00125{height:13.200074px;}
.h8_c00125{height:43.804688px;}
.h5_c00125{height:119.472000px;}
.h4_c00125{height:121.546875px;}
.h6_c00125{height:144.336914px;}
.h2_c00125{height:182.320312px;}
.h3_c00125{height:516.574219px;}
.h0_c00125{height:1382.700000px;}
.h1_c00125{height:1383.000000px;}
.w2_c00125{width:104.875500px;}
.w0_c00125{width:863.175000px;}
.w1_c00125{width:863.250000px;}
.x0_c00125{left:0.000000px;}
.x4_c00125{left:162.300000px;}
.x8_c00125{left:165.450000px;}
.x9_c00125{left:174.150000px;}
.xa_c00125{left:186.600000px;}
.xe_c00125{left:269.100000px;}
.xd_c00125{left:270.300000px;}
.xc_c00125{left:271.350000px;}
.x7_c00125{left:274.500000px;}
.xb_c00125{left:275.700000px;}
.x1_c00125{left:300.000000px;}
.x2_c00125{left:330.750000px;}
.x10_c00125{left:383.401749px;}
.x3_c00125{left:450.000000px;}
.x6_c00125{left:511.050000px;}
.xf_c00125{left:521.100000px;}
.x5_c00125{left:584.550000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls3_c00125{letter-spacing:-37.333333pt;}
.ls5_c00125{letter-spacing:-2.666667pt;}
.ls2_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:6.933333pt;}
.ls0_c00125{letter-spacing:10.976000pt;}
.ls4_c00125{letter-spacing:13.333333pt;}
.ws1_c00125{word-spacing:-56.448000pt;}
.ws0_c00125{word-spacing:-45.333333pt;}
.ws2_c00125{word-spacing:-13.173333pt;}
.ws3_c00125{word-spacing:0.000000pt;}
._16_c00125{margin-left:-45.802667pt;}
._14_c00125{margin-left:-21.770667pt;}
._25_c00125{margin-left:-20.736000pt;}
._26_c00125{margin-left:-19.370667pt;}
._34_c00125{margin-left:-16.240000pt;}
._3e_c00125{margin-left:-14.874667pt;}
._3a_c00125{margin-left:-10.837333pt;}
._27_c00125{margin-left:-8.960000pt;}
._39_c00125{margin-left:-7.578667pt;}
._2b_c00125{margin-left:-6.197333pt;}
._f_c00125{margin-left:-4.864000pt;}
._10_c00125{margin-left:-3.328000pt;}
._b_c00125{margin-left:-2.048000pt;}
._45_c00125{margin-left:-1.045333pt;}
._9_c00125{width:1.152000pt;}
._13_c00125{width:2.101333pt;}
._17_c00125{width:3.328000pt;}
._e_c00125{width:4.352000pt;}
._d_c00125{width:5.632000pt;}
._1a_c00125{width:6.656000pt;}
._44_c00125{width:7.552000pt;}
._2_c00125{width:8.448000pt;}
._7_c00125{width:9.856000pt;}
._6_c00125{width:11.264000pt;}
._40_c00125{width:12.170667pt;}
._12_c00125{width:13.141333pt;}
._0_c00125{width:14.080000pt;}
._3_c00125{width:15.104000pt;}
._1_c00125{width:16.000000pt;}
._4_c00125{width:17.152000pt;}
._1b_c00125{width:19.029333pt;}
._38_c00125{width:20.384000pt;}
._3c_c00125{width:22.336000pt;}
._21_c00125{width:23.296000pt;}
._23_c00125{width:24.416000pt;}
._a_c00125{width:25.856000pt;}
._41_c00125{width:27.061333pt;}
._29_c00125{width:27.968000pt;}
._2a_c00125{width:29.301333pt;}
._24_c00125{width:30.794667pt;}
._22_c00125{width:32.842667pt;}
._3d_c00125{width:34.709333pt;}
._4c_c00125{width:35.850667pt;}
._1d_c00125{width:36.778667pt;}
._28_c00125{width:37.888000pt;}
._47_c00125{width:38.837333pt;}
._2d_c00125{width:40.448000pt;}
._c_c00125{width:41.344000pt;}
._3b_c00125{width:42.378667pt;}
._20_c00125{width:43.509333pt;}
._2c_c00125{width:44.789333pt;}
._46_c00125{width:46.570667pt;}
._42_c00125{width:47.509333pt;}
._2e_c00125{width:48.864000pt;}
._1f_c00125{width:50.069333pt;}
._19_c00125{width:52.053333pt;}
._43_c00125{width:53.877333pt;}
._1e_c00125{width:55.808000pt;}
._1c_c00125{width:57.600000pt;}
._4b_c00125{width:59.904000pt;}
._11_c00125{width:60.928000pt;}
._3f_c00125{width:64.960000pt;}
._8_c00125{width:66.176000pt;}
._18_c00125{width:69.450667pt;}
._2f_c00125{width:71.834667pt;}
._4a_c00125{width:73.386667pt;}
._48_c00125{width:76.714667pt;}
._49_c00125{width:80.288000pt;}
._35_c00125{width:97.173333pt;}
._5_c00125{width:102.784000pt;}
._32_c00125{width:135.328000pt;}
._37_c00125{width:146.528000pt;}
._31_c00125{width:184.682667pt;}
._36_c00125{width:248.874667pt;}
._30_c00125{width:494.424000pt;}
._15_c00125{width:577.792000pt;}
._4d_c00125{width:831.984000pt;}
._33_c00125{width:849.032000pt;}
.fs9_c00125{font-size:42.666667pt;}
.fs7_c00125{font-size:53.333333pt;}
.fs5_c00125{font-size:74.666667pt;}
.fs6_c00125{font-size:77.333333pt;}
.fs1_c00125{font-size:85.333333pt;}
.fs2_c00125{font-size:90.666667pt;}
.fs8_c00125{font-size:101.333333pt;}
.fs0_c00125{font-size:128.000000pt;}
.fs4_c00125{font-size:362.666667pt;}
.fs3_c00125{font-size:376.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y23_c00125{bottom:2.760000pt;}
.y22_c00125{bottom:6.425206pt;}
.y21_c00125{bottom:62.693333pt;}
.y20_c00125{bottom:94.826667pt;}
.y1f_c00125{bottom:125.760000pt;}
.y1e_c00125{bottom:156.560000pt;}
.y1d_c00125{bottom:186.560000pt;}
.y1c_c00125{bottom:217.226667pt;}
.y1b_c00125{bottom:247.226667pt;}
.y1a_c00125{bottom:277.493333pt;}
.y19_c00125{bottom:307.760000pt;}
.y18_c00125{bottom:337.893333pt;}
.y17_c00125{bottom:368.426667pt;}
.y16_c00125{bottom:398.160000pt;}
.y15_c00125{bottom:428.426667pt;}
.y14_c00125{bottom:458.960000pt;}
.y13_c00125{bottom:488.693333pt;}
.y12_c00125{bottom:518.960000pt;}
.y11_c00125{bottom:548.693333pt;}
.y10_c00125{bottom:578.160000pt;}
.yf_c00125{bottom:607.893333pt;}
.ye_c00125{bottom:638.160000pt;}
.yd_c00125{bottom:668.160000pt;}
.yc_c00125{bottom:698.426667pt;}
.yb_c00125{bottom:728.160000pt;}
.ya_c00125{bottom:746.960000pt;}
.y9_c00125{bottom:789.093333pt;}
.y8_c00125{bottom:818.426667pt;}
.y7_c00125{bottom:847.226667pt;}
.y6_c00125{bottom:877.226667pt;}
.y5_c00125{bottom:907.226667pt;}
.y4_c00125{bottom:933.360000pt;}
.y3_c00125{bottom:1016.960000pt;}
.y2_c00125{bottom:1061.093333pt;}
.y1_c00125{bottom:1106.426667pt;}
.h7_c00125{height:11.733399pt;}
.h8_c00125{height:38.937500pt;}
.h5_c00125{height:106.197333pt;}
.h4_c00125{height:108.041667pt;}
.h6_c00125{height:128.299479pt;}
.h2_c00125{height:162.062500pt;}
.h3_c00125{height:459.177083pt;}
.h0_c00125{height:1229.066667pt;}
.h1_c00125{height:1229.333333pt;}
.w2_c00125{width:93.222667pt;}
.w0_c00125{width:767.266667pt;}
.w1_c00125{width:767.333333pt;}
.x0_c00125{left:0.000000pt;}
.x4_c00125{left:144.266667pt;}
.x8_c00125{left:147.066667pt;}
.x9_c00125{left:154.800000pt;}
.xa_c00125{left:165.866667pt;}
.xe_c00125{left:239.200000pt;}
.xd_c00125{left:240.266667pt;}
.xc_c00125{left:241.200000pt;}
.x7_c00125{left:244.000000pt;}
.xb_c00125{left:245.066667pt;}
.x1_c00125{left:266.666667pt;}
.x2_c00125{left:294.000000pt;}
.x10_c00125{left:340.801554pt;}
.x3_c00125{left:400.000000pt;}
.x6_c00125{left:454.266667pt;}
.xf_c00125{left:463.200000pt;}
.x5_c00125{left:519.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_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_293efaba9b663f299ed8c3d2.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_447b876ac1f49eb44caf45ff.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;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_c00126;src:url('chunks/assets/font_24c0009921ff23f56fbbac4c.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00126;src:url('chunks/assets/font_8144d7089dea5d66e7b8bf9d.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00126;src:url('chunks/assets/font_ebb6f219f47a1e43f9266442.woff2')format("woff");}.ff7_c00126{font-family:ff7_c00126;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00126;src:url('chunks/assets/font_c07b6e2bd6bd7ee08d3fe15c.woff2')format("woff");}.ff8_c00126{font-family:ff8_c00126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00126;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00126{font-family:ff9_c00126;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls8_c00126{letter-spacing:-3.000000px;}
.ls7_c00126{letter-spacing:0.000000px;}
.ls4_c00126{letter-spacing:1.080000px;}
.ls1_c00126{letter-spacing:4.200000px;}
.ls5_c00126{letter-spacing:6.033000px;}
.ls3_c00126{letter-spacing:9.024000px;}
.ls9_c00126{letter-spacing:12.000000px;}
.ls2_c00126{letter-spacing:17.964000px;}
.ls6_c00126{letter-spacing:23.652000px;}
.ls0_c00126{letter-spacing:33.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00126{word-spacing:-48.372000px;}
.ws5_c00126{word-spacing:-43.084800px;}
.ws4_c00126{word-spacing:-25.939200px;}
.ws0_c00126{word-spacing:-23.136000px;}
.ws3_c00126{word-spacing:-20.244000px;}
.ws6_c00126{word-spacing:-18.798000px;}
.ws8_c00126{word-spacing:0.000000px;}
.ws1_c00126{word-spacing:0.117000px;}
.ws2_c00126{word-spacing:6.720000px;}
._29_c00126{margin-left:-58.557000px;}
._4c_c00126{margin-left:-29.760000px;}
._3f_c00126{margin-left:-25.839000px;}
._41_c00126{margin-left:-24.273000px;}
._32_c00126{margin-left:-23.106000px;}
._43_c00126{margin-left:-19.795200px;}
._46_c00126{margin-left:-16.209000px;}
._3c_c00126{margin-left:-14.790000px;}
._3b_c00126{margin-left:-13.560000px;}
._3a_c00126{margin-left:-11.784000px;}
._a_c00126{margin-left:-9.312000px;}
._19_c00126{margin-left:-7.680000px;}
._33_c00126{margin-left:-6.624000px;}
._c_c00126{margin-left:-5.088000px;}
._24_c00126{margin-left:-3.840000px;}
._d_c00126{margin-left:-2.592000px;}
._b_c00126{margin-left:-1.344000px;}
._8_c00126{width:1.056000px;}
._13_c00126{width:2.112000px;}
._3_c00126{width:3.264000px;}
._1_c00126{width:4.896000px;}
._5_c00126{width:5.952000px;}
._0_c00126{width:7.392000px;}
._2_c00126{width:9.120000px;}
._23_c00126{width:10.368000px;}
._11_c00126{width:12.096000px;}
._9_c00126{width:13.248000px;}
._10_c00126{width:14.400000px;}
._22_c00126{width:15.456000px;}
._2f_c00126{width:17.568000px;}
._49_c00126{width:18.720000px;}
._2e_c00126{width:19.776000px;}
._37_c00126{width:21.408000px;}
._25_c00126{width:24.192000px;}
._f_c00126{width:26.112000px;}
._12_c00126{width:27.456000px;}
._44_c00126{width:30.240000px;}
._27_c00126{width:31.488000px;}
._20_c00126{width:32.544000px;}
._4_c00126{width:33.984000px;}
._26_c00126{width:35.136000px;}
._7_c00126{width:36.384000px;}
._6_c00126{width:39.072000px;}
._39_c00126{width:40.080000px;}
._e_c00126{width:41.472000px;}
._28_c00126{width:43.392000px;}
._31_c00126{width:45.504000px;}
._21_c00126{width:46.848000px;}
._2a_c00126{width:49.728000px;}
._17_c00126{width:50.784000px;}
._2d_c00126{width:52.224000px;}
._18_c00126{width:54.336000px;}
._16_c00126{width:56.544000px;}
._14_c00126{width:58.464000px;}
._1c_c00126{width:60.864000px;}
._45_c00126{width:62.592000px;}
._2c_c00126{width:64.512000px;}
._15_c00126{width:65.856000px;}
._1e_c00126{width:67.104000px;}
._2b_c00126{width:68.928000px;}
._47_c00126{width:70.512000px;}
._4a_c00126{width:71.712000px;}
._1d_c00126{width:72.768000px;}
._30_c00126{width:74.400000px;}
._35_c00126{width:77.664000px;}
._4b_c00126{width:80.448000px;}
._1b_c00126{width:82.080000px;}
._1f_c00126{width:83.904000px;}
._3d_c00126{width:134.103000px;}
._3e_c00126{width:143.322000px;}
._38_c00126{width:158.064000px;}
._34_c00126{width:176.640000px;}
._1a_c00126{width:184.992000px;}
._48_c00126{width:408.048000px;}
._40_c00126{width:485.460000px;}
._36_c00126{width:644.496000px;}
._42_c00126{width:737.538000px;}
.fc2_c00126{color:transparent;}
.fc1_c00126{color:rgb(128,128,128);}
.fc0_c00126{color:rgb(0,0,0);}
.fsa_c00126{font-size:48.000000px;}
.fs2_c00126{font-size:60.000000px;}
.fs7_c00126{font-size:67.200000px;}
.fs9_c00126{font-size:76.800000px;}
.fs4_c00126{font-size:78.000000px;}
.fs5_c00126{font-size:84.000000px;}
.fs8_c00126{font-size:87.000000px;}
.fs1_c00126{font-size:93.000000px;}
.fs0_c00126{font-size:96.000000px;}
.fs6_c00126{font-size:102.000000px;}
.fs3_c00126{font-size:420.000000px;}
.y0_c00126{bottom:0.000000px;}
.y27_c00126{bottom:3.105000px;}
.y26_c00126{bottom:7.228355px;}
.y25_c00126{bottom:68.535000px;}
.y24_c00126{bottom:101.385000px;}
.y23_c00126{bottom:135.885000px;}
.y22_c00126{bottom:170.385000px;}
.y21_c00126{bottom:204.135000px;}
.y20_c00126{bottom:238.635000px;}
.y1f_c00126{bottom:271.335000px;}
.y1e_c00126{bottom:306.735000px;}
.y1d_c00126{bottom:340.785000px;}
.y1c_c00126{bottom:374.235000px;}
.y1b_c00126{bottom:407.385000px;}
.y1a_c00126{bottom:443.685000px;}
.y19_c00126{bottom:476.235000px;}
.y18_c00126{bottom:509.235000px;}
.y17_c00126{bottom:541.635000px;}
.y16_c00126{bottom:573.735000px;}
.y15_c00126{bottom:609.435000px;}
.y14_c00126{bottom:626.085000px;}
.y13_c00126{bottom:642.585000px;}
.y12_c00126{bottom:680.985000px;}
.y11_c00126{bottom:712.335000px;}
.y10_c00126{bottom:744.435000px;}
.yf_c00126{bottom:777.285000px;}
.ye_c00126{bottom:810.885000px;}
.yd_c00126{bottom:844.635000px;}
.yc_c00126{bottom:877.785000px;}
.yb_c00126{bottom:912.285000px;}
.ya_c00126{bottom:944.985000px;}
.y9_c00126{bottom:978.285000px;}
.y8_c00126{bottom:1012.185000px;}
.y7_c00126{bottom:1046.235000px;}
.y6_c00126{bottom:1079.235000px;}
.y5_c00126{bottom:1112.385000px;}
.y4_c00126{bottom:1144.785000px;}
.y3_c00126{bottom:1178.835000px;}
.y2_c00126{bottom:1212.285000px;}
.y1_c00126{bottom:1245.735000px;}
.h6_c00126{height:13.200074px;}
.h7_c00126{height:43.804688px;}
.h4_c00126{height:110.151855px;}
.h2_c00126{height:121.546875px;}
.h5_c00126{height:122.146875px;}
.h3_c00126{height:412.207031px;}
.h1_c00126{height:1353.000000px;}
.h0_c00126{height:1353.225000px;}
.w2_c00126{width:104.875500px;}
.w0_c00126{width:858.600000px;}
.w1_c00126{width:858.750000px;}
.x0_c00126{left:0.000000px;}
.xa_c00126{left:33.750000px;}
.x7_c00126{left:34.800000px;}
.x8_c00126{left:35.850000px;}
.x6_c00126{left:36.900000px;}
.xc_c00126{left:38.100000px;}
.x4_c00126{left:39.150000px;}
.x5_c00126{left:40.800000px;}
.x2_c00126{left:42.300000px;}
.x1_c00126{left:44.550000px;}
.x9_c00126{left:88.200000px;}
.x3_c00126{left:90.450000px;}
.xb_c00126{left:107.400000px;}
.xe_c00126{left:381.114258px;}
.xd_c00126{left:573.750000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls8_c00126{letter-spacing:-2.666667pt;}
.ls7_c00126{letter-spacing:0.000000pt;}
.ls4_c00126{letter-spacing:0.960000pt;}
.ls1_c00126{letter-spacing:3.733333pt;}
.ls5_c00126{letter-spacing:5.362667pt;}
.ls3_c00126{letter-spacing:8.021333pt;}
.ls9_c00126{letter-spacing:10.666667pt;}
.ls2_c00126{letter-spacing:15.968000pt;}
.ls6_c00126{letter-spacing:21.024000pt;}
.ls0_c00126{letter-spacing:29.333333pt;}
.ws7_c00126{word-spacing:-42.997333pt;}
.ws5_c00126{word-spacing:-38.297600pt;}
.ws4_c00126{word-spacing:-23.057067pt;}
.ws0_c00126{word-spacing:-20.565333pt;}
.ws3_c00126{word-spacing:-17.994667pt;}
.ws6_c00126{word-spacing:-16.709333pt;}
.ws8_c00126{word-spacing:0.000000pt;}
.ws1_c00126{word-spacing:0.104000pt;}
.ws2_c00126{word-spacing:5.973333pt;}
._29_c00126{margin-left:-52.050667pt;}
._4c_c00126{margin-left:-26.453333pt;}
._3f_c00126{margin-left:-22.968000pt;}
._41_c00126{margin-left:-21.576000pt;}
._32_c00126{margin-left:-20.538667pt;}
._43_c00126{margin-left:-17.595733pt;}
._46_c00126{margin-left:-14.408000pt;}
._3c_c00126{margin-left:-13.146667pt;}
._3b_c00126{margin-left:-12.053333pt;}
._3a_c00126{margin-left:-10.474667pt;}
._a_c00126{margin-left:-8.277333pt;}
._19_c00126{margin-left:-6.826667pt;}
._33_c00126{margin-left:-5.888000pt;}
._c_c00126{margin-left:-4.522667pt;}
._24_c00126{margin-left:-3.413333pt;}
._d_c00126{margin-left:-2.304000pt;}
._b_c00126{margin-left:-1.194667pt;}
._8_c00126{width:0.938667pt;}
._13_c00126{width:1.877333pt;}
._3_c00126{width:2.901333pt;}
._1_c00126{width:4.352000pt;}
._5_c00126{width:5.290667pt;}
._0_c00126{width:6.570667pt;}
._2_c00126{width:8.106667pt;}
._23_c00126{width:9.216000pt;}
._11_c00126{width:10.752000pt;}
._9_c00126{width:11.776000pt;}
._10_c00126{width:12.800000pt;}
._22_c00126{width:13.738667pt;}
._2f_c00126{width:15.616000pt;}
._49_c00126{width:16.640000pt;}
._2e_c00126{width:17.578667pt;}
._37_c00126{width:19.029333pt;}
._25_c00126{width:21.504000pt;}
._f_c00126{width:23.210667pt;}
._12_c00126{width:24.405333pt;}
._44_c00126{width:26.880000pt;}
._27_c00126{width:27.989333pt;}
._20_c00126{width:28.928000pt;}
._4_c00126{width:30.208000pt;}
._26_c00126{width:31.232000pt;}
._7_c00126{width:32.341333pt;}
._6_c00126{width:34.730667pt;}
._39_c00126{width:35.626667pt;}
._e_c00126{width:36.864000pt;}
._28_c00126{width:38.570667pt;}
._31_c00126{width:40.448000pt;}
._21_c00126{width:41.642667pt;}
._2a_c00126{width:44.202667pt;}
._17_c00126{width:45.141333pt;}
._2d_c00126{width:46.421333pt;}
._18_c00126{width:48.298667pt;}
._16_c00126{width:50.261333pt;}
._14_c00126{width:51.968000pt;}
._1c_c00126{width:54.101333pt;}
._45_c00126{width:55.637333pt;}
._2c_c00126{width:57.344000pt;}
._15_c00126{width:58.538667pt;}
._1e_c00126{width:59.648000pt;}
._2b_c00126{width:61.269333pt;}
._47_c00126{width:62.677333pt;}
._4a_c00126{width:63.744000pt;}
._1d_c00126{width:64.682667pt;}
._30_c00126{width:66.133333pt;}
._35_c00126{width:69.034667pt;}
._4b_c00126{width:71.509333pt;}
._1b_c00126{width:72.960000pt;}
._1f_c00126{width:74.581333pt;}
._3d_c00126{width:119.202667pt;}
._3e_c00126{width:127.397333pt;}
._38_c00126{width:140.501333pt;}
._34_c00126{width:157.013333pt;}
._1a_c00126{width:164.437333pt;}
._48_c00126{width:362.709333pt;}
._40_c00126{width:431.520000pt;}
._36_c00126{width:572.885333pt;}
._42_c00126{width:655.589333pt;}
.fsa_c00126{font-size:42.666667pt;}
.fs2_c00126{font-size:53.333333pt;}
.fs7_c00126{font-size:59.733333pt;}
.fs9_c00126{font-size:68.266667pt;}
.fs4_c00126{font-size:69.333333pt;}
.fs5_c00126{font-size:74.666667pt;}
.fs8_c00126{font-size:77.333333pt;}
.fs1_c00126{font-size:82.666667pt;}
.fs0_c00126{font-size:85.333333pt;}
.fs6_c00126{font-size:90.666667pt;}
.fs3_c00126{font-size:373.333333pt;}
.y0_c00126{bottom:0.000000pt;}
.y27_c00126{bottom:2.760000pt;}
.y26_c00126{bottom:6.425204pt;}
.y25_c00126{bottom:60.920000pt;}
.y24_c00126{bottom:90.120000pt;}
.y23_c00126{bottom:120.786667pt;}
.y22_c00126{bottom:151.453333pt;}
.y21_c00126{bottom:181.453333pt;}
.y20_c00126{bottom:212.120000pt;}
.y1f_c00126{bottom:241.186667pt;}
.y1e_c00126{bottom:272.653333pt;}
.y1d_c00126{bottom:302.920000pt;}
.y1c_c00126{bottom:332.653333pt;}
.y1b_c00126{bottom:362.120000pt;}
.y1a_c00126{bottom:394.386667pt;}
.y19_c00126{bottom:423.320000pt;}
.y18_c00126{bottom:452.653333pt;}
.y17_c00126{bottom:481.453333pt;}
.y16_c00126{bottom:509.986667pt;}
.y15_c00126{bottom:541.720000pt;}
.y14_c00126{bottom:556.520000pt;}
.y13_c00126{bottom:571.186667pt;}
.y12_c00126{bottom:605.320000pt;}
.y11_c00126{bottom:633.186667pt;}
.y10_c00126{bottom:661.720000pt;}
.yf_c00126{bottom:690.920000pt;}
.ye_c00126{bottom:720.786667pt;}
.yd_c00126{bottom:750.786667pt;}
.yc_c00126{bottom:780.253333pt;}
.yb_c00126{bottom:810.920000pt;}
.ya_c00126{bottom:839.986667pt;}
.y9_c00126{bottom:869.586667pt;}
.y8_c00126{bottom:899.720000pt;}
.y7_c00126{bottom:929.986667pt;}
.y6_c00126{bottom:959.320000pt;}
.y5_c00126{bottom:988.786667pt;}
.y4_c00126{bottom:1017.586667pt;}
.y3_c00126{bottom:1047.853333pt;}
.y2_c00126{bottom:1077.586667pt;}
.y1_c00126{bottom:1107.320000pt;}
.h6_c00126{height:11.733399pt;}
.h7_c00126{height:38.937500pt;}
.h4_c00126{height:97.912760pt;}
.h2_c00126{height:108.041667pt;}
.h5_c00126{height:108.575000pt;}
.h3_c00126{height:366.406250pt;}
.h1_c00126{height:1202.666667pt;}
.h0_c00126{height:1202.866667pt;}
.w2_c00126{width:93.222667pt;}
.w0_c00126{width:763.200000pt;}
.w1_c00126{width:763.333333pt;}
.x0_c00126{left:0.000000pt;}
.xa_c00126{left:30.000000pt;}
.x7_c00126{left:30.933333pt;}
.x8_c00126{left:31.866667pt;}
.x6_c00126{left:32.800000pt;}
.xc_c00126{left:33.866667pt;}
.x4_c00126{left:34.800000pt;}
.x5_c00126{left:36.266667pt;}
.x2_c00126{left:37.600000pt;}
.x1_c00126{left:39.600000pt;}
.x9_c00126{left:78.400000pt;}
.x3_c00126{left:80.400000pt;}
.xb_c00126{left:95.466667pt;}
.xe_c00126{left:338.768229pt;}
.xd_c00126{left:510.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_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_e1e6c56edb2cf02a6ca4f5fc.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_92772d8beede237cbad7faa9.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_38f7d9ac00749d0bf330841e.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls1_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:10.320000px;}
.ls2_c00127{letter-spacing:12.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:-65.772000px;}
.ws2_c00127{word-spacing:-63.504000px;}
.ws1_c00127{word-spacing:-51.000000px;}
.ws3_c00127{word-spacing:-23.136000px;}
.ws4_c00127{word-spacing:0.000000px;}
._21_c00127{margin-left:-60.870000px;}
._11_c00127{margin-left:-50.880000px;}
._8_c00127{margin-left:-41.847000px;}
._14_c00127{margin-left:-38.064000px;}
._a_c00127{margin-left:-37.062000px;}
._e_c00127{margin-left:-34.368000px;}
._c_c00127{margin-left:-31.929000px;}
._15_c00127{margin-left:-27.132000px;}
._16_c00127{margin-left:-23.130000px;}
._23_c00127{margin-left:-21.924000px;}
._b_c00127{margin-left:-20.532000px;}
._24_c00127{margin-left:-19.488000px;}
._12_c00127{margin-left:-18.240000px;}
._25_c00127{margin-left:-17.139000px;}
._19_c00127{margin-left:-14.976000px;}
._1_c00127{margin-left:-13.056000px;}
._10_c00127{margin-left:-11.424000px;}
._6_c00127{margin-left:-9.930000px;}
._22_c00127{margin-left:-8.160000px;}
._1c_c00127{margin-left:-7.008000px;}
._37_c00127{margin-left:-5.952000px;}
._3_c00127{margin-left:-4.704000px;}
._4_c00127{margin-left:-2.688000px;}
._d_c00127{margin-left:-1.479000px;}
._26_c00127{width:1.632000px;}
._2f_c00127{width:2.784000px;}
._1d_c00127{width:4.032000px;}
._3a_c00127{width:5.088000px;}
._28_c00127{width:6.144000px;}
._30_c00127{width:8.064000px;}
._2a_c00127{width:9.216000px;}
._18_c00127{width:11.232000px;}
._1e_c00127{width:13.056000px;}
._27_c00127{width:15.456000px;}
._29_c00127{width:16.800000px;}
._0_c00127{width:18.336000px;}
._32_c00127{width:20.544000px;}
._17_c00127{width:21.564000px;}
._f_c00127{width:24.864000px;}
._42_c00127{width:26.127000px;}
._3f_c00127{width:27.360000px;}
._1a_c00127{width:28.416000px;}
._38_c00127{width:30.144000px;}
._2b_c00127{width:31.392000px;}
._36_c00127{width:32.544000px;}
._40_c00127{width:33.888000px;}
._34_c00127{width:35.040000px;}
._31_c00127{width:36.768000px;}
._2_c00127{width:38.400000px;}
._46_c00127{width:40.224000px;}
._33_c00127{width:41.472000px;}
._2e_c00127{width:42.816000px;}
._2d_c00127{width:44.736000px;}
._43_c00127{width:45.792000px;}
._3c_c00127{width:47.808000px;}
._41_c00127{width:48.960000px;}
._2c_c00127{width:50.016000px;}
._35_c00127{width:51.936000px;}
._3b_c00127{width:53.952000px;}
._48_c00127{width:55.332000px;}
._3d_c00127{width:56.352000px;}
._3e_c00127{width:57.408000px;}
._20_c00127{width:61.020000px;}
._7_c00127{width:62.118000px;}
._1b_c00127{width:64.512000px;}
._39_c00127{width:70.848000px;}
._1f_c00127{width:76.224000px;}
._47_c00127{width:77.472000px;}
._9_c00127{width:99.615000px;}
._45_c00127{width:118.464000px;}
._5_c00127{width:160.128000px;}
._13_c00127{width:165.888000px;}
._44_c00127{width:499.248000px;}
.fc2_c00127{color:transparent;}
.fc1_c00127{color:rgb(128,128,128);}
.fc0_c00127{color:rgb(0,0,0);}
.fs4_c00127{font-size:48.000000px;}
.fs3_c00127{font-size:84.000000px;}
.fs1_c00127{font-size:87.000000px;}
.fs0_c00127{font-size:96.000000px;}
.fs2_c00127{font-size:102.000000px;}
.y0_c00127{bottom:0.000000px;}
.y2b_c00127{bottom:3.105000px;}
.y2a_c00127{bottom:7.228357px;}
.y29_c00127{bottom:81.780000px;}
.y28_c00127{bottom:116.880000px;}
.y27_c00127{bottom:150.930000px;}
.y26_c00127{bottom:185.580000px;}
.y25_c00127{bottom:219.480000px;}
.y24_c00127{bottom:254.430000px;}
.y23_c00127{bottom:288.180000px;}
.y22_c00127{bottom:322.380000px;}
.y21_c00127{bottom:356.130000px;}
.y20_c00127{bottom:390.780000px;}
.y5_c00127{bottom:408.030000px;}
.y1f_c00127{bottom:422.880000px;}
.y4_c00127{bottom:439.830000px;}
.y1e_c00127{bottom:458.430000px;}
.y3_c00127{bottom:469.230000px;}
.y2_c00127{bottom:482.730000px;}
.y1d_c00127{bottom:491.730000px;}
.y1_c00127{bottom:498.480000px;}
.y1c_c00127{bottom:524.130000px;}
.y1b_c00127{bottom:559.530000px;}
.y1a_c00127{bottom:593.730000px;}
.y19_c00127{bottom:627.780000px;}
.y18_c00127{bottom:661.230000px;}
.y17_c00127{bottom:693.330000px;}
.y16_c00127{bottom:728.430000px;}
.y15_c00127{bottom:762.030000px;}
.y14_c00127{bottom:795.930000px;}
.y13_c00127{bottom:829.680000px;}
.y12_c00127{bottom:863.430000px;}
.y11_c00127{bottom:896.730000px;}
.y10_c00127{bottom:930.480000px;}
.yf_c00127{bottom:963.330000px;}
.ye_c00127{bottom:996.930000px;}
.yd_c00127{bottom:1031.730000px;}
.yc_c00127{bottom:1064.280000px;}
.yb_c00127{bottom:1097.280000px;}
.ya_c00127{bottom:1130.280000px;}
.y9_c00127{bottom:1163.580000px;}
.y8_c00127{bottom:1196.730000px;}
.y7_c00127{bottom:1229.880000px;}
.y6_c00127{bottom:1263.630000px;}
.h4_c00127{height:13.200074px;}
.h5_c00127{height:43.804688px;}
.h3_c00127{height:110.151855px;}
.h2_c00127{height:121.546875px;}
.h0_c00127{height:1382.700000px;}
.h1_c00127{height:1383.000000px;}
.w2_c00127{width:104.875500px;}
.w0_c00127{width:863.175000px;}
.w1_c00127{width:863.250000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:60.450000px;}
.x2_c00127{left:138.750000px;}
.x3_c00127{left:175.800000px;}
.x8_c00127{left:276.300000px;}
.x7_c00127{left:277.350000px;}
.x5_c00127{left:278.400000px;}
.x4_c00127{left:279.450000px;}
.x6_c00127{left:280.500000px;}
.xa_c00127{left:383.401749px;}
.x9_c00127{left:798.900000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls1_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:9.173333pt;}
.ls2_c00127{letter-spacing:10.666667pt;}
.ws0_c00127{word-spacing:-58.464000pt;}
.ws2_c00127{word-spacing:-56.448000pt;}
.ws1_c00127{word-spacing:-45.333333pt;}
.ws3_c00127{word-spacing:-20.565333pt;}
.ws4_c00127{word-spacing:0.000000pt;}
._21_c00127{margin-left:-54.106667pt;}
._11_c00127{margin-left:-45.226667pt;}
._8_c00127{margin-left:-37.197333pt;}
._14_c00127{margin-left:-33.834667pt;}
._a_c00127{margin-left:-32.944000pt;}
._e_c00127{margin-left:-30.549333pt;}
._c_c00127{margin-left:-28.381333pt;}
._15_c00127{margin-left:-24.117333pt;}
._16_c00127{margin-left:-20.560000pt;}
._23_c00127{margin-left:-19.488000pt;}
._b_c00127{margin-left:-18.250667pt;}
._24_c00127{margin-left:-17.322667pt;}
._12_c00127{margin-left:-16.213333pt;}
._25_c00127{margin-left:-15.234667pt;}
._19_c00127{margin-left:-13.312000pt;}
._1_c00127{margin-left:-11.605333pt;}
._10_c00127{margin-left:-10.154667pt;}
._6_c00127{margin-left:-8.826667pt;}
._22_c00127{margin-left:-7.253333pt;}
._1c_c00127{margin-left:-6.229333pt;}
._37_c00127{margin-left:-5.290667pt;}
._3_c00127{margin-left:-4.181333pt;}
._4_c00127{margin-left:-2.389333pt;}
._d_c00127{margin-left:-1.314667pt;}
._26_c00127{width:1.450667pt;}
._2f_c00127{width:2.474667pt;}
._1d_c00127{width:3.584000pt;}
._3a_c00127{width:4.522667pt;}
._28_c00127{width:5.461333pt;}
._30_c00127{width:7.168000pt;}
._2a_c00127{width:8.192000pt;}
._18_c00127{width:9.984000pt;}
._1e_c00127{width:11.605333pt;}
._27_c00127{width:13.738667pt;}
._29_c00127{width:14.933333pt;}
._0_c00127{width:16.298667pt;}
._32_c00127{width:18.261333pt;}
._17_c00127{width:19.168000pt;}
._f_c00127{width:22.101333pt;}
._42_c00127{width:23.224000pt;}
._3f_c00127{width:24.320000pt;}
._1a_c00127{width:25.258667pt;}
._38_c00127{width:26.794667pt;}
._2b_c00127{width:27.904000pt;}
._36_c00127{width:28.928000pt;}
._40_c00127{width:30.122667pt;}
._34_c00127{width:31.146667pt;}
._31_c00127{width:32.682667pt;}
._2_c00127{width:34.133333pt;}
._46_c00127{width:35.754667pt;}
._33_c00127{width:36.864000pt;}
._2e_c00127{width:38.058667pt;}
._2d_c00127{width:39.765333pt;}
._43_c00127{width:40.704000pt;}
._3c_c00127{width:42.496000pt;}
._41_c00127{width:43.520000pt;}
._2c_c00127{width:44.458667pt;}
._35_c00127{width:46.165333pt;}
._3b_c00127{width:47.957333pt;}
._48_c00127{width:49.184000pt;}
._3d_c00127{width:50.090667pt;}
._3e_c00127{width:51.029333pt;}
._20_c00127{width:54.240000pt;}
._7_c00127{width:55.216000pt;}
._1b_c00127{width:57.344000pt;}
._39_c00127{width:62.976000pt;}
._1f_c00127{width:67.754667pt;}
._47_c00127{width:68.864000pt;}
._9_c00127{width:88.546667pt;}
._45_c00127{width:105.301333pt;}
._5_c00127{width:142.336000pt;}
._13_c00127{width:147.456000pt;}
._44_c00127{width:443.776000pt;}
.fs4_c00127{font-size:42.666667pt;}
.fs3_c00127{font-size:74.666667pt;}
.fs1_c00127{font-size:77.333333pt;}
.fs0_c00127{font-size:85.333333pt;}
.fs2_c00127{font-size:90.666667pt;}
.y0_c00127{bottom:0.000000pt;}
.y2b_c00127{bottom:2.760000pt;}
.y2a_c00127{bottom:6.425206pt;}
.y29_c00127{bottom:72.693333pt;}
.y28_c00127{bottom:103.893333pt;}
.y27_c00127{bottom:134.160000pt;}
.y26_c00127{bottom:164.960000pt;}
.y25_c00127{bottom:195.093333pt;}
.y24_c00127{bottom:226.160000pt;}
.y23_c00127{bottom:256.160000pt;}
.y22_c00127{bottom:286.560000pt;}
.y21_c00127{bottom:316.560000pt;}
.y20_c00127{bottom:347.360000pt;}
.y5_c00127{bottom:362.693333pt;}
.y1f_c00127{bottom:375.893333pt;}
.y4_c00127{bottom:390.960000pt;}
.y1e_c00127{bottom:407.493333pt;}
.y3_c00127{bottom:417.093333pt;}
.y2_c00127{bottom:429.093333pt;}
.y1d_c00127{bottom:437.093333pt;}
.y1_c00127{bottom:443.093333pt;}
.y1c_c00127{bottom:465.893333pt;}
.y1b_c00127{bottom:497.360000pt;}
.y1a_c00127{bottom:527.760000pt;}
.y19_c00127{bottom:558.026667pt;}
.y18_c00127{bottom:587.760000pt;}
.y17_c00127{bottom:616.293333pt;}
.y16_c00127{bottom:647.493333pt;}
.y15_c00127{bottom:677.360000pt;}
.y14_c00127{bottom:707.493333pt;}
.y13_c00127{bottom:737.493333pt;}
.y12_c00127{bottom:767.493333pt;}
.y11_c00127{bottom:797.093333pt;}
.y10_c00127{bottom:827.093333pt;}
.yf_c00127{bottom:856.293333pt;}
.ye_c00127{bottom:886.160000pt;}
.yd_c00127{bottom:917.093333pt;}
.yc_c00127{bottom:946.026667pt;}
.yb_c00127{bottom:975.360000pt;}
.ya_c00127{bottom:1004.693333pt;}
.y9_c00127{bottom:1034.293333pt;}
.y8_c00127{bottom:1063.760000pt;}
.y7_c00127{bottom:1093.226667pt;}
.y6_c00127{bottom:1123.226667pt;}
.h4_c00127{height:11.733399pt;}
.h5_c00127{height:38.937500pt;}
.h3_c00127{height:97.912760pt;}
.h2_c00127{height:108.041667pt;}
.h0_c00127{height:1229.066667pt;}
.h1_c00127{height:1229.333333pt;}
.w2_c00127{width:93.222667pt;}
.w0_c00127{width:767.266667pt;}
.w1_c00127{width:767.333333pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:53.733333pt;}
.x2_c00127{left:123.333333pt;}
.x3_c00127{left:156.266667pt;}
.x8_c00127{left:245.600000pt;}
.x7_c00127{left:246.533333pt;}
.x5_c00127{left:247.466667pt;}
.x4_c00127{left:248.400000pt;}
.x6_c00127{left:249.333333pt;}
.xa_c00127{left:340.801554pt;}
.x9_c00127{left:710.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_15ab9bda4702b790a7a22b78.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_a1ebcd9ab1babe6af9d74668.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_0f77a37fb77a987f3115a357.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls1_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:27.792000px;}
.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:-32.424000px;}
.ws0_c00128{word-spacing:-23.136000px;}
.ws2_c00128{word-spacing:0.000000px;}
._46_c00128{margin-left:-89.376000px;}
._40_c00128{margin-left:-63.504000px;}
._32_c00128{margin-left:-52.128000px;}
._4e_c00128{margin-left:-36.768000px;}
._47_c00128{margin-left:-34.560000px;}
._3d_c00128{margin-left:-32.688000px;}
._2d_c00128{margin-left:-28.224000px;}
._17_c00128{margin-left:-24.864000px;}
._2c_c00128{margin-left:-22.848000px;}
._56_c00128{margin-left:-21.600000px;}
._35_c00128{margin-left:-20.016000px;}
._59_c00128{margin-left:-17.328000px;}
._e_c00128{margin-left:-16.128000px;}
._4b_c00128{margin-left:-14.496000px;}
._25_c00128{margin-left:-13.056000px;}
._3c_c00128{margin-left:-10.992000px;}
._19_c00128{margin-left:-9.792000px;}
._d_c00128{margin-left:-8.640000px;}
._37_c00128{margin-left:-6.480000px;}
._26_c00128{margin-left:-4.704000px;}
._13_c00128{margin-left:-3.168000px;}
._f_c00128{margin-left:-1.632000px;}
._8_c00128{width:1.536000px;}
._0_c00128{width:2.592000px;}
._2_c00128{width:3.744000px;}
._1_c00128{width:5.376000px;}
._a_c00128{width:7.296000px;}
._1b_c00128{width:8.448000px;}
._9_c00128{width:9.600000px;}
._24_c00128{width:11.232000px;}
._1d_c00128{width:12.384000px;}
._15_c00128{width:13.440000px;}
._b_c00128{width:14.688000px;}
._29_c00128{width:15.840000px;}
._10_c00128{width:17.568000px;}
._1c_c00128{width:18.720000px;}
._34_c00128{width:20.688000px;}
._6_c00128{width:21.792000px;}
._3_c00128{width:24.672000px;}
._14_c00128{width:25.920000px;}
._7_c00128{width:27.648000px;}
._1f_c00128{width:30.144000px;}
._1e_c00128{width:31.296000px;}
._4_c00128{width:32.544000px;}
._2a_c00128{width:33.888000px;}
._5_c00128{width:35.232000px;}
._11_c00128{width:36.768000px;}
._20_c00128{width:38.304000px;}
._39_c00128{width:39.456000px;}
._23_c00128{width:40.512000px;}
._12_c00128{width:42.528000px;}
._3a_c00128{width:43.920000px;}
._1a_c00128{width:45.504000px;}
._16_c00128{width:47.040000px;}
._18_c00128{width:49.152000px;}
._22_c00128{width:50.304000px;}
._58_c00128{width:52.800000px;}
._38_c00128{width:57.168000px;}
._21_c00128{width:58.272000px;}
._3b_c00128{width:59.808000px;}
._50_c00128{width:64.416000px;}
._55_c00128{width:69.504000px;}
._42_c00128{width:70.608000px;}
._49_c00128{width:73.608000px;}
._57_c00128{width:77.376000px;}
._4f_c00128{width:79.392000px;}
._3e_c00128{width:82.800000px;}
._3f_c00128{width:87.984000px;}
._44_c00128{width:90.000000px;}
._51_c00128{width:92.400000px;}
._4a_c00128{width:98.592000px;}
._2b_c00128{width:101.760000px;}
._52_c00128{width:109.728000px;}
._36_c00128{width:130.608000px;}
._48_c00128{width:137.136000px;}
._4c_c00128{width:160.080000px;}
._30_c00128{width:162.624000px;}
._45_c00128{width:177.312000px;}
._c_c00128{width:187.680000px;}
._28_c00128{width:194.208000px;}
._4d_c00128{width:200.736000px;}
._43_c00128{width:216.288000px;}
._2e_c00128{width:217.728000px;}
._53_c00128{width:230.784000px;}
._2f_c00128{width:265.440000px;}
._31_c00128{width:289.824000px;}
._54_c00128{width:371.088000px;}
._27_c00128{width:397.056000px;}
._33_c00128{width:434.976000px;}
._41_c00128{width:522.720000px;}
._5b_c00128{width:546.240000px;}
._5a_c00128{width:569.088000px;}
.fc2_c00128{color:transparent;}
.fc1_c00128{color:rgb(128,128,128);}
.fc0_c00128{color:rgb(0,0,0);}
.fs4_c00128{font-size:48.000000px;}
.fs3_c00128{font-size:67.200000px;}
.fs2_c00128{font-size:84.000000px;}
.fs0_c00128{font-size:96.000000px;}
.fs1_c00128{font-size:144.000000px;}
.y0_c00128{bottom:0.000000px;}
.y24_c00128{bottom:3.105000px;}
.y23_c00128{bottom:7.228355px;}
.y22_c00128{bottom:79.185000px;}
.y21_c00128{bottom:113.985000px;}
.y20_c00128{bottom:148.185000px;}
.y1f_c00128{bottom:182.535000px;}
.y1e_c00128{bottom:216.285000px;}
.y1d_c00128{bottom:251.685000px;}
.y1c_c00128{bottom:284.535000px;}
.y1b_c00128{bottom:318.285000px;}
.y1a_c00128{bottom:351.285000px;}
.y19_c00128{bottom:388.335000px;}
.y17_c00128{bottom:425.535000px;}
.y16_c00128{bottom:456.585000px;}
.y15_c00128{bottom:477.885000px;}
.y14_c00128{bottom:527.535000px;}
.y13_c00128{bottom:579.135000px;}
.y12_c00128{bottom:630.735000px;}
.y11_c00128{bottom:680.985000px;}
.y10_c00128{bottom:758.235000px;}
.yf_c00128{bottom:791.085000px;}
.ye_c00128{bottom:824.385000px;}
.yd_c00128{bottom:858.285000px;}
.y18_c00128{bottom:870.435000px;}
.yc_c00128{bottom:891.585000px;}
.yb_c00128{bottom:924.435000px;}
.ya_c00128{bottom:958.035000px;}
.y9_c00128{bottom:991.185000px;}
.y8_c00128{bottom:1024.935000px;}
.y7_c00128{bottom:1058.085000px;}
.y6_c00128{bottom:1091.835000px;}
.y5_c00128{bottom:1124.535000px;}
.y4_c00128{bottom:1157.835000px;}
.y3_c00128{bottom:1191.285000px;}
.y2_c00128{bottom:1223.985000px;}
.y1_c00128{bottom:1256.835000px;}
.h5_c00128{height:13.200074px;}
.h6_c00128{height:43.804688px;}
.h4_c00128{height:98.314453px;}
.h2_c00128{height:121.546875px;}
.h3_c00128{height:182.320312px;}
.h1_c00128{height:1353.000000px;}
.h0_c00128{height:1353.225000px;}
.w2_c00128{width:104.875500px;}
.w0_c00128{width:858.600000px;}
.w1_c00128{width:858.750000px;}
.x0_c00128{left:0.000000px;}
.xa_c00128{left:32.700000px;}
.x8_c00128{left:34.200000px;}
.x7_c00128{left:35.400000px;}
.xb_c00128{left:36.450000px;}
.x4_c00128{left:37.500000px;}
.x2_c00128{left:39.150000px;}
.x3_c00128{left:40.200000px;}
.x1_c00128{left:43.500000px;}
.x9_c00128{left:86.700000px;}
.xc_c00128{left:130.500000px;}
.xd_c00128{left:213.000000px;}
.xe_c00128{left:237.900000px;}
.x11_c00128{left:246.600000px;}
.x10_c00128{left:284.850000px;}
.x12_c00128{left:381.114258px;}
.x5_c00128{left:633.750000px;}
.x6_c00128{left:687.150000px;}
.xf_c00128{left:773.250000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls1_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:24.704000pt;}
.ws1_c00128{word-spacing:-28.821333pt;}
.ws0_c00128{word-spacing:-20.565333pt;}
.ws2_c00128{word-spacing:0.000000pt;}
._46_c00128{margin-left:-79.445333pt;}
._40_c00128{margin-left:-56.448000pt;}
._32_c00128{margin-left:-46.336000pt;}
._4e_c00128{margin-left:-32.682667pt;}
._47_c00128{margin-left:-30.720000pt;}
._3d_c00128{margin-left:-29.056000pt;}
._2d_c00128{margin-left:-25.088000pt;}
._17_c00128{margin-left:-22.101333pt;}
._2c_c00128{margin-left:-20.309333pt;}
._56_c00128{margin-left:-19.200000pt;}
._35_c00128{margin-left:-17.792000pt;}
._59_c00128{margin-left:-15.402667pt;}
._e_c00128{margin-left:-14.336000pt;}
._4b_c00128{margin-left:-12.885333pt;}
._25_c00128{margin-left:-11.605333pt;}
._3c_c00128{margin-left:-9.770667pt;}
._19_c00128{margin-left:-8.704000pt;}
._d_c00128{margin-left:-7.680000pt;}
._37_c00128{margin-left:-5.760000pt;}
._26_c00128{margin-left:-4.181333pt;}
._13_c00128{margin-left:-2.816000pt;}
._f_c00128{margin-left:-1.450667pt;}
._8_c00128{width:1.365333pt;}
._0_c00128{width:2.304000pt;}
._2_c00128{width:3.328000pt;}
._1_c00128{width:4.778667pt;}
._a_c00128{width:6.485333pt;}
._1b_c00128{width:7.509333pt;}
._9_c00128{width:8.533333pt;}
._24_c00128{width:9.984000pt;}
._1d_c00128{width:11.008000pt;}
._15_c00128{width:11.946667pt;}
._b_c00128{width:13.056000pt;}
._29_c00128{width:14.080000pt;}
._10_c00128{width:15.616000pt;}
._1c_c00128{width:16.640000pt;}
._34_c00128{width:18.389333pt;}
._6_c00128{width:19.370667pt;}
._3_c00128{width:21.930667pt;}
._14_c00128{width:23.040000pt;}
._7_c00128{width:24.576000pt;}
._1f_c00128{width:26.794667pt;}
._1e_c00128{width:27.818667pt;}
._4_c00128{width:28.928000pt;}
._2a_c00128{width:30.122667pt;}
._5_c00128{width:31.317333pt;}
._11_c00128{width:32.682667pt;}
._20_c00128{width:34.048000pt;}
._39_c00128{width:35.072000pt;}
._23_c00128{width:36.010667pt;}
._12_c00128{width:37.802667pt;}
._3a_c00128{width:39.040000pt;}
._1a_c00128{width:40.448000pt;}
._16_c00128{width:41.813333pt;}
._18_c00128{width:43.690667pt;}
._22_c00128{width:44.714667pt;}
._58_c00128{width:46.933333pt;}
._38_c00128{width:50.816000pt;}
._21_c00128{width:51.797333pt;}
._3b_c00128{width:53.162667pt;}
._50_c00128{width:57.258667pt;}
._55_c00128{width:61.781333pt;}
._42_c00128{width:62.762667pt;}
._49_c00128{width:65.429333pt;}
._57_c00128{width:68.778667pt;}
._4f_c00128{width:70.570667pt;}
._3e_c00128{width:73.600000pt;}
._3f_c00128{width:78.208000pt;}
._44_c00128{width:80.000000pt;}
._51_c00128{width:82.133333pt;}
._4a_c00128{width:87.637333pt;}
._2b_c00128{width:90.453333pt;}
._52_c00128{width:97.536000pt;}
._36_c00128{width:116.096000pt;}
._48_c00128{width:121.898667pt;}
._4c_c00128{width:142.293333pt;}
._30_c00128{width:144.554667pt;}
._45_c00128{width:157.610667pt;}
._c_c00128{width:166.826667pt;}
._28_c00128{width:172.629333pt;}
._4d_c00128{width:178.432000pt;}
._43_c00128{width:192.256000pt;}
._2e_c00128{width:193.536000pt;}
._53_c00128{width:205.141333pt;}
._2f_c00128{width:235.946667pt;}
._31_c00128{width:257.621333pt;}
._54_c00128{width:329.856000pt;}
._27_c00128{width:352.938667pt;}
._33_c00128{width:386.645333pt;}
._41_c00128{width:464.640000pt;}
._5b_c00128{width:485.546667pt;}
._5a_c00128{width:505.856000pt;}
.fs4_c00128{font-size:42.666667pt;}
.fs3_c00128{font-size:59.733333pt;}
.fs2_c00128{font-size:74.666667pt;}
.fs0_c00128{font-size:85.333333pt;}
.fs1_c00128{font-size:128.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y24_c00128{bottom:2.760000pt;}
.y23_c00128{bottom:6.425204pt;}
.y22_c00128{bottom:70.386667pt;}
.y21_c00128{bottom:101.320000pt;}
.y20_c00128{bottom:131.720000pt;}
.y1f_c00128{bottom:162.253333pt;}
.y1e_c00128{bottom:192.253333pt;}
.y1d_c00128{bottom:223.720000pt;}
.y1c_c00128{bottom:252.920000pt;}
.y1b_c00128{bottom:282.920000pt;}
.y1a_c00128{bottom:312.253333pt;}
.y19_c00128{bottom:345.186667pt;}
.y17_c00128{bottom:378.253333pt;}
.y16_c00128{bottom:405.853333pt;}
.y15_c00128{bottom:424.786667pt;}
.y14_c00128{bottom:468.920000pt;}
.y13_c00128{bottom:514.786667pt;}
.y12_c00128{bottom:560.653333pt;}
.y11_c00128{bottom:605.320000pt;}
.y10_c00128{bottom:673.986667pt;}
.yf_c00128{bottom:703.186667pt;}
.ye_c00128{bottom:732.786667pt;}
.yd_c00128{bottom:762.920000pt;}
.y18_c00128{bottom:773.720000pt;}
.yc_c00128{bottom:792.520000pt;}
.yb_c00128{bottom:821.720000pt;}
.ya_c00128{bottom:851.586667pt;}
.y9_c00128{bottom:881.053333pt;}
.y8_c00128{bottom:911.053333pt;}
.y7_c00128{bottom:940.520000pt;}
.y6_c00128{bottom:970.520000pt;}
.y5_c00128{bottom:999.586667pt;}
.y4_c00128{bottom:1029.186667pt;}
.y3_c00128{bottom:1058.920000pt;}
.y2_c00128{bottom:1087.986667pt;}
.y1_c00128{bottom:1117.186667pt;}
.h5_c00128{height:11.733399pt;}
.h6_c00128{height:38.937500pt;}
.h4_c00128{height:87.390625pt;}
.h2_c00128{height:108.041667pt;}
.h3_c00128{height:162.062500pt;}
.h1_c00128{height:1202.666667pt;}
.h0_c00128{height:1202.866667pt;}
.w2_c00128{width:93.222667pt;}
.w0_c00128{width:763.200000pt;}
.w1_c00128{width:763.333333pt;}
.x0_c00128{left:0.000000pt;}
.xa_c00128{left:29.066667pt;}
.x8_c00128{left:30.400000pt;}
.x7_c00128{left:31.466667pt;}
.xb_c00128{left:32.400000pt;}
.x4_c00128{left:33.333333pt;}
.x2_c00128{left:34.800000pt;}
.x3_c00128{left:35.733333pt;}
.x1_c00128{left:38.666667pt;}
.x9_c00128{left:77.066667pt;}
.xc_c00128{left:116.000000pt;}
.xd_c00128{left:189.333333pt;}
.xe_c00128{left:211.466667pt;}
.x11_c00128{left:219.200000pt;}
.x10_c00128{left:253.200000pt;}
.x12_c00128{left:338.768229pt;}
.x5_c00128{left:563.333333pt;}
.x6_c00128{left:610.800000pt;}
.xf_c00128{left:687.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_537b014179efed4a41c39f34.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_a3bc56c1fafbd9922ae59d67.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_b2617ff221f0d4c67987d822.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00129;src:url('chunks/assets/font_37ee5c5dd00632c86fb6bf1a.woff2')format("woff");}.ff6_c00129{font-family:ff6_c00129;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00129;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00129{font-family:ff7_c00129;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls6_c00129{letter-spacing:0.000000px;}
.ls3_c00129{letter-spacing:3.252000px;}
.ls7_c00129{letter-spacing:12.000000px;}
.ls5_c00129{letter-spacing:17.640000px;}
.ls4_c00129{letter-spacing:18.417600px;}
.ls1_c00129{letter-spacing:32.433000px;}
.ls0_c00129{letter-spacing:177.033000px;}
.ls2_c00129{letter-spacing:397.692000px;}
.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;}
}
.ws2_c00129{word-spacing:-51.000000px;}
.ws1_c00129{word-spacing:-23.136000px;}
.ws0_c00129{word-spacing:-20.244000px;}
.ws3_c00129{word-spacing:0.000000px;}
._15_c00129{margin-left:-29.952000px;}
._40_c00129{margin-left:-27.846000px;}
._38_c00129{margin-left:-20.010000px;}
._2c_c00129{margin-left:-17.568000px;}
._33_c00129{margin-left:-15.903000px;}
._32_c00129{margin-left:-13.794000px;}
._12_c00129{margin-left:-11.424000px;}
._2a_c00129{margin-left:-9.696000px;}
._3b_c00129{margin-left:-8.400000px;}
._3_c00129{margin-left:-6.972000px;}
._0_c00129{margin-left:-5.796000px;}
._1_c00129{margin-left:-3.864000px;}
._6_c00129{margin-left:-2.016000px;}
._11_c00129{margin-left:-1.008000px;}
._f_c00129{width:1.440000px;}
._10_c00129{width:3.168000px;}
._14_c00129{width:4.320000px;}
._d_c00129{width:5.568000px;}
._a_c00129{width:7.488000px;}
._28_c00129{width:8.808000px;}
._c_c00129{width:10.176000px;}
._39_c00129{width:11.262000px;}
._22_c00129{width:12.312000px;}
._2_c00129{width:13.356000px;}
._30_c00129{width:14.418000px;}
._8_c00129{width:15.456000px;}
._1d_c00129{width:17.400000px;}
._9_c00129{width:18.624000px;}
._23_c00129{width:19.776000px;}
._1b_c00129{width:21.024000px;}
._2f_c00129{width:22.206000px;}
._2e_c00129{width:23.352000px;}
._21_c00129{width:24.600000px;}
._e_c00129{width:26.112000px;}
._3a_c00129{width:27.372000px;}
._4_c00129{width:28.392000px;}
._35_c00129{width:29.460000px;}
._24_c00129{width:30.528000px;}
._18_c00129{width:31.680000px;}
._17_c00129{width:33.696000px;}
._29_c00129{width:35.160000px;}
._16_c00129{width:36.288000px;}
._1f_c00129{width:38.112000px;}
._25_c00129{width:39.552000px;}
._5_c00129{width:40.572000px;}
._27_c00129{width:41.856000px;}
._1c_c00129{width:43.716000px;}
._20_c00129{width:45.240000px;}
._26_c00129{width:48.960000px;}
._19_c00129{width:50.400000px;}
._31_c00129{width:52.680000px;}
._36_c00129{width:54.102000px;}
._37_c00129{width:62.478000px;}
._1a_c00129{width:70.296000px;}
._13_c00129{width:80.880000px;}
._b_c00129{width:116.064000px;}
._34_c00129{width:260.298000px;}
._2d_c00129{width:269.076000px;}
._2b_c00129{width:276.576000px;}
._7_c00129{width:282.636000px;}
._3d_c00129{width:363.330000px;}
._3f_c00129{width:453.600000px;}
._3e_c00129{width:460.194000px;}
._1e_c00129{width:506.112000px;}
._3c_c00129{width:771.936000px;}
.fc2_c00129{color:transparent;}
.fc1_c00129{color:rgb(128,128,128);}
.fc0_c00129{color:rgb(0,0,0);}
.fs8_c00129{font-size:48.000000px;}
.fs6_c00129{font-size:76.800000px;}
.fs2_c00129{font-size:78.000000px;}
.fs4_c00129{font-size:81.000000px;}
.fs0_c00129{font-size:84.000000px;}
.fs3_c00129{font-size:87.000000px;}
.fs1_c00129{font-size:96.000000px;}
.fs5_c00129{font-size:102.000000px;}
.fs7_c00129{font-size:105.000000px;}
.y0_c00129{bottom:0.000000px;}
.y25_c00129{bottom:3.105000px;}
.y24_c00129{bottom:7.228363px;}
.y23_c00129{bottom:127.650000px;}
.y22_c00129{bottom:160.650000px;}
.y21_c00129{bottom:193.500000px;}
.y20_c00129{bottom:226.200000px;}
.y1f_c00129{bottom:261.600000px;}
.y1e_c00129{bottom:305.400000px;}
.y1d_c00129{bottom:334.500000px;}
.y1c_c00129{bottom:367.500000px;}
.y1b_c00129{bottom:401.700000px;}
.y1a_c00129{bottom:435.750000px;}
.y19_c00129{bottom:469.500000px;}
.y18_c00129{bottom:503.250000px;}
.y17_c00129{bottom:536.400000px;}
.y16_c00129{bottom:570.750000px;}
.y15_c00129{bottom:605.100000px;}
.y14_c00129{bottom:638.550000px;}
.y13_c00129{bottom:672.300000px;}
.y12_c00129{bottom:704.100000px;}
.y11_c00129{bottom:736.200000px;}
.y10_c00129{bottom:777.900000px;}
.yf_c00129{bottom:812.400000px;}
.ye_c00129{bottom:842.400000px;}
.yd_c00129{bottom:875.100000px;}
.yc_c00129{bottom:907.800000px;}
.yb_c00129{bottom:941.250000px;}
.ya_c00129{bottom:974.100000px;}
.y9_c00129{bottom:1007.550000px;}
.y8_c00129{bottom:1041.150000px;}
.y7_c00129{bottom:1074.300000px;}
.y6_c00129{bottom:1108.050000px;}
.y5_c00129{bottom:1141.500000px;}
.y4_c00129{bottom:1178.550000px;}
.y3_c00129{bottom:1210.950000px;}
.y2_c00129{bottom:1242.450000px;}
.y1_c00129{bottom:1275.450000px;}
.h5_c00129{height:13.200074px;}
.h6_c00129{height:43.804688px;}
.h2_c00129{height:121.546875px;}
.h3_c00129{height:129.143555px;}
.h4_c00129{height:132.941895px;}
.h1_c00129{height:1374.000000px;}
.h0_c00129{height:1374.300000px;}
.w2_c00129{width:104.875500px;}
.w1_c00129{width:857.250000px;}
.w0_c00129{width:857.550000px;}
.x0_c00129{left:0.000000px;}
.xf_c00129{left:64.050000px;}
.x3_c00129{left:65.550000px;}
.x2_c00129{left:66.750000px;}
.xa_c00129{left:68.850000px;}
.x9_c00129{left:69.900000px;}
.x1_c00129{left:95.250000px;}
.xd_c00129{left:96.900000px;}
.x8_c00129{left:97.950000px;}
.xe_c00129{left:136.650000px;}
.x7_c00129{left:145.500000px;}
.x6_c00129{left:278.850000px;}
.x5_c00129{left:281.100000px;}
.x10_c00129{left:282.150000px;}
.x4_c00129{left:283.200000px;}
.xc_c00129{left:284.400000px;}
.xb_c00129{left:285.900000px;}
.x11_c00129{left:380.589249px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls6_c00129{letter-spacing:0.000000pt;}
.ls3_c00129{letter-spacing:2.890667pt;}
.ls7_c00129{letter-spacing:10.666667pt;}
.ls5_c00129{letter-spacing:15.680000pt;}
.ls4_c00129{letter-spacing:16.371200pt;}
.ls1_c00129{letter-spacing:28.829333pt;}
.ls0_c00129{letter-spacing:157.362667pt;}
.ls2_c00129{letter-spacing:353.504000pt;}
.ws2_c00129{word-spacing:-45.333333pt;}
.ws1_c00129{word-spacing:-20.565333pt;}
.ws0_c00129{word-spacing:-17.994667pt;}
.ws3_c00129{word-spacing:0.000000pt;}
._15_c00129{margin-left:-26.624000pt;}
._40_c00129{margin-left:-24.752000pt;}
._38_c00129{margin-left:-17.786667pt;}
._2c_c00129{margin-left:-15.616000pt;}
._33_c00129{margin-left:-14.136000pt;}
._32_c00129{margin-left:-12.261333pt;}
._12_c00129{margin-left:-10.154667pt;}
._2a_c00129{margin-left:-8.618667pt;}
._3b_c00129{margin-left:-7.466667pt;}
._3_c00129{margin-left:-6.197333pt;}
._0_c00129{margin-left:-5.152000pt;}
._1_c00129{margin-left:-3.434667pt;}
._6_c00129{margin-left:-1.792000pt;}
._11_c00129{margin-left:-0.896000pt;}
._f_c00129{width:1.280000pt;}
._10_c00129{width:2.816000pt;}
._14_c00129{width:3.840000pt;}
._d_c00129{width:4.949333pt;}
._a_c00129{width:6.656000pt;}
._28_c00129{width:7.829333pt;}
._c_c00129{width:9.045333pt;}
._39_c00129{width:10.010667pt;}
._22_c00129{width:10.944000pt;}
._2_c00129{width:11.872000pt;}
._30_c00129{width:12.816000pt;}
._8_c00129{width:13.738667pt;}
._1d_c00129{width:15.466667pt;}
._9_c00129{width:16.554667pt;}
._23_c00129{width:17.578667pt;}
._1b_c00129{width:18.688000pt;}
._2f_c00129{width:19.738667pt;}
._2e_c00129{width:20.757333pt;}
._21_c00129{width:21.866667pt;}
._e_c00129{width:23.210667pt;}
._3a_c00129{width:24.330667pt;}
._4_c00129{width:25.237333pt;}
._35_c00129{width:26.186667pt;}
._24_c00129{width:27.136000pt;}
._18_c00129{width:28.160000pt;}
._17_c00129{width:29.952000pt;}
._29_c00129{width:31.253333pt;}
._16_c00129{width:32.256000pt;}
._1f_c00129{width:33.877333pt;}
._25_c00129{width:35.157333pt;}
._5_c00129{width:36.064000pt;}
._27_c00129{width:37.205333pt;}
._1c_c00129{width:38.858667pt;}
._20_c00129{width:40.213333pt;}
._26_c00129{width:43.520000pt;}
._19_c00129{width:44.800000pt;}
._31_c00129{width:46.826667pt;}
._36_c00129{width:48.090667pt;}
._37_c00129{width:55.536000pt;}
._1a_c00129{width:62.485333pt;}
._13_c00129{width:71.893333pt;}
._b_c00129{width:103.168000pt;}
._34_c00129{width:231.376000pt;}
._2d_c00129{width:239.178667pt;}
._2b_c00129{width:245.845333pt;}
._7_c00129{width:251.232000pt;}
._3d_c00129{width:322.960000pt;}
._3f_c00129{width:403.200000pt;}
._3e_c00129{width:409.061333pt;}
._1e_c00129{width:449.877333pt;}
._3c_c00129{width:686.165333pt;}
.fs8_c00129{font-size:42.666667pt;}
.fs6_c00129{font-size:68.266667pt;}
.fs2_c00129{font-size:69.333333pt;}
.fs4_c00129{font-size:72.000000pt;}
.fs0_c00129{font-size:74.666667pt;}
.fs3_c00129{font-size:77.333333pt;}
.fs1_c00129{font-size:85.333333pt;}
.fs5_c00129{font-size:90.666667pt;}
.fs7_c00129{font-size:93.333333pt;}
.y0_c00129{bottom:0.000000pt;}
.y25_c00129{bottom:2.760000pt;}
.y24_c00129{bottom:6.425212pt;}
.y23_c00129{bottom:113.466667pt;}
.y22_c00129{bottom:142.800000pt;}
.y21_c00129{bottom:172.000000pt;}
.y20_c00129{bottom:201.066667pt;}
.y1f_c00129{bottom:232.533333pt;}
.y1e_c00129{bottom:271.466667pt;}
.y1d_c00129{bottom:297.333333pt;}
.y1c_c00129{bottom:326.666667pt;}
.y1b_c00129{bottom:357.066667pt;}
.y1a_c00129{bottom:387.333333pt;}
.y19_c00129{bottom:417.333333pt;}
.y18_c00129{bottom:447.333333pt;}
.y17_c00129{bottom:476.800000pt;}
.y16_c00129{bottom:507.333333pt;}
.y15_c00129{bottom:537.866667pt;}
.y14_c00129{bottom:567.600000pt;}
.y13_c00129{bottom:597.600000pt;}
.y12_c00129{bottom:625.866667pt;}
.y11_c00129{bottom:654.400000pt;}
.y10_c00129{bottom:691.466667pt;}
.yf_c00129{bottom:722.133333pt;}
.ye_c00129{bottom:748.800000pt;}
.yd_c00129{bottom:777.866667pt;}
.yc_c00129{bottom:806.933333pt;}
.yb_c00129{bottom:836.666667pt;}
.ya_c00129{bottom:865.866667pt;}
.y9_c00129{bottom:895.600000pt;}
.y8_c00129{bottom:925.466667pt;}
.y7_c00129{bottom:954.933333pt;}
.y6_c00129{bottom:984.933333pt;}
.y5_c00129{bottom:1014.666667pt;}
.y4_c00129{bottom:1047.600000pt;}
.y3_c00129{bottom:1076.400000pt;}
.y2_c00129{bottom:1104.400000pt;}
.y1_c00129{bottom:1133.733333pt;}
.h5_c00129{height:11.733399pt;}
.h6_c00129{height:38.937500pt;}
.h2_c00129{height:108.041667pt;}
.h3_c00129{height:114.794271pt;}
.h4_c00129{height:118.170573pt;}
.h1_c00129{height:1221.333333pt;}
.h0_c00129{height:1221.600000pt;}
.w2_c00129{width:93.222667pt;}
.w1_c00129{width:762.000000pt;}
.w0_c00129{width:762.266667pt;}
.x0_c00129{left:0.000000pt;}
.xf_c00129{left:56.933333pt;}
.x3_c00129{left:58.266667pt;}
.x2_c00129{left:59.333333pt;}
.xa_c00129{left:61.200000pt;}
.x9_c00129{left:62.133333pt;}
.x1_c00129{left:84.666667pt;}
.xd_c00129{left:86.133333pt;}
.x8_c00129{left:87.066667pt;}
.xe_c00129{left:121.466667pt;}
.x7_c00129{left:129.333333pt;}
.x6_c00129{left:247.866667pt;}
.x5_c00129{left:249.866667pt;}
.x10_c00129{left:250.800000pt;}
.x4_c00129{left:251.733333pt;}
.xc_c00129{left:252.800000pt;}
.xb_c00129{left:254.133333pt;}
.x11_c00129{left:338.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b346df7ddda72f300607186b.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_20f47d07ebd592c29344e2e2.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_d2839a07d5f78e939cebcbdd.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;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_c00130;src:url('chunks/assets/font_b03e5a1bc0a78b94b72883e6.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00130;src:url('chunks/assets/font_e5bb444a869468cf7251698b.woff2')format("woff");}.ff6_c00130{font-family:ff6_c00130;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00130;src:url('chunks/assets/font_1851b94acef1a33e8893a820.woff2')format("woff");}.ff7_c00130{font-family:ff7_c00130;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00130;src:url('chunks/assets/font_560136de14538fca32943d29.woff2')format("woff");}.ff8_c00130{font-family:ff8_c00130;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00130;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00130{font-family:ff9_c00130;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls6_c00130{letter-spacing:0.000000px;}
.ls2_c00130{letter-spacing:5.040000px;}
.ls4_c00130{letter-spacing:5.280000px;}
.ls0_c00130{letter-spacing:6.120000px;}
.ls1_c00130{letter-spacing:8.964000px;}
.ls5_c00130{letter-spacing:16.905600px;}
.ls3_c00130{letter-spacing:22.308000px;}
.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:-51.000000px;}
.ws2_c00130{word-spacing:-23.136000px;}
.ws4_c00130{word-spacing:-20.244000px;}
.ws3_c00130{word-spacing:-16.686000px;}
.ws0_c00130{word-spacing:-13.411200px;}
.ws5_c00130{word-spacing:-8.676000px;}
.ws6_c00130{word-spacing:0.000000px;}
._3b_c00130{margin-left:-86.400000px;}
._2a_c00130{margin-left:-72.912000px;}
._39_c00130{margin-left:-25.056000px;}
._35_c00130{margin-left:-22.488000px;}
._36_c00130{margin-left:-17.328000px;}
._1f_c00130{margin-left:-14.640000px;}
._25_c00130{margin-left:-12.768000px;}
._26_c00130{margin-left:-10.560000px;}
._32_c00130{margin-left:-8.304000px;}
._1b_c00130{margin-left:-6.240000px;}
._1c_c00130{margin-left:-4.608000px;}
._40_c00130{margin-left:-3.516000px;}
._d_c00130{margin-left:-2.496000px;}
._14_c00130{margin-left:-1.440000px;}
._2_c00130{width:1.440000px;}
._1_c00130{width:2.976000px;}
._c_c00130{width:4.032000px;}
._0_c00130{width:5.184000px;}
._19_c00130{width:6.192000px;}
._7_c00130{width:7.200000px;}
._6_c00130{width:8.928000px;}
._5_c00130{width:10.176000px;}
._4_c00130{width:11.232000px;}
._31_c00130{width:12.432000px;}
._a_c00130{width:13.632000px;}
._10_c00130{width:14.688000px;}
._1e_c00130{width:15.792000px;}
._11_c00130{width:17.184000px;}
._16_c00130{width:19.008000px;}
._18_c00130{width:20.784000px;}
._1d_c00130{width:21.792000px;}
._20_c00130{width:24.216000px;}
._3_c00130{width:25.440000px;}
._30_c00130{width:26.880000px;}
._17_c00130{width:28.128000px;}
._12_c00130{width:30.144000px;}
._9_c00130{width:32.448000px;}
._f_c00130{width:34.752000px;}
._33_c00130{width:35.760000px;}
._15_c00130{width:36.960000px;}
._8_c00130{width:38.592000px;}
._b_c00130{width:40.320000px;}
._27_c00130{width:41.520000px;}
._e_c00130{width:43.104000px;}
._13_c00130{width:44.256000px;}
._21_c00130{width:47.416800px;}
._28_c00130{width:49.200000px;}
._1a_c00130{width:52.032000px;}
._22_c00130{width:55.632000px;}
._24_c00130{width:57.984000px;}
._3e_c00130{width:59.712000px;}
._34_c00130{width:62.352000px;}
._23_c00130{width:69.984000px;}
._3d_c00130{width:73.728000px;}
._3f_c00130{width:92.898000px;}
._3a_c00130{width:125.383200px;}
._2c_c00130{width:131.616000px;}
._3c_c00130{width:168.432000px;}
._2f_c00130{width:181.584000px;}
._2d_c00130{width:205.152000px;}
._29_c00130{width:267.456000px;}
._37_c00130{width:287.904000px;}
._38_c00130{width:290.400000px;}
._2b_c00130{width:295.176000px;}
._2e_c00130{width:389.376000px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(128,128,128);}
.fc0_c00130{color:rgb(0,0,0);}
.fs6_c00130{font-size:36.000000px;}
.fs8_c00130{font-size:48.000000px;}
.fs3_c00130{font-size:52.800000px;}
.fs2_c00130{font-size:66.000000px;}
.fs7_c00130{font-size:67.200000px;}
.fs5_c00130{font-size:81.000000px;}
.fs1_c00130{font-size:84.000000px;}
.fs0_c00130{font-size:96.000000px;}
.fs4_c00130{font-size:102.000000px;}
.y0_c00130{bottom:0.000000px;}
.y36_c00130{bottom:3.105000px;}
.y35_c00130{bottom:7.228363px;}
.y24_c00130{bottom:85.800000px;}
.y23_c00130{bottom:116.850000px;}
.y34_c00130{bottom:117.750000px;}
.y33_c00130{bottom:146.850000px;}
.y22_c00130{bottom:149.850000px;}
.y32_c00130{bottom:177.300000px;}
.y21_c00130{bottom:184.050000px;}
.y31_c00130{bottom:207.600000px;}
.y20_c00130{bottom:217.650000px;}
.y30_c00130{bottom:237.600000px;}
.y1f_c00130{bottom:251.850000px;}
.y2f_c00130{bottom:267.750000px;}
.y1e_c00130{bottom:286.650000px;}
.y1d_c00130{bottom:320.250000px;}
.y1c_c00130{bottom:352.650000px;}
.y1b_c00130{bottom:386.550000px;}
.y2e_c00130{bottom:389.250000px;}
.y1a_c00130{bottom:421.500000px;}
.y19_c00130{bottom:454.200000px;}
.y2d_c00130{bottom:461.100000px;}
.y18_c00130{bottom:488.100000px;}
.y2c_c00130{bottom:491.850000px;}
.y2b_c00130{bottom:520.200000px;}
.y17_c00130{bottom:521.700000px;}
.y2a_c00130{bottom:551.100000px;}
.y16_c00130{bottom:555.600000px;}
.y29_c00130{bottom:580.500000px;}
.y15_c00130{bottom:589.050000px;}
.y28_c00130{bottom:610.200000px;}
.y14_c00130{bottom:621.300000px;}
.y27_c00130{bottom:639.600000px;}
.y13_c00130{bottom:655.200000px;}
.y26_c00130{bottom:668.700000px;}
.y12_c00130{bottom:690.600000px;}
.y25_c00130{bottom:697.950000px;}
.y11_c00130{bottom:720.600000px;}
.y10_c00130{bottom:755.700000px;}
.yf_c00130{bottom:788.850000px;}
.ye_c00130{bottom:822.450000px;}
.yd_c00130{bottom:855.300000px;}
.yc_c00130{bottom:889.050000px;}
.yb_c00130{bottom:921.750000px;}
.ya_c00130{bottom:955.500000px;}
.y9_c00130{bottom:988.650000px;}
.y8_c00130{bottom:1021.950000px;}
.y7_c00130{bottom:1055.700000px;}
.y6_c00130{bottom:1089.450000px;}
.y5_c00130{bottom:1122.150000px;}
.y4_c00130{bottom:1155.300000px;}
.y3_c00130{bottom:1188.450000px;}
.y2_c00130{bottom:1221.450000px;}
.y1_c00130{bottom:1255.500000px;}
.h8_c00130{height:13.200074px;}
.h9_c00130{height:43.804688px;}
.h6_c00130{height:45.580078px;}
.h3_c00130{height:87.804000px;}
.h5_c00130{height:98.314453px;}
.h7_c00130{height:106.353516px;}
.h2_c00130{height:121.546875px;}
.h4_c00130{height:129.143555px;}
.h1_c00130{height:1341.750000px;}
.h0_c00130{height:1341.900000px;}
.w2_c00130{width:104.875500px;}
.w1_c00130{width:851.250000px;}
.w0_c00130{width:851.550000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:36.000000px;}
.x2_c00130{left:37.500000px;}
.x3_c00130{left:39.150000px;}
.x5_c00130{left:41.250000px;}
.x6_c00130{left:42.300000px;}
.x7_c00130{left:43.950000px;}
.x8_c00130{left:45.000000px;}
.x9_c00130{left:46.200000px;}
.xb_c00130{left:49.350000px;}
.xc_c00130{left:51.600000px;}
.x4_c00130{left:92.100000px;}
.xa_c00130{left:100.650000px;}
.x1b_c00130{left:377.589249px;}
.xd_c00130{left:574.200000px;}
.x12_c00130{left:621.300000px;}
.x13_c00130{left:623.400000px;}
.xf_c00130{left:624.450000px;}
.x10_c00130{left:625.500000px;}
.x11_c00130{left:626.700000px;}
.x16_c00130{left:630.900000px;}
.x17_c00130{left:632.100000px;}
.x18_c00130{left:633.150000px;}
.x19_c00130{left:634.200000px;}
.x1a_c00130{left:635.250000px;}
.x15_c00130{left:659.100000px;}
.xe_c00130{left:680.100000px;}
.x14_c00130{left:743.550000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls6_c00130{letter-spacing:0.000000pt;}
.ls2_c00130{letter-spacing:4.480000pt;}
.ls4_c00130{letter-spacing:4.693333pt;}
.ls0_c00130{letter-spacing:5.440000pt;}
.ls1_c00130{letter-spacing:7.968000pt;}
.ls5_c00130{letter-spacing:15.027200pt;}
.ls3_c00130{letter-spacing:19.829333pt;}
.ws1_c00130{word-spacing:-45.333333pt;}
.ws2_c00130{word-spacing:-20.565333pt;}
.ws4_c00130{word-spacing:-17.994667pt;}
.ws3_c00130{word-spacing:-14.832000pt;}
.ws0_c00130{word-spacing:-11.921067pt;}
.ws5_c00130{word-spacing:-7.712000pt;}
.ws6_c00130{word-spacing:0.000000pt;}
._3b_c00130{margin-left:-76.800000pt;}
._2a_c00130{margin-left:-64.810667pt;}
._39_c00130{margin-left:-22.272000pt;}
._35_c00130{margin-left:-19.989333pt;}
._36_c00130{margin-left:-15.402667pt;}
._1f_c00130{margin-left:-13.013333pt;}
._25_c00130{margin-left:-11.349333pt;}
._26_c00130{margin-left:-9.386667pt;}
._32_c00130{margin-left:-7.381333pt;}
._1b_c00130{margin-left:-5.546667pt;}
._1c_c00130{margin-left:-4.096000pt;}
._40_c00130{margin-left:-3.125333pt;}
._d_c00130{margin-left:-2.218667pt;}
._14_c00130{margin-left:-1.280000pt;}
._2_c00130{width:1.280000pt;}
._1_c00130{width:2.645333pt;}
._c_c00130{width:3.584000pt;}
._0_c00130{width:4.608000pt;}
._19_c00130{width:5.504000pt;}
._7_c00130{width:6.400000pt;}
._6_c00130{width:7.936000pt;}
._5_c00130{width:9.045333pt;}
._4_c00130{width:9.984000pt;}
._31_c00130{width:11.050667pt;}
._a_c00130{width:12.117333pt;}
._10_c00130{width:13.056000pt;}
._1e_c00130{width:14.037333pt;}
._11_c00130{width:15.274667pt;}
._16_c00130{width:16.896000pt;}
._18_c00130{width:18.474667pt;}
._1d_c00130{width:19.370667pt;}
._20_c00130{width:21.525333pt;}
._3_c00130{width:22.613333pt;}
._30_c00130{width:23.893333pt;}
._17_c00130{width:25.002667pt;}
._12_c00130{width:26.794667pt;}
._9_c00130{width:28.842667pt;}
._f_c00130{width:30.890667pt;}
._33_c00130{width:31.786667pt;}
._15_c00130{width:32.853333pt;}
._8_c00130{width:34.304000pt;}
._b_c00130{width:35.840000pt;}
._27_c00130{width:36.906667pt;}
._e_c00130{width:38.314667pt;}
._13_c00130{width:39.338667pt;}
._21_c00130{width:42.148267pt;}
._28_c00130{width:43.733333pt;}
._1a_c00130{width:46.250667pt;}
._22_c00130{width:49.450667pt;}
._24_c00130{width:51.541333pt;}
._3e_c00130{width:53.077333pt;}
._34_c00130{width:55.424000pt;}
._23_c00130{width:62.208000pt;}
._3d_c00130{width:65.536000pt;}
._3f_c00130{width:82.576000pt;}
._3a_c00130{width:111.451733pt;}
._2c_c00130{width:116.992000pt;}
._3c_c00130{width:149.717333pt;}
._2f_c00130{width:161.408000pt;}
._2d_c00130{width:182.357333pt;}
._29_c00130{width:237.738667pt;}
._37_c00130{width:255.914667pt;}
._38_c00130{width:258.133333pt;}
._2b_c00130{width:262.378667pt;}
._2e_c00130{width:346.112000pt;}
.fs6_c00130{font-size:32.000000pt;}
.fs8_c00130{font-size:42.666667pt;}
.fs3_c00130{font-size:46.933333pt;}
.fs2_c00130{font-size:58.666667pt;}
.fs7_c00130{font-size:59.733333pt;}
.fs5_c00130{font-size:72.000000pt;}
.fs1_c00130{font-size:74.666667pt;}
.fs0_c00130{font-size:85.333333pt;}
.fs4_c00130{font-size:90.666667pt;}
.y0_c00130{bottom:0.000000pt;}
.y36_c00130{bottom:2.760000pt;}
.y35_c00130{bottom:6.425212pt;}
.y24_c00130{bottom:76.266667pt;}
.y23_c00130{bottom:103.866667pt;}
.y34_c00130{bottom:104.666667pt;}
.y33_c00130{bottom:130.533333pt;}
.y22_c00130{bottom:133.200000pt;}
.y32_c00130{bottom:157.600000pt;}
.y21_c00130{bottom:163.600000pt;}
.y31_c00130{bottom:184.533333pt;}
.y20_c00130{bottom:193.466667pt;}
.y30_c00130{bottom:211.200000pt;}
.y1f_c00130{bottom:223.866667pt;}
.y2f_c00130{bottom:238.000000pt;}
.y1e_c00130{bottom:254.800000pt;}
.y1d_c00130{bottom:284.666667pt;}
.y1c_c00130{bottom:313.466667pt;}
.y1b_c00130{bottom:343.600000pt;}
.y2e_c00130{bottom:346.000000pt;}
.y1a_c00130{bottom:374.666667pt;}
.y19_c00130{bottom:403.733333pt;}
.y2d_c00130{bottom:409.866667pt;}
.y18_c00130{bottom:433.866667pt;}
.y2c_c00130{bottom:437.200000pt;}
.y2b_c00130{bottom:462.400000pt;}
.y17_c00130{bottom:463.733333pt;}
.y2a_c00130{bottom:489.866667pt;}
.y16_c00130{bottom:493.866667pt;}
.y29_c00130{bottom:516.000000pt;}
.y15_c00130{bottom:523.600000pt;}
.y28_c00130{bottom:542.400000pt;}
.y14_c00130{bottom:552.266667pt;}
.y27_c00130{bottom:568.533333pt;}
.y13_c00130{bottom:582.400000pt;}
.y26_c00130{bottom:594.400000pt;}
.y12_c00130{bottom:613.866667pt;}
.y25_c00130{bottom:620.400000pt;}
.y11_c00130{bottom:640.533333pt;}
.y10_c00130{bottom:671.733333pt;}
.yf_c00130{bottom:701.200000pt;}
.ye_c00130{bottom:731.066667pt;}
.yd_c00130{bottom:760.266667pt;}
.yc_c00130{bottom:790.266667pt;}
.yb_c00130{bottom:819.333333pt;}
.ya_c00130{bottom:849.333333pt;}
.y9_c00130{bottom:878.800000pt;}
.y8_c00130{bottom:908.400000pt;}
.y7_c00130{bottom:938.400000pt;}
.y6_c00130{bottom:968.400000pt;}
.y5_c00130{bottom:997.466667pt;}
.y4_c00130{bottom:1026.933333pt;}
.y3_c00130{bottom:1056.400000pt;}
.y2_c00130{bottom:1085.733333pt;}
.y1_c00130{bottom:1116.000000pt;}
.h8_c00130{height:11.733399pt;}
.h9_c00130{height:38.937500pt;}
.h6_c00130{height:40.515625pt;}
.h3_c00130{height:78.048000pt;}
.h5_c00130{height:87.390625pt;}
.h7_c00130{height:94.536458pt;}
.h2_c00130{height:108.041667pt;}
.h4_c00130{height:114.794271pt;}
.h1_c00130{height:1192.666667pt;}
.h0_c00130{height:1192.800000pt;}
.w2_c00130{width:93.222667pt;}
.w1_c00130{width:756.666667pt;}
.w0_c00130{width:756.933333pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:32.000000pt;}
.x2_c00130{left:33.333333pt;}
.x3_c00130{left:34.800000pt;}
.x5_c00130{left:36.666667pt;}
.x6_c00130{left:37.600000pt;}
.x7_c00130{left:39.066667pt;}
.x8_c00130{left:40.000000pt;}
.x9_c00130{left:41.066667pt;}
.xb_c00130{left:43.866667pt;}
.xc_c00130{left:45.866667pt;}
.x4_c00130{left:81.866667pt;}
.xa_c00130{left:89.466667pt;}
.x1b_c00130{left:335.634888pt;}
.xd_c00130{left:510.400000pt;}
.x12_c00130{left:552.266667pt;}
.x13_c00130{left:554.133333pt;}
.xf_c00130{left:555.066667pt;}
.x10_c00130{left:556.000000pt;}
.x11_c00130{left:557.066667pt;}
.x16_c00130{left:560.800000pt;}
.x17_c00130{left:561.866667pt;}
.x18_c00130{left:562.800000pt;}
.x19_c00130{left:563.733333pt;}
.x1a_c00130{left:564.666667pt;}
.x15_c00130{left:585.866667pt;}
.xe_c00130{left:604.533333pt;}
.x14_c00130{left:660.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0b619fb3ab2d5ce39e66c12.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_2b2bae41e700b7ead03cacc0.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_1b670eca3d4079f8c42e5d3e.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_fbb4aed95b3255accc05e339.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_8e9b3db486b422e9d92e65d7.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00131;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00131{font-family:ff6_c00131;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls5_c00131{letter-spacing:-42.000000px;}
.ls3_c00131{letter-spacing:-3.000000px;}
.ls2_c00131{letter-spacing:0.000000px;}
.ls6_c00131{letter-spacing:3.000000px;}
.ls0_c00131{letter-spacing:4.452000px;}
.ls4_c00131{letter-spacing:9.000000px;}
.ls1_c00131{letter-spacing:32.418000px;}
.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;}
}
.ws5_c00131{word-spacing:-56.328000px;}
.ws2_c00131{word-spacing:-34.704000px;}
.ws1_c00131{word-spacing:-23.136000px;}
.ws4_c00131{word-spacing:-21.750000px;}
.ws3_c00131{word-spacing:-20.250000px;}
.ws0_c00131{word-spacing:-20.244000px;}
.ws7_c00131{word-spacing:-7.176000px;}
.ws8_c00131{word-spacing:0.000000px;}
.ws6_c00131{word-spacing:14.112000px;}
._26_c00131{margin-left:-32.976000px;}
._2_c00131{margin-left:-24.192000px;}
._2e_c00131{margin-left:-22.320000px;}
._0_c00131{margin-left:-16.416000px;}
._2c_c00131{margin-left:-14.304000px;}
._34_c00131{margin-left:-12.348000px;}
._3_c00131{margin-left:-11.172000px;}
._2b_c00131{margin-left:-9.156000px;}
._33_c00131{margin-left:-7.632000px;}
._19_c00131{margin-left:-6.432000px;}
._1a_c00131{margin-left:-4.416000px;}
._e_c00131{margin-left:-3.288000px;}
._2a_c00131{margin-left:-2.256000px;}
._8_c00131{margin-left:-1.248000px;}
._d_c00131{width:1.056000px;}
._5_c00131{width:2.496000px;}
._4_c00131{width:3.648000px;}
._6_c00131{width:4.800000px;}
._a_c00131{width:6.048000px;}
._20_c00131{width:7.224000px;}
._12_c00131{width:8.448000px;}
._1_c00131{width:10.440000px;}
._23_c00131{width:11.844000px;}
._13_c00131{width:13.152000px;}
._11_c00131{width:14.400000px;}
._14_c00131{width:15.456000px;}
._24_c00131{width:17.460000px;}
._2d_c00131{width:19.296000px;}
._16_c00131{width:21.792000px;}
._35_c00131{width:23.325000px;}
._29_c00131{width:24.768000px;}
._28_c00131{width:26.136000px;}
._7_c00131{width:28.416000px;}
._18_c00131{width:30.048000px;}
._15_c00131{width:31.296000px;}
._f_c00131{width:33.120000px;}
._c_c00131{width:34.656000px;}
._b_c00131{width:36.696000px;}
._10_c00131{width:38.976000px;}
._9_c00131{width:40.704000px;}
._39_c00131{width:41.784000px;}
._17_c00131{width:42.816000px;}
._21_c00131{width:45.024000px;}
._27_c00131{width:47.136000px;}
._1e_c00131{width:49.536000px;}
._1b_c00131{width:51.936000px;}
._1f_c00131{width:53.664000px;}
._1c_c00131{width:55.680000px;}
._38_c00131{width:58.008000px;}
._37_c00131{width:60.384000px;}
._1d_c00131{width:66.624000px;}
._30_c00131{width:100.404000px;}
._31_c00131{width:105.384000px;}
._32_c00131{width:122.592000px;}
._25_c00131{width:172.416000px;}
._22_c00131{width:268.272000px;}
._2f_c00131{width:316.224000px;}
._36_c00131{width:669.036000px;}
.fc2_c00131{color:transparent;}
.fc1_c00131{color:rgb(128,128,128);}
.fc0_c00131{color:rgb(0,0,0);}
.fs8_c00131{font-size:48.000000px;}
.fs4_c00131{font-size:51.000000px;}
.fs6_c00131{font-size:72.000000px;}
.fs1_c00131{font-size:84.000000px;}
.fs3_c00131{font-size:93.000000px;}
.fs0_c00131{font-size:96.000000px;}
.fs7_c00131{font-size:102.000000px;}
.fs2_c00131{font-size:144.000000px;}
.fs5_c00131{font-size:408.000000px;}
.y0_c00131{bottom:0.000000px;}
.y28_c00131{bottom:3.105000px;}
.y27_c00131{bottom:7.228357px;}
.y26_c00131{bottom:101.280000px;}
.y25_c00131{bottom:169.380000px;}
.y24_c00131{bottom:203.130000px;}
.y23_c00131{bottom:237.630000px;}
.y1a_c00131{bottom:266.580000px;}
.y22_c00131{bottom:272.130000px;}
.y21_c00131{bottom:306.180000px;}
.y20_c00131{bottom:340.530000px;}
.y1f_c00131{bottom:373.980000px;}
.y19_c00131{bottom:389.130000px;}
.y1e_c00131{bottom:408.330000px;}
.y18_c00131{bottom:419.280000px;}
.y1d_c00131{bottom:440.880000px;}
.y17_c00131{bottom:448.980000px;}
.y1b_c00131{bottom:456.030000px;}
.y1c_c00131{bottom:474.630000px;}
.y16_c00131{bottom:479.580000px;}
.y15_c00131{bottom:508.680000px;}
.y14_c00131{bottom:583.530000px;}
.y13_c00131{bottom:633.930000px;}
.y12_c00131{bottom:683.430000px;}
.y1_c00131{bottom:718.230000px;}
.y11_c00131{bottom:735.780000px;}
.y10_c00131{bottom:814.380000px;}
.yf_c00131{bottom:847.830000px;}
.ye_c00131{bottom:881.880000px;}
.yd_c00131{bottom:915.330000px;}
.yc_c00131{bottom:948.330000px;}
.yb_c00131{bottom:981.180000px;}
.ya_c00131{bottom:1014.180000px;}
.y9_c00131{bottom:1047.330000px;}
.y8_c00131{bottom:1081.380000px;}
.y7_c00131{bottom:1112.730000px;}
.y6_c00131{bottom:1147.530000px;}
.y5_c00131{bottom:1180.680000px;}
.y4_c00131{bottom:1213.980000px;}
.y3_c00131{bottom:1246.680000px;}
.y2_c00131{bottom:1280.580000px;}
.h9_c00131{height:13.200074px;}
.ha_c00131{height:43.804688px;}
.h6_c00131{height:53.448000px;}
.h5_c00131{height:97.464000px;}
.h4_c00131{height:98.314453px;}
.h2_c00131{height:121.546875px;}
.h8_c00131{height:129.143555px;}
.h3_c00131{height:182.320312px;}
.h7_c00131{height:516.574219px;}
.h0_c00131{height:1382.700000px;}
.h1_c00131{height:1383.000000px;}
.w2_c00131{width:104.875500px;}
.w0_c00131{width:863.175000px;}
.w1_c00131{width:863.250000px;}
.x0_c00131{left:0.000000px;}
.xe_c00131{left:45.000000px;}
.x10_c00131{left:46.650000px;}
.xd_c00131{left:48.900000px;}
.xf_c00131{left:50.400000px;}
.x1_c00131{left:99.150000px;}
.x11_c00131{left:114.450000px;}
.xc_c00131{left:119.100000px;}
.x6_c00131{left:154.650000px;}
.x8_c00131{left:176.250000px;}
.x15_c00131{left:266.400000px;}
.x3_c00131{left:268.050000px;}
.x7_c00131{left:269.100000px;}
.x4_c00131{left:270.300000px;}
.x5_c00131{left:271.350000px;}
.x2_c00131{left:272.400000px;}
.x13_c00131{left:323.100000px;}
.x9_c00131{left:346.950000px;}
.xa_c00131{left:383.100000px;}
.x12_c00131{left:417.900000px;}
.xb_c00131{left:464.700000px;}
.x14_c00131{left:521.400000px;}
.x16_c00131{left:778.950000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls5_c00131{letter-spacing:-37.333333pt;}
.ls3_c00131{letter-spacing:-2.666667pt;}
.ls2_c00131{letter-spacing:0.000000pt;}
.ls6_c00131{letter-spacing:2.666667pt;}
.ls0_c00131{letter-spacing:3.957333pt;}
.ls4_c00131{letter-spacing:8.000000pt;}
.ls1_c00131{letter-spacing:28.816000pt;}
.ws5_c00131{word-spacing:-50.069333pt;}
.ws2_c00131{word-spacing:-30.848000pt;}
.ws1_c00131{word-spacing:-20.565333pt;}
.ws4_c00131{word-spacing:-19.333333pt;}
.ws3_c00131{word-spacing:-18.000000pt;}
.ws0_c00131{word-spacing:-17.994667pt;}
.ws7_c00131{word-spacing:-6.378667pt;}
.ws8_c00131{word-spacing:0.000000pt;}
.ws6_c00131{word-spacing:12.544000pt;}
._26_c00131{margin-left:-29.312000pt;}
._2_c00131{margin-left:-21.504000pt;}
._2e_c00131{margin-left:-19.840000pt;}
._0_c00131{margin-left:-14.592000pt;}
._2c_c00131{margin-left:-12.714667pt;}
._34_c00131{margin-left:-10.976000pt;}
._3_c00131{margin-left:-9.930667pt;}
._2b_c00131{margin-left:-8.138667pt;}
._33_c00131{margin-left:-6.784000pt;}
._19_c00131{margin-left:-5.717333pt;}
._1a_c00131{margin-left:-3.925333pt;}
._e_c00131{margin-left:-2.922667pt;}
._2a_c00131{margin-left:-2.005333pt;}
._8_c00131{margin-left:-1.109333pt;}
._d_c00131{width:0.938667pt;}
._5_c00131{width:2.218667pt;}
._4_c00131{width:3.242667pt;}
._6_c00131{width:4.266667pt;}
._a_c00131{width:5.376000pt;}
._20_c00131{width:6.421333pt;}
._12_c00131{width:7.509333pt;}
._1_c00131{width:9.280000pt;}
._23_c00131{width:10.528000pt;}
._13_c00131{width:11.690667pt;}
._11_c00131{width:12.800000pt;}
._14_c00131{width:13.738667pt;}
._24_c00131{width:15.520000pt;}
._2d_c00131{width:17.152000pt;}
._16_c00131{width:19.370667pt;}
._35_c00131{width:20.733333pt;}
._29_c00131{width:22.016000pt;}
._28_c00131{width:23.232000pt;}
._7_c00131{width:25.258667pt;}
._18_c00131{width:26.709333pt;}
._15_c00131{width:27.818667pt;}
._f_c00131{width:29.440000pt;}
._c_c00131{width:30.805333pt;}
._b_c00131{width:32.618667pt;}
._10_c00131{width:34.645333pt;}
._9_c00131{width:36.181333pt;}
._39_c00131{width:37.141333pt;}
._17_c00131{width:38.058667pt;}
._21_c00131{width:40.021333pt;}
._27_c00131{width:41.898667pt;}
._1e_c00131{width:44.032000pt;}
._1b_c00131{width:46.165333pt;}
._1f_c00131{width:47.701333pt;}
._1c_c00131{width:49.493333pt;}
._38_c00131{width:51.562667pt;}
._37_c00131{width:53.674667pt;}
._1d_c00131{width:59.221333pt;}
._30_c00131{width:89.248000pt;}
._31_c00131{width:93.674667pt;}
._32_c00131{width:108.970667pt;}
._25_c00131{width:153.258667pt;}
._22_c00131{width:238.464000pt;}
._2f_c00131{width:281.088000pt;}
._36_c00131{width:594.698667pt;}
.fs8_c00131{font-size:42.666667pt;}
.fs4_c00131{font-size:45.333333pt;}
.fs6_c00131{font-size:64.000000pt;}
.fs1_c00131{font-size:74.666667pt;}
.fs3_c00131{font-size:82.666667pt;}
.fs0_c00131{font-size:85.333333pt;}
.fs7_c00131{font-size:90.666667pt;}
.fs2_c00131{font-size:128.000000pt;}
.fs5_c00131{font-size:362.666667pt;}
.y0_c00131{bottom:0.000000pt;}
.y28_c00131{bottom:2.760000pt;}
.y27_c00131{bottom:6.425206pt;}
.y26_c00131{bottom:90.026667pt;}
.y25_c00131{bottom:150.560000pt;}
.y24_c00131{bottom:180.560000pt;}
.y23_c00131{bottom:211.226667pt;}
.y1a_c00131{bottom:236.960000pt;}
.y22_c00131{bottom:241.893333pt;}
.y21_c00131{bottom:272.160000pt;}
.y20_c00131{bottom:302.693333pt;}
.y1f_c00131{bottom:332.426667pt;}
.y19_c00131{bottom:345.893333pt;}
.y1e_c00131{bottom:362.960000pt;}
.y18_c00131{bottom:372.693333pt;}
.y1d_c00131{bottom:391.893333pt;}
.y17_c00131{bottom:399.093333pt;}
.y1b_c00131{bottom:405.360000pt;}
.y1c_c00131{bottom:421.893333pt;}
.y16_c00131{bottom:426.293333pt;}
.y15_c00131{bottom:452.160000pt;}
.y14_c00131{bottom:518.693333pt;}
.y13_c00131{bottom:563.493333pt;}
.y12_c00131{bottom:607.493333pt;}
.y1_c00131{bottom:638.426667pt;}
.y11_c00131{bottom:654.026667pt;}
.y10_c00131{bottom:723.893333pt;}
.yf_c00131{bottom:753.626667pt;}
.ye_c00131{bottom:783.893333pt;}
.yd_c00131{bottom:813.626667pt;}
.yc_c00131{bottom:842.960000pt;}
.yb_c00131{bottom:872.160000pt;}
.ya_c00131{bottom:901.493333pt;}
.y9_c00131{bottom:930.960000pt;}
.y8_c00131{bottom:961.226667pt;}
.y7_c00131{bottom:989.093333pt;}
.y6_c00131{bottom:1020.026667pt;}
.y5_c00131{bottom:1049.493333pt;}
.y4_c00131{bottom:1079.093333pt;}
.y3_c00131{bottom:1108.160000pt;}
.y2_c00131{bottom:1138.293333pt;}
.h9_c00131{height:11.733399pt;}
.ha_c00131{height:38.937500pt;}
.h6_c00131{height:47.509333pt;}
.h5_c00131{height:86.634667pt;}
.h4_c00131{height:87.390625pt;}
.h2_c00131{height:108.041667pt;}
.h8_c00131{height:114.794271pt;}
.h3_c00131{height:162.062500pt;}
.h7_c00131{height:459.177083pt;}
.h0_c00131{height:1229.066667pt;}
.h1_c00131{height:1229.333333pt;}
.w2_c00131{width:93.222667pt;}
.w0_c00131{width:767.266667pt;}
.w1_c00131{width:767.333333pt;}
.x0_c00131{left:0.000000pt;}
.xe_c00131{left:40.000000pt;}
.x10_c00131{left:41.466667pt;}
.xd_c00131{left:43.466667pt;}
.xf_c00131{left:44.800000pt;}
.x1_c00131{left:88.133333pt;}
.x11_c00131{left:101.733333pt;}
.xc_c00131{left:105.866667pt;}
.x6_c00131{left:137.466667pt;}
.x8_c00131{left:156.666667pt;}
.x15_c00131{left:236.800000pt;}
.x3_c00131{left:238.266667pt;}
.x7_c00131{left:239.200000pt;}
.x4_c00131{left:240.266667pt;}
.x5_c00131{left:241.200000pt;}
.x2_c00131{left:242.133333pt;}
.x13_c00131{left:287.200000pt;}
.x9_c00131{left:308.400000pt;}
.xa_c00131{left:340.533333pt;}
.x12_c00131{left:371.466667pt;}
.xb_c00131{left:413.066667pt;}
.x14_c00131{left:463.466667pt;}
.x16_c00131{left:692.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_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_f629babe7b9df0540dce4a5d.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_d5c59736af85e093b43912f0.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_10ba1a91eef3fbb15875712d.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_41089946a4ac9356353ab580.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00132;src:url('chunks/assets/font_94681102259c25ce781678e0.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00132;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00132{font-family:ff7_c00132;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls1_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:7.155000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00132{word-spacing:-63.504000px;}
.ws1_c00132{word-spacing:-51.000000px;}
.ws0_c00132{word-spacing:-44.016000px;}
.ws3_c00132{word-spacing:-16.686000px;}
.ws4_c00132{word-spacing:0.000000px;}
._9_c00132{margin-left:-26.400000px;}
._3a_c00132{margin-left:-21.192000px;}
._35_c00132{margin-left:-17.544000px;}
._3c_c00132{margin-left:-15.948000px;}
._36_c00132{margin-left:-14.370000px;}
._2b_c00132{margin-left:-10.680000px;}
._31_c00132{margin-left:-7.488000px;}
._1d_c00132{margin-left:-5.736000px;}
._13_c00132{margin-left:-3.864000px;}
._12_c00132{margin-left:-2.376000px;}
._e_c00132{margin-left:-1.152000px;}
._b_c00132{width:1.056000px;}
._6_c00132{width:2.208000px;}
._5_c00132{width:3.744000px;}
._4_c00132{width:5.184000px;}
._3_c00132{width:6.336000px;}
._2e_c00132{width:7.344000px;}
._2_c00132{width:8.352000px;}
._22_c00132{width:9.408000px;}
._14_c00132{width:10.944000px;}
._15_c00132{width:12.672000px;}
._16_c00132{width:14.496000px;}
._1b_c00132{width:15.672000px;}
._a_c00132{width:17.088000px;}
._28_c00132{width:18.144000px;}
._8_c00132{width:19.584000px;}
._17_c00132{width:21.216000px;}
._33_c00132{width:24.015000px;}
._19_c00132{width:25.488000px;}
._27_c00132{width:27.888000px;}
._2f_c00132{width:29.736000px;}
._7_c00132{width:30.816000px;}
._18_c00132{width:32.544000px;}
._1a_c00132{width:33.840000px;}
._1c_c00132{width:35.808000px;}
._0_c00132{width:37.296000px;}
._23_c00132{width:38.616000px;}
._37_c00132{width:39.624000px;}
._20_c00132{width:40.992000px;}
._2d_c00132{width:42.336000px;}
._1e_c00132{width:43.656000px;}
._d_c00132{width:45.216000px;}
._f_c00132{width:46.368000px;}
._1f_c00132{width:48.096000px;}
._26_c00132{width:49.728000px;}
._24_c00132{width:51.696000px;}
._29_c00132{width:53.808000px;}
._21_c00132{width:56.640000px;}
._30_c00132{width:58.704000px;}
._3b_c00132{width:59.985000px;}
._2c_c00132{width:64.344000px;}
._25_c00132{width:68.256000px;}
._10_c00132{width:72.576000px;}
._38_c00132{width:77.052000px;}
._11_c00132{width:80.160000px;}
._c_c00132{width:82.176000px;}
._39_c00132{width:93.717000px;}
._34_c00132{width:147.795000px;}
._1_c00132{width:183.264000px;}
._2a_c00132{width:255.360000px;}
._32_c00132{width:838.800000px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(128,128,128);}
.fc0_c00132{color:rgb(0,0,0);}
.fs4_c00132{font-size:48.000000px;}
.fs3_c00132{font-size:81.000000px;}
.fs0_c00132{font-size:84.000000px;}
.fs1_c00132{font-size:96.000000px;}
.fs2_c00132{font-size:102.000000px;}
.y0_c00132{bottom:0.000000px;}
.y3a_c00132{bottom:3.105000px;}
.y39_c00132{bottom:7.228357px;}
.y24_c00132{bottom:81.630000px;}
.y23_c00132{bottom:115.380000px;}
.y22_c00132{bottom:149.880000px;}
.y21_c00132{bottom:184.380000px;}
.y20_c00132{bottom:218.430000px;}
.y1f_c00132{bottom:252.480000px;}
.y1e_c00132{bottom:286.230000px;}
.y1d_c00132{bottom:320.280000px;}
.y1c_c00132{bottom:354.030000px;}
.y1b_c00132{bottom:388.080000px;}
.y1a_c00132{bottom:421.680000px;}
.y19_c00132{bottom:455.580000px;}
.y18_c00132{bottom:489.480000px;}
.y17_c00132{bottom:523.080000px;}
.y16_c00132{bottom:556.530000px;}
.y15_c00132{bottom:589.980000px;}
.y14_c00132{bottom:623.430000px;}
.y13_c00132{bottom:657.180000px;}
.y12_c00132{bottom:690.630000px;}
.y38_c00132{bottom:702.030000px;}
.y11_c00132{bottom:724.230000px;}
.y37_c00132{bottom:731.730000px;}
.y10_c00132{bottom:757.980000px;}
.y36_c00132{bottom:760.380000px;}
.y35_c00132{bottom:790.830000px;}
.yf_c00132{bottom:791.430000px;}
.y34_c00132{bottom:820.830000px;}
.ye_c00132{bottom:824.880000px;}
.y33_c00132{bottom:849.780000px;}
.yd_c00132{bottom:858.030000px;}
.y32_c00132{bottom:879.930000px;}
.yc_c00132{bottom:891.030000px;}
.y31_c00132{bottom:908.880000px;}
.yb_c00132{bottom:924.780000px;}
.y30_c00132{bottom:938.880000px;}
.ya_c00132{bottom:957.930000px;}
.y2f_c00132{bottom:967.380000px;}
.y9_c00132{bottom:991.680000px;}
.y2e_c00132{bottom:997.680000px;}
.y8_c00132{bottom:1025.280000px;}
.y2d_c00132{bottom:1027.080000px;}
.y2c_c00132{bottom:1055.130000px;}
.y7_c00132{bottom:1058.730000px;}
.y2b_c00132{bottom:1086.030000px;}
.y6_c00132{bottom:1091.880000px;}
.y2a_c00132{bottom:1116.180000px;}
.y5_c00132{bottom:1125.330000px;}
.y29_c00132{bottom:1144.830000px;}
.y4_c00132{bottom:1158.630000px;}
.y28_c00132{bottom:1174.230000px;}
.y3_c00132{bottom:1191.780000px;}
.y27_c00132{bottom:1203.930000px;}
.y2_c00132{bottom:1225.080000px;}
.y26_c00132{bottom:1232.880000px;}
.y1_c00132{bottom:1257.930000px;}
.y25_c00132{bottom:1262.280000px;}
.h5_c00132{height:13.200074px;}
.h6_c00132{height:43.804688px;}
.h3_c00132{height:87.804000px;}
.h2_c00132{height:121.546875px;}
.h4_c00132{height:129.143555px;}
.h0_c00132{height:1367.850000px;}
.h1_c00132{height:1368.000000px;}
.w1_c00132{width:104.875500px;}
.w0_c00132{width:867.750000px;}
.x0_c00132{left:0.000000px;}
.x9_c00132{left:40.800000px;}
.x8_c00132{left:41.850000px;}
.x7_c00132{left:42.900000px;}
.x6_c00132{left:43.950000px;}
.x5_c00132{left:45.000000px;}
.x4_c00132{left:46.650000px;}
.x3_c00132{left:48.300000px;}
.x2_c00132{left:49.950000px;}
.x1_c00132{left:102.900000px;}
.xa_c00132{left:339.900000px;}
.x11_c00132{left:385.689240px;}
.xf_c00132{left:628.800000px;}
.x10_c00132{left:629.850000px;}
.xe_c00132{left:630.900000px;}
.xd_c00132{left:632.100000px;}
.xc_c00132{left:635.250000px;}
.xb_c00132{left:659.250000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls1_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:6.360000pt;}
.ws2_c00132{word-spacing:-56.448000pt;}
.ws1_c00132{word-spacing:-45.333333pt;}
.ws0_c00132{word-spacing:-39.125333pt;}
.ws3_c00132{word-spacing:-14.832000pt;}
.ws4_c00132{word-spacing:0.000000pt;}
._9_c00132{margin-left:-23.466667pt;}
._3a_c00132{margin-left:-18.837333pt;}
._35_c00132{margin-left:-15.594667pt;}
._3c_c00132{margin-left:-14.176000pt;}
._36_c00132{margin-left:-12.773333pt;}
._2b_c00132{margin-left:-9.493333pt;}
._31_c00132{margin-left:-6.656000pt;}
._1d_c00132{margin-left:-5.098667pt;}
._13_c00132{margin-left:-3.434667pt;}
._12_c00132{margin-left:-2.112000pt;}
._e_c00132{margin-left:-1.024000pt;}
._b_c00132{width:0.938667pt;}
._6_c00132{width:1.962667pt;}
._5_c00132{width:3.328000pt;}
._4_c00132{width:4.608000pt;}
._3_c00132{width:5.632000pt;}
._2e_c00132{width:6.528000pt;}
._2_c00132{width:7.424000pt;}
._22_c00132{width:8.362667pt;}
._14_c00132{width:9.728000pt;}
._15_c00132{width:11.264000pt;}
._16_c00132{width:12.885333pt;}
._1b_c00132{width:13.930667pt;}
._a_c00132{width:15.189333pt;}
._28_c00132{width:16.128000pt;}
._8_c00132{width:17.408000pt;}
._17_c00132{width:18.858667pt;}
._33_c00132{width:21.346667pt;}
._19_c00132{width:22.656000pt;}
._27_c00132{width:24.789333pt;}
._2f_c00132{width:26.432000pt;}
._7_c00132{width:27.392000pt;}
._18_c00132{width:28.928000pt;}
._1a_c00132{width:30.080000pt;}
._1c_c00132{width:31.829333pt;}
._0_c00132{width:33.152000pt;}
._23_c00132{width:34.325333pt;}
._37_c00132{width:35.221333pt;}
._20_c00132{width:36.437333pt;}
._2d_c00132{width:37.632000pt;}
._1e_c00132{width:38.805333pt;}
._d_c00132{width:40.192000pt;}
._f_c00132{width:41.216000pt;}
._1f_c00132{width:42.752000pt;}
._26_c00132{width:44.202667pt;}
._24_c00132{width:45.952000pt;}
._29_c00132{width:47.829333pt;}
._21_c00132{width:50.346667pt;}
._30_c00132{width:52.181333pt;}
._3b_c00132{width:53.320000pt;}
._2c_c00132{width:57.194667pt;}
._25_c00132{width:60.672000pt;}
._10_c00132{width:64.512000pt;}
._38_c00132{width:68.490667pt;}
._11_c00132{width:71.253333pt;}
._c_c00132{width:73.045333pt;}
._39_c00132{width:83.304000pt;}
._34_c00132{width:131.373333pt;}
._1_c00132{width:162.901333pt;}
._2a_c00132{width:226.986667pt;}
._32_c00132{width:745.600000pt;}
.fs4_c00132{font-size:42.666667pt;}
.fs3_c00132{font-size:72.000000pt;}
.fs0_c00132{font-size:74.666667pt;}
.fs1_c00132{font-size:85.333333pt;}
.fs2_c00132{font-size:90.666667pt;}
.y0_c00132{bottom:0.000000pt;}
.y3a_c00132{bottom:2.760000pt;}
.y39_c00132{bottom:6.425206pt;}
.y24_c00132{bottom:72.560000pt;}
.y23_c00132{bottom:102.560000pt;}
.y22_c00132{bottom:133.226667pt;}
.y21_c00132{bottom:163.893333pt;}
.y20_c00132{bottom:194.160000pt;}
.y1f_c00132{bottom:224.426667pt;}
.y1e_c00132{bottom:254.426667pt;}
.y1d_c00132{bottom:284.693333pt;}
.y1c_c00132{bottom:314.693333pt;}
.y1b_c00132{bottom:344.960000pt;}
.y1a_c00132{bottom:374.826667pt;}
.y19_c00132{bottom:404.960000pt;}
.y18_c00132{bottom:435.093333pt;}
.y17_c00132{bottom:464.960000pt;}
.y16_c00132{bottom:494.693333pt;}
.y15_c00132{bottom:524.426667pt;}
.y14_c00132{bottom:554.160000pt;}
.y13_c00132{bottom:584.160000pt;}
.y12_c00132{bottom:613.893333pt;}
.y38_c00132{bottom:624.026667pt;}
.y11_c00132{bottom:643.760000pt;}
.y37_c00132{bottom:650.426667pt;}
.y10_c00132{bottom:673.760000pt;}
.y36_c00132{bottom:675.893333pt;}
.y35_c00132{bottom:702.960000pt;}
.yf_c00132{bottom:703.493333pt;}
.y34_c00132{bottom:729.626667pt;}
.ye_c00132{bottom:733.226667pt;}
.y33_c00132{bottom:755.360000pt;}
.yd_c00132{bottom:762.693333pt;}
.y32_c00132{bottom:782.160000pt;}
.yc_c00132{bottom:792.026667pt;}
.y31_c00132{bottom:807.893333pt;}
.yb_c00132{bottom:822.026667pt;}
.y30_c00132{bottom:834.560000pt;}
.ya_c00132{bottom:851.493333pt;}
.y2f_c00132{bottom:859.893333pt;}
.y9_c00132{bottom:881.493333pt;}
.y2e_c00132{bottom:886.826667pt;}
.y8_c00132{bottom:911.360000pt;}
.y2d_c00132{bottom:912.960000pt;}
.y2c_c00132{bottom:937.893333pt;}
.y7_c00132{bottom:941.093333pt;}
.y2b_c00132{bottom:965.360000pt;}
.y6_c00132{bottom:970.560000pt;}
.y2a_c00132{bottom:992.160000pt;}
.y5_c00132{bottom:1000.293333pt;}
.y29_c00132{bottom:1017.626667pt;}
.y4_c00132{bottom:1029.893333pt;}
.y28_c00132{bottom:1043.760000pt;}
.y3_c00132{bottom:1059.360000pt;}
.y27_c00132{bottom:1070.160000pt;}
.y2_c00132{bottom:1088.960000pt;}
.y26_c00132{bottom:1095.893333pt;}
.y1_c00132{bottom:1118.160000pt;}
.y25_c00132{bottom:1122.026667pt;}
.h5_c00132{height:11.733399pt;}
.h6_c00132{height:38.937500pt;}
.h3_c00132{height:78.048000pt;}
.h2_c00132{height:108.041667pt;}
.h4_c00132{height:114.794271pt;}
.h0_c00132{height:1215.866667pt;}
.h1_c00132{height:1216.000000pt;}
.w1_c00132{width:93.222667pt;}
.w0_c00132{width:771.333333pt;}
.x0_c00132{left:0.000000pt;}
.x9_c00132{left:36.266667pt;}
.x8_c00132{left:37.200000pt;}
.x7_c00132{left:38.133333pt;}
.x6_c00132{left:39.066667pt;}
.x5_c00132{left:40.000000pt;}
.x4_c00132{left:41.466667pt;}
.x3_c00132{left:42.933333pt;}
.x2_c00132{left:44.400000pt;}
.x1_c00132{left:91.466667pt;}
.xa_c00132{left:302.133333pt;}
.x11_c00132{left:342.834880pt;}
.xf_c00132{left:558.933333pt;}
.x10_c00132{left:559.866667pt;}
.xe_c00132{left:560.800000pt;}
.xd_c00132{left:561.866667pt;}
.xc_c00132{left:564.666667pt;}
.xb_c00132{left:586.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_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_8a1acea1fdb127d82e2447ff.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_c85d0804ebbb5419c11a2c9c.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_2e31b20f18adce34cd64beea.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_2a7ca01378384d9450e20a6f.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00133;src:url('chunks/assets/font_ea1d2b17f4e073f520690563.woff2')format("woff");}.ff5_c00133{font-family:ff5_c00133;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00133;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00133{font-family:ff6_c00133;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00133{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls1_c00133{letter-spacing:-3.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00133{word-spacing:-24.582000px;}
.ws1_c00133{word-spacing:-20.244000px;}
.ws0_c00133{word-spacing:-16.686000px;}
.ws3_c00133{word-spacing:0.000000px;}
._35_c00133{margin-left:-34.737000px;}
._0_c00133{margin-left:-30.048000px;}
._3f_c00133{margin-left:-23.742000px;}
._40_c00133{margin-left:-18.078000px;}
._41_c00133{margin-left:-14.799000px;}
._22_c00133{margin-left:-13.782000px;}
._28_c00133{margin-left:-12.705000px;}
._10_c00133{margin-left:-10.425000px;}
._3d_c00133{margin-left:-9.282000px;}
._3b_c00133{margin-left:-8.211000px;}
._c_c00133{margin-left:-6.318000px;}
._2_c00133{margin-left:-4.374000px;}
._6_c00133{margin-left:-2.835000px;}
._5_c00133{margin-left:-1.701000px;}
._7_c00133{width:1.539000px;}
._8_c00133{width:3.078000px;}
._25_c00133{width:4.083000px;}
._1_c00133{width:5.088000px;}
._1d_c00133{width:6.171000px;}
._4_c00133{width:7.371000px;}
._27_c00133{width:8.676000px;}
._3_c00133{width:9.720000px;}
._33_c00133{width:10.830000px;}
._12_c00133{width:11.856000px;}
._20_c00133{width:13.518000px;}
._11_c00133{width:14.886000px;}
._17_c00133{width:16.002000px;}
._19_c00133{width:17.166000px;}
._f_c00133{width:19.359000px;}
._1e_c00133{width:21.327000px;}
._3c_c00133{width:22.563000px;}
._2e_c00133{width:24.399000px;}
._16_c00133{width:26.016000px;}
._26_c00133{width:27.246000px;}
._14_c00133{width:28.425000px;}
._15_c00133{width:29.625000px;}
._9_c00133{width:30.780000px;}
._18_c00133{width:32.052000px;}
._3a_c00133{width:33.258000px;}
._1a_c00133{width:34.725000px;}
._2b_c00133{width:35.853000px;}
._23_c00133{width:37.599000px;}
._29_c00133{width:38.742000px;}
._13_c00133{width:40.194000px;}
._a_c00133{width:41.877000px;}
._2a_c00133{width:43.446000px;}
._30_c00133{width:45.186000px;}
._1f_c00133{width:46.722000px;}
._32_c00133{width:47.913000px;}
._24_c00133{width:49.116000px;}
._e_c00133{width:52.002000px;}
._21_c00133{width:53.436000px;}
._2d_c00133{width:54.534000px;}
._39_c00133{width:55.953000px;}
._d_c00133{width:57.996000px;}
._34_c00133{width:60.129000px;}
._b_c00133{width:62.694000px;}
._2c_c00133{width:64.488000px;}
._1c_c00133{width:66.408000px;}
._31_c00133{width:69.519000px;}
._1b_c00133{width:85.839000px;}
._2f_c00133{width:123.831000px;}
._38_c00133{width:185.454000px;}
._37_c00133{width:208.962000px;}
._3e_c00133{width:229.731000px;}
._36_c00133{width:340.599000px;}
.fc2_c00133{color:transparent;}
.fc1_c00133{color:rgb(128,128,128);}
.fc0_c00133{color:rgb(0,0,0);}
.fs1_c00133{font-size:36.000000px;}
.fs7_c00133{font-size:48.000000px;}
.fs5_c00133{font-size:69.000000px;}
.fs2_c00133{font-size:81.000000px;}
.fs4_c00133{font-size:84.000000px;}
.fs0_c00133{font-size:96.000000px;}
.fs3_c00133{font-size:102.000000px;}
.fs6_c00133{font-size:114.000000px;}
.y0_c00133{bottom:0.000000px;}
.y35_c00133{bottom:3.105000px;}
.y34_c00133{bottom:7.228357px;}
.y33_c00133{bottom:85.080000px;}
.y32_c00133{bottom:114.030000px;}
.ye_c00133{bottom:126.630000px;}
.y31_c00133{bottom:149.880000px;}
.yd_c00133{bottom:156.930000px;}
.y30_c00133{bottom:183.930000px;}
.yc_c00133{bottom:186.030000px;}
.yb_c00133{bottom:216.780000px;}
.y2f_c00133{bottom:218.430000px;}
.ya_c00133{bottom:246.480000px;}
.y2e_c00133{bottom:252.780000px;}
.y9_c00133{bottom:276.180000px;}
.y2d_c00133{bottom:287.580000px;}
.y8_c00133{bottom:306.480000px;}
.y2c_c00133{bottom:321.330000px;}
.y7_c00133{bottom:335.580000px;}
.y2b_c00133{bottom:356.130000px;}
.y6_c00133{bottom:365.580000px;}
.y1_c00133{bottom:381.480000px;}
.y2a_c00133{bottom:390.780000px;}
.y5_c00133{bottom:395.580000px;}
.y29_c00133{bottom:422.880000px;}
.y4_c00133{bottom:425.580000px;}
.y3_c00133{bottom:454.230000px;}
.y28_c00133{bottom:457.980000px;}
.y2_c00133{bottom:484.680000px;}
.y27_c00133{bottom:492.780000px;}
.y26_c00133{bottom:526.830000px;}
.y25_c00133{bottom:560.280000px;}
.y24_c00133{bottom:594.630000px;}
.y23_c00133{bottom:627.780000px;}
.y22_c00133{bottom:661.530000px;}
.y21_c00133{bottom:695.280000px;}
.y20_c00133{bottom:729.330000px;}
.y1f_c00133{bottom:763.080000px;}
.y1e_c00133{bottom:796.530000px;}
.y1d_c00133{bottom:821.130000px;}
.y1c_c00133{bottom:830.280000px;}
.y1b_c00133{bottom:864.330000px;}
.y1a_c00133{bottom:898.080000px;}
.y19_c00133{bottom:931.530000px;}
.y18_c00133{bottom:964.530000px;}
.y17_c00133{bottom:997.980000px;}
.y16_c00133{bottom:1031.430000px;}
.y15_c00133{bottom:1065.180000px;}
.y14_c00133{bottom:1098.330000px;}
.y13_c00133{bottom:1131.630000px;}
.y12_c00133{bottom:1165.380000px;}
.y11_c00133{bottom:1198.830000px;}
.y10_c00133{bottom:1231.830000px;}
.yf_c00133{bottom:1264.980000px;}
.h8_c00133{height:13.200074px;}
.h9_c00133{height:43.804688px;}
.h6_c00133{height:45.580078px;}
.h5_c00133{height:87.361816px;}
.h3_c00133{height:87.804000px;}
.h2_c00133{height:121.546875px;}
.h4_c00133{height:129.143555px;}
.h7_c00133{height:144.336914px;}
.h0_c00133{height:1382.700000px;}
.h1_c00133{height:1383.000000px;}
.w2_c00133{width:104.875500px;}
.w0_c00133{width:863.175000px;}
.w1_c00133{width:863.250000px;}
.x0_c00133{left:0.000000px;}
.x5_c00133{left:53.250000px;}
.x4_c00133{left:55.950000px;}
.x2_c00133{left:57.150000px;}
.x3_c00133{left:58.350000px;}
.x1_c00133{left:128.250000px;}
.xe_c00133{left:273.600000px;}
.xc_c00133{left:276.750000px;}
.x9_c00133{left:277.800000px;}
.x8_c00133{left:279.000000px;}
.x6_c00133{left:280.050000px;}
.x7_c00133{left:281.100000px;}
.xd_c00133{left:333.450000px;}
.x10_c00133{left:383.401749px;}
.xa_c00133{left:761.700000px;}
.xb_c00133{left:765.450000px;}
.xf_c00133{left:810.900000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls1_c00133{letter-spacing:-2.666667pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws2_c00133{word-spacing:-21.850667pt;}
.ws1_c00133{word-spacing:-17.994667pt;}
.ws0_c00133{word-spacing:-14.832000pt;}
.ws3_c00133{word-spacing:0.000000pt;}
._35_c00133{margin-left:-30.877333pt;}
._0_c00133{margin-left:-26.709333pt;}
._3f_c00133{margin-left:-21.104000pt;}
._40_c00133{margin-left:-16.069333pt;}
._41_c00133{margin-left:-13.154667pt;}
._22_c00133{margin-left:-12.250667pt;}
._28_c00133{margin-left:-11.293333pt;}
._10_c00133{margin-left:-9.266667pt;}
._3d_c00133{margin-left:-8.250667pt;}
._3b_c00133{margin-left:-7.298667pt;}
._c_c00133{margin-left:-5.616000pt;}
._2_c00133{margin-left:-3.888000pt;}
._6_c00133{margin-left:-2.520000pt;}
._5_c00133{margin-left:-1.512000pt;}
._7_c00133{width:1.368000pt;}
._8_c00133{width:2.736000pt;}
._25_c00133{width:3.629333pt;}
._1_c00133{width:4.522667pt;}
._1d_c00133{width:5.485333pt;}
._4_c00133{width:6.552000pt;}
._27_c00133{width:7.712000pt;}
._3_c00133{width:8.640000pt;}
._33_c00133{width:9.626667pt;}
._12_c00133{width:10.538667pt;}
._20_c00133{width:12.016000pt;}
._11_c00133{width:13.232000pt;}
._17_c00133{width:14.224000pt;}
._19_c00133{width:15.258667pt;}
._f_c00133{width:17.208000pt;}
._1e_c00133{width:18.957333pt;}
._3c_c00133{width:20.056000pt;}
._2e_c00133{width:21.688000pt;}
._16_c00133{width:23.125333pt;}
._26_c00133{width:24.218667pt;}
._14_c00133{width:25.266667pt;}
._15_c00133{width:26.333333pt;}
._9_c00133{width:27.360000pt;}
._18_c00133{width:28.490667pt;}
._3a_c00133{width:29.562667pt;}
._1a_c00133{width:30.866667pt;}
._2b_c00133{width:31.869333pt;}
._23_c00133{width:33.421333pt;}
._29_c00133{width:34.437333pt;}
._13_c00133{width:35.728000pt;}
._a_c00133{width:37.224000pt;}
._2a_c00133{width:38.618667pt;}
._30_c00133{width:40.165333pt;}
._1f_c00133{width:41.530667pt;}
._32_c00133{width:42.589333pt;}
._24_c00133{width:43.658667pt;}
._e_c00133{width:46.224000pt;}
._21_c00133{width:47.498667pt;}
._2d_c00133{width:48.474667pt;}
._39_c00133{width:49.736000pt;}
._d_c00133{width:51.552000pt;}
._34_c00133{width:53.448000pt;}
._b_c00133{width:55.728000pt;}
._2c_c00133{width:57.322667pt;}
._1c_c00133{width:59.029333pt;}
._31_c00133{width:61.794667pt;}
._1b_c00133{width:76.301333pt;}
._2f_c00133{width:110.072000pt;}
._38_c00133{width:164.848000pt;}
._37_c00133{width:185.744000pt;}
._3e_c00133{width:204.205333pt;}
._36_c00133{width:302.754667pt;}
.fs1_c00133{font-size:32.000000pt;}
.fs7_c00133{font-size:42.666667pt;}
.fs5_c00133{font-size:61.333333pt;}
.fs2_c00133{font-size:72.000000pt;}
.fs4_c00133{font-size:74.666667pt;}
.fs0_c00133{font-size:85.333333pt;}
.fs3_c00133{font-size:90.666667pt;}
.fs6_c00133{font-size:101.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y35_c00133{bottom:2.760000pt;}
.y34_c00133{bottom:6.425206pt;}
.y33_c00133{bottom:75.626667pt;}
.y32_c00133{bottom:101.360000pt;}
.ye_c00133{bottom:112.560000pt;}
.y31_c00133{bottom:133.226667pt;}
.yd_c00133{bottom:139.493333pt;}
.y30_c00133{bottom:163.493333pt;}
.yc_c00133{bottom:165.360000pt;}
.yb_c00133{bottom:192.693333pt;}
.y2f_c00133{bottom:194.160000pt;}
.ya_c00133{bottom:219.093333pt;}
.y2e_c00133{bottom:224.693333pt;}
.y9_c00133{bottom:245.493333pt;}
.y2d_c00133{bottom:255.626667pt;}
.y8_c00133{bottom:272.426667pt;}
.y2c_c00133{bottom:285.626667pt;}
.y7_c00133{bottom:298.293333pt;}
.y2b_c00133{bottom:316.560000pt;}
.y6_c00133{bottom:324.960000pt;}
.y1_c00133{bottom:339.093333pt;}
.y2a_c00133{bottom:347.360000pt;}
.y5_c00133{bottom:351.626667pt;}
.y29_c00133{bottom:375.893333pt;}
.y4_c00133{bottom:378.293333pt;}
.y3_c00133{bottom:403.760000pt;}
.y28_c00133{bottom:407.093333pt;}
.y2_c00133{bottom:430.826667pt;}
.y27_c00133{bottom:438.026667pt;}
.y26_c00133{bottom:468.293333pt;}
.y25_c00133{bottom:498.026667pt;}
.y24_c00133{bottom:528.560000pt;}
.y23_c00133{bottom:558.026667pt;}
.y22_c00133{bottom:588.026667pt;}
.y21_c00133{bottom:618.026667pt;}
.y20_c00133{bottom:648.293333pt;}
.y1f_c00133{bottom:678.293333pt;}
.y1e_c00133{bottom:708.026667pt;}
.y1d_c00133{bottom:729.893333pt;}
.y1c_c00133{bottom:738.026667pt;}
.y1b_c00133{bottom:768.293333pt;}
.y1a_c00133{bottom:798.293333pt;}
.y19_c00133{bottom:828.026667pt;}
.y18_c00133{bottom:857.360000pt;}
.y17_c00133{bottom:887.093333pt;}
.y16_c00133{bottom:916.826667pt;}
.y15_c00133{bottom:946.826667pt;}
.y14_c00133{bottom:976.293333pt;}
.y13_c00133{bottom:1005.893333pt;}
.y12_c00133{bottom:1035.893333pt;}
.y11_c00133{bottom:1065.626667pt;}
.y10_c00133{bottom:1094.960000pt;}
.yf_c00133{bottom:1124.426667pt;}
.h8_c00133{height:11.733399pt;}
.h9_c00133{height:38.937500pt;}
.h6_c00133{height:40.515625pt;}
.h5_c00133{height:77.654948pt;}
.h3_c00133{height:78.048000pt;}
.h2_c00133{height:108.041667pt;}
.h4_c00133{height:114.794271pt;}
.h7_c00133{height:128.299479pt;}
.h0_c00133{height:1229.066667pt;}
.h1_c00133{height:1229.333333pt;}
.w2_c00133{width:93.222667pt;}
.w0_c00133{width:767.266667pt;}
.w1_c00133{width:767.333333pt;}
.x0_c00133{left:0.000000pt;}
.x5_c00133{left:47.333333pt;}
.x4_c00133{left:49.733333pt;}
.x2_c00133{left:50.800000pt;}
.x3_c00133{left:51.866667pt;}
.x1_c00133{left:114.000000pt;}
.xe_c00133{left:243.200000pt;}
.xc_c00133{left:246.000000pt;}
.x9_c00133{left:246.933333pt;}
.x8_c00133{left:248.000000pt;}
.x6_c00133{left:248.933333pt;}
.x7_c00133{left:249.866667pt;}
.xd_c00133{left:296.400000pt;}
.x10_c00133{left:340.801554pt;}
.xa_c00133{left:677.066667pt;}
.xb_c00133{left:680.400000pt;}
.xf_c00133{left:720.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_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_81f0ef50a0bf27918b0e292c.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_014b794777bc1d53f64d0e02.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_e19232b0cf10724ceb302bdf.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_a1170b6f729776ea38b2b1e0.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00134;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00134;src:url('chunks/assets/font_5909be44a01bdcb5ad608b47.woff2')format("woff");}.ff6_c00134{font-family:ff6_c00134;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00134;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00134{font-family:ff7_c00134;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls4_c00134{letter-spacing:0.000000px;}
.ls1_c00134{letter-spacing:5.004000px;}
.ls5_c00134{letter-spacing:6.000000px;}
.ls0_c00134{letter-spacing:7.200000px;}
.ls3_c00134{letter-spacing:9.600000px;}
.ls2_c00134{letter-spacing:10.464000px;}
.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;}
}
.ws4_c00134{word-spacing:-65.772000px;}
.ws0_c00134{word-spacing:-63.504000px;}
.ws1_c00134{word-spacing:-51.000000px;}
.ws2_c00134{word-spacing:-44.304000px;}
.ws6_c00134{word-spacing:-41.250000px;}
.ws3_c00134{word-spacing:-23.136000px;}
.ws5_c00134{word-spacing:-20.460000px;}
.ws7_c00134{word-spacing:0.000000px;}
._41_c00134{margin-left:-58.905000px;}
._4d_c00134{margin-left:-56.430000px;}
._4b_c00134{margin-left:-52.203000px;}
._4c_c00134{margin-left:-47.913000px;}
._43_c00134{margin-left:-44.001000px;}
._4a_c00134{margin-left:-42.885000px;}
._50_c00134{margin-left:-41.745000px;}
._42_c00134{margin-left:-40.425000px;}
._4e_c00134{margin-left:-39.423000px;}
._46_c00134{margin-left:-38.415000px;}
._44_c00134{margin-left:-36.300000px;}
._40_c00134{margin-left:-35.148000px;}
._12_c00134{margin-left:-33.696000px;}
._45_c00134{margin-left:-32.175000px;}
._49_c00134{margin-left:-31.020000px;}
._47_c00134{margin-left:-29.700000px;}
._3e_c00134{margin-left:-28.203000px;}
._33_c00134{margin-left:-26.496000px;}
._48_c00134{margin-left:-25.215000px;}
._2a_c00134{margin-left:-22.776000px;}
._3a_c00134{margin-left:-20.640000px;}
._2f_c00134{margin-left:-18.672000px;}
._38_c00134{margin-left:-17.664000px;}
._4f_c00134{margin-left:-16.005000px;}
._a_c00134{margin-left:-14.880000px;}
._30_c00134{margin-left:-13.680000px;}
._31_c00134{margin-left:-12.624000px;}
._35_c00134{margin-left:-11.328000px;}
._28_c00134{margin-left:-9.504000px;}
._34_c00134{margin-left:-8.232000px;}
._6_c00134{margin-left:-6.720000px;}
._2b_c00134{margin-left:-5.568000px;}
._7_c00134{margin-left:-3.552000px;}
._f_c00134{margin-left:-2.016000px;}
._3d_c00134{margin-left:-1.008000px;}
._0_c00134{width:1.056000px;}
._4_c00134{width:2.208000px;}
._3_c00134{width:3.840000px;}
._2d_c00134{width:4.848000px;}
._5_c00134{width:5.856000px;}
._2_c00134{width:7.296000px;}
._d_c00134{width:8.448000px;}
._11_c00134{width:10.464000px;}
._1d_c00134{width:11.736000px;}
._9_c00134{width:13.248000px;}
._18_c00134{width:15.144000px;}
._19_c00134{width:16.176000px;}
._16_c00134{width:17.280000px;}
._c_c00134{width:18.432000px;}
._1a_c00134{width:19.680000px;}
._13_c00134{width:21.888000px;}
._2c_c00134{width:24.408000px;}
._14_c00134{width:26.064000px;}
._b_c00134{width:27.360000px;}
._15_c00134{width:28.704000px;}
._8_c00134{width:30.816000px;}
._17_c00134{width:32.064000px;}
._24_c00134{width:34.104000px;}
._29_c00134{width:35.112000px;}
._10_c00134{width:36.192000px;}
._21_c00134{width:37.344000px;}
._1b_c00134{width:38.976000px;}
._1_c00134{width:40.800000px;}
._1c_c00134{width:43.008000px;}
._e_c00134{width:44.832000px;}
._22_c00134{width:46.776000px;}
._23_c00134{width:48.192000px;}
._20_c00134{width:49.824000px;}
._27_c00134{width:51.120000px;}
._32_c00134{width:53.880000px;}
._1f_c00134{width:56.544000px;}
._36_c00134{width:58.320000px;}
._26_c00134{width:59.928000px;}
._2e_c00134{width:60.936000px;}
._25_c00134{width:67.104000px;}
._3c_c00134{width:70.584000px;}
._1e_c00134{width:72.672000px;}
._3f_c00134{width:89.577000px;}
._39_c00134{width:92.568000px;}
._3b_c00134{width:177.540000px;}
._37_c00134{width:227.040000px;}
.fc2_c00134{color:transparent;}
.fc1_c00134{color:rgb(128,128,128);}
.fc0_c00134{color:rgb(0,0,0);}
.fs3_c00134{font-size:36.000000px;}
.fs7_c00134{font-size:48.000000px;}
.fs5_c00134{font-size:60.000000px;}
.fs1_c00134{font-size:84.000000px;}
.fs4_c00134{font-size:87.000000px;}
.fs0_c00134{font-size:96.000000px;}
.fs2_c00134{font-size:102.000000px;}
.fs6_c00134{font-size:165.000000px;}
.y0_c00134{bottom:0.000000px;}
.y32_c00134{bottom:3.105000px;}
.y31_c00134{bottom:7.228369px;}
.y24_c00134{bottom:96.120000px;}
.y23_c00134{bottom:130.920000px;}
.y30_c00134{bottom:142.770000px;}
.y22_c00134{bottom:163.020000px;}
.y2f_c00134{bottom:171.720000px;}
.y21_c00134{bottom:199.470000px;}
.y2e_c00134{bottom:201.870000px;}
.y2d_c00134{bottom:231.120000px;}
.y20_c00134{bottom:233.520000px;}
.y2c_c00134{bottom:261.570000px;}
.y1f_c00134{bottom:268.620000px;}
.y2b_c00134{bottom:291.270000px;}
.y1e_c00134{bottom:301.620000px;}
.y2a_c00134{bottom:322.020000px;}
.y1d_c00134{bottom:335.820000px;}
.y29_c00134{bottom:350.370000px;}
.y1c_c00134{bottom:369.570000px;}
.y1b_c00134{bottom:403.620000px;}
.y1a_c00134{bottom:436.320000px;}
.y19_c00134{bottom:471.120000px;}
.y18_c00134{bottom:504.270000px;}
.y17_c00134{bottom:538.020000px;}
.y16_c00134{bottom:571.770000px;}
.y15_c00134{bottom:605.520000px;}
.y28_c00134{bottom:637.770000px;}
.y14_c00134{bottom:639.120000px;}
.y27_c00134{bottom:666.870000px;}
.y13_c00134{bottom:672.270000px;}
.y26_c00134{bottom:699.870000px;}
.y12_c00134{bottom:706.020000px;}
.y11_c00134{bottom:740.070000px;}
.y10_c00134{bottom:772.920000px;}
.yf_c00134{bottom:806.670000px;}
.y25_c00134{bottom:815.070000px;}
.ye_c00134{bottom:840.270000px;}
.yd_c00134{bottom:873.720000px;}
.yc_c00134{bottom:907.170000px;}
.yb_c00134{bottom:940.170000px;}
.ya_c00134{bottom:973.320000px;}
.y9_c00134{bottom:1007.070000px;}
.y8_c00134{bottom:1040.520000px;}
.y7_c00134{bottom:1073.820000px;}
.y6_c00134{bottom:1106.670000px;}
.y5_c00134{bottom:1141.020000px;}
.y4_c00134{bottom:1174.170000px;}
.y3_c00134{bottom:1207.620000px;}
.y2_c00134{bottom:1240.920000px;}
.y1_c00134{bottom:1274.070000px;}
.h8_c00134{height:13.200073px;}
.h9_c00134{height:43.804688px;}
.h5_c00134{height:75.966797px;}
.h3_c00134{height:98.314453px;}
.h4_c00134{height:110.151855px;}
.h2_c00134{height:121.546875px;}
.h6_c00134{height:161.857910px;}
.h7_c00134{height:161.938477px;}
.h0_c00134{height:1383.450000px;}
.h1_c00134{height:1383.750000px;}
.w2_c00134{width:104.875500px;}
.w0_c00134{width:878.025000px;}
.w1_c00134{width:878.250000px;}
.x0_c00134{left:0.000000px;}
.xe_c00134{left:40.800000px;}
.xd_c00134{left:42.300000px;}
.xc_c00134{left:44.550000px;}
.xb_c00134{left:45.600000px;}
.xa_c00134{left:48.300000px;}
.x9_c00134{left:49.350000px;}
.x8_c00134{left:50.400000px;}
.x7_c00134{left:51.600000px;}
.x6_c00134{left:52.650000px;}
.x5_c00134{left:54.300000px;}
.x4_c00134{left:55.350000px;}
.x3_c00134{left:57.000000px;}
.x2_c00134{left:58.500000px;}
.x1_c00134{left:59.700000px;}
.xf_c00134{left:99.000000px;}
.x18_c00134{left:390.826721px;}
.x10_c00134{left:559.650000px;}
.x16_c00134{left:637.950000px;}
.x15_c00134{left:640.200000px;}
.x17_c00134{left:641.250000px;}
.x14_c00134{left:669.300000px;}
.x12_c00134{left:672.300000px;}
.x13_c00134{left:673.950000px;}
.x11_c00134{left:686.100000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls4_c00134{letter-spacing:0.000000pt;}
.ls1_c00134{letter-spacing:4.448000pt;}
.ls5_c00134{letter-spacing:5.333333pt;}
.ls0_c00134{letter-spacing:6.400000pt;}
.ls3_c00134{letter-spacing:8.533333pt;}
.ls2_c00134{letter-spacing:9.301333pt;}
.ws4_c00134{word-spacing:-58.464000pt;}
.ws0_c00134{word-spacing:-56.448000pt;}
.ws1_c00134{word-spacing:-45.333333pt;}
.ws2_c00134{word-spacing:-39.381333pt;}
.ws6_c00134{word-spacing:-36.666667pt;}
.ws3_c00134{word-spacing:-20.565333pt;}
.ws5_c00134{word-spacing:-18.186667pt;}
.ws7_c00134{word-spacing:0.000000pt;}
._41_c00134{margin-left:-52.360000pt;}
._4d_c00134{margin-left:-50.160000pt;}
._4b_c00134{margin-left:-46.402667pt;}
._4c_c00134{margin-left:-42.589333pt;}
._43_c00134{margin-left:-39.112000pt;}
._4a_c00134{margin-left:-38.120000pt;}
._50_c00134{margin-left:-37.106667pt;}
._42_c00134{margin-left:-35.933333pt;}
._4e_c00134{margin-left:-35.042667pt;}
._46_c00134{margin-left:-34.146667pt;}
._44_c00134{margin-left:-32.266667pt;}
._40_c00134{margin-left:-31.242667pt;}
._12_c00134{margin-left:-29.952000pt;}
._45_c00134{margin-left:-28.600000pt;}
._49_c00134{margin-left:-27.573333pt;}
._47_c00134{margin-left:-26.400000pt;}
._3e_c00134{margin-left:-25.069333pt;}
._33_c00134{margin-left:-23.552000pt;}
._48_c00134{margin-left:-22.413333pt;}
._2a_c00134{margin-left:-20.245333pt;}
._3a_c00134{margin-left:-18.346667pt;}
._2f_c00134{margin-left:-16.597333pt;}
._38_c00134{margin-left:-15.701333pt;}
._4f_c00134{margin-left:-14.226667pt;}
._a_c00134{margin-left:-13.226667pt;}
._30_c00134{margin-left:-12.160000pt;}
._31_c00134{margin-left:-11.221333pt;}
._35_c00134{margin-left:-10.069333pt;}
._28_c00134{margin-left:-8.448000pt;}
._34_c00134{margin-left:-7.317333pt;}
._6_c00134{margin-left:-5.973333pt;}
._2b_c00134{margin-left:-4.949333pt;}
._7_c00134{margin-left:-3.157333pt;}
._f_c00134{margin-left:-1.792000pt;}
._3d_c00134{margin-left:-0.896000pt;}
._0_c00134{width:0.938667pt;}
._4_c00134{width:1.962667pt;}
._3_c00134{width:3.413333pt;}
._2d_c00134{width:4.309333pt;}
._5_c00134{width:5.205333pt;}
._2_c00134{width:6.485333pt;}
._d_c00134{width:7.509333pt;}
._11_c00134{width:9.301333pt;}
._1d_c00134{width:10.432000pt;}
._9_c00134{width:11.776000pt;}
._18_c00134{width:13.461333pt;}
._19_c00134{width:14.378667pt;}
._16_c00134{width:15.360000pt;}
._c_c00134{width:16.384000pt;}
._1a_c00134{width:17.493333pt;}
._13_c00134{width:19.456000pt;}
._2c_c00134{width:21.696000pt;}
._14_c00134{width:23.168000pt;}
._b_c00134{width:24.320000pt;}
._15_c00134{width:25.514667pt;}
._8_c00134{width:27.392000pt;}
._17_c00134{width:28.501333pt;}
._24_c00134{width:30.314667pt;}
._29_c00134{width:31.210667pt;}
._10_c00134{width:32.170667pt;}
._21_c00134{width:33.194667pt;}
._1b_c00134{width:34.645333pt;}
._1_c00134{width:36.266667pt;}
._1c_c00134{width:38.229333pt;}
._e_c00134{width:39.850667pt;}
._22_c00134{width:41.578667pt;}
._23_c00134{width:42.837333pt;}
._20_c00134{width:44.288000pt;}
._27_c00134{width:45.440000pt;}
._32_c00134{width:47.893333pt;}
._1f_c00134{width:50.261333pt;}
._36_c00134{width:51.840000pt;}
._26_c00134{width:53.269333pt;}
._2e_c00134{width:54.165333pt;}
._25_c00134{width:59.648000pt;}
._3c_c00134{width:62.741333pt;}
._1e_c00134{width:64.597333pt;}
._3f_c00134{width:79.624000pt;}
._39_c00134{width:82.282667pt;}
._3b_c00134{width:157.813333pt;}
._37_c00134{width:201.813333pt;}
.fs3_c00134{font-size:32.000000pt;}
.fs7_c00134{font-size:42.666667pt;}
.fs5_c00134{font-size:53.333333pt;}
.fs1_c00134{font-size:74.666667pt;}
.fs4_c00134{font-size:77.333333pt;}
.fs0_c00134{font-size:85.333333pt;}
.fs2_c00134{font-size:90.666667pt;}
.fs6_c00134{font-size:146.666667pt;}
.y0_c00134{bottom:0.000000pt;}
.y32_c00134{bottom:2.760000pt;}
.y31_c00134{bottom:6.425217pt;}
.y24_c00134{bottom:85.440000pt;}
.y23_c00134{bottom:116.373333pt;}
.y30_c00134{bottom:126.906667pt;}
.y22_c00134{bottom:144.906667pt;}
.y2f_c00134{bottom:152.640000pt;}
.y21_c00134{bottom:177.306667pt;}
.y2e_c00134{bottom:179.440000pt;}
.y2d_c00134{bottom:205.440000pt;}
.y20_c00134{bottom:207.573333pt;}
.y2c_c00134{bottom:232.506667pt;}
.y1f_c00134{bottom:238.773333pt;}
.y2b_c00134{bottom:258.906667pt;}
.y1e_c00134{bottom:268.106667pt;}
.y2a_c00134{bottom:286.240000pt;}
.y1d_c00134{bottom:298.506667pt;}
.y29_c00134{bottom:311.440000pt;}
.y1c_c00134{bottom:328.506667pt;}
.y1b_c00134{bottom:358.773333pt;}
.y1a_c00134{bottom:387.840000pt;}
.y19_c00134{bottom:418.773333pt;}
.y18_c00134{bottom:448.240000pt;}
.y17_c00134{bottom:478.240000pt;}
.y16_c00134{bottom:508.240000pt;}
.y15_c00134{bottom:538.240000pt;}
.y28_c00134{bottom:566.906667pt;}
.y14_c00134{bottom:568.106667pt;}
.y27_c00134{bottom:592.773333pt;}
.y13_c00134{bottom:597.573333pt;}
.y26_c00134{bottom:622.106667pt;}
.y12_c00134{bottom:627.573333pt;}
.y11_c00134{bottom:657.840000pt;}
.y10_c00134{bottom:687.040000pt;}
.yf_c00134{bottom:717.040000pt;}
.y25_c00134{bottom:724.506667pt;}
.ye_c00134{bottom:746.906667pt;}
.yd_c00134{bottom:776.640000pt;}
.yc_c00134{bottom:806.373333pt;}
.yb_c00134{bottom:835.706667pt;}
.ya_c00134{bottom:865.173333pt;}
.y9_c00134{bottom:895.173333pt;}
.y8_c00134{bottom:924.906667pt;}
.y7_c00134{bottom:954.506667pt;}
.y6_c00134{bottom:983.706667pt;}
.y5_c00134{bottom:1014.240000pt;}
.y4_c00134{bottom:1043.706667pt;}
.y3_c00134{bottom:1073.440000pt;}
.y2_c00134{bottom:1103.040000pt;}
.y1_c00134{bottom:1132.506667pt;}
.h8_c00134{height:11.733399pt;}
.h9_c00134{height:38.937500pt;}
.h5_c00134{height:67.526042pt;}
.h3_c00134{height:87.390625pt;}
.h4_c00134{height:97.912760pt;}
.h2_c00134{height:108.041667pt;}
.h6_c00134{height:143.873698pt;}
.h7_c00134{height:143.945312pt;}
.h0_c00134{height:1229.733333pt;}
.h1_c00134{height:1230.000000pt;}
.w2_c00134{width:93.222667pt;}
.w0_c00134{width:780.466667pt;}
.w1_c00134{width:780.666667pt;}
.x0_c00134{left:0.000000pt;}
.xe_c00134{left:36.266667pt;}
.xd_c00134{left:37.600000pt;}
.xc_c00134{left:39.600000pt;}
.xb_c00134{left:40.533333pt;}
.xa_c00134{left:42.933333pt;}
.x9_c00134{left:43.866667pt;}
.x8_c00134{left:44.800000pt;}
.x7_c00134{left:45.866667pt;}
.x6_c00134{left:46.800000pt;}
.x5_c00134{left:48.266667pt;}
.x4_c00134{left:49.200000pt;}
.x3_c00134{left:50.666667pt;}
.x2_c00134{left:52.000000pt;}
.x1_c00134{left:53.066667pt;}
.xf_c00134{left:88.000000pt;}
.x18_c00134{left:347.401530pt;}
.x10_c00134{left:497.466667pt;}
.x16_c00134{left:567.066667pt;}
.x15_c00134{left:569.066667pt;}
.x17_c00134{left:570.000000pt;}
.x14_c00134{left:594.933333pt;}
.x12_c00134{left:597.600000pt;}
.x13_c00134{left:599.066667pt;}
.x11_c00134{left:609.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1f7f62e89a8d809022e2d956.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_89385bfc93e616e28d061964.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_d88deae586d19c93364eef28.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls3_c00135{letter-spacing:-3.000000px;}
.ls2_c00135{letter-spacing:0.000000px;}
.ls1_c00135{letter-spacing:6.720000px;}
.ls0_c00135{letter-spacing:8.520000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-23.136000px;}
.ws2_c00135{word-spacing:-20.250000px;}
.ws3_c00135{word-spacing:-20.244000px;}
.ws1_c00135{word-spacing:-1.428000px;}
.ws4_c00135{word-spacing:0.000000px;}
._3d_c00135{margin-left:-73.920000px;}
._3c_c00135{margin-left:-69.348000px;}
._33_c00135{margin-left:-35.421000px;}
._3a_c00135{margin-left:-32.154000px;}
._31_c00135{margin-left:-29.376000px;}
._39_c00135{margin-left:-28.035000px;}
._4a_c00135{margin-left:-24.012000px;}
._3_c00135{margin-left:-19.200000px;}
._25_c00135{margin-left:-17.127000px;}
._28_c00135{margin-left:-14.805000px;}
._2b_c00135{margin-left:-13.284000px;}
._2a_c00135{margin-left:-10.164000px;}
._21_c00135{margin-left:-9.072000px;}
._22_c00135{margin-left:-6.975000px;}
._29_c00135{margin-left:-5.430000px;}
._2e_c00135{margin-left:-4.344000px;}
._12_c00135{margin-left:-3.072000px;}
._e_c00135{margin-left:-1.056000px;}
._4_c00135{width:2.016000px;}
._2_c00135{width:3.456000px;}
._9_c00135{width:4.704000px;}
._1_c00135{width:5.760000px;}
._8_c00135{width:6.912000px;}
._3b_c00135{width:8.064000px;}
._0_c00135{width:9.120000px;}
._7_c00135{width:10.656000px;}
._c_c00135{width:12.576000px;}
._44_c00135{width:13.944000px;}
._10_c00135{width:14.976000px;}
._f_c00135{width:16.704000px;}
._38_c00135{width:18.336000px;}
._b_c00135{width:19.392000px;}
._1b_c00135{width:21.024000px;}
._5_c00135{width:25.632000px;}
._26_c00135{width:26.880000px;}
._6_c00135{width:27.936000px;}
._18_c00135{width:30.048000px;}
._15_c00135{width:31.488000px;}
._46_c00135{width:32.766000px;}
._19_c00135{width:33.888000px;}
._1a_c00135{width:35.424000px;}
._17_c00135{width:37.056000px;}
._13_c00135{width:38.400000px;}
._a_c00135{width:40.800000px;}
._d_c00135{width:42.312000px;}
._3e_c00135{width:44.025000px;}
._27_c00135{width:45.504000px;}
._14_c00135{width:46.944000px;}
._43_c00135{width:48.000000px;}
._1f_c00135{width:49.728000px;}
._20_c00135{width:52.080000px;}
._47_c00135{width:53.184000px;}
._45_c00135{width:54.255000px;}
._11_c00135{width:55.776000px;}
._1e_c00135{width:57.792000px;}
._1c_c00135{width:59.328000px;}
._42_c00135{width:66.912000px;}
._16_c00135{width:69.024000px;}
._1d_c00135{width:72.672000px;}
._32_c00135{width:74.400000px;}
._2d_c00135{width:81.855000px;}
._48_c00135{width:102.144000px;}
._2f_c00135{width:105.048000px;}
._35_c00135{width:116.160000px;}
._4b_c00135{width:141.336000px;}
._36_c00135{width:159.072000px;}
._24_c00135{width:183.600000px;}
._34_c00135{width:187.488000px;}
._49_c00135{width:199.017000px;}
._40_c00135{width:200.277000px;}
._37_c00135{width:261.912000px;}
._23_c00135{width:272.538000px;}
._3f_c00135{width:424.512000px;}
._30_c00135{width:436.704000px;}
._41_c00135{width:565.248000px;}
._4c_c00135{width:622.116000px;}
._2c_c00135{width:920.898000px;}
.fc2_c00135{color:transparent;}
.fc1_c00135{color:rgb(128,128,128);}
.fc0_c00135{color:rgb(0,0,0);}
.fs4_c00135{font-size:36.000000px;}
.fs5_c00135{font-size:48.000000px;}
.fs1_c00135{font-size:84.000000px;}
.fs2_c00135{font-size:93.000000px;}
.fs0_c00135{font-size:96.000000px;}
.fs3_c00135{font-size:420.000000px;}
.y0_c00135{bottom:0.000000px;}
.y27_c00135{bottom:3.105000px;}
.y26_c00135{bottom:7.228357px;}
.y25_c00135{bottom:69.480000px;}
.y24_c00135{bottom:101.280000px;}
.y23_c00135{bottom:140.730000px;}
.y22_c00135{bottom:174.930000px;}
.y21_c00135{bottom:209.280000px;}
.y20_c00135{bottom:243.630000px;}
.y1f_c00135{bottom:277.080000px;}
.y1e_c00135{bottom:311.880000px;}
.y1d_c00135{bottom:345.630000px;}
.y1c_c00135{bottom:379.680000px;}
.y1b_c00135{bottom:413.730000px;}
.y1a_c00135{bottom:447.180000px;}
.y19_c00135{bottom:481.230000px;}
.y18_c00135{bottom:515.130000px;}
.y17_c00135{bottom:546.030000px;}
.y16_c00135{bottom:585.930000px;}
.y15_c00135{bottom:618.330000px;}
.y14_c00135{bottom:650.430000px;}
.y13_c00135{bottom:682.530000px;}
.y12_c00135{bottom:714.930000px;}
.y11_c00135{bottom:747.330000px;}
.y10_c00135{bottom:767.880000px;}
.yf_c00135{bottom:791.430000px;}
.ye_c00135{bottom:821.880000px;}
.yd_c00135{bottom:854.880000px;}
.yc_c00135{bottom:886.380000px;}
.yb_c00135{bottom:918.330000px;}
.ya_c00135{bottom:952.080000px;}
.y9_c00135{bottom:985.830000px;}
.y8_c00135{bottom:1019.580000px;}
.y7_c00135{bottom:1052.280000px;}
.y6_c00135{bottom:1085.730000px;}
.y5_c00135{bottom:1119.180000px;}
.y4_c00135{bottom:1152.330000px;}
.y3_c00135{bottom:1185.630000px;}
.y2_c00135{bottom:1219.380000px;}
.y1_c00135{bottom:1252.230000px;}
.h5_c00135{height:13.200074px;}
.h6_c00135{height:43.804688px;}
.h4_c00135{height:45.580078px;}
.h2_c00135{height:121.546875px;}
.h3_c00135{height:412.207031px;}
.h0_c00135{height:1382.700000px;}
.h1_c00135{height:1383.000000px;}
.w2_c00135{width:104.875500px;}
.w0_c00135{width:863.175000px;}
.w1_c00135{width:863.250000px;}
.x0_c00135{left:0.000000px;}
.x6_c00135{left:52.650000px;}
.x5_c00135{left:54.750000px;}
.x4_c00135{left:55.800000px;}
.x3_c00135{left:128.250000px;}
.x9_c00135{left:269.700000px;}
.x8_c00135{left:270.750000px;}
.x1_c00135{left:271.950000px;}
.x2_c00135{left:273.600000px;}
.x7_c00135{left:276.150000px;}
.xc_c00135{left:383.401749px;}
.xa_c00135{left:528.900000px;}
.xb_c00135{left:804.300000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls3_c00135{letter-spacing:-2.666667pt;}
.ls2_c00135{letter-spacing:0.000000pt;}
.ls1_c00135{letter-spacing:5.973333pt;}
.ls0_c00135{letter-spacing:7.573333pt;}
.ws0_c00135{word-spacing:-20.565333pt;}
.ws2_c00135{word-spacing:-18.000000pt;}
.ws3_c00135{word-spacing:-17.994667pt;}
.ws1_c00135{word-spacing:-1.269333pt;}
.ws4_c00135{word-spacing:0.000000pt;}
._3d_c00135{margin-left:-65.706667pt;}
._3c_c00135{margin-left:-61.642667pt;}
._33_c00135{margin-left:-31.485333pt;}
._3a_c00135{margin-left:-28.581333pt;}
._31_c00135{margin-left:-26.112000pt;}
._39_c00135{margin-left:-24.920000pt;}
._4a_c00135{margin-left:-21.344000pt;}
._3_c00135{margin-left:-17.066667pt;}
._25_c00135{margin-left:-15.224000pt;}
._28_c00135{margin-left:-13.160000pt;}
._2b_c00135{margin-left:-11.808000pt;}
._2a_c00135{margin-left:-9.034667pt;}
._21_c00135{margin-left:-8.064000pt;}
._22_c00135{margin-left:-6.200000pt;}
._29_c00135{margin-left:-4.826667pt;}
._2e_c00135{margin-left:-3.861333pt;}
._12_c00135{margin-left:-2.730667pt;}
._e_c00135{margin-left:-0.938667pt;}
._4_c00135{width:1.792000pt;}
._2_c00135{width:3.072000pt;}
._9_c00135{width:4.181333pt;}
._1_c00135{width:5.120000pt;}
._8_c00135{width:6.144000pt;}
._3b_c00135{width:7.168000pt;}
._0_c00135{width:8.106667pt;}
._7_c00135{width:9.472000pt;}
._c_c00135{width:11.178667pt;}
._44_c00135{width:12.394667pt;}
._10_c00135{width:13.312000pt;}
._f_c00135{width:14.848000pt;}
._38_c00135{width:16.298667pt;}
._b_c00135{width:17.237333pt;}
._1b_c00135{width:18.688000pt;}
._5_c00135{width:22.784000pt;}
._26_c00135{width:23.893333pt;}
._6_c00135{width:24.832000pt;}
._18_c00135{width:26.709333pt;}
._15_c00135{width:27.989333pt;}
._46_c00135{width:29.125333pt;}
._19_c00135{width:30.122667pt;}
._1a_c00135{width:31.488000pt;}
._17_c00135{width:32.938667pt;}
._13_c00135{width:34.133333pt;}
._a_c00135{width:36.266667pt;}
._d_c00135{width:37.610667pt;}
._3e_c00135{width:39.133333pt;}
._27_c00135{width:40.448000pt;}
._14_c00135{width:41.728000pt;}
._43_c00135{width:42.666667pt;}
._1f_c00135{width:44.202667pt;}
._20_c00135{width:46.293333pt;}
._47_c00135{width:47.274667pt;}
._45_c00135{width:48.226667pt;}
._11_c00135{width:49.578667pt;}
._1e_c00135{width:51.370667pt;}
._1c_c00135{width:52.736000pt;}
._42_c00135{width:59.477333pt;}
._16_c00135{width:61.354667pt;}
._1d_c00135{width:64.597333pt;}
._32_c00135{width:66.133333pt;}
._2d_c00135{width:72.760000pt;}
._48_c00135{width:90.794667pt;}
._2f_c00135{width:93.376000pt;}
._35_c00135{width:103.253333pt;}
._4b_c00135{width:125.632000pt;}
._36_c00135{width:141.397333pt;}
._24_c00135{width:163.200000pt;}
._34_c00135{width:166.656000pt;}
._49_c00135{width:176.904000pt;}
._40_c00135{width:178.024000pt;}
._37_c00135{width:232.810667pt;}
._23_c00135{width:242.256000pt;}
._3f_c00135{width:377.344000pt;}
._30_c00135{width:388.181333pt;}
._41_c00135{width:502.442667pt;}
._4c_c00135{width:552.992000pt;}
._2c_c00135{width:818.576000pt;}
.fs4_c00135{font-size:32.000000pt;}
.fs5_c00135{font-size:42.666667pt;}
.fs1_c00135{font-size:74.666667pt;}
.fs2_c00135{font-size:82.666667pt;}
.fs0_c00135{font-size:85.333333pt;}
.fs3_c00135{font-size:373.333333pt;}
.y0_c00135{bottom:0.000000pt;}
.y27_c00135{bottom:2.760000pt;}
.y26_c00135{bottom:6.425206pt;}
.y25_c00135{bottom:61.760000pt;}
.y24_c00135{bottom:90.026667pt;}
.y23_c00135{bottom:125.093333pt;}
.y22_c00135{bottom:155.493333pt;}
.y21_c00135{bottom:186.026667pt;}
.y20_c00135{bottom:216.560000pt;}
.y1f_c00135{bottom:246.293333pt;}
.y1e_c00135{bottom:277.226667pt;}
.y1d_c00135{bottom:307.226667pt;}
.y1c_c00135{bottom:337.493333pt;}
.y1b_c00135{bottom:367.760000pt;}
.y1a_c00135{bottom:397.493333pt;}
.y19_c00135{bottom:427.760000pt;}
.y18_c00135{bottom:457.893333pt;}
.y17_c00135{bottom:485.360000pt;}
.y16_c00135{bottom:520.826667pt;}
.y15_c00135{bottom:549.626667pt;}
.y14_c00135{bottom:578.160000pt;}
.y13_c00135{bottom:606.693333pt;}
.y12_c00135{bottom:635.493333pt;}
.y11_c00135{bottom:664.293333pt;}
.y10_c00135{bottom:682.560000pt;}
.yf_c00135{bottom:703.493333pt;}
.ye_c00135{bottom:730.560000pt;}
.yd_c00135{bottom:759.893333pt;}
.yc_c00135{bottom:787.893333pt;}
.yb_c00135{bottom:816.293333pt;}
.ya_c00135{bottom:846.293333pt;}
.y9_c00135{bottom:876.293333pt;}
.y8_c00135{bottom:906.293333pt;}
.y7_c00135{bottom:935.360000pt;}
.y6_c00135{bottom:965.093333pt;}
.y5_c00135{bottom:994.826667pt;}
.y4_c00135{bottom:1024.293333pt;}
.y3_c00135{bottom:1053.893333pt;}
.y2_c00135{bottom:1083.893333pt;}
.y1_c00135{bottom:1113.093333pt;}
.h5_c00135{height:11.733399pt;}
.h6_c00135{height:38.937500pt;}
.h4_c00135{height:40.515625pt;}
.h2_c00135{height:108.041667pt;}
.h3_c00135{height:366.406250pt;}
.h0_c00135{height:1229.066667pt;}
.h1_c00135{height:1229.333333pt;}
.w2_c00135{width:93.222667pt;}
.w0_c00135{width:767.266667pt;}
.w1_c00135{width:767.333333pt;}
.x0_c00135{left:0.000000pt;}
.x6_c00135{left:46.800000pt;}
.x5_c00135{left:48.666667pt;}
.x4_c00135{left:49.600000pt;}
.x3_c00135{left:114.000000pt;}
.x9_c00135{left:239.733333pt;}
.x8_c00135{left:240.666667pt;}
.x1_c00135{left:241.733333pt;}
.x2_c00135{left:243.200000pt;}
.x7_c00135{left:245.466667pt;}
.xc_c00135{left:340.801554pt;}
.xa_c00135{left:470.133333pt;}
.xb_c00135{left:714.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a32207c27abb7de5b1535c5d.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_e7c48a3fad66d95ae8dea667.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_02df3b9b2ecfa163310fcbe9.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls2_c00136{letter-spacing:-12.000000px;}
.ls0_c00136{letter-spacing:0.000000px;}
.ls1_c00136{letter-spacing:12.000000px;}
.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:-32.967000px;}
.ws1_c00136{word-spacing:-1.428000px;}
.ws3_c00136{word-spacing:0.000000px;}
.ws0_c00136{word-spacing:0.036000px;}
._2e_c00136{margin-left:-18.552000px;}
._36_c00136{margin-left:-17.340000px;}
._39_c00136{margin-left:-16.320000px;}
._2b_c00136{margin-left:-15.264000px;}
._2d_c00136{margin-left:-11.784000px;}
._3_c00136{margin-left:-9.600000px;}
._9_c00136{margin-left:-7.680000px;}
._12_c00136{margin-left:-6.144000px;}
._1b_c00136{margin-left:-4.512000px;}
._a_c00136{margin-left:-3.456000px;}
._d_c00136{margin-left:-1.704000px;}
._7_c00136{width:1.344000px;}
._5_c00136{width:2.496000px;}
._c_c00136{width:4.320000px;}
._1e_c00136{width:5.472000px;}
._16_c00136{width:7.104000px;}
._21_c00136{width:8.736000px;}
._15_c00136{width:9.792000px;}
._1f_c00136{width:10.848000px;}
._1d_c00136{width:11.904000px;}
._b_c00136{width:12.960000px;}
._0_c00136{width:14.280000px;}
._26_c00136{width:15.456000px;}
._2c_c00136{width:16.992000px;}
._1_c00136{width:18.480000px;}
._19_c00136{width:20.136000px;}
._18_c00136{width:21.312000px;}
._2_c00136{width:24.108000px;}
._22_c00136{width:25.536000px;}
._20_c00136{width:27.552000px;}
._33_c00136{width:29.568000px;}
._6_c00136{width:31.200000px;}
._1c_c00136{width:32.352000px;}
._24_c00136{width:34.560000px;}
._11_c00136{width:36.672000px;}
._13_c00136{width:38.592000px;}
._23_c00136{width:41.280000px;}
._25_c00136{width:42.816000px;}
._27_c00136{width:45.312000px;}
._1a_c00136{width:47.136000px;}
._10_c00136{width:49.920000px;}
._e_c00136{width:51.168000px;}
._14_c00136{width:52.704000px;}
._f_c00136{width:54.816000px;}
._17_c00136{width:57.120000px;}
._30_c00136{width:60.096000px;}
._35_c00136{width:62.568000px;}
._37_c00136{width:66.048000px;}
._31_c00136{width:71.424000px;}
._32_c00136{width:73.344000px;}
._2a_c00136{width:75.420000px;}
._38_c00136{width:85.824000px;}
._2f_c00136{width:88.488000px;}
._4_c00136{width:105.888000px;}
._28_c00136{width:125.400000px;}
._29_c00136{width:176.064000px;}
._3a_c00136{width:204.864000px;}
._3b_c00136{width:209.280000px;}
._34_c00136{width:342.624000px;}
._8_c00136{width:653.664000px;}
._3c_c00136{width:812.832000px;}
.fc2_c00136{color:transparent;}
.fc1_c00136{color:rgb(128,128,128);}
.fc0_c00136{color:rgb(0,0,0);}
.fs4_c00136{font-size:48.000000px;}
.fs0_c00136{font-size:84.000000px;}
.fs2_c00136{font-size:87.000000px;}
.fs1_c00136{font-size:96.000000px;}
.fs3_c00136{font-size:120.000000px;}
.y0_c00136{bottom:0.000000px;}
.y23_c00136{bottom:3.105000px;}
.y22_c00136{bottom:7.228371px;}
.y21_c00136{bottom:104.415000px;}
.y1f_c00136{bottom:279.165000px;}
.y1e_c00136{bottom:314.265000px;}
.y1d_c00136{bottom:347.265000px;}
.y1c_c00136{bottom:380.715000px;}
.y1b_c00136{bottom:414.465000px;}
.y1a_c00136{bottom:447.915000px;}
.y19_c00136{bottom:481.965000px;}
.y18_c00136{bottom:515.115000px;}
.y17_c00136{bottom:548.865000px;}
.y16_c00136{bottom:582.165000px;}
.y20_c00136{bottom:591.315000px;}
.y15_c00136{bottom:615.615000px;}
.y14_c00136{bottom:648.465000px;}
.y13_c00136{bottom:682.215000px;}
.y12_c00136{bottom:715.515000px;}
.y11_c00136{bottom:749.265000px;}
.y10_c00136{bottom:782.415000px;}
.yf_c00136{bottom:815.715000px;}
.ye_c00136{bottom:849.165000px;}
.yd_c00136{bottom:882.015000px;}
.yc_c00136{bottom:915.615000px;}
.yb_c00136{bottom:948.465000px;}
.ya_c00136{bottom:981.765000px;}
.y9_c00136{bottom:1015.665000px;}
.y8_c00136{bottom:1048.815000px;}
.y7_c00136{bottom:1082.115000px;}
.y6_c00136{bottom:1115.415000px;}
.y5_c00136{bottom:1148.865000px;}
.y4_c00136{bottom:1182.015000px;}
.y3_c00136{bottom:1215.015000px;}
.y2_c00136{bottom:1248.165000px;}
.y1_c00136{bottom:1281.615000px;}
.h5_c00136{height:13.200074px;}
.h6_c00136{height:43.804688px;}
.h3_c00136{height:110.151855px;}
.h2_c00136{height:121.546875px;}
.h4_c00136{height:128.040000px;}
.h1_c00136{height:1349.250000px;}
.h0_c00136{height:1349.475000px;}
.w2_c00136{width:104.875500px;}
.w1_c00136{width:855.750000px;}
.w0_c00136{width:855.900000px;}
.x0_c00136{left:0.000000px;}
.xb_c00136{left:14.850000px;}
.xa_c00136{left:15.900000px;}
.x9_c00136{left:16.950000px;}
.x7_c00136{left:18.000000px;}
.x8_c00136{left:19.200000px;}
.x5_c00136{left:21.300000px;}
.x4_c00136{left:22.500000px;}
.x3_c00136{left:24.000000px;}
.x6_c00136{left:25.200000px;}
.x2_c00136{left:26.700000px;}
.x1_c00136{left:82.200000px;}
.xd_c00136{left:289.200000px;}
.xe_c00136{left:379.764221px;}
.xc_c00136{left:740.850000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls2_c00136{letter-spacing:-10.666667pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ls1_c00136{letter-spacing:10.666667pt;}
.ws2_c00136{word-spacing:-29.304000pt;}
.ws1_c00136{word-spacing:-1.269333pt;}
.ws3_c00136{word-spacing:0.000000pt;}
.ws0_c00136{word-spacing:0.032000pt;}
._2e_c00136{margin-left:-16.490667pt;}
._36_c00136{margin-left:-15.413333pt;}
._39_c00136{margin-left:-14.506667pt;}
._2b_c00136{margin-left:-13.568000pt;}
._2d_c00136{margin-left:-10.474667pt;}
._3_c00136{margin-left:-8.533333pt;}
._9_c00136{margin-left:-6.826667pt;}
._12_c00136{margin-left:-5.461333pt;}
._1b_c00136{margin-left:-4.010667pt;}
._a_c00136{margin-left:-3.072000pt;}
._d_c00136{margin-left:-1.514667pt;}
._7_c00136{width:1.194667pt;}
._5_c00136{width:2.218667pt;}
._c_c00136{width:3.840000pt;}
._1e_c00136{width:4.864000pt;}
._16_c00136{width:6.314667pt;}
._21_c00136{width:7.765333pt;}
._15_c00136{width:8.704000pt;}
._1f_c00136{width:9.642667pt;}
._1d_c00136{width:10.581333pt;}
._b_c00136{width:11.520000pt;}
._0_c00136{width:12.693333pt;}
._26_c00136{width:13.738667pt;}
._2c_c00136{width:15.104000pt;}
._1_c00136{width:16.426667pt;}
._19_c00136{width:17.898667pt;}
._18_c00136{width:18.944000pt;}
._2_c00136{width:21.429333pt;}
._22_c00136{width:22.698667pt;}
._20_c00136{width:24.490667pt;}
._33_c00136{width:26.282667pt;}
._6_c00136{width:27.733333pt;}
._1c_c00136{width:28.757333pt;}
._24_c00136{width:30.720000pt;}
._11_c00136{width:32.597333pt;}
._13_c00136{width:34.304000pt;}
._23_c00136{width:36.693333pt;}
._25_c00136{width:38.058667pt;}
._27_c00136{width:40.277333pt;}
._1a_c00136{width:41.898667pt;}
._10_c00136{width:44.373333pt;}
._e_c00136{width:45.482667pt;}
._14_c00136{width:46.848000pt;}
._f_c00136{width:48.725333pt;}
._17_c00136{width:50.773333pt;}
._30_c00136{width:53.418667pt;}
._35_c00136{width:55.616000pt;}
._37_c00136{width:58.709333pt;}
._31_c00136{width:63.488000pt;}
._32_c00136{width:65.194667pt;}
._2a_c00136{width:67.040000pt;}
._38_c00136{width:76.288000pt;}
._2f_c00136{width:78.656000pt;}
._4_c00136{width:94.122667pt;}
._28_c00136{width:111.466667pt;}
._29_c00136{width:156.501333pt;}
._3a_c00136{width:182.101333pt;}
._3b_c00136{width:186.026667pt;}
._34_c00136{width:304.554667pt;}
._8_c00136{width:581.034667pt;}
._3c_c00136{width:722.517333pt;}
.fs4_c00136{font-size:42.666667pt;}
.fs0_c00136{font-size:74.666667pt;}
.fs2_c00136{font-size:77.333333pt;}
.fs1_c00136{font-size:85.333333pt;}
.fs3_c00136{font-size:106.666667pt;}
.y0_c00136{bottom:0.000000pt;}
.y23_c00136{bottom:2.760000pt;}
.y22_c00136{bottom:6.425219pt;}
.y21_c00136{bottom:92.813333pt;}
.y1f_c00136{bottom:248.146667pt;}
.y1e_c00136{bottom:279.346667pt;}
.y1d_c00136{bottom:308.680000pt;}
.y1c_c00136{bottom:338.413333pt;}
.y1b_c00136{bottom:368.413333pt;}
.y1a_c00136{bottom:398.146667pt;}
.y19_c00136{bottom:428.413333pt;}
.y18_c00136{bottom:457.880000pt;}
.y17_c00136{bottom:487.880000pt;}
.y16_c00136{bottom:517.480000pt;}
.y20_c00136{bottom:525.613333pt;}
.y15_c00136{bottom:547.213333pt;}
.y14_c00136{bottom:576.413333pt;}
.y13_c00136{bottom:606.413333pt;}
.y12_c00136{bottom:636.013333pt;}
.y11_c00136{bottom:666.013333pt;}
.y10_c00136{bottom:695.480000pt;}
.yf_c00136{bottom:725.080000pt;}
.ye_c00136{bottom:754.813333pt;}
.yd_c00136{bottom:784.013333pt;}
.yc_c00136{bottom:813.880000pt;}
.yb_c00136{bottom:843.080000pt;}
.ya_c00136{bottom:872.680000pt;}
.y9_c00136{bottom:902.813333pt;}
.y8_c00136{bottom:932.280000pt;}
.y7_c00136{bottom:961.880000pt;}
.y6_c00136{bottom:991.480000pt;}
.y5_c00136{bottom:1021.213333pt;}
.y4_c00136{bottom:1050.680000pt;}
.y3_c00136{bottom:1080.013333pt;}
.y2_c00136{bottom:1109.480000pt;}
.y1_c00136{bottom:1139.213333pt;}
.h5_c00136{height:11.733399pt;}
.h6_c00136{height:38.937500pt;}
.h3_c00136{height:97.912760pt;}
.h2_c00136{height:108.041667pt;}
.h4_c00136{height:113.813333pt;}
.h1_c00136{height:1199.333333pt;}
.h0_c00136{height:1199.533333pt;}
.w2_c00136{width:93.222667pt;}
.w1_c00136{width:760.666667pt;}
.w0_c00136{width:760.800000pt;}
.x0_c00136{left:0.000000pt;}
.xb_c00136{left:13.200000pt;}
.xa_c00136{left:14.133333pt;}
.x9_c00136{left:15.066667pt;}
.x7_c00136{left:16.000000pt;}
.x8_c00136{left:17.066667pt;}
.x5_c00136{left:18.933333pt;}
.x4_c00136{left:20.000000pt;}
.x3_c00136{left:21.333333pt;}
.x6_c00136{left:22.400000pt;}
.x2_c00136{left:23.733333pt;}
.x1_c00136{left:73.066667pt;}
.xd_c00136{left:257.066667pt;}
.xe_c00136{left:337.568197pt;}
.xc_c00136{left:658.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_239eae90c8462ab6cbdea975.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_e28201fdaff2217c836cb5db.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_bf5684b5f4efd48d18d0733f.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_fb4bd3233cc618982bd41c32.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00137;src:url('chunks/assets/font_4beca4e0bf509b26274eae8c.woff2')format("woff");}.ff6_c00137{font-family:ff6_c00137;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00137;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00137{font-family:ff7_c00137;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls2_c00137{letter-spacing:0.000000px;}
.ls1_c00137{letter-spacing:1.200000px;}
.ls0_c00137{letter-spacing:39.600000px;}
.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:-51.000000px;}
.ws0_c00137{word-spacing:-41.250000px;}
.ws2_c00137{word-spacing:-14.460000px;}
.ws4_c00137{word-spacing:0.000000px;}
.ws3_c00137{word-spacing:3.948000px;}
._1e_c00137{margin-left:-58.575000px;}
._12_c00137{margin-left:-48.345000px;}
._8_c00137{margin-left:-43.230000px;}
._e_c00137{margin-left:-40.947000px;}
._13_c00137{margin-left:-39.600000px;}
._7_c00137{margin-left:-37.683000px;}
._1f_c00137{margin-left:-35.778000px;}
._a_c00137{margin-left:-34.650000px;}
._17_c00137{margin-left:-33.369000px;}
._1d_c00137{margin-left:-32.313000px;}
._23_c00137{margin-left:-31.185000px;}
._b_c00137{margin-left:-30.030000px;}
._19_c00137{margin-left:-28.545000px;}
._41_c00137{margin-left:-27.291000px;}
._10_c00137{margin-left:-24.612000px;}
._f_c00137{margin-left:-23.100000px;}
._c_c00137{margin-left:-21.285000px;}
._18_c00137{margin-left:-19.782000px;}
._d_c00137{margin-left:-18.645000px;}
._11_c00137{margin-left:-16.995000px;}
._1b_c00137{margin-left:-15.606000px;}
._1a_c00137{margin-left:-14.043000px;}
._14_c00137{margin-left:-12.693000px;}
._2d_c00137{margin-left:-11.691000px;}
._0_c00137{margin-left:-10.368000px;}
._9_c00137{margin-left:-7.590000px;}
._28_c00137{margin-left:-6.240000px;}
._1_c00137{margin-left:-4.992000px;}
._2f_c00137{margin-left:-3.840000px;}
._3_c00137{margin-left:-2.400000px;}
._2a_c00137{margin-left:-1.152000px;}
._27_c00137{width:1.512000px;}
._6_c00137{width:2.976000px;}
._5_c00137{width:4.608000px;}
._21_c00137{width:6.537000px;}
._30_c00137{width:7.575000px;}
._34_c00137{width:9.183000px;}
._24_c00137{width:10.257000px;}
._20_c00137{width:12.102000px;}
._25_c00137{width:13.524000px;}
._32_c00137{width:14.658000px;}
._15_c00137{width:16.005000px;}
._42_c00137{width:17.331000px;}
._36_c00137{width:18.456000px;}
._33_c00137{width:20.274000px;}
._2_c00137{width:21.312000px;}
._31_c00137{width:23.985000px;}
._45_c00137{width:25.335000px;}
._3a_c00137{width:26.403000px;}
._2b_c00137{width:27.636000px;}
._29_c00137{width:29.568000px;}
._3d_c00137{width:31.104000px;}
._16_c00137{width:32.670000px;}
._26_c00137{width:34.920000px;}
._3b_c00137{width:36.024000px;}
._40_c00137{width:37.581000px;}
._3c_c00137{width:38.673000px;}
._3e_c00137{width:40.380000px;}
._2e_c00137{width:41.589000px;}
._38_c00137{width:43.056000px;}
._4_c00137{width:47.712000px;}
._2c_c00137{width:48.741000px;}
._37_c00137{width:51.810000px;}
._22_c00137{width:52.824000px;}
._39_c00137{width:53.973000px;}
._46_c00137{width:55.464000px;}
._49_c00137{width:57.792000px;}
._4a_c00137{width:62.523000px;}
._48_c00137{width:68.952000px;}
._1c_c00137{width:70.518000px;}
._47_c00137{width:78.903000px;}
._3f_c00137{width:168.870000px;}
._43_c00137{width:174.561000px;}
._35_c00137{width:177.120000px;}
._44_c00137{width:440.565000px;}
._4b_c00137{width:833.742000px;}
.fc2_c00137{color:transparent;}
.fc1_c00137{color:rgb(128,128,128);}
.fc0_c00137{color:rgb(0,0,0);}
.fs7_c00137{font-size:48.000000px;}
.fs4_c00137{font-size:60.000000px;}
.fs2_c00137{font-size:84.000000px;}
.fs6_c00137{font-size:87.000000px;}
.fs0_c00137{font-size:96.000000px;}
.fs3_c00137{font-size:102.000000px;}
.fs5_c00137{font-size:144.000000px;}
.fs1_c00137{font-size:165.000000px;}
.y0_c00137{bottom:0.000000px;}
.y34_c00137{bottom:3.105000px;}
.y33_c00137{bottom:7.228357px;}
.y32_c00137{bottom:116.730000px;}
.y31_c00137{bottom:153.330000px;}
.y30_c00137{bottom:188.280000px;}
.y2f_c00137{bottom:221.730000px;}
.yf_c00137{bottom:229.230000px;}
.y2e_c00137{bottom:255.780000px;}
.y2d_c00137{bottom:289.230000px;}
.ye_c00137{bottom:311.580000px;}
.y2c_c00137{bottom:323.280000px;}
.y2b_c00137{bottom:357.480000px;}
.y2a_c00137{bottom:391.530000px;}
.yd_c00137{bottom:409.680000px;}
.y29_c00137{bottom:424.980000px;}
.y28_c00137{bottom:460.080000px;}
.y27_c00137{bottom:493.380000px;}
.y26_c00137{bottom:527.880000px;}
.y25_c00137{bottom:561.930000px;}
.y24_c00137{bottom:594.630000px;}
.yc_c00137{bottom:602.880000px;}
.y23_c00137{bottom:629.730000px;}
.yb_c00137{bottom:631.530000px;}
.y22_c00137{bottom:662.580000px;}
.ya_c00137{bottom:667.230000px;}
.y21_c00137{bottom:696.930000px;}
.y20_c00137{bottom:729.630000px;}
.y1f_c00137{bottom:763.830000px;}
.y1e_c00137{bottom:797.280000px;}
.y1d_c00137{bottom:831.330000px;}
.y1c_c00137{bottom:864.330000px;}
.y1b_c00137{bottom:898.530000px;}
.y9_c00137{bottom:921.480000px;}
.y1a_c00137{bottom:930.780000px;}
.y8_c00137{bottom:957.930000px;}
.y19_c00137{bottom:964.230000px;}
.y7_c00137{bottom:987.480000px;}
.y18_c00137{bottom:997.080000px;}
.y6_c00137{bottom:1017.180000px;}
.y17_c00137{bottom:1030.830000px;}
.y5_c00137{bottom:1045.980000px;}
.y16_c00137{bottom:1063.230000px;}
.y4_c00137{bottom:1076.280000px;}
.y15_c00137{bottom:1096.830000px;}
.y3_c00137{bottom:1104.930000px;}
.y14_c00137{bottom:1130.280000px;}
.y2_c00137{bottom:1133.280000px;}
.y1_c00137{bottom:1161.030000px;}
.y13_c00137{bottom:1164.030000px;}
.y12_c00137{bottom:1210.980000px;}
.y11_c00137{bottom:1235.580000px;}
.y10_c00137{bottom:1285.980000px;}
.h8_c00137{height:13.200074px;}
.h9_c00137{height:43.804688px;}
.h5_c00137{height:75.966797px;}
.h7_c00137{height:110.151855px;}
.h2_c00137{height:121.546875px;}
.h4_c00137{height:161.857910px;}
.h3_c00137{height:161.938477px;}
.h6_c00137{height:182.320312px;}
.h0_c00137{height:1382.700000px;}
.h1_c00137{height:1383.000000px;}
.w2_c00137{width:104.875500px;}
.w0_c00137{width:863.175000px;}
.w1_c00137{width:863.250000px;}
.x0_c00137{left:0.000000px;}
.x3_c00137{left:68.850000px;}
.x1_c00137{left:69.900000px;}
.x4_c00137{left:73.200000px;}
.x2_c00137{left:99.150000px;}
.x7_c00137{left:110.400000px;}
.xa_c00137{left:169.350000px;}
.x8_c00137{left:174.150000px;}
.x9_c00137{left:180.150000px;}
.x5_c00137{left:182.250000px;}
.x6_c00137{left:238.650000px;}
.x17_c00137{left:277.350000px;}
.x16_c00137{left:282.150000px;}
.x15_c00137{left:283.200000px;}
.x18_c00137{left:284.400000px;}
.xf_c00137{left:285.450000px;}
.x12_c00137{left:286.500000px;}
.x11_c00137{left:287.550000px;}
.x10_c00137{left:288.600000px;}
.xb_c00137{left:328.050000px;}
.xe_c00137{left:335.700000px;}
.x13_c00137{left:337.800000px;}
.x14_c00137{left:338.850000px;}
.xd_c00137{left:374.250000px;}
.x1a_c00137{left:383.401749px;}
.xc_c00137{left:430.200000px;}
.x19_c00137{left:519.000000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls2_c00137{letter-spacing:0.000000pt;}
.ls1_c00137{letter-spacing:1.066667pt;}
.ls0_c00137{letter-spacing:35.200000pt;}
.ws1_c00137{word-spacing:-45.333333pt;}
.ws0_c00137{word-spacing:-36.666667pt;}
.ws2_c00137{word-spacing:-12.853333pt;}
.ws4_c00137{word-spacing:0.000000pt;}
.ws3_c00137{word-spacing:3.509333pt;}
._1e_c00137{margin-left:-52.066667pt;}
._12_c00137{margin-left:-42.973333pt;}
._8_c00137{margin-left:-38.426667pt;}
._e_c00137{margin-left:-36.397333pt;}
._13_c00137{margin-left:-35.200000pt;}
._7_c00137{margin-left:-33.496000pt;}
._1f_c00137{margin-left:-31.802667pt;}
._a_c00137{margin-left:-30.800000pt;}
._17_c00137{margin-left:-29.661333pt;}
._1d_c00137{margin-left:-28.722667pt;}
._23_c00137{margin-left:-27.720000pt;}
._b_c00137{margin-left:-26.693333pt;}
._19_c00137{margin-left:-25.373333pt;}
._41_c00137{margin-left:-24.258667pt;}
._10_c00137{margin-left:-21.877333pt;}
._f_c00137{margin-left:-20.533333pt;}
._c_c00137{margin-left:-18.920000pt;}
._18_c00137{margin-left:-17.584000pt;}
._d_c00137{margin-left:-16.573333pt;}
._11_c00137{margin-left:-15.106667pt;}
._1b_c00137{margin-left:-13.872000pt;}
._1a_c00137{margin-left:-12.482667pt;}
._14_c00137{margin-left:-11.282667pt;}
._2d_c00137{margin-left:-10.392000pt;}
._0_c00137{margin-left:-9.216000pt;}
._9_c00137{margin-left:-6.746667pt;}
._28_c00137{margin-left:-5.546667pt;}
._1_c00137{margin-left:-4.437333pt;}
._2f_c00137{margin-left:-3.413333pt;}
._3_c00137{margin-left:-2.133333pt;}
._2a_c00137{margin-left:-1.024000pt;}
._27_c00137{width:1.344000pt;}
._6_c00137{width:2.645333pt;}
._5_c00137{width:4.096000pt;}
._21_c00137{width:5.810667pt;}
._30_c00137{width:6.733333pt;}
._34_c00137{width:8.162667pt;}
._24_c00137{width:9.117333pt;}
._20_c00137{width:10.757333pt;}
._25_c00137{width:12.021333pt;}
._32_c00137{width:13.029333pt;}
._15_c00137{width:14.226667pt;}
._42_c00137{width:15.405333pt;}
._36_c00137{width:16.405333pt;}
._33_c00137{width:18.021333pt;}
._2_c00137{width:18.944000pt;}
._31_c00137{width:21.320000pt;}
._45_c00137{width:22.520000pt;}
._3a_c00137{width:23.469333pt;}
._2b_c00137{width:24.565333pt;}
._29_c00137{width:26.282667pt;}
._3d_c00137{width:27.648000pt;}
._16_c00137{width:29.040000pt;}
._26_c00137{width:31.040000pt;}
._3b_c00137{width:32.021333pt;}
._40_c00137{width:33.405333pt;}
._3c_c00137{width:34.376000pt;}
._3e_c00137{width:35.893333pt;}
._2e_c00137{width:36.968000pt;}
._38_c00137{width:38.272000pt;}
._4_c00137{width:42.410667pt;}
._2c_c00137{width:43.325333pt;}
._37_c00137{width:46.053333pt;}
._22_c00137{width:46.954667pt;}
._39_c00137{width:47.976000pt;}
._46_c00137{width:49.301333pt;}
._49_c00137{width:51.370667pt;}
._4a_c00137{width:55.576000pt;}
._48_c00137{width:61.290667pt;}
._1c_c00137{width:62.682667pt;}
._47_c00137{width:70.136000pt;}
._3f_c00137{width:150.106667pt;}
._43_c00137{width:155.165333pt;}
._35_c00137{width:157.440000pt;}
._44_c00137{width:391.613333pt;}
._4b_c00137{width:741.104000pt;}
.fs7_c00137{font-size:42.666667pt;}
.fs4_c00137{font-size:53.333333pt;}
.fs2_c00137{font-size:74.666667pt;}
.fs6_c00137{font-size:77.333333pt;}
.fs0_c00137{font-size:85.333333pt;}
.fs3_c00137{font-size:90.666667pt;}
.fs5_c00137{font-size:128.000000pt;}
.fs1_c00137{font-size:146.666667pt;}
.y0_c00137{bottom:0.000000pt;}
.y34_c00137{bottom:2.760000pt;}
.y33_c00137{bottom:6.425206pt;}
.y32_c00137{bottom:103.760000pt;}
.y31_c00137{bottom:136.293333pt;}
.y30_c00137{bottom:167.360000pt;}
.y2f_c00137{bottom:197.093333pt;}
.yf_c00137{bottom:203.760000pt;}
.y2e_c00137{bottom:227.360000pt;}
.y2d_c00137{bottom:257.093333pt;}
.ye_c00137{bottom:276.960000pt;}
.y2c_c00137{bottom:287.360000pt;}
.y2b_c00137{bottom:317.760000pt;}
.y2a_c00137{bottom:348.026667pt;}
.yd_c00137{bottom:364.160000pt;}
.y29_c00137{bottom:377.760000pt;}
.y28_c00137{bottom:408.960000pt;}
.y27_c00137{bottom:438.560000pt;}
.y26_c00137{bottom:469.226667pt;}
.y25_c00137{bottom:499.493333pt;}
.y24_c00137{bottom:528.560000pt;}
.yc_c00137{bottom:535.893333pt;}
.y23_c00137{bottom:559.760000pt;}
.yb_c00137{bottom:561.360000pt;}
.y22_c00137{bottom:588.960000pt;}
.ya_c00137{bottom:593.093333pt;}
.y21_c00137{bottom:619.493333pt;}
.y20_c00137{bottom:648.560000pt;}
.y1f_c00137{bottom:678.960000pt;}
.y1e_c00137{bottom:708.693333pt;}
.y1d_c00137{bottom:738.960000pt;}
.y1c_c00137{bottom:768.293333pt;}
.y1b_c00137{bottom:798.693333pt;}
.y9_c00137{bottom:819.093333pt;}
.y1a_c00137{bottom:827.360000pt;}
.y8_c00137{bottom:851.493333pt;}
.y19_c00137{bottom:857.093333pt;}
.y7_c00137{bottom:877.760000pt;}
.y18_c00137{bottom:886.293333pt;}
.y6_c00137{bottom:904.160000pt;}
.y17_c00137{bottom:916.293333pt;}
.y5_c00137{bottom:929.760000pt;}
.y16_c00137{bottom:945.093333pt;}
.y4_c00137{bottom:956.693333pt;}
.y15_c00137{bottom:974.960000pt;}
.y3_c00137{bottom:982.160000pt;}
.y14_c00137{bottom:1004.693333pt;}
.y2_c00137{bottom:1007.360000pt;}
.y1_c00137{bottom:1032.026667pt;}
.y13_c00137{bottom:1034.693333pt;}
.y12_c00137{bottom:1076.426667pt;}
.y11_c00137{bottom:1098.293333pt;}
.y10_c00137{bottom:1143.093333pt;}
.h8_c00137{height:11.733399pt;}
.h9_c00137{height:38.937500pt;}
.h5_c00137{height:67.526042pt;}
.h7_c00137{height:97.912760pt;}
.h2_c00137{height:108.041667pt;}
.h4_c00137{height:143.873698pt;}
.h3_c00137{height:143.945312pt;}
.h6_c00137{height:162.062500pt;}
.h0_c00137{height:1229.066667pt;}
.h1_c00137{height:1229.333333pt;}
.w2_c00137{width:93.222667pt;}
.w0_c00137{width:767.266667pt;}
.w1_c00137{width:767.333333pt;}
.x0_c00137{left:0.000000pt;}
.x3_c00137{left:61.200000pt;}
.x1_c00137{left:62.133333pt;}
.x4_c00137{left:65.066667pt;}
.x2_c00137{left:88.133333pt;}
.x7_c00137{left:98.133333pt;}
.xa_c00137{left:150.533333pt;}
.x8_c00137{left:154.800000pt;}
.x9_c00137{left:160.133333pt;}
.x5_c00137{left:162.000000pt;}
.x6_c00137{left:212.133333pt;}
.x17_c00137{left:246.533333pt;}
.x16_c00137{left:250.800000pt;}
.x15_c00137{left:251.733333pt;}
.x18_c00137{left:252.800000pt;}
.xf_c00137{left:253.733333pt;}
.x12_c00137{left:254.666667pt;}
.x11_c00137{left:255.600000pt;}
.x10_c00137{left:256.533333pt;}
.xb_c00137{left:291.600000pt;}
.xe_c00137{left:298.400000pt;}
.x13_c00137{left:300.266667pt;}
.x14_c00137{left:301.200000pt;}
.xd_c00137{left:332.666667pt;}
.x1a_c00137{left:340.801554pt;}
.xc_c00137{left:382.400000pt;}
.x19_c00137{left:461.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b61e579accd5e8dbe8b67210.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_e2ea4e054eb1a52642ed0b27.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_7e4246f307089aa5f03ba7e2.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.v1_c00138{vertical-align:15.000000px;}
.ls1_c00138{letter-spacing:0.000000px;}
.ls0_c00138{letter-spacing:3.672000px;}
.ls3_c00138{letter-spacing:6.000000px;}
.ls4_c00138{letter-spacing:12.000000px;}
.ls2_c00138{letter-spacing:15.000000px;}
.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;}
}
.ws3_c00138{word-spacing:-51.000000px;}
.ws0_c00138{word-spacing:-49.704000px;}
.ws5_c00138{word-spacing:-25.305000px;}
.ws1_c00138{word-spacing:-23.136000px;}
.ws2_c00138{word-spacing:-20.244000px;}
.ws4_c00138{word-spacing:-18.798000px;}
.ws6_c00138{word-spacing:0.000000px;}
._4a_c00138{margin-left:-69.600000px;}
._40_c00138{margin-left:-65.070000px;}
._3f_c00138{margin-left:-51.069000px;}
._37_c00138{margin-left:-49.590000px;}
._42_c00138{margin-left:-44.892000px;}
._44_c00138{margin-left:-36.225000px;}
._34_c00138{margin-left:-32.748000px;}
._1e_c00138{margin-left:-30.336000px;}
._39_c00138{margin-left:-24.903000px;}
._48_c00138{margin-left:-23.403000px;}
._14_c00138{margin-left:-18.336000px;}
._16_c00138{margin-left:-15.360000px;}
._3b_c00138{margin-left:-13.824000px;}
._17_c00138{margin-left:-11.712000px;}
._2d_c00138{margin-left:-9.264000px;}
._2c_c00138{margin-left:-8.256000px;}
._b_c00138{margin-left:-6.336000px;}
._1a_c00138{margin-left:-4.464000px;}
._6_c00138{margin-left:-3.360000px;}
._11_c00138{margin-left:-2.304000px;}
._4_c00138{margin-left:-1.248000px;}
._9_c00138{width:1.248000px;}
._7_c00138{width:2.400000px;}
._8_c00138{width:3.840000px;}
._d_c00138{width:5.088000px;}
._2_c00138{width:6.240000px;}
._c_c00138{width:7.392000px;}
._1d_c00138{width:8.448000px;}
._0_c00138{width:9.504000px;}
._1_c00138{width:10.944000px;}
._a_c00138{width:12.192000px;}
._5_c00138{width:14.592000px;}
._23_c00138{width:16.416000px;}
._3_c00138{width:17.760000px;}
._26_c00138{width:19.776000px;}
._1c_c00138{width:21.840000px;}
._29_c00138{width:24.288000px;}
._33_c00138{width:26.400000px;}
._21_c00138{width:27.456000px;}
._22_c00138{width:28.896000px;}
._12_c00138{width:31.008000px;}
._2e_c00138{width:32.352000px;}
._e_c00138{width:33.408000px;}
._20_c00138{width:35.040000px;}
._27_c00138{width:36.768000px;}
._f_c00138{width:39.072000px;}
._24_c00138{width:40.416000px;}
._10_c00138{width:42.144000px;}
._1b_c00138{width:43.884000px;}
._28_c00138{width:45.300000px;}
._2a_c00138{width:47.328000px;}
._25_c00138{width:49.440000px;}
._43_c00138{width:50.460000px;}
._3e_c00138{width:54.540000px;}
._2b_c00138{width:62.292000px;}
._30_c00138{width:64.704000px;}
._32_c00138{width:67.488000px;}
._2f_c00138{width:69.612000px;}
._31_c00138{width:71.520000px;}
._38_c00138{width:77.430000px;}
._36_c00138{width:80.160000px;}
._47_c00138{width:88.962000px;}
._3c_c00138{width:94.320000px;}
._46_c00138{width:118.347000px;}
._15_c00138{width:124.704000px;}
._41_c00138{width:163.908000px;}
._35_c00138{width:240.396000px;}
._45_c00138{width:285.084000px;}
._18_c00138{width:290.976000px;}
._49_c00138{width:299.247000px;}
._19_c00138{width:359.616000px;}
._1f_c00138{width:400.896000px;}
._13_c00138{width:445.152000px;}
._3a_c00138{width:493.212000px;}
._3d_c00138{width:501.792000px;}
.fc2_c00138{color:transparent;}
.fc1_c00138{color:rgb(128,128,128);}
.fc0_c00138{color:rgb(0,0,0);}
.fs7_c00138{font-size:30.000000px;}
.fs1_c00138{font-size:36.000000px;}
.fsa_c00138{font-size:48.000000px;}
.fs3_c00138{font-size:60.000000px;}
.fs8_c00138{font-size:78.000000px;}
.fs4_c00138{font-size:84.000000px;}
.fs6_c00138{font-size:87.000000px;}
.fs0_c00138{font-size:96.000000px;}
.fs5_c00138{font-size:102.000000px;}
.fs9_c00138{font-size:105.000000px;}
.fs2_c00138{font-size:144.000000px;}
.y0_c00138{bottom:0.000000px;}
.y26_c00138{bottom:3.105000px;}
.y25_c00138{bottom:7.228369px;}
.y24_c00138{bottom:125.820000px;}
.y23_c00138{bottom:274.770000px;}
.y22_c00138{bottom:305.670000px;}
.y21_c00138{bottom:329.370000px;}
.y1c_c00138{bottom:346.170000px;}
.y20_c00138{bottom:363.420000px;}
.y1b_c00138{bottom:367.920000px;}
.y1f_c00138{bottom:397.170000px;}
.y1e_c00138{bottom:430.620000px;}
.y1d_c00138{bottom:464.070000px;}
.y1a_c00138{bottom:496.770000px;}
.y19_c00138{bottom:531.270000px;}
.y18_c00138{bottom:565.620000px;}
.y17_c00138{bottom:598.620000px;}
.y16_c00138{bottom:632.070000px;}
.y15_c00138{bottom:664.920000px;}
.y14_c00138{bottom:698.670000px;}
.y13_c00138{bottom:731.970000px;}
.y12_c00138{bottom:765.720000px;}
.y11_c00138{bottom:799.170000px;}
.y10_c00138{bottom:832.170000px;}
.yf_c00138{bottom:864.720000px;}
.ye_c00138{bottom:898.020000px;}
.yd_c00138{bottom:931.170000px;}
.yc_c00138{bottom:963.870000px;}
.yb_c00138{bottom:998.370000px;}
.y8_c00138{bottom:1037.070000px;}
.y7_c00138{bottom:1087.470000px;}
.ya_c00138{bottom:1109.970000px;}
.y6_c00138{bottom:1164.720000px;}
.y9_c00138{bottom:1175.220000px;}
.y5_c00138{bottom:1198.020000px;}
.y4_c00138{bottom:1231.470000px;}
.y3_c00138{bottom:1264.620000px;}
.y2_c00138{bottom:1297.920000px;}
.y1_c00138{bottom:1326.270000px;}
.h8_c00138{height:13.200073px;}
.h9_c00138{height:43.804688px;}
.h4_c00138{height:75.966797px;}
.h5_c00138{height:110.151855px;}
.h2_c00138{height:121.546875px;}
.h6_c00138{height:125.151855px;}
.h7_c00138{height:132.941895px;}
.h3_c00138{height:182.320312px;}
.h0_c00138{height:1383.450000px;}
.h1_c00138{height:1383.750000px;}
.w2_c00138{width:104.875500px;}
.w0_c00138{width:878.025000px;}
.w1_c00138{width:878.250000px;}
.x0_c00138{left:0.000000px;}
.xb_c00138{left:32.100000px;}
.xc_c00138{left:33.300000px;}
.xa_c00138{left:34.350000px;}
.x3_c00138{left:37.050000px;}
.x2_c00138{left:38.700000px;}
.x5_c00138{left:86.100000px;}
.x4_c00138{left:96.900000px;}
.xd_c00138{left:199.800000px;}
.x6_c00138{left:204.900000px;}
.xe_c00138{left:207.600000px;}
.x10_c00138{left:235.800000px;}
.xf_c00138{left:336.900000px;}
.x15_c00138{left:390.826721px;}
.x13_c00138{left:392.850000px;}
.x11_c00138{left:416.100000px;}
.x9_c00138{left:425.850000px;}
.x1_c00138{left:530.100000px;}
.x12_c00138{left:540.000000px;}
.x14_c00138{left:558.600000px;}
.x7_c00138{left:607.800000px;}
.x8_c00138{left:616.500000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:13.333333pt;}
.ls1_c00138{letter-spacing:0.000000pt;}
.ls0_c00138{letter-spacing:3.264000pt;}
.ls3_c00138{letter-spacing:5.333333pt;}
.ls4_c00138{letter-spacing:10.666667pt;}
.ls2_c00138{letter-spacing:13.333333pt;}
.ws3_c00138{word-spacing:-45.333333pt;}
.ws0_c00138{word-spacing:-44.181333pt;}
.ws5_c00138{word-spacing:-22.493333pt;}
.ws1_c00138{word-spacing:-20.565333pt;}
.ws2_c00138{word-spacing:-17.994667pt;}
.ws4_c00138{word-spacing:-16.709333pt;}
.ws6_c00138{word-spacing:0.000000pt;}
._4a_c00138{margin-left:-61.866667pt;}
._40_c00138{margin-left:-57.840000pt;}
._3f_c00138{margin-left:-45.394667pt;}
._37_c00138{margin-left:-44.080000pt;}
._42_c00138{margin-left:-39.904000pt;}
._44_c00138{margin-left:-32.200000pt;}
._34_c00138{margin-left:-29.109333pt;}
._1e_c00138{margin-left:-26.965333pt;}
._39_c00138{margin-left:-22.136000pt;}
._48_c00138{margin-left:-20.802667pt;}
._14_c00138{margin-left:-16.298667pt;}
._16_c00138{margin-left:-13.653333pt;}
._3b_c00138{margin-left:-12.288000pt;}
._17_c00138{margin-left:-10.410667pt;}
._2d_c00138{margin-left:-8.234667pt;}
._2c_c00138{margin-left:-7.338667pt;}
._b_c00138{margin-left:-5.632000pt;}
._1a_c00138{margin-left:-3.968000pt;}
._6_c00138{margin-left:-2.986667pt;}
._11_c00138{margin-left:-2.048000pt;}
._4_c00138{margin-left:-1.109333pt;}
._9_c00138{width:1.109333pt;}
._7_c00138{width:2.133333pt;}
._8_c00138{width:3.413333pt;}
._d_c00138{width:4.522667pt;}
._2_c00138{width:5.546667pt;}
._c_c00138{width:6.570667pt;}
._1d_c00138{width:7.509333pt;}
._0_c00138{width:8.448000pt;}
._1_c00138{width:9.728000pt;}
._a_c00138{width:10.837333pt;}
._5_c00138{width:12.970667pt;}
._23_c00138{width:14.592000pt;}
._3_c00138{width:15.786667pt;}
._26_c00138{width:17.578667pt;}
._1c_c00138{width:19.413333pt;}
._29_c00138{width:21.589333pt;}
._33_c00138{width:23.466667pt;}
._21_c00138{width:24.405333pt;}
._22_c00138{width:25.685333pt;}
._12_c00138{width:27.562667pt;}
._2e_c00138{width:28.757333pt;}
._e_c00138{width:29.696000pt;}
._20_c00138{width:31.146667pt;}
._27_c00138{width:32.682667pt;}
._f_c00138{width:34.730667pt;}
._24_c00138{width:35.925333pt;}
._10_c00138{width:37.461333pt;}
._1b_c00138{width:39.008000pt;}
._28_c00138{width:40.266667pt;}
._2a_c00138{width:42.069333pt;}
._25_c00138{width:43.946667pt;}
._43_c00138{width:44.853333pt;}
._3e_c00138{width:48.480000pt;}
._2b_c00138{width:55.370667pt;}
._30_c00138{width:57.514667pt;}
._32_c00138{width:59.989333pt;}
._2f_c00138{width:61.877333pt;}
._31_c00138{width:63.573333pt;}
._38_c00138{width:68.826667pt;}
._36_c00138{width:71.253333pt;}
._47_c00138{width:79.077333pt;}
._3c_c00138{width:83.840000pt;}
._46_c00138{width:105.197333pt;}
._15_c00138{width:110.848000pt;}
._41_c00138{width:145.696000pt;}
._35_c00138{width:213.685333pt;}
._45_c00138{width:253.408000pt;}
._18_c00138{width:258.645333pt;}
._49_c00138{width:265.997333pt;}
._19_c00138{width:319.658667pt;}
._1f_c00138{width:356.352000pt;}
._13_c00138{width:395.690667pt;}
._3a_c00138{width:438.410667pt;}
._3d_c00138{width:446.037333pt;}
.fs7_c00138{font-size:26.666667pt;}
.fs1_c00138{font-size:32.000000pt;}
.fsa_c00138{font-size:42.666667pt;}
.fs3_c00138{font-size:53.333333pt;}
.fs8_c00138{font-size:69.333333pt;}
.fs4_c00138{font-size:74.666667pt;}
.fs6_c00138{font-size:77.333333pt;}
.fs0_c00138{font-size:85.333333pt;}
.fs5_c00138{font-size:90.666667pt;}
.fs9_c00138{font-size:93.333333pt;}
.fs2_c00138{font-size:128.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y26_c00138{bottom:2.760000pt;}
.y25_c00138{bottom:6.425217pt;}
.y24_c00138{bottom:111.840000pt;}
.y23_c00138{bottom:244.240000pt;}
.y22_c00138{bottom:271.706667pt;}
.y21_c00138{bottom:292.773333pt;}
.y1c_c00138{bottom:307.706667pt;}
.y20_c00138{bottom:323.040000pt;}
.y1b_c00138{bottom:327.040000pt;}
.y1f_c00138{bottom:353.040000pt;}
.y1e_c00138{bottom:382.773333pt;}
.y1d_c00138{bottom:412.506667pt;}
.y1a_c00138{bottom:441.573333pt;}
.y19_c00138{bottom:472.240000pt;}
.y18_c00138{bottom:502.773333pt;}
.y17_c00138{bottom:532.106667pt;}
.y16_c00138{bottom:561.840000pt;}
.y15_c00138{bottom:591.040000pt;}
.y14_c00138{bottom:621.040000pt;}
.y13_c00138{bottom:650.640000pt;}
.y12_c00138{bottom:680.640000pt;}
.y11_c00138{bottom:710.373333pt;}
.y10_c00138{bottom:739.706667pt;}
.yf_c00138{bottom:768.640000pt;}
.ye_c00138{bottom:798.240000pt;}
.yd_c00138{bottom:827.706667pt;}
.yc_c00138{bottom:856.773333pt;}
.yb_c00138{bottom:887.440000pt;}
.y8_c00138{bottom:921.840000pt;}
.y7_c00138{bottom:966.640000pt;}
.ya_c00138{bottom:986.640000pt;}
.y6_c00138{bottom:1035.306667pt;}
.y9_c00138{bottom:1044.640000pt;}
.y5_c00138{bottom:1064.906667pt;}
.y4_c00138{bottom:1094.640000pt;}
.y3_c00138{bottom:1124.106667pt;}
.y2_c00138{bottom:1153.706667pt;}
.y1_c00138{bottom:1178.906667pt;}
.h8_c00138{height:11.733399pt;}
.h9_c00138{height:38.937500pt;}
.h4_c00138{height:67.526042pt;}
.h5_c00138{height:97.912760pt;}
.h2_c00138{height:108.041667pt;}
.h6_c00138{height:111.246094pt;}
.h7_c00138{height:118.170573pt;}
.h3_c00138{height:162.062500pt;}
.h0_c00138{height:1229.733333pt;}
.h1_c00138{height:1230.000000pt;}
.w2_c00138{width:93.222667pt;}
.w0_c00138{width:780.466667pt;}
.w1_c00138{width:780.666667pt;}
.x0_c00138{left:0.000000pt;}
.xb_c00138{left:28.533333pt;}
.xc_c00138{left:29.600000pt;}
.xa_c00138{left:30.533333pt;}
.x3_c00138{left:32.933333pt;}
.x2_c00138{left:34.400000pt;}
.x5_c00138{left:76.533333pt;}
.x4_c00138{left:86.133333pt;}
.xd_c00138{left:177.600000pt;}
.x6_c00138{left:182.133333pt;}
.xe_c00138{left:184.533333pt;}
.x10_c00138{left:209.600000pt;}
.xf_c00138{left:299.466667pt;}
.x15_c00138{left:347.401530pt;}
.x13_c00138{left:349.200000pt;}
.x11_c00138{left:369.866667pt;}
.x9_c00138{left:378.533333pt;}
.x1_c00138{left:471.200000pt;}
.x12_c00138{left:480.000000pt;}
.x14_c00138{left:496.533333pt;}
.x7_c00138{left:540.266667pt;}
.x8_c00138{left:548.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_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_e093b024bf410a3a5103e797.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_a0a8e30810c4edc7b9d6a5fd.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_4715796e4e610b2be4a97a79.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_2743dfecb914c50243d4ec62.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;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_c00139;src:url('chunks/assets/font_01941a44e2a586c8d426e7f4.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00139;src:url('chunks/assets/font_31f68fd8e36be56925463774.woff2')format("woff");}.ff6_c00139{font-family:ff6_c00139;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00139;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00139{font-family:ff7_c00139;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.v1_c00139{vertical-align:157.200000px;}
.lsb_c00139{letter-spacing:0.000000px;}
.ls4_c00139{letter-spacing:10.056000px;}
.ls7_c00139{letter-spacing:14.016000px;}
.lsc_c00139{letter-spacing:15.000000px;}
.lsa_c00139{letter-spacing:27.000000px;}
.ls6_c00139{letter-spacing:40.200000px;}
.ls5_c00139{letter-spacing:45.120000px;}
.ls3_c00139{letter-spacing:49.320000px;}
.ls8_c00139{letter-spacing:56.400000px;}
.ls2_c00139{letter-spacing:67.896000px;}
.lsd_c00139{letter-spacing:72.000000px;}
.ls0_c00139{letter-spacing:72.096000px;}
.ls1_c00139{letter-spacing:102.696000px;}
.ls9_c00139{letter-spacing:112.920000px;}
.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;}
}
.ws6_c00139{word-spacing:-192.000000px;}
.ws5_c00139{word-spacing:-49.704000px;}
.ws0_c00139{word-spacing:-23.136000px;}
.ws7_c00139{word-spacing:-20.244000px;}
.ws3_c00139{word-spacing:0.000000px;}
.ws2_c00139{word-spacing:1.152000px;}
.ws1_c00139{word-spacing:2.073600px;}
.ws4_c00139{word-spacing:2.304000px;}
._24_c00139{margin-left:-121.248000px;}
._33_c00139{margin-left:-74.064000px;}
._16_c00139{margin-left:-26.784000px;}
._3a_c00139{margin-left:-17.952000px;}
._17_c00139{margin-left:-16.560000px;}
._23_c00139{margin-left:-15.264000px;}
._14_c00139{margin-left:-14.256000px;}
._13_c00139{margin-left:-11.520000px;}
._10_c00139{margin-left:-9.792000px;}
._f_c00139{margin-left:-7.488000px;}
._b_c00139{margin-left:-6.336000px;}
._11_c00139{margin-left:-4.608000px;}
._8_c00139{margin-left:-3.456000px;}
._9_c00139{margin-left:-2.304000px;}
._d_c00139{margin-left:-1.152000px;}
._30_c00139{width:1.008000px;}
._1c_c00139{width:2.160000px;}
._27_c00139{width:4.118400px;}
._19_c00139{width:6.048000px;}
._12_c00139{width:7.632000px;}
._35_c00139{width:8.640000px;}
._18_c00139{width:9.792000px;}
._0_c00139{width:11.808000px;}
._1_c00139{width:13.920000px;}
._39_c00139{width:15.196800px;}
._21_c00139{width:16.380000px;}
._26_c00139{width:17.683200px;}
._7_c00139{width:18.892800px;}
._2d_c00139{width:21.024000px;}
._5_c00139{width:24.076800px;}
._2_c00139{width:25.852800px;}
._36_c00139{width:27.552000px;}
._31_c00139{width:29.215200px;}
._3_c00139{width:30.475200px;}
._4_c00139{width:31.680000px;}
._6_c00139{width:33.523200px;}
._3b_c00139{width:35.068800px;}
._2e_c00139{width:36.912000px;}
._e_c00139{width:38.160000px;}
._32_c00139{width:40.262400px;}
._c_c00139{width:41.328000px;}
._a_c00139{width:42.624000px;}
._1a_c00139{width:46.548000px;}
._3d_c00139{width:48.760800px;}
._29_c00139{width:50.112000px;}
._1f_c00139{width:53.952000px;}
._1d_c00139{width:59.112000px;}
._3c_c00139{width:63.031200px;}
._2c_c00139{width:64.780800px;}
._2f_c00139{width:66.988800px;}
._37_c00139{width:77.160000px;}
._2b_c00139{width:80.217600px;}
._2a_c00139{width:84.192000px;}
._1b_c00139{width:116.280000px;}
._20_c00139{width:122.664000px;}
._25_c00139{width:124.416000px;}
._28_c00139{width:127.872000px;}
._15_c00139{width:158.832000px;}
._1e_c00139{width:171.636000px;}
._34_c00139{width:250.896000px;}
._22_c00139{width:374.724000px;}
._38_c00139{width:1318.596000px;}
.fc2_c00139{color:transparent;}
.fc1_c00139{color:rgb(128,128,128);}
.fc0_c00139{color:rgb(0,0,0);}
.fs3_c00139{font-size:36.000000px;}
.fs9_c00139{font-size:48.000000px;}
.fs7_c00139{font-size:60.000000px;}
.fs8_c00139{font-size:84.000000px;}
.fs0_c00139{font-size:96.000000px;}
.fs5_c00139{font-size:102.000000px;}
.fs1_c00139{font-size:115.200000px;}
.fs2_c00139{font-size:144.000000px;}
.fs4_c00139{font-size:168.000000px;}
.fs6_c00139{font-size:240.000000px;}
.y0_c00139{bottom:0.000000px;}
.y1c_c00139{bottom:3.105000px;}
.y1b_c00139{bottom:7.228371px;}
.y1a_c00139{bottom:103.065000px;}
.y19_c00139{bottom:242.715000px;}
.y18_c00139{bottom:275.115000px;}
.y17_c00139{bottom:313.515000px;}
.y16_c00139{bottom:344.715000px;}
.y15_c00139{bottom:378.315000px;}
.y14_c00139{bottom:412.515000px;}
.y13_c00139{bottom:446.265000px;}
.y12_c00139{bottom:480.615000px;}
.y11_c00139{bottom:515.715000px;}
.y10_c00139{bottom:548.115000px;}
.yf_c00139{bottom:572.865000px;}
.ye_c00139{bottom:616.065000px;}
.yd_c00139{bottom:648.465000px;}
.yb_c00139{bottom:676.665000px;}
.yc_c00139{bottom:682.215000px;}
.ya_c00139{bottom:762.465000px;}
.y9_c00139{bottom:802.365000px;}
.y8_c00139{bottom:859.065000px;}
.y7_c00139{bottom:909.015000px;}
.y6_c00139{bottom:966.015000px;}
.y5_c00139{bottom:1043.565000px;}
.y4_c00139{bottom:1104.315000px;}
.y3_c00139{bottom:1155.315000px;}
.y2_c00139{bottom:1205.265000px;}
.y1_c00139{bottom:1267.365000px;}
.h8_c00139{height:13.200074px;}
.h9_c00139{height:43.804688px;}
.h6_c00139{height:98.314453px;}
.h2_c00139{height:121.546875px;}
.h4_c00139{height:144.719531px;}
.h3_c00139{height:182.320312px;}
.h5_c00139{height:241.875000px;}
.h7_c00139{height:278.746875px;}
.h0_c00139{height:1354.875000px;}
.h1_c00139{height:1355.250000px;}
.w2_c00139{width:104.875500px;}
.w0_c00139{width:845.625000px;}
.w1_c00139{width:846.000000px;}
.x0_c00139{left:0.000000px;}
.x10_c00139{left:249.750000px;}
.xf_c00139{left:251.400000px;}
.xc_c00139{left:254.100000px;}
.x2_c00139{left:258.600000px;}
.x1_c00139{left:281.400000px;}
.x9_c00139{left:298.050000px;}
.x11_c00139{left:313.950000px;}
.xe_c00139{left:318.300000px;}
.xd_c00139{left:319.950000px;}
.x3_c00139{left:343.950000px;}
.x5_c00139{left:368.850000px;}
.x13_c00139{left:374.626740px;}
.x6_c00139{left:391.500000px;}
.x4_c00139{left:400.050000px;}
.xa_c00139{left:418.050000px;}
.x7_c00139{left:448.800000px;}
.x8_c00139{left:482.250000px;}
.xb_c00139{left:522.000000px;}
.x12_c00139{left:766.500000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.v1_c00139{vertical-align:139.733333pt;}
.lsb_c00139{letter-spacing:0.000000pt;}
.ls4_c00139{letter-spacing:8.938667pt;}
.ls7_c00139{letter-spacing:12.458667pt;}
.lsc_c00139{letter-spacing:13.333333pt;}
.lsa_c00139{letter-spacing:24.000000pt;}
.ls6_c00139{letter-spacing:35.733333pt;}
.ls5_c00139{letter-spacing:40.106667pt;}
.ls3_c00139{letter-spacing:43.840000pt;}
.ls8_c00139{letter-spacing:50.133333pt;}
.ls2_c00139{letter-spacing:60.352000pt;}
.lsd_c00139{letter-spacing:64.000000pt;}
.ls0_c00139{letter-spacing:64.085333pt;}
.ls1_c00139{letter-spacing:91.285333pt;}
.ls9_c00139{letter-spacing:100.373333pt;}
.ws6_c00139{word-spacing:-170.666667pt;}
.ws5_c00139{word-spacing:-44.181333pt;}
.ws0_c00139{word-spacing:-20.565333pt;}
.ws7_c00139{word-spacing:-17.994667pt;}
.ws3_c00139{word-spacing:0.000000pt;}
.ws2_c00139{word-spacing:1.024000pt;}
.ws1_c00139{word-spacing:1.843200pt;}
.ws4_c00139{word-spacing:2.048000pt;}
._24_c00139{margin-left:-107.776000pt;}
._33_c00139{margin-left:-65.834667pt;}
._16_c00139{margin-left:-23.808000pt;}
._3a_c00139{margin-left:-15.957333pt;}
._17_c00139{margin-left:-14.720000pt;}
._23_c00139{margin-left:-13.568000pt;}
._14_c00139{margin-left:-12.672000pt;}
._13_c00139{margin-left:-10.240000pt;}
._10_c00139{margin-left:-8.704000pt;}
._f_c00139{margin-left:-6.656000pt;}
._b_c00139{margin-left:-5.632000pt;}
._11_c00139{margin-left:-4.096000pt;}
._8_c00139{margin-left:-3.072000pt;}
._9_c00139{margin-left:-2.048000pt;}
._d_c00139{margin-left:-1.024000pt;}
._30_c00139{width:0.896000pt;}
._1c_c00139{width:1.920000pt;}
._27_c00139{width:3.660800pt;}
._19_c00139{width:5.376000pt;}
._12_c00139{width:6.784000pt;}
._35_c00139{width:7.680000pt;}
._18_c00139{width:8.704000pt;}
._0_c00139{width:10.496000pt;}
._1_c00139{width:12.373333pt;}
._39_c00139{width:13.508267pt;}
._21_c00139{width:14.560000pt;}
._26_c00139{width:15.718400pt;}
._7_c00139{width:16.793600pt;}
._2d_c00139{width:18.688000pt;}
._5_c00139{width:21.401600pt;}
._2_c00139{width:22.980267pt;}
._36_c00139{width:24.490667pt;}
._31_c00139{width:25.969067pt;}
._3_c00139{width:27.089067pt;}
._4_c00139{width:28.160000pt;}
._6_c00139{width:29.798400pt;}
._3b_c00139{width:31.172267pt;}
._2e_c00139{width:32.810667pt;}
._e_c00139{width:33.920000pt;}
._32_c00139{width:35.788800pt;}
._c_c00139{width:36.736000pt;}
._a_c00139{width:37.888000pt;}
._1a_c00139{width:41.376000pt;}
._3d_c00139{width:43.342933pt;}
._29_c00139{width:44.544000pt;}
._1f_c00139{width:47.957333pt;}
._1d_c00139{width:52.544000pt;}
._3c_c00139{width:56.027733pt;}
._2c_c00139{width:57.582933pt;}
._2f_c00139{width:59.545600pt;}
._37_c00139{width:68.586667pt;}
._2b_c00139{width:71.304533pt;}
._2a_c00139{width:74.837333pt;}
._1b_c00139{width:103.360000pt;}
._20_c00139{width:109.034667pt;}
._25_c00139{width:110.592000pt;}
._28_c00139{width:113.664000pt;}
._15_c00139{width:141.184000pt;}
._1e_c00139{width:152.565333pt;}
._34_c00139{width:223.018667pt;}
._22_c00139{width:333.088000pt;}
._38_c00139{width:1172.085333pt;}
.fs3_c00139{font-size:32.000000pt;}
.fs9_c00139{font-size:42.666667pt;}
.fs7_c00139{font-size:53.333333pt;}
.fs8_c00139{font-size:74.666667pt;}
.fs0_c00139{font-size:85.333333pt;}
.fs5_c00139{font-size:90.666667pt;}
.fs1_c00139{font-size:102.400000pt;}
.fs2_c00139{font-size:128.000000pt;}
.fs4_c00139{font-size:149.333333pt;}
.fs6_c00139{font-size:213.333333pt;}
.y0_c00139{bottom:0.000000pt;}
.y1c_c00139{bottom:2.760000pt;}
.y1b_c00139{bottom:6.425219pt;}
.y1a_c00139{bottom:91.613333pt;}
.y19_c00139{bottom:215.746667pt;}
.y18_c00139{bottom:244.546667pt;}
.y17_c00139{bottom:278.680000pt;}
.y16_c00139{bottom:306.413333pt;}
.y15_c00139{bottom:336.280000pt;}
.y14_c00139{bottom:366.680000pt;}
.y13_c00139{bottom:396.680000pt;}
.y12_c00139{bottom:427.213333pt;}
.y11_c00139{bottom:458.413333pt;}
.y10_c00139{bottom:487.213333pt;}
.yf_c00139{bottom:509.213333pt;}
.ye_c00139{bottom:547.613333pt;}
.yd_c00139{bottom:576.413333pt;}
.yb_c00139{bottom:601.480000pt;}
.yc_c00139{bottom:606.413333pt;}
.ya_c00139{bottom:677.746667pt;}
.y9_c00139{bottom:713.213333pt;}
.y8_c00139{bottom:763.613333pt;}
.y7_c00139{bottom:808.013333pt;}
.y6_c00139{bottom:858.680000pt;}
.y5_c00139{bottom:927.613333pt;}
.y4_c00139{bottom:981.613333pt;}
.y3_c00139{bottom:1026.946667pt;}
.y2_c00139{bottom:1071.346667pt;}
.y1_c00139{bottom:1126.546667pt;}
.h8_c00139{height:11.733399pt;}
.h9_c00139{height:38.937500pt;}
.h6_c00139{height:87.390625pt;}
.h2_c00139{height:108.041667pt;}
.h4_c00139{height:128.639583pt;}
.h3_c00139{height:162.062500pt;}
.h5_c00139{height:215.000000pt;}
.h7_c00139{height:247.775000pt;}
.h0_c00139{height:1204.333333pt;}
.h1_c00139{height:1204.666667pt;}
.w2_c00139{width:93.222667pt;}
.w0_c00139{width:751.666667pt;}
.w1_c00139{width:752.000000pt;}
.x0_c00139{left:0.000000pt;}
.x10_c00139{left:222.000000pt;}
.xf_c00139{left:223.466667pt;}
.xc_c00139{left:225.866667pt;}
.x2_c00139{left:229.866667pt;}
.x1_c00139{left:250.133333pt;}
.x9_c00139{left:264.933333pt;}
.x11_c00139{left:279.066667pt;}
.xe_c00139{left:282.933333pt;}
.xd_c00139{left:284.400000pt;}
.x3_c00139{left:305.733333pt;}
.x5_c00139{left:327.866667pt;}
.x13_c00139{left:333.001546pt;}
.x6_c00139{left:348.000000pt;}
.x4_c00139{left:355.600000pt;}
.xa_c00139{left:371.600000pt;}
.x7_c00139{left:398.933333pt;}
.x8_c00139{left:428.666667pt;}
.xb_c00139{left:464.000000pt;}
.x12_c00139{left:681.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_106806a41f0f218e9ce44473.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_2c37397d5d858c1e02c38bcb.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_00b0acb49b0e7ac98e015001.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00140;src:url('chunks/assets/font_cbe7a3c240580b10b33fdb52.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_122bea8768b9d4a14664eb26.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00140;src:url('chunks/assets/font_8117c9c89d9632d09e808aac.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00140;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00140{font-family:ff7_c00140;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls6_c00140{letter-spacing:-45.000000px;}
.ls5_c00140{letter-spacing:-3.000000px;}
.ls3_c00140{letter-spacing:0.000000px;}
.ls2_c00140{letter-spacing:4.992000px;}
.ls7_c00140{letter-spacing:6.000000px;}
.ls1_c00140{letter-spacing:16.800000px;}
.ls0_c00140{letter-spacing:88.200000px;}
.ls4_c00140{letter-spacing:99.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-133.704000px;}
.ws2_c00140{word-spacing:-48.708000px;}
.ws3_c00140{word-spacing:-20.460000px;}
.ws1_c00140{word-spacing:-18.508800px;}
.ws6_c00140{word-spacing:0.000000px;}
.ws4_c00140{word-spacing:2.268000px;}
.ws5_c00140{word-spacing:4.872000px;}
._3c_c00140{margin-left:-138.180000px;}
._5e_c00140{margin-left:-90.636000px;}
._e_c00140{margin-left:-87.264000px;}
._3e_c00140{margin-left:-83.160000px;}
._3a_c00140{margin-left:-60.900000px;}
._41_c00140{margin-left:-55.800000px;}
._39_c00140{margin-left:-45.648000px;}
._c_c00140{margin-left:-40.512000px;}
._40_c00140{margin-left:-39.480000px;}
._26_c00140{margin-left:-28.032000px;}
._25_c00140{margin-left:-26.496000px;}
._4e_c00140{margin-left:-25.080000px;}
._5b_c00140{margin-left:-23.052000px;}
._b_c00140{margin-left:-21.312000px;}
._10_c00140{margin-left:-19.872000px;}
._5d_c00140{margin-left:-17.520000px;}
._20_c00140{margin-left:-16.320000px;}
._a_c00140{margin-left:-14.952000px;}
._4_c00140{margin-left:-13.344000px;}
._6_c00140{margin-left:-11.808000px;}
._9_c00140{margin-left:-10.536000px;}
._5_c00140{margin-left:-9.120000px;}
._8_c00140{margin-left:-7.488000px;}
._42_c00140{margin-left:-6.012000px;}
._7_c00140{margin-left:-3.936000px;}
._1b_c00140{margin-left:-2.592000px;}
._1a_c00140{margin-left:-1.440000px;}
._1d_c00140{width:1.536000px;}
._d_c00140{width:2.976000px;}
._14_c00140{width:4.800000px;}
._12_c00140{width:5.952000px;}
._28_c00140{width:7.680000px;}
._2d_c00140{width:8.832000px;}
._3_c00140{width:9.936000px;}
._48_c00140{width:11.052000px;}
._56_c00140{width:12.108000px;}
._57_c00140{width:13.728000px;}
._33_c00140{width:15.840000px;}
._11_c00140{width:17.280000px;}
._32_c00140{width:19.200000px;}
._45_c00140{width:20.352000px;}
._15_c00140{width:21.504000px;}
._3b_c00140{width:22.548000px;}
._2b_c00140{width:24.144000px;}
._29_c00140{width:25.152000px;}
._19_c00140{width:26.688000px;}
._16_c00140{width:28.128000px;}
._1c_c00140{width:29.664000px;}
._44_c00140{width:31.104000px;}
._22_c00140{width:32.448000px;}
._18_c00140{width:35.040000px;}
._1e_c00140{width:37.056000px;}
._2c_c00140{width:39.024000px;}
._24_c00140{width:40.416000px;}
._13_c00140{width:41.856000px;}
._2a_c00140{width:42.912000px;}
._17_c00140{width:45.312000px;}
._21_c00140{width:46.368000px;}
._52_c00140{width:47.880000px;}
._27_c00140{width:49.416000px;}
._37_c00140{width:50.976000px;}
._34_c00140{width:52.512000px;}
._36_c00140{width:54.000000px;}
._55_c00140{width:55.200000px;}
._59_c00140{width:56.484000px;}
._2_c00140{width:59.160000px;}
._30_c00140{width:60.528000px;}
._2e_c00140{width:61.824000px;}
._23_c00140{width:66.144000px;}
._2f_c00140{width:70.560000px;}
._0_c00140{width:71.856000px;}
._50_c00140{width:73.776000px;}
._35_c00140{width:74.880000px;}
._1f_c00140{width:77.568000px;}
._54_c00140{width:81.216000px;}
._1_c00140{width:95.760000px;}
._46_c00140{width:103.488000px;}
._4d_c00140{width:108.024000px;}
._f_c00140{width:141.792000px;}
._49_c00140{width:147.792000px;}
._53_c00140{width:150.048000px;}
._4b_c00140{width:173.412000px;}
._5c_c00140{width:175.080000px;}
._4a_c00140{width:190.788000px;}
._47_c00140{width:196.536000px;}
._43_c00140{width:320.940000px;}
._3d_c00140{width:328.020000px;}
._31_c00140{width:351.072000px;}
._3f_c00140{width:360.360000px;}
._5a_c00140{width:365.280000px;}
._58_c00140{width:461.724000px;}
._4c_c00140{width:494.148000px;}
._4f_c00140{width:510.732000px;}
._38_c00140{width:713.928000px;}
._60_c00140{width:857.952000px;}
._5f_c00140{width:998.496000px;}
._51_c00140{width:1179.648000px;}
.fc2_c00140{color:transparent;}
.fc1_c00140{color:rgb(128,128,128);}
.fc0_c00140{color:rgb(0,0,0);}
.fs7_c00140{font-size:36.000000px;}
.fs8_c00140{font-size:48.000000px;}
.fs5_c00140{font-size:60.000000px;}
.fs2_c00140{font-size:76.800000px;}
.fs6_c00140{font-size:84.000000px;}
.fs3_c00140{font-size:93.000000px;}
.fs1_c00140{font-size:96.000000px;}
.fs0_c00140{font-size:144.000000px;}
.fs4_c00140{font-size:420.000000px;}
.y0_c00140{bottom:0.000000px;}
.y27_c00140{bottom:3.105000px;}
.y26_c00140{bottom:7.228371px;}
.y25_c00140{bottom:68.865000px;}
.y24_c00140{bottom:102.615000px;}
.y23_c00140{bottom:137.115000px;}
.y22_c00140{bottom:171.915000px;}
.y21_c00140{bottom:205.515000px;}
.y20_c00140{bottom:238.965000px;}
.y1f_c00140{bottom:274.065000px;}
.y1e_c00140{bottom:307.515000px;}
.y1d_c00140{bottom:341.265000px;}
.y1c_c00140{bottom:376.065000px;}
.y1b_c00140{bottom:411.765000px;}
.y1a_c00140{bottom:442.815000px;}
.y19_c00140{bottom:477.015000px;}
.y18_c00140{bottom:510.615000px;}
.y17_c00140{bottom:543.765000px;}
.y16_c00140{bottom:577.215000px;}
.y15_c00140{bottom:610.215000px;}
.y14_c00140{bottom:643.965000px;}
.y13_c00140{bottom:677.115000px;}
.y12_c00140{bottom:710.865000px;}
.y11_c00140{bottom:743.865000px;}
.y10_c00140{bottom:766.215000px;}
.yf_c00140{bottom:784.815000px;}
.ye_c00140{bottom:810.765000px;}
.yd_c00140{bottom:849.165000px;}
.yc_c00140{bottom:879.615000px;}
.yb_c00140{bottom:911.265000px;}
.ya_c00140{bottom:944.715000px;}
.y9_c00140{bottom:978.165000px;}
.y8_c00140{bottom:1011.465000px;}
.y7_c00140{bottom:1044.615000px;}
.y6_c00140{bottom:1078.365000px;}
.y5_c00140{bottom:1111.365000px;}
.y4_c00140{bottom:1144.815000px;}
.y3_c00140{bottom:1177.665000px;}
.y2_c00140{bottom:1216.065000px;}
.y1_c00140{bottom:1224.915000px;}
.h7_c00140{height:13.200074px;}
.h8_c00140{height:43.804688px;}
.h6_c00140{height:45.580078px;}
.h5_c00140{height:75.966797px;}
.h3_c00140{height:121.546875px;}
.h2_c00140{height:182.320312px;}
.h4_c00140{height:412.207031px;}
.h0_c00140{height:1360.275000px;}
.h1_c00140{height:1360.500000px;}
.w2_c00140{width:104.875500px;}
.w1_c00140{width:863.250000px;}
.w0_c00140{width:863.475000px;}
.x0_c00140{left:0.000000px;}
.xe_c00140{left:44.100000px;}
.xf_c00140{left:45.600000px;}
.x8_c00140{left:47.250000px;}
.x7_c00140{left:48.300000px;}
.x6_c00140{left:49.500000px;}
.x4_c00140{left:50.550000px;}
.xc_c00140{left:52.200000px;}
.x5_c00140{left:93.750000px;}
.x10_c00140{left:99.600000px;}
.x3_c00140{left:115.350000px;}
.x1_c00140{left:198.150000px;}
.xd_c00140{left:205.800000px;}
.x9_c00140{left:296.100000px;}
.xa_c00140{left:329.700000px;}
.xb_c00140{left:350.100000px;}
.x2_c00140{left:379.650000px;}
.x11_c00140{left:383.551758px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls6_c00140{letter-spacing:-40.000000pt;}
.ls5_c00140{letter-spacing:-2.666667pt;}
.ls3_c00140{letter-spacing:0.000000pt;}
.ls2_c00140{letter-spacing:4.437333pt;}
.ls7_c00140{letter-spacing:5.333333pt;}
.ls1_c00140{letter-spacing:14.933333pt;}
.ls0_c00140{letter-spacing:78.400000pt;}
.ls4_c00140{letter-spacing:88.000000pt;}
.ws0_c00140{word-spacing:-118.848000pt;}
.ws2_c00140{word-spacing:-43.296000pt;}
.ws3_c00140{word-spacing:-18.186667pt;}
.ws1_c00140{word-spacing:-16.452267pt;}
.ws6_c00140{word-spacing:0.000000pt;}
.ws4_c00140{word-spacing:2.016000pt;}
.ws5_c00140{word-spacing:4.330667pt;}
._3c_c00140{margin-left:-122.826667pt;}
._5e_c00140{margin-left:-80.565333pt;}
._e_c00140{margin-left:-77.568000pt;}
._3e_c00140{margin-left:-73.920000pt;}
._3a_c00140{margin-left:-54.133333pt;}
._41_c00140{margin-left:-49.600000pt;}
._39_c00140{margin-left:-40.576000pt;}
._c_c00140{margin-left:-36.010667pt;}
._40_c00140{margin-left:-35.093333pt;}
._26_c00140{margin-left:-24.917333pt;}
._25_c00140{margin-left:-23.552000pt;}
._4e_c00140{margin-left:-22.293333pt;}
._5b_c00140{margin-left:-20.490667pt;}
._b_c00140{margin-left:-18.944000pt;}
._10_c00140{margin-left:-17.664000pt;}
._5d_c00140{margin-left:-15.573333pt;}
._20_c00140{margin-left:-14.506667pt;}
._a_c00140{margin-left:-13.290667pt;}
._4_c00140{margin-left:-11.861333pt;}
._6_c00140{margin-left:-10.496000pt;}
._9_c00140{margin-left:-9.365333pt;}
._5_c00140{margin-left:-8.106667pt;}
._8_c00140{margin-left:-6.656000pt;}
._42_c00140{margin-left:-5.344000pt;}
._7_c00140{margin-left:-3.498667pt;}
._1b_c00140{margin-left:-2.304000pt;}
._1a_c00140{margin-left:-1.280000pt;}
._1d_c00140{width:1.365333pt;}
._d_c00140{width:2.645333pt;}
._14_c00140{width:4.266667pt;}
._12_c00140{width:5.290667pt;}
._28_c00140{width:6.826667pt;}
._2d_c00140{width:7.850667pt;}
._3_c00140{width:8.832000pt;}
._48_c00140{width:9.824000pt;}
._56_c00140{width:10.762667pt;}
._57_c00140{width:12.202667pt;}
._33_c00140{width:14.080000pt;}
._11_c00140{width:15.360000pt;}
._32_c00140{width:17.066667pt;}
._45_c00140{width:18.090667pt;}
._15_c00140{width:19.114667pt;}
._3b_c00140{width:20.042667pt;}
._2b_c00140{width:21.461333pt;}
._29_c00140{width:22.357333pt;}
._19_c00140{width:23.722667pt;}
._16_c00140{width:25.002667pt;}
._1c_c00140{width:26.368000pt;}
._44_c00140{width:27.648000pt;}
._22_c00140{width:28.842667pt;}
._18_c00140{width:31.146667pt;}
._1e_c00140{width:32.938667pt;}
._2c_c00140{width:34.688000pt;}
._24_c00140{width:35.925333pt;}
._13_c00140{width:37.205333pt;}
._2a_c00140{width:38.144000pt;}
._17_c00140{width:40.277333pt;}
._21_c00140{width:41.216000pt;}
._52_c00140{width:42.560000pt;}
._27_c00140{width:43.925333pt;}
._37_c00140{width:45.312000pt;}
._34_c00140{width:46.677333pt;}
._36_c00140{width:48.000000pt;}
._55_c00140{width:49.066667pt;}
._59_c00140{width:50.208000pt;}
._2_c00140{width:52.586667pt;}
._30_c00140{width:53.802667pt;}
._2e_c00140{width:54.954667pt;}
._23_c00140{width:58.794667pt;}
._2f_c00140{width:62.720000pt;}
._0_c00140{width:63.872000pt;}
._50_c00140{width:65.578667pt;}
._35_c00140{width:66.560000pt;}
._1f_c00140{width:68.949333pt;}
._54_c00140{width:72.192000pt;}
._1_c00140{width:85.120000pt;}
._46_c00140{width:91.989333pt;}
._4d_c00140{width:96.021333pt;}
._f_c00140{width:126.037333pt;}
._49_c00140{width:131.370667pt;}
._53_c00140{width:133.376000pt;}
._4b_c00140{width:154.144000pt;}
._5c_c00140{width:155.626667pt;}
._4a_c00140{width:169.589333pt;}
._47_c00140{width:174.698667pt;}
._43_c00140{width:285.280000pt;}
._3d_c00140{width:291.573333pt;}
._31_c00140{width:312.064000pt;}
._3f_c00140{width:320.320000pt;}
._5a_c00140{width:324.693333pt;}
._58_c00140{width:410.421333pt;}
._4c_c00140{width:439.242667pt;}
._4f_c00140{width:453.984000pt;}
._38_c00140{width:634.602667pt;}
._60_c00140{width:762.624000pt;}
._5f_c00140{width:887.552000pt;}
._51_c00140{width:1048.576000pt;}
.fs7_c00140{font-size:32.000000pt;}
.fs8_c00140{font-size:42.666667pt;}
.fs5_c00140{font-size:53.333333pt;}
.fs2_c00140{font-size:68.266667pt;}
.fs6_c00140{font-size:74.666667pt;}
.fs3_c00140{font-size:82.666667pt;}
.fs1_c00140{font-size:85.333333pt;}
.fs0_c00140{font-size:128.000000pt;}
.fs4_c00140{font-size:373.333333pt;}
.y0_c00140{bottom:0.000000pt;}
.y27_c00140{bottom:2.760000pt;}
.y26_c00140{bottom:6.425219pt;}
.y25_c00140{bottom:61.213333pt;}
.y24_c00140{bottom:91.213333pt;}
.y23_c00140{bottom:121.880000pt;}
.y22_c00140{bottom:152.813333pt;}
.y21_c00140{bottom:182.680000pt;}
.y20_c00140{bottom:212.413333pt;}
.y1f_c00140{bottom:243.613333pt;}
.y1e_c00140{bottom:273.346667pt;}
.y1d_c00140{bottom:303.346667pt;}
.y1c_c00140{bottom:334.280000pt;}
.y1b_c00140{bottom:366.013333pt;}
.y1a_c00140{bottom:393.613333pt;}
.y19_c00140{bottom:424.013333pt;}
.y18_c00140{bottom:453.880000pt;}
.y17_c00140{bottom:483.346667pt;}
.y16_c00140{bottom:513.080000pt;}
.y15_c00140{bottom:542.413333pt;}
.y14_c00140{bottom:572.413333pt;}
.y13_c00140{bottom:601.880000pt;}
.y12_c00140{bottom:631.880000pt;}
.y11_c00140{bottom:661.213333pt;}
.y10_c00140{bottom:681.080000pt;}
.yf_c00140{bottom:697.613333pt;}
.ye_c00140{bottom:720.680000pt;}
.yd_c00140{bottom:754.813333pt;}
.yc_c00140{bottom:781.880000pt;}
.yb_c00140{bottom:810.013333pt;}
.ya_c00140{bottom:839.746667pt;}
.y9_c00140{bottom:869.480000pt;}
.y8_c00140{bottom:899.080000pt;}
.y7_c00140{bottom:928.546667pt;}
.y6_c00140{bottom:958.546667pt;}
.y5_c00140{bottom:987.880000pt;}
.y4_c00140{bottom:1017.613333pt;}
.y3_c00140{bottom:1046.813333pt;}
.y2_c00140{bottom:1080.946667pt;}
.y1_c00140{bottom:1088.813333pt;}
.h7_c00140{height:11.733399pt;}
.h8_c00140{height:38.937500pt;}
.h6_c00140{height:40.515625pt;}
.h5_c00140{height:67.526042pt;}
.h3_c00140{height:108.041667pt;}
.h2_c00140{height:162.062500pt;}
.h4_c00140{height:366.406250pt;}
.h0_c00140{height:1209.133333pt;}
.h1_c00140{height:1209.333333pt;}
.w2_c00140{width:93.222667pt;}
.w1_c00140{width:767.333333pt;}
.w0_c00140{width:767.533333pt;}
.x0_c00140{left:0.000000pt;}
.xe_c00140{left:39.200000pt;}
.xf_c00140{left:40.533333pt;}
.x8_c00140{left:42.000000pt;}
.x7_c00140{left:42.933333pt;}
.x6_c00140{left:44.000000pt;}
.x4_c00140{left:44.933333pt;}
.xc_c00140{left:46.400000pt;}
.x5_c00140{left:83.333333pt;}
.x10_c00140{left:88.533333pt;}
.x3_c00140{left:102.533333pt;}
.x1_c00140{left:176.133333pt;}
.xd_c00140{left:182.933333pt;}
.x9_c00140{left:263.200000pt;}
.xa_c00140{left:293.066667pt;}
.xb_c00140{left:311.200000pt;}
.x2_c00140{left:337.466667pt;}
.x11_c00140{left:340.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1e3cfed0747110a8d0a88cfd.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_517450cec35c1628fb9a1b00.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_14462b35f434881ceed90798.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00141;src:url('chunks/assets/font_750ad34508b7a7e9052a76fd.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00141;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00141{font-family:ff6_c00141;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls3_c00141{letter-spacing:0.000000px;}
.ls4_c00141{letter-spacing:6.000000px;}
.ls1_c00141{letter-spacing:10.800000px;}
.ls0_c00141{letter-spacing:13.800000px;}
.ls6_c00141{letter-spacing:15.000000px;}
.ls5_c00141{letter-spacing:21.000000px;}
.ls2_c00141{letter-spacing:182.664000px;}
.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;}
}
.ws4_c00141{word-spacing:-40.305000px;}
.ws2_c00141{word-spacing:-20.244000px;}
.ws5_c00141{word-spacing:-18.798000px;}
.ws3_c00141{word-spacing:-16.068000px;}
.ws0_c00141{word-spacing:-8.676000px;}
.ws6_c00141{word-spacing:0.000000px;}
.ws1_c00141{word-spacing:17.808000px;}
._31_c00141{margin-left:-41.280000px;}
._32_c00141{margin-left:-34.176000px;}
._20_c00141{margin-left:-28.440000px;}
._34_c00141{margin-left:-20.352000px;}
._3b_c00141{margin-left:-17.010000px;}
._3e_c00141{margin-left:-14.994000px;}
._3f_c00141{margin-left:-13.902000px;}
._2e_c00141{margin-left:-12.792000px;}
._39_c00141{margin-left:-11.577000px;}
._37_c00141{margin-left:-10.263000px;}
._38_c00141{margin-left:-8.793000px;}
._15_c00141{margin-left:-7.788000px;}
._17_c00141{margin-left:-5.664000px;}
._16_c00141{margin-left:-4.608000px;}
._14_c00141{margin-left:-3.264000px;}
._2_c00141{margin-left:-1.920000px;}
._0_c00141{width:1.824000px;}
._a_c00141{width:3.024000px;}
._9_c00141{width:4.680000px;}
._8_c00141{width:6.540000px;}
._b_c00141{width:7.980000px;}
._5_c00141{width:9.420000px;}
._12_c00141{width:10.872000px;}
._10_c00141{width:12.672000px;}
._6_c00141{width:13.860000px;}
._7_c00141{width:15.180000px;}
._4_c00141{width:17.160000px;}
._d_c00141{width:19.092000px;}
._3_c00141{width:21.216000px;}
._2c_c00141{width:22.464000px;}
._2a_c00141{width:23.640000px;}
._29_c00141{width:24.864000px;}
._1a_c00141{width:26.016000px;}
._13_c00141{width:28.128000px;}
._1_c00141{width:29.664000px;}
._24_c00141{width:31.440000px;}
._19_c00141{width:32.928000px;}
._1d_c00141{width:34.656000px;}
._11_c00141{width:36.288000px;}
._c_c00141{width:38.232000px;}
._3a_c00141{width:40.143000px;}
._1e_c00141{width:41.292000px;}
._e_c00141{width:42.696000px;}
._1c_c00141{width:44.868000px;}
._1f_c00141{width:47.436000px;}
._25_c00141{width:49.182000px;}
._18_c00141{width:51.756000px;}
._22_c00141{width:55.140000px;}
._21_c00141{width:58.212000px;}
._3d_c00141{width:62.688000px;}
._2b_c00141{width:69.552000px;}
._1b_c00141{width:71.556000px;}
._27_c00141{width:73.716000px;}
._28_c00141{width:76.020000px;}
._26_c00141{width:101.136000px;}
._36_c00141{width:135.021000px;}
._40_c00141{width:171.978000px;}
._f_c00141{width:174.864000px;}
._23_c00141{width:177.564000px;}
._3c_c00141{width:179.025000px;}
._30_c00141{width:246.192000px;}
._2f_c00141{width:256.464000px;}
._2d_c00141{width:285.600000px;}
._35_c00141{width:360.000000px;}
._33_c00141{width:1105.260000px;}
.fc2_c00141{color:transparent;}
.fc1_c00141{color:rgb(128,128,128);}
.fc0_c00141{color:rgb(0,0,0);}
.fs1_c00141{font-size:36.000000px;}
.fs7_c00141{font-size:48.000000px;}
.fs2_c00141{font-size:60.000000px;}
.fs6_c00141{font-size:78.000000px;}
.fs3_c00141{font-size:84.000000px;}
.fs0_c00141{font-size:96.000000px;}
.fs4_c00141{font-size:102.000000px;}
.fs5_c00141{font-size:105.000000px;}
.y0_c00141{bottom:0.000000px;}
.y27_c00141{bottom:3.105000px;}
.y26_c00141{bottom:7.228357px;}
.y24_c00141{bottom:111.030000px;}
.y25_c00141{bottom:116.130000px;}
.y23_c00141{bottom:147.180000px;}
.y22_c00141{bottom:181.530000px;}
.y21_c00141{bottom:214.680000px;}
.y20_c00141{bottom:250.530000px;}
.y1f_c00141{bottom:284.130000px;}
.y1e_c00141{bottom:318.330000px;}
.y1d_c00141{bottom:352.680000px;}
.y1c_c00141{bottom:386.730000px;}
.y1b_c00141{bottom:420.480000px;}
.y1a_c00141{bottom:454.380000px;}
.y19_c00141{bottom:489.480000px;}
.y18_c00141{bottom:522.480000px;}
.y17_c00141{bottom:553.830000px;}
.y16_c00141{bottom:591.330000px;}
.y15_c00141{bottom:624.780000px;}
.y14_c00141{bottom:691.980000px;}
.y13_c00141{bottom:726.630000px;}
.y12_c00141{bottom:759.780000px;}
.y11_c00141{bottom:793.830000px;}
.y10_c00141{bottom:826.980000px;}
.y1_c00141{bottom:851.880000px;}
.yf_c00141{bottom:861.330000px;}
.ye_c00141{bottom:894.780000px;}
.yd_c00141{bottom:927.480000px;}
.yc_c00141{bottom:959.880000px;}
.yb_c00141{bottom:994.230000px;}
.ya_c00141{bottom:1027.380000px;}
.y9_c00141{bottom:1059.780000px;}
.y8_c00141{bottom:1092.780000px;}
.y7_c00141{bottom:1126.530000px;}
.y6_c00141{bottom:1160.430000px;}
.y5_c00141{bottom:1193.130000px;}
.y4_c00141{bottom:1227.480000px;}
.y3_c00141{bottom:1260.930000px;}
.y2_c00141{bottom:1290.930000px;}
.h7_c00141{height:13.200074px;}
.h8_c00141{height:43.804688px;}
.h3_c00141{height:45.580078px;}
.h6_c00141{height:91.291992px;}
.h5_c00141{height:98.314453px;}
.h2_c00141{height:121.546875px;}
.h4_c00141{height:132.941895px;}
.h0_c00141{height:1382.700000px;}
.h1_c00141{height:1383.000000px;}
.w2_c00141{width:104.875500px;}
.w0_c00141{width:863.175000px;}
.w1_c00141{width:863.250000px;}
.x0_c00141{left:0.000000px;}
.x1_c00141{left:149.400000px;}
.xa_c00141{left:273.000000px;}
.xd_c00141{left:275.100000px;}
.x9_c00141{left:277.200000px;}
.x3_c00141{left:278.400000px;}
.x5_c00141{left:280.050000px;}
.xe_c00141{left:281.100000px;}
.x6_c00141{left:283.800000px;}
.x7_c00141{left:284.850000px;}
.xc_c00141{left:327.450000px;}
.x2_c00141{left:329.700000px;}
.x4_c00141{left:330.750000px;}
.x8_c00141{left:335.550000px;}
.xf_c00141{left:337.200000px;}
.xb_c00141{left:357.750000px;}
.x11_c00141{left:383.401749px;}
.x10_c00141{left:492.750000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls3_c00141{letter-spacing:0.000000pt;}
.ls4_c00141{letter-spacing:5.333333pt;}
.ls1_c00141{letter-spacing:9.600000pt;}
.ls0_c00141{letter-spacing:12.266667pt;}
.ls6_c00141{letter-spacing:13.333333pt;}
.ls5_c00141{letter-spacing:18.666667pt;}
.ls2_c00141{letter-spacing:162.368000pt;}
.ws4_c00141{word-spacing:-35.826667pt;}
.ws2_c00141{word-spacing:-17.994667pt;}
.ws5_c00141{word-spacing:-16.709333pt;}
.ws3_c00141{word-spacing:-14.282667pt;}
.ws0_c00141{word-spacing:-7.712000pt;}
.ws6_c00141{word-spacing:0.000000pt;}
.ws1_c00141{word-spacing:15.829333pt;}
._31_c00141{margin-left:-36.693333pt;}
._32_c00141{margin-left:-30.378667pt;}
._20_c00141{margin-left:-25.280000pt;}
._34_c00141{margin-left:-18.090667pt;}
._3b_c00141{margin-left:-15.120000pt;}
._3e_c00141{margin-left:-13.328000pt;}
._3f_c00141{margin-left:-12.357333pt;}
._2e_c00141{margin-left:-11.370667pt;}
._39_c00141{margin-left:-10.290667pt;}
._37_c00141{margin-left:-9.122667pt;}
._38_c00141{margin-left:-7.816000pt;}
._15_c00141{margin-left:-6.922667pt;}
._17_c00141{margin-left:-5.034667pt;}
._16_c00141{margin-left:-4.096000pt;}
._14_c00141{margin-left:-2.901333pt;}
._2_c00141{margin-left:-1.706667pt;}
._0_c00141{width:1.621333pt;}
._a_c00141{width:2.688000pt;}
._9_c00141{width:4.160000pt;}
._8_c00141{width:5.813333pt;}
._b_c00141{width:7.093333pt;}
._5_c00141{width:8.373333pt;}
._12_c00141{width:9.664000pt;}
._10_c00141{width:11.264000pt;}
._6_c00141{width:12.320000pt;}
._7_c00141{width:13.493333pt;}
._4_c00141{width:15.253333pt;}
._d_c00141{width:16.970667pt;}
._3_c00141{width:18.858667pt;}
._2c_c00141{width:19.968000pt;}
._2a_c00141{width:21.013333pt;}
._29_c00141{width:22.101333pt;}
._1a_c00141{width:23.125333pt;}
._13_c00141{width:25.002667pt;}
._1_c00141{width:26.368000pt;}
._24_c00141{width:27.946667pt;}
._19_c00141{width:29.269333pt;}
._1d_c00141{width:30.805333pt;}
._11_c00141{width:32.256000pt;}
._c_c00141{width:33.984000pt;}
._3a_c00141{width:35.682667pt;}
._1e_c00141{width:36.704000pt;}
._e_c00141{width:37.952000pt;}
._1c_c00141{width:39.882667pt;}
._1f_c00141{width:42.165333pt;}
._25_c00141{width:43.717333pt;}
._18_c00141{width:46.005333pt;}
._22_c00141{width:49.013333pt;}
._21_c00141{width:51.744000pt;}
._3d_c00141{width:55.722667pt;}
._2b_c00141{width:61.824000pt;}
._1b_c00141{width:63.605333pt;}
._27_c00141{width:65.525333pt;}
._28_c00141{width:67.573333pt;}
._26_c00141{width:89.898667pt;}
._36_c00141{width:120.018667pt;}
._40_c00141{width:152.869333pt;}
._f_c00141{width:155.434667pt;}
._23_c00141{width:157.834667pt;}
._3c_c00141{width:159.133333pt;}
._30_c00141{width:218.837333pt;}
._2f_c00141{width:227.968000pt;}
._2d_c00141{width:253.866667pt;}
._35_c00141{width:320.000000pt;}
._33_c00141{width:982.453333pt;}
.fs1_c00141{font-size:32.000000pt;}
.fs7_c00141{font-size:42.666667pt;}
.fs2_c00141{font-size:53.333333pt;}
.fs6_c00141{font-size:69.333333pt;}
.fs3_c00141{font-size:74.666667pt;}
.fs0_c00141{font-size:85.333333pt;}
.fs4_c00141{font-size:90.666667pt;}
.fs5_c00141{font-size:93.333333pt;}
.y0_c00141{bottom:0.000000pt;}
.y27_c00141{bottom:2.760000pt;}
.y26_c00141{bottom:6.425206pt;}
.y24_c00141{bottom:98.693333pt;}
.y25_c00141{bottom:103.226667pt;}
.y23_c00141{bottom:130.826667pt;}
.y22_c00141{bottom:161.360000pt;}
.y21_c00141{bottom:190.826667pt;}
.y20_c00141{bottom:222.693333pt;}
.y1f_c00141{bottom:252.560000pt;}
.y1e_c00141{bottom:282.960000pt;}
.y1d_c00141{bottom:313.493333pt;}
.y1c_c00141{bottom:343.760000pt;}
.y1b_c00141{bottom:373.760000pt;}
.y1a_c00141{bottom:403.893333pt;}
.y19_c00141{bottom:435.093333pt;}
.y18_c00141{bottom:464.426667pt;}
.y17_c00141{bottom:492.293333pt;}
.y16_c00141{bottom:525.626667pt;}
.y15_c00141{bottom:555.360000pt;}
.y14_c00141{bottom:615.093333pt;}
.y13_c00141{bottom:645.893333pt;}
.y12_c00141{bottom:675.360000pt;}
.y11_c00141{bottom:705.626667pt;}
.y10_c00141{bottom:735.093333pt;}
.y1_c00141{bottom:757.226667pt;}
.yf_c00141{bottom:765.626667pt;}
.ye_c00141{bottom:795.360000pt;}
.yd_c00141{bottom:824.426667pt;}
.yc_c00141{bottom:853.226667pt;}
.yb_c00141{bottom:883.760000pt;}
.ya_c00141{bottom:913.226667pt;}
.y9_c00141{bottom:942.026667pt;}
.y8_c00141{bottom:971.360000pt;}
.y7_c00141{bottom:1001.360000pt;}
.y6_c00141{bottom:1031.493333pt;}
.y5_c00141{bottom:1060.560000pt;}
.y4_c00141{bottom:1091.093333pt;}
.y3_c00141{bottom:1120.826667pt;}
.y2_c00141{bottom:1147.493333pt;}
.h7_c00141{height:11.733399pt;}
.h8_c00141{height:38.937500pt;}
.h3_c00141{height:40.515625pt;}
.h6_c00141{height:81.148438pt;}
.h5_c00141{height:87.390625pt;}
.h2_c00141{height:108.041667pt;}
.h4_c00141{height:118.170573pt;}
.h0_c00141{height:1229.066667pt;}
.h1_c00141{height:1229.333333pt;}
.w2_c00141{width:93.222667pt;}
.w0_c00141{width:767.266667pt;}
.w1_c00141{width:767.333333pt;}
.x0_c00141{left:0.000000pt;}
.x1_c00141{left:132.800000pt;}
.xa_c00141{left:242.666667pt;}
.xd_c00141{left:244.533333pt;}
.x9_c00141{left:246.400000pt;}
.x3_c00141{left:247.466667pt;}
.x5_c00141{left:248.933333pt;}
.xe_c00141{left:249.866667pt;}
.x6_c00141{left:252.266667pt;}
.x7_c00141{left:253.200000pt;}
.xc_c00141{left:291.066667pt;}
.x2_c00141{left:293.066667pt;}
.x4_c00141{left:294.000000pt;}
.x8_c00141{left:298.266667pt;}
.xf_c00141{left:299.733333pt;}
.xb_c00141{left:318.000000pt;}
.x11_c00141{left:340.801554pt;}
.x10_c00141{left:438.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_acecef653a0cf5311d411b9b.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_d51bba39ccc87e81c001d841.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls2_c00142{letter-spacing:0.000000px;}
.ls1_c00142{letter-spacing:11.400000px;}
.ls0_c00142{letter-spacing:13.800000px;}
.ls3_c00142{letter-spacing:21.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:-44.136000px;}
.ws1_c00142{word-spacing:-23.136000px;}
.ws2_c00142{word-spacing:0.000000px;}
._39_c00142{margin-left:-70.464000px;}
._3b_c00142{margin-left:-51.168000px;}
._38_c00142{margin-left:-44.256000px;}
._36_c00142{margin-left:-30.912000px;}
._2a_c00142{margin-left:-26.592000px;}
._1b_c00142{margin-left:-18.240000px;}
._11_c00142{margin-left:-16.992000px;}
._2b_c00142{margin-left:-14.880000px;}
._12_c00142{margin-left:-13.536000px;}
._2c_c00142{margin-left:-11.808000px;}
._13_c00142{margin-left:-10.056000px;}
._37_c00142{margin-left:-8.448000px;}
._23_c00142{margin-left:-6.552000px;}
._2_c00142{margin-left:-4.128000px;}
._26_c00142{margin-left:-3.072000px;}
._0_c00142{margin-left:-2.016000px;}
._6_c00142{width:1.536000px;}
._14_c00142{width:2.592000px;}
._4_c00142{width:4.512000px;}
._d_c00142{width:6.528000px;}
._17_c00142{width:7.872000px;}
._8_c00142{width:9.120000px;}
._32_c00142{width:10.176000px;}
._9_c00142{width:11.232000px;}
._c_c00142{width:12.288000px;}
._b_c00142{width:13.728000px;}
._f_c00142{width:14.784000px;}
._1c_c00142{width:16.512000px;}
._22_c00142{width:17.856000px;}
._15_c00142{width:19.488000px;}
._31_c00142{width:20.928000px;}
._3a_c00142{width:24.264000px;}
._5_c00142{width:25.536000px;}
._16_c00142{width:27.744000px;}
._1d_c00142{width:29.952000px;}
._2e_c00142{width:31.296000px;}
._25_c00142{width:32.448000px;}
._18_c00142{width:34.080000px;}
._e_c00142{width:35.424000px;}
._1f_c00142{width:37.056000px;}
._24_c00142{width:38.400000px;}
._19_c00142{width:39.456000px;}
._20_c00142{width:41.376000px;}
._33_c00142{width:42.432000px;}
._1e_c00142{width:43.680000px;}
._28_c00142{width:45.888000px;}
._a_c00142{width:47.808000px;}
._27_c00142{width:49.152000px;}
._35_c00142{width:50.304000px;}
._7_c00142{width:51.552000px;}
._2d_c00142{width:53.376000px;}
._34_c00142{width:54.456000px;}
._29_c00142{width:56.640000px;}
._21_c00142{width:58.560000px;}
._2f_c00142{width:62.496000px;}
._30_c00142{width:76.032000px;}
._3d_c00142{width:78.096000px;}
._10_c00142{width:80.640000px;}
._1_c00142{width:87.840000px;}
._3c_c00142{width:177.696000px;}
._3_c00142{width:186.864000px;}
._1a_c00142{width:244.080000px;}
._3e_c00142{width:293.112000px;}
.fc2_c00142{color:transparent;}
.fc1_c00142{color:rgb(128,128,128);}
.fc0_c00142{color:rgb(0,0,0);}
.fs3_c00142{font-size:48.000000px;}
.fs2_c00142{font-size:84.000000px;}
.fs0_c00142{font-size:96.000000px;}
.fs1_c00142{font-size:102.000000px;}
.y0_c00142{bottom:0.000000px;}
.y26_c00142{bottom:3.105000px;}
.y25_c00142{bottom:7.228363px;}
.y24_c00142{bottom:82.350000px;}
.y23_c00142{bottom:114.300000px;}
.y22_c00142{bottom:149.100000px;}
.y21_c00142{bottom:183.300000px;}
.y20_c00142{bottom:216.600000px;}
.y1f_c00142{bottom:251.400000px;}
.y1e_c00142{bottom:285.150000px;}
.y1d_c00142{bottom:318.900000px;}
.y1c_c00142{bottom:352.350000px;}
.y1b_c00142{bottom:386.700000px;}
.y1a_c00142{bottom:419.850000px;}
.y19_c00142{bottom:453.900000px;}
.y18_c00142{bottom:487.800000px;}
.y17_c00142{bottom:521.100000px;}
.y16_c00142{bottom:554.400000px;}
.y15_c00142{bottom:587.850000px;}
.y14_c00142{bottom:621.600000px;}
.y13_c00142{bottom:655.050000px;}
.y12_c00142{bottom:688.050000px;}
.y11_c00142{bottom:721.800000px;}
.y10_c00142{bottom:755.250000px;}
.yf_c00142{bottom:789.300000px;}
.ye_c00142{bottom:821.850000px;}
.yd_c00142{bottom:855.450000px;}
.yc_c00142{bottom:888.600000px;}
.yb_c00142{bottom:921.450000px;}
.ya_c00142{bottom:955.050000px;}
.y9_c00142{bottom:988.500000px;}
.y8_c00142{bottom:1021.950000px;}
.y7_c00142{bottom:1054.800000px;}
.y6_c00142{bottom:1088.100000px;}
.y5_c00142{bottom:1121.250000px;}
.y4_c00142{bottom:1154.700000px;}
.y3_c00142{bottom:1188.000000px;}
.y2_c00142{bottom:1221.300000px;}
.y1_c00142{bottom:1253.250000px;}
.h2_c00142{height:13.200074px;}
.h3_c00142{height:43.804688px;}
.h1_c00142{height:121.546875px;}
.h0_c00142{height:1363.500000px;}
.w2_c00142{width:104.875500px;}
.w1_c00142{width:864.750000px;}
.w0_c00142{width:865.050000px;}
.x0_c00142{left:0.000000px;}
.x7_c00142{left:46.200000px;}
.x6_c00142{left:47.250000px;}
.x5_c00142{left:48.300000px;}
.x4_c00142{left:49.950000px;}
.x3_c00142{left:51.000000px;}
.x2_c00142{left:52.650000px;}
.x1_c00142{left:70.950000px;}
.x8_c00142{left:99.600000px;}
.xa_c00142{left:384.339249px;}
.x9_c00142{left:605.400000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls2_c00142{letter-spacing:0.000000pt;}
.ls1_c00142{letter-spacing:10.133333pt;}
.ls0_c00142{letter-spacing:12.266667pt;}
.ls3_c00142{letter-spacing:18.666667pt;}
.ws0_c00142{word-spacing:-39.232000pt;}
.ws1_c00142{word-spacing:-20.565333pt;}
.ws2_c00142{word-spacing:0.000000pt;}
._39_c00142{margin-left:-62.634667pt;}
._3b_c00142{margin-left:-45.482667pt;}
._38_c00142{margin-left:-39.338667pt;}
._36_c00142{margin-left:-27.477333pt;}
._2a_c00142{margin-left:-23.637333pt;}
._1b_c00142{margin-left:-16.213333pt;}
._11_c00142{margin-left:-15.104000pt;}
._2b_c00142{margin-left:-13.226667pt;}
._12_c00142{margin-left:-12.032000pt;}
._2c_c00142{margin-left:-10.496000pt;}
._13_c00142{margin-left:-8.938667pt;}
._37_c00142{margin-left:-7.509333pt;}
._23_c00142{margin-left:-5.824000pt;}
._2_c00142{margin-left:-3.669333pt;}
._26_c00142{margin-left:-2.730667pt;}
._0_c00142{margin-left:-1.792000pt;}
._6_c00142{width:1.365333pt;}
._14_c00142{width:2.304000pt;}
._4_c00142{width:4.010667pt;}
._d_c00142{width:5.802667pt;}
._17_c00142{width:6.997333pt;}
._8_c00142{width:8.106667pt;}
._32_c00142{width:9.045333pt;}
._9_c00142{width:9.984000pt;}
._c_c00142{width:10.922667pt;}
._b_c00142{width:12.202667pt;}
._f_c00142{width:13.141333pt;}
._1c_c00142{width:14.677333pt;}
._22_c00142{width:15.872000pt;}
._15_c00142{width:17.322667pt;}
._31_c00142{width:18.602667pt;}
._3a_c00142{width:21.568000pt;}
._5_c00142{width:22.698667pt;}
._16_c00142{width:24.661333pt;}
._1d_c00142{width:26.624000pt;}
._2e_c00142{width:27.818667pt;}
._25_c00142{width:28.842667pt;}
._18_c00142{width:30.293333pt;}
._e_c00142{width:31.488000pt;}
._1f_c00142{width:32.938667pt;}
._24_c00142{width:34.133333pt;}
._19_c00142{width:35.072000pt;}
._20_c00142{width:36.778667pt;}
._33_c00142{width:37.717333pt;}
._1e_c00142{width:38.826667pt;}
._28_c00142{width:40.789333pt;}
._a_c00142{width:42.496000pt;}
._27_c00142{width:43.690667pt;}
._35_c00142{width:44.714667pt;}
._7_c00142{width:45.824000pt;}
._2d_c00142{width:47.445333pt;}
._34_c00142{width:48.405333pt;}
._29_c00142{width:50.346667pt;}
._21_c00142{width:52.053333pt;}
._2f_c00142{width:55.552000pt;}
._30_c00142{width:67.584000pt;}
._3d_c00142{width:69.418667pt;}
._10_c00142{width:71.680000pt;}
._1_c00142{width:78.080000pt;}
._3c_c00142{width:157.952000pt;}
._3_c00142{width:166.101333pt;}
._1a_c00142{width:216.960000pt;}
._3e_c00142{width:260.544000pt;}
.fs3_c00142{font-size:42.666667pt;}
.fs2_c00142{font-size:74.666667pt;}
.fs0_c00142{font-size:85.333333pt;}
.fs1_c00142{font-size:90.666667pt;}
.y0_c00142{bottom:0.000000pt;}
.y26_c00142{bottom:2.760000pt;}
.y25_c00142{bottom:6.425212pt;}
.y24_c00142{bottom:73.200000pt;}
.y23_c00142{bottom:101.600000pt;}
.y22_c00142{bottom:132.533333pt;}
.y21_c00142{bottom:162.933333pt;}
.y20_c00142{bottom:192.533333pt;}
.y1f_c00142{bottom:223.466667pt;}
.y1e_c00142{bottom:253.466667pt;}
.y1d_c00142{bottom:283.466667pt;}
.y1c_c00142{bottom:313.200000pt;}
.y1b_c00142{bottom:343.733333pt;}
.y1a_c00142{bottom:373.200000pt;}
.y19_c00142{bottom:403.466667pt;}
.y18_c00142{bottom:433.600000pt;}
.y17_c00142{bottom:463.200000pt;}
.y16_c00142{bottom:492.800000pt;}
.y15_c00142{bottom:522.533333pt;}
.y14_c00142{bottom:552.533333pt;}
.y13_c00142{bottom:582.266667pt;}
.y12_c00142{bottom:611.600000pt;}
.y11_c00142{bottom:641.600000pt;}
.y10_c00142{bottom:671.333333pt;}
.yf_c00142{bottom:701.600000pt;}
.ye_c00142{bottom:730.533333pt;}
.yd_c00142{bottom:760.400000pt;}
.yc_c00142{bottom:789.866667pt;}
.yb_c00142{bottom:819.066667pt;}
.ya_c00142{bottom:848.933333pt;}
.y9_c00142{bottom:878.666667pt;}
.y8_c00142{bottom:908.400000pt;}
.y7_c00142{bottom:937.600000pt;}
.y6_c00142{bottom:967.200000pt;}
.y5_c00142{bottom:996.666667pt;}
.y4_c00142{bottom:1026.400000pt;}
.y3_c00142{bottom:1056.000000pt;}
.y2_c00142{bottom:1085.600000pt;}
.y1_c00142{bottom:1114.000000pt;}
.h2_c00142{height:11.733399pt;}
.h3_c00142{height:38.937500pt;}
.h1_c00142{height:108.041667pt;}
.h0_c00142{height:1212.000000pt;}
.w2_c00142{width:93.222667pt;}
.w1_c00142{width:768.666667pt;}
.w0_c00142{width:768.933333pt;}
.x0_c00142{left:0.000000pt;}
.x7_c00142{left:41.066667pt;}
.x6_c00142{left:42.000000pt;}
.x5_c00142{left:42.933333pt;}
.x4_c00142{left:44.400000pt;}
.x3_c00142{left:45.333333pt;}
.x2_c00142{left:46.800000pt;}
.x1_c00142{left:63.066667pt;}
.x8_c00142{left:88.533333pt;}
.xa_c00142{left:341.634888pt;}
.x9_c00142{left:538.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b32ea2446d21514a8ff6df4f.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_c784a7f1a1b009c732261a13.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls2_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:5.100000px;}
.ls1_c00143{letter-spacing:21.252000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:-41.496000px;}
.ws2_c00143{word-spacing:-23.859000px;}
.ws0_c00143{word-spacing:-20.244000px;}
.ws3_c00143{word-spacing:0.000000px;}
._2a_c00143{margin-left:-34.752000px;}
._19_c00143{margin-left:-29.376000px;}
._30_c00143{margin-left:-24.960000px;}
._33_c00143{margin-left:-19.200000px;}
._35_c00143{margin-left:-14.784000px;}
._0_c00143{margin-left:-10.752000px;}
._6_c00143{margin-left:-8.352000px;}
._25_c00143{margin-left:-7.296000px;}
._18_c00143{margin-left:-4.896000px;}
._21_c00143{margin-left:-3.552000px;}
._c_c00143{margin-left:-2.112000px;}
._11_c00143{margin-left:-1.056000px;}
._1_c00143{width:1.728000px;}
._a_c00143{width:2.784000px;}
._9_c00143{width:4.608000px;}
._1c_c00143{width:5.664000px;}
._8_c00143{width:6.720000px;}
._1b_c00143{width:8.160000px;}
._10_c00143{width:9.504000px;}
._f_c00143{width:11.136000px;}
._e_c00143{width:12.480000px;}
._b_c00143{width:14.496000px;}
._2f_c00143{width:15.648000px;}
._d_c00143{width:16.800000px;}
._27_c00143{width:19.488000px;}
._4_c00143{width:21.408000px;}
._2e_c00143{width:22.932000px;}
._26_c00143{width:24.480000px;}
._2_c00143{width:25.632000px;}
._7_c00143{width:27.552000px;}
._20_c00143{width:28.608000px;}
._3_c00143{width:29.664000px;}
._17_c00143{width:31.104000px;}
._1e_c00143{width:32.832000px;}
._29_c00143{width:34.272000px;}
._2c_c00143{width:35.616000px;}
._28_c00143{width:37.152000px;}
._24_c00143{width:38.208000px;}
._3d_c00143{width:39.360000px;}
._1a_c00143{width:40.416000px;}
._3b_c00143{width:41.664000px;}
._15_c00143{width:42.816000px;}
._23_c00143{width:44.832000px;}
._16_c00143{width:46.464000px;}
._37_c00143{width:48.000000px;}
._13_c00143{width:49.440000px;}
._12_c00143{width:50.592000px;}
._2d_c00143{width:52.416000px;}
._2b_c00143{width:53.568000px;}
._38_c00143{width:55.104000px;}
._1f_c00143{width:56.544000px;}
._14_c00143{width:58.368000px;}
._22_c00143{width:61.596000px;}
._3f_c00143{width:66.624000px;}
._1d_c00143{width:67.872000px;}
._3c_c00143{width:70.848000px;}
._5_c00143{width:81.600000px;}
._3a_c00143{width:83.424000px;}
._3e_c00143{width:99.360000px;}
._39_c00143{width:118.464000px;}
._34_c00143{width:135.648000px;}
._36_c00143{width:176.256000px;}
._31_c00143{width:326.976000px;}
._32_c00143{width:757.344000px;}
.fc2_c00143{color:transparent;}
.fc1_c00143{color:rgb(128,128,128);}
.fc0_c00143{color:rgb(0,0,0);}
.fs4_c00143{font-size:48.000000px;}
.fs1_c00143{font-size:84.000000px;}
.fs0_c00143{font-size:96.000000px;}
.fs3_c00143{font-size:99.000000px;}
.fs2_c00143{font-size:102.000000px;}
.y0_c00143{bottom:0.000000px;}
.y26_c00143{bottom:3.105000px;}
.y25_c00143{bottom:7.228357px;}
.y24_c00143{bottom:92.130000px;}
.y23_c00143{bottom:124.230000px;}
.y22_c00143{bottom:159.330000px;}
.y21_c00143{bottom:192.480000px;}
.y20_c00143{bottom:226.680000px;}
.y1f_c00143{bottom:260.880000px;}
.y1e_c00143{bottom:295.080000px;}
.y1d_c00143{bottom:329.130000px;}
.y1c_c00143{bottom:362.880000px;}
.y1b_c00143{bottom:397.980000px;}
.y1a_c00143{bottom:430.980000px;}
.y19_c00143{bottom:465.480000px;}
.y18_c00143{bottom:498.780000px;}
.y17_c00143{bottom:534.930000px;}
.y16_c00143{bottom:565.680000px;}
.y15_c00143{bottom:601.080000px;}
.y14_c00143{bottom:635.130000px;}
.y13_c00143{bottom:667.980000px;}
.y12_c00143{bottom:702.780000px;}
.y11_c00143{bottom:735.480000px;}
.y10_c00143{bottom:769.830000px;}
.yf_c00143{bottom:803.580000px;}
.ye_c00143{bottom:836.730000px;}
.yd_c00143{bottom:870.030000px;}
.yc_c00143{bottom:904.230000px;}
.yb_c00143{bottom:936.630000px;}
.ya_c00143{bottom:969.630000px;}
.y9_c00143{bottom:1003.080000px;}
.y8_c00143{bottom:1036.530000px;}
.y7_c00143{bottom:1069.530000px;}
.y6_c00143{bottom:1102.980000px;}
.y5_c00143{bottom:1135.380000px;}
.y4_c00143{bottom:1168.830000px;}
.y3_c00143{bottom:1201.530000px;}
.y2_c00143{bottom:1235.280000px;}
.y1_c00143{bottom:1266.630000px;}
.h4_c00143{height:13.200074px;}
.h5_c00143{height:43.804688px;}
.h2_c00143{height:121.546875px;}
.h3_c00143{height:125.345215px;}
.h0_c00143{height:1382.700000px;}
.h1_c00143{height:1383.000000px;}
.w2_c00143{width:104.875500px;}
.w0_c00143{width:863.175000px;}
.w1_c00143{width:863.250000px;}
.x0_c00143{left:0.000000px;}
.xa_c00143{left:139.050000px;}
.x8_c00143{left:181.200000px;}
.x1_c00143{left:183.900000px;}
.xb_c00143{left:208.200000px;}
.xc_c00143{left:240.600000px;}
.x3_c00143{left:268.650000px;}
.x2_c00143{left:269.700000px;}
.x4_c00143{left:270.900000px;}
.x5_c00143{left:271.950000px;}
.x7_c00143{left:273.000000px;}
.x6_c00143{left:274.050000px;}
.x9_c00143{left:275.700000px;}
.xe_c00143{left:383.401749px;}
.xd_c00143{left:780.000000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls2_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:4.533333pt;}
.ls1_c00143{letter-spacing:18.890667pt;}
.ws1_c00143{word-spacing:-36.885333pt;}
.ws2_c00143{word-spacing:-21.208000pt;}
.ws0_c00143{word-spacing:-17.994667pt;}
.ws3_c00143{word-spacing:0.000000pt;}
._2a_c00143{margin-left:-30.890667pt;}
._19_c00143{margin-left:-26.112000pt;}
._30_c00143{margin-left:-22.186667pt;}
._33_c00143{margin-left:-17.066667pt;}
._35_c00143{margin-left:-13.141333pt;}
._0_c00143{margin-left:-9.557333pt;}
._6_c00143{margin-left:-7.424000pt;}
._25_c00143{margin-left:-6.485333pt;}
._18_c00143{margin-left:-4.352000pt;}
._21_c00143{margin-left:-3.157333pt;}
._c_c00143{margin-left:-1.877333pt;}
._11_c00143{margin-left:-0.938667pt;}
._1_c00143{width:1.536000pt;}
._a_c00143{width:2.474667pt;}
._9_c00143{width:4.096000pt;}
._1c_c00143{width:5.034667pt;}
._8_c00143{width:5.973333pt;}
._1b_c00143{width:7.253333pt;}
._10_c00143{width:8.448000pt;}
._f_c00143{width:9.898667pt;}
._e_c00143{width:11.093333pt;}
._b_c00143{width:12.885333pt;}
._2f_c00143{width:13.909333pt;}
._d_c00143{width:14.933333pt;}
._27_c00143{width:17.322667pt;}
._4_c00143{width:19.029333pt;}
._2e_c00143{width:20.384000pt;}
._26_c00143{width:21.760000pt;}
._2_c00143{width:22.784000pt;}
._7_c00143{width:24.490667pt;}
._20_c00143{width:25.429333pt;}
._3_c00143{width:26.368000pt;}
._17_c00143{width:27.648000pt;}
._1e_c00143{width:29.184000pt;}
._29_c00143{width:30.464000pt;}
._2c_c00143{width:31.658667pt;}
._28_c00143{width:33.024000pt;}
._24_c00143{width:33.962667pt;}
._3d_c00143{width:34.986667pt;}
._1a_c00143{width:35.925333pt;}
._3b_c00143{width:37.034667pt;}
._15_c00143{width:38.058667pt;}
._23_c00143{width:39.850667pt;}
._16_c00143{width:41.301333pt;}
._37_c00143{width:42.666667pt;}
._13_c00143{width:43.946667pt;}
._12_c00143{width:44.970667pt;}
._2d_c00143{width:46.592000pt;}
._2b_c00143{width:47.616000pt;}
._38_c00143{width:48.981333pt;}
._1f_c00143{width:50.261333pt;}
._14_c00143{width:51.882667pt;}
._22_c00143{width:54.752000pt;}
._3f_c00143{width:59.221333pt;}
._1d_c00143{width:60.330667pt;}
._3c_c00143{width:62.976000pt;}
._5_c00143{width:72.533333pt;}
._3a_c00143{width:74.154667pt;}
._3e_c00143{width:88.320000pt;}
._39_c00143{width:105.301333pt;}
._34_c00143{width:120.576000pt;}
._36_c00143{width:156.672000pt;}
._31_c00143{width:290.645333pt;}
._32_c00143{width:673.194667pt;}
.fs4_c00143{font-size:42.666667pt;}
.fs1_c00143{font-size:74.666667pt;}
.fs0_c00143{font-size:85.333333pt;}
.fs3_c00143{font-size:88.000000pt;}
.fs2_c00143{font-size:90.666667pt;}
.y0_c00143{bottom:0.000000pt;}
.y26_c00143{bottom:2.760000pt;}
.y25_c00143{bottom:6.425206pt;}
.y24_c00143{bottom:81.893333pt;}
.y23_c00143{bottom:110.426667pt;}
.y22_c00143{bottom:141.626667pt;}
.y21_c00143{bottom:171.093333pt;}
.y20_c00143{bottom:201.493333pt;}
.y1f_c00143{bottom:231.893333pt;}
.y1e_c00143{bottom:262.293333pt;}
.y1d_c00143{bottom:292.560000pt;}
.y1c_c00143{bottom:322.560000pt;}
.y1b_c00143{bottom:353.760000pt;}
.y1a_c00143{bottom:383.093333pt;}
.y19_c00143{bottom:413.760000pt;}
.y18_c00143{bottom:443.360000pt;}
.y17_c00143{bottom:475.493333pt;}
.y16_c00143{bottom:502.826667pt;}
.y15_c00143{bottom:534.293333pt;}
.y14_c00143{bottom:564.560000pt;}
.y13_c00143{bottom:593.760000pt;}
.y12_c00143{bottom:624.693333pt;}
.y11_c00143{bottom:653.760000pt;}
.y10_c00143{bottom:684.293333pt;}
.yf_c00143{bottom:714.293333pt;}
.ye_c00143{bottom:743.760000pt;}
.yd_c00143{bottom:773.360000pt;}
.yc_c00143{bottom:803.760000pt;}
.yb_c00143{bottom:832.560000pt;}
.ya_c00143{bottom:861.893333pt;}
.y9_c00143{bottom:891.626667pt;}
.y8_c00143{bottom:921.360000pt;}
.y7_c00143{bottom:950.693333pt;}
.y6_c00143{bottom:980.426667pt;}
.y5_c00143{bottom:1009.226667pt;}
.y4_c00143{bottom:1038.960000pt;}
.y3_c00143{bottom:1068.026667pt;}
.y2_c00143{bottom:1098.026667pt;}
.y1_c00143{bottom:1125.893333pt;}
.h4_c00143{height:11.733399pt;}
.h5_c00143{height:38.937500pt;}
.h2_c00143{height:108.041667pt;}
.h3_c00143{height:111.417969pt;}
.h0_c00143{height:1229.066667pt;}
.h1_c00143{height:1229.333333pt;}
.w2_c00143{width:93.222667pt;}
.w0_c00143{width:767.266667pt;}
.w1_c00143{width:767.333333pt;}
.x0_c00143{left:0.000000pt;}
.xa_c00143{left:123.600000pt;}
.x8_c00143{left:161.066667pt;}
.x1_c00143{left:163.466667pt;}
.xb_c00143{left:185.066667pt;}
.xc_c00143{left:213.866667pt;}
.x3_c00143{left:238.800000pt;}
.x2_c00143{left:239.733333pt;}
.x4_c00143{left:240.800000pt;}
.x5_c00143{left:241.733333pt;}
.x7_c00143{left:242.666667pt;}
.x6_c00143{left:243.600000pt;}
.x9_c00143{left:245.066667pt;}
.xe_c00143{left:340.801554pt;}
.xd_c00143{left:693.333333pt;}
}





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

.ir_c00144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00144;src:url('chunks/assets/font_b5b64b927bf355e051ebfaa2.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_930e33ad85752989b3a064c3.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_bf7a37adea6660d017649aff.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls1_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:12.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:-51.000000px;}
.ws1_c00144{word-spacing:-20.244000px;}
.ws2_c00144{word-spacing:0.000000px;}
._2_c00144{margin-left:-34.974000px;}
._21_c00144{margin-left:-25.098000px;}
._7_c00144{margin-left:-22.707000px;}
._0_c00144{margin-left:-21.663000px;}
._6_c00144{margin-left:-20.619000px;}
._9_c00144{margin-left:-17.139000px;}
._37_c00144{margin-left:-15.006000px;}
._4_c00144{margin-left:-12.702000px;}
._19_c00144{margin-left:-10.092000px;}
._38_c00144{margin-left:-8.832000px;}
._35_c00144{margin-left:-7.662000px;}
._34_c00144{margin-left:-6.432000px;}
._29_c00144{margin-left:-4.896000px;}
._11_c00144{margin-left:-3.060000px;}
._1b_c00144{margin-left:-1.056000px;}
._c_c00144{width:1.152000px;}
._3_c00144{width:2.784000px;}
._d_c00144{width:4.128000px;}
._f_c00144{width:5.472000px;}
._b_c00144{width:7.242000px;}
._22_c00144{width:8.532000px;}
._16_c00144{width:9.984000px;}
._14_c00144{width:11.040000px;}
._2b_c00144{width:12.120000px;}
._15_c00144{width:13.218000px;}
._12_c00144{width:15.072000px;}
._10_c00144{width:16.512000px;}
._1c_c00144{width:18.720000px;}
._13_c00144{width:19.968000px;}
._e_c00144{width:21.024000px;}
._32_c00144{width:22.122000px;}
._3d_c00144{width:24.192000px;}
._1d_c00144{width:25.440000px;}
._36_c00144{width:26.784000px;}
._23_c00144{width:27.864000px;}
._24_c00144{width:29.280000px;}
._18_c00144{width:30.426000px;}
._1a_c00144{width:32.256000px;}
._17_c00144{width:33.708000px;}
._30_c00144{width:34.944000px;}
._1f_c00144{width:36.192000px;}
._39_c00144{width:38.112000px;}
._20_c00144{width:39.258000px;}
._28_c00144{width:40.704000px;}
._26_c00144{width:42.816000px;}
._1e_c00144{width:43.956000px;}
._2c_c00144{width:45.576000px;}
._27_c00144{width:46.590000px;}
._3a_c00144{width:47.670000px;}
._3c_c00144{width:48.972000px;}
._2f_c00144{width:50.208000px;}
._2d_c00144{width:51.744000px;}
._3b_c00144{width:54.342000px;}
._31_c00144{width:57.888000px;}
._1_c00144{width:60.900000px;}
._2e_c00144{width:62.358000px;}
._33_c00144{width:69.690000px;}
._5_c00144{width:71.775000px;}
._a_c00144{width:106.494000px;}
._2a_c00144{width:223.662000px;}
._25_c00144{width:395.856000px;}
._8_c00144{width:502.860000px;}
._3e_c00144{width:836.640000px;}
.fc2_c00144{color:transparent;}
.fc1_c00144{color:rgb(128,128,128);}
.fc0_c00144{color:rgb(0,0,0);}
.fs4_c00144{font-size:48.000000px;}
.fs3_c00144{font-size:84.000000px;}
.fs0_c00144{font-size:87.000000px;}
.fs2_c00144{font-size:96.000000px;}
.fs1_c00144{font-size:102.000000px;}
.y0_c00144{bottom:0.000000px;}
.y27_c00144{bottom:3.105000px;}
.y26_c00144{bottom:7.228369px;}
.y25_c00144{bottom:116.070000px;}
.y24_c00144{bottom:151.170000px;}
.y23_c00144{bottom:186.570000px;}
.y22_c00144{bottom:220.320000px;}
.y21_c00144{bottom:254.820000px;}
.y20_c00144{bottom:289.170000px;}
.y1f_c00144{bottom:323.670000px;}
.y1e_c00144{bottom:357.420000px;}
.y1d_c00144{bottom:391.770000px;}
.y1c_c00144{bottom:425.520000px;}
.y1b_c00144{bottom:459.570000px;}
.y1a_c00144{bottom:493.020000px;}
.y19_c00144{bottom:527.070000px;}
.y18_c00144{bottom:560.820000px;}
.y17_c00144{bottom:593.970000px;}
.y16_c00144{bottom:628.020000px;}
.y15_c00144{bottom:660.870000px;}
.y14_c00144{bottom:694.620000px;}
.y13_c00144{bottom:728.820000px;}
.y12_c00144{bottom:762.120000px;}
.y11_c00144{bottom:795.420000px;}
.y10_c00144{bottom:829.470000px;}
.yf_c00144{bottom:862.620000px;}
.ye_c00144{bottom:896.370000px;}
.yd_c00144{bottom:930.420000px;}
.yc_c00144{bottom:963.270000px;}
.yb_c00144{bottom:997.320000px;}
.ya_c00144{bottom:1030.620000px;}
.y9_c00144{bottom:1064.370000px;}
.y8_c00144{bottom:1097.220000px;}
.y7_c00144{bottom:1131.270000px;}
.y6_c00144{bottom:1165.020000px;}
.y5_c00144{bottom:1197.720000px;}
.y4_c00144{bottom:1230.870000px;}
.y3_c00144{bottom:1264.620000px;}
.y2_c00144{bottom:1298.070000px;}
.y1_c00144{bottom:1316.820000px;}
.h4_c00144{height:13.200073px;}
.h5_c00144{height:43.804688px;}
.h2_c00144{height:110.151855px;}
.h3_c00144{height:121.546875px;}
.h0_c00144{height:1383.450000px;}
.h1_c00144{height:1383.750000px;}
.w2_c00144{width:104.875500px;}
.w0_c00144{width:878.025000px;}
.w1_c00144{width:878.250000px;}
.x0_c00144{left:0.000000px;}
.x8_c00144{left:49.350000px;}
.x7_c00144{left:51.000000px;}
.x6_c00144{left:52.650000px;}
.x5_c00144{left:53.700000px;}
.x4_c00144{left:54.750000px;}
.x3_c00144{left:56.400000px;}
.x2_c00144{left:57.450000px;}
.x1_c00144{left:297.900000px;}
.x9_c00144{left:351.750000px;}
.xa_c00144{left:390.826721px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls1_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:10.666667pt;}
.ws0_c00144{word-spacing:-45.333333pt;}
.ws1_c00144{word-spacing:-17.994667pt;}
.ws2_c00144{word-spacing:0.000000pt;}
._2_c00144{margin-left:-31.088000pt;}
._21_c00144{margin-left:-22.309333pt;}
._7_c00144{margin-left:-20.184000pt;}
._0_c00144{margin-left:-19.256000pt;}
._6_c00144{margin-left:-18.328000pt;}
._9_c00144{margin-left:-15.234667pt;}
._37_c00144{margin-left:-13.338667pt;}
._4_c00144{margin-left:-11.290667pt;}
._19_c00144{margin-left:-8.970667pt;}
._38_c00144{margin-left:-7.850667pt;}
._35_c00144{margin-left:-6.810667pt;}
._34_c00144{margin-left:-5.717333pt;}
._29_c00144{margin-left:-4.352000pt;}
._11_c00144{margin-left:-2.720000pt;}
._1b_c00144{margin-left:-0.938667pt;}
._c_c00144{width:1.024000pt;}
._3_c00144{width:2.474667pt;}
._d_c00144{width:3.669333pt;}
._f_c00144{width:4.864000pt;}
._b_c00144{width:6.437333pt;}
._22_c00144{width:7.584000pt;}
._16_c00144{width:8.874667pt;}
._14_c00144{width:9.813333pt;}
._2b_c00144{width:10.773333pt;}
._15_c00144{width:11.749333pt;}
._12_c00144{width:13.397333pt;}
._10_c00144{width:14.677333pt;}
._1c_c00144{width:16.640000pt;}
._13_c00144{width:17.749333pt;}
._e_c00144{width:18.688000pt;}
._32_c00144{width:19.664000pt;}
._3d_c00144{width:21.504000pt;}
._1d_c00144{width:22.613333pt;}
._36_c00144{width:23.808000pt;}
._23_c00144{width:24.768000pt;}
._24_c00144{width:26.026667pt;}
._18_c00144{width:27.045333pt;}
._1a_c00144{width:28.672000pt;}
._17_c00144{width:29.962667pt;}
._30_c00144{width:31.061333pt;}
._1f_c00144{width:32.170667pt;}
._39_c00144{width:33.877333pt;}
._20_c00144{width:34.896000pt;}
._28_c00144{width:36.181333pt;}
._26_c00144{width:38.058667pt;}
._1e_c00144{width:39.072000pt;}
._2c_c00144{width:40.512000pt;}
._27_c00144{width:41.413333pt;}
._3a_c00144{width:42.373333pt;}
._3c_c00144{width:43.530667pt;}
._2f_c00144{width:44.629333pt;}
._2d_c00144{width:45.994667pt;}
._3b_c00144{width:48.304000pt;}
._31_c00144{width:51.456000pt;}
._1_c00144{width:54.133333pt;}
._2e_c00144{width:55.429333pt;}
._33_c00144{width:61.946667pt;}
._5_c00144{width:63.800000pt;}
._a_c00144{width:94.661333pt;}
._2a_c00144{width:198.810667pt;}
._25_c00144{width:351.872000pt;}
._8_c00144{width:446.986667pt;}
._3e_c00144{width:743.680000pt;}
.fs4_c00144{font-size:42.666667pt;}
.fs3_c00144{font-size:74.666667pt;}
.fs0_c00144{font-size:77.333333pt;}
.fs2_c00144{font-size:85.333333pt;}
.fs1_c00144{font-size:90.666667pt;}
.y0_c00144{bottom:0.000000pt;}
.y27_c00144{bottom:2.760000pt;}
.y26_c00144{bottom:6.425217pt;}
.y25_c00144{bottom:103.173333pt;}
.y24_c00144{bottom:134.373333pt;}
.y23_c00144{bottom:165.840000pt;}
.y22_c00144{bottom:195.840000pt;}
.y21_c00144{bottom:226.506667pt;}
.y20_c00144{bottom:257.040000pt;}
.y1f_c00144{bottom:287.706667pt;}
.y1e_c00144{bottom:317.706667pt;}
.y1d_c00144{bottom:348.240000pt;}
.y1c_c00144{bottom:378.240000pt;}
.y1b_c00144{bottom:408.506667pt;}
.y1a_c00144{bottom:438.240000pt;}
.y19_c00144{bottom:468.506667pt;}
.y18_c00144{bottom:498.506667pt;}
.y17_c00144{bottom:527.973333pt;}
.y16_c00144{bottom:558.240000pt;}
.y15_c00144{bottom:587.440000pt;}
.y14_c00144{bottom:617.440000pt;}
.y13_c00144{bottom:647.840000pt;}
.y12_c00144{bottom:677.440000pt;}
.y11_c00144{bottom:707.040000pt;}
.y10_c00144{bottom:737.306667pt;}
.yf_c00144{bottom:766.773333pt;}
.ye_c00144{bottom:796.773333pt;}
.yd_c00144{bottom:827.040000pt;}
.yc_c00144{bottom:856.240000pt;}
.yb_c00144{bottom:886.506667pt;}
.ya_c00144{bottom:916.106667pt;}
.y9_c00144{bottom:946.106667pt;}
.y8_c00144{bottom:975.306667pt;}
.y7_c00144{bottom:1005.573333pt;}
.y6_c00144{bottom:1035.573333pt;}
.y5_c00144{bottom:1064.640000pt;}
.y4_c00144{bottom:1094.106667pt;}
.y3_c00144{bottom:1124.106667pt;}
.y2_c00144{bottom:1153.840000pt;}
.y1_c00144{bottom:1170.506667pt;}
.h4_c00144{height:11.733399pt;}
.h5_c00144{height:38.937500pt;}
.h2_c00144{height:97.912760pt;}
.h3_c00144{height:108.041667pt;}
.h0_c00144{height:1229.733333pt;}
.h1_c00144{height:1230.000000pt;}
.w2_c00144{width:93.222667pt;}
.w0_c00144{width:780.466667pt;}
.w1_c00144{width:780.666667pt;}
.x0_c00144{left:0.000000pt;}
.x8_c00144{left:43.866667pt;}
.x7_c00144{left:45.333333pt;}
.x6_c00144{left:46.800000pt;}
.x5_c00144{left:47.733333pt;}
.x4_c00144{left:48.666667pt;}
.x3_c00144{left:50.133333pt;}
.x2_c00144{left:51.066667pt;}
.x1_c00144{left:264.800000pt;}
.x9_c00144{left:312.666667pt;}
.xa_c00144{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a699ef573f7df58f11b770d.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_b90d1f0abf952b6764027ce0.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_302199c30aab3037a5ed9bf3.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls4_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:4.800000px;}
.ls3_c00145{letter-spacing:9.600000px;}
.ls2_c00145{letter-spacing:13.800000px;}
.ls1_c00145{letter-spacing:30.600000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:-63.504000px;}
.ws1_c00145{word-spacing:-51.000000px;}
.ws4_c00145{word-spacing:-32.328000px;}
.ws3_c00145{word-spacing:-23.520000px;}
.ws2_c00145{word-spacing:-23.136000px;}
.ws5_c00145{word-spacing:0.000000px;}
._20_c00145{margin-left:-84.480000px;}
._27_c00145{margin-left:-41.028000px;}
._24_c00145{margin-left:-32.328000px;}
._28_c00145{margin-left:-29.952000px;}
._3c_c00145{margin-left:-27.960000px;}
._23_c00145{margin-left:-23.136000px;}
._1c_c00145{margin-left:-17.760000px;}
._25_c00145{margin-left:-15.240000px;}
._32_c00145{margin-left:-13.548000px;}
._8_c00145{margin-left:-12.396000px;}
._26_c00145{margin-left:-10.548000px;}
._2b_c00145{margin-left:-9.180000px;}
._12_c00145{margin-left:-8.016000px;}
._19_c00145{margin-left:-6.144000px;}
._18_c00145{margin-left:-4.416000px;}
._17_c00145{margin-left:-3.408000px;}
._2f_c00145{margin-left:-2.364000px;}
._f_c00145{margin-left:-1.344000px;}
._d_c00145{width:1.152000px;}
._2_c00145{width:2.496000px;}
._2c_c00145{width:3.504000px;}
._1_c00145{width:4.512000px;}
._3_c00145{width:5.568000px;}
._6_c00145{width:6.912000px;}
._0_c00145{width:8.160000px;}
._b_c00145{width:9.216000px;}
._9_c00145{width:10.464000px;}
._3f_c00145{width:11.640000px;}
._a_c00145{width:12.672000px;}
._7_c00145{width:14.232000px;}
._5_c00145{width:15.744000px;}
._4_c00145{width:17.064000px;}
._2a_c00145{width:19.008000px;}
._15_c00145{width:20.064000px;}
._1b_c00145{width:21.888000px;}
._37_c00145{width:24.312000px;}
._c_c00145{width:25.440000px;}
._1a_c00145{width:28.380000px;}
._13_c00145{width:30.792000px;}
._31_c00145{width:32.688000px;}
._11_c00145{width:34.464000px;}
._e_c00145{width:36.480000px;}
._10_c00145{width:38.688000px;}
._14_c00145{width:40.512000px;}
._21_c00145{width:43.536000px;}
._29_c00145{width:44.640000px;}
._3d_c00145{width:45.744000px;}
._1e_c00145{width:47.712000px;}
._22_c00145{width:49.008000px;}
._2e_c00145{width:51.312000px;}
._2d_c00145{width:53.808000px;}
._3e_c00145{width:55.836000px;}
._16_c00145{width:57.888000px;}
._3a_c00145{width:65.088000px;}
._34_c00145{width:66.648000px;}
._1d_c00145{width:69.168000px;}
._1f_c00145{width:75.840000px;}
._38_c00145{width:81.672000px;}
._39_c00145{width:88.380000px;}
._3b_c00145{width:92.412000px;}
._30_c00145{width:136.224000px;}
._35_c00145{width:166.368000px;}
._36_c00145{width:172.128000px;}
._33_c00145{width:698.688000px;}
._40_c00145{width:992.640000px;}
.fc2_c00145{color:transparent;}
.fc1_c00145{color:rgb(128,128,128);}
.fc0_c00145{color:rgb(0,0,0);}
.fs3_c00145{font-size:48.000000px;}
.fs2_c00145{font-size:84.000000px;}
.fs0_c00145{font-size:96.000000px;}
.fs1_c00145{font-size:102.000000px;}
.y0_c00145{bottom:0.000000px;}
.y26_c00145{bottom:3.105000px;}
.y25_c00145{bottom:7.228357px;}
.y24_c00145{bottom:116.130000px;}
.y23_c00145{bottom:148.830000px;}
.y22_c00145{bottom:183.930000px;}
.y21_c00145{bottom:217.980000px;}
.y20_c00145{bottom:252.180000px;}
.y1f_c00145{bottom:286.980000px;}
.y1e_c00145{bottom:321.630000px;}
.y1d_c00145{bottom:355.680000px;}
.y1c_c00145{bottom:390.180000px;}
.y1b_c00145{bottom:424.230000px;}
.y1a_c00145{bottom:458.730000px;}
.y19_c00145{bottom:492.180000px;}
.y18_c00145{bottom:526.830000px;}
.y17_c00145{bottom:560.280000px;}
.y16_c00145{bottom:592.680000px;}
.y15_c00145{bottom:628.830000px;}
.y14_c00145{bottom:661.830000px;}
.y13_c00145{bottom:695.580000px;}
.y12_c00145{bottom:729.780000px;}
.y11_c00145{bottom:763.380000px;}
.y10_c00145{bottom:796.830000px;}
.yf_c00145{bottom:831.030000px;}
.ye_c00145{bottom:864.630000px;}
.yd_c00145{bottom:898.530000px;}
.yc_c00145{bottom:932.280000px;}
.yb_c00145{bottom:965.580000px;}
.ya_c00145{bottom:999.630000px;}
.y9_c00145{bottom:1032.180000px;}
.y8_c00145{bottom:1066.830000px;}
.y7_c00145{bottom:1099.230000px;}
.y6_c00145{bottom:1133.280000px;}
.y5_c00145{bottom:1166.430000px;}
.y4_c00145{bottom:1200.180000px;}
.y3_c00145{bottom:1233.330000px;}
.y2_c00145{bottom:1267.080000px;}
.y1_c00145{bottom:1300.080000px;}
.h3_c00145{height:13.200074px;}
.h4_c00145{height:43.804688px;}
.h2_c00145{height:121.546875px;}
.h0_c00145{height:1382.700000px;}
.h1_c00145{height:1383.000000px;}
.w2_c00145{width:104.875500px;}
.w0_c00145{width:863.175000px;}
.w1_c00145{width:863.250000px;}
.x0_c00145{left:0.000000px;}
.x4_c00145{left:134.100000px;}
.x5_c00145{left:176.250000px;}
.x9_c00145{left:255.150000px;}
.x8_c00145{left:261.000000px;}
.x6_c00145{left:262.650000px;}
.x7_c00145{left:263.700000px;}
.x1_c00145{left:264.900000px;}
.x2_c00145{left:266.400000px;}
.x3_c00145{left:267.600000px;}
.xb_c00145{left:383.401749px;}
.xa_c00145{left:510.750000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls4_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:4.266667pt;}
.ls3_c00145{letter-spacing:8.533333pt;}
.ls2_c00145{letter-spacing:12.266667pt;}
.ls1_c00145{letter-spacing:27.200000pt;}
.ws0_c00145{word-spacing:-56.448000pt;}
.ws1_c00145{word-spacing:-45.333333pt;}
.ws4_c00145{word-spacing:-28.736000pt;}
.ws3_c00145{word-spacing:-20.906667pt;}
.ws2_c00145{word-spacing:-20.565333pt;}
.ws5_c00145{word-spacing:0.000000pt;}
._20_c00145{margin-left:-75.093333pt;}
._27_c00145{margin-left:-36.469333pt;}
._24_c00145{margin-left:-28.736000pt;}
._28_c00145{margin-left:-26.624000pt;}
._3c_c00145{margin-left:-24.853333pt;}
._23_c00145{margin-left:-20.565333pt;}
._1c_c00145{margin-left:-15.786667pt;}
._25_c00145{margin-left:-13.546667pt;}
._32_c00145{margin-left:-12.042667pt;}
._8_c00145{margin-left:-11.018667pt;}
._26_c00145{margin-left:-9.376000pt;}
._2b_c00145{margin-left:-8.160000pt;}
._12_c00145{margin-left:-7.125333pt;}
._19_c00145{margin-left:-5.461333pt;}
._18_c00145{margin-left:-3.925333pt;}
._17_c00145{margin-left:-3.029333pt;}
._2f_c00145{margin-left:-2.101333pt;}
._f_c00145{margin-left:-1.194667pt;}
._d_c00145{width:1.024000pt;}
._2_c00145{width:2.218667pt;}
._2c_c00145{width:3.114667pt;}
._1_c00145{width:4.010667pt;}
._3_c00145{width:4.949333pt;}
._6_c00145{width:6.144000pt;}
._0_c00145{width:7.253333pt;}
._b_c00145{width:8.192000pt;}
._9_c00145{width:9.301333pt;}
._3f_c00145{width:10.346667pt;}
._a_c00145{width:11.264000pt;}
._7_c00145{width:12.650667pt;}
._5_c00145{width:13.994667pt;}
._4_c00145{width:15.168000pt;}
._2a_c00145{width:16.896000pt;}
._15_c00145{width:17.834667pt;}
._1b_c00145{width:19.456000pt;}
._37_c00145{width:21.610667pt;}
._c_c00145{width:22.613333pt;}
._1a_c00145{width:25.226667pt;}
._13_c00145{width:27.370667pt;}
._31_c00145{width:29.056000pt;}
._11_c00145{width:30.634667pt;}
._e_c00145{width:32.426667pt;}
._10_c00145{width:34.389333pt;}
._14_c00145{width:36.010667pt;}
._21_c00145{width:38.698667pt;}
._29_c00145{width:39.680000pt;}
._3d_c00145{width:40.661333pt;}
._1e_c00145{width:42.410667pt;}
._22_c00145{width:43.562667pt;}
._2e_c00145{width:45.610667pt;}
._2d_c00145{width:47.829333pt;}
._3e_c00145{width:49.632000pt;}
._16_c00145{width:51.456000pt;}
._3a_c00145{width:57.856000pt;}
._34_c00145{width:59.242667pt;}
._1d_c00145{width:61.482667pt;}
._1f_c00145{width:67.413333pt;}
._38_c00145{width:72.597333pt;}
._39_c00145{width:78.560000pt;}
._3b_c00145{width:82.144000pt;}
._30_c00145{width:121.088000pt;}
._35_c00145{width:147.882667pt;}
._36_c00145{width:153.002667pt;}
._33_c00145{width:621.056000pt;}
._40_c00145{width:882.346667pt;}
.fs3_c00145{font-size:42.666667pt;}
.fs2_c00145{font-size:74.666667pt;}
.fs0_c00145{font-size:85.333333pt;}
.fs1_c00145{font-size:90.666667pt;}
.y0_c00145{bottom:0.000000pt;}
.y26_c00145{bottom:2.760000pt;}
.y25_c00145{bottom:6.425206pt;}
.y24_c00145{bottom:103.226667pt;}
.y23_c00145{bottom:132.293333pt;}
.y22_c00145{bottom:163.493333pt;}
.y21_c00145{bottom:193.760000pt;}
.y20_c00145{bottom:224.160000pt;}
.y1f_c00145{bottom:255.093333pt;}
.y1e_c00145{bottom:285.893333pt;}
.y1d_c00145{bottom:316.160000pt;}
.y1c_c00145{bottom:346.826667pt;}
.y1b_c00145{bottom:377.093333pt;}
.y1a_c00145{bottom:407.760000pt;}
.y19_c00145{bottom:437.493333pt;}
.y18_c00145{bottom:468.293333pt;}
.y17_c00145{bottom:498.026667pt;}
.y16_c00145{bottom:526.826667pt;}
.y15_c00145{bottom:558.960000pt;}
.y14_c00145{bottom:588.293333pt;}
.y13_c00145{bottom:618.293333pt;}
.y12_c00145{bottom:648.693333pt;}
.y11_c00145{bottom:678.560000pt;}
.y10_c00145{bottom:708.293333pt;}
.yf_c00145{bottom:738.693333pt;}
.ye_c00145{bottom:768.560000pt;}
.yd_c00145{bottom:798.693333pt;}
.yc_c00145{bottom:828.693333pt;}
.yb_c00145{bottom:858.293333pt;}
.ya_c00145{bottom:888.560000pt;}
.y9_c00145{bottom:917.493333pt;}
.y8_c00145{bottom:948.293333pt;}
.y7_c00145{bottom:977.093333pt;}
.y6_c00145{bottom:1007.360000pt;}
.y5_c00145{bottom:1036.826667pt;}
.y4_c00145{bottom:1066.826667pt;}
.y3_c00145{bottom:1096.293333pt;}
.y2_c00145{bottom:1126.293333pt;}
.y1_c00145{bottom:1155.626667pt;}
.h3_c00145{height:11.733399pt;}
.h4_c00145{height:38.937500pt;}
.h2_c00145{height:108.041667pt;}
.h0_c00145{height:1229.066667pt;}
.h1_c00145{height:1229.333333pt;}
.w2_c00145{width:93.222667pt;}
.w0_c00145{width:767.266667pt;}
.w1_c00145{width:767.333333pt;}
.x0_c00145{left:0.000000pt;}
.x4_c00145{left:119.200000pt;}
.x5_c00145{left:156.666667pt;}
.x9_c00145{left:226.800000pt;}
.x8_c00145{left:232.000000pt;}
.x6_c00145{left:233.466667pt;}
.x7_c00145{left:234.400000pt;}
.x1_c00145{left:235.466667pt;}
.x2_c00145{left:236.800000pt;}
.x3_c00145{left:237.866667pt;}
.xb_c00145{left:340.801554pt;}
.xa_c00145{left:454.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_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_b5c7bbc8a0528d2a763cd986.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_3107916485f6b07b90de3a7c.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_aa4fe4bb42abef915c745b77.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_70357a4b50ceb9227c72a3b2.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00146;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls6_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:3.276000px;}
.ls2_c00146{letter-spacing:6.120000px;}
.ls4_c00146{letter-spacing:6.756000px;}
.ls5_c00146{letter-spacing:13.800000px;}
.ls3_c00146{letter-spacing:15.600000px;}
.ls7_c00146{letter-spacing:21.000000px;}
.ls1_c00146{letter-spacing:27.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:-66.780000px;}
.ws2_c00146{word-spacing:0.000000px;}
.ws1_c00146{word-spacing:2.232000px;}
._4b_c00146{margin-left:-75.936000px;}
._4f_c00146{margin-left:-33.384000px;}
._41_c00146{margin-left:-32.352000px;}
._22_c00146{margin-left:-30.480000px;}
._39_c00146{margin-left:-25.920000px;}
._3e_c00146{margin-left:-21.504000px;}
._19_c00146{margin-left:-20.256000px;}
._30_c00146{margin-left:-18.336000px;}
._31_c00146{margin-left:-17.280000px;}
._2a_c00146{margin-left:-16.032000px;}
._4d_c00146{margin-left:-14.736000px;}
._2f_c00146{margin-left:-12.384000px;}
._25_c00146{margin-left:-10.752000px;}
._1c_c00146{margin-left:-8.880000px;}
._11_c00146{margin-left:-7.488000px;}
._33_c00146{margin-left:-6.384000px;}
._10_c00146{margin-left:-5.088000px;}
._12_c00146{margin-left:-4.080000px;}
._7_c00146{margin-left:-3.072000px;}
._18_c00146{margin-left:-1.152000px;}
._0_c00146{width:1.632000px;}
._3_c00146{width:3.072000px;}
._4_c00146{width:4.128000px;}
._a_c00146{width:5.280000px;}
._1_c00146{width:6.816000px;}
._8_c00146{width:8.064000px;}
._13_c00146{width:9.600000px;}
._b_c00146{width:10.944000px;}
._9_c00146{width:12.096000px;}
._37_c00146{width:13.152000px;}
._1b_c00146{width:14.208000px;}
._6_c00146{width:15.552000px;}
._14_c00146{width:17.136000px;}
._5_c00146{width:18.624000px;}
._38_c00146{width:19.776000px;}
._d_c00146{width:21.216000px;}
._32_c00146{width:24.240000px;}
._23_c00146{width:25.344000px;}
._e_c00146{width:27.840000px;}
._20_c00146{width:29.520000px;}
._21_c00146{width:31.584000px;}
._2_c00146{width:33.216000px;}
._1f_c00146{width:34.848000px;}
._15_c00146{width:36.816000px;}
._1e_c00146{width:39.024000px;}
._f_c00146{width:40.404000px;}
._44_c00146{width:41.580000px;}
._1a_c00146{width:43.296000px;}
._34_c00146{width:44.688000px;}
._1d_c00146{width:45.744000px;}
._40_c00146{width:47.424000px;}
._17_c00146{width:49.824000px;}
._16_c00146{width:51.072000px;}
._29_c00146{width:52.944000px;}
._c_c00146{width:54.144000px;}
._47_c00146{width:55.584000px;}
._4e_c00146{width:57.696000px;}
._3c_c00146{width:58.992000px;}
._2b_c00146{width:60.576000px;}
._2e_c00146{width:63.744000px;}
._3a_c00146{width:65.376000px;}
._35_c00146{width:68.856000px;}
._2d_c00146{width:72.144000px;}
._3b_c00146{width:77.184000px;}
._45_c00146{width:83.928000px;}
._27_c00146{width:87.792000px;}
._24_c00146{width:100.992000px;}
._48_c00146{width:117.060000px;}
._36_c00146{width:128.064000px;}
._46_c00146{width:132.192000px;}
._43_c00146{width:153.696000px;}
._42_c00146{width:166.368000px;}
._28_c00146{width:181.392000px;}
._49_c00146{width:182.976000px;}
._4c_c00146{width:185.070000px;}
._2c_c00146{width:341.568000px;}
._4a_c00146{width:359.520000px;}
._3d_c00146{width:457.200000px;}
._3f_c00146{width:526.464000px;}
._26_c00146{width:540.888000px;}
._50_c00146{width:2046.144000px;}
.fc2_c00146{color:transparent;}
.fc1_c00146{color:rgb(128,128,128);}
.fc0_c00146{color:rgb(0,0,0);}
.fs3_c00146{font-size:48.000000px;}
.fs1_c00146{font-size:84.000000px;}
.fs0_c00146{font-size:96.000000px;}
.fs2_c00146{font-size:102.000000px;}
.y0_c00146{bottom:0.000000px;}
.y26_c00146{bottom:3.105000px;}
.y25_c00146{bottom:7.228369px;}
.y24_c00146{bottom:106.920000px;}
.y23_c00146{bottom:138.420000px;}
.y22_c00146{bottom:174.120000px;}
.y21_c00146{bottom:208.170000px;}
.y20_c00146{bottom:241.620000px;}
.y1f_c00146{bottom:274.770000px;}
.y1e_c00146{bottom:308.070000px;}
.y1d_c00146{bottom:343.170000px;}
.y1c_c00146{bottom:377.220000px;}
.y1b_c00146{bottom:411.420000px;}
.y1a_c00146{bottom:444.870000px;}
.y19_c00146{bottom:478.620000px;}
.y18_c00146{bottom:512.670000px;}
.y17_c00146{bottom:546.120000px;}
.y16_c00146{bottom:579.870000px;}
.y15_c00146{bottom:616.320000px;}
.y14_c00146{bottom:646.620000px;}
.y13_c00146{bottom:680.970000px;}
.y12_c00146{bottom:714.420000px;}
.y11_c00146{bottom:747.120000px;}
.y10_c00146{bottom:781.020000px;}
.yf_c00146{bottom:814.620000px;}
.ye_c00146{bottom:848.370000px;}
.yd_c00146{bottom:883.920000px;}
.yc_c00146{bottom:915.270000px;}
.yb_c00146{bottom:949.320000px;}
.ya_c00146{bottom:982.170000px;}
.y9_c00146{bottom:1016.370000px;}
.y8_c00146{bottom:1049.820000px;}
.y7_c00146{bottom:1083.270000px;}
.y6_c00146{bottom:1116.720000px;}
.y5_c00146{bottom:1149.570000px;}
.y4_c00146{bottom:1183.320000px;}
.y3_c00146{bottom:1216.620000px;}
.y2_c00146{bottom:1247.970000px;}
.y1_c00146{bottom:1283.220000px;}
.h4_c00146{height:13.200073px;}
.h5_c00146{height:43.804688px;}
.h2_c00146{height:121.546875px;}
.h3_c00146{height:129.143555px;}
.h0_c00146{height:1383.450000px;}
.h1_c00146{height:1383.750000px;}
.w2_c00146{width:104.875500px;}
.w0_c00146{width:878.025000px;}
.w1_c00146{width:878.250000px;}
.x0_c00146{left:0.000000px;}
.xb_c00146{left:36.000000px;}
.x9_c00146{left:39.150000px;}
.x8_c00146{left:40.800000px;}
.x6_c00146{left:41.850000px;}
.x7_c00146{left:42.900000px;}
.x5_c00146{left:44.550000px;}
.x4_c00146{left:45.600000px;}
.x3_c00146{left:47.850000px;}
.x2_c00146{left:48.900000px;}
.x1_c00146{left:49.950000px;}
.xa_c00146{left:94.800000px;}
.xc_c00146{left:390.826721px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls6_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:2.912000pt;}
.ls2_c00146{letter-spacing:5.440000pt;}
.ls4_c00146{letter-spacing:6.005333pt;}
.ls5_c00146{letter-spacing:12.266667pt;}
.ls3_c00146{letter-spacing:13.866667pt;}
.ls7_c00146{letter-spacing:18.666667pt;}
.ls1_c00146{letter-spacing:24.000000pt;}
.ws0_c00146{word-spacing:-59.360000pt;}
.ws2_c00146{word-spacing:0.000000pt;}
.ws1_c00146{word-spacing:1.984000pt;}
._4b_c00146{margin-left:-67.498667pt;}
._4f_c00146{margin-left:-29.674667pt;}
._41_c00146{margin-left:-28.757333pt;}
._22_c00146{margin-left:-27.093333pt;}
._39_c00146{margin-left:-23.040000pt;}
._3e_c00146{margin-left:-19.114667pt;}
._19_c00146{margin-left:-18.005333pt;}
._30_c00146{margin-left:-16.298667pt;}
._31_c00146{margin-left:-15.360000pt;}
._2a_c00146{margin-left:-14.250667pt;}
._4d_c00146{margin-left:-13.098667pt;}
._2f_c00146{margin-left:-11.008000pt;}
._25_c00146{margin-left:-9.557333pt;}
._1c_c00146{margin-left:-7.893333pt;}
._11_c00146{margin-left:-6.656000pt;}
._33_c00146{margin-left:-5.674667pt;}
._10_c00146{margin-left:-4.522667pt;}
._12_c00146{margin-left:-3.626667pt;}
._7_c00146{margin-left:-2.730667pt;}
._18_c00146{margin-left:-1.024000pt;}
._0_c00146{width:1.450667pt;}
._3_c00146{width:2.730667pt;}
._4_c00146{width:3.669333pt;}
._a_c00146{width:4.693333pt;}
._1_c00146{width:6.058667pt;}
._8_c00146{width:7.168000pt;}
._13_c00146{width:8.533333pt;}
._b_c00146{width:9.728000pt;}
._9_c00146{width:10.752000pt;}
._37_c00146{width:11.690667pt;}
._1b_c00146{width:12.629333pt;}
._6_c00146{width:13.824000pt;}
._14_c00146{width:15.232000pt;}
._5_c00146{width:16.554667pt;}
._38_c00146{width:17.578667pt;}
._d_c00146{width:18.858667pt;}
._32_c00146{width:21.546667pt;}
._23_c00146{width:22.528000pt;}
._e_c00146{width:24.746667pt;}
._20_c00146{width:26.240000pt;}
._21_c00146{width:28.074667pt;}
._2_c00146{width:29.525333pt;}
._1f_c00146{width:30.976000pt;}
._15_c00146{width:32.725333pt;}
._1e_c00146{width:34.688000pt;}
._f_c00146{width:35.914667pt;}
._44_c00146{width:36.960000pt;}
._1a_c00146{width:38.485333pt;}
._34_c00146{width:39.722667pt;}
._1d_c00146{width:40.661333pt;}
._40_c00146{width:42.154667pt;}
._17_c00146{width:44.288000pt;}
._16_c00146{width:45.397333pt;}
._29_c00146{width:47.061333pt;}
._c_c00146{width:48.128000pt;}
._47_c00146{width:49.408000pt;}
._4e_c00146{width:51.285333pt;}
._3c_c00146{width:52.437333pt;}
._2b_c00146{width:53.845333pt;}
._2e_c00146{width:56.661333pt;}
._3a_c00146{width:58.112000pt;}
._35_c00146{width:61.205333pt;}
._2d_c00146{width:64.128000pt;}
._3b_c00146{width:68.608000pt;}
._45_c00146{width:74.602667pt;}
._27_c00146{width:78.037333pt;}
._24_c00146{width:89.770667pt;}
._48_c00146{width:104.053333pt;}
._36_c00146{width:113.834667pt;}
._46_c00146{width:117.504000pt;}
._43_c00146{width:136.618667pt;}
._42_c00146{width:147.882667pt;}
._28_c00146{width:161.237333pt;}
._49_c00146{width:162.645333pt;}
._4c_c00146{width:164.506667pt;}
._2c_c00146{width:303.616000pt;}
._4a_c00146{width:319.573333pt;}
._3d_c00146{width:406.400000pt;}
._3f_c00146{width:467.968000pt;}
._26_c00146{width:480.789333pt;}
._50_c00146{width:1818.794667pt;}
.fs3_c00146{font-size:42.666667pt;}
.fs1_c00146{font-size:74.666667pt;}
.fs0_c00146{font-size:85.333333pt;}
.fs2_c00146{font-size:90.666667pt;}
.y0_c00146{bottom:0.000000pt;}
.y26_c00146{bottom:2.760000pt;}
.y25_c00146{bottom:6.425217pt;}
.y24_c00146{bottom:95.040000pt;}
.y23_c00146{bottom:123.040000pt;}
.y22_c00146{bottom:154.773333pt;}
.y21_c00146{bottom:185.040000pt;}
.y20_c00146{bottom:214.773333pt;}
.y1f_c00146{bottom:244.240000pt;}
.y1e_c00146{bottom:273.840000pt;}
.y1d_c00146{bottom:305.040000pt;}
.y1c_c00146{bottom:335.306667pt;}
.y1b_c00146{bottom:365.706667pt;}
.y1a_c00146{bottom:395.440000pt;}
.y19_c00146{bottom:425.440000pt;}
.y18_c00146{bottom:455.706667pt;}
.y17_c00146{bottom:485.440000pt;}
.y16_c00146{bottom:515.440000pt;}
.y15_c00146{bottom:547.840000pt;}
.y14_c00146{bottom:574.773333pt;}
.y13_c00146{bottom:605.306667pt;}
.y12_c00146{bottom:635.040000pt;}
.y11_c00146{bottom:664.106667pt;}
.y10_c00146{bottom:694.240000pt;}
.yf_c00146{bottom:724.106667pt;}
.ye_c00146{bottom:754.106667pt;}
.yd_c00146{bottom:785.706667pt;}
.yc_c00146{bottom:813.573333pt;}
.yb_c00146{bottom:843.840000pt;}
.ya_c00146{bottom:873.040000pt;}
.y9_c00146{bottom:903.440000pt;}
.y8_c00146{bottom:933.173333pt;}
.y7_c00146{bottom:962.906667pt;}
.y6_c00146{bottom:992.640000pt;}
.y5_c00146{bottom:1021.840000pt;}
.y4_c00146{bottom:1051.840000pt;}
.y3_c00146{bottom:1081.440000pt;}
.y2_c00146{bottom:1109.306667pt;}
.y1_c00146{bottom:1140.640000pt;}
.h4_c00146{height:11.733399pt;}
.h5_c00146{height:38.937500pt;}
.h2_c00146{height:108.041667pt;}
.h3_c00146{height:114.794271pt;}
.h0_c00146{height:1229.733333pt;}
.h1_c00146{height:1230.000000pt;}
.w2_c00146{width:93.222667pt;}
.w0_c00146{width:780.466667pt;}
.w1_c00146{width:780.666667pt;}
.x0_c00146{left:0.000000pt;}
.xb_c00146{left:32.000000pt;}
.x9_c00146{left:34.800000pt;}
.x8_c00146{left:36.266667pt;}
.x6_c00146{left:37.200000pt;}
.x7_c00146{left:38.133333pt;}
.x5_c00146{left:39.600000pt;}
.x4_c00146{left:40.533333pt;}
.x3_c00146{left:42.533333pt;}
.x2_c00146{left:43.466667pt;}
.x1_c00146{left:44.400000pt;}
.xa_c00146{left:84.266667pt;}
.xc_c00146{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd88d95493d6bebcdff1e95c.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_3b9b3dcbd7bdd84a299b4eb1.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_f42397c5f7fc48d8d5de873c.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_5d15dffe84e85f5b758fd807.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00147;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00147;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00147{font-family:ff6_c00147;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls2_c00147{letter-spacing:0.000000px;}
.ls1_c00147{letter-spacing:5.388000px;}
.ls3_c00147{letter-spacing:15.000000px;}
.ls0_c00147{letter-spacing:21.888000px;}
.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;}
}
.ws1_c00147{word-spacing:-51.000000px;}
.ws0_c00147{word-spacing:-49.704000px;}
.ws3_c00147{word-spacing:-23.136000px;}
.ws4_c00147{word-spacing:0.000000px;}
.ws2_c00147{word-spacing:4.740000px;}
._30_c00147{margin-left:-27.552000px;}
._20_c00147{margin-left:-25.632000px;}
._2f_c00147{margin-left:-22.176000px;}
._2d_c00147{margin-left:-17.664000px;}
._1d_c00147{margin-left:-15.456000px;}
._27_c00147{margin-left:-13.440000px;}
._1e_c00147{margin-left:-12.384000px;}
._a_c00147{margin-left:-10.464000px;}
._2b_c00147{margin-left:-9.408000px;}
._21_c00147{margin-left:-7.776000px;}
._16_c00147{margin-left:-5.472000px;}
._17_c00147{margin-left:-4.464000px;}
._e_c00147{margin-left:-2.496000px;}
._4_c00147{margin-left:-1.248000px;}
._10_c00147{width:1.152000px;}
._1_c00147{width:2.400000px;}
._1f_c00147{width:3.480000px;}
._0_c00147{width:4.608000px;}
._39_c00147{width:5.616000px;}
._2_c00147{width:6.624000px;}
._c_c00147{width:7.680000px;}
._3b_c00147{width:8.760000px;}
._7_c00147{width:9.792000px;}
._6_c00147{width:11.712000px;}
._2a_c00147{width:12.960000px;}
._b_c00147{width:14.688000px;}
._9_c00147{width:16.512000px;}
._15_c00147{width:19.296000px;}
._5_c00147{width:20.736000px;}
._29_c00147{width:21.840000px;}
._35_c00147{width:24.168000px;}
._42_c00147{width:25.200000px;}
._13_c00147{width:26.208000px;}
._2e_c00147{width:27.648000px;}
._36_c00147{width:30.120000px;}
._3_c00147{width:31.392000px;}
._25_c00147{width:32.592000px;}
._f_c00147{width:34.368000px;}
._8_c00147{width:36.960000px;}
._11_c00147{width:38.112000px;}
._14_c00147{width:39.552000px;}
._32_c00147{width:40.968000px;}
._38_c00147{width:43.200000px;}
._12_c00147{width:45.216000px;}
._3c_c00147{width:47.472000px;}
._d_c00147{width:48.576000px;}
._1b_c00147{width:50.112000px;}
._37_c00147{width:52.224000px;}
._24_c00147{width:54.288000px;}
._31_c00147{width:55.392000px;}
._34_c00147{width:57.024000px;}
._3a_c00147{width:58.272000px;}
._33_c00147{width:60.288000px;}
._1c_c00147{width:64.320000px;}
._26_c00147{width:68.928000px;}
._3f_c00147{width:71.808000px;}
._3e_c00147{width:75.504000px;}
._1a_c00147{width:85.008000px;}
._19_c00147{width:92.256000px;}
._18_c00147{width:98.448000px;}
._2c_c00147{width:118.464000px;}
._3d_c00147{width:163.908000px;}
._41_c00147{width:174.240000px;}
._23_c00147{width:177.600000px;}
._22_c00147{width:269.664000px;}
._28_c00147{width:286.656000px;}
._40_c00147{width:287.664000px;}
.fc2_c00147{color:transparent;}
.fc1_c00147{color:rgb(128,128,128);}
.fc0_c00147{color:rgb(0,0,0);}
.fs2_c00147{font-size:27.000000px;}
.fs6_c00147{font-size:48.000000px;}
.fs4_c00147{font-size:84.000000px;}
.fs0_c00147{font-size:96.000000px;}
.fs5_c00147{font-size:99.000000px;}
.fs3_c00147{font-size:102.000000px;}
.fs1_c00147{font-size:144.000000px;}
.y0_c00147{bottom:0.000000px;}
.y23_c00147{bottom:3.105000px;}
.y22_c00147{bottom:7.228355px;}
.y21_c00147{bottom:99.885000px;}
.y20_c00147{bottom:131.835000px;}
.y1f_c00147{bottom:166.935000px;}
.y1e_c00147{bottom:201.135000px;}
.y1d_c00147{bottom:235.485000px;}
.y1c_c00147{bottom:269.535000px;}
.y1b_c00147{bottom:304.335000px;}
.y1a_c00147{bottom:335.685000px;}
.y19_c00147{bottom:372.885000px;}
.y18_c00147{bottom:406.635000px;}
.y17_c00147{bottom:440.685000px;}
.y16_c00147{bottom:474.885000px;}
.y15_c00147{bottom:508.935000px;}
.y14_c00147{bottom:543.285000px;}
.y13_c00147{bottom:576.735000px;}
.y12_c00147{bottom:611.085000px;}
.y11_c00147{bottom:644.535000px;}
.y10_c00147{bottom:677.685000px;}
.yf_c00147{bottom:711.735000px;}
.ye_c00147{bottom:744.885000px;}
.yd_c00147{bottom:778.935000px;}
.yc_c00147{bottom:812.985000px;}
.yb_c00147{bottom:846.435000px;}
.ya_c00147{bottom:880.485000px;}
.y9_c00147{bottom:913.635000px;}
.y8_c00147{bottom:946.635000px;}
.y7_c00147{bottom:972.585000px;}
.y6_c00147{bottom:1035.435000px;}
.y5_c00147{bottom:1087.635000px;}
.y4_c00147{bottom:1137.285000px;}
.y3_c00147{bottom:1215.885000px;}
.y2_c00147{bottom:1249.635000px;}
.y1_c00147{bottom:1282.185000px;}
.h5_c00147{height:13.200074px;}
.h4_c00147{height:31.601074px;}
.h6_c00147{height:43.804688px;}
.h2_c00147{height:121.546875px;}
.h3_c00147{height:182.320312px;}
.h1_c00147{height:1366.500000px;}
.h0_c00147{height:1366.725000px;}
.w2_c00147{width:104.875500px;}
.w0_c00147{width:852.675000px;}
.w1_c00147{width:852.750000px;}
.x0_c00147{left:0.000000px;}
.x9_c00147{left:157.350000px;}
.x8_c00147{left:161.100000px;}
.xf_c00147{left:175.200000px;}
.xa_c00147{left:182.700000px;}
.x3_c00147{left:262.200000px;}
.x2_c00147{left:263.250000px;}
.x1_c00147{left:264.900000px;}
.xb_c00147{left:265.950000px;}
.xc_c00147{left:268.050000px;}
.xd_c00147{left:269.100000px;}
.xe_c00147{left:321.600000px;}
.x4_c00147{left:333.450000px;}
.x11_c00147{left:378.151749px;}
.x7_c00147{left:432.000000px;}
.x5_c00147{left:436.500000px;}
.x6_c00147{left:478.650000px;}
.x10_c00147{left:808.050000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls2_c00147{letter-spacing:0.000000pt;}
.ls1_c00147{letter-spacing:4.789333pt;}
.ls3_c00147{letter-spacing:13.333333pt;}
.ls0_c00147{letter-spacing:19.456000pt;}
.ws1_c00147{word-spacing:-45.333333pt;}
.ws0_c00147{word-spacing:-44.181333pt;}
.ws3_c00147{word-spacing:-20.565333pt;}
.ws4_c00147{word-spacing:0.000000pt;}
.ws2_c00147{word-spacing:4.213333pt;}
._30_c00147{margin-left:-24.490667pt;}
._20_c00147{margin-left:-22.784000pt;}
._2f_c00147{margin-left:-19.712000pt;}
._2d_c00147{margin-left:-15.701333pt;}
._1d_c00147{margin-left:-13.738667pt;}
._27_c00147{margin-left:-11.946667pt;}
._1e_c00147{margin-left:-11.008000pt;}
._a_c00147{margin-left:-9.301333pt;}
._2b_c00147{margin-left:-8.362667pt;}
._21_c00147{margin-left:-6.912000pt;}
._16_c00147{margin-left:-4.864000pt;}
._17_c00147{margin-left:-3.968000pt;}
._e_c00147{margin-left:-2.218667pt;}
._4_c00147{margin-left:-1.109333pt;}
._10_c00147{width:1.024000pt;}
._1_c00147{width:2.133333pt;}
._1f_c00147{width:3.093333pt;}
._0_c00147{width:4.096000pt;}
._39_c00147{width:4.992000pt;}
._2_c00147{width:5.888000pt;}
._c_c00147{width:6.826667pt;}
._3b_c00147{width:7.786667pt;}
._7_c00147{width:8.704000pt;}
._6_c00147{width:10.410667pt;}
._2a_c00147{width:11.520000pt;}
._b_c00147{width:13.056000pt;}
._9_c00147{width:14.677333pt;}
._15_c00147{width:17.152000pt;}
._5_c00147{width:18.432000pt;}
._29_c00147{width:19.413333pt;}
._35_c00147{width:21.482667pt;}
._42_c00147{width:22.400000pt;}
._13_c00147{width:23.296000pt;}
._2e_c00147{width:24.576000pt;}
._36_c00147{width:26.773333pt;}
._3_c00147{width:27.904000pt;}
._25_c00147{width:28.970667pt;}
._f_c00147{width:30.549333pt;}
._8_c00147{width:32.853333pt;}
._11_c00147{width:33.877333pt;}
._14_c00147{width:35.157333pt;}
._32_c00147{width:36.416000pt;}
._38_c00147{width:38.400000pt;}
._12_c00147{width:40.192000pt;}
._3c_c00147{width:42.197333pt;}
._d_c00147{width:43.178667pt;}
._1b_c00147{width:44.544000pt;}
._37_c00147{width:46.421333pt;}
._24_c00147{width:48.256000pt;}
._31_c00147{width:49.237333pt;}
._34_c00147{width:50.688000pt;}
._3a_c00147{width:51.797333pt;}
._33_c00147{width:53.589333pt;}
._1c_c00147{width:57.173333pt;}
._26_c00147{width:61.269333pt;}
._3f_c00147{width:63.829333pt;}
._3e_c00147{width:67.114667pt;}
._1a_c00147{width:75.562667pt;}
._19_c00147{width:82.005333pt;}
._18_c00147{width:87.509333pt;}
._2c_c00147{width:105.301333pt;}
._3d_c00147{width:145.696000pt;}
._41_c00147{width:154.880000pt;}
._23_c00147{width:157.866667pt;}
._22_c00147{width:239.701333pt;}
._28_c00147{width:254.805333pt;}
._40_c00147{width:255.701333pt;}
.fs2_c00147{font-size:24.000000pt;}
.fs6_c00147{font-size:42.666667pt;}
.fs4_c00147{font-size:74.666667pt;}
.fs0_c00147{font-size:85.333333pt;}
.fs5_c00147{font-size:88.000000pt;}
.fs3_c00147{font-size:90.666667pt;}
.fs1_c00147{font-size:128.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y23_c00147{bottom:2.760000pt;}
.y22_c00147{bottom:6.425204pt;}
.y21_c00147{bottom:88.786667pt;}
.y20_c00147{bottom:117.186667pt;}
.y1f_c00147{bottom:148.386667pt;}
.y1e_c00147{bottom:178.786667pt;}
.y1d_c00147{bottom:209.320000pt;}
.y1c_c00147{bottom:239.586667pt;}
.y1b_c00147{bottom:270.520000pt;}
.y1a_c00147{bottom:298.386667pt;}
.y19_c00147{bottom:331.453333pt;}
.y18_c00147{bottom:361.453333pt;}
.y17_c00147{bottom:391.720000pt;}
.y16_c00147{bottom:422.120000pt;}
.y15_c00147{bottom:452.386667pt;}
.y14_c00147{bottom:482.920000pt;}
.y13_c00147{bottom:512.653333pt;}
.y12_c00147{bottom:543.186667pt;}
.y11_c00147{bottom:572.920000pt;}
.y10_c00147{bottom:602.386667pt;}
.yf_c00147{bottom:632.653333pt;}
.ye_c00147{bottom:662.120000pt;}
.yd_c00147{bottom:692.386667pt;}
.yc_c00147{bottom:722.653333pt;}
.yb_c00147{bottom:752.386667pt;}
.ya_c00147{bottom:782.653333pt;}
.y9_c00147{bottom:812.120000pt;}
.y8_c00147{bottom:841.453333pt;}
.y7_c00147{bottom:864.520000pt;}
.y6_c00147{bottom:920.386667pt;}
.y5_c00147{bottom:966.786667pt;}
.y4_c00147{bottom:1010.920000pt;}
.y3_c00147{bottom:1080.786667pt;}
.y2_c00147{bottom:1110.786667pt;}
.y1_c00147{bottom:1139.720000pt;}
.h5_c00147{height:11.733399pt;}
.h4_c00147{height:28.089844pt;}
.h6_c00147{height:38.937500pt;}
.h2_c00147{height:108.041667pt;}
.h3_c00147{height:162.062500pt;}
.h1_c00147{height:1214.666667pt;}
.h0_c00147{height:1214.866667pt;}
.w2_c00147{width:93.222667pt;}
.w0_c00147{width:757.933333pt;}
.w1_c00147{width:758.000000pt;}
.x0_c00147{left:0.000000pt;}
.x9_c00147{left:139.866667pt;}
.x8_c00147{left:143.200000pt;}
.xf_c00147{left:155.733333pt;}
.xa_c00147{left:162.400000pt;}
.x3_c00147{left:233.066667pt;}
.x2_c00147{left:234.000000pt;}
.x1_c00147{left:235.466667pt;}
.xb_c00147{left:236.400000pt;}
.xc_c00147{left:238.266667pt;}
.xd_c00147{left:239.200000pt;}
.xe_c00147{left:285.866667pt;}
.x4_c00147{left:296.400000pt;}
.x11_c00147{left:336.134888pt;}
.x7_c00147{left:384.000000pt;}
.x5_c00147{left:388.000000pt;}
.x6_c00147{left:425.466667pt;}
.x10_c00147{left:718.266667pt;}
}





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

.ir_c00148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00148;src:url('chunks/assets/font_ec8e51e51e08504b094618f1.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_1a290b975d7f7a6ad23d0cd3.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00148{word-spacing:-51.000000px;}
.ws0_c00148{word-spacing:-20.244000px;}
.ws2_c00148{word-spacing:0.000000px;}
._37_c00148{margin-left:-42.624000px;}
._35_c00148{margin-left:-29.760000px;}
._3c_c00148{margin-left:-24.864000px;}
._3d_c00148{margin-left:-23.616000px;}
._2d_c00148{margin-left:-20.544000px;}
._2f_c00148{margin-left:-17.088000px;}
._2e_c00148{margin-left:-14.496000px;}
._2a_c00148{margin-left:-13.344000px;}
._28_c00148{margin-left:-12.192000px;}
._3a_c00148{margin-left:-10.752000px;}
._1e_c00148{margin-left:-9.696000px;}
._29_c00148{margin-left:-8.544000px;}
._22_c00148{margin-left:-7.008000px;}
._26_c00148{margin-left:-5.856000px;}
._23_c00148{margin-left:-4.416000px;}
._10_c00148{margin-left:-3.072000px;}
._12_c00148{margin-left:-1.632000px;}
._8_c00148{width:1.728000px;}
._5_c00148{width:3.264000px;}
._4_c00148{width:4.320000px;}
._3_c00148{width:5.472000px;}
._1d_c00148{width:6.528000px;}
._0_c00148{width:7.584000px;}
._14_c00148{width:9.120000px;}
._11_c00148{width:10.464000px;}
._18_c00148{width:12.096000px;}
._d_c00148{width:13.536000px;}
._1_c00148{width:14.880000px;}
._f_c00148{width:17.184000px;}
._e_c00148{width:19.104000px;}
._c_c00148{width:21.312000px;}
._19_c00148{width:24.864000px;}
._24_c00148{width:26.256000px;}
._2_c00148{width:27.552000px;}
._b_c00148{width:28.992000px;}
._1c_c00148{width:30.048000px;}
._a_c00148{width:31.872000px;}
._6_c00148{width:33.984000px;}
._1f_c00148{width:35.424000px;}
._13_c00148{width:37.152000px;}
._17_c00148{width:38.208000px;}
._30_c00148{width:39.648000px;}
._7_c00148{width:41.184000px;}
._21_c00148{width:42.720000px;}
._32_c00148{width:43.776000px;}
._9_c00148{width:45.120000px;}
._36_c00148{width:46.848000px;}
._20_c00148{width:47.904000px;}
._16_c00148{width:49.248000px;}
._2c_c00148{width:51.168000px;}
._15_c00148{width:54.144000px;}
._2b_c00148{width:55.872000px;}
._34_c00148{width:57.792000px;}
._39_c00148{width:62.496000px;}
._38_c00148{width:64.224000px;}
._25_c00148{width:65.376000px;}
._33_c00148{width:67.200000px;}
._1b_c00148{width:68.736000px;}
._1a_c00148{width:75.072000px;}
._3b_c00148{width:82.272000px;}
._27_c00148{width:88.224000px;}
._31_c00148{width:125.088000px;}
._3f_c00148{width:738.144000px;}
._3e_c00148{width:1109.376000px;}
.fc2_c00148{color:transparent;}
.fc1_c00148{color:rgb(128,128,128);}
.fc0_c00148{color:rgb(0,0,0);}
.fs3_c00148{font-size:48.000000px;}
.fs1_c00148{font-size:84.000000px;}
.fs0_c00148{font-size:96.000000px;}
.fs2_c00148{font-size:102.000000px;}
.y0_c00148{bottom:0.000000px;}
.y26_c00148{bottom:3.105000px;}
.y25_c00148{bottom:7.228369px;}
.y24_c00148{bottom:76.320000px;}
.y23_c00148{bottom:113.070000px;}
.y22_c00148{bottom:147.870000px;}
.y21_c00148{bottom:182.520000px;}
.y20_c00148{bottom:216.570000px;}
.y1f_c00148{bottom:250.770000px;}
.y1e_c00148{bottom:284.520000px;}
.y1d_c00148{bottom:319.170000px;}
.y1c_c00148{bottom:353.070000px;}
.y1b_c00148{bottom:386.820000px;}
.y1a_c00148{bottom:420.570000px;}
.y19_c00148{bottom:454.320000px;}
.y18_c00148{bottom:488.070000px;}
.y17_c00148{bottom:522.120000px;}
.y16_c00148{bottom:555.870000px;}
.y15_c00148{bottom:589.170000px;}
.y14_c00148{bottom:623.370000px;}
.y13_c00148{bottom:656.820000px;}
.y12_c00148{bottom:690.270000px;}
.y11_c00148{bottom:724.170000px;}
.y10_c00148{bottom:758.070000px;}
.yf_c00148{bottom:791.070000px;}
.ye_c00148{bottom:825.420000px;}
.yd_c00148{bottom:858.570000px;}
.yc_c00148{bottom:892.470000px;}
.yb_c00148{bottom:925.470000px;}
.ya_c00148{bottom:958.470000px;}
.y9_c00148{bottom:991.920000px;}
.y8_c00148{bottom:1026.270000px;}
.y7_c00148{bottom:1060.020000px;}
.y6_c00148{bottom:1093.770000px;}
.y5_c00148{bottom:1126.920000px;}
.y4_c00148{bottom:1160.670000px;}
.y3_c00148{bottom:1194.120000px;}
.y2_c00148{bottom:1227.420000px;}
.y1_c00148{bottom:1260.570000px;}
.h3_c00148{height:13.200073px;}
.h4_c00148{height:43.804688px;}
.h2_c00148{height:121.546875px;}
.h0_c00148{height:1383.450000px;}
.h1_c00148{height:1383.750000px;}
.w2_c00148{width:104.875500px;}
.w0_c00148{width:878.025000px;}
.w1_c00148{width:878.250000px;}
.x0_c00148{left:0.000000px;}
.x6_c00148{left:37.500000px;}
.x5_c00148{left:38.550000px;}
.x4_c00148{left:39.600000px;}
.x3_c00148{left:41.850000px;}
.x2_c00148{left:42.900000px;}
.x1_c00148{left:44.100000px;}
.x7_c00148{left:390.826721px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ws1_c00148{word-spacing:-45.333333pt;}
.ws0_c00148{word-spacing:-17.994667pt;}
.ws2_c00148{word-spacing:0.000000pt;}
._37_c00148{margin-left:-37.888000pt;}
._35_c00148{margin-left:-26.453333pt;}
._3c_c00148{margin-left:-22.101333pt;}
._3d_c00148{margin-left:-20.992000pt;}
._2d_c00148{margin-left:-18.261333pt;}
._2f_c00148{margin-left:-15.189333pt;}
._2e_c00148{margin-left:-12.885333pt;}
._2a_c00148{margin-left:-11.861333pt;}
._28_c00148{margin-left:-10.837333pt;}
._3a_c00148{margin-left:-9.557333pt;}
._1e_c00148{margin-left:-8.618667pt;}
._29_c00148{margin-left:-7.594667pt;}
._22_c00148{margin-left:-6.229333pt;}
._26_c00148{margin-left:-5.205333pt;}
._23_c00148{margin-left:-3.925333pt;}
._10_c00148{margin-left:-2.730667pt;}
._12_c00148{margin-left:-1.450667pt;}
._8_c00148{width:1.536000pt;}
._5_c00148{width:2.901333pt;}
._4_c00148{width:3.840000pt;}
._3_c00148{width:4.864000pt;}
._1d_c00148{width:5.802667pt;}
._0_c00148{width:6.741333pt;}
._14_c00148{width:8.106667pt;}
._11_c00148{width:9.301333pt;}
._18_c00148{width:10.752000pt;}
._d_c00148{width:12.032000pt;}
._1_c00148{width:13.226667pt;}
._f_c00148{width:15.274667pt;}
._e_c00148{width:16.981333pt;}
._c_c00148{width:18.944000pt;}
._19_c00148{width:22.101333pt;}
._24_c00148{width:23.338667pt;}
._2_c00148{width:24.490667pt;}
._b_c00148{width:25.770667pt;}
._1c_c00148{width:26.709333pt;}
._a_c00148{width:28.330667pt;}
._6_c00148{width:30.208000pt;}
._1f_c00148{width:31.488000pt;}
._13_c00148{width:33.024000pt;}
._17_c00148{width:33.962667pt;}
._30_c00148{width:35.242667pt;}
._7_c00148{width:36.608000pt;}
._21_c00148{width:37.973333pt;}
._32_c00148{width:38.912000pt;}
._9_c00148{width:40.106667pt;}
._36_c00148{width:41.642667pt;}
._20_c00148{width:42.581333pt;}
._16_c00148{width:43.776000pt;}
._2c_c00148{width:45.482667pt;}
._15_c00148{width:48.128000pt;}
._2b_c00148{width:49.664000pt;}
._34_c00148{width:51.370667pt;}
._39_c00148{width:55.552000pt;}
._38_c00148{width:57.088000pt;}
._25_c00148{width:58.112000pt;}
._33_c00148{width:59.733333pt;}
._1b_c00148{width:61.098667pt;}
._1a_c00148{width:66.730667pt;}
._3b_c00148{width:73.130667pt;}
._27_c00148{width:78.421333pt;}
._31_c00148{width:111.189333pt;}
._3f_c00148{width:656.128000pt;}
._3e_c00148{width:986.112000pt;}
.fs3_c00148{font-size:42.666667pt;}
.fs1_c00148{font-size:74.666667pt;}
.fs0_c00148{font-size:85.333333pt;}
.fs2_c00148{font-size:90.666667pt;}
.y0_c00148{bottom:0.000000pt;}
.y26_c00148{bottom:2.760000pt;}
.y25_c00148{bottom:6.425217pt;}
.y24_c00148{bottom:67.840000pt;}
.y23_c00148{bottom:100.506667pt;}
.y22_c00148{bottom:131.440000pt;}
.y21_c00148{bottom:162.240000pt;}
.y20_c00148{bottom:192.506667pt;}
.y1f_c00148{bottom:222.906667pt;}
.y1e_c00148{bottom:252.906667pt;}
.y1d_c00148{bottom:283.706667pt;}
.y1c_c00148{bottom:313.840000pt;}
.y1b_c00148{bottom:343.840000pt;}
.y1a_c00148{bottom:373.840000pt;}
.y19_c00148{bottom:403.840000pt;}
.y18_c00148{bottom:433.840000pt;}
.y17_c00148{bottom:464.106667pt;}
.y16_c00148{bottom:494.106667pt;}
.y15_c00148{bottom:523.706667pt;}
.y14_c00148{bottom:554.106667pt;}
.y13_c00148{bottom:583.840000pt;}
.y12_c00148{bottom:613.573333pt;}
.y11_c00148{bottom:643.706667pt;}
.y10_c00148{bottom:673.840000pt;}
.yf_c00148{bottom:703.173333pt;}
.ye_c00148{bottom:733.706667pt;}
.yd_c00148{bottom:763.173333pt;}
.yc_c00148{bottom:793.306667pt;}
.yb_c00148{bottom:822.640000pt;}
.ya_c00148{bottom:851.973333pt;}
.y9_c00148{bottom:881.706667pt;}
.y8_c00148{bottom:912.240000pt;}
.y7_c00148{bottom:942.240000pt;}
.y6_c00148{bottom:972.240000pt;}
.y5_c00148{bottom:1001.706667pt;}
.y4_c00148{bottom:1031.706667pt;}
.y3_c00148{bottom:1061.440000pt;}
.y2_c00148{bottom:1091.040000pt;}
.y1_c00148{bottom:1120.506667pt;}
.h3_c00148{height:11.733399pt;}
.h4_c00148{height:38.937500pt;}
.h2_c00148{height:108.041667pt;}
.h0_c00148{height:1229.733333pt;}
.h1_c00148{height:1230.000000pt;}
.w2_c00148{width:93.222667pt;}
.w0_c00148{width:780.466667pt;}
.w1_c00148{width:780.666667pt;}
.x0_c00148{left:0.000000pt;}
.x6_c00148{left:33.333333pt;}
.x5_c00148{left:34.266667pt;}
.x4_c00148{left:35.200000pt;}
.x3_c00148{left:37.200000pt;}
.x2_c00148{left:38.133333pt;}
.x1_c00148{left:39.200000pt;}
.x7_c00148{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33622e1ae11129bfbed5ae79.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_a94d96d199ac60f23336f8f7.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_a7ab1c22a5033ef8c7e3dbb6.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;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_c00149;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.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:-63.504000px;}
.ws3_c00149{word-spacing:-51.000000px;}
.ws1_c00149{word-spacing:-32.424000px;}
.ws4_c00149{word-spacing:-23.136000px;}
.ws2_c00149{word-spacing:-10.483200px;}
.ws5_c00149{word-spacing:0.000000px;}
._23_c00149{margin-left:-31.488000px;}
._21_c00149{margin-left:-29.280000px;}
._12_c00149{margin-left:-28.224000px;}
._29_c00149{margin-left:-25.951200px;}
._36_c00149{margin-left:-24.204000px;}
._1d_c00149{margin-left:-18.672000px;}
._13_c00149{margin-left:-16.032000px;}
._1e_c00149{margin-left:-13.920000px;}
._2b_c00149{margin-left:-12.252000px;}
._32_c00149{margin-left:-10.860000px;}
._24_c00149{margin-left:-8.688000px;}
._34_c00149{margin-left:-7.104000px;}
._27_c00149{margin-left:-4.512000px;}
._1c_c00149{margin-left:-3.204000px;}
._c_c00149{margin-left:-1.260000px;}
._18_c00149{width:1.056000px;}
._6_c00149{width:2.208000px;}
._7_c00149{width:3.264000px;}
._5_c00149{width:4.512000px;}
._3_c00149{width:6.144000px;}
._9_c00149{width:7.296000px;}
._14_c00149{width:8.544000px;}
._1_c00149{width:10.080000px;}
._2_c00149{width:11.712000px;}
._10_c00149{width:13.152000px;}
._2c_c00149{width:14.400000px;}
._b_c00149{width:15.408000px;}
._22_c00149{width:16.800000px;}
._0_c00149{width:18.048000px;}
._f_c00149{width:19.152000px;}
._2d_c00149{width:20.448000px;}
._1b_c00149{width:21.792000px;}
._3a_c00149{width:24.384000px;}
._d_c00149{width:25.608000px;}
._2a_c00149{width:26.808000px;}
._20_c00149{width:28.080000px;}
._3d_c00149{width:29.484000px;}
._15_c00149{width:30.528000px;}
._37_c00149{width:32.076000px;}
._4_c00149{width:33.120000px;}
._1f_c00149{width:34.176000px;}
._e_c00149{width:36.396000px;}
._38_c00149{width:37.512000px;}
._1a_c00149{width:38.688000px;}
._3c_c00149{width:39.792000px;}
._a_c00149{width:41.280000px;}
._11_c00149{width:43.152000px;}
._8_c00149{width:45.408000px;}
._2f_c00149{width:47.304000px;}
._2e_c00149{width:48.936000px;}
._26_c00149{width:50.112000px;}
._25_c00149{width:51.120000px;}
._16_c00149{width:53.208000px;}
._39_c00149{width:54.336000px;}
._17_c00149{width:60.288000px;}
._19_c00149{width:62.880000px;}
._31_c00149{width:64.308000px;}
._30_c00149{width:67.200000px;}
._33_c00149{width:70.704000px;}
._3e_c00149{width:75.936000px;}
._35_c00149{width:96.780000px;}
._28_c00149{width:133.872000px;}
._3b_c00149{width:233.568000px;}
.fc2_c00149{color:transparent;}
.fc1_c00149{color:rgb(128,128,128);}
.fc0_c00149{color:rgb(0,0,0);}
.fs4_c00149{font-size:48.000000px;}
.fs2_c00149{font-size:67.200000px;}
.fs1_c00149{font-size:84.000000px;}
.fs0_c00149{font-size:96.000000px;}
.fs3_c00149{font-size:102.000000px;}
.y0_c00149{bottom:0.000000px;}
.y26_c00149{bottom:3.105000px;}
.y25_c00149{bottom:7.228357px;}
.y24_c00149{bottom:70.530000px;}
.y23_c00149{bottom:100.530000px;}
.y22_c00149{bottom:135.630000px;}
.y21_c00149{bottom:169.830000px;}
.y20_c00149{bottom:204.180000px;}
.y1f_c00149{bottom:238.380000px;}
.y1e_c00149{bottom:273.480000px;}
.y1d_c00149{bottom:308.130000px;}
.y1c_c00149{bottom:342.180000px;}
.y1b_c00149{bottom:376.380000px;}
.y1a_c00149{bottom:410.130000px;}
.y19_c00149{bottom:444.480000px;}
.y18_c00149{bottom:479.280000px;}
.y17_c00149{bottom:513.030000px;}
.y16_c00149{bottom:547.380000px;}
.y15_c00149{bottom:581.880000px;}
.y14_c00149{bottom:615.030000px;}
.y13_c00149{bottom:648.030000px;}
.y12_c00149{bottom:681.780000px;}
.y11_c00149{bottom:715.830000px;}
.y10_c00149{bottom:750.330000px;}
.yf_c00149{bottom:784.380000px;}
.ye_c00149{bottom:817.530000px;}
.yd_c00149{bottom:851.280000px;}
.yc_c00149{bottom:885.330000px;}
.yb_c00149{bottom:918.780000px;}
.ya_c00149{bottom:952.530000px;}
.y9_c00149{bottom:985.830000px;}
.y8_c00149{bottom:1018.980000px;}
.y7_c00149{bottom:1052.430000px;}
.y6_c00149{bottom:1087.080000px;}
.y5_c00149{bottom:1120.530000px;}
.y4_c00149{bottom:1153.980000px;}
.y3_c00149{bottom:1187.430000px;}
.y2_c00149{bottom:1221.030000px;}
.y1_c00149{bottom:1254.180000px;}
.h3_c00149{height:13.200074px;}
.h4_c00149{height:43.804688px;}
.h2_c00149{height:121.546875px;}
.h0_c00149{height:1382.700000px;}
.h1_c00149{height:1383.000000px;}
.w2_c00149{width:104.875500px;}
.w0_c00149{width:863.175000px;}
.w1_c00149{width:863.250000px;}
.x0_c00149{left:0.000000px;}
.x5_c00149{left:264.900000px;}
.x4_c00149{left:265.950000px;}
.x3_c00149{left:267.000000px;}
.x1_c00149{left:269.100000px;}
.x2_c00149{left:270.300000px;}
.x7_c00149{left:383.401749px;}
.x6_c00149{left:798.900000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws0_c00149{word-spacing:-56.448000pt;}
.ws3_c00149{word-spacing:-45.333333pt;}
.ws1_c00149{word-spacing:-28.821333pt;}
.ws4_c00149{word-spacing:-20.565333pt;}
.ws2_c00149{word-spacing:-9.318400pt;}
.ws5_c00149{word-spacing:0.000000pt;}
._23_c00149{margin-left:-27.989333pt;}
._21_c00149{margin-left:-26.026667pt;}
._12_c00149{margin-left:-25.088000pt;}
._29_c00149{margin-left:-23.067733pt;}
._36_c00149{margin-left:-21.514667pt;}
._1d_c00149{margin-left:-16.597333pt;}
._13_c00149{margin-left:-14.250667pt;}
._1e_c00149{margin-left:-12.373333pt;}
._2b_c00149{margin-left:-10.890667pt;}
._32_c00149{margin-left:-9.653333pt;}
._24_c00149{margin-left:-7.722667pt;}
._34_c00149{margin-left:-6.314667pt;}
._27_c00149{margin-left:-4.010667pt;}
._1c_c00149{margin-left:-2.848000pt;}
._c_c00149{margin-left:-1.120000pt;}
._18_c00149{width:0.938667pt;}
._6_c00149{width:1.962667pt;}
._7_c00149{width:2.901333pt;}
._5_c00149{width:4.010667pt;}
._3_c00149{width:5.461333pt;}
._9_c00149{width:6.485333pt;}
._14_c00149{width:7.594667pt;}
._1_c00149{width:8.960000pt;}
._2_c00149{width:10.410667pt;}
._10_c00149{width:11.690667pt;}
._2c_c00149{width:12.800000pt;}
._b_c00149{width:13.696000pt;}
._22_c00149{width:14.933333pt;}
._0_c00149{width:16.042667pt;}
._f_c00149{width:17.024000pt;}
._2d_c00149{width:18.176000pt;}
._1b_c00149{width:19.370667pt;}
._3a_c00149{width:21.674667pt;}
._d_c00149{width:22.762667pt;}
._2a_c00149{width:23.829333pt;}
._20_c00149{width:24.960000pt;}
._3d_c00149{width:26.208000pt;}
._15_c00149{width:27.136000pt;}
._37_c00149{width:28.512000pt;}
._4_c00149{width:29.440000pt;}
._1f_c00149{width:30.378667pt;}
._e_c00149{width:32.352000pt;}
._38_c00149{width:33.344000pt;}
._1a_c00149{width:34.389333pt;}
._3c_c00149{width:35.370667pt;}
._a_c00149{width:36.693333pt;}
._11_c00149{width:38.357333pt;}
._8_c00149{width:40.362667pt;}
._2f_c00149{width:42.048000pt;}
._2e_c00149{width:43.498667pt;}
._26_c00149{width:44.544000pt;}
._25_c00149{width:45.440000pt;}
._16_c00149{width:47.296000pt;}
._39_c00149{width:48.298667pt;}
._17_c00149{width:53.589333pt;}
._19_c00149{width:55.893333pt;}
._31_c00149{width:57.162667pt;}
._30_c00149{width:59.733333pt;}
._33_c00149{width:62.848000pt;}
._3e_c00149{width:67.498667pt;}
._35_c00149{width:86.026667pt;}
._28_c00149{width:118.997333pt;}
._3b_c00149{width:207.616000pt;}
.fs4_c00149{font-size:42.666667pt;}
.fs2_c00149{font-size:59.733333pt;}
.fs1_c00149{font-size:74.666667pt;}
.fs0_c00149{font-size:85.333333pt;}
.fs3_c00149{font-size:90.666667pt;}
.y0_c00149{bottom:0.000000pt;}
.y26_c00149{bottom:2.760000pt;}
.y25_c00149{bottom:6.425206pt;}
.y24_c00149{bottom:62.693333pt;}
.y23_c00149{bottom:89.360000pt;}
.y22_c00149{bottom:120.560000pt;}
.y21_c00149{bottom:150.960000pt;}
.y20_c00149{bottom:181.493333pt;}
.y1f_c00149{bottom:211.893333pt;}
.y1e_c00149{bottom:243.093333pt;}
.y1d_c00149{bottom:273.893333pt;}
.y1c_c00149{bottom:304.160000pt;}
.y1b_c00149{bottom:334.560000pt;}
.y1a_c00149{bottom:364.560000pt;}
.y19_c00149{bottom:395.093333pt;}
.y18_c00149{bottom:426.026667pt;}
.y17_c00149{bottom:456.026667pt;}
.y16_c00149{bottom:486.560000pt;}
.y15_c00149{bottom:517.226667pt;}
.y14_c00149{bottom:546.693333pt;}
.y13_c00149{bottom:576.026667pt;}
.y12_c00149{bottom:606.026667pt;}
.y11_c00149{bottom:636.293333pt;}
.y10_c00149{bottom:666.960000pt;}
.yf_c00149{bottom:697.226667pt;}
.ye_c00149{bottom:726.693333pt;}
.yd_c00149{bottom:756.693333pt;}
.yc_c00149{bottom:786.960000pt;}
.yb_c00149{bottom:816.693333pt;}
.ya_c00149{bottom:846.693333pt;}
.y9_c00149{bottom:876.293333pt;}
.y8_c00149{bottom:905.760000pt;}
.y7_c00149{bottom:935.493333pt;}
.y6_c00149{bottom:966.293333pt;}
.y5_c00149{bottom:996.026667pt;}
.y4_c00149{bottom:1025.760000pt;}
.y3_c00149{bottom:1055.493333pt;}
.y2_c00149{bottom:1085.360000pt;}
.y1_c00149{bottom:1114.826667pt;}
.h3_c00149{height:11.733399pt;}
.h4_c00149{height:38.937500pt;}
.h2_c00149{height:108.041667pt;}
.h0_c00149{height:1229.066667pt;}
.h1_c00149{height:1229.333333pt;}
.w2_c00149{width:93.222667pt;}
.w0_c00149{width:767.266667pt;}
.w1_c00149{width:767.333333pt;}
.x0_c00149{left:0.000000pt;}
.x5_c00149{left:235.466667pt;}
.x4_c00149{left:236.400000pt;}
.x3_c00149{left:237.333333pt;}
.x1_c00149{left:239.200000pt;}
.x2_c00149{left:240.266667pt;}
.x7_c00149{left:340.801554pt;}
.x6_c00149{left:710.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce8ea9d6359b72f2f4278324.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_3eff6728f8d6c1003787c54e.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_dcfd301ec77ba0504bdb78cd.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_05ec34b9ab46867000b61cfc.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls3_c00150{letter-spacing:0.000000px;}
.ls2_c00150{letter-spacing:7.200000px;}
.ls0_c00150{letter-spacing:10.785000px;}
.ls4_c00150{letter-spacing:12.000000px;}
.ls1_c00150{letter-spacing:13.017600px;}
.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;}
}
.ws3_c00150{word-spacing:-60.807000px;}
.ws0_c00150{word-spacing:-51.000000px;}
.ws1_c00150{word-spacing:-1.428000px;}
.ws2_c00150{word-spacing:-0.084000px;}
.ws5_c00150{word-spacing:0.000000px;}
.ws4_c00150{word-spacing:3.648000px;}
._3f_c00150{margin-left:-88.128000px;}
._41_c00150{margin-left:-86.784000px;}
._42_c00150{margin-left:-78.528000px;}
._37_c00150{margin-left:-28.248000px;}
._44_c00150{margin-left:-26.856000px;}
._3c_c00150{margin-left:-22.170000px;}
._43_c00150{margin-left:-21.120000px;}
._32_c00150{margin-left:-20.064000px;}
._39_c00150{margin-left:-18.048000px;}
._38_c00150{margin-left:-16.704000px;}
._1e_c00150{margin-left:-13.824000px;}
._1f_c00150{margin-left:-11.808000px;}
._33_c00150{margin-left:-10.656000px;}
._20_c00150{margin-left:-9.504000px;}
._26_c00150{margin-left:-7.584000px;}
._36_c00150{margin-left:-5.856000px;}
._23_c00150{margin-left:-4.512000px;}
._15_c00150{margin-left:-3.168000px;}
._b_c00150{margin-left:-2.016000px;}
._9_c00150{width:1.536000px;}
._1_c00150{width:3.168000px;}
._0_c00150{width:4.704000px;}
._2_c00150{width:6.336000px;}
._10_c00150{width:7.584000px;}
._5_c00150{width:8.640000px;}
._4_c00150{width:9.984000px;}
._6_c00150{width:11.136000px;}
._8_c00150{width:12.672000px;}
._1d_c00150{width:14.784000px;}
._1c_c00150{width:16.992000px;}
._17_c00150{width:18.336000px;}
._16_c00150{width:19.776000px;}
._2b_c00150{width:21.624000px;}
._31_c00150{width:24.288000px;}
._11_c00150{width:26.016000px;}
._e_c00150{width:27.936000px;}
._2c_c00150{width:29.376000px;}
._18_c00150{width:30.432000px;}
._21_c00150{width:32.544000px;}
._f_c00150{width:34.368000px;}
._7_c00150{width:36.672000px;}
._1a_c00150{width:38.208000px;}
._19_c00150{width:39.360000px;}
._3_c00150{width:40.704000px;}
._2e_c00150{width:41.856000px;}
._c_c00150{width:43.776000px;}
._a_c00150{width:45.696000px;}
._24_c00150{width:47.808000px;}
._1b_c00150{width:49.152000px;}
._48_c00150{width:50.688000px;}
._d_c00150{width:52.224000px;}
._2d_c00150{width:53.952000px;}
._14_c00150{width:55.872000px;}
._13_c00150{width:58.464000px;}
._34_c00150{width:60.576000px;}
._3a_c00150{width:63.936000px;}
._22_c00150{width:66.048000px;}
._30_c00150{width:71.484000px;}
._12_c00150{width:95.136000px;}
._29_c00150{width:105.888000px;}
._3e_c00150{width:107.706000px;}
._27_c00150{width:131.328000px;}
._45_c00150{width:147.660000px;}
._28_c00150{width:174.912000px;}
._2f_c00150{width:176.400000px;}
._2a_c00150{width:179.136000px;}
._47_c00150{width:187.776000px;}
._3d_c00150{width:193.536000px;}
._25_c00150{width:204.576000px;}
._40_c00150{width:232.704000px;}
._46_c00150{width:246.444000px;}
._3b_c00150{width:298.320000px;}
._35_c00150{width:590.592000px;}
._49_c00150{width:1829.376000px;}
.fc2_c00150{color:transparent;}
.fc1_c00150{color:rgb(128,128,128);}
.fc0_c00150{color:rgb(0,0,0);}
.fs5_c00150{font-size:48.000000px;}
.fs4_c00150{font-size:69.600000px;}
.fs2_c00150{font-size:84.000000px;}
.fs3_c00150{font-size:87.000000px;}
.fs0_c00150{font-size:96.000000px;}
.fs1_c00150{font-size:102.000000px;}
.y0_c00150{bottom:0.000000px;}
.y26_c00150{bottom:3.105000px;}
.y25_c00150{bottom:7.228369px;}
.y24_c00150{bottom:82.320000px;}
.y23_c00150{bottom:116.820000px;}
.y22_c00150{bottom:151.170000px;}
.y21_c00150{bottom:185.220000px;}
.y20_c00150{bottom:220.020000px;}
.y1f_c00150{bottom:254.070000px;}
.y1e_c00150{bottom:288.570000px;}
.y1d_c00150{bottom:322.020000px;}
.y1c_c00150{bottom:356.670000px;}
.y1b_c00150{bottom:389.820000px;}
.y1a_c00150{bottom:423.570000px;}
.y19_c00150{bottom:457.320000px;}
.y18_c00150{bottom:492.420000px;}
.y17_c00150{bottom:522.720000px;}
.y16_c00150{bottom:559.470000px;}
.y15_c00150{bottom:594.120000px;}
.y14_c00150{bottom:627.120000px;}
.y13_c00150{bottom:660.120000px;}
.y12_c00150{bottom:694.170000px;}
.y11_c00150{bottom:727.920000px;}
.y10_c00150{bottom:760.770000px;}
.yf_c00150{bottom:795.120000px;}
.ye_c00150{bottom:827.820000px;}
.yd_c00150{bottom:861.870000px;}
.yc_c00150{bottom:895.770000px;}
.yb_c00150{bottom:929.820000px;}
.ya_c00150{bottom:962.220000px;}
.y9_c00150{bottom:996.870000px;}
.y8_c00150{bottom:1030.020000px;}
.y7_c00150{bottom:1063.770000px;}
.y6_c00150{bottom:1097.520000px;}
.y5_c00150{bottom:1130.970000px;}
.y4_c00150{bottom:1164.270000px;}
.y3_c00150{bottom:1198.170000px;}
.y2_c00150{bottom:1231.770000px;}
.y1_c00150{bottom:1265.520000px;}
.h3_c00150{height:13.200073px;}
.h4_c00150{height:43.804688px;}
.h2_c00150{height:121.546875px;}
.h0_c00150{height:1383.450000px;}
.h1_c00150{height:1383.750000px;}
.w2_c00150{width:104.875500px;}
.w0_c00150{width:878.025000px;}
.w1_c00150{width:878.250000px;}
.x0_c00150{left:0.000000px;}
.x7_c00150{left:48.900000px;}
.x6_c00150{left:49.950000px;}
.x5_c00150{left:51.600000px;}
.x4_c00150{left:52.650000px;}
.x3_c00150{left:53.700000px;}
.x2_c00150{left:55.800000px;}
.x1_c00150{left:57.000000px;}
.x8_c00150{left:106.650000px;}
.x9_c00150{left:107.700000px;}
.xa_c00150{left:390.826721px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls3_c00150{letter-spacing:0.000000pt;}
.ls2_c00150{letter-spacing:6.400000pt;}
.ls0_c00150{letter-spacing:9.586667pt;}
.ls4_c00150{letter-spacing:10.666667pt;}
.ls1_c00150{letter-spacing:11.571200pt;}
.ws3_c00150{word-spacing:-54.050667pt;}
.ws0_c00150{word-spacing:-45.333333pt;}
.ws1_c00150{word-spacing:-1.269333pt;}
.ws2_c00150{word-spacing:-0.074667pt;}
.ws5_c00150{word-spacing:0.000000pt;}
.ws4_c00150{word-spacing:3.242667pt;}
._3f_c00150{margin-left:-78.336000pt;}
._41_c00150{margin-left:-77.141333pt;}
._42_c00150{margin-left:-69.802667pt;}
._37_c00150{margin-left:-25.109333pt;}
._44_c00150{margin-left:-23.872000pt;}
._3c_c00150{margin-left:-19.706667pt;}
._43_c00150{margin-left:-18.773333pt;}
._32_c00150{margin-left:-17.834667pt;}
._39_c00150{margin-left:-16.042667pt;}
._38_c00150{margin-left:-14.848000pt;}
._1e_c00150{margin-left:-12.288000pt;}
._1f_c00150{margin-left:-10.496000pt;}
._33_c00150{margin-left:-9.472000pt;}
._20_c00150{margin-left:-8.448000pt;}
._26_c00150{margin-left:-6.741333pt;}
._36_c00150{margin-left:-5.205333pt;}
._23_c00150{margin-left:-4.010667pt;}
._15_c00150{margin-left:-2.816000pt;}
._b_c00150{margin-left:-1.792000pt;}
._9_c00150{width:1.365333pt;}
._1_c00150{width:2.816000pt;}
._0_c00150{width:4.181333pt;}
._2_c00150{width:5.632000pt;}
._10_c00150{width:6.741333pt;}
._5_c00150{width:7.680000pt;}
._4_c00150{width:8.874667pt;}
._6_c00150{width:9.898667pt;}
._8_c00150{width:11.264000pt;}
._1d_c00150{width:13.141333pt;}
._1c_c00150{width:15.104000pt;}
._17_c00150{width:16.298667pt;}
._16_c00150{width:17.578667pt;}
._2b_c00150{width:19.221333pt;}
._31_c00150{width:21.589333pt;}
._11_c00150{width:23.125333pt;}
._e_c00150{width:24.832000pt;}
._2c_c00150{width:26.112000pt;}
._18_c00150{width:27.050667pt;}
._21_c00150{width:28.928000pt;}
._f_c00150{width:30.549333pt;}
._7_c00150{width:32.597333pt;}
._1a_c00150{width:33.962667pt;}
._19_c00150{width:34.986667pt;}
._3_c00150{width:36.181333pt;}
._2e_c00150{width:37.205333pt;}
._c_c00150{width:38.912000pt;}
._a_c00150{width:40.618667pt;}
._24_c00150{width:42.496000pt;}
._1b_c00150{width:43.690667pt;}
._48_c00150{width:45.056000pt;}
._d_c00150{width:46.421333pt;}
._2d_c00150{width:47.957333pt;}
._14_c00150{width:49.664000pt;}
._13_c00150{width:51.968000pt;}
._34_c00150{width:53.845333pt;}
._3a_c00150{width:56.832000pt;}
._22_c00150{width:58.709333pt;}
._30_c00150{width:63.541333pt;}
._12_c00150{width:84.565333pt;}
._29_c00150{width:94.122667pt;}
._3e_c00150{width:95.738667pt;}
._27_c00150{width:116.736000pt;}
._45_c00150{width:131.253333pt;}
._28_c00150{width:155.477333pt;}
._2f_c00150{width:156.800000pt;}
._2a_c00150{width:159.232000pt;}
._47_c00150{width:166.912000pt;}
._3d_c00150{width:172.032000pt;}
._25_c00150{width:181.845333pt;}
._40_c00150{width:206.848000pt;}
._46_c00150{width:219.061333pt;}
._3b_c00150{width:265.173333pt;}
._35_c00150{width:524.970667pt;}
._49_c00150{width:1626.112000pt;}
.fs5_c00150{font-size:42.666667pt;}
.fs4_c00150{font-size:61.866667pt;}
.fs2_c00150{font-size:74.666667pt;}
.fs3_c00150{font-size:77.333333pt;}
.fs0_c00150{font-size:85.333333pt;}
.fs1_c00150{font-size:90.666667pt;}
.y0_c00150{bottom:0.000000pt;}
.y26_c00150{bottom:2.760000pt;}
.y25_c00150{bottom:6.425217pt;}
.y24_c00150{bottom:73.173333pt;}
.y23_c00150{bottom:103.840000pt;}
.y22_c00150{bottom:134.373333pt;}
.y21_c00150{bottom:164.640000pt;}
.y20_c00150{bottom:195.573333pt;}
.y1f_c00150{bottom:225.840000pt;}
.y1e_c00150{bottom:256.506667pt;}
.y1d_c00150{bottom:286.240000pt;}
.y1c_c00150{bottom:317.040000pt;}
.y1b_c00150{bottom:346.506667pt;}
.y1a_c00150{bottom:376.506667pt;}
.y19_c00150{bottom:406.506667pt;}
.y18_c00150{bottom:437.706667pt;}
.y17_c00150{bottom:464.640000pt;}
.y16_c00150{bottom:497.306667pt;}
.y15_c00150{bottom:528.106667pt;}
.y14_c00150{bottom:557.440000pt;}
.y13_c00150{bottom:586.773333pt;}
.y12_c00150{bottom:617.040000pt;}
.y11_c00150{bottom:647.040000pt;}
.y10_c00150{bottom:676.240000pt;}
.yf_c00150{bottom:706.773333pt;}
.ye_c00150{bottom:735.840000pt;}
.yd_c00150{bottom:766.106667pt;}
.yc_c00150{bottom:796.240000pt;}
.yb_c00150{bottom:826.506667pt;}
.ya_c00150{bottom:855.306667pt;}
.y9_c00150{bottom:886.106667pt;}
.y8_c00150{bottom:915.573333pt;}
.y7_c00150{bottom:945.573333pt;}
.y6_c00150{bottom:975.573333pt;}
.y5_c00150{bottom:1005.306667pt;}
.y4_c00150{bottom:1034.906667pt;}
.y3_c00150{bottom:1065.040000pt;}
.y2_c00150{bottom:1094.906667pt;}
.y1_c00150{bottom:1124.906667pt;}
.h3_c00150{height:11.733399pt;}
.h4_c00150{height:38.937500pt;}
.h2_c00150{height:108.041667pt;}
.h0_c00150{height:1229.733333pt;}
.h1_c00150{height:1230.000000pt;}
.w2_c00150{width:93.222667pt;}
.w0_c00150{width:780.466667pt;}
.w1_c00150{width:780.666667pt;}
.x0_c00150{left:0.000000pt;}
.x7_c00150{left:43.466667pt;}
.x6_c00150{left:44.400000pt;}
.x5_c00150{left:45.866667pt;}
.x4_c00150{left:46.800000pt;}
.x3_c00150{left:47.733333pt;}
.x2_c00150{left:49.600000pt;}
.x1_c00150{left:50.666667pt;}
.x8_c00150{left:94.800000pt;}
.x9_c00150{left:95.733333pt;}
.xa_c00150{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3b25aea0271fa9091eb65b7.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_cb5cf0ab6f749a5216fded69.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls2_c00151{letter-spacing:0.000000px;}
.ls3_c00151{letter-spacing:6.000000px;}
.ls0_c00151{letter-spacing:9.600000px;}
.ls1_c00151{letter-spacing:22.452000px;}
.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;}
}
.ws1_c00151{word-spacing:-23.136000px;}
.ws0_c00151{word-spacing:-20.244000px;}
.ws2_c00151{word-spacing:0.000000px;}
._26_c00151{margin-left:-71.988000px;}
._43_c00151{margin-left:-65.424000px;}
._20_c00151{margin-left:-43.284000px;}
._3b_c00151{margin-left:-30.288000px;}
._3f_c00151{margin-left:-28.416000px;}
._42_c00151{margin-left:-23.496000px;}
._24_c00151{margin-left:-20.484000px;}
._a_c00151{margin-left:-17.640000px;}
._1e_c00151{margin-left:-16.320000px;}
._1b_c00151{margin-left:-14.820000px;}
._0_c00151{margin-left:-12.768000px;}
._3e_c00151{margin-left:-10.608000px;}
._11_c00151{margin-left:-7.872000px;}
._3d_c00151{margin-left:-6.240000px;}
._1_c00151{margin-left:-4.992000px;}
._c_c00151{margin-left:-3.456000px;}
._d_c00151{margin-left:-2.208000px;}
._32_c00151{margin-left:-1.200000px;}
._2e_c00151{width:1.152000px;}
._3_c00151{width:2.160000px;}
._10_c00151{width:3.360000px;}
._7_c00151{width:4.608000px;}
._5_c00151{width:6.048000px;}
._38_c00151{width:7.056000px;}
._4_c00151{width:8.064000px;}
._8_c00151{width:9.312000px;}
._9_c00151{width:10.464000px;}
._e_c00151{width:12.480000px;}
._33_c00151{width:14.124000px;}
._17_c00151{width:15.132000px;}
._18_c00151{width:16.308000px;}
._b_c00151{width:17.568000px;}
._3a_c00151{width:19.584000px;}
._2f_c00151{width:21.600000px;}
._28_c00151{width:23.604000px;}
._39_c00151{width:24.864000px;}
._2a_c00151{width:26.028000px;}
._f_c00151{width:27.696000px;}
._12_c00151{width:29.856000px;}
._15_c00151{width:31.392000px;}
._34_c00151{width:32.688000px;}
._2c_c00151{width:34.548000px;}
._2_c00151{width:36.192000px;}
._3c_c00151{width:37.248000px;}
._30_c00151{width:39.264000px;}
._6_c00151{width:41.280000px;}
._37_c00151{width:42.912000px;}
._13_c00151{width:44.208000px;}
._29_c00151{width:46.620000px;}
._22_c00151{width:48.468000px;}
._2d_c00151{width:50.016000px;}
._16_c00151{width:51.216000px;}
._1a_c00151{width:56.700000px;}
._31_c00151{width:58.128000px;}
._1c_c00151{width:63.852000px;}
._14_c00151{width:69.888000px;}
._1d_c00151{width:71.376000px;}
._2b_c00151{width:82.320000px;}
._23_c00151{width:106.008000px;}
._40_c00151{width:107.100000px;}
._19_c00151{width:115.080000px;}
._21_c00151{width:138.240000px;}
._27_c00151{width:168.756000px;}
._41_c00151{width:173.928000px;}
._36_c00151{width:177.120000px;}
._1f_c00151{width:230.940000px;}
._25_c00151{width:276.540000px;}
._35_c00151{width:448.512000px;}
._44_c00151{width:696.048000px;}
.fc2_c00151{color:transparent;}
.fc1_c00151{color:rgb(128,128,128);}
.fc0_c00151{color:rgb(0,0,0);}
.fs4_c00151{font-size:48.000000px;}
.fs3_c00151{font-size:60.000000px;}
.fs2_c00151{font-size:84.000000px;}
.fs0_c00151{font-size:96.000000px;}
.fs1_c00151{font-size:102.000000px;}
.y0_c00151{bottom:0.000000px;}
.y25_c00151{bottom:3.105000px;}
.y24_c00151{bottom:7.228357px;}
.y23_c00151{bottom:71.580000px;}
.y22_c00151{bottom:172.530000px;}
.y21_c00151{bottom:208.230000px;}
.y20_c00151{bottom:242.730000px;}
.y1f_c00151{bottom:277.080000px;}
.y1e_c00151{bottom:311.880000px;}
.y1d_c00151{bottom:346.380000px;}
.y1c_c00151{bottom:381.030000px;}
.y1b_c00151{bottom:414.780000px;}
.y1a_c00151{bottom:448.980000px;}
.y1_c00151{bottom:481.230000px;}
.y19_c00151{bottom:483.330000px;}
.y18_c00151{bottom:516.780000px;}
.y17_c00151{bottom:551.580000px;}
.y16_c00151{bottom:586.230000px;}
.y15_c00151{bottom:620.430000px;}
.y14_c00151{bottom:653.430000px;}
.y13_c00151{bottom:687.180000px;}
.y12_c00151{bottom:721.230000px;}
.y11_c00151{bottom:755.730000px;}
.y10_c00151{bottom:789.480000px;}
.yf_c00151{bottom:822.930000px;}
.ye_c00151{bottom:856.530000px;}
.yd_c00151{bottom:890.280000px;}
.yc_c00151{bottom:924.030000px;}
.yb_c00151{bottom:956.580000px;}
.ya_c00151{bottom:990.180000px;}
.y9_c00151{bottom:1023.630000px;}
.y8_c00151{bottom:1057.380000px;}
.y7_c00151{bottom:1090.830000px;}
.y6_c00151{bottom:1124.580000px;}
.y5_c00151{bottom:1159.080000px;}
.y4_c00151{bottom:1191.030000px;}
.y3_c00151{bottom:1225.230000px;}
.y2_c00151{bottom:1258.980000px;}
.h4_c00151{height:13.200074px;}
.h5_c00151{height:43.804688px;}
.h3_c00151{height:75.966797px;}
.h2_c00151{height:121.546875px;}
.h0_c00151{height:1382.700000px;}
.h1_c00151{height:1383.000000px;}
.w2_c00151{width:104.875500px;}
.w0_c00151{width:863.175000px;}
.w1_c00151{width:863.250000px;}
.x0_c00151{left:0.000000px;}
.x1_c00151{left:161.700000px;}
.x8_c00151{left:263.700000px;}
.x5_c00151{left:264.900000px;}
.x4_c00151{left:266.400000px;}
.x2_c00151{left:267.600000px;}
.x7_c00151{left:268.650000px;}
.x3_c00151{left:289.650000px;}
.x9_c00151{left:309.150000px;}
.x6_c00151{left:316.200000px;}
.xb_c00151{left:383.401749px;}
.xa_c00151{left:771.300000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls2_c00151{letter-spacing:0.000000pt;}
.ls3_c00151{letter-spacing:5.333333pt;}
.ls0_c00151{letter-spacing:8.533333pt;}
.ls1_c00151{letter-spacing:19.957333pt;}
.ws1_c00151{word-spacing:-20.565333pt;}
.ws0_c00151{word-spacing:-17.994667pt;}
.ws2_c00151{word-spacing:0.000000pt;}
._26_c00151{margin-left:-63.989333pt;}
._43_c00151{margin-left:-58.154667pt;}
._20_c00151{margin-left:-38.474667pt;}
._3b_c00151{margin-left:-26.922667pt;}
._3f_c00151{margin-left:-25.258667pt;}
._42_c00151{margin-left:-20.885333pt;}
._24_c00151{margin-left:-18.208000pt;}
._a_c00151{margin-left:-15.680000pt;}
._1e_c00151{margin-left:-14.506667pt;}
._1b_c00151{margin-left:-13.173333pt;}
._0_c00151{margin-left:-11.349333pt;}
._3e_c00151{margin-left:-9.429333pt;}
._11_c00151{margin-left:-6.997333pt;}
._3d_c00151{margin-left:-5.546667pt;}
._1_c00151{margin-left:-4.437333pt;}
._c_c00151{margin-left:-3.072000pt;}
._d_c00151{margin-left:-1.962667pt;}
._32_c00151{margin-left:-1.066667pt;}
._2e_c00151{width:1.024000pt;}
._3_c00151{width:1.920000pt;}
._10_c00151{width:2.986667pt;}
._7_c00151{width:4.096000pt;}
._5_c00151{width:5.376000pt;}
._38_c00151{width:6.272000pt;}
._4_c00151{width:7.168000pt;}
._8_c00151{width:8.277333pt;}
._9_c00151{width:9.301333pt;}
._e_c00151{width:11.093333pt;}
._33_c00151{width:12.554667pt;}
._17_c00151{width:13.450667pt;}
._18_c00151{width:14.496000pt;}
._b_c00151{width:15.616000pt;}
._3a_c00151{width:17.408000pt;}
._2f_c00151{width:19.200000pt;}
._28_c00151{width:20.981333pt;}
._39_c00151{width:22.101333pt;}
._2a_c00151{width:23.136000pt;}
._f_c00151{width:24.618667pt;}
._12_c00151{width:26.538667pt;}
._15_c00151{width:27.904000pt;}
._34_c00151{width:29.056000pt;}
._2c_c00151{width:30.709333pt;}
._2_c00151{width:32.170667pt;}
._3c_c00151{width:33.109333pt;}
._30_c00151{width:34.901333pt;}
._6_c00151{width:36.693333pt;}
._37_c00151{width:38.144000pt;}
._13_c00151{width:39.296000pt;}
._29_c00151{width:41.440000pt;}
._22_c00151{width:43.082667pt;}
._2d_c00151{width:44.458667pt;}
._16_c00151{width:45.525333pt;}
._1a_c00151{width:50.400000pt;}
._31_c00151{width:51.669333pt;}
._1c_c00151{width:56.757333pt;}
._14_c00151{width:62.122667pt;}
._1d_c00151{width:63.445333pt;}
._2b_c00151{width:73.173333pt;}
._23_c00151{width:94.229333pt;}
._40_c00151{width:95.200000pt;}
._19_c00151{width:102.293333pt;}
._21_c00151{width:122.880000pt;}
._27_c00151{width:150.005333pt;}
._41_c00151{width:154.602667pt;}
._36_c00151{width:157.440000pt;}
._1f_c00151{width:205.280000pt;}
._25_c00151{width:245.813333pt;}
._35_c00151{width:398.677333pt;}
._44_c00151{width:618.709333pt;}
.fs4_c00151{font-size:42.666667pt;}
.fs3_c00151{font-size:53.333333pt;}
.fs2_c00151{font-size:74.666667pt;}
.fs0_c00151{font-size:85.333333pt;}
.fs1_c00151{font-size:90.666667pt;}
.y0_c00151{bottom:0.000000pt;}
.y25_c00151{bottom:2.760000pt;}
.y24_c00151{bottom:6.425206pt;}
.y23_c00151{bottom:63.626667pt;}
.y22_c00151{bottom:153.360000pt;}
.y21_c00151{bottom:185.093333pt;}
.y20_c00151{bottom:215.760000pt;}
.y1f_c00151{bottom:246.293333pt;}
.y1e_c00151{bottom:277.226667pt;}
.y1d_c00151{bottom:307.893333pt;}
.y1c_c00151{bottom:338.693333pt;}
.y1b_c00151{bottom:368.693333pt;}
.y1a_c00151{bottom:399.093333pt;}
.y1_c00151{bottom:427.760000pt;}
.y19_c00151{bottom:429.626667pt;}
.y18_c00151{bottom:459.360000pt;}
.y17_c00151{bottom:490.293333pt;}
.y16_c00151{bottom:521.093333pt;}
.y15_c00151{bottom:551.493333pt;}
.y14_c00151{bottom:580.826667pt;}
.y13_c00151{bottom:610.826667pt;}
.y12_c00151{bottom:641.093333pt;}
.y11_c00151{bottom:671.760000pt;}
.y10_c00151{bottom:701.760000pt;}
.yf_c00151{bottom:731.493333pt;}
.ye_c00151{bottom:761.360000pt;}
.yd_c00151{bottom:791.360000pt;}
.yc_c00151{bottom:821.360000pt;}
.yb_c00151{bottom:850.293333pt;}
.ya_c00151{bottom:880.160000pt;}
.y9_c00151{bottom:909.893333pt;}
.y8_c00151{bottom:939.893333pt;}
.y7_c00151{bottom:969.626667pt;}
.y6_c00151{bottom:999.626667pt;}
.y5_c00151{bottom:1030.293333pt;}
.y4_c00151{bottom:1058.693333pt;}
.y3_c00151{bottom:1089.093333pt;}
.y2_c00151{bottom:1119.093333pt;}
.h4_c00151{height:11.733399pt;}
.h5_c00151{height:38.937500pt;}
.h3_c00151{height:67.526042pt;}
.h2_c00151{height:108.041667pt;}
.h0_c00151{height:1229.066667pt;}
.h1_c00151{height:1229.333333pt;}
.w2_c00151{width:93.222667pt;}
.w0_c00151{width:767.266667pt;}
.w1_c00151{width:767.333333pt;}
.x0_c00151{left:0.000000pt;}
.x1_c00151{left:143.733333pt;}
.x8_c00151{left:234.400000pt;}
.x5_c00151{left:235.466667pt;}
.x4_c00151{left:236.800000pt;}
.x2_c00151{left:237.866667pt;}
.x7_c00151{left:238.800000pt;}
.x3_c00151{left:257.466667pt;}
.x9_c00151{left:274.800000pt;}
.x6_c00151{left:281.066667pt;}
.xb_c00151{left:340.801554pt;}
.xa_c00151{left:685.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_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_783890cc98caa85c3c270f04.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;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:ff2_c00152;src:url('chunks/assets/font_22a7daa8efdd3becbcc0d832.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_51bb3b79294c1a4aa5640426.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_add5987c7a49cb9856e91c4f.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00152;src:url('chunks/assets/font_d46a3f280306288547fe2c41.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00152;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00152{font-family:ff7_c00152;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.v1_c00152{vertical-align:96.000000px;}
.ls5_c00152{letter-spacing:-9.000000px;}
.ls3_c00152{letter-spacing:0.000000px;}
.ls2_c00152{letter-spacing:4.200000px;}
.ls1_c00152{letter-spacing:5.388000px;}
.ls4_c00152{letter-spacing:6.000000px;}
.ls6_c00152{letter-spacing:9.000000px;}
.ls0_c00152{letter-spacing:21.900000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:-51.000000px;}
.ws1_c00152{word-spacing:-34.704000px;}
.ws2_c00152{word-spacing:-20.244000px;}
.ws3_c00152{word-spacing:0.000000px;}
._14_c00152{margin-left:-31.104000px;}
._47_c00152{margin-left:-17.748000px;}
._38_c00152{margin-left:-15.342000px;}
._1a_c00152{margin-left:-13.248000px;}
._b_c00152{margin-left:-10.752000px;}
._4c_c00152{margin-left:-9.384000px;}
._d_c00152{margin-left:-8.352000px;}
._4a_c00152{margin-left:-6.816000px;}
._1e_c00152{margin-left:-5.808000px;}
._8_c00152{margin-left:-4.416000px;}
._1c_c00152{margin-left:-2.730000px;}
._9_c00152{margin-left:-1.590000px;}
._f_c00152{width:1.152000px;}
._36_c00152{width:2.196000px;}
._1_c00152{width:3.219000px;}
._6_c00152{width:4.749000px;}
._3a_c00152{width:5.907000px;}
._5_c00152{width:7.008000px;}
._4_c00152{width:8.064000px;}
._10_c00152{width:9.072000px;}
._3_c00152{width:10.176000px;}
._11_c00152{width:11.808000px;}
._12_c00152{width:12.864000px;}
._0_c00152{width:14.688000px;}
._3f_c00152{width:16.677000px;}
._29_c00152{width:17.880000px;}
._2_c00152{width:18.924000px;}
._2a_c00152{width:20.124000px;}
._28_c00152{width:21.204000px;}
._3e_c00152{width:24.216000px;}
._13_c00152{width:25.392000px;}
._a_c00152{width:26.484000px;}
._34_c00152{width:28.128000px;}
._39_c00152{width:30.006000px;}
._3d_c00152{width:31.989000px;}
._17_c00152{width:33.264000px;}
._32_c00152{width:34.611000px;}
._2f_c00152{width:36.795000px;}
._16_c00152{width:38.160000px;}
._25_c00152{width:39.426000px;}
._40_c00152{width:41.256000px;}
._19_c00152{width:42.912000px;}
._3c_c00152{width:45.270000px;}
._1f_c00152{width:46.878000px;}
._2d_c00152{width:48.096000px;}
._2e_c00152{width:49.152000px;}
._3b_c00152{width:51.237000px;}
._2b_c00152{width:55.008000px;}
._48_c00152{width:58.143000px;}
._41_c00152{width:62.028000px;}
._45_c00152{width:63.333000px;}
._c_c00152{width:66.624000px;}
._15_c00152{width:67.968000px;}
._26_c00152{width:71.100000px;}
._42_c00152{width:73.503000px;}
._46_c00152{width:74.832000px;}
._43_c00152{width:77.061000px;}
._30_c00152{width:80.052000px;}
._44_c00152{width:85.344000px;}
._21_c00152{width:92.274000px;}
._20_c00152{width:95.592000px;}
._22_c00152{width:98.070000px;}
._23_c00152{width:103.050000px;}
._1b_c00152{width:117.312000px;}
._1d_c00152{width:121.824000px;}
._4b_c00152{width:150.078000px;}
._7_c00152{width:161.664000px;}
._2c_c00152{width:175.158000px;}
._e_c00152{width:178.752000px;}
._18_c00152{width:184.320000px;}
._35_c00152{width:186.648000px;}
._33_c00152{width:193.671000px;}
._27_c00152{width:201.474000px;}
._31_c00152{width:231.072000px;}
._24_c00152{width:351.930000px;}
._37_c00152{width:450.105000px;}
._49_c00152{width:608.370000px;}
._4d_c00152{width:936.588000px;}
.fc2_c00152{color:transparent;}
.fc1_c00152{color:rgb(128,128,128);}
.fc0_c00152{color:rgb(0,0,0);}
.fs4_c00152{font-size:30.000000px;}
.fs6_c00152{font-size:36.000000px;}
.fsa_c00152{font-size:48.000000px;}
.fs9_c00152{font-size:72.000000px;}
.fs7_c00152{font-size:84.000000px;}
.fs1_c00152{font-size:87.000000px;}
.fs2_c00152{font-size:96.000000px;}
.fs8_c00152{font-size:99.000000px;}
.fs0_c00152{font-size:102.000000px;}
.fs5_c00152{font-size:117.000000px;}
.fs3_c00152{font-size:144.000000px;}
.y0_c00152{bottom:0.000000px;}
.y24_c00152{bottom:3.105000px;}
.y23_c00152{bottom:7.228363px;}
.y22_c00152{bottom:53.400000px;}
.y21_c00152{bottom:94.500000px;}
.y20_c00152{bottom:130.650000px;}
.y1f_c00152{bottom:164.700000px;}
.y1e_c00152{bottom:198.450000px;}
.y1d_c00152{bottom:233.250000px;}
.y1c_c00152{bottom:266.700000px;}
.y1b_c00152{bottom:300.150000px;}
.y1a_c00152{bottom:334.200000px;}
.y19_c00152{bottom:367.650000px;}
.y18_c00152{bottom:401.250000px;}
.y17_c00152{bottom:435.150000px;}
.y16_c00152{bottom:468.750000px;}
.y15_c00152{bottom:502.500000px;}
.y14_c00152{bottom:535.950000px;}
.y13_c00152{bottom:569.250000px;}
.y12_c00152{bottom:602.550000px;}
.y11_c00152{bottom:635.850000px;}
.y10_c00152{bottom:669.300000px;}
.yf_c00152{bottom:702.750000px;}
.ye_c00152{bottom:736.500000px;}
.yd_c00152{bottom:771.150000px;}
.yc_c00152{bottom:804.000000px;}
.yb_c00152{bottom:835.650000px;}
.ya_c00152{bottom:875.100000px;}
.y9_c00152{bottom:926.100000px;}
.y8_c00152{bottom:994.650000px;}
.y7_c00152{bottom:995.700000px;}
.y6_c00152{bottom:1045.200000px;}
.y5_c00152{bottom:1095.300000px;}
.y4_c00152{bottom:1144.500000px;}
.y3_c00152{bottom:1195.800000px;}
.y2_c00152{bottom:1241.700000px;}
.y1_c00152{bottom:1263.600000px;}
.h7_c00152{height:13.200074px;}
.h8_c00152{height:43.804688px;}
.h6_c00152{height:45.580078px;}
.h2_c00152{height:102.796875px;}
.h3_c00152{height:121.546875px;}
.h5_c00152{height:124.839000px;}
.h4_c00152{height:182.320312px;}
.h1_c00152{height:1341.750000px;}
.h0_c00152{height:1341.900000px;}
.w2_c00152{width:104.875500px;}
.w1_c00152{width:851.250000px;}
.w0_c00152{width:851.550000px;}
.x0_c00152{left:0.000000px;}
.x9_c00152{left:35.100000px;}
.xe_c00152{left:36.450000px;}
.xf_c00152{left:37.500000px;}
.x10_c00152{left:40.200000px;}
.x3_c00152{left:41.400000px;}
.xb_c00152{left:88.200000px;}
.x5_c00152{left:174.150000px;}
.x4_c00152{left:186.600000px;}
.xc_c00152{left:190.350000px;}
.xa_c00152{left:234.600000px;}
.x6_c00152{left:236.850000px;}
.x7_c00152{left:255.600000px;}
.xd_c00152{left:267.600000px;}
.x2_c00152{left:273.600000px;}
.x11_c00152{left:317.850000px;}
.x8_c00152{left:339.900000px;}
.x12_c00152{left:377.589249px;}
.x1_c00152{left:532.200000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.v1_c00152{vertical-align:85.333333pt;}
.ls5_c00152{letter-spacing:-8.000000pt;}
.ls3_c00152{letter-spacing:0.000000pt;}
.ls2_c00152{letter-spacing:3.733333pt;}
.ls1_c00152{letter-spacing:4.789333pt;}
.ls4_c00152{letter-spacing:5.333333pt;}
.ls6_c00152{letter-spacing:8.000000pt;}
.ls0_c00152{letter-spacing:19.466667pt;}
.ws0_c00152{word-spacing:-45.333333pt;}
.ws1_c00152{word-spacing:-30.848000pt;}
.ws2_c00152{word-spacing:-17.994667pt;}
.ws3_c00152{word-spacing:0.000000pt;}
._14_c00152{margin-left:-27.648000pt;}
._47_c00152{margin-left:-15.776000pt;}
._38_c00152{margin-left:-13.637333pt;}
._1a_c00152{margin-left:-11.776000pt;}
._b_c00152{margin-left:-9.557333pt;}
._4c_c00152{margin-left:-8.341333pt;}
._d_c00152{margin-left:-7.424000pt;}
._4a_c00152{margin-left:-6.058667pt;}
._1e_c00152{margin-left:-5.162667pt;}
._8_c00152{margin-left:-3.925333pt;}
._1c_c00152{margin-left:-2.426667pt;}
._9_c00152{margin-left:-1.413333pt;}
._f_c00152{width:1.024000pt;}
._36_c00152{width:1.952000pt;}
._1_c00152{width:2.861333pt;}
._6_c00152{width:4.221333pt;}
._3a_c00152{width:5.250667pt;}
._5_c00152{width:6.229333pt;}
._4_c00152{width:7.168000pt;}
._10_c00152{width:8.064000pt;}
._3_c00152{width:9.045333pt;}
._11_c00152{width:10.496000pt;}
._12_c00152{width:11.434667pt;}
._0_c00152{width:13.056000pt;}
._3f_c00152{width:14.824000pt;}
._29_c00152{width:15.893333pt;}
._2_c00152{width:16.821333pt;}
._2a_c00152{width:17.888000pt;}
._28_c00152{width:18.848000pt;}
._3e_c00152{width:21.525333pt;}
._13_c00152{width:22.570667pt;}
._a_c00152{width:23.541333pt;}
._34_c00152{width:25.002667pt;}
._39_c00152{width:26.672000pt;}
._3d_c00152{width:28.434667pt;}
._17_c00152{width:29.568000pt;}
._32_c00152{width:30.765333pt;}
._2f_c00152{width:32.706667pt;}
._16_c00152{width:33.920000pt;}
._25_c00152{width:35.045333pt;}
._40_c00152{width:36.672000pt;}
._19_c00152{width:38.144000pt;}
._3c_c00152{width:40.240000pt;}
._1f_c00152{width:41.669333pt;}
._2d_c00152{width:42.752000pt;}
._2e_c00152{width:43.690667pt;}
._3b_c00152{width:45.544000pt;}
._2b_c00152{width:48.896000pt;}
._48_c00152{width:51.682667pt;}
._41_c00152{width:55.136000pt;}
._45_c00152{width:56.296000pt;}
._c_c00152{width:59.221333pt;}
._15_c00152{width:60.416000pt;}
._26_c00152{width:63.200000pt;}
._42_c00152{width:65.336000pt;}
._46_c00152{width:66.517333pt;}
._43_c00152{width:68.498667pt;}
._30_c00152{width:71.157333pt;}
._44_c00152{width:75.861333pt;}
._21_c00152{width:82.021333pt;}
._20_c00152{width:84.970667pt;}
._22_c00152{width:87.173333pt;}
._23_c00152{width:91.600000pt;}
._1b_c00152{width:104.277333pt;}
._1d_c00152{width:108.288000pt;}
._4b_c00152{width:133.402667pt;}
._7_c00152{width:143.701333pt;}
._2c_c00152{width:155.696000pt;}
._e_c00152{width:158.890667pt;}
._18_c00152{width:163.840000pt;}
._35_c00152{width:165.909333pt;}
._33_c00152{width:172.152000pt;}
._27_c00152{width:179.088000pt;}
._31_c00152{width:205.397333pt;}
._24_c00152{width:312.826667pt;}
._37_c00152{width:400.093333pt;}
._49_c00152{width:540.773333pt;}
._4d_c00152{width:832.522667pt;}
.fs4_c00152{font-size:26.666667pt;}
.fs6_c00152{font-size:32.000000pt;}
.fsa_c00152{font-size:42.666667pt;}
.fs9_c00152{font-size:64.000000pt;}
.fs7_c00152{font-size:74.666667pt;}
.fs1_c00152{font-size:77.333333pt;}
.fs2_c00152{font-size:85.333333pt;}
.fs8_c00152{font-size:88.000000pt;}
.fs0_c00152{font-size:90.666667pt;}
.fs5_c00152{font-size:104.000000pt;}
.fs3_c00152{font-size:128.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y24_c00152{bottom:2.760000pt;}
.y23_c00152{bottom:6.425212pt;}
.y22_c00152{bottom:47.466667pt;}
.y21_c00152{bottom:84.000000pt;}
.y20_c00152{bottom:116.133333pt;}
.y1f_c00152{bottom:146.400000pt;}
.y1e_c00152{bottom:176.400000pt;}
.y1d_c00152{bottom:207.333333pt;}
.y1c_c00152{bottom:237.066667pt;}
.y1b_c00152{bottom:266.800000pt;}
.y1a_c00152{bottom:297.066667pt;}
.y19_c00152{bottom:326.800000pt;}
.y18_c00152{bottom:356.666667pt;}
.y17_c00152{bottom:386.800000pt;}
.y16_c00152{bottom:416.666667pt;}
.y15_c00152{bottom:446.666667pt;}
.y14_c00152{bottom:476.400000pt;}
.y13_c00152{bottom:506.000000pt;}
.y12_c00152{bottom:535.600000pt;}
.y11_c00152{bottom:565.200000pt;}
.y10_c00152{bottom:594.933333pt;}
.yf_c00152{bottom:624.666667pt;}
.ye_c00152{bottom:654.666667pt;}
.yd_c00152{bottom:685.466667pt;}
.yc_c00152{bottom:714.666667pt;}
.yb_c00152{bottom:742.800000pt;}
.ya_c00152{bottom:777.866667pt;}
.y9_c00152{bottom:823.200000pt;}
.y8_c00152{bottom:884.133333pt;}
.y7_c00152{bottom:885.066667pt;}
.y6_c00152{bottom:929.066667pt;}
.y5_c00152{bottom:973.600000pt;}
.y4_c00152{bottom:1017.333333pt;}
.y3_c00152{bottom:1062.933333pt;}
.y2_c00152{bottom:1103.733333pt;}
.y1_c00152{bottom:1123.200000pt;}
.h7_c00152{height:11.733399pt;}
.h8_c00152{height:38.937500pt;}
.h6_c00152{height:40.515625pt;}
.h2_c00152{height:91.375000pt;}
.h3_c00152{height:108.041667pt;}
.h5_c00152{height:110.968000pt;}
.h4_c00152{height:162.062500pt;}
.h1_c00152{height:1192.666667pt;}
.h0_c00152{height:1192.800000pt;}
.w2_c00152{width:93.222667pt;}
.w1_c00152{width:756.666667pt;}
.w0_c00152{width:756.933333pt;}
.x0_c00152{left:0.000000pt;}
.x9_c00152{left:31.200000pt;}
.xe_c00152{left:32.400000pt;}
.xf_c00152{left:33.333333pt;}
.x10_c00152{left:35.733333pt;}
.x3_c00152{left:36.800000pt;}
.xb_c00152{left:78.400000pt;}
.x5_c00152{left:154.800000pt;}
.x4_c00152{left:165.866667pt;}
.xc_c00152{left:169.200000pt;}
.xa_c00152{left:208.533333pt;}
.x6_c00152{left:210.533333pt;}
.x7_c00152{left:227.200000pt;}
.xd_c00152{left:237.866667pt;}
.x2_c00152{left:243.200000pt;}
.x11_c00152{left:282.533333pt;}
.x8_c00152{left:302.133333pt;}
.x12_c00152{left:335.634888pt;}
.x1_c00152{left:473.066667pt;}
}





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

.ir_c00153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_287020dd372177b117b39bb4.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_7c85ba4e140fc865c31f4023.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_fcffdacdc6d846dd82cd7666.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_d0062154c602577691a3f02d.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_ef6f5228b6a5e7de2d8da01b.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00153;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls2_c00153{letter-spacing:-3.000000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.ls1_c00153{letter-spacing:9.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:-64.044000px;}
.ws4_c00153{word-spacing:-43.084800px;}
.ws3_c00153{word-spacing:-23.136000px;}
.ws2_c00153{word-spacing:-20.244000px;}
.ws5_c00153{word-spacing:0.000000px;}
.ws1_c00153{word-spacing:1.512000px;}
._29_c00153{margin-left:-28.944000px;}
._33_c00153{margin-left:-23.904000px;}
._9_c00153{margin-left:-12.000000px;}
._25_c00153{margin-left:-10.464000px;}
._24_c00153{margin-left:-9.024000px;}
._23_c00153{margin-left:-7.392000px;}
._2d_c00153{margin-left:-5.760000px;}
._3_c00153{margin-left:-4.218000px;}
._6_c00153{margin-left:-2.574000px;}
._4_c00153{margin-left:-1.332000px;}
._22_c00153{width:1.056000px;}
._e_c00153{width:2.400000px;}
._10_c00153{width:3.456000px;}
._2_c00153{width:5.280000px;}
._f_c00153{width:6.816000px;}
._8_c00153{width:7.920000px;}
._a_c00153{width:9.984000px;}
._1_c00153{width:11.232000px;}
._0_c00153{width:12.960000px;}
._14_c00153{width:14.280000px;}
._7_c00153{width:15.936000px;}
._c_c00153{width:17.184000px;}
._32_c00153{width:18.492000px;}
._b_c00153{width:19.584000px;}
._1b_c00153{width:20.880000px;}
._5_c00153{width:22.908000px;}
._11_c00153{width:24.864000px;}
._19_c00153{width:26.100000px;}
._1a_c00153{width:28.272000px;}
._17_c00153{width:30.528000px;}
._27_c00153{width:31.824000px;}
._20_c00153{width:32.928000px;}
._15_c00153{width:34.080000px;}
._31_c00153{width:35.088000px;}
._1d_c00153{width:36.720000px;}
._18_c00153{width:38.496000px;}
._12_c00153{width:40.104000px;}
._2b_c00153{width:41.376000px;}
._1f_c00153{width:42.672000px;}
._16_c00153{width:45.420000px;}
._26_c00153{width:46.650000px;}
._2e_c00153{width:48.708000px;}
._2c_c00153{width:50.142000px;}
._28_c00153{width:52.224000px;}
._13_c00153{width:54.240000px;}
._30_c00153{width:59.298000px;}
._21_c00153{width:64.704000px;}
._2a_c00153{width:66.924000px;}
._1c_c00153{width:67.968000px;}
._2f_c00153{width:102.633000px;}
._d_c00153{width:172.512000px;}
._1e_c00153{width:415.440000px;}
._34_c00153{width:1055.640000px;}
.fc2_c00153{color:transparent;}
.fc1_c00153{color:rgb(128,128,128);}
.fc0_c00153{color:rgb(0,0,0);}
.fs9_c00153{font-size:48.000000px;}
.fs8_c00153{font-size:76.800000px;}
.fs5_c00153{font-size:84.000000px;}
.fs0_c00153{font-size:87.000000px;}
.fs1_c00153{font-size:96.000000px;}
.fs3_c00153{font-size:99.000000px;}
.fs4_c00153{font-size:102.000000px;}
.fs7_c00153{font-size:105.000000px;}
.fs2_c00153{font-size:111.000000px;}
.fs6_c00153{font-size:144.000000px;}
.y0_c00153{bottom:0.000000px;}
.y25_c00153{bottom:3.105000px;}
.y24_c00153{bottom:7.228357px;}
.y23_c00153{bottom:80.280000px;}
.y22_c00153{bottom:114.180000px;}
.y21_c00153{bottom:148.230000px;}
.y20_c00153{bottom:181.980000px;}
.y1f_c00153{bottom:216.780000px;}
.y1e_c00153{bottom:251.430000px;}
.y1d_c00153{bottom:285.480000px;}
.y1c_c00153{bottom:353.130000px;}
.y1b_c00153{bottom:423.180000px;}
.y1a_c00153{bottom:456.030000px;}
.y19_c00153{bottom:489.780000px;}
.y18_c00153{bottom:523.830000px;}
.y17_c00153{bottom:557.280000px;}
.y16_c00153{bottom:591.930000px;}
.y15_c00153{bottom:625.080000px;}
.y14_c00153{bottom:658.530000px;}
.y13_c00153{bottom:691.980000px;}
.y12_c00153{bottom:725.730000px;}
.y11_c00153{bottom:759.780000px;}
.y4_c00153{bottom:772.230000px;}
.y10_c00153{bottom:793.230000px;}
.yf_c00153{bottom:826.830000px;}
.ye_c00153{bottom:860.580000px;}
.yd_c00153{bottom:894.330000px;}
.yc_c00153{bottom:928.530000px;}
.yb_c00153{bottom:960.180000px;}
.y3_c00153{bottom:967.680000px;}
.y2_c00153{bottom:998.280000px;}
.ya_c00153{bottom:1026.780000px;}
.y9_c00153{bottom:1085.130000px;}
.y8_c00153{bottom:1160.430000px;}
.y7_c00153{bottom:1194.780000px;}
.y6_c00153{bottom:1228.230000px;}
.y5_c00153{bottom:1261.980000px;}
.y1_c00153{bottom:1296.630000px;}
.h8_c00153{height:13.200074px;}
.h9_c00153{height:43.804688px;}
.h2_c00153{height:101.825684px;}
.h4_c00153{height:111.867188px;}
.h3_c00153{height:121.546875px;}
.h5_c00153{height:129.143555px;}
.h7_c00153{height:132.941895px;}
.h6_c00153{height:182.320312px;}
.h0_c00153{height:1382.700000px;}
.h1_c00153{height:1383.000000px;}
.w2_c00153{width:104.875500px;}
.w0_c00153{width:863.175000px;}
.w1_c00153{width:863.250000px;}
.x0_c00153{left:0.000000px;}
.x4_c00153{left:132.000000px;}
.x2_c00153{left:165.000000px;}
.x3_c00153{left:173.700000px;}
.xd_c00153{left:244.800000px;}
.x5_c00153{left:264.300000px;}
.x7_c00153{left:265.350000px;}
.xe_c00153{left:266.400000px;}
.x6_c00153{left:268.050000px;}
.xc_c00153{left:269.700000px;}
.x8_c00153{left:295.350000px;}
.x1_c00153{left:314.550000px;}
.x9_c00153{left:317.250000px;}
.x10_c00153{left:319.350000px;}
.x12_c00153{left:383.401749px;}
.xf_c00153{left:388.500000px;}
.xb_c00153{left:506.250000px;}
.x11_c00153{left:530.550000px;}
.xa_c00153{left:543.000000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2_c00153{letter-spacing:-2.666667pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ls1_c00153{letter-spacing:8.000000pt;}
.ws0_c00153{word-spacing:-56.928000pt;}
.ws4_c00153{word-spacing:-38.297600pt;}
.ws3_c00153{word-spacing:-20.565333pt;}
.ws2_c00153{word-spacing:-17.994667pt;}
.ws5_c00153{word-spacing:0.000000pt;}
.ws1_c00153{word-spacing:1.344000pt;}
._29_c00153{margin-left:-25.728000pt;}
._33_c00153{margin-left:-21.248000pt;}
._9_c00153{margin-left:-10.666667pt;}
._25_c00153{margin-left:-9.301333pt;}
._24_c00153{margin-left:-8.021333pt;}
._23_c00153{margin-left:-6.570667pt;}
._2d_c00153{margin-left:-5.120000pt;}
._3_c00153{margin-left:-3.749333pt;}
._6_c00153{margin-left:-2.288000pt;}
._4_c00153{margin-left:-1.184000pt;}
._22_c00153{width:0.938667pt;}
._e_c00153{width:2.133333pt;}
._10_c00153{width:3.072000pt;}
._2_c00153{width:4.693333pt;}
._f_c00153{width:6.058667pt;}
._8_c00153{width:7.040000pt;}
._a_c00153{width:8.874667pt;}
._1_c00153{width:9.984000pt;}
._0_c00153{width:11.520000pt;}
._14_c00153{width:12.693333pt;}
._7_c00153{width:14.165333pt;}
._c_c00153{width:15.274667pt;}
._32_c00153{width:16.437333pt;}
._b_c00153{width:17.408000pt;}
._1b_c00153{width:18.560000pt;}
._5_c00153{width:20.362667pt;}
._11_c00153{width:22.101333pt;}
._19_c00153{width:23.200000pt;}
._1a_c00153{width:25.130667pt;}
._17_c00153{width:27.136000pt;}
._27_c00153{width:28.288000pt;}
._20_c00153{width:29.269333pt;}
._15_c00153{width:30.293333pt;}
._31_c00153{width:31.189333pt;}
._1d_c00153{width:32.640000pt;}
._18_c00153{width:34.218667pt;}
._12_c00153{width:35.648000pt;}
._2b_c00153{width:36.778667pt;}
._1f_c00153{width:37.930667pt;}
._16_c00153{width:40.373333pt;}
._26_c00153{width:41.466667pt;}
._2e_c00153{width:43.296000pt;}
._2c_c00153{width:44.570667pt;}
._28_c00153{width:46.421333pt;}
._13_c00153{width:48.213333pt;}
._30_c00153{width:52.709333pt;}
._21_c00153{width:57.514667pt;}
._2a_c00153{width:59.488000pt;}
._1c_c00153{width:60.416000pt;}
._2f_c00153{width:91.229333pt;}
._d_c00153{width:153.344000pt;}
._1e_c00153{width:369.280000pt;}
._34_c00153{width:938.346667pt;}
.fs9_c00153{font-size:42.666667pt;}
.fs8_c00153{font-size:68.266667pt;}
.fs5_c00153{font-size:74.666667pt;}
.fs0_c00153{font-size:77.333333pt;}
.fs1_c00153{font-size:85.333333pt;}
.fs3_c00153{font-size:88.000000pt;}
.fs4_c00153{font-size:90.666667pt;}
.fs7_c00153{font-size:93.333333pt;}
.fs2_c00153{font-size:98.666667pt;}
.fs6_c00153{font-size:128.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y25_c00153{bottom:2.760000pt;}
.y24_c00153{bottom:6.425206pt;}
.y23_c00153{bottom:71.360000pt;}
.y22_c00153{bottom:101.493333pt;}
.y21_c00153{bottom:131.760000pt;}
.y20_c00153{bottom:161.760000pt;}
.y1f_c00153{bottom:192.693333pt;}
.y1e_c00153{bottom:223.493333pt;}
.y1d_c00153{bottom:253.760000pt;}
.y1c_c00153{bottom:313.893333pt;}
.y1b_c00153{bottom:376.160000pt;}
.y1a_c00153{bottom:405.360000pt;}
.y19_c00153{bottom:435.360000pt;}
.y18_c00153{bottom:465.626667pt;}
.y17_c00153{bottom:495.360000pt;}
.y16_c00153{bottom:526.160000pt;}
.y15_c00153{bottom:555.626667pt;}
.y14_c00153{bottom:585.360000pt;}
.y13_c00153{bottom:615.093333pt;}
.y12_c00153{bottom:645.093333pt;}
.y11_c00153{bottom:675.360000pt;}
.y4_c00153{bottom:686.426667pt;}
.y10_c00153{bottom:705.093333pt;}
.yf_c00153{bottom:734.960000pt;}
.ye_c00153{bottom:764.960000pt;}
.yd_c00153{bottom:794.960000pt;}
.yc_c00153{bottom:825.360000pt;}
.yb_c00153{bottom:853.493333pt;}
.y3_c00153{bottom:860.160000pt;}
.y2_c00153{bottom:887.360000pt;}
.ya_c00153{bottom:912.693333pt;}
.y9_c00153{bottom:964.560000pt;}
.y8_c00153{bottom:1031.493333pt;}
.y7_c00153{bottom:1062.026667pt;}
.y6_c00153{bottom:1091.760000pt;}
.y5_c00153{bottom:1121.760000pt;}
.y1_c00153{bottom:1152.560000pt;}
.h8_c00153{height:11.733399pt;}
.h9_c00153{height:38.937500pt;}
.h2_c00153{height:90.511719pt;}
.h4_c00153{height:99.437500pt;}
.h3_c00153{height:108.041667pt;}
.h5_c00153{height:114.794271pt;}
.h7_c00153{height:118.170573pt;}
.h6_c00153{height:162.062500pt;}
.h0_c00153{height:1229.066667pt;}
.h1_c00153{height:1229.333333pt;}
.w2_c00153{width:93.222667pt;}
.w0_c00153{width:767.266667pt;}
.w1_c00153{width:767.333333pt;}
.x0_c00153{left:0.000000pt;}
.x4_c00153{left:117.333333pt;}
.x2_c00153{left:146.666667pt;}
.x3_c00153{left:154.400000pt;}
.xd_c00153{left:217.600000pt;}
.x5_c00153{left:234.933333pt;}
.x7_c00153{left:235.866667pt;}
.xe_c00153{left:236.800000pt;}
.x6_c00153{left:238.266667pt;}
.xc_c00153{left:239.733333pt;}
.x8_c00153{left:262.533333pt;}
.x1_c00153{left:279.600000pt;}
.x9_c00153{left:282.000000pt;}
.x10_c00153{left:283.866667pt;}
.x12_c00153{left:340.801554pt;}
.xf_c00153{left:345.333333pt;}
.xb_c00153{left:450.000000pt;}
.x11_c00153{left:471.600000pt;}
.xa_c00153{left:482.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1d6f544ba9ddd4c30ea0069e.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_7c9b0bd5dfb53515c1bee4d6.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_3d0387de6f9504c55df1b33f.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_dd97ebb02f17a54ab78c3d5d.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;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_c00154;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls3_c00154{letter-spacing:0.000000px;}
.ls1_c00154{letter-spacing:12.000000px;}
.ls4_c00154{letter-spacing:21.000000px;}
.ls2_c00154{letter-spacing:42.000000px;}
.ls0_c00154{letter-spacing:52.500000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:-51.000000px;}
.ws1_c00154{word-spacing:-44.136000px;}
.ws2_c00154{word-spacing:0.000000px;}
._47_c00154{margin-left:-111.360000px;}
._34_c00154{margin-left:-86.400000px;}
._46_c00154{margin-left:-57.942000px;}
._40_c00154{margin-left:-53.070000px;}
._41_c00154{margin-left:-47.328000px;}
._43_c00154{margin-left:-31.059000px;}
._44_c00154{margin-left:-27.840000px;}
._3e_c00154{margin-left:-22.080000px;}
._4c_c00154{margin-left:-17.736000px;}
._2d_c00154{margin-left:-16.326000px;}
._17_c00154{margin-left:-15.264000px;}
._19_c00154{margin-left:-13.920000px;}
._13_c00154{margin-left:-12.426000px;}
._36_c00154{margin-left:-10.776000px;}
._14_c00154{margin-left:-9.408000px;}
._31_c00154{margin-left:-7.584000px;}
._8_c00154{margin-left:-6.528000px;}
._2b_c00154{margin-left:-5.484000px;}
._7_c00154{margin-left:-3.840000px;}
._f_c00154{margin-left:-2.760000px;}
._10_c00154{margin-left:-1.248000px;}
._9_c00154{width:1.824000px;}
._1b_c00154{width:2.856000px;}
._a_c00154{width:3.936000px;}
._5_c00154{width:5.124000px;}
._d_c00154{width:6.528000px;}
._12_c00154{width:8.064000px;}
._1d_c00154{width:9.924000px;}
._1e_c00154{width:10.944000px;}
._b_c00154{width:12.000000px;}
._29_c00154{width:13.320000px;}
._e_c00154{width:14.652000px;}
._2a_c00154{width:16.056000px;}
._18_c00154{width:17.760000px;}
._1c_c00154{width:18.768000px;}
._3_c00154{width:20.010000px;}
._2_c00154{width:21.228000px;}
._3c_c00154{width:24.312000px;}
._24_c00154{width:25.332000px;}
._1a_c00154{width:27.552000px;}
._3f_c00154{width:28.584000px;}
._16_c00154{width:29.628000px;}
._4b_c00154{width:30.672000px;}
._c_c00154{width:32.352000px;}
._2c_c00154{width:33.492000px;}
._15_c00154{width:35.136000px;}
._2f_c00154{width:36.336000px;}
._25_c00154{width:38.544000px;}
._11_c00154{width:40.416000px;}
._27_c00154{width:41.568000px;}
._33_c00154{width:43.104000px;}
._3d_c00154{width:45.444000px;}
._20_c00154{width:46.656000px;}
._28_c00154{width:47.832000px;}
._6_c00154{width:49.620000px;}
._3b_c00154{width:51.036000px;}
._2e_c00154{width:52.152000px;}
._23_c00154{width:53.844000px;}
._26_c00154{width:58.524000px;}
._48_c00154{width:60.912000px;}
._1f_c00154{width:65.016000px;}
._0_c00154{width:77.604000px;}
._22_c00154{width:79.752000px;}
._21_c00154{width:85.872000px;}
._38_c00154{width:95.112000px;}
._39_c00154{width:128.736000px;}
._49_c00154{width:138.528000px;}
._30_c00154{width:141.888000px;}
._4a_c00154{width:159.228000px;}
._3a_c00154{width:168.960000px;}
._45_c00154{width:173.391000px;}
._35_c00154{width:183.264000px;}
._37_c00154{width:261.288000px;}
._32_c00154{width:265.152000px;}
._1_c00154{width:398.151000px;}
._4_c00154{width:775.197000px;}
._42_c00154{width:1623.942000px;}
._4d_c00154{width:1961.568000px;}
.fc2_c00154{color:transparent;}
.fc1_c00154{color:rgb(128,128,128);}
.fc0_c00154{color:rgb(0,0,0);}
.fs6_c00154{font-size:48.000000px;}
.fs3_c00154{font-size:78.000000px;}
.fs2_c00154{font-size:84.000000px;}
.fs0_c00154{font-size:87.000000px;}
.fs4_c00154{font-size:96.000000px;}
.fs1_c00154{font-size:99.000000px;}
.fs5_c00154{font-size:102.000000px;}
.y0_c00154{bottom:0.000000px;}
.y25_c00154{bottom:3.105000px;}
.y24_c00154{bottom:7.228369px;}
.y23_c00154{bottom:96.870000px;}
.y22_c00154{bottom:133.320000px;}
.y21_c00154{bottom:168.720000px;}
.y20_c00154{bottom:202.170000px;}
.y1f_c00154{bottom:270.720000px;}
.y1e_c00154{bottom:304.470000px;}
.y1d_c00154{bottom:338.520000px;}
.y1c_c00154{bottom:371.970000px;}
.y1b_c00154{bottom:406.020000px;}
.y1a_c00154{bottom:439.770000px;}
.y19_c00154{bottom:473.070000px;}
.y18_c00154{bottom:507.120000px;}
.y17_c00154{bottom:540.720000px;}
.y16_c00154{bottom:574.320000px;}
.y15_c00154{bottom:607.470000px;}
.y14_c00154{bottom:640.620000px;}
.y13_c00154{bottom:675.720000px;}
.y12_c00154{bottom:709.020000px;}
.y11_c00154{bottom:774.570000px;}
.y10_c00154{bottom:806.970000px;}
.yf_c00154{bottom:840.720000px;}
.ye_c00154{bottom:873.420000px;}
.yd_c00154{bottom:906.870000px;}
.yc_c00154{bottom:940.170000px;}
.yb_c00154{bottom:973.920000px;}
.ya_c00154{bottom:1007.070000px;}
.y9_c00154{bottom:1040.220000px;}
.y8_c00154{bottom:1073.820000px;}
.y7_c00154{bottom:1106.970000px;}
.y6_c00154{bottom:1139.970000px;}
.y5_c00154{bottom:1173.420000px;}
.y4_c00154{bottom:1206.270000px;}
.y3_c00154{bottom:1239.270000px;}
.y2_c00154{bottom:1273.020000px;}
.y1_c00154{bottom:1289.820000px;}
.h4_c00154{height:13.200073px;}
.h5_c00154{height:43.804688px;}
.h2_c00154{height:110.151855px;}
.h3_c00154{height:121.546875px;}
.h0_c00154{height:1383.450000px;}
.h1_c00154{height:1383.750000px;}
.w2_c00154{width:104.875500px;}
.w0_c00154{width:878.025000px;}
.w1_c00154{width:878.250000px;}
.x0_c00154{left:0.000000px;}
.x7_c00154{left:40.200000px;}
.x6_c00154{left:41.400000px;}
.x5_c00154{left:42.900000px;}
.xc_c00154{left:43.950000px;}
.x4_c00154{left:45.150000px;}
.x3_c00154{left:46.800000px;}
.x2_c00154{left:47.850000px;}
.x1_c00154{left:49.500000px;}
.xb_c00154{left:95.400000px;}
.x8_c00154{left:173.100000px;}
.xa_c00154{left:179.550000px;}
.xd_c00154{left:390.826721px;}
.x9_c00154{left:500.250000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls3_c00154{letter-spacing:0.000000pt;}
.ls1_c00154{letter-spacing:10.666667pt;}
.ls4_c00154{letter-spacing:18.666667pt;}
.ls2_c00154{letter-spacing:37.333333pt;}
.ls0_c00154{letter-spacing:46.666667pt;}
.ws0_c00154{word-spacing:-45.333333pt;}
.ws1_c00154{word-spacing:-39.232000pt;}
.ws2_c00154{word-spacing:0.000000pt;}
._47_c00154{margin-left:-98.986667pt;}
._34_c00154{margin-left:-76.800000pt;}
._46_c00154{margin-left:-51.504000pt;}
._40_c00154{margin-left:-47.173333pt;}
._41_c00154{margin-left:-42.069333pt;}
._43_c00154{margin-left:-27.608000pt;}
._44_c00154{margin-left:-24.746667pt;}
._3e_c00154{margin-left:-19.626667pt;}
._4c_c00154{margin-left:-15.765333pt;}
._2d_c00154{margin-left:-14.512000pt;}
._17_c00154{margin-left:-13.568000pt;}
._19_c00154{margin-left:-12.373333pt;}
._13_c00154{margin-left:-11.045333pt;}
._36_c00154{margin-left:-9.578667pt;}
._14_c00154{margin-left:-8.362667pt;}
._31_c00154{margin-left:-6.741333pt;}
._8_c00154{margin-left:-5.802667pt;}
._2b_c00154{margin-left:-4.874667pt;}
._7_c00154{margin-left:-3.413333pt;}
._f_c00154{margin-left:-2.453333pt;}
._10_c00154{margin-left:-1.109333pt;}
._9_c00154{width:1.621333pt;}
._1b_c00154{width:2.538667pt;}
._a_c00154{width:3.498667pt;}
._5_c00154{width:4.554667pt;}
._d_c00154{width:5.802667pt;}
._12_c00154{width:7.168000pt;}
._1d_c00154{width:8.821333pt;}
._1e_c00154{width:9.728000pt;}
._b_c00154{width:10.666667pt;}
._29_c00154{width:11.840000pt;}
._e_c00154{width:13.024000pt;}
._2a_c00154{width:14.272000pt;}
._18_c00154{width:15.786667pt;}
._1c_c00154{width:16.682667pt;}
._3_c00154{width:17.786667pt;}
._2_c00154{width:18.869333pt;}
._3c_c00154{width:21.610667pt;}
._24_c00154{width:22.517333pt;}
._1a_c00154{width:24.490667pt;}
._3f_c00154{width:25.408000pt;}
._16_c00154{width:26.336000pt;}
._4b_c00154{width:27.264000pt;}
._c_c00154{width:28.757333pt;}
._2c_c00154{width:29.770667pt;}
._15_c00154{width:31.232000pt;}
._2f_c00154{width:32.298667pt;}
._25_c00154{width:34.261333pt;}
._11_c00154{width:35.925333pt;}
._27_c00154{width:36.949333pt;}
._33_c00154{width:38.314667pt;}
._3d_c00154{width:40.394667pt;}
._20_c00154{width:41.472000pt;}
._28_c00154{width:42.517333pt;}
._6_c00154{width:44.106667pt;}
._3b_c00154{width:45.365333pt;}
._2e_c00154{width:46.357333pt;}
._23_c00154{width:47.861333pt;}
._26_c00154{width:52.021333pt;}
._48_c00154{width:54.144000pt;}
._1f_c00154{width:57.792000pt;}
._0_c00154{width:68.981333pt;}
._22_c00154{width:70.890667pt;}
._21_c00154{width:76.330667pt;}
._38_c00154{width:84.544000pt;}
._39_c00154{width:114.432000pt;}
._49_c00154{width:123.136000pt;}
._30_c00154{width:126.122667pt;}
._4a_c00154{width:141.536000pt;}
._3a_c00154{width:150.186667pt;}
._45_c00154{width:154.125333pt;}
._35_c00154{width:162.901333pt;}
._37_c00154{width:232.256000pt;}
._32_c00154{width:235.690667pt;}
._1_c00154{width:353.912000pt;}
._4_c00154{width:689.064000pt;}
._42_c00154{width:1443.504000pt;}
._4d_c00154{width:1743.616000pt;}
.fs6_c00154{font-size:42.666667pt;}
.fs3_c00154{font-size:69.333333pt;}
.fs2_c00154{font-size:74.666667pt;}
.fs0_c00154{font-size:77.333333pt;}
.fs4_c00154{font-size:85.333333pt;}
.fs1_c00154{font-size:88.000000pt;}
.fs5_c00154{font-size:90.666667pt;}
.y0_c00154{bottom:0.000000pt;}
.y25_c00154{bottom:2.760000pt;}
.y24_c00154{bottom:6.425217pt;}
.y23_c00154{bottom:86.106667pt;}
.y22_c00154{bottom:118.506667pt;}
.y21_c00154{bottom:149.973333pt;}
.y20_c00154{bottom:179.706667pt;}
.y1f_c00154{bottom:240.640000pt;}
.y1e_c00154{bottom:270.640000pt;}
.y1d_c00154{bottom:300.906667pt;}
.y1c_c00154{bottom:330.640000pt;}
.y1b_c00154{bottom:360.906667pt;}
.y1a_c00154{bottom:390.906667pt;}
.y19_c00154{bottom:420.506667pt;}
.y18_c00154{bottom:450.773333pt;}
.y17_c00154{bottom:480.640000pt;}
.y16_c00154{bottom:510.506667pt;}
.y15_c00154{bottom:539.973333pt;}
.y14_c00154{bottom:569.440000pt;}
.y13_c00154{bottom:600.640000pt;}
.y12_c00154{bottom:630.240000pt;}
.y11_c00154{bottom:688.506667pt;}
.y10_c00154{bottom:717.306667pt;}
.yf_c00154{bottom:747.306667pt;}
.ye_c00154{bottom:776.373333pt;}
.yd_c00154{bottom:806.106667pt;}
.yc_c00154{bottom:835.706667pt;}
.yb_c00154{bottom:865.706667pt;}
.ya_c00154{bottom:895.173333pt;}
.y9_c00154{bottom:924.640000pt;}
.y8_c00154{bottom:954.506667pt;}
.y7_c00154{bottom:983.973333pt;}
.y6_c00154{bottom:1013.306667pt;}
.y5_c00154{bottom:1043.040000pt;}
.y4_c00154{bottom:1072.240000pt;}
.y3_c00154{bottom:1101.573333pt;}
.y2_c00154{bottom:1131.573333pt;}
.y1_c00154{bottom:1146.506667pt;}
.h4_c00154{height:11.733399pt;}
.h5_c00154{height:38.937500pt;}
.h2_c00154{height:97.912760pt;}
.h3_c00154{height:108.041667pt;}
.h0_c00154{height:1229.733333pt;}
.h1_c00154{height:1230.000000pt;}
.w2_c00154{width:93.222667pt;}
.w0_c00154{width:780.466667pt;}
.w1_c00154{width:780.666667pt;}
.x0_c00154{left:0.000000pt;}
.x7_c00154{left:35.733333pt;}
.x6_c00154{left:36.800000pt;}
.x5_c00154{left:38.133333pt;}
.xc_c00154{left:39.066667pt;}
.x4_c00154{left:40.133333pt;}
.x3_c00154{left:41.600000pt;}
.x2_c00154{left:42.533333pt;}
.x1_c00154{left:44.000000pt;}
.xb_c00154{left:84.800000pt;}
.x8_c00154{left:153.866667pt;}
.xa_c00154{left:159.600000pt;}
.xd_c00154{left:347.401530pt;}
.x9_c00154{left:444.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0129cd4eebe1b88d1c55cdd1.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_d76f5d8418037c4ffd732fcb.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.ls2_c00155{letter-spacing:6.000000px;}
.ls1_c00155{letter-spacing:60.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;}
}
.ws1_c00155{word-spacing:-83.136000px;}
.ws0_c00155{word-spacing:-51.000000px;}
.ws2_c00155{word-spacing:-23.136000px;}
.ws3_c00155{word-spacing:0.000000px;}
._2d_c00155{margin-left:-86.400000px;}
._2a_c00155{margin-left:-83.424000px;}
._3a_c00155{margin-left:-79.776000px;}
._26_c00155{margin-left:-77.376000px;}
._5_c00155{margin-left:-74.364000px;}
._7_c00155{margin-left:-72.864000px;}
._29_c00155{margin-left:-52.128000px;}
._f_c00155{margin-left:-41.964000px;}
._4e_c00155{margin-left:-28.608000px;}
._37_c00155{margin-left:-23.184000px;}
._32_c00155{margin-left:-21.600000px;}
._48_c00155{margin-left:-19.584000px;}
._3_c00155{margin-left:-14.868000px;}
._54_c00155{margin-left:-12.936000px;}
._b_c00155{margin-left:-11.232000px;}
._9_c00155{margin-left:-9.408000px;}
._1e_c00155{margin-left:-8.160000px;}
._a_c00155{margin-left:-6.144000px;}
._21_c00155{margin-left:-4.716000px;}
._40_c00155{margin-left:-3.456000px;}
._19_c00155{margin-left:-1.908000px;}
._10_c00155{width:1.824000px;}
._e_c00155{width:3.744000px;}
._c_c00155{width:4.800000px;}
._13_c00155{width:6.048000px;}
._d_c00155{width:7.488000px;}
._18_c00155{width:9.312000px;}
._12_c00155{width:10.656000px;}
._16_c00155{width:11.712000px;}
._1b_c00155{width:12.864000px;}
._1d_c00155{width:14.676000px;}
._50_c00155{width:15.744000px;}
._1_c00155{width:16.884000px;}
._1c_c00155{width:18.240000px;}
._3c_c00155{width:19.872000px;}
._28_c00155{width:21.984000px;}
._0_c00155{width:24.780000px;}
._22_c00155{width:25.824000px;}
._23_c00155{width:26.976000px;}
._3d_c00155{width:28.128000px;}
._1a_c00155{width:29.472000px;}
._3f_c00155{width:30.804000px;}
._11_c00155{width:32.064000px;}
._24_c00155{width:34.176000px;}
._27_c00155{width:36.288000px;}
._4d_c00155{width:37.512000px;}
._17_c00155{width:38.880000px;}
._20_c00155{width:41.052000px;}
._52_c00155{width:42.528000px;}
._14_c00155{width:43.584000px;}
._1f_c00155{width:44.628000px;}
._55_c00155{width:45.900000px;}
._3e_c00155{width:48.000000px;}
._15_c00155{width:49.440000px;}
._31_c00155{width:50.976000px;}
._53_c00155{width:52.608000px;}
._51_c00155{width:54.336000px;}
._42_c00155{width:56.244000px;}
._41_c00155{width:58.560000px;}
._35_c00155{width:60.672000px;}
._2c_c00155{width:68.064000px;}
._46_c00155{width:73.056000px;}
._47_c00155{width:75.744000px;}
._45_c00155{width:81.408000px;}
._36_c00155{width:84.180000px;}
._49_c00155{width:102.072000px;}
._8_c00155{width:105.792000px;}
._2b_c00155{width:107.712000px;}
._4a_c00155{width:111.552000px;}
._33_c00155{width:124.800000px;}
._44_c00155{width:131.616000px;}
._4f_c00155{width:143.520000px;}
._43_c00155{width:146.880000px;}
._4c_c00155{width:151.254000px;}
._3b_c00155{width:181.248000px;}
._2f_c00155{width:221.568000px;}
._30_c00155{width:261.216000px;}
._4b_c00155{width:265.992000px;}
._6_c00155{width:353.664000px;}
._38_c00155{width:365.664000px;}
._34_c00155{width:472.800000px;}
._25_c00155{width:636.324000px;}
._2_c00155{width:663.096000px;}
._4_c00155{width:665.532000px;}
._2e_c00155{width:1255.308000px;}
._39_c00155{width:1441.932000px;}
.fc2_c00155{color:transparent;}
.fc1_c00155{color:rgb(128,128,128);}
.fc0_c00155{color:rgb(0,0,0);}
.fs5_c00155{font-size:30.000000px;}
.fs3_c00155{font-size:42.000000px;}
.fs6_c00155{font-size:48.000000px;}
.fs0_c00155{font-size:84.000000px;}
.fs4_c00155{font-size:87.000000px;}
.fs1_c00155{font-size:96.000000px;}
.fs2_c00155{font-size:102.000000px;}
.y0_c00155{bottom:0.000000px;}
.y28_c00155{bottom:3.105000px;}
.y27_c00155{bottom:7.228357px;}
.y26_c00155{bottom:76.380000px;}
.y25_c00155{bottom:111.480000px;}
.y24_c00155{bottom:145.830000px;}
.y23_c00155{bottom:180.330000px;}
.y22_c00155{bottom:214.380000px;}
.y21_c00155{bottom:249.030000px;}
.y20_c00155{bottom:282.780000px;}
.y1f_c00155{bottom:316.530000px;}
.y1e_c00155{bottom:351.030000px;}
.y1d_c00155{bottom:385.080000px;}
.y1c_c00155{bottom:418.830000px;}
.y1b_c00155{bottom:452.280000px;}
.y1a_c00155{bottom:492.780000px;}
.y19_c00155{bottom:513.330000px;}
.y18_c00155{bottom:520.830000px;}
.y17_c00155{bottom:557.580000px;}
.y16_c00155{bottom:589.230000px;}
.y15_c00155{bottom:622.380000px;}
.y14_c00155{bottom:655.530000px;}
.y13_c00155{bottom:689.130000px;}
.y12_c00155{bottom:722.880000px;}
.y11_c00155{bottom:756.330000px;}
.y10_c00155{bottom:790.380000px;}
.yf_c00155{bottom:823.530000px;}
.ye_c00155{bottom:856.980000px;}
.yd_c00155{bottom:889.980000px;}
.yc_c00155{bottom:923.730000px;}
.yb_c00155{bottom:956.430000px;}
.ya_c00155{bottom:983.580000px;}
.y9_c00155{bottom:1023.030000px;}
.y8_c00155{bottom:1052.280000px;}
.y7_c00155{bottom:1088.430000px;}
.y6_c00155{bottom:1122.630000px;}
.y5_c00155{bottom:1155.930000px;}
.y4_c00155{bottom:1188.780000px;}
.y3_c00155{bottom:1222.080000px;}
.y2_c00155{bottom:1254.930000px;}
.y1_c00155{bottom:1283.880000px;}
.h6_c00155{height:13.200074px;}
.h5_c00155{height:37.983398px;}
.h7_c00155{height:43.804688px;}
.h3_c00155{height:53.176758px;}
.h4_c00155{height:101.825684px;}
.h2_c00155{height:121.546875px;}
.h0_c00155{height:1382.700000px;}
.h1_c00155{height:1383.000000px;}
.w2_c00155{width:104.875500px;}
.w0_c00155{width:863.175000px;}
.w1_c00155{width:863.250000px;}
.x0_c00155{left:0.000000px;}
.x3_c00155{left:269.700000px;}
.x2_c00155{left:271.350000px;}
.x5_c00155{left:272.400000px;}
.x4_c00155{left:273.600000px;}
.x6_c00155{left:274.650000px;}
.x8_c00155{left:276.300000px;}
.xb_c00155{left:289.800000px;}
.xa_c00155{left:294.900000px;}
.x1_c00155{left:303.750000px;}
.x7_c00155{left:360.150000px;}
.xd_c00155{left:383.401749px;}
.x9_c00155{left:388.500000px;}
.xc_c00155{left:796.200000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ls2_c00155{letter-spacing:5.333333pt;}
.ls1_c00155{letter-spacing:53.333333pt;}
.ws1_c00155{word-spacing:-73.898667pt;}
.ws0_c00155{word-spacing:-45.333333pt;}
.ws2_c00155{word-spacing:-20.565333pt;}
.ws3_c00155{word-spacing:0.000000pt;}
._2d_c00155{margin-left:-76.800000pt;}
._2a_c00155{margin-left:-74.154667pt;}
._3a_c00155{margin-left:-70.912000pt;}
._26_c00155{margin-left:-68.778667pt;}
._5_c00155{margin-left:-66.101333pt;}
._7_c00155{margin-left:-64.768000pt;}
._29_c00155{margin-left:-46.336000pt;}
._f_c00155{margin-left:-37.301333pt;}
._4e_c00155{margin-left:-25.429333pt;}
._37_c00155{margin-left:-20.608000pt;}
._32_c00155{margin-left:-19.200000pt;}
._48_c00155{margin-left:-17.408000pt;}
._3_c00155{margin-left:-13.216000pt;}
._54_c00155{margin-left:-11.498667pt;}
._b_c00155{margin-left:-9.984000pt;}
._9_c00155{margin-left:-8.362667pt;}
._1e_c00155{margin-left:-7.253333pt;}
._a_c00155{margin-left:-5.461333pt;}
._21_c00155{margin-left:-4.192000pt;}
._40_c00155{margin-left:-3.072000pt;}
._19_c00155{margin-left:-1.696000pt;}
._10_c00155{width:1.621333pt;}
._e_c00155{width:3.328000pt;}
._c_c00155{width:4.266667pt;}
._13_c00155{width:5.376000pt;}
._d_c00155{width:6.656000pt;}
._18_c00155{width:8.277333pt;}
._12_c00155{width:9.472000pt;}
._16_c00155{width:10.410667pt;}
._1b_c00155{width:11.434667pt;}
._1d_c00155{width:13.045333pt;}
._50_c00155{width:13.994667pt;}
._1_c00155{width:15.008000pt;}
._1c_c00155{width:16.213333pt;}
._3c_c00155{width:17.664000pt;}
._28_c00155{width:19.541333pt;}
._0_c00155{width:22.026667pt;}
._22_c00155{width:22.954667pt;}
._23_c00155{width:23.978667pt;}
._3d_c00155{width:25.002667pt;}
._1a_c00155{width:26.197333pt;}
._3f_c00155{width:27.381333pt;}
._11_c00155{width:28.501333pt;}
._24_c00155{width:30.378667pt;}
._27_c00155{width:32.256000pt;}
._4d_c00155{width:33.344000pt;}
._17_c00155{width:34.560000pt;}
._20_c00155{width:36.490667pt;}
._52_c00155{width:37.802667pt;}
._14_c00155{width:38.741333pt;}
._1f_c00155{width:39.669333pt;}
._55_c00155{width:40.800000pt;}
._3e_c00155{width:42.666667pt;}
._15_c00155{width:43.946667pt;}
._31_c00155{width:45.312000pt;}
._53_c00155{width:46.762667pt;}
._51_c00155{width:48.298667pt;}
._42_c00155{width:49.994667pt;}
._41_c00155{width:52.053333pt;}
._35_c00155{width:53.930667pt;}
._2c_c00155{width:60.501333pt;}
._46_c00155{width:64.938667pt;}
._47_c00155{width:67.328000pt;}
._45_c00155{width:72.362667pt;}
._36_c00155{width:74.826667pt;}
._49_c00155{width:90.730667pt;}
._8_c00155{width:94.037333pt;}
._2b_c00155{width:95.744000pt;}
._4a_c00155{width:99.157333pt;}
._33_c00155{width:110.933333pt;}
._44_c00155{width:116.992000pt;}
._4f_c00155{width:127.573333pt;}
._43_c00155{width:130.560000pt;}
._4c_c00155{width:134.448000pt;}
._3b_c00155{width:161.109333pt;}
._2f_c00155{width:196.949333pt;}
._30_c00155{width:232.192000pt;}
._4b_c00155{width:236.437333pt;}
._6_c00155{width:314.368000pt;}
._38_c00155{width:325.034667pt;}
._34_c00155{width:420.266667pt;}
._25_c00155{width:565.621333pt;}
._2_c00155{width:589.418667pt;}
._4_c00155{width:591.584000pt;}
._2e_c00155{width:1115.829333pt;}
._39_c00155{width:1281.717333pt;}
.fs5_c00155{font-size:26.666667pt;}
.fs3_c00155{font-size:37.333333pt;}
.fs6_c00155{font-size:42.666667pt;}
.fs0_c00155{font-size:74.666667pt;}
.fs4_c00155{font-size:77.333333pt;}
.fs1_c00155{font-size:85.333333pt;}
.fs2_c00155{font-size:90.666667pt;}
.y0_c00155{bottom:0.000000pt;}
.y28_c00155{bottom:2.760000pt;}
.y27_c00155{bottom:6.425206pt;}
.y26_c00155{bottom:67.893333pt;}
.y25_c00155{bottom:99.093333pt;}
.y24_c00155{bottom:129.626667pt;}
.y23_c00155{bottom:160.293333pt;}
.y22_c00155{bottom:190.560000pt;}
.y21_c00155{bottom:221.360000pt;}
.y20_c00155{bottom:251.360000pt;}
.y1f_c00155{bottom:281.360000pt;}
.y1e_c00155{bottom:312.026667pt;}
.y1d_c00155{bottom:342.293333pt;}
.y1c_c00155{bottom:372.293333pt;}
.y1b_c00155{bottom:402.026667pt;}
.y1a_c00155{bottom:438.026667pt;}
.y19_c00155{bottom:456.293333pt;}
.y18_c00155{bottom:462.960000pt;}
.y17_c00155{bottom:495.626667pt;}
.y16_c00155{bottom:523.760000pt;}
.y15_c00155{bottom:553.226667pt;}
.y14_c00155{bottom:582.693333pt;}
.y13_c00155{bottom:612.560000pt;}
.y12_c00155{bottom:642.560000pt;}
.y11_c00155{bottom:672.293333pt;}
.y10_c00155{bottom:702.560000pt;}
.yf_c00155{bottom:732.026667pt;}
.ye_c00155{bottom:761.760000pt;}
.yd_c00155{bottom:791.093333pt;}
.yc_c00155{bottom:821.093333pt;}
.yb_c00155{bottom:850.160000pt;}
.ya_c00155{bottom:874.293333pt;}
.y9_c00155{bottom:909.360000pt;}
.y8_c00155{bottom:935.360000pt;}
.y7_c00155{bottom:967.493333pt;}
.y6_c00155{bottom:997.893333pt;}
.y5_c00155{bottom:1027.493333pt;}
.y4_c00155{bottom:1056.693333pt;}
.y3_c00155{bottom:1086.293333pt;}
.y2_c00155{bottom:1115.493333pt;}
.y1_c00155{bottom:1141.226667pt;}
.h6_c00155{height:11.733399pt;}
.h5_c00155{height:33.763021pt;}
.h7_c00155{height:38.937500pt;}
.h3_c00155{height:47.268229pt;}
.h4_c00155{height:90.511719pt;}
.h2_c00155{height:108.041667pt;}
.h0_c00155{height:1229.066667pt;}
.h1_c00155{height:1229.333333pt;}
.w2_c00155{width:93.222667pt;}
.w0_c00155{width:767.266667pt;}
.w1_c00155{width:767.333333pt;}
.x0_c00155{left:0.000000pt;}
.x3_c00155{left:239.733333pt;}
.x2_c00155{left:241.200000pt;}
.x5_c00155{left:242.133333pt;}
.x4_c00155{left:243.200000pt;}
.x6_c00155{left:244.133333pt;}
.x8_c00155{left:245.600000pt;}
.xb_c00155{left:257.600000pt;}
.xa_c00155{left:262.133333pt;}
.x1_c00155{left:270.000000pt;}
.x7_c00155{left:320.133333pt;}
.xd_c00155{left:340.801554pt;}
.x9_c00155{left:345.333333pt;}
.xc_c00155{left:707.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_55ca483ba84b93cb4a81eca7.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_8de6144f6f36068fc90afe35.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00156{vertical-align:-82.200000px;}
.v1_c00156{vertical-align:-31.200000px;}
.v0_c00156{vertical-align:0.000000px;}
.ls0_c00156{letter-spacing:0.000000px;}
.ls1_c00156{letter-spacing:42.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:-20.244000px;}
.ws1_c00156{word-spacing:0.000000px;}
._2a_c00156{margin-left:-89.376000px;}
._35_c00156{margin-left:-68.382000px;}
._19_c00156{margin-left:-55.488000px;}
._41_c00156{margin-left:-50.634000px;}
._12_c00156{margin-left:-32.448000px;}
._30_c00156{margin-left:-27.360000px;}
._d_c00156{margin-left:-23.328000px;}
._9_c00156{margin-left:-21.312000px;}
._2c_c00156{margin-left:-19.296000px;}
._4b_c00156{margin-left:-18.144000px;}
._c_c00156{margin-left:-17.088000px;}
._38_c00156{margin-left:-15.936000px;}
._b_c00156{margin-left:-13.728000px;}
._26_c00156{margin-left:-12.480000px;}
._a_c00156{margin-left:-10.368000px;}
._27_c00156{margin-left:-8.736000px;}
._3a_c00156{margin-left:-7.200000px;}
._14_c00156{margin-left:-4.992000px;}
._15_c00156{margin-left:-3.072000px;}
._10_c00156{margin-left:-2.016000px;}
._1_c00156{width:1.632000px;}
._7_c00156{width:2.880000px;}
._0_c00156{width:4.128000px;}
._13_c00156{width:5.760000px;}
._1f_c00156{width:7.104000px;}
._e_c00156{width:8.256000px;}
._21_c00156{width:9.312000px;}
._48_c00156{width:10.368000px;}
._f_c00156{width:11.424000px;}
._33_c00156{width:12.768000px;}
._4_c00156{width:15.072000px;}
._3f_c00156{width:16.224000px;}
._25_c00156{width:17.664000px;}
._5_c00156{width:18.816000px;}
._18_c00156{width:19.968000px;}
._3c_c00156{width:21.120000px;}
._1e_c00156{width:25.824000px;}
._3d_c00156{width:27.840000px;}
._24_c00156{width:29.280000px;}
._16_c00156{width:30.336000px;}
._1a_c00156{width:32.256000px;}
._17_c00156{width:33.888000px;}
._44_c00156{width:34.944000px;}
._22_c00156{width:36.384000px;}
._11_c00156{width:38.400000px;}
._20_c00156{width:39.840000px;}
._45_c00156{width:40.896000px;}
._6_c00156{width:42.144000px;}
._46_c00156{width:43.200000px;}
._8_c00156{width:44.736000px;}
._1d_c00156{width:45.888000px;}
._47_c00156{width:47.424000px;}
._2_c00156{width:49.152000px;}
._23_c00156{width:50.784000px;}
._3_c00156{width:51.936000px;}
._1b_c00156{width:54.336000px;}
._2b_c00156{width:56.640000px;}
._1c_c00156{width:57.888000px;}
._3e_c00156{width:60.096000px;}
._39_c00156{width:68.640000px;}
._42_c00156{width:106.560000px;}
._32_c00156{width:111.936000px;}
._31_c00156{width:124.992000px;}
._49_c00156{width:141.879000px;}
._3b_c00156{width:169.920000px;}
._4e_c00156{width:179.460000px;}
._37_c00156{width:195.351000px;}
._43_c00156{width:211.680000px;}
._29_c00156{width:231.360000px;}
._40_c00156{width:244.800000px;}
._2d_c00156{width:311.616000px;}
._2e_c00156{width:324.096000px;}
._2f_c00156{width:336.576000px;}
._4d_c00156{width:424.992000px;}
._4c_c00156{width:447.552000px;}
._34_c00156{width:657.120000px;}
._4f_c00156{width:883.968000px;}
._28_c00156{width:980.064000px;}
._36_c00156{width:1063.227000px;}
._4a_c00156{width:1616.127000px;}
.fc2_c00156{color:transparent;}
.fc1_c00156{color:rgb(128,128,128);}
.fc0_c00156{color:rgb(0,0,0);}
.fs3_c00156{font-size:48.000000px;}
.fs2_c00156{font-size:84.000000px;}
.fs1_c00156{font-size:87.000000px;}
.fs0_c00156{font-size:96.000000px;}
.y0_c00156{bottom:0.000000px;}
.y23_c00156{bottom:3.105000px;}
.y22_c00156{bottom:7.228369px;}
.y21_c00156{bottom:70.170000px;}
.y20_c00156{bottom:105.570000px;}
.y1f_c00156{bottom:140.670000px;}
.y1e_c00156{bottom:174.120000px;}
.y1d_c00156{bottom:208.470000px;}
.y1c_c00156{bottom:277.470000px;}
.y1b_c00156{bottom:326.970000px;}
.y1a_c00156{bottom:345.270000px;}
.y19_c00156{bottom:379.320000px;}
.y18_c00156{bottom:413.370000px;}
.y17_c00156{bottom:446.520000px;}
.y16_c00156{bottom:479.820000px;}
.y15_c00156{bottom:513.570000px;}
.y14_c00156{bottom:547.320000px;}
.y13_c00156{bottom:581.070000px;}
.y12_c00156{bottom:613.620000px;}
.y11_c00156{bottom:645.870000px;}
.y10_c00156{bottom:713.520000px;}
.yf_c00156{bottom:781.320000px;}
.ye_c00156{bottom:814.320000px;}
.yd_c00156{bottom:847.470000px;}
.yc_c00156{bottom:899.070000px;}
.yb_c00156{bottom:914.970000px;}
.ya_c00156{bottom:949.770000px;}
.y9_c00156{bottom:981.720000px;}
.y8_c00156{bottom:1014.870000px;}
.y7_c00156{bottom:1048.620000px;}
.y6_c00156{bottom:1081.620000px;}
.y5_c00156{bottom:1115.070000px;}
.y4_c00156{bottom:1147.770000px;}
.y3_c00156{bottom:1181.220000px;}
.y2_c00156{bottom:1214.220000px;}
.y1_c00156{bottom:1247.670000px;}
.h5_c00156{height:13.200073px;}
.h6_c00156{height:43.804688px;}
.h4_c00156{height:101.825684px;}
.h3_c00156{height:110.151855px;}
.h2_c00156{height:121.546875px;}
.h0_c00156{height:1356.450000px;}
.h1_c00156{height:1356.750000px;}
.w2_c00156{width:104.875500px;}
.w0_c00156{width:860.775000px;}
.w1_c00156{width:861.000000px;}
.x0_c00156{left:0.000000px;}
.x8_c00156{left:37.500000px;}
.x9_c00156{left:38.550000px;}
.xc_c00156{left:39.600000px;}
.x2_c00156{left:41.250000px;}
.x3_c00156{left:42.900000px;}
.x1_c00156{left:44.550000px;}
.xf_c00156{left:46.200000px;}
.x7_c00156{left:47.700000px;}
.x6_c00156{left:76.350000px;}
.xb_c00156{left:90.450000px;}
.xe_c00156{left:94.800000px;}
.xd_c00156{left:131.250000px;}
.x5_c00156{left:170.400000px;}
.xa_c00156{left:188.700000px;}
.x4_c00156{left:201.150000px;}
.x10_c00156{left:319.650000px;}
.x11_c00156{left:382.201721px;}
@media print{
.v2_c00156{vertical-align:-73.066667pt;}
.v1_c00156{vertical-align:-27.733333pt;}
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ls1_c00156{letter-spacing:37.333333pt;}
.ws0_c00156{word-spacing:-17.994667pt;}
.ws1_c00156{word-spacing:0.000000pt;}
._2a_c00156{margin-left:-79.445333pt;}
._35_c00156{margin-left:-60.784000pt;}
._19_c00156{margin-left:-49.322667pt;}
._41_c00156{margin-left:-45.008000pt;}
._12_c00156{margin-left:-28.842667pt;}
._30_c00156{margin-left:-24.320000pt;}
._d_c00156{margin-left:-20.736000pt;}
._9_c00156{margin-left:-18.944000pt;}
._2c_c00156{margin-left:-17.152000pt;}
._4b_c00156{margin-left:-16.128000pt;}
._c_c00156{margin-left:-15.189333pt;}
._38_c00156{margin-left:-14.165333pt;}
._b_c00156{margin-left:-12.202667pt;}
._26_c00156{margin-left:-11.093333pt;}
._a_c00156{margin-left:-9.216000pt;}
._27_c00156{margin-left:-7.765333pt;}
._3a_c00156{margin-left:-6.400000pt;}
._14_c00156{margin-left:-4.437333pt;}
._15_c00156{margin-left:-2.730667pt;}
._10_c00156{margin-left:-1.792000pt;}
._1_c00156{width:1.450667pt;}
._7_c00156{width:2.560000pt;}
._0_c00156{width:3.669333pt;}
._13_c00156{width:5.120000pt;}
._1f_c00156{width:6.314667pt;}
._e_c00156{width:7.338667pt;}
._21_c00156{width:8.277333pt;}
._48_c00156{width:9.216000pt;}
._f_c00156{width:10.154667pt;}
._33_c00156{width:11.349333pt;}
._4_c00156{width:13.397333pt;}
._3f_c00156{width:14.421333pt;}
._25_c00156{width:15.701333pt;}
._5_c00156{width:16.725333pt;}
._18_c00156{width:17.749333pt;}
._3c_c00156{width:18.773333pt;}
._1e_c00156{width:22.954667pt;}
._3d_c00156{width:24.746667pt;}
._24_c00156{width:26.026667pt;}
._16_c00156{width:26.965333pt;}
._1a_c00156{width:28.672000pt;}
._17_c00156{width:30.122667pt;}
._44_c00156{width:31.061333pt;}
._22_c00156{width:32.341333pt;}
._11_c00156{width:34.133333pt;}
._20_c00156{width:35.413333pt;}
._45_c00156{width:36.352000pt;}
._6_c00156{width:37.461333pt;}
._46_c00156{width:38.400000pt;}
._8_c00156{width:39.765333pt;}
._1d_c00156{width:40.789333pt;}
._47_c00156{width:42.154667pt;}
._2_c00156{width:43.690667pt;}
._23_c00156{width:45.141333pt;}
._3_c00156{width:46.165333pt;}
._1b_c00156{width:48.298667pt;}
._2b_c00156{width:50.346667pt;}
._1c_c00156{width:51.456000pt;}
._3e_c00156{width:53.418667pt;}
._39_c00156{width:61.013333pt;}
._42_c00156{width:94.720000pt;}
._32_c00156{width:99.498667pt;}
._31_c00156{width:111.104000pt;}
._49_c00156{width:126.114667pt;}
._3b_c00156{width:151.040000pt;}
._4e_c00156{width:159.520000pt;}
._37_c00156{width:173.645333pt;}
._43_c00156{width:188.160000pt;}
._29_c00156{width:205.653333pt;}
._40_c00156{width:217.600000pt;}
._2d_c00156{width:276.992000pt;}
._2e_c00156{width:288.085333pt;}
._2f_c00156{width:299.178667pt;}
._4d_c00156{width:377.770667pt;}
._4c_c00156{width:397.824000pt;}
._34_c00156{width:584.106667pt;}
._4f_c00156{width:785.749333pt;}
._28_c00156{width:871.168000pt;}
._36_c00156{width:945.090667pt;}
._4a_c00156{width:1436.557333pt;}
.fs3_c00156{font-size:42.666667pt;}
.fs2_c00156{font-size:74.666667pt;}
.fs1_c00156{font-size:77.333333pt;}
.fs0_c00156{font-size:85.333333pt;}
.y0_c00156{bottom:0.000000pt;}
.y23_c00156{bottom:2.760000pt;}
.y22_c00156{bottom:6.425217pt;}
.y21_c00156{bottom:62.373333pt;}
.y20_c00156{bottom:93.840000pt;}
.y1f_c00156{bottom:125.040000pt;}
.y1e_c00156{bottom:154.773333pt;}
.y1d_c00156{bottom:185.306667pt;}
.y1c_c00156{bottom:246.640000pt;}
.y1b_c00156{bottom:290.640000pt;}
.y1a_c00156{bottom:306.906667pt;}
.y19_c00156{bottom:337.173333pt;}
.y18_c00156{bottom:367.440000pt;}
.y17_c00156{bottom:396.906667pt;}
.y16_c00156{bottom:426.506667pt;}
.y15_c00156{bottom:456.506667pt;}
.y14_c00156{bottom:486.506667pt;}
.y13_c00156{bottom:516.506667pt;}
.y12_c00156{bottom:545.440000pt;}
.y11_c00156{bottom:574.106667pt;}
.y10_c00156{bottom:634.240000pt;}
.yf_c00156{bottom:694.506667pt;}
.ye_c00156{bottom:723.840000pt;}
.yd_c00156{bottom:753.306667pt;}
.yc_c00156{bottom:799.173333pt;}
.yb_c00156{bottom:813.306667pt;}
.ya_c00156{bottom:844.240000pt;}
.y9_c00156{bottom:872.640000pt;}
.y8_c00156{bottom:902.106667pt;}
.y7_c00156{bottom:932.106667pt;}
.y6_c00156{bottom:961.440000pt;}
.y5_c00156{bottom:991.173333pt;}
.y4_c00156{bottom:1020.240000pt;}
.y3_c00156{bottom:1049.973333pt;}
.y2_c00156{bottom:1079.306667pt;}
.y1_c00156{bottom:1109.040000pt;}
.h5_c00156{height:11.733399pt;}
.h6_c00156{height:38.937500pt;}
.h4_c00156{height:90.511719pt;}
.h3_c00156{height:97.912760pt;}
.h2_c00156{height:108.041667pt;}
.h0_c00156{height:1205.733333pt;}
.h1_c00156{height:1206.000000pt;}
.w2_c00156{width:93.222667pt;}
.w0_c00156{width:765.133333pt;}
.w1_c00156{width:765.333333pt;}
.x0_c00156{left:0.000000pt;}
.x8_c00156{left:33.333333pt;}
.x9_c00156{left:34.266667pt;}
.xc_c00156{left:35.200000pt;}
.x2_c00156{left:36.666667pt;}
.x3_c00156{left:38.133333pt;}
.x1_c00156{left:39.600000pt;}
.xf_c00156{left:41.066667pt;}
.x7_c00156{left:42.400000pt;}
.x6_c00156{left:67.866667pt;}
.xb_c00156{left:80.400000pt;}
.xe_c00156{left:84.266667pt;}
.xd_c00156{left:116.666667pt;}
.x5_c00156{left:151.466667pt;}
.xa_c00156{left:167.733333pt;}
.x4_c00156{left:178.800000pt;}
.x10_c00156{left:284.133333pt;}
.x11_c00156{left:339.734863pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d6cff1e44f0e0926d278781.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_efec4c52988220cb0c9f84ec.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls1_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:10.920000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:-63.504000px;}
.ws1_c00157{word-spacing:0.000000px;}
._3b_c00157{margin-left:-31.140000px;}
._3c_c00157{margin-left:-29.472000px;}
._d_c00157{margin-left:-27.624000px;}
._37_c00157{margin-left:-25.308000px;}
._35_c00157{margin-left:-22.740000px;}
._3a_c00157{margin-left:-21.600000px;}
._38_c00157{margin-left:-20.220000px;}
._39_c00157{margin-left:-18.624000px;}
._34_c00157{margin-left:-16.812000px;}
._26_c00157{margin-left:-14.616000px;}
._27_c00157{margin-left:-12.960000px;}
._21_c00157{margin-left:-10.944000px;}
._2c_c00157{margin-left:-8.640000px;}
._2d_c00157{margin-left:-6.720000px;}
._f_c00157{margin-left:-4.608000px;}
._36_c00157{margin-left:-3.300000px;}
._5_c00157{margin-left:-2.208000px;}
._a_c00157{margin-left:-1.152000px;}
._6_c00157{width:1.824000px;}
._14_c00157{width:2.880000px;}
._3_c00157{width:3.936000px;}
._15_c00157{width:4.992000px;}
._2_c00157{width:6.048000px;}
._23_c00157{width:7.104000px;}
._1_c00157{width:8.124000px;}
._0_c00157{width:9.828000px;}
._18_c00157{width:11.520000px;}
._1e_c00157{width:13.344000px;}
._e_c00157{width:14.592000px;}
._4_c00157{width:15.876000px;}
._c_c00157{width:18.144000px;}
._9_c00157{width:19.584000px;}
._16_c00157{width:21.696000px;}
._1d_c00157{width:24.288000px;}
._10_c00157{width:26.016000px;}
._7_c00157{width:28.128000px;}
._13_c00157{width:29.472000px;}
._1f_c00157{width:30.684000px;}
._b_c00157{width:31.968000px;}
._12_c00157{width:33.120000px;}
._1b_c00157{width:34.272000px;}
._8_c00157{width:36.000000px;}
._1a_c00157{width:37.128000px;}
._1c_c00157{width:38.400000px;}
._17_c00157{width:39.744000px;}
._11_c00157{width:40.800000px;}
._19_c00157{width:43.584000px;}
._2a_c00157{width:44.928000px;}
._20_c00157{width:47.232000px;}
._22_c00157{width:49.416000px;}
._28_c00157{width:51.264000px;}
._24_c00157{width:54.528000px;}
._25_c00157{width:56.544000px;}
._29_c00157{width:58.752000px;}
._32_c00157{width:60.168000px;}
._33_c00157{width:67.488000px;}
._30_c00157{width:71.136000px;}
._31_c00157{width:74.016000px;}
._2e_c00157{width:108.600000px;}
._2f_c00157{width:175.260000px;}
._2b_c00157{width:181.536000px;}
._3d_c00157{width:891.072000px;}
._3e_c00157{width:994.572000px;}
.fc2_c00157{color:transparent;}
.fc1_c00157{color:rgb(128,128,128);}
.fc0_c00157{color:rgb(0,0,0);}
.fs2_c00157{font-size:48.000000px;}
.fs0_c00157{font-size:84.000000px;}
.fs1_c00157{font-size:96.000000px;}
.y0_c00157{bottom:0.000000px;}
.y24_c00157{bottom:3.105000px;}
.y23_c00157{bottom:7.228363px;}
.y22_c00157{bottom:79.650000px;}
.y21_c00157{bottom:113.400000px;}
.y20_c00157{bottom:148.800000px;}
.y1f_c00157{bottom:181.800000px;}
.y1e_c00157{bottom:217.350000px;}
.y1d_c00157{bottom:251.700000px;}
.y1c_c00157{bottom:285.750000px;}
.y1b_c00157{bottom:320.550000px;}
.y1a_c00157{bottom:354.000000px;}
.y19_c00157{bottom:388.350000px;}
.y18_c00157{bottom:422.250000px;}
.y17_c00157{bottom:456.600000px;}
.y16_c00157{bottom:490.350000px;}
.y15_c00157{bottom:524.400000px;}
.y14_c00157{bottom:558.150000px;}
.y13_c00157{bottom:592.200000px;}
.y12_c00157{bottom:625.050000px;}
.y11_c00157{bottom:658.800000px;}
.y10_c00157{bottom:692.550000px;}
.yf_c00157{bottom:761.100000px;}
.ye_c00157{bottom:825.450000px;}
.yd_c00157{bottom:861.900000px;}
.yc_c00157{bottom:896.250000px;}
.yb_c00157{bottom:929.100000px;}
.ya_c00157{bottom:961.950000px;}
.y9_c00157{bottom:995.550000px;}
.y8_c00157{bottom:1028.700000px;}
.y7_c00157{bottom:1062.000000px;}
.y6_c00157{bottom:1095.150000px;}
.y5_c00157{bottom:1128.300000px;}
.y4_c00157{bottom:1162.350000px;}
.y3_c00157{bottom:1195.200000px;}
.y2_c00157{bottom:1228.500000px;}
.y1_c00157{bottom:1261.200000px;}
.h3_c00157{height:13.200074px;}
.h4_c00157{height:43.804688px;}
.h2_c00157{height:121.546875px;}
.h1_c00157{height:1374.000000px;}
.h0_c00157{height:1374.300000px;}
.w2_c00157{width:104.875500px;}
.w1_c00157{width:857.250000px;}
.w0_c00157{width:857.550000px;}
.x0_c00157{left:0.000000px;}
.x2_c00157{left:271.350000px;}
.x1_c00157{left:273.600000px;}
.x3_c00157{left:275.100000px;}
.x6_c00157{left:276.150000px;}
.x7_c00157{left:294.600000px;}
.x5_c00157{left:325.800000px;}
.x8_c00157{left:380.589249px;}
.x4_c00157{left:423.000000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls1_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:9.706667pt;}
.ws0_c00157{word-spacing:-56.448000pt;}
.ws1_c00157{word-spacing:0.000000pt;}
._3b_c00157{margin-left:-27.680000pt;}
._3c_c00157{margin-left:-26.197333pt;}
._d_c00157{margin-left:-24.554667pt;}
._37_c00157{margin-left:-22.496000pt;}
._35_c00157{margin-left:-20.213333pt;}
._3a_c00157{margin-left:-19.200000pt;}
._38_c00157{margin-left:-17.973333pt;}
._39_c00157{margin-left:-16.554667pt;}
._34_c00157{margin-left:-14.944000pt;}
._26_c00157{margin-left:-12.992000pt;}
._27_c00157{margin-left:-11.520000pt;}
._21_c00157{margin-left:-9.728000pt;}
._2c_c00157{margin-left:-7.680000pt;}
._2d_c00157{margin-left:-5.973333pt;}
._f_c00157{margin-left:-4.096000pt;}
._36_c00157{margin-left:-2.933333pt;}
._5_c00157{margin-left:-1.962667pt;}
._a_c00157{margin-left:-1.024000pt;}
._6_c00157{width:1.621333pt;}
._14_c00157{width:2.560000pt;}
._3_c00157{width:3.498667pt;}
._15_c00157{width:4.437333pt;}
._2_c00157{width:5.376000pt;}
._23_c00157{width:6.314667pt;}
._1_c00157{width:7.221333pt;}
._0_c00157{width:8.736000pt;}
._18_c00157{width:10.240000pt;}
._1e_c00157{width:11.861333pt;}
._e_c00157{width:12.970667pt;}
._4_c00157{width:14.112000pt;}
._c_c00157{width:16.128000pt;}
._9_c00157{width:17.408000pt;}
._16_c00157{width:19.285333pt;}
._1d_c00157{width:21.589333pt;}
._10_c00157{width:23.125333pt;}
._7_c00157{width:25.002667pt;}
._13_c00157{width:26.197333pt;}
._1f_c00157{width:27.274667pt;}
._b_c00157{width:28.416000pt;}
._12_c00157{width:29.440000pt;}
._1b_c00157{width:30.464000pt;}
._8_c00157{width:32.000000pt;}
._1a_c00157{width:33.002667pt;}
._1c_c00157{width:34.133333pt;}
._17_c00157{width:35.328000pt;}
._11_c00157{width:36.266667pt;}
._19_c00157{width:38.741333pt;}
._2a_c00157{width:39.936000pt;}
._20_c00157{width:41.984000pt;}
._22_c00157{width:43.925333pt;}
._28_c00157{width:45.568000pt;}
._24_c00157{width:48.469333pt;}
._25_c00157{width:50.261333pt;}
._29_c00157{width:52.224000pt;}
._32_c00157{width:53.482667pt;}
._33_c00157{width:59.989333pt;}
._30_c00157{width:63.232000pt;}
._31_c00157{width:65.792000pt;}
._2e_c00157{width:96.533333pt;}
._2f_c00157{width:155.786667pt;}
._2b_c00157{width:161.365333pt;}
._3d_c00157{width:792.064000pt;}
._3e_c00157{width:884.064000pt;}
.fs2_c00157{font-size:42.666667pt;}
.fs0_c00157{font-size:74.666667pt;}
.fs1_c00157{font-size:85.333333pt;}
.y0_c00157{bottom:0.000000pt;}
.y24_c00157{bottom:2.760000pt;}
.y23_c00157{bottom:6.425212pt;}
.y22_c00157{bottom:70.800000pt;}
.y21_c00157{bottom:100.800000pt;}
.y20_c00157{bottom:132.266667pt;}
.y1f_c00157{bottom:161.600000pt;}
.y1e_c00157{bottom:193.200000pt;}
.y1d_c00157{bottom:223.733333pt;}
.y1c_c00157{bottom:254.000000pt;}
.y1b_c00157{bottom:284.933333pt;}
.y1a_c00157{bottom:314.666667pt;}
.y19_c00157{bottom:345.200000pt;}
.y18_c00157{bottom:375.333333pt;}
.y17_c00157{bottom:405.866667pt;}
.y16_c00157{bottom:435.866667pt;}
.y15_c00157{bottom:466.133333pt;}
.y14_c00157{bottom:496.133333pt;}
.y13_c00157{bottom:526.400000pt;}
.y12_c00157{bottom:555.600000pt;}
.y11_c00157{bottom:585.600000pt;}
.y10_c00157{bottom:615.600000pt;}
.yf_c00157{bottom:676.533333pt;}
.ye_c00157{bottom:733.733333pt;}
.yd_c00157{bottom:766.133333pt;}
.yc_c00157{bottom:796.666667pt;}
.yb_c00157{bottom:825.866667pt;}
.ya_c00157{bottom:855.066667pt;}
.y9_c00157{bottom:884.933333pt;}
.y8_c00157{bottom:914.400000pt;}
.y7_c00157{bottom:944.000000pt;}
.y6_c00157{bottom:973.466667pt;}
.y5_c00157{bottom:1002.933333pt;}
.y4_c00157{bottom:1033.200000pt;}
.y3_c00157{bottom:1062.400000pt;}
.y2_c00157{bottom:1092.000000pt;}
.y1_c00157{bottom:1121.066667pt;}
.h3_c00157{height:11.733399pt;}
.h4_c00157{height:38.937500pt;}
.h2_c00157{height:108.041667pt;}
.h1_c00157{height:1221.333333pt;}
.h0_c00157{height:1221.600000pt;}
.w2_c00157{width:93.222667pt;}
.w1_c00157{width:762.000000pt;}
.w0_c00157{width:762.266667pt;}
.x0_c00157{left:0.000000pt;}
.x2_c00157{left:241.200000pt;}
.x1_c00157{left:243.200000pt;}
.x3_c00157{left:244.533333pt;}
.x6_c00157{left:245.466667pt;}
.x7_c00157{left:261.866667pt;}
.x5_c00157{left:289.600000pt;}
.x8_c00157{left:338.301554pt;}
.x4_c00157{left:376.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_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_db510783733d7b6bdc2aabef.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_a46b335c50b33aeecf3f5807.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;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_c00158;src:url('chunks/assets/font_3ade36c6dcf080bdd043eb8c.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_d2a07634297022fd4e77dfa7.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;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_c00158;src:url('chunks/assets/font_d3e34d1f3409bf46f18f3832.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00158;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00158{font-family:ff7_c00158;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls4_c00158{letter-spacing:-3.000000px;}
.ls3_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:2.052000px;}
.ls1_c00158{letter-spacing:10.056000px;}
.ls2_c00158{letter-spacing:14.292000px;}
.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;}
}
.ws3_c00158{word-spacing:-52.044000px;}
.ws1_c00158{word-spacing:-51.000000px;}
.ws0_c00158{word-spacing:-20.244000px;}
.ws4_c00158{word-spacing:0.000000px;}
.ws2_c00158{word-spacing:12.432000px;}
._3e_c00158{margin-left:-24.984000px;}
._1f_c00158{margin-left:-19.008000px;}
._46_c00158{margin-left:-16.476000px;}
._31_c00158{margin-left:-15.246000px;}
._20_c00158{margin-left:-13.920000px;}
._3a_c00158{margin-left:-12.768000px;}
._23_c00158{margin-left:-11.412000px;}
._3b_c00158{margin-left:-10.296000px;}
._38_c00158{margin-left:-8.928000px;}
._14_c00158{margin-left:-7.680000px;}
._28_c00158{margin-left:-5.568000px;}
._1b_c00158{margin-left:-3.552000px;}
._c_c00158{margin-left:-2.208000px;}
._1c_c00158{margin-left:-1.152000px;}
._8_c00158{width:1.824000px;}
._1_c00158{width:2.880000px;}
._0_c00158{width:4.032000px;}
._2_c00158{width:5.088000px;}
._3_c00158{width:6.432000px;}
._21_c00158{width:7.584000px;}
._d_c00158{width:8.640000px;}
._5_c00158{width:10.080000px;}
._10_c00158{width:11.136000px;}
._b_c00158{width:13.056000px;}
._3c_c00158{width:14.400000px;}
._e_c00158{width:15.456000px;}
._3f_c00158{width:16.800000px;}
._18_c00158{width:17.856000px;}
._1a_c00158{width:19.488000px;}
._2e_c00158{width:20.832000px;}
._40_c00158{width:21.888000px;}
._27_c00158{width:24.480000px;}
._2a_c00158{width:26.400000px;}
._a_c00158{width:27.648000px;}
._24_c00158{width:29.376000px;}
._4_c00158{width:31.104000px;}
._19_c00158{width:32.832000px;}
._17_c00158{width:34.560000px;}
._11_c00158{width:35.808000px;}
._3d_c00158{width:36.864000px;}
._2c_c00158{width:38.688000px;}
._47_c00158{width:39.840000px;}
._6_c00158{width:41.280000px;}
._7_c00158{width:43.296000px;}
._9_c00158{width:44.928000px;}
._f_c00158{width:47.712000px;}
._1e_c00158{width:49.728000px;}
._32_c00158{width:51.492000px;}
._25_c00158{width:53.568000px;}
._1d_c00158{width:55.680000px;}
._35_c00158{width:56.832000px;}
._42_c00158{width:57.888000px;}
._26_c00158{width:60.288000px;}
._41_c00158{width:62.976000px;}
._2f_c00158{width:64.368000px;}
._29_c00158{width:66.528000px;}
._22_c00158{width:71.328000px;}
._45_c00158{width:78.336000px;}
._44_c00158{width:81.600000px;}
._2b_c00158{width:87.936000px;}
._37_c00158{width:94.074000px;}
._15_c00158{width:101.088000px;}
._33_c00158{width:103.296000px;}
._36_c00158{width:114.240000px;}
._12_c00158{width:139.968000px;}
._30_c00158{width:141.888000px;}
._13_c00158{width:172.800000px;}
._16_c00158{width:177.312000px;}
._43_c00158{width:261.924000px;}
._2d_c00158{width:361.152000px;}
._34_c00158{width:558.240000px;}
._39_c00158{width:965.088000px;}
._48_c00158{width:1788.960000px;}
.fc2_c00158{color:transparent;}
.fc1_c00158{color:rgb(128,128,128);}
.fc0_c00158{color:rgb(0,0,0);}
.fs1_c00158{font-size:36.000000px;}
.fs7_c00158{font-size:48.000000px;}
.fs2_c00158{font-size:84.000000px;}
.fs0_c00158{font-size:96.000000px;}
.fs6_c00158{font-size:99.000000px;}
.fs4_c00158{font-size:102.000000px;}
.fs3_c00158{font-size:144.000000px;}
.fs5_c00158{font-size:192.000000px;}
.y0_c00158{bottom:0.000000px;}
.y24_c00158{bottom:3.105000px;}
.y23_c00158{bottom:7.228369px;}
.y22_c00158{bottom:91.170000px;}
.y21_c00158{bottom:122.220000px;}
.y20_c00158{bottom:156.870000px;}
.y1f_c00158{bottom:191.370000px;}
.y1e_c00158{bottom:224.370000px;}
.y1d_c00158{bottom:258.420000px;}
.y1c_c00158{bottom:292.170000px;}
.y1b_c00158{bottom:326.070000px;}
.y1a_c00158{bottom:359.820000px;}
.y19_c00158{bottom:393.570000px;}
.y18_c00158{bottom:427.170000px;}
.y17_c00158{bottom:460.920000px;}
.y16_c00158{bottom:494.070000px;}
.y15_c00158{bottom:528.120000px;}
.y14_c00158{bottom:562.170000px;}
.y13_c00158{bottom:594.270000px;}
.y12_c00158{bottom:627.720000px;}
.y11_c00158{bottom:661.770000px;}
.y10_c00158{bottom:697.920000px;}
.yf_c00158{bottom:729.570000px;}
.ye_c00158{bottom:786.720000px;}
.yd_c00158{bottom:834.270000px;}
.yc_c00158{bottom:865.620000px;}
.yb_c00158{bottom:897.720000px;}
.ya_c00158{bottom:930.870000px;}
.y9_c00158{bottom:964.170000px;}
.y8_c00158{bottom:997.620000px;}
.y7_c00158{bottom:1030.770000px;}
.y6_c00158{bottom:1064.520000px;}
.y5_c00158{bottom:1108.020000px;}
.y4_c00158{bottom:1131.570000px;}
.y3_c00158{bottom:1196.370000px;}
.y2_c00158{bottom:1230.870000px;}
.y1_c00158{bottom:1264.320000px;}
.h7_c00158{height:13.200073px;}
.h3_c00158{height:35.332031px;}
.h8_c00158{height:43.804688px;}
.h2_c00158{height:121.546875px;}
.h6_c00158{height:129.143555px;}
.h4_c00158{height:182.320312px;}
.h5_c00158{height:243.093750px;}
.h0_c00158{height:1383.450000px;}
.h1_c00158{height:1383.750000px;}
.w2_c00158{width:104.875500px;}
.w0_c00158{width:878.025000px;}
.w1_c00158{width:878.250000px;}
.x0_c00158{left:0.000000px;}
.x5_c00158{left:60.750000px;}
.xa_c00158{left:61.800000px;}
.x1_c00158{left:63.000000px;}
.x8_c00158{left:64.050000px;}
.xb_c00158{left:65.100000px;}
.xc_c00158{left:66.150000px;}
.x7_c00158{left:67.800000px;}
.x4_c00158{left:112.050000px;}
.xd_c00158{left:140.700000px;}
.x2_c00158{left:201.600000px;}
.x9_c00158{left:241.650000px;}
.xe_c00158{left:390.826721px;}
.x6_c00158{left:430.200000px;}
.x3_c00158{left:490.950000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls4_c00158{letter-spacing:-2.666667pt;}
.ls3_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:1.824000pt;}
.ls1_c00158{letter-spacing:8.938667pt;}
.ls2_c00158{letter-spacing:12.704000pt;}
.ws3_c00158{word-spacing:-46.261333pt;}
.ws1_c00158{word-spacing:-45.333333pt;}
.ws0_c00158{word-spacing:-17.994667pt;}
.ws4_c00158{word-spacing:0.000000pt;}
.ws2_c00158{word-spacing:11.050667pt;}
._3e_c00158{margin-left:-22.208000pt;}
._1f_c00158{margin-left:-16.896000pt;}
._46_c00158{margin-left:-14.645333pt;}
._31_c00158{margin-left:-13.552000pt;}
._20_c00158{margin-left:-12.373333pt;}
._3a_c00158{margin-left:-11.349333pt;}
._23_c00158{margin-left:-10.144000pt;}
._3b_c00158{margin-left:-9.152000pt;}
._38_c00158{margin-left:-7.936000pt;}
._14_c00158{margin-left:-6.826667pt;}
._28_c00158{margin-left:-4.949333pt;}
._1b_c00158{margin-left:-3.157333pt;}
._c_c00158{margin-left:-1.962667pt;}
._1c_c00158{margin-left:-1.024000pt;}
._8_c00158{width:1.621333pt;}
._1_c00158{width:2.560000pt;}
._0_c00158{width:3.584000pt;}
._2_c00158{width:4.522667pt;}
._3_c00158{width:5.717333pt;}
._21_c00158{width:6.741333pt;}
._d_c00158{width:7.680000pt;}
._5_c00158{width:8.960000pt;}
._10_c00158{width:9.898667pt;}
._b_c00158{width:11.605333pt;}
._3c_c00158{width:12.800000pt;}
._e_c00158{width:13.738667pt;}
._3f_c00158{width:14.933333pt;}
._18_c00158{width:15.872000pt;}
._1a_c00158{width:17.322667pt;}
._2e_c00158{width:18.517333pt;}
._40_c00158{width:19.456000pt;}
._27_c00158{width:21.760000pt;}
._2a_c00158{width:23.466667pt;}
._a_c00158{width:24.576000pt;}
._24_c00158{width:26.112000pt;}
._4_c00158{width:27.648000pt;}
._19_c00158{width:29.184000pt;}
._17_c00158{width:30.720000pt;}
._11_c00158{width:31.829333pt;}
._3d_c00158{width:32.768000pt;}
._2c_c00158{width:34.389333pt;}
._47_c00158{width:35.413333pt;}
._6_c00158{width:36.693333pt;}
._7_c00158{width:38.485333pt;}
._9_c00158{width:39.936000pt;}
._f_c00158{width:42.410667pt;}
._1e_c00158{width:44.202667pt;}
._32_c00158{width:45.770667pt;}
._25_c00158{width:47.616000pt;}
._1d_c00158{width:49.493333pt;}
._35_c00158{width:50.517333pt;}
._42_c00158{width:51.456000pt;}
._26_c00158{width:53.589333pt;}
._41_c00158{width:55.978667pt;}
._2f_c00158{width:57.216000pt;}
._29_c00158{width:59.136000pt;}
._22_c00158{width:63.402667pt;}
._45_c00158{width:69.632000pt;}
._44_c00158{width:72.533333pt;}
._2b_c00158{width:78.165333pt;}
._37_c00158{width:83.621333pt;}
._15_c00158{width:89.856000pt;}
._33_c00158{width:91.818667pt;}
._36_c00158{width:101.546667pt;}
._12_c00158{width:124.416000pt;}
._30_c00158{width:126.122667pt;}
._13_c00158{width:153.600000pt;}
._16_c00158{width:157.610667pt;}
._43_c00158{width:232.821333pt;}
._2d_c00158{width:321.024000pt;}
._34_c00158{width:496.213333pt;}
._39_c00158{width:857.856000pt;}
._48_c00158{width:1590.186667pt;}
.fs1_c00158{font-size:32.000000pt;}
.fs7_c00158{font-size:42.666667pt;}
.fs2_c00158{font-size:74.666667pt;}
.fs0_c00158{font-size:85.333333pt;}
.fs6_c00158{font-size:88.000000pt;}
.fs4_c00158{font-size:90.666667pt;}
.fs3_c00158{font-size:128.000000pt;}
.fs5_c00158{font-size:170.666667pt;}
.y0_c00158{bottom:0.000000pt;}
.y24_c00158{bottom:2.760000pt;}
.y23_c00158{bottom:6.425217pt;}
.y22_c00158{bottom:81.040000pt;}
.y21_c00158{bottom:108.640000pt;}
.y20_c00158{bottom:139.440000pt;}
.y1f_c00158{bottom:170.106667pt;}
.y1e_c00158{bottom:199.440000pt;}
.y1d_c00158{bottom:229.706667pt;}
.y1c_c00158{bottom:259.706667pt;}
.y1b_c00158{bottom:289.840000pt;}
.y1a_c00158{bottom:319.840000pt;}
.y19_c00158{bottom:349.840000pt;}
.y18_c00158{bottom:379.706667pt;}
.y17_c00158{bottom:409.706667pt;}
.y16_c00158{bottom:439.173333pt;}
.y15_c00158{bottom:469.440000pt;}
.y14_c00158{bottom:499.706667pt;}
.y13_c00158{bottom:528.240000pt;}
.y12_c00158{bottom:557.973333pt;}
.y11_c00158{bottom:588.240000pt;}
.y10_c00158{bottom:620.373333pt;}
.yf_c00158{bottom:648.506667pt;}
.ye_c00158{bottom:699.306667pt;}
.yd_c00158{bottom:741.573333pt;}
.yc_c00158{bottom:769.440000pt;}
.yb_c00158{bottom:797.973333pt;}
.ya_c00158{bottom:827.440000pt;}
.y9_c00158{bottom:857.040000pt;}
.y8_c00158{bottom:886.773333pt;}
.y7_c00158{bottom:916.240000pt;}
.y6_c00158{bottom:946.240000pt;}
.y5_c00158{bottom:984.906667pt;}
.y4_c00158{bottom:1005.840000pt;}
.y3_c00158{bottom:1063.440000pt;}
.y2_c00158{bottom:1094.106667pt;}
.y1_c00158{bottom:1123.840000pt;}
.h7_c00158{height:11.733399pt;}
.h3_c00158{height:31.406250pt;}
.h8_c00158{height:38.937500pt;}
.h2_c00158{height:108.041667pt;}
.h6_c00158{height:114.794271pt;}
.h4_c00158{height:162.062500pt;}
.h5_c00158{height:216.083333pt;}
.h0_c00158{height:1229.733333pt;}
.h1_c00158{height:1230.000000pt;}
.w2_c00158{width:93.222667pt;}
.w0_c00158{width:780.466667pt;}
.w1_c00158{width:780.666667pt;}
.x0_c00158{left:0.000000pt;}
.x5_c00158{left:54.000000pt;}
.xa_c00158{left:54.933333pt;}
.x1_c00158{left:56.000000pt;}
.x8_c00158{left:56.933333pt;}
.xb_c00158{left:57.866667pt;}
.xc_c00158{left:58.800000pt;}
.x7_c00158{left:60.266667pt;}
.x4_c00158{left:99.600000pt;}
.xd_c00158{left:125.066667pt;}
.x2_c00158{left:179.200000pt;}
.x9_c00158{left:214.800000pt;}
.xe_c00158{left:347.401530pt;}
.x6_c00158{left:382.400000pt;}
.x3_c00158{left:436.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b3a9b2e6dbb08e6ae01b5ab.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_141d3b478c65d95ad842c3a0.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_5545453e3a67851b6257be85.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_ea16887d1bd2aaec3595f9e0.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00159;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:-51.000000px;}
.ws1_c00159{word-spacing:-40.488000px;}
.ws4_c00159{word-spacing:-23.136000px;}
.ws2_c00159{word-spacing:-14.460000px;}
.ws3_c00159{word-spacing:-10.224000px;}
.ws5_c00159{word-spacing:0.000000px;}
._34_c00159{margin-left:-64.512000px;}
._15_c00159{margin-left:-32.928000px;}
._17_c00159{margin-left:-30.336000px;}
._37_c00159{margin-left:-28.704000px;}
._38_c00159{margin-left:-23.520000px;}
._41_c00159{margin-left:-20.499000px;}
._33_c00159{margin-left:-17.568000px;}
._30_c00159{margin-left:-16.440000px;}
._3a_c00159{margin-left:-14.925000px;}
._36_c00159{margin-left:-13.920000px;}
._4_c00159{margin-left:-12.768000px;}
._3e_c00159{margin-left:-10.752000px;}
._1e_c00159{margin-left:-8.928000px;}
._20_c00159{margin-left:-7.104000px;}
._e_c00159{margin-left:-5.760000px;}
._1f_c00159{margin-left:-4.128000px;}
._1a_c00159{margin-left:-2.976000px;}
._0_c00159{margin-left:-1.728000px;}
._2_c00159{width:2.016000px;}
._3_c00159{width:3.168000px;}
._6_c00159{width:4.800000px;}
._31_c00159{width:5.805000px;}
._8_c00159{width:6.816000px;}
._13_c00159{width:8.544000px;}
._2d_c00159{width:9.600000px;}
._b_c00159{width:10.944000px;}
._5_c00159{width:12.480000px;}
._d_c00159{width:13.728000px;}
._19_c00159{width:14.784000px;}
._14_c00159{width:15.936000px;}
._23_c00159{width:17.664000px;}
._c_c00159{width:19.392000px;}
._21_c00159{width:21.024000px;}
._3c_c00159{width:22.086000px;}
._10_c00159{width:24.768000px;}
._1_c00159{width:27.168000px;}
._22_c00159{width:29.280000px;}
._3d_c00159{width:30.534000px;}
._24_c00159{width:31.680000px;}
._f_c00159{width:32.832000px;}
._18_c00159{width:33.888000px;}
._a_c00159{width:35.136000px;}
._1b_c00159{width:36.576000px;}
._7_c00159{width:38.304000px;}
._1d_c00159{width:39.840000px;}
._11_c00159{width:41.664000px;}
._12_c00159{width:44.160000px;}
._3f_c00159{width:45.195000px;}
._27_c00159{width:47.520000px;}
._3b_c00159{width:48.864000px;}
._32_c00159{width:51.456000px;}
._1c_c00159{width:52.512000px;}
._26_c00159{width:55.488000px;}
._9_c00159{width:56.544000px;}
._2f_c00159{width:57.888000px;}
._40_c00159{width:65.526000px;}
._28_c00159{width:68.832000px;}
._16_c00159{width:71.616000px;}
._29_c00159{width:72.864000px;}
._25_c00159{width:79.968000px;}
._35_c00159{width:99.456000px;}
._2e_c00159{width:170.784000px;}
._2a_c00159{width:175.008000px;}
._2b_c00159{width:209.184000px;}
._39_c00159{width:233.472000px;}
._2c_c00159{width:275.520000px;}
.fc2_c00159{color:transparent;}
.fc1_c00159{color:rgb(128,128,128);}
.fc0_c00159{color:rgb(0,0,0);}
.fs4_c00159{font-size:27.000000px;}
.fs5_c00159{font-size:30.000000px;}
.fs7_c00159{font-size:36.000000px;}
.fs8_c00159{font-size:48.000000px;}
.fs6_c00159{font-size:60.000000px;}
.fs3_c00159{font-size:84.000000px;}
.fs0_c00159{font-size:96.000000px;}
.fs1_c00159{font-size:102.000000px;}
.fs2_c00159{font-size:105.000000px;}
.y0_c00159{bottom:0.000000px;}
.y1e_c00159{bottom:3.105000px;}
.y1d_c00159{bottom:7.228357px;}
.y1c_c00159{bottom:78.030000px;}
.y19_c00159{bottom:267.030000px;}
.y1b_c00159{bottom:285.480000px;}
.y1a_c00159{bottom:289.530000px;}
.y18_c00159{bottom:491.730000px;}
.y17_c00159{bottom:526.830000px;}
.y16_c00159{bottom:560.580000px;}
.y15_c00159{bottom:593.730000px;}
.y14_c00159{bottom:627.480000px;}
.y13_c00159{bottom:660.780000px;}
.y12_c00159{bottom:695.280000px;}
.y11_c00159{bottom:728.280000px;}
.y10_c00159{bottom:761.730000px;}
.yf_c00159{bottom:795.480000px;}
.ye_c00159{bottom:829.230000px;}
.yd_c00159{bottom:862.380000px;}
.yc_c00159{bottom:896.430000px;}
.yb_c00159{bottom:929.430000px;}
.ya_c00159{bottom:962.580000px;}
.y9_c00159{bottom:996.330000px;}
.y8_c00159{bottom:1029.030000px;}
.y7_c00159{bottom:1062.180000px;}
.y6_c00159{bottom:1095.630000px;}
.y5_c00159{bottom:1128.930000px;}
.y4_c00159{bottom:1162.080000px;}
.y3_c00159{bottom:1194.480000px;}
.y2_c00159{bottom:1227.780000px;}
.y1_c00159{bottom:1260.930000px;}
.h6_c00159{height:13.200074px;}
.h4_c00159{height:23.258496px;}
.h7_c00159{height:43.804688px;}
.h5_c00159{height:75.966797px;}
.h2_c00159{height:121.546875px;}
.h3_c00159{height:132.941895px;}
.h0_c00159{height:1382.700000px;}
.h1_c00159{height:1383.000000px;}
.w2_c00159{width:104.875500px;}
.w0_c00159{width:863.175000px;}
.w1_c00159{width:863.250000px;}
.x0_c00159{left:0.000000px;}
.x5_c00159{left:165.000000px;}
.x6_c00159{left:167.100000px;}
.x4_c00159{left:171.900000px;}
.x2_c00159{left:263.700000px;}
.x1_c00159{left:264.900000px;}
.x3_c00159{left:265.950000px;}
.x7_c00159{left:350.100000px;}
.x8_c00159{left:379.350000px;}
.xa_c00159{left:383.401749px;}
.x9_c00159{left:741.150000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws0_c00159{word-spacing:-45.333333pt;}
.ws1_c00159{word-spacing:-35.989333pt;}
.ws4_c00159{word-spacing:-20.565333pt;}
.ws2_c00159{word-spacing:-12.853333pt;}
.ws3_c00159{word-spacing:-9.088000pt;}
.ws5_c00159{word-spacing:0.000000pt;}
._34_c00159{margin-left:-57.344000pt;}
._15_c00159{margin-left:-29.269333pt;}
._17_c00159{margin-left:-26.965333pt;}
._37_c00159{margin-left:-25.514667pt;}
._38_c00159{margin-left:-20.906667pt;}
._41_c00159{margin-left:-18.221333pt;}
._33_c00159{margin-left:-15.616000pt;}
._30_c00159{margin-left:-14.613333pt;}
._3a_c00159{margin-left:-13.266667pt;}
._36_c00159{margin-left:-12.373333pt;}
._4_c00159{margin-left:-11.349333pt;}
._3e_c00159{margin-left:-9.557333pt;}
._1e_c00159{margin-left:-7.936000pt;}
._20_c00159{margin-left:-6.314667pt;}
._e_c00159{margin-left:-5.120000pt;}
._1f_c00159{margin-left:-3.669333pt;}
._1a_c00159{margin-left:-2.645333pt;}
._0_c00159{margin-left:-1.536000pt;}
._2_c00159{width:1.792000pt;}
._3_c00159{width:2.816000pt;}
._6_c00159{width:4.266667pt;}
._31_c00159{width:5.160000pt;}
._8_c00159{width:6.058667pt;}
._13_c00159{width:7.594667pt;}
._2d_c00159{width:8.533333pt;}
._b_c00159{width:9.728000pt;}
._5_c00159{width:11.093333pt;}
._d_c00159{width:12.202667pt;}
._19_c00159{width:13.141333pt;}
._14_c00159{width:14.165333pt;}
._23_c00159{width:15.701333pt;}
._c_c00159{width:17.237333pt;}
._21_c00159{width:18.688000pt;}
._3c_c00159{width:19.632000pt;}
._10_c00159{width:22.016000pt;}
._1_c00159{width:24.149333pt;}
._22_c00159{width:26.026667pt;}
._3d_c00159{width:27.141333pt;}
._24_c00159{width:28.160000pt;}
._f_c00159{width:29.184000pt;}
._18_c00159{width:30.122667pt;}
._a_c00159{width:31.232000pt;}
._1b_c00159{width:32.512000pt;}
._7_c00159{width:34.048000pt;}
._1d_c00159{width:35.413333pt;}
._11_c00159{width:37.034667pt;}
._12_c00159{width:39.253333pt;}
._3f_c00159{width:40.173333pt;}
._27_c00159{width:42.240000pt;}
._3b_c00159{width:43.434667pt;}
._32_c00159{width:45.738667pt;}
._1c_c00159{width:46.677333pt;}
._26_c00159{width:49.322667pt;}
._9_c00159{width:50.261333pt;}
._2f_c00159{width:51.456000pt;}
._40_c00159{width:58.245333pt;}
._28_c00159{width:61.184000pt;}
._16_c00159{width:63.658667pt;}
._29_c00159{width:64.768000pt;}
._25_c00159{width:71.082667pt;}
._35_c00159{width:88.405333pt;}
._2e_c00159{width:151.808000pt;}
._2a_c00159{width:155.562667pt;}
._2b_c00159{width:185.941333pt;}
._39_c00159{width:207.530667pt;}
._2c_c00159{width:244.906667pt;}
.fs4_c00159{font-size:24.000000pt;}
.fs5_c00159{font-size:26.666667pt;}
.fs7_c00159{font-size:32.000000pt;}
.fs8_c00159{font-size:42.666667pt;}
.fs6_c00159{font-size:53.333333pt;}
.fs3_c00159{font-size:74.666667pt;}
.fs0_c00159{font-size:85.333333pt;}
.fs1_c00159{font-size:90.666667pt;}
.fs2_c00159{font-size:93.333333pt;}
.y0_c00159{bottom:0.000000pt;}
.y1e_c00159{bottom:2.760000pt;}
.y1d_c00159{bottom:6.425206pt;}
.y1c_c00159{bottom:69.360000pt;}
.y19_c00159{bottom:237.360000pt;}
.y1b_c00159{bottom:253.760000pt;}
.y1a_c00159{bottom:257.360000pt;}
.y18_c00159{bottom:437.093333pt;}
.y17_c00159{bottom:468.293333pt;}
.y16_c00159{bottom:498.293333pt;}
.y15_c00159{bottom:527.760000pt;}
.y14_c00159{bottom:557.760000pt;}
.y13_c00159{bottom:587.360000pt;}
.y12_c00159{bottom:618.026667pt;}
.y11_c00159{bottom:647.360000pt;}
.y10_c00159{bottom:677.093333pt;}
.yf_c00159{bottom:707.093333pt;}
.ye_c00159{bottom:737.093333pt;}
.yd_c00159{bottom:766.560000pt;}
.yc_c00159{bottom:796.826667pt;}
.yb_c00159{bottom:826.160000pt;}
.ya_c00159{bottom:855.626667pt;}
.y9_c00159{bottom:885.626667pt;}
.y8_c00159{bottom:914.693333pt;}
.y7_c00159{bottom:944.160000pt;}
.y6_c00159{bottom:973.893333pt;}
.y5_c00159{bottom:1003.493333pt;}
.y4_c00159{bottom:1032.960000pt;}
.y3_c00159{bottom:1061.760000pt;}
.y2_c00159{bottom:1091.360000pt;}
.y1_c00159{bottom:1120.826667pt;}
.h6_c00159{height:11.733399pt;}
.h4_c00159{height:20.674219pt;}
.h7_c00159{height:38.937500pt;}
.h5_c00159{height:67.526042pt;}
.h2_c00159{height:108.041667pt;}
.h3_c00159{height:118.170573pt;}
.h0_c00159{height:1229.066667pt;}
.h1_c00159{height:1229.333333pt;}
.w2_c00159{width:93.222667pt;}
.w0_c00159{width:767.266667pt;}
.w1_c00159{width:767.333333pt;}
.x0_c00159{left:0.000000pt;}
.x5_c00159{left:146.666667pt;}
.x6_c00159{left:148.533333pt;}
.x4_c00159{left:152.800000pt;}
.x2_c00159{left:234.400000pt;}
.x1_c00159{left:235.466667pt;}
.x3_c00159{left:236.400000pt;}
.x7_c00159{left:311.200000pt;}
.x8_c00159{left:337.200000pt;}
.xa_c00159{left:340.801554pt;}
.x9_c00159{left:658.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_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_fd04c1036dacf8635bd987de.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_31f2c49d765bc3b01078d642.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_5f1022bbbe349770864efb26.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_8117c9c89d9632d09e808aac.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_3562b96590d61040ed07684c.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_2282614c2280ec78e2ccf1ae.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00160;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00160{font-family:ff7_c00160;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.v1_c00160{vertical-align:73.200000px;}
.ls4_c00160{letter-spacing:0.000000px;}
.ls3_c00160{letter-spacing:6.000000px;}
.ls2_c00160{letter-spacing:6.192000px;}
.ls0_c00160{letter-spacing:6.264000px;}
.ls1_c00160{letter-spacing:139.464000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00160{word-spacing:-23.136000px;}
.ws4_c00160{word-spacing:-20.244000px;}
.ws2_c00160{word-spacing:-18.508800px;}
.ws5_c00160{word-spacing:-10.224000px;}
.ws6_c00160{word-spacing:0.000000px;}
.ws3_c00160{word-spacing:0.756000px;}
.ws1_c00160{word-spacing:9.792000px;}
._3e_c00160{margin-left:-37.671000px;}
._31_c00160{margin-left:-32.640000px;}
._44_c00160{margin-left:-27.144000px;}
._43_c00160{margin-left:-25.056000px;}
._2f_c00160{margin-left:-23.904000px;}
._45_c00160{margin-left:-19.038000px;}
._2a_c00160{margin-left:-17.292000px;}
._2b_c00160{margin-left:-15.936000px;}
._3f_c00160{margin-left:-14.388000px;}
._1c_c00160{margin-left:-12.000000px;}
._27_c00160{margin-left:-10.464000px;}
._28_c00160{margin-left:-8.928000px;}
._32_c00160{margin-left:-7.603200px;}
._36_c00160{margin-left:-6.592800px;}
._18_c00160{margin-left:-5.568000px;}
._14_c00160{margin-left:-4.128000px;}
._15_c00160{margin-left:-3.072000px;}
._20_c00160{margin-left:-1.620000px;}
._23_c00160{width:1.056000px;}
._e_c00160{width:2.208000px;}
._f_c00160{width:3.744000px;}
._d_c00160{width:4.896000px;}
._1e_c00160{width:6.000000px;}
._12_c00160{width:7.824000px;}
._8_c00160{width:9.072000px;}
._3_c00160{width:10.080000px;}
._26_c00160{width:11.088000px;}
._11_c00160{width:12.336000px;}
._13_c00160{width:14.064000px;}
._b_c00160{width:15.120000px;}
._5_c00160{width:16.416000px;}
._2_c00160{width:17.712000px;}
._4_c00160{width:19.440000px;}
._0_c00160{width:20.928000px;}
._9_c00160{width:21.984000px;}
._1_c00160{width:24.048000px;}
._35_c00160{width:25.104000px;}
._25_c00160{width:26.304000px;}
._a_c00160{width:27.552000px;}
._1b_c00160{width:29.472000px;}
._7_c00160{width:31.104000px;}
._17_c00160{width:32.112000px;}
._3a_c00160{width:33.588000px;}
._1f_c00160{width:34.824000px;}
._22_c00160{width:36.576000px;}
._37_c00160{width:38.532000px;}
._24_c00160{width:39.576000px;}
._19_c00160{width:40.992000px;}
._29_c00160{width:43.776000px;}
._34_c00160{width:45.312000px;}
._2c_c00160{width:47.952000px;}
._21_c00160{width:49.980000px;}
._2d_c00160{width:51.600000px;}
._6_c00160{width:54.576000px;}
._1a_c00160{width:56.064000px;}
._c_c00160{width:57.264000px;}
._3b_c00160{width:65.184000px;}
._39_c00160{width:66.432000px;}
._38_c00160{width:69.504000px;}
._10_c00160{width:75.744000px;}
._16_c00160{width:79.392000px;}
._41_c00160{width:82.305000px;}
._40_c00160{width:90.127200px;}
._30_c00160{width:157.152000px;}
._33_c00160{width:167.424000px;}
._2e_c00160{width:276.672000px;}
._42_c00160{width:402.750000px;}
._1d_c00160{width:489.264000px;}
._3d_c00160{width:560.952000px;}
._3c_c00160{width:1361.892000px;}
.fc2_c00160{color:transparent;}
.fc1_c00160{color:rgb(128,128,128);}
.fc0_c00160{color:rgb(0,0,0);}
.fs2_c00160{font-size:36.000000px;}
.fs7_c00160{font-size:45.000000px;}
.fs8_c00160{font-size:48.000000px;}
.fs4_c00160{font-size:76.800000px;}
.fs5_c00160{font-size:78.000000px;}
.fs3_c00160{font-size:84.000000px;}
.fs6_c00160{font-size:87.000000px;}
.fs0_c00160{font-size:96.000000px;}
.fs1_c00160{font-size:144.000000px;}
.y0_c00160{bottom:0.000000px;}
.y29_c00160{bottom:3.105000px;}
.y28_c00160{bottom:7.228357px;}
.y27_c00160{bottom:52.380000px;}
.y24_c00160{bottom:54.030000px;}
.y26_c00160{bottom:95.130000px;}
.y25_c00160{bottom:108.630000px;}
.y23_c00160{bottom:197.430000px;}
.y22_c00160{bottom:212.730000px;}
.y21_c00160{bottom:246.030000px;}
.y1e_c00160{bottom:261.180000px;}
.y20_c00160{bottom:268.980000px;}
.y1f_c00160{bottom:333.180000px;}
.y1d_c00160{bottom:337.530000px;}
.y1c_c00160{bottom:384.780000px;}
.y1b_c00160{bottom:413.880000px;}
.y1a_c00160{bottom:438.480000px;}
.y19_c00160{bottom:461.430000px;}
.y18_c00160{bottom:496.230000px;}
.y17_c00160{bottom:529.530000px;}
.y16_c00160{bottom:562.980000px;}
.y15_c00160{bottom:596.130000px;}
.y14_c00160{bottom:629.130000px;}
.y13_c00160{bottom:663.180000px;}
.y12_c00160{bottom:696.330000px;}
.y11_c00160{bottom:730.080000px;}
.y10_c00160{bottom:763.080000px;}
.yf_c00160{bottom:796.230000px;}
.ye_c00160{bottom:829.530000px;}
.yd_c00160{bottom:862.680000px;}
.yc_c00160{bottom:895.680000px;}
.yb_c00160{bottom:929.430000px;}
.ya_c00160{bottom:962.880000px;}
.y9_c00160{bottom:996.330000px;}
.y8_c00160{bottom:1029.330000px;}
.y7_c00160{bottom:1062.780000px;}
.y6_c00160{bottom:1095.930000px;}
.y3_c00160{bottom:1127.880000px;}
.y5_c00160{bottom:1131.630000px;}
.y4_c00160{bottom:1161.030000px;}
.y2_c00160{bottom:1200.930000px;}
.y1_c00160{bottom:1263.030000px;}
.h9_c00160{height:13.200074px;}
.ha_c00160{height:43.804688px;}
.h3_c00160{height:45.580078px;}
.h8_c00160{height:76.552734px;}
.h5_c00160{height:91.291992px;}
.h4_c00160{height:98.756836px;}
.h6_c00160{height:110.151855px;}
.h1_c00160{height:121.546875px;}
.h2_c00160{height:182.320312px;}
.h7_c00160{height:183.351855px;}
.h0_c00160{height:1346.250000px;}
.w1_c00160{width:104.875500px;}
.w0_c00160{width:854.250000px;}
.x0_c00160{left:0.000000px;}
.xb_c00160{left:26.100000px;}
.xa_c00160{left:27.750000px;}
.x9_c00160{left:28.800000px;}
.xd_c00160{left:30.000000px;}
.x8_c00160{left:31.500000px;}
.x2_c00160{left:57.750000px;}
.xc_c00160{left:78.600000px;}
.x3_c00160{left:81.300000px;}
.xe_c00160{left:95.700000px;}
.x7_c00160{left:134.250000px;}
.xf_c00160{left:135.600000px;}
.x5_c00160{left:183.900000px;}
.x13_c00160{left:268.050000px;}
.x6_c00160{left:280.050000px;}
.x19_c00160{left:313.950000px;}
.x4_c00160{left:336.900000px;}
.x1c_c00160{left:378.939240px;}
.x16_c00160{left:426.000000px;}
.x12_c00160{left:441.150000px;}
.x18_c00160{left:503.550000px;}
.x1b_c00160{left:507.900000px;}
.x15_c00160{left:513.750000px;}
.x1_c00160{left:523.500000px;}
.x14_c00160{left:551.100000px;}
.x17_c00160{left:553.950000px;}
.x1a_c00160{left:558.900000px;}
.x10_c00160{left:612.600000px;}
.x11_c00160{left:613.650000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.v1_c00160{vertical-align:65.066667pt;}
.ls4_c00160{letter-spacing:0.000000pt;}
.ls3_c00160{letter-spacing:5.333333pt;}
.ls2_c00160{letter-spacing:5.504000pt;}
.ls0_c00160{letter-spacing:5.568000pt;}
.ls1_c00160{letter-spacing:123.968000pt;}
.ws0_c00160{word-spacing:-20.565333pt;}
.ws4_c00160{word-spacing:-17.994667pt;}
.ws2_c00160{word-spacing:-16.452267pt;}
.ws5_c00160{word-spacing:-9.088000pt;}
.ws6_c00160{word-spacing:0.000000pt;}
.ws3_c00160{word-spacing:0.672000pt;}
.ws1_c00160{word-spacing:8.704000pt;}
._3e_c00160{margin-left:-33.485333pt;}
._31_c00160{margin-left:-29.013333pt;}
._44_c00160{margin-left:-24.128000pt;}
._43_c00160{margin-left:-22.272000pt;}
._2f_c00160{margin-left:-21.248000pt;}
._45_c00160{margin-left:-16.922667pt;}
._2a_c00160{margin-left:-15.370667pt;}
._2b_c00160{margin-left:-14.165333pt;}
._3f_c00160{margin-left:-12.789333pt;}
._1c_c00160{margin-left:-10.666667pt;}
._27_c00160{margin-left:-9.301333pt;}
._28_c00160{margin-left:-7.936000pt;}
._32_c00160{margin-left:-6.758400pt;}
._36_c00160{margin-left:-5.860267pt;}
._18_c00160{margin-left:-4.949333pt;}
._14_c00160{margin-left:-3.669333pt;}
._15_c00160{margin-left:-2.730667pt;}
._20_c00160{margin-left:-1.440000pt;}
._23_c00160{width:0.938667pt;}
._e_c00160{width:1.962667pt;}
._f_c00160{width:3.328000pt;}
._d_c00160{width:4.352000pt;}
._1e_c00160{width:5.333333pt;}
._12_c00160{width:6.954667pt;}
._8_c00160{width:8.064000pt;}
._3_c00160{width:8.960000pt;}
._26_c00160{width:9.856000pt;}
._11_c00160{width:10.965333pt;}
._13_c00160{width:12.501333pt;}
._b_c00160{width:13.440000pt;}
._5_c00160{width:14.592000pt;}
._2_c00160{width:15.744000pt;}
._4_c00160{width:17.280000pt;}
._0_c00160{width:18.602667pt;}
._9_c00160{width:19.541333pt;}
._1_c00160{width:21.376000pt;}
._35_c00160{width:22.314667pt;}
._25_c00160{width:23.381333pt;}
._a_c00160{width:24.490667pt;}
._1b_c00160{width:26.197333pt;}
._7_c00160{width:27.648000pt;}
._17_c00160{width:28.544000pt;}
._3a_c00160{width:29.856000pt;}
._1f_c00160{width:30.954667pt;}
._22_c00160{width:32.512000pt;}
._37_c00160{width:34.250667pt;}
._24_c00160{width:35.178667pt;}
._19_c00160{width:36.437333pt;}
._29_c00160{width:38.912000pt;}
._34_c00160{width:40.277333pt;}
._2c_c00160{width:42.624000pt;}
._21_c00160{width:44.426667pt;}
._2d_c00160{width:45.866667pt;}
._6_c00160{width:48.512000pt;}
._1a_c00160{width:49.834667pt;}
._c_c00160{width:50.901333pt;}
._3b_c00160{width:57.941333pt;}
._39_c00160{width:59.050667pt;}
._38_c00160{width:61.781333pt;}
._10_c00160{width:67.328000pt;}
._16_c00160{width:70.570667pt;}
._41_c00160{width:73.160000pt;}
._40_c00160{width:80.113067pt;}
._30_c00160{width:139.690667pt;}
._33_c00160{width:148.821333pt;}
._2e_c00160{width:245.930667pt;}
._42_c00160{width:358.000000pt;}
._1d_c00160{width:434.901333pt;}
._3d_c00160{width:498.624000pt;}
._3c_c00160{width:1210.570667pt;}
.fs2_c00160{font-size:32.000000pt;}
.fs7_c00160{font-size:40.000000pt;}
.fs8_c00160{font-size:42.666667pt;}
.fs4_c00160{font-size:68.266667pt;}
.fs5_c00160{font-size:69.333333pt;}
.fs3_c00160{font-size:74.666667pt;}
.fs6_c00160{font-size:77.333333pt;}
.fs0_c00160{font-size:85.333333pt;}
.fs1_c00160{font-size:128.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y29_c00160{bottom:2.760000pt;}
.y28_c00160{bottom:6.425206pt;}
.y27_c00160{bottom:46.560000pt;}
.y24_c00160{bottom:48.026667pt;}
.y26_c00160{bottom:84.560000pt;}
.y25_c00160{bottom:96.560000pt;}
.y23_c00160{bottom:175.493333pt;}
.y22_c00160{bottom:189.093333pt;}
.y21_c00160{bottom:218.693333pt;}
.y1e_c00160{bottom:232.160000pt;}
.y20_c00160{bottom:239.093333pt;}
.y1f_c00160{bottom:296.160000pt;}
.y1d_c00160{bottom:300.026667pt;}
.y1c_c00160{bottom:342.026667pt;}
.y1b_c00160{bottom:367.893333pt;}
.y1a_c00160{bottom:389.760000pt;}
.y19_c00160{bottom:410.160000pt;}
.y18_c00160{bottom:441.093333pt;}
.y17_c00160{bottom:470.693333pt;}
.y16_c00160{bottom:500.426667pt;}
.y15_c00160{bottom:529.893333pt;}
.y14_c00160{bottom:559.226667pt;}
.y13_c00160{bottom:589.493333pt;}
.y12_c00160{bottom:618.960000pt;}
.y11_c00160{bottom:648.960000pt;}
.y10_c00160{bottom:678.293333pt;}
.yf_c00160{bottom:707.760000pt;}
.ye_c00160{bottom:737.360000pt;}
.yd_c00160{bottom:766.826667pt;}
.yc_c00160{bottom:796.160000pt;}
.yb_c00160{bottom:826.160000pt;}
.ya_c00160{bottom:855.893333pt;}
.y9_c00160{bottom:885.626667pt;}
.y8_c00160{bottom:914.960000pt;}
.y7_c00160{bottom:944.693333pt;}
.y6_c00160{bottom:974.160000pt;}
.y3_c00160{bottom:1002.560000pt;}
.y5_c00160{bottom:1005.893333pt;}
.y4_c00160{bottom:1032.026667pt;}
.y2_c00160{bottom:1067.493333pt;}
.y1_c00160{bottom:1122.693333pt;}
.h9_c00160{height:11.733399pt;}
.ha_c00160{height:38.937500pt;}
.h3_c00160{height:40.515625pt;}
.h8_c00160{height:68.046875pt;}
.h5_c00160{height:81.148438pt;}
.h4_c00160{height:87.783854pt;}
.h6_c00160{height:97.912760pt;}
.h1_c00160{height:108.041667pt;}
.h2_c00160{height:162.062500pt;}
.h7_c00160{height:162.979427pt;}
.h0_c00160{height:1196.666667pt;}
.w1_c00160{width:93.222667pt;}
.w0_c00160{width:759.333333pt;}
.x0_c00160{left:0.000000pt;}
.xb_c00160{left:23.200000pt;}
.xa_c00160{left:24.666667pt;}
.x9_c00160{left:25.600000pt;}
.xd_c00160{left:26.666667pt;}
.x8_c00160{left:28.000000pt;}
.x2_c00160{left:51.333333pt;}
.xc_c00160{left:69.866667pt;}
.x3_c00160{left:72.266667pt;}
.xe_c00160{left:85.066667pt;}
.x7_c00160{left:119.333333pt;}
.xf_c00160{left:120.533333pt;}
.x5_c00160{left:163.466667pt;}
.x13_c00160{left:238.266667pt;}
.x6_c00160{left:248.933333pt;}
.x19_c00160{left:279.066667pt;}
.x4_c00160{left:299.466667pt;}
.x1c_c00160{left:336.834880pt;}
.x16_c00160{left:378.666667pt;}
.x12_c00160{left:392.133333pt;}
.x18_c00160{left:447.600000pt;}
.x1b_c00160{left:451.466667pt;}
.x15_c00160{left:456.666667pt;}
.x1_c00160{left:465.333333pt;}
.x14_c00160{left:489.866667pt;}
.x17_c00160{left:492.400000pt;}
.x1a_c00160{left:496.800000pt;}
.x10_c00160{left:544.533333pt;}
.x11_c00160{left:545.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_525fdb6912be41c308109b43.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_05748c35877bf25f20cb9cf7.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_712ea975b731b7bfed62c3d7.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls2_c00161{letter-spacing:-6.000000px;}
.ls1_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:15.000000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00161{word-spacing:-51.000000px;}
.ws0_c00161{word-spacing:-34.704000px;}
.ws1_c00161{word-spacing:-23.136000px;}
.ws7_c00161{word-spacing:-20.244000px;}
.ws3_c00161{word-spacing:-14.967000px;}
.ws5_c00161{word-spacing:-0.336000px;}
.ws8_c00161{word-spacing:0.000000px;}
.ws4_c00161{word-spacing:0.420000px;}
.ws6_c00161{word-spacing:0.756000px;}
._38_c00161{margin-left:-83.301000px;}
._2b_c00161{margin-left:-32.256000px;}
._44_c00161{margin-left:-28.959000px;}
._3d_c00161{margin-left:-27.762000px;}
._e_c00161{margin-left:-21.750000px;}
._b_c00161{margin-left:-20.376000px;}
._c_c00161{margin-left:-18.528000px;}
._1b_c00161{margin-left:-17.484000px;}
._45_c00161{margin-left:-14.361000px;}
._3f_c00161{margin-left:-13.185000px;}
._d_c00161{margin-left:-11.640000px;}
._19_c00161{margin-left:-9.696000px;}
._36_c00161{margin-left:-7.776000px;}
._7_c00161{margin-left:-6.624000px;}
._8_c00161{margin-left:-4.752000px;}
._9_c00161{margin-left:-3.600000px;}
._2a_c00161{margin-left:-2.496000px;}
._a_c00161{margin-left:-1.440000px;}
._15_c00161{width:1.632000px;}
._18_c00161{width:3.147000px;}
._12_c00161{width:4.512000px;}
._23_c00161{width:5.544000px;}
._f_c00161{width:6.699000px;}
._13_c00161{width:8.565000px;}
._10_c00161{width:9.984000px;}
._2_c00161{width:11.376000px;}
._22_c00161{width:12.576000px;}
._42_c00161{width:13.596000px;}
._21_c00161{width:15.285000px;}
._6_c00161{width:16.560000px;}
._39_c00161{width:18.366000px;}
._0_c00161{width:19.440000px;}
._49_c00161{width:21.393000px;}
._1_c00161{width:22.464000px;}
._3_c00161{width:23.760000px;}
._4_c00161{width:24.912000px;}
._35_c00161{width:26.361000px;}
._40_c00161{width:27.384000px;}
._27_c00161{width:29.562000px;}
._34_c00161{width:30.864000px;}
._11_c00161{width:32.064000px;}
._2c_c00161{width:34.464000px;}
._1a_c00161{width:36.192000px;}
._1c_c00161{width:37.365000px;}
._2e_c00161{width:38.559000px;}
._2f_c00161{width:41.070000px;}
._3e_c00161{width:42.294000px;}
._2d_c00161{width:43.443000px;}
._17_c00161{width:44.640000px;}
._28_c00161{width:46.677000px;}
._30_c00161{width:47.760000px;}
._29_c00161{width:49.245000px;}
._26_c00161{width:50.856000px;}
._3c_c00161{width:51.957000px;}
._37_c00161{width:53.274000px;}
._24_c00161{width:54.570000px;}
._25_c00161{width:55.626000px;}
._48_c00161{width:56.664000px;}
._16_c00161{width:57.888000px;}
._31_c00161{width:60.450000px;}
._47_c00161{width:61.728000px;}
._1e_c00161{width:64.266000px;}
._14_c00161{width:65.727000px;}
._1d_c00161{width:69.264000px;}
._20_c00161{width:71.244000px;}
._32_c00161{width:73.617000px;}
._3b_c00161{width:75.906000px;}
._46_c00161{width:79.620000px;}
._3a_c00161{width:86.208000px;}
._41_c00161{width:129.261000px;}
._5_c00161{width:157.536000px;}
._33_c00161{width:274.677000px;}
._43_c00161{width:353.952000px;}
._1f_c00161{width:605.373000px;}
.fc2_c00161{color:transparent;}
.fc1_c00161{color:rgb(128,128,128);}
.fc0_c00161{color:rgb(0,0,0);}
.fs6_c00161{font-size:36.000000px;}
.fs7_c00161{font-size:48.000000px;}
.fs1_c00161{font-size:84.000000px;}
.fs4_c00161{font-size:87.000000px;}
.fs5_c00161{font-size:93.000000px;}
.fs2_c00161{font-size:96.000000px;}
.fs3_c00161{font-size:102.000000px;}
.fs0_c00161{font-size:144.000000px;}
.y0_c00161{bottom:0.000000px;}
.y28_c00161{bottom:3.105000px;}
.y27_c00161{bottom:7.228369px;}
.y25_c00161{bottom:103.920000px;}
.y24_c00161{bottom:137.970000px;}
.y23_c00161{bottom:172.170000px;}
.y22_c00161{bottom:205.920000px;}
.y21_c00161{bottom:239.970000px;}
.y20_c00161{bottom:274.020000px;}
.y1f_c00161{bottom:308.520000px;}
.y1e_c00161{bottom:342.270000px;}
.y1d_c00161{bottom:376.020000px;}
.y1c_c00161{bottom:409.770000px;}
.y6_c00161{bottom:423.270000px;}
.y26_c00161{bottom:425.520000px;}
.y1b_c00161{bottom:443.820000px;}
.y5_c00161{bottom:454.170000px;}
.y1a_c00161{bottom:477.570000px;}
.y19_c00161{bottom:511.620000px;}
.y18_c00161{bottom:544.620000px;}
.y17_c00161{bottom:578.370000px;}
.y16_c00161{bottom:612.870000px;}
.y15_c00161{bottom:644.670000px;}
.y14_c00161{bottom:679.620000px;}
.y13_c00161{bottom:713.520000px;}
.y12_c00161{bottom:747.870000px;}
.y11_c00161{bottom:780.870000px;}
.y10_c00161{bottom:814.320000px;}
.yf_c00161{bottom:848.070000px;}
.ye_c00161{bottom:882.120000px;}
.yd_c00161{bottom:915.270000px;}
.yc_c00161{bottom:947.970000px;}
.yb_c00161{bottom:981.120000px;}
.ya_c00161{bottom:1014.870000px;}
.y9_c00161{bottom:1047.270000px;}
.y4_c00161{bottom:1077.270000px;}
.y8_c00161{bottom:1081.620000px;}
.y7_c00161{bottom:1115.370000px;}
.y3_c00161{bottom:1152.870000px;}
.y2_c00161{bottom:1187.370000px;}
.y1_c00161{bottom:1237.920000px;}
.h7_c00161{height:13.200073px;}
.h8_c00161{height:43.804688px;}
.h6_c00161{height:45.580078px;}
.h3_c00161{height:98.314453px;}
.h5_c00161{height:110.151855px;}
.h4_c00161{height:121.546875px;}
.h2_c00161{height:182.320312px;}
.h0_c00161{height:1369.950000px;}
.h1_c00161{height:1370.250000px;}
.w2_c00161{width:104.875500px;}
.w0_c00161{width:854.850000px;}
.w1_c00161{width:855.000000px;}
.x0_c00161{left:0.000000px;}
.x5_c00161{left:68.850000px;}
.x6_c00161{left:81.450000px;}
.xd_c00161{left:124.500000px;}
.xf_c00161{left:156.900000px;}
.x3_c00161{left:239.400000px;}
.xc_c00161{left:271.950000px;}
.xa_c00161{left:273.450000px;}
.xb_c00161{left:274.500000px;}
.xe_c00161{left:275.700000px;}
.x4_c00161{left:278.550000px;}
.x9_c00161{left:311.850000px;}
.x1_c00161{left:335.400000px;}
.x10_c00161{left:379.239258px;}
.x2_c00161{left:468.150000px;}
.x7_c00161{left:479.250000px;}
.x8_c00161{left:491.700000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls2_c00161{letter-spacing:-5.333333pt;}
.ls1_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:13.333333pt;}
.ws2_c00161{word-spacing:-45.333333pt;}
.ws0_c00161{word-spacing:-30.848000pt;}
.ws1_c00161{word-spacing:-20.565333pt;}
.ws7_c00161{word-spacing:-17.994667pt;}
.ws3_c00161{word-spacing:-13.304000pt;}
.ws5_c00161{word-spacing:-0.298667pt;}
.ws8_c00161{word-spacing:0.000000pt;}
.ws4_c00161{word-spacing:0.373333pt;}
.ws6_c00161{word-spacing:0.672000pt;}
._38_c00161{margin-left:-74.045333pt;}
._2b_c00161{margin-left:-28.672000pt;}
._44_c00161{margin-left:-25.741333pt;}
._3d_c00161{margin-left:-24.677333pt;}
._e_c00161{margin-left:-19.333333pt;}
._b_c00161{margin-left:-18.112000pt;}
._c_c00161{margin-left:-16.469333pt;}
._1b_c00161{margin-left:-15.541333pt;}
._45_c00161{margin-left:-12.765333pt;}
._3f_c00161{margin-left:-11.720000pt;}
._d_c00161{margin-left:-10.346667pt;}
._19_c00161{margin-left:-8.618667pt;}
._36_c00161{margin-left:-6.912000pt;}
._7_c00161{margin-left:-5.888000pt;}
._8_c00161{margin-left:-4.224000pt;}
._9_c00161{margin-left:-3.200000pt;}
._2a_c00161{margin-left:-2.218667pt;}
._a_c00161{margin-left:-1.280000pt;}
._15_c00161{width:1.450667pt;}
._18_c00161{width:2.797333pt;}
._12_c00161{width:4.010667pt;}
._23_c00161{width:4.928000pt;}
._f_c00161{width:5.954667pt;}
._13_c00161{width:7.613333pt;}
._10_c00161{width:8.874667pt;}
._2_c00161{width:10.112000pt;}
._22_c00161{width:11.178667pt;}
._42_c00161{width:12.085333pt;}
._21_c00161{width:13.586667pt;}
._6_c00161{width:14.720000pt;}
._39_c00161{width:16.325333pt;}
._0_c00161{width:17.280000pt;}
._49_c00161{width:19.016000pt;}
._1_c00161{width:19.968000pt;}
._3_c00161{width:21.120000pt;}
._4_c00161{width:22.144000pt;}
._35_c00161{width:23.432000pt;}
._40_c00161{width:24.341333pt;}
._27_c00161{width:26.277333pt;}
._34_c00161{width:27.434667pt;}
._11_c00161{width:28.501333pt;}
._2c_c00161{width:30.634667pt;}
._1a_c00161{width:32.170667pt;}
._1c_c00161{width:33.213333pt;}
._2e_c00161{width:34.274667pt;}
._2f_c00161{width:36.506667pt;}
._3e_c00161{width:37.594667pt;}
._2d_c00161{width:38.616000pt;}
._17_c00161{width:39.680000pt;}
._28_c00161{width:41.490667pt;}
._30_c00161{width:42.453333pt;}
._29_c00161{width:43.773333pt;}
._26_c00161{width:45.205333pt;}
._3c_c00161{width:46.184000pt;}
._37_c00161{width:47.354667pt;}
._24_c00161{width:48.506667pt;}
._25_c00161{width:49.445333pt;}
._48_c00161{width:50.368000pt;}
._16_c00161{width:51.456000pt;}
._31_c00161{width:53.733333pt;}
._47_c00161{width:54.869333pt;}
._1e_c00161{width:57.125333pt;}
._14_c00161{width:58.424000pt;}
._1d_c00161{width:61.568000pt;}
._20_c00161{width:63.328000pt;}
._32_c00161{width:65.437333pt;}
._3b_c00161{width:67.472000pt;}
._46_c00161{width:70.773333pt;}
._3a_c00161{width:76.629333pt;}
._41_c00161{width:114.898667pt;}
._5_c00161{width:140.032000pt;}
._33_c00161{width:244.157333pt;}
._43_c00161{width:314.624000pt;}
._1f_c00161{width:538.109333pt;}
.fs6_c00161{font-size:32.000000pt;}
.fs7_c00161{font-size:42.666667pt;}
.fs1_c00161{font-size:74.666667pt;}
.fs4_c00161{font-size:77.333333pt;}
.fs5_c00161{font-size:82.666667pt;}
.fs2_c00161{font-size:85.333333pt;}
.fs3_c00161{font-size:90.666667pt;}
.fs0_c00161{font-size:128.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y28_c00161{bottom:2.760000pt;}
.y27_c00161{bottom:6.425217pt;}
.y25_c00161{bottom:92.373333pt;}
.y24_c00161{bottom:122.640000pt;}
.y23_c00161{bottom:153.040000pt;}
.y22_c00161{bottom:183.040000pt;}
.y21_c00161{bottom:213.306667pt;}
.y20_c00161{bottom:243.573333pt;}
.y1f_c00161{bottom:274.240000pt;}
.y1e_c00161{bottom:304.240000pt;}
.y1d_c00161{bottom:334.240000pt;}
.y1c_c00161{bottom:364.240000pt;}
.y6_c00161{bottom:376.240000pt;}
.y26_c00161{bottom:378.240000pt;}
.y1b_c00161{bottom:394.506667pt;}
.y5_c00161{bottom:403.706667pt;}
.y1a_c00161{bottom:424.506667pt;}
.y19_c00161{bottom:454.773333pt;}
.y18_c00161{bottom:484.106667pt;}
.y17_c00161{bottom:514.106667pt;}
.y16_c00161{bottom:544.773333pt;}
.y15_c00161{bottom:573.040000pt;}
.y14_c00161{bottom:604.106667pt;}
.y13_c00161{bottom:634.240000pt;}
.y12_c00161{bottom:664.773333pt;}
.y11_c00161{bottom:694.106667pt;}
.y10_c00161{bottom:723.840000pt;}
.yf_c00161{bottom:753.840000pt;}
.ye_c00161{bottom:784.106667pt;}
.yd_c00161{bottom:813.573333pt;}
.yc_c00161{bottom:842.640000pt;}
.yb_c00161{bottom:872.106667pt;}
.ya_c00161{bottom:902.106667pt;}
.y9_c00161{bottom:930.906667pt;}
.y4_c00161{bottom:957.573333pt;}
.y8_c00161{bottom:961.440000pt;}
.y7_c00161{bottom:991.440000pt;}
.y3_c00161{bottom:1024.773333pt;}
.y2_c00161{bottom:1055.440000pt;}
.y1_c00161{bottom:1100.373333pt;}
.h7_c00161{height:11.733399pt;}
.h8_c00161{height:38.937500pt;}
.h6_c00161{height:40.515625pt;}
.h3_c00161{height:87.390625pt;}
.h5_c00161{height:97.912760pt;}
.h4_c00161{height:108.041667pt;}
.h2_c00161{height:162.062500pt;}
.h0_c00161{height:1217.733333pt;}
.h1_c00161{height:1218.000000pt;}
.w2_c00161{width:93.222667pt;}
.w0_c00161{width:759.866667pt;}
.w1_c00161{width:760.000000pt;}
.x0_c00161{left:0.000000pt;}
.x5_c00161{left:61.200000pt;}
.x6_c00161{left:72.400000pt;}
.xd_c00161{left:110.666667pt;}
.xf_c00161{left:139.466667pt;}
.x3_c00161{left:212.800000pt;}
.xc_c00161{left:241.733333pt;}
.xa_c00161{left:243.066667pt;}
.xb_c00161{left:244.000000pt;}
.xe_c00161{left:245.066667pt;}
.x4_c00161{left:247.600000pt;}
.x9_c00161{left:277.200000pt;}
.x1_c00161{left:298.133333pt;}
.x10_c00161{left:337.101563pt;}
.x2_c00161{left:416.133333pt;}
.x7_c00161{left:426.000000pt;}
.x8_c00161{left:437.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33f1ba6ce4d8473ab99fba07.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_7138f2ec33c583f6b2173475.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_b92cce61b764faa3b01d01b0.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_69d85fed3b641acd591fbdeb.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls6_c00162{letter-spacing:-12.000000px;}
.ls7_c00162{letter-spacing:-6.000000px;}
.ls3_c00162{letter-spacing:0.000000px;}
.ls4_c00162{letter-spacing:6.000000px;}
.ls0_c00162{letter-spacing:8.700000px;}
.ls5_c00162{letter-spacing:12.000000px;}
.ls1_c00162{letter-spacing:36.987000px;}
.ls2_c00162{letter-spacing:50.187000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00162{word-spacing:-50.040000px;}
.ws1_c00162{word-spacing:-46.044000px;}
.ws3_c00162{word-spacing:-34.413000px;}
.ws5_c00162{word-spacing:-29.738400px;}
.ws4_c00162{word-spacing:-29.250000px;}
.ws7_c00162{word-spacing:-23.136000px;}
.ws0_c00162{word-spacing:-22.413000px;}
.ws8_c00162{word-spacing:0.000000px;}
.ws6_c00162{word-spacing:12.837000px;}
._49_c00162{margin-left:-85.467000px;}
._37_c00162{margin-left:-46.644000px;}
._17_c00162{margin-left:-37.665000px;}
._55_c00162{margin-left:-34.128000px;}
._9_c00162{margin-left:-30.675000px;}
._3f_c00162{margin-left:-28.551000px;}
._1d_c00162{margin-left:-25.284000px;}
._35_c00162{margin-left:-21.957000px;}
._36_c00162{margin-left:-19.962000px;}
._32_c00162{margin-left:-17.712000px;}
._8_c00162{margin-left:-15.906000px;}
._53_c00162{margin-left:-14.616000px;}
._3b_c00162{margin-left:-12.171000px;}
._2b_c00162{margin-left:-10.236000px;}
._1b_c00162{margin-left:-9.114000px;}
._2e_c00162{margin-left:-7.812000px;}
._2d_c00162{margin-left:-6.789000px;}
._10_c00162{margin-left:-4.743000px;}
._b_c00162{margin-left:-3.720000px;}
._c_c00162{margin-left:-2.604000px;}
._a_c00162{margin-left:-1.488000px;}
._2_c00162{width:1.581000px;}
._3_c00162{width:2.697000px;}
._1_c00162{width:3.813000px;}
._7_c00162{width:4.929000px;}
._d_c00162{width:6.225000px;}
._5_c00162{width:7.719000px;}
._4_c00162{width:8.835000px;}
._0_c00162{width:10.509000px;}
._27_c00162{width:11.607000px;}
._6_c00162{width:12.741000px;}
._29_c00162{width:13.950000px;}
._e_c00162{width:15.345000px;}
._24_c00162{width:17.241000px;}
._f_c00162{width:18.414000px;}
._46_c00162{width:19.722000px;}
._1c_c00162{width:20.739000px;}
._20_c00162{width:23.901000px;}
._28_c00162{width:24.933000px;}
._31_c00162{width:26.424000px;}
._2a_c00162{width:28.458000px;}
._1a_c00162{width:30.411000px;}
._13_c00162{width:32.550000px;}
._3c_c00162{width:33.753000px;}
._16_c00162{width:35.247000px;}
._12_c00162{width:36.834000px;}
._11_c00162{width:39.543000px;}
._1e_c00162{width:41.955000px;}
._39_c00162{width:44.001000px;}
._3d_c00162{width:45.117000px;}
._14_c00162{width:46.146000px;}
._22_c00162{width:48.081000px;}
._21_c00162{width:50.034000px;}
._38_c00162{width:52.272000px;}
._1f_c00162{width:54.777000px;}
._34_c00162{width:56.544000px;}
._19_c00162{width:58.032000px;}
._2f_c00162{width:59.079000px;}
._23_c00162{width:60.408000px;}
._2c_c00162{width:63.705000px;}
._4b_c00162{width:67.890000px;}
._15_c00162{width:69.564000px;}
._30_c00162{width:75.930000px;}
._40_c00162{width:78.120000px;}
._45_c00162{width:80.145000px;}
._4e_c00162{width:86.805000px;}
._25_c00162{width:89.412000px;}
._4a_c00162{width:93.645000px;}
._41_c00162{width:101.928000px;}
._4d_c00162{width:105.936000px;}
._33_c00162{width:171.123000px;}
._18_c00162{width:173.628000px;}
._52_c00162{width:190.869000px;}
._26_c00162{width:201.717000px;}
._42_c00162{width:207.669000px;}
._43_c00162{width:222.177000px;}
._50_c00162{width:278.391000px;}
._4c_c00162{width:281.142000px;}
._3e_c00162{width:376.929000px;}
._48_c00162{width:402.969000px;}
._54_c00162{width:415.239000px;}
._4f_c00162{width:420.126000px;}
._44_c00162{width:458.490000px;}
._51_c00162{width:465.522000px;}
._47_c00162{width:498.864000px;}
._3a_c00162{width:567.441000px;}
.fc2_c00162{color:transparent;}
.fc1_c00162{color:rgb(128,128,128);}
.fc0_c00162{color:rgb(0,0,0);}
.fs6_c00162{font-size:48.000000px;}
.fs3_c00162{font-size:74.400000px;}
.fs4_c00162{font-size:87.000000px;}
.fs2_c00162{font-size:90.000000px;}
.fs0_c00162{font-size:93.000000px;}
.fs5_c00162{font-size:96.000000px;}
.fs1_c00162{font-size:141.000000px;}
.y0_c00162{bottom:0.000000px;}
.y26_c00162{bottom:3.105000px;}
.y25_c00162{bottom:7.228355px;}
.y24_c00162{bottom:62.085000px;}
.y23_c00162{bottom:159.285000px;}
.y22_c00162{bottom:172.335000px;}
.y21_c00162{bottom:195.435000px;}
.y20_c00162{bottom:231.735000px;}
.y1f_c00162{bottom:265.935000px;}
.y1e_c00162{bottom:300.735000px;}
.y1d_c00162{bottom:333.135000px;}
.y1c_c00162{bottom:367.485000px;}
.y1b_c00162{bottom:400.635000px;}
.y1a_c00162{bottom:436.035000px;}
.y19_c00162{bottom:467.385000px;}
.y18_c00162{bottom:502.485000px;}
.y17_c00162{bottom:536.535000px;}
.y16_c00162{bottom:568.035000px;}
.y15_c00162{bottom:601.785000px;}
.y14_c00162{bottom:635.085000px;}
.y13_c00162{bottom:669.135000px;}
.y12_c00162{bottom:702.285000px;}
.y11_c00162{bottom:735.435000px;}
.y10_c00162{bottom:769.035000px;}
.yf_c00162{bottom:802.485000px;}
.ye_c00162{bottom:835.935000px;}
.yd_c00162{bottom:867.285000px;}
.yc_c00162{bottom:901.335000px;}
.yb_c00162{bottom:935.535000px;}
.ya_c00162{bottom:969.285000px;}
.y9_c00162{bottom:1003.035000px;}
.y8_c00162{bottom:1036.035000px;}
.y7_c00162{bottom:1068.885000px;}
.y6_c00162{bottom:1102.635000px;}
.y5_c00162{bottom:1134.285000px;}
.y4_c00162{bottom:1167.435000px;}
.y3_c00162{bottom:1202.085000px;}
.y2_c00162{bottom:1235.235000px;}
.y1_c00162{bottom:1266.885000px;}
.h6_c00162{height:13.200074px;}
.h7_c00162{height:43.804688px;}
.h4_c00162{height:110.151855px;}
.h2_c00162{height:117.748535px;}
.h5_c00162{height:121.546875px;}
.h3_c00162{height:148.504395px;}
.h1_c00162{height:1353.000000px;}
.h0_c00162{height:1353.225000px;}
.w2_c00162{width:104.875500px;}
.w0_c00162{width:858.600000px;}
.w1_c00162{width:858.750000px;}
.x0_c00162{left:0.000000px;}
.xc_c00162{left:49.350000px;}
.xb_c00162{left:50.550000px;}
.xa_c00162{left:51.600000px;}
.x9_c00162{left:52.650000px;}
.x8_c00162{left:54.300000px;}
.x7_c00162{left:55.950000px;}
.x6_c00162{left:57.000000px;}
.x5_c00162{left:58.650000px;}
.x4_c00162{left:59.700000px;}
.x3_c00162{left:61.800000px;}
.x2_c00162{left:63.450000px;}
.xf_c00162{left:381.114258px;}
.xd_c00162{left:466.200000px;}
.xe_c00162{left:546.750000px;}
.x1_c00162{left:557.550000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls6_c00162{letter-spacing:-10.666667pt;}
.ls7_c00162{letter-spacing:-5.333333pt;}
.ls3_c00162{letter-spacing:0.000000pt;}
.ls4_c00162{letter-spacing:5.333333pt;}
.ls0_c00162{letter-spacing:7.733333pt;}
.ls5_c00162{letter-spacing:10.666667pt;}
.ls1_c00162{letter-spacing:32.877333pt;}
.ls2_c00162{letter-spacing:44.610667pt;}
.ws2_c00162{word-spacing:-44.480000pt;}
.ws1_c00162{word-spacing:-40.928000pt;}
.ws3_c00162{word-spacing:-30.589333pt;}
.ws5_c00162{word-spacing:-26.434133pt;}
.ws4_c00162{word-spacing:-26.000000pt;}
.ws7_c00162{word-spacing:-20.565333pt;}
.ws0_c00162{word-spacing:-19.922667pt;}
.ws8_c00162{word-spacing:0.000000pt;}
.ws6_c00162{word-spacing:11.410667pt;}
._49_c00162{margin-left:-75.970667pt;}
._37_c00162{margin-left:-41.461333pt;}
._17_c00162{margin-left:-33.480000pt;}
._55_c00162{margin-left:-30.336000pt;}
._9_c00162{margin-left:-27.266667pt;}
._3f_c00162{margin-left:-25.378667pt;}
._1d_c00162{margin-left:-22.474667pt;}
._35_c00162{margin-left:-19.517333pt;}
._36_c00162{margin-left:-17.744000pt;}
._32_c00162{margin-left:-15.744000pt;}
._8_c00162{margin-left:-14.138667pt;}
._53_c00162{margin-left:-12.992000pt;}
._3b_c00162{margin-left:-10.818667pt;}
._2b_c00162{margin-left:-9.098667pt;}
._1b_c00162{margin-left:-8.101333pt;}
._2e_c00162{margin-left:-6.944000pt;}
._2d_c00162{margin-left:-6.034667pt;}
._10_c00162{margin-left:-4.216000pt;}
._b_c00162{margin-left:-3.306667pt;}
._c_c00162{margin-left:-2.314667pt;}
._a_c00162{margin-left:-1.322667pt;}
._2_c00162{width:1.405333pt;}
._3_c00162{width:2.397333pt;}
._1_c00162{width:3.389333pt;}
._7_c00162{width:4.381333pt;}
._d_c00162{width:5.533333pt;}
._5_c00162{width:6.861333pt;}
._4_c00162{width:7.853333pt;}
._0_c00162{width:9.341333pt;}
._27_c00162{width:10.317333pt;}
._6_c00162{width:11.325333pt;}
._29_c00162{width:12.400000pt;}
._e_c00162{width:13.640000pt;}
._24_c00162{width:15.325333pt;}
._f_c00162{width:16.368000pt;}
._46_c00162{width:17.530667pt;}
._1c_c00162{width:18.434667pt;}
._20_c00162{width:21.245333pt;}
._28_c00162{width:22.162667pt;}
._31_c00162{width:23.488000pt;}
._2a_c00162{width:25.296000pt;}
._1a_c00162{width:27.032000pt;}
._13_c00162{width:28.933333pt;}
._3c_c00162{width:30.002667pt;}
._16_c00162{width:31.330667pt;}
._12_c00162{width:32.741333pt;}
._11_c00162{width:35.149333pt;}
._1e_c00162{width:37.293333pt;}
._39_c00162{width:39.112000pt;}
._3d_c00162{width:40.104000pt;}
._14_c00162{width:41.018667pt;}
._22_c00162{width:42.738667pt;}
._21_c00162{width:44.474667pt;}
._38_c00162{width:46.464000pt;}
._1f_c00162{width:48.690667pt;}
._34_c00162{width:50.261333pt;}
._19_c00162{width:51.584000pt;}
._2f_c00162{width:52.514667pt;}
._23_c00162{width:53.696000pt;}
._2c_c00162{width:56.626667pt;}
._4b_c00162{width:60.346667pt;}
._15_c00162{width:61.834667pt;}
._30_c00162{width:67.493333pt;}
._40_c00162{width:69.440000pt;}
._45_c00162{width:71.240000pt;}
._4e_c00162{width:77.160000pt;}
._25_c00162{width:79.477333pt;}
._4a_c00162{width:83.240000pt;}
._41_c00162{width:90.602667pt;}
._4d_c00162{width:94.165333pt;}
._33_c00162{width:152.109333pt;}
._18_c00162{width:154.336000pt;}
._52_c00162{width:169.661333pt;}
._26_c00162{width:179.304000pt;}
._42_c00162{width:184.594667pt;}
._43_c00162{width:197.490667pt;}
._50_c00162{width:247.458667pt;}
._4c_c00162{width:249.904000pt;}
._3e_c00162{width:335.048000pt;}
._48_c00162{width:358.194667pt;}
._54_c00162{width:369.101333pt;}
._4f_c00162{width:373.445333pt;}
._44_c00162{width:407.546667pt;}
._51_c00162{width:413.797333pt;}
._47_c00162{width:443.434667pt;}
._3a_c00162{width:504.392000pt;}
.fs6_c00162{font-size:42.666667pt;}
.fs3_c00162{font-size:66.133333pt;}
.fs4_c00162{font-size:77.333333pt;}
.fs2_c00162{font-size:80.000000pt;}
.fs0_c00162{font-size:82.666667pt;}
.fs5_c00162{font-size:85.333333pt;}
.fs1_c00162{font-size:125.333333pt;}
.y0_c00162{bottom:0.000000pt;}
.y26_c00162{bottom:2.760000pt;}
.y25_c00162{bottom:6.425204pt;}
.y24_c00162{bottom:55.186667pt;}
.y23_c00162{bottom:141.586667pt;}
.y22_c00162{bottom:153.186667pt;}
.y21_c00162{bottom:173.720000pt;}
.y20_c00162{bottom:205.986667pt;}
.y1f_c00162{bottom:236.386667pt;}
.y1e_c00162{bottom:267.320000pt;}
.y1d_c00162{bottom:296.120000pt;}
.y1c_c00162{bottom:326.653333pt;}
.y1b_c00162{bottom:356.120000pt;}
.y1a_c00162{bottom:387.586667pt;}
.y19_c00162{bottom:415.453333pt;}
.y18_c00162{bottom:446.653333pt;}
.y17_c00162{bottom:476.920000pt;}
.y16_c00162{bottom:504.920000pt;}
.y15_c00162{bottom:534.920000pt;}
.y14_c00162{bottom:564.520000pt;}
.y13_c00162{bottom:594.786667pt;}
.y12_c00162{bottom:624.253333pt;}
.y11_c00162{bottom:653.720000pt;}
.y10_c00162{bottom:683.586667pt;}
.yf_c00162{bottom:713.320000pt;}
.ye_c00162{bottom:743.053333pt;}
.yd_c00162{bottom:770.920000pt;}
.yc_c00162{bottom:801.186667pt;}
.yb_c00162{bottom:831.586667pt;}
.ya_c00162{bottom:861.586667pt;}
.y9_c00162{bottom:891.586667pt;}
.y8_c00162{bottom:920.920000pt;}
.y7_c00162{bottom:950.120000pt;}
.y6_c00162{bottom:980.120000pt;}
.y5_c00162{bottom:1008.253333pt;}
.y4_c00162{bottom:1037.720000pt;}
.y3_c00162{bottom:1068.520000pt;}
.y2_c00162{bottom:1097.986667pt;}
.y1_c00162{bottom:1126.120000pt;}
.h6_c00162{height:11.733399pt;}
.h7_c00162{height:38.937500pt;}
.h4_c00162{height:97.912760pt;}
.h2_c00162{height:104.665365pt;}
.h5_c00162{height:108.041667pt;}
.h3_c00162{height:132.003906pt;}
.h1_c00162{height:1202.666667pt;}
.h0_c00162{height:1202.866667pt;}
.w2_c00162{width:93.222667pt;}
.w0_c00162{width:763.200000pt;}
.w1_c00162{width:763.333333pt;}
.x0_c00162{left:0.000000pt;}
.xc_c00162{left:43.866667pt;}
.xb_c00162{left:44.933333pt;}
.xa_c00162{left:45.866667pt;}
.x9_c00162{left:46.800000pt;}
.x8_c00162{left:48.266667pt;}
.x7_c00162{left:49.733333pt;}
.x6_c00162{left:50.666667pt;}
.x5_c00162{left:52.133333pt;}
.x4_c00162{left:53.066667pt;}
.x3_c00162{left:54.933333pt;}
.x2_c00162{left:56.400000pt;}
.xf_c00162{left:338.768229pt;}
.xd_c00162{left:414.400000pt;}
.xe_c00162{left:486.000000pt;}
.x1_c00162{left:495.600000pt;}
}





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

.ir_c00163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00163;src:url('chunks/assets/font_25c3f7c6705af931495ba1e6.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;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_c00163;src:url('chunks/assets/font_815df5e29c85886e36e9fc6d.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_c70eacbb28d6caf0e8d77a2f.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_e2d5b3f559aa648801d97344.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls3_c00163{letter-spacing:-3.000000px;}
.ls4_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:10.920000px;}
.ls5_c00163{letter-spacing:12.000000px;}
.ls1_c00163{letter-spacing:16.602000px;}
.ls2_c00163{letter-spacing:44.388000px;}
.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;}
}
.ws4_c00163{word-spacing:-25.737000px;}
.ws3_c00163{word-spacing:-20.244000px;}
.ws5_c00163{word-spacing:0.000000px;}
.ws2_c00163{word-spacing:0.600000px;}
.ws0_c00163{word-spacing:2.208000px;}
.ws1_c00163{word-spacing:5.628000px;}
._10_c00163{margin-left:-86.184000px;}
._5_c00163{margin-left:-42.282000px;}
._42_c00163{margin-left:-39.648000px;}
._43_c00163{margin-left:-22.944000px;}
._40_c00163{margin-left:-18.648000px;}
._35_c00163{margin-left:-17.268000px;}
._4a_c00163{margin-left:-16.110000px;}
._36_c00163{margin-left:-13.248000px;}
._e_c00163{margin-left:-11.988000px;}
._30_c00163{margin-left:-10.506000px;}
._b_c00163{margin-left:-9.072000px;}
._2d_c00163{margin-left:-6.816000px;}
._2e_c00163{margin-left:-5.472000px;}
._a_c00163{margin-left:-3.888000px;}
._7_c00163{margin-left:-1.782000px;}
._c_c00163{width:1.458000px;}
._22_c00163{width:2.862000px;}
._2_c00163{width:4.536000px;}
._26_c00163{width:6.042000px;}
._0_c00163{width:7.452000px;}
._1_c00163{width:8.748000px;}
._3_c00163{width:10.206000px;}
._33_c00163{width:11.964000px;}
._4_c00163{width:13.122000px;}
._41_c00163{width:14.304000px;}
._16_c00163{width:15.360000px;}
._f_c00163{width:16.848000px;}
._15_c00163{width:17.856000px;}
._1e_c00163{width:19.968000px;}
._1a_c00163{width:21.120000px;}
._14_c00163{width:22.464000px;}
._2c_c00163{width:23.772000px;}
._19_c00163{width:24.972000px;}
._3f_c00163{width:26.364000px;}
._9_c00163{width:27.378000px;}
._12_c00163{width:28.800000px;}
._13_c00163{width:29.952000px;}
._17_c00163{width:31.008000px;}
._1b_c00163{width:33.108000px;}
._18_c00163{width:34.656000px;}
._11_c00163{width:36.960000px;}
._1d_c00163{width:38.496000px;}
._3d_c00163{width:39.516000px;}
._28_c00163{width:40.614000px;}
._2f_c00163{width:42.672000px;}
._1c_c00163{width:43.776000px;}
._20_c00163{width:46.080000px;}
._27_c00163{width:47.214000px;}
._8_c00163{width:48.438000px;}
._29_c00163{width:51.954000px;}
._34_c00163{width:53.064000px;}
._3e_c00163{width:54.384000px;}
._21_c00163{width:55.968000px;}
._48_c00163{width:58.191000px;}
._25_c00163{width:59.664000px;}
._3b_c00163{width:60.996000px;}
._2b_c00163{width:63.198000px;}
._3c_c00163{width:65.250000px;}
._31_c00163{width:67.068000px;}
._39_c00163{width:69.042000px;}
._2a_c00163{width:71.244000px;}
._38_c00163{width:72.504000px;}
._32_c00163{width:73.734000px;}
._6_c00163{width:77.922000px;}
._45_c00163{width:82.020000px;}
._3a_c00163{width:84.948000px;}
._37_c00163{width:88.470000px;}
._4b_c00163{width:89.823000px;}
._4c_c00163{width:151.236000px;}
._46_c00163{width:156.720000px;}
._1f_c00163{width:165.888000px;}
._24_c00163{width:172.044000px;}
._44_c00163{width:216.510000px;}
._d_c00163{width:246.564000px;}
._23_c00163{width:259.116000px;}
._4d_c00163{width:335.616000px;}
._47_c00163{width:432.291000px;}
._49_c00163{width:878.550000px;}
.fc2_c00163{color:transparent;}
.fc1_c00163{color:rgb(128,128,128);}
.fc0_c00163{color:rgb(0,0,0);}
.fs4_c00163{font-size:48.000000px;}
.fs3_c00163{font-size:57.000000px;}
.fs2_c00163{font-size:84.000000px;}
.fs1_c00163{font-size:96.000000px;}
.fs0_c00163{font-size:162.000000px;}
.y0_c00163{bottom:0.000000px;}
.y23_c00163{bottom:3.105000px;}
.y22_c00163{bottom:7.228357px;}
.y21_c00163{bottom:107.730000px;}
.y20_c00163{bottom:142.380000px;}
.y1f_c00163{bottom:156.930000px;}
.y1e_c00163{bottom:176.280000px;}
.y1d_c00163{bottom:210.930000px;}
.y1c_c00163{bottom:244.980000px;}
.y1b_c00163{bottom:278.730000px;}
.y1a_c00163{bottom:313.230000px;}
.y19_c00163{bottom:347.730000px;}
.y18_c00163{bottom:381.330000px;}
.y17_c00163{bottom:415.530000px;}
.y16_c00163{bottom:449.280000px;}
.y15_c00163{bottom:483.630000px;}
.y14_c00163{bottom:517.680000px;}
.y13_c00163{bottom:551.130000px;}
.y12_c00163{bottom:585.180000px;}
.y11_c00163{bottom:618.930000px;}
.y10_c00163{bottom:652.380000px;}
.yf_c00163{bottom:685.530000px;}
.ye_c00163{bottom:719.280000px;}
.yd_c00163{bottom:753.630000px;}
.yc_c00163{bottom:787.080000px;}
.yb_c00163{bottom:820.830000px;}
.ya_c00163{bottom:855.180000px;}
.y9_c00163{bottom:887.580000px;}
.y8_c00163{bottom:921.480000px;}
.y7_c00163{bottom:954.780000px;}
.y6_c00163{bottom:988.830000px;}
.y5_c00163{bottom:1020.930000px;}
.y4_c00163{bottom:1094.880000px;}
.y3_c00163{bottom:1144.530000px;}
.y2_c00163{bottom:1194.480000px;}
.y1_c00163{bottom:1243.980000px;}
.h6_c00163{height:13.200074px;}
.h7_c00163{height:43.804688px;}
.h5_c00163{height:72.168457px;}
.h4_c00163{height:106.353516px;}
.h3_c00163{height:121.546875px;}
.h2_c00163{height:158.994141px;}
.h0_c00163{height:1382.700000px;}
.h1_c00163{height:1383.000000px;}
.w2_c00163{width:104.875500px;}
.w0_c00163{width:863.175000px;}
.w1_c00163{width:863.250000px;}
.x0_c00163{left:0.000000px;}
.xd_c00163{left:81.750000px;}
.x5_c00163{left:138.600000px;}
.xe_c00163{left:146.250000px;}
.xc_c00163{left:203.250000px;}
.x1_c00163{left:254.400000px;}
.x8_c00163{left:256.200000px;}
.x9_c00163{left:257.850000px;}
.xa_c00163{left:259.500000px;}
.xb_c00163{left:260.550000px;}
.xf_c00163{left:261.600000px;}
.x2_c00163{left:369.900000px;}
.x10_c00163{left:383.401749px;}
.x3_c00163{left:414.900000px;}
.x4_c00163{left:432.750000px;}
.x7_c00163{left:457.200000px;}
.x6_c00163{left:470.100000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls3_c00163{letter-spacing:-2.666667pt;}
.ls4_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:9.706667pt;}
.ls5_c00163{letter-spacing:10.666667pt;}
.ls1_c00163{letter-spacing:14.757333pt;}
.ls2_c00163{letter-spacing:39.456000pt;}
.ws4_c00163{word-spacing:-22.877333pt;}
.ws3_c00163{word-spacing:-17.994667pt;}
.ws5_c00163{word-spacing:0.000000pt;}
.ws2_c00163{word-spacing:0.533333pt;}
.ws0_c00163{word-spacing:1.962667pt;}
.ws1_c00163{word-spacing:5.002667pt;}
._10_c00163{margin-left:-76.608000pt;}
._5_c00163{margin-left:-37.584000pt;}
._42_c00163{margin-left:-35.242667pt;}
._43_c00163{margin-left:-20.394667pt;}
._40_c00163{margin-left:-16.576000pt;}
._35_c00163{margin-left:-15.349333pt;}
._4a_c00163{margin-left:-14.320000pt;}
._36_c00163{margin-left:-11.776000pt;}
._e_c00163{margin-left:-10.656000pt;}
._30_c00163{margin-left:-9.338667pt;}
._b_c00163{margin-left:-8.064000pt;}
._2d_c00163{margin-left:-6.058667pt;}
._2e_c00163{margin-left:-4.864000pt;}
._a_c00163{margin-left:-3.456000pt;}
._7_c00163{margin-left:-1.584000pt;}
._c_c00163{width:1.296000pt;}
._22_c00163{width:2.544000pt;}
._2_c00163{width:4.032000pt;}
._26_c00163{width:5.370667pt;}
._0_c00163{width:6.624000pt;}
._1_c00163{width:7.776000pt;}
._3_c00163{width:9.072000pt;}
._33_c00163{width:10.634667pt;}
._4_c00163{width:11.664000pt;}
._41_c00163{width:12.714667pt;}
._16_c00163{width:13.653333pt;}
._f_c00163{width:14.976000pt;}
._15_c00163{width:15.872000pt;}
._1e_c00163{width:17.749333pt;}
._1a_c00163{width:18.773333pt;}
._14_c00163{width:19.968000pt;}
._2c_c00163{width:21.130667pt;}
._19_c00163{width:22.197333pt;}
._3f_c00163{width:23.434667pt;}
._9_c00163{width:24.336000pt;}
._12_c00163{width:25.600000pt;}
._13_c00163{width:26.624000pt;}
._17_c00163{width:27.562667pt;}
._1b_c00163{width:29.429333pt;}
._18_c00163{width:30.805333pt;}
._11_c00163{width:32.853333pt;}
._1d_c00163{width:34.218667pt;}
._3d_c00163{width:35.125333pt;}
._28_c00163{width:36.101333pt;}
._2f_c00163{width:37.930667pt;}
._1c_c00163{width:38.912000pt;}
._20_c00163{width:40.960000pt;}
._27_c00163{width:41.968000pt;}
._8_c00163{width:43.056000pt;}
._29_c00163{width:46.181333pt;}
._34_c00163{width:47.168000pt;}
._3e_c00163{width:48.341333pt;}
._21_c00163{width:49.749333pt;}
._48_c00163{width:51.725333pt;}
._25_c00163{width:53.034667pt;}
._3b_c00163{width:54.218667pt;}
._2b_c00163{width:56.176000pt;}
._3c_c00163{width:58.000000pt;}
._31_c00163{width:59.616000pt;}
._39_c00163{width:61.370667pt;}
._2a_c00163{width:63.328000pt;}
._38_c00163{width:64.448000pt;}
._32_c00163{width:65.541333pt;}
._6_c00163{width:69.264000pt;}
._45_c00163{width:72.906667pt;}
._3a_c00163{width:75.509333pt;}
._37_c00163{width:78.640000pt;}
._4b_c00163{width:79.842667pt;}
._4c_c00163{width:134.432000pt;}
._46_c00163{width:139.306667pt;}
._1f_c00163{width:147.456000pt;}
._24_c00163{width:152.928000pt;}
._44_c00163{width:192.453333pt;}
._d_c00163{width:219.168000pt;}
._23_c00163{width:230.325333pt;}
._4d_c00163{width:298.325333pt;}
._47_c00163{width:384.258667pt;}
._49_c00163{width:780.933333pt;}
.fs4_c00163{font-size:42.666667pt;}
.fs3_c00163{font-size:50.666667pt;}
.fs2_c00163{font-size:74.666667pt;}
.fs1_c00163{font-size:85.333333pt;}
.fs0_c00163{font-size:144.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y23_c00163{bottom:2.760000pt;}
.y22_c00163{bottom:6.425206pt;}
.y21_c00163{bottom:95.760000pt;}
.y20_c00163{bottom:126.560000pt;}
.y1f_c00163{bottom:139.493333pt;}
.y1e_c00163{bottom:156.693333pt;}
.y1d_c00163{bottom:187.493333pt;}
.y1c_c00163{bottom:217.760000pt;}
.y1b_c00163{bottom:247.760000pt;}
.y1a_c00163{bottom:278.426667pt;}
.y19_c00163{bottom:309.093333pt;}
.y18_c00163{bottom:338.960000pt;}
.y17_c00163{bottom:369.360000pt;}
.y16_c00163{bottom:399.360000pt;}
.y15_c00163{bottom:429.893333pt;}
.y14_c00163{bottom:460.160000pt;}
.y13_c00163{bottom:489.893333pt;}
.y12_c00163{bottom:520.160000pt;}
.y11_c00163{bottom:550.160000pt;}
.y10_c00163{bottom:579.893333pt;}
.yf_c00163{bottom:609.360000pt;}
.ye_c00163{bottom:639.360000pt;}
.yd_c00163{bottom:669.893333pt;}
.yc_c00163{bottom:699.626667pt;}
.yb_c00163{bottom:729.626667pt;}
.ya_c00163{bottom:760.160000pt;}
.y9_c00163{bottom:788.960000pt;}
.y8_c00163{bottom:819.093333pt;}
.y7_c00163{bottom:848.693333pt;}
.y6_c00163{bottom:878.960000pt;}
.y5_c00163{bottom:907.493333pt;}
.y4_c00163{bottom:973.226667pt;}
.y3_c00163{bottom:1017.360000pt;}
.y2_c00163{bottom:1061.760000pt;}
.y1_c00163{bottom:1105.760000pt;}
.h6_c00163{height:11.733399pt;}
.h7_c00163{height:38.937500pt;}
.h5_c00163{height:64.149740pt;}
.h4_c00163{height:94.536458pt;}
.h3_c00163{height:108.041667pt;}
.h2_c00163{height:141.328125pt;}
.h0_c00163{height:1229.066667pt;}
.h1_c00163{height:1229.333333pt;}
.w2_c00163{width:93.222667pt;}
.w0_c00163{width:767.266667pt;}
.w1_c00163{width:767.333333pt;}
.x0_c00163{left:0.000000pt;}
.xd_c00163{left:72.666667pt;}
.x5_c00163{left:123.200000pt;}
.xe_c00163{left:130.000000pt;}
.xc_c00163{left:180.666667pt;}
.x1_c00163{left:226.133333pt;}
.x8_c00163{left:227.733333pt;}
.x9_c00163{left:229.200000pt;}
.xa_c00163{left:230.666667pt;}
.xb_c00163{left:231.600000pt;}
.xf_c00163{left:232.533333pt;}
.x2_c00163{left:328.800000pt;}
.x10_c00163{left:340.801554pt;}
.x3_c00163{left:368.800000pt;}
.x4_c00163{left:384.666667pt;}
.x7_c00163{left:406.400000pt;}
.x6_c00163{left:417.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd66acb31d73b27817e9c7f8.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_de53f2a57253b632a2230d6f.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_b3e51bba1e08ffcd8b33c00d.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m2_c00164{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls3_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:5.964000px;}
.ls1_c00164{letter-spacing:15.600000px;}
.ls2_c00164{letter-spacing:16.200000px;}
.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:-69.468000px;}
.ws4_c00164{word-spacing:-63.504000px;}
.ws3_c00164{word-spacing:-51.000000px;}
.ws0_c00164{word-spacing:-23.136000px;}
.ws5_c00164{word-spacing:0.000000px;}
.ws2_c00164{word-spacing:14.112000px;}
._2a_c00164{margin-left:-33.936000px;}
._32_c00164{margin-left:-26.076000px;}
._2d_c00164{margin-left:-20.178000px;}
._a_c00164{margin-left:-17.568000px;}
._23_c00164{margin-left:-16.080000px;}
._1f_c00164{margin-left:-14.112000px;}
._1e_c00164{margin-left:-12.000000px;}
._2e_c00164{margin-left:-10.944000px;}
._17_c00164{margin-left:-8.640000px;}
._18_c00164{margin-left:-6.528000px;}
._1_c00164{margin-left:-4.800000px;}
._19_c00164{margin-left:-3.168000px;}
._0_c00164{margin-left:-1.248000px;}
._10_c00164{width:1.728000px;}
._7_c00164{width:2.880000px;}
._d_c00164{width:3.936000px;}
._4_c00164{width:5.088000px;}
._c_c00164{width:6.240000px;}
._5_c00164{width:7.392000px;}
._15_c00164{width:8.640000px;}
._3_c00164{width:9.696000px;}
._2b_c00164{width:10.848000px;}
._22_c00164{width:11.856000px;}
._1b_c00164{width:13.152000px;}
._12_c00164{width:14.784000px;}
._11_c00164{width:16.800000px;}
._14_c00164{width:18.336000px;}
._e_c00164{width:19.392000px;}
._16_c00164{width:21.216000px;}
._25_c00164{width:24.720000px;}
._29_c00164{width:26.352000px;}
._13_c00164{width:27.936000px;}
._1c_c00164{width:29.952000px;}
._9_c00164{width:31.680000px;}
._2c_c00164{width:32.976000px;}
._8_c00164{width:34.656000px;}
._20_c00164{width:36.384000px;}
._1a_c00164{width:38.496000px;}
._1d_c00164{width:40.884000px;}
._f_c00164{width:43.488000px;}
._b_c00164{width:44.928000px;}
._24_c00164{width:46.224000px;}
._6_c00164{width:47.616000px;}
._28_c00164{width:54.432000px;}
._33_c00164{width:56.640000px;}
._26_c00164{width:60.768000px;}
._2f_c00164{width:62.400000px;}
._27_c00164{width:67.584000px;}
._21_c00164{width:149.232000px;}
._30_c00164{width:334.944000px;}
._2_c00164{width:377.088000px;}
._31_c00164{width:455.232000px;}
._35_c00164{width:838.464000px;}
._34_c00164{width:1018.272000px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(128,128,128);}
.fc0_c00164{color:rgb(0,0,0);}
.fs4_c00164{font-size:48.000000px;}
.fs1_c00164{font-size:84.000000px;}
.fs0_c00164{font-size:96.000000px;}
.fs3_c00164{font-size:102.000000px;}
.fs2_c00164{font-size:144.000000px;}
.y0_c00164{bottom:0.000000px;}
.y23_c00164{bottom:3.105000px;}
.y22_c00164{bottom:7.228369px;}
.y21_c00164{bottom:94.170000px;}
.y20_c00164{bottom:127.920000px;}
.y1f_c00164{bottom:162.270000px;}
.y1e_c00164{bottom:195.720000px;}
.y1d_c00164{bottom:230.820000px;}
.y1c_c00164{bottom:264.570000px;}
.y1b_c00164{bottom:298.320000px;}
.y1a_c00164{bottom:333.120000px;}
.y19_c00164{bottom:365.820000px;}
.y18_c00164{bottom:399.870000px;}
.y17_c00164{bottom:434.370000px;}
.y16_c00164{bottom:467.370000px;}
.y15_c00164{bottom:501.120000px;}
.y14_c00164{bottom:535.320000px;}
.y13_c00164{bottom:568.320000px;}
.y12_c00164{bottom:602.070000px;}
.y11_c00164{bottom:636.420000px;}
.y10_c00164{bottom:668.970000px;}
.yf_c00164{bottom:741.870000px;}
.ye_c00164{bottom:793.470000px;}
.yd_c00164{bottom:842.970000px;}
.yc_c00164{bottom:892.020000px;}
.yb_c00164{bottom:973.620000px;}
.ya_c00164{bottom:1004.970000px;}
.y9_c00164{bottom:1038.870000px;}
.y8_c00164{bottom:1072.470000px;}
.y7_c00164{bottom:1105.020000px;}
.y6_c00164{bottom:1139.370000px;}
.y5_c00164{bottom:1172.070000px;}
.y4_c00164{bottom:1205.220000px;}
.y3_c00164{bottom:1238.670000px;}
.y2_c00164{bottom:1272.720000px;}
.y1_c00164{bottom:1300.320000px;}
.h4_c00164{height:13.200073px;}
.h5_c00164{height:43.804688px;}
.h2_c00164{height:121.546875px;}
.h3_c00164{height:182.320312px;}
.h0_c00164{height:1383.450000px;}
.h1_c00164{height:1383.750000px;}
.w2_c00164{width:104.875500px;}
.w0_c00164{width:878.025000px;}
.w1_c00164{width:878.250000px;}
.x0_c00164{left:0.000000px;}
.x16_c00164{left:40.800000px;}
.x14_c00164{left:45.150000px;}
.x12_c00164{left:46.650000px;}
.x15_c00164{left:48.300000px;}
.x13_c00164{left:52.200000px;}
.xb_c00164{left:54.450000px;}
.xa_c00164{left:56.400000px;}
.x9_c00164{left:58.050000px;}
.x8_c00164{left:59.100000px;}
.x7_c00164{left:60.150000px;}
.x6_c00164{left:61.200000px;}
.x5_c00164{left:62.400000px;}
.xc_c00164{left:175.800000px;}
.xd_c00164{left:223.800000px;}
.x1_c00164{left:228.300000px;}
.x2_c00164{left:232.050000px;}
.x11_c00164{left:237.900000px;}
.xf_c00164{left:249.150000px;}
.x10_c00164{left:265.350000px;}
.xe_c00164{left:285.900000px;}
.x17_c00164{left:390.826721px;}
.x3_c00164{left:445.350000px;}
.x4_c00164{left:461.100000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls3_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:5.301333pt;}
.ls1_c00164{letter-spacing:13.866667pt;}
.ls2_c00164{letter-spacing:14.400000pt;}
.ws1_c00164{word-spacing:-61.749333pt;}
.ws4_c00164{word-spacing:-56.448000pt;}
.ws3_c00164{word-spacing:-45.333333pt;}
.ws0_c00164{word-spacing:-20.565333pt;}
.ws5_c00164{word-spacing:0.000000pt;}
.ws2_c00164{word-spacing:12.544000pt;}
._2a_c00164{margin-left:-30.165333pt;}
._32_c00164{margin-left:-23.178667pt;}
._2d_c00164{margin-left:-17.936000pt;}
._a_c00164{margin-left:-15.616000pt;}
._23_c00164{margin-left:-14.293333pt;}
._1f_c00164{margin-left:-12.544000pt;}
._1e_c00164{margin-left:-10.666667pt;}
._2e_c00164{margin-left:-9.728000pt;}
._17_c00164{margin-left:-7.680000pt;}
._18_c00164{margin-left:-5.802667pt;}
._1_c00164{margin-left:-4.266667pt;}
._19_c00164{margin-left:-2.816000pt;}
._0_c00164{margin-left:-1.109333pt;}
._10_c00164{width:1.536000pt;}
._7_c00164{width:2.560000pt;}
._d_c00164{width:3.498667pt;}
._4_c00164{width:4.522667pt;}
._c_c00164{width:5.546667pt;}
._5_c00164{width:6.570667pt;}
._15_c00164{width:7.680000pt;}
._3_c00164{width:8.618667pt;}
._2b_c00164{width:9.642667pt;}
._22_c00164{width:10.538667pt;}
._1b_c00164{width:11.690667pt;}
._12_c00164{width:13.141333pt;}
._11_c00164{width:14.933333pt;}
._14_c00164{width:16.298667pt;}
._e_c00164{width:17.237333pt;}
._16_c00164{width:18.858667pt;}
._25_c00164{width:21.973333pt;}
._29_c00164{width:23.424000pt;}
._13_c00164{width:24.832000pt;}
._1c_c00164{width:26.624000pt;}
._9_c00164{width:28.160000pt;}
._2c_c00164{width:29.312000pt;}
._8_c00164{width:30.805333pt;}
._20_c00164{width:32.341333pt;}
._1a_c00164{width:34.218667pt;}
._1d_c00164{width:36.341333pt;}
._f_c00164{width:38.656000pt;}
._b_c00164{width:39.936000pt;}
._24_c00164{width:41.088000pt;}
._6_c00164{width:42.325333pt;}
._28_c00164{width:48.384000pt;}
._33_c00164{width:50.346667pt;}
._26_c00164{width:54.016000pt;}
._2f_c00164{width:55.466667pt;}
._27_c00164{width:60.074667pt;}
._21_c00164{width:132.650667pt;}
._30_c00164{width:297.728000pt;}
._2_c00164{width:335.189333pt;}
._31_c00164{width:404.650667pt;}
._35_c00164{width:745.301333pt;}
._34_c00164{width:905.130667pt;}
.fs4_c00164{font-size:42.666667pt;}
.fs1_c00164{font-size:74.666667pt;}
.fs0_c00164{font-size:85.333333pt;}
.fs3_c00164{font-size:90.666667pt;}
.fs2_c00164{font-size:128.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y23_c00164{bottom:2.760000pt;}
.y22_c00164{bottom:6.425217pt;}
.y21_c00164{bottom:83.706667pt;}
.y20_c00164{bottom:113.706667pt;}
.y1f_c00164{bottom:144.240000pt;}
.y1e_c00164{bottom:173.973333pt;}
.y1d_c00164{bottom:205.173333pt;}
.y1c_c00164{bottom:235.173333pt;}
.y1b_c00164{bottom:265.173333pt;}
.y1a_c00164{bottom:296.106667pt;}
.y19_c00164{bottom:325.173333pt;}
.y18_c00164{bottom:355.440000pt;}
.y17_c00164{bottom:386.106667pt;}
.y16_c00164{bottom:415.440000pt;}
.y15_c00164{bottom:445.440000pt;}
.y14_c00164{bottom:475.840000pt;}
.y13_c00164{bottom:505.173333pt;}
.y12_c00164{bottom:535.173333pt;}
.y11_c00164{bottom:565.706667pt;}
.y10_c00164{bottom:594.640000pt;}
.yf_c00164{bottom:659.440000pt;}
.ye_c00164{bottom:705.306667pt;}
.yd_c00164{bottom:749.306667pt;}
.yc_c00164{bottom:792.906667pt;}
.yb_c00164{bottom:865.440000pt;}
.ya_c00164{bottom:893.306667pt;}
.y9_c00164{bottom:923.440000pt;}
.y8_c00164{bottom:953.306667pt;}
.y7_c00164{bottom:982.240000pt;}
.y6_c00164{bottom:1012.773333pt;}
.y5_c00164{bottom:1041.840000pt;}
.y4_c00164{bottom:1071.306667pt;}
.y3_c00164{bottom:1101.040000pt;}
.y2_c00164{bottom:1131.306667pt;}
.y1_c00164{bottom:1155.840000pt;}
.h4_c00164{height:11.733399pt;}
.h5_c00164{height:38.937500pt;}
.h2_c00164{height:108.041667pt;}
.h3_c00164{height:162.062500pt;}
.h0_c00164{height:1229.733333pt;}
.h1_c00164{height:1230.000000pt;}
.w2_c00164{width:93.222667pt;}
.w0_c00164{width:780.466667pt;}
.w1_c00164{width:780.666667pt;}
.x0_c00164{left:0.000000pt;}
.x16_c00164{left:36.266667pt;}
.x14_c00164{left:40.133333pt;}
.x12_c00164{left:41.466667pt;}
.x15_c00164{left:42.933333pt;}
.x13_c00164{left:46.400000pt;}
.xb_c00164{left:48.400000pt;}
.xa_c00164{left:50.133333pt;}
.x9_c00164{left:51.600000pt;}
.x8_c00164{left:52.533333pt;}
.x7_c00164{left:53.466667pt;}
.x6_c00164{left:54.400000pt;}
.x5_c00164{left:55.466667pt;}
.xc_c00164{left:156.266667pt;}
.xd_c00164{left:198.933333pt;}
.x1_c00164{left:202.933333pt;}
.x2_c00164{left:206.266667pt;}
.x11_c00164{left:211.466667pt;}
.xf_c00164{left:221.466667pt;}
.x10_c00164{left:235.866667pt;}
.xe_c00164{left:254.133333pt;}
.x17_c00164{left:347.401530pt;}
.x3_c00164{left:395.866667pt;}
.x4_c00164{left:409.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2a1c43695f53a1e183a9c756.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_c0214908f876f1ffd358734f.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_31986904a45009fae1a10f3d.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_a1824c7127b786ee77959826.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;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_c00165;src:url('chunks/assets/font_8c61a86b8e98a6218e966e5f.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00165;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00165{font-family:ff6_c00165;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls4_c00165{letter-spacing:-3.000000px;}
.ls3_c00165{letter-spacing:0.000000px;}
.ls5_c00165{letter-spacing:3.000000px;}
.ls6_c00165{letter-spacing:6.000000px;}
.ls2_c00165{letter-spacing:13.800000px;}
.ls1_c00165{letter-spacing:39.600000px;}
.ls0_c00165{letter-spacing:67.176000px;}
.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;}
}
.ws1_c00165{word-spacing:-51.000000px;}
.ws4_c00165{word-spacing:-23.136000px;}
.ws2_c00165{word-spacing:-20.244000px;}
.ws0_c00165{word-spacing:-6.240000px;}
.ws5_c00165{word-spacing:0.000000px;}
.ws3_c00165{word-spacing:7.812000px;}
._27_c00165{margin-left:-129.888000px;}
._34_c00165{margin-left:-41.280000px;}
._2a_c00165{margin-left:-38.016000px;}
._52_c00165{margin-left:-34.464000px;}
._28_c00165{margin-left:-32.004000px;}
._2e_c00165{margin-left:-30.966000px;}
._57_c00165{margin-left:-29.088000px;}
._51_c00165{margin-left:-22.176000px;}
._25_c00165{margin-left:-19.440000px;}
._2c_c00165{margin-left:-18.288000px;}
._4b_c00165{margin-left:-17.250000px;}
._1c_c00165{margin-left:-16.128000px;}
._4d_c00165{margin-left:-14.856000px;}
._4e_c00165{margin-left:-13.728000px;}
._2_c00165{margin-left:-12.036000px;}
._3e_c00165{margin-left:-10.212000px;}
._3d_c00165{margin-left:-8.736000px;}
._3_c00165{margin-left:-6.936000px;}
._2d_c00165{margin-left:-5.676000px;}
._44_c00165{margin-left:-4.572000px;}
._12_c00165{margin-left:-3.300000px;}
._30_c00165{margin-left:-2.268000px;}
._f_c00165{margin-left:-1.248000px;}
._0_c00165{width:1.248000px;}
._c_c00165{width:2.496000px;}
._4a_c00165{width:3.498000px;}
._b_c00165{width:4.506000px;}
._d_c00165{width:6.192000px;}
._9_c00165{width:7.548000px;}
._8_c00165{width:9.078000px;}
._11_c00165{width:11.028000px;}
._1_c00165{width:12.768000px;}
._7_c00165{width:14.148000px;}
._15_c00165{width:15.168000px;}
._a_c00165{width:16.326000px;}
._e_c00165{width:17.478000px;}
._22_c00165{width:19.590000px;}
._1a_c00165{width:20.820000px;}
._40_c00165{width:21.888000px;}
._1f_c00165{width:25.236000px;}
._14_c00165{width:26.592000px;}
._3f_c00165{width:27.840000px;}
._5_c00165{width:29.664000px;}
._1e_c00165{width:30.840000px;}
._6_c00165{width:32.256000px;}
._18_c00165{width:33.810000px;}
._13_c00165{width:34.998000px;}
._42_c00165{width:36.486000px;}
._4_c00165{width:39.594000px;}
._1b_c00165{width:40.800000px;}
._49_c00165{width:41.904000px;}
._36_c00165{width:43.104000px;}
._10_c00165{width:44.832000px;}
._19_c00165{width:46.080000px;}
._35_c00165{width:47.112000px;}
._16_c00165{width:49.956000px;}
._41_c00165{width:51.138000px;}
._3a_c00165{width:52.320000px;}
._39_c00165{width:54.270000px;}
._45_c00165{width:60.798000px;}
._38_c00165{width:62.328000px;}
._26_c00165{width:63.792000px;}
._37_c00165{width:65.730000px;}
._33_c00165{width:67.008000px;}
._1d_c00165{width:68.742000px;}
._2b_c00165{width:72.144000px;}
._55_c00165{width:76.194000px;}
._4f_c00165{width:81.984000px;}
._53_c00165{width:84.000000px;}
._3c_c00165{width:87.936000px;}
._2f_c00165{width:94.014000px;}
._23_c00165{width:105.570000px;}
._29_c00165{width:111.168000px;}
._21_c00165{width:119.892000px;}
._46_c00165{width:124.728000px;}
._20_c00165{width:125.928000px;}
._24_c00165{width:132.552000px;}
._47_c00165{width:168.576000px;}
._50_c00165{width:187.548000px;}
._32_c00165{width:204.714000px;}
._48_c00165{width:255.324000px;}
._17_c00165{width:262.734000px;}
._4c_c00165{width:307.290000px;}
._54_c00165{width:319.752000px;}
._56_c00165{width:490.752000px;}
._58_c00165{width:672.270000px;}
._3b_c00165{width:730.416000px;}
._31_c00165{width:818.928000px;}
._43_c00165{width:892.992000px;}
.fc2_c00165{color:transparent;}
.fc1_c00165{color:rgb(128,128,128);}
.fc0_c00165{color:rgb(0,0,0);}
.fs8_c00165{font-size:30.000000px;}
.fs9_c00165{font-size:48.000000px;}
.fs3_c00165{font-size:60.000000px;}
.fs2_c00165{font-size:72.000000px;}
.fs5_c00165{font-size:75.000000px;}
.fs4_c00165{font-size:84.000000px;}
.fs7_c00165{font-size:93.000000px;}
.fs0_c00165{font-size:96.000000px;}
.fs1_c00165{font-size:102.000000px;}
.fs6_c00165{font-size:144.000000px;}
.y0_c00165{bottom:0.000000px;}
.y21_c00165{bottom:3.105000px;}
.y20_c00165{bottom:7.228369px;}
.y1f_c00165{bottom:131.220000px;}
.y1e_c00165{bottom:152.220000px;}
.y1d_c00165{bottom:189.270000px;}
.y1c_c00165{bottom:226.170000px;}
.y1b_c00165{bottom:259.920000px;}
.y1a_c00165{bottom:292.920000px;}
.y19_c00165{bottom:326.370000px;}
.y18_c00165{bottom:361.020000px;}
.y17_c00165{bottom:394.170000px;}
.y16_c00165{bottom:430.620000px;}
.y15_c00165{bottom:464.970000px;}
.y14_c00165{bottom:497.070000px;}
.y13_c00165{bottom:530.520000px;}
.y12_c00165{bottom:565.620000px;}
.y11_c00165{bottom:598.020000px;}
.y10_c00165{bottom:631.770000px;}
.yf_c00165{bottom:665.820000px;}
.ye_c00165{bottom:699.570000px;}
.yd_c00165{bottom:760.770000px;}
.yc_c00165{bottom:824.520000px;}
.yb_c00165{bottom:878.070000px;}
.ya_c00165{bottom:925.020000px;}
.y9_c00165{bottom:1002.420000px;}
.y8_c00165{bottom:1036.470000px;}
.y7_c00165{bottom:1070.520000px;}
.y6_c00165{bottom:1103.970000px;}
.y5_c00165{bottom:1136.970000px;}
.y4_c00165{bottom:1170.720000px;}
.y3_c00165{bottom:1203.570000px;}
.y2_c00165{bottom:1237.170000px;}
.y1_c00165{bottom:1270.020000px;}
.h5_c00165{height:13.200073px;}
.h6_c00165{height:43.804688px;}
.h3_c00165{height:121.546875px;}
.h2_c00165{height:129.143555px;}
.h4_c00165{height:182.320312px;}
.h1_c00165{height:1359.000000px;}
.h0_c00165{height:1359.150000px;}
.w2_c00165{width:104.875500px;}
.w1_c00165{width:848.250000px;}
.w0_c00165{width:848.325000px;}
.x0_c00165{left:0.000000px;}
.xe_c00165{left:140.700000px;}
.x10_c00165{left:142.800000px;}
.xc_c00165{left:147.600000px;}
.x11_c00165{left:254.550000px;}
.xf_c00165{left:255.600000px;}
.xd_c00165{left:258.300000px;}
.x4_c00165{left:259.950000px;}
.x3_c00165{left:261.000000px;}
.xb_c00165{left:262.200000px;}
.x2_c00165{left:263.250000px;}
.x1_c00165{left:264.900000px;}
.x12_c00165{left:269.100000px;}
.x9_c00165{left:278.400000px;}
.x7_c00165{left:310.800000px;}
.x13_c00165{left:375.976730px;}
.x5_c00165{left:401.250000px;}
.xa_c00165{left:407.400000px;}
.x8_c00165{left:501.300000px;}
.x6_c00165{left:517.950000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls4_c00165{letter-spacing:-2.666667pt;}
.ls3_c00165{letter-spacing:0.000000pt;}
.ls5_c00165{letter-spacing:2.666667pt;}
.ls6_c00165{letter-spacing:5.333333pt;}
.ls2_c00165{letter-spacing:12.266667pt;}
.ls1_c00165{letter-spacing:35.200000pt;}
.ls0_c00165{letter-spacing:59.712000pt;}
.ws1_c00165{word-spacing:-45.333333pt;}
.ws4_c00165{word-spacing:-20.565333pt;}
.ws2_c00165{word-spacing:-17.994667pt;}
.ws0_c00165{word-spacing:-5.546667pt;}
.ws5_c00165{word-spacing:0.000000pt;}
.ws3_c00165{word-spacing:6.944000pt;}
._27_c00165{margin-left:-115.456000pt;}
._34_c00165{margin-left:-36.693333pt;}
._2a_c00165{margin-left:-33.792000pt;}
._52_c00165{margin-left:-30.634667pt;}
._28_c00165{margin-left:-28.448000pt;}
._2e_c00165{margin-left:-27.525333pt;}
._57_c00165{margin-left:-25.856000pt;}
._51_c00165{margin-left:-19.712000pt;}
._25_c00165{margin-left:-17.280000pt;}
._2c_c00165{margin-left:-16.256000pt;}
._4b_c00165{margin-left:-15.333333pt;}
._1c_c00165{margin-left:-14.336000pt;}
._4d_c00165{margin-left:-13.205333pt;}
._4e_c00165{margin-left:-12.202667pt;}
._2_c00165{margin-left:-10.698667pt;}
._3e_c00165{margin-left:-9.077333pt;}
._3d_c00165{margin-left:-7.765333pt;}
._3_c00165{margin-left:-6.165333pt;}
._2d_c00165{margin-left:-5.045333pt;}
._44_c00165{margin-left:-4.064000pt;}
._12_c00165{margin-left:-2.933333pt;}
._30_c00165{margin-left:-2.016000pt;}
._f_c00165{margin-left:-1.109333pt;}
._0_c00165{width:1.109333pt;}
._c_c00165{width:2.218667pt;}
._4a_c00165{width:3.109333pt;}
._b_c00165{width:4.005333pt;}
._d_c00165{width:5.504000pt;}
._9_c00165{width:6.709333pt;}
._8_c00165{width:8.069333pt;}
._11_c00165{width:9.802667pt;}
._1_c00165{width:11.349333pt;}
._7_c00165{width:12.576000pt;}
._15_c00165{width:13.482667pt;}
._a_c00165{width:14.512000pt;}
._e_c00165{width:15.536000pt;}
._22_c00165{width:17.413333pt;}
._1a_c00165{width:18.506667pt;}
._40_c00165{width:19.456000pt;}
._1f_c00165{width:22.432000pt;}
._14_c00165{width:23.637333pt;}
._3f_c00165{width:24.746667pt;}
._5_c00165{width:26.368000pt;}
._1e_c00165{width:27.413333pt;}
._6_c00165{width:28.672000pt;}
._18_c00165{width:30.053333pt;}
._13_c00165{width:31.109333pt;}
._42_c00165{width:32.432000pt;}
._4_c00165{width:35.194667pt;}
._1b_c00165{width:36.266667pt;}
._49_c00165{width:37.248000pt;}
._36_c00165{width:38.314667pt;}
._10_c00165{width:39.850667pt;}
._19_c00165{width:40.960000pt;}
._35_c00165{width:41.877333pt;}
._16_c00165{width:44.405333pt;}
._41_c00165{width:45.456000pt;}
._3a_c00165{width:46.506667pt;}
._39_c00165{width:48.240000pt;}
._45_c00165{width:54.042667pt;}
._38_c00165{width:55.402667pt;}
._26_c00165{width:56.704000pt;}
._37_c00165{width:58.426667pt;}
._33_c00165{width:59.562667pt;}
._1d_c00165{width:61.104000pt;}
._2b_c00165{width:64.128000pt;}
._55_c00165{width:67.728000pt;}
._4f_c00165{width:72.874667pt;}
._53_c00165{width:74.666667pt;}
._3c_c00165{width:78.165333pt;}
._2f_c00165{width:83.568000pt;}
._23_c00165{width:93.840000pt;}
._29_c00165{width:98.816000pt;}
._21_c00165{width:106.570667pt;}
._46_c00165{width:110.869333pt;}
._20_c00165{width:111.936000pt;}
._24_c00165{width:117.824000pt;}
._47_c00165{width:149.845333pt;}
._50_c00165{width:166.709333pt;}
._32_c00165{width:181.968000pt;}
._48_c00165{width:226.954667pt;}
._17_c00165{width:233.541333pt;}
._4c_c00165{width:273.146667pt;}
._54_c00165{width:284.224000pt;}
._56_c00165{width:436.224000pt;}
._58_c00165{width:597.573333pt;}
._3b_c00165{width:649.258667pt;}
._31_c00165{width:727.936000pt;}
._43_c00165{width:793.770667pt;}
.fs8_c00165{font-size:26.666667pt;}
.fs9_c00165{font-size:42.666667pt;}
.fs3_c00165{font-size:53.333333pt;}
.fs2_c00165{font-size:64.000000pt;}
.fs5_c00165{font-size:66.666667pt;}
.fs4_c00165{font-size:74.666667pt;}
.fs7_c00165{font-size:82.666667pt;}
.fs0_c00165{font-size:85.333333pt;}
.fs1_c00165{font-size:90.666667pt;}
.fs6_c00165{font-size:128.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y21_c00165{bottom:2.760000pt;}
.y20_c00165{bottom:6.425217pt;}
.y1f_c00165{bottom:116.640000pt;}
.y1e_c00165{bottom:135.306667pt;}
.y1d_c00165{bottom:168.240000pt;}
.y1c_c00165{bottom:201.040000pt;}
.y1b_c00165{bottom:231.040000pt;}
.y1a_c00165{bottom:260.373333pt;}
.y19_c00165{bottom:290.106667pt;}
.y18_c00165{bottom:320.906667pt;}
.y17_c00165{bottom:350.373333pt;}
.y16_c00165{bottom:382.773333pt;}
.y15_c00165{bottom:413.306667pt;}
.y14_c00165{bottom:441.840000pt;}
.y13_c00165{bottom:471.573333pt;}
.y12_c00165{bottom:502.773333pt;}
.y11_c00165{bottom:531.573333pt;}
.y10_c00165{bottom:561.573333pt;}
.yf_c00165{bottom:591.840000pt;}
.ye_c00165{bottom:621.840000pt;}
.yd_c00165{bottom:676.240000pt;}
.yc_c00165{bottom:732.906667pt;}
.yb_c00165{bottom:780.506667pt;}
.ya_c00165{bottom:822.240000pt;}
.y9_c00165{bottom:891.040000pt;}
.y8_c00165{bottom:921.306667pt;}
.y7_c00165{bottom:951.573333pt;}
.y6_c00165{bottom:981.306667pt;}
.y5_c00165{bottom:1010.640000pt;}
.y4_c00165{bottom:1040.640000pt;}
.y3_c00165{bottom:1069.840000pt;}
.y2_c00165{bottom:1099.706667pt;}
.y1_c00165{bottom:1128.906667pt;}
.h5_c00165{height:11.733399pt;}
.h6_c00165{height:38.937500pt;}
.h3_c00165{height:108.041667pt;}
.h2_c00165{height:114.794271pt;}
.h4_c00165{height:162.062500pt;}
.h1_c00165{height:1208.000000pt;}
.h0_c00165{height:1208.133333pt;}
.w2_c00165{width:93.222667pt;}
.w1_c00165{width:754.000000pt;}
.w0_c00165{width:754.066667pt;}
.x0_c00165{left:0.000000pt;}
.xe_c00165{left:125.066667pt;}
.x10_c00165{left:126.933333pt;}
.xc_c00165{left:131.200000pt;}
.x11_c00165{left:226.266667pt;}
.xf_c00165{left:227.200000pt;}
.xd_c00165{left:229.600000pt;}
.x4_c00165{left:231.066667pt;}
.x3_c00165{left:232.000000pt;}
.xb_c00165{left:233.066667pt;}
.x2_c00165{left:234.000000pt;}
.x1_c00165{left:235.466667pt;}
.x12_c00165{left:239.200000pt;}
.x9_c00165{left:247.466667pt;}
.x7_c00165{left:276.266667pt;}
.x13_c00165{left:334.201538pt;}
.x5_c00165{left:356.666667pt;}
.xa_c00165{left:362.133333pt;}
.x8_c00165{left:445.600000pt;}
.x6_c00165{left:460.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_99c2cdae9b62b64cf26ca27a.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_4205d6d41dc8dedf7b6bfc7a.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_97d823cc5789eb2e35b4e763.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;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_c00166;src:url('chunks/assets/font_f0a91e481a1b2e7851e825c5.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00166;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00166{vertical-align:-144.000000px;}
.v0_c00166{vertical-align:0.000000px;}
.ls1_c00166{letter-spacing:-6.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.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:-77.916000px;}
.ws3_c00166{word-spacing:-66.000000px;}
.ws4_c00166{word-spacing:-57.222000px;}
.ws5_c00166{word-spacing:-45.777600px;}
.ws2_c00166{word-spacing:-24.582000px;}
.ws1_c00166{word-spacing:-0.225000px;}
.ws6_c00166{word-spacing:0.000000px;}
._18_c00166{margin-left:-89.844000px;}
._31_c00166{margin-left:-83.640000px;}
._49_c00166{margin-left:-66.300000px;}
._42_c00166{margin-left:-36.012000px;}
._27_c00166{margin-left:-33.150000px;}
._4a_c00166{margin-left:-31.110000px;}
._54_c00166{margin-left:-27.030000px;}
._4_c00166{margin-left:-24.480000px;}
._3a_c00166{margin-left:-22.746000px;}
._5_c00166{margin-left:-19.788000px;}
._6_c00166{margin-left:-18.666000px;}
._28_c00166{margin-left:-16.830000px;}
._37_c00166{margin-left:-15.504000px;}
._29_c00166{margin-left:-13.566000px;}
._3b_c00166{margin-left:-12.444000px;}
._25_c00166{margin-left:-11.322000px;}
._4b_c00166{margin-left:-10.092000px;}
._e_c00166{margin-left:-8.568000px;}
._14_c00166{margin-left:-7.344000px;}
._12_c00166{margin-left:-5.406000px;}
._f_c00166{margin-left:-3.672000px;}
._2_c00166{margin-left:-1.836000px;}
._0_c00166{width:1.326000px;}
._9_c00166{width:2.346000px;}
._a_c00166{width:3.570000px;}
._8_c00166{width:4.794000px;}
._2f_c00166{width:6.018000px;}
._11_c00166{width:7.446000px;}
._21_c00166{width:9.072000px;}
._23_c00166{width:10.212000px;}
._13_c00166{width:11.730000px;}
._10_c00166{width:13.056000px;}
._3_c00166{width:14.178000px;}
._22_c00166{width:16.218000px;}
._1_c00166{width:18.156000px;}
._b_c00166{width:19.788000px;}
._c_c00166{width:21.726000px;}
._2a_c00166{width:22.848000px;}
._2c_c00166{width:26.418000px;}
._17_c00166{width:27.648000px;}
._1b_c00166{width:28.968000px;}
._2b_c00166{width:31.008000px;}
._7_c00166{width:32.742000px;}
._2e_c00166{width:33.864000px;}
._1a_c00166{width:35.088000px;}
._48_c00166{width:36.108000px;}
._15_c00166{width:37.128000px;}
._1c_c00166{width:41.310000px;}
._1e_c00166{width:43.350000px;}
._20_c00166{width:46.104000px;}
._1f_c00166{width:47.430000px;}
._46_c00166{width:48.444000px;}
._3c_c00166{width:50.082000px;}
._44_c00166{width:52.434000px;}
._40_c00166{width:55.080000px;}
._1d_c00166{width:57.222000px;}
._d_c00166{width:58.956000px;}
._34_c00166{width:60.882000px;}
._4c_c00166{width:67.878000px;}
._32_c00166{width:71.706000px;}
._43_c00166{width:73.632000px;}
._2d_c00166{width:82.620000px;}
._51_c00166{width:84.648000px;}
._24_c00166{width:89.046000px;}
._45_c00166{width:102.522000px;}
._47_c00166{width:117.006000px;}
._26_c00166{width:124.542000px;}
._41_c00166{width:158.916000px;}
._53_c00166{width:166.362000px;}
._52_c00166{width:181.050000px;}
._3e_c00166{width:207.270000px;}
._4e_c00166{width:208.998000px;}
._4d_c00166{width:214.710000px;}
._38_c00166{width:261.120000px;}
._33_c00166{width:272.850000px;}
._50_c00166{width:280.704000px;}
._36_c00166{width:335.070000px;}
._35_c00166{width:343.026000px;}
._16_c00166{width:347.616000px;}
._4f_c00166{width:375.870000px;}
._39_c00166{width:399.330000px;}
._3d_c00166{width:452.982000px;}
._3f_c00166{width:634.950000px;}
._30_c00166{width:1017.246000px;}
._19_c00166{width:1307.844000px;}
._55_c00166{width:1768.476000px;}
.fc2_c00166{color:transparent;}
.fc1_c00166{color:rgb(128,128,128);}
.fc0_c00166{color:rgb(0,0,0);}
.fs5_c00166{font-size:48.000000px;}
.fs4_c00166{font-size:81.600000px;}
.fs0_c00166{font-size:102.000000px;}
.fs1_c00166{font-size:111.000000px;}
.fs3_c00166{font-size:132.000000px;}
.fs2_c00166{font-size:225.000000px;}
.y0_c00166{bottom:0.000000px;}
.y24_c00166{bottom:3.105000px;}
.y23_c00166{bottom:7.228369px;}
.y22_c00166{bottom:142.020000px;}
.y21_c00166{bottom:177.420000px;}
.y20_c00166{bottom:211.920000px;}
.y1f_c00166{bottom:245.070000px;}
.y1e_c00166{bottom:278.370000px;}
.y1d_c00166{bottom:313.920000px;}
.y1c_c00166{bottom:346.920000px;}
.y1b_c00166{bottom:382.020000px;}
.y1a_c00166{bottom:413.820000px;}
.y19_c00166{bottom:449.820000px;}
.y18_c00166{bottom:482.670000px;}
.y17_c00166{bottom:516.720000px;}
.y16_c00166{bottom:550.170000px;}
.y15_c00166{bottom:583.170000px;}
.y14_c00166{bottom:617.220000px;}
.y13_c00166{bottom:649.920000px;}
.y12_c00166{bottom:684.120000px;}
.y11_c00166{bottom:717.870000px;}
.y10_c00166{bottom:751.320000px;}
.yf_c00166{bottom:781.620000px;}
.ye_c00166{bottom:818.370000px;}
.yd_c00166{bottom:851.820000px;}
.yc_c00166{bottom:883.920000px;}
.yb_c00166{bottom:918.720000px;}
.ya_c00166{bottom:952.770000px;}
.y9_c00166{bottom:985.770000px;}
.y8_c00166{bottom:1054.620000px;}
.y7_c00166{bottom:1085.970000px;}
.y6_c00166{bottom:1119.870000px;}
.y5_c00166{bottom:1153.170000px;}
.y4_c00166{bottom:1186.320000px;}
.y3_c00166{bottom:1219.620000px;}
.y2_c00166{bottom:1252.770000px;}
.y1_c00166{bottom:1286.820000px;}
.h5_c00166{height:13.200073px;}
.h6_c00166{height:43.804688px;}
.h2_c00166{height:129.143555px;}
.h4_c00166{height:133.031250px;}
.h3_c00166{height:224.450684px;}
.h0_c00166{height:1383.450000px;}
.h1_c00166{height:1383.750000px;}
.w2_c00166{width:104.875500px;}
.w0_c00166{width:878.025000px;}
.w1_c00166{width:878.250000px;}
.x0_c00166{left:0.000000px;}
.x10_c00166{left:51.000000px;}
.xc_c00166{left:52.200000px;}
.xf_c00166{left:53.700000px;}
.xa_c00166{left:54.900000px;}
.x8_c00166{left:57.000000px;}
.x6_c00166{left:59.700000px;}
.x5_c00166{left:60.750000px;}
.x4_c00166{left:61.800000px;}
.x3_c00166{left:62.850000px;}
.x2_c00166{left:65.550000px;}
.xd_c00166{left:107.700000px;}
.xe_c00166{left:117.450000px;}
.xb_c00166{left:119.700000px;}
.x9_c00166{left:121.200000px;}
.x7_c00166{left:124.500000px;}
.x1_c00166{left:128.700000px;}
.x11_c00166{left:136.350000px;}
.x12_c00166{left:390.826721px;}
@media print{
.v1_c00166{vertical-align:-128.000000pt;}
.v0_c00166{vertical-align:0.000000pt;}
.ls1_c00166{letter-spacing:-5.333333pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:-69.258667pt;}
.ws3_c00166{word-spacing:-58.666667pt;}
.ws4_c00166{word-spacing:-50.864000pt;}
.ws5_c00166{word-spacing:-40.691200pt;}
.ws2_c00166{word-spacing:-21.850667pt;}
.ws1_c00166{word-spacing:-0.200000pt;}
.ws6_c00166{word-spacing:0.000000pt;}
._18_c00166{margin-left:-79.861333pt;}
._31_c00166{margin-left:-74.346667pt;}
._49_c00166{margin-left:-58.933333pt;}
._42_c00166{margin-left:-32.010667pt;}
._27_c00166{margin-left:-29.466667pt;}
._4a_c00166{margin-left:-27.653333pt;}
._54_c00166{margin-left:-24.026667pt;}
._4_c00166{margin-left:-21.760000pt;}
._3a_c00166{margin-left:-20.218667pt;}
._5_c00166{margin-left:-17.589333pt;}
._6_c00166{margin-left:-16.592000pt;}
._28_c00166{margin-left:-14.960000pt;}
._37_c00166{margin-left:-13.781333pt;}
._29_c00166{margin-left:-12.058667pt;}
._3b_c00166{margin-left:-11.061333pt;}
._25_c00166{margin-left:-10.064000pt;}
._4b_c00166{margin-left:-8.970667pt;}
._e_c00166{margin-left:-7.616000pt;}
._14_c00166{margin-left:-6.528000pt;}
._12_c00166{margin-left:-4.805333pt;}
._f_c00166{margin-left:-3.264000pt;}
._2_c00166{margin-left:-1.632000pt;}
._0_c00166{width:1.178667pt;}
._9_c00166{width:2.085333pt;}
._a_c00166{width:3.173333pt;}
._8_c00166{width:4.261333pt;}
._2f_c00166{width:5.349333pt;}
._11_c00166{width:6.618667pt;}
._21_c00166{width:8.064000pt;}
._23_c00166{width:9.077333pt;}
._13_c00166{width:10.426667pt;}
._10_c00166{width:11.605333pt;}
._3_c00166{width:12.602667pt;}
._22_c00166{width:14.416000pt;}
._1_c00166{width:16.138667pt;}
._b_c00166{width:17.589333pt;}
._c_c00166{width:19.312000pt;}
._2a_c00166{width:20.309333pt;}
._2c_c00166{width:23.482667pt;}
._17_c00166{width:24.576000pt;}
._1b_c00166{width:25.749333pt;}
._2b_c00166{width:27.562667pt;}
._7_c00166{width:29.104000pt;}
._2e_c00166{width:30.101333pt;}
._1a_c00166{width:31.189333pt;}
._48_c00166{width:32.096000pt;}
._15_c00166{width:33.002667pt;}
._1c_c00166{width:36.720000pt;}
._1e_c00166{width:38.533333pt;}
._20_c00166{width:40.981333pt;}
._1f_c00166{width:42.160000pt;}
._46_c00166{width:43.061333pt;}
._3c_c00166{width:44.517333pt;}
._44_c00166{width:46.608000pt;}
._40_c00166{width:48.960000pt;}
._1d_c00166{width:50.864000pt;}
._d_c00166{width:52.405333pt;}
._34_c00166{width:54.117333pt;}
._4c_c00166{width:60.336000pt;}
._32_c00166{width:63.738667pt;}
._43_c00166{width:65.450667pt;}
._2d_c00166{width:73.440000pt;}
._51_c00166{width:75.242667pt;}
._24_c00166{width:79.152000pt;}
._45_c00166{width:91.130667pt;}
._47_c00166{width:104.005333pt;}
._26_c00166{width:110.704000pt;}
._41_c00166{width:141.258667pt;}
._53_c00166{width:147.877333pt;}
._52_c00166{width:160.933333pt;}
._3e_c00166{width:184.240000pt;}
._4e_c00166{width:185.776000pt;}
._4d_c00166{width:190.853333pt;}
._38_c00166{width:232.106667pt;}
._33_c00166{width:242.533333pt;}
._50_c00166{width:249.514667pt;}
._36_c00166{width:297.840000pt;}
._35_c00166{width:304.912000pt;}
._16_c00166{width:308.992000pt;}
._4f_c00166{width:334.106667pt;}
._39_c00166{width:354.960000pt;}
._3d_c00166{width:402.650667pt;}
._3f_c00166{width:564.400000pt;}
._30_c00166{width:904.218667pt;}
._19_c00166{width:1162.528000pt;}
._55_c00166{width:1571.978667pt;}
.fs5_c00166{font-size:42.666667pt;}
.fs4_c00166{font-size:72.533333pt;}
.fs0_c00166{font-size:90.666667pt;}
.fs1_c00166{font-size:98.666667pt;}
.fs3_c00166{font-size:117.333333pt;}
.fs2_c00166{font-size:200.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y24_c00166{bottom:2.760000pt;}
.y23_c00166{bottom:6.425217pt;}
.y22_c00166{bottom:126.240000pt;}
.y21_c00166{bottom:157.706667pt;}
.y20_c00166{bottom:188.373333pt;}
.y1f_c00166{bottom:217.840000pt;}
.y1e_c00166{bottom:247.440000pt;}
.y1d_c00166{bottom:279.040000pt;}
.y1c_c00166{bottom:308.373333pt;}
.y1b_c00166{bottom:339.573333pt;}
.y1a_c00166{bottom:367.840000pt;}
.y19_c00166{bottom:399.840000pt;}
.y18_c00166{bottom:429.040000pt;}
.y17_c00166{bottom:459.306667pt;}
.y16_c00166{bottom:489.040000pt;}
.y15_c00166{bottom:518.373333pt;}
.y14_c00166{bottom:548.640000pt;}
.y13_c00166{bottom:577.706667pt;}
.y12_c00166{bottom:608.106667pt;}
.y11_c00166{bottom:638.106667pt;}
.y10_c00166{bottom:667.840000pt;}
.yf_c00166{bottom:694.773333pt;}
.ye_c00166{bottom:727.440000pt;}
.yd_c00166{bottom:757.173333pt;}
.yc_c00166{bottom:785.706667pt;}
.yb_c00166{bottom:816.640000pt;}
.ya_c00166{bottom:846.906667pt;}
.y9_c00166{bottom:876.240000pt;}
.y8_c00166{bottom:937.440000pt;}
.y7_c00166{bottom:965.306667pt;}
.y6_c00166{bottom:995.440000pt;}
.y5_c00166{bottom:1025.040000pt;}
.y4_c00166{bottom:1054.506667pt;}
.y3_c00166{bottom:1084.106667pt;}
.y2_c00166{bottom:1113.573333pt;}
.y1_c00166{bottom:1143.840000pt;}
.h5_c00166{height:11.733399pt;}
.h6_c00166{height:38.937500pt;}
.h2_c00166{height:114.794271pt;}
.h4_c00166{height:118.250000pt;}
.h3_c00166{height:199.511719pt;}
.h0_c00166{height:1229.733333pt;}
.h1_c00166{height:1230.000000pt;}
.w2_c00166{width:93.222667pt;}
.w0_c00166{width:780.466667pt;}
.w1_c00166{width:780.666667pt;}
.x0_c00166{left:0.000000pt;}
.x10_c00166{left:45.333333pt;}
.xc_c00166{left:46.400000pt;}
.xf_c00166{left:47.733333pt;}
.xa_c00166{left:48.800000pt;}
.x8_c00166{left:50.666667pt;}
.x6_c00166{left:53.066667pt;}
.x5_c00166{left:54.000000pt;}
.x4_c00166{left:54.933333pt;}
.x3_c00166{left:55.866667pt;}
.x2_c00166{left:58.266667pt;}
.xd_c00166{left:95.733333pt;}
.xe_c00166{left:104.400000pt;}
.xb_c00166{left:106.400000pt;}
.x9_c00166{left:107.733333pt;}
.x7_c00166{left:110.666667pt;}
.x1_c00166{left:114.400000pt;}
.x11_c00166{left:121.200000pt;}
.x12_c00166{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e95bb832096792a931ac713e.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_59ab3c590ab386cba8e86a4f.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_d7b17da4c3c08efd15f4601a.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.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:-51.000000px;}
.ws0_c00167{word-spacing:-23.136000px;}
.ws1_c00167{word-spacing:-20.244000px;}
.ws3_c00167{word-spacing:0.000000px;}
._52_c00167{margin-left:-82.272000px;}
._13_c00167{margin-left:-81.024000px;}
._2d_c00167{margin-left:-78.624000px;}
._47_c00167{margin-left:-70.176000px;}
._3a_c00167{margin-left:-47.616000px;}
._33_c00167{margin-left:-36.576000px;}
._12_c00167{margin-left:-30.144000px;}
._26_c00167{margin-left:-28.032000px;}
._2a_c00167{margin-left:-26.688000px;}
._35_c00167{margin-left:-25.344000px;}
._51_c00167{margin-left:-23.616000px;}
._3c_c00167{margin-left:-18.432000px;}
._53_c00167{margin-left:-16.512000px;}
._46_c00167{margin-left:-14.976000px;}
._9_c00167{margin-left:-13.056000px;}
._41_c00167{margin-left:-11.904000px;}
._a_c00167{margin-left:-9.312000px;}
._1c_c00167{margin-left:-7.968000px;}
._31_c00167{margin-left:-6.240000px;}
._c_c00167{margin-left:-5.184000px;}
._b_c00167{margin-left:-4.032000px;}
._f_c00167{margin-left:-2.976000px;}
._e_c00167{margin-left:-1.344000px;}
._1_c00167{width:1.152000px;}
._0_c00167{width:2.208000px;}
._2_c00167{width:4.128000px;}
._7_c00167{width:5.184000px;}
._5_c00167{width:6.528000px;}
._16_c00167{width:7.584000px;}
._6_c00167{width:8.928000px;}
._19_c00167{width:10.080000px;}
._18_c00167{width:12.096000px;}
._3_c00167{width:14.112000px;}
._4_c00167{width:15.456000px;}
._3b_c00167{width:16.608000px;}
._8_c00167{width:18.048000px;}
._58_c00167{width:19.104000px;}
._d_c00167{width:20.160000px;}
._30_c00167{width:21.216000px;}
._10_c00167{width:24.768000px;}
._23_c00167{width:26.688000px;}
._28_c00167{width:29.088000px;}
._17_c00167{width:30.144000px;}
._27_c00167{width:32.064000px;}
._37_c00167{width:34.176000px;}
._1a_c00167{width:36.864000px;}
._15_c00167{width:37.920000px;}
._2f_c00167{width:40.512000px;}
._1f_c00167{width:41.568000px;}
._1b_c00167{width:43.392000px;}
._20_c00167{width:50.112000px;}
._4c_c00167{width:54.624000px;}
._1e_c00167{width:56.256000px;}
._21_c00167{width:60.192000px;}
._2c_c00167{width:74.676000px;}
._3e_c00167{width:77.184000px;}
._54_c00167{width:88.128000px;}
._2e_c00167{width:94.464000px;}
._11_c00167{width:105.024000px;}
._24_c00167{width:106.080000px;}
._1d_c00167{width:120.576000px;}
._42_c00167{width:137.952000px;}
._4a_c00167{width:159.744000px;}
._4e_c00167{width:164.064000px;}
._25_c00167{width:172.416000px;}
._14_c00167{width:178.752000px;}
._50_c00167{width:220.608000px;}
._57_c00167{width:222.912000px;}
._34_c00167{width:226.464000px;}
._55_c00167{width:242.880000px;}
._39_c00167{width:252.000000px;}
._38_c00167{width:258.624000px;}
._45_c00167{width:261.600000px;}
._32_c00167{width:262.944000px;}
._40_c00167{width:267.360000px;}
._44_c00167{width:275.904000px;}
._56_c00167{width:293.472000px;}
._29_c00167{width:324.672000px;}
._4b_c00167{width:328.512000px;}
._36_c00167{width:336.960000px;}
._3f_c00167{width:338.688000px;}
._4f_c00167{width:340.320000px;}
._49_c00167{width:343.104000px;}
._3d_c00167{width:348.384000px;}
._43_c00167{width:349.440000px;}
._2b_c00167{width:571.512000px;}
._4d_c00167{width:946.848000px;}
._48_c00167{width:1046.496000px;}
._22_c00167{width:1856.736000px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(128,128,128);}
.fc0_c00167{color:rgb(0,0,0);}
.fs3_c00167{font-size:48.000000px;}
.fs1_c00167{font-size:84.000000px;}
.fs0_c00167{font-size:96.000000px;}
.fs2_c00167{font-size:102.000000px;}
.y0_c00167{bottom:0.000000px;}
.y24_c00167{bottom:3.105000px;}
.y23_c00167{bottom:7.228357px;}
.y22_c00167{bottom:118.230000px;}
.y21_c00167{bottom:187.980000px;}
.y20_c00167{bottom:221.430000px;}
.y1f_c00167{bottom:253.230000px;}
.y1e_c00167{bottom:289.530000px;}
.y1d_c00167{bottom:323.730000px;}
.y1c_c00167{bottom:358.830000px;}
.y1b_c00167{bottom:392.130000px;}
.y1a_c00167{bottom:425.880000px;}
.y19_c00167{bottom:462.330000px;}
.y18_c00167{bottom:496.230000px;}
.y17_c00167{bottom:530.580000px;}
.y16_c00167{bottom:563.730000px;}
.y15_c00167{bottom:596.130000px;}
.y14_c00167{bottom:630.480000px;}
.y13_c00167{bottom:663.630000px;}
.y12_c00167{bottom:698.580000px;}
.y11_c00167{bottom:731.730000px;}
.y10_c00167{bottom:765.780000px;}
.yf_c00167{bottom:798.630000px;}
.ye_c00167{bottom:832.680000px;}
.yd_c00167{bottom:866.730000px;}
.yc_c00167{bottom:899.880000px;}
.yb_c00167{bottom:933.480000px;}
.ya_c00167{bottom:964.980000px;}
.y9_c00167{bottom:1001.730000px;}
.y8_c00167{bottom:1032.480000px;}
.y7_c00167{bottom:1068.180000px;}
.y6_c00167{bottom:1099.530000px;}
.y5_c00167{bottom:1134.630000px;}
.y4_c00167{bottom:1167.480000px;}
.y3_c00167{bottom:1200.480000px;}
.y2_c00167{bottom:1236.630000px;}
.y1_c00167{bottom:1269.630000px;}
.h3_c00167{height:13.200074px;}
.h4_c00167{height:43.804688px;}
.h2_c00167{height:121.546875px;}
.h0_c00167{height:1362.450000px;}
.h1_c00167{height:1362.750000px;}
.w2_c00167{width:104.875500px;}
.w1_c00167{width:849.750000px;}
.w0_c00167{width:849.975000px;}
.x0_c00167{left:0.000000px;}
.x9_c00167{left:112.050000px;}
.xd_c00167{left:115.350000px;}
.x6_c00167{left:120.600000px;}
.x2_c00167{left:121.800000px;}
.x5_c00167{left:122.850000px;}
.xc_c00167{left:140.700000px;}
.x13_c00167{left:141.750000px;}
.x7_c00167{left:146.550000px;}
.x14_c00167{left:157.500000px;}
.x12_c00167{left:158.550000px;}
.xe_c00167{left:164.400000px;}
.xf_c00167{left:165.600000px;}
.x8_c00167{left:174.150000px;}
.x15_c00167{left:180.600000px;}
.x11_c00167{left:193.050000px;}
.x4_c00167{left:220.650000px;}
.xb_c00167{left:222.750000px;}
.x3_c00167{left:261.000000px;}
.x1_c00167{left:262.200000px;}
.xa_c00167{left:263.850000px;}
.x10_c00167{left:265.950000px;}
.x17_c00167{left:376.801758px;}
.x16_c00167{left:782.700000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws2_c00167{word-spacing:-45.333333pt;}
.ws0_c00167{word-spacing:-20.565333pt;}
.ws1_c00167{word-spacing:-17.994667pt;}
.ws3_c00167{word-spacing:0.000000pt;}
._52_c00167{margin-left:-73.130667pt;}
._13_c00167{margin-left:-72.021333pt;}
._2d_c00167{margin-left:-69.888000pt;}
._47_c00167{margin-left:-62.378667pt;}
._3a_c00167{margin-left:-42.325333pt;}
._33_c00167{margin-left:-32.512000pt;}
._12_c00167{margin-left:-26.794667pt;}
._26_c00167{margin-left:-24.917333pt;}
._2a_c00167{margin-left:-23.722667pt;}
._35_c00167{margin-left:-22.528000pt;}
._51_c00167{margin-left:-20.992000pt;}
._3c_c00167{margin-left:-16.384000pt;}
._53_c00167{margin-left:-14.677333pt;}
._46_c00167{margin-left:-13.312000pt;}
._9_c00167{margin-left:-11.605333pt;}
._41_c00167{margin-left:-10.581333pt;}
._a_c00167{margin-left:-8.277333pt;}
._1c_c00167{margin-left:-7.082667pt;}
._31_c00167{margin-left:-5.546667pt;}
._c_c00167{margin-left:-4.608000pt;}
._b_c00167{margin-left:-3.584000pt;}
._f_c00167{margin-left:-2.645333pt;}
._e_c00167{margin-left:-1.194667pt;}
._1_c00167{width:1.024000pt;}
._0_c00167{width:1.962667pt;}
._2_c00167{width:3.669333pt;}
._7_c00167{width:4.608000pt;}
._5_c00167{width:5.802667pt;}
._16_c00167{width:6.741333pt;}
._6_c00167{width:7.936000pt;}
._19_c00167{width:8.960000pt;}
._18_c00167{width:10.752000pt;}
._3_c00167{width:12.544000pt;}
._4_c00167{width:13.738667pt;}
._3b_c00167{width:14.762667pt;}
._8_c00167{width:16.042667pt;}
._58_c00167{width:16.981333pt;}
._d_c00167{width:17.920000pt;}
._30_c00167{width:18.858667pt;}
._10_c00167{width:22.016000pt;}
._23_c00167{width:23.722667pt;}
._28_c00167{width:25.856000pt;}
._17_c00167{width:26.794667pt;}
._27_c00167{width:28.501333pt;}
._37_c00167{width:30.378667pt;}
._1a_c00167{width:32.768000pt;}
._15_c00167{width:33.706667pt;}
._2f_c00167{width:36.010667pt;}
._1f_c00167{width:36.949333pt;}
._1b_c00167{width:38.570667pt;}
._20_c00167{width:44.544000pt;}
._4c_c00167{width:48.554667pt;}
._1e_c00167{width:50.005333pt;}
._21_c00167{width:53.504000pt;}
._2c_c00167{width:66.378667pt;}
._3e_c00167{width:68.608000pt;}
._54_c00167{width:78.336000pt;}
._2e_c00167{width:83.968000pt;}
._11_c00167{width:93.354667pt;}
._24_c00167{width:94.293333pt;}
._1d_c00167{width:107.178667pt;}
._42_c00167{width:122.624000pt;}
._4a_c00167{width:141.994667pt;}
._4e_c00167{width:145.834667pt;}
._25_c00167{width:153.258667pt;}
._14_c00167{width:158.890667pt;}
._50_c00167{width:196.096000pt;}
._57_c00167{width:198.144000pt;}
._34_c00167{width:201.301333pt;}
._55_c00167{width:215.893333pt;}
._39_c00167{width:224.000000pt;}
._38_c00167{width:229.888000pt;}
._45_c00167{width:232.533333pt;}
._32_c00167{width:233.728000pt;}
._40_c00167{width:237.653333pt;}
._44_c00167{width:245.248000pt;}
._56_c00167{width:260.864000pt;}
._29_c00167{width:288.597333pt;}
._4b_c00167{width:292.010667pt;}
._36_c00167{width:299.520000pt;}
._3f_c00167{width:301.056000pt;}
._4f_c00167{width:302.506667pt;}
._49_c00167{width:304.981333pt;}
._3d_c00167{width:309.674667pt;}
._43_c00167{width:310.613333pt;}
._2b_c00167{width:508.010667pt;}
._4d_c00167{width:841.642667pt;}
._48_c00167{width:930.218667pt;}
._22_c00167{width:1650.432000pt;}
.fs3_c00167{font-size:42.666667pt;}
.fs1_c00167{font-size:74.666667pt;}
.fs0_c00167{font-size:85.333333pt;}
.fs2_c00167{font-size:90.666667pt;}
.y0_c00167{bottom:0.000000pt;}
.y24_c00167{bottom:2.760000pt;}
.y23_c00167{bottom:6.425206pt;}
.y22_c00167{bottom:105.093333pt;}
.y21_c00167{bottom:167.093333pt;}
.y20_c00167{bottom:196.826667pt;}
.y1f_c00167{bottom:225.093333pt;}
.y1e_c00167{bottom:257.360000pt;}
.y1d_c00167{bottom:287.760000pt;}
.y1c_c00167{bottom:318.960000pt;}
.y1b_c00167{bottom:348.560000pt;}
.y1a_c00167{bottom:378.560000pt;}
.y19_c00167{bottom:410.960000pt;}
.y18_c00167{bottom:441.093333pt;}
.y17_c00167{bottom:471.626667pt;}
.y16_c00167{bottom:501.093333pt;}
.y15_c00167{bottom:529.893333pt;}
.y14_c00167{bottom:560.426667pt;}
.y13_c00167{bottom:589.893333pt;}
.y12_c00167{bottom:620.960000pt;}
.y11_c00167{bottom:650.426667pt;}
.y10_c00167{bottom:680.693333pt;}
.yf_c00167{bottom:709.893333pt;}
.ye_c00167{bottom:740.160000pt;}
.yd_c00167{bottom:770.426667pt;}
.yc_c00167{bottom:799.893333pt;}
.yb_c00167{bottom:829.760000pt;}
.ya_c00167{bottom:857.760000pt;}
.y9_c00167{bottom:890.426667pt;}
.y8_c00167{bottom:917.760000pt;}
.y7_c00167{bottom:949.493333pt;}
.y6_c00167{bottom:977.360000pt;}
.y5_c00167{bottom:1008.560000pt;}
.y4_c00167{bottom:1037.760000pt;}
.y3_c00167{bottom:1067.093333pt;}
.y2_c00167{bottom:1099.226667pt;}
.y1_c00167{bottom:1128.560000pt;}
.h3_c00167{height:11.733399pt;}
.h4_c00167{height:38.937500pt;}
.h2_c00167{height:108.041667pt;}
.h0_c00167{height:1211.066667pt;}
.h1_c00167{height:1211.333333pt;}
.w2_c00167{width:93.222667pt;}
.w1_c00167{width:755.333333pt;}
.w0_c00167{width:755.533333pt;}
.x0_c00167{left:0.000000pt;}
.x9_c00167{left:99.600000pt;}
.xd_c00167{left:102.533333pt;}
.x6_c00167{left:107.200000pt;}
.x2_c00167{left:108.266667pt;}
.x5_c00167{left:109.200000pt;}
.xc_c00167{left:125.066667pt;}
.x13_c00167{left:126.000000pt;}
.x7_c00167{left:130.266667pt;}
.x14_c00167{left:140.000000pt;}
.x12_c00167{left:140.933333pt;}
.xe_c00167{left:146.133333pt;}
.xf_c00167{left:147.200000pt;}
.x8_c00167{left:154.800000pt;}
.x15_c00167{left:160.533333pt;}
.x11_c00167{left:171.600000pt;}
.x4_c00167{left:196.133333pt;}
.xb_c00167{left:198.000000pt;}
.x3_c00167{left:232.000000pt;}
.x1_c00167{left:233.066667pt;}
.xa_c00167{left:234.533333pt;}
.x10_c00167{left:236.400000pt;}
.x17_c00167{left:334.934896pt;}
.x16_c00167{left:695.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_22ee5e309d78015dd0212aee.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_ccb576a647932cb5f77a8e25.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;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_c00168;src:url('chunks/assets/font_53678cba2a5388cedd00eb5c.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_8bd7c00f2add9fbf0c564a1a.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_aa4fe4bb42abef915c745b77.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00168;src:url('chunks/assets/font_e3e453f85f297826d975cba3.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00168;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00168{font-family:ff7_c00168;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00168{vertical-align:-78.600000px;}
.v0_c00168{vertical-align:0.000000px;}
.ls3_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:1.920000px;}
.ls2_c00168{letter-spacing:5.100000px;}
.ls4_c00168{letter-spacing:6.000000px;}
.ls1_c00168{letter-spacing:9.600000px;}
.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;}
}
.ws1_c00168{word-spacing:-63.504000px;}
.ws0_c00168{word-spacing:-52.023000px;}
.ws2_c00168{word-spacing:-23.136000px;}
.ws3_c00168{word-spacing:0.000000px;}
._4a_c00168{margin-left:-37.152000px;}
._4b_c00168{margin-left:-30.816000px;}
._41_c00168{margin-left:-28.512000px;}
._44_c00168{margin-left:-24.360000px;}
._33_c00168{margin-left:-21.600000px;}
._2e_c00168{margin-left:-19.200000px;}
._f_c00168{margin-left:-16.992000px;}
._2f_c00168{margin-left:-15.456000px;}
._7_c00168{margin-left:-13.728000px;}
._48_c00168{margin-left:-11.040000px;}
._30_c00168{margin-left:-9.696000px;}
._8_c00168{margin-left:-8.256000px;}
._c_c00168{margin-left:-6.720000px;}
._36_c00168{margin-left:-5.472000px;}
._1b_c00168{margin-left:-4.320000px;}
._18_c00168{margin-left:-2.400000px;}
._d_c00168{margin-left:-1.248000px;}
._1c_c00168{width:1.056000px;}
._1_c00168{width:2.112000px;}
._2_c00168{width:3.936000px;}
._3_c00168{width:5.184000px;}
._0_c00168{width:6.912000px;}
._b_c00168{width:8.160000px;}
._4_c00168{width:9.216000px;}
._2c_c00168{width:10.272000px;}
._a_c00168{width:11.328000px;}
._10_c00168{width:12.960000px;}
._6_c00168{width:14.592000px;}
._19_c00168{width:16.032000px;}
._5_c00168{width:17.472000px;}
._11_c00168{width:19.104000px;}
._9_c00168{width:21.216000px;}
._2b_c00168{width:24.192000px;}
._16_c00168{width:25.440000px;}
._15_c00168{width:26.976000px;}
._17_c00168{width:28.224000px;}
._1a_c00168{width:29.472000px;}
._34_c00168{width:30.936000px;}
._28_c00168{width:31.968000px;}
._20_c00168{width:33.024000px;}
._25_c00168{width:34.272000px;}
._12_c00168{width:36.096000px;}
._2d_c00168{width:37.728000px;}
._26_c00168{width:39.264000px;}
._14_c00168{width:40.704000px;}
._1d_c00168{width:42.048000px;}
._24_c00168{width:43.200000px;}
._23_c00168{width:44.928000px;}
._21_c00168{width:47.232000px;}
._1e_c00168{width:48.960000px;}
._32_c00168{width:50.304000px;}
._1f_c00168{width:52.128000px;}
._27_c00168{width:54.144000px;}
._39_c00168{width:56.520000px;}
._29_c00168{width:68.256000px;}
._43_c00168{width:71.040000px;}
._45_c00168{width:79.872000px;}
._31_c00168{width:82.464000px;}
._e_c00168{width:83.904000px;}
._3d_c00168{width:102.588000px;}
._22_c00168{width:105.648000px;}
._47_c00168{width:108.000000px;}
._2a_c00168{width:129.600000px;}
._3a_c00168{width:138.228000px;}
._46_c00168{width:154.464000px;}
._13_c00168{width:178.848000px;}
._3c_c00168{width:182.520000px;}
._3e_c00168{width:224.904000px;}
._3b_c00168{width:334.080000px;}
._3f_c00168{width:361.392000px;}
._37_c00168{width:366.240000px;}
._42_c00168{width:392.424000px;}
._40_c00168{width:418.164000px;}
._49_c00168{width:566.688000px;}
._35_c00168{width:685.152000px;}
._38_c00168{width:1512.576000px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(128,128,128);}
.fc0_c00168{color:rgb(0,0,0);}
.fs6_c00168{font-size:36.000000px;}
.fs7_c00168{font-size:48.000000px;}
.fs2_c00168{font-size:69.000000px;}
.fs4_c00168{font-size:84.000000px;}
.fs0_c00168{font-size:87.000000px;}
.fs1_c00168{font-size:96.000000px;}
.fs5_c00168{font-size:102.000000px;}
.fs3_c00168{font-size:129.000000px;}
.y0_c00168{bottom:0.000000px;}
.y2a_c00168{bottom:3.105000px;}
.y29_c00168{bottom:7.228371px;}
.y27_c00168{bottom:52.665000px;}
.y28_c00168{bottom:63.165000px;}
.y26_c00168{bottom:89.415000px;}
.y25_c00168{bottom:122.865000px;}
.y24_c00168{bottom:157.665000px;}
.y23_c00168{bottom:174.615000px;}
.y22_c00168{bottom:190.665000px;}
.y21_c00168{bottom:224.565000px;}
.y20_c00168{bottom:260.865000px;}
.y1f_c00168{bottom:292.365000px;}
.y1e_c00168{bottom:326.715000px;}
.y1d_c00168{bottom:360.165000px;}
.y1c_c00168{bottom:395.865000px;}
.y1b_c00168{bottom:428.415000px;}
.y1a_c00168{bottom:462.165000px;}
.y19_c00168{bottom:495.915000px;}
.y18_c00168{bottom:528.165000px;}
.y17_c00168{bottom:563.415000px;}
.y16_c00168{bottom:597.015000px;}
.y15_c00168{bottom:629.565000px;}
.y14_c00168{bottom:663.315000px;}
.y13_c00168{bottom:696.915000px;}
.y12_c00168{bottom:730.665000px;}
.y11_c00168{bottom:765.165000px;}
.y10_c00168{bottom:798.165000px;}
.yf_c00168{bottom:831.315000px;}
.ye_c00168{bottom:864.315000px;}
.yd_c00168{bottom:876.465000px;}
.yc_c00168{bottom:898.215000px;}
.yb_c00168{bottom:931.965000px;}
.ya_c00168{bottom:965.565000px;}
.y9_c00168{bottom:999.465000px;}
.y8_c00168{bottom:1033.065000px;}
.y7_c00168{bottom:1066.215000px;}
.y6_c00168{bottom:1099.965000px;}
.y5_c00168{bottom:1133.115000px;}
.y4_c00168{bottom:1166.715000px;}
.y3_c00168{bottom:1199.265000px;}
.y2_c00168{bottom:1233.015000px;}
.y1_c00168{bottom:1251.765000px;}
.h7_c00168{height:13.200074px;}
.h8_c00168{height:43.804688px;}
.h6_c00168{height:45.580078px;}
.h4_c00168{height:67.719727px;}
.h2_c00168{height:110.151855px;}
.h3_c00168{height:121.546875px;}
.h5_c00168{height:137.643000px;}
.h0_c00168{height:1360.275000px;}
.h1_c00168{height:1360.500000px;}
.w2_c00168{width:104.875500px;}
.w1_c00168{width:863.250000px;}
.w0_c00168{width:863.475000px;}
.x0_c00168{left:0.000000px;}
.xd_c00168{left:49.950000px;}
.xf_c00168{left:51.000000px;}
.x8_c00168{left:52.200000px;}
.x7_c00168{left:53.700000px;}
.x6_c00168{left:54.900000px;}
.x5_c00168{left:55.950000px;}
.x3_c00168{left:58.050000px;}
.xe_c00168{left:59.700000px;}
.x13_c00168{left:80.100000px;}
.x11_c00168{left:101.550000px;}
.x4_c00168{left:108.900000px;}
.x10_c00168{left:116.400000px;}
.xc_c00168{left:117.450000px;}
.x9_c00168{left:118.500000px;}
.x2_c00168{left:123.450000px;}
.x12_c00168{left:344.250000px;}
.x14_c00168{left:383.551758px;}
.x1_c00168{left:396.600000px;}
.xa_c00168{left:678.600000px;}
.xb_c00168{left:719.100000px;}
@media print{
.v1_c00168{vertical-align:-69.866667pt;}
.v0_c00168{vertical-align:0.000000pt;}
.ls3_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:1.706667pt;}
.ls2_c00168{letter-spacing:4.533333pt;}
.ls4_c00168{letter-spacing:5.333333pt;}
.ls1_c00168{letter-spacing:8.533333pt;}
.ws1_c00168{word-spacing:-56.448000pt;}
.ws0_c00168{word-spacing:-46.242667pt;}
.ws2_c00168{word-spacing:-20.565333pt;}
.ws3_c00168{word-spacing:0.000000pt;}
._4a_c00168{margin-left:-33.024000pt;}
._4b_c00168{margin-left:-27.392000pt;}
._41_c00168{margin-left:-25.344000pt;}
._44_c00168{margin-left:-21.653333pt;}
._33_c00168{margin-left:-19.200000pt;}
._2e_c00168{margin-left:-17.066667pt;}
._f_c00168{margin-left:-15.104000pt;}
._2f_c00168{margin-left:-13.738667pt;}
._7_c00168{margin-left:-12.202667pt;}
._48_c00168{margin-left:-9.813333pt;}
._30_c00168{margin-left:-8.618667pt;}
._8_c00168{margin-left:-7.338667pt;}
._c_c00168{margin-left:-5.973333pt;}
._36_c00168{margin-left:-4.864000pt;}
._1b_c00168{margin-left:-3.840000pt;}
._18_c00168{margin-left:-2.133333pt;}
._d_c00168{margin-left:-1.109333pt;}
._1c_c00168{width:0.938667pt;}
._1_c00168{width:1.877333pt;}
._2_c00168{width:3.498667pt;}
._3_c00168{width:4.608000pt;}
._0_c00168{width:6.144000pt;}
._b_c00168{width:7.253333pt;}
._4_c00168{width:8.192000pt;}
._2c_c00168{width:9.130667pt;}
._a_c00168{width:10.069333pt;}
._10_c00168{width:11.520000pt;}
._6_c00168{width:12.970667pt;}
._19_c00168{width:14.250667pt;}
._5_c00168{width:15.530667pt;}
._11_c00168{width:16.981333pt;}
._9_c00168{width:18.858667pt;}
._2b_c00168{width:21.504000pt;}
._16_c00168{width:22.613333pt;}
._15_c00168{width:23.978667pt;}
._17_c00168{width:25.088000pt;}
._1a_c00168{width:26.197333pt;}
._34_c00168{width:27.498667pt;}
._28_c00168{width:28.416000pt;}
._20_c00168{width:29.354667pt;}
._25_c00168{width:30.464000pt;}
._12_c00168{width:32.085333pt;}
._2d_c00168{width:33.536000pt;}
._26_c00168{width:34.901333pt;}
._14_c00168{width:36.181333pt;}
._1d_c00168{width:37.376000pt;}
._24_c00168{width:38.400000pt;}
._23_c00168{width:39.936000pt;}
._21_c00168{width:41.984000pt;}
._1e_c00168{width:43.520000pt;}
._32_c00168{width:44.714667pt;}
._1f_c00168{width:46.336000pt;}
._27_c00168{width:48.128000pt;}
._39_c00168{width:50.240000pt;}
._29_c00168{width:60.672000pt;}
._43_c00168{width:63.146667pt;}
._45_c00168{width:70.997333pt;}
._31_c00168{width:73.301333pt;}
._e_c00168{width:74.581333pt;}
._3d_c00168{width:91.189333pt;}
._22_c00168{width:93.909333pt;}
._47_c00168{width:96.000000pt;}
._2a_c00168{width:115.200000pt;}
._3a_c00168{width:122.869333pt;}
._46_c00168{width:137.301333pt;}
._13_c00168{width:158.976000pt;}
._3c_c00168{width:162.240000pt;}
._3e_c00168{width:199.914667pt;}
._3b_c00168{width:296.960000pt;}
._3f_c00168{width:321.237333pt;}
._37_c00168{width:325.546667pt;}
._42_c00168{width:348.821333pt;}
._40_c00168{width:371.701333pt;}
._49_c00168{width:503.722667pt;}
._35_c00168{width:609.024000pt;}
._38_c00168{width:1344.512000pt;}
.fs6_c00168{font-size:32.000000pt;}
.fs7_c00168{font-size:42.666667pt;}
.fs2_c00168{font-size:61.333333pt;}
.fs4_c00168{font-size:74.666667pt;}
.fs0_c00168{font-size:77.333333pt;}
.fs1_c00168{font-size:85.333333pt;}
.fs5_c00168{font-size:90.666667pt;}
.fs3_c00168{font-size:114.666667pt;}
.y0_c00168{bottom:0.000000pt;}
.y2a_c00168{bottom:2.760000pt;}
.y29_c00168{bottom:6.425219pt;}
.y27_c00168{bottom:46.813333pt;}
.y28_c00168{bottom:56.146667pt;}
.y26_c00168{bottom:79.480000pt;}
.y25_c00168{bottom:109.213333pt;}
.y24_c00168{bottom:140.146667pt;}
.y23_c00168{bottom:155.213333pt;}
.y22_c00168{bottom:169.480000pt;}
.y21_c00168{bottom:199.613333pt;}
.y20_c00168{bottom:231.880000pt;}
.y1f_c00168{bottom:259.880000pt;}
.y1e_c00168{bottom:290.413333pt;}
.y1d_c00168{bottom:320.146667pt;}
.y1c_c00168{bottom:351.880000pt;}
.y1b_c00168{bottom:380.813333pt;}
.y1a_c00168{bottom:410.813333pt;}
.y19_c00168{bottom:440.813333pt;}
.y18_c00168{bottom:469.480000pt;}
.y17_c00168{bottom:500.813333pt;}
.y16_c00168{bottom:530.680000pt;}
.y15_c00168{bottom:559.613333pt;}
.y14_c00168{bottom:589.613333pt;}
.y13_c00168{bottom:619.480000pt;}
.y12_c00168{bottom:649.480000pt;}
.y11_c00168{bottom:680.146667pt;}
.y10_c00168{bottom:709.480000pt;}
.yf_c00168{bottom:738.946667pt;}
.ye_c00168{bottom:768.280000pt;}
.yd_c00168{bottom:779.080000pt;}
.yc_c00168{bottom:798.413333pt;}
.yb_c00168{bottom:828.413333pt;}
.ya_c00168{bottom:858.280000pt;}
.y9_c00168{bottom:888.413333pt;}
.y8_c00168{bottom:918.280000pt;}
.y7_c00168{bottom:947.746667pt;}
.y6_c00168{bottom:977.746667pt;}
.y5_c00168{bottom:1007.213333pt;}
.y4_c00168{bottom:1037.080000pt;}
.y3_c00168{bottom:1066.013333pt;}
.y2_c00168{bottom:1096.013333pt;}
.y1_c00168{bottom:1112.680000pt;}
.h7_c00168{height:11.733399pt;}
.h8_c00168{height:38.937500pt;}
.h6_c00168{height:40.515625pt;}
.h4_c00168{height:60.195312pt;}
.h2_c00168{height:97.912760pt;}
.h3_c00168{height:108.041667pt;}
.h5_c00168{height:122.349333pt;}
.h0_c00168{height:1209.133333pt;}
.h1_c00168{height:1209.333333pt;}
.w2_c00168{width:93.222667pt;}
.w1_c00168{width:767.333333pt;}
.w0_c00168{width:767.533333pt;}
.x0_c00168{left:0.000000pt;}
.xd_c00168{left:44.400000pt;}
.xf_c00168{left:45.333333pt;}
.x8_c00168{left:46.400000pt;}
.x7_c00168{left:47.733333pt;}
.x6_c00168{left:48.800000pt;}
.x5_c00168{left:49.733333pt;}
.x3_c00168{left:51.600000pt;}
.xe_c00168{left:53.066667pt;}
.x13_c00168{left:71.200000pt;}
.x11_c00168{left:90.266667pt;}
.x4_c00168{left:96.800000pt;}
.x10_c00168{left:103.466667pt;}
.xc_c00168{left:104.400000pt;}
.x9_c00168{left:105.333333pt;}
.x2_c00168{left:109.733333pt;}
.x12_c00168{left:306.000000pt;}
.x14_c00168{left:340.934896pt;}
.x1_c00168{left:352.533333pt;}
.xa_c00168{left:603.200000pt;}
.xb_c00168{left:639.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_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_d09f732c2d0e1031786b60bd.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_ebef418983d2b990feb6940d.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_ce6edfcf7b71337c7d58dea6.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.v1_c00169{vertical-align:-145.800000px;}
.v0_c00169{vertical-align:0.000000px;}
.ls3_c00169{letter-spacing:0.000000px;}
.ls2_c00169{letter-spacing:4.800000px;}
.ls0_c00169{letter-spacing:6.720000px;}
.ls1_c00169{letter-spacing:22.596000px;}
.ls4_c00169{letter-spacing:39.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00169{word-spacing:-51.000000px;}
.ws2_c00169{word-spacing:-23.136000px;}
.ws1_c00169{word-spacing:-20.244000px;}
.ws4_c00169{word-spacing:0.000000px;}
.ws0_c00169{word-spacing:15.144000px;}
._3d_c00169{margin-left:-79.776000px;}
._4_c00169{margin-left:-38.016000px;}
._6_c00169{margin-left:-32.736000px;}
._5_c00169{margin-left:-31.296000px;}
._8_c00169{margin-left:-29.952000px;}
._9_c00169{margin-left:-26.304000px;}
._41_c00169{margin-left:-25.176000px;}
._34_c00169{margin-left:-23.616000px;}
._7_c00169{margin-left:-20.352000px;}
._36_c00169{margin-left:-17.760000px;}
._2c_c00169{margin-left:-16.704000px;}
._2a_c00169{margin-left:-15.312000px;}
._2b_c00169{margin-left:-12.768000px;}
._30_c00169{margin-left:-11.328000px;}
._17_c00169{margin-left:-9.120000px;}
._18_c00169{margin-left:-7.872000px;}
._19_c00169{margin-left:-6.624000px;}
._42_c00169{margin-left:-5.568000px;}
._1a_c00169{margin-left:-4.320000px;}
._27_c00169{margin-left:-3.072000px;}
._1b_c00169{margin-left:-1.536000px;}
._0_c00169{width:1.728000px;}
._d_c00169{width:3.648000px;}
._c_c00169{width:5.568000px;}
._b_c00169{width:7.392000px;}
._14_c00169{width:9.048000px;}
._e_c00169{width:10.176000px;}
._59_c00169{width:11.184000px;}
._13_c00169{width:12.192000px;}
._12_c00169{width:14.016000px;}
._29_c00169{width:15.456000px;}
._20_c00169{width:16.608000px;}
._15_c00169{width:18.000000px;}
._25_c00169{width:19.848000px;}
._32_c00169{width:21.504000px;}
._2f_c00169{width:25.272000px;}
._1e_c00169{width:26.304000px;}
._37_c00169{width:27.912000px;}
._28_c00169{width:29.088000px;}
._a_c00169{width:30.216000px;}
._1_c00169{width:32.016000px;}
._1d_c00169{width:33.696000px;}
._10_c00169{width:35.712000px;}
._33_c00169{width:37.248000px;}
._1c_c00169{width:38.304000px;}
._1f_c00169{width:39.312000px;}
._53_c00169{width:40.728000px;}
._16_c00169{width:42.240000px;}
._56_c00169{width:43.728000px;}
._24_c00169{width:45.216000px;}
._23_c00169{width:47.808000px;}
._11_c00169{width:50.016000px;}
._3e_c00169{width:51.264000px;}
._f_c00169{width:52.320000px;}
._4b_c00169{width:53.400000px;}
._22_c00169{width:54.432000px;}
._31_c00169{width:66.624000px;}
._3b_c00169{width:72.096000px;}
._48_c00169{width:75.168000px;}
._3f_c00169{width:88.176000px;}
._47_c00169{width:90.912000px;}
._51_c00169{width:94.704000px;}
._2_c00169{width:96.384000px;}
._45_c00169{width:108.000000px;}
._2d_c00169{width:110.016000px;}
._3_c00169{width:111.072000px;}
._3a_c00169{width:134.784000px;}
._4c_c00169{width:140.208000px;}
._43_c00169{width:141.984000px;}
._4d_c00169{width:179.424000px;}
._2e_c00169{width:182.664000px;}
._26_c00169{width:190.440000px;}
._40_c00169{width:193.632000px;}
._52_c00169{width:209.856000px;}
._4a_c00169{width:214.752000px;}
._5a_c00169{width:223.056000px;}
._39_c00169{width:256.848000px;}
._54_c00169{width:267.576000px;}
._4f_c00169{width:301.332000px;}
._49_c00169{width:305.112000px;}
._50_c00169{width:327.648000px;}
._4e_c00169{width:337.176000px;}
._46_c00169{width:344.736000px;}
._35_c00169{width:407.616000px;}
._55_c00169{width:539.328000px;}
._58_c00169{width:595.272000px;}
._38_c00169{width:605.952000px;}
._3c_c00169{width:720.360000px;}
._21_c00169{width:963.744000px;}
._44_c00169{width:1062.240000px;}
._57_c00169{width:1758.624000px;}
.fc2_c00169{color:transparent;}
.fc1_c00169{color:rgb(128,128,128);}
.fc0_c00169{color:rgb(0,0,0);}
.fs3_c00169{font-size:48.000000px;}
.fs1_c00169{font-size:84.000000px;}
.fs0_c00169{font-size:96.000000px;}
.fs2_c00169{font-size:102.000000px;}
.y0_c00169{bottom:0.000000px;}
.y25_c00169{bottom:3.105000px;}
.y24_c00169{bottom:7.228357px;}
.y23_c00169{bottom:100.530000px;}
.y22_c00169{bottom:133.680000px;}
.y21_c00169{bottom:169.530000px;}
.y20_c00169{bottom:204.630000px;}
.y1f_c00169{bottom:236.880000px;}
.y1e_c00169{bottom:273.780000px;}
.y1d_c00169{bottom:306.180000px;}
.y1c_c00169{bottom:342.180000px;}
.y1b_c00169{bottom:376.680000px;}
.y1a_c00169{bottom:410.130000px;}
.y19_c00169{bottom:444.180000px;}
.y18_c00169{bottom:477.930000px;}
.y17_c00169{bottom:512.280000px;}
.y16_c00169{bottom:546.180000px;}
.y15_c00169{bottom:580.530000px;}
.y14_c00169{bottom:615.030000px;}
.y13_c00169{bottom:648.630000px;}
.y12_c00169{bottom:681.180000px;}
.y11_c00169{bottom:716.130000px;}
.y10_c00169{bottom:748.680000px;}
.yf_c00169{bottom:783.630000px;}
.ye_c00169{bottom:817.530000px;}
.yd_c00169{bottom:851.880000px;}
.yc_c00169{bottom:885.630000px;}
.yb_c00169{bottom:919.080000px;}
.ya_c00169{bottom:953.130000px;}
.y9_c00169{bottom:986.130000px;}
.y8_c00169{bottom:1019.580000px;}
.y7_c00169{bottom:1054.980000px;}
.y6_c00169{bottom:1086.030000px;}
.y5_c00169{bottom:1119.780000px;}
.y4_c00169{bottom:1152.330000px;}
.y3_c00169{bottom:1186.680000px;}
.y2_c00169{bottom:1220.430000px;}
.y1_c00169{bottom:1253.580000px;}
.h3_c00169{height:13.200074px;}
.h4_c00169{height:43.804688px;}
.h2_c00169{height:121.546875px;}
.h0_c00169{height:1382.700000px;}
.h1_c00169{height:1383.000000px;}
.w2_c00169{width:104.875500px;}
.w0_c00169{width:863.175000px;}
.w1_c00169{width:863.250000px;}
.x0_c00169{left:0.000000px;}
.x11_c00169{left:155.250000px;}
.x1_c00169{left:160.200000px;}
.xc_c00169{left:167.100000px;}
.xa_c00169{left:169.800000px;}
.xb_c00169{left:175.200000px;}
.x7_c00169{left:177.900000px;}
.xe_c00169{left:198.450000px;}
.x12_c00169{left:203.400000px;}
.x8_c00169{left:205.500000px;}
.x15_c00169{left:218.400000px;}
.xf_c00169{left:225.450000px;}
.x9_c00169{left:248.100000px;}
.xd_c00169{left:250.350000px;}
.x2_c00169{left:271.350000px;}
.x3_c00169{left:272.400000px;}
.x4_c00169{left:273.600000px;}
.x10_c00169{left:275.700000px;}
.x6_c00169{left:321.600000px;}
.x5_c00169{left:332.850000px;}
.x13_c00169{left:337.200000px;}
.x14_c00169{left:338.400000px;}
.x16_c00169{left:342.150000px;}
.x17_c00169{left:383.401749px;}
@media print{
.v1_c00169{vertical-align:-129.600000pt;}
.v0_c00169{vertical-align:0.000000pt;}
.ls3_c00169{letter-spacing:0.000000pt;}
.ls2_c00169{letter-spacing:4.266667pt;}
.ls0_c00169{letter-spacing:5.973333pt;}
.ls1_c00169{letter-spacing:20.085333pt;}
.ls4_c00169{letter-spacing:34.666667pt;}
.ws3_c00169{word-spacing:-45.333333pt;}
.ws2_c00169{word-spacing:-20.565333pt;}
.ws1_c00169{word-spacing:-17.994667pt;}
.ws4_c00169{word-spacing:0.000000pt;}
.ws0_c00169{word-spacing:13.461333pt;}
._3d_c00169{margin-left:-70.912000pt;}
._4_c00169{margin-left:-33.792000pt;}
._6_c00169{margin-left:-29.098667pt;}
._5_c00169{margin-left:-27.818667pt;}
._8_c00169{margin-left:-26.624000pt;}
._9_c00169{margin-left:-23.381333pt;}
._41_c00169{margin-left:-22.378667pt;}
._34_c00169{margin-left:-20.992000pt;}
._7_c00169{margin-left:-18.090667pt;}
._36_c00169{margin-left:-15.786667pt;}
._2c_c00169{margin-left:-14.848000pt;}
._2a_c00169{margin-left:-13.610667pt;}
._2b_c00169{margin-left:-11.349333pt;}
._30_c00169{margin-left:-10.069333pt;}
._17_c00169{margin-left:-8.106667pt;}
._18_c00169{margin-left:-6.997333pt;}
._19_c00169{margin-left:-5.888000pt;}
._42_c00169{margin-left:-4.949333pt;}
._1a_c00169{margin-left:-3.840000pt;}
._27_c00169{margin-left:-2.730667pt;}
._1b_c00169{margin-left:-1.365333pt;}
._0_c00169{width:1.536000pt;}
._d_c00169{width:3.242667pt;}
._c_c00169{width:4.949333pt;}
._b_c00169{width:6.570667pt;}
._14_c00169{width:8.042667pt;}
._e_c00169{width:9.045333pt;}
._59_c00169{width:9.941333pt;}
._13_c00169{width:10.837333pt;}
._12_c00169{width:12.458667pt;}
._29_c00169{width:13.738667pt;}
._20_c00169{width:14.762667pt;}
._15_c00169{width:16.000000pt;}
._25_c00169{width:17.642667pt;}
._32_c00169{width:19.114667pt;}
._2f_c00169{width:22.464000pt;}
._1e_c00169{width:23.381333pt;}
._37_c00169{width:24.810667pt;}
._28_c00169{width:25.856000pt;}
._a_c00169{width:26.858667pt;}
._1_c00169{width:28.458667pt;}
._1d_c00169{width:29.952000pt;}
._10_c00169{width:31.744000pt;}
._33_c00169{width:33.109333pt;}
._1c_c00169{width:34.048000pt;}
._1f_c00169{width:34.944000pt;}
._53_c00169{width:36.202667pt;}
._16_c00169{width:37.546667pt;}
._56_c00169{width:38.869333pt;}
._24_c00169{width:40.192000pt;}
._23_c00169{width:42.496000pt;}
._11_c00169{width:44.458667pt;}
._3e_c00169{width:45.568000pt;}
._f_c00169{width:46.506667pt;}
._4b_c00169{width:47.466667pt;}
._22_c00169{width:48.384000pt;}
._31_c00169{width:59.221333pt;}
._3b_c00169{width:64.085333pt;}
._48_c00169{width:66.816000pt;}
._3f_c00169{width:78.378667pt;}
._47_c00169{width:80.810667pt;}
._51_c00169{width:84.181333pt;}
._2_c00169{width:85.674667pt;}
._45_c00169{width:96.000000pt;}
._2d_c00169{width:97.792000pt;}
._3_c00169{width:98.730667pt;}
._3a_c00169{width:119.808000pt;}
._4c_c00169{width:124.629333pt;}
._43_c00169{width:126.208000pt;}
._4d_c00169{width:159.488000pt;}
._2e_c00169{width:162.368000pt;}
._26_c00169{width:169.280000pt;}
._40_c00169{width:172.117333pt;}
._52_c00169{width:186.538667pt;}
._4a_c00169{width:190.890667pt;}
._5a_c00169{width:198.272000pt;}
._39_c00169{width:228.309333pt;}
._54_c00169{width:237.845333pt;}
._4f_c00169{width:267.850667pt;}
._49_c00169{width:271.210667pt;}
._50_c00169{width:291.242667pt;}
._4e_c00169{width:299.712000pt;}
._46_c00169{width:306.432000pt;}
._35_c00169{width:362.325333pt;}
._55_c00169{width:479.402667pt;}
._58_c00169{width:529.130667pt;}
._38_c00169{width:538.624000pt;}
._3c_c00169{width:640.320000pt;}
._21_c00169{width:856.661333pt;}
._44_c00169{width:944.213333pt;}
._57_c00169{width:1563.221333pt;}
.fs3_c00169{font-size:42.666667pt;}
.fs1_c00169{font-size:74.666667pt;}
.fs0_c00169{font-size:85.333333pt;}
.fs2_c00169{font-size:90.666667pt;}
.y0_c00169{bottom:0.000000pt;}
.y25_c00169{bottom:2.760000pt;}
.y24_c00169{bottom:6.425206pt;}
.y23_c00169{bottom:89.360000pt;}
.y22_c00169{bottom:118.826667pt;}
.y21_c00169{bottom:150.693333pt;}
.y20_c00169{bottom:181.893333pt;}
.y1f_c00169{bottom:210.560000pt;}
.y1e_c00169{bottom:243.360000pt;}
.y1d_c00169{bottom:272.160000pt;}
.y1c_c00169{bottom:304.160000pt;}
.y1b_c00169{bottom:334.826667pt;}
.y1a_c00169{bottom:364.560000pt;}
.y19_c00169{bottom:394.826667pt;}
.y18_c00169{bottom:424.826667pt;}
.y17_c00169{bottom:455.360000pt;}
.y16_c00169{bottom:485.493333pt;}
.y15_c00169{bottom:516.026667pt;}
.y14_c00169{bottom:546.693333pt;}
.y13_c00169{bottom:576.560000pt;}
.y12_c00169{bottom:605.493333pt;}
.y11_c00169{bottom:636.560000pt;}
.y10_c00169{bottom:665.493333pt;}
.yf_c00169{bottom:696.560000pt;}
.ye_c00169{bottom:726.693333pt;}
.yd_c00169{bottom:757.226667pt;}
.yc_c00169{bottom:787.226667pt;}
.yb_c00169{bottom:816.960000pt;}
.ya_c00169{bottom:847.226667pt;}
.y9_c00169{bottom:876.560000pt;}
.y8_c00169{bottom:906.293333pt;}
.y7_c00169{bottom:937.760000pt;}
.y6_c00169{bottom:965.360000pt;}
.y5_c00169{bottom:995.360000pt;}
.y4_c00169{bottom:1024.293333pt;}
.y3_c00169{bottom:1054.826667pt;}
.y2_c00169{bottom:1084.826667pt;}
.y1_c00169{bottom:1114.293333pt;}
.h3_c00169{height:11.733399pt;}
.h4_c00169{height:38.937500pt;}
.h2_c00169{height:108.041667pt;}
.h0_c00169{height:1229.066667pt;}
.h1_c00169{height:1229.333333pt;}
.w2_c00169{width:93.222667pt;}
.w0_c00169{width:767.266667pt;}
.w1_c00169{width:767.333333pt;}
.x0_c00169{left:0.000000pt;}
.x11_c00169{left:138.000000pt;}
.x1_c00169{left:142.400000pt;}
.xc_c00169{left:148.533333pt;}
.xa_c00169{left:150.933333pt;}
.xb_c00169{left:155.733333pt;}
.x7_c00169{left:158.133333pt;}
.xe_c00169{left:176.400000pt;}
.x12_c00169{left:180.800000pt;}
.x8_c00169{left:182.666667pt;}
.x15_c00169{left:194.133333pt;}
.xf_c00169{left:200.400000pt;}
.x9_c00169{left:220.533333pt;}
.xd_c00169{left:222.533333pt;}
.x2_c00169{left:241.200000pt;}
.x3_c00169{left:242.133333pt;}
.x4_c00169{left:243.200000pt;}
.x10_c00169{left:245.066667pt;}
.x6_c00169{left:285.866667pt;}
.x5_c00169{left:295.866667pt;}
.x13_c00169{left:299.733333pt;}
.x14_c00169{left:300.800000pt;}
.x16_c00169{left:304.133333pt;}
.x17_c00169{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_995182b4666d408bd0b5892b.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_8b14e0077bd37fb88ddd0d9c.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_4b1e3bdcc0655e0ece017be4.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_702e340a04fe84da29ad1706.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_3fff3fa582ba3ad90dc09293.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00170;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.v1_c00170{vertical-align:297.600000px;}
.ls6_c00170{letter-spacing:-6.000000px;}
.ls5_c00170{letter-spacing:-3.000000px;}
.ls4_c00170{letter-spacing:0.000000px;}
.ls2_c00170{letter-spacing:2.652000px;}
.ls1_c00170{letter-spacing:6.720000px;}
.ls0_c00170{letter-spacing:7.200000px;}
.ls3_c00170{letter-spacing:22.200000px;}
.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;}
}
.ws3_c00170{word-spacing:-63.504000px;}
.ws2_c00170{word-spacing:-52.044000px;}
.ws4_c00170{word-spacing:-51.000000px;}
.ws5_c00170{word-spacing:-43.260000px;}
.ws0_c00170{word-spacing:-23.136000px;}
.ws1_c00170{word-spacing:-0.501000px;}
.ws6_c00170{word-spacing:0.000000px;}
._38_c00170{margin-left:-69.639000px;}
._1a_c00170{margin-left:-41.376000px;}
._2e_c00170{margin-left:-34.656000px;}
._30_c00170{margin-left:-33.147000px;}
._16_c00170{margin-left:-31.032000px;}
._44_c00170{margin-left:-29.088000px;}
._2a_c00170{margin-left:-26.304000px;}
._4_c00170{margin-left:-23.616000px;}
._11_c00170{margin-left:-21.696000px;}
._4d_c00170{margin-left:-20.400000px;}
._33_c00170{margin-left:-18.270000px;}
._32_c00170{margin-left:-15.573000px;}
._1d_c00170{margin-left:-13.920000px;}
._47_c00170{margin-left:-12.864000px;}
._40_c00170{margin-left:-10.923000px;}
._1_c00170{margin-left:-9.888000px;}
._0_c00170{margin-left:-8.640000px;}
._2_c00170{margin-left:-7.584000px;}
._3e_c00170{margin-left:-6.144000px;}
._27_c00170{margin-left:-4.992000px;}
._26_c00170{margin-left:-3.744000px;}
._14_c00170{margin-left:-2.688000px;}
._13_c00170{margin-left:-1.536000px;}
._18_c00170{width:1.056000px;}
._d_c00170{width:2.304000px;}
._7_c00170{width:3.552000px;}
._9_c00170{width:5.088000px;}
._6_c00170{width:6.912000px;}
._37_c00170{width:7.968000px;}
._10_c00170{width:9.120000px;}
._a_c00170{width:10.464000px;}
._39_c00170{width:11.808000px;}
._f_c00170{width:13.152000px;}
._c_c00170{width:15.360000px;}
._8_c00170{width:16.704000px;}
._3c_c00170{width:17.760000px;}
._24_c00170{width:19.104000px;}
._3_c00170{width:20.928000px;}
._25_c00170{width:21.984000px;}
._23_c00170{width:24.192000px;}
._b_c00170{width:26.016000px;}
._12_c00170{width:27.648000px;}
._22_c00170{width:30.624000px;}
._21_c00170{width:32.256000px;}
._3f_c00170{width:34.272000px;}
._20_c00170{width:36.384000px;}
._4b_c00170{width:38.400000px;}
._28_c00170{width:39.936000px;}
._17_c00170{width:42.240000px;}
._43_c00170{width:43.296000px;}
._e_c00170{width:44.736000px;}
._4a_c00170{width:46.080000px;}
._1e_c00170{width:47.136000px;}
._3d_c00170{width:48.192000px;}
._1f_c00170{width:49.536000px;}
._2c_c00170{width:51.360000px;}
._42_c00170{width:59.592000px;}
._2b_c00170{width:62.400000px;}
._15_c00170{width:65.088000px;}
._49_c00170{width:67.104000px;}
._29_c00170{width:69.600000px;}
._19_c00170{width:71.040000px;}
._3a_c00170{width:73.440000px;}
._41_c00170{width:74.901000px;}
._46_c00170{width:81.792000px;}
._5_c00170{width:83.712000px;}
._45_c00170{width:92.352000px;}
._35_c00170{width:113.313000px;}
._48_c00170{width:114.315000px;}
._3b_c00170{width:116.064000px;}
._2d_c00170{width:120.480000px;}
._34_c00170{width:146.421000px;}
._1c_c00170{width:158.784000px;}
._36_c00170{width:161.472000px;}
._4c_c00170{width:205.152000px;}
._2f_c00170{width:312.576000px;}
._31_c00170{width:315.897000px;}
._1b_c00170{width:672.576000px;}
._4e_c00170{width:2001.504000px;}
.fc2_c00170{color:transparent;}
.fc1_c00170{color:rgb(128,128,128);}
.fc0_c00170{color:rgb(0,0,0);}
.fs6_c00170{font-size:48.000000px;}
.fs4_c00170{font-size:84.000000px;}
.fs2_c00170{font-size:87.000000px;}
.fs0_c00170{font-size:96.000000px;}
.fs5_c00170{font-size:99.000000px;}
.fs1_c00170{font-size:102.000000px;}
.fs3_c00170{font-size:501.000000px;}
.y0_c00170{bottom:0.000000px;}
.y24_c00170{bottom:3.105000px;}
.y23_c00170{bottom:7.228369px;}
.y22_c00170{bottom:86.970000px;}
.y21_c00170{bottom:120.870000px;}
.y20_c00170{bottom:155.520000px;}
.y1f_c00170{bottom:188.970000px;}
.y1e_c00170{bottom:222.720000px;}
.y1d_c00170{bottom:257.520000px;}
.y1c_c00170{bottom:291.570000px;}
.y1b_c00170{bottom:325.920000px;}
.y1a_c00170{bottom:357.720000px;}
.y19_c00170{bottom:383.370000px;}
.y18_c00170{bottom:392.220000px;}
.y17_c00170{bottom:425.520000px;}
.y16_c00170{bottom:495.420000px;}
.y15_c00170{bottom:529.770000px;}
.y14_c00170{bottom:563.670000px;}
.y13_c00170{bottom:596.370000px;}
.y12_c00170{bottom:630.120000px;}
.y11_c00170{bottom:663.420000px;}
.y10_c00170{bottom:697.170000px;}
.yf_c00170{bottom:731.370000px;}
.ye_c00170{bottom:763.770000px;}
.yd_c00170{bottom:798.420000px;}
.ya_c00170{bottom:824.670000px;}
.yc_c00170{bottom:832.170000px;}
.yb_c00170{bottom:864.270000px;}
.y9_c00170{bottom:999.270000px;}
.y8_c00170{bottom:1045.170000px;}
.y7_c00170{bottom:1066.470000px;}
.y6_c00170{bottom:1099.920000px;}
.y5_c00170{bottom:1133.670000px;}
.y4_c00170{bottom:1167.120000px;}
.y3_c00170{bottom:1200.420000px;}
.y2_c00170{bottom:1233.570000px;}
.y1_c00170{bottom:1267.320000px;}
.h5_c00170{height:13.200073px;}
.h6_c00170{height:43.804688px;}
.h3_c00170{height:110.151855px;}
.h2_c00170{height:121.546875px;}
.h4_c00170{height:534.567000px;}
.h0_c00170{height:1383.450000px;}
.h1_c00170{height:1383.750000px;}
.w2_c00170{width:104.875500px;}
.w0_c00170{width:878.025000px;}
.w1_c00170{width:878.250000px;}
.x0_c00170{left:0.000000px;}
.x15_c00170{left:43.500000px;}
.x14_c00170{left:48.300000px;}
.x13_c00170{left:51.000000px;}
.xd_c00170{left:53.100000px;}
.xa_c00170{left:54.300000px;}
.xc_c00170{left:55.800000px;}
.x9_c00170{left:58.050000px;}
.x4_c00170{left:61.800000px;}
.x3_c00170{left:65.100000px;}
.x1_c00170{left:70.950000px;}
.xe_c00170{left:86.100000px;}
.xb_c00170{left:88.200000px;}
.x6_c00170{left:93.600000px;}
.x12_c00170{left:103.950000px;}
.x2_c00170{left:128.250000px;}
.xf_c00170{left:184.350000px;}
.x8_c00170{left:201.150000px;}
.x7_c00170{left:205.500000px;}
.x10_c00170{left:354.000000px;}
.x16_c00170{left:390.826721px;}
.x11_c00170{left:401.850000px;}
.x5_c00170{left:416.850000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.v1_c00170{vertical-align:264.533333pt;}
.ls6_c00170{letter-spacing:-5.333333pt;}
.ls5_c00170{letter-spacing:-2.666667pt;}
.ls4_c00170{letter-spacing:0.000000pt;}
.ls2_c00170{letter-spacing:2.357333pt;}
.ls1_c00170{letter-spacing:5.973333pt;}
.ls0_c00170{letter-spacing:6.400000pt;}
.ls3_c00170{letter-spacing:19.733333pt;}
.ws3_c00170{word-spacing:-56.448000pt;}
.ws2_c00170{word-spacing:-46.261333pt;}
.ws4_c00170{word-spacing:-45.333333pt;}
.ws5_c00170{word-spacing:-38.453333pt;}
.ws0_c00170{word-spacing:-20.565333pt;}
.ws1_c00170{word-spacing:-0.445333pt;}
.ws6_c00170{word-spacing:0.000000pt;}
._38_c00170{margin-left:-61.901333pt;}
._1a_c00170{margin-left:-36.778667pt;}
._2e_c00170{margin-left:-30.805333pt;}
._30_c00170{margin-left:-29.464000pt;}
._16_c00170{margin-left:-27.584000pt;}
._44_c00170{margin-left:-25.856000pt;}
._2a_c00170{margin-left:-23.381333pt;}
._4_c00170{margin-left:-20.992000pt;}
._11_c00170{margin-left:-19.285333pt;}
._4d_c00170{margin-left:-18.133333pt;}
._33_c00170{margin-left:-16.240000pt;}
._32_c00170{margin-left:-13.842667pt;}
._1d_c00170{margin-left:-12.373333pt;}
._47_c00170{margin-left:-11.434667pt;}
._40_c00170{margin-left:-9.709333pt;}
._1_c00170{margin-left:-8.789333pt;}
._0_c00170{margin-left:-7.680000pt;}
._2_c00170{margin-left:-6.741333pt;}
._3e_c00170{margin-left:-5.461333pt;}
._27_c00170{margin-left:-4.437333pt;}
._26_c00170{margin-left:-3.328000pt;}
._14_c00170{margin-left:-2.389333pt;}
._13_c00170{margin-left:-1.365333pt;}
._18_c00170{width:0.938667pt;}
._d_c00170{width:2.048000pt;}
._7_c00170{width:3.157333pt;}
._9_c00170{width:4.522667pt;}
._6_c00170{width:6.144000pt;}
._37_c00170{width:7.082667pt;}
._10_c00170{width:8.106667pt;}
._a_c00170{width:9.301333pt;}
._39_c00170{width:10.496000pt;}
._f_c00170{width:11.690667pt;}
._c_c00170{width:13.653333pt;}
._8_c00170{width:14.848000pt;}
._3c_c00170{width:15.786667pt;}
._24_c00170{width:16.981333pt;}
._3_c00170{width:18.602667pt;}
._25_c00170{width:19.541333pt;}
._23_c00170{width:21.504000pt;}
._b_c00170{width:23.125333pt;}
._12_c00170{width:24.576000pt;}
._22_c00170{width:27.221333pt;}
._21_c00170{width:28.672000pt;}
._3f_c00170{width:30.464000pt;}
._20_c00170{width:32.341333pt;}
._4b_c00170{width:34.133333pt;}
._28_c00170{width:35.498667pt;}
._17_c00170{width:37.546667pt;}
._43_c00170{width:38.485333pt;}
._e_c00170{width:39.765333pt;}
._4a_c00170{width:40.960000pt;}
._1e_c00170{width:41.898667pt;}
._3d_c00170{width:42.837333pt;}
._1f_c00170{width:44.032000pt;}
._2c_c00170{width:45.653333pt;}
._42_c00170{width:52.970667pt;}
._2b_c00170{width:55.466667pt;}
._15_c00170{width:57.856000pt;}
._49_c00170{width:59.648000pt;}
._29_c00170{width:61.866667pt;}
._19_c00170{width:63.146667pt;}
._3a_c00170{width:65.280000pt;}
._41_c00170{width:66.578667pt;}
._46_c00170{width:72.704000pt;}
._5_c00170{width:74.410667pt;}
._45_c00170{width:82.090667pt;}
._35_c00170{width:100.722667pt;}
._48_c00170{width:101.613333pt;}
._3b_c00170{width:103.168000pt;}
._2d_c00170{width:107.093333pt;}
._34_c00170{width:130.152000pt;}
._1c_c00170{width:141.141333pt;}
._36_c00170{width:143.530667pt;}
._4c_c00170{width:182.357333pt;}
._2f_c00170{width:277.845333pt;}
._31_c00170{width:280.797333pt;}
._1b_c00170{width:597.845333pt;}
._4e_c00170{width:1779.114667pt;}
.fs6_c00170{font-size:42.666667pt;}
.fs4_c00170{font-size:74.666667pt;}
.fs2_c00170{font-size:77.333333pt;}
.fs0_c00170{font-size:85.333333pt;}
.fs5_c00170{font-size:88.000000pt;}
.fs1_c00170{font-size:90.666667pt;}
.fs3_c00170{font-size:445.333333pt;}
.y0_c00170{bottom:0.000000pt;}
.y24_c00170{bottom:2.760000pt;}
.y23_c00170{bottom:6.425217pt;}
.y22_c00170{bottom:77.306667pt;}
.y21_c00170{bottom:107.440000pt;}
.y20_c00170{bottom:138.240000pt;}
.y1f_c00170{bottom:167.973333pt;}
.y1e_c00170{bottom:197.973333pt;}
.y1d_c00170{bottom:228.906667pt;}
.y1c_c00170{bottom:259.173333pt;}
.y1b_c00170{bottom:289.706667pt;}
.y1a_c00170{bottom:317.973333pt;}
.y19_c00170{bottom:340.773333pt;}
.y18_c00170{bottom:348.640000pt;}
.y17_c00170{bottom:378.240000pt;}
.y16_c00170{bottom:440.373333pt;}
.y15_c00170{bottom:470.906667pt;}
.y14_c00170{bottom:501.040000pt;}
.y13_c00170{bottom:530.106667pt;}
.y12_c00170{bottom:560.106667pt;}
.y11_c00170{bottom:589.706667pt;}
.y10_c00170{bottom:619.706667pt;}
.yf_c00170{bottom:650.106667pt;}
.ye_c00170{bottom:678.906667pt;}
.yd_c00170{bottom:709.706667pt;}
.ya_c00170{bottom:733.040000pt;}
.yc_c00170{bottom:739.706667pt;}
.yb_c00170{bottom:768.240000pt;}
.y9_c00170{bottom:888.240000pt;}
.y8_c00170{bottom:929.040000pt;}
.y7_c00170{bottom:947.973333pt;}
.y6_c00170{bottom:977.706667pt;}
.y5_c00170{bottom:1007.706667pt;}
.y4_c00170{bottom:1037.440000pt;}
.y3_c00170{bottom:1067.040000pt;}
.y2_c00170{bottom:1096.506667pt;}
.y1_c00170{bottom:1126.506667pt;}
.h5_c00170{height:11.733399pt;}
.h6_c00170{height:38.937500pt;}
.h3_c00170{height:97.912760pt;}
.h2_c00170{height:108.041667pt;}
.h4_c00170{height:475.170667pt;}
.h0_c00170{height:1229.733333pt;}
.h1_c00170{height:1230.000000pt;}
.w2_c00170{width:93.222667pt;}
.w0_c00170{width:780.466667pt;}
.w1_c00170{width:780.666667pt;}
.x0_c00170{left:0.000000pt;}
.x15_c00170{left:38.666667pt;}
.x14_c00170{left:42.933333pt;}
.x13_c00170{left:45.333333pt;}
.xd_c00170{left:47.200000pt;}
.xa_c00170{left:48.266667pt;}
.xc_c00170{left:49.600000pt;}
.x9_c00170{left:51.600000pt;}
.x4_c00170{left:54.933333pt;}
.x3_c00170{left:57.866667pt;}
.x1_c00170{left:63.066667pt;}
.xe_c00170{left:76.533333pt;}
.xb_c00170{left:78.400000pt;}
.x6_c00170{left:83.200000pt;}
.x12_c00170{left:92.400000pt;}
.x2_c00170{left:114.000000pt;}
.xf_c00170{left:163.866667pt;}
.x8_c00170{left:178.800000pt;}
.x7_c00170{left:182.666667pt;}
.x10_c00170{left:314.666667pt;}
.x16_c00170{left:347.401530pt;}
.x11_c00170{left:357.200000pt;}
.x5_c00170{left:370.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5a3c50ee76ac8dbc7bd2be15.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_85c985d29f3b371f286e1872.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_5494cbb8babb8a765116452b.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls3_c00171{letter-spacing:-3.000000px;}
.ls1_c00171{letter-spacing:0.000000px;}
.ls2_c00171{letter-spacing:21.000000px;}
.ls0_c00171{letter-spacing:23.400000px;}
.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;}
}
.ws2_c00171{word-spacing:-44.136000px;}
.ws4_c00171{word-spacing:-29.376000px;}
.ws3_c00171{word-spacing:-23.136000px;}
.ws0_c00171{word-spacing:-20.244000px;}
.ws5_c00171{word-spacing:0.000000px;}
.ws1_c00171{word-spacing:0.504000px;}
._12_c00171{margin-left:-84.000000px;}
._42_c00171{margin-left:-79.872000px;}
._28_c00171{margin-left:-44.640000px;}
._14_c00171{margin-left:-34.752000px;}
._40_c00171{margin-left:-29.760000px;}
._30_c00171{margin-left:-26.976000px;}
._43_c00171{margin-left:-24.384000px;}
._4d_c00171{margin-left:-20.832000px;}
._1_c00171{margin-left:-16.884000px;}
._0_c00171{margin-left:-15.876000px;}
._4e_c00171{margin-left:-14.616000px;}
._2e_c00171{margin-left:-12.744000px;}
._2f_c00171{margin-left:-9.120000px;}
._44_c00171{margin-left:-7.968000px;}
._47_c00171{margin-left:-6.756000px;}
._4_c00171{margin-left:-5.376000px;}
._3c_c00171{margin-left:-4.320000px;}
._24_c00171{margin-left:-2.976000px;}
._1a_c00171{margin-left:-1.248000px;}
._a_c00171{width:1.344000px;}
._7_c00171{width:3.072000px;}
._6_c00171{width:4.800000px;}
._e_c00171{width:6.624000px;}
._15_c00171{width:8.580000px;}
._2_c00171{width:10.560000px;}
._f_c00171{width:12.672000px;}
._23_c00171{width:14.688000px;}
._17_c00171{width:15.840000px;}
._d_c00171{width:17.760000px;}
._10_c00171{width:19.104000px;}
._18_c00171{width:20.928000px;}
._26_c00171{width:22.044000px;}
._49_c00171{width:23.508000px;}
._32_c00171{width:24.612000px;}
._3d_c00171{width:25.788000px;}
._c_c00171{width:27.936000px;}
._16_c00171{width:28.992000px;}
._20_c00171{width:30.528000px;}
._21_c00171{width:32.256000px;}
._2a_c00171{width:34.296000px;}
._2d_c00171{width:36.480000px;}
._22_c00171{width:37.824000px;}
._1f_c00171{width:39.360000px;}
._37_c00171{width:41.256000px;}
._25_c00171{width:42.624000px;}
._1d_c00171{width:43.680000px;}
._9_c00171{width:44.832000px;}
._29_c00171{width:45.852000px;}
._3a_c00171{width:47.376000px;}
._1c_c00171{width:48.768000px;}
._4a_c00171{width:50.076000px;}
._11_c00171{width:51.456000px;}
._39_c00171{width:53.460000px;}
._4b_c00171{width:54.624000px;}
._34_c00171{width:56.604000px;}
._13_c00171{width:57.888000px;}
._5_c00171{width:60.000000px;}
._19_c00171{width:61.536000px;}
._35_c00171{width:62.592000px;}
._36_c00171{width:63.936000px;}
._1b_c00171{width:65.376000px;}
._1e_c00171{width:69.216000px;}
._3b_c00171{width:73.392000px;}
._2b_c00171{width:78.144000px;}
._b_c00171{width:79.680000px;}
._3_c00171{width:81.600000px;}
._8_c00171{width:87.552000px;}
._4c_c00171{width:144.384000px;}
._46_c00171{width:172.212000px;}
._38_c00171{width:178.332000px;}
._2c_c00171{width:183.072000px;}
._33_c00171{width:185.976000px;}
._4f_c00171{width:219.840000px;}
._27_c00171{width:231.324000px;}
._45_c00171{width:256.416000px;}
._31_c00171{width:261.024000px;}
._41_c00171{width:282.528000px;}
._3f_c00171{width:301.248000px;}
._51_c00171{width:394.272000px;}
._48_c00171{width:434.976000px;}
._3e_c00171{width:437.088000px;}
._50_c00171{width:547.200000px;}
.fc2_c00171{color:transparent;}
.fc1_c00171{color:rgb(128,128,128);}
.fc0_c00171{color:rgb(0,0,0);}
.fs4_c00171{font-size:48.000000px;}
.fs0_c00171{font-size:84.000000px;}
.fs1_c00171{font-size:96.000000px;}
.fs2_c00171{font-size:102.000000px;}
.fs3_c00171{font-size:114.000000px;}
.y0_c00171{bottom:0.000000px;}
.y27_c00171{bottom:3.105000px;}
.y26_c00171{bottom:7.228357px;}
.y25_c00171{bottom:55.680000px;}
.y24_c00171{bottom:94.530000px;}
.y23_c00171{bottom:126.180000px;}
.y22_c00171{bottom:161.430000px;}
.y21_c00171{bottom:195.480000px;}
.y20_c00171{bottom:229.830000px;}
.y1f_c00171{bottom:264.030000px;}
.y1e_c00171{bottom:298.080000px;}
.y1d_c00171{bottom:331.830000px;}
.y1c_c00171{bottom:366.480000px;}
.y1b_c00171{bottom:400.980000px;}
.y1a_c00171{bottom:434.730000px;}
.y19_c00171{bottom:468.780000px;}
.y18_c00171{bottom:504.630000px;}
.y17_c00171{bottom:537.330000px;}
.y16_c00171{bottom:571.830000px;}
.y15_c00171{bottom:605.430000px;}
.y14_c00171{bottom:638.580000px;}
.y13_c00171{bottom:672.330000px;}
.y12_c00171{bottom:707.430000px;}
.y11_c00171{bottom:740.430000px;}
.y10_c00171{bottom:774.630000px;}
.yf_c00171{bottom:807.930000px;}
.ye_c00171{bottom:842.430000px;}
.yd_c00171{bottom:875.430000px;}
.y1_c00171{bottom:889.680000px;}
.yc_c00171{bottom:908.880000px;}
.yb_c00171{bottom:942.630000px;}
.ya_c00171{bottom:975.480000px;}
.y9_c00171{bottom:1008.780000px;}
.y8_c00171{bottom:1042.230000px;}
.y7_c00171{bottom:1075.680000px;}
.y6_c00171{bottom:1109.430000px;}
.y5_c00171{bottom:1142.430000px;}
.y4_c00171{bottom:1175.880000px;}
.y3_c00171{bottom:1209.030000px;}
.y2_c00171{bottom:1242.330000px;}
.h5_c00171{height:13.200074px;}
.h6_c00171{height:43.804688px;}
.h2_c00171{height:98.314453px;}
.h4_c00171{height:120.067383px;}
.h3_c00171{height:121.546875px;}
.h0_c00171{height:1362.450000px;}
.h1_c00171{height:1362.750000px;}
.w2_c00171{width:104.875500px;}
.w1_c00171{width:849.750000px;}
.w0_c00171{width:849.975000px;}
.x0_c00171{left:0.000000px;}
.xd_c00171{left:130.950000px;}
.x1_c00171{left:135.300000px;}
.x8_c00171{left:185.400000px;}
.x2_c00171{left:201.150000px;}
.x7_c00171{left:263.250000px;}
.x9_c00171{left:264.300000px;}
.x3_c00171{left:265.950000px;}
.x4_c00171{left:267.600000px;}
.xa_c00171{left:298.800000px;}
.xb_c00171{left:315.600000px;}
.x6_c00171{left:317.250000px;}
.xc_c00171{left:318.300000px;}
.xf_c00171{left:376.801758px;}
.x5_c00171{left:413.850000px;}
.xe_c00171{left:790.200000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls3_c00171{letter-spacing:-2.666667pt;}
.ls1_c00171{letter-spacing:0.000000pt;}
.ls2_c00171{letter-spacing:18.666667pt;}
.ls0_c00171{letter-spacing:20.800000pt;}
.ws2_c00171{word-spacing:-39.232000pt;}
.ws4_c00171{word-spacing:-26.112000pt;}
.ws3_c00171{word-spacing:-20.565333pt;}
.ws0_c00171{word-spacing:-17.994667pt;}
.ws5_c00171{word-spacing:0.000000pt;}
.ws1_c00171{word-spacing:0.448000pt;}
._12_c00171{margin-left:-74.666667pt;}
._42_c00171{margin-left:-70.997333pt;}
._28_c00171{margin-left:-39.680000pt;}
._14_c00171{margin-left:-30.890667pt;}
._40_c00171{margin-left:-26.453333pt;}
._30_c00171{margin-left:-23.978667pt;}
._43_c00171{margin-left:-21.674667pt;}
._4d_c00171{margin-left:-18.517333pt;}
._1_c00171{margin-left:-15.008000pt;}
._0_c00171{margin-left:-14.112000pt;}
._4e_c00171{margin-left:-12.992000pt;}
._2e_c00171{margin-left:-11.328000pt;}
._2f_c00171{margin-left:-8.106667pt;}
._44_c00171{margin-left:-7.082667pt;}
._47_c00171{margin-left:-6.005333pt;}
._4_c00171{margin-left:-4.778667pt;}
._3c_c00171{margin-left:-3.840000pt;}
._24_c00171{margin-left:-2.645333pt;}
._1a_c00171{margin-left:-1.109333pt;}
._a_c00171{width:1.194667pt;}
._7_c00171{width:2.730667pt;}
._6_c00171{width:4.266667pt;}
._e_c00171{width:5.888000pt;}
._15_c00171{width:7.626667pt;}
._2_c00171{width:9.386667pt;}
._f_c00171{width:11.264000pt;}
._23_c00171{width:13.056000pt;}
._17_c00171{width:14.080000pt;}
._d_c00171{width:15.786667pt;}
._10_c00171{width:16.981333pt;}
._18_c00171{width:18.602667pt;}
._26_c00171{width:19.594667pt;}
._49_c00171{width:20.896000pt;}
._32_c00171{width:21.877333pt;}
._3d_c00171{width:22.922667pt;}
._c_c00171{width:24.832000pt;}
._16_c00171{width:25.770667pt;}
._20_c00171{width:27.136000pt;}
._21_c00171{width:28.672000pt;}
._2a_c00171{width:30.485333pt;}
._2d_c00171{width:32.426667pt;}
._22_c00171{width:33.621333pt;}
._1f_c00171{width:34.986667pt;}
._37_c00171{width:36.672000pt;}
._25_c00171{width:37.888000pt;}
._1d_c00171{width:38.826667pt;}
._9_c00171{width:39.850667pt;}
._29_c00171{width:40.757333pt;}
._3a_c00171{width:42.112000pt;}
._1c_c00171{width:43.349333pt;}
._4a_c00171{width:44.512000pt;}
._11_c00171{width:45.738667pt;}
._39_c00171{width:47.520000pt;}
._4b_c00171{width:48.554667pt;}
._34_c00171{width:50.314667pt;}
._13_c00171{width:51.456000pt;}
._5_c00171{width:53.333333pt;}
._19_c00171{width:54.698667pt;}
._35_c00171{width:55.637333pt;}
._36_c00171{width:56.832000pt;}
._1b_c00171{width:58.112000pt;}
._1e_c00171{width:61.525333pt;}
._3b_c00171{width:65.237333pt;}
._2b_c00171{width:69.461333pt;}
._b_c00171{width:70.826667pt;}
._3_c00171{width:72.533333pt;}
._8_c00171{width:77.824000pt;}
._4c_c00171{width:128.341333pt;}
._46_c00171{width:153.077333pt;}
._38_c00171{width:158.517333pt;}
._2c_c00171{width:162.730667pt;}
._33_c00171{width:165.312000pt;}
._4f_c00171{width:195.413333pt;}
._27_c00171{width:205.621333pt;}
._45_c00171{width:227.925333pt;}
._31_c00171{width:232.021333pt;}
._41_c00171{width:251.136000pt;}
._3f_c00171{width:267.776000pt;}
._51_c00171{width:350.464000pt;}
._48_c00171{width:386.645333pt;}
._3e_c00171{width:388.522667pt;}
._50_c00171{width:486.400000pt;}
.fs4_c00171{font-size:42.666667pt;}
.fs0_c00171{font-size:74.666667pt;}
.fs1_c00171{font-size:85.333333pt;}
.fs2_c00171{font-size:90.666667pt;}
.fs3_c00171{font-size:101.333333pt;}
.y0_c00171{bottom:0.000000pt;}
.y27_c00171{bottom:2.760000pt;}
.y26_c00171{bottom:6.425206pt;}
.y25_c00171{bottom:49.493333pt;}
.y24_c00171{bottom:84.026667pt;}
.y23_c00171{bottom:112.160000pt;}
.y22_c00171{bottom:143.493333pt;}
.y21_c00171{bottom:173.760000pt;}
.y20_c00171{bottom:204.293333pt;}
.y1f_c00171{bottom:234.693333pt;}
.y1e_c00171{bottom:264.960000pt;}
.y1d_c00171{bottom:294.960000pt;}
.y1c_c00171{bottom:325.760000pt;}
.y1b_c00171{bottom:356.426667pt;}
.y1a_c00171{bottom:386.426667pt;}
.y19_c00171{bottom:416.693333pt;}
.y18_c00171{bottom:448.560000pt;}
.y17_c00171{bottom:477.626667pt;}
.y16_c00171{bottom:508.293333pt;}
.y15_c00171{bottom:538.160000pt;}
.y14_c00171{bottom:567.626667pt;}
.y13_c00171{bottom:597.626667pt;}
.y12_c00171{bottom:628.826667pt;}
.y11_c00171{bottom:658.160000pt;}
.y10_c00171{bottom:688.560000pt;}
.yf_c00171{bottom:718.160000pt;}
.ye_c00171{bottom:748.826667pt;}
.yd_c00171{bottom:778.160000pt;}
.y1_c00171{bottom:790.826667pt;}
.yc_c00171{bottom:807.893333pt;}
.yb_c00171{bottom:837.893333pt;}
.ya_c00171{bottom:867.093333pt;}
.y9_c00171{bottom:896.693333pt;}
.y8_c00171{bottom:926.426667pt;}
.y7_c00171{bottom:956.160000pt;}
.y6_c00171{bottom:986.160000pt;}
.y5_c00171{bottom:1015.493333pt;}
.y4_c00171{bottom:1045.226667pt;}
.y3_c00171{bottom:1074.693333pt;}
.y2_c00171{bottom:1104.293333pt;}
.h5_c00171{height:11.733399pt;}
.h6_c00171{height:38.937500pt;}
.h2_c00171{height:87.390625pt;}
.h4_c00171{height:106.726562pt;}
.h3_c00171{height:108.041667pt;}
.h0_c00171{height:1211.066667pt;}
.h1_c00171{height:1211.333333pt;}
.w2_c00171{width:93.222667pt;}
.w1_c00171{width:755.333333pt;}
.w0_c00171{width:755.533333pt;}
.x0_c00171{left:0.000000pt;}
.xd_c00171{left:116.400000pt;}
.x1_c00171{left:120.266667pt;}
.x8_c00171{left:164.800000pt;}
.x2_c00171{left:178.800000pt;}
.x7_c00171{left:234.000000pt;}
.x9_c00171{left:234.933333pt;}
.x3_c00171{left:236.400000pt;}
.x4_c00171{left:237.866667pt;}
.xa_c00171{left:265.600000pt;}
.xb_c00171{left:280.533333pt;}
.x6_c00171{left:282.000000pt;}
.xc_c00171{left:282.933333pt;}
.xf_c00171{left:334.934896pt;}
.x5_c00171{left:367.866667pt;}
.xe_c00171{left:702.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_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_8b89567a6fe30f2649885bd9.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_b441d4ef9f37188b9d944881.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_a5dfb00a11818597ab60668f.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;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_c00172;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls6_c00172{letter-spacing:0.000000px;}
.ls1_c00172{letter-spacing:0.300000px;}
.ls4_c00172{letter-spacing:3.690000px;}
.ls5_c00172{letter-spacing:12.000000px;}
.ls3_c00172{letter-spacing:12.162000px;}
.ls7_c00172{letter-spacing:15.000000px;}
.ls8_c00172{letter-spacing:18.000000px;}
.ls2_c00172{letter-spacing:30.579000px;}
.ls0_c00172{letter-spacing:69.387000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00172{word-spacing:-40.413000px;}
.ws3_c00172{word-spacing:-37.413000px;}
.ws0_c00172{word-spacing:-34.413000px;}
.ws2_c00172{word-spacing:-22.413000px;}
.ws1_c00172{word-spacing:-14.460000px;}
.ws5_c00172{word-spacing:-9.885000px;}
.ws6_c00172{word-spacing:0.000000px;}
._39_c00172{margin-left:-75.918000px;}
._3e_c00172{margin-left:-26.466000px;}
._43_c00172{margin-left:-24.684000px;}
._3f_c00172{margin-left:-23.574000px;}
._42_c00172{margin-left:-22.488000px;}
._1f_c00172{margin-left:-20.223000px;}
._3b_c00172{margin-left:-18.879000px;}
._35_c00172{margin-left:-17.670000px;}
._2f_c00172{margin-left:-16.647000px;}
._1_c00172{margin-left:-14.217000px;}
._0_c00172{margin-left:-12.555000px;}
._44_c00172{margin-left:-11.340000px;}
._20_c00172{margin-left:-10.230000px;}
._26_c00172{margin-left:-8.310000px;}
._29_c00172{margin-left:-7.080000px;}
._16_c00172{margin-left:-5.022000px;}
._2a_c00172{margin-left:-3.960000px;}
._15_c00172{margin-left:-2.931000px;}
._14_c00172{margin-left:-1.650000px;}
._19_c00172{width:1.023000px;}
._9_c00172{width:2.139000px;}
._f_c00172{width:3.720000px;}
._a_c00172{width:4.836000px;}
._8_c00172{width:5.859000px;}
._c_c00172{width:7.254000px;}
._e_c00172{width:8.370000px;}
._2_c00172{width:9.765000px;}
._3_c00172{width:11.109000px;}
._5_c00172{width:13.020000px;}
._27_c00172{width:14.157000px;}
._d_c00172{width:15.159000px;}
._6_c00172{width:16.833000px;}
._1a_c00172{width:17.856000px;}
._21_c00172{width:19.629000px;}
._4_c00172{width:20.832000px;}
._17_c00172{width:24.087000px;}
._22_c00172{width:26.649000px;}
._1b_c00172{width:28.830000px;}
._13_c00172{width:30.411000px;}
._40_c00172{width:31.620000px;}
._1c_c00172{width:33.537000px;}
._23_c00172{width:34.545000px;}
._10_c00172{width:35.763000px;}
._28_c00172{width:36.840000px;}
._3d_c00172{width:37.920000px;}
._12_c00172{width:39.339000px;}
._11_c00172{width:41.385000px;}
._1e_c00172{width:43.524000px;}
._2c_c00172{width:44.589000px;}
._18_c00172{width:45.663000px;}
._b_c00172{width:47.802000px;}
._1d_c00172{width:50.592000px;}
._30_c00172{width:52.173000px;}
._25_c00172{width:53.859000px;}
._33_c00172{width:56.316000px;}
._2e_c00172{width:65.127000px;}
._2d_c00172{width:67.593000px;}
._3c_c00172{width:80.520000px;}
._34_c00172{width:85.602000px;}
._36_c00172{width:89.016000px;}
._7_c00172{width:97.650000px;}
._3a_c00172{width:108.438000px;}
._38_c00172{width:117.552000px;}
._24_c00172{width:128.709000px;}
._2b_c00172{width:171.126000px;}
._32_c00172{width:195.612000px;}
._41_c00172{width:253.458000px;}
._31_c00172{width:509.421000px;}
._45_c00172{width:826.212000px;}
._37_c00172{width:1103.817000px;}
.fc2_c00172{color:transparent;}
.fc1_c00172{color:rgb(128,128,128);}
.fc0_c00172{color:rgb(0,0,0);}
.fs4_c00172{font-size:48.000000px;}
.fs2_c00172{font-size:60.000000px;}
.fs0_c00172{font-size:93.000000px;}
.fs3_c00172{font-size:99.000000px;}
.fs1_c00172{font-size:102.000000px;}
.y0_c00172{bottom:0.000000px;}
.y26_c00172{bottom:3.105000px;}
.y25_c00172{bottom:7.228369px;}
.y24_c00172{bottom:81.270000px;}
.y23_c00172{bottom:116.370000px;}
.y22_c00172{bottom:150.870000px;}
.y21_c00172{bottom:184.620000px;}
.y20_c00172{bottom:218.670000px;}
.y1f_c00172{bottom:252.420000px;}
.y1e_c00172{bottom:286.170000px;}
.y1d_c00172{bottom:320.520000px;}
.y1c_c00172{bottom:354.420000px;}
.y1b_c00172{bottom:388.770000px;}
.y1a_c00172{bottom:422.220000px;}
.y19_c00172{bottom:456.570000px;}
.y18_c00172{bottom:488.370000px;}
.y17_c00172{bottom:523.470000px;}
.y16_c00172{bottom:556.920000px;}
.y15_c00172{bottom:591.870000px;}
.y14_c00172{bottom:624.270000px;}
.y13_c00172{bottom:657.420000px;}
.y12_c00172{bottom:692.220000px;}
.y11_c00172{bottom:725.220000px;}
.y10_c00172{bottom:758.370000px;}
.yf_c00172{bottom:792.120000px;}
.ye_c00172{bottom:825.870000px;}
.yd_c00172{bottom:858.870000px;}
.yc_c00172{bottom:892.320000px;}
.yb_c00172{bottom:926.370000px;}
.ya_c00172{bottom:958.470000px;}
.y9_c00172{bottom:992.970000px;}
.y8_c00172{bottom:1024.320000px;}
.y7_c00172{bottom:1059.420000px;}
.y6_c00172{bottom:1093.020000px;}
.y5_c00172{bottom:1126.620000px;}
.y4_c00172{bottom:1160.220000px;}
.y3_c00172{bottom:1192.320000px;}
.y2_c00172{bottom:1226.520000px;}
.y1_c00172{bottom:1260.120000px;}
.h4_c00172{height:13.200073px;}
.h5_c00172{height:43.804688px;}
.h2_c00172{height:117.748535px;}
.h3_c00172{height:129.143555px;}
.h0_c00172{height:1383.450000px;}
.h1_c00172{height:1383.750000px;}
.w2_c00172{width:104.875500px;}
.w0_c00172{width:878.025000px;}
.w1_c00172{width:878.250000px;}
.x0_c00172{left:0.000000px;}
.xc_c00172{left:48.900000px;}
.xb_c00172{left:49.950000px;}
.x9_c00172{left:51.000000px;}
.x8_c00172{left:52.050000px;}
.x6_c00172{left:53.100000px;}
.x5_c00172{left:54.300000px;}
.x4_c00172{left:55.800000px;}
.x3_c00172{left:57.000000px;}
.x2_c00172{left:58.050000px;}
.x1_c00172{left:68.850000px;}
.xa_c00172{left:100.200000px;}
.x7_c00172{left:201.600000px;}
.xd_c00172{left:331.200000px;}
.xe_c00172{left:390.826721px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls6_c00172{letter-spacing:0.000000pt;}
.ls1_c00172{letter-spacing:0.266667pt;}
.ls4_c00172{letter-spacing:3.280000pt;}
.ls5_c00172{letter-spacing:10.666667pt;}
.ls3_c00172{letter-spacing:10.810667pt;}
.ls7_c00172{letter-spacing:13.333333pt;}
.ls8_c00172{letter-spacing:16.000000pt;}
.ls2_c00172{letter-spacing:27.181333pt;}
.ls0_c00172{letter-spacing:61.677333pt;}
.ws4_c00172{word-spacing:-35.922667pt;}
.ws3_c00172{word-spacing:-33.256000pt;}
.ws0_c00172{word-spacing:-30.589333pt;}
.ws2_c00172{word-spacing:-19.922667pt;}
.ws1_c00172{word-spacing:-12.853333pt;}
.ws5_c00172{word-spacing:-8.786667pt;}
.ws6_c00172{word-spacing:0.000000pt;}
._39_c00172{margin-left:-67.482667pt;}
._3e_c00172{margin-left:-23.525333pt;}
._43_c00172{margin-left:-21.941333pt;}
._3f_c00172{margin-left:-20.954667pt;}
._42_c00172{margin-left:-19.989333pt;}
._1f_c00172{margin-left:-17.976000pt;}
._3b_c00172{margin-left:-16.781333pt;}
._35_c00172{margin-left:-15.706667pt;}
._2f_c00172{margin-left:-14.797333pt;}
._1_c00172{margin-left:-12.637333pt;}
._0_c00172{margin-left:-11.160000pt;}
._44_c00172{margin-left:-10.080000pt;}
._20_c00172{margin-left:-9.093333pt;}
._26_c00172{margin-left:-7.386667pt;}
._29_c00172{margin-left:-6.293333pt;}
._16_c00172{margin-left:-4.464000pt;}
._2a_c00172{margin-left:-3.520000pt;}
._15_c00172{margin-left:-2.605333pt;}
._14_c00172{margin-left:-1.466667pt;}
._19_c00172{width:0.909333pt;}
._9_c00172{width:1.901333pt;}
._f_c00172{width:3.306667pt;}
._a_c00172{width:4.298667pt;}
._8_c00172{width:5.208000pt;}
._c_c00172{width:6.448000pt;}
._e_c00172{width:7.440000pt;}
._2_c00172{width:8.680000pt;}
._3_c00172{width:9.874667pt;}
._5_c00172{width:11.573333pt;}
._27_c00172{width:12.584000pt;}
._d_c00172{width:13.474667pt;}
._6_c00172{width:14.962667pt;}
._1a_c00172{width:15.872000pt;}
._21_c00172{width:17.448000pt;}
._4_c00172{width:18.517333pt;}
._17_c00172{width:21.410667pt;}
._22_c00172{width:23.688000pt;}
._1b_c00172{width:25.626667pt;}
._13_c00172{width:27.032000pt;}
._40_c00172{width:28.106667pt;}
._1c_c00172{width:29.810667pt;}
._23_c00172{width:30.706667pt;}
._10_c00172{width:31.789333pt;}
._28_c00172{width:32.746667pt;}
._3d_c00172{width:33.706667pt;}
._12_c00172{width:34.968000pt;}
._11_c00172{width:36.786667pt;}
._1e_c00172{width:38.688000pt;}
._2c_c00172{width:39.634667pt;}
._18_c00172{width:40.589333pt;}
._b_c00172{width:42.490667pt;}
._1d_c00172{width:44.970667pt;}
._30_c00172{width:46.376000pt;}
._25_c00172{width:47.874667pt;}
._33_c00172{width:50.058667pt;}
._2e_c00172{width:57.890667pt;}
._2d_c00172{width:60.082667pt;}
._3c_c00172{width:71.573333pt;}
._34_c00172{width:76.090667pt;}
._36_c00172{width:79.125333pt;}
._7_c00172{width:86.800000pt;}
._3a_c00172{width:96.389333pt;}
._38_c00172{width:104.490667pt;}
._24_c00172{width:114.408000pt;}
._2b_c00172{width:152.112000pt;}
._32_c00172{width:173.877333pt;}
._41_c00172{width:225.296000pt;}
._31_c00172{width:452.818667pt;}
._45_c00172{width:734.410667pt;}
._37_c00172{width:981.170667pt;}
.fs4_c00172{font-size:42.666667pt;}
.fs2_c00172{font-size:53.333333pt;}
.fs0_c00172{font-size:82.666667pt;}
.fs3_c00172{font-size:88.000000pt;}
.fs1_c00172{font-size:90.666667pt;}
.y0_c00172{bottom:0.000000pt;}
.y26_c00172{bottom:2.760000pt;}
.y25_c00172{bottom:6.425217pt;}
.y24_c00172{bottom:72.240000pt;}
.y23_c00172{bottom:103.440000pt;}
.y22_c00172{bottom:134.106667pt;}
.y21_c00172{bottom:164.106667pt;}
.y20_c00172{bottom:194.373333pt;}
.y1f_c00172{bottom:224.373333pt;}
.y1e_c00172{bottom:254.373333pt;}
.y1d_c00172{bottom:284.906667pt;}
.y1c_c00172{bottom:315.040000pt;}
.y1b_c00172{bottom:345.573333pt;}
.y1a_c00172{bottom:375.306667pt;}
.y19_c00172{bottom:405.840000pt;}
.y18_c00172{bottom:434.106667pt;}
.y17_c00172{bottom:465.306667pt;}
.y16_c00172{bottom:495.040000pt;}
.y15_c00172{bottom:526.106667pt;}
.y14_c00172{bottom:554.906667pt;}
.y13_c00172{bottom:584.373333pt;}
.y12_c00172{bottom:615.306667pt;}
.y11_c00172{bottom:644.640000pt;}
.y10_c00172{bottom:674.106667pt;}
.yf_c00172{bottom:704.106667pt;}
.ye_c00172{bottom:734.106667pt;}
.yd_c00172{bottom:763.440000pt;}
.yc_c00172{bottom:793.173333pt;}
.yb_c00172{bottom:823.440000pt;}
.ya_c00172{bottom:851.973333pt;}
.y9_c00172{bottom:882.640000pt;}
.y8_c00172{bottom:910.506667pt;}
.y7_c00172{bottom:941.706667pt;}
.y6_c00172{bottom:971.573333pt;}
.y5_c00172{bottom:1001.440000pt;}
.y4_c00172{bottom:1031.306667pt;}
.y3_c00172{bottom:1059.840000pt;}
.y2_c00172{bottom:1090.240000pt;}
.y1_c00172{bottom:1120.106667pt;}
.h4_c00172{height:11.733399pt;}
.h5_c00172{height:38.937500pt;}
.h2_c00172{height:104.665365pt;}
.h3_c00172{height:114.794271pt;}
.h0_c00172{height:1229.733333pt;}
.h1_c00172{height:1230.000000pt;}
.w2_c00172{width:93.222667pt;}
.w0_c00172{width:780.466667pt;}
.w1_c00172{width:780.666667pt;}
.x0_c00172{left:0.000000pt;}
.xc_c00172{left:43.466667pt;}
.xb_c00172{left:44.400000pt;}
.x9_c00172{left:45.333333pt;}
.x8_c00172{left:46.266667pt;}
.x6_c00172{left:47.200000pt;}
.x5_c00172{left:48.266667pt;}
.x4_c00172{left:49.600000pt;}
.x3_c00172{left:50.666667pt;}
.x2_c00172{left:51.600000pt;}
.x1_c00172{left:61.200000pt;}
.xa_c00172{left:89.066667pt;}
.x7_c00172{left:179.200000pt;}
.xd_c00172{left:294.400000pt;}
.xe_c00172{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e0ff5b783508412728b1cca.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_d371e02cf7fb572e4bb762bb.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.ls1_c00173{letter-spacing:6.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:-63.504000px;}
.ws1_c00173{word-spacing:0.000000px;}
._2c_c00173{margin-left:-21.216000px;}
._11_c00173{margin-left:-20.064000px;}
._c_c00173{margin-left:-17.760000px;}
._2b_c00173{margin-left:-15.660000px;}
._30_c00173{margin-left:-9.972000px;}
._31_c00173{margin-left:-7.884000px;}
._8_c00173{margin-left:-4.800000px;}
._1f_c00173{margin-left:-3.360000px;}
._2_c00173{margin-left:-1.920000px;}
._0_c00173{width:1.536000px;}
._4_c00173{width:2.784000px;}
._5_c00173{width:4.704000px;}
._26_c00173{width:5.712000px;}
._7_c00173{width:6.720000px;}
._6_c00173{width:8.064000px;}
._10_c00173{width:9.072000px;}
._a_c00173{width:10.560000px;}
._e_c00173{width:12.240000px;}
._25_c00173{width:13.536000px;}
._1_c00173{width:14.688000px;}
._3_c00173{width:16.800000px;}
._22_c00173{width:17.988000px;}
._d_c00173{width:19.020000px;}
._20_c00173{width:21.552000px;}
._27_c00173{width:24.228000px;}
._9_c00173{width:26.112000px;}
._13_c00173{width:27.636000px;}
._33_c00173{width:28.800000px;}
._1a_c00173{width:29.868000px;}
._12_c00173{width:30.912000px;}
._18_c00173{width:32.256000px;}
._34_c00173{width:33.552000px;}
._b_c00173{width:34.560000px;}
._1b_c00173{width:36.096000px;}
._17_c00173{width:37.248000px;}
._19_c00173{width:38.772000px;}
._21_c00173{width:40.320000px;}
._1e_c00173{width:41.616000px;}
._14_c00173{width:43.296000px;}
._15_c00173{width:45.216000px;}
._2f_c00173{width:46.224000px;}
._f_c00173{width:47.820000px;}
._2d_c00173{width:48.888000px;}
._1d_c00173{width:50.112000px;}
._35_c00173{width:51.456000px;}
._24_c00173{width:54.312000px;}
._2a_c00173{width:55.584000px;}
._16_c00173{width:56.736000px;}
._28_c00173{width:61.056000px;}
._29_c00173{width:62.592000px;}
._36_c00173{width:78.720000px;}
._2e_c00173{width:81.792000px;}
._32_c00173{width:126.912000px;}
._1c_c00173{width:172.608000px;}
._23_c00173{width:175.932000px;}
._37_c00173{width:876.096000px;}
.fc2_c00173{color:transparent;}
.fc1_c00173{color:rgb(128,128,128);}
.fc0_c00173{color:rgb(0,0,0);}
.fs3_c00173{font-size:48.000000px;}
.fs1_c00173{font-size:60.000000px;}
.fs2_c00173{font-size:84.000000px;}
.fs0_c00173{font-size:96.000000px;}
.y0_c00173{bottom:0.000000px;}
.y26_c00173{bottom:3.105000px;}
.y25_c00173{bottom:7.228357px;}
.y24_c00173{bottom:76.230000px;}
.y23_c00173{bottom:108.780000px;}
.y22_c00173{bottom:144.180000px;}
.y21_c00173{bottom:178.530000px;}
.y20_c00173{bottom:212.730000px;}
.y1f_c00173{bottom:246.780000px;}
.y1e_c00173{bottom:280.830000px;}
.y1d_c00173{bottom:315.630000px;}
.y1c_c00173{bottom:349.080000px;}
.y1b_c00173{bottom:383.430000px;}
.y1a_c00173{bottom:417.780000px;}
.y19_c00173{bottom:451.980000px;}
.y18_c00173{bottom:486.030000px;}
.y17_c00173{bottom:520.080000px;}
.y16_c00173{bottom:553.830000px;}
.y15_c00173{bottom:588.630000px;}
.y14_c00173{bottom:621.630000px;}
.y13_c00173{bottom:655.080000px;}
.y12_c00173{bottom:689.130000px;}
.y11_c00173{bottom:722.880000px;}
.y10_c00173{bottom:756.330000px;}
.yf_c00173{bottom:790.080000px;}
.ye_c00173{bottom:824.580000px;}
.yd_c00173{bottom:858.330000px;}
.yc_c00173{bottom:892.080000px;}
.yb_c00173{bottom:926.130000px;}
.ya_c00173{bottom:959.130000px;}
.y9_c00173{bottom:992.280000px;}
.y8_c00173{bottom:1025.730000px;}
.y7_c00173{bottom:1059.180000px;}
.y6_c00173{bottom:1092.780000px;}
.y5_c00173{bottom:1126.230000px;}
.y4_c00173{bottom:1159.680000px;}
.y3_c00173{bottom:1192.830000px;}
.y2_c00173{bottom:1226.430000px;}
.y1_c00173{bottom:1259.580000px;}
.h3_c00173{height:13.200074px;}
.h4_c00173{height:43.804688px;}
.h2_c00173{height:121.546875px;}
.h0_c00173{height:1382.700000px;}
.h1_c00173{height:1383.000000px;}
.w2_c00173{width:104.875500px;}
.w0_c00173{width:863.175000px;}
.w1_c00173{width:863.250000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:260.550000px;}
.x2_c00173{left:262.800000px;}
.x3_c00173{left:264.300000px;}
.x4_c00173{left:265.500000px;}
.x5_c00173{left:266.550000px;}
.x9_c00173{left:267.600000px;}
.x7_c00173{left:268.650000px;}
.xc_c00173{left:269.700000px;}
.xb_c00173{left:270.900000px;}
.xd_c00173{left:272.400000px;}
.x6_c00173{left:315.600000px;}
.x8_c00173{left:317.850000px;}
.xf_c00173{left:383.401749px;}
.xa_c00173{left:418.200000px;}
.xe_c00173{left:484.350000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ls1_c00173{letter-spacing:5.333333pt;}
.ws0_c00173{word-spacing:-56.448000pt;}
.ws1_c00173{word-spacing:0.000000pt;}
._2c_c00173{margin-left:-18.858667pt;}
._11_c00173{margin-left:-17.834667pt;}
._c_c00173{margin-left:-15.786667pt;}
._2b_c00173{margin-left:-13.920000pt;}
._30_c00173{margin-left:-8.864000pt;}
._31_c00173{margin-left:-7.008000pt;}
._8_c00173{margin-left:-4.266667pt;}
._1f_c00173{margin-left:-2.986667pt;}
._2_c00173{margin-left:-1.706667pt;}
._0_c00173{width:1.365333pt;}
._4_c00173{width:2.474667pt;}
._5_c00173{width:4.181333pt;}
._26_c00173{width:5.077333pt;}
._7_c00173{width:5.973333pt;}
._6_c00173{width:7.168000pt;}
._10_c00173{width:8.064000pt;}
._a_c00173{width:9.386667pt;}
._e_c00173{width:10.880000pt;}
._25_c00173{width:12.032000pt;}
._1_c00173{width:13.056000pt;}
._3_c00173{width:14.933333pt;}
._22_c00173{width:15.989333pt;}
._d_c00173{width:16.906667pt;}
._20_c00173{width:19.157333pt;}
._27_c00173{width:21.536000pt;}
._9_c00173{width:23.210667pt;}
._13_c00173{width:24.565333pt;}
._33_c00173{width:25.600000pt;}
._1a_c00173{width:26.549333pt;}
._12_c00173{width:27.477333pt;}
._18_c00173{width:28.672000pt;}
._34_c00173{width:29.824000pt;}
._b_c00173{width:30.720000pt;}
._1b_c00173{width:32.085333pt;}
._17_c00173{width:33.109333pt;}
._19_c00173{width:34.464000pt;}
._21_c00173{width:35.840000pt;}
._1e_c00173{width:36.992000pt;}
._14_c00173{width:38.485333pt;}
._15_c00173{width:40.192000pt;}
._2f_c00173{width:41.088000pt;}
._f_c00173{width:42.506667pt;}
._2d_c00173{width:43.456000pt;}
._1d_c00173{width:44.544000pt;}
._35_c00173{width:45.738667pt;}
._24_c00173{width:48.277333pt;}
._2a_c00173{width:49.408000pt;}
._16_c00173{width:50.432000pt;}
._28_c00173{width:54.272000pt;}
._29_c00173{width:55.637333pt;}
._36_c00173{width:69.973333pt;}
._2e_c00173{width:72.704000pt;}
._32_c00173{width:112.810667pt;}
._1c_c00173{width:153.429333pt;}
._23_c00173{width:156.384000pt;}
._37_c00173{width:778.752000pt;}
.fs3_c00173{font-size:42.666667pt;}
.fs1_c00173{font-size:53.333333pt;}
.fs2_c00173{font-size:74.666667pt;}
.fs0_c00173{font-size:85.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y26_c00173{bottom:2.760000pt;}
.y25_c00173{bottom:6.425206pt;}
.y24_c00173{bottom:67.760000pt;}
.y23_c00173{bottom:96.693333pt;}
.y22_c00173{bottom:128.160000pt;}
.y21_c00173{bottom:158.693333pt;}
.y20_c00173{bottom:189.093333pt;}
.y1f_c00173{bottom:219.360000pt;}
.y1e_c00173{bottom:249.626667pt;}
.y1d_c00173{bottom:280.560000pt;}
.y1c_c00173{bottom:310.293333pt;}
.y1b_c00173{bottom:340.826667pt;}
.y1a_c00173{bottom:371.360000pt;}
.y19_c00173{bottom:401.760000pt;}
.y18_c00173{bottom:432.026667pt;}
.y17_c00173{bottom:462.293333pt;}
.y16_c00173{bottom:492.293333pt;}
.y15_c00173{bottom:523.226667pt;}
.y14_c00173{bottom:552.560000pt;}
.y13_c00173{bottom:582.293333pt;}
.y12_c00173{bottom:612.560000pt;}
.y11_c00173{bottom:642.560000pt;}
.y10_c00173{bottom:672.293333pt;}
.yf_c00173{bottom:702.293333pt;}
.ye_c00173{bottom:732.960000pt;}
.yd_c00173{bottom:762.960000pt;}
.yc_c00173{bottom:792.960000pt;}
.yb_c00173{bottom:823.226667pt;}
.ya_c00173{bottom:852.560000pt;}
.y9_c00173{bottom:882.026667pt;}
.y8_c00173{bottom:911.760000pt;}
.y7_c00173{bottom:941.493333pt;}
.y6_c00173{bottom:971.360000pt;}
.y5_c00173{bottom:1001.093333pt;}
.y4_c00173{bottom:1030.826667pt;}
.y3_c00173{bottom:1060.293333pt;}
.y2_c00173{bottom:1090.160000pt;}
.y1_c00173{bottom:1119.626667pt;}
.h3_c00173{height:11.733399pt;}
.h4_c00173{height:38.937500pt;}
.h2_c00173{height:108.041667pt;}
.h0_c00173{height:1229.066667pt;}
.h1_c00173{height:1229.333333pt;}
.w2_c00173{width:93.222667pt;}
.w0_c00173{width:767.266667pt;}
.w1_c00173{width:767.333333pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:231.600000pt;}
.x2_c00173{left:233.600000pt;}
.x3_c00173{left:234.933333pt;}
.x4_c00173{left:236.000000pt;}
.x5_c00173{left:236.933333pt;}
.x9_c00173{left:237.866667pt;}
.x7_c00173{left:238.800000pt;}
.xc_c00173{left:239.733333pt;}
.xb_c00173{left:240.800000pt;}
.xd_c00173{left:242.133333pt;}
.x6_c00173{left:280.533333pt;}
.x8_c00173{left:282.533333pt;}
.xf_c00173{left:340.801554pt;}
.xa_c00173{left:371.733333pt;}
.xe_c00173{left:430.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b23a125d772cf99d4f39c882.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_84b02c20f5b3c10f4398e9d5.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_f2b7376658c8cce985eea1de.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_148066a581dc5df7890bc753.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls3_c00174{letter-spacing:-3.000000px;}
.ls1_c00174{letter-spacing:0.000000px;}
.ls2_c00174{letter-spacing:6.000000px;}
.ls0_c00174{letter-spacing:7.260000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00174{word-spacing:-63.504000px;}
.ws3_c00174{word-spacing:-45.360000px;}
.ws2_c00174{word-spacing:-43.428000px;}
.ws0_c00174{word-spacing:-23.136000px;}
.ws4_c00174{word-spacing:-21.582000px;}
.ws5_c00174{word-spacing:0.000000px;}
._35_c00174{margin-left:-43.392000px;}
._39_c00174{margin-left:-17.820000px;}
._25_c00174{margin-left:-16.560000px;}
._1c_c00174{margin-left:-11.760000px;}
._3f_c00174{margin-left:-9.696000px;}
._23_c00174{margin-left:-7.710000px;}
._3b_c00174{margin-left:-5.718000px;}
._18_c00174{margin-left:-2.376000px;}
._2b_c00174{margin-left:-1.098000px;}
._0_c00174{width:1.530000px;}
._3_c00174{width:2.598000px;}
._6_c00174{width:3.834000px;}
._2_c00174{width:5.472000px;}
._5_c00174{width:7.296000px;}
._27_c00174{width:8.640000px;}
._f_c00174{width:9.696000px;}
._10_c00174{width:10.956000px;}
._b_c00174{width:12.180000px;}
._2c_c00174{width:13.476000px;}
._1a_c00174{width:14.808000px;}
._c_c00174{width:16.044000px;}
._13_c00174{width:17.754000px;}
._12_c00174{width:19.632000px;}
._32_c00174{width:20.730000px;}
._14_c00174{width:21.780000px;}
._2d_c00174{width:24.294000px;}
._e_c00174{width:25.620000px;}
._11_c00174{width:26.772000px;}
._16_c00174{width:28.608000px;}
._28_c00174{width:29.886000px;}
._d_c00174{width:31.800000px;}
._3c_c00174{width:34.944000px;}
._8_c00174{width:36.888000px;}
._7_c00174{width:38.112000px;}
._30_c00174{width:39.234000px;}
._1d_c00174{width:40.512000px;}
._31_c00174{width:42.144000px;}
._15_c00174{width:43.302000px;}
._3d_c00174{width:44.442000px;}
._19_c00174{width:45.576000px;}
._1b_c00174{width:47.328000px;}
._2a_c00174{width:49.650000px;}
._1e_c00174{width:50.850000px;}
._48_c00174{width:51.912000px;}
._17_c00174{width:53.760000px;}
._42_c00174{width:54.834000px;}
._29_c00174{width:56.370000px;}
._1f_c00174{width:58.572000px;}
._3a_c00174{width:62.166000px;}
._22_c00174{width:63.168000px;}
._45_c00174{width:65.202000px;}
._4_c00174{width:66.528000px;}
._a_c00174{width:71.322000px;}
._2f_c00174{width:73.728000px;}
._46_c00174{width:77.304000px;}
._9_c00174{width:79.002000px;}
._47_c00174{width:80.946000px;}
._26_c00174{width:82.512000px;}
._44_c00174{width:86.244000px;}
._34_c00174{width:89.010000px;}
._40_c00174{width:90.240000px;}
._41_c00174{width:99.222000px;}
._43_c00174{width:147.276000px;}
._38_c00174{width:176.640000px;}
._2e_c00174{width:180.672000px;}
._3e_c00174{width:190.254000px;}
._37_c00174{width:201.384000px;}
._33_c00174{width:269.352000px;}
._36_c00174{width:291.264000px;}
._21_c00174{width:321.894000px;}
._1_c00174{width:442.785000px;}
._24_c00174{width:1470.870000px;}
._20_c00174{width:1816.128000px;}
.fc2_c00174{color:transparent;}
.fc1_c00174{color:rgb(128,128,128);}
.fc0_c00174{color:rgb(0,0,0);}
.fs5_c00174{font-size:27.000000px;}
.fs3_c00174{font-size:30.000000px;}
.fs0_c00174{font-size:45.000000px;}
.fs7_c00174{font-size:48.000000px;}
.fs4_c00174{font-size:60.000000px;}
.fs2_c00174{font-size:84.000000px;}
.fs1_c00174{font-size:96.000000px;}
.fs6_c00174{font-size:102.000000px;}
.y0_c00174{bottom:0.000000px;}
.y28_c00174{bottom:3.105000px;}
.y27_c00174{bottom:7.228369px;}
.y26_c00174{bottom:59.370000px;}
.y25_c00174{bottom:95.520000px;}
.y24_c00174{bottom:129.570000px;}
.y23_c00174{bottom:163.620000px;}
.y22_c00174{bottom:197.820000px;}
.y21_c00174{bottom:231.420000px;}
.y20_c00174{bottom:265.620000px;}
.y1f_c00174{bottom:299.070000px;}
.y1e_c00174{bottom:333.720000px;}
.y1d_c00174{bottom:367.770000px;}
.y1c_c00174{bottom:401.520000px;}
.y1b_c00174{bottom:434.670000px;}
.y1a_c00174{bottom:469.170000px;}
.y19_c00174{bottom:502.920000px;}
.y18_c00174{bottom:536.220000px;}
.y17_c00174{bottom:570.270000px;}
.y16_c00174{bottom:604.020000px;}
.y15_c00174{bottom:637.170000px;}
.y14_c00174{bottom:670.170000px;}
.y13_c00174{bottom:704.670000px;}
.y12_c00174{bottom:737.670000px;}
.y11_c00174{bottom:771.870000px;}
.y10_c00174{bottom:804.870000px;}
.yf_c00174{bottom:838.620000px;}
.ye_c00174{bottom:871.320000px;}
.yd_c00174{bottom:905.070000px;}
.yc_c00174{bottom:938.520000px;}
.yb_c00174{bottom:972.570000px;}
.ya_c00174{bottom:1005.720000px;}
.y9_c00174{bottom:1035.420000px;}
.y8_c00174{bottom:1039.170000px;}
.y7_c00174{bottom:1072.620000px;}
.y6_c00174{bottom:1106.970000px;}
.y5_c00174{bottom:1140.120000px;}
.y4_c00174{bottom:1172.820000px;}
.y3_c00174{bottom:1206.570000px;}
.y2_c00174{bottom:1240.020000px;}
.y1_c00174{bottom:1273.320000px;}
.h5_c00174{height:13.200073px;}
.h6_c00174{height:43.804688px;}
.h3_c00174{height:70.224609px;}
.h2_c00174{height:121.546875px;}
.h4_c00174{height:129.143555px;}
.h0_c00174{height:1356.450000px;}
.h1_c00174{height:1356.750000px;}
.w2_c00174{width:104.875500px;}
.w0_c00174{width:860.775000px;}
.w1_c00174{width:861.000000px;}
.x0_c00174{left:0.000000px;}
.xa_c00174{left:52.650000px;}
.x6_c00174{left:54.300000px;}
.x8_c00174{left:55.800000px;}
.x3_c00174{left:57.000000px;}
.x2_c00174{left:59.100000px;}
.x9_c00174{left:105.000000px;}
.x7_c00174{left:106.650000px;}
.x5_c00174{left:108.750000px;}
.x4_c00174{left:287.550000px;}
.xc_c00174{left:382.201721px;}
.x1_c00174{left:437.100000px;}
.xb_c00174{left:587.250000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls3_c00174{letter-spacing:-2.666667pt;}
.ls1_c00174{letter-spacing:0.000000pt;}
.ls2_c00174{letter-spacing:5.333333pt;}
.ls0_c00174{letter-spacing:6.453333pt;}
.ws1_c00174{word-spacing:-56.448000pt;}
.ws3_c00174{word-spacing:-40.320000pt;}
.ws2_c00174{word-spacing:-38.602667pt;}
.ws0_c00174{word-spacing:-20.565333pt;}
.ws4_c00174{word-spacing:-19.184000pt;}
.ws5_c00174{word-spacing:0.000000pt;}
._35_c00174{margin-left:-38.570667pt;}
._39_c00174{margin-left:-15.840000pt;}
._25_c00174{margin-left:-14.720000pt;}
._1c_c00174{margin-left:-10.453333pt;}
._3f_c00174{margin-left:-8.618667pt;}
._23_c00174{margin-left:-6.853333pt;}
._3b_c00174{margin-left:-5.082667pt;}
._18_c00174{margin-left:-2.112000pt;}
._2b_c00174{margin-left:-0.976000pt;}
._0_c00174{width:1.360000pt;}
._3_c00174{width:2.309333pt;}
._6_c00174{width:3.408000pt;}
._2_c00174{width:4.864000pt;}
._5_c00174{width:6.485333pt;}
._27_c00174{width:7.680000pt;}
._f_c00174{width:8.618667pt;}
._10_c00174{width:9.738667pt;}
._b_c00174{width:10.826667pt;}
._2c_c00174{width:11.978667pt;}
._1a_c00174{width:13.162667pt;}
._c_c00174{width:14.261333pt;}
._13_c00174{width:15.781333pt;}
._12_c00174{width:17.450667pt;}
._32_c00174{width:18.426667pt;}
._14_c00174{width:19.360000pt;}
._2d_c00174{width:21.594667pt;}
._e_c00174{width:22.773333pt;}
._11_c00174{width:23.797333pt;}
._16_c00174{width:25.429333pt;}
._28_c00174{width:26.565333pt;}
._d_c00174{width:28.266667pt;}
._3c_c00174{width:31.061333pt;}
._8_c00174{width:32.789333pt;}
._7_c00174{width:33.877333pt;}
._30_c00174{width:34.874667pt;}
._1d_c00174{width:36.010667pt;}
._31_c00174{width:37.461333pt;}
._15_c00174{width:38.490667pt;}
._3d_c00174{width:39.504000pt;}
._19_c00174{width:40.512000pt;}
._1b_c00174{width:42.069333pt;}
._2a_c00174{width:44.133333pt;}
._1e_c00174{width:45.200000pt;}
._48_c00174{width:46.144000pt;}
._17_c00174{width:47.786667pt;}
._42_c00174{width:48.741333pt;}
._29_c00174{width:50.106667pt;}
._1f_c00174{width:52.064000pt;}
._3a_c00174{width:55.258667pt;}
._22_c00174{width:56.149333pt;}
._45_c00174{width:57.957333pt;}
._4_c00174{width:59.136000pt;}
._a_c00174{width:63.397333pt;}
._2f_c00174{width:65.536000pt;}
._46_c00174{width:68.714667pt;}
._9_c00174{width:70.224000pt;}
._47_c00174{width:71.952000pt;}
._26_c00174{width:73.344000pt;}
._44_c00174{width:76.661333pt;}
._34_c00174{width:79.120000pt;}
._40_c00174{width:80.213333pt;}
._41_c00174{width:88.197333pt;}
._43_c00174{width:130.912000pt;}
._38_c00174{width:157.013333pt;}
._2e_c00174{width:160.597333pt;}
._3e_c00174{width:169.114667pt;}
._37_c00174{width:179.008000pt;}
._33_c00174{width:239.424000pt;}
._36_c00174{width:258.901333pt;}
._21_c00174{width:286.128000pt;}
._1_c00174{width:393.586667pt;}
._24_c00174{width:1307.440000pt;}
._20_c00174{width:1614.336000pt;}
.fs5_c00174{font-size:24.000000pt;}
.fs3_c00174{font-size:26.666667pt;}
.fs0_c00174{font-size:40.000000pt;}
.fs7_c00174{font-size:42.666667pt;}
.fs4_c00174{font-size:53.333333pt;}
.fs2_c00174{font-size:74.666667pt;}
.fs1_c00174{font-size:85.333333pt;}
.fs6_c00174{font-size:90.666667pt;}
.y0_c00174{bottom:0.000000pt;}
.y28_c00174{bottom:2.760000pt;}
.y27_c00174{bottom:6.425217pt;}
.y26_c00174{bottom:52.773333pt;}
.y25_c00174{bottom:84.906667pt;}
.y24_c00174{bottom:115.173333pt;}
.y23_c00174{bottom:145.440000pt;}
.y22_c00174{bottom:175.840000pt;}
.y21_c00174{bottom:205.706667pt;}
.y20_c00174{bottom:236.106667pt;}
.y1f_c00174{bottom:265.840000pt;}
.y1e_c00174{bottom:296.640000pt;}
.y1d_c00174{bottom:326.906667pt;}
.y1c_c00174{bottom:356.906667pt;}
.y1b_c00174{bottom:386.373333pt;}
.y1a_c00174{bottom:417.040000pt;}
.y19_c00174{bottom:447.040000pt;}
.y18_c00174{bottom:476.640000pt;}
.y17_c00174{bottom:506.906667pt;}
.y16_c00174{bottom:536.906667pt;}
.y15_c00174{bottom:566.373333pt;}
.y14_c00174{bottom:595.706667pt;}
.y13_c00174{bottom:626.373333pt;}
.y12_c00174{bottom:655.706667pt;}
.y11_c00174{bottom:686.106667pt;}
.y10_c00174{bottom:715.440000pt;}
.yf_c00174{bottom:745.440000pt;}
.ye_c00174{bottom:774.506667pt;}
.yd_c00174{bottom:804.506667pt;}
.yc_c00174{bottom:834.240000pt;}
.yb_c00174{bottom:864.506667pt;}
.ya_c00174{bottom:893.973333pt;}
.y9_c00174{bottom:920.373333pt;}
.y8_c00174{bottom:923.706667pt;}
.y7_c00174{bottom:953.440000pt;}
.y6_c00174{bottom:983.973333pt;}
.y5_c00174{bottom:1013.440000pt;}
.y4_c00174{bottom:1042.506667pt;}
.y3_c00174{bottom:1072.506667pt;}
.y2_c00174{bottom:1102.240000pt;}
.y1_c00174{bottom:1131.840000pt;}
.h5_c00174{height:11.733399pt;}
.h6_c00174{height:38.937500pt;}
.h3_c00174{height:62.421875pt;}
.h2_c00174{height:108.041667pt;}
.h4_c00174{height:114.794271pt;}
.h0_c00174{height:1205.733333pt;}
.h1_c00174{height:1206.000000pt;}
.w2_c00174{width:93.222667pt;}
.w0_c00174{width:765.133333pt;}
.w1_c00174{width:765.333333pt;}
.x0_c00174{left:0.000000pt;}
.xa_c00174{left:46.800000pt;}
.x6_c00174{left:48.266667pt;}
.x8_c00174{left:49.600000pt;}
.x3_c00174{left:50.666667pt;}
.x2_c00174{left:52.533333pt;}
.x9_c00174{left:93.333333pt;}
.x7_c00174{left:94.800000pt;}
.x5_c00174{left:96.666667pt;}
.x4_c00174{left:255.600000pt;}
.xc_c00174{left:339.734863pt;}
.x1_c00174{left:388.533333pt;}
.xb_c00174{left:522.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb4a18db75c6721400dedc73.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_cde4deb2030422f5ef8cf728.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_42126b5e90beb5102b006cfa.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls2_c00175{letter-spacing:-12.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.ls1_c00175{letter-spacing:18.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-81.504000px;}
.ws1_c00175{word-spacing:-44.436000px;}
.ws2_c00175{word-spacing:-17.880000px;}
.ws3_c00175{word-spacing:0.000000px;}
._35_c00175{margin-left:-81.888000px;}
._42_c00175{margin-left:-45.744000px;}
._0_c00175{margin-left:-40.992000px;}
._3b_c00175{margin-left:-37.728000px;}
._38_c00175{margin-left:-32.640000px;}
._3a_c00175{margin-left:-26.976000px;}
._3c_c00175{margin-left:-25.344000px;}
._33_c00175{margin-left:-21.504000px;}
._4_c00175{margin-left:-19.488000px;}
._45_c00175{margin-left:-17.616000px;}
._49_c00175{margin-left:-16.320000px;}
._36_c00175{margin-left:-14.640000px;}
._5_c00175{margin-left:-13.152000px;}
._3e_c00175{margin-left:-11.040000px;}
._14_c00175{margin-left:-9.696000px;}
._2f_c00175{margin-left:-8.520000px;}
._26_c00175{margin-left:-7.248000px;}
._15_c00175{margin-left:-5.856000px;}
._2a_c00175{margin-left:-4.128000px;}
._19_c00175{margin-left:-2.976000px;}
._6_c00175{margin-left:-1.056000px;}
._2_c00175{width:1.632000px;}
._9_c00175{width:2.784000px;}
._8_c00175{width:4.320000px;}
._a_c00175{width:5.952000px;}
._c_c00175{width:7.392000px;}
._7_c00175{width:8.544000px;}
._18_c00175{width:10.368000px;}
._12_c00175{width:11.520000px;}
._e_c00175{width:12.912000px;}
._22_c00175{width:14.016000px;}
._21_c00175{width:15.936000px;}
._11_c00175{width:17.904000px;}
._40_c00175{width:19.008000px;}
._20_c00175{width:20.448000px;}
._b_c00175{width:25.584000px;}
._25_c00175{width:26.880000px;}
._31_c00175{width:27.984000px;}
._1c_c00175{width:29.184000px;}
._28_c00175{width:30.240000px;}
._1a_c00175{width:31.536000px;}
._2c_c00175{width:32.736000px;}
._d_c00175{width:34.248000px;}
._2d_c00175{width:35.328000px;}
._2b_c00175{width:36.960000px;}
._24_c00175{width:38.688000px;}
._30_c00175{width:39.840000px;}
._17_c00175{width:40.992000px;}
._16_c00175{width:42.672000px;}
._1b_c00175{width:43.776000px;}
._4d_c00175{width:44.880000px;}
._1e_c00175{width:45.888000px;}
._1d_c00175{width:47.232000px;}
._23_c00175{width:49.296000px;}
._13_c00175{width:51.696000px;}
._4b_c00175{width:53.256000px;}
._4e_c00175{width:54.288000px;}
._f_c00175{width:56.352000px;}
._34_c00175{width:57.888000px;}
._32_c00175{width:62.400000px;}
._1f_c00175{width:67.968000px;}
._10_c00175{width:70.656000px;}
._41_c00175{width:74.640000px;}
._2e_c00175{width:76.824000px;}
._29_c00175{width:80.160000px;}
._27_c00175{width:84.384000px;}
._39_c00175{width:86.016000px;}
._37_c00175{width:105.216000px;}
._43_c00175{width:122.592000px;}
._4f_c00175{width:138.144000px;}
._46_c00175{width:139.680000px;}
._44_c00175{width:142.464000px;}
._47_c00175{width:152.904000px;}
._4a_c00175{width:159.888000px;}
._3f_c00175{width:176.688000px;}
._48_c00175{width:201.312000px;}
._3_c00175{width:252.384000px;}
._1_c00175{width:299.616000px;}
._4c_c00175{width:394.848000px;}
._3d_c00175{width:654.096000px;}
.fc2_c00175{color:transparent;}
.fc1_c00175{color:rgb(128,128,128);}
.fc0_c00175{color:rgb(0,0,0);}
.fs2_c00175{font-size:36.000000px;}
.fs4_c00175{font-size:48.000000px;}
.fs1_c00175{font-size:84.000000px;}
.fs0_c00175{font-size:96.000000px;}
.fs3_c00175{font-size:120.000000px;}
.y0_c00175{bottom:0.000000px;}
.y26_c00175{bottom:3.105000px;}
.y25_c00175{bottom:7.228369px;}
.y24_c00175{bottom:66.420000px;}
.y23_c00175{bottom:134.970000px;}
.y22_c00175{bottom:168.720000px;}
.y21_c00175{bottom:203.820000px;}
.y20_c00175{bottom:237.570000px;}
.y1f_c00175{bottom:272.070000px;}
.y1e_c00175{bottom:306.720000px;}
.y1d_c00175{bottom:340.470000px;}
.y1c_c00175{bottom:374.970000px;}
.y1b_c00175{bottom:409.020000px;}
.y1a_c00175{bottom:443.370000px;}
.y19_c00175{bottom:477.120000px;}
.y18_c00175{bottom:509.970000px;}
.y17_c00175{bottom:544.770000px;}
.y16_c00175{bottom:578.820000px;}
.y15_c00175{bottom:612.870000px;}
.y14_c00175{bottom:646.020000px;}
.y13_c00175{bottom:665.820000px;}
.y12_c00175{bottom:679.320000px;}
.y11_c00175{bottom:714.420000px;}
.y10_c00175{bottom:748.170000px;}
.yf_c00175{bottom:781.920000px;}
.ye_c00175{bottom:815.670000px;}
.yd_c00175{bottom:849.120000px;}
.yc_c00175{bottom:882.870000px;}
.yb_c00175{bottom:916.020000px;}
.ya_c00175{bottom:949.020000px;}
.y9_c00175{bottom:982.770000px;}
.y8_c00175{bottom:1016.520000px;}
.y7_c00175{bottom:1049.970000px;}
.y6_c00175{bottom:1082.970000px;}
.y5_c00175{bottom:1116.720000px;}
.y4_c00175{bottom:1150.170000px;}
.y3_c00175{bottom:1183.170000px;}
.y2_c00175{bottom:1217.070000px;}
.y1_c00175{bottom:1249.470000px;}
.h4_c00175{height:13.200073px;}
.h5_c00175{height:43.804688px;}
.h2_c00175{height:121.546875px;}
.h3_c00175{height:128.040000px;}
.h0_c00175{height:1369.950000px;}
.h1_c00175{height:1370.250000px;}
.w2_c00175{width:104.875500px;}
.w0_c00175{width:854.850000px;}
.w1_c00175{width:855.000000px;}
.x0_c00175{left:0.000000px;}
.x8_c00175{left:33.450000px;}
.x7_c00175{left:39.750000px;}
.xb_c00175{left:128.250000px;}
.x3_c00175{left:142.800000px;}
.x1_c00175{left:156.300000px;}
.x2_c00175{left:242.700000px;}
.x4_c00175{left:243.900000px;}
.x6_c00175{left:245.400000px;}
.x5_c00175{left:247.050000px;}
.x9_c00175{left:248.700000px;}
.xc_c00175{left:250.200000px;}
.xa_c00175{left:251.400000px;}
.xe_c00175{left:252.900000px;}
.xd_c00175{left:300.450000px;}
.x10_c00175{left:379.239258px;}
.xf_c00175{left:750.300000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls2_c00175{letter-spacing:-10.666667pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ls1_c00175{letter-spacing:16.000000pt;}
.ws0_c00175{word-spacing:-72.448000pt;}
.ws1_c00175{word-spacing:-39.498667pt;}
.ws2_c00175{word-spacing:-15.893333pt;}
.ws3_c00175{word-spacing:0.000000pt;}
._35_c00175{margin-left:-72.789333pt;}
._42_c00175{margin-left:-40.661333pt;}
._0_c00175{margin-left:-36.437333pt;}
._3b_c00175{margin-left:-33.536000pt;}
._38_c00175{margin-left:-29.013333pt;}
._3a_c00175{margin-left:-23.978667pt;}
._3c_c00175{margin-left:-22.528000pt;}
._33_c00175{margin-left:-19.114667pt;}
._4_c00175{margin-left:-17.322667pt;}
._45_c00175{margin-left:-15.658667pt;}
._49_c00175{margin-left:-14.506667pt;}
._36_c00175{margin-left:-13.013333pt;}
._5_c00175{margin-left:-11.690667pt;}
._3e_c00175{margin-left:-9.813333pt;}
._14_c00175{margin-left:-8.618667pt;}
._2f_c00175{margin-left:-7.573333pt;}
._26_c00175{margin-left:-6.442667pt;}
._15_c00175{margin-left:-5.205333pt;}
._2a_c00175{margin-left:-3.669333pt;}
._19_c00175{margin-left:-2.645333pt;}
._6_c00175{margin-left:-0.938667pt;}
._2_c00175{width:1.450667pt;}
._9_c00175{width:2.474667pt;}
._8_c00175{width:3.840000pt;}
._a_c00175{width:5.290667pt;}
._c_c00175{width:6.570667pt;}
._7_c00175{width:7.594667pt;}
._18_c00175{width:9.216000pt;}
._12_c00175{width:10.240000pt;}
._e_c00175{width:11.477333pt;}
._22_c00175{width:12.458667pt;}
._21_c00175{width:14.165333pt;}
._11_c00175{width:15.914667pt;}
._40_c00175{width:16.896000pt;}
._20_c00175{width:18.176000pt;}
._b_c00175{width:22.741333pt;}
._25_c00175{width:23.893333pt;}
._31_c00175{width:24.874667pt;}
._1c_c00175{width:25.941333pt;}
._28_c00175{width:26.880000pt;}
._1a_c00175{width:28.032000pt;}
._2c_c00175{width:29.098667pt;}
._d_c00175{width:30.442667pt;}
._2d_c00175{width:31.402667pt;}
._2b_c00175{width:32.853333pt;}
._24_c00175{width:34.389333pt;}
._30_c00175{width:35.413333pt;}
._17_c00175{width:36.437333pt;}
._16_c00175{width:37.930667pt;}
._1b_c00175{width:38.912000pt;}
._4d_c00175{width:39.893333pt;}
._1e_c00175{width:40.789333pt;}
._1d_c00175{width:41.984000pt;}
._23_c00175{width:43.818667pt;}
._13_c00175{width:45.952000pt;}
._4b_c00175{width:47.338667pt;}
._4e_c00175{width:48.256000pt;}
._f_c00175{width:50.090667pt;}
._34_c00175{width:51.456000pt;}
._32_c00175{width:55.466667pt;}
._1f_c00175{width:60.416000pt;}
._10_c00175{width:62.805333pt;}
._41_c00175{width:66.346667pt;}
._2e_c00175{width:68.288000pt;}
._29_c00175{width:71.253333pt;}
._27_c00175{width:75.008000pt;}
._39_c00175{width:76.458667pt;}
._37_c00175{width:93.525333pt;}
._43_c00175{width:108.970667pt;}
._4f_c00175{width:122.794667pt;}
._46_c00175{width:124.160000pt;}
._44_c00175{width:126.634667pt;}
._47_c00175{width:135.914667pt;}
._4a_c00175{width:142.122667pt;}
._3f_c00175{width:157.056000pt;}
._48_c00175{width:178.944000pt;}
._3_c00175{width:224.341333pt;}
._1_c00175{width:266.325333pt;}
._4c_c00175{width:350.976000pt;}
._3d_c00175{width:581.418667pt;}
.fs2_c00175{font-size:32.000000pt;}
.fs4_c00175{font-size:42.666667pt;}
.fs1_c00175{font-size:74.666667pt;}
.fs0_c00175{font-size:85.333333pt;}
.fs3_c00175{font-size:106.666667pt;}
.y0_c00175{bottom:0.000000pt;}
.y26_c00175{bottom:2.760000pt;}
.y25_c00175{bottom:6.425217pt;}
.y24_c00175{bottom:59.040000pt;}
.y23_c00175{bottom:119.973333pt;}
.y22_c00175{bottom:149.973333pt;}
.y21_c00175{bottom:181.173333pt;}
.y20_c00175{bottom:211.173333pt;}
.y1f_c00175{bottom:241.840000pt;}
.y1e_c00175{bottom:272.640000pt;}
.y1d_c00175{bottom:302.640000pt;}
.y1c_c00175{bottom:333.306667pt;}
.y1b_c00175{bottom:363.573333pt;}
.y1a_c00175{bottom:394.106667pt;}
.y19_c00175{bottom:424.106667pt;}
.y18_c00175{bottom:453.306667pt;}
.y17_c00175{bottom:484.240000pt;}
.y16_c00175{bottom:514.506667pt;}
.y15_c00175{bottom:544.773333pt;}
.y14_c00175{bottom:574.240000pt;}
.y13_c00175{bottom:591.840000pt;}
.y12_c00175{bottom:603.840000pt;}
.y11_c00175{bottom:635.040000pt;}
.y10_c00175{bottom:665.040000pt;}
.yf_c00175{bottom:695.040000pt;}
.ye_c00175{bottom:725.040000pt;}
.yd_c00175{bottom:754.773333pt;}
.yc_c00175{bottom:784.773333pt;}
.yb_c00175{bottom:814.240000pt;}
.ya_c00175{bottom:843.573333pt;}
.y9_c00175{bottom:873.573333pt;}
.y8_c00175{bottom:903.573333pt;}
.y7_c00175{bottom:933.306667pt;}
.y6_c00175{bottom:962.640000pt;}
.y5_c00175{bottom:992.640000pt;}
.y4_c00175{bottom:1022.373333pt;}
.y3_c00175{bottom:1051.706667pt;}
.y2_c00175{bottom:1081.840000pt;}
.y1_c00175{bottom:1110.640000pt;}
.h4_c00175{height:11.733399pt;}
.h5_c00175{height:38.937500pt;}
.h2_c00175{height:108.041667pt;}
.h3_c00175{height:113.813333pt;}
.h0_c00175{height:1217.733333pt;}
.h1_c00175{height:1218.000000pt;}
.w2_c00175{width:93.222667pt;}
.w0_c00175{width:759.866667pt;}
.w1_c00175{width:760.000000pt;}
.x0_c00175{left:0.000000pt;}
.x8_c00175{left:29.733333pt;}
.x7_c00175{left:35.333333pt;}
.xb_c00175{left:114.000000pt;}
.x3_c00175{left:126.933333pt;}
.x1_c00175{left:138.933333pt;}
.x2_c00175{left:215.733333pt;}
.x4_c00175{left:216.800000pt;}
.x6_c00175{left:218.133333pt;}
.x5_c00175{left:219.600000pt;}
.x9_c00175{left:221.066667pt;}
.xc_c00175{left:222.400000pt;}
.xa_c00175{left:223.466667pt;}
.xe_c00175{left:224.800000pt;}
.xd_c00175{left:267.066667pt;}
.x10_c00175{left:337.101563pt;}
.xf_c00175{left:666.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9df6d7031bd6217353fecb7c.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_aa4fe4bb42abef915c745b77.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_f3d8770f52b879e6894171c0.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_d60260da530e738ac2bb4018.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00176{vertical-align:-129.000000px;}
.v0_c00176{vertical-align:0.000000px;}
.ls4_c00176{letter-spacing:0.000000px;}
.ls2_c00176{letter-spacing:3.252000px;}
.ls1_c00176{letter-spacing:12.492000px;}
.ls5_c00176{letter-spacing:21.000000px;}
.ls0_c00176{letter-spacing:21.600000px;}
.ls3_c00176{letter-spacing:83.664000px;}
.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;}
}
.ws4_c00176{word-spacing:-51.000000px;}
.ws0_c00176{word-spacing:-44.136000px;}
.ws1_c00176{word-spacing:-23.136000px;}
.ws3_c00176{word-spacing:-20.244000px;}
.ws2_c00176{word-spacing:-1.512000px;}
.ws5_c00176{word-spacing:0.000000px;}
._24_c00176{margin-left:-81.984000px;}
._29_c00176{margin-left:-23.904000px;}
._2a_c00176{margin-left:-18.720000px;}
._10_c00176{margin-left:-17.088000px;}
._b_c00176{margin-left:-15.840000px;}
._45_c00176{margin-left:-13.500000px;}
._c_c00176{margin-left:-12.288000px;}
._19_c00176{margin-left:-10.272000px;}
._47_c00176{margin-left:-9.108000px;}
._11_c00176{margin-left:-7.776000px;}
._e_c00176{margin-left:-6.312000px;}
._d_c00176{margin-left:-5.112000px;}
._22_c00176{margin-left:-3.168000px;}
._16_c00176{margin-left:-1.944000px;}
._5_c00176{width:1.824000px;}
._6_c00176{width:2.880000px;}
._2_c00176{width:3.936000px;}
._3_c00176{width:5.760000px;}
._0_c00176{width:6.912000px;}
._9_c00176{width:7.968000px;}
._1f_c00176{width:9.120000px;}
._14_c00176{width:10.368000px;}
._2d_c00176{width:11.424000px;}
._35_c00176{width:13.152000px;}
._f_c00176{width:14.688000px;}
._33_c00176{width:16.512000px;}
._3c_c00176{width:17.592000px;}
._2c_c00176{width:18.912000px;}
._13_c00176{width:20.064000px;}
._21_c00176{width:21.888000px;}
._3f_c00176{width:23.148000px;}
._2b_c00176{width:24.288000px;}
._17_c00176{width:25.440000px;}
._3d_c00176{width:26.856000px;}
._15_c00176{width:28.032000px;}
._12_c00176{width:30.336000px;}
._8_c00176{width:32.256000px;}
._4_c00176{width:33.792000px;}
._2f_c00176{width:35.616000px;}
._26_c00176{width:36.768000px;}
._20_c00176{width:38.208000px;}
._7_c00176{width:39.264000px;}
._27_c00176{width:41.184000px;}
._1a_c00176{width:42.624000px;}
._32_c00176{width:43.704000px;}
._30_c00176{width:45.408000px;}
._1d_c00176{width:47.232000px;}
._36_c00176{width:49.128000px;}
._18_c00176{width:52.368000px;}
._39_c00176{width:53.424000px;}
._41_c00176{width:54.612000px;}
._31_c00176{width:58.752000px;}
._1e_c00176{width:61.152000px;}
._34_c00176{width:62.400000px;}
._43_c00176{width:63.576000px;}
._37_c00176{width:65.952000px;}
._1c_c00176{width:67.200000px;}
._4b_c00176{width:69.024000px;}
._1b_c00176{width:73.920000px;}
._a_c00176{width:75.456000px;}
._40_c00176{width:76.560000px;}
._44_c00176{width:78.384000px;}
._38_c00176{width:84.348000px;}
._46_c00176{width:97.728000px;}
._3a_c00176{width:179.832000px;}
._48_c00176{width:183.840000px;}
._25_c00176{width:185.376000px;}
._23_c00176{width:222.816000px;}
._4c_c00176{width:250.548000px;}
._2e_c00176{width:261.912000px;}
._3b_c00176{width:265.644000px;}
._28_c00176{width:303.936000px;}
._42_c00176{width:333.564000px;}
._1_c00176{width:396.960000px;}
._4a_c00176{width:398.016000px;}
._3e_c00176{width:422.520000px;}
._49_c00176{width:1081.248000px;}
.fc2_c00176{color:transparent;}
.fc1_c00176{color:rgb(128,128,128);}
.fc0_c00176{color:rgb(0,0,0);}
.fs3_c00176{font-size:36.000000px;}
.fs4_c00176{font-size:48.000000px;}
.fs2_c00176{font-size:84.000000px;}
.fs0_c00176{font-size:96.000000px;}
.fs1_c00176{font-size:102.000000px;}
.y0_c00176{bottom:0.000000px;}
.y24_c00176{bottom:3.105000px;}
.y23_c00176{bottom:7.228371px;}
.y22_c00176{bottom:70.965000px;}
.y21_c00176{bottom:104.415000px;}
.y20_c00176{bottom:171.765000px;}
.y1f_c00176{bottom:207.015000px;}
.y1e_c00176{bottom:243.015000px;}
.y1d_c00176{bottom:275.415000px;}
.y1c_c00176{bottom:308.115000px;}
.y1b_c00176{bottom:340.665000px;}
.y1a_c00176{bottom:373.665000px;}
.y19_c00176{bottom:410.115000px;}
.y18_c00176{bottom:444.165000px;}
.y17_c00176{bottom:475.965000px;}
.y16_c00176{bottom:510.315000px;}
.y15_c00176{bottom:543.765000px;}
.y14_c00176{bottom:577.215000px;}
.y13_c00176{bottom:610.665000px;}
.y12_c00176{bottom:656.115000px;}
.y11_c00176{bottom:677.115000px;}
.y10_c00176{bottom:745.515000px;}
.yf_c00176{bottom:780.015000px;}
.ye_c00176{bottom:813.015000px;}
.yd_c00176{bottom:845.565000px;}
.yc_c00176{bottom:879.315000px;}
.yb_c00176{bottom:912.915000px;}
.ya_c00176{bottom:946.365000px;}
.y9_c00176{bottom:979.815000px;}
.y8_c00176{bottom:1012.515000px;}
.y7_c00176{bottom:1045.965000px;}
.y6_c00176{bottom:1078.965000px;}
.y5_c00176{bottom:1112.115000px;}
.y4_c00176{bottom:1145.865000px;}
.y3_c00176{bottom:1178.265000px;}
.y2_c00176{bottom:1211.415000px;}
.y1_c00176{bottom:1244.715000px;}
.h5_c00176{height:13.200074px;}
.h3_c00176{height:35.314453px;}
.h6_c00176{height:43.804688px;}
.h4_c00176{height:98.314453px;}
.h2_c00176{height:121.546875px;}
.h1_c00176{height:1349.250000px;}
.h0_c00176{height:1349.475000px;}
.w2_c00176{width:104.875500px;}
.w1_c00176{width:855.750000px;}
.w0_c00176{width:855.900000px;}
.x0_c00176{left:0.000000px;}
.x4_c00176{left:28.800000px;}
.x2_c00176{left:30.450000px;}
.x3_c00176{left:31.500000px;}
.x9_c00176{left:33.750000px;}
.x6_c00176{left:71.550000px;}
.x7_c00176{left:80.700000px;}
.x8_c00176{left:82.350000px;}
.x1_c00176{left:84.000000px;}
.x5_c00176{left:222.150000px;}
.xa_c00176{left:379.764221px;}
@media print{
.v1_c00176{vertical-align:-114.666667pt;}
.v0_c00176{vertical-align:0.000000pt;}
.ls4_c00176{letter-spacing:0.000000pt;}
.ls2_c00176{letter-spacing:2.890667pt;}
.ls1_c00176{letter-spacing:11.104000pt;}
.ls5_c00176{letter-spacing:18.666667pt;}
.ls0_c00176{letter-spacing:19.200000pt;}
.ls3_c00176{letter-spacing:74.368000pt;}
.ws4_c00176{word-spacing:-45.333333pt;}
.ws0_c00176{word-spacing:-39.232000pt;}
.ws1_c00176{word-spacing:-20.565333pt;}
.ws3_c00176{word-spacing:-17.994667pt;}
.ws2_c00176{word-spacing:-1.344000pt;}
.ws5_c00176{word-spacing:0.000000pt;}
._24_c00176{margin-left:-72.874667pt;}
._29_c00176{margin-left:-21.248000pt;}
._2a_c00176{margin-left:-16.640000pt;}
._10_c00176{margin-left:-15.189333pt;}
._b_c00176{margin-left:-14.080000pt;}
._45_c00176{margin-left:-12.000000pt;}
._c_c00176{margin-left:-10.922667pt;}
._19_c00176{margin-left:-9.130667pt;}
._47_c00176{margin-left:-8.096000pt;}
._11_c00176{margin-left:-6.912000pt;}
._e_c00176{margin-left:-5.610667pt;}
._d_c00176{margin-left:-4.544000pt;}
._22_c00176{margin-left:-2.816000pt;}
._16_c00176{margin-left:-1.728000pt;}
._5_c00176{width:1.621333pt;}
._6_c00176{width:2.560000pt;}
._2_c00176{width:3.498667pt;}
._3_c00176{width:5.120000pt;}
._0_c00176{width:6.144000pt;}
._9_c00176{width:7.082667pt;}
._1f_c00176{width:8.106667pt;}
._14_c00176{width:9.216000pt;}
._2d_c00176{width:10.154667pt;}
._35_c00176{width:11.690667pt;}
._f_c00176{width:13.056000pt;}
._33_c00176{width:14.677333pt;}
._3c_c00176{width:15.637333pt;}
._2c_c00176{width:16.810667pt;}
._13_c00176{width:17.834667pt;}
._21_c00176{width:19.456000pt;}
._3f_c00176{width:20.576000pt;}
._2b_c00176{width:21.589333pt;}
._17_c00176{width:22.613333pt;}
._3d_c00176{width:23.872000pt;}
._15_c00176{width:24.917333pt;}
._12_c00176{width:26.965333pt;}
._8_c00176{width:28.672000pt;}
._4_c00176{width:30.037333pt;}
._2f_c00176{width:31.658667pt;}
._26_c00176{width:32.682667pt;}
._20_c00176{width:33.962667pt;}
._7_c00176{width:34.901333pt;}
._27_c00176{width:36.608000pt;}
._1a_c00176{width:37.888000pt;}
._32_c00176{width:38.848000pt;}
._30_c00176{width:40.362667pt;}
._1d_c00176{width:41.984000pt;}
._36_c00176{width:43.669333pt;}
._18_c00176{width:46.549333pt;}
._39_c00176{width:47.488000pt;}
._41_c00176{width:48.544000pt;}
._31_c00176{width:52.224000pt;}
._1e_c00176{width:54.357333pt;}
._34_c00176{width:55.466667pt;}
._43_c00176{width:56.512000pt;}
._37_c00176{width:58.624000pt;}
._1c_c00176{width:59.733333pt;}
._4b_c00176{width:61.354667pt;}
._1b_c00176{width:65.706667pt;}
._a_c00176{width:67.072000pt;}
._40_c00176{width:68.053333pt;}
._44_c00176{width:69.674667pt;}
._38_c00176{width:74.976000pt;}
._46_c00176{width:86.869333pt;}
._3a_c00176{width:159.850667pt;}
._48_c00176{width:163.413333pt;}
._25_c00176{width:164.778667pt;}
._23_c00176{width:198.058667pt;}
._4c_c00176{width:222.709333pt;}
._2e_c00176{width:232.810667pt;}
._3b_c00176{width:236.128000pt;}
._28_c00176{width:270.165333pt;}
._42_c00176{width:296.501333pt;}
._1_c00176{width:352.853333pt;}
._4a_c00176{width:353.792000pt;}
._3e_c00176{width:375.573333pt;}
._49_c00176{width:961.109333pt;}
.fs3_c00176{font-size:32.000000pt;}
.fs4_c00176{font-size:42.666667pt;}
.fs2_c00176{font-size:74.666667pt;}
.fs0_c00176{font-size:85.333333pt;}
.fs1_c00176{font-size:90.666667pt;}
.y0_c00176{bottom:0.000000pt;}
.y24_c00176{bottom:2.760000pt;}
.y23_c00176{bottom:6.425219pt;}
.y22_c00176{bottom:63.080000pt;}
.y21_c00176{bottom:92.813333pt;}
.y20_c00176{bottom:152.680000pt;}
.y1f_c00176{bottom:184.013333pt;}
.y1e_c00176{bottom:216.013333pt;}
.y1d_c00176{bottom:244.813333pt;}
.y1c_c00176{bottom:273.880000pt;}
.y1b_c00176{bottom:302.813333pt;}
.y1a_c00176{bottom:332.146667pt;}
.y19_c00176{bottom:364.546667pt;}
.y18_c00176{bottom:394.813333pt;}
.y17_c00176{bottom:423.080000pt;}
.y16_c00176{bottom:453.613333pt;}
.y15_c00176{bottom:483.346667pt;}
.y14_c00176{bottom:513.080000pt;}
.y13_c00176{bottom:542.813333pt;}
.y12_c00176{bottom:583.213333pt;}
.y11_c00176{bottom:601.880000pt;}
.y10_c00176{bottom:662.680000pt;}
.yf_c00176{bottom:693.346667pt;}
.ye_c00176{bottom:722.680000pt;}
.yd_c00176{bottom:751.613333pt;}
.yc_c00176{bottom:781.613333pt;}
.yb_c00176{bottom:811.480000pt;}
.ya_c00176{bottom:841.213333pt;}
.y9_c00176{bottom:870.946667pt;}
.y8_c00176{bottom:900.013333pt;}
.y7_c00176{bottom:929.746667pt;}
.y6_c00176{bottom:959.080000pt;}
.y5_c00176{bottom:988.546667pt;}
.y4_c00176{bottom:1018.546667pt;}
.y3_c00176{bottom:1047.346667pt;}
.y2_c00176{bottom:1076.813333pt;}
.y1_c00176{bottom:1106.413333pt;}
.h5_c00176{height:11.733399pt;}
.h3_c00176{height:31.390625pt;}
.h6_c00176{height:38.937500pt;}
.h4_c00176{height:87.390625pt;}
.h2_c00176{height:108.041667pt;}
.h1_c00176{height:1199.333333pt;}
.h0_c00176{height:1199.533333pt;}
.w2_c00176{width:93.222667pt;}
.w1_c00176{width:760.666667pt;}
.w0_c00176{width:760.800000pt;}
.x0_c00176{left:0.000000pt;}
.x4_c00176{left:25.600000pt;}
.x2_c00176{left:27.066667pt;}
.x3_c00176{left:28.000000pt;}
.x9_c00176{left:30.000000pt;}
.x6_c00176{left:63.600000pt;}
.x7_c00176{left:71.733333pt;}
.x8_c00176{left:73.200000pt;}
.x1_c00176{left:74.666667pt;}
.x5_c00176{left:197.466667pt;}
.xa_c00176{left:337.568197pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1521dfcd006f28c31a08dc02.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_5083561937eb9a5f2792bede.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_3bd7287d7c8dab0fad5f3f79.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_b6bd4acdbf5bc869f7a80f39.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls2_c00177{letter-spacing:0.000000px;}
.ls1_c00177{letter-spacing:4.500000px;}
.ls3_c00177{letter-spacing:9.000000px;}
.ls0_c00177{letter-spacing:19.500000px;}
.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;}
}
.ws4_c00177{word-spacing:-53.856000px;}
.ws5_c00177{word-spacing:-43.084800px;}
.ws1_c00177{word-spacing:-29.244000px;}
.ws3_c00177{word-spacing:-23.961600px;}
.ws2_c00177{word-spacing:-23.136000px;}
.ws0_c00177{word-spacing:-20.244000px;}
.ws6_c00177{word-spacing:0.000000px;}
._37_c00177{margin-left:-31.740000px;}
._1a_c00177{margin-left:-23.655000px;}
._30_c00177{margin-left:-20.151000px;}
._7_c00177{margin-left:-16.128000px;}
._36_c00177{margin-left:-14.889000px;}
._6_c00177{margin-left:-13.335000px;}
._31_c00177{margin-left:-12.252000px;}
._18_c00177{margin-left:-11.223000px;}
._3e_c00177{margin-left:-10.194000px;}
._26_c00177{margin-left:-8.988000px;}
._2_c00177{margin-left:-7.785000px;}
._19_c00177{margin-left:-5.952000px;}
._17_c00177{margin-left:-4.416000px;}
._0_c00177{margin-left:-2.565000px;}
._20_c00177{margin-left:-1.041000px;}
._10_c00177{width:1.344000px;}
._8_c00177{width:2.400000px;}
._4_c00177{width:3.510000px;}
._c_c00177{width:4.704000px;}
._a_c00177{width:5.952000px;}
._e_c00177{width:7.338000px;}
._b_c00177{width:8.352000px;}
._9_c00177{width:9.696000px;}
._11_c00177{width:11.136000px;}
._15_c00177{width:12.390000px;}
._1c_c00177{width:14.433000px;}
._25_c00177{width:15.867000px;}
._13_c00177{width:17.034000px;}
._23_c00177{width:18.042000px;}
._1f_c00177{width:19.818000px;}
._1b_c00177{width:21.024000px;}
._2f_c00177{width:22.620000px;}
._24_c00177{width:24.636000px;}
._29_c00177{width:26.460000px;}
._1d_c00177{width:28.554000px;}
._d_c00177{width:30.474000px;}
._f_c00177{width:32.766000px;}
._2c_c00177{width:35.379000px;}
._2e_c00177{width:36.894000px;}
._28_c00177{width:38.034000px;}
._12_c00177{width:39.360000px;}
._35_c00177{width:40.554000px;}
._2a_c00177{width:41.658000px;}
._16_c00177{width:42.762000px;}
._14_c00177{width:44.964000px;}
._32_c00177{width:48.342000px;}
._3c_c00177{width:51.984000px;}
._33_c00177{width:53.472000px;}
._27_c00177{width:55.833000px;}
._38_c00177{width:58.266000px;}
._3d_c00177{width:62.880000px;}
._2b_c00177{width:66.477000px;}
._1e_c00177{width:77.541000px;}
._39_c00177{width:82.026000px;}
._1_c00177{width:117.585000px;}
._3_c00177{width:132.840000px;}
._3f_c00177{width:135.654000px;}
._22_c00177{width:177.120000px;}
._21_c00177{width:249.657000px;}
._2d_c00177{width:273.654000px;}
._34_c00177{width:360.309000px;}
._3b_c00177{width:656.214000px;}
._3a_c00177{width:1176.033000px;}
._5_c00177{width:1474.560000px;}
.fc2_c00177{color:transparent;}
.fc1_c00177{color:rgb(128,128,128);}
.fc0_c00177{color:rgb(0,0,0);}
.fs5_c00177{font-size:36.000000px;}
.fs1_c00177{font-size:45.000000px;}
.fs8_c00177{font-size:48.000000px;}
.fs6_c00177{font-size:76.800000px;}
.fs0_c00177{font-size:78.000000px;}
.fs3_c00177{font-size:84.000000px;}
.fs2_c00177{font-size:96.000000px;}
.fs4_c00177{font-size:99.000000px;}
.fs7_c00177{font-size:105.000000px;}
.y0_c00177{bottom:0.000000px;}
.y24_c00177{bottom:3.105000px;}
.y23_c00177{bottom:7.228355px;}
.y22_c00177{bottom:71.835000px;}
.y21_c00177{bottom:104.835000px;}
.y20_c00177{bottom:138.735000px;}
.y1f_c00177{bottom:173.085000px;}
.y1e_c00177{bottom:207.885000px;}
.y1d_c00177{bottom:241.635000px;}
.y1c_c00177{bottom:275.985000px;}
.y1b_c00177{bottom:310.185000px;}
.y1a_c00177{bottom:343.785000px;}
.y19_c00177{bottom:413.085000px;}
.y18_c00177{bottom:446.385000px;}
.y17_c00177{bottom:480.585000px;}
.y16_c00177{bottom:514.635000px;}
.y15_c00177{bottom:548.985000px;}
.y14_c00177{bottom:582.435000px;}
.y13_c00177{bottom:616.485000px;}
.y12_c00177{bottom:649.335000px;}
.y11_c00177{bottom:717.735000px;}
.y10_c00177{bottom:819.135000px;}
.yf_c00177{bottom:853.185000px;}
.ye_c00177{bottom:886.635000px;}
.yd_c00177{bottom:919.935000px;}
.yc_c00177{bottom:954.135000px;}
.yb_c00177{bottom:986.385000px;}
.ya_c00177{bottom:1020.135000px;}
.y9_c00177{bottom:1055.235000px;}
.y8_c00177{bottom:1087.335000px;}
.y7_c00177{bottom:1119.735000px;}
.y6_c00177{bottom:1151.235000px;}
.y5_c00177{bottom:1184.535000px;}
.y4_c00177{bottom:1219.035000px;}
.y3_c00177{bottom:1253.385000px;}
.y2_c00177{bottom:1270.635000px;}
.y1_c00177{bottom:1303.035000px;}
.h9_c00177{height:13.200074px;}
.ha_c00177{height:43.804688px;}
.h7_c00177{height:45.580078px;}
.h3_c00177{height:56.975098px;}
.h2_c00177{height:91.291992px;}
.h6_c00177{height:98.314453px;}
.h5_c00177{height:106.353516px;}
.h4_c00177{height:121.546875px;}
.h8_c00177{height:132.941895px;}
.h1_c00177{height:1366.500000px;}
.h0_c00177{height:1366.725000px;}
.w2_c00177{width:104.875500px;}
.w0_c00177{width:852.675000px;}
.w1_c00177{width:852.750000px;}
.x0_c00177{left:0.000000px;}
.x5_c00177{left:30.000000px;}
.x6_c00177{left:31.050000px;}
.x7_c00177{left:35.400000px;}
.x12_c00177{left:185.550000px;}
.x3_c00177{left:246.600000px;}
.x4_c00177{left:247.650000px;}
.x8_c00177{left:248.700000px;}
.x9_c00177{left:249.750000px;}
.xc_c00177{left:252.450000px;}
.xd_c00177{left:253.500000px;}
.x11_c00177{left:255.150000px;}
.xe_c00177{left:256.200000px;}
.x13_c00177{left:257.400000px;}
.x14_c00177{left:258.450000px;}
.xb_c00177{left:300.000000px;}
.x10_c00177{left:304.800000px;}
.x2_c00177{left:363.450000px;}
.x1_c00177{left:375.600000px;}
.x16_c00177{left:378.151749px;}
.xa_c00177{left:436.650000px;}
.xf_c00177{left:469.050000px;}
.x15_c00177{left:794.700000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls2_c00177{letter-spacing:0.000000pt;}
.ls1_c00177{letter-spacing:4.000000pt;}
.ls3_c00177{letter-spacing:8.000000pt;}
.ls0_c00177{letter-spacing:17.333333pt;}
.ws4_c00177{word-spacing:-47.872000pt;}
.ws5_c00177{word-spacing:-38.297600pt;}
.ws1_c00177{word-spacing:-25.994667pt;}
.ws3_c00177{word-spacing:-21.299200pt;}
.ws2_c00177{word-spacing:-20.565333pt;}
.ws0_c00177{word-spacing:-17.994667pt;}
.ws6_c00177{word-spacing:0.000000pt;}
._37_c00177{margin-left:-28.213333pt;}
._1a_c00177{margin-left:-21.026667pt;}
._30_c00177{margin-left:-17.912000pt;}
._7_c00177{margin-left:-14.336000pt;}
._36_c00177{margin-left:-13.234667pt;}
._6_c00177{margin-left:-11.853333pt;}
._31_c00177{margin-left:-10.890667pt;}
._18_c00177{margin-left:-9.976000pt;}
._3e_c00177{margin-left:-9.061333pt;}
._26_c00177{margin-left:-7.989333pt;}
._2_c00177{margin-left:-6.920000pt;}
._19_c00177{margin-left:-5.290667pt;}
._17_c00177{margin-left:-3.925333pt;}
._0_c00177{margin-left:-2.280000pt;}
._20_c00177{margin-left:-0.925333pt;}
._10_c00177{width:1.194667pt;}
._8_c00177{width:2.133333pt;}
._4_c00177{width:3.120000pt;}
._c_c00177{width:4.181333pt;}
._a_c00177{width:5.290667pt;}
._e_c00177{width:6.522667pt;}
._b_c00177{width:7.424000pt;}
._9_c00177{width:8.618667pt;}
._11_c00177{width:9.898667pt;}
._15_c00177{width:11.013333pt;}
._1c_c00177{width:12.829333pt;}
._25_c00177{width:14.104000pt;}
._13_c00177{width:15.141333pt;}
._23_c00177{width:16.037333pt;}
._1f_c00177{width:17.616000pt;}
._1b_c00177{width:18.688000pt;}
._2f_c00177{width:20.106667pt;}
._24_c00177{width:21.898667pt;}
._29_c00177{width:23.520000pt;}
._1d_c00177{width:25.381333pt;}
._d_c00177{width:27.088000pt;}
._f_c00177{width:29.125333pt;}
._2c_c00177{width:31.448000pt;}
._2e_c00177{width:32.794667pt;}
._28_c00177{width:33.808000pt;}
._12_c00177{width:34.986667pt;}
._35_c00177{width:36.048000pt;}
._2a_c00177{width:37.029333pt;}
._16_c00177{width:38.010667pt;}
._14_c00177{width:39.968000pt;}
._32_c00177{width:42.970667pt;}
._3c_c00177{width:46.208000pt;}
._33_c00177{width:47.530667pt;}
._27_c00177{width:49.629333pt;}
._38_c00177{width:51.792000pt;}
._3d_c00177{width:55.893333pt;}
._2b_c00177{width:59.090667pt;}
._1e_c00177{width:68.925333pt;}
._39_c00177{width:72.912000pt;}
._1_c00177{width:104.520000pt;}
._3_c00177{width:118.080000pt;}
._3f_c00177{width:120.581333pt;}
._22_c00177{width:157.440000pt;}
._21_c00177{width:221.917333pt;}
._2d_c00177{width:243.248000pt;}
._34_c00177{width:320.274667pt;}
._3b_c00177{width:583.301333pt;}
._3a_c00177{width:1045.362667pt;}
._5_c00177{width:1310.720000pt;}
.fs5_c00177{font-size:32.000000pt;}
.fs1_c00177{font-size:40.000000pt;}
.fs8_c00177{font-size:42.666667pt;}
.fs6_c00177{font-size:68.266667pt;}
.fs0_c00177{font-size:69.333333pt;}
.fs3_c00177{font-size:74.666667pt;}
.fs2_c00177{font-size:85.333333pt;}
.fs4_c00177{font-size:88.000000pt;}
.fs7_c00177{font-size:93.333333pt;}
.y0_c00177{bottom:0.000000pt;}
.y24_c00177{bottom:2.760000pt;}
.y23_c00177{bottom:6.425204pt;}
.y22_c00177{bottom:63.853333pt;}
.y21_c00177{bottom:93.186667pt;}
.y20_c00177{bottom:123.320000pt;}
.y1f_c00177{bottom:153.853333pt;}
.y1e_c00177{bottom:184.786667pt;}
.y1d_c00177{bottom:214.786667pt;}
.y1c_c00177{bottom:245.320000pt;}
.y1b_c00177{bottom:275.720000pt;}
.y1a_c00177{bottom:305.586667pt;}
.y19_c00177{bottom:367.186667pt;}
.y18_c00177{bottom:396.786667pt;}
.y17_c00177{bottom:427.186667pt;}
.y16_c00177{bottom:457.453333pt;}
.y15_c00177{bottom:487.986667pt;}
.y14_c00177{bottom:517.720000pt;}
.y13_c00177{bottom:547.986667pt;}
.y12_c00177{bottom:577.186667pt;}
.y11_c00177{bottom:637.986667pt;}
.y10_c00177{bottom:728.120000pt;}
.yf_c00177{bottom:758.386667pt;}
.ye_c00177{bottom:788.120000pt;}
.yd_c00177{bottom:817.720000pt;}
.yc_c00177{bottom:848.120000pt;}
.yb_c00177{bottom:876.786667pt;}
.ya_c00177{bottom:906.786667pt;}
.y9_c00177{bottom:937.986667pt;}
.y8_c00177{bottom:966.520000pt;}
.y7_c00177{bottom:995.320000pt;}
.y6_c00177{bottom:1023.320000pt;}
.y5_c00177{bottom:1052.920000pt;}
.y4_c00177{bottom:1083.586667pt;}
.y3_c00177{bottom:1114.120000pt;}
.y2_c00177{bottom:1129.453333pt;}
.y1_c00177{bottom:1158.253333pt;}
.h9_c00177{height:11.733399pt;}
.ha_c00177{height:38.937500pt;}
.h7_c00177{height:40.515625pt;}
.h3_c00177{height:50.644531pt;}
.h2_c00177{height:81.148438pt;}
.h6_c00177{height:87.390625pt;}
.h5_c00177{height:94.536458pt;}
.h4_c00177{height:108.041667pt;}
.h8_c00177{height:118.170573pt;}
.h1_c00177{height:1214.666667pt;}
.h0_c00177{height:1214.866667pt;}
.w2_c00177{width:93.222667pt;}
.w0_c00177{width:757.933333pt;}
.w1_c00177{width:758.000000pt;}
.x0_c00177{left:0.000000pt;}
.x5_c00177{left:26.666667pt;}
.x6_c00177{left:27.600000pt;}
.x7_c00177{left:31.466667pt;}
.x12_c00177{left:164.933333pt;}
.x3_c00177{left:219.200000pt;}
.x4_c00177{left:220.133333pt;}
.x8_c00177{left:221.066667pt;}
.x9_c00177{left:222.000000pt;}
.xc_c00177{left:224.400000pt;}
.xd_c00177{left:225.333333pt;}
.x11_c00177{left:226.800000pt;}
.xe_c00177{left:227.733333pt;}
.x13_c00177{left:228.800000pt;}
.x14_c00177{left:229.733333pt;}
.xb_c00177{left:266.666667pt;}
.x10_c00177{left:270.933333pt;}
.x2_c00177{left:323.066667pt;}
.x1_c00177{left:333.866667pt;}
.x16_c00177{left:336.134888pt;}
.xa_c00177{left:388.133333pt;}
.xf_c00177{left:416.933333pt;}
.x15_c00177{left:706.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_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_4333c74d2877e6b07f0de768.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_67acf162206bcaeae4ca90e2.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls1_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:4.452000px;}
.ls2_c00178{letter-spacing:21.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00178{word-spacing:-63.504000px;}
.ws2_c00178{word-spacing:-44.136000px;}
.ws0_c00178{word-spacing:-23.136000px;}
.ws3_c00178{word-spacing:0.000000px;}
._29_c00178{margin-left:-10.464000px;}
._1e_c00178{margin-left:-9.312000px;}
._28_c00178{margin-left:-7.608000px;}
._1f_c00178{margin-left:-4.800000px;}
._8_c00178{margin-left:-2.976000px;}
._5_c00178{margin-left:-1.464000px;}
._4_c00178{width:1.344000px;}
._2_c00178{width:3.168000px;}
._3_c00178{width:4.320000px;}
._1_c00178{width:5.472000px;}
._b_c00178{width:6.816000px;}
._11_c00178{width:8.280000px;}
._a_c00178{width:9.312000px;}
._f_c00178{width:10.848000px;}
._30_c00178{width:11.856000px;}
._0_c00178{width:12.960000px;}
._d_c00178{width:14.592000px;}
._6_c00178{width:16.416000px;}
._12_c00178{width:17.424000px;}
._c_c00178{width:18.864000px;}
._2e_c00178{width:19.872000px;}
._e_c00178{width:20.928000px;}
._2f_c00178{width:21.960000px;}
._2b_c00178{width:24.288000px;}
._9_c00178{width:25.296000px;}
._26_c00178{width:26.592000px;}
._10_c00178{width:28.416000px;}
._25_c00178{width:30.120000px;}
._13_c00178{width:31.584000px;}
._1a_c00178{width:32.784000px;}
._17_c00178{width:33.984000px;}
._27_c00178{width:34.992000px;}
._14_c00178{width:36.288000px;}
._15_c00178{width:37.824000px;}
._16_c00178{width:39.144000px;}
._7_c00178{width:41.376000px;}
._1b_c00178{width:43.008000px;}
._2d_c00178{width:45.408000px;}
._24_c00178{width:46.416000px;}
._1c_c00178{width:47.616000px;}
._20_c00178{width:49.152000px;}
._2c_c00178{width:50.208000px;}
._1d_c00178{width:51.552000px;}
._19_c00178{width:53.016000px;}
._2a_c00178{width:55.296000px;}
._18_c00178{width:60.192000px;}
._21_c00178{width:72.960000px;}
._23_c00178{width:79.488000px;}
._22_c00178{width:81.552000px;}
._31_c00178{width:135.336000px;}
._32_c00178{width:2005.152000px;}
.fc2_c00178{color:transparent;}
.fc1_c00178{color:rgb(128,128,128);}
.fc0_c00178{color:rgb(0,0,0);}
.fs2_c00178{font-size:48.000000px;}
.fs1_c00178{font-size:84.000000px;}
.fs0_c00178{font-size:96.000000px;}
.y0_c00178{bottom:0.000000px;}
.y27_c00178{bottom:3.105000px;}
.y26_c00178{bottom:7.228369px;}
.y25_c00178{bottom:88.470000px;}
.y24_c00178{bottom:123.420000px;}
.y23_c00178{bottom:157.920000px;}
.y22_c00178{bottom:191.670000px;}
.y21_c00178{bottom:226.170000px;}
.y20_c00178{bottom:259.920000px;}
.y1f_c00178{bottom:294.270000px;}
.y1e_c00178{bottom:327.720000px;}
.y1d_c00178{bottom:362.370000px;}
.y1c_c00178{bottom:395.820000px;}
.y1b_c00178{bottom:429.570000px;}
.y1a_c00178{bottom:463.320000px;}
.y19_c00178{bottom:497.370000px;}
.y18_c00178{bottom:530.520000px;}
.y17_c00178{bottom:563.970000px;}
.y16_c00178{bottom:597.270000px;}
.y15_c00178{bottom:631.020000px;}
.y14_c00178{bottom:664.770000px;}
.y13_c00178{bottom:697.620000px;}
.y12_c00178{bottom:731.670000px;}
.y11_c00178{bottom:764.670000px;}
.y10_c00178{bottom:799.020000px;}
.yf_c00178{bottom:831.870000px;}
.ye_c00178{bottom:864.720000px;}
.yd_c00178{bottom:898.470000px;}
.yc_c00178{bottom:931.770000px;}
.yb_c00178{bottom:964.920000px;}
.ya_c00178{bottom:998.370000px;}
.y9_c00178{bottom:1031.970000px;}
.y8_c00178{bottom:1065.720000px;}
.y7_c00178{bottom:1098.870000px;}
.y6_c00178{bottom:1130.970000px;}
.y5_c00178{bottom:1165.020000px;}
.y4_c00178{bottom:1198.020000px;}
.y3_c00178{bottom:1231.770000px;}
.y2_c00178{bottom:1264.620000px;}
.y1_c00178{bottom:1294.920000px;}
.h3_c00178{height:13.200073px;}
.h4_c00178{height:43.804688px;}
.h2_c00178{height:121.546875px;}
.h0_c00178{height:1383.450000px;}
.h1_c00178{height:1383.750000px;}
.w2_c00178{width:104.875500px;}
.w0_c00178{width:878.025000px;}
.w1_c00178{width:878.250000px;}
.x0_c00178{left:0.000000px;}
.x9_c00178{left:35.400000px;}
.x7_c00178{left:36.450000px;}
.x8_c00178{left:37.500000px;}
.x6_c00178{left:39.150000px;}
.x5_c00178{left:40.800000px;}
.x4_c00178{left:41.850000px;}
.x2_c00178{left:44.550000px;}
.x3_c00178{left:47.250000px;}
.xa_c00178{left:74.250000px;}
.xb_c00178{left:390.826721px;}
.x1_c00178{left:545.700000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls1_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:3.957333pt;}
.ls2_c00178{letter-spacing:18.666667pt;}
.ws1_c00178{word-spacing:-56.448000pt;}
.ws2_c00178{word-spacing:-39.232000pt;}
.ws0_c00178{word-spacing:-20.565333pt;}
.ws3_c00178{word-spacing:0.000000pt;}
._29_c00178{margin-left:-9.301333pt;}
._1e_c00178{margin-left:-8.277333pt;}
._28_c00178{margin-left:-6.762667pt;}
._1f_c00178{margin-left:-4.266667pt;}
._8_c00178{margin-left:-2.645333pt;}
._5_c00178{margin-left:-1.301333pt;}
._4_c00178{width:1.194667pt;}
._2_c00178{width:2.816000pt;}
._3_c00178{width:3.840000pt;}
._1_c00178{width:4.864000pt;}
._b_c00178{width:6.058667pt;}
._11_c00178{width:7.360000pt;}
._a_c00178{width:8.277333pt;}
._f_c00178{width:9.642667pt;}
._30_c00178{width:10.538667pt;}
._0_c00178{width:11.520000pt;}
._d_c00178{width:12.970667pt;}
._6_c00178{width:14.592000pt;}
._12_c00178{width:15.488000pt;}
._c_c00178{width:16.768000pt;}
._2e_c00178{width:17.664000pt;}
._e_c00178{width:18.602667pt;}
._2f_c00178{width:19.520000pt;}
._2b_c00178{width:21.589333pt;}
._9_c00178{width:22.485333pt;}
._26_c00178{width:23.637333pt;}
._10_c00178{width:25.258667pt;}
._25_c00178{width:26.773333pt;}
._13_c00178{width:28.074667pt;}
._1a_c00178{width:29.141333pt;}
._17_c00178{width:30.208000pt;}
._27_c00178{width:31.104000pt;}
._14_c00178{width:32.256000pt;}
._15_c00178{width:33.621333pt;}
._16_c00178{width:34.794667pt;}
._7_c00178{width:36.778667pt;}
._1b_c00178{width:38.229333pt;}
._2d_c00178{width:40.362667pt;}
._24_c00178{width:41.258667pt;}
._1c_c00178{width:42.325333pt;}
._20_c00178{width:43.690667pt;}
._2c_c00178{width:44.629333pt;}
._1d_c00178{width:45.824000pt;}
._19_c00178{width:47.125333pt;}
._2a_c00178{width:49.152000pt;}
._18_c00178{width:53.504000pt;}
._21_c00178{width:64.853333pt;}
._23_c00178{width:70.656000pt;}
._22_c00178{width:72.490667pt;}
._31_c00178{width:120.298667pt;}
._32_c00178{width:1782.357333pt;}
.fs2_c00178{font-size:42.666667pt;}
.fs1_c00178{font-size:74.666667pt;}
.fs0_c00178{font-size:85.333333pt;}
.y0_c00178{bottom:0.000000pt;}
.y27_c00178{bottom:2.760000pt;}
.y26_c00178{bottom:6.425217pt;}
.y25_c00178{bottom:78.640000pt;}
.y24_c00178{bottom:109.706667pt;}
.y23_c00178{bottom:140.373333pt;}
.y22_c00178{bottom:170.373333pt;}
.y21_c00178{bottom:201.040000pt;}
.y20_c00178{bottom:231.040000pt;}
.y1f_c00178{bottom:261.573333pt;}
.y1e_c00178{bottom:291.306667pt;}
.y1d_c00178{bottom:322.106667pt;}
.y1c_c00178{bottom:351.840000pt;}
.y1b_c00178{bottom:381.840000pt;}
.y1a_c00178{bottom:411.840000pt;}
.y19_c00178{bottom:442.106667pt;}
.y18_c00178{bottom:471.573333pt;}
.y17_c00178{bottom:501.306667pt;}
.y16_c00178{bottom:530.906667pt;}
.y15_c00178{bottom:560.906667pt;}
.y14_c00178{bottom:590.906667pt;}
.y13_c00178{bottom:620.106667pt;}
.y12_c00178{bottom:650.373333pt;}
.y11_c00178{bottom:679.706667pt;}
.y10_c00178{bottom:710.240000pt;}
.yf_c00178{bottom:739.440000pt;}
.ye_c00178{bottom:768.640000pt;}
.yd_c00178{bottom:798.640000pt;}
.yc_c00178{bottom:828.240000pt;}
.yb_c00178{bottom:857.706667pt;}
.ya_c00178{bottom:887.440000pt;}
.y9_c00178{bottom:917.306667pt;}
.y8_c00178{bottom:947.306667pt;}
.y7_c00178{bottom:976.773333pt;}
.y6_c00178{bottom:1005.306667pt;}
.y5_c00178{bottom:1035.573333pt;}
.y4_c00178{bottom:1064.906667pt;}
.y3_c00178{bottom:1094.906667pt;}
.y2_c00178{bottom:1124.106667pt;}
.y1_c00178{bottom:1151.040000pt;}
.h3_c00178{height:11.733399pt;}
.h4_c00178{height:38.937500pt;}
.h2_c00178{height:108.041667pt;}
.h0_c00178{height:1229.733333pt;}
.h1_c00178{height:1230.000000pt;}
.w2_c00178{width:93.222667pt;}
.w0_c00178{width:780.466667pt;}
.w1_c00178{width:780.666667pt;}
.x0_c00178{left:0.000000pt;}
.x9_c00178{left:31.466667pt;}
.x7_c00178{left:32.400000pt;}
.x8_c00178{left:33.333333pt;}
.x6_c00178{left:34.800000pt;}
.x5_c00178{left:36.266667pt;}
.x4_c00178{left:37.200000pt;}
.x2_c00178{left:39.600000pt;}
.x3_c00178{left:42.000000pt;}
.xa_c00178{left:66.000000pt;}
.xb_c00178{left:347.401530pt;}
.x1_c00178{left:485.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d340c8a7fe9a80871a7edc2.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_06debf67930b424a5d63b53b.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls1_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:6.720000px;}
.ls2_c00179{letter-spacing:21.000000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00179{word-spacing:-51.000000px;}
.ws2_c00179{word-spacing:-44.136000px;}
.ws0_c00179{word-spacing:-23.136000px;}
.ws3_c00179{word-spacing:0.000000px;}
._1c_c00179{margin-left:-78.528000px;}
._23_c00179{margin-left:-24.216000px;}
._24_c00179{margin-left:-21.000000px;}
._22_c00179{margin-left:-19.608000px;}
._31_c00179{margin-left:-18.336000px;}
._d_c00179{margin-left:-8.544000px;}
._27_c00179{margin-left:-5.928000px;}
._21_c00179{margin-left:-4.200000px;}
._0_c00179{margin-left:-3.072000px;}
._13_c00179{margin-left:-1.056000px;}
._1e_c00179{width:1.056000px;}
._7_c00179{width:2.112000px;}
._3_c00179{width:3.168000px;}
._2_c00179{width:4.800000px;}
._4_c00179{width:5.952000px;}
._9_c00179{width:7.296000px;}
._f_c00179{width:8.640000px;}
._17_c00179{width:9.792000px;}
._12_c00179{width:11.136000px;}
._29_c00179{width:12.264000px;}
._1b_c00179{width:13.344000px;}
._10_c00179{width:14.688000px;}
._11_c00179{width:16.320000px;}
._15_c00179{width:17.952000px;}
._1f_c00179{width:19.560000px;}
._c_c00179{width:20.928000px;}
._2e_c00179{width:21.984000px;}
._b_c00179{width:25.248000px;}
._e_c00179{width:26.304000px;}
._14_c00179{width:27.744000px;}
._1_c00179{width:29.664000px;}
._1a_c00179{width:30.912000px;}
._16_c00179{width:32.160000px;}
._a_c00179{width:34.176000px;}
._19_c00179{width:36.384000px;}
._8_c00179{width:38.400000px;}
._1d_c00179{width:41.280000px;}
._25_c00179{width:42.432000px;}
._6_c00179{width:44.832000px;}
._28_c00179{width:45.888000px;}
._18_c00179{width:47.616000px;}
._5_c00179{width:49.440000px;}
._20_c00179{width:51.456000px;}
._2b_c00179{width:54.336000px;}
._2a_c00179{width:56.736000px;}
._26_c00179{width:60.384000px;}
._30_c00179{width:204.864000px;}
._2d_c00179{width:313.152000px;}
._2f_c00179{width:315.600000px;}
._2c_c00179{width:354.240000px;}
.fc2_c00179{color:transparent;}
.fc1_c00179{color:rgb(128,128,128);}
.fc0_c00179{color:rgb(0,0,0);}
.fs3_c00179{font-size:48.000000px;}
.fs1_c00179{font-size:84.000000px;}
.fs0_c00179{font-size:96.000000px;}
.fs2_c00179{font-size:102.000000px;}
.y0_c00179{bottom:0.000000px;}
.y24_c00179{bottom:3.105000px;}
.y23_c00179{bottom:7.228357px;}
.y22_c00179{bottom:99.630000px;}
.y21_c00179{bottom:132.930000px;}
.y20_c00179{bottom:167.430000px;}
.y1f_c00179{bottom:202.230000px;}
.y1e_c00179{bottom:235.680000px;}
.y1d_c00179{bottom:269.730000px;}
.y1c_c00179{bottom:304.080000px;}
.y1b_c00179{bottom:337.530000px;}
.y1a_c00179{bottom:407.130000px;}
.y19_c00179{bottom:475.530000px;}
.y18_c00179{bottom:509.580000px;}
.y17_c00179{bottom:543.480000px;}
.y16_c00179{bottom:577.230000px;}
.y15_c00179{bottom:611.580000px;}
.y14_c00179{bottom:644.730000px;}
.y13_c00179{bottom:678.480000px;}
.y12_c00179{bottom:712.530000px;}
.y11_c00179{bottom:746.280000px;}
.y10_c00179{bottom:779.580000px;}
.yf_c00179{bottom:813.330000px;}
.ye_c00179{bottom:847.080000px;}
.yd_c00179{bottom:880.230000px;}
.yc_c00179{bottom:914.280000px;}
.yb_c00179{bottom:947.130000px;}
.ya_c00179{bottom:980.130000px;}
.y9_c00179{bottom:1013.280000px;}
.y8_c00179{bottom:1046.880000px;}
.y7_c00179{bottom:1080.030000px;}
.y6_c00179{bottom:1113.180000px;}
.y5_c00179{bottom:1146.780000px;}
.y4_c00179{bottom:1179.630000px;}
.y3_c00179{bottom:1212.630000px;}
.y2_c00179{bottom:1246.080000px;}
.y1_c00179{bottom:1278.780000px;}
.h3_c00179{height:13.200074px;}
.h4_c00179{height:43.804688px;}
.h2_c00179{height:121.546875px;}
.h0_c00179{height:1382.700000px;}
.h1_c00179{height:1383.000000px;}
.w2_c00179{width:104.875500px;}
.w0_c00179{width:863.175000px;}
.w1_c00179{width:863.250000px;}
.x0_c00179{left:0.000000px;}
.xa_c00179{left:147.600000px;}
.x1_c00179{left:259.500000px;}
.x2_c00179{left:260.550000px;}
.x3_c00179{left:261.600000px;}
.x4_c00179{left:262.650000px;}
.x5_c00179{left:263.850000px;}
.x6_c00179{left:264.900000px;}
.x8_c00179{left:266.400000px;}
.xb_c00179{left:268.050000px;}
.xc_c00179{left:270.300000px;}
.x7_c00179{left:312.450000px;}
.xe_c00179{left:383.401749px;}
.x9_c00179{left:424.650000px;}
.xd_c00179{left:788.700000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls1_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:5.973333pt;}
.ls2_c00179{letter-spacing:18.666667pt;}
.ws1_c00179{word-spacing:-45.333333pt;}
.ws2_c00179{word-spacing:-39.232000pt;}
.ws0_c00179{word-spacing:-20.565333pt;}
.ws3_c00179{word-spacing:0.000000pt;}
._1c_c00179{margin-left:-69.802667pt;}
._23_c00179{margin-left:-21.525333pt;}
._24_c00179{margin-left:-18.666667pt;}
._22_c00179{margin-left:-17.429333pt;}
._31_c00179{margin-left:-16.298667pt;}
._d_c00179{margin-left:-7.594667pt;}
._27_c00179{margin-left:-5.269333pt;}
._21_c00179{margin-left:-3.733333pt;}
._0_c00179{margin-left:-2.730667pt;}
._13_c00179{margin-left:-0.938667pt;}
._1e_c00179{width:0.938667pt;}
._7_c00179{width:1.877333pt;}
._3_c00179{width:2.816000pt;}
._2_c00179{width:4.266667pt;}
._4_c00179{width:5.290667pt;}
._9_c00179{width:6.485333pt;}
._f_c00179{width:7.680000pt;}
._17_c00179{width:8.704000pt;}
._12_c00179{width:9.898667pt;}
._29_c00179{width:10.901333pt;}
._1b_c00179{width:11.861333pt;}
._10_c00179{width:13.056000pt;}
._11_c00179{width:14.506667pt;}
._15_c00179{width:15.957333pt;}
._1f_c00179{width:17.386667pt;}
._c_c00179{width:18.602667pt;}
._2e_c00179{width:19.541333pt;}
._b_c00179{width:22.442667pt;}
._e_c00179{width:23.381333pt;}
._14_c00179{width:24.661333pt;}
._1_c00179{width:26.368000pt;}
._1a_c00179{width:27.477333pt;}
._16_c00179{width:28.586667pt;}
._a_c00179{width:30.378667pt;}
._19_c00179{width:32.341333pt;}
._8_c00179{width:34.133333pt;}
._1d_c00179{width:36.693333pt;}
._25_c00179{width:37.717333pt;}
._6_c00179{width:39.850667pt;}
._28_c00179{width:40.789333pt;}
._18_c00179{width:42.325333pt;}
._5_c00179{width:43.946667pt;}
._20_c00179{width:45.738667pt;}
._2b_c00179{width:48.298667pt;}
._2a_c00179{width:50.432000pt;}
._26_c00179{width:53.674667pt;}
._30_c00179{width:182.101333pt;}
._2d_c00179{width:278.357333pt;}
._2f_c00179{width:280.533333pt;}
._2c_c00179{width:314.880000pt;}
.fs3_c00179{font-size:42.666667pt;}
.fs1_c00179{font-size:74.666667pt;}
.fs0_c00179{font-size:85.333333pt;}
.fs2_c00179{font-size:90.666667pt;}
.y0_c00179{bottom:0.000000pt;}
.y24_c00179{bottom:2.760000pt;}
.y23_c00179{bottom:6.425206pt;}
.y22_c00179{bottom:88.560000pt;}
.y21_c00179{bottom:118.160000pt;}
.y20_c00179{bottom:148.826667pt;}
.y1f_c00179{bottom:179.760000pt;}
.y1e_c00179{bottom:209.493333pt;}
.y1d_c00179{bottom:239.760000pt;}
.y1c_c00179{bottom:270.293333pt;}
.y1b_c00179{bottom:300.026667pt;}
.y1a_c00179{bottom:361.893333pt;}
.y19_c00179{bottom:422.693333pt;}
.y18_c00179{bottom:452.960000pt;}
.y17_c00179{bottom:483.093333pt;}
.y16_c00179{bottom:513.093333pt;}
.y15_c00179{bottom:543.626667pt;}
.y14_c00179{bottom:573.093333pt;}
.y13_c00179{bottom:603.093333pt;}
.y12_c00179{bottom:633.360000pt;}
.y11_c00179{bottom:663.360000pt;}
.y10_c00179{bottom:692.960000pt;}
.yf_c00179{bottom:722.960000pt;}
.ye_c00179{bottom:752.960000pt;}
.yd_c00179{bottom:782.426667pt;}
.yc_c00179{bottom:812.693333pt;}
.yb_c00179{bottom:841.893333pt;}
.ya_c00179{bottom:871.226667pt;}
.y9_c00179{bottom:900.693333pt;}
.y8_c00179{bottom:930.560000pt;}
.y7_c00179{bottom:960.026667pt;}
.y6_c00179{bottom:989.493333pt;}
.y5_c00179{bottom:1019.360000pt;}
.y4_c00179{bottom:1048.560000pt;}
.y3_c00179{bottom:1077.893333pt;}
.y2_c00179{bottom:1107.626667pt;}
.y1_c00179{bottom:1136.693333pt;}
.h3_c00179{height:11.733399pt;}
.h4_c00179{height:38.937500pt;}
.h2_c00179{height:108.041667pt;}
.h0_c00179{height:1229.066667pt;}
.h1_c00179{height:1229.333333pt;}
.w2_c00179{width:93.222667pt;}
.w0_c00179{width:767.266667pt;}
.w1_c00179{width:767.333333pt;}
.x0_c00179{left:0.000000pt;}
.xa_c00179{left:131.200000pt;}
.x1_c00179{left:230.666667pt;}
.x2_c00179{left:231.600000pt;}
.x3_c00179{left:232.533333pt;}
.x4_c00179{left:233.466667pt;}
.x5_c00179{left:234.533333pt;}
.x6_c00179{left:235.466667pt;}
.x8_c00179{left:236.800000pt;}
.xb_c00179{left:238.266667pt;}
.xc_c00179{left:240.266667pt;}
.x7_c00179{left:277.733333pt;}
.xe_c00179{left:340.801554pt;}
.x9_c00179{left:377.466667pt;}
.xd_c00179{left:701.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9622f3c97142388a6a27a15e.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_53f5f73079c5f4c6c6832415.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_1d40b78c440db1f3ecceed53.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_1dabc7a5d97a30986e9cb1d7.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_1a71ed1787ecd021cd921ba6.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00180;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls1_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.648000px;}
.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;}
}
.ws0_c00180{word-spacing:-51.000000px;}
.ws1_c00180{word-spacing:-25.939200px;}
.ws2_c00180{word-spacing:0.000000px;}
._3b_c00180{margin-left:-51.624000px;}
._26_c00180{margin-left:-32.640000px;}
._24_c00180{margin-left:-31.164000px;}
._2c_c00180{margin-left:-20.328000px;}
._2e_c00180{margin-left:-17.736000px;}
._31_c00180{margin-left:-16.224000px;}
._2b_c00180{margin-left:-14.160000px;}
._32_c00180{margin-left:-11.592000px;}
._33_c00180{margin-left:-9.696000px;}
._16_c00180{margin-left:-7.488000px;}
._27_c00180{margin-left:-5.880000px;}
._1b_c00180{margin-left:-3.936000px;}
._21_c00180{margin-left:-2.784000px;}
._13_c00180{margin-left:-1.056000px;}
._5_c00180{width:1.248000px;}
._2_c00180{width:2.400000px;}
._1_c00180{width:3.840000px;}
._7_c00180{width:5.088000px;}
._8_c00180{width:6.144000px;}
._0_c00180{width:7.296000px;}
._4_c00180{width:9.024000px;}
._6_c00180{width:10.560000px;}
._2f_c00180{width:11.712000px;}
._22_c00180{width:12.732000px;}
._20_c00180{width:14.016000px;}
._c_c00180{width:15.072000px;}
._25_c00180{width:16.128000px;}
._15_c00180{width:17.472000px;}
._3_c00180{width:18.624000px;}
._2a_c00180{width:19.680000px;}
._1d_c00180{width:21.600000px;}
._34_c00180{width:22.860000px;}
._1c_c00180{width:24.480000px;}
._11_c00180{width:25.728000px;}
._23_c00180{width:27.648000px;}
._9_c00180{width:29.568000px;}
._10_c00180{width:31.104000px;}
._1a_c00180{width:32.352000px;}
._b_c00180{width:34.560000px;}
._14_c00180{width:35.712000px;}
._f_c00180{width:37.248000px;}
._12_c00180{width:39.264000px;}
._a_c00180{width:41.088000px;}
._28_c00180{width:42.432000px;}
._17_c00180{width:44.256000px;}
._1f_c00180{width:45.504000px;}
._18_c00180{width:47.136000px;}
._1e_c00180{width:49.440000px;}
._e_c00180{width:52.032000px;}
._d_c00180{width:54.048000px;}
._19_c00180{width:55.776000px;}
._37_c00180{width:57.696000px;}
._29_c00180{width:58.848000px;}
._39_c00180{width:62.112000px;}
._30_c00180{width:64.704000px;}
._36_c00180{width:68.448000px;}
._3a_c00180{width:73.104000px;}
._38_c00180{width:79.968000px;}
._2d_c00180{width:94.080000px;}
._35_c00180{width:224.160000px;}
._3d_c00180{width:878.688000px;}
._3c_c00180{width:906.360000px;}
.fc2_c00180{color:transparent;}
.fc1_c00180{color:rgb(128,128,128);}
.fc0_c00180{color:rgb(0,0,0);}
.fs5_c00180{font-size:48.000000px;}
.fs3_c00180{font-size:67.200000px;}
.fs1_c00180{font-size:84.000000px;}
.fs0_c00180{font-size:96.000000px;}
.fs2_c00180{font-size:102.000000px;}
.fs4_c00180{font-size:111.000000px;}
.y0_c00180{bottom:0.000000px;}
.y26_c00180{bottom:3.105000px;}
.y25_c00180{bottom:7.228369px;}
.y24_c00180{bottom:104.970000px;}
.y23_c00180{bottom:139.020000px;}
.y22_c00180{bottom:172.770000px;}
.y21_c00180{bottom:206.220000px;}
.y20_c00180{bottom:240.270000px;}
.y1f_c00180{bottom:274.620000px;}
.y1e_c00180{bottom:308.070000px;}
.y1d_c00180{bottom:341.820000px;}
.y1c_c00180{bottom:375.270000px;}
.y1b_c00180{bottom:409.320000px;}
.y1a_c00180{bottom:442.770000px;}
.y19_c00180{bottom:476.220000px;}
.y18_c00180{bottom:509.520000px;}
.y17_c00180{bottom:542.670000px;}
.y16_c00180{bottom:576.420000px;}
.y15_c00180{bottom:609.870000px;}
.y14_c00180{bottom:643.170000px;}
.y13_c00180{bottom:676.020000px;}
.y12_c00180{bottom:709.470000px;}
.y11_c00180{bottom:742.770000px;}
.y10_c00180{bottom:776.520000px;}
.yf_c00180{bottom:809.670000px;}
.ye_c00180{bottom:842.370000px;}
.yd_c00180{bottom:875.520000px;}
.yc_c00180{bottom:908.820000px;}
.yb_c00180{bottom:941.670000px;}
.ya_c00180{bottom:974.970000px;}
.y9_c00180{bottom:1008.420000px;}
.y8_c00180{bottom:1041.570000px;}
.y7_c00180{bottom:1074.870000px;}
.y6_c00180{bottom:1108.020000px;}
.y5_c00180{bottom:1141.320000px;}
.y4_c00180{bottom:1174.770000px;}
.y3_c00180{bottom:1207.470000px;}
.y2_c00180{bottom:1240.920000px;}
.y1_c00180{bottom:1273.620000px;}
.h4_c00180{height:13.200073px;}
.h5_c00180{height:43.804688px;}
.h3_c00180{height:106.353516px;}
.h2_c00180{height:121.546875px;}
.h0_c00180{height:1383.450000px;}
.h1_c00180{height:1383.750000px;}
.w2_c00180{width:104.875500px;}
.w0_c00180{width:878.025000px;}
.w1_c00180{width:878.250000px;}
.x0_c00180{left:0.000000px;}
.x6_c00180{left:66.600000px;}
.x5_c00180{left:68.250000px;}
.x4_c00180{left:69.900000px;}
.x3_c00180{left:70.950000px;}
.x2_c00180{left:72.000000px;}
.x7_c00180{left:73.200000px;}
.x1_c00180{left:74.250000px;}
.x8_c00180{left:390.826721px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls1_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.576000pt;}
.ws0_c00180{word-spacing:-45.333333pt;}
.ws1_c00180{word-spacing:-23.057067pt;}
.ws2_c00180{word-spacing:0.000000pt;}
._3b_c00180{margin-left:-45.888000pt;}
._26_c00180{margin-left:-29.013333pt;}
._24_c00180{margin-left:-27.701333pt;}
._2c_c00180{margin-left:-18.069333pt;}
._2e_c00180{margin-left:-15.765333pt;}
._31_c00180{margin-left:-14.421333pt;}
._2b_c00180{margin-left:-12.586667pt;}
._32_c00180{margin-left:-10.304000pt;}
._33_c00180{margin-left:-8.618667pt;}
._16_c00180{margin-left:-6.656000pt;}
._27_c00180{margin-left:-5.226667pt;}
._1b_c00180{margin-left:-3.498667pt;}
._21_c00180{margin-left:-2.474667pt;}
._13_c00180{margin-left:-0.938667pt;}
._5_c00180{width:1.109333pt;}
._2_c00180{width:2.133333pt;}
._1_c00180{width:3.413333pt;}
._7_c00180{width:4.522667pt;}
._8_c00180{width:5.461333pt;}
._0_c00180{width:6.485333pt;}
._4_c00180{width:8.021333pt;}
._6_c00180{width:9.386667pt;}
._2f_c00180{width:10.410667pt;}
._22_c00180{width:11.317333pt;}
._20_c00180{width:12.458667pt;}
._c_c00180{width:13.397333pt;}
._25_c00180{width:14.336000pt;}
._15_c00180{width:15.530667pt;}
._3_c00180{width:16.554667pt;}
._2a_c00180{width:17.493333pt;}
._1d_c00180{width:19.200000pt;}
._34_c00180{width:20.320000pt;}
._1c_c00180{width:21.760000pt;}
._11_c00180{width:22.869333pt;}
._23_c00180{width:24.576000pt;}
._9_c00180{width:26.282667pt;}
._10_c00180{width:27.648000pt;}
._1a_c00180{width:28.757333pt;}
._b_c00180{width:30.720000pt;}
._14_c00180{width:31.744000pt;}
._f_c00180{width:33.109333pt;}
._12_c00180{width:34.901333pt;}
._a_c00180{width:36.522667pt;}
._28_c00180{width:37.717333pt;}
._17_c00180{width:39.338667pt;}
._1f_c00180{width:40.448000pt;}
._18_c00180{width:41.898667pt;}
._1e_c00180{width:43.946667pt;}
._e_c00180{width:46.250667pt;}
._d_c00180{width:48.042667pt;}
._19_c00180{width:49.578667pt;}
._37_c00180{width:51.285333pt;}
._29_c00180{width:52.309333pt;}
._39_c00180{width:55.210667pt;}
._30_c00180{width:57.514667pt;}
._36_c00180{width:60.842667pt;}
._3a_c00180{width:64.981333pt;}
._38_c00180{width:71.082667pt;}
._2d_c00180{width:83.626667pt;}
._35_c00180{width:199.253333pt;}
._3d_c00180{width:781.056000pt;}
._3c_c00180{width:805.653333pt;}
.fs5_c00180{font-size:42.666667pt;}
.fs3_c00180{font-size:59.733333pt;}
.fs1_c00180{font-size:74.666667pt;}
.fs0_c00180{font-size:85.333333pt;}
.fs2_c00180{font-size:90.666667pt;}
.fs4_c00180{font-size:98.666667pt;}
.y0_c00180{bottom:0.000000pt;}
.y26_c00180{bottom:2.760000pt;}
.y25_c00180{bottom:6.425217pt;}
.y24_c00180{bottom:93.306667pt;}
.y23_c00180{bottom:123.573333pt;}
.y22_c00180{bottom:153.573333pt;}
.y21_c00180{bottom:183.306667pt;}
.y20_c00180{bottom:213.573333pt;}
.y1f_c00180{bottom:244.106667pt;}
.y1e_c00180{bottom:273.840000pt;}
.y1d_c00180{bottom:303.840000pt;}
.y1c_c00180{bottom:333.573333pt;}
.y1b_c00180{bottom:363.840000pt;}
.y1a_c00180{bottom:393.573333pt;}
.y19_c00180{bottom:423.306667pt;}
.y18_c00180{bottom:452.906667pt;}
.y17_c00180{bottom:482.373333pt;}
.y16_c00180{bottom:512.373333pt;}
.y15_c00180{bottom:542.106667pt;}
.y14_c00180{bottom:571.706667pt;}
.y13_c00180{bottom:600.906667pt;}
.y12_c00180{bottom:630.640000pt;}
.y11_c00180{bottom:660.240000pt;}
.y10_c00180{bottom:690.240000pt;}
.yf_c00180{bottom:719.706667pt;}
.ye_c00180{bottom:748.773333pt;}
.yd_c00180{bottom:778.240000pt;}
.yc_c00180{bottom:807.840000pt;}
.yb_c00180{bottom:837.040000pt;}
.ya_c00180{bottom:866.640000pt;}
.y9_c00180{bottom:896.373333pt;}
.y8_c00180{bottom:925.840000pt;}
.y7_c00180{bottom:955.440000pt;}
.y6_c00180{bottom:984.906667pt;}
.y5_c00180{bottom:1014.506667pt;}
.y4_c00180{bottom:1044.240000pt;}
.y3_c00180{bottom:1073.306667pt;}
.y2_c00180{bottom:1103.040000pt;}
.y1_c00180{bottom:1132.106667pt;}
.h4_c00180{height:11.733399pt;}
.h5_c00180{height:38.937500pt;}
.h3_c00180{height:94.536458pt;}
.h2_c00180{height:108.041667pt;}
.h0_c00180{height:1229.733333pt;}
.h1_c00180{height:1230.000000pt;}
.w2_c00180{width:93.222667pt;}
.w0_c00180{width:780.466667pt;}
.w1_c00180{width:780.666667pt;}
.x0_c00180{left:0.000000pt;}
.x6_c00180{left:59.200000pt;}
.x5_c00180{left:60.666667pt;}
.x4_c00180{left:62.133333pt;}
.x3_c00180{left:63.066667pt;}
.x2_c00180{left:64.000000pt;}
.x7_c00180{left:65.066667pt;}
.x1_c00180{left:66.000000pt;}
.x8_c00180{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3148690e30fc2c7cb0262e43.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_46d6c1d7d9a8fadbb89fab9d.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_351a6cead11a3211e5158d79.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls5_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:6.000000px;}
.ls1_c00181{letter-spacing:11.856000px;}
.ls3_c00181{letter-spacing:12.000000px;}
.ls4_c00181{letter-spacing:18.000000px;}
.ls2_c00181{letter-spacing:44.664000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:-20.244000px;}
.ws1_c00181{word-spacing:0.000000px;}
._28_c00181{margin-left:-31.884000px;}
._3c_c00181{margin-left:-28.008000px;}
._3f_c00181{margin-left:-24.036000px;}
._1b_c00181{margin-left:-20.748000px;}
._2d_c00181{margin-left:-19.392000px;}
._1c_c00181{margin-left:-15.744000px;}
._2f_c00181{margin-left:-13.152000px;}
._2a_c00181{margin-left:-11.808000px;}
._33_c00181{margin-left:-9.900000px;}
._32_c00181{margin-left:-8.244000px;}
._0_c00181{margin-left:-7.008000px;}
._2_c00181{margin-left:-5.952000px;}
._21_c00181{margin-left:-4.608000px;}
._15_c00181{margin-left:-3.360000px;}
._d_c00181{margin-left:-2.112000px;}
._7_c00181{margin-left:-1.056000px;}
._5_c00181{width:1.728000px;}
._4_c00181{width:2.784000px;}
._9_c00181{width:3.840000px;}
._a_c00181{width:4.896000px;}
._b_c00181{width:6.816000px;}
._6_c00181{width:8.832000px;}
._27_c00181{width:10.284000px;}
._29_c00181{width:11.316000px;}
._19_c00181{width:12.756000px;}
._1a_c00181{width:14.604000px;}
._c_c00181{width:16.512000px;}
._3e_c00181{width:17.592000px;}
._1_c00181{width:18.624000px;}
._1f_c00181{width:19.680000px;}
._18_c00181{width:21.060000px;}
._8_c00181{width:25.248000px;}
._35_c00181{width:26.268000px;}
._1e_c00181{width:28.140000px;}
._13_c00181{width:29.856000px;}
._20_c00181{width:31.104000px;}
._26_c00181{width:32.256000px;}
._10_c00181{width:34.272000px;}
._25_c00181{width:35.808000px;}
._16_c00181{width:36.864000px;}
._34_c00181{width:38.112000px;}
._e_c00181{width:39.744000px;}
._22_c00181{width:41.472000px;}
._2b_c00181{width:42.888000px;}
._14_c00181{width:44.928000px;}
._3d_c00181{width:46.752000px;}
._24_c00181{width:47.904000px;}
._17_c00181{width:49.248000px;}
._f_c00181{width:51.648000px;}
._30_c00181{width:52.896000px;}
._23_c00181{width:55.680000px;}
._2e_c00181{width:57.348000px;}
._3a_c00181{width:58.656000px;}
._12_c00181{width:59.904000px;}
._11_c00181{width:60.960000px;}
._31_c00181{width:63.540000px;}
._3b_c00181{width:66.720000px;}
._39_c00181{width:68.928000px;}
._1d_c00181{width:75.840000px;}
._2c_c00181{width:168.972000px;}
._38_c00181{width:177.516000px;}
._3_c00181{width:183.264000px;}
._37_c00181{width:191.808000px;}
._36_c00181{width:257.016000px;}
.fc2_c00181{color:transparent;}
.fc1_c00181{color:rgb(128,128,128);}
.fc0_c00181{color:rgb(0,0,0);}
.fs4_c00181{font-size:48.000000px;}
.fs1_c00181{font-size:60.000000px;}
.fs3_c00181{font-size:84.000000px;}
.fs0_c00181{font-size:96.000000px;}
.fs2_c00181{font-size:102.000000px;}
.y0_c00181{bottom:0.000000px;}
.y25_c00181{bottom:3.105000px;}
.y24_c00181{bottom:7.228357px;}
.y23_c00181{bottom:126.330000px;}
.y22_c00181{bottom:161.730000px;}
.y21_c00181{bottom:195.180000px;}
.y20_c00181{bottom:229.230000px;}
.y1f_c00181{bottom:263.580000px;}
.y1e_c00181{bottom:296.730000px;}
.y1d_c00181{bottom:331.530000px;}
.y1c_c00181{bottom:366.180000px;}
.y1b_c00181{bottom:400.230000px;}
.y1a_c00181{bottom:433.980000px;}
.y19_c00181{bottom:468.180000px;}
.y18_c00181{bottom:501.930000px;}
.y17_c00181{bottom:535.680000px;}
.y16_c00181{bottom:569.730000px;}
.y15_c00181{bottom:603.780000px;}
.y14_c00181{bottom:636.930000px;}
.y13_c00181{bottom:670.680000px;}
.y12_c00181{bottom:704.730000px;}
.y11_c00181{bottom:738.180000px;}
.y10_c00181{bottom:772.230000px;}
.yf_c00181{bottom:805.380000px;}
.ye_c00181{bottom:838.980000px;}
.yd_c00181{bottom:872.130000px;}
.yc_c00181{bottom:905.880000px;}
.yb_c00181{bottom:939.030000px;}
.ya_c00181{bottom:971.730000px;}
.y9_c00181{bottom:1005.030000px;}
.y8_c00181{bottom:1039.230000px;}
.y7_c00181{bottom:1072.530000px;}
.y6_c00181{bottom:1105.080000px;}
.y5_c00181{bottom:1138.380000px;}
.y4_c00181{bottom:1172.430000px;}
.y3_c00181{bottom:1204.980000px;}
.y2_c00181{bottom:1237.680000px;}
.y1_c00181{bottom:1271.430000px;}
.h4_c00181{height:13.200074px;}
.h5_c00181{height:43.804688px;}
.h3_c00181{height:106.353516px;}
.h2_c00181{height:121.546875px;}
.h0_c00181{height:1382.700000px;}
.h1_c00181{height:1383.000000px;}
.w2_c00181{width:104.875500px;}
.w0_c00181{width:863.175000px;}
.w1_c00181{width:863.250000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:274.500000px;}
.x3_c00181{left:276.750000px;}
.x4_c00181{left:277.800000px;}
.x5_c00181{left:278.850000px;}
.x6_c00181{left:280.050000px;}
.x7_c00181{left:281.100000px;}
.x8_c00181{left:282.600000px;}
.x9_c00181{left:284.250000px;}
.xa_c00181{left:285.300000px;}
.x1_c00181{left:325.950000px;}
.xb_c00181{left:383.401749px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls5_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:5.333333pt;}
.ls1_c00181{letter-spacing:10.538667pt;}
.ls3_c00181{letter-spacing:10.666667pt;}
.ls4_c00181{letter-spacing:16.000000pt;}
.ls2_c00181{letter-spacing:39.701333pt;}
.ws0_c00181{word-spacing:-17.994667pt;}
.ws1_c00181{word-spacing:0.000000pt;}
._28_c00181{margin-left:-28.341333pt;}
._3c_c00181{margin-left:-24.896000pt;}
._3f_c00181{margin-left:-21.365333pt;}
._1b_c00181{margin-left:-18.442667pt;}
._2d_c00181{margin-left:-17.237333pt;}
._1c_c00181{margin-left:-13.994667pt;}
._2f_c00181{margin-left:-11.690667pt;}
._2a_c00181{margin-left:-10.496000pt;}
._33_c00181{margin-left:-8.800000pt;}
._32_c00181{margin-left:-7.328000pt;}
._0_c00181{margin-left:-6.229333pt;}
._2_c00181{margin-left:-5.290667pt;}
._21_c00181{margin-left:-4.096000pt;}
._15_c00181{margin-left:-2.986667pt;}
._d_c00181{margin-left:-1.877333pt;}
._7_c00181{margin-left:-0.938667pt;}
._5_c00181{width:1.536000pt;}
._4_c00181{width:2.474667pt;}
._9_c00181{width:3.413333pt;}
._a_c00181{width:4.352000pt;}
._b_c00181{width:6.058667pt;}
._6_c00181{width:7.850667pt;}
._27_c00181{width:9.141333pt;}
._29_c00181{width:10.058667pt;}
._19_c00181{width:11.338667pt;}
._1a_c00181{width:12.981333pt;}
._c_c00181{width:14.677333pt;}
._3e_c00181{width:15.637333pt;}
._1_c00181{width:16.554667pt;}
._1f_c00181{width:17.493333pt;}
._18_c00181{width:18.720000pt;}
._8_c00181{width:22.442667pt;}
._35_c00181{width:23.349333pt;}
._1e_c00181{width:25.013333pt;}
._13_c00181{width:26.538667pt;}
._20_c00181{width:27.648000pt;}
._26_c00181{width:28.672000pt;}
._10_c00181{width:30.464000pt;}
._25_c00181{width:31.829333pt;}
._16_c00181{width:32.768000pt;}
._34_c00181{width:33.877333pt;}
._e_c00181{width:35.328000pt;}
._22_c00181{width:36.864000pt;}
._2b_c00181{width:38.122667pt;}
._14_c00181{width:39.936000pt;}
._3d_c00181{width:41.557333pt;}
._24_c00181{width:42.581333pt;}
._17_c00181{width:43.776000pt;}
._f_c00181{width:45.909333pt;}
._30_c00181{width:47.018667pt;}
._23_c00181{width:49.493333pt;}
._2e_c00181{width:50.976000pt;}
._3a_c00181{width:52.138667pt;}
._12_c00181{width:53.248000pt;}
._11_c00181{width:54.186667pt;}
._31_c00181{width:56.480000pt;}
._3b_c00181{width:59.306667pt;}
._39_c00181{width:61.269333pt;}
._1d_c00181{width:67.413333pt;}
._2c_c00181{width:150.197333pt;}
._38_c00181{width:157.792000pt;}
._3_c00181{width:162.901333pt;}
._37_c00181{width:170.496000pt;}
._36_c00181{width:228.458667pt;}
.fs4_c00181{font-size:42.666667pt;}
.fs1_c00181{font-size:53.333333pt;}
.fs3_c00181{font-size:74.666667pt;}
.fs0_c00181{font-size:85.333333pt;}
.fs2_c00181{font-size:90.666667pt;}
.y0_c00181{bottom:0.000000pt;}
.y25_c00181{bottom:2.760000pt;}
.y24_c00181{bottom:6.425206pt;}
.y23_c00181{bottom:112.293333pt;}
.y22_c00181{bottom:143.760000pt;}
.y21_c00181{bottom:173.493333pt;}
.y20_c00181{bottom:203.760000pt;}
.y1f_c00181{bottom:234.293333pt;}
.y1e_c00181{bottom:263.760000pt;}
.y1d_c00181{bottom:294.693333pt;}
.y1c_c00181{bottom:325.493333pt;}
.y1b_c00181{bottom:355.760000pt;}
.y1a_c00181{bottom:385.760000pt;}
.y19_c00181{bottom:416.160000pt;}
.y18_c00181{bottom:446.160000pt;}
.y17_c00181{bottom:476.160000pt;}
.y16_c00181{bottom:506.426667pt;}
.y15_c00181{bottom:536.693333pt;}
.y14_c00181{bottom:566.160000pt;}
.y13_c00181{bottom:596.160000pt;}
.y12_c00181{bottom:626.426667pt;}
.y11_c00181{bottom:656.160000pt;}
.y10_c00181{bottom:686.426667pt;}
.yf_c00181{bottom:715.893333pt;}
.ye_c00181{bottom:745.760000pt;}
.yd_c00181{bottom:775.226667pt;}
.yc_c00181{bottom:805.226667pt;}
.yb_c00181{bottom:834.693333pt;}
.ya_c00181{bottom:863.760000pt;}
.y9_c00181{bottom:893.360000pt;}
.y8_c00181{bottom:923.760000pt;}
.y7_c00181{bottom:953.360000pt;}
.y6_c00181{bottom:982.293333pt;}
.y5_c00181{bottom:1011.893333pt;}
.y4_c00181{bottom:1042.160000pt;}
.y3_c00181{bottom:1071.093333pt;}
.y2_c00181{bottom:1100.160000pt;}
.y1_c00181{bottom:1130.160000pt;}
.h4_c00181{height:11.733399pt;}
.h5_c00181{height:38.937500pt;}
.h3_c00181{height:94.536458pt;}
.h2_c00181{height:108.041667pt;}
.h0_c00181{height:1229.066667pt;}
.h1_c00181{height:1229.333333pt;}
.w2_c00181{width:93.222667pt;}
.w0_c00181{width:767.266667pt;}
.w1_c00181{width:767.333333pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:244.000000pt;}
.x3_c00181{left:246.000000pt;}
.x4_c00181{left:246.933333pt;}
.x5_c00181{left:247.866667pt;}
.x6_c00181{left:248.933333pt;}
.x7_c00181{left:249.866667pt;}
.x8_c00181{left:251.200000pt;}
.x9_c00181{left:252.666667pt;}
.xa_c00181{left:253.600000pt;}
.x1_c00181{left:289.733333pt;}
.xb_c00181{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a483a022b4babe54b7813be5.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_d6cbac3cb18b056dd8ec4c1b.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:-51.000000px;}
.ws1_c00182{word-spacing:0.000000px;}
._39_c00182{margin-left:-29.376000px;}
._3d_c00182{margin-left:-22.800000px;}
._2d_c00182{margin-left:-15.936000px;}
._33_c00182{margin-left:-13.272000px;}
._3f_c00182{margin-left:-12.012000px;}
._2a_c00182{margin-left:-10.368000px;}
._1d_c00182{margin-left:-9.312000px;}
._29_c00182{margin-left:-7.680000px;}
._18_c00182{margin-left:-6.528000px;}
._9_c00182{margin-left:-5.472000px;}
._a_c00182{margin-left:-4.416000px;}
._22_c00182{margin-left:-3.072000px;}
._b_c00182{margin-left:-2.016000px;}
._1_c00182{width:1.152000px;}
._0_c00182{width:2.208000px;}
._4_c00182{width:3.264000px;}
._5_c00182{width:4.320000px;}
._7_c00182{width:5.856000px;}
._14_c00182{width:7.200000px;}
._15_c00182{width:8.352000px;}
._3c_c00182{width:9.420000px;}
._d_c00182{width:10.656000px;}
._13_c00182{width:12.384000px;}
._28_c00182{width:13.536000px;}
._2c_c00182{width:15.456000px;}
._e_c00182{width:16.704000px;}
._32_c00182{width:17.808000px;}
._f_c00182{width:19.488000px;}
._16_c00182{width:21.312000px;}
._1e_c00182{width:25.440000px;}
._27_c00182{width:28.032000px;}
._30_c00182{width:29.040000px;}
._19_c00182{width:30.048000px;}
._41_c00182{width:31.584000px;}
._6_c00182{width:32.928000px;}
._1c_c00182{width:35.040000px;}
._8_c00182{width:37.056000px;}
._2f_c00182{width:38.256000px;}
._3_c00182{width:39.264000px;}
._21_c00182{width:41.376000px;}
._2_c00182{width:42.912000px;}
._31_c00182{width:44.232000px;}
._1a_c00182{width:46.080000px;}
._c_c00182{width:47.136000px;}
._17_c00182{width:49.536000px;}
._1b_c00182{width:51.744000px;}
._1f_c00182{width:53.184000px;}
._37_c00182{width:54.240000px;}
._11_c00182{width:55.584000px;}
._2e_c00182{width:57.888000px;}
._26_c00182{width:60.864000px;}
._40_c00182{width:62.736000px;}
._34_c00182{width:64.692000px;}
._25_c00182{width:66.720000px;}
._23_c00182{width:68.832000px;}
._2b_c00182{width:71.712000px;}
._10_c00182{width:73.920000px;}
._12_c00182{width:75.072000px;}
._20_c00182{width:77.664000px;}
._24_c00182{width:79.584000px;}
._3e_c00182{width:99.624000px;}
._3a_c00182{width:101.472000px;}
._35_c00182{width:125.184000px;}
._3b_c00182{width:175.392000px;}
._38_c00182{width:269.856000px;}
._36_c00182{width:990.816000px;}
.fc2_c00182{color:transparent;}
.fc1_c00182{color:rgb(128,128,128);}
.fc0_c00182{color:rgb(0,0,0);}
.fs3_c00182{font-size:48.000000px;}
.fs1_c00182{font-size:84.000000px;}
.fs0_c00182{font-size:96.000000px;}
.fs2_c00182{font-size:102.000000px;}
.y0_c00182{bottom:0.000000px;}
.y25_c00182{bottom:3.105000px;}
.y24_c00182{bottom:7.228369px;}
.y23_c00182{bottom:144.420000px;}
.y22_c00182{bottom:178.770000px;}
.y21_c00182{bottom:212.670000px;}
.y20_c00182{bottom:246.270000px;}
.y1f_c00182{bottom:279.420000px;}
.y1e_c00182{bottom:313.470000px;}
.y1d_c00182{bottom:346.920000px;}
.y1c_c00182{bottom:379.620000px;}
.y1b_c00182{bottom:413.670000px;}
.y1a_c00182{bottom:446.820000px;}
.y19_c00182{bottom:481.920000px;}
.y18_c00182{bottom:512.220000px;}
.y17_c00182{bottom:547.320000px;}
.y16_c00182{bottom:580.470000px;}
.y15_c00182{bottom:614.220000px;}
.y14_c00182{bottom:648.570000px;}
.y13_c00182{bottom:678.270000px;}
.y12_c00182{bottom:713.370000px;}
.y11_c00182{bottom:746.520000px;}
.y10_c00182{bottom:779.670000px;}
.yf_c00182{bottom:813.420000px;}
.ye_c00182{bottom:845.670000px;}
.yd_c00182{bottom:878.520000px;}
.yc_c00182{bottom:912.270000px;}
.yb_c00182{bottom:945.570000px;}
.ya_c00182{bottom:978.270000px;}
.y9_c00182{bottom:1011.720000px;}
.y8_c00182{bottom:1045.170000px;}
.y7_c00182{bottom:1078.020000px;}
.y6_c00182{bottom:1110.420000px;}
.y5_c00182{bottom:1144.770000px;}
.y4_c00182{bottom:1177.770000px;}
.y3_c00182{bottom:1211.520000px;}
.y2_c00182{bottom:1244.070000px;}
.y1_c00182{bottom:1278.120000px;}
.h3_c00182{height:13.200073px;}
.h4_c00182{height:43.804688px;}
.h2_c00182{height:121.546875px;}
.h0_c00182{height:1383.450000px;}
.h1_c00182{height:1383.750000px;}
.w2_c00182{width:104.875500px;}
.w0_c00182{width:878.025000px;}
.w1_c00182{width:878.250000px;}
.x0_c00182{left:0.000000px;}
.x3_c00182{left:66.600000px;}
.x1_c00182{left:67.800000px;}
.x2_c00182{left:68.850000px;}
.x4_c00182{left:70.500000px;}
.x5_c00182{left:72.000000px;}
.x6_c00182{left:74.250000px;}
.x7_c00182{left:75.300000px;}
.x8_c00182{left:78.600000px;}
.x9_c00182{left:390.826721px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:-45.333333pt;}
.ws1_c00182{word-spacing:0.000000pt;}
._39_c00182{margin-left:-26.112000pt;}
._3d_c00182{margin-left:-20.266667pt;}
._2d_c00182{margin-left:-14.165333pt;}
._33_c00182{margin-left:-11.797333pt;}
._3f_c00182{margin-left:-10.677333pt;}
._2a_c00182{margin-left:-9.216000pt;}
._1d_c00182{margin-left:-8.277333pt;}
._29_c00182{margin-left:-6.826667pt;}
._18_c00182{margin-left:-5.802667pt;}
._9_c00182{margin-left:-4.864000pt;}
._a_c00182{margin-left:-3.925333pt;}
._22_c00182{margin-left:-2.730667pt;}
._b_c00182{margin-left:-1.792000pt;}
._1_c00182{width:1.024000pt;}
._0_c00182{width:1.962667pt;}
._4_c00182{width:2.901333pt;}
._5_c00182{width:3.840000pt;}
._7_c00182{width:5.205333pt;}
._14_c00182{width:6.400000pt;}
._15_c00182{width:7.424000pt;}
._3c_c00182{width:8.373333pt;}
._d_c00182{width:9.472000pt;}
._13_c00182{width:11.008000pt;}
._28_c00182{width:12.032000pt;}
._2c_c00182{width:13.738667pt;}
._e_c00182{width:14.848000pt;}
._32_c00182{width:15.829333pt;}
._f_c00182{width:17.322667pt;}
._16_c00182{width:18.944000pt;}
._1e_c00182{width:22.613333pt;}
._27_c00182{width:24.917333pt;}
._30_c00182{width:25.813333pt;}
._19_c00182{width:26.709333pt;}
._41_c00182{width:28.074667pt;}
._6_c00182{width:29.269333pt;}
._1c_c00182{width:31.146667pt;}
._8_c00182{width:32.938667pt;}
._2f_c00182{width:34.005333pt;}
._3_c00182{width:34.901333pt;}
._21_c00182{width:36.778667pt;}
._2_c00182{width:38.144000pt;}
._31_c00182{width:39.317333pt;}
._1a_c00182{width:40.960000pt;}
._c_c00182{width:41.898667pt;}
._17_c00182{width:44.032000pt;}
._1b_c00182{width:45.994667pt;}
._1f_c00182{width:47.274667pt;}
._37_c00182{width:48.213333pt;}
._11_c00182{width:49.408000pt;}
._2e_c00182{width:51.456000pt;}
._26_c00182{width:54.101333pt;}
._40_c00182{width:55.765333pt;}
._34_c00182{width:57.504000pt;}
._25_c00182{width:59.306667pt;}
._23_c00182{width:61.184000pt;}
._2b_c00182{width:63.744000pt;}
._10_c00182{width:65.706667pt;}
._12_c00182{width:66.730667pt;}
._20_c00182{width:69.034667pt;}
._24_c00182{width:70.741333pt;}
._3e_c00182{width:88.554667pt;}
._3a_c00182{width:90.197333pt;}
._35_c00182{width:111.274667pt;}
._3b_c00182{width:155.904000pt;}
._38_c00182{width:239.872000pt;}
._36_c00182{width:880.725333pt;}
.fs3_c00182{font-size:42.666667pt;}
.fs1_c00182{font-size:74.666667pt;}
.fs0_c00182{font-size:85.333333pt;}
.fs2_c00182{font-size:90.666667pt;}
.y0_c00182{bottom:0.000000pt;}
.y25_c00182{bottom:2.760000pt;}
.y24_c00182{bottom:6.425217pt;}
.y23_c00182{bottom:128.373333pt;}
.y22_c00182{bottom:158.906667pt;}
.y21_c00182{bottom:189.040000pt;}
.y20_c00182{bottom:218.906667pt;}
.y1f_c00182{bottom:248.373333pt;}
.y1e_c00182{bottom:278.640000pt;}
.y1d_c00182{bottom:308.373333pt;}
.y1c_c00182{bottom:337.440000pt;}
.y1b_c00182{bottom:367.706667pt;}
.y1a_c00182{bottom:397.173333pt;}
.y19_c00182{bottom:428.373333pt;}
.y18_c00182{bottom:455.306667pt;}
.y17_c00182{bottom:486.506667pt;}
.y16_c00182{bottom:515.973333pt;}
.y15_c00182{bottom:545.973333pt;}
.y14_c00182{bottom:576.506667pt;}
.y13_c00182{bottom:602.906667pt;}
.y12_c00182{bottom:634.106667pt;}
.y11_c00182{bottom:663.573333pt;}
.y10_c00182{bottom:693.040000pt;}
.yf_c00182{bottom:723.040000pt;}
.ye_c00182{bottom:751.706667pt;}
.yd_c00182{bottom:780.906667pt;}
.yc_c00182{bottom:810.906667pt;}
.yb_c00182{bottom:840.506667pt;}
.ya_c00182{bottom:869.573333pt;}
.y9_c00182{bottom:899.306667pt;}
.y8_c00182{bottom:929.040000pt;}
.y7_c00182{bottom:958.240000pt;}
.y6_c00182{bottom:987.040000pt;}
.y5_c00182{bottom:1017.573333pt;}
.y4_c00182{bottom:1046.906667pt;}
.y3_c00182{bottom:1076.906667pt;}
.y2_c00182{bottom:1105.840000pt;}
.y1_c00182{bottom:1136.106667pt;}
.h3_c00182{height:11.733399pt;}
.h4_c00182{height:38.937500pt;}
.h2_c00182{height:108.041667pt;}
.h0_c00182{height:1229.733333pt;}
.h1_c00182{height:1230.000000pt;}
.w2_c00182{width:93.222667pt;}
.w0_c00182{width:780.466667pt;}
.w1_c00182{width:780.666667pt;}
.x0_c00182{left:0.000000pt;}
.x3_c00182{left:59.200000pt;}
.x1_c00182{left:60.266667pt;}
.x2_c00182{left:61.200000pt;}
.x4_c00182{left:62.666667pt;}
.x5_c00182{left:64.000000pt;}
.x6_c00182{left:66.000000pt;}
.x7_c00182{left:66.933333pt;}
.x8_c00182{left:69.866667pt;}
.x9_c00182{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78bdcd8bfb41840a9060f68e.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_840dfd48525a2f44f9924494.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_3d55e34536ed08b175778b81.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00183{vertical-align:-68.400000px;}
.v0_c00183{vertical-align:0.000000px;}
.ls1_c00183{letter-spacing:-3.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.ls2_c00183{letter-spacing:3.000000px;}
.ls3_c00183{letter-spacing:54.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-43.084800px;}
.ws5_c00183{word-spacing:-24.582000px;}
.ws2_c00183{word-spacing:-22.413000px;}
.ws4_c00183{word-spacing:-17.460000px;}
.ws1_c00183{word-spacing:-9.144000px;}
.ws6_c00183{word-spacing:0.000000px;}
.ws3_c00183{word-spacing:186.672000px;}
._31_c00183{margin-left:-69.024000px;}
._40_c00183{margin-left:-44.928000px;}
._34_c00183{margin-left:-39.264000px;}
._2c_c00183{margin-left:-30.600000px;}
._21_c00183{margin-left:-27.168000px;}
._2d_c00183{margin-left:-20.592000px;}
._3f_c00183{margin-left:-13.344000px;}
._41_c00183{margin-left:-8.508000px;}
._2a_c00183{margin-left:-6.588000px;}
._10_c00183{margin-left:-4.896000px;}
._f_c00183{margin-left:-3.552000px;}
._13_c00183{margin-left:-1.824000px;}
._2_c00183{width:1.344000px;}
._0_c00183{width:2.976000px;}
._4_c00183{width:4.320000px;}
._c_c00183{width:5.760000px;}
._15_c00183{width:7.680000px;}
._b_c00183{width:9.408000px;}
._24_c00183{width:10.848000px;}
._26_c00183{width:12.480000px;}
._25_c00183{width:14.400000px;}
._1_c00183{width:16.032000px;}
._1e_c00183{width:17.280000px;}
._29_c00183{width:18.300000px;}
._33_c00183{width:20.160000px;}
._27_c00183{width:21.696000px;}
._1f_c00183{width:25.344000px;}
._38_c00183{width:26.376000px;}
._36_c00183{width:27.552000px;}
._5_c00183{width:28.608000px;}
._22_c00183{width:29.664000px;}
._7_c00183{width:31.776000px;}
._35_c00183{width:33.690000px;}
._23_c00183{width:34.848000px;}
._20_c00183{width:36.672000px;}
._28_c00183{width:38.112000px;}
._a_c00183{width:39.456000px;}
._3d_c00183{width:40.992000px;}
._14_c00183{width:42.336000px;}
._3c_c00183{width:43.521000px;}
._9_c00183{width:45.408000px;}
._12_c00183{width:46.944000px;}
._3e_c00183{width:48.000000px;}
._6_c00183{width:50.304000px;}
._30_c00183{width:51.720000px;}
._3a_c00183{width:53.568000px;}
._3_c00183{width:55.968000px;}
._2b_c00183{width:56.988000px;}
._3b_c00183{width:58.464000px;}
._1d_c00183{width:59.712000px;}
._39_c00183{width:60.750000px;}
._e_c00183{width:62.688000px;}
._d_c00183{width:65.088000px;}
._11_c00183{width:66.528000px;}
._18_c00183{width:70.368000px;}
._8_c00183{width:71.520000px;}
._17_c00183{width:75.072000px;}
._37_c00183{width:76.866000px;}
._19_c00183{width:81.600000px;}
._1c_c00183{width:85.440000px;}
._1a_c00183{width:87.072000px;}
._16_c00183{width:103.680000px;}
._1b_c00183{width:123.264000px;}
._2f_c00183{width:166.092000px;}
._2e_c00183{width:374.832000px;}
._32_c00183{width:1097.952000px;}
.fc2_c00183{color:transparent;}
.fc1_c00183{color:rgb(128,128,128);}
.fc0_c00183{color:rgb(0,0,0);}
.fs2_c00183{font-size:36.000000px;}
.fs9_c00183{font-size:48.000000px;}
.fs7_c00183{font-size:60.000000px;}
.fs4_c00183{font-size:76.800000px;}
.fs5_c00183{font-size:93.000000px;}
.fs0_c00183{font-size:96.000000px;}
.fs8_c00183{font-size:102.000000px;}
.fs6_c00183{font-size:105.000000px;}
.fs3_c00183{font-size:144.000000px;}
.fs1_c00183{font-size:162.000000px;}
.y0_c00183{bottom:0.000000px;}
.y22_c00183{bottom:3.105000px;}
.y21_c00183{bottom:7.228357px;}
.y20_c00183{bottom:94.830000px;}
.y1f_c00183{bottom:137.730000px;}
.y1e_c00183{bottom:228.780000px;}
.y1d_c00183{bottom:237.930000px;}
.y1c_c00183{bottom:269.730000px;}
.y1b_c00183{bottom:303.480000px;}
.y1a_c00183{bottom:338.130000px;}
.y19_c00183{bottom:372.030000px;}
.y18_c00183{bottom:405.780000px;}
.y17_c00183{bottom:439.530000px;}
.y16_c00183{bottom:473.130000px;}
.y15_c00183{bottom:507.330000px;}
.y14_c00183{bottom:541.380000px;}
.y13_c00183{bottom:573.030000px;}
.y12_c00183{bottom:606.180000px;}
.y11_c00183{bottom:641.580000px;}
.y10_c00183{bottom:716.580000px;}
.yf_c00183{bottom:767.130000px;}
.ye_c00183{bottom:807.030000px;}
.yd_c00183{bottom:818.430000px;}
.yc_c00183{bottom:868.080000px;}
.yb_c00183{bottom:946.380000px;}
.ya_c00183{bottom:978.780000px;}
.y9_c00183{bottom:1011.930000px;}
.y8_c00183{bottom:1045.680000px;}
.y7_c00183{bottom:1078.980000px;}
.y6_c00183{bottom:1111.830000px;}
.y5_c00183{bottom:1145.580000px;}
.y4_c00183{bottom:1178.880000px;}
.y3_c00183{bottom:1212.630000px;}
.y2_c00183{bottom:1245.330000px;}
.y1_c00183{bottom:1279.230000px;}
.h9_c00183{height:13.200074px;}
.ha_c00183{height:43.804688px;}
.h4_c00183{height:45.580078px;}
.h7_c00183{height:75.966797px;}
.h2_c00183{height:121.546875px;}
.h8_c00183{height:129.143555px;}
.h6_c00183{height:132.941895px;}
.h3_c00183{height:158.994141px;}
.h5_c00183{height:182.320312px;}
.h0_c00183{height:1382.700000px;}
.h1_c00183{height:1383.000000px;}
.w2_c00183{width:104.875500px;}
.w0_c00183{width:863.175000px;}
.w1_c00183{width:863.250000px;}
.x0_c00183{left:0.000000px;}
.x9_c00183{left:269.700000px;}
.xc_c00183{left:271.350000px;}
.xb_c00183{left:273.000000px;}
.x3_c00183{left:274.500000px;}
.x1_c00183{left:276.150000px;}
.x2_c00183{left:277.350000px;}
.x8_c00183{left:327.450000px;}
.xd_c00183{left:366.450000px;}
.x10_c00183{left:383.401749px;}
.xe_c00183{left:401.250000px;}
.x4_c00183{left:412.050000px;}
.x7_c00183{left:414.450000px;}
.x6_c00183{left:466.200000px;}
.xa_c00183{left:471.750000px;}
.x5_c00183{left:703.050000px;}
.xf_c00183{left:781.650000px;}
@media print{
.v1_c00183{vertical-align:-60.800000pt;}
.v0_c00183{vertical-align:0.000000pt;}
.ls1_c00183{letter-spacing:-2.666667pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ls2_c00183{letter-spacing:2.666667pt;}
.ls3_c00183{letter-spacing:48.000000pt;}
.ws0_c00183{word-spacing:-38.297600pt;}
.ws5_c00183{word-spacing:-21.850667pt;}
.ws2_c00183{word-spacing:-19.922667pt;}
.ws4_c00183{word-spacing:-15.520000pt;}
.ws1_c00183{word-spacing:-8.128000pt;}
.ws6_c00183{word-spacing:0.000000pt;}
.ws3_c00183{word-spacing:165.930667pt;}
._31_c00183{margin-left:-61.354667pt;}
._40_c00183{margin-left:-39.936000pt;}
._34_c00183{margin-left:-34.901333pt;}
._2c_c00183{margin-left:-27.200000pt;}
._21_c00183{margin-left:-24.149333pt;}
._2d_c00183{margin-left:-18.304000pt;}
._3f_c00183{margin-left:-11.861333pt;}
._41_c00183{margin-left:-7.562667pt;}
._2a_c00183{margin-left:-5.856000pt;}
._10_c00183{margin-left:-4.352000pt;}
._f_c00183{margin-left:-3.157333pt;}
._13_c00183{margin-left:-1.621333pt;}
._2_c00183{width:1.194667pt;}
._0_c00183{width:2.645333pt;}
._4_c00183{width:3.840000pt;}
._c_c00183{width:5.120000pt;}
._15_c00183{width:6.826667pt;}
._b_c00183{width:8.362667pt;}
._24_c00183{width:9.642667pt;}
._26_c00183{width:11.093333pt;}
._25_c00183{width:12.800000pt;}
._1_c00183{width:14.250667pt;}
._1e_c00183{width:15.360000pt;}
._29_c00183{width:16.266667pt;}
._33_c00183{width:17.920000pt;}
._27_c00183{width:19.285333pt;}
._1f_c00183{width:22.528000pt;}
._38_c00183{width:23.445333pt;}
._36_c00183{width:24.490667pt;}
._5_c00183{width:25.429333pt;}
._22_c00183{width:26.368000pt;}
._7_c00183{width:28.245333pt;}
._35_c00183{width:29.946667pt;}
._23_c00183{width:30.976000pt;}
._20_c00183{width:32.597333pt;}
._28_c00183{width:33.877333pt;}
._a_c00183{width:35.072000pt;}
._3d_c00183{width:36.437333pt;}
._14_c00183{width:37.632000pt;}
._3c_c00183{width:38.685333pt;}
._9_c00183{width:40.362667pt;}
._12_c00183{width:41.728000pt;}
._3e_c00183{width:42.666667pt;}
._6_c00183{width:44.714667pt;}
._30_c00183{width:45.973333pt;}
._3a_c00183{width:47.616000pt;}
._3_c00183{width:49.749333pt;}
._2b_c00183{width:50.656000pt;}
._3b_c00183{width:51.968000pt;}
._1d_c00183{width:53.077333pt;}
._39_c00183{width:54.000000pt;}
._e_c00183{width:55.722667pt;}
._d_c00183{width:57.856000pt;}
._11_c00183{width:59.136000pt;}
._18_c00183{width:62.549333pt;}
._8_c00183{width:63.573333pt;}
._17_c00183{width:66.730667pt;}
._37_c00183{width:68.325333pt;}
._19_c00183{width:72.533333pt;}
._1c_c00183{width:75.946667pt;}
._1a_c00183{width:77.397333pt;}
._16_c00183{width:92.160000pt;}
._1b_c00183{width:109.568000pt;}
._2f_c00183{width:147.637333pt;}
._2e_c00183{width:333.184000pt;}
._32_c00183{width:975.957333pt;}
.fs2_c00183{font-size:32.000000pt;}
.fs9_c00183{font-size:42.666667pt;}
.fs7_c00183{font-size:53.333333pt;}
.fs4_c00183{font-size:68.266667pt;}
.fs5_c00183{font-size:82.666667pt;}
.fs0_c00183{font-size:85.333333pt;}
.fs8_c00183{font-size:90.666667pt;}
.fs6_c00183{font-size:93.333333pt;}
.fs3_c00183{font-size:128.000000pt;}
.fs1_c00183{font-size:144.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y22_c00183{bottom:2.760000pt;}
.y21_c00183{bottom:6.425206pt;}
.y20_c00183{bottom:84.293333pt;}
.y1f_c00183{bottom:122.426667pt;}
.y1e_c00183{bottom:203.360000pt;}
.y1d_c00183{bottom:211.493333pt;}
.y1c_c00183{bottom:239.760000pt;}
.y1b_c00183{bottom:269.760000pt;}
.y1a_c00183{bottom:300.560000pt;}
.y19_c00183{bottom:330.693333pt;}
.y18_c00183{bottom:360.693333pt;}
.y17_c00183{bottom:390.693333pt;}
.y16_c00183{bottom:420.560000pt;}
.y15_c00183{bottom:450.960000pt;}
.y14_c00183{bottom:481.226667pt;}
.y13_c00183{bottom:509.360000pt;}
.y12_c00183{bottom:538.826667pt;}
.y11_c00183{bottom:570.293333pt;}
.y10_c00183{bottom:636.960000pt;}
.yf_c00183{bottom:681.893333pt;}
.ye_c00183{bottom:717.360000pt;}
.yd_c00183{bottom:727.493333pt;}
.yc_c00183{bottom:771.626667pt;}
.yb_c00183{bottom:841.226667pt;}
.ya_c00183{bottom:870.026667pt;}
.y9_c00183{bottom:899.493333pt;}
.y8_c00183{bottom:929.493333pt;}
.y7_c00183{bottom:959.093333pt;}
.y6_c00183{bottom:988.293333pt;}
.y5_c00183{bottom:1018.293333pt;}
.y4_c00183{bottom:1047.893333pt;}
.y3_c00183{bottom:1077.893333pt;}
.y2_c00183{bottom:1106.960000pt;}
.y1_c00183{bottom:1137.093333pt;}
.h9_c00183{height:11.733399pt;}
.ha_c00183{height:38.937500pt;}
.h4_c00183{height:40.515625pt;}
.h7_c00183{height:67.526042pt;}
.h2_c00183{height:108.041667pt;}
.h8_c00183{height:114.794271pt;}
.h6_c00183{height:118.170573pt;}
.h3_c00183{height:141.328125pt;}
.h5_c00183{height:162.062500pt;}
.h0_c00183{height:1229.066667pt;}
.h1_c00183{height:1229.333333pt;}
.w2_c00183{width:93.222667pt;}
.w0_c00183{width:767.266667pt;}
.w1_c00183{width:767.333333pt;}
.x0_c00183{left:0.000000pt;}
.x9_c00183{left:239.733333pt;}
.xc_c00183{left:241.200000pt;}
.xb_c00183{left:242.666667pt;}
.x3_c00183{left:244.000000pt;}
.x1_c00183{left:245.466667pt;}
.x2_c00183{left:246.533333pt;}
.x8_c00183{left:291.066667pt;}
.xd_c00183{left:325.733333pt;}
.x10_c00183{left:340.801554pt;}
.xe_c00183{left:356.666667pt;}
.x4_c00183{left:366.266667pt;}
.x7_c00183{left:368.400000pt;}
.x6_c00183{left:414.400000pt;}
.xa_c00183{left:419.333333pt;}
.x5_c00183{left:624.933333pt;}
.xf_c00183{left:694.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_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_0093d819dbe0fc816ff0d88a.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_0849c420c87cb58cf8104580.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_046089be13b15fabe276751e.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_f1e00b9d50ccd2fafeb8a26b.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_777b59680b654b9d873a1626.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00184;src:url('chunks/assets/font_b80aa797862baffcaa7986cc.woff2')format("woff");}.ff7_c00184{font-family:ff7_c00184;line-height:1.272949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00184;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00184{font-family:ff8_c00184;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00184{vertical-align:-133.200000px;}
.v0_c00184{vertical-align:0.000000px;}
.ls9_c00184{letter-spacing:-15.000000px;}
.lsa_c00184{letter-spacing:-3.000000px;}
.ls3_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:5.844000px;}
.ls8_c00184{letter-spacing:6.000000px;}
.ls5_c00184{letter-spacing:9.000000px;}
.ls4_c00184{letter-spacing:12.000000px;}
.ls6_c00184{letter-spacing:15.000000px;}
.ls1_c00184{letter-spacing:15.300000px;}
.ls7_c00184{letter-spacing:51.000000px;}
.ls2_c00184{letter-spacing:547.524000px;}
.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:-23.676000px;}
.ws0_c00184{word-spacing:-23.136000px;}
.ws2_c00184{word-spacing:-18.000000px;}
.ws3_c00184{word-spacing:0.000000px;}
._43_c00184{margin-left:-84.000000px;}
._20_c00184{margin-left:-71.376000px;}
._54_c00184{margin-left:-67.122000px;}
._4e_c00184{margin-left:-51.090000px;}
._4a_c00184{margin-left:-48.972000px;}
._49_c00184{margin-left:-47.550000px;}
._47_c00184{margin-left:-44.190000px;}
._4f_c00184{margin-left:-39.630000px;}
._52_c00184{margin-left:-35.760000px;}
._50_c00184{margin-left:-34.350000px;}
._b_c00184{margin-left:-30.528000px;}
._2a_c00184{margin-left:-27.927000px;}
._3f_c00184{margin-left:-26.115000px;}
._55_c00184{margin-left:-23.631000px;}
._23_c00184{margin-left:-19.530000px;}
._15_c00184{margin-left:-18.528000px;}
._1b_c00184{margin-left:-17.451000px;}
._22_c00184{margin-left:-15.834000px;}
._29_c00184{margin-left:-13.923000px;}
._1d_c00184{margin-left:-11.895000px;}
._2c_c00184{margin-left:-10.761000px;}
._3e_c00184{margin-left:-8.730000px;}
._3c_c00184{margin-left:-7.665000px;}
._39_c00184{margin-left:-6.651000px;}
._14_c00184{margin-left:-5.472000px;}
._36_c00184{margin-left:-4.203000px;}
._12_c00184{margin-left:-2.208000px;}
._37_c00184{margin-left:-1.041000px;}
._0_c00184{width:1.575000px;}
._4_c00184{width:3.150000px;}
._d_c00184{width:4.410000px;}
._1_c00184{width:6.090000px;}
._2_c00184{width:7.980000px;}
._6_c00184{width:9.030000px;}
._5_c00184{width:10.185000px;}
._3_c00184{width:12.180000px;}
._17_c00184{width:13.842000px;}
._9_c00184{width:15.648000px;}
._c_c00184{width:16.752000px;}
._1e_c00184{width:17.781000px;}
._30_c00184{width:18.816000px;}
._13_c00184{width:20.544000px;}
._32_c00184{width:21.693000px;}
._19_c00184{width:22.701000px;}
._1a_c00184{width:24.381000px;}
._31_c00184{width:26.109000px;}
._1c_c00184{width:28.152000px;}
._21_c00184{width:29.169000px;}
._f_c00184{width:30.471000px;}
._e_c00184{width:32.277000px;}
._35_c00184{width:34.791000px;}
._1f_c00184{width:36.168000px;}
._24_c00184{width:37.818000px;}
._25_c00184{width:39.564000px;}
._7_c00184{width:41.466000px;}
._10_c00184{width:43.281000px;}
._26_c00184{width:46.431000px;}
._2e_c00184{width:48.579000px;}
._18_c00184{width:50.610000px;}
._27_c00184{width:53.832000px;}
._11_c00184{width:55.962000px;}
._38_c00184{width:57.066000px;}
._28_c00184{width:58.227000px;}
._a_c00184{width:60.000000px;}
._41_c00184{width:64.608000px;}
._2b_c00184{width:69.681000px;}
._34_c00184{width:71.064000px;}
._3a_c00184{width:73.494000px;}
._33_c00184{width:75.522000px;}
._44_c00184{width:88.128000px;}
._42_c00184{width:113.952000px;}
._51_c00184{width:119.970000px;}
._48_c00184{width:149.970000px;}
._45_c00184{width:182.826000px;}
._58_c00184{width:191.253000px;}
._3b_c00184{width:193.860000px;}
._46_c00184{width:196.263000px;}
._2f_c00184{width:259.266000px;}
._3d_c00184{width:273.840000px;}
._57_c00184{width:281.103000px;}
._4b_c00184{width:284.070000px;}
._5a_c00184{width:304.053000px;}
._4c_c00184{width:322.776000px;}
._53_c00184{width:337.470000px;}
._8_c00184{width:341.952000px;}
._5b_c00184{width:388.542000px;}
._4d_c00184{width:393.792000px;}
._56_c00184{width:474.351000px;}
._59_c00184{width:509.457000px;}
._40_c00184{width:543.906000px;}
._2d_c00184{width:669.489000px;}
._5c_c00184{width:744.555000px;}
._16_c00184{width:897.312000px;}
.fc2_c00184{color:transparent;}
.fc1_c00184{color:rgb(128,128,128);}
.fc0_c00184{color:rgb(0,0,0);}
.fs6_c00184{font-size:30.000000px;}
.fs5_c00184{font-size:36.000000px;}
.fsa_c00184{font-size:48.000000px;}
.fs9_c00184{font-size:75.000000px;}
.fs2_c00184{font-size:84.000000px;}
.fs4_c00184{font-size:87.000000px;}
.fs7_c00184{font-size:90.000000px;}
.fs1_c00184{font-size:96.000000px;}
.fs3_c00184{font-size:99.000000px;}
.fs8_c00184{font-size:102.000000px;}
.fs0_c00184{font-size:105.000000px;}
.y0_c00184{bottom:0.000000px;}
.y22_c00184{bottom:3.105000px;}
.y21_c00184{bottom:7.228369px;}
.y20_c00184{bottom:94.470000px;}
.y1f_c00184{bottom:172.470000px;}
.y1e_c00184{bottom:201.120000px;}
.y1d_c00184{bottom:234.870000px;}
.y1c_c00184{bottom:248.670000px;}
.y1b_c00184{bottom:271.320000px;}
.y1a_c00184{bottom:369.120000px;}
.y19_c00184{bottom:403.020000px;}
.y18_c00184{bottom:433.020000px;}
.y17_c00184{bottom:467.820000px;}
.y16_c00184{bottom:501.420000px;}
.y15_c00184{bottom:534.570000px;}
.y14_c00184{bottom:568.020000px;}
.y13_c00184{bottom:601.320000px;}
.y12_c00184{bottom:633.870000px;}
.y11_c00184{bottom:667.170000px;}
.y10_c00184{bottom:700.620000px;}
.yf_c00184{bottom:733.620000px;}
.ye_c00184{bottom:767.070000px;}
.yd_c00184{bottom:800.820000px;}
.yc_c00184{bottom:833.970000px;}
.yb_c00184{bottom:866.670000px;}
.ya_c00184{bottom:900.420000px;}
.y9_c00184{bottom:932.820000px;}
.y8_c00184{bottom:965.970000px;}
.y7_c00184{bottom:1000.020000px;}
.y6_c00184{bottom:1033.320000px;}
.y5_c00184{bottom:1064.370000px;}
.y4_c00184{bottom:1099.170000px;}
.y3_c00184{bottom:1133.370000px;}
.y2_c00184{bottom:1199.070000px;}
.y1_c00184{bottom:1232.220000px;}
.ha_c00184{height:13.200073px;}
.h6_c00184{height:37.983398px;}
.hb_c00184{height:43.804688px;}
.h9_c00184{height:45.580078px;}
.h5_c00184{height:98.314453px;}
.h8_c00184{height:100.450195px;}
.h4_c00184{height:106.353516px;}
.h7_c00184{height:106.896000px;}
.h3_c00184{height:121.546875px;}
.h2_c00184{height:132.941895px;}
.h0_c00184{height:1383.450000px;}
.h1_c00184{height:1383.750000px;}
.w2_c00184{width:104.875500px;}
.w0_c00184{width:878.025000px;}
.w1_c00184{width:878.250000px;}
.x0_c00184{left:0.000000px;}
.x8_c00184{left:68.250000px;}
.x9_c00184{left:70.500000px;}
.x5_c00184{left:72.000000px;}
.x7_c00184{left:73.200000px;}
.x6_c00184{left:74.700000px;}
.x1_c00184{left:78.600000px;}
.xd_c00184{left:97.500000px;}
.x3_c00184{left:126.750000px;}
.xa_c00184{left:152.550000px;}
.xc_c00184{left:172.500000px;}
.xe_c00184{left:249.150000px;}
.x2_c00184{left:265.950000px;}
.xb_c00184{left:280.500000px;}
.x4_c00184{left:312.300000px;}
.xf_c00184{left:346.950000px;}
.x10_c00184{left:390.826721px;}
@media print{
.v1_c00184{vertical-align:-118.400000pt;}
.v0_c00184{vertical-align:0.000000pt;}
.ls9_c00184{letter-spacing:-13.333333pt;}
.lsa_c00184{letter-spacing:-2.666667pt;}
.ls3_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:5.194667pt;}
.ls8_c00184{letter-spacing:5.333333pt;}
.ls5_c00184{letter-spacing:8.000000pt;}
.ls4_c00184{letter-spacing:10.666667pt;}
.ls6_c00184{letter-spacing:13.333333pt;}
.ls1_c00184{letter-spacing:13.600000pt;}
.ls7_c00184{letter-spacing:45.333333pt;}
.ls2_c00184{letter-spacing:486.688000pt;}
.ws1_c00184{word-spacing:-21.045333pt;}
.ws0_c00184{word-spacing:-20.565333pt;}
.ws2_c00184{word-spacing:-16.000000pt;}
.ws3_c00184{word-spacing:0.000000pt;}
._43_c00184{margin-left:-74.666667pt;}
._20_c00184{margin-left:-63.445333pt;}
._54_c00184{margin-left:-59.664000pt;}
._4e_c00184{margin-left:-45.413333pt;}
._4a_c00184{margin-left:-43.530667pt;}
._49_c00184{margin-left:-42.266667pt;}
._47_c00184{margin-left:-39.280000pt;}
._4f_c00184{margin-left:-35.226667pt;}
._52_c00184{margin-left:-31.786667pt;}
._50_c00184{margin-left:-30.533333pt;}
._b_c00184{margin-left:-27.136000pt;}
._2a_c00184{margin-left:-24.824000pt;}
._3f_c00184{margin-left:-23.213333pt;}
._55_c00184{margin-left:-21.005333pt;}
._23_c00184{margin-left:-17.360000pt;}
._15_c00184{margin-left:-16.469333pt;}
._1b_c00184{margin-left:-15.512000pt;}
._22_c00184{margin-left:-14.074667pt;}
._29_c00184{margin-left:-12.376000pt;}
._1d_c00184{margin-left:-10.573333pt;}
._2c_c00184{margin-left:-9.565333pt;}
._3e_c00184{margin-left:-7.760000pt;}
._3c_c00184{margin-left:-6.813333pt;}
._39_c00184{margin-left:-5.912000pt;}
._14_c00184{margin-left:-4.864000pt;}
._36_c00184{margin-left:-3.736000pt;}
._12_c00184{margin-left:-1.962667pt;}
._37_c00184{margin-left:-0.925333pt;}
._0_c00184{width:1.400000pt;}
._4_c00184{width:2.800000pt;}
._d_c00184{width:3.920000pt;}
._1_c00184{width:5.413333pt;}
._2_c00184{width:7.093333pt;}
._6_c00184{width:8.026667pt;}
._5_c00184{width:9.053333pt;}
._3_c00184{width:10.826667pt;}
._17_c00184{width:12.304000pt;}
._9_c00184{width:13.909333pt;}
._c_c00184{width:14.890667pt;}
._1e_c00184{width:15.805333pt;}
._30_c00184{width:16.725333pt;}
._13_c00184{width:18.261333pt;}
._32_c00184{width:19.282667pt;}
._19_c00184{width:20.178667pt;}
._1a_c00184{width:21.672000pt;}
._31_c00184{width:23.208000pt;}
._1c_c00184{width:25.024000pt;}
._21_c00184{width:25.928000pt;}
._f_c00184{width:27.085333pt;}
._e_c00184{width:28.690667pt;}
._35_c00184{width:30.925333pt;}
._1f_c00184{width:32.149333pt;}
._24_c00184{width:33.616000pt;}
._25_c00184{width:35.168000pt;}
._7_c00184{width:36.858667pt;}
._10_c00184{width:38.472000pt;}
._26_c00184{width:41.272000pt;}
._2e_c00184{width:43.181333pt;}
._18_c00184{width:44.986667pt;}
._27_c00184{width:47.850667pt;}
._11_c00184{width:49.744000pt;}
._38_c00184{width:50.725333pt;}
._28_c00184{width:51.757333pt;}
._a_c00184{width:53.333333pt;}
._41_c00184{width:57.429333pt;}
._2b_c00184{width:61.938667pt;}
._34_c00184{width:63.168000pt;}
._3a_c00184{width:65.328000pt;}
._33_c00184{width:67.130667pt;}
._44_c00184{width:78.336000pt;}
._42_c00184{width:101.290667pt;}
._51_c00184{width:106.640000pt;}
._48_c00184{width:133.306667pt;}
._45_c00184{width:162.512000pt;}
._58_c00184{width:170.002667pt;}
._3b_c00184{width:172.320000pt;}
._46_c00184{width:174.456000pt;}
._2f_c00184{width:230.458667pt;}
._3d_c00184{width:243.413333pt;}
._57_c00184{width:249.869333pt;}
._4b_c00184{width:252.506667pt;}
._5a_c00184{width:270.269333pt;}
._4c_c00184{width:286.912000pt;}
._53_c00184{width:299.973333pt;}
._8_c00184{width:303.957333pt;}
._5b_c00184{width:345.370667pt;}
._4d_c00184{width:350.037333pt;}
._56_c00184{width:421.645333pt;}
._59_c00184{width:452.850667pt;}
._40_c00184{width:483.472000pt;}
._2d_c00184{width:595.101333pt;}
._5c_c00184{width:661.826667pt;}
._16_c00184{width:797.610667pt;}
.fs6_c00184{font-size:26.666667pt;}
.fs5_c00184{font-size:32.000000pt;}
.fsa_c00184{font-size:42.666667pt;}
.fs9_c00184{font-size:66.666667pt;}
.fs2_c00184{font-size:74.666667pt;}
.fs4_c00184{font-size:77.333333pt;}
.fs7_c00184{font-size:80.000000pt;}
.fs1_c00184{font-size:85.333333pt;}
.fs3_c00184{font-size:88.000000pt;}
.fs8_c00184{font-size:90.666667pt;}
.fs0_c00184{font-size:93.333333pt;}
.y0_c00184{bottom:0.000000pt;}
.y22_c00184{bottom:2.760000pt;}
.y21_c00184{bottom:6.425217pt;}
.y20_c00184{bottom:83.973333pt;}
.y1f_c00184{bottom:153.306667pt;}
.y1e_c00184{bottom:178.773333pt;}
.y1d_c00184{bottom:208.773333pt;}
.y1c_c00184{bottom:221.040000pt;}
.y1b_c00184{bottom:241.173333pt;}
.y1a_c00184{bottom:328.106667pt;}
.y19_c00184{bottom:358.240000pt;}
.y18_c00184{bottom:384.906667pt;}
.y17_c00184{bottom:415.840000pt;}
.y16_c00184{bottom:445.706667pt;}
.y15_c00184{bottom:475.173333pt;}
.y14_c00184{bottom:504.906667pt;}
.y13_c00184{bottom:534.506667pt;}
.y12_c00184{bottom:563.440000pt;}
.y11_c00184{bottom:593.040000pt;}
.y10_c00184{bottom:622.773333pt;}
.yf_c00184{bottom:652.106667pt;}
.ye_c00184{bottom:681.840000pt;}
.yd_c00184{bottom:711.840000pt;}
.yc_c00184{bottom:741.306667pt;}
.yb_c00184{bottom:770.373333pt;}
.ya_c00184{bottom:800.373333pt;}
.y9_c00184{bottom:829.173333pt;}
.y8_c00184{bottom:858.640000pt;}
.y7_c00184{bottom:888.906667pt;}
.y6_c00184{bottom:918.506667pt;}
.y5_c00184{bottom:946.106667pt;}
.y4_c00184{bottom:977.040000pt;}
.y3_c00184{bottom:1007.440000pt;}
.y2_c00184{bottom:1065.840000pt;}
.y1_c00184{bottom:1095.306667pt;}
.ha_c00184{height:11.733399pt;}
.h6_c00184{height:33.763021pt;}
.hb_c00184{height:38.937500pt;}
.h9_c00184{height:40.515625pt;}
.h5_c00184{height:87.390625pt;}
.h8_c00184{height:89.289062pt;}
.h4_c00184{height:94.536458pt;}
.h7_c00184{height:95.018667pt;}
.h3_c00184{height:108.041667pt;}
.h2_c00184{height:118.170573pt;}
.h0_c00184{height:1229.733333pt;}
.h1_c00184{height:1230.000000pt;}
.w2_c00184{width:93.222667pt;}
.w0_c00184{width:780.466667pt;}
.w1_c00184{width:780.666667pt;}
.x0_c00184{left:0.000000pt;}
.x8_c00184{left:60.666667pt;}
.x9_c00184{left:62.666667pt;}
.x5_c00184{left:64.000000pt;}
.x7_c00184{left:65.066667pt;}
.x6_c00184{left:66.400000pt;}
.x1_c00184{left:69.866667pt;}
.xd_c00184{left:86.666667pt;}
.x3_c00184{left:112.666667pt;}
.xa_c00184{left:135.600000pt;}
.xc_c00184{left:153.333333pt;}
.xe_c00184{left:221.466667pt;}
.x2_c00184{left:236.400000pt;}
.xb_c00184{left:249.333333pt;}
.x4_c00184{left:277.600000pt;}
.xf_c00184{left:308.400000pt;}
.x10_c00184{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f986c17c31e04a3aa2b80563.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_178f4de8ab1f4dc3f8aedf8e.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls6_c00185{letter-spacing:0.000000px;}
.ls1_c00185{letter-spacing:8.052000px;}
.ls3_c00185{letter-spacing:9.600000px;}
.ls4_c00185{letter-spacing:9.672000px;}
.ls0_c00185{letter-spacing:15.156000px;}
.ls5_c00185{letter-spacing:16.200000px;}
.ls2_c00185{letter-spacing:20.400000px;}
.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:-63.504000px;}
.ws1_c00185{word-spacing:0.000000px;}
._28_c00185{margin-left:-47.136000px;}
._2b_c00185{margin-left:-14.016000px;}
._37_c00185{margin-left:-12.240000px;}
._14_c00185{margin-left:-10.608000px;}
._2a_c00185{margin-left:-9.312000px;}
._6_c00185{margin-left:-7.632000px;}
._a_c00185{margin-left:-6.624000px;}
._b_c00185{margin-left:-4.752000px;}
._1c_c00185{margin-left:-3.504000px;}
._26_c00185{margin-left:-1.872000px;}
._8_c00185{width:1.440000px;}
._f_c00185{width:2.976000px;}
._e_c00185{width:4.032000px;}
._2_c00185{width:5.040000px;}
._15_c00185{width:6.048000px;}
._5_c00185{width:7.056000px;}
._4_c00185{width:8.064000px;}
._1_c00185{width:9.648000px;}
._0_c00185{width:11.376000px;}
._1d_c00185{width:12.864000px;}
._12_c00185{width:14.784000px;}
._9_c00185{width:15.984000px;}
._11_c00185{width:17.664000px;}
._29_c00185{width:18.864000px;}
._c_c00185{width:19.872000px;}
._1e_c00185{width:21.600000px;}
._7_c00185{width:24.768000px;}
._30_c00185{width:26.400000px;}
._2e_c00185{width:27.552000px;}
._21_c00185{width:28.704000px;}
._1a_c00185{width:29.712000px;}
._27_c00185{width:30.912000px;}
._1b_c00185{width:32.544000px;}
._19_c00185{width:34.272000px;}
._16_c00185{width:36.288000px;}
._24_c00185{width:37.824000px;}
._20_c00185{width:39.264000px;}
._23_c00185{width:41.040000px;}
._2f_c00185{width:42.144000px;}
._17_c00185{width:43.344000px;}
._1f_c00185{width:45.456000px;}
._22_c00185{width:47.760000px;}
._25_c00185{width:49.200000px;}
._31_c00185{width:51.648000px;}
._2d_c00185{width:56.352000px;}
._2c_c00185{width:60.672000px;}
._33_c00185{width:62.400000px;}
._36_c00185{width:64.416000px;}
._10_c00185{width:66.528000px;}
._18_c00185{width:68.784000px;}
._32_c00185{width:76.128000px;}
._3_c00185{width:89.568000px;}
._13_c00185{width:114.240000px;}
._35_c00185{width:174.720000px;}
._d_c00185{width:258.528000px;}
._34_c00185{width:451.680000px;}
.fc2_c00185{color:transparent;}
.fc1_c00185{color:rgb(128,128,128);}
.fc0_c00185{color:rgb(0,0,0);}
.fs4_c00185{font-size:48.000000px;}
.fs2_c00185{font-size:84.000000px;}
.fs1_c00185{font-size:96.000000px;}
.fs3_c00185{font-size:102.000000px;}
.fs0_c00185{font-size:144.000000px;}
.y0_c00185{bottom:0.000000px;}
.y21_c00185{bottom:3.105000px;}
.y20_c00185{bottom:7.228357px;}
.y1f_c00185{bottom:150.480000px;}
.y1e_c00185{bottom:185.280000px;}
.y1d_c00185{bottom:219.030000px;}
.y1c_c00185{bottom:252.180000px;}
.y1b_c00185{bottom:286.230000px;}
.y1a_c00185{bottom:323.280000px;}
.y19_c00185{bottom:354.780000px;}
.y18_c00185{bottom:388.230000px;}
.y17_c00185{bottom:420.480000px;}
.y16_c00185{bottom:456.030000px;}
.y15_c00185{bottom:489.030000px;}
.y14_c00185{bottom:522.780000px;}
.y13_c00185{bottom:557.280000px;}
.y12_c00185{bottom:590.730000px;}
.y11_c00185{bottom:625.080000px;}
.y10_c00185{bottom:657.780000px;}
.yf_c00185{bottom:691.830000px;}
.ye_c00185{bottom:725.730000px;}
.yd_c00185{bottom:759.330000px;}
.yc_c00185{bottom:792.780000px;}
.yb_c00185{bottom:826.230000px;}
.ya_c00185{bottom:859.980000px;}
.y9_c00185{bottom:893.730000px;}
.y8_c00185{bottom:926.880000px;}
.y7_c00185{bottom:959.880000px;}
.y6_c00185{bottom:993.630000px;}
.y5_c00185{bottom:1027.680000px;}
.y4_c00185{bottom:1061.130000px;}
.y3_c00185{bottom:1093.530000px;}
.y2_c00185{bottom:1199.430000px;}
.y1_c00185{bottom:1250.430000px;}
.h4_c00185{height:13.200074px;}
.h5_c00185{height:43.804688px;}
.h3_c00185{height:121.546875px;}
.h2_c00185{height:182.320312px;}
.h0_c00185{height:1362.450000px;}
.h1_c00185{height:1362.750000px;}
.w2_c00185{width:104.875500px;}
.w1_c00185{width:849.750000px;}
.w0_c00185{width:849.975000px;}
.x0_c00185{left:0.000000px;}
.xb_c00185{left:168.750000px;}
.xc_c00185{left:190.350000px;}
.x8_c00185{left:252.000000px;}
.x1_c00185{left:253.350000px;}
.x7_c00185{left:254.550000px;}
.x6_c00185{left:256.800000px;}
.xa_c00185{left:257.850000px;}
.x9_c00185{left:259.500000px;}
.xd_c00185{left:376.801758px;}
.x2_c00185{left:391.500000px;}
.x3_c00185{left:406.350000px;}
.x4_c00185{left:446.850000px;}
.x5_c00185{left:488.400000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls6_c00185{letter-spacing:0.000000pt;}
.ls1_c00185{letter-spacing:7.157333pt;}
.ls3_c00185{letter-spacing:8.533333pt;}
.ls4_c00185{letter-spacing:8.597333pt;}
.ls0_c00185{letter-spacing:13.472000pt;}
.ls5_c00185{letter-spacing:14.400000pt;}
.ls2_c00185{letter-spacing:18.133333pt;}
.ws0_c00185{word-spacing:-56.448000pt;}
.ws1_c00185{word-spacing:0.000000pt;}
._28_c00185{margin-left:-41.898667pt;}
._2b_c00185{margin-left:-12.458667pt;}
._37_c00185{margin-left:-10.880000pt;}
._14_c00185{margin-left:-9.429333pt;}
._2a_c00185{margin-left:-8.277333pt;}
._6_c00185{margin-left:-6.784000pt;}
._a_c00185{margin-left:-5.888000pt;}
._b_c00185{margin-left:-4.224000pt;}
._1c_c00185{margin-left:-3.114667pt;}
._26_c00185{margin-left:-1.664000pt;}
._8_c00185{width:1.280000pt;}
._f_c00185{width:2.645333pt;}
._e_c00185{width:3.584000pt;}
._2_c00185{width:4.480000pt;}
._15_c00185{width:5.376000pt;}
._5_c00185{width:6.272000pt;}
._4_c00185{width:7.168000pt;}
._1_c00185{width:8.576000pt;}
._0_c00185{width:10.112000pt;}
._1d_c00185{width:11.434667pt;}
._12_c00185{width:13.141333pt;}
._9_c00185{width:14.208000pt;}
._11_c00185{width:15.701333pt;}
._29_c00185{width:16.768000pt;}
._c_c00185{width:17.664000pt;}
._1e_c00185{width:19.200000pt;}
._7_c00185{width:22.016000pt;}
._30_c00185{width:23.466667pt;}
._2e_c00185{width:24.490667pt;}
._21_c00185{width:25.514667pt;}
._1a_c00185{width:26.410667pt;}
._27_c00185{width:27.477333pt;}
._1b_c00185{width:28.928000pt;}
._19_c00185{width:30.464000pt;}
._16_c00185{width:32.256000pt;}
._24_c00185{width:33.621333pt;}
._20_c00185{width:34.901333pt;}
._23_c00185{width:36.480000pt;}
._2f_c00185{width:37.461333pt;}
._17_c00185{width:38.528000pt;}
._1f_c00185{width:40.405333pt;}
._22_c00185{width:42.453333pt;}
._25_c00185{width:43.733333pt;}
._31_c00185{width:45.909333pt;}
._2d_c00185{width:50.090667pt;}
._2c_c00185{width:53.930667pt;}
._33_c00185{width:55.466667pt;}
._36_c00185{width:57.258667pt;}
._10_c00185{width:59.136000pt;}
._18_c00185{width:61.141333pt;}
._32_c00185{width:67.669333pt;}
._3_c00185{width:79.616000pt;}
._13_c00185{width:101.546667pt;}
._35_c00185{width:155.306667pt;}
._d_c00185{width:229.802667pt;}
._34_c00185{width:401.493333pt;}
.fs4_c00185{font-size:42.666667pt;}
.fs2_c00185{font-size:74.666667pt;}
.fs1_c00185{font-size:85.333333pt;}
.fs3_c00185{font-size:90.666667pt;}
.fs0_c00185{font-size:128.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y21_c00185{bottom:2.760000pt;}
.y20_c00185{bottom:6.425206pt;}
.y1f_c00185{bottom:133.760000pt;}
.y1e_c00185{bottom:164.693333pt;}
.y1d_c00185{bottom:194.693333pt;}
.y1c_c00185{bottom:224.160000pt;}
.y1b_c00185{bottom:254.426667pt;}
.y1a_c00185{bottom:287.360000pt;}
.y19_c00185{bottom:315.360000pt;}
.y18_c00185{bottom:345.093333pt;}
.y17_c00185{bottom:373.760000pt;}
.y16_c00185{bottom:405.360000pt;}
.y15_c00185{bottom:434.693333pt;}
.y14_c00185{bottom:464.693333pt;}
.y13_c00185{bottom:495.360000pt;}
.y12_c00185{bottom:525.093333pt;}
.y11_c00185{bottom:555.626667pt;}
.y10_c00185{bottom:584.693333pt;}
.yf_c00185{bottom:614.960000pt;}
.ye_c00185{bottom:645.093333pt;}
.yd_c00185{bottom:674.960000pt;}
.yc_c00185{bottom:704.693333pt;}
.yb_c00185{bottom:734.426667pt;}
.ya_c00185{bottom:764.426667pt;}
.y9_c00185{bottom:794.426667pt;}
.y8_c00185{bottom:823.893333pt;}
.y7_c00185{bottom:853.226667pt;}
.y6_c00185{bottom:883.226667pt;}
.y5_c00185{bottom:913.493333pt;}
.y4_c00185{bottom:943.226667pt;}
.y3_c00185{bottom:972.026667pt;}
.y2_c00185{bottom:1066.160000pt;}
.y1_c00185{bottom:1111.493333pt;}
.h4_c00185{height:11.733399pt;}
.h5_c00185{height:38.937500pt;}
.h3_c00185{height:108.041667pt;}
.h2_c00185{height:162.062500pt;}
.h0_c00185{height:1211.066667pt;}
.h1_c00185{height:1211.333333pt;}
.w2_c00185{width:93.222667pt;}
.w1_c00185{width:755.333333pt;}
.w0_c00185{width:755.533333pt;}
.x0_c00185{left:0.000000pt;}
.xb_c00185{left:150.000000pt;}
.xc_c00185{left:169.200000pt;}
.x8_c00185{left:224.000000pt;}
.x1_c00185{left:225.200000pt;}
.x7_c00185{left:226.266667pt;}
.x6_c00185{left:228.266667pt;}
.xa_c00185{left:229.200000pt;}
.x9_c00185{left:230.666667pt;}
.xd_c00185{left:334.934896pt;}
.x2_c00185{left:348.000000pt;}
.x3_c00185{left:361.200000pt;}
.x4_c00185{left:397.200000pt;}
.x5_c00185{left:434.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eeb8953118cbbca663f8c909.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_53fb2928f983a70dfd4ddb3e.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_2cef3ef8798f15cc7cf2b60c.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_14cd97e176a67a2bddeb2c80.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.ls2_c00186{letter-spacing:9.000000px;}
.ls1_c00186{letter-spacing:21.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-51.000000px;}
.ws4_c00186{word-spacing:-27.750000px;}
.ws5_c00186{word-spacing:-23.136000px;}
.ws1_c00186{word-spacing:-20.244000px;}
.ws2_c00186{word-spacing:-0.540000px;}
.ws6_c00186{word-spacing:0.000000px;}
.ws3_c00186{word-spacing:0.075000px;}
._54_c00186{margin-left:-70.464000px;}
._44_c00186{margin-left:-32.400000px;}
._46_c00186{margin-left:-31.080000px;}
._40_c00186{margin-left:-30.000000px;}
._2f_c00186{margin-left:-25.632000px;}
._4d_c00186{margin-left:-23.532000px;}
._55_c00186{margin-left:-21.984000px;}
._4b_c00186{margin-left:-18.900000px;}
._27_c00186{margin-left:-15.540000px;}
._24_c00186{margin-left:-14.244000px;}
._52_c00186{margin-left:-12.672000px;}
._3b_c00186{margin-left:-11.328000px;}
._39_c00186{margin-left:-9.816000px;}
._26_c00186{margin-left:-7.896000px;}
._49_c00186{margin-left:-6.552000px;}
._28_c00186{margin-left:-4.872000px;}
._4_c00186{margin-left:-3.168000px;}
._3_c00186{margin-left:-1.608000px;}
._d_c00186{width:1.968000px;}
._c_c00186{width:3.312000px;}
._12_c00186{width:4.584000px;}
._a_c00186{width:5.604000px;}
._0_c00186{width:6.912000px;}
._6_c00186{width:8.736000px;}
._8_c00186{width:10.164000px;}
._1b_c00186{width:11.496000px;}
._15_c00186{width:12.852000px;}
._2_c00186{width:14.880000px;}
._10_c00186{width:16.236000px;}
._7_c00186{width:17.556000px;}
._19_c00186{width:18.648000px;}
._16_c00186{width:21.840000px;}
._2b_c00186{width:23.064000px;}
._18_c00186{width:24.504000px;}
._36_c00186{width:25.548000px;}
._20_c00186{width:26.784000px;}
._1c_c00186{width:27.828000px;}
._f_c00186{width:29.988000px;}
._35_c00186{width:31.488000px;}
._b_c00186{width:32.508000px;}
._32_c00186{width:33.720000px;}
._4a_c00186{width:34.788000px;}
._11_c00186{width:36.012000px;}
._29_c00186{width:37.992000px;}
._17_c00186{width:39.540000px;}
._34_c00186{width:40.884000px;}
._37_c00186{width:42.804000px;}
._1a_c00186{width:44.604000px;}
._1e_c00186{width:45.900000px;}
._e_c00186{width:47.772000px;}
._25_c00186{width:49.644000px;}
._23_c00186{width:50.808000px;}
._2a_c00186{width:52.560000px;}
._1f_c00186{width:54.396000px;}
._5_c00186{width:55.512000px;}
._2e_c00186{width:57.744000px;}
._22_c00186{width:63.036000px;}
._33_c00186{width:64.296000px;}
._2d_c00186{width:66.912000px;}
._31_c00186{width:68.448000px;}
._1d_c00186{width:69.840000px;}
._3f_c00186{width:71.472000px;}
._21_c00186{width:73.464000px;}
._3d_c00186{width:77.616000px;}
._41_c00186{width:79.560000px;}
._13_c00186{width:82.116000px;}
._14_c00186{width:83.196000px;}
._2c_c00186{width:84.672000px;}
._9_c00186{width:86.856000px;}
._4f_c00186{width:92.160000px;}
._38_c00186{width:102.252000px;}
._47_c00186{width:114.132000px;}
._1_c00186{width:172.512000px;}
._3c_c00186{width:174.000000px;}
._53_c00186{width:189.600000px;}
._4e_c00186{width:195.960000px;}
._42_c00186{width:211.524000px;}
._43_c00186{width:213.732000px;}
._56_c00186{width:217.224000px;}
._51_c00186{width:224.448000px;}
._50_c00186{width:238.860000px;}
._48_c00186{width:305.160000px;}
._4c_c00186{width:326.760000px;}
._3e_c00186{width:461.616000px;}
._45_c00186{width:620.160000px;}
._30_c00186{width:739.200000px;}
._3a_c00186{width:971.388000px;}
.fc2_c00186{color:transparent;}
.fc1_c00186{color:rgb(128,128,128);}
.fc0_c00186{color:rgb(0,0,0);}
.fs5_c00186{font-size:48.000000px;}
.fs3_c00186{font-size:60.000000px;}
.fs4_c00186{font-size:75.000000px;}
.fs2_c00186{font-size:84.000000px;}
.fs0_c00186{font-size:96.000000px;}
.fs1_c00186{font-size:102.000000px;}
.y0_c00186{bottom:0.000000px;}
.y26_c00186{bottom:3.105000px;}
.y25_c00186{bottom:7.228369px;}
.y24_c00186{bottom:100.920000px;}
.y23_c00186{bottom:133.920000px;}
.y22_c00186{bottom:168.120000px;}
.y21_c00186{bottom:201.720000px;}
.y20_c00186{bottom:235.620000px;}
.y1f_c00186{bottom:267.870000px;}
.y1e_c00186{bottom:284.520000px;}
.y1d_c00186{bottom:302.970000px;}
.y1c_c00186{bottom:317.970000px;}
.y1b_c00186{bottom:340.770000px;}
.y1a_c00186{bottom:371.220000px;}
.y19_c00186{bottom:403.020000px;}
.y18_c00186{bottom:436.770000px;}
.y17_c00186{bottom:470.820000px;}
.y16_c00186{bottom:502.470000px;}
.y15_c00186{bottom:536.970000px;}
.y14_c00186{bottom:570.270000px;}
.y13_c00186{bottom:603.120000px;}
.y12_c00186{bottom:636.120000px;}
.y11_c00186{bottom:669.570000px;}
.y10_c00186{bottom:702.570000px;}
.yf_c00186{bottom:736.020000px;}
.ye_c00186{bottom:769.470000px;}
.yd_c00186{bottom:802.920000px;}
.yc_c00186{bottom:868.620000px;}
.yb_c00186{bottom:901.770000px;}
.ya_c00186{bottom:968.520000px;}
.y9_c00186{bottom:1001.070000px;}
.y8_c00186{bottom:1035.120000px;}
.y7_c00186{bottom:1068.420000px;}
.y6_c00186{bottom:1101.870000px;}
.y5_c00186{bottom:1134.720000px;}
.y4_c00186{bottom:1167.720000px;}
.y3_c00186{bottom:1200.870000px;}
.y2_c00186{bottom:1234.170000px;}
.y1_c00186{bottom:1267.620000px;}
.h6_c00186{height:13.200073px;}
.h7_c00186{height:43.804688px;}
.h5_c00186{height:78.600000px;}
.h4_c00186{height:98.314453px;}
.h3_c00186{height:106.353516px;}
.h2_c00186{height:121.546875px;}
.h0_c00186{height:1383.450000px;}
.h1_c00186{height:1383.750000px;}
.w2_c00186{width:104.875500px;}
.w0_c00186{width:878.025000px;}
.w1_c00186{width:878.250000px;}
.x0_c00186{left:0.000000px;}
.xf_c00186{left:59.100000px;}
.xc_c00186{left:60.150000px;}
.x11_c00186{left:62.400000px;}
.xa_c00186{left:63.450000px;}
.x7_c00186{left:65.100000px;}
.x3_c00186{left:66.150000px;}
.x8_c00186{left:67.200000px;}
.x6_c00186{left:68.250000px;}
.x5_c00186{left:69.300000px;}
.x4_c00186{left:70.500000px;}
.x2_c00186{left:71.550000px;}
.x10_c00186{left:79.650000px;}
.xe_c00186{left:91.500000px;}
.x9_c00186{left:118.500000px;}
.xb_c00186{left:120.600000px;}
.x1_c00186{left:122.850000px;}
.xd_c00186{left:125.850000px;}
.x13_c00186{left:390.826721px;}
.x12_c00186{left:583.500000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ls2_c00186{letter-spacing:8.000000pt;}
.ls1_c00186{letter-spacing:18.666667pt;}
.ws0_c00186{word-spacing:-45.333333pt;}
.ws4_c00186{word-spacing:-24.666667pt;}
.ws5_c00186{word-spacing:-20.565333pt;}
.ws1_c00186{word-spacing:-17.994667pt;}
.ws2_c00186{word-spacing:-0.480000pt;}
.ws6_c00186{word-spacing:0.000000pt;}
.ws3_c00186{word-spacing:0.066667pt;}
._54_c00186{margin-left:-62.634667pt;}
._44_c00186{margin-left:-28.800000pt;}
._46_c00186{margin-left:-27.626667pt;}
._40_c00186{margin-left:-26.666667pt;}
._2f_c00186{margin-left:-22.784000pt;}
._4d_c00186{margin-left:-20.917333pt;}
._55_c00186{margin-left:-19.541333pt;}
._4b_c00186{margin-left:-16.800000pt;}
._27_c00186{margin-left:-13.813333pt;}
._24_c00186{margin-left:-12.661333pt;}
._52_c00186{margin-left:-11.264000pt;}
._3b_c00186{margin-left:-10.069333pt;}
._39_c00186{margin-left:-8.725333pt;}
._26_c00186{margin-left:-7.018667pt;}
._49_c00186{margin-left:-5.824000pt;}
._28_c00186{margin-left:-4.330667pt;}
._4_c00186{margin-left:-2.816000pt;}
._3_c00186{margin-left:-1.429333pt;}
._d_c00186{width:1.749333pt;}
._c_c00186{width:2.944000pt;}
._12_c00186{width:4.074667pt;}
._a_c00186{width:4.981333pt;}
._0_c00186{width:6.144000pt;}
._6_c00186{width:7.765333pt;}
._8_c00186{width:9.034667pt;}
._1b_c00186{width:10.218667pt;}
._15_c00186{width:11.424000pt;}
._2_c00186{width:13.226667pt;}
._10_c00186{width:14.432000pt;}
._7_c00186{width:15.605333pt;}
._19_c00186{width:16.576000pt;}
._16_c00186{width:19.413333pt;}
._2b_c00186{width:20.501333pt;}
._18_c00186{width:21.781333pt;}
._36_c00186{width:22.709333pt;}
._20_c00186{width:23.808000pt;}
._1c_c00186{width:24.736000pt;}
._f_c00186{width:26.656000pt;}
._35_c00186{width:27.989333pt;}
._b_c00186{width:28.896000pt;}
._32_c00186{width:29.973333pt;}
._4a_c00186{width:30.922667pt;}
._11_c00186{width:32.010667pt;}
._29_c00186{width:33.770667pt;}
._17_c00186{width:35.146667pt;}
._34_c00186{width:36.341333pt;}
._37_c00186{width:38.048000pt;}
._1a_c00186{width:39.648000pt;}
._1e_c00186{width:40.800000pt;}
._e_c00186{width:42.464000pt;}
._25_c00186{width:44.128000pt;}
._23_c00186{width:45.162667pt;}
._2a_c00186{width:46.720000pt;}
._1f_c00186{width:48.352000pt;}
._5_c00186{width:49.344000pt;}
._2e_c00186{width:51.328000pt;}
._22_c00186{width:56.032000pt;}
._33_c00186{width:57.152000pt;}
._2d_c00186{width:59.477333pt;}
._31_c00186{width:60.842667pt;}
._1d_c00186{width:62.080000pt;}
._3f_c00186{width:63.530667pt;}
._21_c00186{width:65.301333pt;}
._3d_c00186{width:68.992000pt;}
._41_c00186{width:70.720000pt;}
._13_c00186{width:72.992000pt;}
._14_c00186{width:73.952000pt;}
._2c_c00186{width:75.264000pt;}
._9_c00186{width:77.205333pt;}
._4f_c00186{width:81.920000pt;}
._38_c00186{width:90.890667pt;}
._47_c00186{width:101.450667pt;}
._1_c00186{width:153.344000pt;}
._3c_c00186{width:154.666667pt;}
._53_c00186{width:168.533333pt;}
._4e_c00186{width:174.186667pt;}
._42_c00186{width:188.021333pt;}
._43_c00186{width:189.984000pt;}
._56_c00186{width:193.088000pt;}
._51_c00186{width:199.509333pt;}
._50_c00186{width:212.320000pt;}
._48_c00186{width:271.253333pt;}
._4c_c00186{width:290.453333pt;}
._3e_c00186{width:410.325333pt;}
._45_c00186{width:551.253333pt;}
._30_c00186{width:657.066667pt;}
._3a_c00186{width:863.456000pt;}
.fs5_c00186{font-size:42.666667pt;}
.fs3_c00186{font-size:53.333333pt;}
.fs4_c00186{font-size:66.666667pt;}
.fs2_c00186{font-size:74.666667pt;}
.fs0_c00186{font-size:85.333333pt;}
.fs1_c00186{font-size:90.666667pt;}
.y0_c00186{bottom:0.000000pt;}
.y26_c00186{bottom:2.760000pt;}
.y25_c00186{bottom:6.425217pt;}
.y24_c00186{bottom:89.706667pt;}
.y23_c00186{bottom:119.040000pt;}
.y22_c00186{bottom:149.440000pt;}
.y21_c00186{bottom:179.306667pt;}
.y20_c00186{bottom:209.440000pt;}
.y1f_c00186{bottom:238.106667pt;}
.y1e_c00186{bottom:252.906667pt;}
.y1d_c00186{bottom:269.306667pt;}
.y1c_c00186{bottom:282.640000pt;}
.y1b_c00186{bottom:302.906667pt;}
.y1a_c00186{bottom:329.973333pt;}
.y19_c00186{bottom:358.240000pt;}
.y18_c00186{bottom:388.240000pt;}
.y17_c00186{bottom:418.506667pt;}
.y16_c00186{bottom:446.640000pt;}
.y15_c00186{bottom:477.306667pt;}
.y14_c00186{bottom:506.906667pt;}
.y13_c00186{bottom:536.106667pt;}
.y12_c00186{bottom:565.440000pt;}
.y11_c00186{bottom:595.173333pt;}
.y10_c00186{bottom:624.506667pt;}
.yf_c00186{bottom:654.240000pt;}
.ye_c00186{bottom:683.973333pt;}
.yd_c00186{bottom:713.706667pt;}
.yc_c00186{bottom:772.106667pt;}
.yb_c00186{bottom:801.573333pt;}
.ya_c00186{bottom:860.906667pt;}
.y9_c00186{bottom:889.840000pt;}
.y8_c00186{bottom:920.106667pt;}
.y7_c00186{bottom:949.706667pt;}
.y6_c00186{bottom:979.440000pt;}
.y5_c00186{bottom:1008.640000pt;}
.y4_c00186{bottom:1037.973333pt;}
.y3_c00186{bottom:1067.440000pt;}
.y2_c00186{bottom:1097.040000pt;}
.y1_c00186{bottom:1126.773333pt;}
.h6_c00186{height:11.733399pt;}
.h7_c00186{height:38.937500pt;}
.h5_c00186{height:69.866667pt;}
.h4_c00186{height:87.390625pt;}
.h3_c00186{height:94.536458pt;}
.h2_c00186{height:108.041667pt;}
.h0_c00186{height:1229.733333pt;}
.h1_c00186{height:1230.000000pt;}
.w2_c00186{width:93.222667pt;}
.w0_c00186{width:780.466667pt;}
.w1_c00186{width:780.666667pt;}
.x0_c00186{left:0.000000pt;}
.xf_c00186{left:52.533333pt;}
.xc_c00186{left:53.466667pt;}
.x11_c00186{left:55.466667pt;}
.xa_c00186{left:56.400000pt;}
.x7_c00186{left:57.866667pt;}
.x3_c00186{left:58.800000pt;}
.x8_c00186{left:59.733333pt;}
.x6_c00186{left:60.666667pt;}
.x5_c00186{left:61.600000pt;}
.x4_c00186{left:62.666667pt;}
.x2_c00186{left:63.600000pt;}
.x10_c00186{left:70.800000pt;}
.xe_c00186{left:81.333333pt;}
.x9_c00186{left:105.333333pt;}
.xb_c00186{left:107.200000pt;}
.x1_c00186{left:109.200000pt;}
.xd_c00186{left:111.866667pt;}
.x13_c00186{left:347.401530pt;}
.x12_c00186{left:518.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7499cfbda77f047d018b51e5.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_e2af00278a1d9e976898c4b4.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_e7a5239065e6f1ea7c9a375c.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_dc5d0952d692c15cfd50fffd.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_c329d14ab4105a0e1cf48db3.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00187;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00187{font-family:ff7_c00187;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls2_c00187{letter-spacing:0.000000px;}
.ls3_c00187{letter-spacing:3.000000px;}
.ls1_c00187{letter-spacing:3.600000px;}
.ls0_c00187{letter-spacing:6.720000px;}
.ls4_c00187{letter-spacing:9.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00187{word-spacing:-51.000000px;}
.ws2_c00187{word-spacing:-23.967000px;}
.ws0_c00187{word-spacing:-23.136000px;}
.ws3_c00187{word-spacing:0.000000px;}
._42_c00187{margin-left:-36.426000px;}
._30_c00187{margin-left:-28.080000px;}
._41_c00187{margin-left:-26.883000px;}
._3c_c00187{margin-left:-25.692000px;}
._1a_c00187{margin-left:-20.424000px;}
._39_c00187{margin-left:-18.048000px;}
._1b_c00187{margin-left:-14.496000px;}
._5_c00187{margin-left:-12.288000px;}
._6_c00187{margin-left:-10.200000px;}
._1d_c00187{margin-left:-8.448000px;}
._1e_c00187{margin-left:-7.296000px;}
._3e_c00187{margin-left:-6.216000px;}
._18_c00187{margin-left:-4.992000px;}
._a_c00187{margin-left:-3.072000px;}
._b_c00187{margin-left:-1.344000px;}
._15_c00187{width:1.152000px;}
._8_c00187{width:2.208000px;}
._d_c00187{width:3.456000px;}
._7_c00187{width:4.608000px;}
._e_c00187{width:5.784000px;}
._2_c00187{width:6.816000px;}
._2c_c00187{width:7.824000px;}
._4_c00187{width:8.832000px;}
._3_c00187{width:10.080000px;}
._1_c00187{width:11.520000px;}
._13_c00187{width:13.440000px;}
._0_c00187{width:14.688000px;}
._9_c00187{width:16.416000px;}
._16_c00187{width:17.808000px;}
._28_c00187{width:19.632000px;}
._2b_c00187{width:20.784000px;}
._27_c00187{width:21.792000px;}
._2a_c00187{width:24.192000px;}
._22_c00187{width:25.584000px;}
._c_c00187{width:27.552000px;}
._12_c00187{width:29.184000px;}
._19_c00187{width:30.600000px;}
._10_c00187{width:32.448000px;}
._21_c00187{width:34.632000px;}
._f_c00187{width:36.288000px;}
._11_c00187{width:38.112000px;}
._1f_c00187{width:39.240000px;}
._14_c00187{width:40.704000px;}
._2e_c00187{width:41.784000px;}
._23_c00187{width:42.816000px;}
._1c_c00187{width:44.928000px;}
._2d_c00187{width:46.092000px;}
._17_c00187{width:47.328000px;}
._20_c00187{width:49.296000px;}
._3d_c00187{width:50.424000px;}
._34_c00187{width:51.552000px;}
._35_c00187{width:53.712000px;}
._29_c00187{width:55.896000px;}
._37_c00187{width:58.656000px;}
._2f_c00187{width:60.360000px;}
._26_c00187{width:67.200000px;}
._24_c00187{width:69.408000px;}
._36_c00187{width:75.504000px;}
._25_c00187{width:78.096000px;}
._3f_c00187{width:91.200000px;}
._38_c00187{width:108.192000px;}
._31_c00187{width:169.872000px;}
._33_c00187{width:178.560000px;}
._3a_c00187{width:224.832000px;}
._40_c00187{width:230.580000px;}
._32_c00187{width:234.912000px;}
._3b_c00187{width:592.848000px;}
.fc2_c00187{color:transparent;}
.fc1_c00187{color:rgb(128,128,128);}
.fc0_c00187{color:rgb(0,0,0);}
.fs7_c00187{font-size:30.000000px;}
.fs6_c00187{font-size:33.000000px;}
.fs3_c00187{font-size:36.000000px;}
.fs8_c00187{font-size:48.000000px;}
.fs5_c00187{font-size:60.000000px;}
.fs2_c00187{font-size:84.000000px;}
.fs4_c00187{font-size:87.000000px;}
.fs0_c00187{font-size:96.000000px;}
.fs1_c00187{font-size:102.000000px;}
.y0_c00187{bottom:0.000000px;}
.y2b_c00187{bottom:3.105000px;}
.y2a_c00187{bottom:7.228355px;}
.y24_c00187{bottom:83.235000px;}
.y23_c00187{bottom:118.485000px;}
.y22_c00187{bottom:154.185000px;}
.y29_c00187{bottom:170.685000px;}
.y28_c00187{bottom:183.285000px;}
.y21_c00187{bottom:188.235000px;}
.y20_c00187{bottom:221.985000px;}
.y1f_c00187{bottom:256.035000px;}
.y27_c00187{bottom:260.085000px;}
.y1e_c00187{bottom:286.785000px;}
.y1d_c00187{bottom:323.535000px;}
.y26_c00187{bottom:356.385000px;}
.y1c_c00187{bottom:357.435000px;}
.y25_c00187{bottom:365.535000px;}
.y1b_c00187{bottom:391.185000px;}
.y1a_c00187{bottom:424.935000px;}
.y19_c00187{bottom:458.685000px;}
.y18_c00187{bottom:492.285000px;}
.y17_c00187{bottom:526.035000px;}
.y16_c00187{bottom:561.135000px;}
.y15_c00187{bottom:593.985000px;}
.y14_c00187{bottom:627.285000px;}
.y13_c00187{bottom:660.735000px;}
.y12_c00187{bottom:694.785000px;}
.y11_c00187{bottom:728.535000px;}
.y10_c00187{bottom:761.985000px;}
.yf_c00187{bottom:795.435000px;}
.ye_c00187{bottom:829.185000px;}
.yd_c00187{bottom:862.635000px;}
.yc_c00187{bottom:895.935000px;}
.yb_c00187{bottom:928.785000px;}
.ya_c00187{bottom:962.085000px;}
.y9_c00187{bottom:995.235000px;}
.y8_c00187{bottom:1028.385000px;}
.y7_c00187{bottom:1061.385000px;}
.y6_c00187{bottom:1094.835000px;}
.y5_c00187{bottom:1128.135000px;}
.y4_c00187{bottom:1160.985000px;}
.y3_c00187{bottom:1194.285000px;}
.y2_c00187{bottom:1227.435000px;}
.y1_c00187{bottom:1260.135000px;}
.h7_c00187{height:13.200074px;}
.h6_c00187{height:32.520000px;}
.h8_c00187{height:43.804688px;}
.h5_c00187{height:62.880000px;}
.h3_c00187{height:101.825684px;}
.h4_c00187{height:110.151855px;}
.h2_c00187{height:121.546875px;}
.h1_c00187{height:1366.500000px;}
.h0_c00187{height:1366.725000px;}
.w2_c00187{width:104.875500px;}
.w0_c00187{width:852.675000px;}
.w1_c00187{width:852.750000px;}
.x0_c00187{left:0.000000px;}
.x8_c00187{left:24.000000px;}
.xb_c00187{left:56.700000px;}
.xc_c00187{left:69.150000px;}
.xa_c00187{left:77.400000px;}
.xe_c00187{left:190.650000px;}
.xd_c00187{left:195.150000px;}
.x1_c00187{left:239.400000px;}
.x2_c00187{left:241.650000px;}
.x3_c00187{left:243.300000px;}
.x4_c00187{left:244.350000px;}
.x5_c00187{left:245.400000px;}
.x7_c00187{left:246.600000px;}
.x6_c00187{left:296.700000px;}
.xf_c00187{left:378.151749px;}
.x9_c00187{left:674.250000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls2_c00187{letter-spacing:0.000000pt;}
.ls3_c00187{letter-spacing:2.666667pt;}
.ls1_c00187{letter-spacing:3.200000pt;}
.ls0_c00187{letter-spacing:5.973333pt;}
.ls4_c00187{letter-spacing:8.000000pt;}
.ws1_c00187{word-spacing:-45.333333pt;}
.ws2_c00187{word-spacing:-21.304000pt;}
.ws0_c00187{word-spacing:-20.565333pt;}
.ws3_c00187{word-spacing:0.000000pt;}
._42_c00187{margin-left:-32.378667pt;}
._30_c00187{margin-left:-24.960000pt;}
._41_c00187{margin-left:-23.896000pt;}
._3c_c00187{margin-left:-22.837333pt;}
._1a_c00187{margin-left:-18.154667pt;}
._39_c00187{margin-left:-16.042667pt;}
._1b_c00187{margin-left:-12.885333pt;}
._5_c00187{margin-left:-10.922667pt;}
._6_c00187{margin-left:-9.066667pt;}
._1d_c00187{margin-left:-7.509333pt;}
._1e_c00187{margin-left:-6.485333pt;}
._3e_c00187{margin-left:-5.525333pt;}
._18_c00187{margin-left:-4.437333pt;}
._a_c00187{margin-left:-2.730667pt;}
._b_c00187{margin-left:-1.194667pt;}
._15_c00187{width:1.024000pt;}
._8_c00187{width:1.962667pt;}
._d_c00187{width:3.072000pt;}
._7_c00187{width:4.096000pt;}
._e_c00187{width:5.141333pt;}
._2_c00187{width:6.058667pt;}
._2c_c00187{width:6.954667pt;}
._4_c00187{width:7.850667pt;}
._3_c00187{width:8.960000pt;}
._1_c00187{width:10.240000pt;}
._13_c00187{width:11.946667pt;}
._0_c00187{width:13.056000pt;}
._9_c00187{width:14.592000pt;}
._16_c00187{width:15.829333pt;}
._28_c00187{width:17.450667pt;}
._2b_c00187{width:18.474667pt;}
._27_c00187{width:19.370667pt;}
._2a_c00187{width:21.504000pt;}
._22_c00187{width:22.741333pt;}
._c_c00187{width:24.490667pt;}
._12_c00187{width:25.941333pt;}
._19_c00187{width:27.200000pt;}
._10_c00187{width:28.842667pt;}
._21_c00187{width:30.784000pt;}
._f_c00187{width:32.256000pt;}
._11_c00187{width:33.877333pt;}
._1f_c00187{width:34.880000pt;}
._14_c00187{width:36.181333pt;}
._2e_c00187{width:37.141333pt;}
._23_c00187{width:38.058667pt;}
._1c_c00187{width:39.936000pt;}
._2d_c00187{width:40.970667pt;}
._17_c00187{width:42.069333pt;}
._20_c00187{width:43.818667pt;}
._3d_c00187{width:44.821333pt;}
._34_c00187{width:45.824000pt;}
._35_c00187{width:47.744000pt;}
._29_c00187{width:49.685333pt;}
._37_c00187{width:52.138667pt;}
._2f_c00187{width:53.653333pt;}
._26_c00187{width:59.733333pt;}
._24_c00187{width:61.696000pt;}
._36_c00187{width:67.114667pt;}
._25_c00187{width:69.418667pt;}
._3f_c00187{width:81.066667pt;}
._38_c00187{width:96.170667pt;}
._31_c00187{width:150.997333pt;}
._33_c00187{width:158.720000pt;}
._3a_c00187{width:199.850667pt;}
._40_c00187{width:204.960000pt;}
._32_c00187{width:208.810667pt;}
._3b_c00187{width:526.976000pt;}
.fs7_c00187{font-size:26.666667pt;}
.fs6_c00187{font-size:29.333333pt;}
.fs3_c00187{font-size:32.000000pt;}
.fs8_c00187{font-size:42.666667pt;}
.fs5_c00187{font-size:53.333333pt;}
.fs2_c00187{font-size:74.666667pt;}
.fs4_c00187{font-size:77.333333pt;}
.fs0_c00187{font-size:85.333333pt;}
.fs1_c00187{font-size:90.666667pt;}
.y0_c00187{bottom:0.000000pt;}
.y2b_c00187{bottom:2.760000pt;}
.y2a_c00187{bottom:6.425204pt;}
.y24_c00187{bottom:73.986667pt;}
.y23_c00187{bottom:105.320000pt;}
.y22_c00187{bottom:137.053333pt;}
.y29_c00187{bottom:151.720000pt;}
.y28_c00187{bottom:162.920000pt;}
.y21_c00187{bottom:167.320000pt;}
.y20_c00187{bottom:197.320000pt;}
.y1f_c00187{bottom:227.586667pt;}
.y27_c00187{bottom:231.186667pt;}
.y1e_c00187{bottom:254.920000pt;}
.y1d_c00187{bottom:287.586667pt;}
.y26_c00187{bottom:316.786667pt;}
.y1c_c00187{bottom:317.720000pt;}
.y25_c00187{bottom:324.920000pt;}
.y1b_c00187{bottom:347.720000pt;}
.y1a_c00187{bottom:377.720000pt;}
.y19_c00187{bottom:407.720000pt;}
.y18_c00187{bottom:437.586667pt;}
.y17_c00187{bottom:467.586667pt;}
.y16_c00187{bottom:498.786667pt;}
.y15_c00187{bottom:527.986667pt;}
.y14_c00187{bottom:557.586667pt;}
.y13_c00187{bottom:587.320000pt;}
.y12_c00187{bottom:617.586667pt;}
.y11_c00187{bottom:647.586667pt;}
.y10_c00187{bottom:677.320000pt;}
.yf_c00187{bottom:707.053333pt;}
.ye_c00187{bottom:737.053333pt;}
.yd_c00187{bottom:766.786667pt;}
.yc_c00187{bottom:796.386667pt;}
.yb_c00187{bottom:825.586667pt;}
.ya_c00187{bottom:855.186667pt;}
.y9_c00187{bottom:884.653333pt;}
.y8_c00187{bottom:914.120000pt;}
.y7_c00187{bottom:943.453333pt;}
.y6_c00187{bottom:973.186667pt;}
.y5_c00187{bottom:1002.786667pt;}
.y4_c00187{bottom:1031.986667pt;}
.y3_c00187{bottom:1061.586667pt;}
.y2_c00187{bottom:1091.053333pt;}
.y1_c00187{bottom:1120.120000pt;}
.h7_c00187{height:11.733399pt;}
.h6_c00187{height:28.906667pt;}
.h8_c00187{height:38.937500pt;}
.h5_c00187{height:55.893333pt;}
.h3_c00187{height:90.511719pt;}
.h4_c00187{height:97.912760pt;}
.h2_c00187{height:108.041667pt;}
.h1_c00187{height:1214.666667pt;}
.h0_c00187{height:1214.866667pt;}
.w2_c00187{width:93.222667pt;}
.w0_c00187{width:757.933333pt;}
.w1_c00187{width:758.000000pt;}
.x0_c00187{left:0.000000pt;}
.x8_c00187{left:21.333333pt;}
.xb_c00187{left:50.400000pt;}
.xc_c00187{left:61.466667pt;}
.xa_c00187{left:68.800000pt;}
.xe_c00187{left:169.466667pt;}
.xd_c00187{left:173.466667pt;}
.x1_c00187{left:212.800000pt;}
.x2_c00187{left:214.800000pt;}
.x3_c00187{left:216.266667pt;}
.x4_c00187{left:217.200000pt;}
.x5_c00187{left:218.133333pt;}
.x7_c00187{left:219.200000pt;}
.x6_c00187{left:263.733333pt;}
.xf_c00187{left:336.134888pt;}
.x9_c00187{left:599.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_11780895696b190c6959c8c4.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_01615eb2ec10ec9e595cbf2d.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_2ba825cad2d4a22039911962.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls0_c00188{letter-spacing:0.000000px;}
.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:-20.244000px;}
.ws0_c00188{word-spacing:-11.730000px;}
.ws4_c00188{word-spacing:-1.008000px;}
.ws5_c00188{word-spacing:0.000000px;}
.ws3_c00188{word-spacing:0.888000px;}
.ws2_c00188{word-spacing:9.576000px;}
._35_c00188{margin-left:-88.512000px;}
._36_c00188{margin-left:-75.072000px;}
._31_c00188{margin-left:-57.600000px;}
._21_c00188{margin-left:-27.264000px;}
._40_c00188{margin-left:-24.960000px;}
._32_c00188{margin-left:-22.080000px;}
._3d_c00188{margin-left:-18.396000px;}
._2f_c00188{margin-left:-15.360000px;}
._12_c00188{margin-left:-14.274000px;}
._33_c00188{margin-left:-12.576000px;}
._24_c00188{margin-left:-9.888000px;}
._37_c00188{margin-left:-8.352000px;}
._20_c00188{margin-left:-6.528000px;}
._1e_c00188{margin-left:-4.800000px;}
._19_c00188{margin-left:-3.456000px;}
._6_c00188{margin-left:-2.016000px;}
._5_c00188{width:1.344000px;}
._4_c00188{width:2.880000px;}
._3_c00188{width:4.032000px;}
._14_c00188{width:5.088000px;}
._7_c00188{width:6.336000px;}
._1_c00188{width:7.872000px;}
._0_c00188{width:9.408000px;}
._1a_c00188{width:10.464000px;}
._11_c00188{width:12.000000px;}
._17_c00188{width:13.152000px;}
._13_c00188{width:15.072000px;}
._c_c00188{width:17.184000px;}
._3b_c00188{width:18.252000px;}
._1b_c00188{width:19.776000px;}
._15_c00188{width:20.832000px;}
._39_c00188{width:21.876000px;}
._3a_c00188{width:23.748000px;}
._3e_c00188{width:24.816000px;}
._16_c00188{width:26.208000px;}
._f_c00188{width:27.840000px;}
._48_c00188{width:29.184000px;}
._1d_c00188{width:30.528000px;}
._d_c00188{width:31.680000px;}
._29_c00188{width:33.312000px;}
._1c_c00188{width:34.752000px;}
._10_c00188{width:36.096000px;}
._b_c00188{width:37.920000px;}
._e_c00188{width:39.552000px;}
._18_c00188{width:40.800000px;}
._8_c00188{width:42.144000px;}
._9_c00188{width:43.584000px;}
._26_c00188{width:45.216000px;}
._2_c00188{width:47.040000px;}
._a_c00188{width:50.304000px;}
._2c_c00188{width:52.032000px;}
._2a_c00188{width:53.280000px;}
._3c_c00188{width:54.648000px;}
._2d_c00188{width:56.160000px;}
._2e_c00188{width:58.368000px;}
._27_c00188{width:60.864000px;}
._3f_c00188{width:63.336000px;}
._22_c00188{width:64.512000px;}
._28_c00188{width:67.008000px;}
._2b_c00188{width:69.312000px;}
._43_c00188{width:74.370000px;}
._23_c00188{width:83.040000px;}
._41_c00188{width:92.652000px;}
._25_c00188{width:105.696000px;}
._42_c00188{width:146.580000px;}
._47_c00188{width:173.808000px;}
._46_c00188{width:241.524000px;}
._34_c00188{width:341.088000px;}
._38_c00188{width:460.968000px;}
._45_c00188{width:529.152000px;}
._30_c00188{width:538.464000px;}
._49_c00188{width:620.352000px;}
._4a_c00188{width:696.024000px;}
._1f_c00188{width:958.080000px;}
._44_c00188{width:1070.016000px;}
.fc2_c00188{color:transparent;}
.fc1_c00188{color:rgb(128,128,128);}
.fc0_c00188{color:rgb(0,0,0);}
.fs3_c00188{font-size:48.000000px;}
.fs2_c00188{font-size:84.000000px;}
.fs0_c00188{font-size:96.000000px;}
.fs1_c00188{font-size:102.000000px;}
.y0_c00188{bottom:0.000000px;}
.y26_c00188{bottom:3.105000px;}
.y25_c00188{bottom:7.228369px;}
.y24_c00188{bottom:103.920000px;}
.y23_c00188{bottom:138.270000px;}
.y22_c00188{bottom:172.020000px;}
.y21_c00188{bottom:206.820000px;}
.y20_c00188{bottom:240.570000px;}
.y1f_c00188{bottom:274.320000px;}
.y1e_c00188{bottom:307.170000px;}
.y1d_c00188{bottom:343.470000px;}
.y1c_c00188{bottom:375.870000px;}
.y1b_c00188{bottom:409.320000px;}
.y1a_c00188{bottom:444.720000px;}
.y19_c00188{bottom:477.570000px;}
.y18_c00188{bottom:511.020000px;}
.y17_c00188{bottom:544.620000px;}
.y16_c00188{bottom:578.370000px;}
.y15_c00188{bottom:611.520000px;}
.y14_c00188{bottom:643.920000px;}
.y13_c00188{bottom:677.970000px;}
.y12_c00188{bottom:711.120000px;}
.y11_c00188{bottom:743.520000px;}
.y10_c00188{bottom:778.170000px;}
.yf_c00188{bottom:811.620000px;}
.ye_c00188{bottom:845.670000px;}
.yd_c00188{bottom:878.220000px;}
.yc_c00188{bottom:911.520000px;}
.yb_c00188{bottom:944.370000px;}
.ya_c00188{bottom:978.120000px;}
.y9_c00188{bottom:1011.120000px;}
.y8_c00188{bottom:1044.570000px;}
.y7_c00188{bottom:1078.020000px;}
.y6_c00188{bottom:1111.620000px;}
.y5_c00188{bottom:1144.770000px;}
.y4_c00188{bottom:1177.920000px;}
.y3_c00188{bottom:1210.920000px;}
.y2_c00188{bottom:1244.670000px;}
.y1_c00188{bottom:1277.670000px;}
.h5_c00188{height:13.200073px;}
.h6_c00188{height:43.804688px;}
.h3_c00188{height:98.314453px;}
.h4_c00188{height:106.353516px;}
.h2_c00188{height:121.546875px;}
.h0_c00188{height:1383.450000px;}
.h1_c00188{height:1383.750000px;}
.w2_c00188{width:104.875500px;}
.w0_c00188{width:878.025000px;}
.w1_c00188{width:878.250000px;}
.x0_c00188{left:0.000000px;}
.x8_c00188{left:52.650000px;}
.x9_c00188{left:53.700000px;}
.x6_c00188{left:55.350000px;}
.x5_c00188{left:56.400000px;}
.x3_c00188{left:58.050000px;}
.x2_c00188{left:59.100000px;}
.x1_c00188{left:60.300000px;}
.xb_c00188{left:99.150000px;}
.xa_c00188{left:103.950000px;}
.x7_c00188{left:105.600000px;}
.x4_c00188{left:106.650000px;}
.xc_c00188{left:390.826721px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws1_c00188{word-spacing:-17.994667pt;}
.ws0_c00188{word-spacing:-10.426667pt;}
.ws4_c00188{word-spacing:-0.896000pt;}
.ws5_c00188{word-spacing:0.000000pt;}
.ws3_c00188{word-spacing:0.789333pt;}
.ws2_c00188{word-spacing:8.512000pt;}
._35_c00188{margin-left:-78.677333pt;}
._36_c00188{margin-left:-66.730667pt;}
._31_c00188{margin-left:-51.200000pt;}
._21_c00188{margin-left:-24.234667pt;}
._40_c00188{margin-left:-22.186667pt;}
._32_c00188{margin-left:-19.626667pt;}
._3d_c00188{margin-left:-16.352000pt;}
._2f_c00188{margin-left:-13.653333pt;}
._12_c00188{margin-left:-12.688000pt;}
._33_c00188{margin-left:-11.178667pt;}
._24_c00188{margin-left:-8.789333pt;}
._37_c00188{margin-left:-7.424000pt;}
._20_c00188{margin-left:-5.802667pt;}
._1e_c00188{margin-left:-4.266667pt;}
._19_c00188{margin-left:-3.072000pt;}
._6_c00188{margin-left:-1.792000pt;}
._5_c00188{width:1.194667pt;}
._4_c00188{width:2.560000pt;}
._3_c00188{width:3.584000pt;}
._14_c00188{width:4.522667pt;}
._7_c00188{width:5.632000pt;}
._1_c00188{width:6.997333pt;}
._0_c00188{width:8.362667pt;}
._1a_c00188{width:9.301333pt;}
._11_c00188{width:10.666667pt;}
._17_c00188{width:11.690667pt;}
._13_c00188{width:13.397333pt;}
._c_c00188{width:15.274667pt;}
._3b_c00188{width:16.224000pt;}
._1b_c00188{width:17.578667pt;}
._15_c00188{width:18.517333pt;}
._39_c00188{width:19.445333pt;}
._3a_c00188{width:21.109333pt;}
._3e_c00188{width:22.058667pt;}
._16_c00188{width:23.296000pt;}
._f_c00188{width:24.746667pt;}
._48_c00188{width:25.941333pt;}
._1d_c00188{width:27.136000pt;}
._d_c00188{width:28.160000pt;}
._29_c00188{width:29.610667pt;}
._1c_c00188{width:30.890667pt;}
._10_c00188{width:32.085333pt;}
._b_c00188{width:33.706667pt;}
._e_c00188{width:35.157333pt;}
._18_c00188{width:36.266667pt;}
._8_c00188{width:37.461333pt;}
._9_c00188{width:38.741333pt;}
._26_c00188{width:40.192000pt;}
._2_c00188{width:41.813333pt;}
._a_c00188{width:44.714667pt;}
._2c_c00188{width:46.250667pt;}
._2a_c00188{width:47.360000pt;}
._3c_c00188{width:48.576000pt;}
._2d_c00188{width:49.920000pt;}
._2e_c00188{width:51.882667pt;}
._27_c00188{width:54.101333pt;}
._3f_c00188{width:56.298667pt;}
._22_c00188{width:57.344000pt;}
._28_c00188{width:59.562667pt;}
._2b_c00188{width:61.610667pt;}
._43_c00188{width:66.106667pt;}
._23_c00188{width:73.813333pt;}
._41_c00188{width:82.357333pt;}
._25_c00188{width:93.952000pt;}
._42_c00188{width:130.293333pt;}
._47_c00188{width:154.496000pt;}
._46_c00188{width:214.688000pt;}
._34_c00188{width:303.189333pt;}
._38_c00188{width:409.749333pt;}
._45_c00188{width:470.357333pt;}
._30_c00188{width:478.634667pt;}
._49_c00188{width:551.424000pt;}
._4a_c00188{width:618.688000pt;}
._1f_c00188{width:851.626667pt;}
._44_c00188{width:951.125333pt;}
.fs3_c00188{font-size:42.666667pt;}
.fs2_c00188{font-size:74.666667pt;}
.fs0_c00188{font-size:85.333333pt;}
.fs1_c00188{font-size:90.666667pt;}
.y0_c00188{bottom:0.000000pt;}
.y26_c00188{bottom:2.760000pt;}
.y25_c00188{bottom:6.425217pt;}
.y24_c00188{bottom:92.373333pt;}
.y23_c00188{bottom:122.906667pt;}
.y22_c00188{bottom:152.906667pt;}
.y21_c00188{bottom:183.840000pt;}
.y20_c00188{bottom:213.840000pt;}
.y1f_c00188{bottom:243.840000pt;}
.y1e_c00188{bottom:273.040000pt;}
.y1d_c00188{bottom:305.306667pt;}
.y1c_c00188{bottom:334.106667pt;}
.y1b_c00188{bottom:363.840000pt;}
.y1a_c00188{bottom:395.306667pt;}
.y19_c00188{bottom:424.506667pt;}
.y18_c00188{bottom:454.240000pt;}
.y17_c00188{bottom:484.106667pt;}
.y16_c00188{bottom:514.106667pt;}
.y15_c00188{bottom:543.573333pt;}
.y14_c00188{bottom:572.373333pt;}
.y13_c00188{bottom:602.640000pt;}
.y12_c00188{bottom:632.106667pt;}
.y11_c00188{bottom:660.906667pt;}
.y10_c00188{bottom:691.706667pt;}
.yf_c00188{bottom:721.440000pt;}
.ye_c00188{bottom:751.706667pt;}
.yd_c00188{bottom:780.640000pt;}
.yc_c00188{bottom:810.240000pt;}
.yb_c00188{bottom:839.440000pt;}
.ya_c00188{bottom:869.440000pt;}
.y9_c00188{bottom:898.773333pt;}
.y8_c00188{bottom:928.506667pt;}
.y7_c00188{bottom:958.240000pt;}
.y6_c00188{bottom:988.106667pt;}
.y5_c00188{bottom:1017.573333pt;}
.y4_c00188{bottom:1047.040000pt;}
.y3_c00188{bottom:1076.373333pt;}
.y2_c00188{bottom:1106.373333pt;}
.y1_c00188{bottom:1135.706667pt;}
.h5_c00188{height:11.733399pt;}
.h6_c00188{height:38.937500pt;}
.h3_c00188{height:87.390625pt;}
.h4_c00188{height:94.536458pt;}
.h2_c00188{height:108.041667pt;}
.h0_c00188{height:1229.733333pt;}
.h1_c00188{height:1230.000000pt;}
.w2_c00188{width:93.222667pt;}
.w0_c00188{width:780.466667pt;}
.w1_c00188{width:780.666667pt;}
.x0_c00188{left:0.000000pt;}
.x8_c00188{left:46.800000pt;}
.x9_c00188{left:47.733333pt;}
.x6_c00188{left:49.200000pt;}
.x5_c00188{left:50.133333pt;}
.x3_c00188{left:51.600000pt;}
.x2_c00188{left:52.533333pt;}
.x1_c00188{left:53.600000pt;}
.xb_c00188{left:88.133333pt;}
.xa_c00188{left:92.400000pt;}
.x7_c00188{left:93.866667pt;}
.x4_c00188{left:94.800000pt;}
.xc_c00188{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5038ab96affb94e5220c118.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_d4ef463aa63e5736801a8ecb.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_db06c49901320b4341b5477a.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;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_c00189;src:url('chunks/assets/font_57b6b55cebff43e9aa8f6ac1.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00189;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00189{font-family:ff6_c00189;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls4_c00189{letter-spacing:0.000000px;}
.ls3_c00189{letter-spacing:1.660800px;}
.ls2_c00189{letter-spacing:5.760000px;}
.ls1_c00189{letter-spacing:13.092000px;}
.ls0_c00189{letter-spacing:16.056000px;}
.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;}
}
.ws1_c00189{word-spacing:-55.044000px;}
.ws2_c00189{word-spacing:-51.000000px;}
.ws0_c00189{word-spacing:-20.244000px;}
.ws4_c00189{word-spacing:0.000000px;}
.ws3_c00189{word-spacing:0.696000px;}
._46_c00189{margin-left:-48.420000px;}
._44_c00189{margin-left:-29.796000px;}
._3a_c00189{margin-left:-27.504000px;}
._45_c00189{margin-left:-20.760000px;}
._2b_c00189{margin-left:-18.816000px;}
._2c_c00189{margin-left:-16.032000px;}
._2d_c00189{margin-left:-13.824000px;}
._1f_c00189{margin-left:-11.844000px;}
._37_c00189{margin-left:-9.312000px;}
._36_c00189{margin-left:-7.776000px;}
._38_c00189{margin-left:-5.184000px;}
._22_c00189{margin-left:-3.480000px;}
._26_c00189{margin-left:-2.304000px;}
._3c_c00189{margin-left:-1.164000px;}
._10_c00189{width:1.512000px;}
._c_c00189{width:2.520000px;}
._6_c00189{width:3.696000px;}
._2_c00189{width:4.788000px;}
._9_c00189{width:6.048000px;}
._1_c00189{width:7.140000px;}
._b_c00189{width:8.232000px;}
._0_c00189{width:9.324000px;}
._13_c00189{width:10.416000px;}
._3_c00189{width:11.424000px;}
._a_c00189{width:12.516000px;}
._1b_c00189{width:14.328000px;}
._8_c00189{width:15.792000px;}
._24_c00189{width:17.448000px;}
._27_c00189{width:18.984000px;}
._43_c00189{width:20.316000px;}
._29_c00189{width:22.152000px;}
._35_c00189{width:24.324000px;}
._23_c00189{width:26.388000px;}
._25_c00189{width:27.552000px;}
._19_c00189{width:29.232000px;}
._21_c00189{width:30.408000px;}
._31_c00189{width:31.584000px;}
._5_c00189{width:32.676000px;}
._3e_c00189{width:34.680000px;}
._7_c00189{width:35.784000px;}
._34_c00189{width:36.900000px;}
._28_c00189{width:38.352000px;}
._30_c00189{width:39.888000px;}
._4_c00189{width:40.992000px;}
._2e_c00189{width:42.000000px;}
._2a_c00189{width:43.380000px;}
._2f_c00189{width:44.472000px;}
._3b_c00189{width:45.756000px;}
._12_c00189{width:47.628000px;}
._15_c00189{width:48.804000px;}
._3d_c00189{width:50.100000px;}
._18_c00189{width:52.248000px;}
._17_c00189{width:54.096000px;}
._14_c00189{width:56.532000px;}
._41_c00189{width:58.248000px;}
._42_c00189{width:63.372000px;}
._39_c00189{width:65.592000px;}
._e_c00189{width:66.840000px;}
._1a_c00189{width:68.040000px;}
._11_c00189{width:71.568000px;}
._20_c00189{width:74.004000px;}
._3f_c00189{width:79.812000px;}
._1e_c00189{width:82.656000px;}
._f_c00189{width:88.980000px;}
._1d_c00189{width:91.476000px;}
._1c_c00189{width:92.904000px;}
._d_c00189{width:95.676000px;}
._47_c00189{width:161.328000px;}
._33_c00189{width:180.936000px;}
._40_c00189{width:271.464000px;}
._32_c00189{width:282.384000px;}
._16_c00189{width:429.996000px;}
.fc2_c00189{color:transparent;}
.fc1_c00189{color:rgb(128,128,128);}
.fc0_c00189{color:rgb(0,0,0);}
.fs5_c00189{font-size:48.000000px;}
.fs4_c00189{font-size:76.800000px;}
.fs0_c00189{font-size:84.000000px;}
.fs1_c00189{font-size:96.000000px;}
.fs2_c00189{font-size:99.000000px;}
.fs3_c00189{font-size:102.000000px;}
.y0_c00189{bottom:0.000000px;}
.y26_c00189{bottom:3.105000px;}
.y25_c00189{bottom:7.228357px;}
.y24_c00189{bottom:95.880000px;}
.y23_c00189{bottom:129.030000px;}
.y22_c00189{bottom:163.380000px;}
.y21_c00189{bottom:197.430000px;}
.y20_c00189{bottom:231.930000px;}
.y1f_c00189{bottom:266.580000px;}
.y1e_c00189{bottom:300.480000px;}
.y1d_c00189{bottom:334.830000px;}
.y1c_c00189{bottom:368.580000px;}
.y1b_c00189{bottom:402.930000px;}
.y1a_c00189{bottom:437.130000px;}
.y19_c00189{bottom:471.180000px;}
.y18_c00189{bottom:505.230000px;}
.y17_c00189{bottom:539.280000px;}
.y16_c00189{bottom:573.180000px;}
.y15_c00189{bottom:606.930000px;}
.y14_c00189{bottom:641.580000px;}
.y13_c00189{bottom:674.730000px;}
.y12_c00189{bottom:708.180000px;}
.y11_c00189{bottom:742.530000px;}
.y10_c00189{bottom:776.280000px;}
.yf_c00189{bottom:810.030000px;}
.ye_c00189{bottom:843.780000px;}
.yd_c00189{bottom:877.830000px;}
.yc_c00189{bottom:911.280000px;}
.yb_c00189{bottom:944.730000px;}
.ya_c00189{bottom:977.130000px;}
.y9_c00189{bottom:1011.180000px;}
.y8_c00189{bottom:1044.930000px;}
.y7_c00189{bottom:1077.030000px;}
.y6_c00189{bottom:1111.830000px;}
.y5_c00189{bottom:1145.430000px;}
.y4_c00189{bottom:1178.880000px;}
.y3_c00189{bottom:1212.030000px;}
.y2_c00189{bottom:1245.780000px;}
.y1_c00189{bottom:1279.080000px;}
.h5_c00189{height:13.200074px;}
.h6_c00189{height:43.804688px;}
.h4_c00189{height:98.314453px;}
.h2_c00189{height:106.353516px;}
.h3_c00189{height:121.546875px;}
.h0_c00189{height:1382.700000px;}
.h1_c00189{height:1383.000000px;}
.w2_c00189{width:104.875500px;}
.w0_c00189{width:863.175000px;}
.w1_c00189{width:863.250000px;}
.x0_c00189{left:0.000000px;}
.x6_c00189{left:166.650000px;}
.x9_c00189{left:171.450000px;}
.x5_c00189{left:258.900000px;}
.x2_c00189{left:259.950000px;}
.x3_c00189{left:261.000000px;}
.x7_c00189{left:262.200000px;}
.x8_c00189{left:263.250000px;}
.x4_c00189{left:324.300000px;}
.xb_c00189{left:383.401749px;}
.x1_c00189{left:409.500000px;}
.xa_c00189{left:689.400000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls4_c00189{letter-spacing:0.000000pt;}
.ls3_c00189{letter-spacing:1.476267pt;}
.ls2_c00189{letter-spacing:5.120000pt;}
.ls1_c00189{letter-spacing:11.637333pt;}
.ls0_c00189{letter-spacing:14.272000pt;}
.ws1_c00189{word-spacing:-48.928000pt;}
.ws2_c00189{word-spacing:-45.333333pt;}
.ws0_c00189{word-spacing:-17.994667pt;}
.ws4_c00189{word-spacing:0.000000pt;}
.ws3_c00189{word-spacing:0.618667pt;}
._46_c00189{margin-left:-43.040000pt;}
._44_c00189{margin-left:-26.485333pt;}
._3a_c00189{margin-left:-24.448000pt;}
._45_c00189{margin-left:-18.453333pt;}
._2b_c00189{margin-left:-16.725333pt;}
._2c_c00189{margin-left:-14.250667pt;}
._2d_c00189{margin-left:-12.288000pt;}
._1f_c00189{margin-left:-10.528000pt;}
._37_c00189{margin-left:-8.277333pt;}
._36_c00189{margin-left:-6.912000pt;}
._38_c00189{margin-left:-4.608000pt;}
._22_c00189{margin-left:-3.093333pt;}
._26_c00189{margin-left:-2.048000pt;}
._3c_c00189{margin-left:-1.034667pt;}
._10_c00189{width:1.344000pt;}
._c_c00189{width:2.240000pt;}
._6_c00189{width:3.285333pt;}
._2_c00189{width:4.256000pt;}
._9_c00189{width:5.376000pt;}
._1_c00189{width:6.346667pt;}
._b_c00189{width:7.317333pt;}
._0_c00189{width:8.288000pt;}
._13_c00189{width:9.258667pt;}
._3_c00189{width:10.154667pt;}
._a_c00189{width:11.125333pt;}
._1b_c00189{width:12.736000pt;}
._8_c00189{width:14.037333pt;}
._24_c00189{width:15.509333pt;}
._27_c00189{width:16.874667pt;}
._43_c00189{width:18.058667pt;}
._29_c00189{width:19.690667pt;}
._35_c00189{width:21.621333pt;}
._23_c00189{width:23.456000pt;}
._25_c00189{width:24.490667pt;}
._19_c00189{width:25.984000pt;}
._21_c00189{width:27.029333pt;}
._31_c00189{width:28.074667pt;}
._5_c00189{width:29.045333pt;}
._3e_c00189{width:30.826667pt;}
._7_c00189{width:31.808000pt;}
._34_c00189{width:32.800000pt;}
._28_c00189{width:34.090667pt;}
._30_c00189{width:35.456000pt;}
._4_c00189{width:36.437333pt;}
._2e_c00189{width:37.333333pt;}
._2a_c00189{width:38.560000pt;}
._2f_c00189{width:39.530667pt;}
._3b_c00189{width:40.672000pt;}
._12_c00189{width:42.336000pt;}
._15_c00189{width:43.381333pt;}
._3d_c00189{width:44.533333pt;}
._18_c00189{width:46.442667pt;}
._17_c00189{width:48.085333pt;}
._14_c00189{width:50.250667pt;}
._41_c00189{width:51.776000pt;}
._42_c00189{width:56.330667pt;}
._39_c00189{width:58.304000pt;}
._e_c00189{width:59.413333pt;}
._1a_c00189{width:60.480000pt;}
._11_c00189{width:63.616000pt;}
._20_c00189{width:65.781333pt;}
._3f_c00189{width:70.944000pt;}
._1e_c00189{width:73.472000pt;}
._f_c00189{width:79.093333pt;}
._1d_c00189{width:81.312000pt;}
._1c_c00189{width:82.581333pt;}
._d_c00189{width:85.045333pt;}
._47_c00189{width:143.402667pt;}
._33_c00189{width:160.832000pt;}
._40_c00189{width:241.301333pt;}
._32_c00189{width:251.008000pt;}
._16_c00189{width:382.218667pt;}
.fs5_c00189{font-size:42.666667pt;}
.fs4_c00189{font-size:68.266667pt;}
.fs0_c00189{font-size:74.666667pt;}
.fs1_c00189{font-size:85.333333pt;}
.fs2_c00189{font-size:88.000000pt;}
.fs3_c00189{font-size:90.666667pt;}
.y0_c00189{bottom:0.000000pt;}
.y26_c00189{bottom:2.760000pt;}
.y25_c00189{bottom:6.425206pt;}
.y24_c00189{bottom:85.226667pt;}
.y23_c00189{bottom:114.693333pt;}
.y22_c00189{bottom:145.226667pt;}
.y21_c00189{bottom:175.493333pt;}
.y20_c00189{bottom:206.160000pt;}
.y1f_c00189{bottom:236.960000pt;}
.y1e_c00189{bottom:267.093333pt;}
.y1d_c00189{bottom:297.626667pt;}
.y1c_c00189{bottom:327.626667pt;}
.y1b_c00189{bottom:358.160000pt;}
.y1a_c00189{bottom:388.560000pt;}
.y19_c00189{bottom:418.826667pt;}
.y18_c00189{bottom:449.093333pt;}
.y17_c00189{bottom:479.360000pt;}
.y16_c00189{bottom:509.493333pt;}
.y15_c00189{bottom:539.493333pt;}
.y14_c00189{bottom:570.293333pt;}
.y13_c00189{bottom:599.760000pt;}
.y12_c00189{bottom:629.493333pt;}
.y11_c00189{bottom:660.026667pt;}
.y10_c00189{bottom:690.026667pt;}
.yf_c00189{bottom:720.026667pt;}
.ye_c00189{bottom:750.026667pt;}
.yd_c00189{bottom:780.293333pt;}
.yc_c00189{bottom:810.026667pt;}
.yb_c00189{bottom:839.760000pt;}
.ya_c00189{bottom:868.560000pt;}
.y9_c00189{bottom:898.826667pt;}
.y8_c00189{bottom:928.826667pt;}
.y7_c00189{bottom:957.360000pt;}
.y6_c00189{bottom:988.293333pt;}
.y5_c00189{bottom:1018.160000pt;}
.y4_c00189{bottom:1047.893333pt;}
.y3_c00189{bottom:1077.360000pt;}
.y2_c00189{bottom:1107.360000pt;}
.y1_c00189{bottom:1136.960000pt;}
.h5_c00189{height:11.733399pt;}
.h6_c00189{height:38.937500pt;}
.h4_c00189{height:87.390625pt;}
.h2_c00189{height:94.536458pt;}
.h3_c00189{height:108.041667pt;}
.h0_c00189{height:1229.066667pt;}
.h1_c00189{height:1229.333333pt;}
.w2_c00189{width:93.222667pt;}
.w0_c00189{width:767.266667pt;}
.w1_c00189{width:767.333333pt;}
.x0_c00189{left:0.000000pt;}
.x6_c00189{left:148.133333pt;}
.x9_c00189{left:152.400000pt;}
.x5_c00189{left:230.133333pt;}
.x2_c00189{left:231.066667pt;}
.x3_c00189{left:232.000000pt;}
.x7_c00189{left:233.066667pt;}
.x8_c00189{left:234.000000pt;}
.x4_c00189{left:288.266667pt;}
.xb_c00189{left:340.801554pt;}
.x1_c00189{left:364.000000pt;}
.xa_c00189{left:612.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_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_ac43b032700fd8add7fde026.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_c5c3ed1956a84cb34f45086c.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls3_c00190{letter-spacing:0.000000px;}
.ls2_c00190{letter-spacing:7.200000px;}
.ls1_c00190{letter-spacing:24.600000px;}
.ls0_c00190{letter-spacing:196.680000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-23.136000px;}
.ws1_c00190{word-spacing:-22.413000px;}
.ws2_c00190{word-spacing:0.000000px;}
._39_c00190{margin-left:-21.648000px;}
._30_c00190{margin-left:-16.896000px;}
._31_c00190{margin-left:-13.728000px;}
._24_c00190{margin-left:-11.136000px;}
._28_c00190{margin-left:-6.624000px;}
._21_c00190{margin-left:-5.280000px;}
._12_c00190{margin-left:-3.168000px;}
._10_c00190{margin-left:-2.112000px;}
._3_c00190{margin-left:-1.056000px;}
._1_c00190{width:1.440000px;}
._9_c00190{width:2.592000px;}
._0_c00190{width:3.744000px;}
._a_c00190{width:5.280000px;}
._8_c00190{width:6.528000px;}
._18_c00190{width:7.680000px;}
._20_c00190{width:8.832000px;}
._2f_c00190{width:9.888000px;}
._7_c00190{width:10.944000px;}
._37_c00190{width:12.000000px;}
._6_c00190{width:13.056000px;}
._5_c00190{width:14.496000px;}
._b_c00190{width:15.744000px;}
._19_c00190{width:17.760000px;}
._1f_c00190{width:19.776000px;}
._d_c00190{width:21.600000px;}
._32_c00190{width:24.192000px;}
._c_c00190{width:25.728000px;}
._1a_c00190{width:27.552000px;}
._34_c00190{width:28.800000px;}
._14_c00190{width:29.856000px;}
._27_c00190{width:31.104000px;}
._4_c00190{width:32.448000px;}
._13_c00190{width:33.984000px;}
._2a_c00190{width:35.040000px;}
._e_c00190{width:36.480000px;}
._f_c00190{width:38.112000px;}
._1c_c00190{width:39.264000px;}
._2_c00190{width:40.704000px;}
._25_c00190{width:42.144000px;}
._17_c00190{width:43.680000px;}
._1e_c00190{width:45.600000px;}
._11_c00190{width:47.040000px;}
._16_c00190{width:49.824000px;}
._15_c00190{width:51.552000px;}
._23_c00190{width:54.144000px;}
._1b_c00190{width:55.872000px;}
._33_c00190{width:60.576000px;}
._1d_c00190{width:69.312000px;}
._35_c00190{width:70.368000px;}
._29_c00190{width:72.960000px;}
._38_c00190{width:76.128000px;}
._2b_c00190{width:78.240000px;}
._2d_c00190{width:82.848000px;}
._22_c00190{width:94.368000px;}
._36_c00190{width:112.416000px;}
._26_c00190{width:122.688000px;}
._2e_c00190{width:174.624000px;}
._2c_c00190{width:731.328000px;}
.fc2_c00190{color:transparent;}
.fc1_c00190{color:rgb(128,128,128);}
.fc0_c00190{color:rgb(0,0,0);}
.fs3_c00190{font-size:48.000000px;}
.fs2_c00190{font-size:93.000000px;}
.fs0_c00190{font-size:96.000000px;}
.fs1_c00190{font-size:102.000000px;}
.y0_c00190{bottom:0.000000px;}
.y27_c00190{bottom:3.105000px;}
.y26_c00190{bottom:7.228369px;}
.y25_c00190{bottom:105.870000px;}
.y24_c00190{bottom:177.120000px;}
.y23_c00190{bottom:208.920000px;}
.y22_c00190{bottom:243.720000px;}
.y21_c00190{bottom:277.320000px;}
.y20_c00190{bottom:311.520000px;}
.y1f_c00190{bottom:344.970000px;}
.y1e_c00190{bottom:378.720000px;}
.y1d_c00190{bottom:412.770000px;}
.y1c_c00190{bottom:446.520000px;}
.y1b_c00190{bottom:479.820000px;}
.y1a_c00190{bottom:513.720000px;}
.y19_c00190{bottom:546.420000px;}
.y18_c00190{bottom:579.720000px;}
.y17_c00190{bottom:613.620000px;}
.y16_c00190{bottom:646.020000px;}
.y15_c00190{bottom:679.770000px;}
.y14_c00190{bottom:713.070000px;}
.y13_c00190{bottom:746.820000px;}
.y12_c00190{bottom:780.870000px;}
.y1_c00190{bottom:798.120000px;}
.y11_c00190{bottom:812.970000px;}
.y10_c00190{bottom:846.720000px;}
.yf_c00190{bottom:879.870000px;}
.ye_c00190{bottom:913.620000px;}
.yd_c00190{bottom:946.920000px;}
.yc_c00190{bottom:980.070000px;}
.yb_c00190{bottom:1013.520000px;}
.ya_c00190{bottom:1046.970000px;}
.y9_c00190{bottom:1080.270000px;}
.y8_c00190{bottom:1114.020000px;}
.y7_c00190{bottom:1146.870000px;}
.y6_c00190{bottom:1180.920000px;}
.y5_c00190{bottom:1214.220000px;}
.y4_c00190{bottom:1247.370000px;}
.y3_c00190{bottom:1281.420000px;}
.y2_c00190{bottom:1306.770000px;}
.h4_c00190{height:13.200073px;}
.h5_c00190{height:43.804688px;}
.h3_c00190{height:117.748535px;}
.h2_c00190{height:121.546875px;}
.h0_c00190{height:1383.450000px;}
.h1_c00190{height:1383.750000px;}
.w2_c00190{width:104.875500px;}
.w0_c00190{width:878.025000px;}
.w1_c00190{width:878.250000px;}
.x0_c00190{left:0.000000px;}
.x9_c00190{left:53.700000px;}
.xa_c00190{left:54.750000px;}
.x7_c00190{left:55.800000px;}
.x5_c00190{left:57.450000px;}
.x4_c00190{left:58.500000px;}
.x3_c00190{left:59.700000px;}
.x8_c00190{left:104.400000px;}
.x6_c00190{left:201.150000px;}
.xc_c00190{left:390.826721px;}
.x2_c00190{left:498.150000px;}
.xb_c00190{left:586.200000px;}
.x1_c00190{left:641.250000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls3_c00190{letter-spacing:0.000000pt;}
.ls2_c00190{letter-spacing:6.400000pt;}
.ls1_c00190{letter-spacing:21.866667pt;}
.ls0_c00190{letter-spacing:174.826667pt;}
.ws0_c00190{word-spacing:-20.565333pt;}
.ws1_c00190{word-spacing:-19.922667pt;}
.ws2_c00190{word-spacing:0.000000pt;}
._39_c00190{margin-left:-19.242667pt;}
._30_c00190{margin-left:-15.018667pt;}
._31_c00190{margin-left:-12.202667pt;}
._24_c00190{margin-left:-9.898667pt;}
._28_c00190{margin-left:-5.888000pt;}
._21_c00190{margin-left:-4.693333pt;}
._12_c00190{margin-left:-2.816000pt;}
._10_c00190{margin-left:-1.877333pt;}
._3_c00190{margin-left:-0.938667pt;}
._1_c00190{width:1.280000pt;}
._9_c00190{width:2.304000pt;}
._0_c00190{width:3.328000pt;}
._a_c00190{width:4.693333pt;}
._8_c00190{width:5.802667pt;}
._18_c00190{width:6.826667pt;}
._20_c00190{width:7.850667pt;}
._2f_c00190{width:8.789333pt;}
._7_c00190{width:9.728000pt;}
._37_c00190{width:10.666667pt;}
._6_c00190{width:11.605333pt;}
._5_c00190{width:12.885333pt;}
._b_c00190{width:13.994667pt;}
._19_c00190{width:15.786667pt;}
._1f_c00190{width:17.578667pt;}
._d_c00190{width:19.200000pt;}
._32_c00190{width:21.504000pt;}
._c_c00190{width:22.869333pt;}
._1a_c00190{width:24.490667pt;}
._34_c00190{width:25.600000pt;}
._14_c00190{width:26.538667pt;}
._27_c00190{width:27.648000pt;}
._4_c00190{width:28.842667pt;}
._13_c00190{width:30.208000pt;}
._2a_c00190{width:31.146667pt;}
._e_c00190{width:32.426667pt;}
._f_c00190{width:33.877333pt;}
._1c_c00190{width:34.901333pt;}
._2_c00190{width:36.181333pt;}
._25_c00190{width:37.461333pt;}
._17_c00190{width:38.826667pt;}
._1e_c00190{width:40.533333pt;}
._11_c00190{width:41.813333pt;}
._16_c00190{width:44.288000pt;}
._15_c00190{width:45.824000pt;}
._23_c00190{width:48.128000pt;}
._1b_c00190{width:49.664000pt;}
._33_c00190{width:53.845333pt;}
._1d_c00190{width:61.610667pt;}
._35_c00190{width:62.549333pt;}
._29_c00190{width:64.853333pt;}
._38_c00190{width:67.669333pt;}
._2b_c00190{width:69.546667pt;}
._2d_c00190{width:73.642667pt;}
._22_c00190{width:83.882667pt;}
._36_c00190{width:99.925333pt;}
._26_c00190{width:109.056000pt;}
._2e_c00190{width:155.221333pt;}
._2c_c00190{width:650.069333pt;}
.fs3_c00190{font-size:42.666667pt;}
.fs2_c00190{font-size:82.666667pt;}
.fs0_c00190{font-size:85.333333pt;}
.fs1_c00190{font-size:90.666667pt;}
.y0_c00190{bottom:0.000000pt;}
.y27_c00190{bottom:2.760000pt;}
.y26_c00190{bottom:6.425217pt;}
.y25_c00190{bottom:94.106667pt;}
.y24_c00190{bottom:157.440000pt;}
.y23_c00190{bottom:185.706667pt;}
.y22_c00190{bottom:216.640000pt;}
.y21_c00190{bottom:246.506667pt;}
.y20_c00190{bottom:276.906667pt;}
.y1f_c00190{bottom:306.640000pt;}
.y1e_c00190{bottom:336.640000pt;}
.y1d_c00190{bottom:366.906667pt;}
.y1c_c00190{bottom:396.906667pt;}
.y1b_c00190{bottom:426.506667pt;}
.y1a_c00190{bottom:456.640000pt;}
.y19_c00190{bottom:485.706667pt;}
.y18_c00190{bottom:515.306667pt;}
.y17_c00190{bottom:545.440000pt;}
.y16_c00190{bottom:574.240000pt;}
.y15_c00190{bottom:604.240000pt;}
.y14_c00190{bottom:633.840000pt;}
.y13_c00190{bottom:663.840000pt;}
.y12_c00190{bottom:694.106667pt;}
.y1_c00190{bottom:709.440000pt;}
.y11_c00190{bottom:722.640000pt;}
.y10_c00190{bottom:752.640000pt;}
.yf_c00190{bottom:782.106667pt;}
.ye_c00190{bottom:812.106667pt;}
.yd_c00190{bottom:841.706667pt;}
.yc_c00190{bottom:871.173333pt;}
.yb_c00190{bottom:900.906667pt;}
.ya_c00190{bottom:930.640000pt;}
.y9_c00190{bottom:960.240000pt;}
.y8_c00190{bottom:990.240000pt;}
.y7_c00190{bottom:1019.440000pt;}
.y6_c00190{bottom:1049.706667pt;}
.y5_c00190{bottom:1079.306667pt;}
.y4_c00190{bottom:1108.773333pt;}
.y3_c00190{bottom:1139.040000pt;}
.y2_c00190{bottom:1161.573333pt;}
.h4_c00190{height:11.733399pt;}
.h5_c00190{height:38.937500pt;}
.h3_c00190{height:104.665365pt;}
.h2_c00190{height:108.041667pt;}
.h0_c00190{height:1229.733333pt;}
.h1_c00190{height:1230.000000pt;}
.w2_c00190{width:93.222667pt;}
.w0_c00190{width:780.466667pt;}
.w1_c00190{width:780.666667pt;}
.x0_c00190{left:0.000000pt;}
.x9_c00190{left:47.733333pt;}
.xa_c00190{left:48.666667pt;}
.x7_c00190{left:49.600000pt;}
.x5_c00190{left:51.066667pt;}
.x4_c00190{left:52.000000pt;}
.x3_c00190{left:53.066667pt;}
.x8_c00190{left:92.800000pt;}
.x6_c00190{left:178.800000pt;}
.xc_c00190{left:347.401530pt;}
.x2_c00190{left:442.800000pt;}
.xb_c00190{left:521.066667pt;}
.x1_c00190{left:570.000000pt;}
}





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

.ir_c00191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_e6c0f33af8b1a5069f7b4d0c.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_876432ca6af6482624697664.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_d68ca77d54a3bcc369ef92ae.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_ce92a2729371d8f3ce5651dd.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00191{vertical-align:-7.200000px;}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00191{word-spacing:-63.504000px;}
.ws2_c00191{word-spacing:-51.000000px;}
.ws1_c00191{word-spacing:-23.136000px;}
.ws4_c00191{word-spacing:0.000000px;}
.ws0_c00191{word-spacing:91.680000px;}
._3e_c00191{margin-left:-20.232000px;}
._32_c00191{margin-left:-15.648000px;}
._17_c00191{margin-left:-13.824000px;}
._3f_c00191{margin-left:-12.120000px;}
._2_c00191{margin-left:-10.824000px;}
._1c_c00191{margin-left:-8.832000px;}
._1d_c00191{margin-left:-7.680000px;}
._23_c00191{margin-left:-6.168000px;}
._1f_c00191{margin-left:-4.896000px;}
._0_c00191{margin-left:-3.360000px;}
._22_c00191{margin-left:-2.208000px;}
._1_c00191{margin-left:-1.200000px;}
._a_c00191{width:1.248000px;}
._30_c00191{width:2.256000px;}
._c_c00191{width:3.264000px;}
._13_c00191{width:4.416000px;}
._8_c00191{width:6.144000px;}
._f_c00191{width:7.488000px;}
._16_c00191{width:8.928000px;}
._1e_c00191{width:10.008000px;}
._e_c00191{width:11.328000px;}
._5_c00191{width:12.960000px;}
._7_c00191{width:14.016000px;}
._19_c00191{width:15.456000px;}
._3b_c00191{width:16.824000px;}
._18_c00191{width:17.856000px;}
._2e_c00191{width:18.912000px;}
._38_c00191{width:20.016000px;}
._4_c00191{width:21.792000px;}
._36_c00191{width:24.192000px;}
._12_c00191{width:26.400000px;}
._d_c00191{width:27.552000px;}
._2c_c00191{width:28.800000px;}
._9_c00191{width:30.048000px;}
._24_c00191{width:31.104000px;}
._b_c00191{width:32.640000px;}
._10_c00191{width:34.176000px;}
._21_c00191{width:35.808000px;}
._28_c00191{width:36.864000px;}
._20_c00191{width:38.304000px;}
._11_c00191{width:39.552000px;}
._2b_c00191{width:41.400000px;}
._26_c00191{width:42.912000px;}
._35_c00191{width:44.712000px;}
._15_c00191{width:45.792000px;}
._14_c00191{width:47.904000px;}
._25_c00191{width:50.112000px;}
._29_c00191{width:51.600000px;}
._27_c00191{width:52.800000px;}
._37_c00191{width:54.576000px;}
._1a_c00191{width:56.736000px;}
._31_c00191{width:58.824000px;}
._39_c00191{width:59.928000px;}
._1b_c00191{width:62.592000px;}
._34_c00191{width:66.576000px;}
._2f_c00191{width:68.904000px;}
._33_c00191{width:70.944000px;}
._3d_c00191{width:73.968000px;}
._3c_c00191{width:75.408000px;}
._3a_c00191{width:78.336000px;}
._2a_c00191{width:84.864000px;}
._2d_c00191{width:86.760000px;}
._3_c00191{width:155.040000px;}
._6_c00191{width:187.488000px;}
._40_c00191{width:1627.632000px;}
.fc2_c00191{color:transparent;}
.fc1_c00191{color:rgb(128,128,128);}
.fc0_c00191{color:rgb(0,0,0);}
.fs4_c00191{font-size:48.000000px;}
.fs3_c00191{font-size:84.000000px;}
.fs1_c00191{font-size:96.000000px;}
.fs2_c00191{font-size:102.000000px;}
.fs0_c00191{font-size:120.000000px;}
.y0_c00191{bottom:0.000000px;}
.y26_c00191{bottom:3.105000px;}
.y25_c00191{bottom:7.228357px;}
.y24_c00191{bottom:102.030000px;}
.y23_c00191{bottom:132.330000px;}
.y22_c00191{bottom:166.680000px;}
.y21_c00191{bottom:200.430000px;}
.y20_c00191{bottom:234.330000px;}
.y1f_c00191{bottom:268.380000px;}
.y1e_c00191{bottom:302.430000px;}
.y1d_c00191{bottom:337.230000px;}
.y1c_c00191{bottom:370.980000px;}
.y1b_c00191{bottom:404.730000px;}
.y1a_c00191{bottom:439.080000px;}
.y19_c00191{bottom:472.830000px;}
.y18_c00191{bottom:506.880000px;}
.y17_c00191{bottom:540.630000px;}
.y16_c00191{bottom:574.530000px;}
.y15_c00191{bottom:608.130000px;}
.y14_c00191{bottom:641.880000px;}
.y13_c00191{bottom:675.630000px;}
.y12_c00191{bottom:709.080000px;}
.y11_c00191{bottom:743.130000px;}
.y10_c00191{bottom:777.030000px;}
.yf_c00191{bottom:810.330000px;}
.ye_c00191{bottom:844.530000px;}
.yd_c00191{bottom:877.830000px;}
.yc_c00191{bottom:911.280000px;}
.yb_c00191{bottom:944.430000px;}
.ya_c00191{bottom:977.730000px;}
.y9_c00191{bottom:1011.180000px;}
.y8_c00191{bottom:1044.630000px;}
.y7_c00191{bottom:1078.380000px;}
.y6_c00191{bottom:1111.830000px;}
.y5_c00191{bottom:1144.830000px;}
.y4_c00191{bottom:1178.280000px;}
.y3_c00191{bottom:1211.280000px;}
.y2_c00191{bottom:1245.030000px;}
.y1_c00191{bottom:1279.530000px;}
.h4_c00191{height:13.200074px;}
.h5_c00191{height:43.804688px;}
.h3_c00191{height:121.546875px;}
.h2_c00191{height:128.040000px;}
.h0_c00191{height:1382.700000px;}
.h1_c00191{height:1383.000000px;}
.w2_c00191{width:104.875500px;}
.w0_c00191{width:863.175000px;}
.w1_c00191{width:863.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:174.150000px;}
.x9_c00191{left:253.500000px;}
.x7_c00191{left:255.150000px;}
.x8_c00191{left:257.400000px;}
.x5_c00191{left:258.900000px;}
.x3_c00191{left:261.000000px;}
.x6_c00191{left:262.200000px;}
.x2_c00191{left:263.700000px;}
.x4_c00191{left:264.900000px;}
.xa_c00191{left:383.401749px;}
@media print{
.v1_c00191{vertical-align:-6.400000pt;}
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws3_c00191{word-spacing:-56.448000pt;}
.ws2_c00191{word-spacing:-45.333333pt;}
.ws1_c00191{word-spacing:-20.565333pt;}
.ws4_c00191{word-spacing:0.000000pt;}
.ws0_c00191{word-spacing:81.493333pt;}
._3e_c00191{margin-left:-17.984000pt;}
._32_c00191{margin-left:-13.909333pt;}
._17_c00191{margin-left:-12.288000pt;}
._3f_c00191{margin-left:-10.773333pt;}
._2_c00191{margin-left:-9.621333pt;}
._1c_c00191{margin-left:-7.850667pt;}
._1d_c00191{margin-left:-6.826667pt;}
._23_c00191{margin-left:-5.482667pt;}
._1f_c00191{margin-left:-4.352000pt;}
._0_c00191{margin-left:-2.986667pt;}
._22_c00191{margin-left:-1.962667pt;}
._1_c00191{margin-left:-1.066667pt;}
._a_c00191{width:1.109333pt;}
._30_c00191{width:2.005333pt;}
._c_c00191{width:2.901333pt;}
._13_c00191{width:3.925333pt;}
._8_c00191{width:5.461333pt;}
._f_c00191{width:6.656000pt;}
._16_c00191{width:7.936000pt;}
._1e_c00191{width:8.896000pt;}
._e_c00191{width:10.069333pt;}
._5_c00191{width:11.520000pt;}
._7_c00191{width:12.458667pt;}
._19_c00191{width:13.738667pt;}
._3b_c00191{width:14.954667pt;}
._18_c00191{width:15.872000pt;}
._2e_c00191{width:16.810667pt;}
._38_c00191{width:17.792000pt;}
._4_c00191{width:19.370667pt;}
._36_c00191{width:21.504000pt;}
._12_c00191{width:23.466667pt;}
._d_c00191{width:24.490667pt;}
._2c_c00191{width:25.600000pt;}
._9_c00191{width:26.709333pt;}
._24_c00191{width:27.648000pt;}
._b_c00191{width:29.013333pt;}
._10_c00191{width:30.378667pt;}
._21_c00191{width:31.829333pt;}
._28_c00191{width:32.768000pt;}
._20_c00191{width:34.048000pt;}
._11_c00191{width:35.157333pt;}
._2b_c00191{width:36.800000pt;}
._26_c00191{width:38.144000pt;}
._35_c00191{width:39.744000pt;}
._15_c00191{width:40.704000pt;}
._14_c00191{width:42.581333pt;}
._25_c00191{width:44.544000pt;}
._29_c00191{width:45.866667pt;}
._27_c00191{width:46.933333pt;}
._37_c00191{width:48.512000pt;}
._1a_c00191{width:50.432000pt;}
._31_c00191{width:52.288000pt;}
._39_c00191{width:53.269333pt;}
._1b_c00191{width:55.637333pt;}
._34_c00191{width:59.178667pt;}
._2f_c00191{width:61.248000pt;}
._33_c00191{width:63.061333pt;}
._3d_c00191{width:65.749333pt;}
._3c_c00191{width:67.029333pt;}
._3a_c00191{width:69.632000pt;}
._2a_c00191{width:75.434667pt;}
._2d_c00191{width:77.120000pt;}
._3_c00191{width:137.813333pt;}
._6_c00191{width:166.656000pt;}
._40_c00191{width:1446.784000pt;}
.fs4_c00191{font-size:42.666667pt;}
.fs3_c00191{font-size:74.666667pt;}
.fs1_c00191{font-size:85.333333pt;}
.fs2_c00191{font-size:90.666667pt;}
.fs0_c00191{font-size:106.666667pt;}
.y0_c00191{bottom:0.000000pt;}
.y26_c00191{bottom:2.760000pt;}
.y25_c00191{bottom:6.425206pt;}
.y24_c00191{bottom:90.693333pt;}
.y23_c00191{bottom:117.626667pt;}
.y22_c00191{bottom:148.160000pt;}
.y21_c00191{bottom:178.160000pt;}
.y20_c00191{bottom:208.293333pt;}
.y1f_c00191{bottom:238.560000pt;}
.y1e_c00191{bottom:268.826667pt;}
.y1d_c00191{bottom:299.760000pt;}
.y1c_c00191{bottom:329.760000pt;}
.y1b_c00191{bottom:359.760000pt;}
.y1a_c00191{bottom:390.293333pt;}
.y19_c00191{bottom:420.293333pt;}
.y18_c00191{bottom:450.560000pt;}
.y17_c00191{bottom:480.560000pt;}
.y16_c00191{bottom:510.693333pt;}
.y15_c00191{bottom:540.560000pt;}
.y14_c00191{bottom:570.560000pt;}
.y13_c00191{bottom:600.560000pt;}
.y12_c00191{bottom:630.293333pt;}
.y11_c00191{bottom:660.560000pt;}
.y10_c00191{bottom:690.693333pt;}
.yf_c00191{bottom:720.293333pt;}
.ye_c00191{bottom:750.693333pt;}
.yd_c00191{bottom:780.293333pt;}
.yc_c00191{bottom:810.026667pt;}
.yb_c00191{bottom:839.493333pt;}
.ya_c00191{bottom:869.093333pt;}
.y9_c00191{bottom:898.826667pt;}
.y8_c00191{bottom:928.560000pt;}
.y7_c00191{bottom:958.560000pt;}
.y6_c00191{bottom:988.293333pt;}
.y5_c00191{bottom:1017.626667pt;}
.y4_c00191{bottom:1047.360000pt;}
.y3_c00191{bottom:1076.693333pt;}
.y2_c00191{bottom:1106.693333pt;}
.y1_c00191{bottom:1137.360000pt;}
.h4_c00191{height:11.733399pt;}
.h5_c00191{height:38.937500pt;}
.h3_c00191{height:108.041667pt;}
.h2_c00191{height:113.813333pt;}
.h0_c00191{height:1229.066667pt;}
.h1_c00191{height:1229.333333pt;}
.w2_c00191{width:93.222667pt;}
.w0_c00191{width:767.266667pt;}
.w1_c00191{width:767.333333pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:154.800000pt;}
.x9_c00191{left:225.333333pt;}
.x7_c00191{left:226.800000pt;}
.x8_c00191{left:228.800000pt;}
.x5_c00191{left:230.133333pt;}
.x3_c00191{left:232.000000pt;}
.x6_c00191{left:233.066667pt;}
.x2_c00191{left:234.400000pt;}
.x4_c00191{left:235.466667pt;}
.xa_c00191{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63306fd2080337025b5132a4.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_1e0232e5601457c2a5b5df01.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_8e23f0299318029ea6b070d4.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_14508718e65a9e8770415bc6.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;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_c00192;src:url('chunks/assets/font_37095b4e47317c4db9f3162b.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00192;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls4_c00192{letter-spacing:0.000000px;}
.ls2_c00192{letter-spacing:7.200000px;}
.ls3_c00192{letter-spacing:15.912000px;}
.ls1_c00192{letter-spacing:31.718400px;}
.ls0_c00192{letter-spacing:36.804000px;}
.ls5_c00192{letter-spacing:114.000000px;}
.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;}
}
.ws4_c00192{word-spacing:-66.912000px;}
.ws0_c00192{word-spacing:-32.424000px;}
.ws3_c00192{word-spacing:-23.136000px;}
.ws2_c00192{word-spacing:-20.244000px;}
.ws5_c00192{word-spacing:0.000000px;}
.ws1_c00192{word-spacing:195.288000px;}
._21_c00192{margin-left:-109.920000px;}
._22_c00192{margin-left:-108.444000px;}
._24_c00192{margin-left:-100.128000px;}
._23_c00192{margin-left:-92.736000px;}
._5e_c00192{margin-left:-86.400000px;}
._20_c00192{margin-left:-84.384000px;}
._5c_c00192{margin-left:-81.048000px;}
._1d_c00192{margin-left:-35.040000px;}
._35_c00192{margin-left:-27.840000px;}
._39_c00192{margin-left:-25.728000px;}
._2a_c00192{margin-left:-23.904000px;}
._30_c00192{margin-left:-20.352000px;}
._26_c00192{margin-left:-18.900000px;}
._33_c00192{margin-left:-17.652000px;}
._31_c00192{margin-left:-16.224000px;}
._1e_c00192{margin-left:-13.920000px;}
._1a_c00192{margin-left:-11.904000px;}
._1c_c00192{margin-left:-10.656000px;}
._2b_c00192{margin-left:-9.540000px;}
._16_c00192{margin-left:-8.148000px;}
._2e_c00192{margin-left:-6.156000px;}
._1_c00192{margin-left:-4.464000px;}
._0_c00192{margin-left:-2.880000px;}
._2_c00192{margin-left:-1.440000px;}
._7_c00192{width:1.440000px;}
._17_c00192{width:2.688000px;}
._42_c00192{width:3.840000px;}
._5_c00192{width:5.040000px;}
._4_c00192{width:6.912000px;}
._6_c00192{width:8.496000px;}
._3b_c00192{width:9.792000px;}
._14_c00192{width:11.004000px;}
._13_c00192{width:12.264000px;}
._4b_c00192{width:13.344000px;}
._c_c00192{width:15.204000px;}
._27_c00192{width:17.232000px;}
._50_c00192{width:18.300000px;}
._44_c00192{width:19.686000px;}
._59_c00192{width:20.892000px;}
._e_c00192{width:22.008000px;}
._a_c00192{width:23.100000px;}
._9_c00192{width:24.948000px;}
._58_c00192{width:26.004000px;}
._b_c00192{width:27.132000px;}
._d_c00192{width:28.140000px;}
._5a_c00192{width:29.916000px;}
._11_c00192{width:30.996000px;}
._37_c00192{width:32.160000px;}
._3_c00192{width:33.264000px;}
._43_c00192{width:34.656000px;}
._10_c00192{width:35.784000px;}
._4c_c00192{width:37.260000px;}
._48_c00192{width:39.216000px;}
._49_c00192{width:40.548000px;}
._4a_c00192{width:41.676000px;}
._2f_c00192{width:42.948000px;}
._47_c00192{width:45.588000px;}
._51_c00192{width:46.776000px;}
._15_c00192{width:47.880000px;}
._28_c00192{width:49.932000px;}
._55_c00192{width:51.060000px;}
._3d_c00192{width:52.248000px;}
._25_c00192{width:53.844000px;}
._18_c00192{width:55.116000px;}
._4d_c00192{width:58.368000px;}
._60_c00192{width:59.532000px;}
._40_c00192{width:60.942000px;}
._45_c00192{width:62.328000px;}
._4e_c00192{width:64.008000px;}
._f_c00192{width:65.184000px;}
._57_c00192{width:67.164000px;}
._3c_c00192{width:68.280000px;}
._34_c00192{width:70.848000px;}
._12_c00192{width:73.668000px;}
._5d_c00192{width:79.488000px;}
._56_c00192{width:86.160000px;}
._3f_c00192{width:92.592000px;}
._3a_c00192{width:94.464000px;}
._2c_c00192{width:103.200000px;}
._8_c00192{width:105.576000px;}
._41_c00192{width:111.384000px;}
._4f_c00192{width:112.608000px;}
._1b_c00192{width:116.448000px;}
._62_c00192{width:125.544000px;}
._46_c00192{width:126.816000px;}
._19_c00192{width:146.280000px;}
._1f_c00192{width:150.912000px;}
._2d_c00192{width:153.144000px;}
._38_c00192{width:159.264000px;}
._5f_c00192{width:172.752000px;}
._54_c00192{width:187.680000px;}
._29_c00192{width:200.160000px;}
._53_c00192{width:229.992000px;}
._36_c00192{width:283.968000px;}
._3e_c00192{width:412.224000px;}
._32_c00192{width:594.528000px;}
._52_c00192{width:669.960000px;}
._61_c00192{width:938.304000px;}
._5b_c00192{width:1090.596000px;}
.fc2_c00192{color:transparent;}
.fc1_c00192{color:rgb(128,128,128);}
.fc0_c00192{color:rgb(0,0,0);}
.fs4_c00192{font-size:30.000000px;}
.fs7_c00192{font-size:36.000000px;}
.fs8_c00192{font-size:48.000000px;}
.fs6_c00192{font-size:57.000000px;}
.fs3_c00192{font-size:67.200000px;}
.fs2_c00192{font-size:84.000000px;}
.fs1_c00192{font-size:96.000000px;}
.fs5_c00192{font-size:102.000000px;}
.fs0_c00192{font-size:144.000000px;}
.y0_c00192{bottom:0.000000px;}
.y25_c00192{bottom:3.105000px;}
.y24_c00192{bottom:7.228369px;}
.y22_c00192{bottom:96.420000px;}
.y21_c00192{bottom:130.920000px;}
.y20_c00192{bottom:166.320000px;}
.y1f_c00192{bottom:195.720000px;}
.y1e_c00192{bottom:235.920000px;}
.y1d_c00192{bottom:268.020000px;}
.y1c_c00192{bottom:301.620000px;}
.y1b_c00192{bottom:335.820000px;}
.y1a_c00192{bottom:369.870000px;}
.y19_c00192{bottom:402.870000px;}
.y18_c00192{bottom:437.370000px;}
.y17_c00192{bottom:470.820000px;}
.y16_c00192{bottom:504.120000px;}
.y15_c00192{bottom:536.220000px;}
.y14_c00192{bottom:571.620000px;}
.y13_c00192{bottom:604.020000px;}
.y12_c00192{bottom:637.170000px;}
.y23_c00192{bottom:644.670000px;}
.y11_c00192{bottom:670.620000px;}
.y10_c00192{bottom:703.620000px;}
.yf_c00192{bottom:737.370000px;}
.ye_c00192{bottom:770.820000px;}
.yd_c00192{bottom:803.970000px;}
.yc_c00192{bottom:837.270000px;}
.yb_c00192{bottom:869.670000px;}
.ya_c00192{bottom:903.720000px;}
.y9_c00192{bottom:936.570000px;}
.y8_c00192{bottom:967.620000px;}
.y7_c00192{bottom:1002.720000px;}
.y6_c00192{bottom:1036.470000px;}
.y5_c00192{bottom:1072.470000px;}
.y4_c00192{bottom:1102.920000px;}
.y3_c00192{bottom:1137.270000px;}
.y2_c00192{bottom:1171.020000px;}
.y1_c00192{bottom:1260.270000px;}
.h6_c00192{height:13.200073px;}
.h7_c00192{height:43.804688px;}
.h5_c00192{height:72.168457px;}
.h3_c00192{height:121.546875px;}
.h4_c00192{height:129.143555px;}
.h2_c00192{height:182.320312px;}
.h0_c00192{height:1383.450000px;}
.h1_c00192{height:1383.750000px;}
.w2_c00192{width:104.875500px;}
.w0_c00192{width:878.025000px;}
.w1_c00192{width:878.250000px;}
.x0_c00192{left:0.000000px;}
.xd_c00192{left:51.600000px;}
.xc_c00192{left:52.650000px;}
.x9_c00192{left:53.700000px;}
.xa_c00192{left:54.900000px;}
.x8_c00192{left:55.950000px;}
.x5_c00192{left:65.700000px;}
.x2_c00192{left:67.200000px;}
.x4_c00192{left:75.300000px;}
.xb_c00192{left:104.550000px;}
.x6_c00192{left:107.250000px;}
.x1_c00192{left:186.300000px;}
.x3_c00192{left:202.200000px;}
.x7_c00192{left:246.000000px;}
.xe_c00192{left:297.900000px;}
.x10_c00192{left:390.826721px;}
.xf_c00192{left:681.300000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls4_c00192{letter-spacing:0.000000pt;}
.ls2_c00192{letter-spacing:6.400000pt;}
.ls3_c00192{letter-spacing:14.144000pt;}
.ls1_c00192{letter-spacing:28.194133pt;}
.ls0_c00192{letter-spacing:32.714667pt;}
.ls5_c00192{letter-spacing:101.333333pt;}
.ws4_c00192{word-spacing:-59.477333pt;}
.ws0_c00192{word-spacing:-28.821333pt;}
.ws3_c00192{word-spacing:-20.565333pt;}
.ws2_c00192{word-spacing:-17.994667pt;}
.ws5_c00192{word-spacing:0.000000pt;}
.ws1_c00192{word-spacing:173.589333pt;}
._21_c00192{margin-left:-97.706667pt;}
._22_c00192{margin-left:-96.394667pt;}
._24_c00192{margin-left:-89.002667pt;}
._23_c00192{margin-left:-82.432000pt;}
._5e_c00192{margin-left:-76.800000pt;}
._20_c00192{margin-left:-75.008000pt;}
._5c_c00192{margin-left:-72.042667pt;}
._1d_c00192{margin-left:-31.146667pt;}
._35_c00192{margin-left:-24.746667pt;}
._39_c00192{margin-left:-22.869333pt;}
._2a_c00192{margin-left:-21.248000pt;}
._30_c00192{margin-left:-18.090667pt;}
._26_c00192{margin-left:-16.800000pt;}
._33_c00192{margin-left:-15.690667pt;}
._31_c00192{margin-left:-14.421333pt;}
._1e_c00192{margin-left:-12.373333pt;}
._1a_c00192{margin-left:-10.581333pt;}
._1c_c00192{margin-left:-9.472000pt;}
._2b_c00192{margin-left:-8.480000pt;}
._16_c00192{margin-left:-7.242667pt;}
._2e_c00192{margin-left:-5.472000pt;}
._1_c00192{margin-left:-3.968000pt;}
._0_c00192{margin-left:-2.560000pt;}
._2_c00192{margin-left:-1.280000pt;}
._7_c00192{width:1.280000pt;}
._17_c00192{width:2.389333pt;}
._42_c00192{width:3.413333pt;}
._5_c00192{width:4.480000pt;}
._4_c00192{width:6.144000pt;}
._6_c00192{width:7.552000pt;}
._3b_c00192{width:8.704000pt;}
._14_c00192{width:9.781333pt;}
._13_c00192{width:10.901333pt;}
._4b_c00192{width:11.861333pt;}
._c_c00192{width:13.514667pt;}
._27_c00192{width:15.317333pt;}
._50_c00192{width:16.266667pt;}
._44_c00192{width:17.498667pt;}
._59_c00192{width:18.570667pt;}
._e_c00192{width:19.562667pt;}
._a_c00192{width:20.533333pt;}
._9_c00192{width:22.176000pt;}
._58_c00192{width:23.114667pt;}
._b_c00192{width:24.117333pt;}
._d_c00192{width:25.013333pt;}
._5a_c00192{width:26.592000pt;}
._11_c00192{width:27.552000pt;}
._37_c00192{width:28.586667pt;}
._3_c00192{width:29.568000pt;}
._43_c00192{width:30.805333pt;}
._10_c00192{width:31.808000pt;}
._4c_c00192{width:33.120000pt;}
._48_c00192{width:34.858667pt;}
._49_c00192{width:36.042667pt;}
._4a_c00192{width:37.045333pt;}
._2f_c00192{width:38.176000pt;}
._47_c00192{width:40.522667pt;}
._51_c00192{width:41.578667pt;}
._15_c00192{width:42.560000pt;}
._28_c00192{width:44.384000pt;}
._55_c00192{width:45.386667pt;}
._3d_c00192{width:46.442667pt;}
._25_c00192{width:47.861333pt;}
._18_c00192{width:48.992000pt;}
._4d_c00192{width:51.882667pt;}
._60_c00192{width:52.917333pt;}
._40_c00192{width:54.170667pt;}
._45_c00192{width:55.402667pt;}
._4e_c00192{width:56.896000pt;}
._f_c00192{width:57.941333pt;}
._57_c00192{width:59.701333pt;}
._3c_c00192{width:60.693333pt;}
._34_c00192{width:62.976000pt;}
._12_c00192{width:65.482667pt;}
._5d_c00192{width:70.656000pt;}
._56_c00192{width:76.586667pt;}
._3f_c00192{width:82.304000pt;}
._3a_c00192{width:83.968000pt;}
._2c_c00192{width:91.733333pt;}
._8_c00192{width:93.845333pt;}
._41_c00192{width:99.008000pt;}
._4f_c00192{width:100.096000pt;}
._1b_c00192{width:103.509333pt;}
._62_c00192{width:111.594667pt;}
._46_c00192{width:112.725333pt;}
._19_c00192{width:130.026667pt;}
._1f_c00192{width:134.144000pt;}
._2d_c00192{width:136.128000pt;}
._38_c00192{width:141.568000pt;}
._5f_c00192{width:153.557333pt;}
._54_c00192{width:166.826667pt;}
._29_c00192{width:177.920000pt;}
._53_c00192{width:204.437333pt;}
._36_c00192{width:252.416000pt;}
._3e_c00192{width:366.421333pt;}
._32_c00192{width:528.469333pt;}
._52_c00192{width:595.520000pt;}
._61_c00192{width:834.048000pt;}
._5b_c00192{width:969.418667pt;}
.fs4_c00192{font-size:26.666667pt;}
.fs7_c00192{font-size:32.000000pt;}
.fs8_c00192{font-size:42.666667pt;}
.fs6_c00192{font-size:50.666667pt;}
.fs3_c00192{font-size:59.733333pt;}
.fs2_c00192{font-size:74.666667pt;}
.fs1_c00192{font-size:85.333333pt;}
.fs5_c00192{font-size:90.666667pt;}
.fs0_c00192{font-size:128.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y25_c00192{bottom:2.760000pt;}
.y24_c00192{bottom:6.425217pt;}
.y22_c00192{bottom:85.706667pt;}
.y21_c00192{bottom:116.373333pt;}
.y20_c00192{bottom:147.840000pt;}
.y1f_c00192{bottom:173.973333pt;}
.y1e_c00192{bottom:209.706667pt;}
.y1d_c00192{bottom:238.240000pt;}
.y1c_c00192{bottom:268.106667pt;}
.y1b_c00192{bottom:298.506667pt;}
.y1a_c00192{bottom:328.773333pt;}
.y19_c00192{bottom:358.106667pt;}
.y18_c00192{bottom:388.773333pt;}
.y17_c00192{bottom:418.506667pt;}
.y16_c00192{bottom:448.106667pt;}
.y15_c00192{bottom:476.640000pt;}
.y14_c00192{bottom:508.106667pt;}
.y13_c00192{bottom:536.906667pt;}
.y12_c00192{bottom:566.373333pt;}
.y23_c00192{bottom:573.040000pt;}
.y11_c00192{bottom:596.106667pt;}
.y10_c00192{bottom:625.440000pt;}
.yf_c00192{bottom:655.440000pt;}
.ye_c00192{bottom:685.173333pt;}
.yd_c00192{bottom:714.640000pt;}
.yc_c00192{bottom:744.240000pt;}
.yb_c00192{bottom:773.040000pt;}
.ya_c00192{bottom:803.306667pt;}
.y9_c00192{bottom:832.506667pt;}
.y8_c00192{bottom:860.106667pt;}
.y7_c00192{bottom:891.306667pt;}
.y6_c00192{bottom:921.306667pt;}
.y5_c00192{bottom:953.306667pt;}
.y4_c00192{bottom:980.373333pt;}
.y3_c00192{bottom:1010.906667pt;}
.y2_c00192{bottom:1040.906667pt;}
.y1_c00192{bottom:1120.240000pt;}
.h6_c00192{height:11.733399pt;}
.h7_c00192{height:38.937500pt;}
.h5_c00192{height:64.149740pt;}
.h3_c00192{height:108.041667pt;}
.h4_c00192{height:114.794271pt;}
.h2_c00192{height:162.062500pt;}
.h0_c00192{height:1229.733333pt;}
.h1_c00192{height:1230.000000pt;}
.w2_c00192{width:93.222667pt;}
.w0_c00192{width:780.466667pt;}
.w1_c00192{width:780.666667pt;}
.x0_c00192{left:0.000000pt;}
.xd_c00192{left:45.866667pt;}
.xc_c00192{left:46.800000pt;}
.x9_c00192{left:47.733333pt;}
.xa_c00192{left:48.800000pt;}
.x8_c00192{left:49.733333pt;}
.x5_c00192{left:58.400000pt;}
.x2_c00192{left:59.733333pt;}
.x4_c00192{left:66.933333pt;}
.xb_c00192{left:92.933333pt;}
.x6_c00192{left:95.333333pt;}
.x1_c00192{left:165.600000pt;}
.x3_c00192{left:179.733333pt;}
.x7_c00192{left:218.666667pt;}
.xe_c00192{left:264.800000pt;}
.x10_c00192{left:347.401530pt;}
.xf_c00192{left:605.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_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_279bde49f79188569300f4c9.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_8291c31acccb3a6e8133d82d.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls1_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:12.000000px;}
.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;}
}
.ws1_c00193{word-spacing:-32.244000px;}
.ws2_c00193{word-spacing:-23.136000px;}
.ws0_c00193{word-spacing:-20.244000px;}
.ws3_c00193{word-spacing:0.000000px;}
._24_c00193{margin-left:-29.664000px;}
._32_c00193{margin-left:-15.936000px;}
._e_c00193{margin-left:-11.808000px;}
._1b_c00193{margin-left:-9.888000px;}
._1c_c00193{margin-left:-8.352000px;}
._22_c00193{margin-left:-6.432000px;}
._28_c00193{margin-left:-5.376000px;}
._25_c00193{margin-left:-4.320000px;}
._14_c00193{margin-left:-2.976000px;}
._5_c00193{margin-left:-1.728000px;}
._1f_c00193{width:1.248000px;}
._0_c00193{width:2.400000px;}
._9_c00193{width:4.032000px;}
._b_c00193{width:5.184000px;}
._19_c00193{width:6.432000px;}
._8_c00193{width:7.488000px;}
._7_c00193{width:8.736000px;}
._11_c00193{width:10.752000px;}
._3_c00193{width:12.864000px;}
._23_c00193{width:14.592000px;}
._2_c00193{width:16.032000px;}
._1a_c00193{width:17.760000px;}
._27_c00193{width:19.776000px;}
._6_c00193{width:21.504000px;}
._36_c00193{width:24.228000px;}
._d_c00193{width:25.248000px;}
._2f_c00193{width:26.400000px;}
._f_c00193{width:27.552000px;}
._c_c00193{width:29.952000px;}
._a_c00193{width:31.680000px;}
._21_c00193{width:32.736000px;}
._15_c00193{width:34.272000px;}
._4_c00193{width:36.288000px;}
._1_c00193{width:38.016000px;}
._29_c00193{width:39.264000px;}
._10_c00193{width:40.320000px;}
._16_c00193{width:42.144000px;}
._20_c00193{width:43.296000px;}
._17_c00193{width:44.832000px;}
._12_c00193{width:47.520000px;}
._13_c00193{width:49.536000px;}
._26_c00193{width:51.456000px;}
._2b_c00193{width:52.800000px;}
._33_c00193{width:54.144000px;}
._34_c00193{width:55.872000px;}
._35_c00193{width:57.888000px;}
._1d_c00193{width:58.944000px;}
._18_c00193{width:63.744000px;}
._37_c00193{width:65.664000px;}
._30_c00193{width:67.200000px;}
._1e_c00193{width:72.288000px;}
._2a_c00193{width:73.536000px;}
._31_c00193{width:75.072000px;}
._2e_c00193{width:124.224000px;}
._2d_c00193{width:161.280000px;}
._2c_c00193{width:293.760000px;}
.fc2_c00193{color:transparent;}
.fc1_c00193{color:rgb(128,128,128);}
.fc0_c00193{color:rgb(0,0,0);}
.fs2_c00193{font-size:48.000000px;}
.fs1_c00193{font-size:84.000000px;}
.fs0_c00193{font-size:96.000000px;}
.y0_c00193{bottom:0.000000px;}
.y26_c00193{bottom:3.105000px;}
.y25_c00193{bottom:7.228371px;}
.y24_c00193{bottom:78.315000px;}
.y23_c00193{bottom:112.815000px;}
.y22_c00193{bottom:147.615000px;}
.y21_c00193{bottom:181.215000px;}
.y20_c00193{bottom:215.715000px;}
.y1f_c00193{bottom:249.765000px;}
.y1e_c00193{bottom:284.265000px;}
.y1d_c00193{bottom:318.315000px;}
.y1c_c00193{bottom:352.665000px;}
.y1b_c00193{bottom:386.415000px;}
.y1a_c00193{bottom:420.315000px;}
.y19_c00193{bottom:454.365000px;}
.y18_c00193{bottom:488.415000px;}
.y17_c00193{bottom:522.165000px;}
.y16_c00193{bottom:556.215000px;}
.y15_c00193{bottom:589.965000px;}
.y14_c00193{bottom:625.815000px;}
.y13_c00193{bottom:659.265000px;}
.y12_c00193{bottom:692.565000px;}
.y11_c00193{bottom:725.265000px;}
.y10_c00193{bottom:758.715000px;}
.yf_c00193{bottom:792.765000px;}
.ye_c00193{bottom:826.215000px;}
.yd_c00193{bottom:859.965000px;}
.yc_c00193{bottom:893.415000px;}
.yb_c00193{bottom:926.565000px;}
.ya_c00193{bottom:959.865000px;}
.y9_c00193{bottom:993.315000px;}
.y8_c00193{bottom:1026.765000px;}
.y7_c00193{bottom:1060.065000px;}
.y6_c00193{bottom:1093.215000px;}
.y5_c00193{bottom:1126.365000px;}
.y4_c00193{bottom:1159.965000px;}
.y3_c00193{bottom:1193.415000px;}
.y2_c00193{bottom:1226.265000px;}
.y1_c00193{bottom:1259.265000px;}
.h3_c00193{height:13.200074px;}
.h4_c00193{height:43.804688px;}
.h2_c00193{height:121.546875px;}
.h0_c00193{height:1354.875000px;}
.h1_c00193{height:1355.250000px;}
.w2_c00193{width:104.875500px;}
.w0_c00193{width:845.625000px;}
.w1_c00193{width:846.000000px;}
.x0_c00193{left:0.000000px;}
.x4_c00193{left:116.400000px;}
.x5_c00193{left:128.700000px;}
.x2_c00193{left:246.000000px;}
.x1_c00193{left:247.050000px;}
.x3_c00193{left:248.700000px;}
.x6_c00193{left:249.750000px;}
.x7_c00193{left:250.800000px;}
.x9_c00193{left:374.626740px;}
.x8_c00193{left:764.400000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls1_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:10.666667pt;}
.ws1_c00193{word-spacing:-28.661333pt;}
.ws2_c00193{word-spacing:-20.565333pt;}
.ws0_c00193{word-spacing:-17.994667pt;}
.ws3_c00193{word-spacing:0.000000pt;}
._24_c00193{margin-left:-26.368000pt;}
._32_c00193{margin-left:-14.165333pt;}
._e_c00193{margin-left:-10.496000pt;}
._1b_c00193{margin-left:-8.789333pt;}
._1c_c00193{margin-left:-7.424000pt;}
._22_c00193{margin-left:-5.717333pt;}
._28_c00193{margin-left:-4.778667pt;}
._25_c00193{margin-left:-3.840000pt;}
._14_c00193{margin-left:-2.645333pt;}
._5_c00193{margin-left:-1.536000pt;}
._1f_c00193{width:1.109333pt;}
._0_c00193{width:2.133333pt;}
._9_c00193{width:3.584000pt;}
._b_c00193{width:4.608000pt;}
._19_c00193{width:5.717333pt;}
._8_c00193{width:6.656000pt;}
._7_c00193{width:7.765333pt;}
._11_c00193{width:9.557333pt;}
._3_c00193{width:11.434667pt;}
._23_c00193{width:12.970667pt;}
._2_c00193{width:14.250667pt;}
._1a_c00193{width:15.786667pt;}
._27_c00193{width:17.578667pt;}
._6_c00193{width:19.114667pt;}
._36_c00193{width:21.536000pt;}
._d_c00193{width:22.442667pt;}
._2f_c00193{width:23.466667pt;}
._f_c00193{width:24.490667pt;}
._c_c00193{width:26.624000pt;}
._a_c00193{width:28.160000pt;}
._21_c00193{width:29.098667pt;}
._15_c00193{width:30.464000pt;}
._4_c00193{width:32.256000pt;}
._1_c00193{width:33.792000pt;}
._29_c00193{width:34.901333pt;}
._10_c00193{width:35.840000pt;}
._16_c00193{width:37.461333pt;}
._20_c00193{width:38.485333pt;}
._17_c00193{width:39.850667pt;}
._12_c00193{width:42.240000pt;}
._13_c00193{width:44.032000pt;}
._26_c00193{width:45.738667pt;}
._2b_c00193{width:46.933333pt;}
._33_c00193{width:48.128000pt;}
._34_c00193{width:49.664000pt;}
._35_c00193{width:51.456000pt;}
._1d_c00193{width:52.394667pt;}
._18_c00193{width:56.661333pt;}
._37_c00193{width:58.368000pt;}
._30_c00193{width:59.733333pt;}
._1e_c00193{width:64.256000pt;}
._2a_c00193{width:65.365333pt;}
._31_c00193{width:66.730667pt;}
._2e_c00193{width:110.421333pt;}
._2d_c00193{width:143.360000pt;}
._2c_c00193{width:261.120000pt;}
.fs2_c00193{font-size:42.666667pt;}
.fs1_c00193{font-size:74.666667pt;}
.fs0_c00193{font-size:85.333333pt;}
.y0_c00193{bottom:0.000000pt;}
.y26_c00193{bottom:2.760000pt;}
.y25_c00193{bottom:6.425219pt;}
.y24_c00193{bottom:69.613333pt;}
.y23_c00193{bottom:100.280000pt;}
.y22_c00193{bottom:131.213333pt;}
.y21_c00193{bottom:161.080000pt;}
.y20_c00193{bottom:191.746667pt;}
.y1f_c00193{bottom:222.013333pt;}
.y1e_c00193{bottom:252.680000pt;}
.y1d_c00193{bottom:282.946667pt;}
.y1c_c00193{bottom:313.480000pt;}
.y1b_c00193{bottom:343.480000pt;}
.y1a_c00193{bottom:373.613333pt;}
.y19_c00193{bottom:403.880000pt;}
.y18_c00193{bottom:434.146667pt;}
.y17_c00193{bottom:464.146667pt;}
.y16_c00193{bottom:494.413333pt;}
.y15_c00193{bottom:524.413333pt;}
.y14_c00193{bottom:556.280000pt;}
.y13_c00193{bottom:586.013333pt;}
.y12_c00193{bottom:615.613333pt;}
.y11_c00193{bottom:644.680000pt;}
.y10_c00193{bottom:674.413333pt;}
.yf_c00193{bottom:704.680000pt;}
.ye_c00193{bottom:734.413333pt;}
.yd_c00193{bottom:764.413333pt;}
.yc_c00193{bottom:794.146667pt;}
.yb_c00193{bottom:823.613333pt;}
.ya_c00193{bottom:853.213333pt;}
.y9_c00193{bottom:882.946667pt;}
.y8_c00193{bottom:912.680000pt;}
.y7_c00193{bottom:942.280000pt;}
.y6_c00193{bottom:971.746667pt;}
.y5_c00193{bottom:1001.213333pt;}
.y4_c00193{bottom:1031.080000pt;}
.y3_c00193{bottom:1060.813333pt;}
.y2_c00193{bottom:1090.013333pt;}
.y1_c00193{bottom:1119.346667pt;}
.h3_c00193{height:11.733399pt;}
.h4_c00193{height:38.937500pt;}
.h2_c00193{height:108.041667pt;}
.h0_c00193{height:1204.333333pt;}
.h1_c00193{height:1204.666667pt;}
.w2_c00193{width:93.222667pt;}
.w0_c00193{width:751.666667pt;}
.w1_c00193{width:752.000000pt;}
.x0_c00193{left:0.000000pt;}
.x4_c00193{left:103.466667pt;}
.x5_c00193{left:114.400000pt;}
.x2_c00193{left:218.666667pt;}
.x1_c00193{left:219.600000pt;}
.x3_c00193{left:221.066667pt;}
.x6_c00193{left:222.000000pt;}
.x7_c00193{left:222.933333pt;}
.x9_c00193{left:333.001546pt;}
.x8_c00193{left:679.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f8aee9564e8d2428019cb7e.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_8acdf44bec9df0f12ba6638a.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_72201efcfe5aa2f80383f8b0.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls1_c00194{letter-spacing:0.000000px;}
.ls0_c00194{letter-spacing:18.588000px;}
.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;}
}
.ws1_c00194{word-spacing:-63.504000px;}
.ws0_c00194{word-spacing:-43.084800px;}
.ws2_c00194{word-spacing:0.000000px;}
._3a_c00194{margin-left:-86.400000px;}
._38_c00194{margin-left:-37.920000px;}
._f_c00194{margin-left:-26.688000px;}
._29_c00194{margin-left:-23.299200px;}
._2f_c00194{margin-left:-21.984000px;}
._e_c00194{margin-left:-19.968000px;}
._30_c00194{margin-left:-17.280000px;}
._37_c00194{margin-left:-15.168000px;}
._31_c00194{margin-left:-13.632000px;}
._42_c00194{margin-left:-11.784000px;}
._26_c00194{margin-left:-10.560000px;}
._33_c00194{margin-left:-8.832000px;}
._24_c00194{margin-left:-7.392000px;}
._25_c00194{margin-left:-5.760000px;}
._32_c00194{margin-left:-4.704000px;}
._18_c00194{margin-left:-3.072000px;}
._7_c00194{margin-left:-1.152000px;}
._4_c00194{width:1.344000px;}
._0_c00194{width:2.592000px;}
._3_c00194{width:4.032000px;}
._9_c00194{width:5.184000px;}
._2_c00194{width:6.240000px;}
._3f_c00194{width:7.248000px;}
._5_c00194{width:8.256000px;}
._2a_c00194{width:9.792000px;}
._c_c00194{width:11.424000px;}
._21_c00194{width:12.480000px;}
._3b_c00194{width:13.536000px;}
._15_c00194{width:14.592000px;}
._1c_c00194{width:15.648000px;}
._8_c00194{width:16.800000px;}
._13_c00194{width:18.816000px;}
._39_c00194{width:19.872000px;}
._d_c00194{width:21.312000px;}
._16_c00194{width:25.248000px;}
._2b_c00194{width:26.304000px;}
._28_c00194{width:27.480000px;}
._45_c00194{width:28.944000px;}
._1f_c00194{width:30.048000px;}
._a_c00194{width:31.104000px;}
._17_c00194{width:32.928000px;}
._1_c00194{width:34.752000px;}
._19_c00194{width:36.480000px;}
._1e_c00194{width:37.632000px;}
._11_c00194{width:39.168000px;}
._1d_c00194{width:40.992000px;}
._12_c00194{width:43.872000px;}
._27_c00194{width:45.408000px;}
._22_c00194{width:46.752000px;}
._1a_c00194{width:48.000000px;}
._20_c00194{width:49.824000px;}
._6_c00194{width:51.648000px;}
._10_c00194{width:53.376000px;}
._44_c00194{width:54.576000px;}
._b_c00194{width:58.848000px;}
._23_c00194{width:60.192000px;}
._43_c00194{width:62.208000px;}
._41_c00194{width:63.312000px;}
._1b_c00194{width:65.184000px;}
._2e_c00194{width:66.912000px;}
._40_c00194{width:71.544000px;}
._2d_c00194{width:79.584000px;}
._2c_c00194{width:85.632000px;}
._3c_c00194{width:103.680000px;}
._35_c00194{width:109.440000px;}
._36_c00194{width:131.712000px;}
._3e_c00194{width:155.880000px;}
._14_c00194{width:510.912000px;}
._3d_c00194{width:613.992000px;}
._34_c00194{width:865.344000px;}
._46_c00194{width:1937.952000px;}
.fc2_c00194{color:transparent;}
.fc1_c00194{color:rgb(128,128,128);}
.fc0_c00194{color:rgb(0,0,0);}
.fs3_c00194{font-size:48.000000px;}
.fs1_c00194{font-size:76.800000px;}
.fs2_c00194{font-size:84.000000px;}
.fs0_c00194{font-size:96.000000px;}
.y0_c00194{bottom:0.000000px;}
.y26_c00194{bottom:3.105000px;}
.y25_c00194{bottom:7.228369px;}
.y24_c00194{bottom:91.170000px;}
.y23_c00194{bottom:129.870000px;}
.y22_c00194{bottom:163.920000px;}
.y21_c00194{bottom:197.670000px;}
.y20_c00194{bottom:233.220000px;}
.y1f_c00194{bottom:264.870000px;}
.y1e_c00194{bottom:298.620000px;}
.y1d_c00194{bottom:331.320000px;}
.y1c_c00194{bottom:365.820000px;}
.y1b_c00194{bottom:399.570000px;}
.y1a_c00194{bottom:433.020000px;}
.y19_c00194{bottom:467.070000px;}
.y18_c00194{bottom:499.770000px;}
.y17_c00194{bottom:532.920000px;}
.y16_c00194{bottom:563.670000px;}
.y15_c00194{bottom:599.370000px;}
.y14_c00194{bottom:636.870000px;}
.y13_c00194{bottom:666.570000px;}
.y12_c00194{bottom:700.320000px;}
.y11_c00194{bottom:733.320000px;}
.y10_c00194{bottom:766.470000px;}
.yf_c00194{bottom:801.120000px;}
.ye_c00194{bottom:833.820000px;}
.yd_c00194{bottom:866.970000px;}
.yc_c00194{bottom:900.120000px;}
.yb_c00194{bottom:933.420000px;}
.ya_c00194{bottom:966.870000px;}
.y9_c00194{bottom:1000.320000px;}
.y8_c00194{bottom:1033.770000px;}
.y7_c00194{bottom:1067.070000px;}
.y6_c00194{bottom:1100.220000px;}
.y5_c00194{bottom:1133.520000px;}
.y4_c00194{bottom:1166.970000px;}
.y3_c00194{bottom:1200.420000px;}
.y2_c00194{bottom:1233.570000px;}
.y1_c00194{bottom:1266.870000px;}
.h3_c00194{height:13.200073px;}
.h4_c00194{height:43.804688px;}
.h2_c00194{height:121.546875px;}
.h0_c00194{height:1383.450000px;}
.h1_c00194{height:1383.750000px;}
.w2_c00194{width:104.875500px;}
.w0_c00194{width:878.025000px;}
.w1_c00194{width:878.250000px;}
.x0_c00194{left:0.000000px;}
.xb_c00194{left:44.550000px;}
.x8_c00194{left:45.600000px;}
.x6_c00194{left:46.650000px;}
.x5_c00194{left:47.700000px;}
.x4_c00194{left:49.350000px;}
.x9_c00194{left:50.400000px;}
.x3_c00194{left:51.600000px;}
.x2_c00194{left:52.650000px;}
.x1_c00194{left:54.300000px;}
.xa_c00194{left:55.350000px;}
.xd_c00194{left:83.400000px;}
.xc_c00194{left:112.500000px;}
.x7_c00194{left:198.450000px;}
.xe_c00194{left:390.826721px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls1_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:16.522667pt;}
.ws1_c00194{word-spacing:-56.448000pt;}
.ws0_c00194{word-spacing:-38.297600pt;}
.ws2_c00194{word-spacing:0.000000pt;}
._3a_c00194{margin-left:-76.800000pt;}
._38_c00194{margin-left:-33.706667pt;}
._f_c00194{margin-left:-23.722667pt;}
._29_c00194{margin-left:-20.710400pt;}
._2f_c00194{margin-left:-19.541333pt;}
._e_c00194{margin-left:-17.749333pt;}
._30_c00194{margin-left:-15.360000pt;}
._37_c00194{margin-left:-13.482667pt;}
._31_c00194{margin-left:-12.117333pt;}
._42_c00194{margin-left:-10.474667pt;}
._26_c00194{margin-left:-9.386667pt;}
._33_c00194{margin-left:-7.850667pt;}
._24_c00194{margin-left:-6.570667pt;}
._25_c00194{margin-left:-5.120000pt;}
._32_c00194{margin-left:-4.181333pt;}
._18_c00194{margin-left:-2.730667pt;}
._7_c00194{margin-left:-1.024000pt;}
._4_c00194{width:1.194667pt;}
._0_c00194{width:2.304000pt;}
._3_c00194{width:3.584000pt;}
._9_c00194{width:4.608000pt;}
._2_c00194{width:5.546667pt;}
._3f_c00194{width:6.442667pt;}
._5_c00194{width:7.338667pt;}
._2a_c00194{width:8.704000pt;}
._c_c00194{width:10.154667pt;}
._21_c00194{width:11.093333pt;}
._3b_c00194{width:12.032000pt;}
._15_c00194{width:12.970667pt;}
._1c_c00194{width:13.909333pt;}
._8_c00194{width:14.933333pt;}
._13_c00194{width:16.725333pt;}
._39_c00194{width:17.664000pt;}
._d_c00194{width:18.944000pt;}
._16_c00194{width:22.442667pt;}
._2b_c00194{width:23.381333pt;}
._28_c00194{width:24.426667pt;}
._45_c00194{width:25.728000pt;}
._1f_c00194{width:26.709333pt;}
._a_c00194{width:27.648000pt;}
._17_c00194{width:29.269333pt;}
._1_c00194{width:30.890667pt;}
._19_c00194{width:32.426667pt;}
._1e_c00194{width:33.450667pt;}
._11_c00194{width:34.816000pt;}
._1d_c00194{width:36.437333pt;}
._12_c00194{width:38.997333pt;}
._27_c00194{width:40.362667pt;}
._22_c00194{width:41.557333pt;}
._1a_c00194{width:42.666667pt;}
._20_c00194{width:44.288000pt;}
._6_c00194{width:45.909333pt;}
._10_c00194{width:47.445333pt;}
._44_c00194{width:48.512000pt;}
._b_c00194{width:52.309333pt;}
._23_c00194{width:53.504000pt;}
._43_c00194{width:55.296000pt;}
._41_c00194{width:56.277333pt;}
._1b_c00194{width:57.941333pt;}
._2e_c00194{width:59.477333pt;}
._40_c00194{width:63.594667pt;}
._2d_c00194{width:70.741333pt;}
._2c_c00194{width:76.117333pt;}
._3c_c00194{width:92.160000pt;}
._35_c00194{width:97.280000pt;}
._36_c00194{width:117.077333pt;}
._3e_c00194{width:138.560000pt;}
._14_c00194{width:454.144000pt;}
._3d_c00194{width:545.770667pt;}
._34_c00194{width:769.194667pt;}
._46_c00194{width:1722.624000pt;}
.fs3_c00194{font-size:42.666667pt;}
.fs1_c00194{font-size:68.266667pt;}
.fs2_c00194{font-size:74.666667pt;}
.fs0_c00194{font-size:85.333333pt;}
.y0_c00194{bottom:0.000000pt;}
.y26_c00194{bottom:2.760000pt;}
.y25_c00194{bottom:6.425217pt;}
.y24_c00194{bottom:81.040000pt;}
.y23_c00194{bottom:115.440000pt;}
.y22_c00194{bottom:145.706667pt;}
.y21_c00194{bottom:175.706667pt;}
.y20_c00194{bottom:207.306667pt;}
.y1f_c00194{bottom:235.440000pt;}
.y1e_c00194{bottom:265.440000pt;}
.y1d_c00194{bottom:294.506667pt;}
.y1c_c00194{bottom:325.173333pt;}
.y1b_c00194{bottom:355.173333pt;}
.y1a_c00194{bottom:384.906667pt;}
.y19_c00194{bottom:415.173333pt;}
.y18_c00194{bottom:444.240000pt;}
.y17_c00194{bottom:473.706667pt;}
.y16_c00194{bottom:501.040000pt;}
.y15_c00194{bottom:532.773333pt;}
.y14_c00194{bottom:566.106667pt;}
.y13_c00194{bottom:592.506667pt;}
.y12_c00194{bottom:622.506667pt;}
.y11_c00194{bottom:651.840000pt;}
.y10_c00194{bottom:681.306667pt;}
.yf_c00194{bottom:712.106667pt;}
.ye_c00194{bottom:741.173333pt;}
.yd_c00194{bottom:770.640000pt;}
.yc_c00194{bottom:800.106667pt;}
.yb_c00194{bottom:829.706667pt;}
.ya_c00194{bottom:859.440000pt;}
.y9_c00194{bottom:889.173333pt;}
.y8_c00194{bottom:918.906667pt;}
.y7_c00194{bottom:948.506667pt;}
.y6_c00194{bottom:977.973333pt;}
.y5_c00194{bottom:1007.573333pt;}
.y4_c00194{bottom:1037.306667pt;}
.y3_c00194{bottom:1067.040000pt;}
.y2_c00194{bottom:1096.506667pt;}
.y1_c00194{bottom:1126.106667pt;}
.h3_c00194{height:11.733399pt;}
.h4_c00194{height:38.937500pt;}
.h2_c00194{height:108.041667pt;}
.h0_c00194{height:1229.733333pt;}
.h1_c00194{height:1230.000000pt;}
.w2_c00194{width:93.222667pt;}
.w0_c00194{width:780.466667pt;}
.w1_c00194{width:780.666667pt;}
.x0_c00194{left:0.000000pt;}
.xb_c00194{left:39.600000pt;}
.x8_c00194{left:40.533333pt;}
.x6_c00194{left:41.466667pt;}
.x5_c00194{left:42.400000pt;}
.x4_c00194{left:43.866667pt;}
.x9_c00194{left:44.800000pt;}
.x3_c00194{left:45.866667pt;}
.x2_c00194{left:46.800000pt;}
.x1_c00194{left:48.266667pt;}
.xa_c00194{left:49.200000pt;}
.xd_c00194{left:74.133333pt;}
.xc_c00194{left:100.000000pt;}
.x7_c00194{left:176.400000pt;}
.xe_c00194{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81bb5e33a7dda30812c66e88.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_e098b823be99881c118bb0d5.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_5e6f5f2afb8581733ec35866.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_bc20678984d2d41a2ae75a43.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls3_c00195{letter-spacing:-3.000000px;}
.ls2_c00195{letter-spacing:0.000000px;}
.ls1_c00195{letter-spacing:3.000000px;}
.ls0_c00195{letter-spacing:16.200000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:-51.000000px;}
.ws0_c00195{word-spacing:-23.136000px;}
.ws2_c00195{word-spacing:0.000000px;}
._3d_c00195{margin-left:-32.784000px;}
._8_c00195{margin-left:-31.680000px;}
._35_c00195{margin-left:-23.688000px;}
._3e_c00195{margin-left:-21.489000px;}
._37_c00195{margin-left:-20.448000px;}
._32_c00195{margin-left:-18.816000px;}
._39_c00195{margin-left:-16.608000px;}
._31_c00195{margin-left:-14.976000px;}
._1e_c00195{margin-left:-13.440000px;}
._30_c00195{margin-left:-11.856000px;}
._3b_c00195{margin-left:-10.848000px;}
._22_c00195{margin-left:-9.792000px;}
._21_c00195{margin-left:-7.440000px;}
._13_c00195{margin-left:-6.144000px;}
._14_c00195{margin-left:-4.320000px;}
._19_c00195{margin-left:-2.976000px;}
._a_c00195{margin-left:-1.824000px;}
._6_c00195{width:1.344000px;}
._5_c00195{width:2.880000px;}
._0_c00195{width:4.704000px;}
._7_c00195{width:5.856000px;}
._1_c00195{width:7.008000px;}
._20_c00195{width:8.640000px;}
._3_c00195{width:9.696000px;}
._1d_c00195{width:10.848000px;}
._d_c00195{width:12.480000px;}
._17_c00195{width:14.304000px;}
._16_c00195{width:15.648000px;}
._1c_c00195{width:17.664000px;}
._2e_c00195{width:18.912000px;}
._2_c00195{width:21.024000px;}
._c_c00195{width:22.080000px;}
._1f_c00195{width:24.960000px;}
._15_c00195{width:26.400000px;}
._11_c00195{width:27.744000px;}
._2f_c00195{width:29.088000px;}
._b_c00195{width:31.008000px;}
._24_c00195{width:32.256000px;}
._2d_c00195{width:33.408000px;}
._12_c00195{width:35.040000px;}
._10_c00195{width:37.248000px;}
._2c_c00195{width:38.592000px;}
._9_c00195{width:40.224000px;}
._2a_c00195{width:41.280000px;}
._1b_c00195{width:43.296000px;}
._f_c00195{width:45.216000px;}
._4_c00195{width:47.232000px;}
._28_c00195{width:48.480000px;}
._e_c00195{width:49.920000px;}
._1a_c00195{width:51.264000px;}
._18_c00195{width:53.760000px;}
._26_c00195{width:54.912000px;}
._25_c00195{width:56.352000px;}
._23_c00195{width:58.248000px;}
._2b_c00195{width:59.616000px;}
._3c_c00195{width:66.600000px;}
._29_c00195{width:71.520000px;}
._33_c00195{width:73.248000px;}
._36_c00195{width:76.824000px;}
._27_c00195{width:85.440000px;}
._34_c00195{width:346.824000px;}
._38_c00195{width:447.552000px;}
._3a_c00195{width:522.336000px;}
.fc2_c00195{color:transparent;}
.fc1_c00195{color:rgb(128,128,128);}
.fc0_c00195{color:rgb(0,0,0);}
.fs2_c00195{font-size:30.000000px;}
.fs3_c00195{font-size:36.000000px;}
.fs5_c00195{font-size:48.000000px;}
.fs4_c00195{font-size:87.000000px;}
.fs0_c00195{font-size:96.000000px;}
.fs1_c00195{font-size:102.000000px;}
.y0_c00195{bottom:0.000000px;}
.y1e_c00195{bottom:3.105000px;}
.y1d_c00195{bottom:7.228357px;}
.y1c_c00195{bottom:327.480000px;}
.y1b_c00195{bottom:359.880000px;}
.y1a_c00195{bottom:392.280000px;}
.y19_c00195{bottom:426.330000px;}
.y18_c00195{bottom:459.780000px;}
.y17_c00195{bottom:532.230000px;}
.y16_c00195{bottom:566.280000px;}
.y15_c00195{bottom:600.180000px;}
.y14_c00195{bottom:634.230000px;}
.y13_c00195{bottom:667.680000px;}
.y12_c00195{bottom:701.430000px;}
.y11_c00195{bottom:735.030000px;}
.y10_c00195{bottom:768.930000px;}
.yf_c00195{bottom:802.680000px;}
.ye_c00195{bottom:836.430000px;}
.yd_c00195{bottom:870.030000px;}
.yc_c00195{bottom:903.180000px;}
.yb_c00195{bottom:936.630000px;}
.ya_c00195{bottom:969.930000px;}
.y9_c00195{bottom:1003.380000px;}
.y8_c00195{bottom:1036.530000px;}
.y7_c00195{bottom:1069.980000px;}
.y6_c00195{bottom:1103.580000px;}
.y5_c00195{bottom:1136.730000px;}
.y4_c00195{bottom:1169.880000px;}
.y3_c00195{bottom:1202.880000px;}
.y2_c00195{bottom:1236.630000px;}
.y1_c00195{bottom:1269.780000px;}
.h5_c00195{height:13.200074px;}
.h6_c00195{height:43.804688px;}
.h3_c00195{height:45.580078px;}
.h4_c00195{height:101.825684px;}
.h2_c00195{height:121.546875px;}
.h0_c00195{height:1382.700000px;}
.h1_c00195{height:1383.000000px;}
.w2_c00195{width:104.875500px;}
.w0_c00195{width:863.175000px;}
.w1_c00195{width:863.250000px;}
.x0_c00195{left:0.000000px;}
.x6_c00195{left:263.250000px;}
.x2_c00195{left:264.300000px;}
.x3_c00195{left:265.350000px;}
.x1_c00195{left:266.400000px;}
.x4_c00195{left:267.600000px;}
.x5_c00195{left:269.700000px;}
.x8_c00195{left:283.050000px;}
.x9_c00195{left:295.950000px;}
.x7_c00195{left:305.400000px;}
.xa_c00195{left:383.401749px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls3_c00195{letter-spacing:-2.666667pt;}
.ls2_c00195{letter-spacing:0.000000pt;}
.ls1_c00195{letter-spacing:2.666667pt;}
.ls0_c00195{letter-spacing:14.400000pt;}
.ws1_c00195{word-spacing:-45.333333pt;}
.ws0_c00195{word-spacing:-20.565333pt;}
.ws2_c00195{word-spacing:0.000000pt;}
._3d_c00195{margin-left:-29.141333pt;}
._8_c00195{margin-left:-28.160000pt;}
._35_c00195{margin-left:-21.056000pt;}
._3e_c00195{margin-left:-19.101333pt;}
._37_c00195{margin-left:-18.176000pt;}
._32_c00195{margin-left:-16.725333pt;}
._39_c00195{margin-left:-14.762667pt;}
._31_c00195{margin-left:-13.312000pt;}
._1e_c00195{margin-left:-11.946667pt;}
._30_c00195{margin-left:-10.538667pt;}
._3b_c00195{margin-left:-9.642667pt;}
._22_c00195{margin-left:-8.704000pt;}
._21_c00195{margin-left:-6.613333pt;}
._13_c00195{margin-left:-5.461333pt;}
._14_c00195{margin-left:-3.840000pt;}
._19_c00195{margin-left:-2.645333pt;}
._a_c00195{margin-left:-1.621333pt;}
._6_c00195{width:1.194667pt;}
._5_c00195{width:2.560000pt;}
._0_c00195{width:4.181333pt;}
._7_c00195{width:5.205333pt;}
._1_c00195{width:6.229333pt;}
._20_c00195{width:7.680000pt;}
._3_c00195{width:8.618667pt;}
._1d_c00195{width:9.642667pt;}
._d_c00195{width:11.093333pt;}
._17_c00195{width:12.714667pt;}
._16_c00195{width:13.909333pt;}
._1c_c00195{width:15.701333pt;}
._2e_c00195{width:16.810667pt;}
._2_c00195{width:18.688000pt;}
._c_c00195{width:19.626667pt;}
._1f_c00195{width:22.186667pt;}
._15_c00195{width:23.466667pt;}
._11_c00195{width:24.661333pt;}
._2f_c00195{width:25.856000pt;}
._b_c00195{width:27.562667pt;}
._24_c00195{width:28.672000pt;}
._2d_c00195{width:29.696000pt;}
._12_c00195{width:31.146667pt;}
._10_c00195{width:33.109333pt;}
._2c_c00195{width:34.304000pt;}
._9_c00195{width:35.754667pt;}
._2a_c00195{width:36.693333pt;}
._1b_c00195{width:38.485333pt;}
._f_c00195{width:40.192000pt;}
._4_c00195{width:41.984000pt;}
._28_c00195{width:43.093333pt;}
._e_c00195{width:44.373333pt;}
._1a_c00195{width:45.568000pt;}
._18_c00195{width:47.786667pt;}
._26_c00195{width:48.810667pt;}
._25_c00195{width:50.090667pt;}
._23_c00195{width:51.776000pt;}
._2b_c00195{width:52.992000pt;}
._3c_c00195{width:59.200000pt;}
._29_c00195{width:63.573333pt;}
._33_c00195{width:65.109333pt;}
._36_c00195{width:68.288000pt;}
._27_c00195{width:75.946667pt;}
._34_c00195{width:308.288000pt;}
._38_c00195{width:397.824000pt;}
._3a_c00195{width:464.298667pt;}
.fs2_c00195{font-size:26.666667pt;}
.fs3_c00195{font-size:32.000000pt;}
.fs5_c00195{font-size:42.666667pt;}
.fs4_c00195{font-size:77.333333pt;}
.fs0_c00195{font-size:85.333333pt;}
.fs1_c00195{font-size:90.666667pt;}
.y0_c00195{bottom:0.000000pt;}
.y1e_c00195{bottom:2.760000pt;}
.y1d_c00195{bottom:6.425206pt;}
.y1c_c00195{bottom:291.093333pt;}
.y1b_c00195{bottom:319.893333pt;}
.y1a_c00195{bottom:348.693333pt;}
.y19_c00195{bottom:378.960000pt;}
.y18_c00195{bottom:408.693333pt;}
.y17_c00195{bottom:473.093333pt;}
.y16_c00195{bottom:503.360000pt;}
.y15_c00195{bottom:533.493333pt;}
.y14_c00195{bottom:563.760000pt;}
.y13_c00195{bottom:593.493333pt;}
.y12_c00195{bottom:623.493333pt;}
.y11_c00195{bottom:653.360000pt;}
.y10_c00195{bottom:683.493333pt;}
.yf_c00195{bottom:713.493333pt;}
.ye_c00195{bottom:743.493333pt;}
.yd_c00195{bottom:773.360000pt;}
.yc_c00195{bottom:802.826667pt;}
.yb_c00195{bottom:832.560000pt;}
.ya_c00195{bottom:862.160000pt;}
.y9_c00195{bottom:891.893333pt;}
.y8_c00195{bottom:921.360000pt;}
.y7_c00195{bottom:951.093333pt;}
.y6_c00195{bottom:980.960000pt;}
.y5_c00195{bottom:1010.426667pt;}
.y4_c00195{bottom:1039.893333pt;}
.y3_c00195{bottom:1069.226667pt;}
.y2_c00195{bottom:1099.226667pt;}
.y1_c00195{bottom:1128.693333pt;}
.h5_c00195{height:11.733399pt;}
.h6_c00195{height:38.937500pt;}
.h3_c00195{height:40.515625pt;}
.h4_c00195{height:90.511719pt;}
.h2_c00195{height:108.041667pt;}
.h0_c00195{height:1229.066667pt;}
.h1_c00195{height:1229.333333pt;}
.w2_c00195{width:93.222667pt;}
.w0_c00195{width:767.266667pt;}
.w1_c00195{width:767.333333pt;}
.x0_c00195{left:0.000000pt;}
.x6_c00195{left:234.000000pt;}
.x2_c00195{left:234.933333pt;}
.x3_c00195{left:235.866667pt;}
.x1_c00195{left:236.800000pt;}
.x4_c00195{left:237.866667pt;}
.x5_c00195{left:239.733333pt;}
.x8_c00195{left:251.600000pt;}
.x9_c00195{left:263.066667pt;}
.x7_c00195{left:271.466667pt;}
.xa_c00195{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b8094d53260614dced5cd51.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_5cfbba9468955e79f611b1f8.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_032e9cd8a5cdc3a6777513e3.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_e0a70aa8cf3cd98f0811a1a4.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00196;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls3_c00196{letter-spacing:-6.000000px;}
.ls2_c00196{letter-spacing:0.000000px;}
.ls4_c00196{letter-spacing:3.000000px;}
.ls0_c00196{letter-spacing:8.640000px;}
.ls1_c00196{letter-spacing:9.000000px;}
.ls5_c00196{letter-spacing:12.000000px;}
.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;}
}
.ws2_c00196{word-spacing:-75.504000px;}
.ws4_c00196{word-spacing:-42.084000px;}
.ws1_c00196{word-spacing:-34.014000px;}
.ws0_c00196{word-spacing:-29.967000px;}
.ws3_c00196{word-spacing:-23.136000px;}
.ws5_c00196{word-spacing:0.000000px;}
._1b_c00196{margin-left:-92.655000px;}
._3_c00196{margin-left:-86.400000px;}
._41_c00196{margin-left:-53.376000px;}
._1d_c00196{margin-left:-42.456000px;}
._1c_c00196{margin-left:-36.231000px;}
._5_c00196{margin-left:-33.600000px;}
._b_c00196{margin-left:-29.664000px;}
._7_c00196{margin-left:-28.512000px;}
._1_c00196{margin-left:-26.970000px;}
._2_c00196{margin-left:-25.056000px;}
._19_c00196{margin-left:-23.229000px;}
._4c_c00196{margin-left:-21.642000px;}
._9_c00196{margin-left:-19.008000px;}
._0_c00196{margin-left:-17.226000px;}
._a_c00196{margin-left:-14.400000px;}
._4b_c00196{margin-left:-13.056000px;}
._e_c00196{margin-left:-11.808000px;}
._f_c00196{margin-left:-9.180000px;}
._1f_c00196{margin-left:-7.863000px;}
._24_c00196{margin-left:-6.552000px;}
._23_c00196{margin-left:-5.382000px;}
._20_c00196{margin-left:-3.978000px;}
._22_c00196{margin-left:-2.574000px;}
._c_c00196{margin-left:-1.536000px;}
._1e_c00196{width:1.437000px;}
._2c_c00196{width:2.652000px;}
._2b_c00196{width:3.762000px;}
._28_c00196{width:5.184000px;}
._2e_c00196{width:6.624000px;}
._21_c00196{width:8.007000px;}
._26_c00196{width:9.714000px;}
._45_c00196{width:11.004000px;}
._31_c00196{width:12.213000px;}
._2a_c00196{width:13.917000px;}
._17_c00196{width:15.675000px;}
._39_c00196{width:16.749000px;}
._6_c00196{width:17.952000px;}
._3a_c00196{width:19.251000px;}
._11_c00196{width:20.592000px;}
._d_c00196{width:21.714000px;}
._12_c00196{width:24.804000px;}
._13_c00196{width:26.091000px;}
._42_c00196{width:27.477000px;}
._14_c00196{width:28.899000px;}
._34_c00196{width:30.873000px;}
._15_c00196{width:31.941000px;}
._37_c00196{width:33.216000px;}
._38_c00196{width:34.749000px;}
._10_c00196{width:36.612000px;}
._32_c00196{width:38.649000px;}
._4e_c00196{width:39.741000px;}
._3e_c00196{width:40.800000px;}
._48_c00196{width:42.192000px;}
._36_c00196{width:43.401000px;}
._3d_c00196{width:45.774000px;}
._35_c00196{width:47.502000px;}
._3b_c00196{width:49.770000px;}
._47_c00196{width:51.717000px;}
._29_c00196{width:52.974000px;}
._3f_c00196{width:54.504000px;}
._18_c00196{width:55.692000px;}
._4_c00196{width:56.928000px;}
._2d_c00196{width:58.284000px;}
._16_c00196{width:60.021000px;}
._2f_c00196{width:62.391000px;}
._49_c00196{width:63.969000px;}
._3c_c00196{width:67.470000px;}
._43_c00196{width:75.351000px;}
._33_c00196{width:81.918000px;}
._4a_c00196{width:94.380000px;}
._25_c00196{width:99.684000px;}
._44_c00196{width:101.007000px;}
._30_c00196{width:120.270000px;}
._46_c00196{width:159.552000px;}
._27_c00196{width:185.088000px;}
._4d_c00196{width:187.488000px;}
._40_c00196{width:198.276000px;}
._8_c00196{width:218.976000px;}
._1a_c00196{width:275.442000px;}
._50_c00196{width:874.425000px;}
._4f_c00196{width:985.056000px;}
.fc2_c00196{color:transparent;}
.fc1_c00196{color:rgb(128,128,128);}
.fc0_c00196{color:rgb(0,0,0);}
.fs5_c00196{font-size:24.000000px;}
.fs2_c00196{font-size:36.000000px;}
.fs8_c00196{font-size:48.000000px;}
.fs3_c00196{font-size:60.000000px;}
.fs6_c00196{font-size:84.000000px;}
.fs0_c00196{font-size:87.000000px;}
.fs1_c00196{font-size:96.000000px;}
.fs7_c00196{font-size:114.000000px;}
.fs4_c00196{font-size:117.000000px;}
.y0_c00196{bottom:0.000000px;}
.y26_c00196{bottom:3.105000px;}
.y25_c00196{bottom:7.228357px;}
.y24_c00196{bottom:80.730000px;}
.y23_c00196{bottom:114.780000px;}
.y22_c00196{bottom:149.130000px;}
.y21_c00196{bottom:182.880000px;}
.y20_c00196{bottom:216.630000px;}
.y1f_c00196{bottom:250.830000px;}
.y1e_c00196{bottom:284.580000px;}
.y1d_c00196{bottom:318.330000px;}
.y1c_c00196{bottom:352.080000px;}
.y1b_c00196{bottom:385.380000px;}
.y1a_c00196{bottom:419.130000px;}
.y19_c00196{bottom:452.580000px;}
.y18_c00196{bottom:486.030000px;}
.y17_c00196{bottom:519.180000px;}
.y16_c00196{bottom:552.180000px;}
.y15_c00196{bottom:584.580000px;}
.y14_c00196{bottom:618.930000px;}
.y13_c00196{bottom:652.980000px;}
.y12_c00196{bottom:686.130000px;}
.y11_c00196{bottom:719.280000px;}
.y10_c00196{bottom:752.730000px;}
.yf_c00196{bottom:786.330000px;}
.ye_c00196{bottom:819.180000px;}
.yd_c00196{bottom:852.480000px;}
.yc_c00196{bottom:885.630000px;}
.yb_c00196{bottom:919.080000px;}
.ya_c00196{bottom:952.830000px;}
.y9_c00196{bottom:985.530000px;}
.y8_c00196{bottom:1058.430000px;}
.y7_c00196{bottom:1108.680000px;}
.y6_c00196{bottom:1158.330000px;}
.y5_c00196{bottom:1196.130000px;}
.y4_c00196{bottom:1208.580000px;}
.y2_c00196{bottom:1259.280000px;}
.y3_c00196{bottom:1266.930000px;}
.y1_c00196{bottom:1271.130000px;}
.h6_c00196{height:13.200074px;}
.h7_c00196{height:43.804688px;}
.h4_c00196{height:75.966797px;}
.h2_c00196{height:110.151855px;}
.h3_c00196{height:121.546875px;}
.h5_c00196{height:124.839000px;}
.h0_c00196{height:1367.850000px;}
.h1_c00196{height:1368.000000px;}
.w1_c00196{width:104.875500px;}
.w0_c00196{width:867.750000px;}
.x0_c00196{left:0.000000px;}
.x10_c00196{left:48.900000px;}
.xc_c00196{left:52.650000px;}
.xd_c00196{left:53.700000px;}
.xe_c00196{left:54.750000px;}
.x11_c00196{left:55.800000px;}
.xf_c00196{left:102.900000px;}
.x9_c00196{left:103.950000px;}
.x4_c00196{left:119.250000px;}
.x6_c00196{left:194.700000px;}
.x7_c00196{left:244.350000px;}
.xa_c00196{left:246.600000px;}
.x8_c00196{left:277.800000px;}
.xb_c00196{left:292.500000px;}
.x12_c00196{left:385.689240px;}
.x2_c00196{left:436.050000px;}
.x5_c00196{left:438.450000px;}
.x1_c00196{left:501.750000px;}
.x3_c00196{left:537.750000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls3_c00196{letter-spacing:-5.333333pt;}
.ls2_c00196{letter-spacing:0.000000pt;}
.ls4_c00196{letter-spacing:2.666667pt;}
.ls0_c00196{letter-spacing:7.680000pt;}
.ls1_c00196{letter-spacing:8.000000pt;}
.ls5_c00196{letter-spacing:10.666667pt;}
.ws2_c00196{word-spacing:-67.114667pt;}
.ws4_c00196{word-spacing:-37.408000pt;}
.ws1_c00196{word-spacing:-30.234667pt;}
.ws0_c00196{word-spacing:-26.637333pt;}
.ws3_c00196{word-spacing:-20.565333pt;}
.ws5_c00196{word-spacing:0.000000pt;}
._1b_c00196{margin-left:-82.360000pt;}
._3_c00196{margin-left:-76.800000pt;}
._41_c00196{margin-left:-47.445333pt;}
._1d_c00196{margin-left:-37.738667pt;}
._1c_c00196{margin-left:-32.205333pt;}
._5_c00196{margin-left:-29.866667pt;}
._b_c00196{margin-left:-26.368000pt;}
._7_c00196{margin-left:-25.344000pt;}
._1_c00196{margin-left:-23.973333pt;}
._2_c00196{margin-left:-22.272000pt;}
._19_c00196{margin-left:-20.648000pt;}
._4c_c00196{margin-left:-19.237333pt;}
._9_c00196{margin-left:-16.896000pt;}
._0_c00196{margin-left:-15.312000pt;}
._a_c00196{margin-left:-12.800000pt;}
._4b_c00196{margin-left:-11.605333pt;}
._e_c00196{margin-left:-10.496000pt;}
._f_c00196{margin-left:-8.160000pt;}
._1f_c00196{margin-left:-6.989333pt;}
._24_c00196{margin-left:-5.824000pt;}
._23_c00196{margin-left:-4.784000pt;}
._20_c00196{margin-left:-3.536000pt;}
._22_c00196{margin-left:-2.288000pt;}
._c_c00196{margin-left:-1.365333pt;}
._1e_c00196{width:1.277333pt;}
._2c_c00196{width:2.357333pt;}
._2b_c00196{width:3.344000pt;}
._28_c00196{width:4.608000pt;}
._2e_c00196{width:5.888000pt;}
._21_c00196{width:7.117333pt;}
._26_c00196{width:8.634667pt;}
._45_c00196{width:9.781333pt;}
._31_c00196{width:10.856000pt;}
._2a_c00196{width:12.370667pt;}
._17_c00196{width:13.933333pt;}
._39_c00196{width:14.888000pt;}
._6_c00196{width:15.957333pt;}
._3a_c00196{width:17.112000pt;}
._11_c00196{width:18.304000pt;}
._d_c00196{width:19.301333pt;}
._12_c00196{width:22.048000pt;}
._13_c00196{width:23.192000pt;}
._42_c00196{width:24.424000pt;}
._14_c00196{width:25.688000pt;}
._34_c00196{width:27.442667pt;}
._15_c00196{width:28.392000pt;}
._37_c00196{width:29.525333pt;}
._38_c00196{width:30.888000pt;}
._10_c00196{width:32.544000pt;}
._32_c00196{width:34.354667pt;}
._4e_c00196{width:35.325333pt;}
._3e_c00196{width:36.266667pt;}
._48_c00196{width:37.504000pt;}
._36_c00196{width:38.578667pt;}
._3d_c00196{width:40.688000pt;}
._35_c00196{width:42.224000pt;}
._3b_c00196{width:44.240000pt;}
._47_c00196{width:45.970667pt;}
._29_c00196{width:47.088000pt;}
._3f_c00196{width:48.448000pt;}
._18_c00196{width:49.504000pt;}
._4_c00196{width:50.602667pt;}
._2d_c00196{width:51.808000pt;}
._16_c00196{width:53.352000pt;}
._2f_c00196{width:55.458667pt;}
._49_c00196{width:56.861333pt;}
._3c_c00196{width:59.973333pt;}
._43_c00196{width:66.978667pt;}
._33_c00196{width:72.816000pt;}
._4a_c00196{width:83.893333pt;}
._25_c00196{width:88.608000pt;}
._44_c00196{width:89.784000pt;}
._30_c00196{width:106.906667pt;}
._46_c00196{width:141.824000pt;}
._27_c00196{width:164.522667pt;}
._4d_c00196{width:166.656000pt;}
._40_c00196{width:176.245333pt;}
._8_c00196{width:194.645333pt;}
._1a_c00196{width:244.837333pt;}
._50_c00196{width:777.266667pt;}
._4f_c00196{width:875.605333pt;}
.fs5_c00196{font-size:21.333333pt;}
.fs2_c00196{font-size:32.000000pt;}
.fs8_c00196{font-size:42.666667pt;}
.fs3_c00196{font-size:53.333333pt;}
.fs6_c00196{font-size:74.666667pt;}
.fs0_c00196{font-size:77.333333pt;}
.fs1_c00196{font-size:85.333333pt;}
.fs7_c00196{font-size:101.333333pt;}
.fs4_c00196{font-size:104.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y26_c00196{bottom:2.760000pt;}
.y25_c00196{bottom:6.425206pt;}
.y24_c00196{bottom:71.760000pt;}
.y23_c00196{bottom:102.026667pt;}
.y22_c00196{bottom:132.560000pt;}
.y21_c00196{bottom:162.560000pt;}
.y20_c00196{bottom:192.560000pt;}
.y1f_c00196{bottom:222.960000pt;}
.y1e_c00196{bottom:252.960000pt;}
.y1d_c00196{bottom:282.960000pt;}
.y1c_c00196{bottom:312.960000pt;}
.y1b_c00196{bottom:342.560000pt;}
.y1a_c00196{bottom:372.560000pt;}
.y19_c00196{bottom:402.293333pt;}
.y18_c00196{bottom:432.026667pt;}
.y17_c00196{bottom:461.493333pt;}
.y16_c00196{bottom:490.826667pt;}
.y15_c00196{bottom:519.626667pt;}
.y14_c00196{bottom:550.160000pt;}
.y13_c00196{bottom:580.426667pt;}
.y12_c00196{bottom:609.893333pt;}
.y11_c00196{bottom:639.360000pt;}
.y10_c00196{bottom:669.093333pt;}
.yf_c00196{bottom:698.960000pt;}
.ye_c00196{bottom:728.160000pt;}
.yd_c00196{bottom:757.760000pt;}
.yc_c00196{bottom:787.226667pt;}
.yb_c00196{bottom:816.960000pt;}
.ya_c00196{bottom:846.960000pt;}
.y9_c00196{bottom:876.026667pt;}
.y8_c00196{bottom:940.826667pt;}
.y7_c00196{bottom:985.493333pt;}
.y6_c00196{bottom:1029.626667pt;}
.y5_c00196{bottom:1063.226667pt;}
.y4_c00196{bottom:1074.293333pt;}
.y2_c00196{bottom:1119.360000pt;}
.y3_c00196{bottom:1126.160000pt;}
.y1_c00196{bottom:1129.893333pt;}
.h6_c00196{height:11.733399pt;}
.h7_c00196{height:38.937500pt;}
.h4_c00196{height:67.526042pt;}
.h2_c00196{height:97.912760pt;}
.h3_c00196{height:108.041667pt;}
.h5_c00196{height:110.968000pt;}
.h0_c00196{height:1215.866667pt;}
.h1_c00196{height:1216.000000pt;}
.w1_c00196{width:93.222667pt;}
.w0_c00196{width:771.333333pt;}
.x0_c00196{left:0.000000pt;}
.x10_c00196{left:43.466667pt;}
.xc_c00196{left:46.800000pt;}
.xd_c00196{left:47.733333pt;}
.xe_c00196{left:48.666667pt;}
.x11_c00196{left:49.600000pt;}
.xf_c00196{left:91.466667pt;}
.x9_c00196{left:92.400000pt;}
.x4_c00196{left:106.000000pt;}
.x6_c00196{left:173.066667pt;}
.x7_c00196{left:217.200000pt;}
.xa_c00196{left:219.200000pt;}
.x8_c00196{left:246.933333pt;}
.xb_c00196{left:260.000000pt;}
.x12_c00196{left:342.834880pt;}
.x2_c00196{left:387.600000pt;}
.x5_c00196{left:389.733333pt;}
.x1_c00196{left:446.000000pt;}
.x3_c00196{left:478.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_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_c9868e42c22917cac67efe04.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;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:ff2_c00197;src:url('chunks/assets/font_cd95aa3bcc940ab03d6f795c.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_d2d4aa7b319124b6f0b5fa1e.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls2_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:13.800000px;}
.ls1_c00197{letter-spacing:16.200000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00197{word-spacing:-23.136000px;}
.ws0_c00197{word-spacing:-20.244000px;}
.ws2_c00197{word-spacing:0.000000px;}
._36_c00197{margin-left:-38.256000px;}
._43_c00197{margin-left:-25.824000px;}
._39_c00197{margin-left:-21.168000px;}
._c_c00197{margin-left:-19.776000px;}
._3a_c00197{margin-left:-17.664000px;}
._37_c00197{margin-left:-15.264000px;}
._14_c00197{margin-left:-12.672000px;}
._38_c00197{margin-left:-10.944000px;}
._16_c00197{margin-left:-9.504000px;}
._17_c00197{margin-left:-8.256000px;}
._15_c00197{margin-left:-7.104000px;}
._22_c00197{margin-left:-5.856000px;}
._28_c00197{margin-left:-4.800000px;}
._0_c00197{margin-left:-3.648000px;}
._11_c00197{margin-left:-2.016000px;}
._9_c00197{width:1.632000px;}
._a_c00197{width:2.784000px;}
._5_c00197{width:4.128000px;}
._24_c00197{width:5.136000px;}
._3_c00197{width:6.144000px;}
._6_c00197{width:7.296000px;}
._2_c00197{width:8.832000px;}
._12_c00197{width:10.368000px;}
._7_c00197{width:11.712000px;}
._b_c00197{width:13.248000px;}
._8_c00197{width:14.784000px;}
._1_c00197{width:16.704000px;}
._18_c00197{width:18.144000px;}
._19_c00197{width:19.968000px;}
._10_c00197{width:21.408000px;}
._d_c00197{width:25.152000px;}
._13_c00197{width:27.648000px;}
._23_c00197{width:29.376000px;}
._4_c00197{width:30.432000px;}
._f_c00197{width:31.488000px;}
._25_c00197{width:32.760000px;}
._20_c00197{width:34.080000px;}
._1e_c00197{width:35.904000px;}
._1b_c00197{width:37.440000px;}
._26_c00197{width:38.592000px;}
._e_c00197{width:40.704000px;}
._42_c00197{width:42.144000px;}
._1c_c00197{width:43.680000px;}
._1a_c00197{width:45.600000px;}
._21_c00197{width:46.968000px;}
._3d_c00197{width:48.672000px;}
._3c_c00197{width:50.112000px;}
._3b_c00197{width:51.312000px;}
._30_c00197{width:54.096000px;}
._32_c00197{width:56.592000px;}
._1d_c00197{width:58.080000px;}
._29_c00197{width:59.904000px;}
._2a_c00197{width:63.168000px;}
._2c_c00197{width:64.944000px;}
._2e_c00197{width:67.296000px;}
._1f_c00197{width:69.024000px;}
._31_c00197{width:71.040000px;}
._33_c00197{width:73.536000px;}
._3e_c00197{width:78.120000px;}
._2d_c00197{width:80.448000px;}
._34_c00197{width:86.496000px;}
._3f_c00197{width:91.104000px;}
._27_c00197{width:93.216000px;}
._2f_c00197{width:94.680000px;}
._40_c00197{width:137.568000px;}
._41_c00197{width:189.696000px;}
._2b_c00197{width:218.016000px;}
._35_c00197{width:232.896000px;}
.fc2_c00197{color:transparent;}
.fc1_c00197{color:rgb(128,128,128);}
.fc0_c00197{color:rgb(0,0,0);}
.fs3_c00197{font-size:48.000000px;}
.fs2_c00197{font-size:84.000000px;}
.fs1_c00197{font-size:96.000000px;}
.fs0_c00197{font-size:102.000000px;}
.y0_c00197{bottom:0.000000px;}
.y26_c00197{bottom:3.105000px;}
.y25_c00197{bottom:7.228357px;}
.y24_c00197{bottom:80.730000px;}
.y23_c00197{bottom:116.730000px;}
.y22_c00197{bottom:150.630000px;}
.y21_c00197{bottom:184.980000px;}
.y20_c00197{bottom:218.730000px;}
.y1f_c00197{bottom:253.830000px;}
.y1e_c00197{bottom:288.180000px;}
.y1d_c00197{bottom:321.630000px;}
.y1c_c00197{bottom:355.080000px;}
.y1b_c00197{bottom:388.080000px;}
.y1a_c00197{bottom:425.880000px;}
.y19_c00197{bottom:458.280000px;}
.y18_c00197{bottom:492.030000px;}
.y17_c00197{bottom:524.430000px;}
.y16_c00197{bottom:559.230000px;}
.y15_c00197{bottom:593.280000px;}
.y14_c00197{bottom:627.030000px;}
.y13_c00197{bottom:659.880000px;}
.y12_c00197{bottom:693.630000px;}
.y11_c00197{bottom:727.680000px;}
.y10_c00197{bottom:760.080000px;}
.yf_c00197{bottom:791.880000px;}
.ye_c00197{bottom:830.280000px;}
.yd_c00197{bottom:862.680000px;}
.yc_c00197{bottom:895.830000px;}
.yb_c00197{bottom:929.880000px;}
.ya_c00197{bottom:962.880000px;}
.y9_c00197{bottom:995.580000px;}
.y8_c00197{bottom:1029.330000px;}
.y7_c00197{bottom:1062.780000px;}
.y6_c00197{bottom:1095.930000px;}
.y5_c00197{bottom:1128.930000px;}
.y4_c00197{bottom:1162.080000px;}
.y3_c00197{bottom:1195.530000px;}
.y2_c00197{bottom:1227.780000px;}
.y1_c00197{bottom:1261.530000px;}
.h3_c00197{height:13.200074px;}
.h4_c00197{height:43.804688px;}
.h2_c00197{height:121.546875px;}
.h0_c00197{height:1382.700000px;}
.h1_c00197{height:1383.000000px;}
.w2_c00197{width:104.875500px;}
.w0_c00197{width:863.175000px;}
.w1_c00197{width:863.250000px;}
.x0_c00197{left:0.000000px;}
.xa_c00197{left:139.500000px;}
.x7_c00197{left:141.150000px;}
.x5_c00197{left:151.500000px;}
.x4_c00197{left:215.700000px;}
.xc_c00197{left:242.100000px;}
.xb_c00197{left:243.300000px;}
.x9_c00197{left:246.000000px;}
.x8_c00197{left:247.050000px;}
.x3_c00197{left:248.700000px;}
.x1_c00197{left:249.750000px;}
.x2_c00197{left:251.400000px;}
.xe_c00197{left:383.401749px;}
.x6_c00197{left:394.500000px;}
.xd_c00197{left:786.000000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls2_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:12.266667pt;}
.ls1_c00197{letter-spacing:14.400000pt;}
.ws1_c00197{word-spacing:-20.565333pt;}
.ws0_c00197{word-spacing:-17.994667pt;}
.ws2_c00197{word-spacing:0.000000pt;}
._36_c00197{margin-left:-34.005333pt;}
._43_c00197{margin-left:-22.954667pt;}
._39_c00197{margin-left:-18.816000pt;}
._c_c00197{margin-left:-17.578667pt;}
._3a_c00197{margin-left:-15.701333pt;}
._37_c00197{margin-left:-13.568000pt;}
._14_c00197{margin-left:-11.264000pt;}
._38_c00197{margin-left:-9.728000pt;}
._16_c00197{margin-left:-8.448000pt;}
._17_c00197{margin-left:-7.338667pt;}
._15_c00197{margin-left:-6.314667pt;}
._22_c00197{margin-left:-5.205333pt;}
._28_c00197{margin-left:-4.266667pt;}
._0_c00197{margin-left:-3.242667pt;}
._11_c00197{margin-left:-1.792000pt;}
._9_c00197{width:1.450667pt;}
._a_c00197{width:2.474667pt;}
._5_c00197{width:3.669333pt;}
._24_c00197{width:4.565333pt;}
._3_c00197{width:5.461333pt;}
._6_c00197{width:6.485333pt;}
._2_c00197{width:7.850667pt;}
._12_c00197{width:9.216000pt;}
._7_c00197{width:10.410667pt;}
._b_c00197{width:11.776000pt;}
._8_c00197{width:13.141333pt;}
._1_c00197{width:14.848000pt;}
._18_c00197{width:16.128000pt;}
._19_c00197{width:17.749333pt;}
._10_c00197{width:19.029333pt;}
._d_c00197{width:22.357333pt;}
._13_c00197{width:24.576000pt;}
._23_c00197{width:26.112000pt;}
._4_c00197{width:27.050667pt;}
._f_c00197{width:27.989333pt;}
._25_c00197{width:29.120000pt;}
._20_c00197{width:30.293333pt;}
._1e_c00197{width:31.914667pt;}
._1b_c00197{width:33.280000pt;}
._26_c00197{width:34.304000pt;}
._e_c00197{width:36.181333pt;}
._42_c00197{width:37.461333pt;}
._1c_c00197{width:38.826667pt;}
._1a_c00197{width:40.533333pt;}
._21_c00197{width:41.749333pt;}
._3d_c00197{width:43.264000pt;}
._3c_c00197{width:44.544000pt;}
._3b_c00197{width:45.610667pt;}
._30_c00197{width:48.085333pt;}
._32_c00197{width:50.304000pt;}
._1d_c00197{width:51.626667pt;}
._29_c00197{width:53.248000pt;}
._2a_c00197{width:56.149333pt;}
._2c_c00197{width:57.728000pt;}
._2e_c00197{width:59.818667pt;}
._1f_c00197{width:61.354667pt;}
._31_c00197{width:63.146667pt;}
._33_c00197{width:65.365333pt;}
._3e_c00197{width:69.440000pt;}
._2d_c00197{width:71.509333pt;}
._34_c00197{width:76.885333pt;}
._3f_c00197{width:80.981333pt;}
._27_c00197{width:82.858667pt;}
._2f_c00197{width:84.160000pt;}
._40_c00197{width:122.282667pt;}
._41_c00197{width:168.618667pt;}
._2b_c00197{width:193.792000pt;}
._35_c00197{width:207.018667pt;}
.fs3_c00197{font-size:42.666667pt;}
.fs2_c00197{font-size:74.666667pt;}
.fs1_c00197{font-size:85.333333pt;}
.fs0_c00197{font-size:90.666667pt;}
.y0_c00197{bottom:0.000000pt;}
.y26_c00197{bottom:2.760000pt;}
.y25_c00197{bottom:6.425206pt;}
.y24_c00197{bottom:71.760000pt;}
.y23_c00197{bottom:103.760000pt;}
.y22_c00197{bottom:133.893333pt;}
.y21_c00197{bottom:164.426667pt;}
.y20_c00197{bottom:194.426667pt;}
.y1f_c00197{bottom:225.626667pt;}
.y1e_c00197{bottom:256.160000pt;}
.y1d_c00197{bottom:285.893333pt;}
.y1c_c00197{bottom:315.626667pt;}
.y1b_c00197{bottom:344.960000pt;}
.y1a_c00197{bottom:378.560000pt;}
.y19_c00197{bottom:407.360000pt;}
.y18_c00197{bottom:437.360000pt;}
.y17_c00197{bottom:466.160000pt;}
.y16_c00197{bottom:497.093333pt;}
.y15_c00197{bottom:527.360000pt;}
.y14_c00197{bottom:557.360000pt;}
.y13_c00197{bottom:586.560000pt;}
.y12_c00197{bottom:616.560000pt;}
.y11_c00197{bottom:646.826667pt;}
.y10_c00197{bottom:675.626667pt;}
.yf_c00197{bottom:703.893333pt;}
.ye_c00197{bottom:738.026667pt;}
.yd_c00197{bottom:766.826667pt;}
.yc_c00197{bottom:796.293333pt;}
.yb_c00197{bottom:826.560000pt;}
.ya_c00197{bottom:855.893333pt;}
.y9_c00197{bottom:884.960000pt;}
.y8_c00197{bottom:914.960000pt;}
.y7_c00197{bottom:944.693333pt;}
.y6_c00197{bottom:974.160000pt;}
.y5_c00197{bottom:1003.493333pt;}
.y4_c00197{bottom:1032.960000pt;}
.y3_c00197{bottom:1062.693333pt;}
.y2_c00197{bottom:1091.360000pt;}
.y1_c00197{bottom:1121.360000pt;}
.h3_c00197{height:11.733399pt;}
.h4_c00197{height:38.937500pt;}
.h2_c00197{height:108.041667pt;}
.h0_c00197{height:1229.066667pt;}
.h1_c00197{height:1229.333333pt;}
.w2_c00197{width:93.222667pt;}
.w0_c00197{width:767.266667pt;}
.w1_c00197{width:767.333333pt;}
.x0_c00197{left:0.000000pt;}
.xa_c00197{left:124.000000pt;}
.x7_c00197{left:125.466667pt;}
.x5_c00197{left:134.666667pt;}
.x4_c00197{left:191.733333pt;}
.xc_c00197{left:215.200000pt;}
.xb_c00197{left:216.266667pt;}
.x9_c00197{left:218.666667pt;}
.x8_c00197{left:219.600000pt;}
.x3_c00197{left:221.066667pt;}
.x1_c00197{left:222.000000pt;}
.x2_c00197{left:223.466667pt;}
.xe_c00197{left:340.801554pt;}
.x6_c00197{left:350.666667pt;}
.xd_c00197{left:698.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_285b6e8fed11d970c6b50ce6.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_e418feff590a0850f270d277.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls1_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:9.600000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00198{word-spacing:-63.504000px;}
.ws0_c00198{word-spacing:-23.136000px;}
.ws2_c00198{word-spacing:0.000000px;}
._29_c00198{margin-left:-81.600000px;}
._1c_c00198{margin-left:-25.344000px;}
._26_c00198{margin-left:-20.736000px;}
._31_c00198{margin-left:-18.912000px;}
._2d_c00198{margin-left:-9.504000px;}
._19_c00198{margin-left:-6.816000px;}
._1b_c00198{margin-left:-5.568000px;}
._36_c00198{margin-left:-4.512000px;}
._1a_c00198{margin-left:-3.456000px;}
._1f_c00198{margin-left:-2.400000px;}
._27_c00198{margin-left:-1.248000px;}
._b_c00198{width:1.920000px;}
._12_c00198{width:2.976000px;}
._2_c00198{width:4.032000px;}
._8_c00198{width:5.184000px;}
._5_c00198{width:6.240000px;}
._3_c00198{width:7.968000px;}
._0_c00198{width:9.408000px;}
._a_c00198{width:11.040000px;}
._e_c00198{width:12.576000px;}
._2a_c00198{width:13.752000px;}
._6_c00198{width:14.976000px;}
._11_c00198{width:16.896000px;}
._1_c00198{width:18.240000px;}
._16_c00198{width:19.584000px;}
._13_c00198{width:20.928000px;}
._2c_c00198{width:21.984000px;}
._d_c00198{width:24.768000px;}
._2b_c00198{width:25.824000px;}
._7_c00198{width:27.264000px;}
._28_c00198{width:28.416000px;}
._15_c00198{width:29.760000px;}
._10_c00198{width:31.104000px;}
._21_c00198{width:32.544000px;}
._2f_c00198{width:33.792000px;}
._9_c00198{width:34.848000px;}
._23_c00198{width:36.096000px;}
._30_c00198{width:37.728000px;}
._c_c00198{width:39.264000px;}
._4_c00198{width:40.800000px;}
._1d_c00198{width:42.912000px;}
._f_c00198{width:44.928000px;}
._22_c00198{width:47.232000px;}
._1e_c00198{width:48.864000px;}
._24_c00198{width:49.920000px;}
._18_c00198{width:51.120000px;}
._20_c00198{width:52.128000px;}
._17_c00198{width:54.120000px;}
._25_c00198{width:55.968000px;}
._14_c00198{width:58.176000px;}
._2e_c00198{width:60.480000px;}
._34_c00198{width:62.400000px;}
._35_c00198{width:181.440000px;}
._32_c00198{width:188.064000px;}
._33_c00198{width:190.464000px;}
.fc2_c00198{color:transparent;}
.fc1_c00198{color:rgb(128,128,128);}
.fc0_c00198{color:rgb(0,0,0);}
.fs3_c00198{font-size:48.000000px;}
.fs1_c00198{font-size:84.000000px;}
.fs0_c00198{font-size:96.000000px;}
.fs2_c00198{font-size:102.000000px;}
.y0_c00198{bottom:0.000000px;}
.y27_c00198{bottom:3.105000px;}
.y26_c00198{bottom:7.228369px;}
.y25_c00198{bottom:92.520000px;}
.y24_c00198{bottom:125.220000px;}
.y23_c00198{bottom:162.720000px;}
.y22_c00198{bottom:196.770000px;}
.y21_c00198{bottom:230.070000px;}
.y20_c00198{bottom:264.570000px;}
.y1f_c00198{bottom:297.570000px;}
.y1e_c00198{bottom:331.470000px;}
.y1d_c00198{bottom:364.770000px;}
.y1c_c00198{bottom:399.570000px;}
.y1b_c00198{bottom:433.020000px;}
.y1a_c00198{bottom:466.470000px;}
.y19_c00198{bottom:499.770000px;}
.y18_c00198{bottom:532.920000px;}
.y17_c00198{bottom:566.220000px;}
.y16_c00198{bottom:599.970000px;}
.y15_c00198{bottom:632.820000px;}
.y14_c00198{bottom:666.120000px;}
.y13_c00198{bottom:699.270000px;}
.y12_c00198{bottom:732.420000px;}
.y11_c00198{bottom:765.120000px;}
.y10_c00198{bottom:799.470000px;}
.yf_c00198{bottom:832.170000px;}
.ye_c00198{bottom:865.020000px;}
.yd_c00198{bottom:898.020000px;}
.yc_c00198{bottom:931.470000px;}
.yb_c00198{bottom:964.470000px;}
.ya_c00198{bottom:997.920000px;}
.y9_c00198{bottom:1031.070000px;}
.y8_c00198{bottom:1063.770000px;}
.y7_c00198{bottom:1097.520000px;}
.y6_c00198{bottom:1130.670000px;}
.y5_c00198{bottom:1162.920000px;}
.y4_c00198{bottom:1196.670000px;}
.y3_c00198{bottom:1229.820000px;}
.y2_c00198{bottom:1263.270000px;}
.y1_c00198{bottom:1296.570000px;}
.h3_c00198{height:13.200073px;}
.h4_c00198{height:43.804688px;}
.h2_c00198{height:121.546875px;}
.h0_c00198{height:1383.450000px;}
.h1_c00198{height:1383.750000px;}
.w2_c00198{width:104.875500px;}
.w0_c00198{width:878.025000px;}
.w1_c00198{width:878.250000px;}
.x0_c00198{left:0.000000px;}
.x7_c00198{left:42.450000px;}
.x6_c00198{left:43.500000px;}
.x5_c00198{left:44.550000px;}
.x4_c00198{left:46.200000px;}
.x3_c00198{left:47.250000px;}
.x2_c00198{left:48.300000px;}
.x8_c00198{left:94.200000px;}
.xa_c00198{left:390.826721px;}
.x1_c00198{left:525.750000px;}
.x9_c00198{left:546.300000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:8.533333pt;}
.ws1_c00198{word-spacing:-56.448000pt;}
.ws0_c00198{word-spacing:-20.565333pt;}
.ws2_c00198{word-spacing:0.000000pt;}
._29_c00198{margin-left:-72.533333pt;}
._1c_c00198{margin-left:-22.528000pt;}
._26_c00198{margin-left:-18.432000pt;}
._31_c00198{margin-left:-16.810667pt;}
._2d_c00198{margin-left:-8.448000pt;}
._19_c00198{margin-left:-6.058667pt;}
._1b_c00198{margin-left:-4.949333pt;}
._36_c00198{margin-left:-4.010667pt;}
._1a_c00198{margin-left:-3.072000pt;}
._1f_c00198{margin-left:-2.133333pt;}
._27_c00198{margin-left:-1.109333pt;}
._b_c00198{width:1.706667pt;}
._12_c00198{width:2.645333pt;}
._2_c00198{width:3.584000pt;}
._8_c00198{width:4.608000pt;}
._5_c00198{width:5.546667pt;}
._3_c00198{width:7.082667pt;}
._0_c00198{width:8.362667pt;}
._a_c00198{width:9.813333pt;}
._e_c00198{width:11.178667pt;}
._2a_c00198{width:12.224000pt;}
._6_c00198{width:13.312000pt;}
._11_c00198{width:15.018667pt;}
._1_c00198{width:16.213333pt;}
._16_c00198{width:17.408000pt;}
._13_c00198{width:18.602667pt;}
._2c_c00198{width:19.541333pt;}
._d_c00198{width:22.016000pt;}
._2b_c00198{width:22.954667pt;}
._7_c00198{width:24.234667pt;}
._28_c00198{width:25.258667pt;}
._15_c00198{width:26.453333pt;}
._10_c00198{width:27.648000pt;}
._21_c00198{width:28.928000pt;}
._2f_c00198{width:30.037333pt;}
._9_c00198{width:30.976000pt;}
._23_c00198{width:32.085333pt;}
._30_c00198{width:33.536000pt;}
._c_c00198{width:34.901333pt;}
._4_c00198{width:36.266667pt;}
._1d_c00198{width:38.144000pt;}
._f_c00198{width:39.936000pt;}
._22_c00198{width:41.984000pt;}
._1e_c00198{width:43.434667pt;}
._24_c00198{width:44.373333pt;}
._18_c00198{width:45.440000pt;}
._20_c00198{width:46.336000pt;}
._17_c00198{width:48.106667pt;}
._25_c00198{width:49.749333pt;}
._14_c00198{width:51.712000pt;}
._2e_c00198{width:53.760000pt;}
._34_c00198{width:55.466667pt;}
._35_c00198{width:161.280000pt;}
._32_c00198{width:167.168000pt;}
._33_c00198{width:169.301333pt;}
.fs3_c00198{font-size:42.666667pt;}
.fs1_c00198{font-size:74.666667pt;}
.fs0_c00198{font-size:85.333333pt;}
.fs2_c00198{font-size:90.666667pt;}
.y0_c00198{bottom:0.000000pt;}
.y27_c00198{bottom:2.760000pt;}
.y26_c00198{bottom:6.425217pt;}
.y25_c00198{bottom:82.240000pt;}
.y24_c00198{bottom:111.306667pt;}
.y23_c00198{bottom:144.640000pt;}
.y22_c00198{bottom:174.906667pt;}
.y21_c00198{bottom:204.506667pt;}
.y20_c00198{bottom:235.173333pt;}
.y1f_c00198{bottom:264.506667pt;}
.y1e_c00198{bottom:294.640000pt;}
.y1d_c00198{bottom:324.240000pt;}
.y1c_c00198{bottom:355.173333pt;}
.y1b_c00198{bottom:384.906667pt;}
.y1a_c00198{bottom:414.640000pt;}
.y19_c00198{bottom:444.240000pt;}
.y18_c00198{bottom:473.706667pt;}
.y17_c00198{bottom:503.306667pt;}
.y16_c00198{bottom:533.306667pt;}
.y15_c00198{bottom:562.506667pt;}
.y14_c00198{bottom:592.106667pt;}
.y13_c00198{bottom:621.573333pt;}
.y12_c00198{bottom:651.040000pt;}
.y11_c00198{bottom:680.106667pt;}
.y10_c00198{bottom:710.640000pt;}
.yf_c00198{bottom:739.706667pt;}
.ye_c00198{bottom:768.906667pt;}
.yd_c00198{bottom:798.240000pt;}
.yc_c00198{bottom:827.973333pt;}
.yb_c00198{bottom:857.306667pt;}
.ya_c00198{bottom:887.040000pt;}
.y9_c00198{bottom:916.506667pt;}
.y8_c00198{bottom:945.573333pt;}
.y7_c00198{bottom:975.573333pt;}
.y6_c00198{bottom:1005.040000pt;}
.y5_c00198{bottom:1033.706667pt;}
.y4_c00198{bottom:1063.706667pt;}
.y3_c00198{bottom:1093.173333pt;}
.y2_c00198{bottom:1122.906667pt;}
.y1_c00198{bottom:1152.506667pt;}
.h3_c00198{height:11.733399pt;}
.h4_c00198{height:38.937500pt;}
.h2_c00198{height:108.041667pt;}
.h0_c00198{height:1229.733333pt;}
.h1_c00198{height:1230.000000pt;}
.w2_c00198{width:93.222667pt;}
.w0_c00198{width:780.466667pt;}
.w1_c00198{width:780.666667pt;}
.x0_c00198{left:0.000000pt;}
.x7_c00198{left:37.733333pt;}
.x6_c00198{left:38.666667pt;}
.x5_c00198{left:39.600000pt;}
.x4_c00198{left:41.066667pt;}
.x3_c00198{left:42.000000pt;}
.x2_c00198{left:42.933333pt;}
.x8_c00198{left:83.733333pt;}
.xa_c00198{left:347.401530pt;}
.x1_c00198{left:467.333333pt;}
.x9_c00198{left:485.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_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_daacb0648f6a2407d975ca82.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_dd87f901444a981881523ccc.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_53bf9086e7ce3d08ccf5b74b.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_145c793ab4450842f3ce7008.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_1d6fcc8b9cf9ef1bdca7b7c6.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00199;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.ls1_c00199{letter-spacing:6.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:-51.000000px;}
.ws2_c00199{word-spacing:-48.000000px;}
.ws3_c00199{word-spacing:0.000000px;}
.ws0_c00199{word-spacing:19.968000px;}
._42_c00199{margin-left:-79.776000px;}
._14_c00199{margin-left:-29.376000px;}
._3a_c00199{margin-left:-21.504000px;}
._28_c00199{margin-left:-18.720000px;}
._32_c00199{margin-left:-16.320000px;}
._5_c00199{margin-left:-11.040000px;}
._10_c00199{margin-left:-9.600000px;}
._4_c00199{margin-left:-8.160000px;}
._f_c00199{margin-left:-4.608000px;}
._22_c00199{margin-left:-3.264000px;}
._12_c00199{margin-left:-2.112000px;}
._16_c00199{margin-left:-1.056000px;}
._c_c00199{width:1.152000px;}
._a_c00199{width:2.592000px;}
._7_c00199{width:3.648000px;}
._1_c00199{width:5.184000px;}
._e_c00199{width:6.240000px;}
._2_c00199{width:7.872000px;}
._9_c00199{width:9.120000px;}
._11_c00199{width:10.176000px;}
._0_c00199{width:11.232000px;}
._6_c00199{width:13.248000px;}
._15_c00199{width:14.592000px;}
._2d_c00199{width:15.648000px;}
._b_c00199{width:16.992000px;}
._8_c00199{width:18.336000px;}
._30_c00199{width:20.160000px;}
._34_c00199{width:21.792000px;}
._d_c00199{width:25.152000px;}
._17_c00199{width:26.208000px;}
._2f_c00199{width:27.840000px;}
._25_c00199{width:29.856000px;}
._33_c00199{width:31.776000px;}
._13_c00199{width:32.832000px;}
._36_c00199{width:34.128000px;}
._35_c00199{width:35.136000px;}
._3_c00199{width:36.288000px;}
._18_c00199{width:38.592000px;}
._38_c00199{width:39.984000px;}
._1c_c00199{width:41.280000px;}
._1a_c00199{width:43.008000px;}
._31_c00199{width:44.208000px;}
._21_c00199{width:45.792000px;}
._26_c00199{width:47.424000px;}
._19_c00199{width:48.864000px;}
._24_c00199{width:50.976000px;}
._1d_c00199{width:54.048000px;}
._1b_c00199{width:55.392000px;}
._41_c00199{width:58.656000px;}
._27_c00199{width:59.856000px;}
._20_c00199{width:60.864000px;}
._23_c00199{width:62.496000px;}
._3d_c00199{width:70.704000px;}
._2e_c00199{width:72.624000px;}
._1f_c00199{width:74.112000px;}
._40_c00199{width:79.008000px;}
._37_c00199{width:82.464000px;}
._1e_c00199{width:98.592000px;}
._3c_c00199{width:121.440000px;}
._2a_c00199{width:123.012000px;}
._2b_c00199{width:146.460000px;}
._39_c00199{width:157.440000px;}
._3b_c00199{width:159.552000px;}
._2c_c00199{width:185.376000px;}
._29_c00199{width:234.660000px;}
._3e_c00199{width:668.892000px;}
._3f_c00199{width:683.616000px;}
._43_c00199{width:1933.440000px;}
.fc2_c00199{color:transparent;}
.fc1_c00199{color:rgb(128,128,128);}
.fc0_c00199{color:rgb(0,0,0);}
.fs3_c00199{font-size:48.000000px;}
.fs1_c00199{font-size:60.000000px;}
.fs0_c00199{font-size:96.000000px;}
.fs2_c00199{font-size:102.000000px;}
.y0_c00199{bottom:0.000000px;}
.y26_c00199{bottom:3.105000px;}
.y25_c00199{bottom:7.228357px;}
.y24_c00199{bottom:78.330000px;}
.y23_c00199{bottom:115.380000px;}
.y22_c00199{bottom:149.880000px;}
.y21_c00199{bottom:181.230000px;}
.y20_c00199{bottom:214.080000px;}
.y1f_c00199{bottom:254.580000px;}
.y1e_c00199{bottom:286.530000px;}
.y1d_c00199{bottom:320.580000px;}
.y1c_c00199{bottom:354.030000px;}
.y1b_c00199{bottom:388.830000px;}
.y1a_c00199{bottom:423.180000px;}
.y19_c00199{bottom:456.630000px;}
.y18_c00199{bottom:490.080000px;}
.y17_c00199{bottom:524.430000px;}
.y16_c00199{bottom:558.180000px;}
.y15_c00199{bottom:591.330000px;}
.y14_c00199{bottom:625.680000px;}
.y13_c00199{bottom:658.530000px;}
.y12_c00199{bottom:692.280000px;}
.y11_c00199{bottom:726.330000px;}
.y10_c00199{bottom:759.480000px;}
.yf_c00199{bottom:793.530000px;}
.ye_c00199{bottom:826.230000px;}
.yd_c00199{bottom:860.580000px;}
.yc_c00199{bottom:894.330000px;}
.yb_c00199{bottom:927.180000px;}
.ya_c00199{bottom:960.480000px;}
.y9_c00199{bottom:994.380000px;}
.y8_c00199{bottom:1026.780000px;}
.y7_c00199{bottom:1060.080000px;}
.y6_c00199{bottom:1093.830000px;}
.y5_c00199{bottom:1126.980000px;}
.y4_c00199{bottom:1160.280000px;}
.y3_c00199{bottom:1193.730000px;}
.y2_c00199{bottom:1226.130000px;}
.y1_c00199{bottom:1259.280000px;}
.h4_c00199{height:13.200074px;}
.h5_c00199{height:43.804688px;}
.h3_c00199{height:75.966797px;}
.h2_c00199{height:121.546875px;}
.h0_c00199{height:1382.700000px;}
.h1_c00199{height:1383.000000px;}
.w2_c00199{width:104.875500px;}
.w0_c00199{width:863.175000px;}
.w1_c00199{width:863.250000px;}
.x0_c00199{left:0.000000px;}
.xa_c00199{left:161.700000px;}
.x4_c00199{left:167.100000px;}
.x3_c00199{left:168.750000px;}
.xb_c00199{left:175.800000px;}
.x9_c00199{left:176.850000px;}
.x5_c00199{left:255.750000px;}
.x1_c00199{left:271.350000px;}
.x2_c00199{left:272.400000px;}
.x6_c00199{left:274.050000px;}
.x8_c00199{left:275.100000px;}
.x7_c00199{left:276.750000px;}
.xc_c00199{left:383.401749px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ls1_c00199{letter-spacing:5.333333pt;}
.ws1_c00199{word-spacing:-45.333333pt;}
.ws2_c00199{word-spacing:-42.666667pt;}
.ws3_c00199{word-spacing:0.000000pt;}
.ws0_c00199{word-spacing:17.749333pt;}
._42_c00199{margin-left:-70.912000pt;}
._14_c00199{margin-left:-26.112000pt;}
._3a_c00199{margin-left:-19.114667pt;}
._28_c00199{margin-left:-16.640000pt;}
._32_c00199{margin-left:-14.506667pt;}
._5_c00199{margin-left:-9.813333pt;}
._10_c00199{margin-left:-8.533333pt;}
._4_c00199{margin-left:-7.253333pt;}
._f_c00199{margin-left:-4.096000pt;}
._22_c00199{margin-left:-2.901333pt;}
._12_c00199{margin-left:-1.877333pt;}
._16_c00199{margin-left:-0.938667pt;}
._c_c00199{width:1.024000pt;}
._a_c00199{width:2.304000pt;}
._7_c00199{width:3.242667pt;}
._1_c00199{width:4.608000pt;}
._e_c00199{width:5.546667pt;}
._2_c00199{width:6.997333pt;}
._9_c00199{width:8.106667pt;}
._11_c00199{width:9.045333pt;}
._0_c00199{width:9.984000pt;}
._6_c00199{width:11.776000pt;}
._15_c00199{width:12.970667pt;}
._2d_c00199{width:13.909333pt;}
._b_c00199{width:15.104000pt;}
._8_c00199{width:16.298667pt;}
._30_c00199{width:17.920000pt;}
._34_c00199{width:19.370667pt;}
._d_c00199{width:22.357333pt;}
._17_c00199{width:23.296000pt;}
._2f_c00199{width:24.746667pt;}
._25_c00199{width:26.538667pt;}
._33_c00199{width:28.245333pt;}
._13_c00199{width:29.184000pt;}
._36_c00199{width:30.336000pt;}
._35_c00199{width:31.232000pt;}
._3_c00199{width:32.256000pt;}
._18_c00199{width:34.304000pt;}
._38_c00199{width:35.541333pt;}
._1c_c00199{width:36.693333pt;}
._1a_c00199{width:38.229333pt;}
._31_c00199{width:39.296000pt;}
._21_c00199{width:40.704000pt;}
._26_c00199{width:42.154667pt;}
._19_c00199{width:43.434667pt;}
._24_c00199{width:45.312000pt;}
._1d_c00199{width:48.042667pt;}
._1b_c00199{width:49.237333pt;}
._41_c00199{width:52.138667pt;}
._27_c00199{width:53.205333pt;}
._20_c00199{width:54.101333pt;}
._23_c00199{width:55.552000pt;}
._3d_c00199{width:62.848000pt;}
._2e_c00199{width:64.554667pt;}
._1f_c00199{width:65.877333pt;}
._40_c00199{width:70.229333pt;}
._37_c00199{width:73.301333pt;}
._1e_c00199{width:87.637333pt;}
._3c_c00199{width:107.946667pt;}
._2a_c00199{width:109.344000pt;}
._2b_c00199{width:130.186667pt;}
._39_c00199{width:139.946667pt;}
._3b_c00199{width:141.824000pt;}
._2c_c00199{width:164.778667pt;}
._29_c00199{width:208.586667pt;}
._3e_c00199{width:594.570667pt;}
._3f_c00199{width:607.658667pt;}
._43_c00199{width:1718.613333pt;}
.fs3_c00199{font-size:42.666667pt;}
.fs1_c00199{font-size:53.333333pt;}
.fs0_c00199{font-size:85.333333pt;}
.fs2_c00199{font-size:90.666667pt;}
.y0_c00199{bottom:0.000000pt;}
.y26_c00199{bottom:2.760000pt;}
.y25_c00199{bottom:6.425206pt;}
.y24_c00199{bottom:69.626667pt;}
.y23_c00199{bottom:102.560000pt;}
.y22_c00199{bottom:133.226667pt;}
.y21_c00199{bottom:161.093333pt;}
.y20_c00199{bottom:190.293333pt;}
.y1f_c00199{bottom:226.293333pt;}
.y1e_c00199{bottom:254.693333pt;}
.y1d_c00199{bottom:284.960000pt;}
.y1c_c00199{bottom:314.693333pt;}
.y1b_c00199{bottom:345.626667pt;}
.y1a_c00199{bottom:376.160000pt;}
.y19_c00199{bottom:405.893333pt;}
.y18_c00199{bottom:435.626667pt;}
.y17_c00199{bottom:466.160000pt;}
.y16_c00199{bottom:496.160000pt;}
.y15_c00199{bottom:525.626667pt;}
.y14_c00199{bottom:556.160000pt;}
.y13_c00199{bottom:585.360000pt;}
.y12_c00199{bottom:615.360000pt;}
.y11_c00199{bottom:645.626667pt;}
.y10_c00199{bottom:675.093333pt;}
.yf_c00199{bottom:705.360000pt;}
.ye_c00199{bottom:734.426667pt;}
.yd_c00199{bottom:764.960000pt;}
.yc_c00199{bottom:794.960000pt;}
.yb_c00199{bottom:824.160000pt;}
.ya_c00199{bottom:853.760000pt;}
.y9_c00199{bottom:883.893333pt;}
.y8_c00199{bottom:912.693333pt;}
.y7_c00199{bottom:942.293333pt;}
.y6_c00199{bottom:972.293333pt;}
.y5_c00199{bottom:1001.760000pt;}
.y4_c00199{bottom:1031.360000pt;}
.y3_c00199{bottom:1061.093333pt;}
.y2_c00199{bottom:1089.893333pt;}
.y1_c00199{bottom:1119.360000pt;}
.h4_c00199{height:11.733399pt;}
.h5_c00199{height:38.937500pt;}
.h3_c00199{height:67.526042pt;}
.h2_c00199{height:108.041667pt;}
.h0_c00199{height:1229.066667pt;}
.h1_c00199{height:1229.333333pt;}
.w2_c00199{width:93.222667pt;}
.w0_c00199{width:767.266667pt;}
.w1_c00199{width:767.333333pt;}
.x0_c00199{left:0.000000pt;}
.xa_c00199{left:143.733333pt;}
.x4_c00199{left:148.533333pt;}
.x3_c00199{left:150.000000pt;}
.xb_c00199{left:156.266667pt;}
.x9_c00199{left:157.200000pt;}
.x5_c00199{left:227.333333pt;}
.x1_c00199{left:241.200000pt;}
.x2_c00199{left:242.133333pt;}
.x6_c00199{left:243.600000pt;}
.x8_c00199{left:244.533333pt;}
.x7_c00199{left:246.000000pt;}
.xc_c00199{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d47d098ded1a6126f69f2bc.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_0fd09889eee82516b1a14760.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00200{vertical-align:-1.800000px;}
.v0_c00200{vertical-align:0.000000px;}
.ls2_c00200{letter-spacing:0.000000px;}
.ls1_c00200{letter-spacing:2.868000px;}
.ls0_c00200{letter-spacing:16.692000px;}
.ls3_c00200{letter-spacing:18.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00200{word-spacing:-23.136000px;}
.ws0_c00200{word-spacing:-20.244000px;}
.ws3_c00200{word-spacing:0.000000px;}
.ws1_c00200{word-spacing:865.608000px;}
._27_c00200{margin-left:-79.392000px;}
._39_c00200{margin-left:-42.000000px;}
._23_c00200{margin-left:-33.600000px;}
._3b_c00200{margin-left:-28.224000px;}
._28_c00200{margin-left:-24.576000px;}
._24_c00200{margin-left:-23.424000px;}
._26_c00200{margin-left:-21.504000px;}
._1e_c00200{margin-left:-16.608000px;}
._25_c00200{margin-left:-13.536000px;}
._2e_c00200{margin-left:-10.932000px;}
._3e_c00200{margin-left:-9.504000px;}
._1c_c00200{margin-left:-8.352000px;}
._2f_c00200{margin-left:-7.224000px;}
._3_c00200{margin-left:-5.760000px;}
._20_c00200{margin-left:-3.936000px;}
._1a_c00200{margin-left:-2.688000px;}
._a_c00200{margin-left:-1.152000px;}
._7_c00200{width:1.536000px;}
._6_c00200{width:2.784000px;}
._d_c00200{width:4.224000px;}
._2_c00200{width:5.760000px;}
._4_c00200{width:7.488000px;}
._0_c00200{width:8.640000px;}
._1_c00200{width:10.656000px;}
._12_c00200{width:12.384000px;}
._8_c00200{width:13.440000px;}
._e_c00200{width:15.264000px;}
._1f_c00200{width:16.416000px;}
._18_c00200{width:17.472000px;}
._5_c00200{width:19.200000px;}
._10_c00200{width:21.120000px;}
._36_c00200{width:24.192000px;}
._22_c00200{width:25.248000px;}
._1b_c00200{width:27.168000px;}
._31_c00200{width:28.416000px;}
._19_c00200{width:29.856000px;}
._37_c00200{width:31.320000px;}
._f_c00200{width:32.352000px;}
._15_c00200{width:33.792000px;}
._33_c00200{width:35.136000px;}
._c_c00200{width:36.480000px;}
._11_c00200{width:38.784000px;}
._17_c00200{width:40.512000px;}
._b_c00200{width:42.528000px;}
._1d_c00200{width:43.584000px;}
._35_c00200{width:44.640000px;}
._9_c00200{width:45.792000px;}
._2c_c00200{width:47.616000px;}
._14_c00200{width:49.632000px;}
._30_c00200{width:51.360000px;}
._13_c00200{width:53.376000px;}
._21_c00200{width:54.816000px;}
._3c_c00200{width:56.544000px;}
._16_c00200{width:59.136000px;}
._32_c00200{width:65.088000px;}
._2b_c00200{width:72.960000px;}
._34_c00200{width:80.544000px;}
._29_c00200{width:98.976000px;}
._3d_c00200{width:110.112000px;}
._2d_c00200{width:114.240000px;}
._2a_c00200{width:179.232000px;}
._3a_c00200{width:481.056000px;}
._38_c00200{width:758.016000px;}
.fc2_c00200{color:transparent;}
.fc1_c00200{color:rgb(128,128,128);}
.fc0_c00200{color:rgb(0,0,0);}
.fs2_c00200{font-size:48.000000px;}
.fs1_c00200{font-size:84.000000px;}
.fs0_c00200{font-size:96.000000px;}
.y0_c00200{bottom:0.000000px;}
.y28_c00200{bottom:3.105000px;}
.y27_c00200{bottom:7.228369px;}
.y26_c00200{bottom:92.820000px;}
.y23_c00200{bottom:161.220000px;}
.y22_c00200{bottom:196.020000px;}
.y21_c00200{bottom:211.320000px;}
.y20_c00200{bottom:230.070000px;}
.y1f_c00200{bottom:263.970000px;}
.y1e_c00200{bottom:298.020000px;}
.y1d_c00200{bottom:331.470000px;}
.y1c_c00200{bottom:365.070000px;}
.y1b_c00200{bottom:398.820000px;}
.y1a_c00200{bottom:432.270000px;}
.y19_c00200{bottom:465.720000px;}
.y18_c00200{bottom:499.170000px;}
.y17_c00200{bottom:532.920000px;}
.y16_c00200{bottom:565.920000px;}
.y15_c00200{bottom:599.070000px;}
.y14_c00200{bottom:632.070000px;}
.y13_c00200{bottom:666.270000px;}
.y12_c00200{bottom:698.970000px;}
.y11_c00200{bottom:731.970000px;}
.y10_c00200{bottom:765.420000px;}
.yf_c00200{bottom:799.170000px;}
.ye_c00200{bottom:831.870000px;}
.yd_c00200{bottom:865.020000px;}
.y25_c00200{bottom:877.770000px;}
.yc_c00200{bottom:898.470000px;}
.y24_c00200{bottom:907.170000px;}
.yb_c00200{bottom:932.070000px;}
.ya_c00200{bottom:964.620000px;}
.y9_c00200{bottom:998.220000px;}
.y8_c00200{bottom:1032.120000px;}
.y7_c00200{bottom:1064.520000px;}
.y6_c00200{bottom:1098.120000px;}
.y5_c00200{bottom:1131.720000px;}
.y4_c00200{bottom:1164.720000px;}
.y3_c00200{bottom:1197.720000px;}
.y2_c00200{bottom:1231.170000px;}
.y1_c00200{bottom:1264.620000px;}
.h3_c00200{height:13.200073px;}
.h4_c00200{height:43.804688px;}
.h2_c00200{height:121.546875px;}
.h0_c00200{height:1383.450000px;}
.h1_c00200{height:1383.750000px;}
.w2_c00200{width:104.875500px;}
.w0_c00200{width:878.025000px;}
.w1_c00200{width:878.250000px;}
.x0_c00200{left:0.000000px;}
.x5_c00200{left:49.500000px;}
.x7_c00200{left:51.600000px;}
.x8_c00200{left:52.650000px;}
.x4_c00200{left:53.700000px;}
.x3_c00200{left:55.350000px;}
.x2_c00200{left:57.000000px;}
.x1_c00200{left:58.050000px;}
.x6_c00200{left:63.450000px;}
.x9_c00200{left:215.400000px;}
.xb_c00200{left:331.800000px;}
.xc_c00200{left:390.826721px;}
.xa_c00200{left:637.500000px;}
@media print{
.v1_c00200{vertical-align:-1.600000pt;}
.v0_c00200{vertical-align:0.000000pt;}
.ls2_c00200{letter-spacing:0.000000pt;}
.ls1_c00200{letter-spacing:2.549333pt;}
.ls0_c00200{letter-spacing:14.837333pt;}
.ls3_c00200{letter-spacing:16.000000pt;}
.ws2_c00200{word-spacing:-20.565333pt;}
.ws0_c00200{word-spacing:-17.994667pt;}
.ws3_c00200{word-spacing:0.000000pt;}
.ws1_c00200{word-spacing:769.429333pt;}
._27_c00200{margin-left:-70.570667pt;}
._39_c00200{margin-left:-37.333333pt;}
._23_c00200{margin-left:-29.866667pt;}
._3b_c00200{margin-left:-25.088000pt;}
._28_c00200{margin-left:-21.845333pt;}
._24_c00200{margin-left:-20.821333pt;}
._26_c00200{margin-left:-19.114667pt;}
._1e_c00200{margin-left:-14.762667pt;}
._25_c00200{margin-left:-12.032000pt;}
._2e_c00200{margin-left:-9.717333pt;}
._3e_c00200{margin-left:-8.448000pt;}
._1c_c00200{margin-left:-7.424000pt;}
._2f_c00200{margin-left:-6.421333pt;}
._3_c00200{margin-left:-5.120000pt;}
._20_c00200{margin-left:-3.498667pt;}
._1a_c00200{margin-left:-2.389333pt;}
._a_c00200{margin-left:-1.024000pt;}
._7_c00200{width:1.365333pt;}
._6_c00200{width:2.474667pt;}
._d_c00200{width:3.754667pt;}
._2_c00200{width:5.120000pt;}
._4_c00200{width:6.656000pt;}
._0_c00200{width:7.680000pt;}
._1_c00200{width:9.472000pt;}
._12_c00200{width:11.008000pt;}
._8_c00200{width:11.946667pt;}
._e_c00200{width:13.568000pt;}
._1f_c00200{width:14.592000pt;}
._18_c00200{width:15.530667pt;}
._5_c00200{width:17.066667pt;}
._10_c00200{width:18.773333pt;}
._36_c00200{width:21.504000pt;}
._22_c00200{width:22.442667pt;}
._1b_c00200{width:24.149333pt;}
._31_c00200{width:25.258667pt;}
._19_c00200{width:26.538667pt;}
._37_c00200{width:27.840000pt;}
._f_c00200{width:28.757333pt;}
._15_c00200{width:30.037333pt;}
._33_c00200{width:31.232000pt;}
._c_c00200{width:32.426667pt;}
._11_c00200{width:34.474667pt;}
._17_c00200{width:36.010667pt;}
._b_c00200{width:37.802667pt;}
._1d_c00200{width:38.741333pt;}
._35_c00200{width:39.680000pt;}
._9_c00200{width:40.704000pt;}
._2c_c00200{width:42.325333pt;}
._14_c00200{width:44.117333pt;}
._30_c00200{width:45.653333pt;}
._13_c00200{width:47.445333pt;}
._21_c00200{width:48.725333pt;}
._3c_c00200{width:50.261333pt;}
._16_c00200{width:52.565333pt;}
._32_c00200{width:57.856000pt;}
._2b_c00200{width:64.853333pt;}
._34_c00200{width:71.594667pt;}
._29_c00200{width:87.978667pt;}
._3d_c00200{width:97.877333pt;}
._2d_c00200{width:101.546667pt;}
._2a_c00200{width:159.317333pt;}
._3a_c00200{width:427.605333pt;}
._38_c00200{width:673.792000pt;}
.fs2_c00200{font-size:42.666667pt;}
.fs1_c00200{font-size:74.666667pt;}
.fs0_c00200{font-size:85.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y28_c00200{bottom:2.760000pt;}
.y27_c00200{bottom:6.425217pt;}
.y26_c00200{bottom:82.506667pt;}
.y23_c00200{bottom:143.306667pt;}
.y22_c00200{bottom:174.240000pt;}
.y21_c00200{bottom:187.840000pt;}
.y20_c00200{bottom:204.506667pt;}
.y1f_c00200{bottom:234.640000pt;}
.y1e_c00200{bottom:264.906667pt;}
.y1d_c00200{bottom:294.640000pt;}
.y1c_c00200{bottom:324.506667pt;}
.y1b_c00200{bottom:354.506667pt;}
.y1a_c00200{bottom:384.240000pt;}
.y19_c00200{bottom:413.973333pt;}
.y18_c00200{bottom:443.706667pt;}
.y17_c00200{bottom:473.706667pt;}
.y16_c00200{bottom:503.040000pt;}
.y15_c00200{bottom:532.506667pt;}
.y14_c00200{bottom:561.840000pt;}
.y13_c00200{bottom:592.240000pt;}
.y12_c00200{bottom:621.306667pt;}
.y11_c00200{bottom:650.640000pt;}
.y10_c00200{bottom:680.373333pt;}
.yf_c00200{bottom:710.373333pt;}
.ye_c00200{bottom:739.440000pt;}
.yd_c00200{bottom:768.906667pt;}
.y25_c00200{bottom:780.240000pt;}
.yc_c00200{bottom:798.640000pt;}
.y24_c00200{bottom:806.373333pt;}
.yb_c00200{bottom:828.506667pt;}
.ya_c00200{bottom:857.440000pt;}
.y9_c00200{bottom:887.306667pt;}
.y8_c00200{bottom:917.440000pt;}
.y7_c00200{bottom:946.240000pt;}
.y6_c00200{bottom:976.106667pt;}
.y5_c00200{bottom:1005.973333pt;}
.y4_c00200{bottom:1035.306667pt;}
.y3_c00200{bottom:1064.640000pt;}
.y2_c00200{bottom:1094.373333pt;}
.y1_c00200{bottom:1124.106667pt;}
.h3_c00200{height:11.733399pt;}
.h4_c00200{height:38.937500pt;}
.h2_c00200{height:108.041667pt;}
.h0_c00200{height:1229.733333pt;}
.h1_c00200{height:1230.000000pt;}
.w2_c00200{width:93.222667pt;}
.w0_c00200{width:780.466667pt;}
.w1_c00200{width:780.666667pt;}
.x0_c00200{left:0.000000pt;}
.x5_c00200{left:44.000000pt;}
.x7_c00200{left:45.866667pt;}
.x8_c00200{left:46.800000pt;}
.x4_c00200{left:47.733333pt;}
.x3_c00200{left:49.200000pt;}
.x2_c00200{left:50.666667pt;}
.x1_c00200{left:51.600000pt;}
.x6_c00200{left:56.400000pt;}
.x9_c00200{left:191.466667pt;}
.xb_c00200{left:294.933333pt;}
.xc_c00200{left:347.401530pt;}
.xa_c00200{left:566.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b6724d3f63d87134557e2ed1.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_7e1d2474817e1635c2ba6f5b.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_9be826abe4bd69f149df77d7.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls1_c00201{letter-spacing:0.000000px;}
.ls0_c00201{letter-spacing:10.452000px;}
.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;}
}
.ws0_c00201{word-spacing:-66.792000px;}
.ws1_c00201{word-spacing:-63.504000px;}
.ws2_c00201{word-spacing:-23.136000px;}
.ws3_c00201{word-spacing:0.000000px;}
._39_c00201{margin-left:-31.728000px;}
._3c_c00201{margin-left:-29.304000px;}
._2f_c00201{margin-left:-20.184000px;}
._1c_c00201{margin-left:-16.416000px;}
._1b_c00201{margin-left:-13.632000px;}
._18_c00201{margin-left:-11.712000px;}
._1a_c00201{margin-left:-8.772000px;}
._1d_c00201{margin-left:-7.008000px;}
._25_c00201{margin-left:-5.820000px;}
._3_c00201{margin-left:-4.416000px;}
._30_c00201{margin-left:-3.264000px;}
._4_c00201{margin-left:-1.536000px;}
._6_c00201{width:1.920000px;}
._7_c00201{width:3.072000px;}
._2_c00201{width:4.224000px;}
._b_c00201{width:5.280000px;}
._10_c00201{width:7.104000px;}
._1_c00201{width:8.316000px;}
._0_c00201{width:9.372000px;}
._14_c00201{width:11.100000px;}
._2b_c00201{width:12.192000px;}
._d_c00201{width:13.344000px;}
._2c_c00201{width:14.736000px;}
._5_c00201{width:16.032000px;}
._33_c00201{width:17.388000px;}
._1f_c00201{width:19.968000px;}
._27_c00201{width:21.504000px;}
._a_c00201{width:24.288000px;}
._20_c00201{width:25.536000px;}
._c_c00201{width:27.684000px;}
._1e_c00201{width:29.856000px;}
._24_c00201{width:31.008000px;}
._23_c00201{width:32.388000px;}
._34_c00201{width:33.984000px;}
._12_c00201{width:35.040000px;}
._26_c00201{width:36.468000px;}
._19_c00201{width:38.400000px;}
._13_c00201{width:39.420000px;}
._15_c00201{width:40.992000px;}
._3d_c00201{width:42.288000px;}
._2d_c00201{width:43.332000px;}
._22_c00201{width:45.276000px;}
._21_c00201{width:46.656000px;}
._11_c00201{width:48.864000px;}
._f_c00201{width:52.128000px;}
._2a_c00201{width:54.084000px;}
._17_c00201{width:55.872000px;}
._16_c00201{width:58.152000px;}
._32_c00201{width:60.960000px;}
._e_c00201{width:63.420000px;}
._3b_c00201{width:83.808000px;}
._28_c00201{width:88.800000px;}
._29_c00201{width:90.432000px;}
._3a_c00201{width:111.840000px;}
._2e_c00201{width:149.184000px;}
._9_c00201{width:169.836000px;}
._37_c00201{width:174.888000px;}
._36_c00201{width:186.132000px;}
._31_c00201{width:196.128000px;}
._8_c00201{width:258.312000px;}
._35_c00201{width:841.488000px;}
._38_c00201{width:907.908000px;}
.fc2_c00201{color:transparent;}
.fc1_c00201{color:rgb(128,128,128);}
.fc0_c00201{color:rgb(0,0,0);}
.fs3_c00201{font-size:48.000000px;}
.fs2_c00201{font-size:84.000000px;}
.fs1_c00201{font-size:96.000000px;}
.fs0_c00201{font-size:132.000000px;}
.y0_c00201{bottom:0.000000px;}
.y26_c00201{bottom:3.105000px;}
.y25_c00201{bottom:7.228357px;}
.y24_c00201{bottom:76.230000px;}
.y23_c00201{bottom:146.580000px;}
.y22_c00201{bottom:178.530000px;}
.y21_c00201{bottom:213.330000px;}
.y20_c00201{bottom:247.080000px;}
.y1f_c00201{bottom:280.830000px;}
.y1e_c00201{bottom:315.630000px;}
.y1d_c00201{bottom:349.680000px;}
.y1c_c00201{bottom:383.430000px;}
.y1b_c00201{bottom:418.530000px;}
.y1a_c00201{bottom:452.280000px;}
.y19_c00201{bottom:486.330000px;}
.y18_c00201{bottom:516.780000px;}
.y17_c00201{bottom:553.830000px;}
.y16_c00201{bottom:587.580000px;}
.y15_c00201{bottom:621.630000px;}
.y14_c00201{bottom:655.080000px;}
.y13_c00201{bottom:687.780000px;}
.y1_c00201{bottom:696.630000px;}
.y12_c00201{bottom:723.330000px;}
.y11_c00201{bottom:755.430000px;}
.y10_c00201{bottom:790.080000px;}
.yf_c00201{bottom:823.530000px;}
.ye_c00201{bottom:857.580000px;}
.yd_c00201{bottom:891.030000px;}
.yc_c00201{bottom:924.480000px;}
.yb_c00201{bottom:957.480000px;}
.ya_c00201{bottom:990.630000px;}
.y9_c00201{bottom:1024.080000px;}
.y8_c00201{bottom:1057.830000px;}
.y7_c00201{bottom:1091.130000px;}
.y6_c00201{bottom:1124.580000px;}
.y5_c00201{bottom:1157.730000px;}
.y4_c00201{bottom:1191.480000px;}
.y3_c00201{bottom:1224.180000px;}
.y2_c00201{bottom:1256.580000px;}
.h4_c00201{height:13.200074px;}
.h5_c00201{height:43.804688px;}
.h3_c00201{height:121.546875px;}
.h2_c00201{height:143.088000px;}
.h0_c00201{height:1362.450000px;}
.h1_c00201{height:1362.750000px;}
.w2_c00201{width:104.875500px;}
.w1_c00201{width:849.750000px;}
.w0_c00201{width:849.975000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:140.700000px;}
.x3_c00201{left:148.800000px;}
.x8_c00201{left:155.850000px;}
.x1_c00201{left:161.100000px;}
.xf_c00201{left:177.450000px;}
.xe_c00201{left:191.400000px;}
.x7_c00201{left:210.300000px;}
.x4_c00201{left:254.100000px;}
.x6_c00201{left:256.800000px;}
.x5_c00201{left:257.850000px;}
.x9_c00201{left:258.900000px;}
.xb_c00201{left:260.550000px;}
.xc_c00201{left:262.200000px;}
.x10_c00201{left:263.850000px;}
.xa_c00201{left:309.750000px;}
.xd_c00201{left:312.900000px;}
.x12_c00201{left:376.801758px;}
.x11_c00201{left:767.100000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls1_c00201{letter-spacing:0.000000pt;}
.ls0_c00201{letter-spacing:9.290667pt;}
.ws0_c00201{word-spacing:-59.370667pt;}
.ws1_c00201{word-spacing:-56.448000pt;}
.ws2_c00201{word-spacing:-20.565333pt;}
.ws3_c00201{word-spacing:0.000000pt;}
._39_c00201{margin-left:-28.202667pt;}
._3c_c00201{margin-left:-26.048000pt;}
._2f_c00201{margin-left:-17.941333pt;}
._1c_c00201{margin-left:-14.592000pt;}
._1b_c00201{margin-left:-12.117333pt;}
._18_c00201{margin-left:-10.410667pt;}
._1a_c00201{margin-left:-7.797333pt;}
._1d_c00201{margin-left:-6.229333pt;}
._25_c00201{margin-left:-5.173333pt;}
._3_c00201{margin-left:-3.925333pt;}
._30_c00201{margin-left:-2.901333pt;}
._4_c00201{margin-left:-1.365333pt;}
._6_c00201{width:1.706667pt;}
._7_c00201{width:2.730667pt;}
._2_c00201{width:3.754667pt;}
._b_c00201{width:4.693333pt;}
._10_c00201{width:6.314667pt;}
._1_c00201{width:7.392000pt;}
._0_c00201{width:8.330667pt;}
._14_c00201{width:9.866667pt;}
._2b_c00201{width:10.837333pt;}
._d_c00201{width:11.861333pt;}
._2c_c00201{width:13.098667pt;}
._5_c00201{width:14.250667pt;}
._33_c00201{width:15.456000pt;}
._1f_c00201{width:17.749333pt;}
._27_c00201{width:19.114667pt;}
._a_c00201{width:21.589333pt;}
._20_c00201{width:22.698667pt;}
._c_c00201{width:24.608000pt;}
._1e_c00201{width:26.538667pt;}
._24_c00201{width:27.562667pt;}
._23_c00201{width:28.789333pt;}
._34_c00201{width:30.208000pt;}
._12_c00201{width:31.146667pt;}
._26_c00201{width:32.416000pt;}
._19_c00201{width:34.133333pt;}
._13_c00201{width:35.040000pt;}
._15_c00201{width:36.437333pt;}
._3d_c00201{width:37.589333pt;}
._2d_c00201{width:38.517333pt;}
._22_c00201{width:40.245333pt;}
._21_c00201{width:41.472000pt;}
._11_c00201{width:43.434667pt;}
._f_c00201{width:46.336000pt;}
._2a_c00201{width:48.074667pt;}
._17_c00201{width:49.664000pt;}
._16_c00201{width:51.690667pt;}
._32_c00201{width:54.186667pt;}
._e_c00201{width:56.373333pt;}
._3b_c00201{width:74.496000pt;}
._28_c00201{width:78.933333pt;}
._29_c00201{width:80.384000pt;}
._3a_c00201{width:99.413333pt;}
._2e_c00201{width:132.608000pt;}
._9_c00201{width:150.965333pt;}
._37_c00201{width:155.456000pt;}
._36_c00201{width:165.450667pt;}
._31_c00201{width:174.336000pt;}
._8_c00201{width:229.610667pt;}
._35_c00201{width:747.989333pt;}
._38_c00201{width:807.029333pt;}
.fs3_c00201{font-size:42.666667pt;}
.fs2_c00201{font-size:74.666667pt;}
.fs1_c00201{font-size:85.333333pt;}
.fs0_c00201{font-size:117.333333pt;}
.y0_c00201{bottom:0.000000pt;}
.y26_c00201{bottom:2.760000pt;}
.y25_c00201{bottom:6.425206pt;}
.y24_c00201{bottom:67.760000pt;}
.y23_c00201{bottom:130.293333pt;}
.y22_c00201{bottom:158.693333pt;}
.y21_c00201{bottom:189.626667pt;}
.y20_c00201{bottom:219.626667pt;}
.y1f_c00201{bottom:249.626667pt;}
.y1e_c00201{bottom:280.560000pt;}
.y1d_c00201{bottom:310.826667pt;}
.y1c_c00201{bottom:340.826667pt;}
.y1b_c00201{bottom:372.026667pt;}
.y1a_c00201{bottom:402.026667pt;}
.y19_c00201{bottom:432.293333pt;}
.y18_c00201{bottom:459.360000pt;}
.y17_c00201{bottom:492.293333pt;}
.y16_c00201{bottom:522.293333pt;}
.y15_c00201{bottom:552.560000pt;}
.y14_c00201{bottom:582.293333pt;}
.y13_c00201{bottom:611.360000pt;}
.y1_c00201{bottom:619.226667pt;}
.y12_c00201{bottom:642.960000pt;}
.y11_c00201{bottom:671.493333pt;}
.y10_c00201{bottom:702.293333pt;}
.yf_c00201{bottom:732.026667pt;}
.ye_c00201{bottom:762.293333pt;}
.yd_c00201{bottom:792.026667pt;}
.yc_c00201{bottom:821.760000pt;}
.yb_c00201{bottom:851.093333pt;}
.ya_c00201{bottom:880.560000pt;}
.y9_c00201{bottom:910.293333pt;}
.y8_c00201{bottom:940.293333pt;}
.y7_c00201{bottom:969.893333pt;}
.y6_c00201{bottom:999.626667pt;}
.y5_c00201{bottom:1029.093333pt;}
.y4_c00201{bottom:1059.093333pt;}
.y3_c00201{bottom:1088.160000pt;}
.y2_c00201{bottom:1116.960000pt;}
.h4_c00201{height:11.733399pt;}
.h5_c00201{height:38.937500pt;}
.h3_c00201{height:108.041667pt;}
.h2_c00201{height:127.189333pt;}
.h0_c00201{height:1211.066667pt;}
.h1_c00201{height:1211.333333pt;}
.w2_c00201{width:93.222667pt;}
.w1_c00201{width:755.333333pt;}
.w0_c00201{width:755.533333pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:125.066667pt;}
.x3_c00201{left:132.266667pt;}
.x8_c00201{left:138.533333pt;}
.x1_c00201{left:143.200000pt;}
.xf_c00201{left:157.733333pt;}
.xe_c00201{left:170.133333pt;}
.x7_c00201{left:186.933333pt;}
.x4_c00201{left:225.866667pt;}
.x6_c00201{left:228.266667pt;}
.x5_c00201{left:229.200000pt;}
.x9_c00201{left:230.133333pt;}
.xb_c00201{left:231.600000pt;}
.xc_c00201{left:233.066667pt;}
.x10_c00201{left:234.533333pt;}
.xa_c00201{left:275.333333pt;}
.xd_c00201{left:278.133333pt;}
.x12_c00201{left:334.934896pt;}
.x11_c00201{left:681.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7da57d170baf465a598a030.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_3fa5e916589a94c460b56f5a.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls1_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:10.920000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:-63.504000px;}
.ws1_c00202{word-spacing:-51.000000px;}
.ws2_c00202{word-spacing:0.000000px;}
._2d_c00202{margin-left:-77.760000px;}
._29_c00202{margin-left:-37.632000px;}
._37_c00202{margin-left:-31.872000px;}
._15_c00202{margin-left:-30.144000px;}
._2b_c00202{margin-left:-27.072000px;}
._2_c00202{margin-left:-24.192000px;}
._2f_c00202{margin-left:-20.352000px;}
._b_c00202{margin-left:-16.992000px;}
._32_c00202{margin-left:-15.696000px;}
._c_c00202{margin-left:-13.536000px;}
._3e_c00202{margin-left:-12.288000px;}
._1c_c00202{margin-left:-11.136000px;}
._3c_c00202{margin-left:-9.600000px;}
._33_c00202{margin-left:-7.584000px;}
._34_c00202{margin-left:-5.568000px;}
._28_c00202{margin-left:-3.552000px;}
._11_c00202{margin-left:-2.112000px;}
._9_c00202{margin-left:-1.056000px;}
._5_c00202{width:1.536000px;}
._4_c00202{width:3.456000px;}
._7_c00202{width:4.800000px;}
._19_c00202{width:5.952000px;}
._10_c00202{width:7.104000px;}
._0_c00202{width:8.160000px;}
._f_c00202{width:9.600000px;}
._13_c00202{width:10.656000px;}
._12_c00202{width:11.808000px;}
._41_c00202{width:12.864000px;}
._17_c00202{width:13.920000px;}
._e_c00202{width:14.976000px;}
._18_c00202{width:16.704000px;}
._40_c00202{width:17.760000px;}
._8_c00202{width:19.296000px;}
._16_c00202{width:20.928000px;}
._38_c00202{width:22.080000px;}
._6_c00202{width:24.960000px;}
._24_c00202{width:26.208000px;}
._a_c00202{width:27.648000px;}
._23_c00202{width:28.704000px;}
._3b_c00202{width:29.856000px;}
._1e_c00202{width:30.912000px;}
._39_c00202{width:32.736000px;}
._3a_c00202{width:33.792000px;}
._25_c00202{width:35.136000px;}
._35_c00202{width:36.192000px;}
._20_c00202{width:37.440000px;}
._1d_c00202{width:38.976000px;}
._1_c00202{width:40.512000px;}
._d_c00202{width:42.816000px;}
._14_c00202{width:45.312000px;}
._31_c00202{width:46.560000px;}
._1b_c00202{width:49.152000px;}
._1a_c00202{width:51.360000px;}
._3f_c00202{width:52.512000px;}
._1f_c00202{width:54.144000px;}
._27_c00202{width:56.736000px;}
._2e_c00202{width:57.888000px;}
._22_c00202{width:59.424000px;}
._42_c00202{width:60.960000px;}
._3_c00202{width:62.016000px;}
._3d_c00202{width:64.608000px;}
._36_c00202{width:73.632000px;}
._21_c00202{width:81.312000px;}
._44_c00202{width:91.200000px;}
._2c_c00202{width:105.312000px;}
._30_c00202{width:131.808000px;}
._26_c00202{width:133.536000px;}
._2a_c00202{width:139.200000px;}
._43_c00202{width:1908.576000px;}
.fc2_c00202{color:transparent;}
.fc1_c00202{color:rgb(128,128,128);}
.fc0_c00202{color:rgb(0,0,0);}
.fs3_c00202{font-size:48.000000px;}
.fs1_c00202{font-size:84.000000px;}
.fs0_c00202{font-size:96.000000px;}
.fs2_c00202{font-size:102.000000px;}
.y0_c00202{bottom:0.000000px;}
.y26_c00202{bottom:3.105000px;}
.y25_c00202{bottom:7.228363px;}
.y24_c00202{bottom:78.750000px;}
.y23_c00202{bottom:113.850000px;}
.y22_c00202{bottom:148.500000px;}
.y21_c00202{bottom:182.250000px;}
.y20_c00202{bottom:216.450000px;}
.y1f_c00202{bottom:250.500000px;}
.y1e_c00202{bottom:283.800000px;}
.y1d_c00202{bottom:318.300000px;}
.y1c_c00202{bottom:351.750000px;}
.y1b_c00202{bottom:384.450000px;}
.y1a_c00202{bottom:418.950000px;}
.y19_c00202{bottom:450.900000px;}
.y18_c00202{bottom:486.300000px;}
.y17_c00202{bottom:520.500000px;}
.y16_c00202{bottom:553.500000px;}
.y15_c00202{bottom:586.650000px;}
.y14_c00202{bottom:619.650000px;}
.y13_c00202{bottom:653.100000px;}
.y12_c00202{bottom:686.250000px;}
.y11_c00202{bottom:719.850000px;}
.y10_c00202{bottom:752.400000px;}
.yf_c00202{bottom:786.450000px;}
.ye_c00202{bottom:819.900000px;}
.yd_c00202{bottom:852.900000px;}
.yc_c00202{bottom:886.350000px;}
.yb_c00202{bottom:919.650000px;}
.ya_c00202{bottom:953.100000px;}
.y9_c00202{bottom:985.800000px;}
.y8_c00202{bottom:1020.000000px;}
.y7_c00202{bottom:1052.700000px;}
.y6_c00202{bottom:1086.450000px;}
.y5_c00202{bottom:1119.150000px;}
.y4_c00202{bottom:1152.900000px;}
.y3_c00202{bottom:1186.050000px;}
.y2_c00202{bottom:1221.300000px;}
.y1_c00202{bottom:1253.250000px;}
.h2_c00202{height:13.200074px;}
.h3_c00202{height:43.804688px;}
.h1_c00202{height:121.546875px;}
.h0_c00202{height:1363.500000px;}
.w2_c00202{width:104.875500px;}
.w1_c00202{width:864.750000px;}
.w0_c00202{width:865.050000px;}
.x0_c00202{left:0.000000px;}
.x6_c00202{left:44.550000px;}
.x5_c00202{left:45.600000px;}
.x4_c00202{left:46.800000px;}
.x3_c00202{left:47.850000px;}
.x2_c00202{left:49.500000px;}
.x1_c00202{left:101.250000px;}
.x7_c00202{left:384.339249px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls1_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:9.706667pt;}
.ws0_c00202{word-spacing:-56.448000pt;}
.ws1_c00202{word-spacing:-45.333333pt;}
.ws2_c00202{word-spacing:0.000000pt;}
._2d_c00202{margin-left:-69.120000pt;}
._29_c00202{margin-left:-33.450667pt;}
._37_c00202{margin-left:-28.330667pt;}
._15_c00202{margin-left:-26.794667pt;}
._2b_c00202{margin-left:-24.064000pt;}
._2_c00202{margin-left:-21.504000pt;}
._2f_c00202{margin-left:-18.090667pt;}
._b_c00202{margin-left:-15.104000pt;}
._32_c00202{margin-left:-13.952000pt;}
._c_c00202{margin-left:-12.032000pt;}
._3e_c00202{margin-left:-10.922667pt;}
._1c_c00202{margin-left:-9.898667pt;}
._3c_c00202{margin-left:-8.533333pt;}
._33_c00202{margin-left:-6.741333pt;}
._34_c00202{margin-left:-4.949333pt;}
._28_c00202{margin-left:-3.157333pt;}
._11_c00202{margin-left:-1.877333pt;}
._9_c00202{margin-left:-0.938667pt;}
._5_c00202{width:1.365333pt;}
._4_c00202{width:3.072000pt;}
._7_c00202{width:4.266667pt;}
._19_c00202{width:5.290667pt;}
._10_c00202{width:6.314667pt;}
._0_c00202{width:7.253333pt;}
._f_c00202{width:8.533333pt;}
._13_c00202{width:9.472000pt;}
._12_c00202{width:10.496000pt;}
._41_c00202{width:11.434667pt;}
._17_c00202{width:12.373333pt;}
._e_c00202{width:13.312000pt;}
._18_c00202{width:14.848000pt;}
._40_c00202{width:15.786667pt;}
._8_c00202{width:17.152000pt;}
._16_c00202{width:18.602667pt;}
._38_c00202{width:19.626667pt;}
._6_c00202{width:22.186667pt;}
._24_c00202{width:23.296000pt;}
._a_c00202{width:24.576000pt;}
._23_c00202{width:25.514667pt;}
._3b_c00202{width:26.538667pt;}
._1e_c00202{width:27.477333pt;}
._39_c00202{width:29.098667pt;}
._3a_c00202{width:30.037333pt;}
._25_c00202{width:31.232000pt;}
._35_c00202{width:32.170667pt;}
._20_c00202{width:33.280000pt;}
._1d_c00202{width:34.645333pt;}
._1_c00202{width:36.010667pt;}
._d_c00202{width:38.058667pt;}
._14_c00202{width:40.277333pt;}
._31_c00202{width:41.386667pt;}
._1b_c00202{width:43.690667pt;}
._1a_c00202{width:45.653333pt;}
._3f_c00202{width:46.677333pt;}
._1f_c00202{width:48.128000pt;}
._27_c00202{width:50.432000pt;}
._2e_c00202{width:51.456000pt;}
._22_c00202{width:52.821333pt;}
._42_c00202{width:54.186667pt;}
._3_c00202{width:55.125333pt;}
._3d_c00202{width:57.429333pt;}
._36_c00202{width:65.450667pt;}
._21_c00202{width:72.277333pt;}
._44_c00202{width:81.066667pt;}
._2c_c00202{width:93.610667pt;}
._30_c00202{width:117.162667pt;}
._26_c00202{width:118.698667pt;}
._2a_c00202{width:123.733333pt;}
._43_c00202{width:1696.512000pt;}
.fs3_c00202{font-size:42.666667pt;}
.fs1_c00202{font-size:74.666667pt;}
.fs0_c00202{font-size:85.333333pt;}
.fs2_c00202{font-size:90.666667pt;}
.y0_c00202{bottom:0.000000pt;}
.y26_c00202{bottom:2.760000pt;}
.y25_c00202{bottom:6.425212pt;}
.y24_c00202{bottom:70.000000pt;}
.y23_c00202{bottom:101.200000pt;}
.y22_c00202{bottom:132.000000pt;}
.y21_c00202{bottom:162.000000pt;}
.y20_c00202{bottom:192.400000pt;}
.y1f_c00202{bottom:222.666667pt;}
.y1e_c00202{bottom:252.266667pt;}
.y1d_c00202{bottom:282.933333pt;}
.y1c_c00202{bottom:312.666667pt;}
.y1b_c00202{bottom:341.733333pt;}
.y1a_c00202{bottom:372.400000pt;}
.y19_c00202{bottom:400.800000pt;}
.y18_c00202{bottom:432.266667pt;}
.y17_c00202{bottom:462.666667pt;}
.y16_c00202{bottom:492.000000pt;}
.y15_c00202{bottom:521.466667pt;}
.y14_c00202{bottom:550.800000pt;}
.y13_c00202{bottom:580.533333pt;}
.y12_c00202{bottom:610.000000pt;}
.y11_c00202{bottom:639.866667pt;}
.y10_c00202{bottom:668.800000pt;}
.yf_c00202{bottom:699.066667pt;}
.ye_c00202{bottom:728.800000pt;}
.yd_c00202{bottom:758.133333pt;}
.yc_c00202{bottom:787.866667pt;}
.yb_c00202{bottom:817.466667pt;}
.ya_c00202{bottom:847.200000pt;}
.y9_c00202{bottom:876.266667pt;}
.y8_c00202{bottom:906.666667pt;}
.y7_c00202{bottom:935.733333pt;}
.y6_c00202{bottom:965.733333pt;}
.y5_c00202{bottom:994.800000pt;}
.y4_c00202{bottom:1024.800000pt;}
.y3_c00202{bottom:1054.266667pt;}
.y2_c00202{bottom:1085.600000pt;}
.y1_c00202{bottom:1114.000000pt;}
.h2_c00202{height:11.733399pt;}
.h3_c00202{height:38.937500pt;}
.h1_c00202{height:108.041667pt;}
.h0_c00202{height:1212.000000pt;}
.w2_c00202{width:93.222667pt;}
.w1_c00202{width:768.666667pt;}
.w0_c00202{width:768.933333pt;}
.x0_c00202{left:0.000000pt;}
.x6_c00202{left:39.600000pt;}
.x5_c00202{left:40.533333pt;}
.x4_c00202{left:41.600000pt;}
.x3_c00202{left:42.533333pt;}
.x2_c00202{left:44.000000pt;}
.x1_c00202{left:90.000000pt;}
.x7_c00202{left:341.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f5c67a6e567fa407edc463b.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_ceebd3a9e87ff81890b7c027.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls0_c00203{letter-spacing:0.000000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:-63.504000px;}
.ws1_c00203{word-spacing:-51.000000px;}
.ws2_c00203{word-spacing:0.000000px;}
._7_c00203{margin-left:-88.224000px;}
._26_c00203{margin-left:-84.096000px;}
._41_c00203{margin-left:-32.928000px;}
._23_c00203{margin-left:-29.412000px;}
._27_c00203{margin-left:-25.020000px;}
._1d_c00203{margin-left:-21.636000px;}
._25_c00203{margin-left:-20.196000px;}
._17_c00203{margin-left:-18.720000px;}
._2d_c00203{margin-left:-13.536000px;}
._1e_c00203{margin-left:-12.096000px;}
._36_c00203{margin-left:-10.680000px;}
._31_c00203{margin-left:-9.564000px;}
._18_c00203{margin-left:-7.968000px;}
._19_c00203{margin-left:-6.240000px;}
._14_c00203{margin-left:-5.220000px;}
._16_c00203{margin-left:-4.032000px;}
._2_c00203{margin-left:-2.688000px;}
._15_c00203{margin-left:-1.500000px;}
._0_c00203{width:1.632000px;}
._1_c00203{width:3.552000px;}
._f_c00203{width:4.608000px;}
._5_c00203{width:6.144000px;}
._a_c00203{width:7.296000px;}
._4_c00203{width:8.544000px;}
._12_c00203{width:9.696000px;}
._21_c00203{width:11.676000px;}
._c_c00203{width:13.056000px;}
._1f_c00203{width:14.688000px;}
._1c_c00203{width:16.284000px;}
._6_c00203{width:17.472000px;}
._b_c00203{width:19.200000px;}
._8_c00203{width:21.024000px;}
._37_c00203{width:24.288000px;}
._1a_c00203{width:25.536000px;}
._11_c00203{width:27.168000px;}
._2c_c00203{width:29.052000px;}
._13_c00203{width:30.720000px;}
._2b_c00203{width:32.736000px;}
._10_c00203{width:34.752000px;}
._2f_c00203{width:35.808000px;}
._d_c00203{width:37.092000px;}
._2e_c00203{width:39.012000px;}
._30_c00203{width:40.800000px;}
._3_c00203{width:43.296000px;}
._3e_c00203{width:44.952000px;}
._20_c00203{width:46.260000px;}
._1b_c00203{width:47.712000px;}
._32_c00203{width:49.440000px;}
._40_c00203{width:50.580000px;}
._39_c00203{width:51.960000px;}
._35_c00203{width:53.028000px;}
._33_c00203{width:55.560000px;}
._38_c00203{width:56.640000px;}
._34_c00203{width:57.888000px;}
._9_c00203{width:59.712000px;}
._e_c00203{width:63.360000px;}
._3f_c00203{width:66.684000px;}
._22_c00203{width:75.552000px;}
._42_c00203{width:84.000000px;}
._3d_c00203{width:108.192000px;}
._29_c00203{width:122.532000px;}
._3a_c00203{width:144.000000px;}
._3c_c00203{width:185.760000px;}
._28_c00203{width:280.932000px;}
._3b_c00203{width:287.196000px;}
._2a_c00203{width:348.732000px;}
._24_c00203{width:452.352000px;}
._43_c00203{width:1839.684000px;}
.fc2_c00203{color:transparent;}
.fc1_c00203{color:rgb(128,128,128);}
.fc0_c00203{color:rgb(0,0,0);}
.fs3_c00203{font-size:48.000000px;}
.fs1_c00203{font-size:84.000000px;}
.fs0_c00203{font-size:96.000000px;}
.fs2_c00203{font-size:102.000000px;}
.y0_c00203{bottom:0.000000px;}
.y26_c00203{bottom:3.105000px;}
.y25_c00203{bottom:7.228363px;}
.y24_c00203{bottom:52.350000px;}
.y23_c00203{bottom:84.750000px;}
.y22_c00203{bottom:119.550000px;}
.y21_c00203{bottom:153.600000px;}
.y20_c00203{bottom:187.350000px;}
.y1f_c00203{bottom:221.400000px;}
.y1e_c00203{bottom:255.900000px;}
.y1d_c00203{bottom:290.250000px;}
.y1c_c00203{bottom:324.300000px;}
.y1b_c00203{bottom:358.200000px;}
.y1a_c00203{bottom:391.950000px;}
.y19_c00203{bottom:426.900000px;}
.y18_c00203{bottom:460.350000px;}
.y17_c00203{bottom:494.550000px;}
.y16_c00203{bottom:528.300000px;}
.y15_c00203{bottom:563.250000px;}
.y14_c00203{bottom:596.700000px;}
.y13_c00203{bottom:630.450000px;}
.y12_c00203{bottom:663.900000px;}
.y11_c00203{bottom:698.250000px;}
.y10_c00203{bottom:731.400000px;}
.yf_c00203{bottom:765.450000px;}
.ye_c00203{bottom:798.900000px;}
.yd_c00203{bottom:832.650000px;}
.yc_c00203{bottom:866.400000px;}
.yb_c00203{bottom:899.400000px;}
.ya_c00203{bottom:934.200000px;}
.y9_c00203{bottom:968.400000px;}
.y8_c00203{bottom:1003.350000px;}
.y7_c00203{bottom:1034.400000px;}
.y6_c00203{bottom:1067.850000px;}
.y5_c00203{bottom:1101.300000px;}
.y4_c00203{bottom:1134.750000px;}
.y3_c00203{bottom:1167.750000px;}
.y2_c00203{bottom:1201.050000px;}
.y1_c00203{bottom:1234.500000px;}
.h3_c00203{height:13.200074px;}
.h4_c00203{height:43.804688px;}
.h2_c00203{height:121.546875px;}
.h0_c00203{height:1344.600000px;}
.h1_c00203{height:1344.750000px;}
.w2_c00203{width:104.875500px;}
.w0_c00203{width:839.175000px;}
.w1_c00203{width:839.250000px;}
.x0_c00203{left:0.000000px;}
.x8_c00203{left:134.700000px;}
.x4_c00203{left:142.350000px;}
.x3_c00203{left:144.000000px;}
.x2_c00203{left:247.650000px;}
.x1_c00203{left:248.700000px;}
.x5_c00203{left:249.750000px;}
.x6_c00203{left:250.800000px;}
.x9_c00203{left:252.000000px;}
.x7_c00203{left:253.050000px;}
.xa_c00203{left:254.700000px;}
.xb_c00203{left:264.300000px;}
.xc_c00203{left:371.401749px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:-56.448000pt;}
.ws1_c00203{word-spacing:-45.333333pt;}
.ws2_c00203{word-spacing:0.000000pt;}
._7_c00203{margin-left:-78.421333pt;}
._26_c00203{margin-left:-74.752000pt;}
._41_c00203{margin-left:-29.269333pt;}
._23_c00203{margin-left:-26.144000pt;}
._27_c00203{margin-left:-22.240000pt;}
._1d_c00203{margin-left:-19.232000pt;}
._25_c00203{margin-left:-17.952000pt;}
._17_c00203{margin-left:-16.640000pt;}
._2d_c00203{margin-left:-12.032000pt;}
._1e_c00203{margin-left:-10.752000pt;}
._36_c00203{margin-left:-9.493333pt;}
._31_c00203{margin-left:-8.501333pt;}
._18_c00203{margin-left:-7.082667pt;}
._19_c00203{margin-left:-5.546667pt;}
._14_c00203{margin-left:-4.640000pt;}
._16_c00203{margin-left:-3.584000pt;}
._2_c00203{margin-left:-2.389333pt;}
._15_c00203{margin-left:-1.333333pt;}
._0_c00203{width:1.450667pt;}
._1_c00203{width:3.157333pt;}
._f_c00203{width:4.096000pt;}
._5_c00203{width:5.461333pt;}
._a_c00203{width:6.485333pt;}
._4_c00203{width:7.594667pt;}
._12_c00203{width:8.618667pt;}
._21_c00203{width:10.378667pt;}
._c_c00203{width:11.605333pt;}
._1f_c00203{width:13.056000pt;}
._1c_c00203{width:14.474667pt;}
._6_c00203{width:15.530667pt;}
._b_c00203{width:17.066667pt;}
._8_c00203{width:18.688000pt;}
._37_c00203{width:21.589333pt;}
._1a_c00203{width:22.698667pt;}
._11_c00203{width:24.149333pt;}
._2c_c00203{width:25.824000pt;}
._13_c00203{width:27.306667pt;}
._2b_c00203{width:29.098667pt;}
._10_c00203{width:30.890667pt;}
._2f_c00203{width:31.829333pt;}
._d_c00203{width:32.970667pt;}
._2e_c00203{width:34.677333pt;}
._30_c00203{width:36.266667pt;}
._3_c00203{width:38.485333pt;}
._3e_c00203{width:39.957333pt;}
._20_c00203{width:41.120000pt;}
._1b_c00203{width:42.410667pt;}
._32_c00203{width:43.946667pt;}
._40_c00203{width:44.960000pt;}
._39_c00203{width:46.186667pt;}
._35_c00203{width:47.136000pt;}
._33_c00203{width:49.386667pt;}
._38_c00203{width:50.346667pt;}
._34_c00203{width:51.456000pt;}
._9_c00203{width:53.077333pt;}
._e_c00203{width:56.320000pt;}
._3f_c00203{width:59.274667pt;}
._22_c00203{width:67.157333pt;}
._42_c00203{width:74.666667pt;}
._3d_c00203{width:96.170667pt;}
._29_c00203{width:108.917333pt;}
._3a_c00203{width:128.000000pt;}
._3c_c00203{width:165.120000pt;}
._28_c00203{width:249.717333pt;}
._3b_c00203{width:255.285333pt;}
._2a_c00203{width:309.984000pt;}
._24_c00203{width:402.090667pt;}
._43_c00203{width:1635.274667pt;}
.fs3_c00203{font-size:42.666667pt;}
.fs1_c00203{font-size:74.666667pt;}
.fs0_c00203{font-size:85.333333pt;}
.fs2_c00203{font-size:90.666667pt;}
.y0_c00203{bottom:0.000000pt;}
.y26_c00203{bottom:2.760000pt;}
.y25_c00203{bottom:6.425212pt;}
.y24_c00203{bottom:46.533333pt;}
.y23_c00203{bottom:75.333333pt;}
.y22_c00203{bottom:106.266667pt;}
.y21_c00203{bottom:136.533333pt;}
.y20_c00203{bottom:166.533333pt;}
.y1f_c00203{bottom:196.800000pt;}
.y1e_c00203{bottom:227.466667pt;}
.y1d_c00203{bottom:258.000000pt;}
.y1c_c00203{bottom:288.266667pt;}
.y1b_c00203{bottom:318.400000pt;}
.y1a_c00203{bottom:348.400000pt;}
.y19_c00203{bottom:379.466667pt;}
.y18_c00203{bottom:409.200000pt;}
.y17_c00203{bottom:439.600000pt;}
.y16_c00203{bottom:469.600000pt;}
.y15_c00203{bottom:500.666667pt;}
.y14_c00203{bottom:530.400000pt;}
.y13_c00203{bottom:560.400000pt;}
.y12_c00203{bottom:590.133333pt;}
.y11_c00203{bottom:620.666667pt;}
.y10_c00203{bottom:650.133333pt;}
.yf_c00203{bottom:680.400000pt;}
.ye_c00203{bottom:710.133333pt;}
.yd_c00203{bottom:740.133333pt;}
.yc_c00203{bottom:770.133333pt;}
.yb_c00203{bottom:799.466667pt;}
.ya_c00203{bottom:830.400000pt;}
.y9_c00203{bottom:860.800000pt;}
.y8_c00203{bottom:891.866667pt;}
.y7_c00203{bottom:919.466667pt;}
.y6_c00203{bottom:949.200000pt;}
.y5_c00203{bottom:978.933333pt;}
.y4_c00203{bottom:1008.666667pt;}
.y3_c00203{bottom:1038.000000pt;}
.y2_c00203{bottom:1067.600000pt;}
.y1_c00203{bottom:1097.333333pt;}
.h3_c00203{height:11.733399pt;}
.h4_c00203{height:38.937500pt;}
.h2_c00203{height:108.041667pt;}
.h0_c00203{height:1195.200000pt;}
.h1_c00203{height:1195.333333pt;}
.w2_c00203{width:93.222667pt;}
.w0_c00203{width:745.933333pt;}
.w1_c00203{width:746.000000pt;}
.x0_c00203{left:0.000000pt;}
.x8_c00203{left:119.733333pt;}
.x4_c00203{left:126.533333pt;}
.x3_c00203{left:128.000000pt;}
.x2_c00203{left:220.133333pt;}
.x1_c00203{left:221.066667pt;}
.x5_c00203{left:222.000000pt;}
.x6_c00203{left:222.933333pt;}
.x9_c00203{left:224.000000pt;}
.x7_c00203{left:224.933333pt;}
.xa_c00203{left:226.400000pt;}
.xb_c00203{left:234.933333pt;}
.xc_c00203{left:330.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbef87912caba2c85abb68ce.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00204{vertical-align:-135.000000px;}
.v0_c00204{vertical-align:0.000000px;}
.ls0_c00204{letter-spacing:0.000000px;}
.ls2_c00204{letter-spacing:3.000000px;}
.ls1_c00204{letter-spacing:18.000000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-41.136000px;}
.ws2_c00204{word-spacing:0.000000px;}
.ws0_c00204{word-spacing:248.520000px;}
._2d_c00204{margin-left:-42.624000px;}
._2e_c00204{margin-left:-29.856000px;}
._30_c00204{margin-left:-28.128000px;}
._3d_c00204{margin-left:-25.440000px;}
._27_c00204{margin-left:-21.792000px;}
._19_c00204{margin-left:-16.032000px;}
._14_c00204{margin-left:-13.920000px;}
._8_c00204{margin-left:-11.904000px;}
._39_c00204{margin-left:-9.696000px;}
._24_c00204{margin-left:-6.240000px;}
._28_c00204{margin-left:-4.608000px;}
._15_c00204{margin-left:-3.072000px;}
._a_c00204{margin-left:-1.920000px;}
._1b_c00204{width:1.152000px;}
._2_c00204{width:2.304000px;}
._1_c00204{width:3.840000px;}
._0_c00204{width:5.760000px;}
._e_c00204{width:6.912000px;}
._4_c00204{width:8.064000px;}
._7_c00204{width:9.792000px;}
._1e_c00204{width:11.136000px;}
._1a_c00204{width:12.576000px;}
._16_c00204{width:14.016000px;}
._12_c00204{width:16.128000px;}
._6_c00204{width:17.664000px;}
._11_c00204{width:18.720000px;}
._34_c00204{width:20.160000px;}
._9_c00204{width:21.312000px;}
._d_c00204{width:24.480000px;}
._13_c00204{width:26.304000px;}
._21_c00204{width:27.744000px;}
._29_c00204{width:28.800000px;}
._10_c00204{width:29.856000px;}
._23_c00204{width:31.488000px;}
._36_c00204{width:32.736000px;}
._20_c00204{width:33.888000px;}
._22_c00204{width:35.040000px;}
._f_c00204{width:36.192000px;}
._33_c00204{width:37.248000px;}
._2f_c00204{width:38.976000px;}
._2a_c00204{width:40.224000px;}
._b_c00204{width:41.472000px;}
._5_c00204{width:43.296000px;}
._1d_c00204{width:44.544000px;}
._17_c00204{width:45.600000px;}
._c_c00204{width:46.656000px;}
._1f_c00204{width:47.904000px;}
._35_c00204{width:50.208000px;}
._1c_c00204{width:52.896000px;}
._32_c00204{width:54.240000px;}
._31_c00204{width:55.680000px;}
._2b_c00204{width:57.792000px;}
._3_c00204{width:59.808000px;}
._18_c00204{width:62.016000px;}
._2c_c00204{width:64.320000px;}
._37_c00204{width:68.640000px;}
._3e_c00204{width:70.464000px;}
._3b_c00204{width:72.672000px;}
._25_c00204{width:78.048000px;}
._3a_c00204{width:81.600000px;}
._26_c00204{width:163.584000px;}
._38_c00204{width:171.840000px;}
._3c_c00204{width:198.144000px;}
._3f_c00204{width:786.720000px;}
.fc2_c00204{color:transparent;}
.fc1_c00204{color:rgb(128,128,128);}
.fc0_c00204{color:rgb(0,0,0);}
.fs2_c00204{font-size:48.000000px;}
.fs1_c00204{font-size:87.000000px;}
.fs0_c00204{font-size:96.000000px;}
.y0_c00204{bottom:0.000000px;}
.y21_c00204{bottom:3.105000px;}
.y20_c00204{bottom:7.228369px;}
.y1f_c00204{bottom:64.770000px;}
.y1e_c00204{bottom:146.370000px;}
.y1d_c00204{bottom:274.320000px;}
.y1c_c00204{bottom:308.070000px;}
.y1b_c00204{bottom:341.820000px;}
.y1a_c00204{bottom:375.570000px;}
.y19_c00204{bottom:409.020000px;}
.y18_c00204{bottom:442.470000px;}
.y17_c00204{bottom:475.920000px;}
.y16_c00204{bottom:509.670000px;}
.y15_c00204{bottom:543.270000px;}
.y14_c00204{bottom:576.420000px;}
.y13_c00204{bottom:609.420000px;}
.y12_c00204{bottom:642.270000px;}
.y11_c00204{bottom:675.570000px;}
.y10_c00204{bottom:709.020000px;}
.yf_c00204{bottom:742.770000px;}
.ye_c00204{bottom:775.620000px;}
.yd_c00204{bottom:809.220000px;}
.yc_c00204{bottom:842.070000px;}
.yb_c00204{bottom:875.370000px;}
.ya_c00204{bottom:907.920000px;}
.y9_c00204{bottom:975.270000px;}
.y8_c00204{bottom:1008.720000px;}
.y7_c00204{bottom:1042.170000px;}
.y6_c00204{bottom:1075.920000px;}
.y5_c00204{bottom:1109.070000px;}
.y4_c00204{bottom:1142.070000px;}
.y3_c00204{bottom:1175.520000px;}
.y2_c00204{bottom:1208.820000px;}
.y1_c00204{bottom:1241.670000px;}
.h3_c00204{height:13.200073px;}
.h4_c00204{height:43.804688px;}
.h2_c00204{height:121.546875px;}
.h0_c00204{height:1356.450000px;}
.h1_c00204{height:1356.750000px;}
.w2_c00204{width:104.875500px;}
.w0_c00204{width:860.775000px;}
.w1_c00204{width:861.000000px;}
.x0_c00204{left:0.000000px;}
.x6_c00204{left:45.150000px;}
.x5_c00204{left:46.200000px;}
.x4_c00204{left:47.250000px;}
.x1_c00204{left:48.300000px;}
.x7_c00204{left:49.500000px;}
.x2_c00204{left:50.550000px;}
.x3_c00204{left:51.600000px;}
.x9_c00204{left:323.100000px;}
.xa_c00204{left:382.201721px;}
.x8_c00204{left:510.000000px;}
@media print{
.v1_c00204{vertical-align:-120.000000pt;}
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ls2_c00204{letter-spacing:2.666667pt;}
.ls1_c00204{letter-spacing:16.000000pt;}
.ws1_c00204{word-spacing:-36.565333pt;}
.ws2_c00204{word-spacing:0.000000pt;}
.ws0_c00204{word-spacing:220.906667pt;}
._2d_c00204{margin-left:-37.888000pt;}
._2e_c00204{margin-left:-26.538667pt;}
._30_c00204{margin-left:-25.002667pt;}
._3d_c00204{margin-left:-22.613333pt;}
._27_c00204{margin-left:-19.370667pt;}
._19_c00204{margin-left:-14.250667pt;}
._14_c00204{margin-left:-12.373333pt;}
._8_c00204{margin-left:-10.581333pt;}
._39_c00204{margin-left:-8.618667pt;}
._24_c00204{margin-left:-5.546667pt;}
._28_c00204{margin-left:-4.096000pt;}
._15_c00204{margin-left:-2.730667pt;}
._a_c00204{margin-left:-1.706667pt;}
._1b_c00204{width:1.024000pt;}
._2_c00204{width:2.048000pt;}
._1_c00204{width:3.413333pt;}
._0_c00204{width:5.120000pt;}
._e_c00204{width:6.144000pt;}
._4_c00204{width:7.168000pt;}
._7_c00204{width:8.704000pt;}
._1e_c00204{width:9.898667pt;}
._1a_c00204{width:11.178667pt;}
._16_c00204{width:12.458667pt;}
._12_c00204{width:14.336000pt;}
._6_c00204{width:15.701333pt;}
._11_c00204{width:16.640000pt;}
._34_c00204{width:17.920000pt;}
._9_c00204{width:18.944000pt;}
._d_c00204{width:21.760000pt;}
._13_c00204{width:23.381333pt;}
._21_c00204{width:24.661333pt;}
._29_c00204{width:25.600000pt;}
._10_c00204{width:26.538667pt;}
._23_c00204{width:27.989333pt;}
._36_c00204{width:29.098667pt;}
._20_c00204{width:30.122667pt;}
._22_c00204{width:31.146667pt;}
._f_c00204{width:32.170667pt;}
._33_c00204{width:33.109333pt;}
._2f_c00204{width:34.645333pt;}
._2a_c00204{width:35.754667pt;}
._b_c00204{width:36.864000pt;}
._5_c00204{width:38.485333pt;}
._1d_c00204{width:39.594667pt;}
._17_c00204{width:40.533333pt;}
._c_c00204{width:41.472000pt;}
._1f_c00204{width:42.581333pt;}
._35_c00204{width:44.629333pt;}
._1c_c00204{width:47.018667pt;}
._32_c00204{width:48.213333pt;}
._31_c00204{width:49.493333pt;}
._2b_c00204{width:51.370667pt;}
._3_c00204{width:53.162667pt;}
._18_c00204{width:55.125333pt;}
._2c_c00204{width:57.173333pt;}
._37_c00204{width:61.013333pt;}
._3e_c00204{width:62.634667pt;}
._3b_c00204{width:64.597333pt;}
._25_c00204{width:69.376000pt;}
._3a_c00204{width:72.533333pt;}
._26_c00204{width:145.408000pt;}
._38_c00204{width:152.746667pt;}
._3c_c00204{width:176.128000pt;}
._3f_c00204{width:699.306667pt;}
.fs2_c00204{font-size:42.666667pt;}
.fs1_c00204{font-size:77.333333pt;}
.fs0_c00204{font-size:85.333333pt;}
.y0_c00204{bottom:0.000000pt;}
.y21_c00204{bottom:2.760000pt;}
.y20_c00204{bottom:6.425217pt;}
.y1f_c00204{bottom:57.573333pt;}
.y1e_c00204{bottom:130.106667pt;}
.y1d_c00204{bottom:243.840000pt;}
.y1c_c00204{bottom:273.840000pt;}
.y1b_c00204{bottom:303.840000pt;}
.y1a_c00204{bottom:333.840000pt;}
.y19_c00204{bottom:363.573333pt;}
.y18_c00204{bottom:393.306667pt;}
.y17_c00204{bottom:423.040000pt;}
.y16_c00204{bottom:453.040000pt;}
.y15_c00204{bottom:482.906667pt;}
.y14_c00204{bottom:512.373333pt;}
.y13_c00204{bottom:541.706667pt;}
.y12_c00204{bottom:570.906667pt;}
.y11_c00204{bottom:600.506667pt;}
.y10_c00204{bottom:630.240000pt;}
.yf_c00204{bottom:660.240000pt;}
.ye_c00204{bottom:689.440000pt;}
.yd_c00204{bottom:719.306667pt;}
.yc_c00204{bottom:748.506667pt;}
.yb_c00204{bottom:778.106667pt;}
.ya_c00204{bottom:807.040000pt;}
.y9_c00204{bottom:866.906667pt;}
.y8_c00204{bottom:896.640000pt;}
.y7_c00204{bottom:926.373333pt;}
.y6_c00204{bottom:956.373333pt;}
.y5_c00204{bottom:985.840000pt;}
.y4_c00204{bottom:1015.173333pt;}
.y3_c00204{bottom:1044.906667pt;}
.y2_c00204{bottom:1074.506667pt;}
.y1_c00204{bottom:1103.706667pt;}
.h3_c00204{height:11.733399pt;}
.h4_c00204{height:38.937500pt;}
.h2_c00204{height:108.041667pt;}
.h0_c00204{height:1205.733333pt;}
.h1_c00204{height:1206.000000pt;}
.w2_c00204{width:93.222667pt;}
.w0_c00204{width:765.133333pt;}
.w1_c00204{width:765.333333pt;}
.x0_c00204{left:0.000000pt;}
.x6_c00204{left:40.133333pt;}
.x5_c00204{left:41.066667pt;}
.x4_c00204{left:42.000000pt;}
.x1_c00204{left:42.933333pt;}
.x7_c00204{left:44.000000pt;}
.x2_c00204{left:44.933333pt;}
.x3_c00204{left:45.866667pt;}
.x9_c00204{left:287.200000pt;}
.xa_c00204{left:339.734863pt;}
.x8_c00204{left:453.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c34d5b24abfbd4e9821486f0.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_7ddb24fd240c07df6e743f46.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_349186714d448708bf0c9088.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls3_c00205{letter-spacing:0.000000px;}
.ls1_c00205{letter-spacing:8.652000px;}
.ls4_c00205{letter-spacing:9.000000px;}
.ls2_c00205{letter-spacing:18.000000px;}
.ls0_c00205{letter-spacing:65.988000px;}
.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;}
}
.ws0_c00205{word-spacing:-34.704000px;}
.ws1_c00205{word-spacing:-23.136000px;}
.ws2_c00205{word-spacing:0.000000px;}
._20_c00205{margin-left:-36.432000px;}
._38_c00205{margin-left:-30.096000px;}
._3c_c00205{margin-left:-28.128000px;}
._28_c00205{margin-left:-26.496000px;}
._34_c00205{margin-left:-25.344000px;}
._3a_c00205{margin-left:-16.269000px;}
._16_c00205{margin-left:-14.592000px;}
._12_c00205{margin-left:-10.944000px;}
._c_c00205{margin-left:-9.216000px;}
._a_c00205{margin-left:-7.488000px;}
._e_c00205{margin-left:-6.480000px;}
._b_c00205{margin-left:-4.608000px;}
._9_c00205{margin-left:-2.592000px;}
._10_c00205{margin-left:-1.008000px;}
._14_c00205{width:1.728000px;}
._1e_c00205{width:2.736000px;}
._17_c00205{width:4.032000px;}
._1d_c00205{width:5.184000px;}
._11_c00205{width:6.336000px;}
._1c_c00205{width:7.584000px;}
._d_c00205{width:9.072000px;}
._3_c00205{width:10.080000px;}
._8_c00205{width:11.952000px;}
._2_c00205{width:13.536000px;}
._0_c00205{width:14.688000px;}
._1_c00205{width:15.696000px;}
._4_c00205{width:16.704000px;}
._13_c00205{width:18.864000px;}
._36_c00205{width:20.016000px;}
._15_c00205{width:21.360000px;}
._7_c00205{width:24.336000px;}
._29_c00205{width:25.440000px;}
._f_c00205{width:26.784000px;}
._31_c00205{width:28.512000px;}
._27_c00205{width:29.760000px;}
._1a_c00205{width:30.912000px;}
._2e_c00205{width:33.024000px;}
._1b_c00205{width:34.560000px;}
._18_c00205{width:35.904000px;}
._2c_c00205{width:36.912000px;}
._2a_c00205{width:38.064000px;}
._32_c00205{width:39.936000px;}
._19_c00205{width:41.808000px;}
._26_c00205{width:43.536000px;}
._2b_c00205{width:45.456000px;}
._23_c00205{width:46.800000px;}
._35_c00205{width:48.096000px;}
._1f_c00205{width:49.344000px;}
._25_c00205{width:50.400000px;}
._21_c00205{width:52.536000px;}
._30_c00205{width:54.528000px;}
._24_c00205{width:55.776000px;}
._39_c00205{width:58.512000px;}
._2f_c00205{width:64.512000px;}
._2d_c00205{width:67.032000px;}
._3b_c00205{width:90.012000px;}
._5_c00205{width:98.208000px;}
._33_c00205{width:103.008000px;}
._22_c00205{width:107.040000px;}
._6_c00205{width:132.624000px;}
._37_c00205{width:180.768000px;}
._3d_c00205{width:860.352000px;}
.fc2_c00205{color:transparent;}
.fc1_c00205{color:rgb(128,128,128);}
.fc0_c00205{color:rgb(0,0,0);}
.fs5_c00205{font-size:48.000000px;}
.fs2_c00205{font-size:84.000000px;}
.fs4_c00205{font-size:87.000000px;}
.fs1_c00205{font-size:96.000000px;}
.fs3_c00205{font-size:102.000000px;}
.fs0_c00205{font-size:144.000000px;}
.y0_c00205{bottom:0.000000px;}
.y25_c00205{bottom:3.105000px;}
.y24_c00205{bottom:7.228357px;}
.y23_c00205{bottom:79.080000px;}
.y22_c00205{bottom:114.480000px;}
.y21_c00205{bottom:148.830000px;}
.y20_c00205{bottom:182.880000px;}
.y8_c00205{bottom:206.280000px;}
.y1f_c00205{bottom:217.380000px;}
.y1e_c00205{bottom:251.130000px;}
.y1d_c00205{bottom:285.180000px;}
.y1c_c00205{bottom:318.930000px;}
.y1b_c00205{bottom:352.680000px;}
.y1a_c00205{bottom:386.880000px;}
.y7_c00205{bottom:403.680000px;}
.y19_c00205{bottom:421.230000px;}
.y18_c00205{bottom:454.980000px;}
.y17_c00205{bottom:488.430000px;}
.y16_c00205{bottom:523.230000px;}
.y15_c00205{bottom:557.280000px;}
.y14_c00205{bottom:590.580000px;}
.y13_c00205{bottom:624.330000px;}
.y12_c00205{bottom:658.080000px;}
.y11_c00205{bottom:691.980000px;}
.y10_c00205{bottom:725.580000px;}
.yf_c00205{bottom:759.030000px;}
.ye_c00205{bottom:793.080000px;}
.yd_c00205{bottom:826.830000px;}
.yc_c00205{bottom:860.280000px;}
.yb_c00205{bottom:894.030000px;}
.ya_c00205{bottom:926.880000px;}
.y6_c00205{bottom:933.480000px;}
.y9_c00205{bottom:960.630000px;}
.y5_c00205{bottom:1050.630000px;}
.y4_c00205{bottom:1099.980000px;}
.y3_c00205{bottom:1151.280000px;}
.y2_c00205{bottom:1201.530000px;}
.y1_c00205{bottom:1252.080000px;}
.h4_c00205{height:13.200074px;}
.h5_c00205{height:43.804688px;}
.h3_c00205{height:121.546875px;}
.h2_c00205{height:182.320312px;}
.h0_c00205{height:1382.700000px;}
.h1_c00205{height:1383.000000px;}
.w2_c00205{width:104.875500px;}
.w0_c00205{width:863.175000px;}
.w1_c00205{width:863.250000px;}
.x0_c00205{left:0.000000px;}
.x5_c00205{left:144.900000px;}
.x6_c00205{left:153.600000px;}
.xc_c00205{left:252.900000px;}
.x1_c00205{left:254.700000px;}
.xa_c00205{left:256.200000px;}
.x9_c00205{left:257.250000px;}
.xd_c00205{left:258.450000px;}
.xe_c00205{left:259.500000px;}
.xb_c00205{left:308.100000px;}
.x2_c00205{left:331.200000px;}
.x3_c00205{left:379.800000px;}
.x10_c00205{left:383.401749px;}
.x7_c00205{left:413.400000px;}
.x4_c00205{left:500.250000px;}
.xf_c00205{left:504.900000px;}
.x8_c00205{left:507.900000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls3_c00205{letter-spacing:0.000000pt;}
.ls1_c00205{letter-spacing:7.690667pt;}
.ls4_c00205{letter-spacing:8.000000pt;}
.ls2_c00205{letter-spacing:16.000000pt;}
.ls0_c00205{letter-spacing:58.656000pt;}
.ws0_c00205{word-spacing:-30.848000pt;}
.ws1_c00205{word-spacing:-20.565333pt;}
.ws2_c00205{word-spacing:0.000000pt;}
._20_c00205{margin-left:-32.384000pt;}
._38_c00205{margin-left:-26.752000pt;}
._3c_c00205{margin-left:-25.002667pt;}
._28_c00205{margin-left:-23.552000pt;}
._34_c00205{margin-left:-22.528000pt;}
._3a_c00205{margin-left:-14.461333pt;}
._16_c00205{margin-left:-12.970667pt;}
._12_c00205{margin-left:-9.728000pt;}
._c_c00205{margin-left:-8.192000pt;}
._a_c00205{margin-left:-6.656000pt;}
._e_c00205{margin-left:-5.760000pt;}
._b_c00205{margin-left:-4.096000pt;}
._9_c00205{margin-left:-2.304000pt;}
._10_c00205{margin-left:-0.896000pt;}
._14_c00205{width:1.536000pt;}
._1e_c00205{width:2.432000pt;}
._17_c00205{width:3.584000pt;}
._1d_c00205{width:4.608000pt;}
._11_c00205{width:5.632000pt;}
._1c_c00205{width:6.741333pt;}
._d_c00205{width:8.064000pt;}
._3_c00205{width:8.960000pt;}
._8_c00205{width:10.624000pt;}
._2_c00205{width:12.032000pt;}
._0_c00205{width:13.056000pt;}
._1_c00205{width:13.952000pt;}
._4_c00205{width:14.848000pt;}
._13_c00205{width:16.768000pt;}
._36_c00205{width:17.792000pt;}
._15_c00205{width:18.986667pt;}
._7_c00205{width:21.632000pt;}
._29_c00205{width:22.613333pt;}
._f_c00205{width:23.808000pt;}
._31_c00205{width:25.344000pt;}
._27_c00205{width:26.453333pt;}
._1a_c00205{width:27.477333pt;}
._2e_c00205{width:29.354667pt;}
._1b_c00205{width:30.720000pt;}
._18_c00205{width:31.914667pt;}
._2c_c00205{width:32.810667pt;}
._2a_c00205{width:33.834667pt;}
._32_c00205{width:35.498667pt;}
._19_c00205{width:37.162667pt;}
._26_c00205{width:38.698667pt;}
._2b_c00205{width:40.405333pt;}
._23_c00205{width:41.600000pt;}
._35_c00205{width:42.752000pt;}
._1f_c00205{width:43.861333pt;}
._25_c00205{width:44.800000pt;}
._21_c00205{width:46.698667pt;}
._30_c00205{width:48.469333pt;}
._24_c00205{width:49.578667pt;}
._39_c00205{width:52.010667pt;}
._2f_c00205{width:57.344000pt;}
._2d_c00205{width:59.584000pt;}
._3b_c00205{width:80.010667pt;}
._5_c00205{width:87.296000pt;}
._33_c00205{width:91.562667pt;}
._22_c00205{width:95.146667pt;}
._6_c00205{width:117.888000pt;}
._37_c00205{width:160.682667pt;}
._3d_c00205{width:764.757333pt;}
.fs5_c00205{font-size:42.666667pt;}
.fs2_c00205{font-size:74.666667pt;}
.fs4_c00205{font-size:77.333333pt;}
.fs1_c00205{font-size:85.333333pt;}
.fs3_c00205{font-size:90.666667pt;}
.fs0_c00205{font-size:128.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y25_c00205{bottom:2.760000pt;}
.y24_c00205{bottom:6.425206pt;}
.y23_c00205{bottom:70.293333pt;}
.y22_c00205{bottom:101.760000pt;}
.y21_c00205{bottom:132.293333pt;}
.y20_c00205{bottom:162.560000pt;}
.y8_c00205{bottom:183.360000pt;}
.y1f_c00205{bottom:193.226667pt;}
.y1e_c00205{bottom:223.226667pt;}
.y1d_c00205{bottom:253.493333pt;}
.y1c_c00205{bottom:283.493333pt;}
.y1b_c00205{bottom:313.493333pt;}
.y1a_c00205{bottom:343.893333pt;}
.y7_c00205{bottom:358.826667pt;}
.y19_c00205{bottom:374.426667pt;}
.y18_c00205{bottom:404.426667pt;}
.y17_c00205{bottom:434.160000pt;}
.y16_c00205{bottom:465.093333pt;}
.y15_c00205{bottom:495.360000pt;}
.y14_c00205{bottom:524.960000pt;}
.y13_c00205{bottom:554.960000pt;}
.y12_c00205{bottom:584.960000pt;}
.y11_c00205{bottom:615.093333pt;}
.y10_c00205{bottom:644.960000pt;}
.yf_c00205{bottom:674.693333pt;}
.ye_c00205{bottom:704.960000pt;}
.yd_c00205{bottom:734.960000pt;}
.yc_c00205{bottom:764.693333pt;}
.yb_c00205{bottom:794.693333pt;}
.ya_c00205{bottom:823.893333pt;}
.y6_c00205{bottom:829.760000pt;}
.y9_c00205{bottom:853.893333pt;}
.y5_c00205{bottom:933.893333pt;}
.y4_c00205{bottom:977.760000pt;}
.y3_c00205{bottom:1023.360000pt;}
.y2_c00205{bottom:1068.026667pt;}
.y1_c00205{bottom:1112.960000pt;}
.h4_c00205{height:11.733399pt;}
.h5_c00205{height:38.937500pt;}
.h3_c00205{height:108.041667pt;}
.h2_c00205{height:162.062500pt;}
.h0_c00205{height:1229.066667pt;}
.h1_c00205{height:1229.333333pt;}
.w2_c00205{width:93.222667pt;}
.w0_c00205{width:767.266667pt;}
.w1_c00205{width:767.333333pt;}
.x0_c00205{left:0.000000pt;}
.x5_c00205{left:128.800000pt;}
.x6_c00205{left:136.533333pt;}
.xc_c00205{left:224.800000pt;}
.x1_c00205{left:226.400000pt;}
.xa_c00205{left:227.733333pt;}
.x9_c00205{left:228.666667pt;}
.xd_c00205{left:229.733333pt;}
.xe_c00205{left:230.666667pt;}
.xb_c00205{left:273.866667pt;}
.x2_c00205{left:294.400000pt;}
.x3_c00205{left:337.600000pt;}
.x10_c00205{left:340.801554pt;}
.x7_c00205{left:367.466667pt;}
.x4_c00205{left:444.666667pt;}
.xf_c00205{left:448.800000pt;}
.x8_c00205{left:451.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_36827f0c6b972f49ee3bbe67.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_f76932717f58d4a1f5d3a483.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_ae049815c06dd78dcccdbf03.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;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_c00206;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.v1_c00206{vertical-align:24.000000px;}
.v2_c00206{vertical-align:118.800000px;}
.ls3_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:3.672000px;}
.ls2_c00206{letter-spacing:4.320000px;}
.ls1_c00206{letter-spacing:33.018000px;}
.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;}
}
.ws3_c00206{word-spacing:-51.000000px;}
.ws0_c00206{word-spacing:-34.704000px;}
.ws1_c00206{word-spacing:-23.136000px;}
.ws4_c00206{word-spacing:-20.244000px;}
.ws5_c00206{word-spacing:0.000000px;}
.ws2_c00206{word-spacing:441.924000px;}
._1c_c00206{margin-left:-64.368000px;}
._21_c00206{margin-left:-42.480000px;}
._0_c00206{margin-left:-32.256000px;}
._25_c00206{margin-left:-30.960000px;}
._20_c00206{margin-left:-24.048000px;}
._d_c00206{margin-left:-19.728000px;}
._12_c00206{margin-left:-15.264000px;}
._13_c00206{margin-left:-14.256000px;}
._10_c00206{margin-left:-12.384000px;}
._e_c00206{margin-left:-11.376000px;}
._f_c00206{margin-left:-10.224000px;}
._11_c00206{margin-left:-9.216000px;}
._1e_c00206{margin-left:-7.632000px;}
._c_c00206{margin-left:-6.624000px;}
._17_c00206{margin-left:-5.184000px;}
._b_c00206{margin-left:-3.744000px;}
._1a_c00206{margin-left:-2.736000px;}
._a_c00206{margin-left:-1.728000px;}
._30_c00206{width:1.008000px;}
._2e_c00206{width:2.040000px;}
._22_c00206{width:3.456000px;}
._33_c00206{width:4.500000px;}
._27_c00206{width:5.544000px;}
._2_c00206{width:6.912000px;}
._28_c00206{width:8.736000px;}
._5_c00206{width:10.224000px;}
._1_c00206{width:11.376000px;}
._2c_c00206{width:12.480000px;}
._3_c00206{width:13.536000px;}
._3f_c00206{width:14.784000px;}
._15_c00206{width:15.984000px;}
._18_c00206{width:18.000000px;}
._2b_c00206{width:19.296000px;}
._32_c00206{width:21.432000px;}
._14_c00206{width:23.208000px;}
._7_c00206{width:24.912000px;}
._2f_c00206{width:25.968000px;}
._8_c00206{width:27.936000px;}
._16_c00206{width:30.672000px;}
._3d_c00206{width:31.992000px;}
._29_c00206{width:33.024000px;}
._2d_c00206{width:34.560000px;}
._39_c00206{width:37.068000px;}
._19_c00206{width:38.160000px;}
._1f_c00206{width:39.456000px;}
._34_c00206{width:41.400000px;}
._1d_c00206{width:43.200000px;}
._1b_c00206{width:45.504000px;}
._3a_c00206{width:46.944000px;}
._31_c00206{width:48.000000px;}
._2a_c00206{width:49.224000px;}
._43_c00206{width:50.940000px;}
._37_c00206{width:51.996000px;}
._38_c00206{width:53.616000px;}
._26_c00206{width:54.720000px;}
._3e_c00206{width:56.652000px;}
._35_c00206{width:58.680000px;}
._40_c00206{width:60.120000px;}
._36_c00206{width:61.320000px;}
._41_c00206{width:62.604000px;}
._3c_c00206{width:69.036000px;}
._3b_c00206{width:75.432000px;}
._42_c00206{width:77.100000px;}
._24_c00206{width:80.496000px;}
._6_c00206{width:98.208000px;}
._4_c00206{width:101.664000px;}
._9_c00206{width:119.664000px;}
._23_c00206{width:283.968000px;}
.fc2_c00206{color:transparent;}
.fc1_c00206{color:rgb(128,128,128);}
.fc0_c00206{color:rgb(0,0,0);}
.fs5_c00206{font-size:48.000000px;}
.fs2_c00206{font-size:84.000000px;}
.fs3_c00206{font-size:93.000000px;}
.fs1_c00206{font-size:96.000000px;}
.fs4_c00206{font-size:102.000000px;}
.fs0_c00206{font-size:144.000000px;}
.y0_c00206{bottom:0.000000px;}
.y20_c00206{bottom:3.105000px;}
.y1f_c00206{bottom:7.228369px;}
.y1c_c00206{bottom:124.920000px;}
.y1b_c00206{bottom:159.870000px;}
.y1a_c00206{bottom:193.620000px;}
.y19_c00206{bottom:227.070000px;}
.y18_c00206{bottom:261.570000px;}
.y17_c00206{bottom:295.620000px;}
.y16_c00206{bottom:329.070000px;}
.y15_c00206{bottom:363.120000px;}
.y14_c00206{bottom:396.870000px;}
.y13_c00206{bottom:430.920000px;}
.y12_c00206{bottom:464.370000px;}
.y11_c00206{bottom:497.820000px;}
.y10_c00206{bottom:531.570000px;}
.yf_c00206{bottom:565.020000px;}
.ye_c00206{bottom:598.320000px;}
.yd_c00206{bottom:632.070000px;}
.yc_c00206{bottom:664.770000px;}
.yb_c00206{bottom:700.620000px;}
.y1e_c00206{bottom:725.670000px;}
.ya_c00206{bottom:733.770000px;}
.y1d_c00206{bottom:755.970000px;}
.y9_c00206{bottom:760.770000px;}
.y8_c00206{bottom:797.820000px;}
.y7_c00206{bottom:886.170000px;}
.y6_c00206{bottom:937.170000px;}
.y5_c00206{bottom:987.570000px;}
.y4_c00206{bottom:1038.120000px;}
.y3_c00206{bottom:1089.120000px;}
.y2_c00206{bottom:1139.670000px;}
.y1_c00206{bottom:1189.620000px;}
.h8_c00206{height:13.200073px;}
.h9_c00206{height:43.804688px;}
.h7_c00206{height:98.314453px;}
.h3_c00206{height:121.546875px;}
.h5_c00206{height:129.143555px;}
.h4_c00206{height:145.546875px;}
.h2_c00206{height:182.320312px;}
.h6_c00206{height:217.114453px;}
.h0_c00206{height:1383.450000px;}
.h1_c00206{height:1383.750000px;}
.w2_c00206{width:104.875500px;}
.w0_c00206{width:878.025000px;}
.w1_c00206{width:878.250000px;}
.x0_c00206{left:0.000000px;}
.xc_c00206{left:49.500000px;}
.xb_c00206{left:51.000000px;}
.xa_c00206{left:52.200000px;}
.x1_c00206{left:53.700000px;}
.x2_c00206{left:55.350000px;}
.x7_c00206{left:111.600000px;}
.x3_c00206{left:117.450000px;}
.x4_c00206{left:217.350000px;}
.x5_c00206{left:264.300000px;}
.x9_c00206{left:298.950000px;}
.x8_c00206{left:300.600000px;}
.xf_c00206{left:390.826721px;}
.x6_c00206{left:561.600000px;}
.xd_c00206{left:634.200000px;}
.xe_c00206{left:682.800000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.v1_c00206{vertical-align:21.333333pt;}
.v2_c00206{vertical-align:105.600000pt;}
.ls3_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:3.264000pt;}
.ls2_c00206{letter-spacing:3.840000pt;}
.ls1_c00206{letter-spacing:29.349333pt;}
.ws3_c00206{word-spacing:-45.333333pt;}
.ws0_c00206{word-spacing:-30.848000pt;}
.ws1_c00206{word-spacing:-20.565333pt;}
.ws4_c00206{word-spacing:-17.994667pt;}
.ws5_c00206{word-spacing:0.000000pt;}
.ws2_c00206{word-spacing:392.821333pt;}
._1c_c00206{margin-left:-57.216000pt;}
._21_c00206{margin-left:-37.760000pt;}
._0_c00206{margin-left:-28.672000pt;}
._25_c00206{margin-left:-27.520000pt;}
._20_c00206{margin-left:-21.376000pt;}
._d_c00206{margin-left:-17.536000pt;}
._12_c00206{margin-left:-13.568000pt;}
._13_c00206{margin-left:-12.672000pt;}
._10_c00206{margin-left:-11.008000pt;}
._e_c00206{margin-left:-10.112000pt;}
._f_c00206{margin-left:-9.088000pt;}
._11_c00206{margin-left:-8.192000pt;}
._1e_c00206{margin-left:-6.784000pt;}
._c_c00206{margin-left:-5.888000pt;}
._17_c00206{margin-left:-4.608000pt;}
._b_c00206{margin-left:-3.328000pt;}
._1a_c00206{margin-left:-2.432000pt;}
._a_c00206{margin-left:-1.536000pt;}
._30_c00206{width:0.896000pt;}
._2e_c00206{width:1.813333pt;}
._22_c00206{width:3.072000pt;}
._33_c00206{width:4.000000pt;}
._27_c00206{width:4.928000pt;}
._2_c00206{width:6.144000pt;}
._28_c00206{width:7.765333pt;}
._5_c00206{width:9.088000pt;}
._1_c00206{width:10.112000pt;}
._2c_c00206{width:11.093333pt;}
._3_c00206{width:12.032000pt;}
._3f_c00206{width:13.141333pt;}
._15_c00206{width:14.208000pt;}
._18_c00206{width:16.000000pt;}
._2b_c00206{width:17.152000pt;}
._32_c00206{width:19.050667pt;}
._14_c00206{width:20.629333pt;}
._7_c00206{width:22.144000pt;}
._2f_c00206{width:23.082667pt;}
._8_c00206{width:24.832000pt;}
._16_c00206{width:27.264000pt;}
._3d_c00206{width:28.437333pt;}
._29_c00206{width:29.354667pt;}
._2d_c00206{width:30.720000pt;}
._39_c00206{width:32.949333pt;}
._19_c00206{width:33.920000pt;}
._1f_c00206{width:35.072000pt;}
._34_c00206{width:36.800000pt;}
._1d_c00206{width:38.400000pt;}
._1b_c00206{width:40.448000pt;}
._3a_c00206{width:41.728000pt;}
._31_c00206{width:42.666667pt;}
._2a_c00206{width:43.754667pt;}
._43_c00206{width:45.280000pt;}
._37_c00206{width:46.218667pt;}
._38_c00206{width:47.658667pt;}
._26_c00206{width:48.640000pt;}
._3e_c00206{width:50.357333pt;}
._35_c00206{width:52.160000pt;}
._40_c00206{width:53.440000pt;}
._36_c00206{width:54.506667pt;}
._41_c00206{width:55.648000pt;}
._3c_c00206{width:61.365333pt;}
._3b_c00206{width:67.050667pt;}
._42_c00206{width:68.533333pt;}
._24_c00206{width:71.552000pt;}
._6_c00206{width:87.296000pt;}
._4_c00206{width:90.368000pt;}
._9_c00206{width:106.368000pt;}
._23_c00206{width:252.416000pt;}
.fs5_c00206{font-size:42.666667pt;}
.fs2_c00206{font-size:74.666667pt;}
.fs3_c00206{font-size:82.666667pt;}
.fs1_c00206{font-size:85.333333pt;}
.fs4_c00206{font-size:90.666667pt;}
.fs0_c00206{font-size:128.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y20_c00206{bottom:2.760000pt;}
.y1f_c00206{bottom:6.425217pt;}
.y1c_c00206{bottom:111.040000pt;}
.y1b_c00206{bottom:142.106667pt;}
.y1a_c00206{bottom:172.106667pt;}
.y19_c00206{bottom:201.840000pt;}
.y18_c00206{bottom:232.506667pt;}
.y17_c00206{bottom:262.773333pt;}
.y16_c00206{bottom:292.506667pt;}
.y15_c00206{bottom:322.773333pt;}
.y14_c00206{bottom:352.773333pt;}
.y13_c00206{bottom:383.040000pt;}
.y12_c00206{bottom:412.773333pt;}
.y11_c00206{bottom:442.506667pt;}
.y10_c00206{bottom:472.506667pt;}
.yf_c00206{bottom:502.240000pt;}
.ye_c00206{bottom:531.840000pt;}
.yd_c00206{bottom:561.840000pt;}
.yc_c00206{bottom:590.906667pt;}
.yb_c00206{bottom:622.773333pt;}
.y1e_c00206{bottom:645.040000pt;}
.ya_c00206{bottom:652.240000pt;}
.y1d_c00206{bottom:671.973333pt;}
.y9_c00206{bottom:676.240000pt;}
.y8_c00206{bottom:709.173333pt;}
.y7_c00206{bottom:787.706667pt;}
.y6_c00206{bottom:833.040000pt;}
.y5_c00206{bottom:877.840000pt;}
.y4_c00206{bottom:922.773333pt;}
.y3_c00206{bottom:968.106667pt;}
.y2_c00206{bottom:1013.040000pt;}
.y1_c00206{bottom:1057.440000pt;}
.h8_c00206{height:11.733399pt;}
.h9_c00206{height:38.937500pt;}
.h7_c00206{height:87.390625pt;}
.h3_c00206{height:108.041667pt;}
.h5_c00206{height:114.794271pt;}
.h4_c00206{height:129.375000pt;}
.h2_c00206{height:162.062500pt;}
.h6_c00206{height:192.990625pt;}
.h0_c00206{height:1229.733333pt;}
.h1_c00206{height:1230.000000pt;}
.w2_c00206{width:93.222667pt;}
.w0_c00206{width:780.466667pt;}
.w1_c00206{width:780.666667pt;}
.x0_c00206{left:0.000000pt;}
.xc_c00206{left:44.000000pt;}
.xb_c00206{left:45.333333pt;}
.xa_c00206{left:46.400000pt;}
.x1_c00206{left:47.733333pt;}
.x2_c00206{left:49.200000pt;}
.x7_c00206{left:99.200000pt;}
.x3_c00206{left:104.400000pt;}
.x4_c00206{left:193.200000pt;}
.x5_c00206{left:234.933333pt;}
.x9_c00206{left:265.733333pt;}
.x8_c00206{left:267.200000pt;}
.xf_c00206{left:347.401530pt;}
.x6_c00206{left:499.200000pt;}
.xd_c00206{left:563.733333pt;}
.xe_c00206{left:606.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1d87a2f1e8222c87e59ece92.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_36d4ff8ef97ba6de933f93eb.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_6069fe96088722d3838ee77b.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:2.268000px;}
.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;}
}
.ws1_c00207{word-spacing:-51.000000px;}
.ws0_c00207{word-spacing:-23.136000px;}
.ws2_c00207{word-spacing:0.000000px;}
._1f_c00207{margin-left:-31.752000px;}
._32_c00207{margin-left:-21.792000px;}
._0_c00207{margin-left:-17.400000px;}
._27_c00207{margin-left:-13.824000px;}
._13_c00207{margin-left:-11.424000px;}
._31_c00207{margin-left:-9.600000px;}
._2e_c00207{margin-left:-8.280000px;}
._24_c00207{margin-left:-6.720000px;}
._10_c00207{margin-left:-5.664000px;}
._25_c00207{margin-left:-4.416000px;}
._19_c00207{margin-left:-3.264000px;}
._a_c00207{margin-left:-1.152000px;}
._2_c00207{width:1.344000px;}
._8_c00207{width:3.168000px;}
._4_c00207{width:4.896000px;}
._7_c00207{width:6.336000px;}
._5_c00207{width:7.392000px;}
._6_c00207{width:8.640000px;}
._d_c00207{width:10.560000px;}
._f_c00207{width:12.288000px;}
._1c_c00207{width:14.208000px;}
._29_c00207{width:15.360000px;}
._26_c00207{width:16.728000px;}
._15_c00207{width:18.048000px;}
._1b_c00207{width:19.104000px;}
._18_c00207{width:20.256000px;}
._28_c00207{width:21.312000px;}
._23_c00207{width:24.288000px;}
._e_c00207{width:26.112000px;}
._3_c00207{width:28.032000px;}
._c_c00207{width:29.568000px;}
._17_c00207{width:30.720000px;}
._9_c00207{width:32.064000px;}
._2f_c00207{width:33.672000px;}
._11_c00207{width:35.112000px;}
._1a_c00207{width:36.288000px;}
._b_c00207{width:38.400000px;}
._16_c00207{width:40.608000px;}
._12_c00207{width:42.624000px;}
._22_c00207{width:43.872000px;}
._20_c00207{width:44.928000px;}
._14_c00207{width:47.040000px;}
._1e_c00207{width:49.656000px;}
._21_c00207{width:51.768000px;}
._1_c00207{width:53.664000px;}
._1d_c00207{width:56.088000px;}
._2b_c00207{width:58.632000px;}
._2a_c00207{width:62.784000px;}
._2d_c00207{width:65.760000px;}
._2c_c00207{width:67.752000px;}
._30_c00207{width:666.552000px;}
.fc2_c00207{color:transparent;}
.fc1_c00207{color:rgb(128,128,128);}
.fc0_c00207{color:rgb(0,0,0);}
.fs3_c00207{font-size:48.000000px;}
.fs2_c00207{font-size:84.000000px;}
.fs0_c00207{font-size:96.000000px;}
.fs1_c00207{font-size:102.000000px;}
.y0_c00207{bottom:0.000000px;}
.y28_c00207{bottom:3.105000px;}
.y27_c00207{bottom:7.228357px;}
.y26_c00207{bottom:66.180000px;}
.y25_c00207{bottom:80.280000px;}
.y24_c00207{bottom:102.030000px;}
.y23_c00207{bottom:136.980000px;}
.y22_c00207{bottom:170.880000px;}
.y21_c00207{bottom:204.630000px;}
.y20_c00207{bottom:239.280000px;}
.y1f_c00207{bottom:273.780000px;}
.y1e_c00207{bottom:307.830000px;}
.y1d_c00207{bottom:341.880000px;}
.y1c_c00207{bottom:376.380000px;}
.y1b_c00207{bottom:409.830000px;}
.y1a_c00207{bottom:444.180000px;}
.y19_c00207{bottom:473.880000px;}
.y18_c00207{bottom:513.780000px;}
.y17_c00207{bottom:546.030000px;}
.y16_c00207{bottom:579.780000px;}
.y15_c00207{bottom:613.680000px;}
.y14_c00207{bottom:646.980000px;}
.y13_c00207{bottom:680.730000px;}
.y12_c00207{bottom:714.480000px;}
.y1_c00207{bottom:745.230000px;}
.y11_c00207{bottom:748.230000px;}
.y10_c00207{bottom:782.280000px;}
.yf_c00207{bottom:815.430000px;}
.ye_c00207{bottom:849.180000px;}
.yd_c00207{bottom:882.630000px;}
.yc_c00207{bottom:915.930000px;}
.yb_c00207{bottom:949.380000px;}
.ya_c00207{bottom:982.530000px;}
.y9_c00207{bottom:1015.830000px;}
.y8_c00207{bottom:1049.580000px;}
.y7_c00207{bottom:1082.730000px;}
.y6_c00207{bottom:1116.180000px;}
.y5_c00207{bottom:1149.480000px;}
.y4_c00207{bottom:1182.330000px;}
.y3_c00207{bottom:1215.330000px;}
.y2_c00207{bottom:1248.780000px;}
.h3_c00207{height:13.200074px;}
.h4_c00207{height:43.804688px;}
.h2_c00207{height:121.546875px;}
.h1_c00207{height:1351.500000px;}
.h0_c00207{height:1351.650000px;}
.w2_c00207{width:104.875500px;}
.w0_c00207{width:843.450000px;}
.w1_c00207{width:843.750000px;}
.x0_c00207{left:0.000000px;}
.x7_c00207{left:114.300000px;}
.x1_c00207{left:200.100000px;}
.x5_c00207{left:211.500000px;}
.x8_c00207{left:249.750000px;}
.x2_c00207{left:250.800000px;}
.x3_c00207{left:252.450000px;}
.x4_c00207{left:253.500000px;}
.x6_c00207{left:255.150000px;}
.xb_c00207{left:373.539230px;}
.xa_c00207{left:780.000000px;}
.x9_c00207{left:796.050000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:2.016000pt;}
.ws1_c00207{word-spacing:-45.333333pt;}
.ws0_c00207{word-spacing:-20.565333pt;}
.ws2_c00207{word-spacing:0.000000pt;}
._1f_c00207{margin-left:-28.224000pt;}
._32_c00207{margin-left:-19.370667pt;}
._0_c00207{margin-left:-15.466667pt;}
._27_c00207{margin-left:-12.288000pt;}
._13_c00207{margin-left:-10.154667pt;}
._31_c00207{margin-left:-8.533333pt;}
._2e_c00207{margin-left:-7.360000pt;}
._24_c00207{margin-left:-5.973333pt;}
._10_c00207{margin-left:-5.034667pt;}
._25_c00207{margin-left:-3.925333pt;}
._19_c00207{margin-left:-2.901333pt;}
._a_c00207{margin-left:-1.024000pt;}
._2_c00207{width:1.194667pt;}
._8_c00207{width:2.816000pt;}
._4_c00207{width:4.352000pt;}
._7_c00207{width:5.632000pt;}
._5_c00207{width:6.570667pt;}
._6_c00207{width:7.680000pt;}
._d_c00207{width:9.386667pt;}
._f_c00207{width:10.922667pt;}
._1c_c00207{width:12.629333pt;}
._29_c00207{width:13.653333pt;}
._26_c00207{width:14.869333pt;}
._15_c00207{width:16.042667pt;}
._1b_c00207{width:16.981333pt;}
._18_c00207{width:18.005333pt;}
._28_c00207{width:18.944000pt;}
._23_c00207{width:21.589333pt;}
._e_c00207{width:23.210667pt;}
._3_c00207{width:24.917333pt;}
._c_c00207{width:26.282667pt;}
._17_c00207{width:27.306667pt;}
._9_c00207{width:28.501333pt;}
._2f_c00207{width:29.930667pt;}
._11_c00207{width:31.210667pt;}
._1a_c00207{width:32.256000pt;}
._b_c00207{width:34.133333pt;}
._16_c00207{width:36.096000pt;}
._12_c00207{width:37.888000pt;}
._22_c00207{width:38.997333pt;}
._20_c00207{width:39.936000pt;}
._14_c00207{width:41.813333pt;}
._1e_c00207{width:44.138667pt;}
._21_c00207{width:46.016000pt;}
._1_c00207{width:47.701333pt;}
._1d_c00207{width:49.856000pt;}
._2b_c00207{width:52.117333pt;}
._2a_c00207{width:55.808000pt;}
._2d_c00207{width:58.453333pt;}
._2c_c00207{width:60.224000pt;}
._30_c00207{width:592.490667pt;}
.fs3_c00207{font-size:42.666667pt;}
.fs2_c00207{font-size:74.666667pt;}
.fs0_c00207{font-size:85.333333pt;}
.fs1_c00207{font-size:90.666667pt;}
.y0_c00207{bottom:0.000000pt;}
.y28_c00207{bottom:2.760000pt;}
.y27_c00207{bottom:6.425206pt;}
.y26_c00207{bottom:58.826667pt;}
.y25_c00207{bottom:71.360000pt;}
.y24_c00207{bottom:90.693333pt;}
.y23_c00207{bottom:121.760000pt;}
.y22_c00207{bottom:151.893333pt;}
.y21_c00207{bottom:181.893333pt;}
.y20_c00207{bottom:212.693333pt;}
.y1f_c00207{bottom:243.360000pt;}
.y1e_c00207{bottom:273.626667pt;}
.y1d_c00207{bottom:303.893333pt;}
.y1c_c00207{bottom:334.560000pt;}
.y1b_c00207{bottom:364.293333pt;}
.y1a_c00207{bottom:394.826667pt;}
.y19_c00207{bottom:421.226667pt;}
.y18_c00207{bottom:456.693333pt;}
.y17_c00207{bottom:485.360000pt;}
.y16_c00207{bottom:515.360000pt;}
.y15_c00207{bottom:545.493333pt;}
.y14_c00207{bottom:575.093333pt;}
.y13_c00207{bottom:605.093333pt;}
.y12_c00207{bottom:635.093333pt;}
.y1_c00207{bottom:662.426667pt;}
.y11_c00207{bottom:665.093333pt;}
.y10_c00207{bottom:695.360000pt;}
.yf_c00207{bottom:724.826667pt;}
.ye_c00207{bottom:754.826667pt;}
.yd_c00207{bottom:784.560000pt;}
.yc_c00207{bottom:814.160000pt;}
.yb_c00207{bottom:843.893333pt;}
.ya_c00207{bottom:873.360000pt;}
.y9_c00207{bottom:902.960000pt;}
.y8_c00207{bottom:932.960000pt;}
.y7_c00207{bottom:962.426667pt;}
.y6_c00207{bottom:992.160000pt;}
.y5_c00207{bottom:1021.760000pt;}
.y4_c00207{bottom:1050.960000pt;}
.y3_c00207{bottom:1080.293333pt;}
.y2_c00207{bottom:1110.026667pt;}
.h3_c00207{height:11.733399pt;}
.h4_c00207{height:38.937500pt;}
.h2_c00207{height:108.041667pt;}
.h1_c00207{height:1201.333333pt;}
.h0_c00207{height:1201.466667pt;}
.w2_c00207{width:93.222667pt;}
.w0_c00207{width:749.733333pt;}
.w1_c00207{width:750.000000pt;}
.x0_c00207{left:0.000000pt;}
.x7_c00207{left:101.600000pt;}
.x1_c00207{left:177.866667pt;}
.x5_c00207{left:188.000000pt;}
.x8_c00207{left:222.000000pt;}
.x2_c00207{left:222.933333pt;}
.x3_c00207{left:224.400000pt;}
.x4_c00207{left:225.333333pt;}
.x6_c00207{left:226.800000pt;}
.xb_c00207{left:332.034871pt;}
.xa_c00207{left:693.333333pt;}
.x9_c00207{left:707.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_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_492835ceb9b86f1a4ba78e06.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_d437a8ce6ceae4a4b54d3c07.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_d371e02cf7fb572e4bb762bb.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00208{vertical-align:-28.200000px;}
.v0_c00208{vertical-align:0.000000px;}
.ls4_c00208{letter-spacing:0.000000px;}
.ls2_c00208{letter-spacing:3.000000px;}
.ls0_c00208{letter-spacing:7.200000px;}
.ls3_c00208{letter-spacing:7.800000px;}
.ls1_c00208{letter-spacing:10.416000px;}
.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;}
}
.ws1_c00208{word-spacing:-63.504000px;}
.ws0_c00208{word-spacing:-23.136000px;}
.ws3_c00208{word-spacing:0.000000px;}
.ws2_c00208{word-spacing:756.480000px;}
._39_c00208{margin-left:-52.128000px;}
._24_c00208{margin-left:-31.920000px;}
._31_c00208{margin-left:-17.280000px;}
._27_c00208{margin-left:-16.128000px;}
._1e_c00208{margin-left:-14.976000px;}
._30_c00208{margin-left:-13.536000px;}
._33_c00208{margin-left:-12.480000px;}
._32_c00208{margin-left:-11.136000px;}
._37_c00208{margin-left:-10.080000px;}
._35_c00208{margin-left:-8.832000px;}
._26_c00208{margin-left:-7.776000px;}
._28_c00208{margin-left:-6.144000px;}
._19_c00208{margin-left:-5.088000px;}
._a_c00208{margin-left:-4.032000px;}
._6_c00208{margin-left:-2.112000px;}
._25_c00208{margin-left:-1.056000px;}
._4_c00208{width:1.920000px;}
._0_c00208{width:3.072000px;}
._1_c00208{width:4.320000px;}
._e_c00208{width:5.664000px;}
._2_c00208{width:6.720000px;}
._7_c00208{width:8.352000px;}
._f_c00208{width:9.504000px;}
._c_c00208{width:10.848000px;}
._3_c00208{width:12.384000px;}
._2d_c00208{width:13.536000px;}
._12_c00208{width:14.592000px;}
._d_c00208{width:17.088000px;}
._5_c00208{width:19.296000px;}
._1d_c00208{width:21.600000px;}
._46_c00208{width:24.192000px;}
._9_c00208{width:25.344000px;}
._36_c00208{width:26.400000px;}
._18_c00208{width:28.224000px;}
._13_c00208{width:30.048000px;}
._8_c00208{width:32.064000px;}
._1a_c00208{width:34.176000px;}
._43_c00208{width:35.328000px;}
._29_c00208{width:36.768000px;}
._34_c00208{width:37.824000px;}
._2a_c00208{width:38.880000px;}
._10_c00208{width:40.032000px;}
._14_c00208{width:41.568000px;}
._44_c00208{width:42.624000px;}
._2b_c00208{width:43.776000px;}
._11_c00208{width:44.928000px;}
._2e_c00208{width:47.040000px;}
._41_c00208{width:48.048000px;}
._b_c00208{width:49.152000px;}
._40_c00208{width:50.496000px;}
._1c_c00208{width:51.840000px;}
._3e_c00208{width:53.472000px;}
._17_c00208{width:54.528000px;}
._22_c00208{width:55.680000px;}
._45_c00208{width:58.656000px;}
._42_c00208{width:60.096000px;}
._1b_c00208{width:62.976000px;}
._2f_c00208{width:64.032000px;}
._16_c00208{width:67.392000px;}
._3b_c00208{width:69.120000px;}
._23_c00208{width:71.712000px;}
._3f_c00208{width:75.552000px;}
._1f_c00208{width:88.416000px;}
._15_c00208{width:98.880000px;}
._38_c00208{width:136.128000px;}
._21_c00208{width:174.144000px;}
._3d_c00208{width:176.640000px;}
._20_c00208{width:344.640000px;}
._2c_c00208{width:352.896000px;}
._3c_c00208{width:476.928000px;}
._3a_c00208{width:692.064000px;}
.fc2_c00208{color:transparent;}
.fc1_c00208{color:rgb(128,128,128);}
.fc0_c00208{color:rgb(0,0,0);}
.fs4_c00208{font-size:48.000000px;}
.fs2_c00208{font-size:84.000000px;}
.fs3_c00208{font-size:87.000000px;}
.fs0_c00208{font-size:96.000000px;}
.fs1_c00208{font-size:102.000000px;}
.y0_c00208{bottom:0.000000px;}
.y29_c00208{bottom:3.105000px;}
.y28_c00208{bottom:7.228363px;}
.y27_c00208{bottom:72.900000px;}
.y24_c00208{bottom:101.250000px;}
.y23_c00208{bottom:136.050000px;}
.y22_c00208{bottom:169.500000px;}
.y21_c00208{bottom:202.800000px;}
.y20_c00208{bottom:237.300000px;}
.y1f_c00208{bottom:271.650000px;}
.y1e_c00208{bottom:305.100000px;}
.y1d_c00208{bottom:338.850000px;}
.y1c_c00208{bottom:372.300000px;}
.y1b_c00208{bottom:406.050000px;}
.y1a_c00208{bottom:439.200000px;}
.y19_c00208{bottom:472.800000px;}
.y26_c00208{bottom:485.400000px;}
.y18_c00208{bottom:505.950000px;}
.y25_c00208{bottom:515.100000px;}
.y17_c00208{bottom:542.400000px;}
.y16_c00208{bottom:573.750000px;}
.y15_c00208{bottom:607.800000px;}
.y14_c00208{bottom:639.900000px;}
.y13_c00208{bottom:673.950000px;}
.y12_c00208{bottom:707.100000px;}
.y11_c00208{bottom:739.950000px;}
.y10_c00208{bottom:773.250000px;}
.yf_c00208{bottom:806.550000px;}
.ye_c00208{bottom:839.700000px;}
.yd_c00208{bottom:872.850000px;}
.yc_c00208{bottom:906.300000px;}
.yb_c00208{bottom:939.300000px;}
.ya_c00208{bottom:972.300000px;}
.y9_c00208{bottom:1005.000000px;}
.y8_c00208{bottom:1039.200000px;}
.y7_c00208{bottom:1072.500000px;}
.y6_c00208{bottom:1106.250000px;}
.y5_c00208{bottom:1139.400000px;}
.y4_c00208{bottom:1171.200000px;}
.y3_c00208{bottom:1204.950000px;}
.y2_c00208{bottom:1238.550000px;}
.y1_c00208{bottom:1238.700000px;}
.h3_c00208{height:13.200074px;}
.h4_c00208{height:43.804688px;}
.h2_c00208{height:110.151855px;}
.h1_c00208{height:121.546875px;}
.h0_c00208{height:1363.500000px;}
.w2_c00208{width:104.875500px;}
.w1_c00208{width:864.750000px;}
.w0_c00208{width:865.050000px;}
.x0_c00208{left:0.000000px;}
.xa_c00208{left:33.150000px;}
.x8_c00208{left:34.200000px;}
.x7_c00208{left:35.400000px;}
.x5_c00208{left:37.500000px;}
.x4_c00208{left:38.700000px;}
.x3_c00208{left:40.200000px;}
.x2_c00208{left:41.850000px;}
.x9_c00208{left:82.800000px;}
.x6_c00208{left:87.750000px;}
.xd_c00208{left:315.600000px;}
.xe_c00208{left:384.339249px;}
.x1_c00208{left:564.600000px;}
.xc_c00208{left:622.350000px;}
.xb_c00208{left:623.400000px;}
@media print{
.v1_c00208{vertical-align:-25.066667pt;}
.v0_c00208{vertical-align:0.000000pt;}
.ls4_c00208{letter-spacing:0.000000pt;}
.ls2_c00208{letter-spacing:2.666667pt;}
.ls0_c00208{letter-spacing:6.400000pt;}
.ls3_c00208{letter-spacing:6.933333pt;}
.ls1_c00208{letter-spacing:9.258667pt;}
.ws1_c00208{word-spacing:-56.448000pt;}
.ws0_c00208{word-spacing:-20.565333pt;}
.ws3_c00208{word-spacing:0.000000pt;}
.ws2_c00208{word-spacing:672.426667pt;}
._39_c00208{margin-left:-46.336000pt;}
._24_c00208{margin-left:-28.373333pt;}
._31_c00208{margin-left:-15.360000pt;}
._27_c00208{margin-left:-14.336000pt;}
._1e_c00208{margin-left:-13.312000pt;}
._30_c00208{margin-left:-12.032000pt;}
._33_c00208{margin-left:-11.093333pt;}
._32_c00208{margin-left:-9.898667pt;}
._37_c00208{margin-left:-8.960000pt;}
._35_c00208{margin-left:-7.850667pt;}
._26_c00208{margin-left:-6.912000pt;}
._28_c00208{margin-left:-5.461333pt;}
._19_c00208{margin-left:-4.522667pt;}
._a_c00208{margin-left:-3.584000pt;}
._6_c00208{margin-left:-1.877333pt;}
._25_c00208{margin-left:-0.938667pt;}
._4_c00208{width:1.706667pt;}
._0_c00208{width:2.730667pt;}
._1_c00208{width:3.840000pt;}
._e_c00208{width:5.034667pt;}
._2_c00208{width:5.973333pt;}
._7_c00208{width:7.424000pt;}
._f_c00208{width:8.448000pt;}
._c_c00208{width:9.642667pt;}
._3_c00208{width:11.008000pt;}
._2d_c00208{width:12.032000pt;}
._12_c00208{width:12.970667pt;}
._d_c00208{width:15.189333pt;}
._5_c00208{width:17.152000pt;}
._1d_c00208{width:19.200000pt;}
._46_c00208{width:21.504000pt;}
._9_c00208{width:22.528000pt;}
._36_c00208{width:23.466667pt;}
._18_c00208{width:25.088000pt;}
._13_c00208{width:26.709333pt;}
._8_c00208{width:28.501333pt;}
._1a_c00208{width:30.378667pt;}
._43_c00208{width:31.402667pt;}
._29_c00208{width:32.682667pt;}
._34_c00208{width:33.621333pt;}
._2a_c00208{width:34.560000pt;}
._10_c00208{width:35.584000pt;}
._14_c00208{width:36.949333pt;}
._44_c00208{width:37.888000pt;}
._2b_c00208{width:38.912000pt;}
._11_c00208{width:39.936000pt;}
._2e_c00208{width:41.813333pt;}
._41_c00208{width:42.709333pt;}
._b_c00208{width:43.690667pt;}
._40_c00208{width:44.885333pt;}
._1c_c00208{width:46.080000pt;}
._3e_c00208{width:47.530667pt;}
._17_c00208{width:48.469333pt;}
._22_c00208{width:49.493333pt;}
._45_c00208{width:52.138667pt;}
._42_c00208{width:53.418667pt;}
._1b_c00208{width:55.978667pt;}
._2f_c00208{width:56.917333pt;}
._16_c00208{width:59.904000pt;}
._3b_c00208{width:61.440000pt;}
._23_c00208{width:63.744000pt;}
._3f_c00208{width:67.157333pt;}
._1f_c00208{width:78.592000pt;}
._15_c00208{width:87.893333pt;}
._38_c00208{width:121.002667pt;}
._21_c00208{width:154.794667pt;}
._3d_c00208{width:157.013333pt;}
._20_c00208{width:306.346667pt;}
._2c_c00208{width:313.685333pt;}
._3c_c00208{width:423.936000pt;}
._3a_c00208{width:615.168000pt;}
.fs4_c00208{font-size:42.666667pt;}
.fs2_c00208{font-size:74.666667pt;}
.fs3_c00208{font-size:77.333333pt;}
.fs0_c00208{font-size:85.333333pt;}
.fs1_c00208{font-size:90.666667pt;}
.y0_c00208{bottom:0.000000pt;}
.y29_c00208{bottom:2.760000pt;}
.y28_c00208{bottom:6.425212pt;}
.y27_c00208{bottom:64.800000pt;}
.y24_c00208{bottom:90.000000pt;}
.y23_c00208{bottom:120.933333pt;}
.y22_c00208{bottom:150.666667pt;}
.y21_c00208{bottom:180.266667pt;}
.y20_c00208{bottom:210.933333pt;}
.y1f_c00208{bottom:241.466667pt;}
.y1e_c00208{bottom:271.200000pt;}
.y1d_c00208{bottom:301.200000pt;}
.y1c_c00208{bottom:330.933333pt;}
.y1b_c00208{bottom:360.933333pt;}
.y1a_c00208{bottom:390.400000pt;}
.y19_c00208{bottom:420.266667pt;}
.y26_c00208{bottom:431.466667pt;}
.y18_c00208{bottom:449.733333pt;}
.y25_c00208{bottom:457.866667pt;}
.y17_c00208{bottom:482.133333pt;}
.y16_c00208{bottom:510.000000pt;}
.y15_c00208{bottom:540.266667pt;}
.y14_c00208{bottom:568.800000pt;}
.y13_c00208{bottom:599.066667pt;}
.y12_c00208{bottom:628.533333pt;}
.y11_c00208{bottom:657.733333pt;}
.y10_c00208{bottom:687.333333pt;}
.yf_c00208{bottom:716.933333pt;}
.ye_c00208{bottom:746.400000pt;}
.yd_c00208{bottom:775.866667pt;}
.yc_c00208{bottom:805.600000pt;}
.yb_c00208{bottom:834.933333pt;}
.ya_c00208{bottom:864.266667pt;}
.y9_c00208{bottom:893.333333pt;}
.y8_c00208{bottom:923.733333pt;}
.y7_c00208{bottom:953.333333pt;}
.y6_c00208{bottom:983.333333pt;}
.y5_c00208{bottom:1012.800000pt;}
.y4_c00208{bottom:1041.066667pt;}
.y3_c00208{bottom:1071.066667pt;}
.y2_c00208{bottom:1100.933333pt;}
.y1_c00208{bottom:1101.066667pt;}
.h3_c00208{height:11.733399pt;}
.h4_c00208{height:38.937500pt;}
.h2_c00208{height:97.912760pt;}
.h1_c00208{height:108.041667pt;}
.h0_c00208{height:1212.000000pt;}
.w2_c00208{width:93.222667pt;}
.w1_c00208{width:768.666667pt;}
.w0_c00208{width:768.933333pt;}
.x0_c00208{left:0.000000pt;}
.xa_c00208{left:29.466667pt;}
.x8_c00208{left:30.400000pt;}
.x7_c00208{left:31.466667pt;}
.x5_c00208{left:33.333333pt;}
.x4_c00208{left:34.400000pt;}
.x3_c00208{left:35.733333pt;}
.x2_c00208{left:37.200000pt;}
.x9_c00208{left:73.600000pt;}
.x6_c00208{left:78.000000pt;}
.xd_c00208{left:280.533333pt;}
.xe_c00208{left:341.634888pt;}
.x1_c00208{left:501.866667pt;}
.xc_c00208{left:553.200000pt;}
.xb_c00208{left:554.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c3db73099c4ba2899b605c27.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_80524775f12721517f00aa7d.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_8145c1615b03df776a6eda3c.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00209{vertical-align:-122.400000px;}
.v0_c00209{vertical-align:0.000000px;}
.ls2_c00209{letter-spacing:0.000000px;}
.ls1_c00209{letter-spacing:4.452000px;}
.ls0_c00209{letter-spacing:11.400000px;}
.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;}
}
.ws0_c00209{word-spacing:-63.504000px;}
.ws1_c00209{word-spacing:-51.000000px;}
.ws2_c00209{word-spacing:-23.136000px;}
.ws3_c00209{word-spacing:0.000000px;}
._36_c00209{margin-left:-32.448000px;}
._2e_c00209{margin-left:-28.512000px;}
._2b_c00209{margin-left:-26.784000px;}
._18_c00209{margin-left:-25.056000px;}
._31_c00209{margin-left:-18.912000px;}
._34_c00209{margin-left:-12.960000px;}
._27_c00209{margin-left:-11.616000px;}
._2d_c00209{margin-left:-9.216000px;}
._2c_c00209{margin-left:-8.064000px;}
._30_c00209{margin-left:-6.624000px;}
._37_c00209{margin-left:-5.472000px;}
._21_c00209{margin-left:-4.440000px;}
._d_c00209{margin-left:-2.496000px;}
._9_c00209{margin-left:-1.248000px;}
._3_c00209{width:1.824000px;}
._7_c00209{width:3.072000px;}
._6_c00209{width:5.088000px;}
._1a_c00209{width:6.144000px;}
._10_c00209{width:7.296000px;}
._19_c00209{width:9.312000px;}
._1_c00209{width:10.368000px;}
._0_c00209{width:11.616000px;}
._14_c00209{width:12.864000px;}
._a_c00209{width:14.592000px;}
._33_c00209{width:15.672000px;}
._c_c00209{width:16.800000px;}
._b_c00209{width:18.528000px;}
._12_c00209{width:19.680000px;}
._32_c00209{width:21.792000px;}
._2f_c00209{width:24.264000px;}
._5_c00209{width:25.920000px;}
._1f_c00209{width:27.456000px;}
._35_c00209{width:28.800000px;}
._2_c00209{width:29.856000px;}
._8_c00209{width:32.424000px;}
._16_c00209{width:34.272000px;}
._11_c00209{width:36.288000px;}
._4_c00209{width:38.016000px;}
._1e_c00209{width:39.552000px;}
._1c_c00209{width:41.184000px;}
._f_c00209{width:43.200000px;}
._13_c00209{width:45.216000px;}
._e_c00209{width:47.040000px;}
._15_c00209{width:48.672000px;}
._17_c00209{width:50.328000px;}
._20_c00209{width:52.032000px;}
._26_c00209{width:53.568000px;}
._2a_c00209{width:54.624000px;}
._22_c00209{width:56.352000px;}
._25_c00209{width:58.560000px;}
._23_c00209{width:60.384000px;}
._29_c00209{width:62.184000px;}
._24_c00209{width:64.512000px;}
._1d_c00209{width:66.168000px;}
._28_c00209{width:69.240000px;}
._1b_c00209{width:75.264000px;}
.fc2_c00209{color:transparent;}
.fc1_c00209{color:rgb(128,128,128);}
.fc0_c00209{color:rgb(0,0,0);}
.fs3_c00209{font-size:48.000000px;}
.fs2_c00209{font-size:84.000000px;}
.fs0_c00209{font-size:96.000000px;}
.fs1_c00209{font-size:102.000000px;}
.y0_c00209{bottom:0.000000px;}
.y25_c00209{bottom:3.105000px;}
.y24_c00209{bottom:7.228357px;}
.y23_c00209{bottom:109.680000px;}
.y22_c00209{bottom:145.080000px;}
.y21_c00209{bottom:180.180000px;}
.y20_c00209{bottom:213.030000px;}
.y1f_c00209{bottom:248.730000px;}
.y1e_c00209{bottom:282.030000px;}
.y1d_c00209{bottom:316.680000px;}
.y1c_c00209{bottom:351.330000px;}
.y1b_c00209{bottom:385.830000px;}
.y1a_c00209{bottom:419.280000px;}
.y19_c00209{bottom:453.930000px;}
.y18_c00209{bottom:487.080000px;}
.y17_c00209{bottom:521.130000px;}
.y16_c00209{bottom:555.480000px;}
.y15_c00209{bottom:588.030000px;}
.y14_c00209{bottom:622.980000px;}
.y13_c00209{bottom:656.130000px;}
.y12_c00209{bottom:689.580000px;}
.y11_c00209{bottom:723.030000px;}
.y10_c00209{bottom:757.380000px;}
.yf_c00209{bottom:791.430000px;}
.ye_c00209{bottom:825.180000px;}
.yd_c00209{bottom:858.630000px;}
.yc_c00209{bottom:891.330000px;}
.yb_c00209{bottom:925.530000px;}
.ya_c00209{bottom:958.830000px;}
.y9_c00209{bottom:991.680000px;}
.y8_c00209{bottom:1024.680000px;}
.y7_c00209{bottom:1058.130000px;}
.y6_c00209{bottom:1091.580000px;}
.y5_c00209{bottom:1124.880000px;}
.y4_c00209{bottom:1158.330000px;}
.y3_c00209{bottom:1191.480000px;}
.y2_c00209{bottom:1224.480000px;}
.y1_c00209{bottom:1257.930000px;}
.h3_c00209{height:13.200074px;}
.h4_c00209{height:43.804688px;}
.h2_c00209{height:121.546875px;}
.h0_c00209{height:1382.700000px;}
.h1_c00209{height:1383.000000px;}
.w2_c00209{width:104.875500px;}
.w0_c00209{width:863.175000px;}
.w1_c00209{width:863.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:265.950000px;}
.x2_c00209{left:267.000000px;}
.x3_c00209{left:268.200000px;}
.x5_c00209{left:270.300000px;}
.x6_c00209{left:272.400000px;}
.x7_c00209{left:306.000000px;}
.x4_c00209{left:308.100000px;}
.x8_c00209{left:383.401749px;}
@media print{
.v1_c00209{vertical-align:-108.800000pt;}
.v0_c00209{vertical-align:0.000000pt;}
.ls2_c00209{letter-spacing:0.000000pt;}
.ls1_c00209{letter-spacing:3.957333pt;}
.ls0_c00209{letter-spacing:10.133333pt;}
.ws0_c00209{word-spacing:-56.448000pt;}
.ws1_c00209{word-spacing:-45.333333pt;}
.ws2_c00209{word-spacing:-20.565333pt;}
.ws3_c00209{word-spacing:0.000000pt;}
._36_c00209{margin-left:-28.842667pt;}
._2e_c00209{margin-left:-25.344000pt;}
._2b_c00209{margin-left:-23.808000pt;}
._18_c00209{margin-left:-22.272000pt;}
._31_c00209{margin-left:-16.810667pt;}
._34_c00209{margin-left:-11.520000pt;}
._27_c00209{margin-left:-10.325333pt;}
._2d_c00209{margin-left:-8.192000pt;}
._2c_c00209{margin-left:-7.168000pt;}
._30_c00209{margin-left:-5.888000pt;}
._37_c00209{margin-left:-4.864000pt;}
._21_c00209{margin-left:-3.946667pt;}
._d_c00209{margin-left:-2.218667pt;}
._9_c00209{margin-left:-1.109333pt;}
._3_c00209{width:1.621333pt;}
._7_c00209{width:2.730667pt;}
._6_c00209{width:4.522667pt;}
._1a_c00209{width:5.461333pt;}
._10_c00209{width:6.485333pt;}
._19_c00209{width:8.277333pt;}
._1_c00209{width:9.216000pt;}
._0_c00209{width:10.325333pt;}
._14_c00209{width:11.434667pt;}
._a_c00209{width:12.970667pt;}
._33_c00209{width:13.930667pt;}
._c_c00209{width:14.933333pt;}
._b_c00209{width:16.469333pt;}
._12_c00209{width:17.493333pt;}
._32_c00209{width:19.370667pt;}
._2f_c00209{width:21.568000pt;}
._5_c00209{width:23.040000pt;}
._1f_c00209{width:24.405333pt;}
._35_c00209{width:25.600000pt;}
._2_c00209{width:26.538667pt;}
._8_c00209{width:28.821333pt;}
._16_c00209{width:30.464000pt;}
._11_c00209{width:32.256000pt;}
._4_c00209{width:33.792000pt;}
._1e_c00209{width:35.157333pt;}
._1c_c00209{width:36.608000pt;}
._f_c00209{width:38.400000pt;}
._13_c00209{width:40.192000pt;}
._e_c00209{width:41.813333pt;}
._15_c00209{width:43.264000pt;}
._17_c00209{width:44.736000pt;}
._20_c00209{width:46.250667pt;}
._26_c00209{width:47.616000pt;}
._2a_c00209{width:48.554667pt;}
._22_c00209{width:50.090667pt;}
._25_c00209{width:52.053333pt;}
._23_c00209{width:53.674667pt;}
._29_c00209{width:55.274667pt;}
._24_c00209{width:57.344000pt;}
._1d_c00209{width:58.816000pt;}
._28_c00209{width:61.546667pt;}
._1b_c00209{width:66.901333pt;}
.fs3_c00209{font-size:42.666667pt;}
.fs2_c00209{font-size:74.666667pt;}
.fs0_c00209{font-size:85.333333pt;}
.fs1_c00209{font-size:90.666667pt;}
.y0_c00209{bottom:0.000000pt;}
.y25_c00209{bottom:2.760000pt;}
.y24_c00209{bottom:6.425206pt;}
.y23_c00209{bottom:97.493333pt;}
.y22_c00209{bottom:128.960000pt;}
.y21_c00209{bottom:160.160000pt;}
.y20_c00209{bottom:189.360000pt;}
.y1f_c00209{bottom:221.093333pt;}
.y1e_c00209{bottom:250.693333pt;}
.y1d_c00209{bottom:281.493333pt;}
.y1c_c00209{bottom:312.293333pt;}
.y1b_c00209{bottom:342.960000pt;}
.y1a_c00209{bottom:372.693333pt;}
.y19_c00209{bottom:403.493333pt;}
.y18_c00209{bottom:432.960000pt;}
.y17_c00209{bottom:463.226667pt;}
.y16_c00209{bottom:493.760000pt;}
.y15_c00209{bottom:522.693333pt;}
.y14_c00209{bottom:553.760000pt;}
.y13_c00209{bottom:583.226667pt;}
.y12_c00209{bottom:612.960000pt;}
.y11_c00209{bottom:642.693333pt;}
.y10_c00209{bottom:673.226667pt;}
.yf_c00209{bottom:703.493333pt;}
.ye_c00209{bottom:733.493333pt;}
.yd_c00209{bottom:763.226667pt;}
.yc_c00209{bottom:792.293333pt;}
.yb_c00209{bottom:822.693333pt;}
.ya_c00209{bottom:852.293333pt;}
.y9_c00209{bottom:881.493333pt;}
.y8_c00209{bottom:910.826667pt;}
.y7_c00209{bottom:940.560000pt;}
.y6_c00209{bottom:970.293333pt;}
.y5_c00209{bottom:999.893333pt;}
.y4_c00209{bottom:1029.626667pt;}
.y3_c00209{bottom:1059.093333pt;}
.y2_c00209{bottom:1088.426667pt;}
.y1_c00209{bottom:1118.160000pt;}
.h3_c00209{height:11.733399pt;}
.h4_c00209{height:38.937500pt;}
.h2_c00209{height:108.041667pt;}
.h0_c00209{height:1229.066667pt;}
.h1_c00209{height:1229.333333pt;}
.w2_c00209{width:93.222667pt;}
.w0_c00209{width:767.266667pt;}
.w1_c00209{width:767.333333pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:236.400000pt;}
.x2_c00209{left:237.333333pt;}
.x3_c00209{left:238.400000pt;}
.x5_c00209{left:240.266667pt;}
.x6_c00209{left:242.133333pt;}
.x7_c00209{left:272.000000pt;}
.x4_c00209{left:273.866667pt;}
.x8_c00209{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cddf2d1fabd26d10f21ae34b.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_628e5a7429c7bda7485743ac.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls1_c00210{letter-spacing:0.000000px;}
.ls2_c00210{letter-spacing:12.000000px;}
.ls0_c00210{letter-spacing:16.800000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00210{word-spacing:-32.244000px;}
.ws2_c00210{word-spacing:-23.136000px;}
.ws0_c00210{word-spacing:-20.244000px;}
.ws3_c00210{word-spacing:0.000000px;}
._39_c00210{margin-left:-89.280000px;}
._26_c00210{margin-left:-86.400000px;}
._29_c00210{margin-left:-79.776000px;}
._20_c00210{margin-left:-32.064000px;}
._3d_c00210{margin-left:-30.816000px;}
._41_c00210{margin-left:-18.432000px;}
._14_c00210{margin-left:-15.552000px;}
._30_c00210{margin-left:-14.112000px;}
._b_c00210{margin-left:-12.192000px;}
._5_c00210{margin-left:-9.120000px;}
._2c_c00210{margin-left:-8.064000px;}
._21_c00210{margin-left:-6.048000px;}
._45_c00210{margin-left:-4.704000px;}
._19_c00210{margin-left:-3.360000px;}
._e_c00210{margin-left:-1.920000px;}
._8_c00210{width:1.632000px;}
._10_c00210{width:3.264000px;}
._1_c00210{width:4.320000px;}
._3_c00210{width:5.952000px;}
._31_c00210{width:7.008000px;}
._2_c00210{width:8.064000px;}
._0_c00210{width:9.888000px;}
._f_c00210{width:11.904000px;}
._2b_c00210{width:13.536000px;}
._22_c00210{width:14.976000px;}
._2f_c00210{width:16.992000px;}
._43_c00210{width:18.036000px;}
._23_c00210{width:19.200000px;}
._15_c00210{width:21.312000px;}
._33_c00210{width:22.704000px;}
._2e_c00210{width:24.288000px;}
._1e_c00210{width:25.728000px;}
._12_c00210{width:26.832000px;}
._6_c00210{width:28.896000px;}
._1d_c00210{width:30.432000px;}
._1a_c00210{width:32.352000px;}
._11_c00210{width:34.272000px;}
._17_c00210{width:36.576000px;}
._34_c00210{width:37.788000px;}
._7_c00210{width:38.880000px;}
._18_c00210{width:40.608000px;}
._9_c00210{width:42.336000px;}
._13_c00210{width:43.488000px;}
._4_c00210{width:45.600000px;}
._16_c00210{width:47.040000px;}
._3a_c00210{width:48.096000px;}
._d_c00210{width:49.440000px;}
._a_c00210{width:50.784000px;}
._1b_c00210{width:52.224000px;}
._c_c00210{width:53.664000px;}
._1f_c00210{width:55.392000px;}
._32_c00210{width:56.640000px;}
._28_c00210{width:57.696000px;}
._44_c00210{width:59.136000px;}
._3f_c00210{width:61.920000px;}
._1c_c00210{width:63.456000px;}
._3b_c00210{width:73.344000px;}
._2a_c00210{width:81.600000px;}
._2d_c00210{width:84.288000px;}
._36_c00210{width:92.772000px;}
._35_c00210{width:95.880000px;}
._3e_c00210{width:180.384000px;}
._37_c00210{width:188.436000px;}
._3c_c00210{width:190.368000px;}
._42_c00210{width:196.032000px;}
._27_c00210{width:272.016000px;}
._25_c00210{width:273.408000px;}
._38_c00210{width:277.860000px;}
._24_c00210{width:753.984000px;}
._40_c00210{width:1451.712000px;}
.fc2_c00210{color:transparent;}
.fc1_c00210{color:rgb(128,128,128);}
.fc0_c00210{color:rgb(0,0,0);}
.fs3_c00210{font-size:48.000000px;}
.fs1_c00210{font-size:84.000000px;}
.fs0_c00210{font-size:96.000000px;}
.fs2_c00210{font-size:102.000000px;}
.y0_c00210{bottom:0.000000px;}
.y26_c00210{bottom:3.105000px;}
.y25_c00210{bottom:7.228369px;}
.y24_c00210{bottom:81.570000px;}
.y23_c00210{bottom:117.720000px;}
.y22_c00210{bottom:151.170000px;}
.y21_c00210{bottom:184.320000px;}
.y20_c00210{bottom:220.020000px;}
.y1f_c00210{bottom:253.470000px;}
.y1e_c00210{bottom:288.420000px;}
.y1d_c00210{bottom:321.870000px;}
.y1c_c00210{bottom:355.320000px;}
.y1b_c00210{bottom:388.170000px;}
.y1a_c00210{bottom:422.520000px;}
.y19_c00210{bottom:455.670000px;}
.y18_c00210{bottom:489.270000px;}
.y17_c00210{bottom:523.620000px;}
.y16_c00210{bottom:556.770000px;}
.y15_c00210{bottom:589.920000px;}
.y14_c00210{bottom:623.070000px;}
.y13_c00210{bottom:655.770000px;}
.y12_c00210{bottom:689.520000px;}
.y11_c00210{bottom:722.970000px;}
.y10_c00210{bottom:757.920000px;}
.yf_c00210{bottom:790.470000px;}
.ye_c00210{bottom:822.420000px;}
.yd_c00210{bottom:856.920000px;}
.yc_c00210{bottom:889.770000px;}
.yb_c00210{bottom:923.070000px;}
.ya_c00210{bottom:956.370000px;}
.y9_c00210{bottom:987.570000px;}
.y8_c00210{bottom:1021.320000px;}
.y7_c00210{bottom:1046.520000px;}
.y6_c00210{bottom:1088.670000px;}
.y5_c00210{bottom:1122.420000px;}
.y4_c00210{bottom:1156.170000px;}
.y3_c00210{bottom:1188.720000px;}
.y2_c00210{bottom:1222.320000px;}
.y1_c00210{bottom:1256.220000px;}
.h4_c00210{height:13.200073px;}
.h5_c00210{height:43.804688px;}
.h3_c00210{height:106.353516px;}
.h2_c00210{height:121.546875px;}
.h0_c00210{height:1383.450000px;}
.h1_c00210{height:1383.750000px;}
.w2_c00210{width:104.875500px;}
.w0_c00210{width:878.025000px;}
.w1_c00210{width:878.250000px;}
.x0_c00210{left:0.000000px;}
.x9_c00210{left:53.700000px;}
.xa_c00210{left:56.400000px;}
.x8_c00210{left:57.600000px;}
.x7_c00210{left:58.650000px;}
.x6_c00210{left:59.700000px;}
.x5_c00210{left:61.800000px;}
.x2_c00210{left:64.500000px;}
.x1_c00210{left:65.700000px;}
.xc_c00210{left:99.150000px;}
.xb_c00210{left:111.000000px;}
.x4_c00210{left:113.700000px;}
.x3_c00210{left:296.700000px;}
.xe_c00210{left:390.826721px;}
.xd_c00210{left:588.300000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls1_c00210{letter-spacing:0.000000pt;}
.ls2_c00210{letter-spacing:10.666667pt;}
.ls0_c00210{letter-spacing:14.933333pt;}
.ws1_c00210{word-spacing:-28.661333pt;}
.ws2_c00210{word-spacing:-20.565333pt;}
.ws0_c00210{word-spacing:-17.994667pt;}
.ws3_c00210{word-spacing:0.000000pt;}
._39_c00210{margin-left:-79.360000pt;}
._26_c00210{margin-left:-76.800000pt;}
._29_c00210{margin-left:-70.912000pt;}
._20_c00210{margin-left:-28.501333pt;}
._3d_c00210{margin-left:-27.392000pt;}
._41_c00210{margin-left:-16.384000pt;}
._14_c00210{margin-left:-13.824000pt;}
._30_c00210{margin-left:-12.544000pt;}
._b_c00210{margin-left:-10.837333pt;}
._5_c00210{margin-left:-8.106667pt;}
._2c_c00210{margin-left:-7.168000pt;}
._21_c00210{margin-left:-5.376000pt;}
._45_c00210{margin-left:-4.181333pt;}
._19_c00210{margin-left:-2.986667pt;}
._e_c00210{margin-left:-1.706667pt;}
._8_c00210{width:1.450667pt;}
._10_c00210{width:2.901333pt;}
._1_c00210{width:3.840000pt;}
._3_c00210{width:5.290667pt;}
._31_c00210{width:6.229333pt;}
._2_c00210{width:7.168000pt;}
._0_c00210{width:8.789333pt;}
._f_c00210{width:10.581333pt;}
._2b_c00210{width:12.032000pt;}
._22_c00210{width:13.312000pt;}
._2f_c00210{width:15.104000pt;}
._43_c00210{width:16.032000pt;}
._23_c00210{width:17.066667pt;}
._15_c00210{width:18.944000pt;}
._33_c00210{width:20.181333pt;}
._2e_c00210{width:21.589333pt;}
._1e_c00210{width:22.869333pt;}
._12_c00210{width:23.850667pt;}
._6_c00210{width:25.685333pt;}
._1d_c00210{width:27.050667pt;}
._1a_c00210{width:28.757333pt;}
._11_c00210{width:30.464000pt;}
._17_c00210{width:32.512000pt;}
._34_c00210{width:33.589333pt;}
._7_c00210{width:34.560000pt;}
._18_c00210{width:36.096000pt;}
._9_c00210{width:37.632000pt;}
._13_c00210{width:38.656000pt;}
._4_c00210{width:40.533333pt;}
._16_c00210{width:41.813333pt;}
._3a_c00210{width:42.752000pt;}
._d_c00210{width:43.946667pt;}
._a_c00210{width:45.141333pt;}
._1b_c00210{width:46.421333pt;}
._c_c00210{width:47.701333pt;}
._1f_c00210{width:49.237333pt;}
._32_c00210{width:50.346667pt;}
._28_c00210{width:51.285333pt;}
._44_c00210{width:52.565333pt;}
._3f_c00210{width:55.040000pt;}
._1c_c00210{width:56.405333pt;}
._3b_c00210{width:65.194667pt;}
._2a_c00210{width:72.533333pt;}
._2d_c00210{width:74.922667pt;}
._36_c00210{width:82.464000pt;}
._35_c00210{width:85.226667pt;}
._3e_c00210{width:160.341333pt;}
._37_c00210{width:167.498667pt;}
._3c_c00210{width:169.216000pt;}
._42_c00210{width:174.250667pt;}
._27_c00210{width:241.792000pt;}
._25_c00210{width:243.029333pt;}
._38_c00210{width:246.986667pt;}
._24_c00210{width:670.208000pt;}
._40_c00210{width:1290.410667pt;}
.fs3_c00210{font-size:42.666667pt;}
.fs1_c00210{font-size:74.666667pt;}
.fs0_c00210{font-size:85.333333pt;}
.fs2_c00210{font-size:90.666667pt;}
.y0_c00210{bottom:0.000000pt;}
.y26_c00210{bottom:2.760000pt;}
.y25_c00210{bottom:6.425217pt;}
.y24_c00210{bottom:72.506667pt;}
.y23_c00210{bottom:104.640000pt;}
.y22_c00210{bottom:134.373333pt;}
.y21_c00210{bottom:163.840000pt;}
.y20_c00210{bottom:195.573333pt;}
.y1f_c00210{bottom:225.306667pt;}
.y1e_c00210{bottom:256.373333pt;}
.y1d_c00210{bottom:286.106667pt;}
.y1c_c00210{bottom:315.840000pt;}
.y1b_c00210{bottom:345.040000pt;}
.y1a_c00210{bottom:375.573333pt;}
.y19_c00210{bottom:405.040000pt;}
.y18_c00210{bottom:434.906667pt;}
.y17_c00210{bottom:465.440000pt;}
.y16_c00210{bottom:494.906667pt;}
.y15_c00210{bottom:524.373333pt;}
.y14_c00210{bottom:553.840000pt;}
.y13_c00210{bottom:582.906667pt;}
.y12_c00210{bottom:612.906667pt;}
.y11_c00210{bottom:642.640000pt;}
.y10_c00210{bottom:673.706667pt;}
.yf_c00210{bottom:702.640000pt;}
.ye_c00210{bottom:731.040000pt;}
.yd_c00210{bottom:761.706667pt;}
.yc_c00210{bottom:790.906667pt;}
.yb_c00210{bottom:820.506667pt;}
.ya_c00210{bottom:850.106667pt;}
.y9_c00210{bottom:877.840000pt;}
.y8_c00210{bottom:907.840000pt;}
.y7_c00210{bottom:930.240000pt;}
.y6_c00210{bottom:967.706667pt;}
.y5_c00210{bottom:997.706667pt;}
.y4_c00210{bottom:1027.706667pt;}
.y3_c00210{bottom:1056.640000pt;}
.y2_c00210{bottom:1086.506667pt;}
.y1_c00210{bottom:1116.640000pt;}
.h4_c00210{height:11.733399pt;}
.h5_c00210{height:38.937500pt;}
.h3_c00210{height:94.536458pt;}
.h2_c00210{height:108.041667pt;}
.h0_c00210{height:1229.733333pt;}
.h1_c00210{height:1230.000000pt;}
.w2_c00210{width:93.222667pt;}
.w0_c00210{width:780.466667pt;}
.w1_c00210{width:780.666667pt;}
.x0_c00210{left:0.000000pt;}
.x9_c00210{left:47.733333pt;}
.xa_c00210{left:50.133333pt;}
.x8_c00210{left:51.200000pt;}
.x7_c00210{left:52.133333pt;}
.x6_c00210{left:53.066667pt;}
.x5_c00210{left:54.933333pt;}
.x2_c00210{left:57.333333pt;}
.x1_c00210{left:58.400000pt;}
.xc_c00210{left:88.133333pt;}
.xb_c00210{left:98.666667pt;}
.x4_c00210{left:101.066667pt;}
.x3_c00210{left:263.733333pt;}
.xe_c00210{left:347.401530pt;}
.xd_c00210{left:522.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b3849ecd7061394b93bb110.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_3e4f6df775508670816c04db.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_ea44bbd07c6b819230d59587.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.ls1_c00211{letter-spacing:12.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00211{word-spacing:-51.000000px;}
.ws1_c00211{word-spacing:-32.244000px;}
.ws4_c00211{word-spacing:-23.136000px;}
.ws5_c00211{word-spacing:0.000000px;}
.ws0_c00211{word-spacing:6.300000px;}
.ws3_c00211{word-spacing:10.248000px;}
._2f_c00211{margin-left:-47.616000px;}
._27_c00211{margin-left:-30.816000px;}
._20_c00211{margin-left:-23.904000px;}
._1b_c00211{margin-left:-20.244000px;}
._2d_c00211{margin-left:-16.548000px;}
._1c_c00211{margin-left:-14.496000px;}
._41_c00211{margin-left:-13.464000px;}
._43_c00211{margin-left:-11.040000px;}
._3b_c00211{margin-left:-9.204000px;}
._33_c00211{margin-left:-7.344000px;}
._2e_c00211{margin-left:-5.652000px;}
._32_c00211{margin-left:-4.284000px;}
._d_c00211{margin-left:-3.168000px;}
._2_c00211{margin-left:-2.112000px;}
._10_c00211{margin-left:-1.056000px;}
._0_c00211{width:1.824000px;}
._9_c00211{width:2.976000px;}
._b_c00211{width:4.608000px;}
._8_c00211{width:5.664000px;}
._5_c00211{width:7.584000px;}
._7_c00211{width:9.408000px;}
._4_c00211{width:10.560000px;}
._25_c00211{width:12.384000px;}
._16_c00211{width:14.196000px;}
._19_c00211{width:16.236000px;}
._18_c00211{width:17.856000px;}
._1e_c00211{width:19.104000px;}
._24_c00211{width:21.420000px;}
._2a_c00211{width:22.632000px;}
._2b_c00211{width:24.684000px;}
._1a_c00211{width:26.208000px;}
._2c_c00211{width:27.264000px;}
._12_c00211{width:28.320000px;}
._17_c00211{width:29.376000px;}
._1_c00211{width:30.816000px;}
._a_c00211{width:32.352000px;}
._c_c00211{width:33.696000px;}
._14_c00211{width:34.944000px;}
._3_c00211{width:36.768000px;}
._44_c00211{width:38.016000px;}
._6_c00211{width:39.168000px;}
._1f_c00211{width:40.524000px;}
._1d_c00211{width:41.664000px;}
._15_c00211{width:43.008000px;}
._11_c00211{width:44.544000px;}
._34_c00211{width:46.644000px;}
._36_c00211{width:47.988000px;}
._23_c00211{width:49.344000px;}
._e_c00211{width:50.976000px;}
._3c_c00211{width:52.236000px;}
._f_c00211{width:54.624000px;}
._13_c00211{width:56.544000px;}
._37_c00211{width:58.752000px;}
._39_c00211{width:60.960000px;}
._38_c00211{width:63.072000px;}
._21_c00211{width:66.528000px;}
._40_c00211{width:69.012000px;}
._31_c00211{width:75.288000px;}
._3a_c00211{width:88.992000px;}
._3f_c00211{width:173.712000px;}
._22_c00211{width:185.376000px;}
._35_c00211{width:188.256000px;}
._3e_c00211{width:258.816000px;}
._42_c00211{width:332.544000px;}
._29_c00211{width:497.472000px;}
._28_c00211{width:509.280000px;}
._30_c00211{width:740.880000px;}
._26_c00211{width:966.048000px;}
._3d_c00211{width:1432.032000px;}
.fc2_c00211{color:transparent;}
.fc1_c00211{color:rgb(128,128,128);}
.fc0_c00211{color:rgb(0,0,0);}
.fs3_c00211{font-size:48.000000px;}
.fs1_c00211{font-size:84.000000px;}
.fs0_c00211{font-size:96.000000px;}
.fs2_c00211{font-size:102.000000px;}
.y0_c00211{bottom:0.000000px;}
.y26_c00211{bottom:3.105000px;}
.y25_c00211{bottom:7.228357px;}
.y24_c00211{bottom:76.980000px;}
.y23_c00211{bottom:112.080000px;}
.y22_c00211{bottom:146.430000px;}
.y21_c00211{bottom:180.180000px;}
.y20_c00211{bottom:214.680000px;}
.y1f_c00211{bottom:248.130000px;}
.y1e_c00211{bottom:282.930000px;}
.y1d_c00211{bottom:316.980000px;}
.y1c_c00211{bottom:348.930000px;}
.y1b_c00211{bottom:382.380000px;}
.y1a_c00211{bottom:420.630000px;}
.y19_c00211{bottom:452.880000px;}
.y18_c00211{bottom:487.080000px;}
.y17_c00211{bottom:521.130000px;}
.y16_c00211{bottom:554.880000px;}
.y15_c00211{bottom:588.930000px;}
.y14_c00211{bottom:622.680000px;}
.y13_c00211{bottom:655.530000px;}
.y12_c00211{bottom:690.630000px;}
.y11_c00211{bottom:723.330000px;}
.y10_c00211{bottom:757.680000px;}
.yf_c00211{bottom:791.130000px;}
.ye_c00211{bottom:824.580000px;}
.yd_c00211{bottom:858.330000px;}
.yc_c00211{bottom:892.080000px;}
.yb_c00211{bottom:925.830000px;}
.ya_c00211{bottom:958.830000px;}
.y9_c00211{bottom:991.530000px;}
.y8_c00211{bottom:1025.280000px;}
.y7_c00211{bottom:1058.430000px;}
.y6_c00211{bottom:1091.430000px;}
.y5_c00211{bottom:1125.180000px;}
.y4_c00211{bottom:1158.030000px;}
.y3_c00211{bottom:1191.480000px;}
.y2_c00211{bottom:1224.480000px;}
.y1_c00211{bottom:1257.630000px;}
.h5_c00211{height:13.200074px;}
.h6_c00211{height:43.804688px;}
.h4_c00211{height:98.314453px;}
.h3_c00211{height:106.353516px;}
.h2_c00211{height:121.546875px;}
.h0_c00211{height:1382.700000px;}
.h1_c00211{height:1383.000000px;}
.w2_c00211{width:104.875500px;}
.w0_c00211{width:863.175000px;}
.w1_c00211{width:863.250000px;}
.x0_c00211{left:0.000000px;}
.x6_c00211{left:34.800000px;}
.x9_c00211{left:149.400000px;}
.x3_c00211{left:167.100000px;}
.x7_c00211{left:252.000000px;}
.xa_c00211{left:253.500000px;}
.x1_c00211{left:254.700000px;}
.x4_c00211{left:256.200000px;}
.x2_c00211{left:257.850000px;}
.x8_c00211{left:258.900000px;}
.x5_c00211{left:308.700000px;}
.xc_c00211{left:383.401749px;}
.xb_c00211{left:786.000000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ls1_c00211{letter-spacing:10.666667pt;}
.ws2_c00211{word-spacing:-45.333333pt;}
.ws1_c00211{word-spacing:-28.661333pt;}
.ws4_c00211{word-spacing:-20.565333pt;}
.ws5_c00211{word-spacing:0.000000pt;}
.ws0_c00211{word-spacing:5.600000pt;}
.ws3_c00211{word-spacing:9.109333pt;}
._2f_c00211{margin-left:-42.325333pt;}
._27_c00211{margin-left:-27.392000pt;}
._20_c00211{margin-left:-21.248000pt;}
._1b_c00211{margin-left:-17.994667pt;}
._2d_c00211{margin-left:-14.709333pt;}
._1c_c00211{margin-left:-12.885333pt;}
._41_c00211{margin-left:-11.968000pt;}
._43_c00211{margin-left:-9.813333pt;}
._3b_c00211{margin-left:-8.181333pt;}
._33_c00211{margin-left:-6.528000pt;}
._2e_c00211{margin-left:-5.024000pt;}
._32_c00211{margin-left:-3.808000pt;}
._d_c00211{margin-left:-2.816000pt;}
._2_c00211{margin-left:-1.877333pt;}
._10_c00211{margin-left:-0.938667pt;}
._0_c00211{width:1.621333pt;}
._9_c00211{width:2.645333pt;}
._b_c00211{width:4.096000pt;}
._8_c00211{width:5.034667pt;}
._5_c00211{width:6.741333pt;}
._7_c00211{width:8.362667pt;}
._4_c00211{width:9.386667pt;}
._25_c00211{width:11.008000pt;}
._16_c00211{width:12.618667pt;}
._19_c00211{width:14.432000pt;}
._18_c00211{width:15.872000pt;}
._1e_c00211{width:16.981333pt;}
._24_c00211{width:19.040000pt;}
._2a_c00211{width:20.117333pt;}
._2b_c00211{width:21.941333pt;}
._1a_c00211{width:23.296000pt;}
._2c_c00211{width:24.234667pt;}
._12_c00211{width:25.173333pt;}
._17_c00211{width:26.112000pt;}
._1_c00211{width:27.392000pt;}
._a_c00211{width:28.757333pt;}
._c_c00211{width:29.952000pt;}
._14_c00211{width:31.061333pt;}
._3_c00211{width:32.682667pt;}
._44_c00211{width:33.792000pt;}
._6_c00211{width:34.816000pt;}
._1f_c00211{width:36.021333pt;}
._1d_c00211{width:37.034667pt;}
._15_c00211{width:38.229333pt;}
._11_c00211{width:39.594667pt;}
._34_c00211{width:41.461333pt;}
._36_c00211{width:42.656000pt;}
._23_c00211{width:43.861333pt;}
._e_c00211{width:45.312000pt;}
._3c_c00211{width:46.432000pt;}
._f_c00211{width:48.554667pt;}
._13_c00211{width:50.261333pt;}
._37_c00211{width:52.224000pt;}
._39_c00211{width:54.186667pt;}
._38_c00211{width:56.064000pt;}
._21_c00211{width:59.136000pt;}
._40_c00211{width:61.344000pt;}
._31_c00211{width:66.922667pt;}
._3a_c00211{width:79.104000pt;}
._3f_c00211{width:154.410667pt;}
._22_c00211{width:164.778667pt;}
._35_c00211{width:167.338667pt;}
._3e_c00211{width:230.058667pt;}
._42_c00211{width:295.594667pt;}
._29_c00211{width:442.197333pt;}
._28_c00211{width:452.693333pt;}
._30_c00211{width:658.560000pt;}
._26_c00211{width:858.709333pt;}
._3d_c00211{width:1272.917333pt;}
.fs3_c00211{font-size:42.666667pt;}
.fs1_c00211{font-size:74.666667pt;}
.fs0_c00211{font-size:85.333333pt;}
.fs2_c00211{font-size:90.666667pt;}
.y0_c00211{bottom:0.000000pt;}
.y26_c00211{bottom:2.760000pt;}
.y25_c00211{bottom:6.425206pt;}
.y24_c00211{bottom:68.426667pt;}
.y23_c00211{bottom:99.626667pt;}
.y22_c00211{bottom:130.160000pt;}
.y21_c00211{bottom:160.160000pt;}
.y20_c00211{bottom:190.826667pt;}
.y1f_c00211{bottom:220.560000pt;}
.y1e_c00211{bottom:251.493333pt;}
.y1d_c00211{bottom:281.760000pt;}
.y1c_c00211{bottom:310.160000pt;}
.y1b_c00211{bottom:339.893333pt;}
.y1a_c00211{bottom:373.893333pt;}
.y19_c00211{bottom:402.560000pt;}
.y18_c00211{bottom:432.960000pt;}
.y17_c00211{bottom:463.226667pt;}
.y16_c00211{bottom:493.226667pt;}
.y15_c00211{bottom:523.493333pt;}
.y14_c00211{bottom:553.493333pt;}
.y13_c00211{bottom:582.693333pt;}
.y12_c00211{bottom:613.893333pt;}
.y11_c00211{bottom:642.960000pt;}
.y10_c00211{bottom:673.493333pt;}
.yf_c00211{bottom:703.226667pt;}
.ye_c00211{bottom:732.960000pt;}
.yd_c00211{bottom:762.960000pt;}
.yc_c00211{bottom:792.960000pt;}
.yb_c00211{bottom:822.960000pt;}
.ya_c00211{bottom:852.293333pt;}
.y9_c00211{bottom:881.360000pt;}
.y8_c00211{bottom:911.360000pt;}
.y7_c00211{bottom:940.826667pt;}
.y6_c00211{bottom:970.160000pt;}
.y5_c00211{bottom:1000.160000pt;}
.y4_c00211{bottom:1029.360000pt;}
.y3_c00211{bottom:1059.093333pt;}
.y2_c00211{bottom:1088.426667pt;}
.y1_c00211{bottom:1117.893333pt;}
.h5_c00211{height:11.733399pt;}
.h6_c00211{height:38.937500pt;}
.h4_c00211{height:87.390625pt;}
.h3_c00211{height:94.536458pt;}
.h2_c00211{height:108.041667pt;}
.h0_c00211{height:1229.066667pt;}
.h1_c00211{height:1229.333333pt;}
.w2_c00211{width:93.222667pt;}
.w0_c00211{width:767.266667pt;}
.w1_c00211{width:767.333333pt;}
.x0_c00211{left:0.000000pt;}
.x6_c00211{left:30.933333pt;}
.x9_c00211{left:132.800000pt;}
.x3_c00211{left:148.533333pt;}
.x7_c00211{left:224.000000pt;}
.xa_c00211{left:225.333333pt;}
.x1_c00211{left:226.400000pt;}
.x4_c00211{left:227.733333pt;}
.x2_c00211{left:229.200000pt;}
.x8_c00211{left:230.133333pt;}
.x5_c00211{left:274.400000pt;}
.xc_c00211{left:340.801554pt;}
.xb_c00211{left:698.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2c65cd3909ad1309bf8bf48.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_b359386d6f0c9fb852309ab9.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_7322a2304bbae588d0fa5bcc.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls2_c00212{letter-spacing:0.000000px;}
.ls1_c00212{letter-spacing:8.520000px;}
.ls0_c00212{letter-spacing:21.852000px;}
.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:-63.504000px;}
.ws0_c00212{word-spacing:-51.000000px;}
.ws2_c00212{word-spacing:0.000000px;}
._3f_c00212{margin-left:-30.816000px;}
._28_c00212{margin-left:-27.840000px;}
._33_c00212{margin-left:-16.800000px;}
._2b_c00212{margin-left:-12.882000px;}
._2c_c00212{margin-left:-11.688000px;}
._41_c00212{margin-left:-10.656000px;}
._35_c00212{margin-left:-8.952000px;}
._8_c00212{margin-left:-7.296000px;}
._9_c00212{margin-left:-6.144000px;}
._38_c00212{margin-left:-5.016000px;}
._34_c00212{margin-left:-4.008000px;}
._32_c00212{margin-left:-2.208000px;}
._f_c00212{margin-left:-1.056000px;}
._5_c00212{width:1.728000px;}
._d_c00212{width:2.976000px;}
._1_c00212{width:4.224000px;}
._4_c00212{width:5.280000px;}
._3_c00212{width:6.528000px;}
._14_c00212{width:7.584000px;}
._0_c00212{width:8.640000px;}
._c_c00212{width:10.080000px;}
._6_c00212{width:11.616000px;}
._2_c00212{width:12.672000px;}
._3e_c00212{width:13.920000px;}
._19_c00212{width:14.976000px;}
._a_c00212{width:16.800000px;}
._36_c00212{width:18.264000px;}
._b_c00212{width:19.392000px;}
._39_c00212{width:20.616000px;}
._1d_c00212{width:21.696000px;}
._1b_c00212{width:24.192000px;}
._31_c00212{width:25.536000px;}
._7_c00212{width:26.784000px;}
._e_c00212{width:28.992000px;}
._13_c00212{width:31.296000px;}
._1e_c00212{width:32.448000px;}
._11_c00212{width:33.792000px;}
._12_c00212{width:34.944000px;}
._1c_c00212{width:36.192000px;}
._26_c00212{width:37.440000px;}
._10_c00212{width:39.072000px;}
._20_c00212{width:40.128000px;}
._15_c00212{width:41.376000px;}
._17_c00212{width:42.816000px;}
._1a_c00212{width:44.640000px;}
._27_c00212{width:46.152000px;}
._25_c00212{width:48.192000px;}
._3a_c00212{width:49.800000px;}
._40_c00212{width:50.880000px;}
._29_c00212{width:52.032000px;}
._37_c00212{width:54.240000px;}
._24_c00212{width:55.776000px;}
._16_c00212{width:57.600000px;}
._2f_c00212{width:60.192000px;}
._2a_c00212{width:63.360000px;}
._22_c00212{width:66.912000px;}
._23_c00212{width:69.792000px;}
._3b_c00212{width:71.592000px;}
._21_c00212{width:73.440000px;}
._1f_c00212{width:75.552000px;}
._3d_c00212{width:110.496000px;}
._2d_c00212{width:111.840000px;}
._2e_c00212{width:172.896000px;}
._18_c00212{width:179.232000px;}
._30_c00212{width:251.808000px;}
._42_c00212{width:750.528000px;}
._3c_c00212{width:1027.488000px;}
.fc2_c00212{color:transparent;}
.fc1_c00212{color:rgb(128,128,128);}
.fc0_c00212{color:rgb(0,0,0);}
.fs3_c00212{font-size:48.000000px;}
.fs1_c00212{font-size:84.000000px;}
.fs0_c00212{font-size:96.000000px;}
.fs2_c00212{font-size:102.000000px;}
.y0_c00212{bottom:0.000000px;}
.y26_c00212{bottom:3.105000px;}
.y25_c00212{bottom:7.228369px;}
.y24_c00212{bottom:96.870000px;}
.y23_c00212{bottom:130.920000px;}
.y22_c00212{bottom:164.670000px;}
.y21_c00212{bottom:199.020000px;}
.y20_c00212{bottom:231.420000px;}
.y1f_c00212{bottom:267.870000px;}
.y1e_c00212{bottom:301.320000px;}
.y1d_c00212{bottom:335.070000px;}
.y1c_c00212{bottom:368.520000px;}
.y1b_c00212{bottom:402.270000px;}
.y1a_c00212{bottom:435.420000px;}
.y19_c00212{bottom:469.020000px;}
.y18_c00212{bottom:502.170000px;}
.y17_c00212{bottom:536.220000px;}
.y16_c00212{bottom:569.070000px;}
.y15_c00212{bottom:602.370000px;}
.y14_c00212{bottom:635.820000px;}
.y13_c00212{bottom:668.820000px;}
.y12_c00212{bottom:701.820000px;}
.y11_c00212{bottom:735.120000px;}
.y10_c00212{bottom:768.420000px;}
.yf_c00212{bottom:801.570000px;}
.ye_c00212{bottom:834.870000px;}
.yd_c00212{bottom:868.020000px;}
.yc_c00212{bottom:901.020000px;}
.yb_c00212{bottom:934.470000px;}
.ya_c00212{bottom:967.920000px;}
.y9_c00212{bottom:1001.370000px;}
.y8_c00212{bottom:1034.820000px;}
.y7_c00212{bottom:1068.420000px;}
.y6_c00212{bottom:1101.270000px;}
.y5_c00212{bottom:1135.320000px;}
.y4_c00212{bottom:1168.470000px;}
.y3_c00212{bottom:1202.070000px;}
.y2_c00212{bottom:1235.220000px;}
.y1_c00212{bottom:1268.370000px;}
.h3_c00212{height:13.200073px;}
.h4_c00212{height:43.804688px;}
.h2_c00212{height:121.546875px;}
.h0_c00212{height:1383.450000px;}
.h1_c00212{height:1383.750000px;}
.w2_c00212{width:104.875500px;}
.w0_c00212{width:878.025000px;}
.w1_c00212{width:878.250000px;}
.x0_c00212{left:0.000000px;}
.x7_c00212{left:52.650000px;}
.x5_c00212{left:54.300000px;}
.x6_c00212{left:55.800000px;}
.x1_c00212{left:57.000000px;}
.x2_c00212{left:58.050000px;}
.x3_c00212{left:59.700000px;}
.x8_c00212{left:93.750000px;}
.x4_c00212{left:107.250000px;}
.x9_c00212{left:333.750000px;}
.xa_c00212{left:390.826721px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls2_c00212{letter-spacing:0.000000pt;}
.ls1_c00212{letter-spacing:7.573333pt;}
.ls0_c00212{letter-spacing:19.424000pt;}
.ws1_c00212{word-spacing:-56.448000pt;}
.ws0_c00212{word-spacing:-45.333333pt;}
.ws2_c00212{word-spacing:0.000000pt;}
._3f_c00212{margin-left:-27.392000pt;}
._28_c00212{margin-left:-24.746667pt;}
._33_c00212{margin-left:-14.933333pt;}
._2b_c00212{margin-left:-11.450667pt;}
._2c_c00212{margin-left:-10.389333pt;}
._41_c00212{margin-left:-9.472000pt;}
._35_c00212{margin-left:-7.957333pt;}
._8_c00212{margin-left:-6.485333pt;}
._9_c00212{margin-left:-5.461333pt;}
._38_c00212{margin-left:-4.458667pt;}
._34_c00212{margin-left:-3.562667pt;}
._32_c00212{margin-left:-1.962667pt;}
._f_c00212{margin-left:-0.938667pt;}
._5_c00212{width:1.536000pt;}
._d_c00212{width:2.645333pt;}
._1_c00212{width:3.754667pt;}
._4_c00212{width:4.693333pt;}
._3_c00212{width:5.802667pt;}
._14_c00212{width:6.741333pt;}
._0_c00212{width:7.680000pt;}
._c_c00212{width:8.960000pt;}
._6_c00212{width:10.325333pt;}
._2_c00212{width:11.264000pt;}
._3e_c00212{width:12.373333pt;}
._19_c00212{width:13.312000pt;}
._a_c00212{width:14.933333pt;}
._36_c00212{width:16.234667pt;}
._b_c00212{width:17.237333pt;}
._39_c00212{width:18.325333pt;}
._1d_c00212{width:19.285333pt;}
._1b_c00212{width:21.504000pt;}
._31_c00212{width:22.698667pt;}
._7_c00212{width:23.808000pt;}
._e_c00212{width:25.770667pt;}
._13_c00212{width:27.818667pt;}
._1e_c00212{width:28.842667pt;}
._11_c00212{width:30.037333pt;}
._12_c00212{width:31.061333pt;}
._1c_c00212{width:32.170667pt;}
._26_c00212{width:33.280000pt;}
._10_c00212{width:34.730667pt;}
._20_c00212{width:35.669333pt;}
._15_c00212{width:36.778667pt;}
._17_c00212{width:38.058667pt;}
._1a_c00212{width:39.680000pt;}
._27_c00212{width:41.024000pt;}
._25_c00212{width:42.837333pt;}
._3a_c00212{width:44.266667pt;}
._40_c00212{width:45.226667pt;}
._29_c00212{width:46.250667pt;}
._37_c00212{width:48.213333pt;}
._24_c00212{width:49.578667pt;}
._16_c00212{width:51.200000pt;}
._2f_c00212{width:53.504000pt;}
._2a_c00212{width:56.320000pt;}
._22_c00212{width:59.477333pt;}
._23_c00212{width:62.037333pt;}
._3b_c00212{width:63.637333pt;}
._21_c00212{width:65.280000pt;}
._1f_c00212{width:67.157333pt;}
._3d_c00212{width:98.218667pt;}
._2d_c00212{width:99.413333pt;}
._2e_c00212{width:153.685333pt;}
._18_c00212{width:159.317333pt;}
._30_c00212{width:223.829333pt;}
._42_c00212{width:667.136000pt;}
._3c_c00212{width:913.322667pt;}
.fs3_c00212{font-size:42.666667pt;}
.fs1_c00212{font-size:74.666667pt;}
.fs0_c00212{font-size:85.333333pt;}
.fs2_c00212{font-size:90.666667pt;}
.y0_c00212{bottom:0.000000pt;}
.y26_c00212{bottom:2.760000pt;}
.y25_c00212{bottom:6.425217pt;}
.y24_c00212{bottom:86.106667pt;}
.y23_c00212{bottom:116.373333pt;}
.y22_c00212{bottom:146.373333pt;}
.y21_c00212{bottom:176.906667pt;}
.y20_c00212{bottom:205.706667pt;}
.y1f_c00212{bottom:238.106667pt;}
.y1e_c00212{bottom:267.840000pt;}
.y1d_c00212{bottom:297.840000pt;}
.y1c_c00212{bottom:327.573333pt;}
.y1b_c00212{bottom:357.573333pt;}
.y1a_c00212{bottom:387.040000pt;}
.y19_c00212{bottom:416.906667pt;}
.y18_c00212{bottom:446.373333pt;}
.y17_c00212{bottom:476.640000pt;}
.y16_c00212{bottom:505.840000pt;}
.y15_c00212{bottom:535.440000pt;}
.y14_c00212{bottom:565.173333pt;}
.y13_c00212{bottom:594.506667pt;}
.y12_c00212{bottom:623.840000pt;}
.y11_c00212{bottom:653.440000pt;}
.y10_c00212{bottom:683.040000pt;}
.yf_c00212{bottom:712.506667pt;}
.ye_c00212{bottom:742.106667pt;}
.yd_c00212{bottom:771.573333pt;}
.yc_c00212{bottom:800.906667pt;}
.yb_c00212{bottom:830.640000pt;}
.ya_c00212{bottom:860.373333pt;}
.y9_c00212{bottom:890.106667pt;}
.y8_c00212{bottom:919.840000pt;}
.y7_c00212{bottom:949.706667pt;}
.y6_c00212{bottom:978.906667pt;}
.y5_c00212{bottom:1009.173333pt;}
.y4_c00212{bottom:1038.640000pt;}
.y3_c00212{bottom:1068.506667pt;}
.y2_c00212{bottom:1097.973333pt;}
.y1_c00212{bottom:1127.440000pt;}
.h3_c00212{height:11.733399pt;}
.h4_c00212{height:38.937500pt;}
.h2_c00212{height:108.041667pt;}
.h0_c00212{height:1229.733333pt;}
.h1_c00212{height:1230.000000pt;}
.w2_c00212{width:93.222667pt;}
.w0_c00212{width:780.466667pt;}
.w1_c00212{width:780.666667pt;}
.x0_c00212{left:0.000000pt;}
.x7_c00212{left:46.800000pt;}
.x5_c00212{left:48.266667pt;}
.x6_c00212{left:49.600000pt;}
.x1_c00212{left:50.666667pt;}
.x2_c00212{left:51.600000pt;}
.x3_c00212{left:53.066667pt;}
.x8_c00212{left:83.333333pt;}
.x4_c00212{left:95.333333pt;}
.x9_c00212{left:296.666667pt;}
.xa_c00212{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f953a16d86156ae6abca972.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_4efdd98ae73c68ea0d6f183e.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_e41309fd1bac4af30b2d643a.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls7_c00213{letter-spacing:-6.000000px;}
.ls6_c00213{letter-spacing:0.000000px;}
.ls1_c00213{letter-spacing:1.500000px;}
.ls2_c00213{letter-spacing:4.248000px;}
.ls5_c00213{letter-spacing:11.988000px;}
.ls3_c00213{letter-spacing:14.436000px;}
.ls8_c00213{letter-spacing:18.000000px;}
.ls4_c00213{letter-spacing:35.076000px;}
.ls0_c00213{letter-spacing:49.773000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00213{word-spacing:-52.704000px;}
.ws4_c00213{word-spacing:-35.541000px;}
.ws2_c00213{word-spacing:-34.704000px;}
.ws0_c00213{word-spacing:-29.427000px;}
.ws3_c00213{word-spacing:-23.136000px;}
.ws5_c00213{word-spacing:-20.244000px;}
.ws6_c00213{word-spacing:0.000000px;}
._31_c00213{margin-left:-30.189000px;}
._44_c00213{margin-left:-28.800000px;}
._2a_c00213{margin-left:-25.056000px;}
._27_c00213{margin-left:-22.752000px;}
._22_c00213{margin-left:-20.880000px;}
._20_c00213{margin-left:-18.054000px;}
._41_c00213{margin-left:-16.776000px;}
._23_c00213{margin-left:-15.696000px;}
._24_c00213{margin-left:-13.968000px;}
._25_c00213{margin-left:-12.066000px;}
._21_c00213{margin-left:-10.944000px;}
._1f_c00213{margin-left:-9.363000px;}
._1a_c00213{margin-left:-8.352000px;}
._1c_c00213{margin-left:-6.912000px;}
._19_c00213{margin-left:-5.421000px;}
._1b_c00213{margin-left:-3.888000px;}
._1d_c00213{margin-left:-2.652000px;}
._1e_c00213{margin-left:-1.455000px;}
._4_c00213{width:1.824000px;}
._0_c00213{width:2.880000px;}
._2_c00213{width:4.416000px;}
._1_c00213{width:5.856000px;}
._8_c00213{width:7.008000px;}
._a_c00213{width:8.448000px;}
._11_c00213{width:10.080000px;}
._7_c00213{width:12.096000px;}
._17_c00213{width:13.200000px;}
._14_c00213{width:14.208000px;}
._c_c00213{width:15.360000px;}
._18_c00213{width:16.656000px;}
._34_c00213{width:18.501000px;}
._3f_c00213{width:19.680000px;}
._13_c00213{width:21.024000px;}
._2c_c00213{width:25.632000px;}
._5_c00213{width:27.648000px;}
._28_c00213{width:28.845000px;}
._35_c00213{width:30.144000px;}
._b_c00213{width:32.256000px;}
._30_c00213{width:33.408000px;}
._3d_c00213{width:34.464000px;}
._3_c00213{width:35.904000px;}
._2e_c00213{width:37.020000px;}
._10_c00213{width:39.456000px;}
._3e_c00213{width:40.512000px;}
._26_c00213{width:41.760000px;}
._3c_c00213{width:42.912000px;}
._6_c00213{width:44.640000px;}
._32_c00213{width:47.100000px;}
._9_c00213{width:49.248000px;}
._e_c00213{width:51.936000px;}
._12_c00213{width:53.664000px;}
._f_c00213{width:56.544000px;}
._3a_c00213{width:57.984000px;}
._2b_c00213{width:60.411000px;}
._38_c00213{width:61.488000px;}
._49_c00213{width:63.417000px;}
._40_c00213{width:65.316000px;}
._d_c00213{width:66.336000px;}
._15_c00213{width:67.536000px;}
._3b_c00213{width:69.435000px;}
._37_c00213{width:71.298000px;}
._16_c00213{width:76.416000px;}
._2d_c00213{width:78.132000px;}
._36_c00213{width:79.392000px;}
._42_c00213{width:96.672000px;}
._47_c00213{width:145.569000px;}
._45_c00213{width:150.501000px;}
._46_c00213{width:156.444000px;}
._33_c00213{width:172.404000px;}
._43_c00213{width:345.312000px;}
._29_c00213{width:366.624000px;}
._39_c00213{width:425.976000px;}
._4a_c00213{width:457.188000px;}
._48_c00213{width:609.624000px;}
._2f_c00213{width:1273.176000px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(128,128,128);}
.fc0_c00213{color:rgb(0,0,0);}
.fs7_c00213{font-size:30.000000px;}
.fs4_c00213{font-size:33.000000px;}
.fs3_c00213{font-size:36.000000px;}
.fs8_c00213{font-size:48.000000px;}
.fs5_c00213{font-size:84.000000px;}
.fs0_c00213{font-size:96.000000px;}
.fs6_c00213{font-size:99.000000px;}
.fs1_c00213{font-size:144.000000px;}
.fs2_c00213{font-size:147.000000px;}
.y0_c00213{bottom:0.000000px;}
.y23_c00213{bottom:3.105000px;}
.y22_c00213{bottom:7.228357px;}
.y21_c00213{bottom:119.430000px;}
.y20_c00213{bottom:128.580000px;}
.y1f_c00213{bottom:163.980000px;}
.y1e_c00213{bottom:199.230000px;}
.y1d_c00213{bottom:232.980000px;}
.y1c_c00213{bottom:270.780000px;}
.y1b_c00213{bottom:302.130000px;}
.y1a_c00213{bottom:336.780000px;}
.y19_c00213{bottom:370.680000px;}
.y18_c00213{bottom:404.280000px;}
.y17_c00213{bottom:437.130000px;}
.y16_c00213{bottom:472.230000px;}
.y15_c00213{bottom:506.880000px;}
.y14_c00213{bottom:541.380000px;}
.y13_c00213{bottom:573.780000px;}
.y12_c00213{bottom:608.130000px;}
.y11_c00213{bottom:641.880000px;}
.y10_c00213{bottom:675.780000px;}
.yf_c00213{bottom:706.830000px;}
.ye_c00213{bottom:740.580000px;}
.yd_c00213{bottom:775.680000px;}
.yc_c00213{bottom:805.980000px;}
.yb_c00213{bottom:811.980000px;}
.ya_c00213{bottom:849.180000px;}
.y9_c00213{bottom:901.230000px;}
.y8_c00213{bottom:951.480000px;}
.y7_c00213{bottom:1001.730000px;}
.y6_c00213{bottom:1051.980000px;}
.y5_c00213{bottom:1103.580000px;}
.y4_c00213{bottom:1180.980000px;}
.y3_c00213{bottom:1213.680000px;}
.y2_c00213{bottom:1247.430000px;}
.y1_c00213{bottom:1280.580000px;}
.h6_c00213{height:13.200074px;}
.h7_c00213{height:43.804688px;}
.h5_c00213{height:45.580078px;}
.h2_c00213{height:121.546875px;}
.h3_c00213{height:182.320312px;}
.h4_c00213{height:186.118652px;}
.h0_c00213{height:1382.700000px;}
.h1_c00213{height:1383.000000px;}
.w2_c00213{width:104.875500px;}
.w0_c00213{width:863.175000px;}
.w1_c00213{width:863.250000px;}
.x0_c00213{left:0.000000px;}
.x12_c00213{left:138.000000px;}
.x11_c00213{left:254.550000px;}
.x10_c00213{left:255.750000px;}
.xf_c00213{left:257.850000px;}
.xa_c00213{left:259.500000px;}
.x9_c00213{left:260.550000px;}
.x3_c00213{left:261.600000px;}
.x2_c00213{left:263.850000px;}
.x1_c00213{left:265.950000px;}
.x4_c00213{left:275.700000px;}
.x8_c00213{left:286.950000px;}
.x13_c00213{left:298.950000px;}
.xc_c00213{left:358.800000px;}
.xb_c00213{left:364.200000px;}
.x14_c00213{left:372.900000px;}
.x15_c00213{left:383.401749px;}
.xe_c00213{left:385.350000px;}
.xd_c00213{left:405.750000px;}
.x7_c00213{left:410.700000px;}
.x6_c00213{left:427.650000px;}
.x5_c00213{left:435.450000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls7_c00213{letter-spacing:-5.333333pt;}
.ls6_c00213{letter-spacing:0.000000pt;}
.ls1_c00213{letter-spacing:1.333333pt;}
.ls2_c00213{letter-spacing:3.776000pt;}
.ls5_c00213{letter-spacing:10.656000pt;}
.ls3_c00213{letter-spacing:12.832000pt;}
.ls8_c00213{letter-spacing:16.000000pt;}
.ls4_c00213{letter-spacing:31.178667pt;}
.ls0_c00213{letter-spacing:44.242667pt;}
.ws1_c00213{word-spacing:-46.848000pt;}
.ws4_c00213{word-spacing:-31.592000pt;}
.ws2_c00213{word-spacing:-30.848000pt;}
.ws0_c00213{word-spacing:-26.157333pt;}
.ws3_c00213{word-spacing:-20.565333pt;}
.ws5_c00213{word-spacing:-17.994667pt;}
.ws6_c00213{word-spacing:0.000000pt;}
._31_c00213{margin-left:-26.834667pt;}
._44_c00213{margin-left:-25.600000pt;}
._2a_c00213{margin-left:-22.272000pt;}
._27_c00213{margin-left:-20.224000pt;}
._22_c00213{margin-left:-18.560000pt;}
._20_c00213{margin-left:-16.048000pt;}
._41_c00213{margin-left:-14.912000pt;}
._23_c00213{margin-left:-13.952000pt;}
._24_c00213{margin-left:-12.416000pt;}
._25_c00213{margin-left:-10.725333pt;}
._21_c00213{margin-left:-9.728000pt;}
._1f_c00213{margin-left:-8.322667pt;}
._1a_c00213{margin-left:-7.424000pt;}
._1c_c00213{margin-left:-6.144000pt;}
._19_c00213{margin-left:-4.818667pt;}
._1b_c00213{margin-left:-3.456000pt;}
._1d_c00213{margin-left:-2.357333pt;}
._1e_c00213{margin-left:-1.293333pt;}
._4_c00213{width:1.621333pt;}
._0_c00213{width:2.560000pt;}
._2_c00213{width:3.925333pt;}
._1_c00213{width:5.205333pt;}
._8_c00213{width:6.229333pt;}
._a_c00213{width:7.509333pt;}
._11_c00213{width:8.960000pt;}
._7_c00213{width:10.752000pt;}
._17_c00213{width:11.733333pt;}
._14_c00213{width:12.629333pt;}
._c_c00213{width:13.653333pt;}
._18_c00213{width:14.805333pt;}
._34_c00213{width:16.445333pt;}
._3f_c00213{width:17.493333pt;}
._13_c00213{width:18.688000pt;}
._2c_c00213{width:22.784000pt;}
._5_c00213{width:24.576000pt;}
._28_c00213{width:25.640000pt;}
._35_c00213{width:26.794667pt;}
._b_c00213{width:28.672000pt;}
._30_c00213{width:29.696000pt;}
._3d_c00213{width:30.634667pt;}
._3_c00213{width:31.914667pt;}
._2e_c00213{width:32.906667pt;}
._10_c00213{width:35.072000pt;}
._3e_c00213{width:36.010667pt;}
._26_c00213{width:37.120000pt;}
._3c_c00213{width:38.144000pt;}
._6_c00213{width:39.680000pt;}
._32_c00213{width:41.866667pt;}
._9_c00213{width:43.776000pt;}
._e_c00213{width:46.165333pt;}
._12_c00213{width:47.701333pt;}
._f_c00213{width:50.261333pt;}
._3a_c00213{width:51.541333pt;}
._2b_c00213{width:53.698667pt;}
._38_c00213{width:54.656000pt;}
._49_c00213{width:56.370667pt;}
._40_c00213{width:58.058667pt;}
._d_c00213{width:58.965333pt;}
._15_c00213{width:60.032000pt;}
._3b_c00213{width:61.720000pt;}
._37_c00213{width:63.376000pt;}
._16_c00213{width:67.925333pt;}
._2d_c00213{width:69.450667pt;}
._36_c00213{width:70.570667pt;}
._42_c00213{width:85.930667pt;}
._47_c00213{width:129.394667pt;}
._45_c00213{width:133.778667pt;}
._46_c00213{width:139.061333pt;}
._33_c00213{width:153.248000pt;}
._43_c00213{width:306.944000pt;}
._29_c00213{width:325.888000pt;}
._39_c00213{width:378.645333pt;}
._4a_c00213{width:406.389333pt;}
._48_c00213{width:541.888000pt;}
._2f_c00213{width:1131.712000pt;}
.fs7_c00213{font-size:26.666667pt;}
.fs4_c00213{font-size:29.333333pt;}
.fs3_c00213{font-size:32.000000pt;}
.fs8_c00213{font-size:42.666667pt;}
.fs5_c00213{font-size:74.666667pt;}
.fs0_c00213{font-size:85.333333pt;}
.fs6_c00213{font-size:88.000000pt;}
.fs1_c00213{font-size:128.000000pt;}
.fs2_c00213{font-size:130.666667pt;}
.y0_c00213{bottom:0.000000pt;}
.y23_c00213{bottom:2.760000pt;}
.y22_c00213{bottom:6.425206pt;}
.y21_c00213{bottom:106.160000pt;}
.y20_c00213{bottom:114.293333pt;}
.y1f_c00213{bottom:145.760000pt;}
.y1e_c00213{bottom:177.093333pt;}
.y1d_c00213{bottom:207.093333pt;}
.y1c_c00213{bottom:240.693333pt;}
.y1b_c00213{bottom:268.560000pt;}
.y1a_c00213{bottom:299.360000pt;}
.y19_c00213{bottom:329.493333pt;}
.y18_c00213{bottom:359.360000pt;}
.y17_c00213{bottom:388.560000pt;}
.y16_c00213{bottom:419.760000pt;}
.y15_c00213{bottom:450.560000pt;}
.y14_c00213{bottom:481.226667pt;}
.y13_c00213{bottom:510.026667pt;}
.y12_c00213{bottom:540.560000pt;}
.y11_c00213{bottom:570.560000pt;}
.y10_c00213{bottom:600.693333pt;}
.yf_c00213{bottom:628.293333pt;}
.ye_c00213{bottom:658.293333pt;}
.yd_c00213{bottom:689.493333pt;}
.yc_c00213{bottom:716.426667pt;}
.yb_c00213{bottom:721.760000pt;}
.ya_c00213{bottom:754.826667pt;}
.y9_c00213{bottom:801.093333pt;}
.y8_c00213{bottom:845.760000pt;}
.y7_c00213{bottom:890.426667pt;}
.y6_c00213{bottom:935.093333pt;}
.y5_c00213{bottom:980.960000pt;}
.y4_c00213{bottom:1049.760000pt;}
.y3_c00213{bottom:1078.826667pt;}
.y2_c00213{bottom:1108.826667pt;}
.y1_c00213{bottom:1138.293333pt;}
.h6_c00213{height:11.733399pt;}
.h7_c00213{height:38.937500pt;}
.h5_c00213{height:40.515625pt;}
.h2_c00213{height:108.041667pt;}
.h3_c00213{height:162.062500pt;}
.h4_c00213{height:165.438802pt;}
.h0_c00213{height:1229.066667pt;}
.h1_c00213{height:1229.333333pt;}
.w2_c00213{width:93.222667pt;}
.w0_c00213{width:767.266667pt;}
.w1_c00213{width:767.333333pt;}
.x0_c00213{left:0.000000pt;}
.x12_c00213{left:122.666667pt;}
.x11_c00213{left:226.266667pt;}
.x10_c00213{left:227.333333pt;}
.xf_c00213{left:229.200000pt;}
.xa_c00213{left:230.666667pt;}
.x9_c00213{left:231.600000pt;}
.x3_c00213{left:232.533333pt;}
.x2_c00213{left:234.533333pt;}
.x1_c00213{left:236.400000pt;}
.x4_c00213{left:245.066667pt;}
.x8_c00213{left:255.066667pt;}
.x13_c00213{left:265.733333pt;}
.xc_c00213{left:318.933333pt;}
.xb_c00213{left:323.733333pt;}
.x14_c00213{left:331.466667pt;}
.x15_c00213{left:340.801554pt;}
.xe_c00213{left:342.533333pt;}
.xd_c00213{left:360.666667pt;}
.x7_c00213{left:365.066667pt;}
.x6_c00213{left:380.133333pt;}
.x5_c00213{left:387.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dde0d47cdd95e1eed7c24451.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_b3acb2f2d9e36a18b6367900.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_dd757a9477a65c6676cf6618.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_8e73807944d1a9e6750f807c.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls1_c00214{letter-spacing:0.000000px;}
.ls3_c00214{letter-spacing:12.000000px;}
.ls0_c00214{letter-spacing:31.200000px;}
.ls2_c00214{letter-spacing:81.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:-104.136000px;}
.ws3_c00214{word-spacing:-32.244000px;}
.ws2_c00214{word-spacing:-25.500000px;}
.ws1_c00214{word-spacing:-0.069000px;}
.ws4_c00214{word-spacing:0.000000px;}
._4a_c00214{margin-left:-26.688000px;}
._3b_c00214{margin-left:-25.152000px;}
._38_c00214{margin-left:-23.328000px;}
._30_c00214{margin-left:-21.504000px;}
._2e_c00214{margin-left:-18.240000px;}
._2c_c00214{margin-left:-12.864000px;}
._35_c00214{margin-left:-11.136000px;}
._2_c00214{margin-left:-9.792000px;}
._4_c00214{margin-left:-8.640000px;}
._0_c00214{margin-left:-7.584000px;}
._15_c00214{margin-left:-6.336000px;}
._3_c00214{margin-left:-5.184000px;}
._1_c00214{margin-left:-4.032000px;}
._25_c00214{margin-left:-2.496000px;}
._f_c00214{margin-left:-1.440000px;}
._14_c00214{width:1.536000px;}
._6_c00214{width:2.688000px;}
._8_c00214{width:4.032000px;}
._36_c00214{width:5.088000px;}
._5_c00214{width:6.144000px;}
._e_c00214{width:7.488000px;}
._b_c00214{width:8.544000px;}
._d_c00214{width:9.600000px;}
._1f_c00214{width:10.656000px;}
._a_c00214{width:12.384000px;}
._40_c00214{width:13.632000px;}
._9_c00214{width:14.784000px;}
._1d_c00214{width:15.936000px;}
._2f_c00214{width:16.992000px;}
._1c_c00214{width:18.144000px;}
._7_c00214{width:19.200000px;}
._10_c00214{width:20.448000px;}
._22_c00214{width:21.984000px;}
._1b_c00214{width:25.344000px;}
._c_c00214{width:26.784000px;}
._26_c00214{width:28.416000px;}
._27_c00214{width:30.144000px;}
._2b_c00214{width:31.968000px;}
._11_c00214{width:34.272000px;}
._1a_c00214{width:35.808000px;}
._12_c00214{width:36.960000px;}
._21_c00214{width:38.304000px;}
._23_c00214{width:39.552000px;}
._1e_c00214{width:40.704000px;}
._20_c00214{width:42.240000px;}
._39_c00214{width:43.488000px;}
._19_c00214{width:44.640000px;}
._16_c00214{width:47.712000px;}
._28_c00214{width:48.768000px;}
._37_c00214{width:50.016000px;}
._34_c00214{width:51.072000px;}
._13_c00214{width:53.184000px;}
._2a_c00214{width:55.776000px;}
._18_c00214{width:57.888000px;}
._29_c00214{width:59.232000px;}
._3a_c00214{width:60.864000px;}
._17_c00214{width:62.400000px;}
._3e_c00214{width:64.992000px;}
._24_c00214{width:66.048000px;}
._3c_c00214{width:68.928000px;}
._49_c00214{width:71.136000px;}
._41_c00214{width:72.519000px;}
._44_c00214{width:94.896000px;}
._32_c00214{width:98.880000px;}
._33_c00214{width:162.432000px;}
._43_c00214{width:164.487000px;}
._48_c00214{width:174.336000px;}
._46_c00214{width:281.376000px;}
._3d_c00214{width:318.816000px;}
._3f_c00214{width:394.512000px;}
._47_c00214{width:409.344000px;}
._45_c00214{width:435.480000px;}
._31_c00214{width:548.064000px;}
._42_c00214{width:678.666000px;}
._4b_c00214{width:854.880000px;}
._2d_c00214{width:921.312000px;}
._4c_c00214{width:2029.488000px;}
.fc2_c00214{color:transparent;}
.fc1_c00214{color:rgb(128,128,128);}
.fc0_c00214{color:rgb(0,0,0);}
.fs1_c00214{font-size:45.000000px;}
.fs5_c00214{font-size:48.000000px;}
.fs2_c00214{font-size:69.000000px;}
.fs4_c00214{font-size:84.000000px;}
.fs0_c00214{font-size:96.000000px;}
.fs3_c00214{font-size:102.000000px;}
.y0_c00214{bottom:0.000000px;}
.y26_c00214{bottom:3.105000px;}
.y25_c00214{bottom:7.228369px;}
.y24_c00214{bottom:91.170000px;}
.y23_c00214{bottom:131.970000px;}
.y22_c00214{bottom:163.620000px;}
.y21_c00214{bottom:198.720000px;}
.y20_c00214{bottom:232.470000px;}
.y1f_c00214{bottom:266.970000px;}
.y1e_c00214{bottom:299.370000px;}
.y1d_c00214{bottom:335.070000px;}
.y1c_c00214{bottom:368.820000px;}
.y1b_c00214{bottom:403.920000px;}
.y1a_c00214{bottom:433.620000px;}
.y19_c00214{bottom:470.370000px;}
.y18_c00214{bottom:503.520000px;}
.y17_c00214{bottom:536.520000px;}
.y16_c00214{bottom:571.020000px;}
.y15_c00214{bottom:603.720000px;}
.y14_c00214{bottom:636.420000px;}
.y13_c00214{bottom:670.170000px;}
.y12_c00214{bottom:704.370000px;}
.y11_c00214{bottom:736.320000px;}
.y10_c00214{bottom:770.520000px;}
.yf_c00214{bottom:803.970000px;}
.ye_c00214{bottom:837.570000px;}
.yd_c00214{bottom:870.420000px;}
.yc_c00214{bottom:902.820000px;}
.yb_c00214{bottom:936.870000px;}
.ya_c00214{bottom:970.320000px;}
.y9_c00214{bottom:1002.270000px;}
.y8_c00214{bottom:1039.170000px;}
.y7_c00214{bottom:1070.820000px;}
.y6_c00214{bottom:1104.270000px;}
.y5_c00214{bottom:1137.420000px;}
.y4_c00214{bottom:1171.020000px;}
.y3_c00214{bottom:1204.920000px;}
.y2_c00214{bottom:1237.620000px;}
.y1_c00214{bottom:1271.670000px;}
.h4_c00214{height:13.200073px;}
.h5_c00214{height:43.804688px;}
.h3_c00214{height:59.438379px;}
.h2_c00214{height:121.546875px;}
.h0_c00214{height:1383.450000px;}
.h1_c00214{height:1383.750000px;}
.w2_c00214{width:104.875500px;}
.w0_c00214{width:878.025000px;}
.w1_c00214{width:878.250000px;}
.x0_c00214{left:0.000000px;}
.x8_c00214{left:27.300000px;}
.xc_c00214{left:39.600000px;}
.xb_c00214{left:41.250000px;}
.xa_c00214{left:43.500000px;}
.x9_c00214{left:44.550000px;}
.x7_c00214{left:46.200000px;}
.x6_c00214{left:47.850000px;}
.x5_c00214{left:49.350000px;}
.x4_c00214{left:50.550000px;}
.x3_c00214{left:52.200000px;}
.x2_c00214{left:54.300000px;}
.x1_c00214{left:55.950000px;}
.xd_c00214{left:130.950000px;}
.xe_c00214{left:216.750000px;}
.xf_c00214{left:390.826721px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls1_c00214{letter-spacing:0.000000pt;}
.ls3_c00214{letter-spacing:10.666667pt;}
.ls0_c00214{letter-spacing:27.733333pt;}
.ls2_c00214{letter-spacing:72.000000pt;}
.ws0_c00214{word-spacing:-92.565333pt;}
.ws3_c00214{word-spacing:-28.661333pt;}
.ws2_c00214{word-spacing:-22.666667pt;}
.ws1_c00214{word-spacing:-0.061333pt;}
.ws4_c00214{word-spacing:0.000000pt;}
._4a_c00214{margin-left:-23.722667pt;}
._3b_c00214{margin-left:-22.357333pt;}
._38_c00214{margin-left:-20.736000pt;}
._30_c00214{margin-left:-19.114667pt;}
._2e_c00214{margin-left:-16.213333pt;}
._2c_c00214{margin-left:-11.434667pt;}
._35_c00214{margin-left:-9.898667pt;}
._2_c00214{margin-left:-8.704000pt;}
._4_c00214{margin-left:-7.680000pt;}
._0_c00214{margin-left:-6.741333pt;}
._15_c00214{margin-left:-5.632000pt;}
._3_c00214{margin-left:-4.608000pt;}
._1_c00214{margin-left:-3.584000pt;}
._25_c00214{margin-left:-2.218667pt;}
._f_c00214{margin-left:-1.280000pt;}
._14_c00214{width:1.365333pt;}
._6_c00214{width:2.389333pt;}
._8_c00214{width:3.584000pt;}
._36_c00214{width:4.522667pt;}
._5_c00214{width:5.461333pt;}
._e_c00214{width:6.656000pt;}
._b_c00214{width:7.594667pt;}
._d_c00214{width:8.533333pt;}
._1f_c00214{width:9.472000pt;}
._a_c00214{width:11.008000pt;}
._40_c00214{width:12.117333pt;}
._9_c00214{width:13.141333pt;}
._1d_c00214{width:14.165333pt;}
._2f_c00214{width:15.104000pt;}
._1c_c00214{width:16.128000pt;}
._7_c00214{width:17.066667pt;}
._10_c00214{width:18.176000pt;}
._22_c00214{width:19.541333pt;}
._1b_c00214{width:22.528000pt;}
._c_c00214{width:23.808000pt;}
._26_c00214{width:25.258667pt;}
._27_c00214{width:26.794667pt;}
._2b_c00214{width:28.416000pt;}
._11_c00214{width:30.464000pt;}
._1a_c00214{width:31.829333pt;}
._12_c00214{width:32.853333pt;}
._21_c00214{width:34.048000pt;}
._23_c00214{width:35.157333pt;}
._1e_c00214{width:36.181333pt;}
._20_c00214{width:37.546667pt;}
._39_c00214{width:38.656000pt;}
._19_c00214{width:39.680000pt;}
._16_c00214{width:42.410667pt;}
._28_c00214{width:43.349333pt;}
._37_c00214{width:44.458667pt;}
._34_c00214{width:45.397333pt;}
._13_c00214{width:47.274667pt;}
._2a_c00214{width:49.578667pt;}
._18_c00214{width:51.456000pt;}
._29_c00214{width:52.650667pt;}
._3a_c00214{width:54.101333pt;}
._17_c00214{width:55.466667pt;}
._3e_c00214{width:57.770667pt;}
._24_c00214{width:58.709333pt;}
._3c_c00214{width:61.269333pt;}
._49_c00214{width:63.232000pt;}
._41_c00214{width:64.461333pt;}
._44_c00214{width:84.352000pt;}
._32_c00214{width:87.893333pt;}
._33_c00214{width:144.384000pt;}
._43_c00214{width:146.210667pt;}
._48_c00214{width:154.965333pt;}
._46_c00214{width:250.112000pt;}
._3d_c00214{width:283.392000pt;}
._3f_c00214{width:350.677333pt;}
._47_c00214{width:363.861333pt;}
._45_c00214{width:387.093333pt;}
._31_c00214{width:487.168000pt;}
._42_c00214{width:603.258667pt;}
._4b_c00214{width:759.893333pt;}
._2d_c00214{width:818.944000pt;}
._4c_c00214{width:1803.989333pt;}
.fs1_c00214{font-size:40.000000pt;}
.fs5_c00214{font-size:42.666667pt;}
.fs2_c00214{font-size:61.333333pt;}
.fs4_c00214{font-size:74.666667pt;}
.fs0_c00214{font-size:85.333333pt;}
.fs3_c00214{font-size:90.666667pt;}
.y0_c00214{bottom:0.000000pt;}
.y26_c00214{bottom:2.760000pt;}
.y25_c00214{bottom:6.425217pt;}
.y24_c00214{bottom:81.040000pt;}
.y23_c00214{bottom:117.306667pt;}
.y22_c00214{bottom:145.440000pt;}
.y21_c00214{bottom:176.640000pt;}
.y20_c00214{bottom:206.640000pt;}
.y1f_c00214{bottom:237.306667pt;}
.y1e_c00214{bottom:266.106667pt;}
.y1d_c00214{bottom:297.840000pt;}
.y1c_c00214{bottom:327.840000pt;}
.y1b_c00214{bottom:359.040000pt;}
.y1a_c00214{bottom:385.440000pt;}
.y19_c00214{bottom:418.106667pt;}
.y18_c00214{bottom:447.573333pt;}
.y17_c00214{bottom:476.906667pt;}
.y16_c00214{bottom:507.573333pt;}
.y15_c00214{bottom:536.640000pt;}
.y14_c00214{bottom:565.706667pt;}
.y13_c00214{bottom:595.706667pt;}
.y12_c00214{bottom:626.106667pt;}
.y11_c00214{bottom:654.506667pt;}
.y10_c00214{bottom:684.906667pt;}
.yf_c00214{bottom:714.640000pt;}
.ye_c00214{bottom:744.506667pt;}
.yd_c00214{bottom:773.706667pt;}
.yc_c00214{bottom:802.506667pt;}
.yb_c00214{bottom:832.773333pt;}
.ya_c00214{bottom:862.506667pt;}
.y9_c00214{bottom:890.906667pt;}
.y8_c00214{bottom:923.706667pt;}
.y7_c00214{bottom:951.840000pt;}
.y6_c00214{bottom:981.573333pt;}
.y5_c00214{bottom:1011.040000pt;}
.y4_c00214{bottom:1040.906667pt;}
.y3_c00214{bottom:1071.040000pt;}
.y2_c00214{bottom:1100.106667pt;}
.y1_c00214{bottom:1130.373333pt;}
.h4_c00214{height:11.733399pt;}
.h5_c00214{height:38.937500pt;}
.h3_c00214{height:52.834115pt;}
.h2_c00214{height:108.041667pt;}
.h0_c00214{height:1229.733333pt;}
.h1_c00214{height:1230.000000pt;}
.w2_c00214{width:93.222667pt;}
.w0_c00214{width:780.466667pt;}
.w1_c00214{width:780.666667pt;}
.x0_c00214{left:0.000000pt;}
.x8_c00214{left:24.266667pt;}
.xc_c00214{left:35.200000pt;}
.xb_c00214{left:36.666667pt;}
.xa_c00214{left:38.666667pt;}
.x9_c00214{left:39.600000pt;}
.x7_c00214{left:41.066667pt;}
.x6_c00214{left:42.533333pt;}
.x5_c00214{left:43.866667pt;}
.x4_c00214{left:44.933333pt;}
.x3_c00214{left:46.400000pt;}
.x2_c00214{left:48.266667pt;}
.x1_c00214{left:49.733333pt;}
.xd_c00214{left:116.400000pt;}
.xe_c00214{left:192.666667pt;}
.xf_c00214{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a38a00cbaa563fe47b13832a.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_7800568ad29576cd308afbe6.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00215{vertical-align:-149.400000px;}
.v0_c00215{vertical-align:0.000000px;}
.v1_c00215{vertical-align:8.400000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.ls1_c00215{letter-spacing:12.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:-75.504000px;}
.ws1_c00215{word-spacing:-23.136000px;}
.ws2_c00215{word-spacing:0.000000px;}
._35_c00215{margin-left:-30.624000px;}
._36_c00215{margin-left:-26.400000px;}
._2b_c00215{margin-left:-24.576000px;}
._2c_c00215{margin-left:-14.496000px;}
._b_c00215{margin-left:-10.080000px;}
._c_c00215{margin-left:-8.832000px;}
._37_c00215{margin-left:-7.104000px;}
._34_c00215{margin-left:-5.952000px;}
._19_c00215{margin-left:-4.512000px;}
._17_c00215{margin-left:-3.072000px;}
._1_c00215{margin-left:-1.344000px;}
._d_c00215{width:1.056000px;}
._4_c00215{width:2.304000px;}
._10_c00215{width:3.456000px;}
._6_c00215{width:4.896000px;}
._1b_c00215{width:5.952000px;}
._7_c00215{width:7.104000px;}
._0_c00215{width:8.256000px;}
._33_c00215{width:9.408000px;}
._16_c00215{width:10.464000px;}
._21_c00215{width:11.520000px;}
._9_c00215{width:13.632000px;}
._25_c00215{width:14.688000px;}
._29_c00215{width:16.032000px;}
._32_c00215{width:17.088000px;}
._3_c00215{width:18.336000px;}
._1d_c00215{width:19.776000px;}
._2e_c00215{width:20.928000px;}
._5_c00215{width:21.984000px;}
._8_c00215{width:24.960000px;}
._f_c00215{width:26.208000px;}
._1a_c00215{width:27.744000px;}
._1c_c00215{width:29.664000px;}
._11_c00215{width:30.912000px;}
._13_c00215{width:31.968000px;}
._30_c00215{width:33.984000px;}
._14_c00215{width:35.040000px;}
._1e_c00215{width:36.096000px;}
._20_c00215{width:37.152000px;}
._12_c00215{width:38.784000px;}
._2d_c00215{width:40.128000px;}
._18_c00215{width:41.280000px;}
._15_c00215{width:43.104000px;}
._2_c00215{width:44.928000px;}
._22_c00215{width:47.616000px;}
._1f_c00215{width:48.768000px;}
._27_c00215{width:50.304000px;}
._e_c00215{width:52.032000px;}
._2f_c00215{width:53.952000px;}
._2a_c00215{width:56.160000px;}
._28_c00215{width:58.176000px;}
._23_c00215{width:59.808000px;}
._24_c00215{width:62.496000px;}
._a_c00215{width:83.784000px;}
._26_c00215{width:181.632000px;}
._38_c00215{width:338.592000px;}
._31_c00215{width:414.720000px;}
._39_c00215{width:728.760000px;}
.fc2_c00215{color:transparent;}
.fc1_c00215{color:rgb(128,128,128);}
.fc0_c00215{color:rgb(0,0,0);}
.fs2_c00215{font-size:48.000000px;}
.fs1_c00215{font-size:84.000000px;}
.fs0_c00215{font-size:96.000000px;}
.y0_c00215{bottom:0.000000px;}
.y27_c00215{bottom:3.105000px;}
.y26_c00215{bottom:7.228357px;}
.y25_c00215{bottom:126.180000px;}
.y24_c00215{bottom:157.680000px;}
.y23_c00215{bottom:192.780000px;}
.y22_c00215{bottom:227.130000px;}
.y21_c00215{bottom:261.330000px;}
.y20_c00215{bottom:294.930000px;}
.y1f_c00215{bottom:329.430000px;}
.y1e_c00215{bottom:363.480000px;}
.y1d_c00215{bottom:397.530000px;}
.y1c_c00215{bottom:431.430000px;}
.y1b_c00215{bottom:465.030000px;}
.y1a_c00215{bottom:498.930000px;}
.y19_c00215{bottom:532.530000px;}
.y18_c00215{bottom:565.980000px;}
.y17_c00215{bottom:600.180000px;}
.y16_c00215{bottom:633.480000px;}
.y2_c00215{bottom:637.530000px;}
.y15_c00215{bottom:667.680000px;}
.y14_c00215{bottom:700.980000px;}
.y13_c00215{bottom:734.730000px;}
.y12_c00215{bottom:768.480000px;}
.y11_c00215{bottom:802.230000px;}
.y10_c00215{bottom:835.680000px;}
.yf_c00215{bottom:869.430000px;}
.ye_c00215{bottom:903.180000px;}
.yd_c00215{bottom:936.330000px;}
.yc_c00215{bottom:969.330000px;}
.yb_c00215{bottom:1002.780000px;}
.y1_c00215{bottom:1010.430000px;}
.ya_c00215{bottom:1035.780000px;}
.y9_c00215{bottom:1069.830000px;}
.y8_c00215{bottom:1102.980000px;}
.y7_c00215{bottom:1136.430000px;}
.y6_c00215{bottom:1169.880000px;}
.y5_c00215{bottom:1203.180000px;}
.y4_c00215{bottom:1236.630000px;}
.y3_c00215{bottom:1269.630000px;}
.h4_c00215{height:13.200074px;}
.h5_c00215{height:43.804688px;}
.h2_c00215{height:121.546875px;}
.h3_c00215{height:129.946875px;}
.h0_c00215{height:1382.700000px;}
.h1_c00215{height:1383.000000px;}
.w2_c00215{width:104.875500px;}
.w0_c00215{width:863.175000px;}
.w1_c00215{width:863.250000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:37.500000px;}
.x1_c00215{left:139.650000px;}
.x3_c00215{left:249.750000px;}
.xb_c00215{left:251.400000px;}
.x4_c00215{left:252.900000px;}
.x6_c00215{left:254.550000px;}
.x8_c00215{left:255.600000px;}
.xa_c00215{left:256.800000px;}
.x9_c00215{left:295.050000px;}
.x5_c00215{left:304.800000px;}
.x7_c00215{left:307.500000px;}
.xc_c00215{left:383.401749px;}
@media print{
.v2_c00215{vertical-align:-132.800000pt;}
.v0_c00215{vertical-align:0.000000pt;}
.v1_c00215{vertical-align:7.466667pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ls1_c00215{letter-spacing:10.666667pt;}
.ws0_c00215{word-spacing:-67.114667pt;}
.ws1_c00215{word-spacing:-20.565333pt;}
.ws2_c00215{word-spacing:0.000000pt;}
._35_c00215{margin-left:-27.221333pt;}
._36_c00215{margin-left:-23.466667pt;}
._2b_c00215{margin-left:-21.845333pt;}
._2c_c00215{margin-left:-12.885333pt;}
._b_c00215{margin-left:-8.960000pt;}
._c_c00215{margin-left:-7.850667pt;}
._37_c00215{margin-left:-6.314667pt;}
._34_c00215{margin-left:-5.290667pt;}
._19_c00215{margin-left:-4.010667pt;}
._17_c00215{margin-left:-2.730667pt;}
._1_c00215{margin-left:-1.194667pt;}
._d_c00215{width:0.938667pt;}
._4_c00215{width:2.048000pt;}
._10_c00215{width:3.072000pt;}
._6_c00215{width:4.352000pt;}
._1b_c00215{width:5.290667pt;}
._7_c00215{width:6.314667pt;}
._0_c00215{width:7.338667pt;}
._33_c00215{width:8.362667pt;}
._16_c00215{width:9.301333pt;}
._21_c00215{width:10.240000pt;}
._9_c00215{width:12.117333pt;}
._25_c00215{width:13.056000pt;}
._29_c00215{width:14.250667pt;}
._32_c00215{width:15.189333pt;}
._3_c00215{width:16.298667pt;}
._1d_c00215{width:17.578667pt;}
._2e_c00215{width:18.602667pt;}
._5_c00215{width:19.541333pt;}
._8_c00215{width:22.186667pt;}
._f_c00215{width:23.296000pt;}
._1a_c00215{width:24.661333pt;}
._1c_c00215{width:26.368000pt;}
._11_c00215{width:27.477333pt;}
._13_c00215{width:28.416000pt;}
._30_c00215{width:30.208000pt;}
._14_c00215{width:31.146667pt;}
._1e_c00215{width:32.085333pt;}
._20_c00215{width:33.024000pt;}
._12_c00215{width:34.474667pt;}
._2d_c00215{width:35.669333pt;}
._18_c00215{width:36.693333pt;}
._15_c00215{width:38.314667pt;}
._2_c00215{width:39.936000pt;}
._22_c00215{width:42.325333pt;}
._1f_c00215{width:43.349333pt;}
._27_c00215{width:44.714667pt;}
._e_c00215{width:46.250667pt;}
._2f_c00215{width:47.957333pt;}
._2a_c00215{width:49.920000pt;}
._28_c00215{width:51.712000pt;}
._23_c00215{width:53.162667pt;}
._24_c00215{width:55.552000pt;}
._a_c00215{width:74.474667pt;}
._26_c00215{width:161.450667pt;}
._38_c00215{width:300.970667pt;}
._31_c00215{width:368.640000pt;}
._39_c00215{width:647.786667pt;}
.fs2_c00215{font-size:42.666667pt;}
.fs1_c00215{font-size:74.666667pt;}
.fs0_c00215{font-size:85.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.y27_c00215{bottom:2.760000pt;}
.y26_c00215{bottom:6.425206pt;}
.y25_c00215{bottom:112.160000pt;}
.y24_c00215{bottom:140.160000pt;}
.y23_c00215{bottom:171.360000pt;}
.y22_c00215{bottom:201.893333pt;}
.y21_c00215{bottom:232.293333pt;}
.y20_c00215{bottom:262.160000pt;}
.y1f_c00215{bottom:292.826667pt;}
.y1e_c00215{bottom:323.093333pt;}
.y1d_c00215{bottom:353.360000pt;}
.y1c_c00215{bottom:383.493333pt;}
.y1b_c00215{bottom:413.360000pt;}
.y1a_c00215{bottom:443.493333pt;}
.y19_c00215{bottom:473.360000pt;}
.y18_c00215{bottom:503.093333pt;}
.y17_c00215{bottom:533.493333pt;}
.y16_c00215{bottom:563.093333pt;}
.y2_c00215{bottom:566.693333pt;}
.y15_c00215{bottom:593.493333pt;}
.y14_c00215{bottom:623.093333pt;}
.y13_c00215{bottom:653.093333pt;}
.y12_c00215{bottom:683.093333pt;}
.y11_c00215{bottom:713.093333pt;}
.y10_c00215{bottom:742.826667pt;}
.yf_c00215{bottom:772.826667pt;}
.ye_c00215{bottom:802.826667pt;}
.yd_c00215{bottom:832.293333pt;}
.yc_c00215{bottom:861.626667pt;}
.yb_c00215{bottom:891.360000pt;}
.y1_c00215{bottom:898.160000pt;}
.ya_c00215{bottom:920.693333pt;}
.y9_c00215{bottom:950.960000pt;}
.y8_c00215{bottom:980.426667pt;}
.y7_c00215{bottom:1010.160000pt;}
.y6_c00215{bottom:1039.893333pt;}
.y5_c00215{bottom:1069.493333pt;}
.y4_c00215{bottom:1099.226667pt;}
.y3_c00215{bottom:1128.560000pt;}
.h4_c00215{height:11.733399pt;}
.h5_c00215{height:38.937500pt;}
.h2_c00215{height:108.041667pt;}
.h3_c00215{height:115.508333pt;}
.h0_c00215{height:1229.066667pt;}
.h1_c00215{height:1229.333333pt;}
.w2_c00215{width:93.222667pt;}
.w0_c00215{width:767.266667pt;}
.w1_c00215{width:767.333333pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:33.333333pt;}
.x1_c00215{left:124.133333pt;}
.x3_c00215{left:222.000000pt;}
.xb_c00215{left:223.466667pt;}
.x4_c00215{left:224.800000pt;}
.x6_c00215{left:226.266667pt;}
.x8_c00215{left:227.200000pt;}
.xa_c00215{left:228.266667pt;}
.x9_c00215{left:262.266667pt;}
.x5_c00215{left:270.933333pt;}
.x7_c00215{left:273.333333pt;}
.xc_c00215{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1356c4e54f0b5abf4645b7fa.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_2ec77c5dde6922371426c335.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_d371e02cf7fb572e4bb762bb.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;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_c00216;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls1_c00216{letter-spacing:0.000000px;}
.ls2_c00216{letter-spacing:12.000000px;}
.ls0_c00216{letter-spacing:24.600000px;}
.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;}
}
.ws1_c00216{word-spacing:-75.504000px;}
.ws0_c00216{word-spacing:-23.136000px;}
.ws2_c00216{word-spacing:0.000000px;}
._38_c00216{margin-left:-75.360000px;}
._1e_c00216{margin-left:-34.752000px;}
._27_c00216{margin-left:-15.264000px;}
._18_c00216{margin-left:-13.920000px;}
._30_c00216{margin-left:-11.520000px;}
._c_c00216{margin-left:-9.696000px;}
._f_c00216{margin-left:-7.776000px;}
._d_c00216{margin-left:-6.336000px;}
._1b_c00216{margin-left:-4.896000px;}
._1d_c00216{margin-left:-3.552000px;}
._1c_c00216{margin-left:-2.208000px;}
._29_c00216{margin-left:-1.056000px;}
._9_c00216{width:1.344000px;}
._b_c00216{width:2.688000px;}
._8_c00216{width:4.032000px;}
._16_c00216{width:5.088000px;}
._6_c00216{width:6.240000px;}
._5_c00216{width:7.392000px;}
._0_c00216{width:8.832000px;}
._20_c00216{width:9.888000px;}
._3_c00216{width:10.944000px;}
._a_c00216{width:12.864000px;}
._2_c00216{width:14.496000px;}
._1_c00216{width:16.416000px;}
._e_c00216{width:17.664000px;}
._19_c00216{width:18.912000px;}
._15_c00216{width:20.448000px;}
._17_c00216{width:21.984000px;}
._32_c00216{width:24.192000px;}
._28_c00216{width:25.440000px;}
._21_c00216{width:28.128000px;}
._1a_c00216{width:29.760000px;}
._33_c00216{width:31.968000px;}
._14_c00216{width:33.120000px;}
._13_c00216{width:34.368000px;}
._7_c00216{width:36.288000px;}
._11_c00216{width:37.440000px;}
._10_c00216{width:39.072000px;}
._12_c00216{width:40.512000px;}
._23_c00216{width:43.200000px;}
._1f_c00216{width:45.312000px;}
._31_c00216{width:48.192000px;}
._25_c00216{width:49.824000px;}
._2e_c00216{width:51.648000px;}
._2f_c00216{width:53.952000px;}
._2c_c00216{width:56.352000px;}
._2a_c00216{width:57.696000px;}
._22_c00216{width:58.752000px;}
._24_c00216{width:62.688000px;}
._2b_c00216{width:65.088000px;}
._26_c00216{width:68.832000px;}
._37_c00216{width:70.752000px;}
._2d_c00216{width:74.880000px;}
._36_c00216{width:152.928000px;}
._34_c00216{width:166.752000px;}
._35_c00216{width:174.528000px;}
._4_c00216{width:392.928000px;}
._39_c00216{width:804.000000px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(128,128,128);}
.fc0_c00216{color:rgb(0,0,0);}
.fs3_c00216{font-size:48.000000px;}
.fs2_c00216{font-size:84.000000px;}
.fs0_c00216{font-size:96.000000px;}
.fs1_c00216{font-size:102.000000px;}
.y0_c00216{bottom:0.000000px;}
.y27_c00216{bottom:3.105000px;}
.y26_c00216{bottom:7.228369px;}
.y25_c00216{bottom:101.520000px;}
.y24_c00216{bottom:139.320000px;}
.y23_c00216{bottom:173.370000px;}
.y22_c00216{bottom:206.970000px;}
.y21_c00216{bottom:241.020000px;}
.y20_c00216{bottom:275.070000px;}
.y1f_c00216{bottom:308.820000px;}
.y1e_c00216{bottom:341.820000px;}
.y1d_c00216{bottom:379.620000px;}
.y1c_c00216{bottom:409.320000px;}
.y1b_c00216{bottom:443.370000px;}
.y1a_c00216{bottom:475.920000px;}
.y19_c00216{bottom:510.570000px;}
.y18_c00216{bottom:543.270000px;}
.y17_c00216{bottom:577.770000px;}
.y16_c00216{bottom:610.770000px;}
.y15_c00216{bottom:643.920000px;}
.y14_c00216{bottom:676.620000px;}
.y13_c00216{bottom:708.420000px;}
.y12_c00216{bottom:743.520000px;}
.y11_c00216{bottom:776.520000px;}
.y10_c00216{bottom:810.270000px;}
.yf_c00216{bottom:841.020000px;}
.ye_c00216{bottom:873.120000px;}
.yd_c00216{bottom:907.920000px;}
.yc_c00216{bottom:940.320000px;}
.yb_c00216{bottom:974.070000px;}
.ya_c00216{bottom:1006.770000px;}
.y9_c00216{bottom:1040.520000px;}
.y8_c00216{bottom:1074.270000px;}
.y7_c00216{bottom:1106.670000px;}
.y6_c00216{bottom:1140.120000px;}
.y5_c00216{bottom:1173.120000px;}
.y4_c00216{bottom:1206.570000px;}
.y3_c00216{bottom:1239.570000px;}
.y2_c00216{bottom:1272.720000px;}
.y1_c00216{bottom:1304.670000px;}
.h4_c00216{height:13.200073px;}
.h5_c00216{height:43.804688px;}
.h2_c00216{height:121.546875px;}
.h3_c00216{height:129.143555px;}
.h0_c00216{height:1383.450000px;}
.h1_c00216{height:1383.750000px;}
.w2_c00216{width:104.875500px;}
.w0_c00216{width:878.025000px;}
.w1_c00216{width:878.250000px;}
.x0_c00216{left:0.000000px;}
.x8_c00216{left:46.200000px;}
.x7_c00216{left:47.850000px;}
.x9_c00216{left:48.900000px;}
.x6_c00216{left:50.550000px;}
.x5_c00216{left:51.600000px;}
.x3_c00216{left:52.650000px;}
.x4_c00216{left:53.700000px;}
.xa_c00216{left:98.550000px;}
.x2_c00216{left:107.250000px;}
.xb_c00216{left:317.250000px;}
.xc_c00216{left:390.826721px;}
.x1_c00216{left:535.950000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls1_c00216{letter-spacing:0.000000pt;}
.ls2_c00216{letter-spacing:10.666667pt;}
.ls0_c00216{letter-spacing:21.866667pt;}
.ws1_c00216{word-spacing:-67.114667pt;}
.ws0_c00216{word-spacing:-20.565333pt;}
.ws2_c00216{word-spacing:0.000000pt;}
._38_c00216{margin-left:-66.986667pt;}
._1e_c00216{margin-left:-30.890667pt;}
._27_c00216{margin-left:-13.568000pt;}
._18_c00216{margin-left:-12.373333pt;}
._30_c00216{margin-left:-10.240000pt;}
._c_c00216{margin-left:-8.618667pt;}
._f_c00216{margin-left:-6.912000pt;}
._d_c00216{margin-left:-5.632000pt;}
._1b_c00216{margin-left:-4.352000pt;}
._1d_c00216{margin-left:-3.157333pt;}
._1c_c00216{margin-left:-1.962667pt;}
._29_c00216{margin-left:-0.938667pt;}
._9_c00216{width:1.194667pt;}
._b_c00216{width:2.389333pt;}
._8_c00216{width:3.584000pt;}
._16_c00216{width:4.522667pt;}
._6_c00216{width:5.546667pt;}
._5_c00216{width:6.570667pt;}
._0_c00216{width:7.850667pt;}
._20_c00216{width:8.789333pt;}
._3_c00216{width:9.728000pt;}
._a_c00216{width:11.434667pt;}
._2_c00216{width:12.885333pt;}
._1_c00216{width:14.592000pt;}
._e_c00216{width:15.701333pt;}
._19_c00216{width:16.810667pt;}
._15_c00216{width:18.176000pt;}
._17_c00216{width:19.541333pt;}
._32_c00216{width:21.504000pt;}
._28_c00216{width:22.613333pt;}
._21_c00216{width:25.002667pt;}
._1a_c00216{width:26.453333pt;}
._33_c00216{width:28.416000pt;}
._14_c00216{width:29.440000pt;}
._13_c00216{width:30.549333pt;}
._7_c00216{width:32.256000pt;}
._11_c00216{width:33.280000pt;}
._10_c00216{width:34.730667pt;}
._12_c00216{width:36.010667pt;}
._23_c00216{width:38.400000pt;}
._1f_c00216{width:40.277333pt;}
._31_c00216{width:42.837333pt;}
._25_c00216{width:44.288000pt;}
._2e_c00216{width:45.909333pt;}
._2f_c00216{width:47.957333pt;}
._2c_c00216{width:50.090667pt;}
._2a_c00216{width:51.285333pt;}
._22_c00216{width:52.224000pt;}
._24_c00216{width:55.722667pt;}
._2b_c00216{width:57.856000pt;}
._26_c00216{width:61.184000pt;}
._37_c00216{width:62.890667pt;}
._2d_c00216{width:66.560000pt;}
._36_c00216{width:135.936000pt;}
._34_c00216{width:148.224000pt;}
._35_c00216{width:155.136000pt;}
._4_c00216{width:349.269333pt;}
._39_c00216{width:714.666667pt;}
.fs3_c00216{font-size:42.666667pt;}
.fs2_c00216{font-size:74.666667pt;}
.fs0_c00216{font-size:85.333333pt;}
.fs1_c00216{font-size:90.666667pt;}
.y0_c00216{bottom:0.000000pt;}
.y27_c00216{bottom:2.760000pt;}
.y26_c00216{bottom:6.425217pt;}
.y25_c00216{bottom:90.240000pt;}
.y24_c00216{bottom:123.840000pt;}
.y23_c00216{bottom:154.106667pt;}
.y22_c00216{bottom:183.973333pt;}
.y21_c00216{bottom:214.240000pt;}
.y20_c00216{bottom:244.506667pt;}
.y1f_c00216{bottom:274.506667pt;}
.y1e_c00216{bottom:303.840000pt;}
.y1d_c00216{bottom:337.440000pt;}
.y1c_c00216{bottom:363.840000pt;}
.y1b_c00216{bottom:394.106667pt;}
.y1a_c00216{bottom:423.040000pt;}
.y19_c00216{bottom:453.840000pt;}
.y18_c00216{bottom:482.906667pt;}
.y17_c00216{bottom:513.573333pt;}
.y16_c00216{bottom:542.906667pt;}
.y15_c00216{bottom:572.373333pt;}
.y14_c00216{bottom:601.440000pt;}
.y13_c00216{bottom:629.706667pt;}
.y12_c00216{bottom:660.906667pt;}
.y11_c00216{bottom:690.240000pt;}
.y10_c00216{bottom:720.240000pt;}
.yf_c00216{bottom:747.573333pt;}
.ye_c00216{bottom:776.106667pt;}
.yd_c00216{bottom:807.040000pt;}
.yc_c00216{bottom:835.840000pt;}
.yb_c00216{bottom:865.840000pt;}
.ya_c00216{bottom:894.906667pt;}
.y9_c00216{bottom:924.906667pt;}
.y8_c00216{bottom:954.906667pt;}
.y7_c00216{bottom:983.706667pt;}
.y6_c00216{bottom:1013.440000pt;}
.y5_c00216{bottom:1042.773333pt;}
.y4_c00216{bottom:1072.506667pt;}
.y3_c00216{bottom:1101.840000pt;}
.y2_c00216{bottom:1131.306667pt;}
.y1_c00216{bottom:1159.706667pt;}
.h4_c00216{height:11.733399pt;}
.h5_c00216{height:38.937500pt;}
.h2_c00216{height:108.041667pt;}
.h3_c00216{height:114.794271pt;}
.h0_c00216{height:1229.733333pt;}
.h1_c00216{height:1230.000000pt;}
.w2_c00216{width:93.222667pt;}
.w0_c00216{width:780.466667pt;}
.w1_c00216{width:780.666667pt;}
.x0_c00216{left:0.000000pt;}
.x8_c00216{left:41.066667pt;}
.x7_c00216{left:42.533333pt;}
.x9_c00216{left:43.466667pt;}
.x6_c00216{left:44.933333pt;}
.x5_c00216{left:45.866667pt;}
.x3_c00216{left:46.800000pt;}
.x4_c00216{left:47.733333pt;}
.xa_c00216{left:87.600000pt;}
.x2_c00216{left:95.333333pt;}
.xb_c00216{left:282.000000pt;}
.xc_c00216{left:347.401530pt;}
.x1_c00216{left:476.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2b2a27ae90b837c19aa9bea.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_b3110897659770b38daef81c.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_209161426a103813bdfb2a71.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00217{vertical-align:-88.800000px;}
.v0_c00217{vertical-align:0.000000px;}
.ls5_c00217{letter-spacing:-6.000000px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:2.052000px;}
.ls2_c00217{letter-spacing:8.688000px;}
.ls4_c00217{letter-spacing:12.000000px;}
.ls1_c00217{letter-spacing:13.800000px;}
.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;}
}
.ws4_c00217{word-spacing:-77.772000px;}
.ws0_c00217{word-spacing:-63.504000px;}
.ws2_c00217{word-spacing:-51.000000px;}
.ws3_c00217{word-spacing:-25.305000px;}
.ws1_c00217{word-spacing:-23.136000px;}
.ws5_c00217{word-spacing:0.000000px;}
._1f_c00217{margin-left:-29.472000px;}
._27_c00217{margin-left:-20.736000px;}
._28_c00217{margin-left:-19.008000px;}
._25_c00217{margin-left:-17.280000px;}
._36_c00217{margin-left:-15.360000px;}
._a_c00217{margin-left:-13.344000px;}
._22_c00217{margin-left:-11.616000px;}
._3a_c00217{margin-left:-10.581000px;}
._26_c00217{margin-left:-9.120000px;}
._38_c00217{margin-left:-7.968000px;}
._e_c00217{margin-left:-6.912000px;}
._20_c00217{margin-left:-5.568000px;}
._d_c00217{margin-left:-4.512000px;}
._9_c00217{margin-left:-2.976000px;}
._13_c00217{margin-left:-1.248000px;}
._6_c00217{width:1.728000px;}
._5_c00217{width:2.976000px;}
._8_c00217{width:4.896000px;}
._11_c00217{width:6.432000px;}
._0_c00217{width:7.680000px;}
._15_c00217{width:8.928000px;}
._10_c00217{width:10.560000px;}
._1_c00217{width:12.576000px;}
._2f_c00217{width:13.848000px;}
._19_c00217{width:14.976000px;}
._4_c00217{width:16.800000px;}
._12_c00217{width:17.856000px;}
._17_c00217{width:19.104000px;}
._1e_c00217{width:20.928000px;}
._2a_c00217{width:21.984000px;}
._2_c00217{width:24.672000px;}
._34_c00217{width:25.776000px;}
._b_c00217{width:27.072000px;}
._16_c00217{width:29.664000px;}
._21_c00217{width:32.640000px;}
._c_c00217{width:34.464000px;}
._2c_c00217{width:36.000000px;}
._3_c00217{width:38.016000px;}
._14_c00217{width:40.224000px;}
._2d_c00217{width:41.280000px;}
._2b_c00217{width:42.336000px;}
._18_c00217{width:43.392000px;}
._23_c00217{width:45.504000px;}
._f_c00217{width:47.424000px;}
._24_c00217{width:48.960000px;}
._3b_c00217{width:50.376000px;}
._1d_c00217{width:51.552000px;}
._7_c00217{width:53.376000px;}
._29_c00217{width:56.736000px;}
._39_c00217{width:58.752000px;}
._2e_c00217{width:59.904000px;}
._37_c00217{width:60.960000px;}
._32_c00217{width:79.296000px;}
._1c_c00217{width:88.512000px;}
._35_c00217{width:95.232000px;}
._1a_c00217{width:277.536000px;}
._31_c00217{width:288.984000px;}
._33_c00217{width:305.664000px;}
._30_c00217{width:380.256000px;}
._1b_c00217{width:536.832000px;}
.fc2_c00217{color:transparent;}
.fc1_c00217{color:rgb(128,128,128);}
.fc0_c00217{color:rgb(0,0,0);}
.fs6_c00217{font-size:30.000000px;}
.fs7_c00217{font-size:48.000000px;}
.fs5_c00217{font-size:78.000000px;}
.fs1_c00217{font-size:84.000000px;}
.fs4_c00217{font-size:87.000000px;}
.fs0_c00217{font-size:96.000000px;}
.fs2_c00217{font-size:102.000000px;}
.fs3_c00217{font-size:105.000000px;}
.y0_c00217{bottom:0.000000px;}
.y23_c00217{bottom:3.105000px;}
.y22_c00217{bottom:7.228355px;}
.y21_c00217{bottom:63.735000px;}
.y20_c00217{bottom:168.285000px;}
.y1f_c00217{bottom:197.385000px;}
.y1e_c00217{bottom:242.535000px;}
.y1d_c00217{bottom:293.235000px;}
.y1c_c00217{bottom:338.535000px;}
.y1b_c00217{bottom:370.935000px;}
.y1a_c00217{bottom:405.585000px;}
.y19_c00217{bottom:439.785000px;}
.y18_c00217{bottom:473.535000px;}
.y17_c00217{bottom:506.235000px;}
.y16_c00217{bottom:541.035000px;}
.y15_c00217{bottom:575.085000px;}
.y14_c00217{bottom:608.385000px;}
.y13_c00217{bottom:641.535000px;}
.y12_c00217{bottom:674.235000px;}
.y11_c00217{bottom:707.385000px;}
.y10_c00217{bottom:741.435000px;}
.yf_c00217{bottom:775.185000px;}
.ye_c00217{bottom:808.185000px;}
.yd_c00217{bottom:842.085000px;}
.yc_c00217{bottom:875.385000px;}
.yb_c00217{bottom:908.235000px;}
.ya_c00217{bottom:941.235000px;}
.y9_c00217{bottom:974.235000px;}
.y8_c00217{bottom:1007.685000px;}
.y7_c00217{bottom:1040.835000px;}
.y6_c00217{bottom:1074.285000px;}
.y5_c00217{bottom:1107.285000px;}
.y4_c00217{bottom:1140.735000px;}
.y3_c00217{bottom:1173.435000px;}
.y2_c00217{bottom:1206.885000px;}
.y1_c00217{bottom:1239.585000px;}
.h7_c00217{height:13.200074px;}
.h6_c00217{height:37.983398px;}
.h8_c00217{height:43.804688px;}
.h5_c00217{height:91.291992px;}
.h4_c00217{height:101.825684px;}
.h2_c00217{height:121.546875px;}
.h3_c00217{height:132.941895px;}
.h1_c00217{height:1326.000000px;}
.h0_c00217{height:1326.225000px;}
.w2_c00217{width:104.875500px;}
.w0_c00217{width:827.850000px;}
.w1_c00217{width:828.000000px;}
.x0_c00217{left:0.000000px;}
.x3_c00217{left:122.850000px;}
.x5_c00217{left:158.550000px;}
.x1_c00217{left:167.100000px;}
.x7_c00217{left:188.250000px;}
.x6_c00217{left:231.450000px;}
.x2_c00217{left:232.500000px;}
.x4_c00217{left:234.000000px;}
.x9_c00217{left:248.400000px;}
.x8_c00217{left:281.400000px;}
.xb_c00217{left:365.739258px;}
.xa_c00217{left:739.500000px;}
@media print{
.v1_c00217{vertical-align:-78.933333pt;}
.v0_c00217{vertical-align:0.000000pt;}
.ls5_c00217{letter-spacing:-5.333333pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:1.824000pt;}
.ls2_c00217{letter-spacing:7.722667pt;}
.ls4_c00217{letter-spacing:10.666667pt;}
.ls1_c00217{letter-spacing:12.266667pt;}
.ws4_c00217{word-spacing:-69.130667pt;}
.ws0_c00217{word-spacing:-56.448000pt;}
.ws2_c00217{word-spacing:-45.333333pt;}
.ws3_c00217{word-spacing:-22.493333pt;}
.ws1_c00217{word-spacing:-20.565333pt;}
.ws5_c00217{word-spacing:0.000000pt;}
._1f_c00217{margin-left:-26.197333pt;}
._27_c00217{margin-left:-18.432000pt;}
._28_c00217{margin-left:-16.896000pt;}
._25_c00217{margin-left:-15.360000pt;}
._36_c00217{margin-left:-13.653333pt;}
._a_c00217{margin-left:-11.861333pt;}
._22_c00217{margin-left:-10.325333pt;}
._3a_c00217{margin-left:-9.405333pt;}
._26_c00217{margin-left:-8.106667pt;}
._38_c00217{margin-left:-7.082667pt;}
._e_c00217{margin-left:-6.144000pt;}
._20_c00217{margin-left:-4.949333pt;}
._d_c00217{margin-left:-4.010667pt;}
._9_c00217{margin-left:-2.645333pt;}
._13_c00217{margin-left:-1.109333pt;}
._6_c00217{width:1.536000pt;}
._5_c00217{width:2.645333pt;}
._8_c00217{width:4.352000pt;}
._11_c00217{width:5.717333pt;}
._0_c00217{width:6.826667pt;}
._15_c00217{width:7.936000pt;}
._10_c00217{width:9.386667pt;}
._1_c00217{width:11.178667pt;}
._2f_c00217{width:12.309333pt;}
._19_c00217{width:13.312000pt;}
._4_c00217{width:14.933333pt;}
._12_c00217{width:15.872000pt;}
._17_c00217{width:16.981333pt;}
._1e_c00217{width:18.602667pt;}
._2a_c00217{width:19.541333pt;}
._2_c00217{width:21.930667pt;}
._34_c00217{width:22.912000pt;}
._b_c00217{width:24.064000pt;}
._16_c00217{width:26.368000pt;}
._21_c00217{width:29.013333pt;}
._c_c00217{width:30.634667pt;}
._2c_c00217{width:32.000000pt;}
._3_c00217{width:33.792000pt;}
._14_c00217{width:35.754667pt;}
._2d_c00217{width:36.693333pt;}
._2b_c00217{width:37.632000pt;}
._18_c00217{width:38.570667pt;}
._23_c00217{width:40.448000pt;}
._f_c00217{width:42.154667pt;}
._24_c00217{width:43.520000pt;}
._3b_c00217{width:44.778667pt;}
._1d_c00217{width:45.824000pt;}
._7_c00217{width:47.445333pt;}
._29_c00217{width:50.432000pt;}
._39_c00217{width:52.224000pt;}
._2e_c00217{width:53.248000pt;}
._37_c00217{width:54.186667pt;}
._32_c00217{width:70.485333pt;}
._1c_c00217{width:78.677333pt;}
._35_c00217{width:84.650667pt;}
._1a_c00217{width:246.698667pt;}
._31_c00217{width:256.874667pt;}
._33_c00217{width:271.701333pt;}
._30_c00217{width:338.005333pt;}
._1b_c00217{width:477.184000pt;}
.fs6_c00217{font-size:26.666667pt;}
.fs7_c00217{font-size:42.666667pt;}
.fs5_c00217{font-size:69.333333pt;}
.fs1_c00217{font-size:74.666667pt;}
.fs4_c00217{font-size:77.333333pt;}
.fs0_c00217{font-size:85.333333pt;}
.fs2_c00217{font-size:90.666667pt;}
.fs3_c00217{font-size:93.333333pt;}
.y0_c00217{bottom:0.000000pt;}
.y23_c00217{bottom:2.760000pt;}
.y22_c00217{bottom:6.425204pt;}
.y21_c00217{bottom:56.653333pt;}
.y20_c00217{bottom:149.586667pt;}
.y1f_c00217{bottom:175.453333pt;}
.y1e_c00217{bottom:215.586667pt;}
.y1d_c00217{bottom:260.653333pt;}
.y1c_c00217{bottom:300.920000pt;}
.y1b_c00217{bottom:329.720000pt;}
.y1a_c00217{bottom:360.520000pt;}
.y19_c00217{bottom:390.920000pt;}
.y18_c00217{bottom:420.920000pt;}
.y17_c00217{bottom:449.986667pt;}
.y16_c00217{bottom:480.920000pt;}
.y15_c00217{bottom:511.186667pt;}
.y14_c00217{bottom:540.786667pt;}
.y13_c00217{bottom:570.253333pt;}
.y12_c00217{bottom:599.320000pt;}
.y11_c00217{bottom:628.786667pt;}
.y10_c00217{bottom:659.053333pt;}
.yf_c00217{bottom:689.053333pt;}
.ye_c00217{bottom:718.386667pt;}
.yd_c00217{bottom:748.520000pt;}
.yc_c00217{bottom:778.120000pt;}
.yb_c00217{bottom:807.320000pt;}
.ya_c00217{bottom:836.653333pt;}
.y9_c00217{bottom:865.986667pt;}
.y8_c00217{bottom:895.720000pt;}
.y7_c00217{bottom:925.186667pt;}
.y6_c00217{bottom:954.920000pt;}
.y5_c00217{bottom:984.253333pt;}
.y4_c00217{bottom:1013.986667pt;}
.y3_c00217{bottom:1043.053333pt;}
.y2_c00217{bottom:1072.786667pt;}
.y1_c00217{bottom:1101.853333pt;}
.h7_c00217{height:11.733399pt;}
.h6_c00217{height:33.763021pt;}
.h8_c00217{height:38.937500pt;}
.h5_c00217{height:81.148438pt;}
.h4_c00217{height:90.511719pt;}
.h2_c00217{height:108.041667pt;}
.h3_c00217{height:118.170573pt;}
.h1_c00217{height:1178.666667pt;}
.h0_c00217{height:1178.866667pt;}
.w2_c00217{width:93.222667pt;}
.w0_c00217{width:735.866667pt;}
.w1_c00217{width:736.000000pt;}
.x0_c00217{left:0.000000pt;}
.x3_c00217{left:109.200000pt;}
.x5_c00217{left:140.933333pt;}
.x1_c00217{left:148.533333pt;}
.x7_c00217{left:167.333333pt;}
.x6_c00217{left:205.733333pt;}
.x2_c00217{left:206.666667pt;}
.x4_c00217{left:208.000000pt;}
.x9_c00217{left:220.800000pt;}
.x8_c00217{left:250.133333pt;}
.xb_c00217{left:325.101563pt;}
.xa_c00217{left:657.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_28d6ab2ccddf6beaaea9ea5a.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_fe0067e2b92da07574018dc4.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_4c4fcaa2e69375f2cdc08a54.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_c032e7356482f41b41a5aad2.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_8d8f62bb29b096cb76d1adcb.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_8148e42669f2cce264e3c184.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00218;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00218{font-family:ff7_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00218;src:url('chunks/assets/font_dbfc9ca1c4e1ddd3a6e6bd16.woff2')format("woff");}.ff8_c00218{font-family:ff8_c00218;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00218;src:url('chunks/assets/font_6d3f7f890396d16d0d4d2f88.woff2')format("woff");}.ff9_c00218{font-family:ff9_c00218;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00218;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffa_c00218{font-family:ffa_c00218;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls5_c00218{letter-spacing:-3.000000px;}
.ls3_c00218{letter-spacing:0.000000px;}
.ls6_c00218{letter-spacing:6.000000px;}
.ls2_c00218{letter-spacing:6.264000px;}
.ls4_c00218{letter-spacing:24.000000px;}
.ls0_c00218{letter-spacing:40.464000px;}
.ls1_c00218{letter-spacing:66.864000px;}
.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:-39.984000px;}
.ws4_c00218{word-spacing:-25.500000px;}
.ws5_c00218{word-spacing:-23.136000px;}
.ws3_c00218{word-spacing:-18.508800px;}
.ws6_c00218{word-spacing:0.000000px;}
.ws2_c00218{word-spacing:5.052000px;}
.ws0_c00218{word-spacing:22.752000px;}
._48_c00218{margin-left:-81.888000px;}
._31_c00218{margin-left:-31.488000px;}
._46_c00218{margin-left:-26.190000px;}
._29_c00218{margin-left:-23.904000px;}
._34_c00218{margin-left:-22.626000px;}
._49_c00218{margin-left:-21.210000px;}
._1_c00218{margin-left:-19.680000px;}
._16_c00218{margin-left:-18.546000px;}
._18_c00218{margin-left:-16.830000px;}
._4_c00218{margin-left:-15.708000px;}
._30_c00218{margin-left:-13.956000px;}
._3b_c00218{margin-left:-12.198000px;}
._14_c00218{margin-left:-10.626000px;}
._12_c00218{margin-left:-7.932000px;}
._1c_c00218{margin-left:-5.556000px;}
._11_c00218{margin-left:-4.290000px;}
._3a_c00218{margin-left:-3.240000px;}
._d_c00218{margin-left:-2.232000px;}
._2d_c00218{margin-left:-1.128000px;}
._f_c00218{width:1.122000px;}
._39_c00218{width:2.124000px;}
._6_c00218{width:3.204000px;}
._7_c00218{width:4.212000px;}
._26_c00218{width:5.370000px;}
._b_c00218{width:6.552000px;}
._23_c00218{width:7.662000px;}
._10_c00218{width:8.910000px;}
._1f_c00218{width:9.984000px;}
._2c_c00218{width:11.232000px;}
._9_c00218{width:12.240000px;}
._3_c00218{width:13.944000px;}
._5_c00218{width:15.456000px;}
._21_c00218{width:17.400000px;}
._22_c00218{width:18.792000px;}
._4e_c00218{width:19.866000px;}
._15_c00218{width:21.132000px;}
._3c_c00218{width:24.480000px;}
._19_c00218{width:26.136000px;}
._27_c00218{width:27.714000px;}
._3e_c00218{width:30.264000px;}
._2f_c00218{width:31.722000px;}
._43_c00218{width:32.724000px;}
._32_c00218{width:34.104000px;}
._25_c00218{width:35.298000px;}
._37_c00218{width:36.954000px;}
._1b_c00218{width:39.024000px;}
._2b_c00218{width:40.998000px;}
._33_c00218{width:42.042000px;}
._3d_c00218{width:43.188000px;}
._17_c00218{width:45.540000px;}
._36_c00218{width:47.856000px;}
._2a_c00218{width:49.248000px;}
._24_c00218{width:50.844000px;}
._44_c00218{width:52.704000px;}
._38_c00218{width:54.300000px;}
._28_c00218{width:57.738000px;}
._13_c00218{width:60.918000px;}
._41_c00218{width:63.456000px;}
._55_c00218{width:64.758000px;}
._45_c00218{width:66.336000px;}
._50_c00218{width:67.452000px;}
._3f_c00218{width:71.520000px;}
._e_c00218{width:77.724000px;}
._42_c00218{width:79.710000px;}
._4b_c00218{width:82.722000px;}
._54_c00218{width:86.280000px;}
._4d_c00218{width:89.628000px;}
._0_c00218{width:91.488000px;}
._c_c00218{width:101.448000px;}
._4c_c00218{width:105.282000px;}
._2e_c00218{width:110.298000px;}
._2_c00218{width:118.488000px;}
._1a_c00218{width:132.654000px;}
._53_c00218{width:166.866000px;}
._4f_c00218{width:174.528000px;}
._20_c00218{width:182.808000px;}
._35_c00218{width:207.042000px;}
._40_c00218{width:224.874000px;}
._51_c00218{width:263.946000px;}
._4a_c00218{width:395.328000px;}
._1d_c00218{width:400.950000px;}
._1e_c00218{width:505.362000px;}
._47_c00218{width:593.034000px;}
._8_c00218{width:743.436000px;}
._52_c00218{width:965.064000px;}
._a_c00218{width:989.100000px;}
.fc2_c00218{color:transparent;}
.fc1_c00218{color:rgb(128,128,128);}
.fc0_c00218{color:rgb(0,0,0);}
.fs3_c00218{font-size:36.000000px;}
.fs8_c00218{font-size:48.000000px;}
.fs7_c00218{font-size:57.000000px;}
.fs4_c00218{font-size:66.000000px;}
.fs5_c00218{font-size:76.800000px;}
.fs1_c00218{font-size:84.000000px;}
.fs0_c00218{font-size:96.000000px;}
.fs6_c00218{font-size:102.000000px;}
.fs2_c00218{font-size:105.000000px;}
.y0_c00218{bottom:0.000000px;}
.y28_c00218{bottom:3.105000px;}
.y27_c00218{bottom:7.228369px;}
.y26_c00218{bottom:105.870000px;}
.y25_c00218{bottom:139.770000px;}
.y24_c00218{bottom:174.720000px;}
.y23_c00218{bottom:207.870000px;}
.y22_c00218{bottom:241.920000px;}
.y21_c00218{bottom:276.420000px;}
.y20_c00218{bottom:309.720000px;}
.y1f_c00218{bottom:343.620000px;}
.y1e_c00218{bottom:377.370000px;}
.y1d_c00218{bottom:411.420000px;}
.y1c_c00218{bottom:478.470000px;}
.y1b_c00218{bottom:524.370000px;}
.y1a_c00218{bottom:545.670000px;}
.y19_c00218{bottom:579.420000px;}
.y18_c00218{bottom:612.870000px;}
.y17_c00218{bottom:645.270000px;}
.y16_c00218{bottom:679.020000px;}
.y15_c00218{bottom:711.420000px;}
.y14_c00218{bottom:745.770000px;}
.y13_c00218{bottom:778.920000px;}
.y12_c00218{bottom:811.920000px;}
.y11_c00218{bottom:844.470000px;}
.y10_c00218{bottom:875.520000px;}
.yf_c00218{bottom:911.220000px;}
.ye_c00218{bottom:940.320000px;}
.yd_c00218{bottom:976.620000px;}
.yc_c00218{bottom:1010.820000px;}
.yb_c00218{bottom:1042.920000px;}
.ya_c00218{bottom:1076.220000px;}
.y9_c00218{bottom:1109.370000px;}
.y8_c00218{bottom:1143.120000px;}
.y7_c00218{bottom:1176.870000px;}
.y3_c00218{bottom:1232.220000px;}
.y6_c00218{bottom:1243.020000px;}
.y5_c00218{bottom:1276.320000px;}
.y2_c00218{bottom:1290.570000px;}
.y4_c00218{bottom:1291.920000px;}
.y1_c00218{bottom:1311.570000px;}
.h7_c00218{height:13.200073px;}
.h8_c00218{height:43.804688px;}
.h4_c00218{height:45.580078px;}
.h5_c00218{height:66.515625px;}
.h6_c00218{height:72.168457px;}
.h3_c00218{height:110.040000px;}
.h2_c00218{height:121.546875px;}
.h0_c00218{height:1383.450000px;}
.h1_c00218{height:1383.750000px;}
.w2_c00218{width:104.875500px;}
.w0_c00218{width:878.025000px;}
.w1_c00218{width:878.250000px;}
.x0_c00218{left:0.000000px;}
.x15_c00218{left:55.800000px;}
.x11_c00218{left:57.000000px;}
.x10_c00218{left:58.650000px;}
.xe_c00218{left:61.800000px;}
.xc_c00218{left:62.850000px;}
.xa_c00218{left:66.600000px;}
.x4_c00218{left:82.650000px;}
.xd_c00218{left:87.750000px;}
.xf_c00218{left:88.800000px;}
.xb_c00218{left:89.850000px;}
.x9_c00218{left:90.900000px;}
.x3_c00218{left:98.550000px;}
.x14_c00218{left:108.900000px;}
.x5_c00218{left:115.200000px;}
.x8_c00218{left:165.000000px;}
.x6_c00218{left:169.800000px;}
.x13_c00218{left:181.800000px;}
.x7_c00218{left:201.150000px;}
.x2_c00218{left:301.500000px;}
.x17_c00218{left:390.826721px;}
.x1_c00218{left:542.400000px;}
.x12_c00218{left:547.050000px;}
.x16_c00218{left:553.800000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls5_c00218{letter-spacing:-2.666667pt;}
.ls3_c00218{letter-spacing:0.000000pt;}
.ls6_c00218{letter-spacing:5.333333pt;}
.ls2_c00218{letter-spacing:5.568000pt;}
.ls4_c00218{letter-spacing:21.333333pt;}
.ls0_c00218{letter-spacing:35.968000pt;}
.ls1_c00218{letter-spacing:59.434667pt;}
.ws1_c00218{word-spacing:-35.541333pt;}
.ws4_c00218{word-spacing:-22.666667pt;}
.ws5_c00218{word-spacing:-20.565333pt;}
.ws3_c00218{word-spacing:-16.452267pt;}
.ws6_c00218{word-spacing:0.000000pt;}
.ws2_c00218{word-spacing:4.490667pt;}
.ws0_c00218{word-spacing:20.224000pt;}
._48_c00218{margin-left:-72.789333pt;}
._31_c00218{margin-left:-27.989333pt;}
._46_c00218{margin-left:-23.280000pt;}
._29_c00218{margin-left:-21.248000pt;}
._34_c00218{margin-left:-20.112000pt;}
._49_c00218{margin-left:-18.853333pt;}
._1_c00218{margin-left:-17.493333pt;}
._16_c00218{margin-left:-16.485333pt;}
._18_c00218{margin-left:-14.960000pt;}
._4_c00218{margin-left:-13.962667pt;}
._30_c00218{margin-left:-12.405333pt;}
._3b_c00218{margin-left:-10.842667pt;}
._14_c00218{margin-left:-9.445333pt;}
._12_c00218{margin-left:-7.050667pt;}
._1c_c00218{margin-left:-4.938667pt;}
._11_c00218{margin-left:-3.813333pt;}
._3a_c00218{margin-left:-2.880000pt;}
._d_c00218{margin-left:-1.984000pt;}
._2d_c00218{margin-left:-1.002667pt;}
._f_c00218{width:0.997333pt;}
._39_c00218{width:1.888000pt;}
._6_c00218{width:2.848000pt;}
._7_c00218{width:3.744000pt;}
._26_c00218{width:4.773333pt;}
._b_c00218{width:5.824000pt;}
._23_c00218{width:6.810667pt;}
._10_c00218{width:7.920000pt;}
._1f_c00218{width:8.874667pt;}
._2c_c00218{width:9.984000pt;}
._9_c00218{width:10.880000pt;}
._3_c00218{width:12.394667pt;}
._5_c00218{width:13.738667pt;}
._21_c00218{width:15.466667pt;}
._22_c00218{width:16.704000pt;}
._4e_c00218{width:17.658667pt;}
._15_c00218{width:18.784000pt;}
._3c_c00218{width:21.760000pt;}
._19_c00218{width:23.232000pt;}
._27_c00218{width:24.634667pt;}
._3e_c00218{width:26.901333pt;}
._2f_c00218{width:28.197333pt;}
._43_c00218{width:29.088000pt;}
._32_c00218{width:30.314667pt;}
._25_c00218{width:31.376000pt;}
._37_c00218{width:32.848000pt;}
._1b_c00218{width:34.688000pt;}
._2b_c00218{width:36.442667pt;}
._33_c00218{width:37.370667pt;}
._3d_c00218{width:38.389333pt;}
._17_c00218{width:40.480000pt;}
._36_c00218{width:42.538667pt;}
._2a_c00218{width:43.776000pt;}
._24_c00218{width:45.194667pt;}
._44_c00218{width:46.848000pt;}
._38_c00218{width:48.266667pt;}
._28_c00218{width:51.322667pt;}
._13_c00218{width:54.149333pt;}
._41_c00218{width:56.405333pt;}
._55_c00218{width:57.562667pt;}
._45_c00218{width:58.965333pt;}
._50_c00218{width:59.957333pt;}
._3f_c00218{width:63.573333pt;}
._e_c00218{width:69.088000pt;}
._42_c00218{width:70.853333pt;}
._4b_c00218{width:73.530667pt;}
._54_c00218{width:76.693333pt;}
._4d_c00218{width:79.669333pt;}
._0_c00218{width:81.322667pt;}
._c_c00218{width:90.176000pt;}
._4c_c00218{width:93.584000pt;}
._2e_c00218{width:98.042667pt;}
._2_c00218{width:105.322667pt;}
._1a_c00218{width:117.914667pt;}
._53_c00218{width:148.325333pt;}
._4f_c00218{width:155.136000pt;}
._20_c00218{width:162.496000pt;}
._35_c00218{width:184.037333pt;}
._40_c00218{width:199.888000pt;}
._51_c00218{width:234.618667pt;}
._4a_c00218{width:351.402667pt;}
._1d_c00218{width:356.400000pt;}
._1e_c00218{width:449.210667pt;}
._47_c00218{width:527.141333pt;}
._8_c00218{width:660.832000pt;}
._52_c00218{width:857.834667pt;}
._a_c00218{width:879.200000pt;}
.fs3_c00218{font-size:32.000000pt;}
.fs8_c00218{font-size:42.666667pt;}
.fs7_c00218{font-size:50.666667pt;}
.fs4_c00218{font-size:58.666667pt;}
.fs5_c00218{font-size:68.266667pt;}
.fs1_c00218{font-size:74.666667pt;}
.fs0_c00218{font-size:85.333333pt;}
.fs6_c00218{font-size:90.666667pt;}
.fs2_c00218{font-size:93.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y28_c00218{bottom:2.760000pt;}
.y27_c00218{bottom:6.425217pt;}
.y26_c00218{bottom:94.106667pt;}
.y25_c00218{bottom:124.240000pt;}
.y24_c00218{bottom:155.306667pt;}
.y23_c00218{bottom:184.773333pt;}
.y22_c00218{bottom:215.040000pt;}
.y21_c00218{bottom:245.706667pt;}
.y20_c00218{bottom:275.306667pt;}
.y1f_c00218{bottom:305.440000pt;}
.y1e_c00218{bottom:335.440000pt;}
.y1d_c00218{bottom:365.706667pt;}
.y1c_c00218{bottom:425.306667pt;}
.y1b_c00218{bottom:466.106667pt;}
.y1a_c00218{bottom:485.040000pt;}
.y19_c00218{bottom:515.040000pt;}
.y18_c00218{bottom:544.773333pt;}
.y17_c00218{bottom:573.573333pt;}
.y16_c00218{bottom:603.573333pt;}
.y15_c00218{bottom:632.373333pt;}
.y14_c00218{bottom:662.906667pt;}
.y13_c00218{bottom:692.373333pt;}
.y12_c00218{bottom:721.706667pt;}
.y11_c00218{bottom:750.640000pt;}
.y10_c00218{bottom:778.240000pt;}
.yf_c00218{bottom:809.973333pt;}
.ye_c00218{bottom:835.840000pt;}
.yd_c00218{bottom:868.106667pt;}
.yc_c00218{bottom:898.506667pt;}
.yb_c00218{bottom:927.040000pt;}
.ya_c00218{bottom:956.640000pt;}
.y9_c00218{bottom:986.106667pt;}
.y8_c00218{bottom:1016.106667pt;}
.y7_c00218{bottom:1046.106667pt;}
.y3_c00218{bottom:1095.306667pt;}
.y6_c00218{bottom:1104.906667pt;}
.y5_c00218{bottom:1134.506667pt;}
.y2_c00218{bottom:1147.173333pt;}
.y4_c00218{bottom:1148.373333pt;}
.y1_c00218{bottom:1165.840000pt;}
.h7_c00218{height:11.733399pt;}
.h8_c00218{height:38.937500pt;}
.h4_c00218{height:40.515625pt;}
.h5_c00218{height:59.125000pt;}
.h6_c00218{height:64.149740pt;}
.h3_c00218{height:97.813333pt;}
.h2_c00218{height:108.041667pt;}
.h0_c00218{height:1229.733333pt;}
.h1_c00218{height:1230.000000pt;}
.w2_c00218{width:93.222667pt;}
.w0_c00218{width:780.466667pt;}
.w1_c00218{width:780.666667pt;}
.x0_c00218{left:0.000000pt;}
.x15_c00218{left:49.600000pt;}
.x11_c00218{left:50.666667pt;}
.x10_c00218{left:52.133333pt;}
.xe_c00218{left:54.933333pt;}
.xc_c00218{left:55.866667pt;}
.xa_c00218{left:59.200000pt;}
.x4_c00218{left:73.466667pt;}
.xd_c00218{left:78.000000pt;}
.xf_c00218{left:78.933333pt;}
.xb_c00218{left:79.866667pt;}
.x9_c00218{left:80.800000pt;}
.x3_c00218{left:87.600000pt;}
.x14_c00218{left:96.800000pt;}
.x5_c00218{left:102.400000pt;}
.x8_c00218{left:146.666667pt;}
.x6_c00218{left:150.933333pt;}
.x13_c00218{left:161.600000pt;}
.x7_c00218{left:178.800000pt;}
.x2_c00218{left:268.000000pt;}
.x17_c00218{left:347.401530pt;}
.x1_c00218{left:482.133333pt;}
.x12_c00218{left:486.266667pt;}
.x16_c00218{left:492.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2a05b60d90e1eb5b9e7f9cf.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_930e33ad85752989b3a064c3.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_fd920e361e542705a4de9900.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls6_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:5.400000px;}
.ls2_c00219{letter-spacing:6.600000px;}
.ls1_c00219{letter-spacing:7.800000px;}
.ls5_c00219{letter-spacing:12.000000px;}
.ls3_c00219{letter-spacing:18.000000px;}
.ls4_c00219{letter-spacing:22.452000px;}
.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:-32.244000px;}
.ws2_c00219{word-spacing:-24.582000px;}
.ws0_c00219{word-spacing:-23.136000px;}
.ws3_c00219{word-spacing:0.000000px;}
._1e_c00219{margin-left:-29.856000px;}
._33_c00219{margin-left:-28.416000px;}
._13_c00219{margin-left:-16.416000px;}
._d_c00219{margin-left:-13.728000px;}
._1c_c00219{margin-left:-11.388000px;}
._1b_c00219{margin-left:-9.552000px;}
._31_c00219{margin-left:-8.544000px;}
._38_c00219{margin-left:-7.494000px;}
._29_c00219{margin-left:-4.800000px;}
._e_c00219{margin-left:-3.792000px;}
._a_c00219{margin-left:-2.736000px;}
._f_c00219{margin-left:-1.632000px;}
._9_c00219{width:1.632000px;}
._6_c00219{width:2.976000px;}
._2_c00219{width:4.512000px;}
._8_c00219{width:5.952000px;}
._4_c00219{width:7.392000px;}
._1_c00219{width:8.832000px;}
._0_c00219{width:10.464000px;}
._17_c00219{width:11.520000px;}
._3_c00219{width:12.768000px;}
._10_c00219{width:14.688000px;}
._16_c00219{width:16.992000px;}
._21_c00219{width:19.122000px;}
._2d_c00219{width:20.160000px;}
._24_c00219{width:21.456000px;}
._15_c00219{width:24.288000px;}
._14_c00219{width:26.304000px;}
._11_c00219{width:28.032000px;}
._7_c00219{width:29.664000px;}
._b_c00219{width:31.776000px;}
._36_c00219{width:32.928000px;}
._12_c00219{width:34.656000px;}
._19_c00219{width:36.288000px;}
._5_c00219{width:38.304000px;}
._20_c00219{width:39.552000px;}
._c_c00219{width:41.568000px;}
._2a_c00219{width:43.518000px;}
._1f_c00219{width:44.832000px;}
._28_c00219{width:45.984000px;}
._18_c00219{width:47.232000px;}
._23_c00219{width:49.632000px;}
._26_c00219{width:51.168000px;}
._22_c00219{width:52.224000px;}
._25_c00219{width:54.240000px;}
._34_c00219{width:55.776000px;}
._27_c00219{width:57.600000px;}
._1d_c00219{width:58.728000px;}
._1a_c00219{width:59.952000px;}
._35_c00219{width:62.562000px;}
._2f_c00219{width:65.664000px;}
._2b_c00219{width:69.570000px;}
._37_c00219{width:80.352000px;}
._30_c00219{width:134.016000px;}
._2e_c00219{width:210.720000px;}
._2c_c00219{width:497.568000px;}
._32_c00219{width:547.182000px;}
.fc2_c00219{color:transparent;}
.fc1_c00219{color:rgb(128,128,128);}
.fc0_c00219{color:rgb(0,0,0);}
.fs3_c00219{font-size:48.000000px;}
.fs2_c00219{font-size:84.000000px;}
.fs0_c00219{font-size:96.000000px;}
.fs1_c00219{font-size:102.000000px;}
.y0_c00219{bottom:0.000000px;}
.y25_c00219{bottom:3.105000px;}
.y24_c00219{bottom:7.228357px;}
.y23_c00219{bottom:98.580000px;}
.y22_c00219{bottom:173.130000px;}
.y21_c00219{bottom:204.630000px;}
.y20_c00219{bottom:239.580000px;}
.y1f_c00219{bottom:273.780000px;}
.y1e_c00219{bottom:307.830000px;}
.y1d_c00219{bottom:341.580000px;}
.y1c_c00219{bottom:375.630000px;}
.y1b_c00219{bottom:409.680000px;}
.y1a_c00219{bottom:443.880000px;}
.y19_c00219{bottom:477.180000px;}
.y18_c00219{bottom:510.780000px;}
.y17_c00219{bottom:544.830000px;}
.y16_c00219{bottom:578.880000px;}
.y15_c00219{bottom:612.630000px;}
.y14_c00219{bottom:646.380000px;}
.y13_c00219{bottom:679.080000px;}
.y12_c00219{bottom:712.530000px;}
.y11_c00219{bottom:745.980000px;}
.y10_c00219{bottom:780.330000px;}
.yf_c00219{bottom:814.080000px;}
.ye_c00219{bottom:847.080000px;}
.yd_c00219{bottom:880.980000px;}
.yc_c00219{bottom:913.680000px;}
.yb_c00219{bottom:947.130000px;}
.ya_c00219{bottom:980.130000px;}
.y9_c00219{bottom:1013.130000px;}
.y8_c00219{bottom:1046.580000px;}
.y7_c00219{bottom:1080.030000px;}
.y6_c00219{bottom:1113.180000px;}
.y5_c00219{bottom:1146.180000px;}
.y4_c00219{bottom:1179.630000px;}
.y3_c00219{bottom:1212.930000px;}
.y2_c00219{bottom:1245.780000px;}
.y1_c00219{bottom:1279.080000px;}
.h4_c00219{height:13.200074px;}
.h5_c00219{height:43.804688px;}
.h2_c00219{height:121.546875px;}
.h3_c00219{height:129.143555px;}
.h0_c00219{height:1382.700000px;}
.h1_c00219{height:1383.000000px;}
.w2_c00219{width:104.875500px;}
.w0_c00219{width:863.175000px;}
.w1_c00219{width:863.250000px;}
.x0_c00219{left:0.000000px;}
.x5_c00219{left:151.950000px;}
.x8_c00219{left:205.950000px;}
.x7_c00219{left:240.600000px;}
.x2_c00219{left:255.150000px;}
.x3_c00219{left:256.200000px;}
.x1_c00219{left:257.400000px;}
.x6_c00219{left:259.500000px;}
.x4_c00219{left:260.550000px;}
.xa_c00219{left:383.401749px;}
.x9_c00219{left:775.650000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls6_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:4.800000pt;}
.ls2_c00219{letter-spacing:5.866667pt;}
.ls1_c00219{letter-spacing:6.933333pt;}
.ls5_c00219{letter-spacing:10.666667pt;}
.ls3_c00219{letter-spacing:16.000000pt;}
.ls4_c00219{letter-spacing:19.957333pt;}
.ws1_c00219{word-spacing:-28.661333pt;}
.ws2_c00219{word-spacing:-21.850667pt;}
.ws0_c00219{word-spacing:-20.565333pt;}
.ws3_c00219{word-spacing:0.000000pt;}
._1e_c00219{margin-left:-26.538667pt;}
._33_c00219{margin-left:-25.258667pt;}
._13_c00219{margin-left:-14.592000pt;}
._d_c00219{margin-left:-12.202667pt;}
._1c_c00219{margin-left:-10.122667pt;}
._1b_c00219{margin-left:-8.490667pt;}
._31_c00219{margin-left:-7.594667pt;}
._38_c00219{margin-left:-6.661333pt;}
._29_c00219{margin-left:-4.266667pt;}
._e_c00219{margin-left:-3.370667pt;}
._a_c00219{margin-left:-2.432000pt;}
._f_c00219{margin-left:-1.450667pt;}
._9_c00219{width:1.450667pt;}
._6_c00219{width:2.645333pt;}
._2_c00219{width:4.010667pt;}
._8_c00219{width:5.290667pt;}
._4_c00219{width:6.570667pt;}
._1_c00219{width:7.850667pt;}
._0_c00219{width:9.301333pt;}
._17_c00219{width:10.240000pt;}
._3_c00219{width:11.349333pt;}
._10_c00219{width:13.056000pt;}
._16_c00219{width:15.104000pt;}
._21_c00219{width:16.997333pt;}
._2d_c00219{width:17.920000pt;}
._24_c00219{width:19.072000pt;}
._15_c00219{width:21.589333pt;}
._14_c00219{width:23.381333pt;}
._11_c00219{width:24.917333pt;}
._7_c00219{width:26.368000pt;}
._b_c00219{width:28.245333pt;}
._36_c00219{width:29.269333pt;}
._12_c00219{width:30.805333pt;}
._19_c00219{width:32.256000pt;}
._5_c00219{width:34.048000pt;}
._20_c00219{width:35.157333pt;}
._c_c00219{width:36.949333pt;}
._2a_c00219{width:38.682667pt;}
._1f_c00219{width:39.850667pt;}
._28_c00219{width:40.874667pt;}
._18_c00219{width:41.984000pt;}
._23_c00219{width:44.117333pt;}
._26_c00219{width:45.482667pt;}
._22_c00219{width:46.421333pt;}
._25_c00219{width:48.213333pt;}
._34_c00219{width:49.578667pt;}
._27_c00219{width:51.200000pt;}
._1d_c00219{width:52.202667pt;}
._1a_c00219{width:53.290667pt;}
._35_c00219{width:55.610667pt;}
._2f_c00219{width:58.368000pt;}
._2b_c00219{width:61.840000pt;}
._37_c00219{width:71.424000pt;}
._30_c00219{width:119.125333pt;}
._2e_c00219{width:187.306667pt;}
._2c_c00219{width:442.282667pt;}
._32_c00219{width:486.384000pt;}
.fs3_c00219{font-size:42.666667pt;}
.fs2_c00219{font-size:74.666667pt;}
.fs0_c00219{font-size:85.333333pt;}
.fs1_c00219{font-size:90.666667pt;}
.y0_c00219{bottom:0.000000pt;}
.y25_c00219{bottom:2.760000pt;}
.y24_c00219{bottom:6.425206pt;}
.y23_c00219{bottom:87.626667pt;}
.y22_c00219{bottom:153.893333pt;}
.y21_c00219{bottom:181.893333pt;}
.y20_c00219{bottom:212.960000pt;}
.y1f_c00219{bottom:243.360000pt;}
.y1e_c00219{bottom:273.626667pt;}
.y1d_c00219{bottom:303.626667pt;}
.y1c_c00219{bottom:333.893333pt;}
.y1b_c00219{bottom:364.160000pt;}
.y1a_c00219{bottom:394.560000pt;}
.y19_c00219{bottom:424.160000pt;}
.y18_c00219{bottom:454.026667pt;}
.y17_c00219{bottom:484.293333pt;}
.y16_c00219{bottom:514.560000pt;}
.y15_c00219{bottom:544.560000pt;}
.y14_c00219{bottom:574.560000pt;}
.y13_c00219{bottom:603.626667pt;}
.y12_c00219{bottom:633.360000pt;}
.y11_c00219{bottom:663.093333pt;}
.y10_c00219{bottom:693.626667pt;}
.yf_c00219{bottom:723.626667pt;}
.ye_c00219{bottom:752.960000pt;}
.yd_c00219{bottom:783.093333pt;}
.yc_c00219{bottom:812.160000pt;}
.yb_c00219{bottom:841.893333pt;}
.ya_c00219{bottom:871.226667pt;}
.y9_c00219{bottom:900.560000pt;}
.y8_c00219{bottom:930.293333pt;}
.y7_c00219{bottom:960.026667pt;}
.y6_c00219{bottom:989.493333pt;}
.y5_c00219{bottom:1018.826667pt;}
.y4_c00219{bottom:1048.560000pt;}
.y3_c00219{bottom:1078.160000pt;}
.y2_c00219{bottom:1107.360000pt;}
.y1_c00219{bottom:1136.960000pt;}
.h4_c00219{height:11.733399pt;}
.h5_c00219{height:38.937500pt;}
.h2_c00219{height:108.041667pt;}
.h3_c00219{height:114.794271pt;}
.h0_c00219{height:1229.066667pt;}
.h1_c00219{height:1229.333333pt;}
.w2_c00219{width:93.222667pt;}
.w0_c00219{width:767.266667pt;}
.w1_c00219{width:767.333333pt;}
.x0_c00219{left:0.000000pt;}
.x5_c00219{left:135.066667pt;}
.x8_c00219{left:183.066667pt;}
.x7_c00219{left:213.866667pt;}
.x2_c00219{left:226.800000pt;}
.x3_c00219{left:227.733333pt;}
.x1_c00219{left:228.800000pt;}
.x6_c00219{left:230.666667pt;}
.x4_c00219{left:231.600000pt;}
.xa_c00219{left:340.801554pt;}
.x9_c00219{left:689.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_196f0d946b53d1a4d31541dc.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_6293bbd8cad70e42b3f51edd.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_5b5318c13845b20749b525a6.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_a5e3121efb18a6de9bcc88a3.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_82d3cca5f796c47a63f4cd65.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_63cb897f6e44b7c80d0b9bd8.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00220;src:url('chunks/assets/font_edb1978fdf3199ca3dbb868f.woff2')format("woff");}.ff7_c00220{font-family:ff7_c00220;line-height:1.004883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00220;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00220{font-family:ff8_c00220;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00220{vertical-align:-116.400000px;}
.v3_c00220{vertical-align:-52.800000px;}
.v2_c00220{vertical-align:-10.800000px;}
.v0_c00220{vertical-align:0.000000px;}
.ls6_c00220{letter-spacing:-3.000000px;}
.ls5_c00220{letter-spacing:0.000000px;}
.lsb_c00220{letter-spacing:3.000000px;}
.ls0_c00220{letter-spacing:3.480000px;}
.ls1_c00220{letter-spacing:6.000000px;}
.ls9_c00220{letter-spacing:9.000000px;}
.ls8_c00220{letter-spacing:12.000000px;}
.ls4_c00220{letter-spacing:18.000000px;}
.ls7_c00220{letter-spacing:24.000000px;}
.lsa_c00220{letter-spacing:51.000000px;}
.ls2_c00220{letter-spacing:195.264000px;}
.ls3_c00220{letter-spacing:352.062000px;}
.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;}
}
.ws6_c00220{word-spacing:-58.230000px;}
.ws1_c00220{word-spacing:-51.000000px;}
.ws0_c00220{word-spacing:-41.136000px;}
.ws4_c00220{word-spacing:-33.000000px;}
.ws3_c00220{word-spacing:-32.244000px;}
.ws5_c00220{word-spacing:-29.967000px;}
.ws2_c00220{word-spacing:-23.136000px;}
.ws9_c00220{word-spacing:0.000000px;}
.ws7_c00220{word-spacing:143.319000px;}
.ws8_c00220{word-spacing:228.495000px;}
._39_c00220{margin-left:-79.776000px;}
._4d_c00220{margin-left:-50.190000px;}
._53_c00220{margin-left:-46.215000px;}
._4c_c00220{margin-left:-33.060000px;}
._55_c00220{margin-left:-31.080000px;}
._4e_c00220{margin-left:-28.797000px;}
._36_c00220{margin-left:-27.552000px;}
._3a_c00220{margin-left:-25.632000px;}
._4a_c00220{margin-left:-23.616000px;}
._2e_c00220{margin-left:-21.408000px;}
._35_c00220{margin-left:-19.488000px;}
._52_c00220{margin-left:-17.574000px;}
._46_c00220{margin-left:-15.744000px;}
._2c_c00220{margin-left:-13.344000px;}
._3c_c00220{margin-left:-11.616000px;}
._34_c00220{margin-left:-10.176000px;}
._3f_c00220{margin-left:-9.024000px;}
._20_c00220{margin-left:-6.912000px;}
._2a_c00220{margin-left:-5.088000px;}
._b_c00220{margin-left:-3.744000px;}
._1_c00220{margin-left:-2.208000px;}
._0_c00220{margin-left:-1.152000px;}
._c_c00220{width:2.016000px;}
._3_c00220{width:3.744000px;}
._5_c00220{width:4.800000px;}
._7_c00220{width:5.856000px;}
._6_c00220{width:7.104000px;}
._9_c00220{width:8.736000px;}
._4_c00220{width:10.752000px;}
._21_c00220{width:12.480000px;}
._8_c00220{width:13.632000px;}
._f_c00220{width:14.688000px;}
._10_c00220{width:16.128000px;}
._a_c00220{width:17.280000px;}
._1f_c00220{width:19.584000px;}
._e_c00220{width:20.640000px;}
._29_c00220{width:21.696000px;}
._49_c00220{width:24.816000px;}
._13_c00220{width:26.016000px;}
._15_c00220{width:27.072000px;}
._3e_c00220{width:28.128000px;}
._32_c00220{width:29.184000px;}
._41_c00220{width:30.240000px;}
._16_c00220{width:31.584000px;}
._22_c00220{width:32.832000px;}
._19_c00220{width:34.176000px;}
._40_c00220{width:35.616000px;}
._1d_c00220{width:36.768000px;}
._24_c00220{width:38.016000px;}
._1b_c00220{width:39.456000px;}
._17_c00220{width:40.608000px;}
._42_c00220{width:41.856000px;}
._11_c00220{width:43.104000px;}
._14_c00220{width:45.312000px;}
._23_c00220{width:46.560000px;}
._1a_c00220{width:47.616000px;}
._12_c00220{width:48.864000px;}
._18_c00220{width:50.688000px;}
._1c_c00220{width:52.416000px;}
._1e_c00220{width:53.664000px;}
._2f_c00220{width:55.872000px;}
._2d_c00220{width:62.016000px;}
._26_c00220{width:63.936000px;}
._3d_c00220{width:64.992000px;}
._28_c00220{width:67.584000px;}
._25_c00220{width:68.640000px;}
._30_c00220{width:69.696000px;}
._27_c00220{width:70.752000px;}
._50_c00220{width:89.181000px;}
._57_c00220{width:117.702000px;}
._38_c00220{width:133.536000px;}
._31_c00220{width:135.456000px;}
._47_c00220{width:142.644000px;}
._2_c00220{width:148.512000px;}
._45_c00220{width:162.312000px;}
._51_c00220{width:167.229000px;}
._3b_c00220{width:185.280000px;}
._2b_c00220{width:239.712000px;}
._56_c00220{width:243.792000px;}
._54_c00220{width:259.716000px;}
._43_c00220{width:277.608000px;}
._4b_c00220{width:289.824000px;}
._37_c00220{width:295.392000px;}
._d_c00220{width:309.216000px;}
._48_c00220{width:535.476000px;}
._58_c00220{width:689.970000px;}
._4f_c00220{width:740.979000px;}
._33_c00220{width:903.264000px;}
._44_c00220{width:916.368000px;}
.fc2_c00220{color:transparent;}
.fc1_c00220{color:rgb(128,128,128);}
.fc0_c00220{color:rgb(0,0,0);}
.fs6_c00220{font-size:30.000000px;}
.fs3_c00220{font-size:36.000000px;}
.fs7_c00220{font-size:45.000000px;}
.fs9_c00220{font-size:48.000000px;}
.fs8_c00220{font-size:66.000000px;}
.fs4_c00220{font-size:84.000000px;}
.fs5_c00220{font-size:87.000000px;}
.fs0_c00220{font-size:96.000000px;}
.fs1_c00220{font-size:102.000000px;}
.fs2_c00220{font-size:105.000000px;}
.y0_c00220{bottom:0.000000px;}
.y28_c00220{bottom:3.105000px;}
.y27_c00220{bottom:7.228369px;}
.y26_c00220{bottom:99.870000px;}
.y25_c00220{bottom:182.970000px;}
.y24_c00220{bottom:217.620000px;}
.y23_c00220{bottom:237.570000px;}
.y22_c00220{bottom:272.070000px;}
.y21_c00220{bottom:340.170000px;}
.y20_c00220{bottom:353.970000px;}
.y1f_c00220{bottom:382.320000px;}
.y1b_c00220{bottom:439.020000px;}
.y1a_c00220{bottom:473.520000px;}
.y19_c00220{bottom:505.920000px;}
.y18_c00220{bottom:540.570000px;}
.y17_c00220{bottom:574.020000px;}
.y16_c00220{bottom:607.470000px;}
.y15_c00220{bottom:640.170000px;}
.y14_c00220{bottom:673.320000px;}
.y13_c00220{bottom:706.020000px;}
.y12_c00220{bottom:739.020000px;}
.y11_c00220{bottom:773.220000px;}
.y10_c00220{bottom:805.920000px;}
.y1e_c00220{bottom:835.920000px;}
.yf_c00220{bottom:839.070000px;}
.y1d_c00220{bottom:862.320000px;}
.y1c_c00220{bottom:869.070000px;}
.ye_c00220{bottom:872.070000px;}
.yd_c00220{bottom:906.120000px;}
.yc_c00220{bottom:938.820000px;}
.yb_c00220{bottom:972.270000px;}
.ya_c00220{bottom:1005.720000px;}
.y9_c00220{bottom:1038.870000px;}
.y8_c00220{bottom:1072.470000px;}
.y7_c00220{bottom:1105.920000px;}
.y6_c00220{bottom:1139.070000px;}
.y5_c00220{bottom:1172.520000px;}
.y4_c00220{bottom:1204.920000px;}
.y3_c00220{bottom:1238.670000px;}
.y2_c00220{bottom:1273.770000px;}
.y1_c00220{bottom:1305.720000px;}
.hb_c00220{height:13.200073px;}
.h4_c00220{height:35.314453px;}
.h6_c00220{height:37.983398px;}
.hc_c00220{height:43.804688px;}
.h7_c00220{height:45.580078px;}
.h8_c00220{height:48.015000px;}
.h9_c00220{height:68.746875px;}
.h5_c00220{height:110.151855px;}
.h2_c00220{height:121.546875px;}
.ha_c00220{height:129.143555px;}
.h3_c00220{height:132.941895px;}
.h0_c00220{height:1383.450000px;}
.h1_c00220{height:1383.750000px;}
.w2_c00220{width:104.875500px;}
.w0_c00220{width:878.025000px;}
.w1_c00220{width:878.250000px;}
.x0_c00220{left:0.000000px;}
.xb_c00220{left:57.000000px;}
.xe_c00220{left:58.050000px;}
.xa_c00220{left:59.100000px;}
.x8_c00220{left:60.150000px;}
.xd_c00220{left:61.200000px;}
.x7_c00220{left:62.400000px;}
.x6_c00220{left:63.450000px;}
.xc_c00220{left:64.500000px;}
.x5_c00220{left:65.550000px;}
.x4_c00220{left:66.600000px;}
.x3_c00220{left:67.800000px;}
.x9_c00220{left:115.800000px;}
.x2_c00220{left:119.550000px;}
.x11_c00220{left:137.400000px;}
.x17_c00220{left:145.350000px;}
.x13_c00220{left:238.950000px;}
.x14_c00220{left:258.600000px;}
.x12_c00220{left:297.600000px;}
.x18_c00220{left:347.550000px;}
.x15_c00220{left:357.150000px;}
.x19_c00220{left:390.826721px;}
.x16_c00220{left:395.100000px;}
.x1_c00220{left:548.400000px;}
.xf_c00220{left:785.250000px;}
.x10_c00220{left:852.750000px;}
@media print{
.v1_c00220{vertical-align:-103.466667pt;}
.v3_c00220{vertical-align:-46.933333pt;}
.v2_c00220{vertical-align:-9.600000pt;}
.v0_c00220{vertical-align:0.000000pt;}
.ls6_c00220{letter-spacing:-2.666667pt;}
.ls5_c00220{letter-spacing:0.000000pt;}
.lsb_c00220{letter-spacing:2.666667pt;}
.ls0_c00220{letter-spacing:3.093333pt;}
.ls1_c00220{letter-spacing:5.333333pt;}
.ls9_c00220{letter-spacing:8.000000pt;}
.ls8_c00220{letter-spacing:10.666667pt;}
.ls4_c00220{letter-spacing:16.000000pt;}
.ls7_c00220{letter-spacing:21.333333pt;}
.lsa_c00220{letter-spacing:45.333333pt;}
.ls2_c00220{letter-spacing:173.568000pt;}
.ls3_c00220{letter-spacing:312.944000pt;}
.ws6_c00220{word-spacing:-51.760000pt;}
.ws1_c00220{word-spacing:-45.333333pt;}
.ws0_c00220{word-spacing:-36.565333pt;}
.ws4_c00220{word-spacing:-29.333333pt;}
.ws3_c00220{word-spacing:-28.661333pt;}
.ws5_c00220{word-spacing:-26.637333pt;}
.ws2_c00220{word-spacing:-20.565333pt;}
.ws9_c00220{word-spacing:0.000000pt;}
.ws7_c00220{word-spacing:127.394667pt;}
.ws8_c00220{word-spacing:203.106667pt;}
._39_c00220{margin-left:-70.912000pt;}
._4d_c00220{margin-left:-44.613333pt;}
._53_c00220{margin-left:-41.080000pt;}
._4c_c00220{margin-left:-29.386667pt;}
._55_c00220{margin-left:-27.626667pt;}
._4e_c00220{margin-left:-25.597333pt;}
._36_c00220{margin-left:-24.490667pt;}
._3a_c00220{margin-left:-22.784000pt;}
._4a_c00220{margin-left:-20.992000pt;}
._2e_c00220{margin-left:-19.029333pt;}
._35_c00220{margin-left:-17.322667pt;}
._52_c00220{margin-left:-15.621333pt;}
._46_c00220{margin-left:-13.994667pt;}
._2c_c00220{margin-left:-11.861333pt;}
._3c_c00220{margin-left:-10.325333pt;}
._34_c00220{margin-left:-9.045333pt;}
._3f_c00220{margin-left:-8.021333pt;}
._20_c00220{margin-left:-6.144000pt;}
._2a_c00220{margin-left:-4.522667pt;}
._b_c00220{margin-left:-3.328000pt;}
._1_c00220{margin-left:-1.962667pt;}
._0_c00220{margin-left:-1.024000pt;}
._c_c00220{width:1.792000pt;}
._3_c00220{width:3.328000pt;}
._5_c00220{width:4.266667pt;}
._7_c00220{width:5.205333pt;}
._6_c00220{width:6.314667pt;}
._9_c00220{width:7.765333pt;}
._4_c00220{width:9.557333pt;}
._21_c00220{width:11.093333pt;}
._8_c00220{width:12.117333pt;}
._f_c00220{width:13.056000pt;}
._10_c00220{width:14.336000pt;}
._a_c00220{width:15.360000pt;}
._1f_c00220{width:17.408000pt;}
._e_c00220{width:18.346667pt;}
._29_c00220{width:19.285333pt;}
._49_c00220{width:22.058667pt;}
._13_c00220{width:23.125333pt;}
._15_c00220{width:24.064000pt;}
._3e_c00220{width:25.002667pt;}
._32_c00220{width:25.941333pt;}
._41_c00220{width:26.880000pt;}
._16_c00220{width:28.074667pt;}
._22_c00220{width:29.184000pt;}
._19_c00220{width:30.378667pt;}
._40_c00220{width:31.658667pt;}
._1d_c00220{width:32.682667pt;}
._24_c00220{width:33.792000pt;}
._1b_c00220{width:35.072000pt;}
._17_c00220{width:36.096000pt;}
._42_c00220{width:37.205333pt;}
._11_c00220{width:38.314667pt;}
._14_c00220{width:40.277333pt;}
._23_c00220{width:41.386667pt;}
._1a_c00220{width:42.325333pt;}
._12_c00220{width:43.434667pt;}
._18_c00220{width:45.056000pt;}
._1c_c00220{width:46.592000pt;}
._1e_c00220{width:47.701333pt;}
._2f_c00220{width:49.664000pt;}
._2d_c00220{width:55.125333pt;}
._26_c00220{width:56.832000pt;}
._3d_c00220{width:57.770667pt;}
._28_c00220{width:60.074667pt;}
._25_c00220{width:61.013333pt;}
._30_c00220{width:61.952000pt;}
._27_c00220{width:62.890667pt;}
._50_c00220{width:79.272000pt;}
._57_c00220{width:104.624000pt;}
._38_c00220{width:118.698667pt;}
._31_c00220{width:120.405333pt;}
._47_c00220{width:126.794667pt;}
._2_c00220{width:132.010667pt;}
._45_c00220{width:144.277333pt;}
._51_c00220{width:148.648000pt;}
._3b_c00220{width:164.693333pt;}
._2b_c00220{width:213.077333pt;}
._56_c00220{width:216.704000pt;}
._54_c00220{width:230.858667pt;}
._43_c00220{width:246.762667pt;}
._4b_c00220{width:257.621333pt;}
._37_c00220{width:262.570667pt;}
._d_c00220{width:274.858667pt;}
._48_c00220{width:475.978667pt;}
._58_c00220{width:613.306667pt;}
._4f_c00220{width:658.648000pt;}
._33_c00220{width:802.901333pt;}
._44_c00220{width:814.549333pt;}
.fs6_c00220{font-size:26.666667pt;}
.fs3_c00220{font-size:32.000000pt;}
.fs7_c00220{font-size:40.000000pt;}
.fs9_c00220{font-size:42.666667pt;}
.fs8_c00220{font-size:58.666667pt;}
.fs4_c00220{font-size:74.666667pt;}
.fs5_c00220{font-size:77.333333pt;}
.fs0_c00220{font-size:85.333333pt;}
.fs1_c00220{font-size:90.666667pt;}
.fs2_c00220{font-size:93.333333pt;}
.y0_c00220{bottom:0.000000pt;}
.y28_c00220{bottom:2.760000pt;}
.y27_c00220{bottom:6.425217pt;}
.y26_c00220{bottom:88.773333pt;}
.y25_c00220{bottom:162.640000pt;}
.y24_c00220{bottom:193.440000pt;}
.y23_c00220{bottom:211.173333pt;}
.y22_c00220{bottom:241.840000pt;}
.y21_c00220{bottom:302.373333pt;}
.y20_c00220{bottom:314.640000pt;}
.y1f_c00220{bottom:339.840000pt;}
.y1b_c00220{bottom:390.240000pt;}
.y1a_c00220{bottom:420.906667pt;}
.y19_c00220{bottom:449.706667pt;}
.y18_c00220{bottom:480.506667pt;}
.y17_c00220{bottom:510.240000pt;}
.y16_c00220{bottom:539.973333pt;}
.y15_c00220{bottom:569.040000pt;}
.y14_c00220{bottom:598.506667pt;}
.y13_c00220{bottom:627.573333pt;}
.y12_c00220{bottom:656.906667pt;}
.y11_c00220{bottom:687.306667pt;}
.y10_c00220{bottom:716.373333pt;}
.y1e_c00220{bottom:743.040000pt;}
.yf_c00220{bottom:745.840000pt;}
.y1d_c00220{bottom:766.506667pt;}
.y1c_c00220{bottom:772.506667pt;}
.ye_c00220{bottom:775.173333pt;}
.yd_c00220{bottom:805.440000pt;}
.yc_c00220{bottom:834.506667pt;}
.yb_c00220{bottom:864.240000pt;}
.ya_c00220{bottom:893.973333pt;}
.y9_c00220{bottom:923.440000pt;}
.y8_c00220{bottom:953.306667pt;}
.y7_c00220{bottom:983.040000pt;}
.y6_c00220{bottom:1012.506667pt;}
.y5_c00220{bottom:1042.240000pt;}
.y4_c00220{bottom:1071.040000pt;}
.y3_c00220{bottom:1101.040000pt;}
.y2_c00220{bottom:1132.240000pt;}
.y1_c00220{bottom:1160.640000pt;}
.hb_c00220{height:11.733399pt;}
.h4_c00220{height:31.390625pt;}
.h6_c00220{height:33.763021pt;}
.hc_c00220{height:38.937500pt;}
.h7_c00220{height:40.515625pt;}
.h8_c00220{height:42.680000pt;}
.h9_c00220{height:61.108333pt;}
.h5_c00220{height:97.912760pt;}
.h2_c00220{height:108.041667pt;}
.ha_c00220{height:114.794271pt;}
.h3_c00220{height:118.170573pt;}
.h0_c00220{height:1229.733333pt;}
.h1_c00220{height:1230.000000pt;}
.w2_c00220{width:93.222667pt;}
.w0_c00220{width:780.466667pt;}
.w1_c00220{width:780.666667pt;}
.x0_c00220{left:0.000000pt;}
.xb_c00220{left:50.666667pt;}
.xe_c00220{left:51.600000pt;}
.xa_c00220{left:52.533333pt;}
.x8_c00220{left:53.466667pt;}
.xd_c00220{left:54.400000pt;}
.x7_c00220{left:55.466667pt;}
.x6_c00220{left:56.400000pt;}
.xc_c00220{left:57.333333pt;}
.x5_c00220{left:58.266667pt;}
.x4_c00220{left:59.200000pt;}
.x3_c00220{left:60.266667pt;}
.x9_c00220{left:102.933333pt;}
.x2_c00220{left:106.266667pt;}
.x11_c00220{left:122.133333pt;}
.x17_c00220{left:129.200000pt;}
.x13_c00220{left:212.400000pt;}
.x14_c00220{left:229.866667pt;}
.x12_c00220{left:264.533333pt;}
.x18_c00220{left:308.933333pt;}
.x15_c00220{left:317.466667pt;}
.x19_c00220{left:347.401530pt;}
.x16_c00220{left:351.200000pt;}
.x1_c00220{left:487.466667pt;}
.xf_c00220{left:698.000000pt;}
.x10_c00220{left:758.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_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_f1338fbb0b60169b6ff7959f.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_a5dfb00a11818597ab60668f.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_39da6d1bc3547aa97fe64b89.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_66c52197a828e32d198cf04e.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_92028267673b67b6c3b8c1a0.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.v1_c00221{vertical-align:1.200000px;}
.ls7_c00221{letter-spacing:0.000000px;}
.ls8_c00221{letter-spacing:3.000000px;}
.ls6_c00221{letter-spacing:4.320000px;}
.ls2_c00221{letter-spacing:10.272000px;}
.ls5_c00221{letter-spacing:12.000000px;}
.ls1_c00221{letter-spacing:17.100000px;}
.ls4_c00221{letter-spacing:18.816000px;}
.ls0_c00221{letter-spacing:18.900000px;}
.ls3_c00221{letter-spacing:33.000000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00221{word-spacing:-51.000000px;}
.ws2_c00221{word-spacing:-34.353000px;}
.ws1_c00221{word-spacing:-32.244000px;}
.ws0_c00221{word-spacing:-23.967000px;}
.ws5_c00221{word-spacing:-23.136000px;}
.ws3_c00221{word-spacing:-20.244000px;}
.ws8_c00221{word-spacing:0.000000px;}
.ws6_c00221{word-spacing:4.284000px;}
.ws4_c00221{word-spacing:422.880000px;}
._38_c00221{margin-left:-33.108000px;}
._11_c00221{margin-left:-26.622000px;}
._f_c00221{margin-left:-20.598000px;}
._25_c00221{margin-left:-16.800000px;}
._2c_c00221{margin-left:-15.792000px;}
._e_c00221{margin-left:-13.353000px;}
._27_c00221{margin-left:-11.715000px;}
._7_c00221{margin-left:-10.701000px;}
._15_c00221{margin-left:-8.904000px;}
._10_c00221{margin-left:-7.389000px;}
._14_c00221{margin-left:-6.384000px;}
._8_c00221{margin-left:-5.220000px;}
._c_c00221{margin-left:-3.633000px;}
._9_c00221{margin-left:-1.701000px;}
._b_c00221{width:1.131000px;}
._a_c00221{width:3.132000px;}
._1f_c00221{width:4.176000px;}
._5_c00221{width:5.472000px;}
._1c_c00221{width:6.588000px;}
._18_c00221{width:8.064000px;}
._4_c00221{width:9.792000px;}
._6_c00221{width:11.376000px;}
._23_c00221{width:12.480000px;}
._0_c00221{width:13.536000px;}
._2_c00221{width:15.840000px;}
._1_c00221{width:16.848000px;}
._d_c00221{width:18.357000px;}
._26_c00221{width:19.584000px;}
._22_c00221{width:20.928000px;}
._39_c00221{width:24.216000px;}
._13_c00221{width:25.440000px;}
._1e_c00221{width:26.484000px;}
._37_c00221{width:28.200000px;}
._1a_c00221{width:30.324000px;}
._35_c00221{width:31.536000px;}
._34_c00221{width:32.901000px;}
._2d_c00221{width:34.176000px;}
._12_c00221{width:35.232000px;}
._1d_c00221{width:36.378000px;}
._3a_c00221{width:38.382000px;}
._2b_c00221{width:40.650000px;}
._3d_c00221{width:41.856000px;}
._33_c00221{width:43.476000px;}
._36_c00221{width:45.420000px;}
._28_c00221{width:47.127000px;}
._21_c00221{width:48.684000px;}
._1b_c00221{width:50.661000px;}
._32_c00221{width:52.656000px;}
._29_c00221{width:54.309000px;}
._24_c00221{width:55.734000px;}
._3c_c00221{width:58.317000px;}
._3b_c00221{width:63.984000px;}
._3e_c00221{width:80.286000px;}
._3_c00221{width:94.032000px;}
._16_c00221{width:110.652000px;}
._2a_c00221{width:116.640000px;}
._30_c00221{width:127.632000px;}
._2f_c00221{width:132.837000px;}
._17_c00221{width:134.004000px;}
._31_c00221{width:184.941000px;}
._2e_c00221{width:217.536000px;}
._20_c00221{width:244.935000px;}
._19_c00221{width:503.316000px;}
.fc2_c00221{color:transparent;}
.fc1_c00221{color:rgb(128,128,128);}
.fc0_c00221{color:rgb(0,0,0);}
.fs6_c00221{font-size:30.000000px;}
.fs7_c00221{font-size:48.000000px;}
.fs3_c00221{font-size:84.000000px;}
.fs1_c00221{font-size:87.000000px;}
.fs2_c00221{font-size:96.000000px;}
.fs4_c00221{font-size:99.000000px;}
.fs5_c00221{font-size:102.000000px;}
.fs0_c00221{font-size:144.000000px;}
.y0_c00221{bottom:0.000000px;}
.y27_c00221{bottom:3.105000px;}
.y26_c00221{bottom:7.228357px;}
.y25_c00221{bottom:86.730000px;}
.y24_c00221{bottom:122.280000px;}
.y23_c00221{bottom:156.330000px;}
.y22_c00221{bottom:190.080000px;}
.y21_c00221{bottom:224.130000px;}
.y20_c00221{bottom:258.180000px;}
.y1f_c00221{bottom:292.680000px;}
.y1e_c00221{bottom:326.430000px;}
.y1d_c00221{bottom:360.180000px;}
.y1c_c00221{bottom:394.230000px;}
.y1b_c00221{bottom:427.980000px;}
.y1a_c00221{bottom:461.430000px;}
.y19_c00221{bottom:494.730000px;}
.y18_c00221{bottom:529.230000px;}
.y17_c00221{bottom:563.280000px;}
.y16_c00221{bottom:597.030000px;}
.y15_c00221{bottom:630.180000px;}
.y14_c00221{bottom:664.530000px;}
.y13_c00221{bottom:697.380000px;}
.y12_c00221{bottom:731.730000px;}
.y11_c00221{bottom:765.180000px;}
.y10_c00221{bottom:798.930000px;}
.y5_c00221{bottom:812.430000px;}
.yf_c00221{bottom:831.030000px;}
.y4_c00221{bottom:841.080000px;}
.ye_c00221{bottom:859.980000px;}
.yd_c00221{bottom:900.480000px;}
.yc_c00221{bottom:933.180000px;}
.yb_c00221{bottom:966.330000px;}
.y3_c00221{bottom:973.980000px;}
.ya_c00221{bottom:999.780000px;}
.y2_c00221{bottom:1004.430000px;}
.y9_c00221{bottom:1066.530000px;}
.y8_c00221{bottom:1099.530000px;}
.y7_c00221{bottom:1134.030000px;}
.y6_c00221{bottom:1167.780000px;}
.y1_c00221{bottom:1257.180000px;}
.h8_c00221{height:13.200074px;}
.h9_c00221{height:43.804688px;}
.h5_c00221{height:98.314453px;}
.h6_c00221{height:106.353516px;}
.h3_c00221{height:110.151855px;}
.h4_c00221{height:121.546875px;}
.h7_c00221{height:122.746875px;}
.h2_c00221{height:182.320312px;}
.h0_c00221{height:1382.700000px;}
.h1_c00221{height:1383.000000px;}
.w2_c00221{width:104.875500px;}
.w0_c00221{width:863.175000px;}
.w1_c00221{width:863.250000px;}
.x0_c00221{left:0.000000px;}
.x5_c00221{left:24.000000px;}
.x4_c00221{left:25.200000px;}
.x3_c00221{left:82.350000px;}
.x2_c00221{left:148.800000px;}
.x11_c00221{left:229.800000px;}
.x10_c00221{left:238.950000px;}
.xf_c00221{left:240.000000px;}
.xe_c00221{left:241.650000px;}
.xc_c00221{left:242.700000px;}
.x6_c00221{left:243.750000px;}
.xd_c00221{left:244.800000px;}
.x7_c00221{left:292.500000px;}
.xa_c00221{left:294.600000px;}
.x8_c00221{left:343.200000px;}
.x1_c00221{left:364.500000px;}
.x13_c00221{left:383.401749px;}
.x9_c00221{left:422.100000px;}
.xb_c00221{left:495.000000px;}
.x12_c00221{left:754.950000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.v1_c00221{vertical-align:1.066667pt;}
.ls7_c00221{letter-spacing:0.000000pt;}
.ls8_c00221{letter-spacing:2.666667pt;}
.ls6_c00221{letter-spacing:3.840000pt;}
.ls2_c00221{letter-spacing:9.130667pt;}
.ls5_c00221{letter-spacing:10.666667pt;}
.ls1_c00221{letter-spacing:15.200000pt;}
.ls4_c00221{letter-spacing:16.725333pt;}
.ls0_c00221{letter-spacing:16.800000pt;}
.ls3_c00221{letter-spacing:29.333333pt;}
.ws7_c00221{word-spacing:-45.333333pt;}
.ws2_c00221{word-spacing:-30.536000pt;}
.ws1_c00221{word-spacing:-28.661333pt;}
.ws0_c00221{word-spacing:-21.304000pt;}
.ws5_c00221{word-spacing:-20.565333pt;}
.ws3_c00221{word-spacing:-17.994667pt;}
.ws8_c00221{word-spacing:0.000000pt;}
.ws6_c00221{word-spacing:3.808000pt;}
.ws4_c00221{word-spacing:375.893333pt;}
._38_c00221{margin-left:-29.429333pt;}
._11_c00221{margin-left:-23.664000pt;}
._f_c00221{margin-left:-18.309333pt;}
._25_c00221{margin-left:-14.933333pt;}
._2c_c00221{margin-left:-14.037333pt;}
._e_c00221{margin-left:-11.869333pt;}
._27_c00221{margin-left:-10.413333pt;}
._7_c00221{margin-left:-9.512000pt;}
._15_c00221{margin-left:-7.914667pt;}
._10_c00221{margin-left:-6.568000pt;}
._14_c00221{margin-left:-5.674667pt;}
._8_c00221{margin-left:-4.640000pt;}
._c_c00221{margin-left:-3.229333pt;}
._9_c00221{margin-left:-1.512000pt;}
._b_c00221{width:1.005333pt;}
._a_c00221{width:2.784000pt;}
._1f_c00221{width:3.712000pt;}
._5_c00221{width:4.864000pt;}
._1c_c00221{width:5.856000pt;}
._18_c00221{width:7.168000pt;}
._4_c00221{width:8.704000pt;}
._6_c00221{width:10.112000pt;}
._23_c00221{width:11.093333pt;}
._0_c00221{width:12.032000pt;}
._2_c00221{width:14.080000pt;}
._1_c00221{width:14.976000pt;}
._d_c00221{width:16.317333pt;}
._26_c00221{width:17.408000pt;}
._22_c00221{width:18.602667pt;}
._39_c00221{width:21.525333pt;}
._13_c00221{width:22.613333pt;}
._1e_c00221{width:23.541333pt;}
._37_c00221{width:25.066667pt;}
._1a_c00221{width:26.954667pt;}
._35_c00221{width:28.032000pt;}
._34_c00221{width:29.245333pt;}
._2d_c00221{width:30.378667pt;}
._12_c00221{width:31.317333pt;}
._1d_c00221{width:32.336000pt;}
._3a_c00221{width:34.117333pt;}
._2b_c00221{width:36.133333pt;}
._3d_c00221{width:37.205333pt;}
._33_c00221{width:38.645333pt;}
._36_c00221{width:40.373333pt;}
._28_c00221{width:41.890667pt;}
._21_c00221{width:43.274667pt;}
._1b_c00221{width:45.032000pt;}
._32_c00221{width:46.805333pt;}
._29_c00221{width:48.274667pt;}
._24_c00221{width:49.541333pt;}
._3c_c00221{width:51.837333pt;}
._3b_c00221{width:56.874667pt;}
._3e_c00221{width:71.365333pt;}
._3_c00221{width:83.584000pt;}
._16_c00221{width:98.357333pt;}
._2a_c00221{width:103.680000pt;}
._30_c00221{width:113.450667pt;}
._2f_c00221{width:118.077333pt;}
._17_c00221{width:119.114667pt;}
._31_c00221{width:164.392000pt;}
._2e_c00221{width:193.365333pt;}
._20_c00221{width:217.720000pt;}
._19_c00221{width:447.392000pt;}
.fs6_c00221{font-size:26.666667pt;}
.fs7_c00221{font-size:42.666667pt;}
.fs3_c00221{font-size:74.666667pt;}
.fs1_c00221{font-size:77.333333pt;}
.fs2_c00221{font-size:85.333333pt;}
.fs4_c00221{font-size:88.000000pt;}
.fs5_c00221{font-size:90.666667pt;}
.fs0_c00221{font-size:128.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y27_c00221{bottom:2.760000pt;}
.y26_c00221{bottom:6.425206pt;}
.y25_c00221{bottom:77.093333pt;}
.y24_c00221{bottom:108.693333pt;}
.y23_c00221{bottom:138.960000pt;}
.y22_c00221{bottom:168.960000pt;}
.y21_c00221{bottom:199.226667pt;}
.y20_c00221{bottom:229.493333pt;}
.y1f_c00221{bottom:260.160000pt;}
.y1e_c00221{bottom:290.160000pt;}
.y1d_c00221{bottom:320.160000pt;}
.y1c_c00221{bottom:350.426667pt;}
.y1b_c00221{bottom:380.426667pt;}
.y1a_c00221{bottom:410.160000pt;}
.y19_c00221{bottom:439.760000pt;}
.y18_c00221{bottom:470.426667pt;}
.y17_c00221{bottom:500.693333pt;}
.y16_c00221{bottom:530.693333pt;}
.y15_c00221{bottom:560.160000pt;}
.y14_c00221{bottom:590.693333pt;}
.y13_c00221{bottom:619.893333pt;}
.y12_c00221{bottom:650.426667pt;}
.y11_c00221{bottom:680.160000pt;}
.y10_c00221{bottom:710.160000pt;}
.y5_c00221{bottom:722.160000pt;}
.yf_c00221{bottom:738.693333pt;}
.y4_c00221{bottom:747.626667pt;}
.ye_c00221{bottom:764.426667pt;}
.yd_c00221{bottom:800.426667pt;}
.yc_c00221{bottom:829.493333pt;}
.yb_c00221{bottom:858.960000pt;}
.y3_c00221{bottom:865.760000pt;}
.ya_c00221{bottom:888.693333pt;}
.y2_c00221{bottom:892.826667pt;}
.y9_c00221{bottom:948.026667pt;}
.y8_c00221{bottom:977.360000pt;}
.y7_c00221{bottom:1008.026667pt;}
.y6_c00221{bottom:1038.026667pt;}
.y1_c00221{bottom:1117.493333pt;}
.h8_c00221{height:11.733399pt;}
.h9_c00221{height:38.937500pt;}
.h5_c00221{height:87.390625pt;}
.h6_c00221{height:94.536458pt;}
.h3_c00221{height:97.912760pt;}
.h4_c00221{height:108.041667pt;}
.h7_c00221{height:109.108333pt;}
.h2_c00221{height:162.062500pt;}
.h0_c00221{height:1229.066667pt;}
.h1_c00221{height:1229.333333pt;}
.w2_c00221{width:93.222667pt;}
.w0_c00221{width:767.266667pt;}
.w1_c00221{width:767.333333pt;}
.x0_c00221{left:0.000000pt;}
.x5_c00221{left:21.333333pt;}
.x4_c00221{left:22.400000pt;}
.x3_c00221{left:73.200000pt;}
.x2_c00221{left:132.266667pt;}
.x11_c00221{left:204.266667pt;}
.x10_c00221{left:212.400000pt;}
.xf_c00221{left:213.333333pt;}
.xe_c00221{left:214.800000pt;}
.xc_c00221{left:215.733333pt;}
.x6_c00221{left:216.666667pt;}
.xd_c00221{left:217.600000pt;}
.x7_c00221{left:260.000000pt;}
.xa_c00221{left:261.866667pt;}
.x8_c00221{left:305.066667pt;}
.x1_c00221{left:324.000000pt;}
.x13_c00221{left:340.801554pt;}
.x9_c00221{left:375.200000pt;}
.xb_c00221{left:440.000000pt;}
.x12_c00221{left:671.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a50a485453583d75b820f72.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_6328372ada022ac4573475b5.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.ls1_c00222{letter-spacing:12.000000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00222{word-spacing:-75.504000px;}
.ws2_c00222{word-spacing:0.000000px;}
.ws0_c00222{word-spacing:49.440000px;}
._3b_c00222{margin-left:-86.400000px;}
._33_c00222{margin-left:-21.024000px;}
._39_c00222{margin-left:-17.688000px;}
._2e_c00222{margin-left:-15.840000px;}
._37_c00222{margin-left:-11.616000px;}
._23_c00222{margin-left:-9.120000px;}
._2f_c00222{margin-left:-7.752000px;}
._29_c00222{margin-left:-6.144000px;}
._8_c00222{margin-left:-4.608000px;}
._24_c00222{margin-left:-3.360000px;}
._16_c00222{margin-left:-2.208000px;}
._26_c00222{margin-left:-1.152000px;}
._0_c00222{width:1.248000px;}
._2_c00222{width:2.304000px;}
._6_c00222{width:3.648000px;}
._5_c00222{width:4.704000px;}
._9_c00222{width:5.856000px;}
._15_c00222{width:6.912000px;}
._12_c00222{width:7.968000px;}
._1d_c00222{width:9.024000px;}
._13_c00222{width:10.368000px;}
._c_c00222{width:11.712000px;}
._7_c00222{width:12.960000px;}
._d_c00222{width:14.688000px;}
._b_c00222{width:15.744000px;}
._1b_c00222{width:17.376000px;}
._18_c00222{width:18.528000px;}
._1_c00222{width:19.680000px;}
._14_c00222{width:20.832000px;}
._28_c00222{width:21.984000px;}
._2c_c00222{width:24.288000px;}
._a_c00222{width:25.440000px;}
._27_c00222{width:26.496000px;}
._3_c00222{width:27.552000px;}
._4_c00222{width:29.952000px;}
._1c_c00222{width:32.064000px;}
._f_c00222{width:33.888000px;}
._2a_c00222{width:35.136000px;}
._1a_c00222{width:36.480000px;}
._17_c00222{width:38.112000px;}
._2d_c00222{width:39.168000px;}
._10_c00222{width:40.416000px;}
._20_c00222{width:42.336000px;}
._11_c00222{width:43.872000px;}
._1e_c00222{width:45.600000px;}
._e_c00222{width:48.000000px;}
._21_c00222{width:50.112000px;}
._1f_c00222{width:51.744000px;}
._19_c00222{width:53.760000px;}
._30_c00222{width:57.984000px;}
._2b_c00222{width:63.072000px;}
._25_c00222{width:68.640000px;}
._35_c00222{width:88.224000px;}
._36_c00222{width:176.160000px;}
._3a_c00222{width:248.832000px;}
._34_c00222{width:358.080000px;}
._38_c00222{width:368.832000px;}
._31_c00222{width:447.936000px;}
._32_c00222{width:671.808000px;}
._22_c00222{width:1167.168000px;}
._3c_c00222{width:2002.752000px;}
.fc2_c00222{color:transparent;}
.fc1_c00222{color:rgb(128,128,128);}
.fc0_c00222{color:rgb(0,0,0);}
.fs2_c00222{font-size:48.000000px;}
.fs1_c00222{font-size:84.000000px;}
.fs0_c00222{font-size:96.000000px;}
.y0_c00222{bottom:0.000000px;}
.y27_c00222{bottom:3.105000px;}
.y26_c00222{bottom:7.228369px;}
.y25_c00222{bottom:87.120000px;}
.y24_c00222{bottom:123.870000px;}
.y23_c00222{bottom:158.220000px;}
.y22_c00222{bottom:191.070000px;}
.y21_c00222{bottom:224.670000px;}
.y20_c00222{bottom:257.220000px;}
.y1f_c00222{bottom:293.220000px;}
.y1e_c00222{bottom:326.670000px;}
.y1d_c00222{bottom:360.420000px;}
.y1c_c00222{bottom:393.870000px;}
.y1b_c00222{bottom:426.570000px;}
.y1a_c00222{bottom:463.020000px;}
.y19_c00222{bottom:495.720000px;}
.y18_c00222{bottom:527.820000px;}
.y17_c00222{bottom:561.270000px;}
.y16_c00222{bottom:594.570000px;}
.y15_c00222{bottom:628.020000px;}
.y14_c00222{bottom:660.720000px;}
.y13_c00222{bottom:693.870000px;}
.y12_c00222{bottom:727.620000px;}
.y11_c00222{bottom:760.770000px;}
.y10_c00222{bottom:794.520000px;}
.yf_c00222{bottom:827.520000px;}
.ye_c00222{bottom:860.970000px;}
.yd_c00222{bottom:893.370000px;}
.yc_c00222{bottom:926.820000px;}
.yb_c00222{bottom:960.870000px;}
.ya_c00222{bottom:993.570000px;}
.y9_c00222{bottom:1027.320000px;}
.y8_c00222{bottom:1060.470000px;}
.y7_c00222{bottom:1094.070000px;}
.y6_c00222{bottom:1127.520000px;}
.y5_c00222{bottom:1160.370000px;}
.y4_c00222{bottom:1193.670000px;}
.y3_c00222{bottom:1227.420000px;}
.y2_c00222{bottom:1260.570000px;}
.y1_c00222{bottom:1294.920000px;}
.h3_c00222{height:13.200073px;}
.h4_c00222{height:43.804688px;}
.h2_c00222{height:121.546875px;}
.h0_c00222{height:1383.450000px;}
.h1_c00222{height:1383.750000px;}
.w2_c00222{width:104.875500px;}
.w0_c00222{width:878.025000px;}
.w1_c00222{width:878.250000px;}
.x0_c00222{left:0.000000px;}
.xf_c00222{left:56.400000px;}
.xe_c00222{left:57.600000px;}
.xc_c00222{left:61.200000px;}
.xd_c00222{left:66.600000px;}
.xa_c00222{left:67.800000px;}
.x9_c00222{left:68.850000px;}
.x8_c00222{left:69.900000px;}
.x7_c00222{left:70.950000px;}
.x6_c00222{left:72.600000px;}
.x5_c00222{left:74.250000px;}
.x4_c00222{left:75.300000px;}
.x3_c00222{left:76.350000px;}
.x2_c00222{left:77.400000px;}
.x10_c00222{left:90.450000px;}
.x11_c00222{left:103.500000px;}
.xb_c00222{left:216.900000px;}
.x12_c00222{left:390.826721px;}
.x1_c00222{left:537.600000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ls1_c00222{letter-spacing:10.666667pt;}
.ws1_c00222{word-spacing:-67.114667pt;}
.ws2_c00222{word-spacing:0.000000pt;}
.ws0_c00222{word-spacing:43.946667pt;}
._3b_c00222{margin-left:-76.800000pt;}
._33_c00222{margin-left:-18.688000pt;}
._39_c00222{margin-left:-15.722667pt;}
._2e_c00222{margin-left:-14.080000pt;}
._37_c00222{margin-left:-10.325333pt;}
._23_c00222{margin-left:-8.106667pt;}
._2f_c00222{margin-left:-6.890667pt;}
._29_c00222{margin-left:-5.461333pt;}
._8_c00222{margin-left:-4.096000pt;}
._24_c00222{margin-left:-2.986667pt;}
._16_c00222{margin-left:-1.962667pt;}
._26_c00222{margin-left:-1.024000pt;}
._0_c00222{width:1.109333pt;}
._2_c00222{width:2.048000pt;}
._6_c00222{width:3.242667pt;}
._5_c00222{width:4.181333pt;}
._9_c00222{width:5.205333pt;}
._15_c00222{width:6.144000pt;}
._12_c00222{width:7.082667pt;}
._1d_c00222{width:8.021333pt;}
._13_c00222{width:9.216000pt;}
._c_c00222{width:10.410667pt;}
._7_c00222{width:11.520000pt;}
._d_c00222{width:13.056000pt;}
._b_c00222{width:13.994667pt;}
._1b_c00222{width:15.445333pt;}
._18_c00222{width:16.469333pt;}
._1_c00222{width:17.493333pt;}
._14_c00222{width:18.517333pt;}
._28_c00222{width:19.541333pt;}
._2c_c00222{width:21.589333pt;}
._a_c00222{width:22.613333pt;}
._27_c00222{width:23.552000pt;}
._3_c00222{width:24.490667pt;}
._4_c00222{width:26.624000pt;}
._1c_c00222{width:28.501333pt;}
._f_c00222{width:30.122667pt;}
._2a_c00222{width:31.232000pt;}
._1a_c00222{width:32.426667pt;}
._17_c00222{width:33.877333pt;}
._2d_c00222{width:34.816000pt;}
._10_c00222{width:35.925333pt;}
._20_c00222{width:37.632000pt;}
._11_c00222{width:38.997333pt;}
._1e_c00222{width:40.533333pt;}
._e_c00222{width:42.666667pt;}
._21_c00222{width:44.544000pt;}
._1f_c00222{width:45.994667pt;}
._19_c00222{width:47.786667pt;}
._30_c00222{width:51.541333pt;}
._2b_c00222{width:56.064000pt;}
._25_c00222{width:61.013333pt;}
._35_c00222{width:78.421333pt;}
._36_c00222{width:156.586667pt;}
._3a_c00222{width:221.184000pt;}
._34_c00222{width:318.293333pt;}
._38_c00222{width:327.850667pt;}
._31_c00222{width:398.165333pt;}
._32_c00222{width:597.162667pt;}
._22_c00222{width:1037.482667pt;}
._3c_c00222{width:1780.224000pt;}
.fs2_c00222{font-size:42.666667pt;}
.fs1_c00222{font-size:74.666667pt;}
.fs0_c00222{font-size:85.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y27_c00222{bottom:2.760000pt;}
.y26_c00222{bottom:6.425217pt;}
.y25_c00222{bottom:77.440000pt;}
.y24_c00222{bottom:110.106667pt;}
.y23_c00222{bottom:140.640000pt;}
.y22_c00222{bottom:169.840000pt;}
.y21_c00222{bottom:199.706667pt;}
.y20_c00222{bottom:228.640000pt;}
.y1f_c00222{bottom:260.640000pt;}
.y1e_c00222{bottom:290.373333pt;}
.y1d_c00222{bottom:320.373333pt;}
.y1c_c00222{bottom:350.106667pt;}
.y1b_c00222{bottom:379.173333pt;}
.y1a_c00222{bottom:411.573333pt;}
.y19_c00222{bottom:440.640000pt;}
.y18_c00222{bottom:469.173333pt;}
.y17_c00222{bottom:498.906667pt;}
.y16_c00222{bottom:528.506667pt;}
.y15_c00222{bottom:558.240000pt;}
.y14_c00222{bottom:587.306667pt;}
.y13_c00222{bottom:616.773333pt;}
.y12_c00222{bottom:646.773333pt;}
.y11_c00222{bottom:676.240000pt;}
.y10_c00222{bottom:706.240000pt;}
.yf_c00222{bottom:735.573333pt;}
.ye_c00222{bottom:765.306667pt;}
.yd_c00222{bottom:794.106667pt;}
.yc_c00222{bottom:823.840000pt;}
.yb_c00222{bottom:854.106667pt;}
.ya_c00222{bottom:883.173333pt;}
.y9_c00222{bottom:913.173333pt;}
.y8_c00222{bottom:942.640000pt;}
.y7_c00222{bottom:972.506667pt;}
.y6_c00222{bottom:1002.240000pt;}
.y5_c00222{bottom:1031.440000pt;}
.y4_c00222{bottom:1061.040000pt;}
.y3_c00222{bottom:1091.040000pt;}
.y2_c00222{bottom:1120.506667pt;}
.y1_c00222{bottom:1151.040000pt;}
.h3_c00222{height:11.733399pt;}
.h4_c00222{height:38.937500pt;}
.h2_c00222{height:108.041667pt;}
.h0_c00222{height:1229.733333pt;}
.h1_c00222{height:1230.000000pt;}
.w2_c00222{width:93.222667pt;}
.w0_c00222{width:780.466667pt;}
.w1_c00222{width:780.666667pt;}
.x0_c00222{left:0.000000pt;}
.xf_c00222{left:50.133333pt;}
.xe_c00222{left:51.200000pt;}
.xc_c00222{left:54.400000pt;}
.xd_c00222{left:59.200000pt;}
.xa_c00222{left:60.266667pt;}
.x9_c00222{left:61.200000pt;}
.x8_c00222{left:62.133333pt;}
.x7_c00222{left:63.066667pt;}
.x6_c00222{left:64.533333pt;}
.x5_c00222{left:66.000000pt;}
.x4_c00222{left:66.933333pt;}
.x3_c00222{left:67.866667pt;}
.x2_c00222{left:68.800000pt;}
.x10_c00222{left:80.400000pt;}
.x11_c00222{left:92.000000pt;}
.xb_c00222{left:192.800000pt;}
.x12_c00222{left:347.401530pt;}
.x1_c00222{left:477.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5a0372b677efbe679e7457b4.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_b1b1878017c7248f93445f9a.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls5_c00223{letter-spacing:0.000000px;}
.ls2_c00223{letter-spacing:5.400000px;}
.ls4_c00223{letter-spacing:7.200000px;}
.ls1_c00223{letter-spacing:7.800000px;}
.ls3_c00223{letter-spacing:13.200000px;}
.ls0_c00223{letter-spacing:13.800000px;}
.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:-51.000000px;}
.ws0_c00223{word-spacing:-23.136000px;}
.ws2_c00223{word-spacing:0.000000px;}
._b_c00223{margin-left:-29.376000px;}
._31_c00223{margin-left:-26.304000px;}
._2e_c00223{margin-left:-15.672000px;}
._8_c00223{margin-left:-14.328000px;}
._27_c00223{margin-left:-12.120000px;}
._2d_c00223{margin-left:-11.040000px;}
._2a_c00223{margin-left:-10.008000px;}
._24_c00223{margin-left:-8.328000px;}
._2f_c00223{margin-left:-6.912000px;}
._28_c00223{margin-left:-5.472000px;}
._33_c00223{margin-left:-4.416000px;}
._15_c00223{margin-left:-3.168000px;}
._7_c00223{margin-left:-1.632000px;}
._0_c00223{width:1.440000px;}
._5_c00223{width:2.496000px;}
._d_c00223{width:3.648000px;}
._4_c00223{width:4.704000px;}
._3_c00223{width:5.952000px;}
._2_c00223{width:7.296000px;}
._10_c00223{width:8.952000px;}
._13_c00223{width:10.320000px;}
._a_c00223{width:11.904000px;}
._1a_c00223{width:13.440000px;}
._9_c00223{width:15.144000px;}
._16_c00223{width:16.800000px;}
._2c_c00223{width:18.024000px;}
._23_c00223{width:19.320000px;}
._19_c00223{width:21.600000px;}
._30_c00223{width:24.216000px;}
._6_c00223{width:25.344000px;}
._1c_c00223{width:26.400000px;}
._1b_c00223{width:28.344000px;}
._1d_c00223{width:30.144000px;}
._29_c00223{width:31.392000px;}
._1_c00223{width:32.736000px;}
._14_c00223{width:34.176000px;}
._18_c00223{width:35.232000px;}
._c_c00223{width:36.288000px;}
._22_c00223{width:38.688000px;}
._e_c00223{width:40.800000px;}
._17_c00223{width:43.488000px;}
._12_c00223{width:45.408000px;}
._f_c00223{width:46.752000px;}
._11_c00223{width:48.000000px;}
._25_c00223{width:49.824000px;}
._21_c00223{width:51.072000px;}
._1f_c00223{width:53.544000px;}
._20_c00223{width:56.256000px;}
._1e_c00223{width:58.176000px;}
._35_c00223{width:61.776000px;}
._26_c00223{width:64.824000px;}
._2b_c00223{width:66.840000px;}
._34_c00223{width:166.056000px;}
._32_c00223{width:180.864000px;}
.fc2_c00223{color:transparent;}
.fc1_c00223{color:rgb(128,128,128);}
.fc0_c00223{color:rgb(0,0,0);}
.fs2_c00223{font-size:48.000000px;}
.fs0_c00223{font-size:96.000000px;}
.fs1_c00223{font-size:102.000000px;}
.y0_c00223{bottom:0.000000px;}
.y26_c00223{bottom:3.105000px;}
.y25_c00223{bottom:7.228357px;}
.y24_c00223{bottom:79.080000px;}
.y23_c00223{bottom:116.430000px;}
.y22_c00223{bottom:149.880000px;}
.y21_c00223{bottom:182.280000px;}
.y20_c00223{bottom:218.430000px;}
.y1f_c00223{bottom:251.430000px;}
.y1e_c00223{bottom:285.480000px;}
.y1d_c00223{bottom:319.380000px;}
.y1c_c00223{bottom:353.430000px;}
.y1b_c00223{bottom:387.780000px;}
.y1a_c00223{bottom:420.930000px;}
.y19_c00223{bottom:455.280000px;}
.y18_c00223{bottom:488.730000px;}
.y17_c00223{bottom:522.780000px;}
.y16_c00223{bottom:556.830000px;}
.y15_c00223{bottom:590.580000px;}
.y14_c00223{bottom:624.330000px;}
.y13_c00223{bottom:657.180000px;}
.y12_c00223{bottom:690.630000px;}
.y11_c00223{bottom:724.680000px;}
.y10_c00223{bottom:758.430000px;}
.yf_c00223{bottom:791.730000px;}
.ye_c00223{bottom:825.480000px;}
.yd_c00223{bottom:859.230000px;}
.yc_c00223{bottom:892.380000px;}
.yb_c00223{bottom:925.530000px;}
.ya_c00223{bottom:959.130000px;}
.y9_c00223{bottom:992.580000px;}
.y8_c00223{bottom:1025.430000px;}
.y7_c00223{bottom:1059.180000px;}
.y6_c00223{bottom:1092.180000px;}
.y5_c00223{bottom:1125.630000px;}
.y4_c00223{bottom:1159.380000px;}
.y3_c00223{bottom:1191.780000px;}
.y2_c00223{bottom:1225.080000px;}
.y1_c00223{bottom:1258.980000px;}
.h3_c00223{height:13.200074px;}
.h4_c00223{height:43.804688px;}
.h2_c00223{height:121.546875px;}
.h0_c00223{height:1382.700000px;}
.h1_c00223{height:1383.000000px;}
.w2_c00223{width:104.875500px;}
.w0_c00223{width:863.175000px;}
.w1_c00223{width:863.250000px;}
.x0_c00223{left:0.000000px;}
.x8_c00223{left:170.850000px;}
.x9_c00223{left:194.700000px;}
.x6_c00223{left:258.900000px;}
.x7_c00223{left:261.150000px;}
.x5_c00223{left:262.800000px;}
.x1_c00223{left:271.350000px;}
.x2_c00223{left:272.400000px;}
.x4_c00223{left:273.600000px;}
.x3_c00223{left:274.650000px;}
.xb_c00223{left:383.401749px;}
.xa_c00223{left:799.950000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls5_c00223{letter-spacing:0.000000pt;}
.ls2_c00223{letter-spacing:4.800000pt;}
.ls4_c00223{letter-spacing:6.400000pt;}
.ls1_c00223{letter-spacing:6.933333pt;}
.ls3_c00223{letter-spacing:11.733333pt;}
.ls0_c00223{letter-spacing:12.266667pt;}
.ws1_c00223{word-spacing:-45.333333pt;}
.ws0_c00223{word-spacing:-20.565333pt;}
.ws2_c00223{word-spacing:0.000000pt;}
._b_c00223{margin-left:-26.112000pt;}
._31_c00223{margin-left:-23.381333pt;}
._2e_c00223{margin-left:-13.930667pt;}
._8_c00223{margin-left:-12.736000pt;}
._27_c00223{margin-left:-10.773333pt;}
._2d_c00223{margin-left:-9.813333pt;}
._2a_c00223{margin-left:-8.896000pt;}
._24_c00223{margin-left:-7.402667pt;}
._2f_c00223{margin-left:-6.144000pt;}
._28_c00223{margin-left:-4.864000pt;}
._33_c00223{margin-left:-3.925333pt;}
._15_c00223{margin-left:-2.816000pt;}
._7_c00223{margin-left:-1.450667pt;}
._0_c00223{width:1.280000pt;}
._5_c00223{width:2.218667pt;}
._d_c00223{width:3.242667pt;}
._4_c00223{width:4.181333pt;}
._3_c00223{width:5.290667pt;}
._2_c00223{width:6.485333pt;}
._10_c00223{width:7.957333pt;}
._13_c00223{width:9.173333pt;}
._a_c00223{width:10.581333pt;}
._1a_c00223{width:11.946667pt;}
._9_c00223{width:13.461333pt;}
._16_c00223{width:14.933333pt;}
._2c_c00223{width:16.021333pt;}
._23_c00223{width:17.173333pt;}
._19_c00223{width:19.200000pt;}
._30_c00223{width:21.525333pt;}
._6_c00223{width:22.528000pt;}
._1c_c00223{width:23.466667pt;}
._1b_c00223{width:25.194667pt;}
._1d_c00223{width:26.794667pt;}
._29_c00223{width:27.904000pt;}
._1_c00223{width:29.098667pt;}
._14_c00223{width:30.378667pt;}
._18_c00223{width:31.317333pt;}
._c_c00223{width:32.256000pt;}
._22_c00223{width:34.389333pt;}
._e_c00223{width:36.266667pt;}
._17_c00223{width:38.656000pt;}
._12_c00223{width:40.362667pt;}
._f_c00223{width:41.557333pt;}
._11_c00223{width:42.666667pt;}
._25_c00223{width:44.288000pt;}
._21_c00223{width:45.397333pt;}
._1f_c00223{width:47.594667pt;}
._20_c00223{width:50.005333pt;}
._1e_c00223{width:51.712000pt;}
._35_c00223{width:54.912000pt;}
._26_c00223{width:57.621333pt;}
._2b_c00223{width:59.413333pt;}
._34_c00223{width:147.605333pt;}
._32_c00223{width:160.768000pt;}
.fs2_c00223{font-size:42.666667pt;}
.fs0_c00223{font-size:85.333333pt;}
.fs1_c00223{font-size:90.666667pt;}
.y0_c00223{bottom:0.000000pt;}
.y26_c00223{bottom:2.760000pt;}
.y25_c00223{bottom:6.425206pt;}
.y24_c00223{bottom:70.293333pt;}
.y23_c00223{bottom:103.493333pt;}
.y22_c00223{bottom:133.226667pt;}
.y21_c00223{bottom:162.026667pt;}
.y20_c00223{bottom:194.160000pt;}
.y1f_c00223{bottom:223.493333pt;}
.y1e_c00223{bottom:253.760000pt;}
.y1d_c00223{bottom:283.893333pt;}
.y1c_c00223{bottom:314.160000pt;}
.y1b_c00223{bottom:344.693333pt;}
.y1a_c00223{bottom:374.160000pt;}
.y19_c00223{bottom:404.693333pt;}
.y18_c00223{bottom:434.426667pt;}
.y17_c00223{bottom:464.693333pt;}
.y16_c00223{bottom:494.960000pt;}
.y15_c00223{bottom:524.960000pt;}
.y14_c00223{bottom:554.960000pt;}
.y13_c00223{bottom:584.160000pt;}
.y12_c00223{bottom:613.893333pt;}
.y11_c00223{bottom:644.160000pt;}
.y10_c00223{bottom:674.160000pt;}
.yf_c00223{bottom:703.760000pt;}
.ye_c00223{bottom:733.760000pt;}
.yd_c00223{bottom:763.760000pt;}
.yc_c00223{bottom:793.226667pt;}
.yb_c00223{bottom:822.693333pt;}
.ya_c00223{bottom:852.560000pt;}
.y9_c00223{bottom:882.293333pt;}
.y8_c00223{bottom:911.493333pt;}
.y7_c00223{bottom:941.493333pt;}
.y6_c00223{bottom:970.826667pt;}
.y5_c00223{bottom:1000.560000pt;}
.y4_c00223{bottom:1030.560000pt;}
.y3_c00223{bottom:1059.360000pt;}
.y2_c00223{bottom:1088.960000pt;}
.y1_c00223{bottom:1119.093333pt;}
.h3_c00223{height:11.733399pt;}
.h4_c00223{height:38.937500pt;}
.h2_c00223{height:108.041667pt;}
.h0_c00223{height:1229.066667pt;}
.h1_c00223{height:1229.333333pt;}
.w2_c00223{width:93.222667pt;}
.w0_c00223{width:767.266667pt;}
.w1_c00223{width:767.333333pt;}
.x0_c00223{left:0.000000pt;}
.x8_c00223{left:151.866667pt;}
.x9_c00223{left:173.066667pt;}
.x6_c00223{left:230.133333pt;}
.x7_c00223{left:232.133333pt;}
.x5_c00223{left:233.600000pt;}
.x1_c00223{left:241.200000pt;}
.x2_c00223{left:242.133333pt;}
.x4_c00223{left:243.200000pt;}
.x3_c00223{left:244.133333pt;}
.xb_c00223{left:340.801554pt;}
.xa_c00223{left:711.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86628953a71f1bca5e385e96.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls1_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:3.000000px;}
.ls2_c00224{letter-spacing:9.000000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00224{word-spacing:0.000000px;}
.ws0_c00224{word-spacing:13.224000px;}
._1f_c00224{margin-left:-27.168000px;}
._2f_c00224{margin-left:-21.792000px;}
._28_c00224{margin-left:-16.128000px;}
._29_c00224{margin-left:-14.880000px;}
._0_c00224{margin-left:-11.592000px;}
._2a_c00224{margin-left:-10.368000px;}
._32_c00224{margin-left:-8.736000px;}
._1b_c00224{margin-left:-7.680000px;}
._13_c00224{margin-left:-6.048000px;}
._21_c00224{margin-left:-4.512000px;}
._2_c00224{margin-left:-3.072000px;}
._9_c00224{margin-left:-1.152000px;}
._e_c00224{width:1.440000px;}
._7_c00224{width:2.784000px;}
._6_c00224{width:3.936000px;}
._5_c00224{width:5.376000px;}
._b_c00224{width:6.624000px;}
._4_c00224{width:7.776000px;}
._10_c00224{width:8.832000px;}
._26_c00224{width:9.888000px;}
._14_c00224{width:10.944000px;}
._a_c00224{width:12.576000px;}
._1a_c00224{width:13.728000px;}
._8_c00224{width:14.976000px;}
._f_c00224{width:16.704000px;}
._1d_c00224{width:17.760000px;}
._c_c00224{width:19.392000px;}
._15_c00224{width:20.448000px;}
._1c_c00224{width:21.600000px;}
._18_c00224{width:24.288000px;}
._1e_c00224{width:26.112000px;}
._24_c00224{width:27.168000px;}
._20_c00224{width:28.416000px;}
._1_c00224{width:29.664000px;}
._17_c00224{width:31.104000px;}
._16_c00224{width:33.600000px;}
._12_c00224{width:34.752000px;}
._11_c00224{width:37.056000px;}
._23_c00224{width:38.880000px;}
._25_c00224{width:40.224000px;}
._d_c00224{width:41.568000px;}
._27_c00224{width:43.488000px;}
._19_c00224{width:44.736000px;}
._2b_c00224{width:46.272000px;}
._22_c00224{width:48.288000px;}
._33_c00224{width:49.344000px;}
._36_c00224{width:52.032000px;}
._35_c00224{width:53.088000px;}
._2c_c00224{width:55.872000px;}
._31_c00224{width:74.688000px;}
._34_c00224{width:77.472000px;}
._3_c00224{width:81.840000px;}
._2e_c00224{width:103.104000px;}
._2d_c00224{width:183.456000px;}
._30_c00224{width:452.064000px;}
._37_c00224{width:892.416000px;}
.fc2_c00224{color:transparent;}
.fc1_c00224{color:rgb(128,128,128);}
.fc0_c00224{color:rgb(0,0,0);}
.fs3_c00224{font-size:48.000000px;}
.fs2_c00224{font-size:87.000000px;}
.fs0_c00224{font-size:96.000000px;}
.fs1_c00224{font-size:102.000000px;}
.y0_c00224{bottom:0.000000px;}
.y27_c00224{bottom:3.105000px;}
.y26_c00224{bottom:7.228369px;}
.y25_c00224{bottom:88.020000px;}
.y24_c00224{bottom:122.670000px;}
.y23_c00224{bottom:157.170000px;}
.y22_c00224{bottom:191.670000px;}
.y21_c00224{bottom:224.820000px;}
.y20_c00224{bottom:258.570000px;}
.y1f_c00224{bottom:292.620000px;}
.y1e_c00224{bottom:325.020000px;}
.y1d_c00224{bottom:362.070000px;}
.y1c_c00224{bottom:394.770000px;}
.y1b_c00224{bottom:428.520000px;}
.y1a_c00224{bottom:461.370000px;}
.y19_c00224{bottom:495.720000px;}
.y18_c00224{bottom:528.720000px;}
.y17_c00224{bottom:562.320000px;}
.y16_c00224{bottom:595.920000px;}
.y15_c00224{bottom:629.070000px;}
.y14_c00224{bottom:662.220000px;}
.y13_c00224{bottom:695.520000px;}
.y12_c00224{bottom:728.670000px;}
.y11_c00224{bottom:762.720000px;}
.y10_c00224{bottom:795.870000px;}
.yf_c00224{bottom:828.870000px;}
.ye_c00224{bottom:862.170000px;}
.yd_c00224{bottom:895.620000px;}
.yc_c00224{bottom:929.070000px;}
.yb_c00224{bottom:961.470000px;}
.ya_c00224{bottom:995.520000px;}
.y9_c00224{bottom:1028.970000px;}
.y8_c00224{bottom:1062.720000px;}
.y7_c00224{bottom:1095.870000px;}
.y6_c00224{bottom:1129.320000px;}
.y5_c00224{bottom:1162.620000px;}
.y4_c00224{bottom:1196.070000px;}
.y3_c00224{bottom:1229.220000px;}
.y2_c00224{bottom:1262.970000px;}
.y1_c00224{bottom:1289.970000px;}
.h3_c00224{height:13.200073px;}
.h4_c00224{height:43.804688px;}
.h2_c00224{height:121.546875px;}
.h0_c00224{height:1383.450000px;}
.h1_c00224{height:1383.750000px;}
.w2_c00224{width:104.875500px;}
.w0_c00224{width:878.025000px;}
.w1_c00224{width:878.250000px;}
.x0_c00224{left:0.000000px;}
.xb_c00224{left:68.400000px;}
.xd_c00224{left:69.900000px;}
.xa_c00224{left:71.100000px;}
.x9_c00224{left:72.150000px;}
.x7_c00224{left:73.800000px;}
.x8_c00224{left:74.850000px;}
.x6_c00224{left:75.900000px;}
.x5_c00224{left:76.950000px;}
.x4_c00224{left:78.600000px;}
.x2_c00224{left:79.650000px;}
.x3_c00224{left:80.700000px;}
.xc_c00224{left:96.450000px;}
.xe_c00224{left:339.900000px;}
.xf_c00224{left:390.826721px;}
.x1_c00224{left:566.250000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls1_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:2.666667pt;}
.ls2_c00224{letter-spacing:8.000000pt;}
.ws1_c00224{word-spacing:0.000000pt;}
.ws0_c00224{word-spacing:11.754667pt;}
._1f_c00224{margin-left:-24.149333pt;}
._2f_c00224{margin-left:-19.370667pt;}
._28_c00224{margin-left:-14.336000pt;}
._29_c00224{margin-left:-13.226667pt;}
._0_c00224{margin-left:-10.304000pt;}
._2a_c00224{margin-left:-9.216000pt;}
._32_c00224{margin-left:-7.765333pt;}
._1b_c00224{margin-left:-6.826667pt;}
._13_c00224{margin-left:-5.376000pt;}
._21_c00224{margin-left:-4.010667pt;}
._2_c00224{margin-left:-2.730667pt;}
._9_c00224{margin-left:-1.024000pt;}
._e_c00224{width:1.280000pt;}
._7_c00224{width:2.474667pt;}
._6_c00224{width:3.498667pt;}
._5_c00224{width:4.778667pt;}
._b_c00224{width:5.888000pt;}
._4_c00224{width:6.912000pt;}
._10_c00224{width:7.850667pt;}
._26_c00224{width:8.789333pt;}
._14_c00224{width:9.728000pt;}
._a_c00224{width:11.178667pt;}
._1a_c00224{width:12.202667pt;}
._8_c00224{width:13.312000pt;}
._f_c00224{width:14.848000pt;}
._1d_c00224{width:15.786667pt;}
._c_c00224{width:17.237333pt;}
._15_c00224{width:18.176000pt;}
._1c_c00224{width:19.200000pt;}
._18_c00224{width:21.589333pt;}
._1e_c00224{width:23.210667pt;}
._24_c00224{width:24.149333pt;}
._20_c00224{width:25.258667pt;}
._1_c00224{width:26.368000pt;}
._17_c00224{width:27.648000pt;}
._16_c00224{width:29.866667pt;}
._12_c00224{width:30.890667pt;}
._11_c00224{width:32.938667pt;}
._23_c00224{width:34.560000pt;}
._25_c00224{width:35.754667pt;}
._d_c00224{width:36.949333pt;}
._27_c00224{width:38.656000pt;}
._19_c00224{width:39.765333pt;}
._2b_c00224{width:41.130667pt;}
._22_c00224{width:42.922667pt;}
._33_c00224{width:43.861333pt;}
._36_c00224{width:46.250667pt;}
._35_c00224{width:47.189333pt;}
._2c_c00224{width:49.664000pt;}
._31_c00224{width:66.389333pt;}
._34_c00224{width:68.864000pt;}
._3_c00224{width:72.746667pt;}
._2e_c00224{width:91.648000pt;}
._2d_c00224{width:163.072000pt;}
._30_c00224{width:401.834667pt;}
._37_c00224{width:793.258667pt;}
.fs3_c00224{font-size:42.666667pt;}
.fs2_c00224{font-size:77.333333pt;}
.fs0_c00224{font-size:85.333333pt;}
.fs1_c00224{font-size:90.666667pt;}
.y0_c00224{bottom:0.000000pt;}
.y27_c00224{bottom:2.760000pt;}
.y26_c00224{bottom:6.425217pt;}
.y25_c00224{bottom:78.240000pt;}
.y24_c00224{bottom:109.040000pt;}
.y23_c00224{bottom:139.706667pt;}
.y22_c00224{bottom:170.373333pt;}
.y21_c00224{bottom:199.840000pt;}
.y20_c00224{bottom:229.840000pt;}
.y1f_c00224{bottom:260.106667pt;}
.y1e_c00224{bottom:288.906667pt;}
.y1d_c00224{bottom:321.840000pt;}
.y1c_c00224{bottom:350.906667pt;}
.y1b_c00224{bottom:380.906667pt;}
.y1a_c00224{bottom:410.106667pt;}
.y19_c00224{bottom:440.640000pt;}
.y18_c00224{bottom:469.973333pt;}
.y17_c00224{bottom:499.840000pt;}
.y16_c00224{bottom:529.706667pt;}
.y15_c00224{bottom:559.173333pt;}
.y14_c00224{bottom:588.640000pt;}
.y13_c00224{bottom:618.240000pt;}
.y12_c00224{bottom:647.706667pt;}
.y11_c00224{bottom:677.973333pt;}
.y10_c00224{bottom:707.440000pt;}
.yf_c00224{bottom:736.773333pt;}
.ye_c00224{bottom:766.373333pt;}
.yd_c00224{bottom:796.106667pt;}
.yc_c00224{bottom:825.840000pt;}
.yb_c00224{bottom:854.640000pt;}
.ya_c00224{bottom:884.906667pt;}
.y9_c00224{bottom:914.640000pt;}
.y8_c00224{bottom:944.640000pt;}
.y7_c00224{bottom:974.106667pt;}
.y6_c00224{bottom:1003.840000pt;}
.y5_c00224{bottom:1033.440000pt;}
.y4_c00224{bottom:1063.173333pt;}
.y3_c00224{bottom:1092.640000pt;}
.y2_c00224{bottom:1122.640000pt;}
.y1_c00224{bottom:1146.640000pt;}
.h3_c00224{height:11.733399pt;}
.h4_c00224{height:38.937500pt;}
.h2_c00224{height:108.041667pt;}
.h0_c00224{height:1229.733333pt;}
.h1_c00224{height:1230.000000pt;}
.w2_c00224{width:93.222667pt;}
.w0_c00224{width:780.466667pt;}
.w1_c00224{width:780.666667pt;}
.x0_c00224{left:0.000000pt;}
.xb_c00224{left:60.800000pt;}
.xd_c00224{left:62.133333pt;}
.xa_c00224{left:63.200000pt;}
.x9_c00224{left:64.133333pt;}
.x7_c00224{left:65.600000pt;}
.x8_c00224{left:66.533333pt;}
.x6_c00224{left:67.466667pt;}
.x5_c00224{left:68.400000pt;}
.x4_c00224{left:69.866667pt;}
.x2_c00224{left:70.800000pt;}
.x3_c00224{left:71.733333pt;}
.xc_c00224{left:85.733333pt;}
.xe_c00224{left:302.133333pt;}
.xf_c00224{left:347.401530pt;}
.x1_c00224{left:503.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_551020729e0ca10aa4ca15d0.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.314453;font-style:normal;font-weight:normal;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_95cfc60ca23a532823d6935a.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.314453;font-style:normal;font-weight:normal;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_993fd2bd1445ecfe8e11b3e8.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_a61117de94140241a0cd2ef6.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_f88a26bc1887db14e073bfe2.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00225;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls7_c00225{letter-spacing:-6.000000px;}
.ls3_c00225{letter-spacing:-3.000000px;}
.ls5_c00225{letter-spacing:0.000000px;}
.ls6_c00225{letter-spacing:3.000000px;}
.ls0_c00225{letter-spacing:4.032000px;}
.ls8_c00225{letter-spacing:9.000000px;}
.ls4_c00225{letter-spacing:12.000000px;}
.ls2_c00225{letter-spacing:15.600000px;}
.ls1_c00225{letter-spacing:26.700000px;}
.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;}
}
.ws2_c00225{word-spacing:-51.000000px;}
.ws1_c00225{word-spacing:-32.244000px;}
.ws3_c00225{word-spacing:-0.996000px;}
.ws4_c00225{word-spacing:0.000000px;}
.ws0_c00225{word-spacing:2.980800px;}
._37_c00225{margin-left:-88.218000px;}
._36_c00225{margin-left:-55.266000px;}
._35_c00225{margin-left:-54.201000px;}
._38_c00225{margin-left:-23.991000px;}
._18_c00225{margin-left:-19.488000px;}
._23_c00225{margin-left:-17.508000px;}
._31_c00225{margin-left:-16.416000px;}
._17_c00225{margin-left:-15.168000px;}
._2f_c00225{margin-left:-12.384000px;}
._5_c00225{margin-left:-11.040000px;}
._32_c00225{margin-left:-9.888000px;}
._4_c00225{margin-left:-8.160000px;}
._28_c00225{margin-left:-6.600000px;}
._10_c00225{margin-left:-5.040000px;}
._2c_c00225{margin-left:-4.008000px;}
._f_c00225{margin-left:-2.940000px;}
._1f_c00225{margin-left:-1.620000px;}
._d_c00225{width:1.920000px;}
._a_c00225{width:3.324000px;}
._8_c00225{width:4.704000px;}
._9_c00225{width:6.048000px;}
._0_c00225{width:7.680000px;}
._14_c00225{width:8.796000px;}
._2_c00225{width:9.828000px;}
._13_c00225{width:10.848000px;}
._7_c00225{width:12.768000px;}
._3_c00225{width:14.028000px;}
._c_c00225{width:15.456000px;}
._b_c00225{width:16.644000px;}
._6_c00225{width:17.760000px;}
._15_c00225{width:19.368000px;}
._1a_c00225{width:21.120000px;}
._19_c00225{width:24.576000px;}
._16_c00225{width:26.112000px;}
._e_c00225{width:28.080000px;}
._12_c00225{width:29.136000px;}
._1b_c00225{width:30.435000px;}
._1c_c00225{width:31.548000px;}
._2d_c00225{width:33.804000px;}
._11_c00225{width:35.805000px;}
._21_c00225{width:37.152000px;}
._1e_c00225{width:38.280000px;}
._1d_c00225{width:40.644000px;}
._22_c00225{width:42.192000px;}
._2e_c00225{width:43.617000px;}
._27_c00225{width:45.024000px;}
._1_c00225{width:47.136000px;}
._25_c00225{width:49.896000px;}
._20_c00225{width:51.552000px;}
._26_c00225{width:53.328000px;}
._24_c00225{width:56.424000px;}
._30_c00225{width:60.204000px;}
._33_c00225{width:67.650000px;}
._34_c00225{width:74.076000px;}
._2b_c00225{width:80.616000px;}
._2a_c00225{width:87.936000px;}
._39_c00225{width:187.224000px;}
._3a_c00225{width:217.869000px;}
._3b_c00225{width:816.024000px;}
._29_c00225{width:1386.708000px;}
.fc2_c00225{color:transparent;}
.fc1_c00225{color:rgb(128,128,128);}
.fc0_c00225{color:rgb(0,0,0);}
.fs1_c00225{font-size:19.200000px;}
.fs0_c00225{font-size:24.000000px;}
.fs9_c00225{font-size:48.000000px;}
.fs8_c00225{font-size:60.000000px;}
.fs7_c00225{font-size:78.000000px;}
.fs2_c00225{font-size:84.000000px;}
.fs6_c00225{font-size:87.000000px;}
.fs3_c00225{font-size:96.000000px;}
.fs5_c00225{font-size:102.000000px;}
.fs4_c00225{font-size:105.000000px;}
.y0_c00225{bottom:0.000000px;}
.y24_c00225{bottom:3.105000px;}
.y23_c00225{bottom:7.228357px;}
.y22_c00225{bottom:81.030000px;}
.y21_c00225{bottom:216.630000px;}
.y20_c00225{bottom:228.180000px;}
.y1f_c00225{bottom:265.380000px;}
.y1e_c00225{bottom:323.430000px;}
.y1d_c00225{bottom:358.380000px;}
.y1c_c00225{bottom:392.280000px;}
.y1b_c00225{bottom:425.880000px;}
.y1a_c00225{bottom:459.630000px;}
.y19_c00225{bottom:494.130000px;}
.y18_c00225{bottom:527.880000px;}
.y17_c00225{bottom:561.330000px;}
.y16_c00225{bottom:595.680000px;}
.y15_c00225{bottom:629.430000px;}
.y14_c00225{bottom:662.130000px;}
.y13_c00225{bottom:696.630000px;}
.y12_c00225{bottom:730.380000px;}
.y11_c00225{bottom:763.830000px;}
.y10_c00225{bottom:797.280000px;}
.yf_c00225{bottom:831.030000px;}
.ye_c00225{bottom:865.080000px;}
.yd_c00225{bottom:897.780000px;}
.yc_c00225{bottom:931.530000px;}
.yb_c00225{bottom:964.980000px;}
.ya_c00225{bottom:997.080000px;}
.y9_c00225{bottom:1031.730000px;}
.y8_c00225{bottom:1065.180000px;}
.y7_c00225{bottom:1098.330000px;}
.y6_c00225{bottom:1132.080000px;}
.y5_c00225{bottom:1165.380000px;}
.y4_c00225{bottom:1198.530000px;}
.y3_c00225{bottom:1232.280000px;}
.y2_c00225{bottom:1265.580000px;}
.y1_c00225{bottom:1296.030000px;}
.h7_c00225{height:13.200074px;}
.h2_c00225{height:25.042969px;}
.h8_c00225{height:43.804688px;}
.h6_c00225{height:75.966797px;}
.h5_c00225{height:110.151855px;}
.h4_c00225{height:121.546875px;}
.h3_c00225{height:132.941895px;}
.h0_c00225{height:1382.700000px;}
.h1_c00225{height:1383.000000px;}
.w2_c00225{width:104.875500px;}
.w0_c00225{width:863.175000px;}
.w1_c00225{width:863.250000px;}
.x0_c00225{left:0.000000px;}
.x4_c00225{left:257.850000px;}
.x3_c00225{left:259.500000px;}
.x5_c00225{left:260.550000px;}
.x6_c00225{left:261.600000px;}
.x7_c00225{left:262.650000px;}
.x2_c00225{left:263.700000px;}
.x9_c00225{left:305.100000px;}
.x1_c00225{left:322.200000px;}
.xb_c00225{left:383.401749px;}
.xa_c00225{left:506.400000px;}
.x8_c00225{left:795.450000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls7_c00225{letter-spacing:-5.333333pt;}
.ls3_c00225{letter-spacing:-2.666667pt;}
.ls5_c00225{letter-spacing:0.000000pt;}
.ls6_c00225{letter-spacing:2.666667pt;}
.ls0_c00225{letter-spacing:3.584000pt;}
.ls8_c00225{letter-spacing:8.000000pt;}
.ls4_c00225{letter-spacing:10.666667pt;}
.ls2_c00225{letter-spacing:13.866667pt;}
.ls1_c00225{letter-spacing:23.733333pt;}
.ws2_c00225{word-spacing:-45.333333pt;}
.ws1_c00225{word-spacing:-28.661333pt;}
.ws3_c00225{word-spacing:-0.885333pt;}
.ws4_c00225{word-spacing:0.000000pt;}
.ws0_c00225{word-spacing:2.649600pt;}
._37_c00225{margin-left:-78.416000pt;}
._36_c00225{margin-left:-49.125333pt;}
._35_c00225{margin-left:-48.178667pt;}
._38_c00225{margin-left:-21.325333pt;}
._18_c00225{margin-left:-17.322667pt;}
._23_c00225{margin-left:-15.562667pt;}
._31_c00225{margin-left:-14.592000pt;}
._17_c00225{margin-left:-13.482667pt;}
._2f_c00225{margin-left:-11.008000pt;}
._5_c00225{margin-left:-9.813333pt;}
._32_c00225{margin-left:-8.789333pt;}
._4_c00225{margin-left:-7.253333pt;}
._28_c00225{margin-left:-5.866667pt;}
._10_c00225{margin-left:-4.480000pt;}
._2c_c00225{margin-left:-3.562667pt;}
._f_c00225{margin-left:-2.613333pt;}
._1f_c00225{margin-left:-1.440000pt;}
._d_c00225{width:1.706667pt;}
._a_c00225{width:2.954667pt;}
._8_c00225{width:4.181333pt;}
._9_c00225{width:5.376000pt;}
._0_c00225{width:6.826667pt;}
._14_c00225{width:7.818667pt;}
._2_c00225{width:8.736000pt;}
._13_c00225{width:9.642667pt;}
._7_c00225{width:11.349333pt;}
._3_c00225{width:12.469333pt;}
._c_c00225{width:13.738667pt;}
._b_c00225{width:14.794667pt;}
._6_c00225{width:15.786667pt;}
._15_c00225{width:17.216000pt;}
._1a_c00225{width:18.773333pt;}
._19_c00225{width:21.845333pt;}
._16_c00225{width:23.210667pt;}
._e_c00225{width:24.960000pt;}
._12_c00225{width:25.898667pt;}
._1b_c00225{width:27.053333pt;}
._1c_c00225{width:28.042667pt;}
._2d_c00225{width:30.048000pt;}
._11_c00225{width:31.826667pt;}
._21_c00225{width:33.024000pt;}
._1e_c00225{width:34.026667pt;}
._1d_c00225{width:36.128000pt;}
._22_c00225{width:37.504000pt;}
._2e_c00225{width:38.770667pt;}
._27_c00225{width:40.021333pt;}
._1_c00225{width:41.898667pt;}
._25_c00225{width:44.352000pt;}
._20_c00225{width:45.824000pt;}
._26_c00225{width:47.402667pt;}
._24_c00225{width:50.154667pt;}
._30_c00225{width:53.514667pt;}
._33_c00225{width:60.133333pt;}
._34_c00225{width:65.845333pt;}
._2b_c00225{width:71.658667pt;}
._2a_c00225{width:78.165333pt;}
._39_c00225{width:166.421333pt;}
._3a_c00225{width:193.661333pt;}
._3b_c00225{width:725.354667pt;}
._29_c00225{width:1232.629333pt;}
.fs1_c00225{font-size:17.066667pt;}
.fs0_c00225{font-size:21.333333pt;}
.fs9_c00225{font-size:42.666667pt;}
.fs8_c00225{font-size:53.333333pt;}
.fs7_c00225{font-size:69.333333pt;}
.fs2_c00225{font-size:74.666667pt;}
.fs6_c00225{font-size:77.333333pt;}
.fs3_c00225{font-size:85.333333pt;}
.fs5_c00225{font-size:90.666667pt;}
.fs4_c00225{font-size:93.333333pt;}
.y0_c00225{bottom:0.000000pt;}
.y24_c00225{bottom:2.760000pt;}
.y23_c00225{bottom:6.425206pt;}
.y22_c00225{bottom:72.026667pt;}
.y21_c00225{bottom:192.560000pt;}
.y20_c00225{bottom:202.826667pt;}
.y1f_c00225{bottom:235.893333pt;}
.y1e_c00225{bottom:287.493333pt;}
.y1d_c00225{bottom:318.560000pt;}
.y1c_c00225{bottom:348.693333pt;}
.y1b_c00225{bottom:378.560000pt;}
.y1a_c00225{bottom:408.560000pt;}
.y19_c00225{bottom:439.226667pt;}
.y18_c00225{bottom:469.226667pt;}
.y17_c00225{bottom:498.960000pt;}
.y16_c00225{bottom:529.493333pt;}
.y15_c00225{bottom:559.493333pt;}
.y14_c00225{bottom:588.560000pt;}
.y13_c00225{bottom:619.226667pt;}
.y12_c00225{bottom:649.226667pt;}
.y11_c00225{bottom:678.960000pt;}
.y10_c00225{bottom:708.693333pt;}
.yf_c00225{bottom:738.693333pt;}
.ye_c00225{bottom:768.960000pt;}
.yd_c00225{bottom:798.026667pt;}
.yc_c00225{bottom:828.026667pt;}
.yb_c00225{bottom:857.760000pt;}
.ya_c00225{bottom:886.293333pt;}
.y9_c00225{bottom:917.093333pt;}
.y8_c00225{bottom:946.826667pt;}
.y7_c00225{bottom:976.293333pt;}
.y6_c00225{bottom:1006.293333pt;}
.y5_c00225{bottom:1035.893333pt;}
.y4_c00225{bottom:1065.360000pt;}
.y3_c00225{bottom:1095.360000pt;}
.y2_c00225{bottom:1124.960000pt;}
.y1_c00225{bottom:1152.026667pt;}
.h7_c00225{height:11.733399pt;}
.h2_c00225{height:22.260417pt;}
.h8_c00225{height:38.937500pt;}
.h6_c00225{height:67.526042pt;}
.h5_c00225{height:97.912760pt;}
.h4_c00225{height:108.041667pt;}
.h3_c00225{height:118.170573pt;}
.h0_c00225{height:1229.066667pt;}
.h1_c00225{height:1229.333333pt;}
.w2_c00225{width:93.222667pt;}
.w0_c00225{width:767.266667pt;}
.w1_c00225{width:767.333333pt;}
.x0_c00225{left:0.000000pt;}
.x4_c00225{left:229.200000pt;}
.x3_c00225{left:230.666667pt;}
.x5_c00225{left:231.600000pt;}
.x6_c00225{left:232.533333pt;}
.x7_c00225{left:233.466667pt;}
.x2_c00225{left:234.400000pt;}
.x9_c00225{left:271.200000pt;}
.x1_c00225{left:286.400000pt;}
.xb_c00225{left:340.801554pt;}
.xa_c00225{left:450.133333pt;}
.x8_c00225{left:707.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2ece258910c957dae054a15.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;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_c00226;src:url('chunks/assets/font_e8ca32dd6ba4516480a0a5ec.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_3e723be272839c5dbb56da15.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_1751159d65568eede589fe2c.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls7_c00226{letter-spacing:-21.000000px;}
.ls5_c00226{letter-spacing:-3.000000px;}
.ls6_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:0.072000px;}
.ls1_c00226{letter-spacing:4.848000px;}
.ls3_c00226{letter-spacing:12.000000px;}
.ls4_c00226{letter-spacing:17.064000px;}
.ls2_c00226{letter-spacing:23.652000px;}
.ls8_c00226{letter-spacing:63.000000px;}
.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;}
}
.ws2_c00226{word-spacing:-86.136000px;}
.ws1_c00226{word-spacing:-75.504000px;}
.ws3_c00226{word-spacing:-23.136000px;}
.ws0_c00226{word-spacing:-19.500000px;}
.ws4_c00226{word-spacing:0.000000px;}
._3d_c00226{margin-left:-61.824000px;}
._3e_c00226{margin-left:-60.600000px;}
._3c_c00226{margin-left:-55.392000px;}
._41_c00226{margin-left:-35.076000px;}
._42_c00226{margin-left:-26.814000px;}
._a_c00226{margin-left:-19.278000px;}
._39_c00226{margin-left:-16.596000px;}
._12_c00226{margin-left:-15.582000px;}
._23_c00226{margin-left:-14.208000px;}
._1a_c00226{margin-left:-12.864000px;}
._3f_c00226{margin-left:-11.346000px;}
._18_c00226{margin-left:-9.936000px;}
._d_c00226{margin-left:-8.352000px;}
._34_c00226{margin-left:-6.174000px;}
._e_c00226{margin-left:-4.896000px;}
._11_c00226{margin-left:-3.522000px;}
._13_c00226{margin-left:-2.472000px;}
._25_c00226{margin-left:-1.248000px;}
._9_c00226{width:1.620000px;}
._10_c00226{width:3.240000px;}
._2_c00226{width:4.536000px;}
._20_c00226{width:5.556000px;}
._1d_c00226{width:6.690000px;}
._1_c00226{width:7.776000px;}
._32_c00226{width:8.856000px;}
._0_c00226{width:9.882000px;}
._3_c00226{width:11.178000px;}
._14_c00226{width:13.284000px;}
._1c_c00226{width:14.424000px;}
._f_c00226{width:15.984000px;}
._5_c00226{width:17.496000px;}
._21_c00226{width:18.906000px;}
._26_c00226{width:20.988000px;}
._7_c00226{width:23.166000px;}
._2a_c00226{width:24.240000px;}
._c_c00226{width:25.602000px;}
._6_c00226{width:27.378000px;}
._28_c00226{width:29.586000px;}
._30_c00226{width:30.930000px;}
._27_c00226{width:32.256000px;}
._16_c00226{width:34.092000px;}
._2e_c00226{width:35.166000px;}
._35_c00226{width:37.110000px;}
._37_c00226{width:38.178000px;}
._17_c00226{width:39.474000px;}
._1e_c00226{width:40.704000px;}
._22_c00226{width:43.152000px;}
._2b_c00226{width:45.504000px;}
._1f_c00226{width:46.638000px;}
._2f_c00226{width:47.868000px;}
._3a_c00226{width:49.134000px;}
._8_c00226{width:51.840000px;}
._2c_c00226{width:53.988000px;}
._2d_c00226{width:56.010000px;}
._33_c00226{width:58.194000px;}
._29_c00226{width:59.484000px;}
._1b_c00226{width:78.174000px;}
._40_c00226{width:82.434000px;}
._4_c00226{width:87.318000px;}
._3b_c00226{width:89.910000px;}
._38_c00226{width:92.574000px;}
._b_c00226{width:121.338000px;}
._15_c00226{width:139.644000px;}
._31_c00226{width:183.840000px;}
._19_c00226{width:337.680000px;}
._36_c00226{width:367.878000px;}
._24_c00226{width:649.938000px;}
.fc2_c00226{color:transparent;}
.fc1_c00226{color:rgb(128,128,128);}
.fc0_c00226{color:rgb(0,0,0);}
.fs2_c00226{font-size:36.000000px;}
.fs6_c00226{font-size:48.000000px;}
.fs4_c00226{font-size:76.800000px;}
.fs5_c00226{font-size:84.000000px;}
.fs3_c00226{font-size:96.000000px;}
.fs1_c00226{font-size:144.000000px;}
.fs0_c00226{font-size:162.000000px;}
.y0_c00226{bottom:0.000000px;}
.y25_c00226{bottom:3.105000px;}
.y24_c00226{bottom:7.228369px;}
.y23_c00226{bottom:92.370000px;}
.y22_c00226{bottom:124.770000px;}
.y21_c00226{bottom:159.270000px;}
.y20_c00226{bottom:192.720000px;}
.y1f_c00226{bottom:227.370000px;}
.y1e_c00226{bottom:261.270000px;}
.y1d_c00226{bottom:295.320000px;}
.y1c_c00226{bottom:329.070000px;}
.y1b_c00226{bottom:361.770000px;}
.y1a_c00226{bottom:395.820000px;}
.y19_c00226{bottom:429.570000px;}
.y18_c00226{bottom:463.620000px;}
.y17_c00226{bottom:495.120000px;}
.y16_c00226{bottom:531.120000px;}
.y15_c00226{bottom:563.970000px;}
.y14_c00226{bottom:596.970000px;}
.y13_c00226{bottom:629.820000px;}
.y12_c00226{bottom:661.770000px;}
.y11_c00226{bottom:696.270000px;}
.y10_c00226{bottom:730.020000px;}
.yf_c00226{bottom:763.770000px;}
.ye_c00226{bottom:797.220000px;}
.yd_c00226{bottom:829.920000px;}
.yc_c00226{bottom:863.370000px;}
.yb_c00226{bottom:896.070000px;}
.ya_c00226{bottom:930.120000px;}
.y9_c00226{bottom:962.820000px;}
.y8_c00226{bottom:996.870000px;}
.y7_c00226{bottom:1030.770000px;}
.y6_c00226{bottom:1064.070000px;}
.y5_c00226{bottom:1094.520000px;}
.y4_c00226{bottom:1155.570000px;}
.y3_c00226{bottom:1195.020000px;}
.y2_c00226{bottom:1204.470000px;}
.y1_c00226{bottom:1257.570000px;}
.h6_c00226{height:13.200073px;}
.h7_c00226{height:43.804688px;}
.h4_c00226{height:45.580078px;}
.h5_c00226{height:121.546875px;}
.h2_c00226{height:158.994141px;}
.h3_c00226{height:182.320312px;}
.h0_c00226{height:1383.450000px;}
.h1_c00226{height:1383.750000px;}
.w2_c00226{width:104.875500px;}
.w0_c00226{width:878.025000px;}
.w1_c00226{width:878.250000px;}
.x0_c00226{left:0.000000px;}
.x10_c00226{left:61.800000px;}
.xf_c00226{left:63.000000px;}
.xe_c00226{left:64.500000px;}
.xd_c00226{left:66.150000px;}
.xb_c00226{left:67.200000px;}
.xa_c00226{left:69.450000px;}
.x9_c00226{left:70.500000px;}
.x1_c00226{left:96.600000px;}
.x2_c00226{left:105.300000px;}
.x8_c00226{left:109.950000px;}
.xc_c00226{left:119.700000px;}
.x6_c00226{left:122.250000px;}
.x7_c00226{left:263.850000px;}
.x4_c00226{left:296.700000px;}
.x3_c00226{left:300.750000px;}
.x12_c00226{left:390.826721px;}
.x5_c00226{left:549.900000px;}
.x11_c00226{left:613.800000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls7_c00226{letter-spacing:-18.666667pt;}
.ls5_c00226{letter-spacing:-2.666667pt;}
.ls6_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:0.064000pt;}
.ls1_c00226{letter-spacing:4.309333pt;}
.ls3_c00226{letter-spacing:10.666667pt;}
.ls4_c00226{letter-spacing:15.168000pt;}
.ls2_c00226{letter-spacing:21.024000pt;}
.ls8_c00226{letter-spacing:56.000000pt;}
.ws2_c00226{word-spacing:-76.565333pt;}
.ws1_c00226{word-spacing:-67.114667pt;}
.ws3_c00226{word-spacing:-20.565333pt;}
.ws0_c00226{word-spacing:-17.333333pt;}
.ws4_c00226{word-spacing:0.000000pt;}
._3d_c00226{margin-left:-54.954667pt;}
._3e_c00226{margin-left:-53.866667pt;}
._3c_c00226{margin-left:-49.237333pt;}
._41_c00226{margin-left:-31.178667pt;}
._42_c00226{margin-left:-23.834667pt;}
._a_c00226{margin-left:-17.136000pt;}
._39_c00226{margin-left:-14.752000pt;}
._12_c00226{margin-left:-13.850667pt;}
._23_c00226{margin-left:-12.629333pt;}
._1a_c00226{margin-left:-11.434667pt;}
._3f_c00226{margin-left:-10.085333pt;}
._18_c00226{margin-left:-8.832000pt;}
._d_c00226{margin-left:-7.424000pt;}
._34_c00226{margin-left:-5.488000pt;}
._e_c00226{margin-left:-4.352000pt;}
._11_c00226{margin-left:-3.130667pt;}
._13_c00226{margin-left:-2.197333pt;}
._25_c00226{margin-left:-1.109333pt;}
._9_c00226{width:1.440000pt;}
._10_c00226{width:2.880000pt;}
._2_c00226{width:4.032000pt;}
._20_c00226{width:4.938667pt;}
._1d_c00226{width:5.946667pt;}
._1_c00226{width:6.912000pt;}
._32_c00226{width:7.872000pt;}
._0_c00226{width:8.784000pt;}
._3_c00226{width:9.936000pt;}
._14_c00226{width:11.808000pt;}
._1c_c00226{width:12.821333pt;}
._f_c00226{width:14.208000pt;}
._5_c00226{width:15.552000pt;}
._21_c00226{width:16.805333pt;}
._26_c00226{width:18.656000pt;}
._7_c00226{width:20.592000pt;}
._2a_c00226{width:21.546667pt;}
._c_c00226{width:22.757333pt;}
._6_c00226{width:24.336000pt;}
._28_c00226{width:26.298667pt;}
._30_c00226{width:27.493333pt;}
._27_c00226{width:28.672000pt;}
._16_c00226{width:30.304000pt;}
._2e_c00226{width:31.258667pt;}
._35_c00226{width:32.986667pt;}
._37_c00226{width:33.936000pt;}
._17_c00226{width:35.088000pt;}
._1e_c00226{width:36.181333pt;}
._22_c00226{width:38.357333pt;}
._2b_c00226{width:40.448000pt;}
._1f_c00226{width:41.456000pt;}
._2f_c00226{width:42.549333pt;}
._3a_c00226{width:43.674667pt;}
._8_c00226{width:46.080000pt;}
._2c_c00226{width:47.989333pt;}
._2d_c00226{width:49.786667pt;}
._33_c00226{width:51.728000pt;}
._29_c00226{width:52.874667pt;}
._1b_c00226{width:69.488000pt;}
._40_c00226{width:73.274667pt;}
._4_c00226{width:77.616000pt;}
._3b_c00226{width:79.920000pt;}
._38_c00226{width:82.288000pt;}
._b_c00226{width:107.856000pt;}
._15_c00226{width:124.128000pt;}
._31_c00226{width:163.413333pt;}
._19_c00226{width:300.160000pt;}
._36_c00226{width:327.002667pt;}
._24_c00226{width:577.722667pt;}
.fs2_c00226{font-size:32.000000pt;}
.fs6_c00226{font-size:42.666667pt;}
.fs4_c00226{font-size:68.266667pt;}
.fs5_c00226{font-size:74.666667pt;}
.fs3_c00226{font-size:85.333333pt;}
.fs1_c00226{font-size:128.000000pt;}
.fs0_c00226{font-size:144.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y25_c00226{bottom:2.760000pt;}
.y24_c00226{bottom:6.425217pt;}
.y23_c00226{bottom:82.106667pt;}
.y22_c00226{bottom:110.906667pt;}
.y21_c00226{bottom:141.573333pt;}
.y20_c00226{bottom:171.306667pt;}
.y1f_c00226{bottom:202.106667pt;}
.y1e_c00226{bottom:232.240000pt;}
.y1d_c00226{bottom:262.506667pt;}
.y1c_c00226{bottom:292.506667pt;}
.y1b_c00226{bottom:321.573333pt;}
.y1a_c00226{bottom:351.840000pt;}
.y19_c00226{bottom:381.840000pt;}
.y18_c00226{bottom:412.106667pt;}
.y17_c00226{bottom:440.106667pt;}
.y16_c00226{bottom:472.106667pt;}
.y15_c00226{bottom:501.306667pt;}
.y14_c00226{bottom:530.640000pt;}
.y13_c00226{bottom:559.840000pt;}
.y12_c00226{bottom:588.240000pt;}
.y11_c00226{bottom:618.906667pt;}
.y10_c00226{bottom:648.906667pt;}
.yf_c00226{bottom:678.906667pt;}
.ye_c00226{bottom:708.640000pt;}
.yd_c00226{bottom:737.706667pt;}
.yc_c00226{bottom:767.440000pt;}
.yb_c00226{bottom:796.506667pt;}
.ya_c00226{bottom:826.773333pt;}
.y9_c00226{bottom:855.840000pt;}
.y8_c00226{bottom:886.106667pt;}
.y7_c00226{bottom:916.240000pt;}
.y6_c00226{bottom:945.840000pt;}
.y5_c00226{bottom:972.906667pt;}
.y4_c00226{bottom:1027.173333pt;}
.y3_c00226{bottom:1062.240000pt;}
.y2_c00226{bottom:1070.640000pt;}
.y1_c00226{bottom:1117.840000pt;}
.h6_c00226{height:11.733399pt;}
.h7_c00226{height:38.937500pt;}
.h4_c00226{height:40.515625pt;}
.h5_c00226{height:108.041667pt;}
.h2_c00226{height:141.328125pt;}
.h3_c00226{height:162.062500pt;}
.h0_c00226{height:1229.733333pt;}
.h1_c00226{height:1230.000000pt;}
.w2_c00226{width:93.222667pt;}
.w0_c00226{width:780.466667pt;}
.w1_c00226{width:780.666667pt;}
.x0_c00226{left:0.000000pt;}
.x10_c00226{left:54.933333pt;}
.xf_c00226{left:56.000000pt;}
.xe_c00226{left:57.333333pt;}
.xd_c00226{left:58.800000pt;}
.xb_c00226{left:59.733333pt;}
.xa_c00226{left:61.733333pt;}
.x9_c00226{left:62.666667pt;}
.x1_c00226{left:85.866667pt;}
.x2_c00226{left:93.600000pt;}
.x8_c00226{left:97.733333pt;}
.xc_c00226{left:106.400000pt;}
.x6_c00226{left:108.666667pt;}
.x7_c00226{left:234.533333pt;}
.x4_c00226{left:263.733333pt;}
.x3_c00226{left:267.333333pt;}
.x12_c00226{left:347.401530pt;}
.x5_c00226{left:488.800000pt;}
.x11_c00226{left:545.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_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_d2d4d7e49958f4548e8f712b.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_d4ab21063f77bd6bfc3260a4.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls2_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:8.052000px;}
.ls1_c00227{letter-spacing:10.452000px;}
.ls4_c00227{letter-spacing:12.000000px;}
.ls5_c00227{letter-spacing:18.000000px;}
.ls3_c00227{letter-spacing:51.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00227{word-spacing:-75.504000px;}
.ws0_c00227{word-spacing:-58.230000px;}
.ws3_c00227{word-spacing:-51.000000px;}
.ws4_c00227{word-spacing:-44.436000px;}
.ws5_c00227{word-spacing:-41.136000px;}
.ws1_c00227{word-spacing:-23.136000px;}
.ws6_c00227{word-spacing:0.000000px;}
._3c_c00227{margin-left:-79.872000px;}
._1d_c00227{margin-left:-35.184000px;}
._4_c00227{margin-left:-31.800000px;}
._31_c00227{margin-left:-29.712000px;}
._1e_c00227{margin-left:-26.304000px;}
._6_c00227{margin-left:-18.816000px;}
._34_c00227{margin-left:-15.984000px;}
._22_c00227{margin-left:-13.680000px;}
._5_c00227{margin-left:-11.328000px;}
._e_c00227{margin-left:-9.216000px;}
._0_c00227{margin-left:-7.968000px;}
._d_c00227{margin-left:-5.376000px;}
._1_c00227{margin-left:-3.456000px;}
._3_c00227{margin-left:-2.208000px;}
._16_c00227{margin-left:-1.152000px;}
._7_c00227{width:1.920000px;}
._c_c00227{width:3.456000px;}
._a_c00227{width:4.512000px;}
._12_c00227{width:5.616000px;}
._9_c00227{width:7.104000px;}
._b_c00227{width:8.256000px;}
._1a_c00227{width:9.312000px;}
._13_c00227{width:10.368000px;}
._23_c00227{width:11.616000px;}
._15_c00227{width:12.624000px;}
._29_c00227{width:13.680000px;}
._2_c00227{width:14.688000px;}
._2d_c00227{width:16.032000px;}
._1f_c00227{width:17.232000px;}
._10_c00227{width:19.200000px;}
._1c_c00227{width:21.312000px;}
._24_c00227{width:24.384000px;}
._28_c00227{width:26.256000px;}
._14_c00227{width:27.744000px;}
._f_c00227{width:29.088000px;}
._2b_c00227{width:30.336000px;}
._17_c00227{width:32.160000px;}
._2e_c00227{width:33.600000px;}
._26_c00227{width:35.040000px;}
._30_c00227{width:36.144000px;}
._27_c00227{width:37.152000px;}
._1b_c00227{width:38.352000px;}
._32_c00227{width:39.504000px;}
._8_c00227{width:40.800000px;}
._2f_c00227{width:42.144000px;}
._20_c00227{width:43.392000px;}
._18_c00227{width:44.736000px;}
._40_c00227{width:45.744000px;}
._25_c00227{width:48.000000px;}
._2a_c00227{width:49.248000px;}
._33_c00227{width:51.312000px;}
._19_c00227{width:56.256000px;}
._3a_c00227{width:58.752000px;}
._39_c00227{width:60.240000px;}
._11_c00227{width:62.688000px;}
._2c_c00227{width:64.560000px;}
._37_c00227{width:67.536000px;}
._38_c00227{width:68.640000px;}
._3b_c00227{width:95.520000px;}
._36_c00227{width:122.304000px;}
._3f_c00227{width:181.824000px;}
._21_c00227{width:187.776000px;}
._35_c00227{width:213.600000px;}
._3e_c00227{width:243.552000px;}
._3d_c00227{width:942.624000px;}
._41_c00227{width:2158.896000px;}
.fc2_c00227{color:transparent;}
.fc1_c00227{color:rgb(128,128,128);}
.fc0_c00227{color:rgb(0,0,0);}
.fs1_c00227{font-size:30.000000px;}
.fs4_c00227{font-size:48.000000px;}
.fs2_c00227{font-size:84.000000px;}
.fs0_c00227{font-size:96.000000px;}
.fs3_c00227{font-size:102.000000px;}
.y0_c00227{bottom:0.000000px;}
.y2f_c00227{bottom:3.105000px;}
.y2e_c00227{bottom:7.228355px;}
.y2d_c00227{bottom:71.835000px;}
.y2c_c00227{bottom:103.185000px;}
.y2b_c00227{bottom:137.235000px;}
.y2a_c00227{bottom:171.435000px;}
.y9_c00227{bottom:193.935000px;}
.y29_c00227{bottom:205.185000px;}
.y8_c00227{bottom:224.385000px;}
.y28_c00227{bottom:239.835000px;}
.y27_c00227{bottom:273.735000px;}
.y26_c00227{bottom:308.685000px;}
.y25_c00227{bottom:342.885000px;}
.y24_c00227{bottom:376.635000px;}
.y23_c00227{bottom:410.985000px;}
.y22_c00227{bottom:444.885000px;}
.y21_c00227{bottom:478.785000px;}
.y7_c00227{bottom:489.585000px;}
.y20_c00227{bottom:512.685000px;}
.y6_c00227{bottom:520.335000px;}
.y1f_c00227{bottom:545.685000px;}
.y1e_c00227{bottom:581.085000px;}
.y1d_c00227{bottom:614.235000px;}
.y1c_c00227{bottom:647.685000px;}
.y1b_c00227{bottom:681.735000px;}
.y1a_c00227{bottom:715.035000px;}
.y19_c00227{bottom:748.935000px;}
.y18_c00227{bottom:782.535000px;}
.y17_c00227{bottom:816.285000px;}
.y16_c00227{bottom:849.735000px;}
.y15_c00227{bottom:883.185000px;}
.y14_c00227{bottom:916.335000px;}
.y13_c00227{bottom:949.935000px;}
.y12_c00227{bottom:983.085000px;}
.y11_c00227{bottom:1016.535000px;}
.y4_c00227{bottom:1029.285000px;}
.y10_c00227{bottom:1050.285000px;}
.y3_c00227{bottom:1060.635000px;}
.yf_c00227{bottom:1083.285000px;}
.y2_c00227{bottom:1084.335000px;}
.y5_c00227{bottom:1087.635000px;}
.y1_c00227{bottom:1116.135000px;}
.ye_c00227{bottom:1117.035000px;}
.yd_c00227{bottom:1148.535000px;}
.yc_c00227{bottom:1183.185000px;}
.yb_c00227{bottom:1217.685000px;}
.ya_c00227{bottom:1249.785000px;}
.h4_c00227{height:13.200074px;}
.h3_c00227{height:37.983398px;}
.h5_c00227{height:43.804688px;}
.h2_c00227{height:121.546875px;}
.h1_c00227{height:1366.500000px;}
.h0_c00227{height:1366.725000px;}
.w2_c00227{width:104.875500px;}
.w0_c00227{width:852.675000px;}
.w1_c00227{width:852.750000px;}
.x0_c00227{left:0.000000px;}
.x6_c00227{left:53.700000px;}
.x5_c00227{left:59.700000px;}
.x2_c00227{left:118.500000px;}
.x8_c00227{left:122.850000px;}
.x7_c00227{left:125.550000px;}
.x1_c00227{left:136.950000px;}
.x3_c00227{left:141.300000px;}
.x4_c00227{left:164.400000px;}
.x11_c00227{left:232.500000px;}
.x12_c00227{left:233.550000px;}
.x10_c00227{left:235.650000px;}
.xa_c00227{left:236.850000px;}
.x9_c00227{left:237.900000px;}
.xc_c00227{left:239.400000px;}
.xe_c00227{left:241.200000px;}
.xb_c00227{left:288.600000px;}
.xd_c00227{left:291.300000px;}
.xf_c00227{left:293.550000px;}
.x13_c00227{left:378.151749px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls2_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:7.157333pt;}
.ls1_c00227{letter-spacing:9.290667pt;}
.ls4_c00227{letter-spacing:10.666667pt;}
.ls5_c00227{letter-spacing:16.000000pt;}
.ls3_c00227{letter-spacing:45.333333pt;}
.ws2_c00227{word-spacing:-67.114667pt;}
.ws0_c00227{word-spacing:-51.760000pt;}
.ws3_c00227{word-spacing:-45.333333pt;}
.ws4_c00227{word-spacing:-39.498667pt;}
.ws5_c00227{word-spacing:-36.565333pt;}
.ws1_c00227{word-spacing:-20.565333pt;}
.ws6_c00227{word-spacing:0.000000pt;}
._3c_c00227{margin-left:-70.997333pt;}
._1d_c00227{margin-left:-31.274667pt;}
._4_c00227{margin-left:-28.266667pt;}
._31_c00227{margin-left:-26.410667pt;}
._1e_c00227{margin-left:-23.381333pt;}
._6_c00227{margin-left:-16.725333pt;}
._34_c00227{margin-left:-14.208000pt;}
._22_c00227{margin-left:-12.160000pt;}
._5_c00227{margin-left:-10.069333pt;}
._e_c00227{margin-left:-8.192000pt;}
._0_c00227{margin-left:-7.082667pt;}
._d_c00227{margin-left:-4.778667pt;}
._1_c00227{margin-left:-3.072000pt;}
._3_c00227{margin-left:-1.962667pt;}
._16_c00227{margin-left:-1.024000pt;}
._7_c00227{width:1.706667pt;}
._c_c00227{width:3.072000pt;}
._a_c00227{width:4.010667pt;}
._12_c00227{width:4.992000pt;}
._9_c00227{width:6.314667pt;}
._b_c00227{width:7.338667pt;}
._1a_c00227{width:8.277333pt;}
._13_c00227{width:9.216000pt;}
._23_c00227{width:10.325333pt;}
._15_c00227{width:11.221333pt;}
._29_c00227{width:12.160000pt;}
._2_c00227{width:13.056000pt;}
._2d_c00227{width:14.250667pt;}
._1f_c00227{width:15.317333pt;}
._10_c00227{width:17.066667pt;}
._1c_c00227{width:18.944000pt;}
._24_c00227{width:21.674667pt;}
._28_c00227{width:23.338667pt;}
._14_c00227{width:24.661333pt;}
._f_c00227{width:25.856000pt;}
._2b_c00227{width:26.965333pt;}
._17_c00227{width:28.586667pt;}
._2e_c00227{width:29.866667pt;}
._26_c00227{width:31.146667pt;}
._30_c00227{width:32.128000pt;}
._27_c00227{width:33.024000pt;}
._1b_c00227{width:34.090667pt;}
._32_c00227{width:35.114667pt;}
._8_c00227{width:36.266667pt;}
._2f_c00227{width:37.461333pt;}
._20_c00227{width:38.570667pt;}
._18_c00227{width:39.765333pt;}
._40_c00227{width:40.661333pt;}
._25_c00227{width:42.666667pt;}
._2a_c00227{width:43.776000pt;}
._33_c00227{width:45.610667pt;}
._19_c00227{width:50.005333pt;}
._3a_c00227{width:52.224000pt;}
._39_c00227{width:53.546667pt;}
._11_c00227{width:55.722667pt;}
._2c_c00227{width:57.386667pt;}
._37_c00227{width:60.032000pt;}
._38_c00227{width:61.013333pt;}
._3b_c00227{width:84.906667pt;}
._36_c00227{width:108.714667pt;}
._3f_c00227{width:161.621333pt;}
._21_c00227{width:166.912000pt;}
._35_c00227{width:189.866667pt;}
._3e_c00227{width:216.490667pt;}
._3d_c00227{width:837.888000pt;}
._41_c00227{width:1919.018667pt;}
.fs1_c00227{font-size:26.666667pt;}
.fs4_c00227{font-size:42.666667pt;}
.fs2_c00227{font-size:74.666667pt;}
.fs0_c00227{font-size:85.333333pt;}
.fs3_c00227{font-size:90.666667pt;}
.y0_c00227{bottom:0.000000pt;}
.y2f_c00227{bottom:2.760000pt;}
.y2e_c00227{bottom:6.425204pt;}
.y2d_c00227{bottom:63.853333pt;}
.y2c_c00227{bottom:91.720000pt;}
.y2b_c00227{bottom:121.986667pt;}
.y2a_c00227{bottom:152.386667pt;}
.y9_c00227{bottom:172.386667pt;}
.y29_c00227{bottom:182.386667pt;}
.y8_c00227{bottom:199.453333pt;}
.y28_c00227{bottom:213.186667pt;}
.y27_c00227{bottom:243.320000pt;}
.y26_c00227{bottom:274.386667pt;}
.y25_c00227{bottom:304.786667pt;}
.y24_c00227{bottom:334.786667pt;}
.y23_c00227{bottom:365.320000pt;}
.y22_c00227{bottom:395.453333pt;}
.y21_c00227{bottom:425.586667pt;}
.y7_c00227{bottom:435.186667pt;}
.y20_c00227{bottom:455.720000pt;}
.y6_c00227{bottom:462.520000pt;}
.y1f_c00227{bottom:485.053333pt;}
.y1e_c00227{bottom:516.520000pt;}
.y1d_c00227{bottom:545.986667pt;}
.y1c_c00227{bottom:575.720000pt;}
.y1b_c00227{bottom:605.986667pt;}
.y1a_c00227{bottom:635.586667pt;}
.y19_c00227{bottom:665.720000pt;}
.y18_c00227{bottom:695.586667pt;}
.y17_c00227{bottom:725.586667pt;}
.y16_c00227{bottom:755.320000pt;}
.y15_c00227{bottom:785.053333pt;}
.y14_c00227{bottom:814.520000pt;}
.y13_c00227{bottom:844.386667pt;}
.y12_c00227{bottom:873.853333pt;}
.y11_c00227{bottom:903.586667pt;}
.y4_c00227{bottom:914.920000pt;}
.y10_c00227{bottom:933.586667pt;}
.y3_c00227{bottom:942.786667pt;}
.yf_c00227{bottom:962.920000pt;}
.y2_c00227{bottom:963.853333pt;}
.y5_c00227{bottom:966.786667pt;}
.y1_c00227{bottom:992.120000pt;}
.ye_c00227{bottom:992.920000pt;}
.yd_c00227{bottom:1020.920000pt;}
.yc_c00227{bottom:1051.720000pt;}
.yb_c00227{bottom:1082.386667pt;}
.ya_c00227{bottom:1110.920000pt;}
.h4_c00227{height:11.733399pt;}
.h3_c00227{height:33.763021pt;}
.h5_c00227{height:38.937500pt;}
.h2_c00227{height:108.041667pt;}
.h1_c00227{height:1214.666667pt;}
.h0_c00227{height:1214.866667pt;}
.w2_c00227{width:93.222667pt;}
.w0_c00227{width:757.933333pt;}
.w1_c00227{width:758.000000pt;}
.x0_c00227{left:0.000000pt;}
.x6_c00227{left:47.733333pt;}
.x5_c00227{left:53.066667pt;}
.x2_c00227{left:105.333333pt;}
.x8_c00227{left:109.200000pt;}
.x7_c00227{left:111.600000pt;}
.x1_c00227{left:121.733333pt;}
.x3_c00227{left:125.600000pt;}
.x4_c00227{left:146.133333pt;}
.x11_c00227{left:206.666667pt;}
.x12_c00227{left:207.600000pt;}
.x10_c00227{left:209.466667pt;}
.xa_c00227{left:210.533333pt;}
.x9_c00227{left:211.466667pt;}
.xc_c00227{left:212.800000pt;}
.xe_c00227{left:214.400000pt;}
.xb_c00227{left:256.533333pt;}
.xd_c00227{left:258.933333pt;}
.xf_c00227{left:260.933333pt;}
.x13_c00227{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f24873ed4ff4fffd8d7d9c8.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_fc25aa62f3168b590d378172.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_b41b6a2a33d395215b3f5ad2.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_1e38ce9a32669fe862da338a.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00228{word-spacing:-55.044000px;}
.ws0_c00228{word-spacing:-51.000000px;}
.ws2_c00228{word-spacing:0.000000px;}
._30_c00228{margin-left:-30.282000px;}
._31_c00228{margin-left:-22.227000px;}
._9_c00228{margin-left:-18.624000px;}
._2f_c00228{margin-left:-15.024000px;}
._2c_c00228{margin-left:-13.440000px;}
._2d_c00228{margin-left:-11.808000px;}
._34_c00228{margin-left:-10.560000px;}
._2e_c00228{margin-left:-8.640000px;}
._1e_c00228{margin-left:-6.240000px;}
._32_c00228{margin-left:-5.184000px;}
._d_c00228{margin-left:-3.360000px;}
._2_c00228{margin-left:-2.208000px;}
._1b_c00228{margin-left:-1.152000px;}
._1_c00228{width:1.152000px;}
._8_c00228{width:2.784000px;}
._5_c00228{width:3.936000px;}
._0_c00228{width:5.952000px;}
._12_c00228{width:7.008000px;}
._4_c00228{width:8.352000px;}
._18_c00228{width:9.984000px;}
._17_c00228{width:11.424000px;}
._c_c00228{width:12.576000px;}
._13_c00228{width:14.688000px;}
._6_c00228{width:16.608000px;}
._24_c00228{width:17.664000px;}
._a_c00228{width:18.912000px;}
._3_c00228{width:20.544000px;}
._b_c00228{width:21.600000px;}
._1a_c00228{width:24.192000px;}
._10_c00228{width:25.632000px;}
._f_c00228{width:27.744000px;}
._1f_c00228{width:29.376000px;}
._7_c00228{width:30.528000px;}
._15_c00228{width:32.064000px;}
._14_c00228{width:34.176000px;}
._28_c00228{width:36.192000px;}
._2b_c00228{width:37.248000px;}
._e_c00228{width:38.400000px;}
._11_c00228{width:40.224000px;}
._20_c00228{width:41.376000px;}
._16_c00228{width:43.008000px;}
._27_c00228{width:44.640000px;}
._1c_c00228{width:47.328000px;}
._1d_c00228{width:49.056000px;}
._19_c00228{width:50.592000px;}
._22_c00228{width:52.224000px;}
._21_c00228{width:55.968000px;}
._33_c00228{width:60.864000px;}
._23_c00228{width:62.016000px;}
._29_c00228{width:66.816000px;}
._26_c00228{width:69.312000px;}
._2a_c00228{width:75.744000px;}
._25_c00228{width:86.880000px;}
._36_c00228{width:293.088000px;}
._35_c00228{width:484.992000px;}
._37_c00228{width:822.816000px;}
.fc2_c00228{color:transparent;}
.fc1_c00228{color:rgb(128,128,128);}
.fc0_c00228{color:rgb(0,0,0);}
.fs4_c00228{font-size:48.000000px;}
.fs2_c00228{font-size:84.000000px;}
.fs0_c00228{font-size:96.000000px;}
.fs3_c00228{font-size:99.000000px;}
.fs1_c00228{font-size:102.000000px;}
.y0_c00228{bottom:0.000000px;}
.y26_c00228{bottom:3.105000px;}
.y25_c00228{bottom:7.228369px;}
.y24_c00228{bottom:96.120000px;}
.y23_c00228{bottom:130.920000px;}
.y22_c00228{bottom:164.670000px;}
.y21_c00228{bottom:198.420000px;}
.y20_c00228{bottom:232.920000px;}
.y1f_c00228{bottom:266.970000px;}
.y1e_c00228{bottom:300.720000px;}
.y1d_c00228{bottom:334.470000px;}
.y1c_c00228{bottom:368.520000px;}
.y1b_c00228{bottom:402.270000px;}
.y1a_c00228{bottom:435.720000px;}
.y19_c00228{bottom:468.720000px;}
.y18_c00228{bottom:502.770000px;}
.y17_c00228{bottom:535.920000px;}
.y16_c00228{bottom:569.070000px;}
.y15_c00228{bottom:602.820000px;}
.y14_c00228{bottom:635.820000px;}
.y13_c00228{bottom:668.820000px;}
.y12_c00228{bottom:701.970000px;}
.y11_c00228{bottom:736.020000px;}
.y10_c00228{bottom:769.470000px;}
.yf_c00228{bottom:802.920000px;}
.ye_c00228{bottom:835.620000px;}
.yd_c00228{bottom:869.070000px;}
.yc_c00228{bottom:902.370000px;}
.yb_c00228{bottom:935.220000px;}
.ya_c00228{bottom:969.270000px;}
.y9_c00228{bottom:1002.420000px;}
.y8_c00228{bottom:1035.720000px;}
.y7_c00228{bottom:1069.170000px;}
.y6_c00228{bottom:1102.620000px;}
.y5_c00228{bottom:1135.620000px;}
.y4_c00228{bottom:1168.770000px;}
.y3_c00228{bottom:1202.520000px;}
.y2_c00228{bottom:1235.820000px;}
.y1_c00228{bottom:1269.270000px;}
.h3_c00228{height:13.200073px;}
.h4_c00228{height:43.804688px;}
.h2_c00228{height:121.546875px;}
.h0_c00228{height:1383.450000px;}
.h1_c00228{height:1383.750000px;}
.w2_c00228{width:104.875500px;}
.w0_c00228{width:878.025000px;}
.w1_c00228{width:878.250000px;}
.x0_c00228{left:0.000000px;}
.x5_c00228{left:57.450000px;}
.x3_c00228{left:59.100000px;}
.x4_c00228{left:60.150000px;}
.x2_c00228{left:61.200000px;}
.x1_c00228{left:63.450000px;}
.x6_c00228{left:390.826721px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws1_c00228{word-spacing:-48.928000pt;}
.ws0_c00228{word-spacing:-45.333333pt;}
.ws2_c00228{word-spacing:0.000000pt;}
._30_c00228{margin-left:-26.917333pt;}
._31_c00228{margin-left:-19.757333pt;}
._9_c00228{margin-left:-16.554667pt;}
._2f_c00228{margin-left:-13.354667pt;}
._2c_c00228{margin-left:-11.946667pt;}
._2d_c00228{margin-left:-10.496000pt;}
._34_c00228{margin-left:-9.386667pt;}
._2e_c00228{margin-left:-7.680000pt;}
._1e_c00228{margin-left:-5.546667pt;}
._32_c00228{margin-left:-4.608000pt;}
._d_c00228{margin-left:-2.986667pt;}
._2_c00228{margin-left:-1.962667pt;}
._1b_c00228{margin-left:-1.024000pt;}
._1_c00228{width:1.024000pt;}
._8_c00228{width:2.474667pt;}
._5_c00228{width:3.498667pt;}
._0_c00228{width:5.290667pt;}
._12_c00228{width:6.229333pt;}
._4_c00228{width:7.424000pt;}
._18_c00228{width:8.874667pt;}
._17_c00228{width:10.154667pt;}
._c_c00228{width:11.178667pt;}
._13_c00228{width:13.056000pt;}
._6_c00228{width:14.762667pt;}
._24_c00228{width:15.701333pt;}
._a_c00228{width:16.810667pt;}
._3_c00228{width:18.261333pt;}
._b_c00228{width:19.200000pt;}
._1a_c00228{width:21.504000pt;}
._10_c00228{width:22.784000pt;}
._f_c00228{width:24.661333pt;}
._1f_c00228{width:26.112000pt;}
._7_c00228{width:27.136000pt;}
._15_c00228{width:28.501333pt;}
._14_c00228{width:30.378667pt;}
._28_c00228{width:32.170667pt;}
._2b_c00228{width:33.109333pt;}
._e_c00228{width:34.133333pt;}
._11_c00228{width:35.754667pt;}
._20_c00228{width:36.778667pt;}
._16_c00228{width:38.229333pt;}
._27_c00228{width:39.680000pt;}
._1c_c00228{width:42.069333pt;}
._1d_c00228{width:43.605333pt;}
._19_c00228{width:44.970667pt;}
._22_c00228{width:46.421333pt;}
._21_c00228{width:49.749333pt;}
._33_c00228{width:54.101333pt;}
._23_c00228{width:55.125333pt;}
._29_c00228{width:59.392000pt;}
._26_c00228{width:61.610667pt;}
._2a_c00228{width:67.328000pt;}
._25_c00228{width:77.226667pt;}
._36_c00228{width:260.522667pt;}
._35_c00228{width:431.104000pt;}
._37_c00228{width:731.392000pt;}
.fs4_c00228{font-size:42.666667pt;}
.fs2_c00228{font-size:74.666667pt;}
.fs0_c00228{font-size:85.333333pt;}
.fs3_c00228{font-size:88.000000pt;}
.fs1_c00228{font-size:90.666667pt;}
.y0_c00228{bottom:0.000000pt;}
.y26_c00228{bottom:2.760000pt;}
.y25_c00228{bottom:6.425217pt;}
.y24_c00228{bottom:85.440000pt;}
.y23_c00228{bottom:116.373333pt;}
.y22_c00228{bottom:146.373333pt;}
.y21_c00228{bottom:176.373333pt;}
.y20_c00228{bottom:207.040000pt;}
.y1f_c00228{bottom:237.306667pt;}
.y1e_c00228{bottom:267.306667pt;}
.y1d_c00228{bottom:297.306667pt;}
.y1c_c00228{bottom:327.573333pt;}
.y1b_c00228{bottom:357.573333pt;}
.y1a_c00228{bottom:387.306667pt;}
.y19_c00228{bottom:416.640000pt;}
.y18_c00228{bottom:446.906667pt;}
.y17_c00228{bottom:476.373333pt;}
.y16_c00228{bottom:505.840000pt;}
.y15_c00228{bottom:535.840000pt;}
.y14_c00228{bottom:565.173333pt;}
.y13_c00228{bottom:594.506667pt;}
.y12_c00228{bottom:623.973333pt;}
.y11_c00228{bottom:654.240000pt;}
.y10_c00228{bottom:683.973333pt;}
.yf_c00228{bottom:713.706667pt;}
.ye_c00228{bottom:742.773333pt;}
.yd_c00228{bottom:772.506667pt;}
.yc_c00228{bottom:802.106667pt;}
.yb_c00228{bottom:831.306667pt;}
.ya_c00228{bottom:861.573333pt;}
.y9_c00228{bottom:891.040000pt;}
.y8_c00228{bottom:920.640000pt;}
.y7_c00228{bottom:950.373333pt;}
.y6_c00228{bottom:980.106667pt;}
.y5_c00228{bottom:1009.440000pt;}
.y4_c00228{bottom:1038.906667pt;}
.y3_c00228{bottom:1068.906667pt;}
.y2_c00228{bottom:1098.506667pt;}
.y1_c00228{bottom:1128.240000pt;}
.h3_c00228{height:11.733399pt;}
.h4_c00228{height:38.937500pt;}
.h2_c00228{height:108.041667pt;}
.h0_c00228{height:1229.733333pt;}
.h1_c00228{height:1230.000000pt;}
.w2_c00228{width:93.222667pt;}
.w0_c00228{width:780.466667pt;}
.w1_c00228{width:780.666667pt;}
.x0_c00228{left:0.000000pt;}
.x5_c00228{left:51.066667pt;}
.x3_c00228{left:52.533333pt;}
.x4_c00228{left:53.466667pt;}
.x2_c00228{left:54.400000pt;}
.x1_c00228{left:56.400000pt;}
.x6_c00228{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a400c6fc98f9bc4ae5760fd.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_e19232b0cf10724ceb302bdf.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_06debf67930b424a5d63b53b.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_96efb16100de42bd4632c5ae.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls2_c00229{letter-spacing:0.000000px;}
.ls3_c00229{letter-spacing:3.000000px;}
.ls0_c00229{letter-spacing:6.120000px;}
.ls1_c00229{letter-spacing:7.200000px;}
.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;}
}
.ws0_c00229{word-spacing:-51.000000px;}
.ws1_c00229{word-spacing:-25.776000px;}
.ws2_c00229{word-spacing:0.000000px;}
._33_c00229{margin-left:-29.280000px;}
._35_c00229{margin-left:-23.928000px;}
._2c_c00229{margin-left:-20.832000px;}
._27_c00229{margin-left:-19.008000px;}
._2e_c00229{margin-left:-15.264000px;}
._18_c00229{margin-left:-12.480000px;}
._9_c00229{margin-left:-10.848000px;}
._36_c00229{margin-left:-9.024000px;}
._f_c00229{margin-left:-7.776000px;}
._3b_c00229{margin-left:-6.336000px;}
._23_c00229{margin-left:-5.088000px;}
._1a_c00229{margin-left:-3.264000px;}
._0_c00229{margin-left:-1.728000px;}
._c_c00229{width:1.152000px;}
._3_c00229{width:2.784000px;}
._5_c00229{width:4.416000px;}
._8_c00229{width:5.472000px;}
._7_c00229{width:6.912000px;}
._4_c00229{width:8.352000px;}
._22_c00229{width:9.504000px;}
._e_c00229{width:10.656000px;}
._11_c00229{width:12.384000px;}
._d_c00229{width:13.536000px;}
._6_c00229{width:14.688000px;}
._14_c00229{width:15.840000px;}
._17_c00229{width:17.376000px;}
._b_c00229{width:19.296000px;}
._19_c00229{width:21.024000px;}
._3c_c00229{width:22.080000px;}
._1d_c00229{width:24.192000px;}
._15_c00229{width:25.344000px;}
._40_c00229{width:26.400000px;}
._16_c00229{width:27.552000px;}
._12_c00229{width:29.568000px;}
._21_c00229{width:31.392000px;}
._31_c00229{width:32.544000px;}
._1_c00229{width:34.176000px;}
._13_c00229{width:36.288000px;}
._2f_c00229{width:37.824000px;}
._24_c00229{width:40.416000px;}
._10_c00229{width:42.528000px;}
._2_c00229{width:44.064000px;}
._37_c00229{width:45.120000px;}
._a_c00229{width:47.040000px;}
._20_c00229{width:49.056000px;}
._1f_c00229{width:50.304000px;}
._26_c00229{width:52.224000px;}
._30_c00229{width:54.432000px;}
._34_c00229{width:55.968000px;}
._2b_c00229{width:57.312000px;}
._25_c00229{width:63.072000px;}
._45_c00229{width:66.624000px;}
._32_c00229{width:70.848000px;}
._43_c00229{width:79.542000px;}
._1e_c00229{width:90.816000px;}
._3d_c00229{width:94.752000px;}
._2d_c00229{width:95.904000px;}
._41_c00229{width:105.984000px;}
._3f_c00229{width:109.056000px;}
._42_c00229{width:156.768000px;}
._1c_c00229{width:174.144000px;}
._3a_c00229{width:179.808000px;}
._2a_c00229{width:184.128000px;}
._3e_c00229{width:263.040000px;}
._38_c00229{width:276.480000px;}
._28_c00229{width:287.136000px;}
._39_c00229{width:296.664000px;}
._29_c00229{width:299.232000px;}
._44_c00229{width:524.283000px;}
._1b_c00229{width:532.032000px;}
._46_c00229{width:836.640000px;}
.fc2_c00229{color:transparent;}
.fc1_c00229{color:rgb(128,128,128);}
.fc0_c00229{color:rgb(0,0,0);}
.fs5_c00229{font-size:48.000000px;}
.fs3_c00229{font-size:78.000000px;}
.fs2_c00229{font-size:84.000000px;}
.fs0_c00229{font-size:96.000000px;}
.fs1_c00229{font-size:102.000000px;}
.fs4_c00229{font-size:105.000000px;}
.y0_c00229{bottom:0.000000px;}
.y26_c00229{bottom:3.105000px;}
.y25_c00229{bottom:7.228357px;}
.y24_c00229{bottom:81.630000px;}
.y23_c00229{bottom:112.830000px;}
.y22_c00229{bottom:145.230000px;}
.y21_c00229{bottom:181.680000px;}
.y20_c00229{bottom:216.030000px;}
.y1f_c00229{bottom:250.080000px;}
.y1e_c00229{bottom:284.580000px;}
.y1d_c00229{bottom:318.930000px;}
.y1c_c00229{bottom:352.980000px;}
.y1b_c00229{bottom:386.730000px;}
.y1a_c00229{bottom:421.230000px;}
.y19_c00229{bottom:457.380000px;}
.y18_c00229{bottom:490.680000px;}
.y17_c00229{bottom:522.780000px;}
.y16_c00229{bottom:556.980000px;}
.y15_c00229{bottom:591.330000px;}
.y14_c00229{bottom:624.480000px;}
.y13_c00229{bottom:658.080000px;}
.y12_c00229{bottom:692.280000px;}
.y11_c00229{bottom:725.730000px;}
.y10_c00229{bottom:759.480000px;}
.yf_c00229{bottom:793.080000px;}
.ye_c00229{bottom:826.830000px;}
.yd_c00229{bottom:864.630000px;}
.yc_c00229{bottom:896.430000px;}
.yb_c00229{bottom:928.230000px;}
.ya_c00229{bottom:960.780000px;}
.y9_c00229{bottom:994.230000px;}
.y8_c00229{bottom:1027.680000px;}
.y7_c00229{bottom:1061.430000px;}
.y6_c00229{bottom:1095.930000px;}
.y5_c00229{bottom:1128.630000px;}
.y4_c00229{bottom:1161.630000px;}
.y3_c00229{bottom:1194.780000px;}
.y2_c00229{bottom:1228.530000px;}
.y1_c00229{bottom:1262.580000px;}
.h4_c00229{height:13.200074px;}
.h5_c00229{height:43.804688px;}
.h2_c00229{height:121.546875px;}
.h3_c00229{height:132.941895px;}
.h0_c00229{height:1362.450000px;}
.h1_c00229{height:1362.750000px;}
.w2_c00229{width:104.875500px;}
.w1_c00229{width:849.750000px;}
.w0_c00229{width:849.975000px;}
.x0_c00229{left:0.000000px;}
.x5_c00229{left:22.350000px;}
.x6_c00229{left:68.850000px;}
.xb_c00229{left:130.500000px;}
.x9_c00229{left:132.000000px;}
.x3_c00229{left:134.100000px;}
.x8_c00229{left:141.750000px;}
.x2_c00229{left:143.400000px;}
.xa_c00229{left:245.400000px;}
.x4_c00229{left:246.450000px;}
.x1_c00229{left:247.650000px;}
.x7_c00229{left:248.700000px;}
.xd_c00229{left:376.801758px;}
.xc_c00229{left:482.700000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls2_c00229{letter-spacing:0.000000pt;}
.ls3_c00229{letter-spacing:2.666667pt;}
.ls0_c00229{letter-spacing:5.440000pt;}
.ls1_c00229{letter-spacing:6.400000pt;}
.ws0_c00229{word-spacing:-45.333333pt;}
.ws1_c00229{word-spacing:-22.912000pt;}
.ws2_c00229{word-spacing:0.000000pt;}
._33_c00229{margin-left:-26.026667pt;}
._35_c00229{margin-left:-21.269333pt;}
._2c_c00229{margin-left:-18.517333pt;}
._27_c00229{margin-left:-16.896000pt;}
._2e_c00229{margin-left:-13.568000pt;}
._18_c00229{margin-left:-11.093333pt;}
._9_c00229{margin-left:-9.642667pt;}
._36_c00229{margin-left:-8.021333pt;}
._f_c00229{margin-left:-6.912000pt;}
._3b_c00229{margin-left:-5.632000pt;}
._23_c00229{margin-left:-4.522667pt;}
._1a_c00229{margin-left:-2.901333pt;}
._0_c00229{margin-left:-1.536000pt;}
._c_c00229{width:1.024000pt;}
._3_c00229{width:2.474667pt;}
._5_c00229{width:3.925333pt;}
._8_c00229{width:4.864000pt;}
._7_c00229{width:6.144000pt;}
._4_c00229{width:7.424000pt;}
._22_c00229{width:8.448000pt;}
._e_c00229{width:9.472000pt;}
._11_c00229{width:11.008000pt;}
._d_c00229{width:12.032000pt;}
._6_c00229{width:13.056000pt;}
._14_c00229{width:14.080000pt;}
._17_c00229{width:15.445333pt;}
._b_c00229{width:17.152000pt;}
._19_c00229{width:18.688000pt;}
._3c_c00229{width:19.626667pt;}
._1d_c00229{width:21.504000pt;}
._15_c00229{width:22.528000pt;}
._40_c00229{width:23.466667pt;}
._16_c00229{width:24.490667pt;}
._12_c00229{width:26.282667pt;}
._21_c00229{width:27.904000pt;}
._31_c00229{width:28.928000pt;}
._1_c00229{width:30.378667pt;}
._13_c00229{width:32.256000pt;}
._2f_c00229{width:33.621333pt;}
._24_c00229{width:35.925333pt;}
._10_c00229{width:37.802667pt;}
._2_c00229{width:39.168000pt;}
._37_c00229{width:40.106667pt;}
._a_c00229{width:41.813333pt;}
._20_c00229{width:43.605333pt;}
._1f_c00229{width:44.714667pt;}
._26_c00229{width:46.421333pt;}
._30_c00229{width:48.384000pt;}
._34_c00229{width:49.749333pt;}
._2b_c00229{width:50.944000pt;}
._25_c00229{width:56.064000pt;}
._45_c00229{width:59.221333pt;}
._32_c00229{width:62.976000pt;}
._43_c00229{width:70.704000pt;}
._1e_c00229{width:80.725333pt;}
._3d_c00229{width:84.224000pt;}
._2d_c00229{width:85.248000pt;}
._41_c00229{width:94.208000pt;}
._3f_c00229{width:96.938667pt;}
._42_c00229{width:139.349333pt;}
._1c_c00229{width:154.794667pt;}
._3a_c00229{width:159.829333pt;}
._2a_c00229{width:163.669333pt;}
._3e_c00229{width:233.813333pt;}
._38_c00229{width:245.760000pt;}
._28_c00229{width:255.232000pt;}
._39_c00229{width:263.701333pt;}
._29_c00229{width:265.984000pt;}
._44_c00229{width:466.029333pt;}
._1b_c00229{width:472.917333pt;}
._46_c00229{width:743.680000pt;}
.fs5_c00229{font-size:42.666667pt;}
.fs3_c00229{font-size:69.333333pt;}
.fs2_c00229{font-size:74.666667pt;}
.fs0_c00229{font-size:85.333333pt;}
.fs1_c00229{font-size:90.666667pt;}
.fs4_c00229{font-size:93.333333pt;}
.y0_c00229{bottom:0.000000pt;}
.y26_c00229{bottom:2.760000pt;}
.y25_c00229{bottom:6.425206pt;}
.y24_c00229{bottom:72.560000pt;}
.y23_c00229{bottom:100.293333pt;}
.y22_c00229{bottom:129.093333pt;}
.y21_c00229{bottom:161.493333pt;}
.y20_c00229{bottom:192.026667pt;}
.y1f_c00229{bottom:222.293333pt;}
.y1e_c00229{bottom:252.960000pt;}
.y1d_c00229{bottom:283.493333pt;}
.y1c_c00229{bottom:313.760000pt;}
.y1b_c00229{bottom:343.760000pt;}
.y1a_c00229{bottom:374.426667pt;}
.y19_c00229{bottom:406.560000pt;}
.y18_c00229{bottom:436.160000pt;}
.y17_c00229{bottom:464.693333pt;}
.y16_c00229{bottom:495.093333pt;}
.y15_c00229{bottom:525.626667pt;}
.y14_c00229{bottom:555.093333pt;}
.y13_c00229{bottom:584.960000pt;}
.y12_c00229{bottom:615.360000pt;}
.y11_c00229{bottom:645.093333pt;}
.y10_c00229{bottom:675.093333pt;}
.yf_c00229{bottom:704.960000pt;}
.ye_c00229{bottom:734.960000pt;}
.yd_c00229{bottom:768.560000pt;}
.yc_c00229{bottom:796.826667pt;}
.yb_c00229{bottom:825.093333pt;}
.ya_c00229{bottom:854.026667pt;}
.y9_c00229{bottom:883.760000pt;}
.y8_c00229{bottom:913.493333pt;}
.y7_c00229{bottom:943.493333pt;}
.y6_c00229{bottom:974.160000pt;}
.y5_c00229{bottom:1003.226667pt;}
.y4_c00229{bottom:1032.560000pt;}
.y3_c00229{bottom:1062.026667pt;}
.y2_c00229{bottom:1092.026667pt;}
.y1_c00229{bottom:1122.293333pt;}
.h4_c00229{height:11.733399pt;}
.h5_c00229{height:38.937500pt;}
.h2_c00229{height:108.041667pt;}
.h3_c00229{height:118.170573pt;}
.h0_c00229{height:1211.066667pt;}
.h1_c00229{height:1211.333333pt;}
.w2_c00229{width:93.222667pt;}
.w1_c00229{width:755.333333pt;}
.w0_c00229{width:755.533333pt;}
.x0_c00229{left:0.000000pt;}
.x5_c00229{left:19.866667pt;}
.x6_c00229{left:61.200000pt;}
.xb_c00229{left:116.000000pt;}
.x9_c00229{left:117.333333pt;}
.x3_c00229{left:119.200000pt;}
.x8_c00229{left:126.000000pt;}
.x2_c00229{left:127.466667pt;}
.xa_c00229{left:218.133333pt;}
.x4_c00229{left:219.066667pt;}
.x1_c00229{left:220.133333pt;}
.x7_c00229{left:221.066667pt;}
.xd_c00229{left:334.934896pt;}
.xc_c00229{left:429.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c23c92af7034ec2f4ba0d50.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_92028267673b67b6c3b8c1a0.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_8c1e0597043ddda6ec16c371.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls3_c00230{letter-spacing:0.000000px;}
.ls2_c00230{letter-spacing:17.256000px;}
.ls1_c00230{letter-spacing:20.400000px;}
.ls0_c00230{letter-spacing:42.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:-63.504000px;}
.ws1_c00230{word-spacing:-51.000000px;}
.ws2_c00230{word-spacing:-23.136000px;}
.ws3_c00230{word-spacing:0.000000px;}
._27_c00230{margin-left:-24.000000px;}
._29_c00230{margin-left:-21.216000px;}
._2a_c00230{margin-left:-19.584000px;}
._1d_c00230{margin-left:-16.608000px;}
._28_c00230{margin-left:-15.072000px;}
._14_c00230{margin-left:-12.960000px;}
._23_c00230{margin-left:-10.944000px;}
._24_c00230{margin-left:-8.928000px;}
._22_c00230{margin-left:-7.104000px;}
._25_c00230{margin-left:-5.952000px;}
._1e_c00230{margin-left:-4.416000px;}
._6_c00230{margin-left:-3.264000px;}
._c_c00230{margin-left:-1.440000px;}
._4_c00230{width:1.056000px;}
._2_c00230{width:2.592000px;}
._1_c00230{width:4.128000px;}
._b_c00230{width:5.856000px;}
._0_c00230{width:7.584000px;}
._16_c00230{width:9.120000px;}
._12_c00230{width:10.272000px;}
._18_c00230{width:12.096000px;}
._a_c00230{width:13.440000px;}
._7_c00230{width:14.688000px;}
._2c_c00230{width:16.032000px;}
._15_c00230{width:17.184000px;}
._5_c00230{width:18.912000px;}
._2d_c00230{width:20.352000px;}
._3_c00230{width:21.792000px;}
._11_c00230{width:25.152000px;}
._2f_c00230{width:27.168000px;}
._10_c00230{width:28.224000px;}
._17_c00230{width:30.816000px;}
._21_c00230{width:32.640000px;}
._1b_c00230{width:34.272000px;}
._f_c00230{width:36.480000px;}
._1f_c00230{width:38.400000px;}
._d_c00230{width:40.416000px;}
._2e_c00230{width:41.856000px;}
._19_c00230{width:43.776000px;}
._1c_c00230{width:45.888000px;}
._20_c00230{width:47.808000px;}
._13_c00230{width:49.440000px;}
._e_c00230{width:52.512000px;}
._9_c00230{width:54.432000px;}
._8_c00230{width:56.352000px;}
._1a_c00230{width:60.864000px;}
._26_c00230{width:328.272000px;}
._2b_c00230{width:610.848000px;}
._30_c00230{width:1800.192000px;}
.fc2_c00230{color:transparent;}
.fc1_c00230{color:rgb(128,128,128);}
.fc0_c00230{color:rgb(0,0,0);}
.fs3_c00230{font-size:48.000000px;}
.fs2_c00230{font-size:84.000000px;}
.fs0_c00230{font-size:96.000000px;}
.fs1_c00230{font-size:102.000000px;}
.y0_c00230{bottom:0.000000px;}
.y27_c00230{bottom:3.105000px;}
.y26_c00230{bottom:7.228357px;}
.y24_c00230{bottom:67.830000px;}
.y23_c00230{bottom:103.680000px;}
.y22_c00230{bottom:138.330000px;}
.y21_c00230{bottom:171.480000px;}
.y20_c00230{bottom:205.230000px;}
.y1f_c00230{bottom:239.730000px;}
.y1e_c00230{bottom:273.330000px;}
.y1d_c00230{bottom:306.480000px;}
.y1c_c00230{bottom:340.980000px;}
.y1b_c00230{bottom:374.580000px;}
.y1a_c00230{bottom:407.430000px;}
.y19_c00230{bottom:440.730000px;}
.y18_c00230{bottom:475.230000px;}
.y17_c00230{bottom:508.230000px;}
.y16_c00230{bottom:541.380000px;}
.y15_c00230{bottom:575.430000px;}
.y25_c00230{bottom:595.080000px;}
.y14_c00230{bottom:608.280000px;}
.y13_c00230{bottom:641.580000px;}
.y12_c00230{bottom:675.330000px;}
.y11_c00230{bottom:708.030000px;}
.y10_c00230{bottom:741.930000px;}
.yf_c00230{bottom:775.230000px;}
.ye_c00230{bottom:808.530000px;}
.yd_c00230{bottom:841.830000px;}
.yc_c00230{bottom:875.130000px;}
.yb_c00230{bottom:908.580000px;}
.ya_c00230{bottom:942.030000px;}
.y9_c00230{bottom:975.480000px;}
.y8_c00230{bottom:1009.080000px;}
.y7_c00230{bottom:1042.980000px;}
.y6_c00230{bottom:1075.680000px;}
.y5_c00230{bottom:1108.980000px;}
.y4_c00230{bottom:1142.130000px;}
.y3_c00230{bottom:1175.280000px;}
.y2_c00230{bottom:1209.330000px;}
.y1_c00230{bottom:1243.380000px;}
.h2_c00230{height:13.200074px;}
.h3_c00230{height:43.804688px;}
.h1_c00230{height:121.546875px;}
.h0_c00230{height:1346.250000px;}
.w1_c00230{width:104.875500px;}
.w0_c00230{width:854.250000px;}
.x0_c00230{left:0.000000px;}
.x7_c00230{left:55.350000px;}
.x6_c00230{left:57.000000px;}
.x5_c00230{left:58.050000px;}
.x4_c00230{left:59.100000px;}
.x8_c00230{left:60.150000px;}
.x3_c00230{left:61.200000px;}
.x2_c00230{left:62.400000px;}
.x1_c00230{left:64.050000px;}
.x9_c00230{left:97.950000px;}
.xb_c00230{left:378.939240px;}
.xa_c00230{left:711.900000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls3_c00230{letter-spacing:0.000000pt;}
.ls2_c00230{letter-spacing:15.338667pt;}
.ls1_c00230{letter-spacing:18.133333pt;}
.ls0_c00230{letter-spacing:37.333333pt;}
.ws0_c00230{word-spacing:-56.448000pt;}
.ws1_c00230{word-spacing:-45.333333pt;}
.ws2_c00230{word-spacing:-20.565333pt;}
.ws3_c00230{word-spacing:0.000000pt;}
._27_c00230{margin-left:-21.333333pt;}
._29_c00230{margin-left:-18.858667pt;}
._2a_c00230{margin-left:-17.408000pt;}
._1d_c00230{margin-left:-14.762667pt;}
._28_c00230{margin-left:-13.397333pt;}
._14_c00230{margin-left:-11.520000pt;}
._23_c00230{margin-left:-9.728000pt;}
._24_c00230{margin-left:-7.936000pt;}
._22_c00230{margin-left:-6.314667pt;}
._25_c00230{margin-left:-5.290667pt;}
._1e_c00230{margin-left:-3.925333pt;}
._6_c00230{margin-left:-2.901333pt;}
._c_c00230{margin-left:-1.280000pt;}
._4_c00230{width:0.938667pt;}
._2_c00230{width:2.304000pt;}
._1_c00230{width:3.669333pt;}
._b_c00230{width:5.205333pt;}
._0_c00230{width:6.741333pt;}
._16_c00230{width:8.106667pt;}
._12_c00230{width:9.130667pt;}
._18_c00230{width:10.752000pt;}
._a_c00230{width:11.946667pt;}
._7_c00230{width:13.056000pt;}
._2c_c00230{width:14.250667pt;}
._15_c00230{width:15.274667pt;}
._5_c00230{width:16.810667pt;}
._2d_c00230{width:18.090667pt;}
._3_c00230{width:19.370667pt;}
._11_c00230{width:22.357333pt;}
._2f_c00230{width:24.149333pt;}
._10_c00230{width:25.088000pt;}
._17_c00230{width:27.392000pt;}
._21_c00230{width:29.013333pt;}
._1b_c00230{width:30.464000pt;}
._f_c00230{width:32.426667pt;}
._1f_c00230{width:34.133333pt;}
._d_c00230{width:35.925333pt;}
._2e_c00230{width:37.205333pt;}
._19_c00230{width:38.912000pt;}
._1c_c00230{width:40.789333pt;}
._20_c00230{width:42.496000pt;}
._13_c00230{width:43.946667pt;}
._e_c00230{width:46.677333pt;}
._9_c00230{width:48.384000pt;}
._8_c00230{width:50.090667pt;}
._1a_c00230{width:54.101333pt;}
._26_c00230{width:291.797333pt;}
._2b_c00230{width:542.976000pt;}
._30_c00230{width:1600.170667pt;}
.fs3_c00230{font-size:42.666667pt;}
.fs2_c00230{font-size:74.666667pt;}
.fs0_c00230{font-size:85.333333pt;}
.fs1_c00230{font-size:90.666667pt;}
.y0_c00230{bottom:0.000000pt;}
.y27_c00230{bottom:2.760000pt;}
.y26_c00230{bottom:6.425206pt;}
.y24_c00230{bottom:60.293333pt;}
.y23_c00230{bottom:92.160000pt;}
.y22_c00230{bottom:122.960000pt;}
.y21_c00230{bottom:152.426667pt;}
.y20_c00230{bottom:182.426667pt;}
.y1f_c00230{bottom:213.093333pt;}
.y1e_c00230{bottom:242.960000pt;}
.y1d_c00230{bottom:272.426667pt;}
.y1c_c00230{bottom:303.093333pt;}
.y1b_c00230{bottom:332.960000pt;}
.y1a_c00230{bottom:362.160000pt;}
.y19_c00230{bottom:391.760000pt;}
.y18_c00230{bottom:422.426667pt;}
.y17_c00230{bottom:451.760000pt;}
.y16_c00230{bottom:481.226667pt;}
.y15_c00230{bottom:511.493333pt;}
.y25_c00230{bottom:528.960000pt;}
.y14_c00230{bottom:540.693333pt;}
.y13_c00230{bottom:570.293333pt;}
.y12_c00230{bottom:600.293333pt;}
.y11_c00230{bottom:629.360000pt;}
.y10_c00230{bottom:659.493333pt;}
.yf_c00230{bottom:689.093333pt;}
.ye_c00230{bottom:718.693333pt;}
.yd_c00230{bottom:748.293333pt;}
.yc_c00230{bottom:777.893333pt;}
.yb_c00230{bottom:807.626667pt;}
.ya_c00230{bottom:837.360000pt;}
.y9_c00230{bottom:867.093333pt;}
.y8_c00230{bottom:896.960000pt;}
.y7_c00230{bottom:927.093333pt;}
.y6_c00230{bottom:956.160000pt;}
.y5_c00230{bottom:985.760000pt;}
.y4_c00230{bottom:1015.226667pt;}
.y3_c00230{bottom:1044.693333pt;}
.y2_c00230{bottom:1074.960000pt;}
.y1_c00230{bottom:1105.226667pt;}
.h2_c00230{height:11.733399pt;}
.h3_c00230{height:38.937500pt;}
.h1_c00230{height:108.041667pt;}
.h0_c00230{height:1196.666667pt;}
.w1_c00230{width:93.222667pt;}
.w0_c00230{width:759.333333pt;}
.x0_c00230{left:0.000000pt;}
.x7_c00230{left:49.200000pt;}
.x6_c00230{left:50.666667pt;}
.x5_c00230{left:51.600000pt;}
.x4_c00230{left:52.533333pt;}
.x8_c00230{left:53.466667pt;}
.x3_c00230{left:54.400000pt;}
.x2_c00230{left:55.466667pt;}
.x1_c00230{left:56.933333pt;}
.x9_c00230{left:87.066667pt;}
.xb_c00230{left:336.834880pt;}
.xa_c00230{left:632.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_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_4e7f9b70f3081cf9af83fcdb.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_b61de71880adba2ea7d7eeaf.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_5ad559dd804ee91bf930b796.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_466129e37fedf1f3d20305c8.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00231;src:url('chunks/assets/font_329fc8be4f5467ab3c9f066b.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00231;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00231{font-family:ff7_c00231;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00231{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00231{vertical-align:-10.800000px;}
.v0_c00231{vertical-align:0.000000px;}
.v2_c00231{vertical-align:108.000000px;}
.ls9_c00231{letter-spacing:-6.000000px;}
.ls8_c00231{letter-spacing:-3.000000px;}
.ls4_c00231{letter-spacing:0.000000px;}
.ls3_c00231{letter-spacing:2.052000px;}
.ls6_c00231{letter-spacing:3.000000px;}
.ls0_c00231{letter-spacing:8.520000px;}
.ls7_c00231{letter-spacing:9.000000px;}
.ls5_c00231{letter-spacing:12.000000px;}
.ls2_c00231{letter-spacing:27.240000px;}
.ls1_c00231{letter-spacing:136.560000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-51.000000px;}
.ws2_c00231{word-spacing:-32.244000px;}
.ws3_c00231{word-spacing:-31.980000px;}
.ws1_c00231{word-spacing:-23.136000px;}
.ws4_c00231{word-spacing:-12.798000px;}
.ws5_c00231{word-spacing:0.000000px;}
._3f_c00231{margin-left:-88.479000px;}
._44_c00231{margin-left:-41.847000px;}
._3b_c00231{margin-left:-32.142000px;}
._2e_c00231{margin-left:-28.272000px;}
._53_c00231{margin-left:-26.976000px;}
._58_c00231{margin-left:-24.546000px;}
._50_c00231{margin-left:-23.004000px;}
._42_c00231{margin-left:-21.489000px;}
._4_c00231{margin-left:-19.596000px;}
._3d_c00231{margin-left:-16.791000px;}
._57_c00231{margin-left:-15.291000px;}
._4f_c00231{margin-left:-13.848000px;}
._16_c00231{margin-left:-12.078000px;}
._34_c00231{margin-left:-10.146000px;}
._21_c00231{margin-left:-8.640000px;}
._3a_c00231{margin-left:-7.422000px;}
._32_c00231{margin-left:-5.748000px;}
._4d_c00231{margin-left:-4.716000px;}
._17_c00231{margin-left:-3.660000px;}
._f_c00231{margin-left:-2.268000px;}
._1b_c00231{margin-left:-1.152000px;}
._5_c00231{width:1.458000px;}
._3_c00231{width:2.958000px;}
._26_c00231{width:3.972000px;}
._7_c00231{width:4.992000px;}
._8_c00231{width:6.528000px;}
._9_c00231{width:7.602000px;}
._b_c00231{width:9.312000px;}
._14_c00231{width:10.812000px;}
._1_c00231{width:11.904000px;}
._0_c00231{width:12.960000px;}
._23_c00231{width:13.968000px;}
._1c_c00231{width:15.372000px;}
._12_c00231{width:16.992000px;}
._19_c00231{width:18.336000px;}
._15_c00231{width:19.464000px;}
._2_c00231{width:20.952000px;}
._59_c00231{width:23.340000px;}
._1a_c00231{width:24.882000px;}
._13_c00231{width:25.962000px;}
._c_c00231{width:27.204000px;}
._18_c00231{width:28.488000px;}
._11_c00231{width:30.480000px;}
._a_c00231{width:31.776000px;}
._2f_c00231{width:32.988000px;}
._24_c00231{width:34.230000px;}
._d_c00231{width:36.672000px;}
._38_c00231{width:38.322000px;}
._10_c00231{width:39.324000px;}
._1d_c00231{width:40.800000px;}
._2d_c00231{width:42.420000px;}
._e_c00231{width:45.102000px;}
._1e_c00231{width:46.188000px;}
._20_c00231{width:47.316000px;}
._30_c00231{width:49.356000px;}
._6_c00231{width:50.976000px;}
._28_c00231{width:53.082000px;}
._36_c00231{width:54.702000px;}
._29_c00231{width:56.766000px;}
._27_c00231{width:60.540000px;}
._2b_c00231{width:61.920000px;}
._35_c00231{width:63.012000px;}
._2c_c00231{width:64.236000px;}
._2a_c00231{width:67.086000px;}
._37_c00231{width:70.836000px;}
._4c_c00231{width:74.037000px;}
._47_c00231{width:75.741000px;}
._52_c00231{width:80.448000px;}
._4b_c00231{width:83.094000px;}
._39_c00231{width:90.492000px;}
._55_c00231{width:91.680000px;}
._3e_c00231{width:96.261000px;}
._4e_c00231{width:105.642000px;}
._54_c00231{width:133.410000px;}
._49_c00231{width:135.423000px;}
._5c_c00231{width:138.777000px;}
._1f_c00231{width:144.804000px;}
._5a_c00231{width:156.096000px;}
._22_c00231{width:175.218000px;}
._3c_c00231{width:184.233000px;}
._45_c00231{width:193.836000px;}
._31_c00231{width:272.178000px;}
._5d_c00231{width:293.016000px;}
._48_c00231{width:294.417000px;}
._43_c00231{width:298.458000px;}
._5b_c00231{width:324.603000px;}
._51_c00231{width:344.268000px;}
._4a_c00231{width:358.479000px;}
._41_c00231{width:391.260000px;}
._56_c00231{width:411.813000px;}
._25_c00231{width:442.542000px;}
._46_c00231{width:480.816000px;}
._33_c00231{width:544.248000px;}
._40_c00231{width:654.588000px;}
.fc2_c00231{color:transparent;}
.fc1_c00231{color:rgb(128,128,128);}
.fc0_c00231{color:rgb(0,0,0);}
.fs7_c00231{font-size:30.000000px;}
.fs5_c00231{font-size:39.000000px;}
.fs9_c00231{font-size:48.000000px;}
.fs3_c00231{font-size:60.000000px;}
.fs8_c00231{font-size:78.000000px;}
.fs2_c00231{font-size:84.000000px;}
.fs4_c00231{font-size:87.000000px;}
.fs0_c00231{font-size:96.000000px;}
.fs1_c00231{font-size:102.000000px;}
.fs6_c00231{font-size:108.000000px;}
.y0_c00231{bottom:0.000000px;}
.y27_c00231{bottom:3.105000px;}
.y26_c00231{bottom:7.228357px;}
.y25_c00231{bottom:117.480000px;}
.y24_c00231{bottom:127.980000px;}
.y23_c00231{bottom:157.380000px;}
.y22_c00231{bottom:189.630000px;}
.y21_c00231{bottom:223.080000px;}
.y20_c00231{bottom:257.580000px;}
.y1f_c00231{bottom:327.480000px;}
.y1e_c00231{bottom:373.980000px;}
.y1d_c00231{bottom:393.180000px;}
.y1c_c00231{bottom:412.380000px;}
.y1b_c00231{bottom:430.080000px;}
.y1a_c00231{bottom:462.480000px;}
.y19_c00231{bottom:496.530000px;}
.y18_c00231{bottom:530.280000px;}
.y17_c00231{bottom:564.930000px;}
.y16_c00231{bottom:597.480000px;}
.y15_c00231{bottom:628.830000px;}
.y14_c00231{bottom:666.180000px;}
.y13_c00231{bottom:699.030000px;}
.y12_c00231{bottom:733.080000px;}
.y11_c00231{bottom:766.830000px;}
.y10_c00231{bottom:799.530000px;}
.yf_c00231{bottom:834.030000px;}
.ye_c00231{bottom:867.480000px;}
.yd_c00231{bottom:901.080000px;}
.yc_c00231{bottom:932.130000px;}
.y1_c00231{bottom:951.180000px;}
.yb_c00231{bottom:966.630000px;}
.ya_c00231{bottom:1000.980000px;}
.y9_c00231{bottom:1034.430000px;}
.y8_c00231{bottom:1067.580000px;}
.y7_c00231{bottom:1101.030000px;}
.y6_c00231{bottom:1134.630000px;}
.y5_c00231{bottom:1167.780000px;}
.y4_c00231{bottom:1200.930000px;}
.y3_c00231{bottom:1234.530000px;}
.y2_c00231{bottom:1267.980000px;}
.h9_c00231{height:13.200074px;}
.h7_c00231{height:37.983398px;}
.ha_c00231{height:43.804688px;}
.h5_c00231{height:49.378418px;}
.h3_c00231{height:99.351855px;}
.h4_c00231{height:110.151855px;}
.h2_c00231{height:121.546875px;}
.h6_c00231{height:136.740234px;}
.h8_c00231{height:206.314453px;}
.h0_c00231{height:1382.700000px;}
.h1_c00231{height:1383.000000px;}
.w2_c00231{width:104.875500px;}
.w0_c00231{width:863.175000px;}
.w1_c00231{width:863.250000px;}
.x0_c00231{left:0.000000px;}
.x9_c00231{left:139.500000px;}
.x6_c00231{left:146.550000px;}
.x1_c00231{left:152.550000px;}
.xf_c00231{left:246.150000px;}
.xd_c00231{left:248.100000px;}
.x8_c00231{left:250.800000px;}
.x7_c00231{left:252.450000px;}
.x4_c00231{left:253.500000px;}
.x3_c00231{left:254.550000px;}
.x2_c00231{left:256.200000px;}
.xc_c00231{left:257.850000px;}
.xa_c00231{left:264.300000px;}
.x11_c00231{left:274.800000px;}
.x10_c00231{left:277.800000px;}
.x5_c00231{left:285.900000px;}
.xb_c00231{left:292.650000px;}
.xe_c00231{left:366.450000px;}
.x12_c00231{left:383.401749px;}
@media print{
.v1_c00231{vertical-align:-9.600000pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v2_c00231{vertical-align:96.000000pt;}
.ls9_c00231{letter-spacing:-5.333333pt;}
.ls8_c00231{letter-spacing:-2.666667pt;}
.ls4_c00231{letter-spacing:0.000000pt;}
.ls3_c00231{letter-spacing:1.824000pt;}
.ls6_c00231{letter-spacing:2.666667pt;}
.ls0_c00231{letter-spacing:7.573333pt;}
.ls7_c00231{letter-spacing:8.000000pt;}
.ls5_c00231{letter-spacing:10.666667pt;}
.ls2_c00231{letter-spacing:24.213333pt;}
.ls1_c00231{letter-spacing:121.386667pt;}
.ws0_c00231{word-spacing:-45.333333pt;}
.ws2_c00231{word-spacing:-28.661333pt;}
.ws3_c00231{word-spacing:-28.426667pt;}
.ws1_c00231{word-spacing:-20.565333pt;}
.ws4_c00231{word-spacing:-11.376000pt;}
.ws5_c00231{word-spacing:0.000000pt;}
._3f_c00231{margin-left:-78.648000pt;}
._44_c00231{margin-left:-37.197333pt;}
._3b_c00231{margin-left:-28.570667pt;}
._2e_c00231{margin-left:-25.130667pt;}
._53_c00231{margin-left:-23.978667pt;}
._58_c00231{margin-left:-21.818667pt;}
._50_c00231{margin-left:-20.448000pt;}
._42_c00231{margin-left:-19.101333pt;}
._4_c00231{margin-left:-17.418667pt;}
._3d_c00231{margin-left:-14.925333pt;}
._57_c00231{margin-left:-13.592000pt;}
._4f_c00231{margin-left:-12.309333pt;}
._16_c00231{margin-left:-10.736000pt;}
._34_c00231{margin-left:-9.018667pt;}
._21_c00231{margin-left:-7.680000pt;}
._3a_c00231{margin-left:-6.597333pt;}
._32_c00231{margin-left:-5.109333pt;}
._4d_c00231{margin-left:-4.192000pt;}
._17_c00231{margin-left:-3.253333pt;}
._f_c00231{margin-left:-2.016000pt;}
._1b_c00231{margin-left:-1.024000pt;}
._5_c00231{width:1.296000pt;}
._3_c00231{width:2.629333pt;}
._26_c00231{width:3.530667pt;}
._7_c00231{width:4.437333pt;}
._8_c00231{width:5.802667pt;}
._9_c00231{width:6.757333pt;}
._b_c00231{width:8.277333pt;}
._14_c00231{width:9.610667pt;}
._1_c00231{width:10.581333pt;}
._0_c00231{width:11.520000pt;}
._23_c00231{width:12.416000pt;}
._1c_c00231{width:13.664000pt;}
._12_c00231{width:15.104000pt;}
._19_c00231{width:16.298667pt;}
._15_c00231{width:17.301333pt;}
._2_c00231{width:18.624000pt;}
._59_c00231{width:20.746667pt;}
._1a_c00231{width:22.117333pt;}
._13_c00231{width:23.077333pt;}
._c_c00231{width:24.181333pt;}
._18_c00231{width:25.322667pt;}
._11_c00231{width:27.093333pt;}
._a_c00231{width:28.245333pt;}
._2f_c00231{width:29.322667pt;}
._24_c00231{width:30.426667pt;}
._d_c00231{width:32.597333pt;}
._38_c00231{width:34.064000pt;}
._10_c00231{width:34.954667pt;}
._1d_c00231{width:36.266667pt;}
._2d_c00231{width:37.706667pt;}
._e_c00231{width:40.090667pt;}
._1e_c00231{width:41.056000pt;}
._20_c00231{width:42.058667pt;}
._30_c00231{width:43.872000pt;}
._6_c00231{width:45.312000pt;}
._28_c00231{width:47.184000pt;}
._36_c00231{width:48.624000pt;}
._29_c00231{width:50.458667pt;}
._27_c00231{width:53.813333pt;}
._2b_c00231{width:55.040000pt;}
._35_c00231{width:56.010667pt;}
._2c_c00231{width:57.098667pt;}
._2a_c00231{width:59.632000pt;}
._37_c00231{width:62.965333pt;}
._4c_c00231{width:65.810667pt;}
._47_c00231{width:67.325333pt;}
._52_c00231{width:71.509333pt;}
._4b_c00231{width:73.861333pt;}
._39_c00231{width:80.437333pt;}
._55_c00231{width:81.493333pt;}
._3e_c00231{width:85.565333pt;}
._4e_c00231{width:93.904000pt;}
._54_c00231{width:118.586667pt;}
._49_c00231{width:120.376000pt;}
._5c_c00231{width:123.357333pt;}
._1f_c00231{width:128.714667pt;}
._5a_c00231{width:138.752000pt;}
._22_c00231{width:155.749333pt;}
._3c_c00231{width:163.762667pt;}
._45_c00231{width:172.298667pt;}
._31_c00231{width:241.936000pt;}
._5d_c00231{width:260.458667pt;}
._48_c00231{width:261.704000pt;}
._43_c00231{width:265.296000pt;}
._5b_c00231{width:288.536000pt;}
._51_c00231{width:306.016000pt;}
._4a_c00231{width:318.648000pt;}
._41_c00231{width:347.786667pt;}
._56_c00231{width:366.056000pt;}
._25_c00231{width:393.370667pt;}
._46_c00231{width:427.392000pt;}
._33_c00231{width:483.776000pt;}
._40_c00231{width:581.856000pt;}
.fs7_c00231{font-size:26.666667pt;}
.fs5_c00231{font-size:34.666667pt;}
.fs9_c00231{font-size:42.666667pt;}
.fs3_c00231{font-size:53.333333pt;}
.fs8_c00231{font-size:69.333333pt;}
.fs2_c00231{font-size:74.666667pt;}
.fs4_c00231{font-size:77.333333pt;}
.fs0_c00231{font-size:85.333333pt;}
.fs1_c00231{font-size:90.666667pt;}
.fs6_c00231{font-size:96.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y27_c00231{bottom:2.760000pt;}
.y26_c00231{bottom:6.425206pt;}
.y25_c00231{bottom:104.426667pt;}
.y24_c00231{bottom:113.760000pt;}
.y23_c00231{bottom:139.893333pt;}
.y22_c00231{bottom:168.560000pt;}
.y21_c00231{bottom:198.293333pt;}
.y20_c00231{bottom:228.960000pt;}
.y1f_c00231{bottom:291.093333pt;}
.y1e_c00231{bottom:332.426667pt;}
.y1d_c00231{bottom:349.493333pt;}
.y1c_c00231{bottom:366.560000pt;}
.y1b_c00231{bottom:382.293333pt;}
.y1a_c00231{bottom:411.093333pt;}
.y19_c00231{bottom:441.360000pt;}
.y18_c00231{bottom:471.360000pt;}
.y17_c00231{bottom:502.160000pt;}
.y16_c00231{bottom:531.093333pt;}
.y15_c00231{bottom:558.960000pt;}
.y14_c00231{bottom:592.160000pt;}
.y13_c00231{bottom:621.360000pt;}
.y12_c00231{bottom:651.626667pt;}
.y11_c00231{bottom:681.626667pt;}
.y10_c00231{bottom:710.693333pt;}
.yf_c00231{bottom:741.360000pt;}
.ye_c00231{bottom:771.093333pt;}
.yd_c00231{bottom:800.960000pt;}
.yc_c00231{bottom:828.560000pt;}
.y1_c00231{bottom:845.493333pt;}
.yb_c00231{bottom:859.226667pt;}
.ya_c00231{bottom:889.760000pt;}
.y9_c00231{bottom:919.493333pt;}
.y8_c00231{bottom:948.960000pt;}
.y7_c00231{bottom:978.693333pt;}
.y6_c00231{bottom:1008.560000pt;}
.y5_c00231{bottom:1038.026667pt;}
.y4_c00231{bottom:1067.493333pt;}
.y3_c00231{bottom:1097.360000pt;}
.y2_c00231{bottom:1127.093333pt;}
.h9_c00231{height:11.733399pt;}
.h7_c00231{height:33.763021pt;}
.ha_c00231{height:38.937500pt;}
.h5_c00231{height:43.891927pt;}
.h3_c00231{height:88.312760pt;}
.h4_c00231{height:97.912760pt;}
.h2_c00231{height:108.041667pt;}
.h6_c00231{height:121.546875pt;}
.h8_c00231{height:183.390625pt;}
.h0_c00231{height:1229.066667pt;}
.h1_c00231{height:1229.333333pt;}
.w2_c00231{width:93.222667pt;}
.w0_c00231{width:767.266667pt;}
.w1_c00231{width:767.333333pt;}
.x0_c00231{left:0.000000pt;}
.x9_c00231{left:124.000000pt;}
.x6_c00231{left:130.266667pt;}
.x1_c00231{left:135.600000pt;}
.xf_c00231{left:218.800000pt;}
.xd_c00231{left:220.533333pt;}
.x8_c00231{left:222.933333pt;}
.x7_c00231{left:224.400000pt;}
.x4_c00231{left:225.333333pt;}
.x3_c00231{left:226.266667pt;}
.x2_c00231{left:227.733333pt;}
.xc_c00231{left:229.200000pt;}
.xa_c00231{left:234.933333pt;}
.x11_c00231{left:244.266667pt;}
.x10_c00231{left:246.933333pt;}
.x5_c00231{left:254.133333pt;}
.xb_c00231{left:260.133333pt;}
.xe_c00231{left:325.733333pt;}
.x12_c00231{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2464d4c3a80a8cbb6d80df6c.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_27102d922087e168e2bbc305.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;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_c00232;src:url('chunks/assets/font_4b6047bf2b969fa66f01da03.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_f9c9088a7abdfdeff1df15e6.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_1798bebc4551043221532e76.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00232;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00232{font-family:ff7_c00232;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls4_c00232{letter-spacing:-6.000000px;}
.ls2_c00232{letter-spacing:-3.000000px;}
.ls3_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:9.000000px;}
.ls1_c00232{letter-spacing:51.000000px;}
.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:-37.020000px;}
.ws2_c00232{word-spacing:-34.704000px;}
.ws1_c00232{word-spacing:-34.014000px;}
.ws4_c00232{word-spacing:-20.244000px;}
.ws5_c00232{word-spacing:0.000000px;}
.ws3_c00232{word-spacing:7.080000px;}
._22_c00232{margin-left:-81.792000px;}
._a_c00232{margin-left:-64.710000px;}
._8_c00232{margin-left:-56.820000px;}
._4_c00232{margin-left:-53.190000px;}
._7_c00232{margin-left:-29.730000px;}
._44_c00232{margin-left:-25.623000px;}
._0_c00232{margin-left:-23.055000px;}
._45_c00232{margin-left:-18.744000px;}
._2_c00232{margin-left:-14.268000px;}
._6_c00232{margin-left:-12.300000px;}
._26_c00232{margin-left:-10.176000px;}
._d_c00232{margin-left:-7.695000px;}
._1f_c00232{margin-left:-6.048000px;}
._1e_c00232{margin-left:-4.752000px;}
._f_c00232{margin-left:-2.700000px;}
._23_c00232{margin-left:-1.476000px;}
._1c_c00232{width:1.008000px;}
._11_c00232{width:2.700000px;}
._25_c00232{width:4.248000px;}
._2e_c00232{width:5.661000px;}
._2c_c00232{width:6.804000px;}
._27_c00232{width:8.340000px;}
._30_c00232{width:9.621000px;}
._2b_c00232{width:10.767000px;}
._1_c00232{width:12.354000px;}
._1a_c00232{width:14.157000px;}
._3c_c00232{width:16.128000px;}
._14_c00232{width:18.018000px;}
._3d_c00232{width:19.113000px;}
._24_c00232{width:20.784000px;}
._13_c00232{width:21.879000px;}
._1b_c00232{width:22.932000px;}
._34_c00232{width:25.179000px;}
._15_c00232{width:26.325000px;}
._16_c00232{width:27.729000px;}
._3a_c00232{width:30.312000px;}
._2d_c00232{width:31.980000px;}
._31_c00232{width:35.100000px;}
._3b_c00232{width:37.071000px;}
._29_c00232{width:38.496000px;}
._46_c00232{width:39.498000px;}
._39_c00232{width:40.752000px;}
._18_c00232{width:41.952000px;}
._38_c00232{width:43.314000px;}
._3e_c00232{width:44.448000px;}
._32_c00232{width:45.600000px;}
._20_c00232{width:46.908000px;}
._42_c00232{width:49.026000px;}
._35_c00232{width:50.088000px;}
._1d_c00232{width:51.360000px;}
._41_c00232{width:53.403000px;}
._3f_c00232{width:54.612000px;}
._2a_c00232{width:55.716000px;}
._36_c00232{width:58.122000px;}
._33_c00232{width:59.592000px;}
._2f_c00232{width:66.435000px;}
._12_c00232{width:69.903000px;}
._37_c00232{width:74.724000px;}
._40_c00232{width:83.412000px;}
._5_c00232{width:86.970000px;}
._b_c00232{width:90.870000px;}
._43_c00232{width:94.707000px;}
._17_c00232{width:114.894000px;}
._19_c00232{width:118.404000px;}
._21_c00232{width:122.076000px;}
._9_c00232{width:192.756000px;}
._28_c00232{width:195.240000px;}
._e_c00232{width:202.797000px;}
._c_c00232{width:300.090000px;}
._10_c00232{width:365.715000px;}
._3_c00232{width:502.251000px;}
._47_c00232{width:932.736000px;}
.fc2_c00232{color:transparent;}
.fc1_c00232{color:rgb(128,128,128);}
.fc0_c00232{color:rgb(0,0,0);}
.fs3_c00232{font-size:27.000000px;}
.fs1_c00232{font-size:30.000000px;}
.fs8_c00232{font-size:48.000000px;}
.fs2_c00232{font-size:60.000000px;}
.fs7_c00232{font-size:84.000000px;}
.fs0_c00232{font-size:87.000000px;}
.fs6_c00232{font-size:96.000000px;}
.fs4_c00232{font-size:117.000000px;}
.fs5_c00232{font-size:144.000000px;}
.y0_c00232{bottom:0.000000px;}
.y24_c00232{bottom:3.105000px;}
.y23_c00232{bottom:7.228371px;}
.y22_c00232{bottom:61.065000px;}
.y21_c00232{bottom:96.315000px;}
.y20_c00232{bottom:130.665000px;}
.y1f_c00232{bottom:164.115000px;}
.y1e_c00232{bottom:198.465000px;}
.y1d_c00232{bottom:232.215000px;}
.y1c_c00232{bottom:266.265000px;}
.y1b_c00232{bottom:300.015000px;}
.y1a_c00232{bottom:333.765000px;}
.y19_c00232{bottom:367.515000px;}
.y18_c00232{bottom:400.365000px;}
.y17_c00232{bottom:434.415000px;}
.y16_c00232{bottom:467.565000px;}
.y15_c00232{bottom:501.315000px;}
.y14_c00232{bottom:534.615000px;}
.y13_c00232{bottom:567.765000px;}
.y12_c00232{bottom:601.215000px;}
.y11_c00232{bottom:633.915000px;}
.y10_c00232{bottom:666.915000px;}
.yf_c00232{bottom:700.965000px;}
.ye_c00232{bottom:733.515000px;}
.yd_c00232{bottom:767.115000px;}
.yc_c00232{bottom:800.565000px;}
.yb_c00232{bottom:832.965000px;}
.ya_c00232{bottom:866.415000px;}
.y9_c00232{bottom:900.465000px;}
.y8_c00232{bottom:933.915000px;}
.y7_c00232{bottom:967.965000px;}
.y6_c00232{bottom:1038.465000px;}
.y5_c00232{bottom:1089.765000px;}
.y4_c00232{bottom:1140.165000px;}
.y3_c00232{bottom:1191.015000px;}
.y2_c00232{bottom:1242.315000px;}
.y1_c00232{bottom:1249.515000px;}
.h7_c00232{height:13.200074px;}
.h8_c00232{height:43.804688px;}
.h3_c00232{height:58.886719px;}
.h2_c00232{height:110.151855px;}
.h6_c00232{height:121.546875px;}
.h4_c00232{height:124.839000px;}
.h5_c00232{height:182.320312px;}
.h0_c00232{height:1360.275000px;}
.h1_c00232{height:1360.500000px;}
.w2_c00232{width:104.875500px;}
.w1_c00232{width:863.250000px;}
.w0_c00232{width:863.475000px;}
.x0_c00232{left:0.000000px;}
.xb_c00232{left:55.950000px;}
.xc_c00232{left:57.600000px;}
.xa_c00232{left:58.650000px;}
.x9_c00232{left:59.700000px;}
.xd_c00232{left:60.750000px;}
.xe_c00232{left:61.800000px;}
.xf_c00232{left:63.450000px;}
.x3_c00232{left:64.500000px;}
.x2_c00232{left:95.850000px;}
.x10_c00232{left:98.550000px;}
.x7_c00232{left:126.150000px;}
.x4_c00232{left:127.800000px;}
.x5_c00232{left:171.000000px;}
.x6_c00232{left:291.300000px;}
.x8_c00232{left:310.200000px;}
.x1_c00232{left:335.850000px;}
.x11_c00232{left:383.551758px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls4_c00232{letter-spacing:-5.333333pt;}
.ls2_c00232{letter-spacing:-2.666667pt;}
.ls3_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:8.000000pt;}
.ls1_c00232{letter-spacing:45.333333pt;}
.ws0_c00232{word-spacing:-32.906667pt;}
.ws2_c00232{word-spacing:-30.848000pt;}
.ws1_c00232{word-spacing:-30.234667pt;}
.ws4_c00232{word-spacing:-17.994667pt;}
.ws5_c00232{word-spacing:0.000000pt;}
.ws3_c00232{word-spacing:6.293333pt;}
._22_c00232{margin-left:-72.704000pt;}
._a_c00232{margin-left:-57.520000pt;}
._8_c00232{margin-left:-50.506667pt;}
._4_c00232{margin-left:-47.280000pt;}
._7_c00232{margin-left:-26.426667pt;}
._44_c00232{margin-left:-22.776000pt;}
._0_c00232{margin-left:-20.493333pt;}
._45_c00232{margin-left:-16.661333pt;}
._2_c00232{margin-left:-12.682667pt;}
._6_c00232{margin-left:-10.933333pt;}
._26_c00232{margin-left:-9.045333pt;}
._d_c00232{margin-left:-6.840000pt;}
._1f_c00232{margin-left:-5.376000pt;}
._1e_c00232{margin-left:-4.224000pt;}
._f_c00232{margin-left:-2.400000pt;}
._23_c00232{margin-left:-1.312000pt;}
._1c_c00232{width:0.896000pt;}
._11_c00232{width:2.400000pt;}
._25_c00232{width:3.776000pt;}
._2e_c00232{width:5.032000pt;}
._2c_c00232{width:6.048000pt;}
._27_c00232{width:7.413333pt;}
._30_c00232{width:8.552000pt;}
._2b_c00232{width:9.570667pt;}
._1_c00232{width:10.981333pt;}
._1a_c00232{width:12.584000pt;}
._3c_c00232{width:14.336000pt;}
._14_c00232{width:16.016000pt;}
._3d_c00232{width:16.989333pt;}
._24_c00232{width:18.474667pt;}
._13_c00232{width:19.448000pt;}
._1b_c00232{width:20.384000pt;}
._34_c00232{width:22.381333pt;}
._15_c00232{width:23.400000pt;}
._16_c00232{width:24.648000pt;}
._3a_c00232{width:26.944000pt;}
._2d_c00232{width:28.426667pt;}
._31_c00232{width:31.200000pt;}
._3b_c00232{width:32.952000pt;}
._29_c00232{width:34.218667pt;}
._46_c00232{width:35.109333pt;}
._39_c00232{width:36.224000pt;}
._18_c00232{width:37.290667pt;}
._38_c00232{width:38.501333pt;}
._3e_c00232{width:39.509333pt;}
._32_c00232{width:40.533333pt;}
._20_c00232{width:41.696000pt;}
._42_c00232{width:43.578667pt;}
._35_c00232{width:44.522667pt;}
._1d_c00232{width:45.653333pt;}
._41_c00232{width:47.469333pt;}
._3f_c00232{width:48.544000pt;}
._2a_c00232{width:49.525333pt;}
._36_c00232{width:51.664000pt;}
._33_c00232{width:52.970667pt;}
._2f_c00232{width:59.053333pt;}
._12_c00232{width:62.136000pt;}
._37_c00232{width:66.421333pt;}
._40_c00232{width:74.144000pt;}
._5_c00232{width:77.306667pt;}
._b_c00232{width:80.773333pt;}
._43_c00232{width:84.184000pt;}
._17_c00232{width:102.128000pt;}
._19_c00232{width:105.248000pt;}
._21_c00232{width:108.512000pt;}
._9_c00232{width:171.338667pt;}
._28_c00232{width:173.546667pt;}
._e_c00232{width:180.264000pt;}
._c_c00232{width:266.746667pt;}
._10_c00232{width:325.080000pt;}
._3_c00232{width:446.445333pt;}
._47_c00232{width:829.098667pt;}
.fs3_c00232{font-size:24.000000pt;}
.fs1_c00232{font-size:26.666667pt;}
.fs8_c00232{font-size:42.666667pt;}
.fs2_c00232{font-size:53.333333pt;}
.fs7_c00232{font-size:74.666667pt;}
.fs0_c00232{font-size:77.333333pt;}
.fs6_c00232{font-size:85.333333pt;}
.fs4_c00232{font-size:104.000000pt;}
.fs5_c00232{font-size:128.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y24_c00232{bottom:2.760000pt;}
.y23_c00232{bottom:6.425219pt;}
.y22_c00232{bottom:54.280000pt;}
.y21_c00232{bottom:85.613333pt;}
.y20_c00232{bottom:116.146667pt;}
.y1f_c00232{bottom:145.880000pt;}
.y1e_c00232{bottom:176.413333pt;}
.y1d_c00232{bottom:206.413333pt;}
.y1c_c00232{bottom:236.680000pt;}
.y1b_c00232{bottom:266.680000pt;}
.y1a_c00232{bottom:296.680000pt;}
.y19_c00232{bottom:326.680000pt;}
.y18_c00232{bottom:355.880000pt;}
.y17_c00232{bottom:386.146667pt;}
.y16_c00232{bottom:415.613333pt;}
.y15_c00232{bottom:445.613333pt;}
.y14_c00232{bottom:475.213333pt;}
.y13_c00232{bottom:504.680000pt;}
.y12_c00232{bottom:534.413333pt;}
.y11_c00232{bottom:563.480000pt;}
.y10_c00232{bottom:592.813333pt;}
.yf_c00232{bottom:623.080000pt;}
.ye_c00232{bottom:652.013333pt;}
.yd_c00232{bottom:681.880000pt;}
.yc_c00232{bottom:711.613333pt;}
.yb_c00232{bottom:740.413333pt;}
.ya_c00232{bottom:770.146667pt;}
.y9_c00232{bottom:800.413333pt;}
.y8_c00232{bottom:830.146667pt;}
.y7_c00232{bottom:860.413333pt;}
.y6_c00232{bottom:923.080000pt;}
.y5_c00232{bottom:968.680000pt;}
.y4_c00232{bottom:1013.480000pt;}
.y3_c00232{bottom:1058.680000pt;}
.y2_c00232{bottom:1104.280000pt;}
.y1_c00232{bottom:1110.680000pt;}
.h7_c00232{height:11.733399pt;}
.h8_c00232{height:38.937500pt;}
.h3_c00232{height:52.343750pt;}
.h2_c00232{height:97.912760pt;}
.h6_c00232{height:108.041667pt;}
.h4_c00232{height:110.968000pt;}
.h5_c00232{height:162.062500pt;}
.h0_c00232{height:1209.133333pt;}
.h1_c00232{height:1209.333333pt;}
.w2_c00232{width:93.222667pt;}
.w1_c00232{width:767.333333pt;}
.w0_c00232{width:767.533333pt;}
.x0_c00232{left:0.000000pt;}
.xb_c00232{left:49.733333pt;}
.xc_c00232{left:51.200000pt;}
.xa_c00232{left:52.133333pt;}
.x9_c00232{left:53.066667pt;}
.xd_c00232{left:54.000000pt;}
.xe_c00232{left:54.933333pt;}
.xf_c00232{left:56.400000pt;}
.x3_c00232{left:57.333333pt;}
.x2_c00232{left:85.200000pt;}
.x10_c00232{left:87.600000pt;}
.x7_c00232{left:112.133333pt;}
.x4_c00232{left:113.600000pt;}
.x5_c00232{left:152.000000pt;}
.x6_c00232{left:258.933333pt;}
.x8_c00232{left:275.733333pt;}
.x1_c00232{left:298.533333pt;}
.x11_c00232{left:340.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_003fabdd97f53e77662f717c.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_5e13decd4a075aa72ddd3109.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls2_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:9.120000px;}
.ls3_c00233{letter-spacing:18.000000px;}
.ls1_c00233{letter-spacing:23.652000px;}
.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;}
}
.ws1_c00233{word-spacing:-63.504000px;}
.ws0_c00233{word-spacing:-41.136000px;}
.ws2_c00233{word-spacing:-14.460000px;}
.ws3_c00233{word-spacing:0.000000px;}
._3c_c00233{margin-left:-39.840000px;}
._2f_c00233{margin-left:-28.128000px;}
._23_c00233{margin-left:-16.608000px;}
._17_c00233{margin-left:-13.440000px;}
._3b_c00233{margin-left:-12.000000px;}
._31_c00233{margin-left:-9.888000px;}
._3d_c00233{margin-left:-8.736000px;}
._1c_c00233{margin-left:-7.296000px;}
._2e_c00233{margin-left:-5.544000px;}
._15_c00233{margin-left:-3.552000px;}
._3f_c00233{margin-left:-2.544000px;}
._0_c00233{margin-left:-1.536000px;}
._c_c00233{width:1.440000px;}
._6_c00233{width:2.688000px;}
._3_c00233{width:3.744000px;}
._3e_c00233{width:4.752000px;}
._5_c00233{width:5.760000px;}
._2_c00233{width:7.680000px;}
._9_c00233{width:8.832000px;}
._11_c00233{width:10.080000px;}
._21_c00233{width:11.232000px;}
._8_c00233{width:12.960000px;}
._18_c00233{width:14.976000px;}
._1a_c00233{width:16.512000px;}
._19_c00233{width:17.952000px;}
._b_c00233{width:19.296000px;}
._2a_c00233{width:20.544000px;}
._14_c00233{width:21.792000px;}
._3a_c00233{width:24.288000px;}
._f_c00233{width:25.536000px;}
._1d_c00233{width:26.880000px;}
._7_c00233{width:28.128000px;}
._10_c00233{width:29.760000px;}
._1_c00233{width:31.968000px;}
._29_c00233{width:33.168000px;}
._4_c00233{width:34.176000px;}
._1b_c00233{width:36.288000px;}
._a_c00233{width:38.400000px;}
._36_c00233{width:39.648000px;}
._12_c00233{width:40.992000px;}
._e_c00233{width:42.240000px;}
._26_c00233{width:43.488000px;}
._28_c00233{width:45.408000px;}
._d_c00233{width:46.656000px;}
._25_c00233{width:48.000000px;}
._37_c00233{width:49.728000px;}
._27_c00233{width:51.744000px;}
._24_c00233{width:52.896000px;}
._16_c00233{width:54.816000px;}
._40_c00233{width:55.872000px;}
._35_c00233{width:59.040000px;}
._13_c00233{width:60.864000px;}
._2b_c00233{width:62.400000px;}
._22_c00233{width:63.744000px;}
._42_c00233{width:67.392000px;}
._2c_c00233{width:80.160000px;}
._38_c00233{width:82.560000px;}
._2d_c00233{width:92.640000px;}
._34_c00233{width:101.280000px;}
._41_c00233{width:122.976000px;}
._20_c00233{width:185.664000px;}
._30_c00233{width:205.704000px;}
._1f_c00233{width:292.224000px;}
._33_c00233{width:541.536000px;}
._39_c00233{width:667.680000px;}
._32_c00233{width:674.400000px;}
._1e_c00233{width:1146.240000px;}
._43_c00233{width:1988.352000px;}
.fc2_c00233{color:transparent;}
.fc1_c00233{color:rgb(128,128,128);}
.fc0_c00233{color:rgb(0,0,0);}
.fs3_c00233{font-size:48.000000px;}
.fs2_c00233{font-size:60.000000px;}
.fs1_c00233{font-size:84.000000px;}
.fs0_c00233{font-size:96.000000px;}
.y0_c00233{bottom:0.000000px;}
.y26_c00233{bottom:3.105000px;}
.y25_c00233{bottom:7.228357px;}
.y24_c00233{bottom:75.630000px;}
.y23_c00233{bottom:107.730000px;}
.y22_c00233{bottom:141.780000px;}
.y21_c00233{bottom:175.830000px;}
.y20_c00233{bottom:209.880000px;}
.y1f_c00233{bottom:243.780000px;}
.y1e_c00233{bottom:278.430000px;}
.y1d_c00233{bottom:312.480000px;}
.y1c_c00233{bottom:346.380000px;}
.y1b_c00233{bottom:380.730000px;}
.y1a_c00233{bottom:414.780000px;}
.y19_c00233{bottom:447.630000px;}
.y18_c00233{bottom:482.580000px;}
.y17_c00233{bottom:516.480000px;}
.y16_c00233{bottom:550.530000px;}
.y15_c00233{bottom:583.980000px;}
.y14_c00233{bottom:618.030000px;}
.y13_c00233{bottom:651.480000px;}
.y12_c00233{bottom:684.180000px;}
.y11_c00233{bottom:718.530000px;}
.y10_c00233{bottom:751.980000px;}
.yf_c00233{bottom:785.430000px;}
.ye_c00233{bottom:819.480000px;}
.yd_c00233{bottom:852.630000px;}
.yc_c00233{bottom:886.380000px;}
.yb_c00233{bottom:919.680000px;}
.ya_c00233{bottom:952.830000px;}
.y9_c00233{bottom:986.280000px;}
.y8_c00233{bottom:1019.880000px;}
.y7_c00233{bottom:1051.080000px;}
.y6_c00233{bottom:1086.180000px;}
.y5_c00233{bottom:1119.780000px;}
.y4_c00233{bottom:1153.380000px;}
.y3_c00233{bottom:1186.380000px;}
.y2_c00233{bottom:1219.380000px;}
.y1_c00233{bottom:1252.230000px;}
.h4_c00233{height:13.200074px;}
.h5_c00233{height:43.804688px;}
.h3_c00233{height:75.966797px;}
.h2_c00233{height:121.546875px;}
.h0_c00233{height:1382.700000px;}
.h1_c00233{height:1383.000000px;}
.w2_c00233{width:104.875500px;}
.w0_c00233{width:863.175000px;}
.w1_c00233{width:863.250000px;}
.x0_c00233{left:0.000000px;}
.x9_c00233{left:134.700000px;}
.x8_c00233{left:138.450000px;}
.x5_c00233{left:145.050000px;}
.x6_c00233{left:207.150000px;}
.xa_c00233{left:249.750000px;}
.x1_c00233{left:250.800000px;}
.x2_c00233{left:252.000000px;}
.x3_c00233{left:253.500000px;}
.x4_c00233{left:254.700000px;}
.x7_c00233{left:255.750000px;}
.xe_c00233{left:257.250000px;}
.xf_c00233{left:383.401749px;}
.xb_c00233{left:403.350000px;}
.xc_c00233{left:777.750000px;}
.xd_c00233{left:799.800000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls2_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:8.106667pt;}
.ls3_c00233{letter-spacing:16.000000pt;}
.ls1_c00233{letter-spacing:21.024000pt;}
.ws1_c00233{word-spacing:-56.448000pt;}
.ws0_c00233{word-spacing:-36.565333pt;}
.ws2_c00233{word-spacing:-12.853333pt;}
.ws3_c00233{word-spacing:0.000000pt;}
._3c_c00233{margin-left:-35.413333pt;}
._2f_c00233{margin-left:-25.002667pt;}
._23_c00233{margin-left:-14.762667pt;}
._17_c00233{margin-left:-11.946667pt;}
._3b_c00233{margin-left:-10.666667pt;}
._31_c00233{margin-left:-8.789333pt;}
._3d_c00233{margin-left:-7.765333pt;}
._1c_c00233{margin-left:-6.485333pt;}
._2e_c00233{margin-left:-4.928000pt;}
._15_c00233{margin-left:-3.157333pt;}
._3f_c00233{margin-left:-2.261333pt;}
._0_c00233{margin-left:-1.365333pt;}
._c_c00233{width:1.280000pt;}
._6_c00233{width:2.389333pt;}
._3_c00233{width:3.328000pt;}
._3e_c00233{width:4.224000pt;}
._5_c00233{width:5.120000pt;}
._2_c00233{width:6.826667pt;}
._9_c00233{width:7.850667pt;}
._11_c00233{width:8.960000pt;}
._21_c00233{width:9.984000pt;}
._8_c00233{width:11.520000pt;}
._18_c00233{width:13.312000pt;}
._1a_c00233{width:14.677333pt;}
._19_c00233{width:15.957333pt;}
._b_c00233{width:17.152000pt;}
._2a_c00233{width:18.261333pt;}
._14_c00233{width:19.370667pt;}
._3a_c00233{width:21.589333pt;}
._f_c00233{width:22.698667pt;}
._1d_c00233{width:23.893333pt;}
._7_c00233{width:25.002667pt;}
._10_c00233{width:26.453333pt;}
._1_c00233{width:28.416000pt;}
._29_c00233{width:29.482667pt;}
._4_c00233{width:30.378667pt;}
._1b_c00233{width:32.256000pt;}
._a_c00233{width:34.133333pt;}
._36_c00233{width:35.242667pt;}
._12_c00233{width:36.437333pt;}
._e_c00233{width:37.546667pt;}
._26_c00233{width:38.656000pt;}
._28_c00233{width:40.362667pt;}
._d_c00233{width:41.472000pt;}
._25_c00233{width:42.666667pt;}
._37_c00233{width:44.202667pt;}
._27_c00233{width:45.994667pt;}
._24_c00233{width:47.018667pt;}
._16_c00233{width:48.725333pt;}
._40_c00233{width:49.664000pt;}
._35_c00233{width:52.480000pt;}
._13_c00233{width:54.101333pt;}
._2b_c00233{width:55.466667pt;}
._22_c00233{width:56.661333pt;}
._42_c00233{width:59.904000pt;}
._2c_c00233{width:71.253333pt;}
._38_c00233{width:73.386667pt;}
._2d_c00233{width:82.346667pt;}
._34_c00233{width:90.026667pt;}
._41_c00233{width:109.312000pt;}
._20_c00233{width:165.034667pt;}
._30_c00233{width:182.848000pt;}
._1f_c00233{width:259.754667pt;}
._33_c00233{width:481.365333pt;}
._39_c00233{width:593.493333pt;}
._32_c00233{width:599.466667pt;}
._1e_c00233{width:1018.880000pt;}
._43_c00233{width:1767.424000pt;}
.fs3_c00233{font-size:42.666667pt;}
.fs2_c00233{font-size:53.333333pt;}
.fs1_c00233{font-size:74.666667pt;}
.fs0_c00233{font-size:85.333333pt;}
.y0_c00233{bottom:0.000000pt;}
.y26_c00233{bottom:2.760000pt;}
.y25_c00233{bottom:6.425206pt;}
.y24_c00233{bottom:67.226667pt;}
.y23_c00233{bottom:95.760000pt;}
.y22_c00233{bottom:126.026667pt;}
.y21_c00233{bottom:156.293333pt;}
.y20_c00233{bottom:186.560000pt;}
.y1f_c00233{bottom:216.693333pt;}
.y1e_c00233{bottom:247.493333pt;}
.y1d_c00233{bottom:277.760000pt;}
.y1c_c00233{bottom:307.893333pt;}
.y1b_c00233{bottom:338.426667pt;}
.y1a_c00233{bottom:368.693333pt;}
.y19_c00233{bottom:397.893333pt;}
.y18_c00233{bottom:428.960000pt;}
.y17_c00233{bottom:459.093333pt;}
.y16_c00233{bottom:489.360000pt;}
.y15_c00233{bottom:519.093333pt;}
.y14_c00233{bottom:549.360000pt;}
.y13_c00233{bottom:579.093333pt;}
.y12_c00233{bottom:608.160000pt;}
.y11_c00233{bottom:638.693333pt;}
.y10_c00233{bottom:668.426667pt;}
.yf_c00233{bottom:698.160000pt;}
.ye_c00233{bottom:728.426667pt;}
.yd_c00233{bottom:757.893333pt;}
.yc_c00233{bottom:787.893333pt;}
.yb_c00233{bottom:817.493333pt;}
.ya_c00233{bottom:846.960000pt;}
.y9_c00233{bottom:876.693333pt;}
.y8_c00233{bottom:906.560000pt;}
.y7_c00233{bottom:934.293333pt;}
.y6_c00233{bottom:965.493333pt;}
.y5_c00233{bottom:995.360000pt;}
.y4_c00233{bottom:1025.226667pt;}
.y3_c00233{bottom:1054.560000pt;}
.y2_c00233{bottom:1083.893333pt;}
.y1_c00233{bottom:1113.093333pt;}
.h4_c00233{height:11.733399pt;}
.h5_c00233{height:38.937500pt;}
.h3_c00233{height:67.526042pt;}
.h2_c00233{height:108.041667pt;}
.h0_c00233{height:1229.066667pt;}
.h1_c00233{height:1229.333333pt;}
.w2_c00233{width:93.222667pt;}
.w0_c00233{width:767.266667pt;}
.w1_c00233{width:767.333333pt;}
.x0_c00233{left:0.000000pt;}
.x9_c00233{left:119.733333pt;}
.x8_c00233{left:123.066667pt;}
.x5_c00233{left:128.933333pt;}
.x6_c00233{left:184.133333pt;}
.xa_c00233{left:222.000000pt;}
.x1_c00233{left:222.933333pt;}
.x2_c00233{left:224.000000pt;}
.x3_c00233{left:225.333333pt;}
.x4_c00233{left:226.400000pt;}
.x7_c00233{left:227.333333pt;}
.xe_c00233{left:228.666667pt;}
.xf_c00233{left:340.801554pt;}
.xb_c00233{left:358.533333pt;}
.xc_c00233{left:691.333333pt;}
.xd_c00233{left:710.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10ceef19f63cc70067156601.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_36fb475d316023a3ff20e4ba.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_828edc7e8baddcd9e6a9db48.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls2_c00234{letter-spacing:0.000000px;}
.ls3_c00234{letter-spacing:12.000000px;}
.ls0_c00234{letter-spacing:15.456000px;}
.ls1_c00234{letter-spacing:33.600000px;}
.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:-78.960000px;}
.ws0_c00234{word-spacing:-63.504000px;}
.ws2_c00234{word-spacing:-34.704000px;}
.ws3_c00234{word-spacing:0.000000px;}
._2d_c00234{margin-left:-85.824000px;}
._2_c00234{margin-left:-24.960000px;}
._34_c00234{margin-left:-15.456000px;}
._37_c00234{margin-left:-13.248000px;}
._c_c00234{margin-left:-11.712000px;}
._30_c00234{margin-left:-9.444000px;}
._1c_c00234{margin-left:-7.776000px;}
._28_c00234{margin-left:-5.964000px;}
._39_c00234{margin-left:-4.752000px;}
._2b_c00234{margin-left:-3.360000px;}
._16_c00234{margin-left:-2.208000px;}
._25_c00234{margin-left:-1.068000px;}
._10_c00234{width:1.440000px;}
._7_c00234{width:2.496000px;}
._a_c00234{width:3.648000px;}
._6_c00234{width:4.992000px;}
._0_c00234{width:6.432000px;}
._13_c00234{width:7.776000px;}
._4_c00234{width:8.832000px;}
._3_c00234{width:10.464000px;}
._12_c00234{width:12.096000px;}
._22_c00234{width:13.152000px;}
._15_c00234{width:14.304000px;}
._1e_c00234{width:15.444000px;}
._36_c00234{width:16.704000px;}
._1f_c00234{width:17.760000px;}
._b_c00234{width:19.584000px;}
._5_c00234{width:21.312000px;}
._1d_c00234{width:25.152000px;}
._9_c00234{width:26.496000px;}
._1b_c00234{width:27.840000px;}
._d_c00234{width:29.664000px;}
._17_c00234{width:32.160000px;}
._8_c00234{width:33.888000px;}
._23_c00234{width:35.136000px;}
._19_c00234{width:36.384000px;}
._18_c00234{width:38.220000px;}
._f_c00234{width:39.360000px;}
._1a_c00234{width:41.280000px;}
._24_c00234{width:42.528000px;}
._26_c00234{width:44.148000px;}
._20_c00234{width:45.600000px;}
._14_c00234{width:47.136000px;}
._29_c00234{width:50.112000px;}
._11_c00234{width:51.552000px;}
._21_c00234{width:53.172000px;}
._2c_c00234{width:56.544000px;}
._2a_c00234{width:60.672000px;}
._32_c00234{width:62.160000px;}
._2e_c00234{width:63.948000px;}
._27_c00234{width:67.200000px;}
._35_c00234{width:71.136000px;}
._e_c00234{width:76.032000px;}
._2f_c00234{width:85.632000px;}
._33_c00234{width:111.984000px;}
._1_c00234{width:117.120000px;}
._31_c00234{width:178.848000px;}
._38_c00234{width:1727.760000px;}
.fc2_c00234{color:transparent;}
.fc1_c00234{color:rgb(128,128,128);}
.fc0_c00234{color:rgb(0,0,0);}
.fs5_c00234{font-size:48.000000px;}
.fs1_c00234{font-size:84.000000px;}
.fs3_c00234{font-size:87.000000px;}
.fs0_c00234{font-size:96.000000px;}
.fs4_c00234{font-size:102.000000px;}
.fs2_c00234{font-size:144.000000px;}
.y0_c00234{bottom:0.000000px;}
.y24_c00234{bottom:3.105000px;}
.y23_c00234{bottom:7.228355px;}
.y22_c00234{bottom:60.735000px;}
.y21_c00234{bottom:95.085000px;}
.y20_c00234{bottom:129.285000px;}
.y1f_c00234{bottom:163.335000px;}
.y1e_c00234{bottom:197.685000px;}
.y1d_c00234{bottom:231.135000px;}
.y1c_c00234{bottom:264.885000px;}
.y1b_c00234{bottom:298.035000px;}
.y1a_c00234{bottom:332.685000px;}
.y19_c00234{bottom:406.635000px;}
.y18_c00234{bottom:441.135000px;}
.y17_c00234{bottom:457.635000px;}
.y16_c00234{bottom:533.835000px;}
.y15_c00234{bottom:567.885000px;}
.y14_c00234{bottom:601.335000px;}
.y13_c00234{bottom:634.185000px;}
.y12_c00234{bottom:667.485000px;}
.y11_c00234{bottom:700.635000px;}
.y10_c00234{bottom:733.935000px;}
.yf_c00234{bottom:767.685000px;}
.ye_c00234{bottom:800.835000px;}
.yd_c00234{bottom:833.535000px;}
.yc_c00234{bottom:866.985000px;}
.yb_c00234{bottom:899.685000px;}
.ya_c00234{bottom:933.885000px;}
.y9_c00234{bottom:966.285000px;}
.y8_c00234{bottom:999.885000px;}
.y7_c00234{bottom:1033.785000px;}
.y6_c00234{bottom:1066.785000px;}
.y5_c00234{bottom:1099.485000px;}
.y4_c00234{bottom:1132.935000px;}
.y3_c00234{bottom:1166.385000px;}
.y2_c00234{bottom:1199.685000px;}
.y1_c00234{bottom:1236.585000px;}
.h5_c00234{height:13.200074px;}
.h6_c00234{height:43.804688px;}
.h4_c00234{height:101.825684px;}
.h2_c00234{height:121.546875px;}
.h3_c00234{height:182.320312px;}
.h1_c00234{height:1353.000000px;}
.h0_c00234{height:1353.225000px;}
.w2_c00234{width:104.875500px;}
.w0_c00234{width:858.600000px;}
.w1_c00234{width:858.750000px;}
.x0_c00234{left:0.000000px;}
.x6_c00234{left:64.500000px;}
.x7_c00234{left:66.600000px;}
.x5_c00234{left:67.800000px;}
.x8_c00234{left:68.850000px;}
.x3_c00234{left:70.500000px;}
.x4_c00234{left:71.550000px;}
.x2_c00234{left:72.600000px;}
.x9_c00234{left:73.950000px;}
.xf_c00234{left:75.900000px;}
.x11_c00234{left:76.950000px;}
.x10_c00234{left:78.000000px;}
.x1_c00234{left:123.900000px;}
.xc_c00234{left:126.600000px;}
.xd_c00234{left:230.850000px;}
.xb_c00234{left:317.250000px;}
.xe_c00234{left:324.750000px;}
.x12_c00234{left:381.114258px;}
.xa_c00234{left:561.600000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls2_c00234{letter-spacing:0.000000pt;}
.ls3_c00234{letter-spacing:10.666667pt;}
.ls0_c00234{letter-spacing:13.738667pt;}
.ls1_c00234{letter-spacing:29.866667pt;}
.ws1_c00234{word-spacing:-70.186667pt;}
.ws0_c00234{word-spacing:-56.448000pt;}
.ws2_c00234{word-spacing:-30.848000pt;}
.ws3_c00234{word-spacing:0.000000pt;}
._2d_c00234{margin-left:-76.288000pt;}
._2_c00234{margin-left:-22.186667pt;}
._34_c00234{margin-left:-13.738667pt;}
._37_c00234{margin-left:-11.776000pt;}
._c_c00234{margin-left:-10.410667pt;}
._30_c00234{margin-left:-8.394667pt;}
._1c_c00234{margin-left:-6.912000pt;}
._28_c00234{margin-left:-5.301333pt;}
._39_c00234{margin-left:-4.224000pt;}
._2b_c00234{margin-left:-2.986667pt;}
._16_c00234{margin-left:-1.962667pt;}
._25_c00234{margin-left:-0.949333pt;}
._10_c00234{width:1.280000pt;}
._7_c00234{width:2.218667pt;}
._a_c00234{width:3.242667pt;}
._6_c00234{width:4.437333pt;}
._0_c00234{width:5.717333pt;}
._13_c00234{width:6.912000pt;}
._4_c00234{width:7.850667pt;}
._3_c00234{width:9.301333pt;}
._12_c00234{width:10.752000pt;}
._22_c00234{width:11.690667pt;}
._15_c00234{width:12.714667pt;}
._1e_c00234{width:13.728000pt;}
._36_c00234{width:14.848000pt;}
._1f_c00234{width:15.786667pt;}
._b_c00234{width:17.408000pt;}
._5_c00234{width:18.944000pt;}
._1d_c00234{width:22.357333pt;}
._9_c00234{width:23.552000pt;}
._1b_c00234{width:24.746667pt;}
._d_c00234{width:26.368000pt;}
._17_c00234{width:28.586667pt;}
._8_c00234{width:30.122667pt;}
._23_c00234{width:31.232000pt;}
._19_c00234{width:32.341333pt;}
._18_c00234{width:33.973333pt;}
._f_c00234{width:34.986667pt;}
._1a_c00234{width:36.693333pt;}
._24_c00234{width:37.802667pt;}
._26_c00234{width:39.242667pt;}
._20_c00234{width:40.533333pt;}
._14_c00234{width:41.898667pt;}
._29_c00234{width:44.544000pt;}
._11_c00234{width:45.824000pt;}
._21_c00234{width:47.264000pt;}
._2c_c00234{width:50.261333pt;}
._2a_c00234{width:53.930667pt;}
._32_c00234{width:55.253333pt;}
._2e_c00234{width:56.842667pt;}
._27_c00234{width:59.733333pt;}
._35_c00234{width:63.232000pt;}
._e_c00234{width:67.584000pt;}
._2f_c00234{width:76.117333pt;}
._33_c00234{width:99.541333pt;}
._1_c00234{width:104.106667pt;}
._31_c00234{width:158.976000pt;}
._38_c00234{width:1535.786667pt;}
.fs5_c00234{font-size:42.666667pt;}
.fs1_c00234{font-size:74.666667pt;}
.fs3_c00234{font-size:77.333333pt;}
.fs0_c00234{font-size:85.333333pt;}
.fs4_c00234{font-size:90.666667pt;}
.fs2_c00234{font-size:128.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y24_c00234{bottom:2.760000pt;}
.y23_c00234{bottom:6.425204pt;}
.y22_c00234{bottom:53.986667pt;}
.y21_c00234{bottom:84.520000pt;}
.y20_c00234{bottom:114.920000pt;}
.y1f_c00234{bottom:145.186667pt;}
.y1e_c00234{bottom:175.720000pt;}
.y1d_c00234{bottom:205.453333pt;}
.y1c_c00234{bottom:235.453333pt;}
.y1b_c00234{bottom:264.920000pt;}
.y1a_c00234{bottom:295.720000pt;}
.y19_c00234{bottom:361.453333pt;}
.y18_c00234{bottom:392.120000pt;}
.y17_c00234{bottom:406.786667pt;}
.y16_c00234{bottom:474.520000pt;}
.y15_c00234{bottom:504.786667pt;}
.y14_c00234{bottom:534.520000pt;}
.y13_c00234{bottom:563.720000pt;}
.y12_c00234{bottom:593.320000pt;}
.y11_c00234{bottom:622.786667pt;}
.y10_c00234{bottom:652.386667pt;}
.yf_c00234{bottom:682.386667pt;}
.ye_c00234{bottom:711.853333pt;}
.yd_c00234{bottom:740.920000pt;}
.yc_c00234{bottom:770.653333pt;}
.yb_c00234{bottom:799.720000pt;}
.ya_c00234{bottom:830.120000pt;}
.y9_c00234{bottom:858.920000pt;}
.y8_c00234{bottom:888.786667pt;}
.y7_c00234{bottom:918.920000pt;}
.y6_c00234{bottom:948.253333pt;}
.y5_c00234{bottom:977.320000pt;}
.y4_c00234{bottom:1007.053333pt;}
.y3_c00234{bottom:1036.786667pt;}
.y2_c00234{bottom:1066.386667pt;}
.y1_c00234{bottom:1099.186667pt;}
.h5_c00234{height:11.733399pt;}
.h6_c00234{height:38.937500pt;}
.h4_c00234{height:90.511719pt;}
.h2_c00234{height:108.041667pt;}
.h3_c00234{height:162.062500pt;}
.h1_c00234{height:1202.666667pt;}
.h0_c00234{height:1202.866667pt;}
.w2_c00234{width:93.222667pt;}
.w0_c00234{width:763.200000pt;}
.w1_c00234{width:763.333333pt;}
.x0_c00234{left:0.000000pt;}
.x6_c00234{left:57.333333pt;}
.x7_c00234{left:59.200000pt;}
.x5_c00234{left:60.266667pt;}
.x8_c00234{left:61.200000pt;}
.x3_c00234{left:62.666667pt;}
.x4_c00234{left:63.600000pt;}
.x2_c00234{left:64.533333pt;}
.x9_c00234{left:65.733333pt;}
.xf_c00234{left:67.466667pt;}
.x11_c00234{left:68.400000pt;}
.x10_c00234{left:69.333333pt;}
.x1_c00234{left:110.133333pt;}
.xc_c00234{left:112.533333pt;}
.xd_c00234{left:205.200000pt;}
.xb_c00234{left:282.000000pt;}
.xe_c00234{left:288.666667pt;}
.x12_c00234{left:338.768229pt;}
.xa_c00234{left:499.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_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_45e45861df94cbde65c07bd6.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_b344621b86d2758efcf773e3.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:-63.504000px;}
.ws1_c00235{word-spacing:-51.000000px;}
.ws2_c00235{word-spacing:0.000000px;}
._2b_c00235{margin-left:-20.064000px;}
._2c_c00235{margin-left:-14.496000px;}
._32_c00235{margin-left:-11.328000px;}
._21_c00235{margin-left:-9.000000px;}
._1e_c00235{margin-left:-6.624000px;}
._19_c00235{margin-left:-4.920000px;}
._2_c00235{margin-left:-2.784000px;}
._25_c00235{margin-left:-1.056000px;}
._1_c00235{width:1.440000px;}
._6_c00235{width:2.976000px;}
._0_c00235{width:4.032000px;}
._a_c00235{width:5.760000px;}
._12_c00235{width:7.392000px;}
._3_c00235{width:8.448000px;}
._4_c00235{width:9.984000px;}
._9_c00235{width:11.328000px;}
._8_c00235{width:13.056000px;}
._1c_c00235{width:15.072000px;}
._f_c00235{width:16.896000px;}
._15_c00235{width:19.200000px;}
._7_c00235{width:20.544000px;}
._28_c00235{width:21.792000px;}
._2e_c00235{width:24.864000px;}
._d_c00235{width:26.208000px;}
._b_c00235{width:27.840000px;}
._16_c00235{width:29.280000px;}
._29_c00235{width:30.528000px;}
._11_c00235{width:31.872000px;}
._2a_c00235{width:33.792000px;}
._e_c00235{width:34.944000px;}
._18_c00235{width:36.384000px;}
._1d_c00235{width:38.592000px;}
._c_c00235{width:40.416000px;}
._26_c00235{width:42.048000px;}
._13_c00235{width:43.296000px;}
._1a_c00235{width:44.736000px;}
._17_c00235{width:45.888000px;}
._14_c00235{width:47.040000px;}
._2d_c00235{width:49.344000px;}
._24_c00235{width:50.880000px;}
._27_c00235{width:53.760000px;}
._1b_c00235{width:55.824000px;}
._22_c00235{width:58.368000px;}
._2f_c00235{width:60.072000px;}
._30_c00235{width:61.632000px;}
._10_c00235{width:65.760000px;}
._23_c00235{width:72.672000px;}
._31_c00235{width:165.984000px;}
._20_c00235{width:172.368000px;}
._5_c00235{width:174.528000px;}
._1f_c00235{width:226.176000px;}
.fc2_c00235{color:transparent;}
.fc1_c00235{color:rgb(128,128,128);}
.fc0_c00235{color:rgb(0,0,0);}
.fs3_c00235{font-size:48.000000px;}
.fs1_c00235{font-size:84.000000px;}
.fs0_c00235{font-size:96.000000px;}
.fs2_c00235{font-size:102.000000px;}
.y0_c00235{bottom:0.000000px;}
.y25_c00235{bottom:3.105000px;}
.y24_c00235{bottom:7.228357px;}
.y23_c00235{bottom:78.630000px;}
.y22_c00235{bottom:210.630000px;}
.y21_c00235{bottom:246.030000px;}
.y20_c00235{bottom:280.530000px;}
.y1f_c00235{bottom:314.580000px;}
.y1_c00235{bottom:340.980000px;}
.y1e_c00235{bottom:348.630000px;}
.y1d_c00235{bottom:372.930000px;}
.y1c_c00235{bottom:383.130000px;}
.y1b_c00235{bottom:416.880000px;}
.y1a_c00235{bottom:450.930000px;}
.y19_c00235{bottom:484.680000px;}
.y18_c00235{bottom:518.730000px;}
.y17_c00235{bottom:552.480000px;}
.y16_c00235{bottom:586.530000px;}
.y15_c00235{bottom:619.980000px;}
.y14_c00235{bottom:653.130000px;}
.y13_c00235{bottom:686.580000px;}
.y12_c00235{bottom:720.630000px;}
.y11_c00235{bottom:754.080000px;}
.y10_c00235{bottom:787.680000px;}
.yf_c00235{bottom:821.580000px;}
.ye_c00235{bottom:855.180000px;}
.yd_c00235{bottom:888.930000px;}
.yc_c00235{bottom:921.480000px;}
.yb_c00235{bottom:954.780000px;}
.ya_c00235{bottom:988.980000px;}
.y9_c00235{bottom:1021.680000px;}
.y8_c00235{bottom:1055.130000px;}
.y7_c00235{bottom:1088.730000px;}
.y6_c00235{bottom:1122.180000px;}
.y5_c00235{bottom:1155.330000px;}
.y4_c00235{bottom:1188.630000px;}
.y3_c00235{bottom:1222.830000px;}
.y2_c00235{bottom:1255.530000px;}
.h4_c00235{height:13.200074px;}
.h5_c00235{height:43.804688px;}
.h3_c00235{height:98.314453px;}
.h2_c00235{height:121.546875px;}
.h0_c00235{height:1382.700000px;}
.h1_c00235{height:1383.000000px;}
.w2_c00235{width:104.875500px;}
.w0_c00235{width:863.175000px;}
.w1_c00235{width:863.250000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:145.500000px;}
.x7_c00235{left:257.850000px;}
.x3_c00235{left:261.000000px;}
.x4_c00235{left:262.200000px;}
.x8_c00235{left:263.250000px;}
.x5_c00235{left:264.300000px;}
.x9_c00235{left:265.500000px;}
.x2_c00235{left:312.900000px;}
.x6_c00235{left:315.150000px;}
.xa_c00235{left:366.150000px;}
.xc_c00235{left:383.401749px;}
.xb_c00235{left:779.550000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws0_c00235{word-spacing:-56.448000pt;}
.ws1_c00235{word-spacing:-45.333333pt;}
.ws2_c00235{word-spacing:0.000000pt;}
._2b_c00235{margin-left:-17.834667pt;}
._2c_c00235{margin-left:-12.885333pt;}
._32_c00235{margin-left:-10.069333pt;}
._21_c00235{margin-left:-8.000000pt;}
._1e_c00235{margin-left:-5.888000pt;}
._19_c00235{margin-left:-4.373333pt;}
._2_c00235{margin-left:-2.474667pt;}
._25_c00235{margin-left:-0.938667pt;}
._1_c00235{width:1.280000pt;}
._6_c00235{width:2.645333pt;}
._0_c00235{width:3.584000pt;}
._a_c00235{width:5.120000pt;}
._12_c00235{width:6.570667pt;}
._3_c00235{width:7.509333pt;}
._4_c00235{width:8.874667pt;}
._9_c00235{width:10.069333pt;}
._8_c00235{width:11.605333pt;}
._1c_c00235{width:13.397333pt;}
._f_c00235{width:15.018667pt;}
._15_c00235{width:17.066667pt;}
._7_c00235{width:18.261333pt;}
._28_c00235{width:19.370667pt;}
._2e_c00235{width:22.101333pt;}
._d_c00235{width:23.296000pt;}
._b_c00235{width:24.746667pt;}
._16_c00235{width:26.026667pt;}
._29_c00235{width:27.136000pt;}
._11_c00235{width:28.330667pt;}
._2a_c00235{width:30.037333pt;}
._e_c00235{width:31.061333pt;}
._18_c00235{width:32.341333pt;}
._1d_c00235{width:34.304000pt;}
._c_c00235{width:35.925333pt;}
._26_c00235{width:37.376000pt;}
._13_c00235{width:38.485333pt;}
._1a_c00235{width:39.765333pt;}
._17_c00235{width:40.789333pt;}
._14_c00235{width:41.813333pt;}
._2d_c00235{width:43.861333pt;}
._24_c00235{width:45.226667pt;}
._27_c00235{width:47.786667pt;}
._1b_c00235{width:49.621333pt;}
._22_c00235{width:51.882667pt;}
._2f_c00235{width:53.397333pt;}
._30_c00235{width:54.784000pt;}
._10_c00235{width:58.453333pt;}
._23_c00235{width:64.597333pt;}
._31_c00235{width:147.541333pt;}
._20_c00235{width:153.216000pt;}
._5_c00235{width:155.136000pt;}
._1f_c00235{width:201.045333pt;}
.fs3_c00235{font-size:42.666667pt;}
.fs1_c00235{font-size:74.666667pt;}
.fs0_c00235{font-size:85.333333pt;}
.fs2_c00235{font-size:90.666667pt;}
.y0_c00235{bottom:0.000000pt;}
.y25_c00235{bottom:2.760000pt;}
.y24_c00235{bottom:6.425206pt;}
.y23_c00235{bottom:69.893333pt;}
.y22_c00235{bottom:187.226667pt;}
.y21_c00235{bottom:218.693333pt;}
.y20_c00235{bottom:249.360000pt;}
.y1f_c00235{bottom:279.626667pt;}
.y1_c00235{bottom:303.093333pt;}
.y1e_c00235{bottom:309.893333pt;}
.y1d_c00235{bottom:331.493333pt;}
.y1c_c00235{bottom:340.560000pt;}
.y1b_c00235{bottom:370.560000pt;}
.y1a_c00235{bottom:400.826667pt;}
.y19_c00235{bottom:430.826667pt;}
.y18_c00235{bottom:461.093333pt;}
.y17_c00235{bottom:491.093333pt;}
.y16_c00235{bottom:521.360000pt;}
.y15_c00235{bottom:551.093333pt;}
.y14_c00235{bottom:580.560000pt;}
.y13_c00235{bottom:610.293333pt;}
.y12_c00235{bottom:640.560000pt;}
.y11_c00235{bottom:670.293333pt;}
.y10_c00235{bottom:700.160000pt;}
.yf_c00235{bottom:730.293333pt;}
.ye_c00235{bottom:760.160000pt;}
.yd_c00235{bottom:790.160000pt;}
.yc_c00235{bottom:819.093333pt;}
.yb_c00235{bottom:848.693333pt;}
.ya_c00235{bottom:879.093333pt;}
.y9_c00235{bottom:908.160000pt;}
.y8_c00235{bottom:937.893333pt;}
.y7_c00235{bottom:967.760000pt;}
.y6_c00235{bottom:997.493333pt;}
.y5_c00235{bottom:1026.960000pt;}
.y4_c00235{bottom:1056.560000pt;}
.y3_c00235{bottom:1086.960000pt;}
.y2_c00235{bottom:1116.026667pt;}
.h4_c00235{height:11.733399pt;}
.h5_c00235{height:38.937500pt;}
.h3_c00235{height:87.390625pt;}
.h2_c00235{height:108.041667pt;}
.h0_c00235{height:1229.066667pt;}
.h1_c00235{height:1229.333333pt;}
.w2_c00235{width:93.222667pt;}
.w0_c00235{width:767.266667pt;}
.w1_c00235{width:767.333333pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:129.333333pt;}
.x7_c00235{left:229.200000pt;}
.x3_c00235{left:232.000000pt;}
.x4_c00235{left:233.066667pt;}
.x8_c00235{left:234.000000pt;}
.x5_c00235{left:234.933333pt;}
.x9_c00235{left:236.000000pt;}
.x2_c00235{left:278.133333pt;}
.x6_c00235{left:280.133333pt;}
.xa_c00235{left:325.466667pt;}
.xc_c00235{left:340.801554pt;}
.xb_c00235{left:692.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_42ec389eb3efd87fa1084cc5.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_589b125e984d4a405b91eb09.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_108e79b114d387c53c0b095f.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_560a758105de5fa97a573148.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls1_c00236{letter-spacing:0.000000px;}
.ls2_c00236{letter-spacing:3.000000px;}
.ls4_c00236{letter-spacing:9.000000px;}
.ls3_c00236{letter-spacing:18.000000px;}
.ls0_c00236{letter-spacing:25.500000px;}
.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;}
}
.ws1_c00236{word-spacing:-41.136000px;}
.ws2_c00236{word-spacing:-20.244000px;}
.ws3_c00236{word-spacing:0.000000px;}
.ws0_c00236{word-spacing:0.307200px;}
._24_c00236{margin-left:-79.776000px;}
._40_c00236{margin-left:-75.168000px;}
._2f_c00236{margin-left:-67.788000px;}
._3e_c00236{margin-left:-38.568000px;}
._4e_c00236{margin-left:-35.328000px;}
._45_c00236{margin-left:-30.720000px;}
._51_c00236{margin-left:-27.228000px;}
._46_c00236{margin-left:-26.016000px;}
._2b_c00236{margin-left:-23.904000px;}
._41_c00236{margin-left:-20.160000px;}
._28_c00236{margin-left:-19.104000px;}
._48_c00236{margin-left:-18.048000px;}
._38_c00236{margin-left:-16.032000px;}
._30_c00236{margin-left:-13.176000px;}
._27_c00236{margin-left:-10.656000px;}
._33_c00236{margin-left:-8.640000px;}
._35_c00236{margin-left:-7.488000px;}
._1b_c00236{margin-left:-4.032000px;}
._4b_c00236{margin-left:-2.880000px;}
._11_c00236{margin-left:-1.824000px;}
._d_c00236{width:1.536000px;}
._c_c00236{width:2.784000px;}
._7_c00236{width:4.320000px;}
._16_c00236{width:5.376000px;}
._1_c00236{width:6.624000px;}
._1a_c00236{width:7.776000px;}
._0_c00236{width:8.832000px;}
._1e_c00236{width:10.272000px;}
._9_c00236{width:11.616000px;}
._4c_c00236{width:12.672000px;}
._8_c00236{width:14.016000px;}
._4a_c00236{width:15.379200px;}
._a_c00236{width:16.608000px;}
._b_c00236{width:18.528000px;}
._4_c00236{width:20.659200px;}
._3_c00236{width:22.348800px;}
._37_c00236{width:23.563200px;}
._5_c00236{width:24.652800px;}
._4d_c00236{width:25.824000px;}
._18_c00236{width:27.072000px;}
._1c_c00236{width:28.512000px;}
._12_c00236{width:29.760000px;}
._1d_c00236{width:30.816000px;}
._15_c00236{width:32.352000px;}
._20_c00236{width:33.792000px;}
._17_c00236{width:35.712000px;}
._f_c00236{width:36.960000px;}
._14_c00236{width:38.400000px;}
._10_c00236{width:40.128000px;}
._2a_c00236{width:41.376000px;}
._19_c00236{width:42.720000px;}
._29_c00236{width:44.448000px;}
._31_c00236{width:45.546000px;}
._22_c00236{width:46.560000px;}
._13_c00236{width:48.384000px;}
._26_c00236{width:50.208000px;}
._e_c00236{width:52.224000px;}
._21_c00236{width:53.472000px;}
._4f_c00236{width:55.987200px;}
._1f_c00236{width:60.000000px;}
._3d_c00236{width:61.308000px;}
._3a_c00236{width:64.296000px;}
._3b_c00236{width:73.980000px;}
._49_c00236{width:77.418000px;}
._3c_c00236{width:79.884000px;}
._2c_c00236{width:82.444800px;}
._2d_c00236{width:83.574000px;}
._6_c00236{width:87.566400px;}
._23_c00236{width:90.624000px;}
._25_c00236{width:98.688000px;}
._3f_c00236{width:101.088000px;}
._36_c00236{width:116.064000px;}
._34_c00236{width:120.576000px;}
._42_c00236{width:157.152000px;}
._44_c00236{width:214.176000px;}
._43_c00236{width:226.086000px;}
._2_c00236{width:319.416000px;}
._50_c00236{width:372.403200px;}
._47_c00236{width:379.488000px;}
._39_c00236{width:430.464000px;}
._32_c00236{width:731.808000px;}
._53_c00236{width:734.400000px;}
._52_c00236{width:1025.856000px;}
._2e_c00236{width:1683.312000px;}
.fc2_c00236{color:transparent;}
.fc1_c00236{color:rgb(128,128,128);}
.fc0_c00236{color:rgb(0,0,0);}
.fs6_c00236{font-size:24.000000px;}
.fs5_c00236{font-size:42.000000px;}
.fs7_c00236{font-size:48.000000px;}
.fs1_c00236{font-size:76.800000px;}
.fs3_c00236{font-size:84.000000px;}
.fs2_c00236{font-size:87.000000px;}
.fs0_c00236{font-size:96.000000px;}
.fs4_c00236{font-size:99.000000px;}
.y0_c00236{bottom:0.000000px;}
.y26_c00236{bottom:3.105000px;}
.y25_c00236{bottom:7.228369px;}
.y24_c00236{bottom:36.120000px;}
.y23_c00236{bottom:105.270000px;}
.y22_c00236{bottom:133.920000px;}
.y21_c00236{bottom:140.670000px;}
.y20_c00236{bottom:172.770000px;}
.y1f_c00236{bottom:207.870000px;}
.y1e_c00236{bottom:241.620000px;}
.y1d_c00236{bottom:274.620000px;}
.y1c_c00236{bottom:309.120000px;}
.y1b_c00236{bottom:342.270000px;}
.y1a_c00236{bottom:376.620000px;}
.y19_c00236{bottom:410.670000px;}
.y18_c00236{bottom:444.720000px;}
.y17_c00236{bottom:491.970000px;}
.y16_c00236{bottom:510.870000px;}
.y15_c00236{bottom:544.020000px;}
.y14_c00236{bottom:578.370000px;}
.y13_c00236{bottom:646.920000px;}
.y12_c00236{bottom:677.370000px;}
.y11_c00236{bottom:711.420000px;}
.y10_c00236{bottom:744.870000px;}
.yf_c00236{bottom:777.870000px;}
.ye_c00236{bottom:812.970000px;}
.yd_c00236{bottom:844.470000px;}
.yc_c00236{bottom:876.870000px;}
.yb_c00236{bottom:910.620000px;}
.ya_c00236{bottom:943.920000px;}
.y9_c00236{bottom:977.070000px;}
.y8_c00236{bottom:1010.370000px;}
.y7_c00236{bottom:1043.670000px;}
.y6_c00236{bottom:1076.970000px;}
.y5_c00236{bottom:1110.270000px;}
.y4_c00236{bottom:1143.720000px;}
.y3_c00236{bottom:1177.170000px;}
.y2_c00236{bottom:1209.570000px;}
.y1_c00236{bottom:1277.370000px;}
.h7_c00236{height:13.200073px;}
.h6_c00236{height:30.386719px;}
.h8_c00236{height:43.804688px;}
.h4_c00236{height:53.176758px;}
.h3_c00236{height:98.314453px;}
.h5_c00236{height:110.151855px;}
.h2_c00236{height:121.546875px;}
.h0_c00236{height:1383.450000px;}
.h1_c00236{height:1383.750000px;}
.w2_c00236{width:104.875500px;}
.w0_c00236{width:878.025000px;}
.w1_c00236{width:878.250000px;}
.x0_c00236{left:0.000000px;}
.x16_c00236{left:59.700000px;}
.x13_c00236{left:61.200000px;}
.x14_c00236{left:64.500000px;}
.xc_c00236{left:65.700000px;}
.xa_c00236{left:68.850000px;}
.x7_c00236{left:70.500000px;}
.x8_c00236{left:72.600000px;}
.x12_c00236{left:74.250000px;}
.xd_c00236{left:84.450000px;}
.x9_c00236{left:103.950000px;}
.x6_c00236{left:105.600000px;}
.x5_c00236{left:107.100000px;}
.x1_c00236{left:112.650000px;}
.xb_c00236{left:118.500000px;}
.xf_c00236{left:121.200000px;}
.x17_c00236{left:127.350000px;}
.x10_c00236{left:153.150000px;}
.x2_c00236{left:186.000000px;}
.x15_c00236{left:205.650000px;}
.x4_c00236{left:217.800000px;}
.x3_c00236{left:219.000000px;}
.x11_c00236{left:275.100000px;}
.xe_c00236{left:309.150000px;}
.x18_c00236{left:390.826721px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls1_c00236{letter-spacing:0.000000pt;}
.ls2_c00236{letter-spacing:2.666667pt;}
.ls4_c00236{letter-spacing:8.000000pt;}
.ls3_c00236{letter-spacing:16.000000pt;}
.ls0_c00236{letter-spacing:22.666667pt;}
.ws1_c00236{word-spacing:-36.565333pt;}
.ws2_c00236{word-spacing:-17.994667pt;}
.ws3_c00236{word-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.273067pt;}
._24_c00236{margin-left:-70.912000pt;}
._40_c00236{margin-left:-66.816000pt;}
._2f_c00236{margin-left:-60.256000pt;}
._3e_c00236{margin-left:-34.282667pt;}
._4e_c00236{margin-left:-31.402667pt;}
._45_c00236{margin-left:-27.306667pt;}
._51_c00236{margin-left:-24.202667pt;}
._46_c00236{margin-left:-23.125333pt;}
._2b_c00236{margin-left:-21.248000pt;}
._41_c00236{margin-left:-17.920000pt;}
._28_c00236{margin-left:-16.981333pt;}
._48_c00236{margin-left:-16.042667pt;}
._38_c00236{margin-left:-14.250667pt;}
._30_c00236{margin-left:-11.712000pt;}
._27_c00236{margin-left:-9.472000pt;}
._33_c00236{margin-left:-7.680000pt;}
._35_c00236{margin-left:-6.656000pt;}
._1b_c00236{margin-left:-3.584000pt;}
._4b_c00236{margin-left:-2.560000pt;}
._11_c00236{margin-left:-1.621333pt;}
._d_c00236{width:1.365333pt;}
._c_c00236{width:2.474667pt;}
._7_c00236{width:3.840000pt;}
._16_c00236{width:4.778667pt;}
._1_c00236{width:5.888000pt;}
._1a_c00236{width:6.912000pt;}
._0_c00236{width:7.850667pt;}
._1e_c00236{width:9.130667pt;}
._9_c00236{width:10.325333pt;}
._4c_c00236{width:11.264000pt;}
._8_c00236{width:12.458667pt;}
._4a_c00236{width:13.670400pt;}
._a_c00236{width:14.762667pt;}
._b_c00236{width:16.469333pt;}
._4_c00236{width:18.363733pt;}
._3_c00236{width:19.865600pt;}
._37_c00236{width:20.945067pt;}
._5_c00236{width:21.913600pt;}
._4d_c00236{width:22.954667pt;}
._18_c00236{width:24.064000pt;}
._1c_c00236{width:25.344000pt;}
._12_c00236{width:26.453333pt;}
._1d_c00236{width:27.392000pt;}
._15_c00236{width:28.757333pt;}
._20_c00236{width:30.037333pt;}
._17_c00236{width:31.744000pt;}
._f_c00236{width:32.853333pt;}
._14_c00236{width:34.133333pt;}
._10_c00236{width:35.669333pt;}
._2a_c00236{width:36.778667pt;}
._19_c00236{width:37.973333pt;}
._29_c00236{width:39.509333pt;}
._31_c00236{width:40.485333pt;}
._22_c00236{width:41.386667pt;}
._13_c00236{width:43.008000pt;}
._26_c00236{width:44.629333pt;}
._e_c00236{width:46.421333pt;}
._21_c00236{width:47.530667pt;}
._4f_c00236{width:49.766400pt;}
._1f_c00236{width:53.333333pt;}
._3d_c00236{width:54.496000pt;}
._3a_c00236{width:57.152000pt;}
._3b_c00236{width:65.760000pt;}
._49_c00236{width:68.816000pt;}
._3c_c00236{width:71.008000pt;}
._2c_c00236{width:73.284267pt;}
._2d_c00236{width:74.288000pt;}
._6_c00236{width:77.836800pt;}
._23_c00236{width:80.554667pt;}
._25_c00236{width:87.722667pt;}
._3f_c00236{width:89.856000pt;}
._36_c00236{width:103.168000pt;}
._34_c00236{width:107.178667pt;}
._42_c00236{width:139.690667pt;}
._44_c00236{width:190.378667pt;}
._43_c00236{width:200.965333pt;}
._2_c00236{width:283.925333pt;}
._50_c00236{width:331.025067pt;}
._47_c00236{width:337.322667pt;}
._39_c00236{width:382.634667pt;}
._32_c00236{width:650.496000pt;}
._53_c00236{width:652.800000pt;}
._52_c00236{width:911.872000pt;}
._2e_c00236{width:1496.277333pt;}
.fs6_c00236{font-size:21.333333pt;}
.fs5_c00236{font-size:37.333333pt;}
.fs7_c00236{font-size:42.666667pt;}
.fs1_c00236{font-size:68.266667pt;}
.fs3_c00236{font-size:74.666667pt;}
.fs2_c00236{font-size:77.333333pt;}
.fs0_c00236{font-size:85.333333pt;}
.fs4_c00236{font-size:88.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y26_c00236{bottom:2.760000pt;}
.y25_c00236{bottom:6.425217pt;}
.y24_c00236{bottom:32.106667pt;}
.y23_c00236{bottom:93.573333pt;}
.y22_c00236{bottom:119.040000pt;}
.y21_c00236{bottom:125.040000pt;}
.y20_c00236{bottom:153.573333pt;}
.y1f_c00236{bottom:184.773333pt;}
.y1e_c00236{bottom:214.773333pt;}
.y1d_c00236{bottom:244.106667pt;}
.y1c_c00236{bottom:274.773333pt;}
.y1b_c00236{bottom:304.240000pt;}
.y1a_c00236{bottom:334.773333pt;}
.y19_c00236{bottom:365.040000pt;}
.y18_c00236{bottom:395.306667pt;}
.y17_c00236{bottom:437.306667pt;}
.y16_c00236{bottom:454.106667pt;}
.y15_c00236{bottom:483.573333pt;}
.y14_c00236{bottom:514.106667pt;}
.y13_c00236{bottom:575.040000pt;}
.y12_c00236{bottom:602.106667pt;}
.y11_c00236{bottom:632.373333pt;}
.y10_c00236{bottom:662.106667pt;}
.yf_c00236{bottom:691.440000pt;}
.ye_c00236{bottom:722.640000pt;}
.yd_c00236{bottom:750.640000pt;}
.yc_c00236{bottom:779.440000pt;}
.yb_c00236{bottom:809.440000pt;}
.ya_c00236{bottom:839.040000pt;}
.y9_c00236{bottom:868.506667pt;}
.y8_c00236{bottom:898.106667pt;}
.y7_c00236{bottom:927.706667pt;}
.y6_c00236{bottom:957.306667pt;}
.y5_c00236{bottom:986.906667pt;}
.y4_c00236{bottom:1016.640000pt;}
.y3_c00236{bottom:1046.373333pt;}
.y2_c00236{bottom:1075.173333pt;}
.y1_c00236{bottom:1135.440000pt;}
.h7_c00236{height:11.733399pt;}
.h6_c00236{height:27.010417pt;}
.h8_c00236{height:38.937500pt;}
.h4_c00236{height:47.268229pt;}
.h3_c00236{height:87.390625pt;}
.h5_c00236{height:97.912760pt;}
.h2_c00236{height:108.041667pt;}
.h0_c00236{height:1229.733333pt;}
.h1_c00236{height:1230.000000pt;}
.w2_c00236{width:93.222667pt;}
.w0_c00236{width:780.466667pt;}
.w1_c00236{width:780.666667pt;}
.x0_c00236{left:0.000000pt;}
.x16_c00236{left:53.066667pt;}
.x13_c00236{left:54.400000pt;}
.x14_c00236{left:57.333333pt;}
.xc_c00236{left:58.400000pt;}
.xa_c00236{left:61.200000pt;}
.x7_c00236{left:62.666667pt;}
.x8_c00236{left:64.533333pt;}
.x12_c00236{left:66.000000pt;}
.xd_c00236{left:75.066667pt;}
.x9_c00236{left:92.400000pt;}
.x6_c00236{left:93.866667pt;}
.x5_c00236{left:95.200000pt;}
.x1_c00236{left:100.133333pt;}
.xb_c00236{left:105.333333pt;}
.xf_c00236{left:107.733333pt;}
.x17_c00236{left:113.200000pt;}
.x10_c00236{left:136.133333pt;}
.x2_c00236{left:165.333333pt;}
.x15_c00236{left:182.800000pt;}
.x4_c00236{left:193.600000pt;}
.x3_c00236{left:194.666667pt;}
.x11_c00236{left:244.533333pt;}
.xe_c00236{left:274.800000pt;}
.x18_c00236{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9549f3c2619b5993f9771226.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_47a7a5666e2df550fa3c3b9d.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_04fbbe0b9121185d22fb27c9.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls4_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:12.000000px;}
.ls3_c00237{letter-spacing:13.800000px;}
.ls5_c00237{letter-spacing:18.000000px;}
.ls1_c00237{letter-spacing:20.400000px;}
.ls2_c00237{letter-spacing:36.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:-51.000000px;}
.ws1_c00237{word-spacing:-41.136000px;}
.ws2_c00237{word-spacing:-23.136000px;}
.ws3_c00237{word-spacing:0.000000px;}
._28_c00237{margin-left:-73.440000px;}
._29_c00237{margin-left:-34.464000px;}
._3f_c00237{margin-left:-25.344000px;}
._26_c00237{margin-left:-23.184000px;}
._10_c00237{margin-left:-13.920000px;}
._1c_c00237{margin-left:-11.808000px;}
._6_c00237{margin-left:-10.554000px;}
._0_c00237{margin-left:-8.928000px;}
._23_c00237{margin-left:-7.392000px;}
._4_c00237{margin-left:-6.240000px;}
._1_c00237{margin-left:-4.320000px;}
._34_c00237{margin-left:-3.264000px;}
._13_c00237{margin-left:-2.112000px;}
._12_c00237{margin-left:-1.056000px;}
._5_c00237{width:2.016000px;}
._e_c00237{width:3.264000px;}
._9_c00237{width:4.416000px;}
._f_c00237{width:5.568000px;}
._8_c00237{width:6.720000px;}
._17_c00237{width:8.640000px;}
._b_c00237{width:9.984000px;}
._2b_c00237{width:11.136000px;}
._2_c00237{width:12.576000px;}
._d_c00237{width:14.208000px;}
._24_c00237{width:15.552000px;}
._35_c00237{width:16.608000px;}
._c_c00237{width:17.664000px;}
._22_c00237{width:19.104000px;}
._39_c00237{width:20.352000px;}
._21_c00237{width:21.408000px;}
._a_c00237{width:25.056000px;}
._3a_c00237{width:26.496000px;}
._33_c00237{width:28.224000px;}
._19_c00237{width:30.336000px;}
._2a_c00237{width:31.776000px;}
._1a_c00237{width:32.832000px;}
._1e_c00237{width:34.176000px;}
._11_c00237{width:36.288000px;}
._18_c00237{width:38.304000px;}
._1d_c00237{width:39.552000px;}
._30_c00237{width:41.280000px;}
._2d_c00237{width:42.720000px;}
._37_c00237{width:44.544000px;}
._20_c00237{width:46.368000px;}
._16_c00237{width:47.904000px;}
._15_c00237{width:50.016000px;}
._31_c00237{width:51.360000px;}
._32_c00237{width:53.370000px;}
._27_c00237{width:57.888000px;}
._1b_c00237{width:61.920000px;}
._2f_c00237{width:64.608000px;}
._3c_c00237{width:65.928000px;}
._2e_c00237{width:69.024000px;}
._1f_c00237{width:79.968000px;}
._14_c00237{width:85.344000px;}
._2c_c00237{width:94.944000px;}
._7_c00237{width:175.452000px;}
._3e_c00237{width:179.616000px;}
._3d_c00237{width:181.728000px;}
._25_c00237{width:261.648000px;}
._3_c00237{width:278.784000px;}
._3b_c00237{width:341.376000px;}
._38_c00237{width:352.992000px;}
._36_c00237{width:1264.896000px;}
.fc2_c00237{color:transparent;}
.fc1_c00237{color:rgb(128,128,128);}
.fc0_c00237{color:rgb(0,0,0);}
.fs3_c00237{font-size:48.000000px;}
.fs2_c00237{font-size:84.000000px;}
.fs0_c00237{font-size:96.000000px;}
.fs1_c00237{font-size:102.000000px;}
.y0_c00237{bottom:0.000000px;}
.y26_c00237{bottom:3.105000px;}
.y25_c00237{bottom:7.228357px;}
.y24_c00237{bottom:101.880000px;}
.y23_c00237{bottom:135.330000px;}
.y22_c00237{bottom:169.380000px;}
.y21_c00237{bottom:203.580000px;}
.y20_c00237{bottom:237.630000px;}
.y1f_c00237{bottom:271.980000px;}
.y1e_c00237{bottom:306.180000px;}
.y1d_c00237{bottom:339.180000px;}
.y1c_c00237{bottom:374.280000px;}
.y1b_c00237{bottom:408.780000px;}
.y1a_c00237{bottom:441.780000px;}
.y19_c00237{bottom:476.580000px;}
.y18_c00237{bottom:510.330000px;}
.y17_c00237{bottom:543.780000px;}
.y16_c00237{bottom:577.830000px;}
.y15_c00237{bottom:611.580000px;}
.y14_c00237{bottom:645.030000px;}
.y13_c00237{bottom:676.380000px;}
.y12_c00237{bottom:710.880000px;}
.y11_c00237{bottom:745.530000px;}
.y10_c00237{bottom:780.030000px;}
.yf_c00237{bottom:814.080000px;}
.ye_c00237{bottom:847.530000px;}
.yd_c00237{bottom:882.180000px;}
.yc_c00237{bottom:915.030000px;}
.yb_c00237{bottom:947.730000px;}
.ya_c00237{bottom:981.480000px;}
.y9_c00237{bottom:1014.630000px;}
.y8_c00237{bottom:1047.930000px;}
.y7_c00237{bottom:1080.780000px;}
.y6_c00237{bottom:1114.530000px;}
.y5_c00237{bottom:1148.580000px;}
.y4_c00237{bottom:1182.330000px;}
.y3_c00237{bottom:1215.330000px;}
.y2_c00237{bottom:1249.530000px;}
.y1_c00237{bottom:1280.880000px;}
.h3_c00237{height:13.200074px;}
.h4_c00237{height:43.804688px;}
.h2_c00237{height:121.546875px;}
.h0_c00237{height:1382.700000px;}
.h1_c00237{height:1383.000000px;}
.w2_c00237{width:104.875500px;}
.w0_c00237{width:863.175000px;}
.w1_c00237{width:863.250000px;}
.x0_c00237{left:0.000000px;}
.xa_c00237{left:148.200000px;}
.x2_c00237{left:154.650000px;}
.x5_c00237{left:157.350000px;}
.xd_c00237{left:161.700000px;}
.xc_c00237{left:164.400000px;}
.x1_c00237{left:169.800000px;}
.xb_c00237{left:235.200000px;}
.x9_c00237{left:246.450000px;}
.x7_c00237{left:250.800000px;}
.xf_c00237{left:254.550000px;}
.xe_c00237{left:257.850000px;}
.x3_c00237{left:264.300000px;}
.x4_c00237{left:265.950000px;}
.x6_c00237{left:267.600000px;}
.x8_c00237{left:268.650000px;}
.x11_c00237{left:383.401749px;}
.x10_c00237{left:813.450000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls4_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:10.666667pt;}
.ls3_c00237{letter-spacing:12.266667pt;}
.ls5_c00237{letter-spacing:16.000000pt;}
.ls1_c00237{letter-spacing:18.133333pt;}
.ls2_c00237{letter-spacing:32.000000pt;}
.ws0_c00237{word-spacing:-45.333333pt;}
.ws1_c00237{word-spacing:-36.565333pt;}
.ws2_c00237{word-spacing:-20.565333pt;}
.ws3_c00237{word-spacing:0.000000pt;}
._28_c00237{margin-left:-65.280000pt;}
._29_c00237{margin-left:-30.634667pt;}
._3f_c00237{margin-left:-22.528000pt;}
._26_c00237{margin-left:-20.608000pt;}
._10_c00237{margin-left:-12.373333pt;}
._1c_c00237{margin-left:-10.496000pt;}
._6_c00237{margin-left:-9.381333pt;}
._0_c00237{margin-left:-7.936000pt;}
._23_c00237{margin-left:-6.570667pt;}
._4_c00237{margin-left:-5.546667pt;}
._1_c00237{margin-left:-3.840000pt;}
._34_c00237{margin-left:-2.901333pt;}
._13_c00237{margin-left:-1.877333pt;}
._12_c00237{margin-left:-0.938667pt;}
._5_c00237{width:1.792000pt;}
._e_c00237{width:2.901333pt;}
._9_c00237{width:3.925333pt;}
._f_c00237{width:4.949333pt;}
._8_c00237{width:5.973333pt;}
._17_c00237{width:7.680000pt;}
._b_c00237{width:8.874667pt;}
._2b_c00237{width:9.898667pt;}
._2_c00237{width:11.178667pt;}
._d_c00237{width:12.629333pt;}
._24_c00237{width:13.824000pt;}
._35_c00237{width:14.762667pt;}
._c_c00237{width:15.701333pt;}
._22_c00237{width:16.981333pt;}
._39_c00237{width:18.090667pt;}
._21_c00237{width:19.029333pt;}
._a_c00237{width:22.272000pt;}
._3a_c00237{width:23.552000pt;}
._33_c00237{width:25.088000pt;}
._19_c00237{width:26.965333pt;}
._2a_c00237{width:28.245333pt;}
._1a_c00237{width:29.184000pt;}
._1e_c00237{width:30.378667pt;}
._11_c00237{width:32.256000pt;}
._18_c00237{width:34.048000pt;}
._1d_c00237{width:35.157333pt;}
._30_c00237{width:36.693333pt;}
._2d_c00237{width:37.973333pt;}
._37_c00237{width:39.594667pt;}
._20_c00237{width:41.216000pt;}
._16_c00237{width:42.581333pt;}
._15_c00237{width:44.458667pt;}
._31_c00237{width:45.653333pt;}
._32_c00237{width:47.440000pt;}
._27_c00237{width:51.456000pt;}
._1b_c00237{width:55.040000pt;}
._2f_c00237{width:57.429333pt;}
._3c_c00237{width:58.602667pt;}
._2e_c00237{width:61.354667pt;}
._1f_c00237{width:71.082667pt;}
._14_c00237{width:75.861333pt;}
._2c_c00237{width:84.394667pt;}
._7_c00237{width:155.957333pt;}
._3e_c00237{width:159.658667pt;}
._3d_c00237{width:161.536000pt;}
._25_c00237{width:232.576000pt;}
._3_c00237{width:247.808000pt;}
._3b_c00237{width:303.445333pt;}
._38_c00237{width:313.770667pt;}
._36_c00237{width:1124.352000pt;}
.fs3_c00237{font-size:42.666667pt;}
.fs2_c00237{font-size:74.666667pt;}
.fs0_c00237{font-size:85.333333pt;}
.fs1_c00237{font-size:90.666667pt;}
.y0_c00237{bottom:0.000000pt;}
.y26_c00237{bottom:2.760000pt;}
.y25_c00237{bottom:6.425206pt;}
.y24_c00237{bottom:90.560000pt;}
.y23_c00237{bottom:120.293333pt;}
.y22_c00237{bottom:150.560000pt;}
.y21_c00237{bottom:180.960000pt;}
.y20_c00237{bottom:211.226667pt;}
.y1f_c00237{bottom:241.760000pt;}
.y1e_c00237{bottom:272.160000pt;}
.y1d_c00237{bottom:301.493333pt;}
.y1c_c00237{bottom:332.693333pt;}
.y1b_c00237{bottom:363.360000pt;}
.y1a_c00237{bottom:392.693333pt;}
.y19_c00237{bottom:423.626667pt;}
.y18_c00237{bottom:453.626667pt;}
.y17_c00237{bottom:483.360000pt;}
.y16_c00237{bottom:513.626667pt;}
.y15_c00237{bottom:543.626667pt;}
.y14_c00237{bottom:573.360000pt;}
.y13_c00237{bottom:601.226667pt;}
.y12_c00237{bottom:631.893333pt;}
.y11_c00237{bottom:662.693333pt;}
.y10_c00237{bottom:693.360000pt;}
.yf_c00237{bottom:723.626667pt;}
.ye_c00237{bottom:753.360000pt;}
.yd_c00237{bottom:784.160000pt;}
.yc_c00237{bottom:813.360000pt;}
.yb_c00237{bottom:842.426667pt;}
.ya_c00237{bottom:872.426667pt;}
.y9_c00237{bottom:901.893333pt;}
.y8_c00237{bottom:931.493333pt;}
.y7_c00237{bottom:960.693333pt;}
.y6_c00237{bottom:990.693333pt;}
.y5_c00237{bottom:1020.960000pt;}
.y4_c00237{bottom:1050.960000pt;}
.y3_c00237{bottom:1080.293333pt;}
.y2_c00237{bottom:1110.693333pt;}
.y1_c00237{bottom:1138.560000pt;}
.h3_c00237{height:11.733399pt;}
.h4_c00237{height:38.937500pt;}
.h2_c00237{height:108.041667pt;}
.h0_c00237{height:1229.066667pt;}
.h1_c00237{height:1229.333333pt;}
.w2_c00237{width:93.222667pt;}
.w0_c00237{width:767.266667pt;}
.w1_c00237{width:767.333333pt;}
.x0_c00237{left:0.000000pt;}
.xa_c00237{left:131.733333pt;}
.x2_c00237{left:137.466667pt;}
.x5_c00237{left:139.866667pt;}
.xd_c00237{left:143.733333pt;}
.xc_c00237{left:146.133333pt;}
.x1_c00237{left:150.933333pt;}
.xb_c00237{left:209.066667pt;}
.x9_c00237{left:219.066667pt;}
.x7_c00237{left:222.933333pt;}
.xf_c00237{left:226.266667pt;}
.xe_c00237{left:229.200000pt;}
.x3_c00237{left:234.933333pt;}
.x4_c00237{left:236.400000pt;}
.x6_c00237{left:237.866667pt;}
.x8_c00237{left:238.800000pt;}
.x11_c00237{left:340.801554pt;}
.x10_c00237{left:723.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_22b15b8ea0df3e7723e57c7d.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_a1ce345dec0e2386b510d5f5.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_25571cd97351d429d4ad2313.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_11cf18f1fd3f051db70aafdf.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_903ada9f99d30b404c66f572.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_3e46c20d4909a18c85f6548a.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00238;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00238{font-family:ff7_c00238;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls5_c00238{letter-spacing:0.000000px;}
.ls4_c00238{letter-spacing:0.072000px;}
.ls0_c00238{letter-spacing:1.164000px;}
.ls1_c00238{letter-spacing:18.000000px;}
.ls3_c00238{letter-spacing:20.448000px;}
.ls2_c00238{letter-spacing:239.664000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:-63.504000px;}
.ws2_c00238{word-spacing:-51.000000px;}
.ws4_c00238{word-spacing:-43.084800px;}
.ws1_c00238{word-spacing:-41.136000px;}
.ws3_c00238{word-spacing:-23.136000px;}
.ws5_c00238{word-spacing:0.000000px;}
._3d_c00238{margin-left:-49.632000px;}
._39_c00238{margin-left:-35.712000px;}
._3c_c00238{margin-left:-30.840000px;}
._37_c00238{margin-left:-29.376000px;}
._38_c00238{margin-left:-27.648000px;}
._2f_c00238{margin-left:-16.368000px;}
._36_c00238{margin-left:-15.264000px;}
._25_c00238{margin-left:-12.480000px;}
._26_c00238{margin-left:-11.424000px;}
._0_c00238{margin-left:-9.504000px;}
._2_c00238{margin-left:-7.584000px;}
._c_c00238{margin-left:-6.528000px;}
._1_c00238{margin-left:-4.416000px;}
._24_c00238{margin-left:-2.496000px;}
._1d_c00238{margin-left:-1.344000px;}
._7_c00238{width:1.920000px;}
._9_c00238{width:3.168000px;}
._e_c00238{width:4.320000px;}
._5_c00238{width:5.472000px;}
._11_c00238{width:6.720000px;}
._4_c00238{width:7.968000px;}
._15_c00238{width:9.216000px;}
._21_c00238{width:10.272000px;}
._1f_c00238{width:11.616000px;}
._b_c00238{width:12.672000px;}
._2b_c00238{width:13.968000px;}
._20_c00238{width:15.072000px;}
._d_c00238{width:16.128000px;}
._29_c00238{width:17.280000px;}
._3_c00238{width:19.104000px;}
._1b_c00238{width:21.888000px;}
._2e_c00238{width:24.192000px;}
._12_c00238{width:25.248000px;}
._28_c00238{width:26.400000px;}
._1c_c00238{width:28.512000px;}
._a_c00238{width:30.432000px;}
._13_c00238{width:32.640000px;}
._f_c00238{width:34.656000px;}
._1e_c00238{width:35.712000px;}
._8_c00238{width:37.152000px;}
._6_c00238{width:38.880000px;}
._2c_c00238{width:40.512000px;}
._27_c00238{width:41.664000px;}
._3a_c00238{width:43.104000px;}
._22_c00238{width:44.832000px;}
._23_c00238{width:47.136000px;}
._2d_c00238{width:48.672000px;}
._34_c00238{width:49.728000px;}
._16_c00238{width:51.456000px;}
._1a_c00238{width:53.472000px;}
._17_c00238{width:56.352000px;}
._18_c00238{width:58.656000px;}
._14_c00238{width:64.320000px;}
._19_c00238{width:68.448000px;}
._33_c00238{width:74.736000px;}
._3b_c00238{width:82.308000px;}
._2a_c00238{width:118.272000px;}
._32_c00238{width:172.416000px;}
._10_c00238{width:179.328000px;}
._31_c00238{width:182.112000px;}
._35_c00238{width:228.672000px;}
._30_c00238{width:269.664000px;}
.fc2_c00238{color:transparent;}
.fc1_c00238{color:rgb(128,128,128);}
.fc0_c00238{color:rgb(0,0,0);}
.fs6_c00238{font-size:48.000000px;}
.fs3_c00238{font-size:57.000000px;}
.fs4_c00238{font-size:60.000000px;}
.fs5_c00238{font-size:76.800000px;}
.fs1_c00238{font-size:84.000000px;}
.fs0_c00238{font-size:96.000000px;}
.fs2_c00238{font-size:102.000000px;}
.y0_c00238{bottom:0.000000px;}
.y28_c00238{bottom:3.105000px;}
.y27_c00238{bottom:7.228369px;}
.y24_c00238{bottom:103.620000px;}
.y23_c00238{bottom:136.920000px;}
.y22_c00238{bottom:171.420000px;}
.y21_c00238{bottom:205.170000px;}
.y20_c00238{bottom:239.670000px;}
.y1f_c00238{bottom:272.970000px;}
.y1e_c00238{bottom:306.420000px;}
.y26_c00238{bottom:336.720000px;}
.y1d_c00238{bottom:339.870000px;}
.y25_c00238{bottom:361.470000px;}
.y1c_c00238{bottom:373.920000px;}
.y1b_c00238{bottom:406.920000px;}
.y1a_c00238{bottom:440.670000px;}
.y19_c00238{bottom:474.120000px;}
.y18_c00238{bottom:507.870000px;}
.y17_c00238{bottom:540.720000px;}
.y16_c00238{bottom:573.720000px;}
.y15_c00238{bottom:608.520000px;}
.y14_c00238{bottom:640.620000px;}
.y13_c00238{bottom:674.220000px;}
.y12_c00238{bottom:707.070000px;}
.y11_c00238{bottom:740.520000px;}
.y10_c00238{bottom:773.820000px;}
.yf_c00238{bottom:806.970000px;}
.ye_c00238{bottom:839.970000px;}
.yd_c00238{bottom:872.820000px;}
.yc_c00238{bottom:906.570000px;}
.yb_c00238{bottom:939.270000px;}
.ya_c00238{bottom:973.020000px;}
.y9_c00238{bottom:1006.470000px;}
.y8_c00238{bottom:1040.220000px;}
.y7_c00238{bottom:1073.820000px;}
.y6_c00238{bottom:1106.670000px;}
.y5_c00238{bottom:1140.120000px;}
.y4_c00238{bottom:1173.420000px;}
.y3_c00238{bottom:1207.620000px;}
.y2_c00238{bottom:1238.220000px;}
.y1_c00238{bottom:1273.770000px;}
.h4_c00238{height:13.200073px;}
.h5_c00238{height:43.804688px;}
.h3_c00238{height:66.713379px;}
.h2_c00238{height:121.546875px;}
.h0_c00238{height:1383.450000px;}
.h1_c00238{height:1383.750000px;}
.w2_c00238{width:104.875500px;}
.w0_c00238{width:878.025000px;}
.w1_c00238{width:878.250000px;}
.x0_c00238{left:0.000000px;}
.xc_c00238{left:56.400000px;}
.xd_c00238{left:64.500000px;}
.xa_c00238{left:66.150000px;}
.xb_c00238{left:67.800000px;}
.x9_c00238{left:69.900000px;}
.x7_c00238{left:71.550000px;}
.x8_c00238{left:73.200000px;}
.x6_c00238{left:74.250000px;}
.x5_c00238{left:75.300000px;}
.x3_c00238{left:76.500000px;}
.x4_c00238{left:77.550000px;}
.x1_c00238{left:79.200000px;}
.x2_c00238{left:128.850000px;}
.xe_c00238{left:145.050000px;}
.x12_c00238{left:390.826721px;}
.xf_c00238{left:612.150000px;}
.x10_c00238{left:666.450000px;}
.x11_c00238{left:670.500000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls5_c00238{letter-spacing:0.000000pt;}
.ls4_c00238{letter-spacing:0.064000pt;}
.ls0_c00238{letter-spacing:1.034667pt;}
.ls1_c00238{letter-spacing:16.000000pt;}
.ls3_c00238{letter-spacing:18.176000pt;}
.ls2_c00238{letter-spacing:213.034667pt;}
.ws0_c00238{word-spacing:-56.448000pt;}
.ws2_c00238{word-spacing:-45.333333pt;}
.ws4_c00238{word-spacing:-38.297600pt;}
.ws1_c00238{word-spacing:-36.565333pt;}
.ws3_c00238{word-spacing:-20.565333pt;}
.ws5_c00238{word-spacing:0.000000pt;}
._3d_c00238{margin-left:-44.117333pt;}
._39_c00238{margin-left:-31.744000pt;}
._3c_c00238{margin-left:-27.413333pt;}
._37_c00238{margin-left:-26.112000pt;}
._38_c00238{margin-left:-24.576000pt;}
._2f_c00238{margin-left:-14.549333pt;}
._36_c00238{margin-left:-13.568000pt;}
._25_c00238{margin-left:-11.093333pt;}
._26_c00238{margin-left:-10.154667pt;}
._0_c00238{margin-left:-8.448000pt;}
._2_c00238{margin-left:-6.741333pt;}
._c_c00238{margin-left:-5.802667pt;}
._1_c00238{margin-left:-3.925333pt;}
._24_c00238{margin-left:-2.218667pt;}
._1d_c00238{margin-left:-1.194667pt;}
._7_c00238{width:1.706667pt;}
._9_c00238{width:2.816000pt;}
._e_c00238{width:3.840000pt;}
._5_c00238{width:4.864000pt;}
._11_c00238{width:5.973333pt;}
._4_c00238{width:7.082667pt;}
._15_c00238{width:8.192000pt;}
._21_c00238{width:9.130667pt;}
._1f_c00238{width:10.325333pt;}
._b_c00238{width:11.264000pt;}
._2b_c00238{width:12.416000pt;}
._20_c00238{width:13.397333pt;}
._d_c00238{width:14.336000pt;}
._29_c00238{width:15.360000pt;}
._3_c00238{width:16.981333pt;}
._1b_c00238{width:19.456000pt;}
._2e_c00238{width:21.504000pt;}
._12_c00238{width:22.442667pt;}
._28_c00238{width:23.466667pt;}
._1c_c00238{width:25.344000pt;}
._a_c00238{width:27.050667pt;}
._13_c00238{width:29.013333pt;}
._f_c00238{width:30.805333pt;}
._1e_c00238{width:31.744000pt;}
._8_c00238{width:33.024000pt;}
._6_c00238{width:34.560000pt;}
._2c_c00238{width:36.010667pt;}
._27_c00238{width:37.034667pt;}
._3a_c00238{width:38.314667pt;}
._22_c00238{width:39.850667pt;}
._23_c00238{width:41.898667pt;}
._2d_c00238{width:43.264000pt;}
._34_c00238{width:44.202667pt;}
._16_c00238{width:45.738667pt;}
._1a_c00238{width:47.530667pt;}
._17_c00238{width:50.090667pt;}
._18_c00238{width:52.138667pt;}
._14_c00238{width:57.173333pt;}
._19_c00238{width:60.842667pt;}
._33_c00238{width:66.432000pt;}
._3b_c00238{width:73.162667pt;}
._2a_c00238{width:105.130667pt;}
._32_c00238{width:153.258667pt;}
._10_c00238{width:159.402667pt;}
._31_c00238{width:161.877333pt;}
._35_c00238{width:203.264000pt;}
._30_c00238{width:239.701333pt;}
.fs6_c00238{font-size:42.666667pt;}
.fs3_c00238{font-size:50.666667pt;}
.fs4_c00238{font-size:53.333333pt;}
.fs5_c00238{font-size:68.266667pt;}
.fs1_c00238{font-size:74.666667pt;}
.fs0_c00238{font-size:85.333333pt;}
.fs2_c00238{font-size:90.666667pt;}
.y0_c00238{bottom:0.000000pt;}
.y28_c00238{bottom:2.760000pt;}
.y27_c00238{bottom:6.425217pt;}
.y24_c00238{bottom:92.106667pt;}
.y23_c00238{bottom:121.706667pt;}
.y22_c00238{bottom:152.373333pt;}
.y21_c00238{bottom:182.373333pt;}
.y20_c00238{bottom:213.040000pt;}
.y1f_c00238{bottom:242.640000pt;}
.y1e_c00238{bottom:272.373333pt;}
.y26_c00238{bottom:299.306667pt;}
.y1d_c00238{bottom:302.106667pt;}
.y25_c00238{bottom:321.306667pt;}
.y1c_c00238{bottom:332.373333pt;}
.y1b_c00238{bottom:361.706667pt;}
.y1a_c00238{bottom:391.706667pt;}
.y19_c00238{bottom:421.440000pt;}
.y18_c00238{bottom:451.440000pt;}
.y17_c00238{bottom:480.640000pt;}
.y16_c00238{bottom:509.973333pt;}
.y15_c00238{bottom:540.906667pt;}
.y14_c00238{bottom:569.440000pt;}
.y13_c00238{bottom:599.306667pt;}
.y12_c00238{bottom:628.506667pt;}
.y11_c00238{bottom:658.240000pt;}
.y10_c00238{bottom:687.840000pt;}
.yf_c00238{bottom:717.306667pt;}
.ye_c00238{bottom:746.640000pt;}
.yd_c00238{bottom:775.840000pt;}
.yc_c00238{bottom:805.840000pt;}
.yb_c00238{bottom:834.906667pt;}
.ya_c00238{bottom:864.906667pt;}
.y9_c00238{bottom:894.640000pt;}
.y8_c00238{bottom:924.640000pt;}
.y7_c00238{bottom:954.506667pt;}
.y6_c00238{bottom:983.706667pt;}
.y5_c00238{bottom:1013.440000pt;}
.y4_c00238{bottom:1043.040000pt;}
.y3_c00238{bottom:1073.440000pt;}
.y2_c00238{bottom:1100.640000pt;}
.y1_c00238{bottom:1132.240000pt;}
.h4_c00238{height:11.733399pt;}
.h5_c00238{height:38.937500pt;}
.h3_c00238{height:59.300781pt;}
.h2_c00238{height:108.041667pt;}
.h0_c00238{height:1229.733333pt;}
.h1_c00238{height:1230.000000pt;}
.w2_c00238{width:93.222667pt;}
.w0_c00238{width:780.466667pt;}
.w1_c00238{width:780.666667pt;}
.x0_c00238{left:0.000000pt;}
.xc_c00238{left:50.133333pt;}
.xd_c00238{left:57.333333pt;}
.xa_c00238{left:58.800000pt;}
.xb_c00238{left:60.266667pt;}
.x9_c00238{left:62.133333pt;}
.x7_c00238{left:63.600000pt;}
.x8_c00238{left:65.066667pt;}
.x6_c00238{left:66.000000pt;}
.x5_c00238{left:66.933333pt;}
.x3_c00238{left:68.000000pt;}
.x4_c00238{left:68.933333pt;}
.x1_c00238{left:70.400000pt;}
.x2_c00238{left:114.533333pt;}
.xe_c00238{left:128.933333pt;}
.x12_c00238{left:347.401530pt;}
.xf_c00238{left:544.133333pt;}
.x10_c00238{left:592.400000pt;}
.x11_c00238{left:596.000000pt;}
}





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

.ir_c00239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_f87fd5ee8a8134edf398b930.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_41162b78a6c5aa527b0010b6.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls2_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:3.960000px;}
.ls1_c00239{letter-spacing:13.800000px;}
.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:-51.000000px;}
.ws1_c00239{word-spacing:-23.136000px;}
.ws2_c00239{word-spacing:0.000000px;}
._2a_c00239{margin-left:-79.776000px;}
._39_c00239{margin-left:-32.928000px;}
._37_c00239{margin-left:-27.168000px;}
._38_c00239{margin-left:-23.616000px;}
._0_c00239{margin-left:-20.376000px;}
._34_c00239{margin-left:-18.816000px;}
._2b_c00239{margin-left:-15.168000px;}
._1_c00239{margin-left:-12.000000px;}
._25_c00239{margin-left:-9.696000px;}
._26_c00239{margin-left:-7.968000px;}
._8_c00239{margin-left:-6.912000px;}
._24_c00239{margin-left:-4.800000px;}
._9_c00239{margin-left:-3.072000px;}
._2_c00239{margin-left:-2.016000px;}
._a_c00239{width:1.536000px;}
._7_c00239{width:2.592000px;}
._4_c00239{width:3.744000px;}
._5_c00239{width:4.800000px;}
._6_c00239{width:6.624000px;}
._10_c00239{width:7.872000px;}
._19_c00239{width:9.024000px;}
._3_c00239{width:10.464000px;}
._1e_c00239{width:12.096000px;}
._18_c00239{width:13.248000px;}
._b_c00239{width:15.360000px;}
._1c_c00239{width:17.184000px;}
._2d_c00239{width:18.336000px;}
._d_c00239{width:19.488000px;}
._1d_c00239{width:21.408000px;}
._15_c00239{width:24.288000px;}
._11_c00239{width:25.824000px;}
._c_c00239{width:27.744000px;}
._1f_c00239{width:29.376000px;}
._13_c00239{width:30.432000px;}
._2f_c00239{width:31.584000px;}
._12_c00239{width:32.640000px;}
._f_c00239{width:34.080000px;}
._30_c00239{width:35.616000px;}
._e_c00239{width:36.864000px;}
._27_c00239{width:38.208000px;}
._1b_c00239{width:39.264000px;}
._14_c00239{width:41.376000px;}
._17_c00239{width:42.816000px;}
._1a_c00239{width:45.120000px;}
._20_c00239{width:47.232000px;}
._16_c00239{width:49.344000px;}
._21_c00239{width:50.400000px;}
._31_c00239{width:53.760000px;}
._22_c00239{width:54.840000px;}
._2e_c00239{width:58.560000px;}
._32_c00239{width:60.000000px;}
._36_c00239{width:65.472000px;}
._28_c00239{width:67.104000px;}
._23_c00239{width:68.544000px;}
._29_c00239{width:88.224000px;}
._35_c00239{width:181.728000px;}
._33_c00239{width:294.024000px;}
._2c_c00239{width:449.664000px;}
._3a_c00239{width:2082.912000px;}
.fc2_c00239{color:transparent;}
.fc1_c00239{color:rgb(128,128,128);}
.fc0_c00239{color:rgb(0,0,0);}
.fs3_c00239{font-size:48.000000px;}
.fs2_c00239{font-size:84.000000px;}
.fs0_c00239{font-size:96.000000px;}
.fs1_c00239{font-size:102.000000px;}
.y0_c00239{bottom:0.000000px;}
.y27_c00239{bottom:3.105000px;}
.y26_c00239{bottom:7.228357px;}
.y24_c00239{bottom:105.630000px;}
.y23_c00239{bottom:139.680000px;}
.y22_c00239{bottom:175.830000px;}
.y21_c00239{bottom:208.530000px;}
.y25_c00239{bottom:223.380000px;}
.y20_c00239{bottom:243.030000px;}
.y1f_c00239{bottom:277.530000px;}
.y1e_c00239{bottom:311.580000px;}
.y1d_c00239{bottom:344.580000px;}
.y1c_c00239{bottom:378.330000px;}
.y1b_c00239{bottom:415.080000px;}
.y1a_c00239{bottom:447.480000px;}
.y19_c00239{bottom:481.980000px;}
.y18_c00239{bottom:514.680000px;}
.y17_c00239{bottom:548.880000px;}
.y16_c00239{bottom:582.630000px;}
.y15_c00239{bottom:616.380000px;}
.y14_c00239{bottom:649.680000px;}
.y13_c00239{bottom:683.430000px;}
.y12_c00239{bottom:716.880000px;}
.y11_c00239{bottom:750.030000px;}
.y10_c00239{bottom:784.680000px;}
.yf_c00239{bottom:817.530000px;}
.ye_c00239{bottom:853.530000px;}
.yd_c00239{bottom:885.330000px;}
.yc_c00239{bottom:919.080000px;}
.yb_c00239{bottom:952.080000px;}
.ya_c00239{bottom:985.230000px;}
.y9_c00239{bottom:1018.530000px;}
.y8_c00239{bottom:1052.280000px;}
.y7_c00239{bottom:1085.730000px;}
.y6_c00239{bottom:1119.180000px;}
.y5_c00239{bottom:1152.630000px;}
.y4_c00239{bottom:1186.080000px;}
.y3_c00239{bottom:1219.380000px;}
.y2_c00239{bottom:1252.230000px;}
.y1_c00239{bottom:1285.230000px;}
.h3_c00239{height:13.200074px;}
.h4_c00239{height:43.804688px;}
.h2_c00239{height:121.546875px;}
.h0_c00239{height:1382.700000px;}
.h1_c00239{height:1383.000000px;}
.w2_c00239{width:104.875500px;}
.w0_c00239{width:863.175000px;}
.w1_c00239{width:863.250000px;}
.x0_c00239{left:0.000000px;}
.xd_c00239{left:143.850000px;}
.xc_c00239{left:154.650000px;}
.x10_c00239{left:192.600000px;}
.xf_c00239{left:240.600000px;}
.xe_c00239{left:249.750000px;}
.xb_c00239{left:251.850000px;}
.x8_c00239{left:254.100000px;}
.x9_c00239{left:255.150000px;}
.x7_c00239{left:256.200000px;}
.xa_c00239{left:257.250000px;}
.x6_c00239{left:258.900000px;}
.x5_c00239{left:259.950000px;}
.x4_c00239{left:261.000000px;}
.x3_c00239{left:262.200000px;}
.x2_c00239{left:264.300000px;}
.x1_c00239{left:265.950000px;}
.x11_c00239{left:383.401749px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls2_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:3.520000pt;}
.ls1_c00239{letter-spacing:12.266667pt;}
.ws0_c00239{word-spacing:-45.333333pt;}
.ws1_c00239{word-spacing:-20.565333pt;}
.ws2_c00239{word-spacing:0.000000pt;}
._2a_c00239{margin-left:-70.912000pt;}
._39_c00239{margin-left:-29.269333pt;}
._37_c00239{margin-left:-24.149333pt;}
._38_c00239{margin-left:-20.992000pt;}
._0_c00239{margin-left:-18.112000pt;}
._34_c00239{margin-left:-16.725333pt;}
._2b_c00239{margin-left:-13.482667pt;}
._1_c00239{margin-left:-10.666667pt;}
._25_c00239{margin-left:-8.618667pt;}
._26_c00239{margin-left:-7.082667pt;}
._8_c00239{margin-left:-6.144000pt;}
._24_c00239{margin-left:-4.266667pt;}
._9_c00239{margin-left:-2.730667pt;}
._2_c00239{margin-left:-1.792000pt;}
._a_c00239{width:1.365333pt;}
._7_c00239{width:2.304000pt;}
._4_c00239{width:3.328000pt;}
._5_c00239{width:4.266667pt;}
._6_c00239{width:5.888000pt;}
._10_c00239{width:6.997333pt;}
._19_c00239{width:8.021333pt;}
._3_c00239{width:9.301333pt;}
._1e_c00239{width:10.752000pt;}
._18_c00239{width:11.776000pt;}
._b_c00239{width:13.653333pt;}
._1c_c00239{width:15.274667pt;}
._2d_c00239{width:16.298667pt;}
._d_c00239{width:17.322667pt;}
._1d_c00239{width:19.029333pt;}
._15_c00239{width:21.589333pt;}
._11_c00239{width:22.954667pt;}
._c_c00239{width:24.661333pt;}
._1f_c00239{width:26.112000pt;}
._13_c00239{width:27.050667pt;}
._2f_c00239{width:28.074667pt;}
._12_c00239{width:29.013333pt;}
._f_c00239{width:30.293333pt;}
._30_c00239{width:31.658667pt;}
._e_c00239{width:32.768000pt;}
._27_c00239{width:33.962667pt;}
._1b_c00239{width:34.901333pt;}
._14_c00239{width:36.778667pt;}
._17_c00239{width:38.058667pt;}
._1a_c00239{width:40.106667pt;}
._20_c00239{width:41.984000pt;}
._16_c00239{width:43.861333pt;}
._21_c00239{width:44.800000pt;}
._31_c00239{width:47.786667pt;}
._22_c00239{width:48.746667pt;}
._2e_c00239{width:52.053333pt;}
._32_c00239{width:53.333333pt;}
._36_c00239{width:58.197333pt;}
._28_c00239{width:59.648000pt;}
._23_c00239{width:60.928000pt;}
._29_c00239{width:78.421333pt;}
._35_c00239{width:161.536000pt;}
._33_c00239{width:261.354667pt;}
._2c_c00239{width:399.701333pt;}
._3a_c00239{width:1851.477333pt;}
.fs3_c00239{font-size:42.666667pt;}
.fs2_c00239{font-size:74.666667pt;}
.fs0_c00239{font-size:85.333333pt;}
.fs1_c00239{font-size:90.666667pt;}
.y0_c00239{bottom:0.000000pt;}
.y27_c00239{bottom:2.760000pt;}
.y26_c00239{bottom:6.425206pt;}
.y24_c00239{bottom:93.893333pt;}
.y23_c00239{bottom:124.160000pt;}
.y22_c00239{bottom:156.293333pt;}
.y21_c00239{bottom:185.360000pt;}
.y25_c00239{bottom:198.560000pt;}
.y20_c00239{bottom:216.026667pt;}
.y1f_c00239{bottom:246.693333pt;}
.y1e_c00239{bottom:276.960000pt;}
.y1d_c00239{bottom:306.293333pt;}
.y1c_c00239{bottom:336.293333pt;}
.y1b_c00239{bottom:368.960000pt;}
.y1a_c00239{bottom:397.760000pt;}
.y19_c00239{bottom:428.426667pt;}
.y18_c00239{bottom:457.493333pt;}
.y17_c00239{bottom:487.893333pt;}
.y16_c00239{bottom:517.893333pt;}
.y15_c00239{bottom:547.893333pt;}
.y14_c00239{bottom:577.493333pt;}
.y13_c00239{bottom:607.493333pt;}
.y12_c00239{bottom:637.226667pt;}
.y11_c00239{bottom:666.693333pt;}
.y10_c00239{bottom:697.493333pt;}
.yf_c00239{bottom:726.693333pt;}
.ye_c00239{bottom:758.693333pt;}
.yd_c00239{bottom:786.960000pt;}
.yc_c00239{bottom:816.960000pt;}
.yb_c00239{bottom:846.293333pt;}
.ya_c00239{bottom:875.760000pt;}
.y9_c00239{bottom:905.360000pt;}
.y8_c00239{bottom:935.360000pt;}
.y7_c00239{bottom:965.093333pt;}
.y6_c00239{bottom:994.826667pt;}
.y5_c00239{bottom:1024.560000pt;}
.y4_c00239{bottom:1054.293333pt;}
.y3_c00239{bottom:1083.893333pt;}
.y2_c00239{bottom:1113.093333pt;}
.y1_c00239{bottom:1142.426667pt;}
.h3_c00239{height:11.733399pt;}
.h4_c00239{height:38.937500pt;}
.h2_c00239{height:108.041667pt;}
.h0_c00239{height:1229.066667pt;}
.h1_c00239{height:1229.333333pt;}
.w2_c00239{width:93.222667pt;}
.w0_c00239{width:767.266667pt;}
.w1_c00239{width:767.333333pt;}
.x0_c00239{left:0.000000pt;}
.xd_c00239{left:127.866667pt;}
.xc_c00239{left:137.466667pt;}
.x10_c00239{left:171.200000pt;}
.xf_c00239{left:213.866667pt;}
.xe_c00239{left:222.000000pt;}
.xb_c00239{left:223.866667pt;}
.x8_c00239{left:225.866667pt;}
.x9_c00239{left:226.800000pt;}
.x7_c00239{left:227.733333pt;}
.xa_c00239{left:228.666667pt;}
.x6_c00239{left:230.133333pt;}
.x5_c00239{left:231.066667pt;}
.x4_c00239{left:232.000000pt;}
.x3_c00239{left:233.066667pt;}
.x2_c00239{left:234.933333pt;}
.x1_c00239{left:236.400000pt;}
.x11_c00239{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1ed076118841377cfe77b8aa.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_5cd25ad9b5bb16b4f329416f.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_ed0f36caed490c112aaadf47.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00240;src:url('chunks/assets/font_b0b40002d24dd30700aa7985.woff2')format("woff");}.ff7_c00240{font-family:ff7_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00240;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00240{font-family:ff8_c00240;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls3_c00240{letter-spacing:-6.000000px;}
.ls1_c00240{letter-spacing:0.000000px;}
.ls2_c00240{letter-spacing:3.000000px;}
.ls0_c00240{letter-spacing:17.700000px;}
.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;}
}
.ws2_c00240{word-spacing:-51.000000px;}
.ws3_c00240{word-spacing:-23.967000px;}
.ws0_c00240{word-spacing:-23.136000px;}
.ws1_c00240{word-spacing:-20.244000px;}
.ws4_c00240{word-spacing:0.000000px;}
._49_c00240{margin-left:-30.684000px;}
._39_c00240{margin-left:-28.128000px;}
._41_c00240{margin-left:-25.728000px;}
._3b_c00240{margin-left:-24.672000px;}
._2f_c00240{margin-left:-21.216000px;}
._3d_c00240{margin-left:-18.144000px;}
._2b_c00240{margin-left:-15.408000px;}
._33_c00240{margin-left:-13.728000px;}
._24_c00240{margin-left:-12.708000px;}
._2c_c00240{margin-left:-11.424000px;}
._3c_c00240{margin-left:-10.140000px;}
._14_c00240{margin-left:-9.024000px;}
._4a_c00240{margin-left:-7.008000px;}
._e_c00240{margin-left:-4.608000px;}
._11_c00240{margin-left:-3.072000px;}
._19_c00240{margin-left:-1.248000px;}
._13_c00240{width:1.056000px;}
._a_c00240{width:2.112000px;}
._2_c00240{width:3.744000px;}
._3_c00240{width:5.664000px;}
._5_c00240{width:6.816000px;}
._10_c00240{width:7.968000px;}
._4_c00240{width:9.312000px;}
._20_c00240{width:11.004000px;}
._0_c00240{width:12.480000px;}
._c_c00240{width:14.016000px;}
._9_c00240{width:15.744000px;}
._6_c00240{width:16.800000px;}
._48_c00240{width:17.916000px;}
._29_c00240{width:19.008000px;}
._1_c00240{width:21.792000px;}
._34_c00240{width:23.202000px;}
._16_c00240{width:24.288000px;}
._17_c00240{width:25.488000px;}
._8_c00240{width:27.168000px;}
._2d_c00240{width:28.416000px;}
._22_c00240{width:29.436000px;}
._1e_c00240{width:30.660000px;}
._1b_c00240{width:31.680000px;}
._18_c00240{width:33.156000px;}
._1a_c00240{width:34.176000px;}
._1f_c00240{width:36.192000px;}
._28_c00240{width:38.016000px;}
._23_c00240{width:39.396000px;}
._b_c00240{width:41.088000px;}
._15_c00240{width:42.816000px;}
._21_c00240{width:44.544000px;}
._7_c00240{width:45.696000px;}
._12_c00240{width:47.520000px;}
._1c_c00240{width:49.596000px;}
._27_c00240{width:50.820000px;}
._1d_c00240{width:52.032000px;}
._f_c00240{width:53.664000px;}
._d_c00240{width:56.256000px;}
._30_c00240{width:57.888000px;}
._38_c00240{width:60.213000px;}
._36_c00240{width:67.155000px;}
._26_c00240{width:69.216000px;}
._47_c00240{width:71.292000px;}
._44_c00240{width:73.152000px;}
._45_c00240{width:80.352000px;}
._31_c00240{width:84.096000px;}
._35_c00240{width:86.715000px;}
._3f_c00240{width:98.112000px;}
._40_c00240{width:168.336000px;}
._25_c00240{width:178.848000px;}
._3e_c00240{width:187.488000px;}
._42_c00240{width:189.408000px;}
._2a_c00240{width:223.464000px;}
._3a_c00240{width:249.312000px;}
._32_c00240{width:302.208000px;}
._46_c00240{width:418.704000px;}
._43_c00240{width:688.800000px;}
._37_c00240{width:733.077000px;}
._4b_c00240{width:774.858000px;}
._2e_c00240{width:845.472000px;}
.fc2_c00240{color:transparent;}
.fc1_c00240{color:rgb(128,128,128);}
.fc0_c00240{color:rgb(0,0,0);}
.fs6_c00240{font-size:48.000000px;}
.fs1_c00240{font-size:84.000000px;}
.fs3_c00240{font-size:87.000000px;}
.fs0_c00240{font-size:96.000000px;}
.fs5_c00240{font-size:99.000000px;}
.fs2_c00240{font-size:102.000000px;}
.fs4_c00240{font-size:117.000000px;}
.y0_c00240{bottom:0.000000px;}
.y27_c00240{bottom:3.105000px;}
.y26_c00240{bottom:7.228369px;}
.y25_c00240{bottom:86.970000px;}
.y24_c00240{bottom:119.970000px;}
.y23_c00240{bottom:154.170000px;}
.y22_c00240{bottom:188.370000px;}
.y21_c00240{bottom:222.420000px;}
.y20_c00240{bottom:256.770000px;}
.y1f_c00240{bottom:290.520000px;}
.y1e_c00240{bottom:324.570000px;}
.y1d_c00240{bottom:357.720000px;}
.y1c_c00240{bottom:391.770000px;}
.y1b_c00240{bottom:425.970000px;}
.y1a_c00240{bottom:458.670000px;}
.y19_c00240{bottom:492.120000px;}
.y18_c00240{bottom:526.170000px;}
.y17_c00240{bottom:559.470000px;}
.y16_c00240{bottom:588.870000px;}
.y15_c00240{bottom:626.370000px;}
.y14_c00240{bottom:649.020000px;}
.y13_c00240{bottom:698.670000px;}
.y11_c00240{bottom:745.770000px;}
.y12_c00240{bottom:750.270000px;}
.y10_c00240{bottom:795.420000px;}
.yf_c00240{bottom:825.570000px;}
.ye_c00240{bottom:860.520000px;}
.yd_c00240{bottom:893.970000px;}
.yc_c00240{bottom:927.420000px;}
.yb_c00240{bottom:960.420000px;}
.ya_c00240{bottom:994.170000px;}
.y9_c00240{bottom:1028.370000px;}
.y8_c00240{bottom:1060.470000px;}
.y7_c00240{bottom:1093.770000px;}
.y6_c00240{bottom:1127.220000px;}
.y5_c00240{bottom:1161.270000px;}
.y4_c00240{bottom:1193.670000px;}
.y3_c00240{bottom:1227.420000px;}
.y2_c00240{bottom:1260.870000px;}
.y1_c00240{bottom:1296.570000px;}
.h7_c00240{height:13.200073px;}
.h8_c00240{height:43.804688px;}
.h3_c00240{height:101.825684px;}
.h2_c00240{height:121.546875px;}
.h5_c00240{height:124.239000px;}
.h4_c00240{height:124.839000px;}
.h6_c00240{height:129.143555px;}
.h0_c00240{height:1383.450000px;}
.h1_c00240{height:1383.750000px;}
.w2_c00240{width:104.875500px;}
.w0_c00240{width:878.025000px;}
.w1_c00240{width:878.250000px;}
.x0_c00240{left:0.000000px;}
.x8_c00240{left:67.200000px;}
.x5_c00240{left:68.850000px;}
.x3_c00240{left:69.900000px;}
.xf_c00240{left:70.950000px;}
.x2_c00240{left:72.000000px;}
.x10_c00240{left:103.950000px;}
.xc_c00240{left:106.050000px;}
.x9_c00240{left:164.400000px;}
.x4_c00240{left:215.250000px;}
.xd_c00240{left:229.800000px;}
.x6_c00240{left:304.350000px;}
.xe_c00240{left:307.500000px;}
.x11_c00240{left:360.450000px;}
.xa_c00240{left:364.800000px;}
.x12_c00240{left:390.826721px;}
.xb_c00240{left:482.400000px;}
.x1_c00240{left:560.850000px;}
.x7_c00240{left:628.800000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls3_c00240{letter-spacing:-5.333333pt;}
.ls1_c00240{letter-spacing:0.000000pt;}
.ls2_c00240{letter-spacing:2.666667pt;}
.ls0_c00240{letter-spacing:15.733333pt;}
.ws2_c00240{word-spacing:-45.333333pt;}
.ws3_c00240{word-spacing:-21.304000pt;}
.ws0_c00240{word-spacing:-20.565333pt;}
.ws1_c00240{word-spacing:-17.994667pt;}
.ws4_c00240{word-spacing:0.000000pt;}
._49_c00240{margin-left:-27.274667pt;}
._39_c00240{margin-left:-25.002667pt;}
._41_c00240{margin-left:-22.869333pt;}
._3b_c00240{margin-left:-21.930667pt;}
._2f_c00240{margin-left:-18.858667pt;}
._3d_c00240{margin-left:-16.128000pt;}
._2b_c00240{margin-left:-13.696000pt;}
._33_c00240{margin-left:-12.202667pt;}
._24_c00240{margin-left:-11.296000pt;}
._2c_c00240{margin-left:-10.154667pt;}
._3c_c00240{margin-left:-9.013333pt;}
._14_c00240{margin-left:-8.021333pt;}
._4a_c00240{margin-left:-6.229333pt;}
._e_c00240{margin-left:-4.096000pt;}
._11_c00240{margin-left:-2.730667pt;}
._19_c00240{margin-left:-1.109333pt;}
._13_c00240{width:0.938667pt;}
._a_c00240{width:1.877333pt;}
._2_c00240{width:3.328000pt;}
._3_c00240{width:5.034667pt;}
._5_c00240{width:6.058667pt;}
._10_c00240{width:7.082667pt;}
._4_c00240{width:8.277333pt;}
._20_c00240{width:9.781333pt;}
._0_c00240{width:11.093333pt;}
._c_c00240{width:12.458667pt;}
._9_c00240{width:13.994667pt;}
._6_c00240{width:14.933333pt;}
._48_c00240{width:15.925333pt;}
._29_c00240{width:16.896000pt;}
._1_c00240{width:19.370667pt;}
._34_c00240{width:20.624000pt;}
._16_c00240{width:21.589333pt;}
._17_c00240{width:22.656000pt;}
._8_c00240{width:24.149333pt;}
._2d_c00240{width:25.258667pt;}
._22_c00240{width:26.165333pt;}
._1e_c00240{width:27.253333pt;}
._1b_c00240{width:28.160000pt;}
._18_c00240{width:29.472000pt;}
._1a_c00240{width:30.378667pt;}
._1f_c00240{width:32.170667pt;}
._28_c00240{width:33.792000pt;}
._23_c00240{width:35.018667pt;}
._b_c00240{width:36.522667pt;}
._15_c00240{width:38.058667pt;}
._21_c00240{width:39.594667pt;}
._7_c00240{width:40.618667pt;}
._12_c00240{width:42.240000pt;}
._1c_c00240{width:44.085333pt;}
._27_c00240{width:45.173333pt;}
._1d_c00240{width:46.250667pt;}
._f_c00240{width:47.701333pt;}
._d_c00240{width:50.005333pt;}
._30_c00240{width:51.456000pt;}
._38_c00240{width:53.522667pt;}
._36_c00240{width:59.693333pt;}
._26_c00240{width:61.525333pt;}
._47_c00240{width:63.370667pt;}
._44_c00240{width:65.024000pt;}
._45_c00240{width:71.424000pt;}
._31_c00240{width:74.752000pt;}
._35_c00240{width:77.080000pt;}
._3f_c00240{width:87.210667pt;}
._40_c00240{width:149.632000pt;}
._25_c00240{width:158.976000pt;}
._3e_c00240{width:166.656000pt;}
._42_c00240{width:168.362667pt;}
._2a_c00240{width:198.634667pt;}
._3a_c00240{width:221.610667pt;}
._32_c00240{width:268.629333pt;}
._46_c00240{width:372.181333pt;}
._43_c00240{width:612.266667pt;}
._37_c00240{width:651.624000pt;}
._4b_c00240{width:688.762667pt;}
._2e_c00240{width:751.530667pt;}
.fs6_c00240{font-size:42.666667pt;}
.fs1_c00240{font-size:74.666667pt;}
.fs3_c00240{font-size:77.333333pt;}
.fs0_c00240{font-size:85.333333pt;}
.fs5_c00240{font-size:88.000000pt;}
.fs2_c00240{font-size:90.666667pt;}
.fs4_c00240{font-size:104.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y27_c00240{bottom:2.760000pt;}
.y26_c00240{bottom:6.425217pt;}
.y25_c00240{bottom:77.306667pt;}
.y24_c00240{bottom:106.640000pt;}
.y23_c00240{bottom:137.040000pt;}
.y22_c00240{bottom:167.440000pt;}
.y21_c00240{bottom:197.706667pt;}
.y20_c00240{bottom:228.240000pt;}
.y1f_c00240{bottom:258.240000pt;}
.y1e_c00240{bottom:288.506667pt;}
.y1d_c00240{bottom:317.973333pt;}
.y1c_c00240{bottom:348.240000pt;}
.y1b_c00240{bottom:378.640000pt;}
.y1a_c00240{bottom:407.706667pt;}
.y19_c00240{bottom:437.440000pt;}
.y18_c00240{bottom:467.706667pt;}
.y17_c00240{bottom:497.306667pt;}
.y16_c00240{bottom:523.440000pt;}
.y15_c00240{bottom:556.773333pt;}
.y14_c00240{bottom:576.906667pt;}
.y13_c00240{bottom:621.040000pt;}
.y11_c00240{bottom:662.906667pt;}
.y12_c00240{bottom:666.906667pt;}
.y10_c00240{bottom:707.040000pt;}
.yf_c00240{bottom:733.840000pt;}
.ye_c00240{bottom:764.906667pt;}
.yd_c00240{bottom:794.640000pt;}
.yc_c00240{bottom:824.373333pt;}
.yb_c00240{bottom:853.706667pt;}
.ya_c00240{bottom:883.706667pt;}
.y9_c00240{bottom:914.106667pt;}
.y8_c00240{bottom:942.640000pt;}
.y7_c00240{bottom:972.240000pt;}
.y6_c00240{bottom:1001.973333pt;}
.y5_c00240{bottom:1032.240000pt;}
.y4_c00240{bottom:1061.040000pt;}
.y3_c00240{bottom:1091.040000pt;}
.y2_c00240{bottom:1120.773333pt;}
.y1_c00240{bottom:1152.506667pt;}
.h7_c00240{height:11.733399pt;}
.h8_c00240{height:38.937500pt;}
.h3_c00240{height:90.511719pt;}
.h2_c00240{height:108.041667pt;}
.h5_c00240{height:110.434667pt;}
.h4_c00240{height:110.968000pt;}
.h6_c00240{height:114.794271pt;}
.h0_c00240{height:1229.733333pt;}
.h1_c00240{height:1230.000000pt;}
.w2_c00240{width:93.222667pt;}
.w0_c00240{width:780.466667pt;}
.w1_c00240{width:780.666667pt;}
.x0_c00240{left:0.000000pt;}
.x8_c00240{left:59.733333pt;}
.x5_c00240{left:61.200000pt;}
.x3_c00240{left:62.133333pt;}
.xf_c00240{left:63.066667pt;}
.x2_c00240{left:64.000000pt;}
.x10_c00240{left:92.400000pt;}
.xc_c00240{left:94.266667pt;}
.x9_c00240{left:146.133333pt;}
.x4_c00240{left:191.333333pt;}
.xd_c00240{left:204.266667pt;}
.x6_c00240{left:270.533333pt;}
.xe_c00240{left:273.333333pt;}
.x11_c00240{left:320.400000pt;}
.xa_c00240{left:324.266667pt;}
.x12_c00240{left:347.401530pt;}
.xb_c00240{left:428.800000pt;}
.x1_c00240{left:498.533333pt;}
.x7_c00240{left:558.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e782856ce77b8bc24d5b8c10.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_15d08fd0ae026d041291002f.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_828edc7e8baddcd9e6a9db48.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00241{vertical-align:-141.000000px;}
.v1_c00241{vertical-align:-110.400000px;}
.v0_c00241{vertical-align:0.000000px;}
.ls2_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:2.052000px;}
.ls3_c00241{letter-spacing:3.000000px;}
.ls1_c00241{letter-spacing:43.800000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:-34.704000px;}
.ws1_c00241{word-spacing:-0.168000px;}
.ws2_c00241{word-spacing:0.000000px;}
._60_c00241{margin-left:-87.846000px;}
._4e_c00241{margin-left:-44.544000px;}
._5b_c00241{margin-left:-43.041000px;}
._5a_c00241{margin-left:-39.840000px;}
._58_c00241{margin-left:-34.278000px;}
._3e_c00241{margin-left:-30.048000px;}
._54_c00241{margin-left:-28.188000px;}
._16_c00241{margin-left:-26.496000px;}
._4c_c00241{margin-left:-25.056000px;}
._44_c00241{margin-left:-23.616000px;}
._2c_c00241{margin-left:-19.227000px;}
._56_c00241{margin-left:-18.009000px;}
._4d_c00241{margin-left:-16.608000px;}
._33_c00241{margin-left:-15.264000px;}
._1a_c00241{margin-left:-13.920000px;}
._21_c00241{margin-left:-11.712000px;}
._13_c00241{margin-left:-10.560000px;}
._2e_c00241{margin-left:-9.360000px;}
._12_c00241{margin-left:-7.872000px;}
._11_c00241{margin-left:-5.664000px;}
._1c_c00241{margin-left:-4.416000px;}
._22_c00241{margin-left:-2.400000px;}
._37_c00241{margin-left:-1.056000px;}
._8_c00241{width:1.056000px;}
._7_c00241{width:2.208000px;}
._9_c00241{width:3.264000px;}
._65_c00241{width:4.272000px;}
._2_c00241{width:5.280000px;}
._0_c00241{width:7.296000px;}
._1_c00241{width:9.024000px;}
._5_c00241{width:10.560000px;}
._d_c00241{width:12.192000px;}
._c_c00241{width:13.248000px;}
._b_c00241{width:14.976000px;}
._26_c00241{width:16.176000px;}
._20_c00241{width:17.184000px;}
._e_c00241{width:19.680000px;}
._38_c00241{width:21.216000px;}
._2a_c00241{width:23.760000px;}
._a_c00241{width:25.536000px;}
._39_c00241{width:27.072000px;}
._1f_c00241{width:28.224000px;}
._3_c00241{width:29.856000px;}
._4_c00241{width:31.968000px;}
._31_c00241{width:33.120000px;}
._17_c00241{width:34.176000px;}
._f_c00241{width:35.424000px;}
._25_c00241{width:36.576000px;}
._6_c00241{width:39.264000px;}
._15_c00241{width:40.704000px;}
._24_c00241{width:43.392000px;}
._18_c00241{width:44.640000px;}
._23_c00241{width:45.792000px;}
._64_c00241{width:47.424000px;}
._3b_c00241{width:48.576000px;}
._14_c00241{width:50.016000px;}
._2b_c00241{width:51.330000px;}
._35_c00241{width:54.528000px;}
._36_c00241{width:58.368000px;}
._28_c00241{width:60.480000px;}
._27_c00241{width:63.408000px;}
._10_c00241{width:64.704000px;}
._3a_c00241{width:68.688000px;}
._40_c00241{width:73.440000px;}
._5d_c00241{width:75.522000px;}
._41_c00241{width:77.568000px;}
._2f_c00241{width:82.467000px;}
._29_c00241{width:88.896000px;}
._50_c00241{width:97.344000px;}
._52_c00241{width:105.792000px;}
._66_c00241{width:116.124000px;}
._62_c00241{width:120.921000px;}
._63_c00241{width:123.360000px;}
._4a_c00241{width:130.728000px;}
._30_c00241{width:145.476000px;}
._3c_c00241{width:179.520000px;}
._48_c00241{width:181.824000px;}
._51_c00241{width:198.780000px;}
._43_c00241{width:204.312000px;}
._49_c00241{width:209.136000px;}
._34_c00241{width:213.312000px;}
._53_c00241{width:214.455000px;}
._3f_c00241{width:226.944000px;}
._46_c00241{width:237.564000px;}
._4b_c00241{width:239.484000px;}
._32_c00241{width:273.792000px;}
._4f_c00241{width:287.040000px;}
._57_c00241{width:312.591000px;}
._47_c00241{width:318.684000px;}
._42_c00241{width:331.752000px;}
._45_c00241{width:349.848000px;}
._61_c00241{width:359.904000px;}
._5e_c00241{width:367.416000px;}
._3d_c00241{width:375.360000px;}
._1d_c00241{width:390.528000px;}
._5c_c00241{width:398.721000px;}
._5f_c00241{width:436.320000px;}
._2d_c00241{width:448.977000px;}
._55_c00241{width:462.057000px;}
._59_c00241{width:528.750000px;}
._19_c00241{width:539.424000px;}
._1e_c00241{width:555.168000px;}
._67_c00241{width:861.696000px;}
._1b_c00241{width:986.688000px;}
.fc2_c00241{color:transparent;}
.fc1_c00241{color:rgb(128,128,128);}
.fc0_c00241{color:rgb(0,0,0);}
.fs5_c00241{font-size:36.000000px;}
.fs6_c00241{font-size:48.000000px;}
.fs3_c00241{font-size:84.000000px;}
.fs2_c00241{font-size:87.000000px;}
.fs0_c00241{font-size:96.000000px;}
.fs4_c00241{font-size:102.000000px;}
.fs1_c00241{font-size:144.000000px;}
.y0_c00241{bottom:0.000000px;}
.y26_c00241{bottom:3.105000px;}
.y25_c00241{bottom:7.228357px;}
.y23_c00241{bottom:82.980000px;}
.y22_c00241{bottom:116.430000px;}
.y21_c00241{bottom:152.280000px;}
.y20_c00241{bottom:186.330000px;}
.y1f_c00241{bottom:220.380000px;}
.y1e_c00241{bottom:254.880000px;}
.y24_c00241{bottom:255.180000px;}
.y1d_c00241{bottom:288.630000px;}
.y1c_c00241{bottom:322.680000px;}
.y1b_c00241{bottom:356.730000px;}
.y1a_c00241{bottom:391.830000px;}
.y19_c00241{bottom:406.080000px;}
.y18_c00241{bottom:424.680000px;}
.y17_c00241{bottom:460.380000px;}
.y16_c00241{bottom:473.580000px;}
.y15_c00241{bottom:494.430000px;}
.y14_c00241{bottom:527.280000px;}
.y13_c00241{bottom:560.280000px;}
.y12_c00241{bottom:595.080000px;}
.y11_c00241{bottom:628.830000px;}
.y10_c00241{bottom:662.130000px;}
.yf_c00241{bottom:695.880000px;}
.ye_c00241{bottom:729.330000px;}
.yd_c00241{bottom:763.380000px;}
.yc_c00241{bottom:796.830000px;}
.yb_c00241{bottom:828.180000px;}
.ya_c00241{bottom:899.880000px;}
.y9_c00241{bottom:965.280000px;}
.y8_c00241{bottom:987.630000px;}
.y7_c00241{bottom:1064.580000px;}
.y6_c00241{bottom:1098.630000px;}
.y5_c00241{bottom:1132.380000px;}
.y4_c00241{bottom:1166.730000px;}
.y3_c00241{bottom:1198.080000px;}
.y2_c00241{bottom:1232.580000px;}
.y1_c00241{bottom:1266.330000px;}
.h8_c00241{height:13.200074px;}
.h9_c00241{height:43.804688px;}
.h5_c00241{height:45.580078px;}
.h4_c00241{height:101.825684px;}
.h6_c00241{height:110.151855px;}
.h2_c00241{height:121.546875px;}
.h7_c00241{height:129.143555px;}
.h3_c00241{height:182.320312px;}
.h0_c00241{height:1382.700000px;}
.h1_c00241{height:1383.000000px;}
.w2_c00241{width:104.875500px;}
.w0_c00241{width:863.175000px;}
.w1_c00241{width:863.250000px;}
.x0_c00241{left:0.000000px;}
.x14_c00241{left:129.900000px;}
.xb_c00241{left:138.000000px;}
.xf_c00241{left:238.500000px;}
.xe_c00241{left:239.850000px;}
.xc_c00241{left:241.200000px;}
.x9_c00241{left:242.700000px;}
.x4_c00241{left:244.800000px;}
.x2_c00241{left:246.000000px;}
.x1_c00241{left:247.050000px;}
.xd_c00241{left:263.550000px;}
.x13_c00241{left:278.400000px;}
.x10_c00241{left:287.250000px;}
.xa_c00241{left:298.950000px;}
.x5_c00241{left:331.050000px;}
.x11_c00241{left:348.600000px;}
.x6_c00241{left:353.100000px;}
.x3_c00241{left:376.650000px;}
.x17_c00241{left:383.401749px;}
.x12_c00241{left:386.400000px;}
.x7_c00241{left:394.950000px;}
.x8_c00241{left:477.000000px;}
.x15_c00241{left:562.800000px;}
.x16_c00241{left:800.550000px;}
@media print{
.v2_c00241{vertical-align:-125.333333pt;}
.v1_c00241{vertical-align:-98.133333pt;}
.v0_c00241{vertical-align:0.000000pt;}
.ls2_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:1.824000pt;}
.ls3_c00241{letter-spacing:2.666667pt;}
.ls1_c00241{letter-spacing:38.933333pt;}
.ws0_c00241{word-spacing:-30.848000pt;}
.ws1_c00241{word-spacing:-0.149333pt;}
.ws2_c00241{word-spacing:0.000000pt;}
._60_c00241{margin-left:-78.085333pt;}
._4e_c00241{margin-left:-39.594667pt;}
._5b_c00241{margin-left:-38.258667pt;}
._5a_c00241{margin-left:-35.413333pt;}
._58_c00241{margin-left:-30.469333pt;}
._3e_c00241{margin-left:-26.709333pt;}
._54_c00241{margin-left:-25.056000pt;}
._16_c00241{margin-left:-23.552000pt;}
._4c_c00241{margin-left:-22.272000pt;}
._44_c00241{margin-left:-20.992000pt;}
._2c_c00241{margin-left:-17.090667pt;}
._56_c00241{margin-left:-16.008000pt;}
._4d_c00241{margin-left:-14.762667pt;}
._33_c00241{margin-left:-13.568000pt;}
._1a_c00241{margin-left:-12.373333pt;}
._21_c00241{margin-left:-10.410667pt;}
._13_c00241{margin-left:-9.386667pt;}
._2e_c00241{margin-left:-8.320000pt;}
._12_c00241{margin-left:-6.997333pt;}
._11_c00241{margin-left:-5.034667pt;}
._1c_c00241{margin-left:-3.925333pt;}
._22_c00241{margin-left:-2.133333pt;}
._37_c00241{margin-left:-0.938667pt;}
._8_c00241{width:0.938667pt;}
._7_c00241{width:1.962667pt;}
._9_c00241{width:2.901333pt;}
._65_c00241{width:3.797333pt;}
._2_c00241{width:4.693333pt;}
._0_c00241{width:6.485333pt;}
._1_c00241{width:8.021333pt;}
._5_c00241{width:9.386667pt;}
._d_c00241{width:10.837333pt;}
._c_c00241{width:11.776000pt;}
._b_c00241{width:13.312000pt;}
._26_c00241{width:14.378667pt;}
._20_c00241{width:15.274667pt;}
._e_c00241{width:17.493333pt;}
._38_c00241{width:18.858667pt;}
._2a_c00241{width:21.120000pt;}
._a_c00241{width:22.698667pt;}
._39_c00241{width:24.064000pt;}
._1f_c00241{width:25.088000pt;}
._3_c00241{width:26.538667pt;}
._4_c00241{width:28.416000pt;}
._31_c00241{width:29.440000pt;}
._17_c00241{width:30.378667pt;}
._f_c00241{width:31.488000pt;}
._25_c00241{width:32.512000pt;}
._6_c00241{width:34.901333pt;}
._15_c00241{width:36.181333pt;}
._24_c00241{width:38.570667pt;}
._18_c00241{width:39.680000pt;}
._23_c00241{width:40.704000pt;}
._64_c00241{width:42.154667pt;}
._3b_c00241{width:43.178667pt;}
._14_c00241{width:44.458667pt;}
._2b_c00241{width:45.626667pt;}
._35_c00241{width:48.469333pt;}
._36_c00241{width:51.882667pt;}
._28_c00241{width:53.760000pt;}
._27_c00241{width:56.362667pt;}
._10_c00241{width:57.514667pt;}
._3a_c00241{width:61.056000pt;}
._40_c00241{width:65.280000pt;}
._5d_c00241{width:67.130667pt;}
._41_c00241{width:68.949333pt;}
._2f_c00241{width:73.304000pt;}
._29_c00241{width:79.018667pt;}
._50_c00241{width:86.528000pt;}
._52_c00241{width:94.037333pt;}
._66_c00241{width:103.221333pt;}
._62_c00241{width:107.485333pt;}
._63_c00241{width:109.653333pt;}
._4a_c00241{width:116.202667pt;}
._30_c00241{width:129.312000pt;}
._3c_c00241{width:159.573333pt;}
._48_c00241{width:161.621333pt;}
._51_c00241{width:176.693333pt;}
._43_c00241{width:181.610667pt;}
._49_c00241{width:185.898667pt;}
._34_c00241{width:189.610667pt;}
._53_c00241{width:190.626667pt;}
._3f_c00241{width:201.728000pt;}
._46_c00241{width:211.168000pt;}
._4b_c00241{width:212.874667pt;}
._32_c00241{width:243.370667pt;}
._4f_c00241{width:255.146667pt;}
._57_c00241{width:277.858667pt;}
._47_c00241{width:283.274667pt;}
._42_c00241{width:294.890667pt;}
._45_c00241{width:310.976000pt;}
._61_c00241{width:319.914667pt;}
._5e_c00241{width:326.592000pt;}
._3d_c00241{width:333.653333pt;}
._1d_c00241{width:347.136000pt;}
._5c_c00241{width:354.418667pt;}
._5f_c00241{width:387.840000pt;}
._2d_c00241{width:399.090667pt;}
._55_c00241{width:410.717333pt;}
._59_c00241{width:470.000000pt;}
._19_c00241{width:479.488000pt;}
._1e_c00241{width:493.482667pt;}
._67_c00241{width:765.952000pt;}
._1b_c00241{width:877.056000pt;}
.fs5_c00241{font-size:32.000000pt;}
.fs6_c00241{font-size:42.666667pt;}
.fs3_c00241{font-size:74.666667pt;}
.fs2_c00241{font-size:77.333333pt;}
.fs0_c00241{font-size:85.333333pt;}
.fs4_c00241{font-size:90.666667pt;}
.fs1_c00241{font-size:128.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y26_c00241{bottom:2.760000pt;}
.y25_c00241{bottom:6.425206pt;}
.y23_c00241{bottom:73.760000pt;}
.y22_c00241{bottom:103.493333pt;}
.y21_c00241{bottom:135.360000pt;}
.y20_c00241{bottom:165.626667pt;}
.y1f_c00241{bottom:195.893333pt;}
.y1e_c00241{bottom:226.560000pt;}
.y24_c00241{bottom:226.826667pt;}
.y1d_c00241{bottom:256.560000pt;}
.y1c_c00241{bottom:286.826667pt;}
.y1b_c00241{bottom:317.093333pt;}
.y1a_c00241{bottom:348.293333pt;}
.y19_c00241{bottom:360.960000pt;}
.y18_c00241{bottom:377.493333pt;}
.y17_c00241{bottom:409.226667pt;}
.y16_c00241{bottom:420.960000pt;}
.y15_c00241{bottom:439.493333pt;}
.y14_c00241{bottom:468.693333pt;}
.y13_c00241{bottom:498.026667pt;}
.y12_c00241{bottom:528.960000pt;}
.y11_c00241{bottom:558.960000pt;}
.y10_c00241{bottom:588.560000pt;}
.yf_c00241{bottom:618.560000pt;}
.ye_c00241{bottom:648.293333pt;}
.yd_c00241{bottom:678.560000pt;}
.yc_c00241{bottom:708.293333pt;}
.yb_c00241{bottom:736.160000pt;}
.ya_c00241{bottom:799.893333pt;}
.y9_c00241{bottom:858.026667pt;}
.y8_c00241{bottom:877.893333pt;}
.y7_c00241{bottom:946.293333pt;}
.y6_c00241{bottom:976.560000pt;}
.y5_c00241{bottom:1006.560000pt;}
.y4_c00241{bottom:1037.093333pt;}
.y3_c00241{bottom:1064.960000pt;}
.y2_c00241{bottom:1095.626667pt;}
.y1_c00241{bottom:1125.626667pt;}
.h8_c00241{height:11.733399pt;}
.h9_c00241{height:38.937500pt;}
.h5_c00241{height:40.515625pt;}
.h4_c00241{height:90.511719pt;}
.h6_c00241{height:97.912760pt;}
.h2_c00241{height:108.041667pt;}
.h7_c00241{height:114.794271pt;}
.h3_c00241{height:162.062500pt;}
.h0_c00241{height:1229.066667pt;}
.h1_c00241{height:1229.333333pt;}
.w2_c00241{width:93.222667pt;}
.w0_c00241{width:767.266667pt;}
.w1_c00241{width:767.333333pt;}
.x0_c00241{left:0.000000pt;}
.x14_c00241{left:115.466667pt;}
.xb_c00241{left:122.666667pt;}
.xf_c00241{left:212.000000pt;}
.xe_c00241{left:213.200000pt;}
.xc_c00241{left:214.400000pt;}
.x9_c00241{left:215.733333pt;}
.x4_c00241{left:217.600000pt;}
.x2_c00241{left:218.666667pt;}
.x1_c00241{left:219.600000pt;}
.xd_c00241{left:234.266667pt;}
.x13_c00241{left:247.466667pt;}
.x10_c00241{left:255.333333pt;}
.xa_c00241{left:265.733333pt;}
.x5_c00241{left:294.266667pt;}
.x11_c00241{left:309.866667pt;}
.x6_c00241{left:313.866667pt;}
.x3_c00241{left:334.800000pt;}
.x17_c00241{left:340.801554pt;}
.x12_c00241{left:343.466667pt;}
.x7_c00241{left:351.066667pt;}
.x8_c00241{left:424.000000pt;}
.x15_c00241{left:500.266667pt;}
.x16_c00241{left:711.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_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_0c3c44339a263c29aae2d00e.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_a1862cf1503a7d4b1073cbcf.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_9e1cf328b0e85cd2b62bb203.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_930e33ad85752989b3a064c3.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;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_c00242;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls6_c00242{letter-spacing:-3.000000px;}
.ls4_c00242{letter-spacing:0.000000px;}
.ls5_c00242{letter-spacing:3.000000px;}
.ls2_c00242{letter-spacing:9.600000px;}
.ls3_c00242{letter-spacing:18.168000px;}
.ls0_c00242{letter-spacing:47.520000px;}
.ls1_c00242{letter-spacing:110.496000px;}
.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;}
}
.ws5_c00242{word-spacing:-51.000000px;}
.ws4_c00242{word-spacing:-34.704000px;}
.ws7_c00242{word-spacing:-23.136000px;}
.ws0_c00242{word-spacing:-20.244000px;}
.ws6_c00242{word-spacing:-18.508800px;}
.ws8_c00242{word-spacing:0.000000px;}
.ws2_c00242{word-spacing:1.464000px;}
.ws1_c00242{word-spacing:5.371200px;}
.ws3_c00242{word-spacing:7.372800px;}
._22_c00242{margin-left:-93.024000px;}
._3f_c00242{margin-left:-37.932000px;}
._27_c00242{margin-left:-36.888000px;}
._23_c00242{margin-left:-34.704000px;}
._1d_c00242{margin-left:-31.992000px;}
._2f_c00242{margin-left:-30.096000px;}
._29_c00242{margin-left:-26.448000px;}
._2d_c00242{margin-left:-23.574000px;}
._25_c00242{margin-left:-22.320000px;}
._2b_c00242{margin-left:-19.923000px;}
._3d_c00242{margin-left:-17.332800px;}
._40_c00242{margin-left:-14.769000px;}
._28_c00242{margin-left:-10.353000px;}
._32_c00242{margin-left:-7.872000px;}
._1f_c00242{margin-left:-6.624000px;}
._20_c00242{margin-left:-5.472000px;}
._7_c00242{margin-left:-4.320000px;}
._21_c00242{margin-left:-3.264000px;}
._2_c00242{margin-left:-1.824000px;}
._15_c00242{width:1.056000px;}
._0_c00242{width:2.112000px;}
._4_c00242{width:3.891000px;}
._b_c00242{width:4.992000px;}
._c_c00242{width:6.138000px;}
._9_c00242{width:7.680000px;}
._a_c00242{width:9.024000px;}
._12_c00242{width:10.044000px;}
._d_c00242{width:11.085000px;}
._3_c00242{width:12.816000px;}
._10_c00242{width:14.016000px;}
._5_c00242{width:16.002000px;}
._6_c00242{width:17.760000px;}
._3a_c00242{width:18.954000px;}
._1_c00242{width:19.968000px;}
._e_c00242{width:21.261000px;}
._1e_c00242{width:22.752000px;}
._17_c00242{width:24.897000px;}
._39_c00242{width:25.920000px;}
._38_c00242{width:27.354000px;}
._18_c00242{width:28.416000px;}
._f_c00242{width:29.559000px;}
._13_c00242{width:32.217000px;}
._1b_c00242{width:33.921600px;}
._8_c00242{width:35.031000px;}
._11_c00242{width:36.645000px;}
._19_c00242{width:38.484000px;}
._3e_c00242{width:39.647400px;}
._16_c00242{width:40.731000px;}
._1c_c00242{width:41.842200px;}
._1a_c00242{width:43.032000px;}
._14_c00242{width:45.408000px;}
._36_c00242{width:51.840000px;}
._3b_c00242{width:54.063000px;}
._31_c00242{width:55.395000px;}
._35_c00242{width:61.761000px;}
._37_c00242{width:64.941000px;}
._3c_c00242{width:69.642000px;}
._26_c00242{width:138.960000px;}
._2c_c00242{width:144.333000px;}
._30_c00242{width:157.152000px;}
._24_c00242{width:537.696000px;}
._34_c00242{width:725.832000px;}
._33_c00242{width:778.176000px;}
._2a_c00242{width:850.542000px;}
._2e_c00242{width:867.912000px;}
.fc2_c00242{color:transparent;}
.fc1_c00242{color:rgb(128,128,128);}
.fc0_c00242{color:rgb(0,0,0);}
.fs3_c00242{font-size:30.000000px;}
.fs8_c00242{font-size:48.000000px;}
.fs7_c00242{font-size:76.800000px;}
.fs2_c00242{font-size:84.000000px;}
.fs1_c00242{font-size:87.000000px;}
.fs0_c00242{font-size:96.000000px;}
.fs6_c00242{font-size:102.000000px;}
.fs4_c00242{font-size:115.200000px;}
.fs5_c00242{font-size:144.000000px;}
.y0_c00242{bottom:0.000000px;}
.y1f_c00242{bottom:3.105000px;}
.y1e_c00242{bottom:7.228369px;}
.y1d_c00242{bottom:59.370000px;}
.y1b_c00242{bottom:66.720000px;}
.y1c_c00242{bottom:101.970000px;}
.y1a_c00242{bottom:332.820000px;}
.y19_c00242{bottom:366.870000px;}
.y18_c00242{bottom:400.920000px;}
.y17_c00242{bottom:433.620000px;}
.y16_c00242{bottom:467.370000px;}
.y15_c00242{bottom:500.820000px;}
.y14_c00242{bottom:533.970000px;}
.y13_c00242{bottom:567.570000px;}
.y12_c00242{bottom:601.320000px;}
.y11_c00242{bottom:633.870000px;}
.y10_c00242{bottom:667.170000px;}
.yf_c00242{bottom:701.220000px;}
.ye_c00242{bottom:734.970000px;}
.yd_c00242{bottom:767.820000px;}
.yc_c00242{bottom:800.820000px;}
.yb_c00242{bottom:879.570000px;}
.ya_c00242{bottom:891.570000px;}
.y9_c00242{bottom:940.620000px;}
.y8_c00242{bottom:992.520000px;}
.y7_c00242{bottom:1038.870000px;}
.y6_c00242{bottom:1069.470000px;}
.y5_c00242{bottom:1102.620000px;}
.y4_c00242{bottom:1136.670000px;}
.y3_c00242{bottom:1169.820000px;}
.y2_c00242{bottom:1202.820000px;}
.y1_c00242{bottom:1236.570000px;}
.h7_c00242{height:13.200073px;}
.h3_c00242{height:37.983398px;}
.h8_c00242{height:43.804688px;}
.h6_c00242{height:101.825684px;}
.h5_c00242{height:110.151855px;}
.h2_c00242{height:121.546875px;}
.h4_c00242{height:182.320312px;}
.h0_c00242{height:1356.450000px;}
.h1_c00242{height:1356.750000px;}
.w2_c00242{width:104.875500px;}
.w0_c00242{width:860.775000px;}
.w1_c00242{width:861.000000px;}
.x0_c00242{left:0.000000px;}
.xc_c00242{left:48.900000px;}
.xb_c00242{left:52.050000px;}
.x9_c00242{left:55.350000px;}
.x8_c00242{left:56.400000px;}
.xa_c00242{left:57.450000px;}
.x7_c00242{left:59.100000px;}
.x4_c00242{left:61.200000px;}
.x2_c00242{left:95.250000px;}
.x1_c00242{left:97.500000px;}
.x6_c00242{left:111.000000px;}
.x5_c00242{left:202.200000px;}
.xf_c00242{left:382.201721px;}
.x3_c00242{left:533.550000px;}
.xe_c00242{left:571.500000px;}
.xd_c00242{left:579.900000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls6_c00242{letter-spacing:-2.666667pt;}
.ls4_c00242{letter-spacing:0.000000pt;}
.ls5_c00242{letter-spacing:2.666667pt;}
.ls2_c00242{letter-spacing:8.533333pt;}
.ls3_c00242{letter-spacing:16.149333pt;}
.ls0_c00242{letter-spacing:42.240000pt;}
.ls1_c00242{letter-spacing:98.218667pt;}
.ws5_c00242{word-spacing:-45.333333pt;}
.ws4_c00242{word-spacing:-30.848000pt;}
.ws7_c00242{word-spacing:-20.565333pt;}
.ws0_c00242{word-spacing:-17.994667pt;}
.ws6_c00242{word-spacing:-16.452267pt;}
.ws8_c00242{word-spacing:0.000000pt;}
.ws2_c00242{word-spacing:1.301333pt;}
.ws1_c00242{word-spacing:4.774400pt;}
.ws3_c00242{word-spacing:6.553600pt;}
._22_c00242{margin-left:-82.688000pt;}
._3f_c00242{margin-left:-33.717333pt;}
._27_c00242{margin-left:-32.789333pt;}
._23_c00242{margin-left:-30.848000pt;}
._1d_c00242{margin-left:-28.437333pt;}
._2f_c00242{margin-left:-26.752000pt;}
._29_c00242{margin-left:-23.509333pt;}
._2d_c00242{margin-left:-20.954667pt;}
._25_c00242{margin-left:-19.840000pt;}
._2b_c00242{margin-left:-17.709333pt;}
._3d_c00242{margin-left:-15.406933pt;}
._40_c00242{margin-left:-13.128000pt;}
._28_c00242{margin-left:-9.202667pt;}
._32_c00242{margin-left:-6.997333pt;}
._1f_c00242{margin-left:-5.888000pt;}
._20_c00242{margin-left:-4.864000pt;}
._7_c00242{margin-left:-3.840000pt;}
._21_c00242{margin-left:-2.901333pt;}
._2_c00242{margin-left:-1.621333pt;}
._15_c00242{width:0.938667pt;}
._0_c00242{width:1.877333pt;}
._4_c00242{width:3.458667pt;}
._b_c00242{width:4.437333pt;}
._c_c00242{width:5.456000pt;}
._9_c00242{width:6.826667pt;}
._a_c00242{width:8.021333pt;}
._12_c00242{width:8.928000pt;}
._d_c00242{width:9.853333pt;}
._3_c00242{width:11.392000pt;}
._10_c00242{width:12.458667pt;}
._5_c00242{width:14.224000pt;}
._6_c00242{width:15.786667pt;}
._3a_c00242{width:16.848000pt;}
._1_c00242{width:17.749333pt;}
._e_c00242{width:18.898667pt;}
._1e_c00242{width:20.224000pt;}
._17_c00242{width:22.130667pt;}
._39_c00242{width:23.040000pt;}
._38_c00242{width:24.314667pt;}
._18_c00242{width:25.258667pt;}
._f_c00242{width:26.274667pt;}
._13_c00242{width:28.637333pt;}
._1b_c00242{width:30.152533pt;}
._8_c00242{width:31.138667pt;}
._11_c00242{width:32.573333pt;}
._19_c00242{width:34.208000pt;}
._3e_c00242{width:35.242133pt;}
._16_c00242{width:36.205333pt;}
._1c_c00242{width:37.193067pt;}
._1a_c00242{width:38.250667pt;}
._14_c00242{width:40.362667pt;}
._36_c00242{width:46.080000pt;}
._3b_c00242{width:48.056000pt;}
._31_c00242{width:49.240000pt;}
._35_c00242{width:54.898667pt;}
._37_c00242{width:57.725333pt;}
._3c_c00242{width:61.904000pt;}
._26_c00242{width:123.520000pt;}
._2c_c00242{width:128.296000pt;}
._30_c00242{width:139.690667pt;}
._24_c00242{width:477.952000pt;}
._34_c00242{width:645.184000pt;}
._33_c00242{width:691.712000pt;}
._2a_c00242{width:756.037333pt;}
._2e_c00242{width:771.477333pt;}
.fs3_c00242{font-size:26.666667pt;}
.fs8_c00242{font-size:42.666667pt;}
.fs7_c00242{font-size:68.266667pt;}
.fs2_c00242{font-size:74.666667pt;}
.fs1_c00242{font-size:77.333333pt;}
.fs0_c00242{font-size:85.333333pt;}
.fs6_c00242{font-size:90.666667pt;}
.fs4_c00242{font-size:102.400000pt;}
.fs5_c00242{font-size:128.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y1f_c00242{bottom:2.760000pt;}
.y1e_c00242{bottom:6.425217pt;}
.y1d_c00242{bottom:52.773333pt;}
.y1b_c00242{bottom:59.306667pt;}
.y1c_c00242{bottom:90.640000pt;}
.y1a_c00242{bottom:295.840000pt;}
.y19_c00242{bottom:326.106667pt;}
.y18_c00242{bottom:356.373333pt;}
.y17_c00242{bottom:385.440000pt;}
.y16_c00242{bottom:415.440000pt;}
.y15_c00242{bottom:445.173333pt;}
.y14_c00242{bottom:474.640000pt;}
.y13_c00242{bottom:504.506667pt;}
.y12_c00242{bottom:534.506667pt;}
.y11_c00242{bottom:563.440000pt;}
.y10_c00242{bottom:593.040000pt;}
.yf_c00242{bottom:623.306667pt;}
.ye_c00242{bottom:653.306667pt;}
.yd_c00242{bottom:682.506667pt;}
.yc_c00242{bottom:711.840000pt;}
.yb_c00242{bottom:781.840000pt;}
.ya_c00242{bottom:792.506667pt;}
.y9_c00242{bottom:836.106667pt;}
.y8_c00242{bottom:882.240000pt;}
.y7_c00242{bottom:923.440000pt;}
.y6_c00242{bottom:950.640000pt;}
.y5_c00242{bottom:980.106667pt;}
.y4_c00242{bottom:1010.373333pt;}
.y3_c00242{bottom:1039.840000pt;}
.y2_c00242{bottom:1069.173333pt;}
.y1_c00242{bottom:1099.173333pt;}
.h7_c00242{height:11.733399pt;}
.h3_c00242{height:33.763021pt;}
.h8_c00242{height:38.937500pt;}
.h6_c00242{height:90.511719pt;}
.h5_c00242{height:97.912760pt;}
.h2_c00242{height:108.041667pt;}
.h4_c00242{height:162.062500pt;}
.h0_c00242{height:1205.733333pt;}
.h1_c00242{height:1206.000000pt;}
.w2_c00242{width:93.222667pt;}
.w0_c00242{width:765.133333pt;}
.w1_c00242{width:765.333333pt;}
.x0_c00242{left:0.000000pt;}
.xc_c00242{left:43.466667pt;}
.xb_c00242{left:46.266667pt;}
.x9_c00242{left:49.200000pt;}
.x8_c00242{left:50.133333pt;}
.xa_c00242{left:51.066667pt;}
.x7_c00242{left:52.533333pt;}
.x4_c00242{left:54.400000pt;}
.x2_c00242{left:84.666667pt;}
.x1_c00242{left:86.666667pt;}
.x6_c00242{left:98.666667pt;}
.x5_c00242{left:179.733333pt;}
.xf_c00242{left:339.734863pt;}
.x3_c00242{left:474.266667pt;}
.xe_c00242{left:508.000000pt;}
.xd_c00242{left:515.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eba61ef51613fa86ec845528.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_49c82443c2809f27fe2c333b.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_53f01f788e2b74d540cd677f.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_4c080ecf66993d4b9bc3325f.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00243;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00243{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls5_c00243{letter-spacing:-6.000000px;}
.ls3_c00243{letter-spacing:0.000000px;}
.ls1_c00243{letter-spacing:6.120000px;}
.ls0_c00243{letter-spacing:8.400000px;}
.ls2_c00243{letter-spacing:17.400000px;}
.ls4_c00243{letter-spacing:48.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00243{word-spacing:-102.864000px;}
.ws1_c00243{word-spacing:-71.136000px;}
.ws5_c00243{word-spacing:-63.504000px;}
.ws0_c00243{word-spacing:-51.000000px;}
.ws6_c00243{word-spacing:-23.136000px;}
.ws3_c00243{word-spacing:-22.680000px;}
.ws7_c00243{word-spacing:0.000000px;}
.ws4_c00243{word-spacing:7.200000px;}
._43_c00243{margin-left:-62.496000px;}
._48_c00243{margin-left:-47.424000px;}
._4a_c00243{margin-left:-45.936000px;}
._49_c00243{margin-left:-39.840000px;}
._40_c00243{margin-left:-36.576000px;}
._22_c00243{margin-left:-30.528000px;}
._42_c00243{margin-left:-24.576000px;}
._41_c00243{margin-left:-23.520000px;}
._1f_c00243{margin-left:-16.896000px;}
._20_c00243{margin-left:-15.744000px;}
._35_c00243{margin-left:-14.496000px;}
._1d_c00243{margin-left:-12.144000px;}
._3b_c00243{margin-left:-11.028000px;}
._c_c00243{margin-left:-9.936000px;}
._3c_c00243{margin-left:-8.304000px;}
._46_c00243{margin-left:-7.032000px;}
._d_c00243{margin-left:-5.760000px;}
._10_c00243{margin-left:-4.320000px;}
._f_c00243{margin-left:-3.312000px;}
._a_c00243{margin-left:-2.304000px;}
._2a_c00243{margin-left:-1.296000px;}
._14_c00243{width:1.152000px;}
._1c_c00243{width:2.688000px;}
._29_c00243{width:3.744000px;}
._13_c00243{width:5.184000px;}
._2_c00243{width:6.912000px;}
._5_c00243{width:8.784000px;}
._1_c00243{width:10.656000px;}
._0_c00243{width:12.240000px;}
._3_c00243{width:13.824000px;}
._8_c00243{width:15.696000px;}
._1e_c00243{width:16.704000px;}
._b_c00243{width:17.856000px;}
._18_c00243{width:19.536000px;}
._e_c00243{width:20.592000px;}
._9_c00243{width:21.888000px;}
._12_c00243{width:24.912000px;}
._19_c00243{width:26.400000px;}
._37_c00243{width:27.408000px;}
._24_c00243{width:28.608000px;}
._1a_c00243{width:30.624000px;}
._31_c00243{width:32.160000px;}
._25_c00243{width:33.216000px;}
._26_c00243{width:35.424000px;}
._44_c00243{width:36.528000px;}
._11_c00243{width:37.584000px;}
._3d_c00243{width:39.264000px;}
._1b_c00243{width:40.320000px;}
._28_c00243{width:42.240000px;}
._39_c00243{width:43.248000px;}
._32_c00243{width:45.216000px;}
._38_c00243{width:47.088000px;}
._2b_c00243{width:49.056000px;}
._34_c00243{width:51.984000px;}
._2c_c00243{width:54.624000px;}
._36_c00243{width:57.792000px;}
._33_c00243{width:63.072000px;}
._30_c00243{width:68.688000px;}
._47_c00243{width:70.794000px;}
._4_c00243{width:80.784000px;}
._6_c00243{width:83.232000px;}
._7_c00243{width:84.384000px;}
._2f_c00243{width:92.640000px;}
._2d_c00243{width:96.624000px;}
._3e_c00243{width:100.944000px;}
._2e_c00243{width:107.664000px;}
._3a_c00243{width:140.160000px;}
._17_c00243{width:189.696000px;}
._4b_c00243{width:198.120000px;}
._23_c00243{width:219.840000px;}
._16_c00243{width:257.280000px;}
._21_c00243{width:401.520000px;}
._15_c00243{width:474.336000px;}
._27_c00243{width:486.048000px;}
._45_c00243{width:1109.616000px;}
._3f_c00243{width:1373.616000px;}
.fc2_c00243{color:transparent;}
.fc1_c00243{color:rgb(128,128,128);}
.fc0_c00243{color:rgb(0,0,0);}
.fs4_c00243{font-size:30.000000px;}
.fs5_c00243{font-size:48.000000px;}
.fs3_c00243{font-size:84.000000px;}
.fs1_c00243{font-size:96.000000px;}
.fs2_c00243{font-size:102.000000px;}
.fs0_c00243{font-size:144.000000px;}
.y0_c00243{bottom:0.000000px;}
.y21_c00243{bottom:3.105000px;}
.y20_c00243{bottom:7.228357px;}
.y1f_c00243{bottom:85.080000px;}
.y1e_c00243{bottom:114.480000px;}
.y1d_c00243{bottom:148.530000px;}
.y1c_c00243{bottom:183.330000px;}
.y1b_c00243{bottom:217.380000px;}
.y1a_c00243{bottom:249.180000px;}
.y19_c00243{bottom:342.630000px;}
.y18_c00243{bottom:354.780000px;}
.y17_c00243{bottom:394.530000px;}
.y16_c00243{bottom:445.530000px;}
.y15_c00243{bottom:487.680000px;}
.y14_c00243{bottom:523.230000px;}
.y13_c00243{bottom:558.630000px;}
.y12_c00243{bottom:592.980000px;}
.y11_c00243{bottom:624.330000px;}
.y10_c00243{bottom:659.880000px;}
.yf_c00243{bottom:693.930000px;}
.ye_c00243{bottom:727.380000px;}
.yd_c00243{bottom:761.730000px;}
.yc_c00243{bottom:794.580000px;}
.yb_c00243{bottom:828.930000px;}
.ya_c00243{bottom:862.680000px;}
.y9_c00243{bottom:895.680000px;}
.y8_c00243{bottom:928.830000px;}
.y7_c00243{bottom:962.580000px;}
.y6_c00243{bottom:997.380000px;}
.y5_c00243{bottom:1030.830000px;}
.y4_c00243{bottom:1063.230000px;}
.y3_c00243{bottom:1155.030000px;}
.y2_c00243{bottom:1202.880000px;}
.y1_c00243{bottom:1253.580000px;}
.h6_c00243{height:13.200074px;}
.h4_c00243{height:37.983398px;}
.h7_c00243{height:43.804688px;}
.h3_c00243{height:121.546875px;}
.h5_c00243{height:129.143555px;}
.h2_c00243{height:182.320312px;}
.h0_c00243{height:1382.700000px;}
.h1_c00243{height:1383.000000px;}
.w2_c00243{width:104.875500px;}
.w0_c00243{width:863.175000px;}
.w1_c00243{width:863.250000px;}
.x0_c00243{left:0.000000px;}
.x4_c00243{left:135.300000px;}
.x5_c00243{left:141.150000px;}
.xa_c00243{left:142.800000px;}
.x9_c00243{left:175.200000px;}
.x7_c00243{left:251.850000px;}
.x1_c00243{left:252.900000px;}
.x8_c00243{left:254.550000px;}
.xb_c00243{left:255.600000px;}
.xc_c00243{left:262.650000px;}
.x3_c00243{left:295.800000px;}
.x11_c00243{left:304.200000px;}
.x2_c00243{left:351.300000px;}
.x14_c00243{left:383.401749px;}
.x6_c00243{left:490.500000px;}
.x12_c00243{left:506.700000px;}
.xe_c00243{left:624.000000px;}
.xd_c00243{left:661.200000px;}
.xf_c00243{left:676.950000px;}
.x10_c00243{left:682.050000px;}
.x13_c00243{left:786.450000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls5_c00243{letter-spacing:-5.333333pt;}
.ls3_c00243{letter-spacing:0.000000pt;}
.ls1_c00243{letter-spacing:5.440000pt;}
.ls0_c00243{letter-spacing:7.466667pt;}
.ls2_c00243{letter-spacing:15.466667pt;}
.ls4_c00243{letter-spacing:42.666667pt;}
.ws2_c00243{word-spacing:-91.434667pt;}
.ws1_c00243{word-spacing:-63.232000pt;}
.ws5_c00243{word-spacing:-56.448000pt;}
.ws0_c00243{word-spacing:-45.333333pt;}
.ws6_c00243{word-spacing:-20.565333pt;}
.ws3_c00243{word-spacing:-20.160000pt;}
.ws7_c00243{word-spacing:0.000000pt;}
.ws4_c00243{word-spacing:6.400000pt;}
._43_c00243{margin-left:-55.552000pt;}
._48_c00243{margin-left:-42.154667pt;}
._4a_c00243{margin-left:-40.832000pt;}
._49_c00243{margin-left:-35.413333pt;}
._40_c00243{margin-left:-32.512000pt;}
._22_c00243{margin-left:-27.136000pt;}
._42_c00243{margin-left:-21.845333pt;}
._41_c00243{margin-left:-20.906667pt;}
._1f_c00243{margin-left:-15.018667pt;}
._20_c00243{margin-left:-13.994667pt;}
._35_c00243{margin-left:-12.885333pt;}
._1d_c00243{margin-left:-10.794667pt;}
._3b_c00243{margin-left:-9.802667pt;}
._c_c00243{margin-left:-8.832000pt;}
._3c_c00243{margin-left:-7.381333pt;}
._46_c00243{margin-left:-6.250667pt;}
._d_c00243{margin-left:-5.120000pt;}
._10_c00243{margin-left:-3.840000pt;}
._f_c00243{margin-left:-2.944000pt;}
._a_c00243{margin-left:-2.048000pt;}
._2a_c00243{margin-left:-1.152000pt;}
._14_c00243{width:1.024000pt;}
._1c_c00243{width:2.389333pt;}
._29_c00243{width:3.328000pt;}
._13_c00243{width:4.608000pt;}
._2_c00243{width:6.144000pt;}
._5_c00243{width:7.808000pt;}
._1_c00243{width:9.472000pt;}
._0_c00243{width:10.880000pt;}
._3_c00243{width:12.288000pt;}
._8_c00243{width:13.952000pt;}
._1e_c00243{width:14.848000pt;}
._b_c00243{width:15.872000pt;}
._18_c00243{width:17.365333pt;}
._e_c00243{width:18.304000pt;}
._9_c00243{width:19.456000pt;}
._12_c00243{width:22.144000pt;}
._19_c00243{width:23.466667pt;}
._37_c00243{width:24.362667pt;}
._24_c00243{width:25.429333pt;}
._1a_c00243{width:27.221333pt;}
._31_c00243{width:28.586667pt;}
._25_c00243{width:29.525333pt;}
._26_c00243{width:31.488000pt;}
._44_c00243{width:32.469333pt;}
._11_c00243{width:33.408000pt;}
._3d_c00243{width:34.901333pt;}
._1b_c00243{width:35.840000pt;}
._28_c00243{width:37.546667pt;}
._39_c00243{width:38.442667pt;}
._32_c00243{width:40.192000pt;}
._38_c00243{width:41.856000pt;}
._2b_c00243{width:43.605333pt;}
._34_c00243{width:46.208000pt;}
._2c_c00243{width:48.554667pt;}
._36_c00243{width:51.370667pt;}
._33_c00243{width:56.064000pt;}
._30_c00243{width:61.056000pt;}
._47_c00243{width:62.928000pt;}
._4_c00243{width:71.808000pt;}
._6_c00243{width:73.984000pt;}
._7_c00243{width:75.008000pt;}
._2f_c00243{width:82.346667pt;}
._2d_c00243{width:85.888000pt;}
._3e_c00243{width:89.728000pt;}
._2e_c00243{width:95.701333pt;}
._3a_c00243{width:124.586667pt;}
._17_c00243{width:168.618667pt;}
._4b_c00243{width:176.106667pt;}
._23_c00243{width:195.413333pt;}
._16_c00243{width:228.693333pt;}
._21_c00243{width:356.906667pt;}
._15_c00243{width:421.632000pt;}
._27_c00243{width:432.042667pt;}
._45_c00243{width:986.325333pt;}
._3f_c00243{width:1220.992000pt;}
.fs4_c00243{font-size:26.666667pt;}
.fs5_c00243{font-size:42.666667pt;}
.fs3_c00243{font-size:74.666667pt;}
.fs1_c00243{font-size:85.333333pt;}
.fs2_c00243{font-size:90.666667pt;}
.fs0_c00243{font-size:128.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y21_c00243{bottom:2.760000pt;}
.y20_c00243{bottom:6.425206pt;}
.y1f_c00243{bottom:75.626667pt;}
.y1e_c00243{bottom:101.760000pt;}
.y1d_c00243{bottom:132.026667pt;}
.y1c_c00243{bottom:162.960000pt;}
.y1b_c00243{bottom:193.226667pt;}
.y1a_c00243{bottom:221.493333pt;}
.y19_c00243{bottom:304.560000pt;}
.y18_c00243{bottom:315.360000pt;}
.y17_c00243{bottom:350.693333pt;}
.y16_c00243{bottom:396.026667pt;}
.y15_c00243{bottom:433.493333pt;}
.y14_c00243{bottom:465.093333pt;}
.y13_c00243{bottom:496.560000pt;}
.y12_c00243{bottom:527.093333pt;}
.y11_c00243{bottom:554.960000pt;}
.y10_c00243{bottom:586.560000pt;}
.yf_c00243{bottom:616.826667pt;}
.ye_c00243{bottom:646.560000pt;}
.yd_c00243{bottom:677.093333pt;}
.yc_c00243{bottom:706.293333pt;}
.yb_c00243{bottom:736.826667pt;}
.ya_c00243{bottom:766.826667pt;}
.y9_c00243{bottom:796.160000pt;}
.y8_c00243{bottom:825.626667pt;}
.y7_c00243{bottom:855.626667pt;}
.y6_c00243{bottom:886.560000pt;}
.y5_c00243{bottom:916.293333pt;}
.y4_c00243{bottom:945.093333pt;}
.y3_c00243{bottom:1026.693333pt;}
.y2_c00243{bottom:1069.226667pt;}
.y1_c00243{bottom:1114.293333pt;}
.h6_c00243{height:11.733399pt;}
.h4_c00243{height:33.763021pt;}
.h7_c00243{height:38.937500pt;}
.h3_c00243{height:108.041667pt;}
.h5_c00243{height:114.794271pt;}
.h2_c00243{height:162.062500pt;}
.h0_c00243{height:1229.066667pt;}
.h1_c00243{height:1229.333333pt;}
.w2_c00243{width:93.222667pt;}
.w0_c00243{width:767.266667pt;}
.w1_c00243{width:767.333333pt;}
.x0_c00243{left:0.000000pt;}
.x4_c00243{left:120.266667pt;}
.x5_c00243{left:125.466667pt;}
.xa_c00243{left:126.933333pt;}
.x9_c00243{left:155.733333pt;}
.x7_c00243{left:223.866667pt;}
.x1_c00243{left:224.800000pt;}
.x8_c00243{left:226.266667pt;}
.xb_c00243{left:227.200000pt;}
.xc_c00243{left:233.466667pt;}
.x3_c00243{left:262.933333pt;}
.x11_c00243{left:270.400000pt;}
.x2_c00243{left:312.266667pt;}
.x14_c00243{left:340.801554pt;}
.x6_c00243{left:436.000000pt;}
.x12_c00243{left:450.400000pt;}
.xe_c00243{left:554.666667pt;}
.xd_c00243{left:587.733333pt;}
.xf_c00243{left:601.733333pt;}
.x10_c00243{left:606.266667pt;}
.x13_c00243{left:699.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e95ba166e4441c6e77917b3e.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_acaa30a6dcf1782de5db7ebf.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_18e0a0a6f8f2605c153cbf93.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_03e8c14f81c171f45852b258.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00244;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls5_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:0.600000px;}
.ls2_c00244{letter-spacing:6.000000px;}
.ls1_c00244{letter-spacing:14.400000px;}
.ls3_c00244{letter-spacing:15.900000px;}
.ls4_c00244{letter-spacing:142.818000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00244{word-spacing:-63.504000px;}
.ws1_c00244{word-spacing:-61.044000px;}
.ws0_c00244{word-spacing:-51.360000px;}
.ws3_c00244{word-spacing:0.000000px;}
._32_c00244{margin-left:-71.016000px;}
._42_c00244{margin-left:-42.876000px;}
._15_c00244{margin-left:-30.294000px;}
._2b_c00244{margin-left:-26.010000px;}
._41_c00244{margin-left:-22.230000px;}
._b_c00244{margin-left:-21.114000px;}
._18_c00244{margin-left:-17.724000px;}
._30_c00244{margin-left:-16.626000px;}
._9_c00244{margin-left:-14.076000px;}
._34_c00244{margin-left:-12.480000px;}
._8_c00244{margin-left:-11.424000px;}
._5_c00244{margin-left:-9.894000px;}
._7_c00244{margin-left:-8.364000px;}
._16_c00244{margin-left:-7.242000px;}
._6_c00244{margin-left:-5.916000px;}
._10_c00244{margin-left:-4.794000px;}
._0_c00244{margin-left:-3.060000px;}
._1_c00244{margin-left:-1.428000px;}
._12_c00244{width:1.326000px;}
._f_c00244{width:2.652000px;}
._d_c00244{width:3.774000px;}
._17_c00244{width:5.712000px;}
._e_c00244{width:7.446000px;}
._11_c00244{width:8.976000px;}
._1c_c00244{width:10.506000px;}
._26_c00244{width:11.832000px;}
._2_c00244{width:13.158000px;}
._36_c00244{width:14.838000px;}
._13_c00244{width:15.912000px;}
._33_c00244{width:17.544000px;}
._c_c00244{width:18.870000px;}
._1a_c00244{width:19.992000px;}
._21_c00244{width:21.726000px;}
._2e_c00244{width:22.848000px;}
._3b_c00244{width:24.216000px;}
._3_c00244{width:25.704000px;}
._31_c00244{width:26.826000px;}
._14_c00244{width:28.560000px;}
._4_c00244{width:30.396000px;}
._35_c00244{width:32.058000px;}
._20_c00244{width:33.456000px;}
._27_c00244{width:35.802000px;}
._1b_c00244{width:37.740000px;}
._24_c00244{width:38.760000px;}
._1d_c00244{width:40.188000px;}
._19_c00244{width:42.330000px;}
._1e_c00244{width:44.166000px;}
._3e_c00244{width:45.348000px;}
._2d_c00244{width:47.058000px;}
._2f_c00244{width:48.450000px;}
._22_c00244{width:49.980000px;}
._1f_c00244{width:51.000000px;}
._44_c00244{width:52.140000px;}
._38_c00244{width:53.856000px;}
._25_c00244{width:55.182000px;}
._37_c00244{width:58.344000px;}
._3f_c00244{width:60.372000px;}
._a_c00244{width:61.404000px;}
._23_c00244{width:62.424000px;}
._3d_c00244{width:81.786000px;}
._40_c00244{width:83.460000px;}
._3c_c00244{width:88.476000px;}
._39_c00244{width:109.200000px;}
._28_c00244{width:122.502000px;}
._29_c00244{width:130.560000px;}
._2c_c00244{width:150.306000px;}
._2a_c00244{width:265.302000px;}
._45_c00244{width:826.752000px;}
._43_c00244{width:905.664000px;}
._3a_c00244{width:1270.794000px;}
.fc2_c00244{color:transparent;}
.fc1_c00244{color:rgb(128,128,128);}
.fc0_c00244{color:rgb(0,0,0);}
.fs5_c00244{font-size:48.000000px;}
.fs1_c00244{font-size:60.000000px;}
.fs4_c00244{font-size:84.000000px;}
.fs2_c00244{font-size:96.000000px;}
.fs3_c00244{font-size:99.000000px;}
.fs0_c00244{font-size:102.000000px;}
.y0_c00244{bottom:0.000000px;}
.y26_c00244{bottom:3.105000px;}
.y25_c00244{bottom:7.228369px;}
.y24_c00244{bottom:71.520000px;}
.y23_c00244{bottom:106.920000px;}
.y22_c00244{bottom:140.670000px;}
.y21_c00244{bottom:174.720000px;}
.y20_c00244{bottom:208.920000px;}
.y1f_c00244{bottom:242.220000px;}
.y1e_c00244{bottom:276.120000px;}
.y1d_c00244{bottom:309.420000px;}
.y1c_c00244{bottom:343.170000px;}
.y1b_c00244{bottom:376.620000px;}
.y1a_c00244{bottom:410.970000px;}
.y19_c00244{bottom:442.770000px;}
.y18_c00244{bottom:477.270000px;}
.y17_c00244{bottom:511.020000px;}
.y16_c00244{bottom:545.370000px;}
.y15_c00244{bottom:578.820000px;}
.y14_c00244{bottom:612.270000px;}
.y13_c00244{bottom:646.020000px;}
.y12_c00244{bottom:679.770000px;}
.y11_c00244{bottom:712.770000px;}
.y10_c00244{bottom:745.920000px;}
.yf_c00244{bottom:779.670000px;}
.ye_c00244{bottom:812.070000px;}
.yd_c00244{bottom:845.670000px;}
.yc_c00244{bottom:878.070000px;}
.yb_c00244{bottom:912.270000px;}
.ya_c00244{bottom:945.570000px;}
.y9_c00244{bottom:980.070000px;}
.y8_c00244{bottom:1011.870000px;}
.y7_c00244{bottom:1046.220000px;}
.y6_c00244{bottom:1079.670000px;}
.y5_c00244{bottom:1112.970000px;}
.y4_c00244{bottom:1146.120000px;}
.y3_c00244{bottom:1180.170000px;}
.y2_c00244{bottom:1213.020000px;}
.y1_c00244{bottom:1246.020000px;}
.h4_c00244{height:13.200073px;}
.h5_c00244{height:43.804688px;}
.h3_c00244{height:121.546875px;}
.h2_c00244{height:129.143555px;}
.h0_c00244{height:1356.450000px;}
.h1_c00244{height:1356.750000px;}
.w2_c00244{width:104.875500px;}
.w0_c00244{width:860.775000px;}
.w1_c00244{width:861.000000px;}
.x0_c00244{left:0.000000px;}
.xc_c00244{left:67.800000px;}
.xa_c00244{left:68.850000px;}
.xb_c00244{left:69.900000px;}
.x8_c00244{left:71.100000px;}
.x7_c00244{left:72.150000px;}
.x6_c00244{left:73.800000px;}
.x5_c00244{left:74.850000px;}
.x4_c00244{left:76.500000px;}
.x3_c00244{left:77.550000px;}
.x2_c00244{left:78.600000px;}
.x1_c00244{left:79.650000px;}
.x9_c00244{left:106.650000px;}
.xd_c00244{left:382.201721px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls5_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.533333pt;}
.ls2_c00244{letter-spacing:5.333333pt;}
.ls1_c00244{letter-spacing:12.800000pt;}
.ls3_c00244{letter-spacing:14.133333pt;}
.ls4_c00244{letter-spacing:126.949333pt;}
.ws2_c00244{word-spacing:-56.448000pt;}
.ws1_c00244{word-spacing:-54.261333pt;}
.ws0_c00244{word-spacing:-45.653333pt;}
.ws3_c00244{word-spacing:0.000000pt;}
._32_c00244{margin-left:-63.125333pt;}
._42_c00244{margin-left:-38.112000pt;}
._15_c00244{margin-left:-26.928000pt;}
._2b_c00244{margin-left:-23.120000pt;}
._41_c00244{margin-left:-19.760000pt;}
._b_c00244{margin-left:-18.768000pt;}
._18_c00244{margin-left:-15.754667pt;}
._30_c00244{margin-left:-14.778667pt;}
._9_c00244{margin-left:-12.512000pt;}
._34_c00244{margin-left:-11.093333pt;}
._8_c00244{margin-left:-10.154667pt;}
._5_c00244{margin-left:-8.794667pt;}
._7_c00244{margin-left:-7.434667pt;}
._16_c00244{margin-left:-6.437333pt;}
._6_c00244{margin-left:-5.258667pt;}
._10_c00244{margin-left:-4.261333pt;}
._0_c00244{margin-left:-2.720000pt;}
._1_c00244{margin-left:-1.269333pt;}
._12_c00244{width:1.178667pt;}
._f_c00244{width:2.357333pt;}
._d_c00244{width:3.354667pt;}
._17_c00244{width:5.077333pt;}
._e_c00244{width:6.618667pt;}
._11_c00244{width:7.978667pt;}
._1c_c00244{width:9.338667pt;}
._26_c00244{width:10.517333pt;}
._2_c00244{width:11.696000pt;}
._36_c00244{width:13.189333pt;}
._13_c00244{width:14.144000pt;}
._33_c00244{width:15.594667pt;}
._c_c00244{width:16.773333pt;}
._1a_c00244{width:17.770667pt;}
._21_c00244{width:19.312000pt;}
._2e_c00244{width:20.309333pt;}
._3b_c00244{width:21.525333pt;}
._3_c00244{width:22.848000pt;}
._31_c00244{width:23.845333pt;}
._14_c00244{width:25.386667pt;}
._4_c00244{width:27.018667pt;}
._35_c00244{width:28.496000pt;}
._20_c00244{width:29.738667pt;}
._27_c00244{width:31.824000pt;}
._1b_c00244{width:33.546667pt;}
._24_c00244{width:34.453333pt;}
._1d_c00244{width:35.722667pt;}
._19_c00244{width:37.626667pt;}
._1e_c00244{width:39.258667pt;}
._3e_c00244{width:40.309333pt;}
._2d_c00244{width:41.829333pt;}
._2f_c00244{width:43.066667pt;}
._22_c00244{width:44.426667pt;}
._1f_c00244{width:45.333333pt;}
._44_c00244{width:46.346667pt;}
._38_c00244{width:47.872000pt;}
._25_c00244{width:49.050667pt;}
._37_c00244{width:51.861333pt;}
._3f_c00244{width:53.664000pt;}
._a_c00244{width:54.581333pt;}
._23_c00244{width:55.488000pt;}
._3d_c00244{width:72.698667pt;}
._40_c00244{width:74.186667pt;}
._3c_c00244{width:78.645333pt;}
._39_c00244{width:97.066667pt;}
._28_c00244{width:108.890667pt;}
._29_c00244{width:116.053333pt;}
._2c_c00244{width:133.605333pt;}
._2a_c00244{width:235.824000pt;}
._45_c00244{width:734.890667pt;}
._43_c00244{width:805.034667pt;}
._3a_c00244{width:1129.594667pt;}
.fs5_c00244{font-size:42.666667pt;}
.fs1_c00244{font-size:53.333333pt;}
.fs4_c00244{font-size:74.666667pt;}
.fs2_c00244{font-size:85.333333pt;}
.fs3_c00244{font-size:88.000000pt;}
.fs0_c00244{font-size:90.666667pt;}
.y0_c00244{bottom:0.000000pt;}
.y26_c00244{bottom:2.760000pt;}
.y25_c00244{bottom:6.425217pt;}
.y24_c00244{bottom:63.573333pt;}
.y23_c00244{bottom:95.040000pt;}
.y22_c00244{bottom:125.040000pt;}
.y21_c00244{bottom:155.306667pt;}
.y20_c00244{bottom:185.706667pt;}
.y1f_c00244{bottom:215.306667pt;}
.y1e_c00244{bottom:245.440000pt;}
.y1d_c00244{bottom:275.040000pt;}
.y1c_c00244{bottom:305.040000pt;}
.y1b_c00244{bottom:334.773333pt;}
.y1a_c00244{bottom:365.306667pt;}
.y19_c00244{bottom:393.573333pt;}
.y18_c00244{bottom:424.240000pt;}
.y17_c00244{bottom:454.240000pt;}
.y16_c00244{bottom:484.773333pt;}
.y15_c00244{bottom:514.506667pt;}
.y14_c00244{bottom:544.240000pt;}
.y13_c00244{bottom:574.240000pt;}
.y12_c00244{bottom:604.240000pt;}
.y11_c00244{bottom:633.573333pt;}
.y10_c00244{bottom:663.040000pt;}
.yf_c00244{bottom:693.040000pt;}
.ye_c00244{bottom:721.840000pt;}
.yd_c00244{bottom:751.706667pt;}
.yc_c00244{bottom:780.506667pt;}
.yb_c00244{bottom:810.906667pt;}
.ya_c00244{bottom:840.506667pt;}
.y9_c00244{bottom:871.173333pt;}
.y8_c00244{bottom:899.440000pt;}
.y7_c00244{bottom:929.973333pt;}
.y6_c00244{bottom:959.706667pt;}
.y5_c00244{bottom:989.306667pt;}
.y4_c00244{bottom:1018.773333pt;}
.y3_c00244{bottom:1049.040000pt;}
.y2_c00244{bottom:1078.240000pt;}
.y1_c00244{bottom:1107.573333pt;}
.h4_c00244{height:11.733399pt;}
.h5_c00244{height:38.937500pt;}
.h3_c00244{height:108.041667pt;}
.h2_c00244{height:114.794271pt;}
.h0_c00244{height:1205.733333pt;}
.h1_c00244{height:1206.000000pt;}
.w2_c00244{width:93.222667pt;}
.w0_c00244{width:765.133333pt;}
.w1_c00244{width:765.333333pt;}
.x0_c00244{left:0.000000pt;}
.xc_c00244{left:60.266667pt;}
.xa_c00244{left:61.200000pt;}
.xb_c00244{left:62.133333pt;}
.x8_c00244{left:63.200000pt;}
.x7_c00244{left:64.133333pt;}
.x6_c00244{left:65.600000pt;}
.x5_c00244{left:66.533333pt;}
.x4_c00244{left:68.000000pt;}
.x3_c00244{left:68.933333pt;}
.x2_c00244{left:69.866667pt;}
.x1_c00244{left:70.800000pt;}
.x9_c00244{left:94.800000pt;}
.xd_c00244{left:339.734863pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_930e33ad85752989b3a064c3.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;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:ff2_c00245;src:url('chunks/assets/font_7a0e9ea4368acd55e79bed88.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_a919f01c882f21cea791b588.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls3_c00245{letter-spacing:0.000000px;}
.ls2_c00245{letter-spacing:1.008000px;}
.ls0_c00245{letter-spacing:7.200000px;}
.ls1_c00245{letter-spacing:30.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00245{word-spacing:-64.512000px;}
.ws0_c00245{word-spacing:-63.504000px;}
.ws3_c00245{word-spacing:-53.136000px;}
.ws1_c00245{word-spacing:-51.000000px;}
.ws5_c00245{word-spacing:0.000000px;}
.ws2_c00245{word-spacing:21.936000px;}
._47_c00245{margin-left:-88.512000px;}
._35_c00245{margin-left:-63.552000px;}
._39_c00245{margin-left:-31.872000px;}
._27_c00245{margin-left:-28.320000px;}
._30_c00245{margin-left:-26.592000px;}
._36_c00245{margin-left:-23.904000px;}
._31_c00245{margin-left:-22.824000px;}
._32_c00245{margin-left:-21.144000px;}
._2b_c00245{margin-left:-19.992000px;}
._3c_c00245{margin-left:-18.624000px;}
._43_c00245{margin-left:-16.920000px;}
._3a_c00245{margin-left:-15.264000px;}
._2f_c00245{margin-left:-13.152000px;}
._2e_c00245{margin-left:-11.976000px;}
._3f_c00245{margin-left:-10.656000px;}
._13_c00245{margin-left:-9.504000px;}
._28_c00245{margin-left:-7.776000px;}
._9_c00245{margin-left:-6.624000px;}
._b_c00245{margin-left:-5.568000px;}
._a_c00245{margin-left:-4.320000px;}
._1d_c00245{margin-left:-2.976000px;}
._8_c00245{margin-left:-1.920000px;}
._0_c00245{width:1.632000px;}
._f_c00245{width:2.688000px;}
._3_c00245{width:3.840000px;}
._4_c00245{width:5.280000px;}
._6_c00245{width:7.200000px;}
._14_c00245{width:8.256000px;}
._26_c00245{width:9.312000px;}
._17_c00245{width:10.752000px;}
._20_c00245{width:11.808000px;}
._10_c00245{width:13.248000px;}
._12_c00245{width:14.880000px;}
._25_c00245{width:15.936000px;}
._24_c00245{width:16.992000px;}
._d_c00245{width:18.048000px;}
._18_c00245{width:19.584000px;}
._1b_c00245{width:21.408000px;}
._1a_c00245{width:24.192000px;}
._15_c00245{width:26.208000px;}
._29_c00245{width:27.840000px;}
._16_c00245{width:28.896000px;}
._5_c00245{width:31.104000px;}
._19_c00245{width:32.352000px;}
._1c_c00245{width:33.600000px;}
._1f_c00245{width:34.752000px;}
._11_c00245{width:36.768000px;}
._1_c00245{width:38.304000px;}
._2_c00245{width:40.224000px;}
._3d_c00245{width:41.376000px;}
._1e_c00245{width:42.720000px;}
._42_c00245{width:43.776000px;}
._e_c00245{width:45.984000px;}
._7_c00245{width:47.136000px;}
._41_c00245{width:49.344000px;}
._c_c00245{width:50.880000px;}
._21_c00245{width:52.224000px;}
._37_c00245{width:54.048000px;}
._3e_c00245{width:55.488000px;}
._23_c00245{width:58.080000px;}
._38_c00245{width:59.616000px;}
._22_c00245{width:61.440000px;}
._40_c00245{width:64.032000px;}
._3b_c00245{width:66.816000px;}
._34_c00245{width:69.504000px;}
._33_c00245{width:74.568000px;}
._2d_c00245{width:98.112000px;}
._2c_c00245{width:136.776000px;}
._2a_c00245{width:224.136000px;}
._44_c00245{width:300.288000px;}
._46_c00245{width:545.088000px;}
._45_c00245{width:975.840000px;}
._48_c00245{width:2122.176000px;}
.fc2_c00245{color:transparent;}
.fc1_c00245{color:rgb(128,128,128);}
.fc0_c00245{color:rgb(0,0,0);}
.fs4_c00245{font-size:48.000000px;}
.fs2_c00245{font-size:84.000000px;}
.fs3_c00245{font-size:87.000000px;}
.fs1_c00245{font-size:96.000000px;}
.fs0_c00245{font-size:102.000000px;}
.y0_c00245{bottom:0.000000px;}
.y25_c00245{bottom:3.105000px;}
.y24_c00245{bottom:7.228355px;}
.y23_c00245{bottom:82.935000px;}
.y22_c00245{bottom:115.035000px;}
.y21_c00245{bottom:149.085000px;}
.y20_c00245{bottom:183.135000px;}
.y1f_c00245{bottom:217.335000px;}
.y1e_c00245{bottom:251.085000px;}
.y1d_c00245{bottom:278.685000px;}
.y1c_c00245{bottom:286.785000px;}
.y1b_c00245{bottom:320.535000px;}
.y1a_c00245{bottom:353.985000px;}
.y19_c00245{bottom:388.485000px;}
.y18_c00245{bottom:422.235000px;}
.y17_c00245{bottom:456.885000px;}
.y16_c00245{bottom:490.935000px;}
.y15_c00245{bottom:524.385000px;}
.y14_c00245{bottom:558.435000px;}
.y13_c00245{bottom:592.635000px;}
.y12_c00245{bottom:659.385000px;}
.y11_c00245{bottom:728.985000px;}
.y10_c00245{bottom:762.285000px;}
.yf_c00245{bottom:795.735000px;}
.ye_c00245{bottom:829.785000px;}
.yd_c00245{bottom:864.285000px;}
.yc_c00245{bottom:896.685000px;}
.yb_c00245{bottom:930.435000px;}
.ya_c00245{bottom:963.435000px;}
.y9_c00245{bottom:996.885000px;}
.y8_c00245{bottom:1029.585000px;}
.y7_c00245{bottom:1063.485000px;}
.y6_c00245{bottom:1097.535000px;}
.y5_c00245{bottom:1130.835000px;}
.y4_c00245{bottom:1163.685000px;}
.y3_c00245{bottom:1198.035000px;}
.y2_c00245{bottom:1230.885000px;}
.y1_c00245{bottom:1264.185000px;}
.h4_c00245{height:13.200074px;}
.h5_c00245{height:43.804688px;}
.h3_c00245{height:110.151855px;}
.h2_c00245{height:121.546875px;}
.h1_c00245{height:1366.500000px;}
.h0_c00245{height:1366.725000px;}
.w2_c00245{width:104.875500px;}
.w0_c00245{width:852.675000px;}
.w1_c00245{width:852.750000px;}
.x0_c00245{left:0.000000px;}
.xd_c00245{left:228.150000px;}
.xe_c00245{left:229.200000px;}
.xb_c00245{left:230.400000px;}
.xa_c00245{left:231.450000px;}
.x4_c00245{left:233.550000px;}
.x3_c00245{left:235.200000px;}
.x8_c00245{left:236.850000px;}
.x2_c00245{left:237.900000px;}
.x1_c00245{left:240.600000px;}
.x9_c00245{left:263.250000px;}
.x6_c00245{left:340.500000px;}
.x5_c00245{left:344.250000px;}
.x7_c00245{left:378.300000px;}
.xc_c00245{left:414.000000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls3_c00245{letter-spacing:0.000000pt;}
.ls2_c00245{letter-spacing:0.896000pt;}
.ls0_c00245{letter-spacing:6.400000pt;}
.ls1_c00245{letter-spacing:26.666667pt;}
.ws4_c00245{word-spacing:-57.344000pt;}
.ws0_c00245{word-spacing:-56.448000pt;}
.ws3_c00245{word-spacing:-47.232000pt;}
.ws1_c00245{word-spacing:-45.333333pt;}
.ws5_c00245{word-spacing:0.000000pt;}
.ws2_c00245{word-spacing:19.498667pt;}
._47_c00245{margin-left:-78.677333pt;}
._35_c00245{margin-left:-56.490667pt;}
._39_c00245{margin-left:-28.330667pt;}
._27_c00245{margin-left:-25.173333pt;}
._30_c00245{margin-left:-23.637333pt;}
._36_c00245{margin-left:-21.248000pt;}
._31_c00245{margin-left:-20.288000pt;}
._32_c00245{margin-left:-18.794667pt;}
._2b_c00245{margin-left:-17.770667pt;}
._3c_c00245{margin-left:-16.554667pt;}
._43_c00245{margin-left:-15.040000pt;}
._3a_c00245{margin-left:-13.568000pt;}
._2f_c00245{margin-left:-11.690667pt;}
._2e_c00245{margin-left:-10.645333pt;}
._3f_c00245{margin-left:-9.472000pt;}
._13_c00245{margin-left:-8.448000pt;}
._28_c00245{margin-left:-6.912000pt;}
._9_c00245{margin-left:-5.888000pt;}
._b_c00245{margin-left:-4.949333pt;}
._a_c00245{margin-left:-3.840000pt;}
._1d_c00245{margin-left:-2.645333pt;}
._8_c00245{margin-left:-1.706667pt;}
._0_c00245{width:1.450667pt;}
._f_c00245{width:2.389333pt;}
._3_c00245{width:3.413333pt;}
._4_c00245{width:4.693333pt;}
._6_c00245{width:6.400000pt;}
._14_c00245{width:7.338667pt;}
._26_c00245{width:8.277333pt;}
._17_c00245{width:9.557333pt;}
._20_c00245{width:10.496000pt;}
._10_c00245{width:11.776000pt;}
._12_c00245{width:13.226667pt;}
._25_c00245{width:14.165333pt;}
._24_c00245{width:15.104000pt;}
._d_c00245{width:16.042667pt;}
._18_c00245{width:17.408000pt;}
._1b_c00245{width:19.029333pt;}
._1a_c00245{width:21.504000pt;}
._15_c00245{width:23.296000pt;}
._29_c00245{width:24.746667pt;}
._16_c00245{width:25.685333pt;}
._5_c00245{width:27.648000pt;}
._19_c00245{width:28.757333pt;}
._1c_c00245{width:29.866667pt;}
._1f_c00245{width:30.890667pt;}
._11_c00245{width:32.682667pt;}
._1_c00245{width:34.048000pt;}
._2_c00245{width:35.754667pt;}
._3d_c00245{width:36.778667pt;}
._1e_c00245{width:37.973333pt;}
._42_c00245{width:38.912000pt;}
._e_c00245{width:40.874667pt;}
._7_c00245{width:41.898667pt;}
._41_c00245{width:43.861333pt;}
._c_c00245{width:45.226667pt;}
._21_c00245{width:46.421333pt;}
._37_c00245{width:48.042667pt;}
._3e_c00245{width:49.322667pt;}
._23_c00245{width:51.626667pt;}
._38_c00245{width:52.992000pt;}
._22_c00245{width:54.613333pt;}
._40_c00245{width:56.917333pt;}
._3b_c00245{width:59.392000pt;}
._34_c00245{width:61.781333pt;}
._33_c00245{width:66.282667pt;}
._2d_c00245{width:87.210667pt;}
._2c_c00245{width:121.578667pt;}
._2a_c00245{width:199.232000pt;}
._44_c00245{width:266.922667pt;}
._46_c00245{width:484.522667pt;}
._45_c00245{width:867.413333pt;}
._48_c00245{width:1886.378667pt;}
.fs4_c00245{font-size:42.666667pt;}
.fs2_c00245{font-size:74.666667pt;}
.fs3_c00245{font-size:77.333333pt;}
.fs1_c00245{font-size:85.333333pt;}
.fs0_c00245{font-size:90.666667pt;}
.y0_c00245{bottom:0.000000pt;}
.y25_c00245{bottom:2.760000pt;}
.y24_c00245{bottom:6.425204pt;}
.y23_c00245{bottom:73.720000pt;}
.y22_c00245{bottom:102.253333pt;}
.y21_c00245{bottom:132.520000pt;}
.y20_c00245{bottom:162.786667pt;}
.y1f_c00245{bottom:193.186667pt;}
.y1e_c00245{bottom:223.186667pt;}
.y1d_c00245{bottom:247.720000pt;}
.y1c_c00245{bottom:254.920000pt;}
.y1b_c00245{bottom:284.920000pt;}
.y1a_c00245{bottom:314.653333pt;}
.y19_c00245{bottom:345.320000pt;}
.y18_c00245{bottom:375.320000pt;}
.y17_c00245{bottom:406.120000pt;}
.y16_c00245{bottom:436.386667pt;}
.y15_c00245{bottom:466.120000pt;}
.y14_c00245{bottom:496.386667pt;}
.y13_c00245{bottom:526.786667pt;}
.y12_c00245{bottom:586.120000pt;}
.y11_c00245{bottom:647.986667pt;}
.y10_c00245{bottom:677.586667pt;}
.yf_c00245{bottom:707.320000pt;}
.ye_c00245{bottom:737.586667pt;}
.yd_c00245{bottom:768.253333pt;}
.yc_c00245{bottom:797.053333pt;}
.yb_c00245{bottom:827.053333pt;}
.ya_c00245{bottom:856.386667pt;}
.y9_c00245{bottom:886.120000pt;}
.y8_c00245{bottom:915.186667pt;}
.y7_c00245{bottom:945.320000pt;}
.y6_c00245{bottom:975.586667pt;}
.y5_c00245{bottom:1005.186667pt;}
.y4_c00245{bottom:1034.386667pt;}
.y3_c00245{bottom:1064.920000pt;}
.y2_c00245{bottom:1094.120000pt;}
.y1_c00245{bottom:1123.720000pt;}
.h4_c00245{height:11.733399pt;}
.h5_c00245{height:38.937500pt;}
.h3_c00245{height:97.912760pt;}
.h2_c00245{height:108.041667pt;}
.h1_c00245{height:1214.666667pt;}
.h0_c00245{height:1214.866667pt;}
.w2_c00245{width:93.222667pt;}
.w0_c00245{width:757.933333pt;}
.w1_c00245{width:758.000000pt;}
.x0_c00245{left:0.000000pt;}
.xd_c00245{left:202.800000pt;}
.xe_c00245{left:203.733333pt;}
.xb_c00245{left:204.800000pt;}
.xa_c00245{left:205.733333pt;}
.x4_c00245{left:207.600000pt;}
.x3_c00245{left:209.066667pt;}
.x8_c00245{left:210.533333pt;}
.x2_c00245{left:211.466667pt;}
.x1_c00245{left:213.866667pt;}
.x9_c00245{left:234.000000pt;}
.x6_c00245{left:302.666667pt;}
.x5_c00245{left:306.000000pt;}
.x7_c00245{left:336.266667pt;}
.xc_c00245{left:368.000000pt;}
}





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

.ir_c00246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00246;src:url('chunks/assets/font_cb371442f0c5576bc6b14615.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_ea26310b62b109507dd4a835.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_1dbd05ba3fb01896894a607d.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00246{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls2_c00246{letter-spacing:-6.000000px;}
.ls1_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:15.252000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-68.037000px;}
.ws1_c00246{word-spacing:0.000000px;}
._4b_c00246{margin-left:-27.996000px;}
._3b_c00246{margin-left:-26.976000px;}
._43_c00246{margin-left:-24.192000px;}
._49_c00246{margin-left:-22.536000px;}
._c_c00246{margin-left:-19.392000px;}
._3c_c00246{margin-left:-17.664000px;}
._27_c00246{margin-left:-15.456000px;}
._25_c00246{margin-left:-14.400000px;}
._26_c00246{margin-left:-12.768000px;}
._38_c00246{margin-left:-10.080000px;}
._11_c00246{margin-left:-8.736000px;}
._1e_c00246{margin-left:-7.680000px;}
._36_c00246{margin-left:-5.568000px;}
._10_c00246{margin-left:-4.416000px;}
._f_c00246{margin-left:-3.072000px;}
._0_c00246{margin-left:-1.632000px;}
._14_c00246{width:1.056000px;}
._6_c00246{width:2.400000px;}
._4_c00246{width:3.456000px;}
._5_c00246{width:4.704000px;}
._3_c00246{width:6.432000px;}
._7_c00246{width:7.776000px;}
._2_c00246{width:8.832000px;}
._1f_c00246{width:10.368000px;}
._23_c00246{width:11.424000px;}
._9_c00246{width:12.864000px;}
._2e_c00246{width:14.688000px;}
._e_c00246{width:15.744000px;}
._24_c00246{width:17.568000px;}
._8_c00246{width:19.200000px;}
._47_c00246{width:20.352000px;}
._1a_c00246{width:21.408000px;}
._30_c00246{width:24.288000px;}
._a_c00246{width:26.016000px;}
._1_c00246{width:27.168000px;}
._18_c00246{width:28.320000px;}
._2b_c00246{width:30.528000px;}
._32_c00246{width:31.872000px;}
._19_c00246{width:32.928000px;}
._1b_c00246{width:34.368000px;}
._1c_c00246{width:35.520000px;}
._41_c00246{width:36.744000px;}
._2c_c00246{width:38.112000px;}
._2a_c00246{width:39.264000px;}
._33_c00246{width:40.344000px;}
._2f_c00246{width:41.376000px;}
._31_c00246{width:42.624000px;}
._3e_c00246{width:43.680000px;}
._17_c00246{width:45.024000px;}
._29_c00246{width:47.136000px;}
._1d_c00246{width:49.728000px;}
._2d_c00246{width:52.224000px;}
._4a_c00246{width:54.126000px;}
._15_c00246{width:55.392000px;}
._12_c00246{width:58.368000px;}
._b_c00246{width:60.000000px;}
._13_c00246{width:61.824000px;}
._39_c00246{width:62.880000px;}
._42_c00246{width:65.016000px;}
._16_c00246{width:66.528000px;}
._28_c00246{width:68.448000px;}
._44_c00246{width:71.616000px;}
._4c_c00246{width:89.580000px;}
._21_c00246{width:107.808000px;}
._48_c00246{width:129.312000px;}
._46_c00246{width:145.176000px;}
._3a_c00246{width:152.448000px;}
._22_c00246{width:155.436000px;}
._40_c00246{width:161.856000px;}
._37_c00246{width:176.448000px;}
._d_c00246{width:180.864000px;}
._34_c00246{width:184.608000px;}
._3d_c00246{width:228.576000px;}
._35_c00246{width:249.984000px;}
._45_c00246{width:298.176000px;}
._20_c00246{width:373.824000px;}
._3f_c00246{width:592.704000px;}
._4d_c00246{width:1940.640000px;}
.fc2_c00246{color:transparent;}
.fc1_c00246{color:rgb(128,128,128);}
.fc0_c00246{color:rgb(0,0,0);}
.fs4_c00246{font-size:48.000000px;}
.fs1_c00246{font-size:84.000000px;}
.fs2_c00246{font-size:93.000000px;}
.fs0_c00246{font-size:96.000000px;}
.fs3_c00246{font-size:111.000000px;}
.y0_c00246{bottom:0.000000px;}
.y26_c00246{bottom:3.105000px;}
.y25_c00246{bottom:7.228369px;}
.y24_c00246{bottom:108.720000px;}
.y23_c00246{bottom:142.020000px;}
.y22_c00246{bottom:178.170000px;}
.y21_c00246{bottom:210.870000px;}
.y20_c00246{bottom:244.320000px;}
.y1f_c00246{bottom:278.070000px;}
.y1e_c00246{bottom:311.820000px;}
.y1d_c00246{bottom:346.320000px;}
.y1c_c00246{bottom:379.920000px;}
.y1b_c00246{bottom:413.670000px;}
.y1a_c00246{bottom:447.120000px;}
.y19_c00246{bottom:480.270000px;}
.y18_c00246{bottom:514.620000px;}
.y17_c00246{bottom:547.470000px;}
.y16_c00246{bottom:580.770000px;}
.y15_c00246{bottom:614.520000px;}
.y14_c00246{bottom:647.670000px;}
.y13_c00246{bottom:680.670000px;}
.y12_c00246{bottom:713.820000px;}
.y11_c00246{bottom:747.270000px;}
.y10_c00246{bottom:781.020000px;}
.yf_c00246{bottom:814.620000px;}
.ye_c00246{bottom:846.720000px;}
.yd_c00246{bottom:880.770000px;}
.yc_c00246{bottom:914.220000px;}
.yb_c00246{bottom:947.370000px;}
.ya_c00246{bottom:980.820000px;}
.y9_c00246{bottom:1014.570000px;}
.y8_c00246{bottom:1048.170000px;}
.y7_c00246{bottom:1081.320000px;}
.y6_c00246{bottom:1114.470000px;}
.y5_c00246{bottom:1149.570000px;}
.y4_c00246{bottom:1177.770000px;}
.y3_c00246{bottom:1214.370000px;}
.y2_c00246{bottom:1248.120000px;}
.y1_c00246{bottom:1283.520000px;}
.h5_c00246{height:13.200073px;}
.h6_c00246{height:43.804688px;}
.h4_c00246{height:108.940430px;}
.h3_c00246{height:117.748535px;}
.h2_c00246{height:121.546875px;}
.h0_c00246{height:1383.450000px;}
.h1_c00246{height:1383.750000px;}
.w2_c00246{width:104.875500px;}
.w0_c00246{width:878.025000px;}
.w1_c00246{width:878.250000px;}
.x0_c00246{left:0.000000px;}
.xc_c00246{left:36.450000px;}
.xd_c00246{left:46.800000px;}
.xa_c00246{left:48.300000px;}
.x9_c00246{left:50.550000px;}
.xb_c00246{left:51.600000px;}
.x7_c00246{left:52.650000px;}
.x6_c00246{left:53.700000px;}
.x5_c00246{left:54.900000px;}
.x4_c00246{left:55.950000px;}
.x3_c00246{left:57.450000px;}
.x2_c00246{left:58.500000px;}
.x1_c00246{left:59.700000px;}
.x8_c00246{left:86.100000px;}
.x10_c00246{left:390.826721px;}
.xe_c00246{left:507.300000px;}
.xf_c00246{left:522.750000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls2_c00246{letter-spacing:-5.333333pt;}
.ls1_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:13.557333pt;}
.ws0_c00246{word-spacing:-60.477333pt;}
.ws1_c00246{word-spacing:0.000000pt;}
._4b_c00246{margin-left:-24.885333pt;}
._3b_c00246{margin-left:-23.978667pt;}
._43_c00246{margin-left:-21.504000pt;}
._49_c00246{margin-left:-20.032000pt;}
._c_c00246{margin-left:-17.237333pt;}
._3c_c00246{margin-left:-15.701333pt;}
._27_c00246{margin-left:-13.738667pt;}
._25_c00246{margin-left:-12.800000pt;}
._26_c00246{margin-left:-11.349333pt;}
._38_c00246{margin-left:-8.960000pt;}
._11_c00246{margin-left:-7.765333pt;}
._1e_c00246{margin-left:-6.826667pt;}
._36_c00246{margin-left:-4.949333pt;}
._10_c00246{margin-left:-3.925333pt;}
._f_c00246{margin-left:-2.730667pt;}
._0_c00246{margin-left:-1.450667pt;}
._14_c00246{width:0.938667pt;}
._6_c00246{width:2.133333pt;}
._4_c00246{width:3.072000pt;}
._5_c00246{width:4.181333pt;}
._3_c00246{width:5.717333pt;}
._7_c00246{width:6.912000pt;}
._2_c00246{width:7.850667pt;}
._1f_c00246{width:9.216000pt;}
._23_c00246{width:10.154667pt;}
._9_c00246{width:11.434667pt;}
._2e_c00246{width:13.056000pt;}
._e_c00246{width:13.994667pt;}
._24_c00246{width:15.616000pt;}
._8_c00246{width:17.066667pt;}
._47_c00246{width:18.090667pt;}
._1a_c00246{width:19.029333pt;}
._30_c00246{width:21.589333pt;}
._a_c00246{width:23.125333pt;}
._1_c00246{width:24.149333pt;}
._18_c00246{width:25.173333pt;}
._2b_c00246{width:27.136000pt;}
._32_c00246{width:28.330667pt;}
._19_c00246{width:29.269333pt;}
._1b_c00246{width:30.549333pt;}
._1c_c00246{width:31.573333pt;}
._41_c00246{width:32.661333pt;}
._2c_c00246{width:33.877333pt;}
._2a_c00246{width:34.901333pt;}
._33_c00246{width:35.861333pt;}
._2f_c00246{width:36.778667pt;}
._31_c00246{width:37.888000pt;}
._3e_c00246{width:38.826667pt;}
._17_c00246{width:40.021333pt;}
._29_c00246{width:41.898667pt;}
._1d_c00246{width:44.202667pt;}
._2d_c00246{width:46.421333pt;}
._4a_c00246{width:48.112000pt;}
._15_c00246{width:49.237333pt;}
._12_c00246{width:51.882667pt;}
._b_c00246{width:53.333333pt;}
._13_c00246{width:54.954667pt;}
._39_c00246{width:55.893333pt;}
._42_c00246{width:57.792000pt;}
._16_c00246{width:59.136000pt;}
._28_c00246{width:60.842667pt;}
._44_c00246{width:63.658667pt;}
._4c_c00246{width:79.626667pt;}
._21_c00246{width:95.829333pt;}
._48_c00246{width:114.944000pt;}
._46_c00246{width:129.045333pt;}
._3a_c00246{width:135.509333pt;}
._22_c00246{width:138.165333pt;}
._40_c00246{width:143.872000pt;}
._37_c00246{width:156.842667pt;}
._d_c00246{width:160.768000pt;}
._34_c00246{width:164.096000pt;}
._3d_c00246{width:203.178667pt;}
._35_c00246{width:222.208000pt;}
._45_c00246{width:265.045333pt;}
._20_c00246{width:332.288000pt;}
._3f_c00246{width:526.848000pt;}
._4d_c00246{width:1725.013333pt;}
.fs4_c00246{font-size:42.666667pt;}
.fs1_c00246{font-size:74.666667pt;}
.fs2_c00246{font-size:82.666667pt;}
.fs0_c00246{font-size:85.333333pt;}
.fs3_c00246{font-size:98.666667pt;}
.y0_c00246{bottom:0.000000pt;}
.y26_c00246{bottom:2.760000pt;}
.y25_c00246{bottom:6.425217pt;}
.y24_c00246{bottom:96.640000pt;}
.y23_c00246{bottom:126.240000pt;}
.y22_c00246{bottom:158.373333pt;}
.y21_c00246{bottom:187.440000pt;}
.y20_c00246{bottom:217.173333pt;}
.y1f_c00246{bottom:247.173333pt;}
.y1e_c00246{bottom:277.173333pt;}
.y1d_c00246{bottom:307.840000pt;}
.y1c_c00246{bottom:337.706667pt;}
.y1b_c00246{bottom:367.706667pt;}
.y1a_c00246{bottom:397.440000pt;}
.y19_c00246{bottom:426.906667pt;}
.y18_c00246{bottom:457.440000pt;}
.y17_c00246{bottom:486.640000pt;}
.y16_c00246{bottom:516.240000pt;}
.y15_c00246{bottom:546.240000pt;}
.y14_c00246{bottom:575.706667pt;}
.y13_c00246{bottom:605.040000pt;}
.y12_c00246{bottom:634.506667pt;}
.y11_c00246{bottom:664.240000pt;}
.y10_c00246{bottom:694.240000pt;}
.yf_c00246{bottom:724.106667pt;}
.ye_c00246{bottom:752.640000pt;}
.yd_c00246{bottom:782.906667pt;}
.yc_c00246{bottom:812.640000pt;}
.yb_c00246{bottom:842.106667pt;}
.ya_c00246{bottom:871.840000pt;}
.y9_c00246{bottom:901.840000pt;}
.y8_c00246{bottom:931.706667pt;}
.y7_c00246{bottom:961.173333pt;}
.y6_c00246{bottom:990.640000pt;}
.y5_c00246{bottom:1021.840000pt;}
.y4_c00246{bottom:1046.906667pt;}
.y3_c00246{bottom:1079.440000pt;}
.y2_c00246{bottom:1109.440000pt;}
.y1_c00246{bottom:1140.906667pt;}
.h5_c00246{height:11.733399pt;}
.h6_c00246{height:38.937500pt;}
.h4_c00246{height:96.835938pt;}
.h3_c00246{height:104.665365pt;}
.h2_c00246{height:108.041667pt;}
.h0_c00246{height:1229.733333pt;}
.h1_c00246{height:1230.000000pt;}
.w2_c00246{width:93.222667pt;}
.w0_c00246{width:780.466667pt;}
.w1_c00246{width:780.666667pt;}
.x0_c00246{left:0.000000pt;}
.xc_c00246{left:32.400000pt;}
.xd_c00246{left:41.600000pt;}
.xa_c00246{left:42.933333pt;}
.x9_c00246{left:44.933333pt;}
.xb_c00246{left:45.866667pt;}
.x7_c00246{left:46.800000pt;}
.x6_c00246{left:47.733333pt;}
.x5_c00246{left:48.800000pt;}
.x4_c00246{left:49.733333pt;}
.x3_c00246{left:51.066667pt;}
.x2_c00246{left:52.000000pt;}
.x1_c00246{left:53.066667pt;}
.x8_c00246{left:76.533333pt;}
.x10_c00246{left:347.401530pt;}
.xe_c00246{left:450.933333pt;}
.xf_c00246{left:464.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_432f2a38d2e7080080467ca7.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_dd47e26d89eededacece0bff.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_05b93c0782b621c060feab2e.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_f9e89d81670daa8ec7f480e9.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls7_c00247{letter-spacing:-3.000000px;}
.ls6_c00247{letter-spacing:0.000000px;}
.ls1_c00247{letter-spacing:3.000000px;}
.ls3_c00247{letter-spacing:3.412800px;}
.ls5_c00247{letter-spacing:3.648000px;}
.ls2_c00247{letter-spacing:4.896000px;}
.ls0_c00247{letter-spacing:5.400000px;}
.ls4_c00247{letter-spacing:7.560000px;}
.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:-51.000000px;}
.ws2_c00247{word-spacing:-23.136000px;}
.ws1_c00247{word-spacing:-20.244000px;}
.ws3_c00247{word-spacing:0.000000px;}
._37_c00247{margin-left:-86.112000px;}
._33_c00247{margin-left:-35.364000px;}
._3f_c00247{margin-left:-32.640000px;}
._3e_c00247{margin-left:-24.768000px;}
._6_c00247{margin-left:-22.464000px;}
._29_c00247{margin-left:-19.392000px;}
._3d_c00247{margin-left:-17.520000px;}
._26_c00247{margin-left:-13.152000px;}
._2b_c00247{margin-left:-11.040000px;}
._34_c00247{margin-left:-9.684000px;}
._38_c00247{margin-left:-7.224000px;}
._11_c00247{margin-left:-6.048000px;}
._2d_c00247{margin-left:-4.752000px;}
._47_c00247{margin-left:-3.684000px;}
._10_c00247{margin-left:-2.592000px;}
._14_c00247{margin-left:-1.488000px;}
._b_c00247{width:1.104000px;}
._4_c00247{width:2.448000px;}
._a_c00247{width:3.936000px;}
._2e_c00247{width:4.992000px;}
._5_c00247{width:6.000000px;}
._12_c00247{width:7.008000px;}
._3_c00247{width:8.352000px;}
._1_c00247{width:9.792000px;}
._22_c00247{width:10.944000px;}
._0_c00247{width:12.000000px;}
._e_c00247{width:13.872000px;}
._1f_c00247{width:15.024000px;}
._3c_c00247{width:16.848000px;}
._d_c00247{width:17.856000px;}
._2_c00247{width:19.200000px;}
._3a_c00247{width:21.504000px;}
._24_c00247{width:26.400000px;}
._20_c00247{width:27.792000px;}
._17_c00247{width:28.968000px;}
._27_c00247{width:30.288000px;}
._c_c00247{width:31.440000px;}
._1a_c00247{width:32.496000px;}
._13_c00247{width:34.464000px;}
._18_c00247{width:36.480000px;}
._30_c00247{width:37.776000px;}
._1b_c00247{width:38.880000px;}
._2a_c00247{width:41.208000px;}
._f_c00247{width:42.312000px;}
._15_c00247{width:43.536000px;}
._9_c00247{width:45.240000px;}
._19_c00247{width:46.992000px;}
._1c_c00247{width:49.728000px;}
._1d_c00247{width:53.184000px;}
._16_c00247{width:55.920000px;}
._35_c00247{width:58.656000px;}
._45_c00247{width:60.144000px;}
._31_c00247{width:61.680000px;}
._2f_c00247{width:64.992000px;}
._46_c00247{width:66.600000px;}
._32_c00247{width:71.040000px;}
._28_c00247{width:77.952000px;}
._2c_c00247{width:83.904000px;}
._25_c00247{width:87.792000px;}
._42_c00247{width:95.136000px;}
._23_c00247{width:104.352000px;}
._44_c00247{width:139.776000px;}
._8_c00247{width:169.896000px;}
._43_c00247{width:177.612000px;}
._36_c00247{width:215.328000px;}
._21_c00247{width:236.928000px;}
._1e_c00247{width:243.504000px;}
._40_c00247{width:352.704000px;}
._3b_c00247{width:445.704000px;}
._7_c00247{width:484.464000px;}
._41_c00247{width:534.672000px;}
._39_c00247{width:618.240000px;}
.fc2_c00247{color:transparent;}
.fc1_c00247{color:rgb(128,128,128);}
.fc0_c00247{color:rgb(0,0,0);}
.fs5_c00247{font-size:48.000000px;}
.fs4_c00247{font-size:76.800000px;}
.fs3_c00247{font-size:84.000000px;}
.fs2_c00247{font-size:87.000000px;}
.fs0_c00247{font-size:96.000000px;}
.fs1_c00247{font-size:102.000000px;}
.y0_c00247{bottom:0.000000px;}
.y25_c00247{bottom:3.105000px;}
.y24_c00247{bottom:7.228357px;}
.y23_c00247{bottom:101.880000px;}
.y22_c00247{bottom:136.680000px;}
.y21_c00247{bottom:169.830000px;}
.y20_c00247{bottom:203.130000px;}
.y1f_c00247{bottom:237.330000px;}
.y1e_c00247{bottom:270.780000px;}
.y1d_c00247{bottom:307.080000px;}
.y1c_c00247{bottom:338.280000px;}
.y1b_c00247{bottom:375.630000px;}
.y1a_c00247{bottom:409.380000px;}
.y19_c00247{bottom:442.230000px;}
.y18_c00247{bottom:477.630000px;}
.y17_c00247{bottom:510.930000px;}
.y16_c00247{bottom:544.680000px;}
.y15_c00247{bottom:578.130000px;}
.y14_c00247{bottom:613.230000px;}
.y13_c00247{bottom:647.730000px;}
.y12_c00247{bottom:680.730000px;}
.y11_c00247{bottom:714.180000px;}
.y10_c00247{bottom:747.930000px;}
.yf_c00247{bottom:781.680000px;}
.ye_c00247{bottom:815.730000px;}
.yd_c00247{bottom:849.180000px;}
.yc_c00247{bottom:882.630000px;}
.yb_c00247{bottom:915.930000px;}
.ya_c00247{bottom:949.380000px;}
.y9_c00247{bottom:982.530000px;}
.y8_c00247{bottom:1007.880000px;}
.y7_c00247{bottom:1049.280000px;}
.y6_c00247{bottom:1118.130000px;}
.y5_c00247{bottom:1152.330000px;}
.y4_c00247{bottom:1184.730000px;}
.y3_c00247{bottom:1217.730000px;}
.y2_c00247{bottom:1251.180000px;}
.y1_c00247{bottom:1282.830000px;}
.h4_c00247{height:13.200074px;}
.h5_c00247{height:43.804688px;}
.h3_c00247{height:110.151855px;}
.h2_c00247{height:121.546875px;}
.h0_c00247{height:1382.700000px;}
.h1_c00247{height:1383.000000px;}
.w2_c00247{width:104.875500px;}
.w0_c00247{width:863.175000px;}
.w1_c00247{width:863.250000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:53.700000px;}
.xd_c00247{left:129.600000px;}
.x3_c00247{left:159.600000px;}
.x12_c00247{left:168.150000px;}
.x10_c00247{left:237.300000px;}
.x11_c00247{left:262.200000px;}
.xf_c00247{left:264.900000px;}
.xc_c00247{left:265.950000px;}
.xe_c00247{left:267.000000px;}
.x4_c00247{left:269.100000px;}
.x2_c00247{left:271.350000px;}
.xb_c00247{left:302.700000px;}
.xa_c00247{left:304.200000px;}
.x5_c00247{left:321.000000px;}
.x7_c00247{left:382.050000px;}
.x14_c00247{left:383.401749px;}
.x8_c00247{left:414.900000px;}
.x9_c00247{left:416.550000px;}
.x6_c00247{left:551.550000px;}
.x13_c00247{left:799.500000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls7_c00247{letter-spacing:-2.666667pt;}
.ls6_c00247{letter-spacing:0.000000pt;}
.ls1_c00247{letter-spacing:2.666667pt;}
.ls3_c00247{letter-spacing:3.033600pt;}
.ls5_c00247{letter-spacing:3.242667pt;}
.ls2_c00247{letter-spacing:4.352000pt;}
.ls0_c00247{letter-spacing:4.800000pt;}
.ls4_c00247{letter-spacing:6.720000pt;}
.ws0_c00247{word-spacing:-45.333333pt;}
.ws2_c00247{word-spacing:-20.565333pt;}
.ws1_c00247{word-spacing:-17.994667pt;}
.ws3_c00247{word-spacing:0.000000pt;}
._37_c00247{margin-left:-76.544000pt;}
._33_c00247{margin-left:-31.434667pt;}
._3f_c00247{margin-left:-29.013333pt;}
._3e_c00247{margin-left:-22.016000pt;}
._6_c00247{margin-left:-19.968000pt;}
._29_c00247{margin-left:-17.237333pt;}
._3d_c00247{margin-left:-15.573333pt;}
._26_c00247{margin-left:-11.690667pt;}
._2b_c00247{margin-left:-9.813333pt;}
._34_c00247{margin-left:-8.608000pt;}
._38_c00247{margin-left:-6.421333pt;}
._11_c00247{margin-left:-5.376000pt;}
._2d_c00247{margin-left:-4.224000pt;}
._47_c00247{margin-left:-3.274667pt;}
._10_c00247{margin-left:-2.304000pt;}
._14_c00247{margin-left:-1.322667pt;}
._b_c00247{width:0.981333pt;}
._4_c00247{width:2.176000pt;}
._a_c00247{width:3.498667pt;}
._2e_c00247{width:4.437333pt;}
._5_c00247{width:5.333333pt;}
._12_c00247{width:6.229333pt;}
._3_c00247{width:7.424000pt;}
._1_c00247{width:8.704000pt;}
._22_c00247{width:9.728000pt;}
._0_c00247{width:10.666667pt;}
._e_c00247{width:12.330667pt;}
._1f_c00247{width:13.354667pt;}
._3c_c00247{width:14.976000pt;}
._d_c00247{width:15.872000pt;}
._2_c00247{width:17.066667pt;}
._3a_c00247{width:19.114667pt;}
._24_c00247{width:23.466667pt;}
._20_c00247{width:24.704000pt;}
._17_c00247{width:25.749333pt;}
._27_c00247{width:26.922667pt;}
._c_c00247{width:27.946667pt;}
._1a_c00247{width:28.885333pt;}
._13_c00247{width:30.634667pt;}
._18_c00247{width:32.426667pt;}
._30_c00247{width:33.578667pt;}
._1b_c00247{width:34.560000pt;}
._2a_c00247{width:36.629333pt;}
._f_c00247{width:37.610667pt;}
._15_c00247{width:38.698667pt;}
._9_c00247{width:40.213333pt;}
._19_c00247{width:41.770667pt;}
._1c_c00247{width:44.202667pt;}
._1d_c00247{width:47.274667pt;}
._16_c00247{width:49.706667pt;}
._35_c00247{width:52.138667pt;}
._45_c00247{width:53.461333pt;}
._31_c00247{width:54.826667pt;}
._2f_c00247{width:57.770667pt;}
._46_c00247{width:59.200000pt;}
._32_c00247{width:63.146667pt;}
._28_c00247{width:69.290667pt;}
._2c_c00247{width:74.581333pt;}
._25_c00247{width:78.037333pt;}
._42_c00247{width:84.565333pt;}
._23_c00247{width:92.757333pt;}
._44_c00247{width:124.245333pt;}
._8_c00247{width:151.018667pt;}
._43_c00247{width:157.877333pt;}
._36_c00247{width:191.402667pt;}
._21_c00247{width:210.602667pt;}
._1e_c00247{width:216.448000pt;}
._40_c00247{width:313.514667pt;}
._3b_c00247{width:396.181333pt;}
._7_c00247{width:430.634667pt;}
._41_c00247{width:475.264000pt;}
._39_c00247{width:549.546667pt;}
.fs5_c00247{font-size:42.666667pt;}
.fs4_c00247{font-size:68.266667pt;}
.fs3_c00247{font-size:74.666667pt;}
.fs2_c00247{font-size:77.333333pt;}
.fs0_c00247{font-size:85.333333pt;}
.fs1_c00247{font-size:90.666667pt;}
.y0_c00247{bottom:0.000000pt;}
.y25_c00247{bottom:2.760000pt;}
.y24_c00247{bottom:6.425206pt;}
.y23_c00247{bottom:90.560000pt;}
.y22_c00247{bottom:121.493333pt;}
.y21_c00247{bottom:150.960000pt;}
.y20_c00247{bottom:180.560000pt;}
.y1f_c00247{bottom:210.960000pt;}
.y1e_c00247{bottom:240.693333pt;}
.y1d_c00247{bottom:272.960000pt;}
.y1c_c00247{bottom:300.693333pt;}
.y1b_c00247{bottom:333.893333pt;}
.y1a_c00247{bottom:363.893333pt;}
.y19_c00247{bottom:393.093333pt;}
.y18_c00247{bottom:424.560000pt;}
.y17_c00247{bottom:454.160000pt;}
.y16_c00247{bottom:484.160000pt;}
.y15_c00247{bottom:513.893333pt;}
.y14_c00247{bottom:545.093333pt;}
.y13_c00247{bottom:575.760000pt;}
.y12_c00247{bottom:605.093333pt;}
.y11_c00247{bottom:634.826667pt;}
.y10_c00247{bottom:664.826667pt;}
.yf_c00247{bottom:694.826667pt;}
.ye_c00247{bottom:725.093333pt;}
.yd_c00247{bottom:754.826667pt;}
.yc_c00247{bottom:784.560000pt;}
.yb_c00247{bottom:814.160000pt;}
.ya_c00247{bottom:843.893333pt;}
.y9_c00247{bottom:873.360000pt;}
.y8_c00247{bottom:895.893333pt;}
.y7_c00247{bottom:932.693333pt;}
.y6_c00247{bottom:993.893333pt;}
.y5_c00247{bottom:1024.293333pt;}
.y4_c00247{bottom:1053.093333pt;}
.y3_c00247{bottom:1082.426667pt;}
.y2_c00247{bottom:1112.160000pt;}
.y1_c00247{bottom:1140.293333pt;}
.h4_c00247{height:11.733399pt;}
.h5_c00247{height:38.937500pt;}
.h3_c00247{height:97.912760pt;}
.h2_c00247{height:108.041667pt;}
.h0_c00247{height:1229.066667pt;}
.h1_c00247{height:1229.333333pt;}
.w2_c00247{width:93.222667pt;}
.w0_c00247{width:767.266667pt;}
.w1_c00247{width:767.333333pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:47.733333pt;}
.xd_c00247{left:115.200000pt;}
.x3_c00247{left:141.866667pt;}
.x12_c00247{left:149.466667pt;}
.x10_c00247{left:210.933333pt;}
.x11_c00247{left:233.066667pt;}
.xf_c00247{left:235.466667pt;}
.xc_c00247{left:236.400000pt;}
.xe_c00247{left:237.333333pt;}
.x4_c00247{left:239.200000pt;}
.x2_c00247{left:241.200000pt;}
.xb_c00247{left:269.066667pt;}
.xa_c00247{left:270.400000pt;}
.x5_c00247{left:285.333333pt;}
.x7_c00247{left:339.600000pt;}
.x14_c00247{left:340.801554pt;}
.x8_c00247{left:368.800000pt;}
.x9_c00247{left:370.266667pt;}
.x6_c00247{left:490.266667pt;}
.x13_c00247{left:710.666667pt;}
}





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

.ir_c00248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00248;src:url('chunks/assets/font_0a78fdc124311f48a7f7b0f0.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_f6b8c9498bc2f39188db174d.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls3_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:23.052000px;}
.ls2_c00248{letter-spacing:26.052000px;}
.ls1_c00248{letter-spacing:171.252000px;}
.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:-63.504000px;}
.ws1_c00248{word-spacing:0.000000px;}
._3b_c00248{margin-left:-69.744000px;}
._3c_c00248{margin-left:-18.720000px;}
._36_c00248{margin-left:-13.944000px;}
._2d_c00248{margin-left:-12.480000px;}
._e_c00248{margin-left:-11.040000px;}
._3a_c00248{margin-left:-9.792000px;}
._39_c00248{margin-left:-8.448000px;}
._27_c00248{margin-left:-7.104000px;}
._29_c00248{margin-left:-4.992000px;}
._30_c00248{margin-left:-3.360000px;}
._7_c00248{margin-left:-1.920000px;}
._0_c00248{width:1.728000px;}
._4_c00248{width:3.648000px;}
._2_c00248{width:4.800000px;}
._9_c00248{width:6.240000px;}
._3_c00248{width:7.968000px;}
._1c_c00248{width:9.024000px;}
._14_c00248{width:10.176000px;}
._24_c00248{width:11.712000px;}
._19_c00248{width:13.440000px;}
._b_c00248{width:15.168000px;}
._31_c00248{width:16.416000px;}
._1b_c00248{width:17.568000px;}
._28_c00248{width:19.104000px;}
._23_c00248{width:20.544000px;}
._34_c00248{width:21.792000px;}
._26_c00248{width:24.384000px;}
._25_c00248{width:26.016000px;}
._32_c00248{width:27.360000px;}
._16_c00248{width:28.704000px;}
._18_c00248{width:30.144000px;}
._a_c00248{width:32.256000px;}
._13_c00248{width:33.984000px;}
._2e_c00248{width:35.040000px;}
._1e_c00248{width:36.192000px;}
._8_c00248{width:38.400000px;}
._6_c00248{width:40.032000px;}
._1f_c00248{width:41.952000px;}
._20_c00248{width:43.008000px;}
._15_c00248{width:44.736000px;}
._33_c00248{width:45.888000px;}
._5_c00248{width:47.520000px;}
._2b_c00248{width:48.576000px;}
._22_c00248{width:50.208000px;}
._2a_c00248{width:51.660000px;}
._1a_c00248{width:53.184000px;}
._1d_c00248{width:55.008000px;}
._12_c00248{width:56.544000px;}
._10_c00248{width:60.096000px;}
._37_c00248{width:61.824000px;}
._c_c00248{width:63.072000px;}
._11_c00248{width:65.280000px;}
._d_c00248{width:66.528000px;}
._f_c00248{width:68.640000px;}
._2c_c00248{width:70.944000px;}
._38_c00248{width:72.960000px;}
._1_c00248{width:77.088000px;}
._35_c00248{width:79.872000px;}
._17_c00248{width:86.400000px;}
._21_c00248{width:89.088000px;}
._2f_c00248{width:168.384000px;}
._3d_c00248{width:760.524000px;}
.fc2_c00248{color:transparent;}
.fc1_c00248{color:rgb(128,128,128);}
.fc0_c00248{color:rgb(0,0,0);}
.fs4_c00248{font-size:48.000000px;}
.fs1_c00248{font-size:84.000000px;}
.fs2_c00248{font-size:87.000000px;}
.fs0_c00248{font-size:96.000000px;}
.fs3_c00248{font-size:114.000000px;}
.y0_c00248{bottom:0.000000px;}
.y25_c00248{bottom:3.105000px;}
.y24_c00248{bottom:7.228369px;}
.y23_c00248{bottom:99.870000px;}
.y21_c00248{bottom:207.870000px;}
.y20_c00248{bottom:239.520000px;}
.y1f_c00248{bottom:274.020000px;}
.y1e_c00248{bottom:308.370000px;}
.y1d_c00248{bottom:341.820000px;}
.y22_c00248{bottom:361.020000px;}
.y1c_c00248{bottom:375.870000px;}
.y1b_c00248{bottom:409.320000px;}
.y1a_c00248{bottom:442.770000px;}
.y19_c00248{bottom:476.220000px;}
.y18_c00248{bottom:509.670000px;}
.y17_c00248{bottom:542.970000px;}
.y16_c00248{bottom:575.370000px;}
.y15_c00248{bottom:609.570000px;}
.y14_c00248{bottom:642.270000px;}
.y13_c00248{bottom:675.570000px;}
.y12_c00248{bottom:708.420000px;}
.y11_c00248{bottom:741.870000px;}
.y10_c00248{bottom:775.620000px;}
.yf_c00248{bottom:806.520000px;}
.ye_c00248{bottom:841.770000px;}
.yd_c00248{bottom:875.070000px;}
.yc_c00248{bottom:908.520000px;}
.yb_c00248{bottom:941.520000px;}
.ya_c00248{bottom:974.670000px;}
.y9_c00248{bottom:1008.420000px;}
.y8_c00248{bottom:1041.570000px;}
.y7_c00248{bottom:1074.870000px;}
.y6_c00248{bottom:1107.720000px;}
.y5_c00248{bottom:1141.320000px;}
.y4_c00248{bottom:1174.170000px;}
.y3_c00248{bottom:1207.470000px;}
.y2_c00248{bottom:1240.620000px;}
.y1_c00248{bottom:1274.670000px;}
.h5_c00248{height:13.200073px;}
.h6_c00248{height:43.804688px;}
.h3_c00248{height:110.151855px;}
.h2_c00248{height:121.546875px;}
.h4_c00248{height:144.336914px;}
.h0_c00248{height:1375.350000px;}
.h1_c00248{height:1375.500000px;}
.w2_c00248{width:104.875500px;}
.w0_c00248{width:872.625000px;}
.w1_c00248{width:873.000000px;}
.x0_c00248{left:0.000000px;}
.x8_c00248{left:60.750000px;}
.x7_c00248{left:62.400000px;}
.x6_c00248{left:63.450000px;}
.x5_c00248{left:65.100000px;}
.x3_c00248{left:66.150000px;}
.x4_c00248{left:67.200000px;}
.x2_c00248{left:68.400000px;}
.x1_c00248{left:69.450000px;}
.xa_c00248{left:335.400000px;}
.xb_c00248{left:388.126740px;}
.x9_c00248{left:691.200000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls3_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:20.490667pt;}
.ls2_c00248{letter-spacing:23.157333pt;}
.ls1_c00248{letter-spacing:152.224000pt;}
.ws0_c00248{word-spacing:-56.448000pt;}
.ws1_c00248{word-spacing:0.000000pt;}
._3b_c00248{margin-left:-61.994667pt;}
._3c_c00248{margin-left:-16.640000pt;}
._36_c00248{margin-left:-12.394667pt;}
._2d_c00248{margin-left:-11.093333pt;}
._e_c00248{margin-left:-9.813333pt;}
._3a_c00248{margin-left:-8.704000pt;}
._39_c00248{margin-left:-7.509333pt;}
._27_c00248{margin-left:-6.314667pt;}
._29_c00248{margin-left:-4.437333pt;}
._30_c00248{margin-left:-2.986667pt;}
._7_c00248{margin-left:-1.706667pt;}
._0_c00248{width:1.536000pt;}
._4_c00248{width:3.242667pt;}
._2_c00248{width:4.266667pt;}
._9_c00248{width:5.546667pt;}
._3_c00248{width:7.082667pt;}
._1c_c00248{width:8.021333pt;}
._14_c00248{width:9.045333pt;}
._24_c00248{width:10.410667pt;}
._19_c00248{width:11.946667pt;}
._b_c00248{width:13.482667pt;}
._31_c00248{width:14.592000pt;}
._1b_c00248{width:15.616000pt;}
._28_c00248{width:16.981333pt;}
._23_c00248{width:18.261333pt;}
._34_c00248{width:19.370667pt;}
._26_c00248{width:21.674667pt;}
._25_c00248{width:23.125333pt;}
._32_c00248{width:24.320000pt;}
._16_c00248{width:25.514667pt;}
._18_c00248{width:26.794667pt;}
._a_c00248{width:28.672000pt;}
._13_c00248{width:30.208000pt;}
._2e_c00248{width:31.146667pt;}
._1e_c00248{width:32.170667pt;}
._8_c00248{width:34.133333pt;}
._6_c00248{width:35.584000pt;}
._1f_c00248{width:37.290667pt;}
._20_c00248{width:38.229333pt;}
._15_c00248{width:39.765333pt;}
._33_c00248{width:40.789333pt;}
._5_c00248{width:42.240000pt;}
._2b_c00248{width:43.178667pt;}
._22_c00248{width:44.629333pt;}
._2a_c00248{width:45.920000pt;}
._1a_c00248{width:47.274667pt;}
._1d_c00248{width:48.896000pt;}
._12_c00248{width:50.261333pt;}
._10_c00248{width:53.418667pt;}
._37_c00248{width:54.954667pt;}
._c_c00248{width:56.064000pt;}
._11_c00248{width:58.026667pt;}
._d_c00248{width:59.136000pt;}
._f_c00248{width:61.013333pt;}
._2c_c00248{width:63.061333pt;}
._38_c00248{width:64.853333pt;}
._1_c00248{width:68.522667pt;}
._35_c00248{width:70.997333pt;}
._17_c00248{width:76.800000pt;}
._21_c00248{width:79.189333pt;}
._2f_c00248{width:149.674667pt;}
._3d_c00248{width:676.021333pt;}
.fs4_c00248{font-size:42.666667pt;}
.fs1_c00248{font-size:74.666667pt;}
.fs2_c00248{font-size:77.333333pt;}
.fs0_c00248{font-size:85.333333pt;}
.fs3_c00248{font-size:101.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y25_c00248{bottom:2.760000pt;}
.y24_c00248{bottom:6.425217pt;}
.y23_c00248{bottom:88.773333pt;}
.y21_c00248{bottom:184.773333pt;}
.y20_c00248{bottom:212.906667pt;}
.y1f_c00248{bottom:243.573333pt;}
.y1e_c00248{bottom:274.106667pt;}
.y1d_c00248{bottom:303.840000pt;}
.y22_c00248{bottom:320.906667pt;}
.y1c_c00248{bottom:334.106667pt;}
.y1b_c00248{bottom:363.840000pt;}
.y1a_c00248{bottom:393.573333pt;}
.y19_c00248{bottom:423.306667pt;}
.y18_c00248{bottom:453.040000pt;}
.y17_c00248{bottom:482.640000pt;}
.y16_c00248{bottom:511.440000pt;}
.y15_c00248{bottom:541.840000pt;}
.y14_c00248{bottom:570.906667pt;}
.y13_c00248{bottom:600.506667pt;}
.y12_c00248{bottom:629.706667pt;}
.y11_c00248{bottom:659.440000pt;}
.y10_c00248{bottom:689.440000pt;}
.yf_c00248{bottom:716.906667pt;}
.ye_c00248{bottom:748.240000pt;}
.yd_c00248{bottom:777.840000pt;}
.yc_c00248{bottom:807.573333pt;}
.yb_c00248{bottom:836.906667pt;}
.ya_c00248{bottom:866.373333pt;}
.y9_c00248{bottom:896.373333pt;}
.y8_c00248{bottom:925.840000pt;}
.y7_c00248{bottom:955.440000pt;}
.y6_c00248{bottom:984.640000pt;}
.y5_c00248{bottom:1014.506667pt;}
.y4_c00248{bottom:1043.706667pt;}
.y3_c00248{bottom:1073.306667pt;}
.y2_c00248{bottom:1102.773333pt;}
.y1_c00248{bottom:1133.040000pt;}
.h5_c00248{height:11.733399pt;}
.h6_c00248{height:38.937500pt;}
.h3_c00248{height:97.912760pt;}
.h2_c00248{height:108.041667pt;}
.h4_c00248{height:128.299479pt;}
.h0_c00248{height:1222.533333pt;}
.h1_c00248{height:1222.666667pt;}
.w2_c00248{width:93.222667pt;}
.w0_c00248{width:775.666667pt;}
.w1_c00248{width:776.000000pt;}
.x0_c00248{left:0.000000pt;}
.x8_c00248{left:54.000000pt;}
.x7_c00248{left:55.466667pt;}
.x6_c00248{left:56.400000pt;}
.x5_c00248{left:57.866667pt;}
.x3_c00248{left:58.800000pt;}
.x4_c00248{left:59.733333pt;}
.x2_c00248{left:60.800000pt;}
.x1_c00248{left:61.733333pt;}
.xa_c00248{left:298.133333pt;}
.xb_c00248{left:345.001546pt;}
.x9_c00248{left:614.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_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_252606dfa090e7bb86f18a4a.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_6d18f074d8880cd053c19627.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_c2258bb7f2c3a04ed412043a.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_271208f103d6631ee6cf33dc.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00249;src:url('chunks/assets/font_25d3b275973125d8adb770d1.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00249;src:url('chunks/assets/font_516717ca17cbb5315e01a20d.woff2')format("woff");}.ff6_c00249{font-family:ff6_c00249;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00249;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00249{font-family:ff7_c00249;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_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);}
.m0_c00249{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls3_c00249{letter-spacing:0.000000px;}
.ls0_c00249{letter-spacing:10.920000px;}
.ls2_c00249{letter-spacing:12.000000px;}
.ls1_c00249{letter-spacing:13.896000px;}
.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:-63.504000px;}
.ws4_c00249{word-spacing:-63.123000px;}
.ws3_c00249{word-spacing:-51.000000px;}
.ws5_c00249{word-spacing:-43.084800px;}
.ws2_c00249{word-spacing:-34.704000px;}
.ws0_c00249{word-spacing:-19.230000px;}
.ws6_c00249{word-spacing:0.000000px;}
._5_c00249{margin-left:-86.400000px;}
._47_c00249{margin-left:-51.363000px;}
._39_c00249{margin-left:-32.928000px;}
._33_c00249{margin-left:-29.694000px;}
._4a_c00249{margin-left:-28.152000px;}
._2e_c00249{margin-left:-26.016000px;}
._36_c00249{margin-left:-23.130000px;}
._2c_c00249{margin-left:-20.736000px;}
._29_c00249{margin-left:-17.088000px;}
._1_c00249{margin-left:-14.310000px;}
._0_c00249{margin-left:-12.480000px;}
._1e_c00249{margin-left:-11.424000px;}
._48_c00249{margin-left:-10.194000px;}
._32_c00249{margin-left:-9.078000px;}
._3b_c00249{margin-left:-6.816000px;}
._1d_c00249{margin-left:-4.704000px;}
._13_c00249{margin-left:-3.552000px;}
._6_c00249{margin-left:-2.400000px;}
._e_c00249{margin-left:-1.398000px;}
._2_c00249{width:1.170000px;}
._9_c00249{width:3.168000px;}
._3_c00249{width:5.010000px;}
._7_c00249{width:6.624000px;}
._a_c00249{width:8.316000px;}
._10_c00249{width:9.408000px;}
._c_c00249{width:11.082000px;}
._28_c00249{width:12.276000px;}
._11_c00249{width:13.308000px;}
._12_c00249{width:15.252000px;}
._f_c00249{width:16.722000px;}
._2a_c00249{width:18.072000px;}
._26_c00249{width:19.794000px;}
._14_c00249{width:21.216000px;}
._17_c00249{width:24.192000px;}
._16_c00249{width:25.380000px;}
._23_c00249{width:26.574000px;}
._22_c00249{width:27.648000px;}
._45_c00249{width:28.704000px;}
._25_c00249{width:30.066000px;}
._21_c00249{width:31.278000px;}
._15_c00249{width:33.006000px;}
._27_c00249{width:34.788000px;}
._d_c00249{width:36.768000px;}
._24_c00249{width:38.784000px;}
._b_c00249{width:40.878000px;}
._2b_c00249{width:43.062000px;}
._20_c00249{width:44.646000px;}
._8_c00249{width:45.678000px;}
._1f_c00249{width:47.040000px;}
._4f_c00249{width:48.540000px;}
._30_c00249{width:50.010000px;}
._4d_c00249{width:54.726000px;}
._1b_c00249{width:55.872000px;}
._35_c00249{width:57.816000px;}
._50_c00249{width:60.270000px;}
._2d_c00249{width:62.016000px;}
._19_c00249{width:64.236000px;}
._31_c00249{width:66.240000px;}
._46_c00249{width:67.332000px;}
._34_c00249{width:71.658000px;}
._37_c00249{width:73.356000px;}
._1a_c00249{width:74.478000px;}
._38_c00249{width:75.840000px;}
._2f_c00249{width:81.600000px;}
._41_c00249{width:86.496000px;}
._1c_c00249{width:90.474000px;}
._18_c00249{width:93.162000px;}
._3e_c00249{width:98.520000px;}
._4b_c00249{width:114.144000px;}
._4c_c00249{width:115.278000px;}
._3c_c00249{width:116.460000px;}
._44_c00249{width:190.158000px;}
._40_c00249{width:282.336000px;}
._43_c00249{width:299.760000px;}
._49_c00249{width:318.852000px;}
._3f_c00249{width:326.118000px;}
._42_c00249{width:355.200000px;}
._3d_c00249{width:398.448000px;}
._3a_c00249{width:665.610000px;}
._51_c00249{width:895.902000px;}
._4_c00249{width:1027.170000px;}
._4e_c00249{width:1085.388000px;}
.fc2_c00249{color:transparent;}
.fc1_c00249{color:rgb(128,128,128);}
.fc0_c00249{color:rgb(0,0,0);}
.fs0_c00249{font-size:30.000000px;}
.fs7_c00249{font-size:48.000000px;}
.fs6_c00249{font-size:76.800000px;}
.fs2_c00249{font-size:84.000000px;}
.fs1_c00249{font-size:96.000000px;}
.fs4_c00249{font-size:102.000000px;}
.fs3_c00249{font-size:144.000000px;}
.fs5_c00249{font-size:159.000000px;}
.y0_c00249{bottom:0.000000px;}
.y21_c00249{bottom:3.105000px;}
.y20_c00249{bottom:7.228357px;}
.y1f_c00249{bottom:78.630000px;}
.y1e_c00249{bottom:115.380000px;}
.y1d_c00249{bottom:149.580000px;}
.y1c_c00249{bottom:183.630000px;}
.y1b_c00249{bottom:217.680000px;}
.y1a_c00249{bottom:251.430000px;}
.y19_c00249{bottom:282.930000px;}
.y18_c00249{bottom:327.030000px;}
.y17_c00249{bottom:351.780000px;}
.y16_c00249{bottom:447.480000px;}
.y15_c00249{bottom:496.530000px;}
.y14_c00249{bottom:548.430000px;}
.y13_c00249{bottom:626.730000px;}
.y12_c00249{bottom:660.780000px;}
.y11_c00249{bottom:694.980000px;}
.y10_c00249{bottom:728.430000px;}
.yf_c00249{bottom:762.480000px;}
.ye_c00249{bottom:795.780000px;}
.yd_c00249{bottom:829.680000px;}
.yc_c00249{bottom:863.280000px;}
.yb_c00249{bottom:897.030000px;}
.ya_c00249{bottom:929.430000px;}
.y9_c00249{bottom:963.180000px;}
.y8_c00249{bottom:996.630000px;}
.y7_c00249{bottom:1029.780000px;}
.y6_c00249{bottom:1063.230000px;}
.y5_c00249{bottom:1096.830000px;}
.y4_c00249{bottom:1131.030000px;}
.y3_c00249{bottom:1164.030000px;}
.y2_c00249{bottom:1197.780000px;}
.y1_c00249{bottom:1264.980000px;}
.h6_c00249{height:13.200074px;}
.h2_c00249{height:37.983398px;}
.h7_c00249{height:43.804688px;}
.h3_c00249{height:121.546875px;}
.h4_c00249{height:182.320312px;}
.h5_c00249{height:201.312012px;}
.h0_c00249{height:1382.700000px;}
.h1_c00249{height:1383.000000px;}
.w2_c00249{width:104.875500px;}
.w0_c00249{width:863.175000px;}
.w1_c00249{width:863.250000px;}
.x0_c00249{left:0.000000px;}
.xf_c00249{left:61.800000px;}
.x10_c00249{left:135.600000px;}
.x12_c00249{left:252.000000px;}
.x11_c00249{left:253.050000px;}
.x8_c00249{left:256.200000px;}
.x9_c00249{left:258.900000px;}
.xd_c00249{left:261.900000px;}
.xa_c00249{left:265.500000px;}
.x7_c00249{left:269.700000px;}
.xc_c00249{left:280.500000px;}
.x6_c00249{left:283.800000px;}
.xb_c00249{left:285.450000px;}
.xe_c00249{left:328.050000px;}
.x4_c00249{left:358.350000px;}
.x14_c00249{left:383.401749px;}
.x5_c00249{left:394.500000px;}
.x1_c00249{left:452.550000px;}
.x2_c00249{left:496.800000px;}
.x3_c00249{left:523.800000px;}
.x13_c00249{left:565.500000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls3_c00249{letter-spacing:0.000000pt;}
.ls0_c00249{letter-spacing:9.706667pt;}
.ls2_c00249{letter-spacing:10.666667pt;}
.ls1_c00249{letter-spacing:12.352000pt;}
.ws1_c00249{word-spacing:-56.448000pt;}
.ws4_c00249{word-spacing:-56.109333pt;}
.ws3_c00249{word-spacing:-45.333333pt;}
.ws5_c00249{word-spacing:-38.297600pt;}
.ws2_c00249{word-spacing:-30.848000pt;}
.ws0_c00249{word-spacing:-17.093333pt;}
.ws6_c00249{word-spacing:0.000000pt;}
._5_c00249{margin-left:-76.800000pt;}
._47_c00249{margin-left:-45.656000pt;}
._39_c00249{margin-left:-29.269333pt;}
._33_c00249{margin-left:-26.394667pt;}
._4a_c00249{margin-left:-25.024000pt;}
._2e_c00249{margin-left:-23.125333pt;}
._36_c00249{margin-left:-20.560000pt;}
._2c_c00249{margin-left:-18.432000pt;}
._29_c00249{margin-left:-15.189333pt;}
._1_c00249{margin-left:-12.720000pt;}
._0_c00249{margin-left:-11.093333pt;}
._1e_c00249{margin-left:-10.154667pt;}
._48_c00249{margin-left:-9.061333pt;}
._32_c00249{margin-left:-8.069333pt;}
._3b_c00249{margin-left:-6.058667pt;}
._1d_c00249{margin-left:-4.181333pt;}
._13_c00249{margin-left:-3.157333pt;}
._6_c00249{margin-left:-2.133333pt;}
._e_c00249{margin-left:-1.242667pt;}
._2_c00249{width:1.040000pt;}
._9_c00249{width:2.816000pt;}
._3_c00249{width:4.453333pt;}
._7_c00249{width:5.888000pt;}
._a_c00249{width:7.392000pt;}
._10_c00249{width:8.362667pt;}
._c_c00249{width:9.850667pt;}
._28_c00249{width:10.912000pt;}
._11_c00249{width:11.829333pt;}
._12_c00249{width:13.557333pt;}
._f_c00249{width:14.864000pt;}
._2a_c00249{width:16.064000pt;}
._26_c00249{width:17.594667pt;}
._14_c00249{width:18.858667pt;}
._17_c00249{width:21.504000pt;}
._16_c00249{width:22.560000pt;}
._23_c00249{width:23.621333pt;}
._22_c00249{width:24.576000pt;}
._45_c00249{width:25.514667pt;}
._25_c00249{width:26.725333pt;}
._21_c00249{width:27.802667pt;}
._15_c00249{width:29.338667pt;}
._27_c00249{width:30.922667pt;}
._d_c00249{width:32.682667pt;}
._24_c00249{width:34.474667pt;}
._b_c00249{width:36.336000pt;}
._2b_c00249{width:38.277333pt;}
._20_c00249{width:39.685333pt;}
._8_c00249{width:40.602667pt;}
._1f_c00249{width:41.813333pt;}
._4f_c00249{width:43.146667pt;}
._30_c00249{width:44.453333pt;}
._4d_c00249{width:48.645333pt;}
._1b_c00249{width:49.664000pt;}
._35_c00249{width:51.392000pt;}
._50_c00249{width:53.573333pt;}
._2d_c00249{width:55.125333pt;}
._19_c00249{width:57.098667pt;}
._31_c00249{width:58.880000pt;}
._46_c00249{width:59.850667pt;}
._34_c00249{width:63.696000pt;}
._37_c00249{width:65.205333pt;}
._1a_c00249{width:66.202667pt;}
._38_c00249{width:67.413333pt;}
._2f_c00249{width:72.533333pt;}
._41_c00249{width:76.885333pt;}
._1c_c00249{width:80.421333pt;}
._18_c00249{width:82.810667pt;}
._3e_c00249{width:87.573333pt;}
._4b_c00249{width:101.461333pt;}
._4c_c00249{width:102.469333pt;}
._3c_c00249{width:103.520000pt;}
._44_c00249{width:169.029333pt;}
._40_c00249{width:250.965333pt;}
._43_c00249{width:266.453333pt;}
._49_c00249{width:283.424000pt;}
._3f_c00249{width:289.882667pt;}
._42_c00249{width:315.733333pt;}
._3d_c00249{width:354.176000pt;}
._3a_c00249{width:591.653333pt;}
._51_c00249{width:796.357333pt;}
._4_c00249{width:913.040000pt;}
._4e_c00249{width:964.789333pt;}
.fs0_c00249{font-size:26.666667pt;}
.fs7_c00249{font-size:42.666667pt;}
.fs6_c00249{font-size:68.266667pt;}
.fs2_c00249{font-size:74.666667pt;}
.fs1_c00249{font-size:85.333333pt;}
.fs4_c00249{font-size:90.666667pt;}
.fs3_c00249{font-size:128.000000pt;}
.fs5_c00249{font-size:141.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y21_c00249{bottom:2.760000pt;}
.y20_c00249{bottom:6.425206pt;}
.y1f_c00249{bottom:69.893333pt;}
.y1e_c00249{bottom:102.560000pt;}
.y1d_c00249{bottom:132.960000pt;}
.y1c_c00249{bottom:163.226667pt;}
.y1b_c00249{bottom:193.493333pt;}
.y1a_c00249{bottom:223.493333pt;}
.y19_c00249{bottom:251.493333pt;}
.y18_c00249{bottom:290.693333pt;}
.y17_c00249{bottom:312.693333pt;}
.y16_c00249{bottom:397.760000pt;}
.y15_c00249{bottom:441.360000pt;}
.y14_c00249{bottom:487.493333pt;}
.y13_c00249{bottom:557.093333pt;}
.y12_c00249{bottom:587.360000pt;}
.y11_c00249{bottom:617.760000pt;}
.y10_c00249{bottom:647.493333pt;}
.yf_c00249{bottom:677.760000pt;}
.ye_c00249{bottom:707.360000pt;}
.yd_c00249{bottom:737.493333pt;}
.yc_c00249{bottom:767.360000pt;}
.yb_c00249{bottom:797.360000pt;}
.ya_c00249{bottom:826.160000pt;}
.y9_c00249{bottom:856.160000pt;}
.y8_c00249{bottom:885.893333pt;}
.y7_c00249{bottom:915.360000pt;}
.y6_c00249{bottom:945.093333pt;}
.y5_c00249{bottom:974.960000pt;}
.y4_c00249{bottom:1005.360000pt;}
.y3_c00249{bottom:1034.693333pt;}
.y2_c00249{bottom:1064.693333pt;}
.y1_c00249{bottom:1124.426667pt;}
.h6_c00249{height:11.733399pt;}
.h2_c00249{height:33.763021pt;}
.h7_c00249{height:38.937500pt;}
.h3_c00249{height:108.041667pt;}
.h4_c00249{height:162.062500pt;}
.h5_c00249{height:178.944010pt;}
.h0_c00249{height:1229.066667pt;}
.h1_c00249{height:1229.333333pt;}
.w2_c00249{width:93.222667pt;}
.w0_c00249{width:767.266667pt;}
.w1_c00249{width:767.333333pt;}
.x0_c00249{left:0.000000pt;}
.xf_c00249{left:54.933333pt;}
.x10_c00249{left:120.533333pt;}
.x12_c00249{left:224.000000pt;}
.x11_c00249{left:224.933333pt;}
.x8_c00249{left:227.733333pt;}
.x9_c00249{left:230.133333pt;}
.xd_c00249{left:232.800000pt;}
.xa_c00249{left:236.000000pt;}
.x7_c00249{left:239.733333pt;}
.xc_c00249{left:249.333333pt;}
.x6_c00249{left:252.266667pt;}
.xb_c00249{left:253.733333pt;}
.xe_c00249{left:291.600000pt;}
.x4_c00249{left:318.533333pt;}
.x14_c00249{left:340.801554pt;}
.x5_c00249{left:350.666667pt;}
.x1_c00249{left:402.266667pt;}
.x2_c00249{left:441.600000pt;}
.x3_c00249{left:465.600000pt;}
.x13_c00249{left:502.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e347e1f6f93d0809b64b22c9.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_b225f19f2eb78d66c7227020.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_067865f4fd2a93b1b2c58668.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_736f70eb9c5207e6ce293ca0.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;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_c00250;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls2_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:17.052000px;}
.ls1_c00250{letter-spacing:22.200000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-63.504000px;}
.ws1_c00250{word-spacing:-51.000000px;}
.ws3_c00250{word-spacing:-26.652000px;}
.ws2_c00250{word-spacing:-23.136000px;}
.ws4_c00250{word-spacing:0.000000px;}
._37_c00250{margin-left:-30.240000px;}
._49_c00250{margin-left:-24.576000px;}
._43_c00250{margin-left:-20.160000px;}
._3e_c00250{margin-left:-17.376000px;}
._46_c00250{margin-left:-15.648000px;}
._2d_c00250{margin-left:-14.484000px;}
._31_c00250{margin-left:-12.096000px;}
._2f_c00250{margin-left:-10.848000px;}
._38_c00250{margin-left:-9.600000px;}
._3d_c00250{margin-left:-8.544000px;}
._30_c00250{margin-left:-7.392000px;}
._d_c00250{margin-left:-5.472000px;}
._28_c00250{margin-left:-4.224000px;}
._16_c00250{margin-left:-3.168000px;}
._0_c00250{margin-left:-1.728000px;}
._3_c00250{width:1.728000px;}
._2_c00250{width:3.456000px;}
._4_c00250{width:4.608000px;}
._b_c00250{width:6.144000px;}
._6_c00250{width:7.200000px;}
._8_c00250{width:8.736000px;}
._e_c00250{width:10.464000px;}
._7_c00250{width:11.712000px;}
._2e_c00250{width:13.248000px;}
._23_c00250{width:14.304000px;}
._12_c00250{width:16.128000px;}
._f_c00250{width:17.376000px;}
._c_c00250{width:19.200000px;}
._13_c00250{width:20.640000px;}
._24_c00250{width:21.696000px;}
._2a_c00250{width:24.288000px;}
._25_c00250{width:25.920000px;}
._20_c00250{width:27.744000px;}
._41_c00250{width:28.800000px;}
._29_c00250{width:29.856000px;}
._33_c00250{width:31.680000px;}
._9_c00250{width:32.736000px;}
._26_c00250{width:34.176000px;}
._19_c00250{width:36.480000px;}
._40_c00250{width:37.824000px;}
._14_c00250{width:39.072000px;}
._1_c00250{width:40.800000px;}
._11_c00250{width:42.240000px;}
._1a_c00250{width:44.256000px;}
._17_c00250{width:45.312000px;}
._10_c00250{width:47.328000px;}
._22_c00250{width:48.480000px;}
._32_c00250{width:49.728000px;}
._21_c00250{width:51.648000px;}
._18_c00250{width:53.280000px;}
._15_c00250{width:55.872000px;}
._2c_c00250{width:57.696000px;}
._1c_c00250{width:58.752000px;}
._1d_c00250{width:60.000000px;}
._a_c00250{width:61.248000px;}
._27_c00250{width:62.688000px;}
._1e_c00250{width:65.280000px;}
._4c_c00250{width:66.528000px;}
._5_c00250{width:69.312000px;}
._42_c00250{width:72.768000px;}
._36_c00250{width:75.072000px;}
._1f_c00250{width:79.488000px;}
._44_c00250{width:81.792000px;}
._48_c00250{width:84.576000px;}
._1b_c00250{width:93.984000px;}
._3c_c00250{width:97.440000px;}
._3b_c00250{width:113.760000px;}
._2b_c00250{width:114.912000px;}
._47_c00250{width:121.344000px;}
._35_c00250{width:125.184000px;}
._39_c00250{width:133.152000px;}
._34_c00250{width:136.224000px;}
._3a_c00250{width:178.944000px;}
._4a_c00250{width:197.928000px;}
._45_c00250{width:237.792000px;}
._3f_c00250{width:295.392000px;}
._4b_c00250{width:1544.880000px;}
.fc2_c00250{color:transparent;}
.fc1_c00250{color:rgb(128,128,128);}
.fc0_c00250{color:rgb(0,0,0);}
.fs0_c00250{font-size:36.000000px;}
.fs4_c00250{font-size:48.000000px;}
.fs2_c00250{font-size:84.000000px;}
.fs1_c00250{font-size:96.000000px;}
.fs3_c00250{font-size:102.000000px;}
.y0_c00250{bottom:0.000000px;}
.y20_c00250{bottom:3.105000px;}
.y1f_c00250{bottom:7.228371px;}
.y1e_c00250{bottom:320.715000px;}
.y1d_c00250{bottom:353.415000px;}
.y1c_c00250{bottom:387.765000px;}
.y1b_c00250{bottom:421.515000px;}
.y1a_c00250{bottom:454.365000px;}
.y19_c00250{bottom:487.815000px;}
.y18_c00250{bottom:521.865000px;}
.y17_c00250{bottom:555.165000px;}
.y16_c00250{bottom:588.315000px;}
.y15_c00250{bottom:621.315000px;}
.y14_c00250{bottom:654.465000px;}
.y13_c00250{bottom:687.615000px;}
.y12_c00250{bottom:721.215000px;}
.y11_c00250{bottom:754.665000px;}
.y10_c00250{bottom:787.815000px;}
.yf_c00250{bottom:821.265000px;}
.ye_c00250{bottom:855.015000px;}
.yd_c00250{bottom:886.365000px;}
.yc_c00250{bottom:920.415000px;}
.yb_c00250{bottom:953.865000px;}
.ya_c00250{bottom:987.315000px;}
.y9_c00250{bottom:1020.615000px;}
.y1_c00250{bottom:1024.965000px;}
.y8_c00250{bottom:1054.065000px;}
.y7_c00250{bottom:1087.065000px;}
.y6_c00250{bottom:1120.515000px;}
.y5_c00250{bottom:1153.365000px;}
.y4_c00250{bottom:1186.665000px;}
.y3_c00250{bottom:1220.115000px;}
.y2_c00250{bottom:1254.165000px;}
.h4_c00250{height:13.200074px;}
.h2_c00250{height:37.728000px;}
.h5_c00250{height:43.804688px;}
.h3_c00250{height:121.546875px;}
.h1_c00250{height:1349.250000px;}
.h0_c00250{height:1349.475000px;}
.w2_c00250{width:104.875500px;}
.w1_c00250{width:855.750000px;}
.w0_c00250{width:855.900000px;}
.x0_c00250{left:0.000000px;}
.xa_c00250{left:42.300000px;}
.x9_c00250{left:43.500000px;}
.x8_c00250{left:44.550000px;}
.x7_c00250{left:45.600000px;}
.x6_c00250{left:47.250000px;}
.x5_c00250{left:48.900000px;}
.x4_c00250{left:49.950000px;}
.x2_c00250{left:51.000000px;}
.x3_c00250{left:55.350000px;}
.xb_c00250{left:190.350000px;}
.xc_c00250{left:379.764221px;}
.x1_c00250{left:689.850000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls2_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:15.157333pt;}
.ls1_c00250{letter-spacing:19.733333pt;}
.ws0_c00250{word-spacing:-56.448000pt;}
.ws1_c00250{word-spacing:-45.333333pt;}
.ws3_c00250{word-spacing:-23.690667pt;}
.ws2_c00250{word-spacing:-20.565333pt;}
.ws4_c00250{word-spacing:0.000000pt;}
._37_c00250{margin-left:-26.880000pt;}
._49_c00250{margin-left:-21.845333pt;}
._43_c00250{margin-left:-17.920000pt;}
._3e_c00250{margin-left:-15.445333pt;}
._46_c00250{margin-left:-13.909333pt;}
._2d_c00250{margin-left:-12.874667pt;}
._31_c00250{margin-left:-10.752000pt;}
._2f_c00250{margin-left:-9.642667pt;}
._38_c00250{margin-left:-8.533333pt;}
._3d_c00250{margin-left:-7.594667pt;}
._30_c00250{margin-left:-6.570667pt;}
._d_c00250{margin-left:-4.864000pt;}
._28_c00250{margin-left:-3.754667pt;}
._16_c00250{margin-left:-2.816000pt;}
._0_c00250{margin-left:-1.536000pt;}
._3_c00250{width:1.536000pt;}
._2_c00250{width:3.072000pt;}
._4_c00250{width:4.096000pt;}
._b_c00250{width:5.461333pt;}
._6_c00250{width:6.400000pt;}
._8_c00250{width:7.765333pt;}
._e_c00250{width:9.301333pt;}
._7_c00250{width:10.410667pt;}
._2e_c00250{width:11.776000pt;}
._23_c00250{width:12.714667pt;}
._12_c00250{width:14.336000pt;}
._f_c00250{width:15.445333pt;}
._c_c00250{width:17.066667pt;}
._13_c00250{width:18.346667pt;}
._24_c00250{width:19.285333pt;}
._2a_c00250{width:21.589333pt;}
._25_c00250{width:23.040000pt;}
._20_c00250{width:24.661333pt;}
._41_c00250{width:25.600000pt;}
._29_c00250{width:26.538667pt;}
._33_c00250{width:28.160000pt;}
._9_c00250{width:29.098667pt;}
._26_c00250{width:30.378667pt;}
._19_c00250{width:32.426667pt;}
._40_c00250{width:33.621333pt;}
._14_c00250{width:34.730667pt;}
._1_c00250{width:36.266667pt;}
._11_c00250{width:37.546667pt;}
._1a_c00250{width:39.338667pt;}
._17_c00250{width:40.277333pt;}
._10_c00250{width:42.069333pt;}
._22_c00250{width:43.093333pt;}
._32_c00250{width:44.202667pt;}
._21_c00250{width:45.909333pt;}
._18_c00250{width:47.360000pt;}
._15_c00250{width:49.664000pt;}
._2c_c00250{width:51.285333pt;}
._1c_c00250{width:52.224000pt;}
._1d_c00250{width:53.333333pt;}
._a_c00250{width:54.442667pt;}
._27_c00250{width:55.722667pt;}
._1e_c00250{width:58.026667pt;}
._4c_c00250{width:59.136000pt;}
._5_c00250{width:61.610667pt;}
._42_c00250{width:64.682667pt;}
._36_c00250{width:66.730667pt;}
._1f_c00250{width:70.656000pt;}
._44_c00250{width:72.704000pt;}
._48_c00250{width:75.178667pt;}
._1b_c00250{width:83.541333pt;}
._3c_c00250{width:86.613333pt;}
._3b_c00250{width:101.120000pt;}
._2b_c00250{width:102.144000pt;}
._47_c00250{width:107.861333pt;}
._35_c00250{width:111.274667pt;}
._39_c00250{width:118.357333pt;}
._34_c00250{width:121.088000pt;}
._3a_c00250{width:159.061333pt;}
._4a_c00250{width:175.936000pt;}
._45_c00250{width:211.370667pt;}
._3f_c00250{width:262.570667pt;}
._4b_c00250{width:1373.226667pt;}
.fs0_c00250{font-size:32.000000pt;}
.fs4_c00250{font-size:42.666667pt;}
.fs2_c00250{font-size:74.666667pt;}
.fs1_c00250{font-size:85.333333pt;}
.fs3_c00250{font-size:90.666667pt;}
.y0_c00250{bottom:0.000000pt;}
.y20_c00250{bottom:2.760000pt;}
.y1f_c00250{bottom:6.425219pt;}
.y1e_c00250{bottom:285.080000pt;}
.y1d_c00250{bottom:314.146667pt;}
.y1c_c00250{bottom:344.680000pt;}
.y1b_c00250{bottom:374.680000pt;}
.y1a_c00250{bottom:403.880000pt;}
.y19_c00250{bottom:433.613333pt;}
.y18_c00250{bottom:463.880000pt;}
.y17_c00250{bottom:493.480000pt;}
.y16_c00250{bottom:522.946667pt;}
.y15_c00250{bottom:552.280000pt;}
.y14_c00250{bottom:581.746667pt;}
.y13_c00250{bottom:611.213333pt;}
.y12_c00250{bottom:641.080000pt;}
.y11_c00250{bottom:670.813333pt;}
.y10_c00250{bottom:700.280000pt;}
.yf_c00250{bottom:730.013333pt;}
.ye_c00250{bottom:760.013333pt;}
.yd_c00250{bottom:787.880000pt;}
.yc_c00250{bottom:818.146667pt;}
.yb_c00250{bottom:847.880000pt;}
.ya_c00250{bottom:877.613333pt;}
.y9_c00250{bottom:907.213333pt;}
.y1_c00250{bottom:911.080000pt;}
.y8_c00250{bottom:936.946667pt;}
.y7_c00250{bottom:966.280000pt;}
.y6_c00250{bottom:996.013333pt;}
.y5_c00250{bottom:1025.213333pt;}
.y4_c00250{bottom:1054.813333pt;}
.y3_c00250{bottom:1084.546667pt;}
.y2_c00250{bottom:1114.813333pt;}
.h4_c00250{height:11.733399pt;}
.h2_c00250{height:33.536000pt;}
.h5_c00250{height:38.937500pt;}
.h3_c00250{height:108.041667pt;}
.h1_c00250{height:1199.333333pt;}
.h0_c00250{height:1199.533333pt;}
.w2_c00250{width:93.222667pt;}
.w1_c00250{width:760.666667pt;}
.w0_c00250{width:760.800000pt;}
.x0_c00250{left:0.000000pt;}
.xa_c00250{left:37.600000pt;}
.x9_c00250{left:38.666667pt;}
.x8_c00250{left:39.600000pt;}
.x7_c00250{left:40.533333pt;}
.x6_c00250{left:42.000000pt;}
.x5_c00250{left:43.466667pt;}
.x4_c00250{left:44.400000pt;}
.x2_c00250{left:45.333333pt;}
.x3_c00250{left:49.200000pt;}
.xb_c00250{left:169.200000pt;}
.xc_c00250{left:337.568197pt;}
.x1_c00250{left:613.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_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_72ae4b4819a26d621942efa6.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_0fdd20959b971e7762dce679.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00251{vertical-align:-40.800000px;}
.v0_c00251{vertical-align:0.000000px;}
.ls4_c00251{letter-spacing:0.000000px;}
.ls2_c00251{letter-spacing:8.520000px;}
.ls3_c00251{letter-spacing:10.452000px;}
.ls0_c00251{letter-spacing:24.348000px;}
.ls1_c00251{letter-spacing:57.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00251{word-spacing:-44.772000px;}
.ws0_c00251{word-spacing:-23.136000px;}
.ws2_c00251{word-spacing:0.000000px;}
._3c_c00251{margin-left:-77.376000px;}
._22_c00251{margin-left:-44.640000px;}
._8_c00251{margin-left:-32.256000px;}
._23_c00251{margin-left:-26.016000px;}
._10_c00251{margin-left:-17.376000px;}
._f_c00251{margin-left:-15.072000px;}
._3e_c00251{margin-left:-13.032000px;}
._18_c00251{margin-left:-11.040000px;}
._3a_c00251{margin-left:-9.024000px;}
._12_c00251{margin-left:-7.968000px;}
._4_c00251{margin-left:-6.336000px;}
._2_c00251{margin-left:-5.184000px;}
._1_c00251{margin-left:-3.744000px;}
._6_c00251{margin-left:-2.736000px;}
._0_c00251{margin-left:-1.728000px;}
._d_c00251{width:1.440000px;}
._b_c00251{width:2.496000px;}
._c_c00251{width:3.744000px;}
._1d_c00251{width:5.472000px;}
._16_c00251{width:6.792000px;}
._1b_c00251{width:7.932000px;}
._14_c00251{width:9.324000px;}
._e_c00251{width:10.464000px;}
._25_c00251{width:11.568000px;}
._7_c00251{width:12.672000px;}
._15_c00251{width:14.400000px;}
._13_c00251{width:15.552000px;}
._32_c00251{width:17.268000px;}
._21_c00251{width:18.456000px;}
._3_c00251{width:20.160000px;}
._28_c00251{width:21.624000px;}
._17_c00251{width:24.840000px;}
._2b_c00251{width:26.784000px;}
._1e_c00251{width:28.512000px;}
._30_c00251{width:30.240000px;}
._1c_c00251{width:31.776000px;}
._31_c00251{width:32.796000px;}
._11_c00251{width:33.840000px;}
._1a_c00251{width:35.136000px;}
._20_c00251{width:36.228000px;}
._40_c00251{width:37.248000px;}
._27_c00251{width:38.400000px;}
._39_c00251{width:40.488000px;}
._1f_c00251{width:42.720000px;}
._35_c00251{width:43.968000px;}
._a_c00251{width:45.264000px;}
._34_c00251{width:47.544000px;}
._2c_c00251{width:48.744000px;}
._5_c00251{width:50.256000px;}
._19_c00251{width:51.264000px;}
._2e_c00251{width:53.952000px;}
._36_c00251{width:56.040000px;}
._29_c00251{width:58.656000px;}
._2d_c00251{width:62.196000px;}
._33_c00251{width:64.896000px;}
._2f_c00251{width:66.528000px;}
._2a_c00251{width:69.792000px;}
._3d_c00251{width:71.064000px;}
._24_c00251{width:77.376000px;}
._3f_c00251{width:79.620000px;}
._38_c00251{width:101.520000px;}
._37_c00251{width:146.484000px;}
._41_c00251{width:164.256000px;}
._9_c00251{width:476.208000px;}
._3b_c00251{width:662.100000px;}
._26_c00251{width:926.016000px;}
.fc2_c00251{color:transparent;}
.fc1_c00251{color:rgb(128,128,128);}
.fc0_c00251{color:rgb(0,0,0);}
.fs2_c00251{font-size:36.000000px;}
.fs5_c00251{font-size:48.000000px;}
.fs3_c00251{font-size:84.000000px;}
.fs1_c00251{font-size:96.000000px;}
.fs4_c00251{font-size:102.000000px;}
.fs0_c00251{font-size:144.000000px;}
.y0_c00251{bottom:0.000000px;}
.y29_c00251{bottom:3.105000px;}
.y28_c00251{bottom:7.228357px;}
.y27_c00251{bottom:87.780000px;}
.y26_c00251{bottom:121.830000px;}
.y25_c00251{bottom:156.030000px;}
.y24_c00251{bottom:190.080000px;}
.y23_c00251{bottom:224.430000px;}
.y22_c00251{bottom:259.530000px;}
.y21_c00251{bottom:292.680000px;}
.y20_c00251{bottom:327.330000px;}
.y1f_c00251{bottom:361.080000px;}
.y1e_c00251{bottom:395.280000px;}
.y1d_c00251{bottom:429.630000px;}
.y9_c00251{bottom:430.080000px;}
.y8_c00251{bottom:459.780000px;}
.y1c_c00251{bottom:463.380000px;}
.y1b_c00251{bottom:497.580000px;}
.y7_c00251{bottom:523.530000px;}
.y1a_c00251{bottom:531.180000px;}
.y6_c00251{bottom:553.830000px;}
.y19_c00251{bottom:564.930000px;}
.y18_c00251{bottom:598.680000px;}
.y17_c00251{bottom:632.580000px;}
.y16_c00251{bottom:666.180000px;}
.y15_c00251{bottom:699.930000px;}
.y14_c00251{bottom:733.680000px;}
.y13_c00251{bottom:767.430000px;}
.y12_c00251{bottom:800.580000px;}
.y11_c00251{bottom:834.930000px;}
.y10_c00251{bottom:868.380000px;}
.y5_c00251{bottom:886.380000px;}
.yf_c00251{bottom:901.830000px;}
.ye_c00251{bottom:934.830000px;}
.yd_c00251{bottom:967.980000px;}
.yc_c00251{bottom:1002.030000px;}
.yb_c00251{bottom:1035.180000px;}
.y4_c00251{bottom:1041.180000px;}
.ya_c00251{bottom:1067.880000px;}
.y3_c00251{bottom:1071.180000px;}
.y2_c00251{bottom:1158.630000px;}
.y1_c00251{bottom:1207.230000px;}
.h4_c00251{height:13.200074px;}
.h5_c00251{height:43.804688px;}
.h3_c00251{height:121.546875px;}
.h2_c00251{height:182.320312px;}
.h0_c00251{height:1382.700000px;}
.h1_c00251{height:1383.000000px;}
.w2_c00251{width:104.875500px;}
.w0_c00251{width:863.175000px;}
.w1_c00251{width:863.250000px;}
.x0_c00251{left:0.000000px;}
.x5_c00251{left:136.800000px;}
.x3_c00251{left:144.900000px;}
.x4_c00251{left:147.150000px;}
.x8_c00251{left:151.500000px;}
.x7_c00251{left:152.850000px;}
.x6_c00251{left:154.650000px;}
.xf_c00251{left:256.800000px;}
.xe_c00251{left:257.850000px;}
.xd_c00251{left:258.900000px;}
.xc_c00251{left:260.550000px;}
.x11_c00251{left:261.600000px;}
.x10_c00251{left:310.800000px;}
.x9_c00251{left:312.900000px;}
.x13_c00251{left:383.401749px;}
.x1_c00251{left:388.350000px;}
.xa_c00251{left:414.450000px;}
.xb_c00251{left:463.650000px;}
.x2_c00251{left:490.500000px;}
.x12_c00251{left:795.750000px;}
@media print{
.v1_c00251{vertical-align:-36.266667pt;}
.v0_c00251{vertical-align:0.000000pt;}
.ls4_c00251{letter-spacing:0.000000pt;}
.ls2_c00251{letter-spacing:7.573333pt;}
.ls3_c00251{letter-spacing:9.290667pt;}
.ls0_c00251{letter-spacing:21.642667pt;}
.ls1_c00251{letter-spacing:50.666667pt;}
.ws1_c00251{word-spacing:-39.797333pt;}
.ws0_c00251{word-spacing:-20.565333pt;}
.ws2_c00251{word-spacing:0.000000pt;}
._3c_c00251{margin-left:-68.778667pt;}
._22_c00251{margin-left:-39.680000pt;}
._8_c00251{margin-left:-28.672000pt;}
._23_c00251{margin-left:-23.125333pt;}
._10_c00251{margin-left:-15.445333pt;}
._f_c00251{margin-left:-13.397333pt;}
._3e_c00251{margin-left:-11.584000pt;}
._18_c00251{margin-left:-9.813333pt;}
._3a_c00251{margin-left:-8.021333pt;}
._12_c00251{margin-left:-7.082667pt;}
._4_c00251{margin-left:-5.632000pt;}
._2_c00251{margin-left:-4.608000pt;}
._1_c00251{margin-left:-3.328000pt;}
._6_c00251{margin-left:-2.432000pt;}
._0_c00251{margin-left:-1.536000pt;}
._d_c00251{width:1.280000pt;}
._b_c00251{width:2.218667pt;}
._c_c00251{width:3.328000pt;}
._1d_c00251{width:4.864000pt;}
._16_c00251{width:6.037333pt;}
._1b_c00251{width:7.050667pt;}
._14_c00251{width:8.288000pt;}
._e_c00251{width:9.301333pt;}
._25_c00251{width:10.282667pt;}
._7_c00251{width:11.264000pt;}
._15_c00251{width:12.800000pt;}
._13_c00251{width:13.824000pt;}
._32_c00251{width:15.349333pt;}
._21_c00251{width:16.405333pt;}
._3_c00251{width:17.920000pt;}
._28_c00251{width:19.221333pt;}
._17_c00251{width:22.080000pt;}
._2b_c00251{width:23.808000pt;}
._1e_c00251{width:25.344000pt;}
._30_c00251{width:26.880000pt;}
._1c_c00251{width:28.245333pt;}
._31_c00251{width:29.152000pt;}
._11_c00251{width:30.080000pt;}
._1a_c00251{width:31.232000pt;}
._20_c00251{width:32.202667pt;}
._40_c00251{width:33.109333pt;}
._27_c00251{width:34.133333pt;}
._39_c00251{width:35.989333pt;}
._1f_c00251{width:37.973333pt;}
._35_c00251{width:39.082667pt;}
._a_c00251{width:40.234667pt;}
._34_c00251{width:42.261333pt;}
._2c_c00251{width:43.328000pt;}
._5_c00251{width:44.672000pt;}
._19_c00251{width:45.568000pt;}
._2e_c00251{width:47.957333pt;}
._36_c00251{width:49.813333pt;}
._29_c00251{width:52.138667pt;}
._2d_c00251{width:55.285333pt;}
._33_c00251{width:57.685333pt;}
._2f_c00251{width:59.136000pt;}
._2a_c00251{width:62.037333pt;}
._3d_c00251{width:63.168000pt;}
._24_c00251{width:68.778667pt;}
._3f_c00251{width:70.773333pt;}
._38_c00251{width:90.240000pt;}
._37_c00251{width:130.208000pt;}
._41_c00251{width:146.005333pt;}
._9_c00251{width:423.296000pt;}
._3b_c00251{width:588.533333pt;}
._26_c00251{width:823.125333pt;}
.fs2_c00251{font-size:32.000000pt;}
.fs5_c00251{font-size:42.666667pt;}
.fs3_c00251{font-size:74.666667pt;}
.fs1_c00251{font-size:85.333333pt;}
.fs4_c00251{font-size:90.666667pt;}
.fs0_c00251{font-size:128.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y29_c00251{bottom:2.760000pt;}
.y28_c00251{bottom:6.425206pt;}
.y27_c00251{bottom:78.026667pt;}
.y26_c00251{bottom:108.293333pt;}
.y25_c00251{bottom:138.693333pt;}
.y24_c00251{bottom:168.960000pt;}
.y23_c00251{bottom:199.493333pt;}
.y22_c00251{bottom:230.693333pt;}
.y21_c00251{bottom:260.160000pt;}
.y20_c00251{bottom:290.960000pt;}
.y1f_c00251{bottom:320.960000pt;}
.y1e_c00251{bottom:351.360000pt;}
.y1d_c00251{bottom:381.893333pt;}
.y9_c00251{bottom:382.293333pt;}
.y8_c00251{bottom:408.693333pt;}
.y1c_c00251{bottom:411.893333pt;}
.y1b_c00251{bottom:442.293333pt;}
.y7_c00251{bottom:465.360000pt;}
.y1a_c00251{bottom:472.160000pt;}
.y6_c00251{bottom:492.293333pt;}
.y19_c00251{bottom:502.160000pt;}
.y18_c00251{bottom:532.160000pt;}
.y17_c00251{bottom:562.293333pt;}
.y16_c00251{bottom:592.160000pt;}
.y15_c00251{bottom:622.160000pt;}
.y14_c00251{bottom:652.160000pt;}
.y13_c00251{bottom:682.160000pt;}
.y12_c00251{bottom:711.626667pt;}
.y11_c00251{bottom:742.160000pt;}
.y10_c00251{bottom:771.893333pt;}
.y5_c00251{bottom:787.893333pt;}
.yf_c00251{bottom:801.626667pt;}
.ye_c00251{bottom:830.960000pt;}
.yd_c00251{bottom:860.426667pt;}
.yc_c00251{bottom:890.693333pt;}
.yb_c00251{bottom:920.160000pt;}
.y4_c00251{bottom:925.493333pt;}
.ya_c00251{bottom:949.226667pt;}
.y3_c00251{bottom:952.160000pt;}
.y2_c00251{bottom:1029.893333pt;}
.y1_c00251{bottom:1073.093333pt;}
.h4_c00251{height:11.733399pt;}
.h5_c00251{height:38.937500pt;}
.h3_c00251{height:108.041667pt;}
.h2_c00251{height:162.062500pt;}
.h0_c00251{height:1229.066667pt;}
.h1_c00251{height:1229.333333pt;}
.w2_c00251{width:93.222667pt;}
.w0_c00251{width:767.266667pt;}
.w1_c00251{width:767.333333pt;}
.x0_c00251{left:0.000000pt;}
.x5_c00251{left:121.600000pt;}
.x3_c00251{left:128.800000pt;}
.x4_c00251{left:130.800000pt;}
.x8_c00251{left:134.666667pt;}
.x7_c00251{left:135.866667pt;}
.x6_c00251{left:137.466667pt;}
.xf_c00251{left:228.266667pt;}
.xe_c00251{left:229.200000pt;}
.xd_c00251{left:230.133333pt;}
.xc_c00251{left:231.600000pt;}
.x11_c00251{left:232.533333pt;}
.x10_c00251{left:276.266667pt;}
.x9_c00251{left:278.133333pt;}
.x13_c00251{left:340.801554pt;}
.x1_c00251{left:345.200000pt;}
.xa_c00251{left:368.400000pt;}
.xb_c00251{left:412.133333pt;}
.x2_c00251{left:436.000000pt;}
.x12_c00251{left:707.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f7ac25f3379b6cc2f3dd09d5.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_ceebd3a9e87ff81890b7c027.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_df154b9985b86d360ca30627.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00252{vertical-align:-432.000000px;}
.v0_c00252{vertical-align:0.000000px;}
.v2_c00252{vertical-align:298.200000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:-63.504000px;}
.ws3_c00252{word-spacing:-34.704000px;}
.ws2_c00252{word-spacing:-23.136000px;}
.ws1_c00252{word-spacing:-0.501000px;}
.ws4_c00252{word-spacing:0.000000px;}
._27_c00252{margin-left:-75.567000px;}
._40_c00252{margin-left:-17.376000px;}
._22_c00252{margin-left:-14.748000px;}
._3f_c00252{margin-left:-13.056000px;}
._25_c00252{margin-left:-9.324000px;}
._39_c00252{margin-left:-8.316000px;}
._38_c00252{margin-left:-6.084000px;}
._3a_c00252{margin-left:-5.076000px;}
._26_c00252{margin-left:-3.780000px;}
._0_c00252{margin-left:-1.824000px;}
._1_c00252{width:1.632000px;}
._8_c00252{width:3.168000px;}
._15_c00252{width:4.416000px;}
._3_c00252{width:5.568000px;}
._9_c00252{width:6.720000px;}
._7_c00252{width:7.776000px;}
._1e_c00252{width:9.312000px;}
._13_c00252{width:10.848000px;}
._37_c00252{width:11.952000px;}
._11_c00252{width:13.056000px;}
._32_c00252{width:14.592000px;}
._19_c00252{width:15.648000px;}
._1c_c00252{width:16.992000px;}
._2_c00252{width:18.624000px;}
._1d_c00252{width:19.680000px;}
._5_c00252{width:21.696000px;}
._4_c00252{width:25.440000px;}
._23_c00252{width:27.072000px;}
._1a_c00252{width:28.416000px;}
._16_c00252{width:30.432000px;}
._33_c00252{width:31.680000px;}
._17_c00252{width:32.736000px;}
._f_c00252{width:33.984000px;}
._6_c00252{width:35.808000px;}
._1f_c00252{width:37.248000px;}
._10_c00252{width:38.304000px;}
._c_c00252{width:40.224000px;}
._d_c00252{width:42.912000px;}
._18_c00252{width:43.968000px;}
._28_c00252{width:45.504000px;}
._1b_c00252{width:46.752000px;}
._2b_c00252{width:47.928000px;}
._e_c00252{width:49.728000px;}
._b_c00252{width:51.744000px;}
._2a_c00252{width:52.800000px;}
._29_c00252{width:53.952000px;}
._3c_c00252{width:55.056000px;}
._2d_c00252{width:56.448000px;}
._2c_c00252{width:58.272000px;}
._34_c00252{width:59.328000px;}
._21_c00252{width:60.960000px;}
._3e_c00252{width:62.880000px;}
._a_c00252{width:64.800000px;}
._2f_c00252{width:66.144000px;}
._12_c00252{width:67.296000px;}
._31_c00252{width:68.736000px;}
._30_c00252{width:70.788000px;}
._20_c00252{width:73.536000px;}
._14_c00252{width:84.864000px;}
._35_c00252{width:88.512000px;}
._2e_c00252{width:90.468000px;}
._3d_c00252{width:112.608000px;}
._36_c00252{width:132.912000px;}
._3b_c00252{width:185.664000px;}
._24_c00252{width:376.224000px;}
._41_c00252{width:986.916000px;}
.fc2_c00252{color:transparent;}
.fc1_c00252{color:rgb(128,128,128);}
.fc0_c00252{color:rgb(0,0,0);}
.fs2_c00252{font-size:36.000000px;}
.fs5_c00252{font-size:48.000000px;}
.fs1_c00252{font-size:84.000000px;}
.fs0_c00252{font-size:96.000000px;}
.fs4_c00252{font-size:144.000000px;}
.fs3_c00252{font-size:501.000000px;}
.y0_c00252{bottom:0.000000px;}
.y20_c00252{bottom:3.105000px;}
.y1f_c00252{bottom:7.228363px;}
.y1e_c00252{bottom:96.900000px;}
.y1d_c00252{bottom:130.950000px;}
.y1c_c00252{bottom:164.700000px;}
.y1b_c00252{bottom:198.450000px;}
.y1a_c00252{bottom:231.900000px;}
.y19_c00252{bottom:263.700000px;}
.y18_c00252{bottom:299.100000px;}
.y17_c00252{bottom:389.850000px;}
.y16_c00252{bottom:439.800000px;}
.y15_c00252{bottom:491.100000px;}
.y14_c00252{bottom:569.700000px;}
.y13_c00252{bottom:601.500000px;}
.y12_c00252{bottom:634.200000px;}
.y11_c00252{bottom:667.350000px;}
.y10_c00252{bottom:700.350000px;}
.yf_c00252{bottom:733.800000px;}
.ye_c00252{bottom:766.800000px;}
.yd_c00252{bottom:799.950000px;}
.yc_c00252{bottom:832.350000px;}
.yb_c00252{bottom:898.800000px;}
.ya_c00252{bottom:932.550000px;}
.y9_c00252{bottom:999.000000px;}
.y8_c00252{bottom:1032.450000px;}
.y7_c00252{bottom:1065.450000px;}
.y6_c00252{bottom:1098.000000px;}
.y5_c00252{bottom:1131.300000px;}
.y4_c00252{bottom:1164.000000px;}
.y3_c00252{bottom:1197.450000px;}
.y2_c00252{bottom:1229.850000px;}
.y1_c00252{bottom:1264.200000px;}
.h4_c00252{height:13.200074px;}
.h5_c00252{height:43.804688px;}
.h2_c00252{height:102.567000px;}
.h1_c00252{height:121.546875px;}
.h3_c00252{height:182.320312px;}
.h0_c00252{height:1363.500000px;}
.w2_c00252{width:104.875500px;}
.w1_c00252{width:864.750000px;}
.w0_c00252{width:865.050000px;}
.x0_c00252{left:0.000000px;}
.x13_c00252{left:53.700000px;}
.x14_c00252{left:55.350000px;}
.x6_c00252{left:60.150000px;}
.x5_c00252{left:61.200000px;}
.x4_c00252{left:62.400000px;}
.x2_c00252{left:64.500000px;}
.x1_c00252{left:66.750000px;}
.x3_c00252{left:67.800000px;}
.xd_c00252{left:79.050000px;}
.xa_c00252{left:88.800000px;}
.x9_c00252{left:89.850000px;}
.xb_c00252{left:90.900000px;}
.xc_c00252{left:92.550000px;}
.x7_c00252{left:95.250000px;}
.x10_c00252{left:105.000000px;}
.xe_c00252{left:177.900000px;}
.x8_c00252{left:198.450000px;}
.x11_c00252{left:207.600000px;}
.xf_c00252{left:279.450000px;}
.x12_c00252{left:288.600000px;}
.x15_c00252{left:312.900000px;}
.x16_c00252{left:384.339249px;}
@media print{
.v1_c00252{vertical-align:-384.000000pt;}
.v0_c00252{vertical-align:0.000000pt;}
.v2_c00252{vertical-align:265.066667pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:-56.448000pt;}
.ws3_c00252{word-spacing:-30.848000pt;}
.ws2_c00252{word-spacing:-20.565333pt;}
.ws1_c00252{word-spacing:-0.445333pt;}
.ws4_c00252{word-spacing:0.000000pt;}
._27_c00252{margin-left:-67.170667pt;}
._40_c00252{margin-left:-15.445333pt;}
._22_c00252{margin-left:-13.109333pt;}
._3f_c00252{margin-left:-11.605333pt;}
._25_c00252{margin-left:-8.288000pt;}
._39_c00252{margin-left:-7.392000pt;}
._38_c00252{margin-left:-5.408000pt;}
._3a_c00252{margin-left:-4.512000pt;}
._26_c00252{margin-left:-3.360000pt;}
._0_c00252{margin-left:-1.621333pt;}
._1_c00252{width:1.450667pt;}
._8_c00252{width:2.816000pt;}
._15_c00252{width:3.925333pt;}
._3_c00252{width:4.949333pt;}
._9_c00252{width:5.973333pt;}
._7_c00252{width:6.912000pt;}
._1e_c00252{width:8.277333pt;}
._13_c00252{width:9.642667pt;}
._37_c00252{width:10.624000pt;}
._11_c00252{width:11.605333pt;}
._32_c00252{width:12.970667pt;}
._19_c00252{width:13.909333pt;}
._1c_c00252{width:15.104000pt;}
._2_c00252{width:16.554667pt;}
._1d_c00252{width:17.493333pt;}
._5_c00252{width:19.285333pt;}
._4_c00252{width:22.613333pt;}
._23_c00252{width:24.064000pt;}
._1a_c00252{width:25.258667pt;}
._16_c00252{width:27.050667pt;}
._33_c00252{width:28.160000pt;}
._17_c00252{width:29.098667pt;}
._f_c00252{width:30.208000pt;}
._6_c00252{width:31.829333pt;}
._1f_c00252{width:33.109333pt;}
._10_c00252{width:34.048000pt;}
._c_c00252{width:35.754667pt;}
._d_c00252{width:38.144000pt;}
._18_c00252{width:39.082667pt;}
._28_c00252{width:40.448000pt;}
._1b_c00252{width:41.557333pt;}
._2b_c00252{width:42.602667pt;}
._e_c00252{width:44.202667pt;}
._b_c00252{width:45.994667pt;}
._2a_c00252{width:46.933333pt;}
._29_c00252{width:47.957333pt;}
._3c_c00252{width:48.938667pt;}
._2d_c00252{width:50.176000pt;}
._2c_c00252{width:51.797333pt;}
._34_c00252{width:52.736000pt;}
._21_c00252{width:54.186667pt;}
._3e_c00252{width:55.893333pt;}
._a_c00252{width:57.600000pt;}
._2f_c00252{width:58.794667pt;}
._12_c00252{width:59.818667pt;}
._31_c00252{width:61.098667pt;}
._30_c00252{width:62.922667pt;}
._20_c00252{width:65.365333pt;}
._14_c00252{width:75.434667pt;}
._35_c00252{width:78.677333pt;}
._2e_c00252{width:80.416000pt;}
._3d_c00252{width:100.096000pt;}
._36_c00252{width:118.144000pt;}
._3b_c00252{width:165.034667pt;}
._24_c00252{width:334.421333pt;}
._41_c00252{width:877.258667pt;}
.fs2_c00252{font-size:32.000000pt;}
.fs5_c00252{font-size:42.666667pt;}
.fs1_c00252{font-size:74.666667pt;}
.fs0_c00252{font-size:85.333333pt;}
.fs4_c00252{font-size:128.000000pt;}
.fs3_c00252{font-size:445.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y20_c00252{bottom:2.760000pt;}
.y1f_c00252{bottom:6.425212pt;}
.y1e_c00252{bottom:86.133333pt;}
.y1d_c00252{bottom:116.400000pt;}
.y1c_c00252{bottom:146.400000pt;}
.y1b_c00252{bottom:176.400000pt;}
.y1a_c00252{bottom:206.133333pt;}
.y19_c00252{bottom:234.400000pt;}
.y18_c00252{bottom:265.866667pt;}
.y17_c00252{bottom:346.533333pt;}
.y16_c00252{bottom:390.933333pt;}
.y15_c00252{bottom:436.533333pt;}
.y14_c00252{bottom:506.400000pt;}
.y13_c00252{bottom:534.666667pt;}
.y12_c00252{bottom:563.733333pt;}
.y11_c00252{bottom:593.200000pt;}
.y10_c00252{bottom:622.533333pt;}
.yf_c00252{bottom:652.266667pt;}
.ye_c00252{bottom:681.600000pt;}
.yd_c00252{bottom:711.066667pt;}
.yc_c00252{bottom:739.866667pt;}
.yb_c00252{bottom:798.933333pt;}
.ya_c00252{bottom:828.933333pt;}
.y9_c00252{bottom:888.000000pt;}
.y8_c00252{bottom:917.733333pt;}
.y7_c00252{bottom:947.066667pt;}
.y6_c00252{bottom:976.000000pt;}
.y5_c00252{bottom:1005.600000pt;}
.y4_c00252{bottom:1034.666667pt;}
.y3_c00252{bottom:1064.400000pt;}
.y2_c00252{bottom:1093.200000pt;}
.y1_c00252{bottom:1123.733333pt;}
.h4_c00252{height:11.733399pt;}
.h5_c00252{height:38.937500pt;}
.h2_c00252{height:91.170667pt;}
.h1_c00252{height:108.041667pt;}
.h3_c00252{height:162.062500pt;}
.h0_c00252{height:1212.000000pt;}
.w2_c00252{width:93.222667pt;}
.w1_c00252{width:768.666667pt;}
.w0_c00252{width:768.933333pt;}
.x0_c00252{left:0.000000pt;}
.x13_c00252{left:47.733333pt;}
.x14_c00252{left:49.200000pt;}
.x6_c00252{left:53.466667pt;}
.x5_c00252{left:54.400000pt;}
.x4_c00252{left:55.466667pt;}
.x2_c00252{left:57.333333pt;}
.x1_c00252{left:59.333333pt;}
.x3_c00252{left:60.266667pt;}
.xd_c00252{left:70.266667pt;}
.xa_c00252{left:78.933333pt;}
.x9_c00252{left:79.866667pt;}
.xb_c00252{left:80.800000pt;}
.xc_c00252{left:82.266667pt;}
.x7_c00252{left:84.666667pt;}
.x10_c00252{left:93.333333pt;}
.xe_c00252{left:158.133333pt;}
.x8_c00252{left:176.400000pt;}
.x11_c00252{left:184.533333pt;}
.xf_c00252{left:248.400000pt;}
.x12_c00252{left:256.533333pt;}
.x15_c00252{left:278.133333pt;}
.x16_c00252{left:341.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f062b7ec7753ae6b36f60764.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_99b940e8c1f96c532cd08a09.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;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_c00253;src:url('chunks/assets/font_71c9075abbc680ddb0066e7d.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls1_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:7.200000px;}
.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:-76.038000px;}
.ws1_c00253{word-spacing:-51.000000px;}
.ws2_c00253{word-spacing:0.000000px;}
._41_c00253{margin-left:-32.808000px;}
._1f_c00253{margin-left:-19.278000px;}
._3f_c00253{margin-left:-16.242000px;}
._45_c00253{margin-left:-14.556000px;}
._31_c00253{margin-left:-12.528000px;}
._1d_c00253{margin-left:-11.016000px;}
._e_c00253{margin-left:-8.736000px;}
._c_c00253{margin-left:-6.528000px;}
._b_c00253{margin-left:-4.896000px;}
._d_c00253{margin-left:-3.744000px;}
._11_c00253{margin-left:-2.208000px;}
._6_c00253{margin-left:-1.152000px;}
._12_c00253{width:1.632000px;}
._1_c00253{width:2.784000px;}
._2_c00253{width:4.512000px;}
._0_c00253{width:5.952000px;}
._4_c00253{width:7.680000px;}
._7_c00253{width:9.120000px;}
._18_c00253{width:10.464000px;}
._33_c00253{width:11.616000px;}
._21_c00253{width:13.056000px;}
._44_c00253{width:14.304000px;}
._8_c00253{width:15.456000px;}
._36_c00253{width:17.712000px;}
._5_c00253{width:18.912000px;}
._29_c00253{width:20.040000px;}
._a_c00253{width:21.216000px;}
._2b_c00253{width:22.812000px;}
._13_c00253{width:25.440000px;}
._2d_c00253{width:26.928000px;}
._19_c00253{width:28.032000px;}
._38_c00253{width:29.232000px;}
._1c_c00253{width:30.240000px;}
._1a_c00253{width:32.160000px;}
._37_c00253{width:33.504000px;}
._2a_c00253{width:35.292000px;}
._1e_c00253{width:36.822000px;}
._3_c00253{width:38.304000px;}
._9_c00253{width:40.800000px;}
._30_c00253{width:41.952000px;}
._3c_c00253{width:43.296000px;}
._2e_c00253{width:44.418000px;}
._14_c00253{width:45.528000px;}
._27_c00253{width:47.082000px;}
._15_c00253{width:48.960000px;}
._f_c00253{width:51.936000px;}
._24_c00253{width:54.180000px;}
._3e_c00253{width:55.398000px;}
._35_c00253{width:56.466000px;}
._23_c00253{width:58.830000px;}
._17_c00253{width:60.576000px;}
._2f_c00253{width:62.784000px;}
._16_c00253{width:64.872000px;}
._2c_c00253{width:66.066000px;}
._10_c00253{width:67.104000px;}
._1b_c00253{width:69.216000px;}
._3d_c00253{width:70.848000px;}
._28_c00253{width:74.436000px;}
._26_c00253{width:75.912000px;}
._39_c00253{width:76.992000px;}
._3b_c00253{width:85.248000px;}
._25_c00253{width:89.316000px;}
._40_c00253{width:96.312000px;}
._46_c00253{width:109.416000px;}
._43_c00253{width:173.088000px;}
._22_c00253{width:182.334000px;}
._34_c00253{width:215.214000px;}
._20_c00253{width:274.692000px;}
._42_c00253{width:289.824000px;}
._3a_c00253{width:666.144000px;}
._32_c00253{width:931.488000px;}
.fc2_c00253{color:transparent;}
.fc1_c00253{color:rgb(128,128,128);}
.fc0_c00253{color:rgb(0,0,0);}
.fs4_c00253{font-size:48.000000px;}
.fs3_c00253{font-size:84.000000px;}
.fs0_c00253{font-size:96.000000px;}
.fs1_c00253{font-size:102.000000px;}
.fs2_c00253{font-size:114.000000px;}
.y0_c00253{bottom:0.000000px;}
.y22_c00253{bottom:3.105000px;}
.y21_c00253{bottom:7.228357px;}
.y20_c00253{bottom:193.680000px;}
.y1f_c00253{bottom:227.130000px;}
.y1e_c00253{bottom:260.280000px;}
.y8_c00253{bottom:280.530000px;}
.y1d_c00253{bottom:330.030000px;}
.y1c_c00253{bottom:364.230000px;}
.y1b_c00253{bottom:397.980000px;}
.y1a_c00253{bottom:431.430000px;}
.y19_c00253{bottom:466.380000px;}
.y18_c00253{bottom:500.130000px;}
.y17_c00253{bottom:533.130000px;}
.y16_c00253{bottom:566.430000px;}
.y15_c00253{bottom:599.730000px;}
.y14_c00253{bottom:632.880000px;}
.y13_c00253{bottom:667.980000px;}
.y12_c00253{bottom:700.680000px;}
.y11_c00253{bottom:734.130000px;}
.y10_c00253{bottom:767.430000px;}
.yf_c00253{bottom:800.580000px;}
.ye_c00253{bottom:834.330000px;}
.yd_c00253{bottom:867.780000px;}
.yc_c00253{bottom:901.530000px;}
.yb_c00253{bottom:934.830000px;}
.ya_c00253{bottom:967.680000px;}
.y9_c00253{bottom:998.430000px;}
.y7_c00253{bottom:1066.680000px;}
.y6_c00253{bottom:1100.880000px;}
.y5_c00253{bottom:1135.080000px;}
.y4_c00253{bottom:1168.380000px;}
.y3_c00253{bottom:1200.480000px;}
.y2_c00253{bottom:1233.630000px;}
.y1_c00253{bottom:1267.080000px;}
.h4_c00253{height:13.200074px;}
.h5_c00253{height:43.804688px;}
.h2_c00253{height:121.546875px;}
.h3_c00253{height:129.143555px;}
.h0_c00253{height:1382.700000px;}
.h1_c00253{height:1383.000000px;}
.w2_c00253{width:104.875500px;}
.w0_c00253{width:863.175000px;}
.w1_c00253{width:863.250000px;}
.x0_c00253{left:0.000000px;}
.xb_c00253{left:139.050000px;}
.x6_c00253{left:143.850000px;}
.xc_c00253{left:148.200000px;}
.x4_c00253{left:151.500000px;}
.x7_c00253{left:153.600000px;}
.x3_c00253{left:156.300000px;}
.x8_c00253{left:172.500000px;}
.xd_c00253{left:256.200000px;}
.xa_c00253{left:257.250000px;}
.x9_c00253{left:258.300000px;}
.x5_c00253{left:259.500000px;}
.x2_c00253{left:260.550000px;}
.x1_c00253{left:296.100000px;}
.xe_c00253{left:307.500000px;}
.xf_c00253{left:383.401749px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls1_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:6.400000pt;}
.ws0_c00253{word-spacing:-67.589333pt;}
.ws1_c00253{word-spacing:-45.333333pt;}
.ws2_c00253{word-spacing:0.000000pt;}
._41_c00253{margin-left:-29.162667pt;}
._1f_c00253{margin-left:-17.136000pt;}
._3f_c00253{margin-left:-14.437333pt;}
._45_c00253{margin-left:-12.938667pt;}
._31_c00253{margin-left:-11.136000pt;}
._1d_c00253{margin-left:-9.792000pt;}
._e_c00253{margin-left:-7.765333pt;}
._c_c00253{margin-left:-5.802667pt;}
._b_c00253{margin-left:-4.352000pt;}
._d_c00253{margin-left:-3.328000pt;}
._11_c00253{margin-left:-1.962667pt;}
._6_c00253{margin-left:-1.024000pt;}
._12_c00253{width:1.450667pt;}
._1_c00253{width:2.474667pt;}
._2_c00253{width:4.010667pt;}
._0_c00253{width:5.290667pt;}
._4_c00253{width:6.826667pt;}
._7_c00253{width:8.106667pt;}
._18_c00253{width:9.301333pt;}
._33_c00253{width:10.325333pt;}
._21_c00253{width:11.605333pt;}
._44_c00253{width:12.714667pt;}
._8_c00253{width:13.738667pt;}
._36_c00253{width:15.744000pt;}
._5_c00253{width:16.810667pt;}
._29_c00253{width:17.813333pt;}
._a_c00253{width:18.858667pt;}
._2b_c00253{width:20.277333pt;}
._13_c00253{width:22.613333pt;}
._2d_c00253{width:23.936000pt;}
._19_c00253{width:24.917333pt;}
._38_c00253{width:25.984000pt;}
._1c_c00253{width:26.880000pt;}
._1a_c00253{width:28.586667pt;}
._37_c00253{width:29.781333pt;}
._2a_c00253{width:31.370667pt;}
._1e_c00253{width:32.730667pt;}
._3_c00253{width:34.048000pt;}
._9_c00253{width:36.266667pt;}
._30_c00253{width:37.290667pt;}
._3c_c00253{width:38.485333pt;}
._2e_c00253{width:39.482667pt;}
._14_c00253{width:40.469333pt;}
._27_c00253{width:41.850667pt;}
._15_c00253{width:43.520000pt;}
._f_c00253{width:46.165333pt;}
._24_c00253{width:48.160000pt;}
._3e_c00253{width:49.242667pt;}
._35_c00253{width:50.192000pt;}
._23_c00253{width:52.293333pt;}
._17_c00253{width:53.845333pt;}
._2f_c00253{width:55.808000pt;}
._16_c00253{width:57.664000pt;}
._2c_c00253{width:58.725333pt;}
._10_c00253{width:59.648000pt;}
._1b_c00253{width:61.525333pt;}
._3d_c00253{width:62.976000pt;}
._28_c00253{width:66.165333pt;}
._26_c00253{width:67.477333pt;}
._39_c00253{width:68.437333pt;}
._3b_c00253{width:75.776000pt;}
._25_c00253{width:79.392000pt;}
._40_c00253{width:85.610667pt;}
._46_c00253{width:97.258667pt;}
._43_c00253{width:153.856000pt;}
._22_c00253{width:162.074667pt;}
._34_c00253{width:191.301333pt;}
._20_c00253{width:244.170667pt;}
._42_c00253{width:257.621333pt;}
._3a_c00253{width:592.128000pt;}
._32_c00253{width:827.989333pt;}
.fs4_c00253{font-size:42.666667pt;}
.fs3_c00253{font-size:74.666667pt;}
.fs0_c00253{font-size:85.333333pt;}
.fs1_c00253{font-size:90.666667pt;}
.fs2_c00253{font-size:101.333333pt;}
.y0_c00253{bottom:0.000000pt;}
.y22_c00253{bottom:2.760000pt;}
.y21_c00253{bottom:6.425206pt;}
.y20_c00253{bottom:172.160000pt;}
.y1f_c00253{bottom:201.893333pt;}
.y1e_c00253{bottom:231.360000pt;}
.y8_c00253{bottom:249.360000pt;}
.y1d_c00253{bottom:293.360000pt;}
.y1c_c00253{bottom:323.760000pt;}
.y1b_c00253{bottom:353.760000pt;}
.y1a_c00253{bottom:383.493333pt;}
.y19_c00253{bottom:414.560000pt;}
.y18_c00253{bottom:444.560000pt;}
.y17_c00253{bottom:473.893333pt;}
.y16_c00253{bottom:503.493333pt;}
.y15_c00253{bottom:533.093333pt;}
.y14_c00253{bottom:562.560000pt;}
.y13_c00253{bottom:593.760000pt;}
.y12_c00253{bottom:622.826667pt;}
.y11_c00253{bottom:652.560000pt;}
.y10_c00253{bottom:682.160000pt;}
.yf_c00253{bottom:711.626667pt;}
.ye_c00253{bottom:741.626667pt;}
.yd_c00253{bottom:771.360000pt;}
.yc_c00253{bottom:801.360000pt;}
.yb_c00253{bottom:830.960000pt;}
.ya_c00253{bottom:860.160000pt;}
.y9_c00253{bottom:887.493333pt;}
.y7_c00253{bottom:948.160000pt;}
.y6_c00253{bottom:978.560000pt;}
.y5_c00253{bottom:1008.960000pt;}
.y4_c00253{bottom:1038.560000pt;}
.y3_c00253{bottom:1067.093333pt;}
.y2_c00253{bottom:1096.560000pt;}
.y1_c00253{bottom:1126.293333pt;}
.h4_c00253{height:11.733399pt;}
.h5_c00253{height:38.937500pt;}
.h2_c00253{height:108.041667pt;}
.h3_c00253{height:114.794271pt;}
.h0_c00253{height:1229.066667pt;}
.h1_c00253{height:1229.333333pt;}
.w2_c00253{width:93.222667pt;}
.w0_c00253{width:767.266667pt;}
.w1_c00253{width:767.333333pt;}
.x0_c00253{left:0.000000pt;}
.xb_c00253{left:123.600000pt;}
.x6_c00253{left:127.866667pt;}
.xc_c00253{left:131.733333pt;}
.x4_c00253{left:134.666667pt;}
.x7_c00253{left:136.533333pt;}
.x3_c00253{left:138.933333pt;}
.x8_c00253{left:153.333333pt;}
.xd_c00253{left:227.733333pt;}
.xa_c00253{left:228.666667pt;}
.x9_c00253{left:229.600000pt;}
.x5_c00253{left:230.666667pt;}
.x2_c00253{left:231.600000pt;}
.x1_c00253{left:263.200000pt;}
.xe_c00253{left:273.333333pt;}
.xf_c00253{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_228695e183e3a26e081bd905.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_50e5eac7f6c5481715072c19.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_b2ddc16e52e22e572777b475.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls2_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:5.304000px;}
.ls1_c00254{letter-spacing:63.588000px;}
.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:-43.084800px;}
.ws0_c00254{word-spacing:-34.704000px;}
.ws2_c00254{word-spacing:-23.136000px;}
.ws3_c00254{word-spacing:0.000000px;}
._0_c00254{margin-left:-88.512000px;}
._38_c00254{margin-left:-23.904000px;}
._45_c00254{margin-left:-22.224000px;}
._42_c00254{margin-left:-19.776000px;}
._3b_c00254{margin-left:-18.048000px;}
._10_c00254{margin-left:-11.376000px;}
._12_c00254{margin-left:-8.064000px;}
._11_c00254{margin-left:-6.480000px;}
._2e_c00254{margin-left:-5.376000px;}
._13_c00254{margin-left:-4.320000px;}
._16_c00254{margin-left:-3.168000px;}
._15_c00254{margin-left:-2.016000px;}
._43_c00254{margin-left:-1.008000px;}
._18_c00254{width:1.296000px;}
._20_c00254{width:2.448000px;}
._28_c00254{width:3.456000px;}
._19_c00254{width:4.608000px;}
._26_c00254{width:5.664000px;}
._8_c00254{width:6.768000px;}
._2_c00254{width:8.448000px;}
._7_c00254{width:9.504000px;}
._5_c00254{width:10.512000px;}
._6_c00254{width:11.520000px;}
._9_c00254{width:12.672000px;}
._3_c00254{width:13.728000px;}
._e_c00254{width:15.408000px;}
._d_c00254{width:17.136000px;}
._32_c00254{width:19.392000px;}
._22_c00254{width:21.552000px;}
._f_c00254{width:24.768000px;}
._30_c00254{width:25.896000px;}
._34_c00254{width:28.512000px;}
._31_c00254{width:30.432000px;}
._2b_c00254{width:31.824000px;}
._36_c00254{width:32.880000px;}
._2f_c00254{width:34.368000px;}
._2c_c00254{width:36.408000px;}
._41_c00254{width:38.160000px;}
._1b_c00254{width:39.552000px;}
._1c_c00254{width:41.472000px;}
._33_c00254{width:43.008000px;}
._a_c00254{width:44.064000px;}
._c_c00254{width:46.176000px;}
._1d_c00254{width:47.712000px;}
._1e_c00254{width:49.056000px;}
._23_c00254{width:52.152000px;}
._3d_c00254{width:55.728000px;}
._40_c00254{width:56.760000px;}
._35_c00254{width:57.984000px;}
._1_c00254{width:60.000000px;}
._b_c00254{width:62.064000px;}
._27_c00254{width:64.800000px;}
._3c_c00254{width:66.816000px;}
._1f_c00254{width:68.640000px;}
._29_c00254{width:70.992000px;}
._25_c00254{width:73.056000px;}
._44_c00254{width:78.336000px;}
._4_c00254{width:86.400000px;}
._2a_c00254{width:88.512000px;}
._14_c00254{width:96.480000px;}
._21_c00254{width:99.792000px;}
._17_c00254{width:106.560000px;}
._24_c00254{width:107.712000px;}
._3a_c00254{width:110.064000px;}
._2d_c00254{width:155.136000px;}
._1a_c00254{width:173.280000px;}
._37_c00254{width:233.280000px;}
._39_c00254{width:267.648000px;}
._3f_c00254{width:375.936000px;}
._3e_c00254{width:476.784000px;}
.fc2_c00254{color:transparent;}
.fc1_c00254{color:rgb(128,128,128);}
.fc0_c00254{color:rgb(0,0,0);}
.fs4_c00254{font-size:48.000000px;}
.fs3_c00254{font-size:76.800000px;}
.fs2_c00254{font-size:84.000000px;}
.fs0_c00254{font-size:96.000000px;}
.fs1_c00254{font-size:144.000000px;}
.y0_c00254{bottom:0.000000px;}
.y23_c00254{bottom:3.105000px;}
.y22_c00254{bottom:7.228369px;}
.y21_c00254{bottom:92.820000px;}
.y20_c00254{bottom:126.870000px;}
.y1f_c00254{bottom:160.320000px;}
.y1e_c00254{bottom:194.070000px;}
.y1d_c00254{bottom:228.120000px;}
.y1c_c00254{bottom:261.270000px;}
.y1b_c00254{bottom:295.020000px;}
.y1a_c00254{bottom:328.320000px;}
.y19_c00254{bottom:361.770000px;}
.y18_c00254{bottom:394.920000px;}
.y17_c00254{bottom:428.520000px;}
.y16_c00254{bottom:461.070000px;}
.y15_c00254{bottom:494.670000px;}
.y14_c00254{bottom:527.820000px;}
.y13_c00254{bottom:560.520000px;}
.y12_c00254{bottom:594.270000px;}
.y11_c00254{bottom:628.320000px;}
.y10_c00254{bottom:660.120000px;}
.yf_c00254{bottom:693.570000px;}
.ye_c00254{bottom:726.870000px;}
.yd_c00254{bottom:759.720000px;}
.yc_c00254{bottom:793.170000px;}
.yb_c00254{bottom:826.470000px;}
.ya_c00254{bottom:858.570000px;}
.y9_c00254{bottom:892.020000px;}
.y8_c00254{bottom:925.320000px;}
.y7_c00254{bottom:958.770000px;}
.y6_c00254{bottom:993.270000px;}
.y5_c00254{bottom:1063.170000px;}
.y4_c00254{bottom:1114.320000px;}
.y3_c00254{bottom:1163.370000px;}
.y2_c00254{bottom:1214.220000px;}
.y1_c00254{bottom:1290.270000px;}
.h4_c00254{height:13.200073px;}
.h5_c00254{height:43.804688px;}
.h2_c00254{height:121.546875px;}
.h3_c00254{height:182.320312px;}
.h0_c00254{height:1383.450000px;}
.h1_c00254{height:1383.750000px;}
.w2_c00254{width:104.875500px;}
.w0_c00254{width:878.025000px;}
.w1_c00254{width:878.250000px;}
.x0_c00254{left:0.000000px;}
.xe_c00254{left:55.950000px;}
.xd_c00254{left:57.000000px;}
.xb_c00254{left:58.050000px;}
.xa_c00254{left:59.700000px;}
.x8_c00254{left:63.000000px;}
.x2_c00254{left:69.900000px;}
.xc_c00254{left:107.250000px;}
.x9_c00254{left:112.050000px;}
.x6_c00254{left:113.700000px;}
.x3_c00254{left:180.000000px;}
.x7_c00254{left:215.700000px;}
.x4_c00254{left:263.250000px;}
.x5_c00254{left:305.400000px;}
.x10_c00254{left:390.826721px;}
.x1_c00254{left:525.150000px;}
.xf_c00254{left:572.700000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls2_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:4.714667pt;}
.ls1_c00254{letter-spacing:56.522667pt;}
.ws1_c00254{word-spacing:-38.297600pt;}
.ws0_c00254{word-spacing:-30.848000pt;}
.ws2_c00254{word-spacing:-20.565333pt;}
.ws3_c00254{word-spacing:0.000000pt;}
._0_c00254{margin-left:-78.677333pt;}
._38_c00254{margin-left:-21.248000pt;}
._45_c00254{margin-left:-19.754667pt;}
._42_c00254{margin-left:-17.578667pt;}
._3b_c00254{margin-left:-16.042667pt;}
._10_c00254{margin-left:-10.112000pt;}
._12_c00254{margin-left:-7.168000pt;}
._11_c00254{margin-left:-5.760000pt;}
._2e_c00254{margin-left:-4.778667pt;}
._13_c00254{margin-left:-3.840000pt;}
._16_c00254{margin-left:-2.816000pt;}
._15_c00254{margin-left:-1.792000pt;}
._43_c00254{margin-left:-0.896000pt;}
._18_c00254{width:1.152000pt;}
._20_c00254{width:2.176000pt;}
._28_c00254{width:3.072000pt;}
._19_c00254{width:4.096000pt;}
._26_c00254{width:5.034667pt;}
._8_c00254{width:6.016000pt;}
._2_c00254{width:7.509333pt;}
._7_c00254{width:8.448000pt;}
._5_c00254{width:9.344000pt;}
._6_c00254{width:10.240000pt;}
._9_c00254{width:11.264000pt;}
._3_c00254{width:12.202667pt;}
._e_c00254{width:13.696000pt;}
._d_c00254{width:15.232000pt;}
._32_c00254{width:17.237333pt;}
._22_c00254{width:19.157333pt;}
._f_c00254{width:22.016000pt;}
._30_c00254{width:23.018667pt;}
._34_c00254{width:25.344000pt;}
._31_c00254{width:27.050667pt;}
._2b_c00254{width:28.288000pt;}
._36_c00254{width:29.226667pt;}
._2f_c00254{width:30.549333pt;}
._2c_c00254{width:32.362667pt;}
._41_c00254{width:33.920000pt;}
._1b_c00254{width:35.157333pt;}
._1c_c00254{width:36.864000pt;}
._33_c00254{width:38.229333pt;}
._a_c00254{width:39.168000pt;}
._c_c00254{width:41.045333pt;}
._1d_c00254{width:42.410667pt;}
._1e_c00254{width:43.605333pt;}
._23_c00254{width:46.357333pt;}
._3d_c00254{width:49.536000pt;}
._40_c00254{width:50.453333pt;}
._35_c00254{width:51.541333pt;}
._1_c00254{width:53.333333pt;}
._b_c00254{width:55.168000pt;}
._27_c00254{width:57.600000pt;}
._3c_c00254{width:59.392000pt;}
._1f_c00254{width:61.013333pt;}
._29_c00254{width:63.104000pt;}
._25_c00254{width:64.938667pt;}
._44_c00254{width:69.632000pt;}
._4_c00254{width:76.800000pt;}
._2a_c00254{width:78.677333pt;}
._14_c00254{width:85.760000pt;}
._21_c00254{width:88.704000pt;}
._17_c00254{width:94.720000pt;}
._24_c00254{width:95.744000pt;}
._3a_c00254{width:97.834667pt;}
._2d_c00254{width:137.898667pt;}
._1a_c00254{width:154.026667pt;}
._37_c00254{width:207.360000pt;}
._39_c00254{width:237.909333pt;}
._3f_c00254{width:334.165333pt;}
._3e_c00254{width:423.808000pt;}
.fs4_c00254{font-size:42.666667pt;}
.fs3_c00254{font-size:68.266667pt;}
.fs2_c00254{font-size:74.666667pt;}
.fs0_c00254{font-size:85.333333pt;}
.fs1_c00254{font-size:128.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y23_c00254{bottom:2.760000pt;}
.y22_c00254{bottom:6.425217pt;}
.y21_c00254{bottom:82.506667pt;}
.y20_c00254{bottom:112.773333pt;}
.y1f_c00254{bottom:142.506667pt;}
.y1e_c00254{bottom:172.506667pt;}
.y1d_c00254{bottom:202.773333pt;}
.y1c_c00254{bottom:232.240000pt;}
.y1b_c00254{bottom:262.240000pt;}
.y1a_c00254{bottom:291.840000pt;}
.y19_c00254{bottom:321.573333pt;}
.y18_c00254{bottom:351.040000pt;}
.y17_c00254{bottom:380.906667pt;}
.y16_c00254{bottom:409.840000pt;}
.y15_c00254{bottom:439.706667pt;}
.y14_c00254{bottom:469.173333pt;}
.y13_c00254{bottom:498.240000pt;}
.y12_c00254{bottom:528.240000pt;}
.y11_c00254{bottom:558.506667pt;}
.y10_c00254{bottom:586.773333pt;}
.yf_c00254{bottom:616.506667pt;}
.ye_c00254{bottom:646.106667pt;}
.yd_c00254{bottom:675.306667pt;}
.yc_c00254{bottom:705.040000pt;}
.yb_c00254{bottom:734.640000pt;}
.ya_c00254{bottom:763.173333pt;}
.y9_c00254{bottom:792.906667pt;}
.y8_c00254{bottom:822.506667pt;}
.y7_c00254{bottom:852.240000pt;}
.y6_c00254{bottom:882.906667pt;}
.y5_c00254{bottom:945.040000pt;}
.y4_c00254{bottom:990.506667pt;}
.y3_c00254{bottom:1034.106667pt;}
.y2_c00254{bottom:1079.306667pt;}
.y1_c00254{bottom:1146.906667pt;}
.h4_c00254{height:11.733399pt;}
.h5_c00254{height:38.937500pt;}
.h2_c00254{height:108.041667pt;}
.h3_c00254{height:162.062500pt;}
.h0_c00254{height:1229.733333pt;}
.h1_c00254{height:1230.000000pt;}
.w2_c00254{width:93.222667pt;}
.w0_c00254{width:780.466667pt;}
.w1_c00254{width:780.666667pt;}
.x0_c00254{left:0.000000pt;}
.xe_c00254{left:49.733333pt;}
.xd_c00254{left:50.666667pt;}
.xb_c00254{left:51.600000pt;}
.xa_c00254{left:53.066667pt;}
.x8_c00254{left:56.000000pt;}
.x2_c00254{left:62.133333pt;}
.xc_c00254{left:95.333333pt;}
.x9_c00254{left:99.600000pt;}
.x6_c00254{left:101.066667pt;}
.x3_c00254{left:160.000000pt;}
.x7_c00254{left:191.733333pt;}
.x4_c00254{left:234.000000pt;}
.x5_c00254{left:271.466667pt;}
.x10_c00254{left:347.401530pt;}
.x1_c00254{left:466.800000pt;}
.xf_c00254{left:509.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1e916d769542bf961b06f26.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_1afff72b26359042a39b2b18.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_ec02feb7322653123921165e.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00255{vertical-align:-408.000000px;}
.v0_c00255{vertical-align:0.000000px;}
.v2_c00255{vertical-align:297.600000px;}
.ls2_c00255{letter-spacing:-3.000000px;}
.ls1_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:7.800000px;}
.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;}
}
.ws3_c00255{word-spacing:-63.504000px;}
.ws0_c00255{word-spacing:-23.136000px;}
.ws2_c00255{word-spacing:-0.501000px;}
.ws4_c00255{word-spacing:0.000000px;}
.ws1_c00255{word-spacing:463.779000px;}
._30_c00255{margin-left:-72.639000px;}
._38_c00255{margin-left:-29.376000px;}
._2f_c00255{margin-left:-22.620000px;}
._3a_c00255{margin-left:-12.864000px;}
._24_c00255{margin-left:-11.520000px;}
._f_c00255{margin-left:-8.064000px;}
._1e_c00255{margin-left:-5.088000px;}
._3f_c00255{margin-left:-3.360000px;}
._1f_c00255{margin-left:-2.304000px;}
._2a_c00255{margin-left:-1.128000px;}
._0_c00255{width:1.632000px;}
._1_c00255{width:2.976000px;}
._2_c00255{width:4.800000px;}
._a_c00255{width:6.144000px;}
._c_c00255{width:7.392000px;}
._4_c00255{width:8.448000px;}
._b_c00255{width:9.792000px;}
._9_c00255{width:11.040000px;}
._2d_c00255{width:12.288000px;}
._12_c00255{width:13.344000px;}
._1d_c00255{width:15.072000px;}
._18_c00255{width:16.512000px;}
._29_c00255{width:18.624000px;}
._19_c00255{width:21.216000px;}
._28_c00255{width:25.728000px;}
._11_c00255{width:27.264000px;}
._5_c00255{width:28.320000px;}
._3d_c00255{width:29.352000px;}
._13_c00255{width:30.624000px;}
._e_c00255{width:32.064000px;}
._2b_c00255{width:34.272000px;}
._3_c00255{width:35.520000px;}
._2c_c00255{width:37.056000px;}
._7_c00255{width:38.376000px;}
._10_c00255{width:40.416000px;}
._33_c00255{width:41.568000px;}
._d_c00255{width:42.624000px;}
._17_c00255{width:44.928000px;}
._14_c00255{width:46.656000px;}
._1a_c00255{width:49.272000px;}
._6_c00255{width:53.856000px;}
._23_c00255{width:55.968000px;}
._34_c00255{width:58.368000px;}
._27_c00255{width:60.192000px;}
._26_c00255{width:62.784000px;}
._25_c00255{width:64.704000px;}
._32_c00255{width:65.952000px;}
._1b_c00255{width:67.200000px;}
._16_c00255{width:68.640000px;}
._8_c00255{width:70.944000px;}
._1c_c00255{width:72.576000px;}
._31_c00255{width:77.664000px;}
._15_c00255{width:84.312000px;}
._35_c00255{width:85.416000px;}
._22_c00255{width:88.296000px;}
._3b_c00255{width:101.088000px;}
._36_c00255{width:148.224000px;}
._3c_c00255{width:179.424000px;}
._21_c00255{width:229.536000px;}
._20_c00255{width:277.920000px;}
._3e_c00255{width:284.448000px;}
._2e_c00255{width:369.024000px;}
._39_c00255{width:435.840000px;}
._37_c00255{width:660.000000px;}
.fc2_c00255{color:transparent;}
.fc1_c00255{color:rgb(128,128,128);}
.fc0_c00255{color:rgb(0,0,0);}
.fs5_c00255{font-size:48.000000px;}
.fs4_c00255{font-size:84.000000px;}
.fs2_c00255{font-size:87.000000px;}
.fs0_c00255{font-size:96.000000px;}
.fs1_c00255{font-size:102.000000px;}
.fs3_c00255{font-size:501.000000px;}
.y0_c00255{bottom:0.000000px;}
.y1a_c00255{bottom:3.105000px;}
.y19_c00255{bottom:7.228371px;}
.y18_c00255{bottom:69.315000px;}
.y17_c00255{bottom:477.915000px;}
.y16_c00255{bottom:511.365000px;}
.y15_c00255{bottom:544.065000px;}
.y14_c00255{bottom:569.115000px;}
.y13_c00255{bottom:580.515000px;}
.y12_c00255{bottom:612.465000px;}
.y11_c00255{bottom:645.765000px;}
.y10_c00255{bottom:679.065000px;}
.yf_c00255{bottom:713.115000px;}
.ye_c00255{bottom:746.565000px;}
.yd_c00255{bottom:779.415000px;}
.yc_c00255{bottom:813.165000px;}
.yb_c00255{bottom:874.815000px;}
.ya_c00255{bottom:913.365000px;}
.y9_c00255{bottom:979.815000px;}
.y8_c00255{bottom:1013.565000px;}
.y7_c00255{bottom:1047.015000px;}
.y6_c00255{bottom:1080.315000px;}
.y5_c00255{bottom:1110.165000px;}
.y4_c00255{bottom:1146.165000px;}
.y3_c00255{bottom:1179.615000px;}
.y2_c00255{bottom:1212.315000px;}
.y1_c00255{bottom:1245.465000px;}
.h4_c00255{height:13.200074px;}
.h5_c00255{height:43.804688px;}
.h2_c00255{height:121.546875px;}
.h3_c00255{height:126.567000px;}
.h0_c00255{height:1354.875000px;}
.h1_c00255{height:1355.250000px;}
.w2_c00255{width:104.875500px;}
.w0_c00255{width:845.625000px;}
.w1_c00255{width:846.000000px;}
.x0_c00255{left:0.000000px;}
.x4_c00255{left:137.400000px;}
.xa_c00255{left:145.050000px;}
.x7_c00255{left:161.250000px;}
.x2_c00255{left:250.350000px;}
.x1_c00255{left:251.850000px;}
.x3_c00255{left:253.050000px;}
.x5_c00255{left:255.150000px;}
.x9_c00255{left:283.800000px;}
.x6_c00255{left:287.100000px;}
.xb_c00255{left:302.100000px;}
.xd_c00255{left:374.626740px;}
.x8_c00255{left:397.800000px;}
.xc_c00255{left:685.050000px;}
@media print{
.v1_c00255{vertical-align:-362.666667pt;}
.v0_c00255{vertical-align:0.000000pt;}
.v2_c00255{vertical-align:264.533333pt;}
.ls2_c00255{letter-spacing:-2.666667pt;}
.ls1_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:6.933333pt;}
.ws3_c00255{word-spacing:-56.448000pt;}
.ws0_c00255{word-spacing:-20.565333pt;}
.ws2_c00255{word-spacing:-0.445333pt;}
.ws4_c00255{word-spacing:0.000000pt;}
.ws1_c00255{word-spacing:412.248000pt;}
._30_c00255{margin-left:-64.568000pt;}
._38_c00255{margin-left:-26.112000pt;}
._2f_c00255{margin-left:-20.106667pt;}
._3a_c00255{margin-left:-11.434667pt;}
._24_c00255{margin-left:-10.240000pt;}
._f_c00255{margin-left:-7.168000pt;}
._1e_c00255{margin-left:-4.522667pt;}
._3f_c00255{margin-left:-2.986667pt;}
._1f_c00255{margin-left:-2.048000pt;}
._2a_c00255{margin-left:-1.002667pt;}
._0_c00255{width:1.450667pt;}
._1_c00255{width:2.645333pt;}
._2_c00255{width:4.266667pt;}
._a_c00255{width:5.461333pt;}
._c_c00255{width:6.570667pt;}
._4_c00255{width:7.509333pt;}
._b_c00255{width:8.704000pt;}
._9_c00255{width:9.813333pt;}
._2d_c00255{width:10.922667pt;}
._12_c00255{width:11.861333pt;}
._1d_c00255{width:13.397333pt;}
._18_c00255{width:14.677333pt;}
._29_c00255{width:16.554667pt;}
._19_c00255{width:18.858667pt;}
._28_c00255{width:22.869333pt;}
._11_c00255{width:24.234667pt;}
._5_c00255{width:25.173333pt;}
._3d_c00255{width:26.090667pt;}
._13_c00255{width:27.221333pt;}
._e_c00255{width:28.501333pt;}
._2b_c00255{width:30.464000pt;}
._3_c00255{width:31.573333pt;}
._2c_c00255{width:32.938667pt;}
._7_c00255{width:34.112000pt;}
._10_c00255{width:35.925333pt;}
._33_c00255{width:36.949333pt;}
._d_c00255{width:37.888000pt;}
._17_c00255{width:39.936000pt;}
._14_c00255{width:41.472000pt;}
._1a_c00255{width:43.797333pt;}
._6_c00255{width:47.872000pt;}
._23_c00255{width:49.749333pt;}
._34_c00255{width:51.882667pt;}
._27_c00255{width:53.504000pt;}
._26_c00255{width:55.808000pt;}
._25_c00255{width:57.514667pt;}
._32_c00255{width:58.624000pt;}
._1b_c00255{width:59.733333pt;}
._16_c00255{width:61.013333pt;}
._8_c00255{width:63.061333pt;}
._1c_c00255{width:64.512000pt;}
._31_c00255{width:69.034667pt;}
._15_c00255{width:74.944000pt;}
._35_c00255{width:75.925333pt;}
._22_c00255{width:78.485333pt;}
._3b_c00255{width:89.856000pt;}
._36_c00255{width:131.754667pt;}
._3c_c00255{width:159.488000pt;}
._21_c00255{width:204.032000pt;}
._20_c00255{width:247.040000pt;}
._3e_c00255{width:252.842667pt;}
._2e_c00255{width:328.021333pt;}
._39_c00255{width:387.413333pt;}
._37_c00255{width:586.666667pt;}
.fs5_c00255{font-size:42.666667pt;}
.fs4_c00255{font-size:74.666667pt;}
.fs2_c00255{font-size:77.333333pt;}
.fs0_c00255{font-size:85.333333pt;}
.fs1_c00255{font-size:90.666667pt;}
.fs3_c00255{font-size:445.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y1a_c00255{bottom:2.760000pt;}
.y19_c00255{bottom:6.425219pt;}
.y18_c00255{bottom:61.613333pt;}
.y17_c00255{bottom:424.813333pt;}
.y16_c00255{bottom:454.546667pt;}
.y15_c00255{bottom:483.613333pt;}
.y14_c00255{bottom:505.880000pt;}
.y13_c00255{bottom:516.013333pt;}
.y12_c00255{bottom:544.413333pt;}
.y11_c00255{bottom:574.013333pt;}
.y10_c00255{bottom:603.613333pt;}
.yf_c00255{bottom:633.880000pt;}
.ye_c00255{bottom:663.613333pt;}
.yd_c00255{bottom:692.813333pt;}
.yc_c00255{bottom:722.813333pt;}
.yb_c00255{bottom:777.613333pt;}
.ya_c00255{bottom:811.880000pt;}
.y9_c00255{bottom:870.946667pt;}
.y8_c00255{bottom:900.946667pt;}
.y7_c00255{bottom:930.680000pt;}
.y6_c00255{bottom:960.280000pt;}
.y5_c00255{bottom:986.813333pt;}
.y4_c00255{bottom:1018.813333pt;}
.y3_c00255{bottom:1048.546667pt;}
.y2_c00255{bottom:1077.613333pt;}
.y1_c00255{bottom:1107.080000pt;}
.h4_c00255{height:11.733399pt;}
.h5_c00255{height:38.937500pt;}
.h2_c00255{height:108.041667pt;}
.h3_c00255{height:112.504000pt;}
.h0_c00255{height:1204.333333pt;}
.h1_c00255{height:1204.666667pt;}
.w2_c00255{width:93.222667pt;}
.w0_c00255{width:751.666667pt;}
.w1_c00255{width:752.000000pt;}
.x0_c00255{left:0.000000pt;}
.x4_c00255{left:122.133333pt;}
.xa_c00255{left:128.933333pt;}
.x7_c00255{left:143.333333pt;}
.x2_c00255{left:222.533333pt;}
.x1_c00255{left:223.866667pt;}
.x3_c00255{left:224.933333pt;}
.x5_c00255{left:226.800000pt;}
.x9_c00255{left:252.266667pt;}
.x6_c00255{left:255.200000pt;}
.xb_c00255{left:268.533333pt;}
.xd_c00255{left:333.001546pt;}
.x8_c00255{left:353.600000pt;}
.xc_c00255{left:608.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d072d0ff2b0fe7e52873804.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-34.704000px;}
.ws1_c00256{word-spacing:0.000000px;}
._34_c00256{margin-left:-82.176000px;}
._3d_c00256{margin-left:-45.504000px;}
._3a_c00256{margin-left:-32.256000px;}
._45_c00256{margin-left:-30.528000px;}
._4c_c00256{margin-left:-28.032000px;}
._5_c00256{margin-left:-24.768000px;}
._49_c00256{margin-left:-23.712000px;}
._39_c00256{margin-left:-19.776000px;}
._38_c00256{margin-left:-18.432000px;}
._4a_c00256{margin-left:-15.360000px;}
._50_c00256{margin-left:-13.104000px;}
._30_c00256{margin-left:-12.048000px;}
._4f_c00256{margin-left:-10.800000px;}
._8_c00256{margin-left:-8.640000px;}
._7_c00256{margin-left:-6.912000px;}
._6_c00256{margin-left:-4.752000px;}
._1_c00256{margin-left:-3.312000px;}
._0_c00256{margin-left:-2.016000px;}
._b_c00256{width:1.056000px;}
._16_c00256{width:2.880000px;}
._15_c00256{width:4.704000px;}
._14_c00256{width:6.144000px;}
._d_c00256{width:7.488000px;}
._e_c00256{width:8.640000px;}
._27_c00256{width:9.888000px;}
._46_c00256{width:10.944000px;}
._4_c00256{width:11.952000px;}
._28_c00256{width:13.440000px;}
._10_c00256{width:15.168000px;}
._22_c00256{width:16.224000px;}
._41_c00256{width:17.280000px;}
._2c_c00256{width:18.528000px;}
._2b_c00256{width:19.680000px;}
._3_c00256{width:21.024000px;}
._48_c00256{width:22.080000px;}
._9_c00256{width:24.480000px;}
._24_c00256{width:26.976000px;}
._12_c00256{width:28.800000px;}
._3e_c00256{width:30.528000px;}
._44_c00256{width:31.824000px;}
._11_c00256{width:32.832000px;}
._2f_c00256{width:33.984000px;}
._25_c00256{width:35.136000px;}
._32_c00256{width:36.288000px;}
._2_c00256{width:37.728000px;}
._2d_c00256{width:38.880000px;}
._26_c00256{width:40.032000px;}
._29_c00256{width:42.816000px;}
._43_c00256{width:44.448000px;}
._a_c00256{width:45.792000px;}
._18_c00256{width:47.712000px;}
._37_c00256{width:49.920000px;}
._4e_c00256{width:51.648000px;}
._1b_c00256{width:52.704000px;}
._31_c00256{width:54.096000px;}
._2a_c00256{width:55.872000px;}
._53_c00256{width:59.424000px;}
._42_c00256{width:61.920000px;}
._1f_c00256{width:63.744000px;}
._1a_c00256{width:67.488000px;}
._19_c00256{width:70.464000px;}
._1d_c00256{width:72.672000px;}
._40_c00256{width:74.496000px;}
._2e_c00256{width:76.128000px;}
._4d_c00256{width:77.904000px;}
._4b_c00256{width:79.680000px;}
._20_c00256{width:80.928000px;}
._1e_c00256{width:85.344000px;}
._17_c00256{width:102.912000px;}
._13_c00256{width:105.216000px;}
._c_c00256{width:109.824000px;}
._36_c00256{width:117.264000px;}
._1c_c00256{width:118.464000px;}
._52_c00256{width:121.392000px;}
._54_c00256{width:127.680000px;}
._3c_c00256{width:133.440000px;}
._35_c00256{width:142.176000px;}
._33_c00256{width:153.312000px;}
._23_c00256{width:181.248000px;}
._f_c00256{width:191.712000px;}
._21_c00256{width:452.256000px;}
._3b_c00256{width:462.912000px;}
._3f_c00256{width:467.184000px;}
._51_c00256{width:774.384000px;}
._47_c00256{width:804.864000px;}
.fc2_c00256{color:transparent;}
.fc1_c00256{color:rgb(128,128,128);}
.fc0_c00256{color:rgb(0,0,0);}
.fs2_c00256{font-size:48.000000px;}
.fs1_c00256{font-size:96.000000px;}
.fs0_c00256{font-size:144.000000px;}
.y0_c00256{bottom:0.000000px;}
.y22_c00256{bottom:3.105000px;}
.y21_c00256{bottom:7.228369px;}
.y20_c00256{bottom:83.670000px;}
.y1f_c00256{bottom:118.170000px;}
.y1e_c00256{bottom:153.570000px;}
.y1d_c00256{bottom:188.670000px;}
.y1c_c00256{bottom:223.020000px;}
.y1b_c00256{bottom:257.070000px;}
.y1a_c00256{bottom:291.270000px;}
.y19_c00256{bottom:324.720000px;}
.y18_c00256{bottom:359.370000px;}
.y17_c00256{bottom:393.120000px;}
.y16_c00256{bottom:426.870000px;}
.y15_c00256{bottom:460.920000px;}
.y14_c00256{bottom:494.370000px;}
.y13_c00256{bottom:527.820000px;}
.y12_c00256{bottom:561.870000px;}
.y11_c00256{bottom:594.720000px;}
.y10_c00256{bottom:629.370000px;}
.yf_c00256{bottom:660.870000px;}
.ye_c00256{bottom:695.970000px;}
.yd_c00256{bottom:729.720000px;}
.yc_c00256{bottom:763.470000px;}
.yb_c00256{bottom:797.820000px;}
.ya_c00256{bottom:830.520000px;}
.y9_c00256{bottom:863.370000px;}
.y8_c00256{bottom:896.970000px;}
.y7_c00256{bottom:932.220000px;}
.y6_c00256{bottom:961.170000px;}
.y5_c00256{bottom:999.720000px;}
.y4_c00256{bottom:1033.020000px;}
.y3_c00256{bottom:1105.320000px;}
.y2_c00256{bottom:1156.170000px;}
.y1_c00256{bottom:1206.120000px;}
.h4_c00256{height:13.200073px;}
.h5_c00256{height:43.804688px;}
.h3_c00256{height:121.546875px;}
.h2_c00256{height:182.320312px;}
.h0_c00256{height:1383.450000px;}
.h1_c00256{height:1383.750000px;}
.w2_c00256{width:104.875500px;}
.w0_c00256{width:878.025000px;}
.w1_c00256{width:878.250000px;}
.x0_c00256{left:0.000000px;}
.x6_c00256{left:60.300000px;}
.x8_c00256{left:61.350000px;}
.x9_c00256{left:62.400000px;}
.xb_c00256{left:63.450000px;}
.xc_c00256{left:65.100000px;}
.xd_c00256{left:66.150000px;}
.xe_c00256{left:67.800000px;}
.x4_c00256{left:68.850000px;}
.xf_c00256{left:71.100000px;}
.xa_c00256{left:98.550000px;}
.x7_c00256{left:111.000000px;}
.x1_c00256{left:189.450000px;}
.x5_c00256{left:216.900000px;}
.x2_c00256{left:265.350000px;}
.x3_c00256{left:305.400000px;}
.x10_c00256{left:390.826721px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:-30.848000pt;}
.ws1_c00256{word-spacing:0.000000pt;}
._34_c00256{margin-left:-73.045333pt;}
._3d_c00256{margin-left:-40.448000pt;}
._3a_c00256{margin-left:-28.672000pt;}
._45_c00256{margin-left:-27.136000pt;}
._4c_c00256{margin-left:-24.917333pt;}
._5_c00256{margin-left:-22.016000pt;}
._49_c00256{margin-left:-21.077333pt;}
._39_c00256{margin-left:-17.578667pt;}
._38_c00256{margin-left:-16.384000pt;}
._4a_c00256{margin-left:-13.653333pt;}
._50_c00256{margin-left:-11.648000pt;}
._30_c00256{margin-left:-10.709333pt;}
._4f_c00256{margin-left:-9.600000pt;}
._8_c00256{margin-left:-7.680000pt;}
._7_c00256{margin-left:-6.144000pt;}
._6_c00256{margin-left:-4.224000pt;}
._1_c00256{margin-left:-2.944000pt;}
._0_c00256{margin-left:-1.792000pt;}
._b_c00256{width:0.938667pt;}
._16_c00256{width:2.560000pt;}
._15_c00256{width:4.181333pt;}
._14_c00256{width:5.461333pt;}
._d_c00256{width:6.656000pt;}
._e_c00256{width:7.680000pt;}
._27_c00256{width:8.789333pt;}
._46_c00256{width:9.728000pt;}
._4_c00256{width:10.624000pt;}
._28_c00256{width:11.946667pt;}
._10_c00256{width:13.482667pt;}
._22_c00256{width:14.421333pt;}
._41_c00256{width:15.360000pt;}
._2c_c00256{width:16.469333pt;}
._2b_c00256{width:17.493333pt;}
._3_c00256{width:18.688000pt;}
._48_c00256{width:19.626667pt;}
._9_c00256{width:21.760000pt;}
._24_c00256{width:23.978667pt;}
._12_c00256{width:25.600000pt;}
._3e_c00256{width:27.136000pt;}
._44_c00256{width:28.288000pt;}
._11_c00256{width:29.184000pt;}
._2f_c00256{width:30.208000pt;}
._25_c00256{width:31.232000pt;}
._32_c00256{width:32.256000pt;}
._2_c00256{width:33.536000pt;}
._2d_c00256{width:34.560000pt;}
._26_c00256{width:35.584000pt;}
._29_c00256{width:38.058667pt;}
._43_c00256{width:39.509333pt;}
._a_c00256{width:40.704000pt;}
._18_c00256{width:42.410667pt;}
._37_c00256{width:44.373333pt;}
._4e_c00256{width:45.909333pt;}
._1b_c00256{width:46.848000pt;}
._31_c00256{width:48.085333pt;}
._2a_c00256{width:49.664000pt;}
._53_c00256{width:52.821333pt;}
._42_c00256{width:55.040000pt;}
._1f_c00256{width:56.661333pt;}
._1a_c00256{width:59.989333pt;}
._19_c00256{width:62.634667pt;}
._1d_c00256{width:64.597333pt;}
._40_c00256{width:66.218667pt;}
._2e_c00256{width:67.669333pt;}
._4d_c00256{width:69.248000pt;}
._4b_c00256{width:70.826667pt;}
._20_c00256{width:71.936000pt;}
._1e_c00256{width:75.861333pt;}
._17_c00256{width:91.477333pt;}
._13_c00256{width:93.525333pt;}
._c_c00256{width:97.621333pt;}
._36_c00256{width:104.234667pt;}
._1c_c00256{width:105.301333pt;}
._52_c00256{width:107.904000pt;}
._54_c00256{width:113.493333pt;}
._3c_c00256{width:118.613333pt;}
._35_c00256{width:126.378667pt;}
._33_c00256{width:136.277333pt;}
._23_c00256{width:161.109333pt;}
._f_c00256{width:170.410667pt;}
._21_c00256{width:402.005333pt;}
._3b_c00256{width:411.477333pt;}
._3f_c00256{width:415.274667pt;}
._51_c00256{width:688.341333pt;}
._47_c00256{width:715.434667pt;}
.fs2_c00256{font-size:42.666667pt;}
.fs1_c00256{font-size:85.333333pt;}
.fs0_c00256{font-size:128.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y22_c00256{bottom:2.760000pt;}
.y21_c00256{bottom:6.425217pt;}
.y20_c00256{bottom:74.373333pt;}
.y1f_c00256{bottom:105.040000pt;}
.y1e_c00256{bottom:136.506667pt;}
.y1d_c00256{bottom:167.706667pt;}
.y1c_c00256{bottom:198.240000pt;}
.y1b_c00256{bottom:228.506667pt;}
.y1a_c00256{bottom:258.906667pt;}
.y19_c00256{bottom:288.640000pt;}
.y18_c00256{bottom:319.440000pt;}
.y17_c00256{bottom:349.440000pt;}
.y16_c00256{bottom:379.440000pt;}
.y15_c00256{bottom:409.706667pt;}
.y14_c00256{bottom:439.440000pt;}
.y13_c00256{bottom:469.173333pt;}
.y12_c00256{bottom:499.440000pt;}
.y11_c00256{bottom:528.640000pt;}
.y10_c00256{bottom:559.440000pt;}
.yf_c00256{bottom:587.440000pt;}
.ye_c00256{bottom:618.640000pt;}
.yd_c00256{bottom:648.640000pt;}
.yc_c00256{bottom:678.640000pt;}
.yb_c00256{bottom:709.173333pt;}
.ya_c00256{bottom:738.240000pt;}
.y9_c00256{bottom:767.440000pt;}
.y8_c00256{bottom:797.306667pt;}
.y7_c00256{bottom:828.640000pt;}
.y6_c00256{bottom:854.373333pt;}
.y5_c00256{bottom:888.640000pt;}
.y4_c00256{bottom:918.240000pt;}
.y3_c00256{bottom:982.506667pt;}
.y2_c00256{bottom:1027.706667pt;}
.y1_c00256{bottom:1072.106667pt;}
.h4_c00256{height:11.733399pt;}
.h5_c00256{height:38.937500pt;}
.h3_c00256{height:108.041667pt;}
.h2_c00256{height:162.062500pt;}
.h0_c00256{height:1229.733333pt;}
.h1_c00256{height:1230.000000pt;}
.w2_c00256{width:93.222667pt;}
.w0_c00256{width:780.466667pt;}
.w1_c00256{width:780.666667pt;}
.x0_c00256{left:0.000000pt;}
.x6_c00256{left:53.600000pt;}
.x8_c00256{left:54.533333pt;}
.x9_c00256{left:55.466667pt;}
.xb_c00256{left:56.400000pt;}
.xc_c00256{left:57.866667pt;}
.xd_c00256{left:58.800000pt;}
.xe_c00256{left:60.266667pt;}
.x4_c00256{left:61.200000pt;}
.xf_c00256{left:63.200000pt;}
.xa_c00256{left:87.600000pt;}
.x7_c00256{left:98.666667pt;}
.x1_c00256{left:168.400000pt;}
.x5_c00256{left:192.800000pt;}
.x2_c00256{left:235.866667pt;}
.x3_c00256{left:271.466667pt;}
.x10_c00256{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a88e5c6939f2e2c689242d6.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_0d9223c52f1012228e4b4602.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_ae8aa7ccb9b9b18a1da2e5bd.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_df3134810468d93ffc21f6eb.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;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_c00257;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v1_c00257{vertical-align:-70.200000px;}
.v0_c00257{vertical-align:0.000000px;}
.ls3_c00257{letter-spacing:0.000000px;}
.ls2_c00257{letter-spacing:20.400000px;}
.ls0_c00257{letter-spacing:22.800000px;}
.ls1_c00257{letter-spacing:24.600000px;}
.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:-51.000000px;}
.ws3_c00257{word-spacing:-23.136000px;}
.ws0_c00257{word-spacing:-20.967000px;}
.ws2_c00257{word-spacing:-20.244000px;}
.ws4_c00257{word-spacing:0.000000px;}
._49_c00257{margin-left:-81.033000px;}
._4c_c00257{margin-left:-78.873000px;}
._2c_c00257{margin-left:-66.642000px;}
._4b_c00257{margin-left:-45.519000px;}
._3f_c00257{margin-left:-39.132000px;}
._48_c00257{margin-left:-36.120000px;}
._2_c00257{margin-left:-34.974000px;}
._5_c00257{margin-left:-30.711000px;}
._44_c00257{margin-left:-27.357000px;}
._24_c00257{margin-left:-25.464000px;}
._3_c00257{margin-left:-22.272000px;}
._37_c00257{margin-left:-20.640000px;}
._3c_c00257{margin-left:-17.952000px;}
._3d_c00257{margin-left:-16.644000px;}
._0_c00257{margin-left:-14.181000px;}
._4e_c00257{margin-left:-13.128000px;}
._4f_c00257{margin-left:-12.120000px;}
._12_c00257{margin-left:-10.752000px;}
._1_c00257{margin-left:-9.135000px;}
._14_c00257{margin-left:-7.872000px;}
._20_c00257{margin-left:-6.531000px;}
._13_c00257{margin-left:-4.896000px;}
._4_c00257{margin-left:-2.958000px;}
._1a_c00257{margin-left:-1.788000px;}
._b_c00257{width:1.632000px;}
._10_c00257{width:2.976000px;}
._6_c00257{width:4.320000px;}
._f_c00257{width:5.760000px;}
._9_c00257{width:6.816000px;}
._d_c00257{width:8.466000px;}
._1b_c00257{width:10.254000px;}
._c_c00257{width:11.406000px;}
._8_c00257{width:12.672000px;}
._18_c00257{width:14.016000px;}
._27_c00257{width:15.840000px;}
._17_c00257{width:17.472000px;}
._16_c00257{width:18.720000px;}
._15_c00257{width:20.352000px;}
._47_c00257{width:21.795000px;}
._1c_c00257{width:24.270000px;}
._3a_c00257{width:25.476000px;}
._22_c00257{width:26.616000px;}
._a_c00257{width:27.840000px;}
._7_c00257{width:29.376000px;}
._4d_c00257{width:30.642000px;}
._29_c00257{width:32.316000px;}
._e_c00257{width:34.176000px;}
._38_c00257{width:35.400000px;}
._26_c00257{width:36.828000px;}
._1e_c00257{width:38.496000px;}
._11_c00257{width:40.896000px;}
._21_c00257{width:43.068000px;}
._39_c00257{width:45.330000px;}
._25_c00257{width:47.262000px;}
._19_c00257{width:50.112000px;}
._23_c00257{width:52.032000px;}
._35_c00257{width:54.024000px;}
._1d_c00257{width:55.488000px;}
._3e_c00257{width:57.882000px;}
._1f_c00257{width:59.904000px;}
._42_c00257{width:61.920000px;}
._40_c00257{width:64.512000px;}
._28_c00257{width:66.510000px;}
._2f_c00257{width:68.247000px;}
._33_c00257{width:69.492000px;}
._31_c00257{width:71.430000px;}
._45_c00257{width:73.935000px;}
._32_c00257{width:75.864000px;}
._2a_c00257{width:78.060000px;}
._41_c00257{width:82.278000px;}
._36_c00257{width:83.676000px;}
._43_c00257{width:85.944000px;}
._34_c00257{width:95.760000px;}
._3b_c00257{width:97.248000px;}
._46_c00257{width:101.358000px;}
._30_c00257{width:122.016000px;}
._2d_c00257{width:126.063000px;}
._4a_c00257{width:166.716000px;}
._2e_c00257{width:187.479000px;}
._50_c00257{width:797.277000px;}
._2b_c00257{width:1027.494000px;}
.fc2_c00257{color:transparent;}
.fc1_c00257{color:rgb(128,128,128);}
.fc0_c00257{color:rgb(0,0,0);}
.fs1_c00257{font-size:36.000000px;}
.fs6_c00257{font-size:48.000000px;}
.fs3_c00257{font-size:84.000000px;}
.fs0_c00257{font-size:87.000000px;}
.fs5_c00257{font-size:93.000000px;}
.fs2_c00257{font-size:96.000000px;}
.fs4_c00257{font-size:102.000000px;}
.y0_c00257{bottom:0.000000px;}
.y2a_c00257{bottom:3.105000px;}
.y29_c00257{bottom:7.228357px;}
.y27_c00257{bottom:82.080000px;}
.y26_c00257{bottom:116.430000px;}
.y25_c00257{bottom:149.580000px;}
.y24_c00257{bottom:185.280000px;}
.y23_c00257{bottom:219.030000px;}
.y22_c00257{bottom:254.580000px;}
.y21_c00257{bottom:287.880000px;}
.y20_c00257{bottom:322.680000px;}
.y1f_c00257{bottom:355.830000px;}
.y1e_c00257{bottom:392.280000px;}
.y1d_c00257{bottom:425.280000px;}
.y1c_c00257{bottom:460.080000px;}
.y1b_c00257{bottom:494.130000px;}
.y1a_c00257{bottom:528.480000px;}
.y19_c00257{bottom:561.630000px;}
.y18_c00257{bottom:596.130000px;}
.y17_c00257{bottom:630.180000px;}
.y28_c00257{bottom:631.830000px;}
.y16_c00257{bottom:663.630000px;}
.y15_c00257{bottom:697.680000px;}
.y14_c00257{bottom:732.030000px;}
.y4_c00257{bottom:737.730000px;}
.y13_c00257{bottom:765.180000px;}
.y12_c00257{bottom:799.530000px;}
.y11_c00257{bottom:834.030000px;}
.y10_c00257{bottom:868.080000px;}
.yf_c00257{bottom:924.780000px;}
.ye_c00257{bottom:937.230000px;}
.yd_c00257{bottom:1003.680000px;}
.yc_c00257{bottom:1036.830000px;}
.y3_c00257{bottom:1047.930000px;}
.y2_c00257{bottom:1054.980000px;}
.y1_c00257{bottom:1061.880000px;}
.yb_c00257{bottom:1071.180000px;}
.ya_c00257{bottom:1104.630000px;}
.y9_c00257{bottom:1137.480000px;}
.y8_c00257{bottom:1171.230000px;}
.y7_c00257{bottom:1204.830000px;}
.y6_c00257{bottom:1238.730000px;}
.y5_c00257{bottom:1272.030000px;}
.h6_c00257{height:13.200074px;}
.h3_c00257{height:37.728000px;}
.h7_c00257{height:43.804688px;}
.h2_c00257{height:110.151855px;}
.h5_c00257{height:117.748535px;}
.h4_c00257{height:121.546875px;}
.h0_c00257{height:1382.700000px;}
.h1_c00257{height:1383.000000px;}
.w2_c00257{width:104.875500px;}
.w0_c00257{width:863.175000px;}
.w1_c00257{width:863.250000px;}
.x0_c00257{left:0.000000px;}
.x17_c00257{left:42.900000px;}
.x15_c00257{left:117.000000px;}
.x3_c00257{left:161.250000px;}
.x2_c00257{left:170.700000px;}
.x1_c00257{left:183.150000px;}
.x7_c00257{left:196.350000px;}
.x4_c00257{left:222.750000px;}
.x16_c00257{left:244.950000px;}
.x6_c00257{left:247.500000px;}
.x5_c00257{left:248.700000px;}
.x11_c00257{left:250.800000px;}
.x10_c00257{left:252.450000px;}
.xb_c00257{left:253.500000px;}
.xf_c00257{left:254.550000px;}
.x13_c00257{left:268.650000px;}
.x12_c00257{left:276.150000px;}
.xc_c00257{left:278.400000px;}
.xe_c00257{left:279.900000px;}
.x8_c00257{left:309.900000px;}
.x14_c00257{left:314.100000px;}
.x9_c00257{left:354.600000px;}
.x18_c00257{left:383.401749px;}
.xd_c00257{left:386.400000px;}
.xa_c00257{left:392.850000px;}
@media print{
.v1_c00257{vertical-align:-62.400000pt;}
.v0_c00257{vertical-align:0.000000pt;}
.ls3_c00257{letter-spacing:0.000000pt;}
.ls2_c00257{letter-spacing:18.133333pt;}
.ls0_c00257{letter-spacing:20.266667pt;}
.ls1_c00257{letter-spacing:21.866667pt;}
.ws1_c00257{word-spacing:-45.333333pt;}
.ws3_c00257{word-spacing:-20.565333pt;}
.ws0_c00257{word-spacing:-18.637333pt;}
.ws2_c00257{word-spacing:-17.994667pt;}
.ws4_c00257{word-spacing:0.000000pt;}
._49_c00257{margin-left:-72.029333pt;}
._4c_c00257{margin-left:-70.109333pt;}
._2c_c00257{margin-left:-59.237333pt;}
._4b_c00257{margin-left:-40.461333pt;}
._3f_c00257{margin-left:-34.784000pt;}
._48_c00257{margin-left:-32.106667pt;}
._2_c00257{margin-left:-31.088000pt;}
._5_c00257{margin-left:-27.298667pt;}
._44_c00257{margin-left:-24.317333pt;}
._24_c00257{margin-left:-22.634667pt;}
._3_c00257{margin-left:-19.797333pt;}
._37_c00257{margin-left:-18.346667pt;}
._3c_c00257{margin-left:-15.957333pt;}
._3d_c00257{margin-left:-14.794667pt;}
._0_c00257{margin-left:-12.605333pt;}
._4e_c00257{margin-left:-11.669333pt;}
._4f_c00257{margin-left:-10.773333pt;}
._12_c00257{margin-left:-9.557333pt;}
._1_c00257{margin-left:-8.120000pt;}
._14_c00257{margin-left:-6.997333pt;}
._20_c00257{margin-left:-5.805333pt;}
._13_c00257{margin-left:-4.352000pt;}
._4_c00257{margin-left:-2.629333pt;}
._1a_c00257{margin-left:-1.589333pt;}
._b_c00257{width:1.450667pt;}
._10_c00257{width:2.645333pt;}
._6_c00257{width:3.840000pt;}
._f_c00257{width:5.120000pt;}
._9_c00257{width:6.058667pt;}
._d_c00257{width:7.525333pt;}
._1b_c00257{width:9.114667pt;}
._c_c00257{width:10.138667pt;}
._8_c00257{width:11.264000pt;}
._18_c00257{width:12.458667pt;}
._27_c00257{width:14.080000pt;}
._17_c00257{width:15.530667pt;}
._16_c00257{width:16.640000pt;}
._15_c00257{width:18.090667pt;}
._47_c00257{width:19.373333pt;}
._1c_c00257{width:21.573333pt;}
._3a_c00257{width:22.645333pt;}
._22_c00257{width:23.658667pt;}
._a_c00257{width:24.746667pt;}
._7_c00257{width:26.112000pt;}
._4d_c00257{width:27.237333pt;}
._29_c00257{width:28.725333pt;}
._e_c00257{width:30.378667pt;}
._38_c00257{width:31.466667pt;}
._26_c00257{width:32.736000pt;}
._1e_c00257{width:34.218667pt;}
._11_c00257{width:36.352000pt;}
._21_c00257{width:38.282667pt;}
._39_c00257{width:40.293333pt;}
._25_c00257{width:42.010667pt;}
._19_c00257{width:44.544000pt;}
._23_c00257{width:46.250667pt;}
._35_c00257{width:48.021333pt;}
._1d_c00257{width:49.322667pt;}
._3e_c00257{width:51.450667pt;}
._1f_c00257{width:53.248000pt;}
._42_c00257{width:55.040000pt;}
._40_c00257{width:57.344000pt;}
._28_c00257{width:59.120000pt;}
._2f_c00257{width:60.664000pt;}
._33_c00257{width:61.770667pt;}
._31_c00257{width:63.493333pt;}
._45_c00257{width:65.720000pt;}
._32_c00257{width:67.434667pt;}
._2a_c00257{width:69.386667pt;}
._41_c00257{width:73.136000pt;}
._36_c00257{width:74.378667pt;}
._43_c00257{width:76.394667pt;}
._34_c00257{width:85.120000pt;}
._3b_c00257{width:86.442667pt;}
._46_c00257{width:90.096000pt;}
._30_c00257{width:108.458667pt;}
._2d_c00257{width:112.056000pt;}
._4a_c00257{width:148.192000pt;}
._2e_c00257{width:166.648000pt;}
._50_c00257{width:708.690667pt;}
._2b_c00257{width:913.328000pt;}
.fs1_c00257{font-size:32.000000pt;}
.fs6_c00257{font-size:42.666667pt;}
.fs3_c00257{font-size:74.666667pt;}
.fs0_c00257{font-size:77.333333pt;}
.fs5_c00257{font-size:82.666667pt;}
.fs2_c00257{font-size:85.333333pt;}
.fs4_c00257{font-size:90.666667pt;}
.y0_c00257{bottom:0.000000pt;}
.y2a_c00257{bottom:2.760000pt;}
.y29_c00257{bottom:6.425206pt;}
.y27_c00257{bottom:72.960000pt;}
.y26_c00257{bottom:103.493333pt;}
.y25_c00257{bottom:132.960000pt;}
.y24_c00257{bottom:164.693333pt;}
.y23_c00257{bottom:194.693333pt;}
.y22_c00257{bottom:226.293333pt;}
.y21_c00257{bottom:255.893333pt;}
.y20_c00257{bottom:286.826667pt;}
.y1f_c00257{bottom:316.293333pt;}
.y1e_c00257{bottom:348.693333pt;}
.y1d_c00257{bottom:378.026667pt;}
.y1c_c00257{bottom:408.960000pt;}
.y1b_c00257{bottom:439.226667pt;}
.y1a_c00257{bottom:469.760000pt;}
.y19_c00257{bottom:499.226667pt;}
.y18_c00257{bottom:529.893333pt;}
.y17_c00257{bottom:560.160000pt;}
.y28_c00257{bottom:561.626667pt;}
.y16_c00257{bottom:589.893333pt;}
.y15_c00257{bottom:620.160000pt;}
.y14_c00257{bottom:650.693333pt;}
.y4_c00257{bottom:655.760000pt;}
.y13_c00257{bottom:680.160000pt;}
.y12_c00257{bottom:710.693333pt;}
.y11_c00257{bottom:741.360000pt;}
.y10_c00257{bottom:771.626667pt;}
.yf_c00257{bottom:822.026667pt;}
.ye_c00257{bottom:833.093333pt;}
.yd_c00257{bottom:892.160000pt;}
.yc_c00257{bottom:921.626667pt;}
.y3_c00257{bottom:931.493333pt;}
.y2_c00257{bottom:937.760000pt;}
.y1_c00257{bottom:943.893333pt;}
.yb_c00257{bottom:952.160000pt;}
.ya_c00257{bottom:981.893333pt;}
.y9_c00257{bottom:1011.093333pt;}
.y8_c00257{bottom:1041.093333pt;}
.y7_c00257{bottom:1070.960000pt;}
.y6_c00257{bottom:1101.093333pt;}
.y5_c00257{bottom:1130.693333pt;}
.h6_c00257{height:11.733399pt;}
.h3_c00257{height:33.536000pt;}
.h7_c00257{height:38.937500pt;}
.h2_c00257{height:97.912760pt;}
.h5_c00257{height:104.665365pt;}
.h4_c00257{height:108.041667pt;}
.h0_c00257{height:1229.066667pt;}
.h1_c00257{height:1229.333333pt;}
.w2_c00257{width:93.222667pt;}
.w0_c00257{width:767.266667pt;}
.w1_c00257{width:767.333333pt;}
.x0_c00257{left:0.000000pt;}
.x17_c00257{left:38.133333pt;}
.x15_c00257{left:104.000000pt;}
.x3_c00257{left:143.333333pt;}
.x2_c00257{left:151.733333pt;}
.x1_c00257{left:162.800000pt;}
.x7_c00257{left:174.533333pt;}
.x4_c00257{left:198.000000pt;}
.x16_c00257{left:217.733333pt;}
.x6_c00257{left:220.000000pt;}
.x5_c00257{left:221.066667pt;}
.x11_c00257{left:222.933333pt;}
.x10_c00257{left:224.400000pt;}
.xb_c00257{left:225.333333pt;}
.xf_c00257{left:226.266667pt;}
.x13_c00257{left:238.800000pt;}
.x12_c00257{left:245.466667pt;}
.xc_c00257{left:247.466667pt;}
.xe_c00257{left:248.800000pt;}
.x8_c00257{left:275.466667pt;}
.x14_c00257{left:279.200000pt;}
.x9_c00257{left:315.200000pt;}
.x18_c00257{left:340.801554pt;}
.xd_c00257{left:343.466667pt;}
.xa_c00257{left:349.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_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_40e8acf316e626cd26143eb5.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_7bddf2edf2dd8c7633a71a8c.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_d1b08d14261da4a3a6b368db.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_c81d9e92407ff606d47c6108.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_2dd951a4ab9754615974d35c.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00258;src:url('chunks/assets/font_4beca4e0bf509b26274eae8c.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00258;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00258{font-family:ff7_c00258;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00258{vertical-align:-31.200000px;}
.v0_c00258{vertical-align:0.000000px;}
.ls2_c00258{letter-spacing:-9.000000px;}
.ls1_c00258{letter-spacing:0.000000px;}
.ls3_c00258{letter-spacing:12.000000px;}
.ls0_c00258{letter-spacing:37.800000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00258{word-spacing:-51.000000px;}
.ws0_c00258{word-spacing:-46.944000px;}
.ws1_c00258{word-spacing:-23.136000px;}
.ws4_c00258{word-spacing:0.000000px;}
.ws3_c00258{word-spacing:7.980000px;}
._15_c00258{margin-left:-43.200000px;}
._d_c00258{margin-left:-42.192000px;}
._12_c00258{margin-left:-39.744000px;}
._4e_c00258{margin-left:-36.768000px;}
._4f_c00258{margin-left:-34.656000px;}
._49_c00258{margin-left:-28.686000px;}
._0_c00258{margin-left:-26.640000px;}
._17_c00258{margin-left:-22.752000px;}
._51_c00258{margin-left:-21.216000px;}
._1f_c00258{margin-left:-19.266000px;}
._1b_c00258{margin-left:-17.892000px;}
._f_c00258{margin-left:-16.848000px;}
._55_c00258{margin-left:-15.000000px;}
._58_c00258{margin-left:-13.746000px;}
._3a_c00258{margin-left:-11.616000px;}
._13_c00258{margin-left:-10.368000px;}
._6_c00258{margin-left:-8.496000px;}
._21_c00258{margin-left:-6.810000px;}
._47_c00258{margin-left:-5.760000px;}
._7_c00258{margin-left:-4.752000px;}
._11_c00258{margin-left:-3.600000px;}
._9_c00258{margin-left:-2.304000px;}
._4_c00258{margin-left:-1.152000px;}
._1d_c00258{width:1.260000px;}
._b_c00258{width:2.304000px;}
._2_c00258{width:3.456000px;}
._27_c00258{width:5.280000px;}
._8_c00258{width:7.200000px;}
._32_c00258{width:8.346000px;}
._1c_c00258{width:10.200000px;}
._57_c00258{width:11.208000px;}
._29_c00258{width:12.210000px;}
._42_c00258{width:13.326000px;}
._2f_c00258{width:15.054000px;}
._22_c00258{width:16.080000px;}
._35_c00258{width:17.610000px;}
._26_c00258{width:19.110000px;}
._a_c00258{width:20.592000px;}
._37_c00258{width:22.416000px;}
._5_c00258{width:23.904000px;}
._2b_c00258{width:25.410000px;}
._e_c00258{width:26.784000px;}
._3c_c00258{width:28.146000px;}
._3f_c00258{width:30.240000px;}
._3b_c00258{width:31.362000px;}
._45_c00258{width:32.736000px;}
._23_c00258{width:34.314000px;}
._3e_c00258{width:35.376000px;}
._20_c00258{width:37.260000px;}
._c_c00258{width:38.304000px;}
._28_c00258{width:39.606000px;}
._40_c00258{width:42.912000px;}
._14_c00258{width:44.640000px;}
._46_c00258{width:46.494000px;}
._44_c00258{width:47.610000px;}
._41_c00258{width:49.626000px;}
._3_c00258{width:50.832000px;}
._56_c00258{width:55.566000px;}
._34_c00258{width:58.284000px;}
._25_c00258{width:59.910000px;}
._18_c00258{width:72.636000px;}
._2a_c00258{width:76.680000px;}
._48_c00258{width:84.438000px;}
._3d_c00258{width:85.878000px;}
._2e_c00258{width:98.610000px;}
._2d_c00258{width:114.072000px;}
._24_c00258{width:119.880000px;}
._19_c00258{width:127.692000px;}
._52_c00258{width:142.176000px;}
._16_c00258{width:148.032000px;}
._38_c00258{width:149.394000px;}
._39_c00258{width:158.814000px;}
._4c_c00258{width:162.000000px;}
._10_c00258{width:167.184000px;}
._30_c00258{width:174.210000px;}
._53_c00258{width:177.174000px;}
._1_c00258{width:188.784000px;}
._4d_c00258{width:194.112000px;}
._54_c00258{width:196.764000px;}
._4b_c00258{width:211.566000px;}
._33_c00258{width:231.120000px;}
._1e_c00258{width:236.490000px;}
._31_c00258{width:246.510000px;}
._36_c00258{width:248.010000px;}
._2c_c00258{width:316.188000px;}
._43_c00258{width:337.644000px;}
._1a_c00258{width:353.340000px;}
._4a_c00258{width:357.984000px;}
._50_c00258{width:464.928000px;}
._59_c00258{width:688.320000px;}
.fc2_c00258{color:transparent;}
.fc1_c00258{color:rgb(128,128,128);}
.fc0_c00258{color:rgb(0,0,0);}
.fs2_c00258{font-size:30.000000px;}
.fs6_c00258{font-size:48.000000px;}
.fs5_c00258{font-size:84.000000px;}
.fs3_c00258{font-size:96.000000px;}
.fs4_c00258{font-size:102.000000px;}
.fs0_c00258{font-size:144.000000px;}
.fs1_c00258{font-size:168.000000px;}
.y0_c00258{bottom:0.000000px;}
.y26_c00258{bottom:3.105000px;}
.y25_c00258{bottom:7.228369px;}
.y24_c00258{bottom:76.320000px;}
.y23_c00258{bottom:111.720000px;}
.y22_c00258{bottom:146.070000px;}
.y21_c00258{bottom:180.570000px;}
.y20_c00258{bottom:212.670000px;}
.y1f_c00258{bottom:248.970000px;}
.y1e_c00258{bottom:282.870000px;}
.y1d_c00258{bottom:316.920000px;}
.y1c_c00258{bottom:351.270000px;}
.y1b_c00258{bottom:384.420000px;}
.y1a_c00258{bottom:418.770000px;}
.y19_c00258{bottom:451.920000px;}
.y18_c00258{bottom:486.270000px;}
.y17_c00258{bottom:519.720000px;}
.y16_c00258{bottom:552.420000px;}
.y15_c00258{bottom:586.920000px;}
.y14_c00258{bottom:620.670000px;}
.y13_c00258{bottom:653.970000px;}
.y12_c00258{bottom:688.770000px;}
.y11_c00258{bottom:721.620000px;}
.y10_c00258{bottom:754.620000px;}
.yf_c00258{bottom:788.670000px;}
.ye_c00258{bottom:821.370000px;}
.yd_c00258{bottom:856.920000px;}
.y6_c00258{bottom:863.370000px;}
.yc_c00258{bottom:889.620000px;}
.yb_c00258{bottom:922.620000px;}
.ya_c00258{bottom:955.470000px;}
.y9_c00258{bottom:990.270000px;}
.y8_c00258{bottom:1023.870000px;}
.y7_c00258{bottom:1057.320000px;}
.y5_c00258{bottom:1094.070000px;}
.y4_c00258{bottom:1126.170000px;}
.y3_c00258{bottom:1131.270000px;}
.y2_c00258{bottom:1144.770000px;}
.y1_c00258{bottom:1198.170000px;}
.h7_c00258{height:13.200073px;}
.h3_c00258{height:37.983398px;}
.h8_c00258{height:43.804688px;}
.h4_c00258{height:90.346875px;}
.h5_c00258{height:121.546875px;}
.h6_c00258{height:129.143555px;}
.h2_c00258{height:182.320312px;}
.h0_c00258{height:1383.450000px;}
.h1_c00258{height:1383.750000px;}
.w2_c00258{width:104.875500px;}
.w0_c00258{width:878.025000px;}
.w1_c00258{width:878.250000px;}
.x0_c00258{left:0.000000px;}
.xb_c00258{left:64.500000px;}
.xa_c00258{left:66.150000px;}
.x9_c00258{left:67.200000px;}
.xc_c00258{left:68.400000px;}
.x8_c00258{left:69.450000px;}
.x1_c00258{left:78.300000px;}
.x5_c00258{left:116.850000px;}
.x2_c00258{left:167.700000px;}
.x6_c00258{left:277.350000px;}
.x7_c00258{left:284.400000px;}
.xe_c00258{left:390.826721px;}
.xd_c00258{left:426.900000px;}
.x3_c00258{left:617.850000px;}
.x4_c00258{left:693.600000px;}
@media print{
.v1_c00258{vertical-align:-27.733333pt;}
.v0_c00258{vertical-align:0.000000pt;}
.ls2_c00258{letter-spacing:-8.000000pt;}
.ls1_c00258{letter-spacing:0.000000pt;}
.ls3_c00258{letter-spacing:10.666667pt;}
.ls0_c00258{letter-spacing:33.600000pt;}
.ws2_c00258{word-spacing:-45.333333pt;}
.ws0_c00258{word-spacing:-41.728000pt;}
.ws1_c00258{word-spacing:-20.565333pt;}
.ws4_c00258{word-spacing:0.000000pt;}
.ws3_c00258{word-spacing:7.093333pt;}
._15_c00258{margin-left:-38.400000pt;}
._d_c00258{margin-left:-37.504000pt;}
._12_c00258{margin-left:-35.328000pt;}
._4e_c00258{margin-left:-32.682667pt;}
._4f_c00258{margin-left:-30.805333pt;}
._49_c00258{margin-left:-25.498667pt;}
._0_c00258{margin-left:-23.680000pt;}
._17_c00258{margin-left:-20.224000pt;}
._51_c00258{margin-left:-18.858667pt;}
._1f_c00258{margin-left:-17.125333pt;}
._1b_c00258{margin-left:-15.904000pt;}
._f_c00258{margin-left:-14.976000pt;}
._55_c00258{margin-left:-13.333333pt;}
._58_c00258{margin-left:-12.218667pt;}
._3a_c00258{margin-left:-10.325333pt;}
._13_c00258{margin-left:-9.216000pt;}
._6_c00258{margin-left:-7.552000pt;}
._21_c00258{margin-left:-6.053333pt;}
._47_c00258{margin-left:-5.120000pt;}
._7_c00258{margin-left:-4.224000pt;}
._11_c00258{margin-left:-3.200000pt;}
._9_c00258{margin-left:-2.048000pt;}
._4_c00258{margin-left:-1.024000pt;}
._1d_c00258{width:1.120000pt;}
._b_c00258{width:2.048000pt;}
._2_c00258{width:3.072000pt;}
._27_c00258{width:4.693333pt;}
._8_c00258{width:6.400000pt;}
._32_c00258{width:7.418667pt;}
._1c_c00258{width:9.066667pt;}
._57_c00258{width:9.962667pt;}
._29_c00258{width:10.853333pt;}
._42_c00258{width:11.845333pt;}
._2f_c00258{width:13.381333pt;}
._22_c00258{width:14.293333pt;}
._35_c00258{width:15.653333pt;}
._26_c00258{width:16.986667pt;}
._a_c00258{width:18.304000pt;}
._37_c00258{width:19.925333pt;}
._5_c00258{width:21.248000pt;}
._2b_c00258{width:22.586667pt;}
._e_c00258{width:23.808000pt;}
._3c_c00258{width:25.018667pt;}
._3f_c00258{width:26.880000pt;}
._3b_c00258{width:27.877333pt;}
._45_c00258{width:29.098667pt;}
._23_c00258{width:30.501333pt;}
._3e_c00258{width:31.445333pt;}
._20_c00258{width:33.120000pt;}
._c_c00258{width:34.048000pt;}
._28_c00258{width:35.205333pt;}
._40_c00258{width:38.144000pt;}
._14_c00258{width:39.680000pt;}
._46_c00258{width:41.328000pt;}
._44_c00258{width:42.320000pt;}
._41_c00258{width:44.112000pt;}
._3_c00258{width:45.184000pt;}
._56_c00258{width:49.392000pt;}
._34_c00258{width:51.808000pt;}
._25_c00258{width:53.253333pt;}
._18_c00258{width:64.565333pt;}
._2a_c00258{width:68.160000pt;}
._48_c00258{width:75.056000pt;}
._3d_c00258{width:76.336000pt;}
._2e_c00258{width:87.653333pt;}
._2d_c00258{width:101.397333pt;}
._24_c00258{width:106.560000pt;}
._19_c00258{width:113.504000pt;}
._52_c00258{width:126.378667pt;}
._16_c00258{width:131.584000pt;}
._38_c00258{width:132.794667pt;}
._39_c00258{width:141.168000pt;}
._4c_c00258{width:144.000000pt;}
._10_c00258{width:148.608000pt;}
._30_c00258{width:154.853333pt;}
._53_c00258{width:157.488000pt;}
._1_c00258{width:167.808000pt;}
._4d_c00258{width:172.544000pt;}
._54_c00258{width:174.901333pt;}
._4b_c00258{width:188.058667pt;}
._33_c00258{width:205.440000pt;}
._1e_c00258{width:210.213333pt;}
._31_c00258{width:219.120000pt;}
._36_c00258{width:220.453333pt;}
._2c_c00258{width:281.056000pt;}
._43_c00258{width:300.128000pt;}
._1a_c00258{width:314.080000pt;}
._4a_c00258{width:318.208000pt;}
._50_c00258{width:413.269333pt;}
._59_c00258{width:611.840000pt;}
.fs2_c00258{font-size:26.666667pt;}
.fs6_c00258{font-size:42.666667pt;}
.fs5_c00258{font-size:74.666667pt;}
.fs3_c00258{font-size:85.333333pt;}
.fs4_c00258{font-size:90.666667pt;}
.fs0_c00258{font-size:128.000000pt;}
.fs1_c00258{font-size:149.333333pt;}
.y0_c00258{bottom:0.000000pt;}
.y26_c00258{bottom:2.760000pt;}
.y25_c00258{bottom:6.425217pt;}
.y24_c00258{bottom:67.840000pt;}
.y23_c00258{bottom:99.306667pt;}
.y22_c00258{bottom:129.840000pt;}
.y21_c00258{bottom:160.506667pt;}
.y20_c00258{bottom:189.040000pt;}
.y1f_c00258{bottom:221.306667pt;}
.y1e_c00258{bottom:251.440000pt;}
.y1d_c00258{bottom:281.706667pt;}
.y1c_c00258{bottom:312.240000pt;}
.y1b_c00258{bottom:341.706667pt;}
.y1a_c00258{bottom:372.240000pt;}
.y19_c00258{bottom:401.706667pt;}
.y18_c00258{bottom:432.240000pt;}
.y17_c00258{bottom:461.973333pt;}
.y16_c00258{bottom:491.040000pt;}
.y15_c00258{bottom:521.706667pt;}
.y14_c00258{bottom:551.706667pt;}
.y13_c00258{bottom:581.306667pt;}
.y12_c00258{bottom:612.240000pt;}
.y11_c00258{bottom:641.440000pt;}
.y10_c00258{bottom:670.773333pt;}
.yf_c00258{bottom:701.040000pt;}
.ye_c00258{bottom:730.106667pt;}
.yd_c00258{bottom:761.706667pt;}
.y6_c00258{bottom:767.440000pt;}
.yc_c00258{bottom:790.773333pt;}
.yb_c00258{bottom:820.106667pt;}
.ya_c00258{bottom:849.306667pt;}
.y9_c00258{bottom:880.240000pt;}
.y8_c00258{bottom:910.106667pt;}
.y7_c00258{bottom:939.840000pt;}
.y5_c00258{bottom:972.506667pt;}
.y4_c00258{bottom:1001.040000pt;}
.y3_c00258{bottom:1005.573333pt;}
.y2_c00258{bottom:1017.573333pt;}
.y1_c00258{bottom:1065.040000pt;}
.h7_c00258{height:11.733399pt;}
.h3_c00258{height:33.763021pt;}
.h8_c00258{height:38.937500pt;}
.h4_c00258{height:80.308333pt;}
.h5_c00258{height:108.041667pt;}
.h6_c00258{height:114.794271pt;}
.h2_c00258{height:162.062500pt;}
.h0_c00258{height:1229.733333pt;}
.h1_c00258{height:1230.000000pt;}
.w2_c00258{width:93.222667pt;}
.w0_c00258{width:780.466667pt;}
.w1_c00258{width:780.666667pt;}
.x0_c00258{left:0.000000pt;}
.xb_c00258{left:57.333333pt;}
.xa_c00258{left:58.800000pt;}
.x9_c00258{left:59.733333pt;}
.xc_c00258{left:60.800000pt;}
.x8_c00258{left:61.733333pt;}
.x1_c00258{left:69.600000pt;}
.x5_c00258{left:103.866667pt;}
.x2_c00258{left:149.066667pt;}
.x6_c00258{left:246.533333pt;}
.x7_c00258{left:252.800000pt;}
.xe_c00258{left:347.401530pt;}
.xd_c00258{left:379.466667pt;}
.x3_c00258{left:549.200000pt;}
.x4_c00258{left:616.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a5a9780f13aa8033fad53679.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_45633dd11f46bb3090928a35.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_215f97c84364de6a2c5e37d0.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_930e33ad85752989b3a064c3.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;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_c00259;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00259{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m0_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;}
.ls3_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:6.000000px;}
.ls2_c00259{letter-spacing:18.000000px;}
.ls0_c00259{letter-spacing:26.772000px;}
.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:-53.856000px;}
.ws3_c00259{word-spacing:-51.000000px;}
.ws2_c00259{word-spacing:-43.084800px;}
.ws4_c00259{word-spacing:0.000000px;}
.ws0_c00259{word-spacing:10.939200px;}
._2a_c00259{margin-left:-52.128000px;}
._2f_c00259{margin-left:-30.048000px;}
._3f_c00259{margin-left:-26.784000px;}
._39_c00259{margin-left:-25.248000px;}
._32_c00259{margin-left:-20.640000px;}
._1c_c00259{margin-left:-18.048000px;}
._27_c00259{margin-left:-16.032000px;}
._19_c00259{margin-left:-13.920000px;}
._34_c00259{margin-left:-12.768000px;}
._17_c00259{margin-left:-11.424000px;}
._3a_c00259{margin-left:-9.984000px;}
._1f_c00259{margin-left:-8.928000px;}
._0_c00259{margin-left:-7.680000px;}
._2c_c00259{margin-left:-6.528000px;}
._11_c00259{margin-left:-5.280000px;}
._1_c00259{margin-left:-3.456000px;}
._41_c00259{margin-left:-2.400000px;}
._6_c00259{margin-left:-1.248000px;}
._3_c00259{width:1.920000px;}
._7_c00259{width:3.360000px;}
._b_c00259{width:4.800000px;}
._9_c00259{width:5.856000px;}
._8_c00259{width:7.008000px;}
._c_c00259{width:8.352000px;}
._a_c00259{width:10.176000px;}
._25_c00259{width:11.616000px;}
._e_c00259{width:12.768000px;}
._20_c00259{width:13.920000px;}
._d_c00259{width:15.072000px;}
._2_c00259{width:16.800000px;}
._10_c00259{width:18.528000px;}
._12_c00259{width:20.160000px;}
._30_c00259{width:21.792000px;}
._22_c00259{width:24.576000px;}
._16_c00259{width:25.824000px;}
._5_c00259{width:27.840000px;}
._2e_c00259{width:29.280000px;}
._13_c00259{width:30.528000px;}
._f_c00259{width:32.544000px;}
._1d_c00259{width:34.080000px;}
._4_c00259{width:35.136000px;}
._1e_c00259{width:37.152000px;}
._1a_c00259{width:38.400000px;}
._14_c00259{width:41.184000px;}
._40_c00259{width:42.240000px;}
._23_c00259{width:43.680000px;}
._26_c00259{width:44.928000px;}
._15_c00259{width:46.656000px;}
._1b_c00259{width:48.480000px;}
._24_c00259{width:52.224000px;}
._18_c00259{width:55.776000px;}
._28_c00259{width:57.888000px;}
._3c_c00259{width:60.672000px;}
._36_c00259{width:63.264000px;}
._3d_c00259{width:64.896000px;}
._38_c00259{width:68.064000px;}
._21_c00259{width:72.192000px;}
._3b_c00259{width:75.264000px;}
._33_c00259{width:124.800000px;}
._37_c00259{width:131.232000px;}
._35_c00259{width:171.672000px;}
._2d_c00259{width:187.104000px;}
._31_c00259{width:260.736000px;}
._3e_c00259{width:271.488000px;}
._42_c00259{width:313.728000px;}
._2b_c00259{width:537.600000px;}
._29_c00259{width:976.320000px;}
.fc2_c00259{color:transparent;}
.fc1_c00259{color:rgb(128,128,128);}
.fc0_c00259{color:rgb(0,0,0);}
.fs6_c00259{font-size:48.000000px;}
.fs2_c00259{font-size:52.800000px;}
.fs3_c00259{font-size:66.000000px;}
.fs4_c00259{font-size:76.800000px;}
.fs0_c00259{font-size:96.000000px;}
.fs5_c00259{font-size:102.000000px;}
.fs1_c00259{font-size:108.000000px;}
.y0_c00259{bottom:0.000000px;}
.y2a_c00259{bottom:3.105000px;}
.y29_c00259{bottom:7.228357px;}
.y26_c00259{bottom:86.430000px;}
.y25_c00259{bottom:116.880000px;}
.y24_c00259{bottom:153.330000px;}
.y23_c00259{bottom:187.080000px;}
.y22_c00259{bottom:222.030000px;}
.y21_c00259{bottom:255.780000px;}
.y20_c00259{bottom:289.680000px;}
.y1f_c00259{bottom:324.330000px;}
.y1e_c00259{bottom:358.830000px;}
.y1d_c00259{bottom:392.580000px;}
.y1c_c00259{bottom:426.930000px;}
.y1b_c00259{bottom:461.730000px;}
.y1a_c00259{bottom:496.080000px;}
.y19_c00259{bottom:529.230000px;}
.y18_c00259{bottom:563.280000px;}
.y17_c00259{bottom:597.480000px;}
.y16_c00259{bottom:630.480000px;}
.y28_c00259{bottom:635.130000px;}
.y15_c00259{bottom:665.880000px;}
.y14_c00259{bottom:699.930000px;}
.y27_c00259{bottom:729.630000px;}
.y13_c00259{bottom:733.680000px;}
.y12_c00259{bottom:767.130000px;}
.y11_c00259{bottom:801.630000px;}
.y10_c00259{bottom:835.980000px;}
.yf_c00259{bottom:869.730000px;}
.y2_c00259{bottom:876.780000px;}
.ye_c00259{bottom:903.180000px;}
.y1_c00259{bottom:912.330000px;}
.yd_c00259{bottom:934.530000px;}
.yc_c00259{bottom:970.080000px;}
.yb_c00259{bottom:1003.680000px;}
.ya_c00259{bottom:1037.430000px;}
.y9_c00259{bottom:1071.930000px;}
.y8_c00259{bottom:1104.930000px;}
.y7_c00259{bottom:1138.080000px;}
.y6_c00259{bottom:1171.530000px;}
.y5_c00259{bottom:1204.980000px;}
.y4_c00259{bottom:1238.730000px;}
.y3_c00259{bottom:1272.480000px;}
.h4_c00259{height:13.200074px;}
.h5_c00259{height:43.804688px;}
.h2_c00259{height:121.546875px;}
.h3_c00259{height:136.740234px;}
.h0_c00259{height:1382.700000px;}
.h1_c00259{height:1383.000000px;}
.w2_c00259{width:104.875500px;}
.w0_c00259{width:863.175000px;}
.w1_c00259{width:863.250000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:148.200000px;}
.x9_c00259{left:153.150000px;}
.x14_c00259{left:154.800000px;}
.xd_c00259{left:156.900000px;}
.xc_c00259{left:159.000000px;}
.x1_c00259{left:160.650000px;}
.x10_c00259{left:174.150000px;}
.x11_c00259{left:254.100000px;}
.x12_c00259{left:256.200000px;}
.xf_c00259{left:257.400000px;}
.xe_c00259{left:258.450000px;}
.x3_c00259{left:260.100000px;}
.x5_c00259{left:261.600000px;}
.x4_c00259{left:263.250000px;}
.x6_c00259{left:269.100000px;}
.xa_c00259{left:288.600000px;}
.xb_c00259{left:310.200000px;}
.x15_c00259{left:383.401749px;}
.x7_c00259{left:390.750000px;}
.x8_c00259{left:399.600000px;}
.x13_c00259{left:709.800000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls3_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:5.333333pt;}
.ls2_c00259{letter-spacing:16.000000pt;}
.ls0_c00259{letter-spacing:23.797333pt;}
.ws1_c00259{word-spacing:-47.872000pt;}
.ws3_c00259{word-spacing:-45.333333pt;}
.ws2_c00259{word-spacing:-38.297600pt;}
.ws4_c00259{word-spacing:0.000000pt;}
.ws0_c00259{word-spacing:9.723733pt;}
._2a_c00259{margin-left:-46.336000pt;}
._2f_c00259{margin-left:-26.709333pt;}
._3f_c00259{margin-left:-23.808000pt;}
._39_c00259{margin-left:-22.442667pt;}
._32_c00259{margin-left:-18.346667pt;}
._1c_c00259{margin-left:-16.042667pt;}
._27_c00259{margin-left:-14.250667pt;}
._19_c00259{margin-left:-12.373333pt;}
._34_c00259{margin-left:-11.349333pt;}
._17_c00259{margin-left:-10.154667pt;}
._3a_c00259{margin-left:-8.874667pt;}
._1f_c00259{margin-left:-7.936000pt;}
._0_c00259{margin-left:-6.826667pt;}
._2c_c00259{margin-left:-5.802667pt;}
._11_c00259{margin-left:-4.693333pt;}
._1_c00259{margin-left:-3.072000pt;}
._41_c00259{margin-left:-2.133333pt;}
._6_c00259{margin-left:-1.109333pt;}
._3_c00259{width:1.706667pt;}
._7_c00259{width:2.986667pt;}
._b_c00259{width:4.266667pt;}
._9_c00259{width:5.205333pt;}
._8_c00259{width:6.229333pt;}
._c_c00259{width:7.424000pt;}
._a_c00259{width:9.045333pt;}
._25_c00259{width:10.325333pt;}
._e_c00259{width:11.349333pt;}
._20_c00259{width:12.373333pt;}
._d_c00259{width:13.397333pt;}
._2_c00259{width:14.933333pt;}
._10_c00259{width:16.469333pt;}
._12_c00259{width:17.920000pt;}
._30_c00259{width:19.370667pt;}
._22_c00259{width:21.845333pt;}
._16_c00259{width:22.954667pt;}
._5_c00259{width:24.746667pt;}
._2e_c00259{width:26.026667pt;}
._13_c00259{width:27.136000pt;}
._f_c00259{width:28.928000pt;}
._1d_c00259{width:30.293333pt;}
._4_c00259{width:31.232000pt;}
._1e_c00259{width:33.024000pt;}
._1a_c00259{width:34.133333pt;}
._14_c00259{width:36.608000pt;}
._40_c00259{width:37.546667pt;}
._23_c00259{width:38.826667pt;}
._26_c00259{width:39.936000pt;}
._15_c00259{width:41.472000pt;}
._1b_c00259{width:43.093333pt;}
._24_c00259{width:46.421333pt;}
._18_c00259{width:49.578667pt;}
._28_c00259{width:51.456000pt;}
._3c_c00259{width:53.930667pt;}
._36_c00259{width:56.234667pt;}
._3d_c00259{width:57.685333pt;}
._38_c00259{width:60.501333pt;}
._21_c00259{width:64.170667pt;}
._3b_c00259{width:66.901333pt;}
._33_c00259{width:110.933333pt;}
._37_c00259{width:116.650667pt;}
._35_c00259{width:152.597333pt;}
._2d_c00259{width:166.314667pt;}
._31_c00259{width:231.765333pt;}
._3e_c00259{width:241.322667pt;}
._42_c00259{width:278.869333pt;}
._2b_c00259{width:477.866667pt;}
._29_c00259{width:867.840000pt;}
.fs6_c00259{font-size:42.666667pt;}
.fs2_c00259{font-size:46.933333pt;}
.fs3_c00259{font-size:58.666667pt;}
.fs4_c00259{font-size:68.266667pt;}
.fs0_c00259{font-size:85.333333pt;}
.fs5_c00259{font-size:90.666667pt;}
.fs1_c00259{font-size:96.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y2a_c00259{bottom:2.760000pt;}
.y29_c00259{bottom:6.425206pt;}
.y26_c00259{bottom:76.826667pt;}
.y25_c00259{bottom:103.893333pt;}
.y24_c00259{bottom:136.293333pt;}
.y23_c00259{bottom:166.293333pt;}
.y22_c00259{bottom:197.360000pt;}
.y21_c00259{bottom:227.360000pt;}
.y20_c00259{bottom:257.493333pt;}
.y1f_c00259{bottom:288.293333pt;}
.y1e_c00259{bottom:318.960000pt;}
.y1d_c00259{bottom:348.960000pt;}
.y1c_c00259{bottom:379.493333pt;}
.y1b_c00259{bottom:410.426667pt;}
.y1a_c00259{bottom:440.960000pt;}
.y19_c00259{bottom:470.426667pt;}
.y18_c00259{bottom:500.693333pt;}
.y17_c00259{bottom:531.093333pt;}
.y16_c00259{bottom:560.426667pt;}
.y28_c00259{bottom:564.560000pt;}
.y15_c00259{bottom:591.893333pt;}
.y14_c00259{bottom:622.160000pt;}
.y27_c00259{bottom:648.560000pt;}
.y13_c00259{bottom:652.160000pt;}
.y12_c00259{bottom:681.893333pt;}
.y11_c00259{bottom:712.560000pt;}
.y10_c00259{bottom:743.093333pt;}
.yf_c00259{bottom:773.093333pt;}
.y2_c00259{bottom:779.360000pt;}
.ye_c00259{bottom:802.826667pt;}
.y1_c00259{bottom:810.960000pt;}
.yd_c00259{bottom:830.693333pt;}
.yc_c00259{bottom:862.293333pt;}
.yb_c00259{bottom:892.160000pt;}
.ya_c00259{bottom:922.160000pt;}
.y9_c00259{bottom:952.826667pt;}
.y8_c00259{bottom:982.160000pt;}
.y7_c00259{bottom:1011.626667pt;}
.y6_c00259{bottom:1041.360000pt;}
.y5_c00259{bottom:1071.093333pt;}
.y4_c00259{bottom:1101.093333pt;}
.y3_c00259{bottom:1131.093333pt;}
.h4_c00259{height:11.733399pt;}
.h5_c00259{height:38.937500pt;}
.h2_c00259{height:108.041667pt;}
.h3_c00259{height:121.546875pt;}
.h0_c00259{height:1229.066667pt;}
.h1_c00259{height:1229.333333pt;}
.w2_c00259{width:93.222667pt;}
.w0_c00259{width:767.266667pt;}
.w1_c00259{width:767.333333pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:131.733333pt;}
.x9_c00259{left:136.133333pt;}
.x14_c00259{left:137.600000pt;}
.xd_c00259{left:139.466667pt;}
.xc_c00259{left:141.333333pt;}
.x1_c00259{left:142.800000pt;}
.x10_c00259{left:154.800000pt;}
.x11_c00259{left:225.866667pt;}
.x12_c00259{left:227.733333pt;}
.xf_c00259{left:228.800000pt;}
.xe_c00259{left:229.733333pt;}
.x3_c00259{left:231.200000pt;}
.x5_c00259{left:232.533333pt;}
.x4_c00259{left:234.000000pt;}
.x6_c00259{left:239.200000pt;}
.xa_c00259{left:256.533333pt;}
.xb_c00259{left:275.733333pt;}
.x15_c00259{left:340.801554pt;}
.x7_c00259{left:347.333333pt;}
.x8_c00259{left:355.200000pt;}
.x13_c00259{left:630.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58db92f1aac90a0025836f1a.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:0.000000px;}
._38_c00260{margin-left:-85.536000px;}
._37_c00260{margin-left:-43.104000px;}
._3d_c00260{margin-left:-37.536000px;}
._42_c00260{margin-left:-27.744000px;}
._40_c00260{margin-left:-21.792000px;}
._2c_c00260{margin-left:-18.816000px;}
._1a_c00260{margin-left:-16.608000px;}
._47_c00260{margin-left:-14.976000px;}
._2d_c00260{margin-left:-13.920000px;}
._1_c00260{margin-left:-11.904000px;}
._1d_c00260{margin-left:-9.792000px;}
._30_c00260{margin-left:-8.256000px;}
._1f_c00260{margin-left:-6.528000px;}
._22_c00260{margin-left:-4.512000px;}
._2a_c00260{margin-left:-3.072000px;}
._3_c00260{margin-left:-2.016000px;}
._0_c00260{width:1.632000px;}
._25_c00260{width:2.688000px;}
._5_c00260{width:3.744000px;}
._9_c00260{width:4.896000px;}
._17_c00260{width:5.952000px;}
._6_c00260{width:7.008000px;}
._c_c00260{width:9.024000px;}
._8_c00260{width:10.176000px;}
._11_c00260{width:11.808000px;}
._7_c00260{width:13.344000px;}
._4_c00260{width:14.688000px;}
._e_c00260{width:16.320000px;}
._18_c00260{width:18.048000px;}
._a_c00260{width:19.680000px;}
._b_c00260{width:21.600000px;}
._2f_c00260{width:24.192000px;}
._2_c00260{width:25.440000px;}
._f_c00260{width:27.360000px;}
._28_c00260{width:28.608000px;}
._16_c00260{width:29.760000px;}
._14_c00260{width:31.104000px;}
._31_c00260{width:32.448000px;}
._13_c00260{width:33.504000px;}
._d_c00260{width:34.560000px;}
._24_c00260{width:36.000000px;}
._2e_c00260{width:37.056000px;}
._12_c00260{width:38.976000px;}
._10_c00260{width:40.608000px;}
._33_c00260{width:42.336000px;}
._26_c00260{width:43.392000px;}
._15_c00260{width:45.408000px;}
._29_c00260{width:47.904000px;}
._32_c00260{width:50.880000px;}
._2b_c00260{width:52.032000px;}
._21_c00260{width:53.664000px;}
._27_c00260{width:54.816000px;}
._46_c00260{width:57.312000px;}
._35_c00260{width:66.720000px;}
._3e_c00260{width:68.928000px;}
._3c_c00260{width:73.248000px;}
._1c_c00260{width:83.712000px;}
._23_c00260{width:88.224000px;}
._1b_c00260{width:98.688000px;}
._36_c00260{width:123.360000px;}
._1e_c00260{width:148.416000px;}
._3a_c00260{width:150.624000px;}
._20_c00260{width:161.088000px;}
._3b_c00260{width:177.312000px;}
._44_c00260{width:184.224000px;}
._45_c00260{width:233.280000px;}
._43_c00260{width:235.200000px;}
._39_c00260{width:318.336000px;}
._41_c00260{width:328.320000px;}
._3f_c00260{width:376.800000px;}
._34_c00260{width:465.312000px;}
._19_c00260{width:709.632000px;}
._49_c00260{width:826.656000px;}
._48_c00260{width:1052.736000px;}
.fc2_c00260{color:transparent;}
.fc1_c00260{color:rgb(128,128,128);}
.fc0_c00260{color:rgb(0,0,0);}
.fs1_c00260{font-size:48.000000px;}
.fs0_c00260{font-size:96.000000px;}
.y0_c00260{bottom:0.000000px;}
.y26_c00260{bottom:3.105000px;}
.y25_c00260{bottom:7.228357px;}
.y24_c00260{bottom:64.080000px;}
.y23_c00260{bottom:99.330000px;}
.y22_c00260{bottom:134.280000px;}
.y21_c00260{bottom:168.030000px;}
.y20_c00260{bottom:202.530000px;}
.y1f_c00260{bottom:237.330000px;}
.y1e_c00260{bottom:271.080000px;}
.y1d_c00260{bottom:304.830000px;}
.y1c_c00260{bottom:337.830000px;}
.y1b_c00260{bottom:371.880000px;}
.y1a_c00260{bottom:406.380000px;}
.y19_c00260{bottom:439.830000px;}
.y18_c00260{bottom:473.280000px;}
.y17_c00260{bottom:506.880000px;}
.y16_c00260{bottom:540.780000px;}
.y15_c00260{bottom:574.380000px;}
.y14_c00260{bottom:607.530000px;}
.y13_c00260{bottom:640.680000px;}
.y12_c00260{bottom:674.430000px;}
.y11_c00260{bottom:707.730000px;}
.y10_c00260{bottom:741.780000px;}
.yf_c00260{bottom:775.530000px;}
.ye_c00260{bottom:807.930000px;}
.yd_c00260{bottom:840.330000px;}
.yc_c00260{bottom:874.230000px;}
.yb_c00260{bottom:907.980000px;}
.ya_c00260{bottom:940.980000px;}
.y9_c00260{bottom:974.730000px;}
.y8_c00260{bottom:1007.880000px;}
.y7_c00260{bottom:1041.480000px;}
.y6_c00260{bottom:1075.680000px;}
.y5_c00260{bottom:1108.380000px;}
.y4_c00260{bottom:1142.130000px;}
.y3_c00260{bottom:1176.480000px;}
.y2_c00260{bottom:1209.030000px;}
.y1_c00260{bottom:1242.630000px;}
.h3_c00260{height:13.200074px;}
.h4_c00260{height:43.804688px;}
.h2_c00260{height:121.546875px;}
.h0_c00260{height:1367.850000px;}
.h1_c00260{height:1368.000000px;}
.w1_c00260{width:104.875500px;}
.w0_c00260{width:867.750000px;}
.x0_c00260{left:0.000000px;}
.x9_c00260{left:46.200000px;}
.x8_c00260{left:47.250000px;}
.x7_c00260{left:48.300000px;}
.x6_c00260{left:49.350000px;}
.x5_c00260{left:50.550000px;}
.x3_c00260{left:52.050000px;}
.x2_c00260{left:53.250000px;}
.x1_c00260{left:54.300000px;}
.x4_c00260{left:59.100000px;}
.xa_c00260{left:90.450000px;}
.xb_c00260{left:385.689240px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:0.000000pt;}
._38_c00260{margin-left:-76.032000pt;}
._37_c00260{margin-left:-38.314667pt;}
._3d_c00260{margin-left:-33.365333pt;}
._42_c00260{margin-left:-24.661333pt;}
._40_c00260{margin-left:-19.370667pt;}
._2c_c00260{margin-left:-16.725333pt;}
._1a_c00260{margin-left:-14.762667pt;}
._47_c00260{margin-left:-13.312000pt;}
._2d_c00260{margin-left:-12.373333pt;}
._1_c00260{margin-left:-10.581333pt;}
._1d_c00260{margin-left:-8.704000pt;}
._30_c00260{margin-left:-7.338667pt;}
._1f_c00260{margin-left:-5.802667pt;}
._22_c00260{margin-left:-4.010667pt;}
._2a_c00260{margin-left:-2.730667pt;}
._3_c00260{margin-left:-1.792000pt;}
._0_c00260{width:1.450667pt;}
._25_c00260{width:2.389333pt;}
._5_c00260{width:3.328000pt;}
._9_c00260{width:4.352000pt;}
._17_c00260{width:5.290667pt;}
._6_c00260{width:6.229333pt;}
._c_c00260{width:8.021333pt;}
._8_c00260{width:9.045333pt;}
._11_c00260{width:10.496000pt;}
._7_c00260{width:11.861333pt;}
._4_c00260{width:13.056000pt;}
._e_c00260{width:14.506667pt;}
._18_c00260{width:16.042667pt;}
._a_c00260{width:17.493333pt;}
._b_c00260{width:19.200000pt;}
._2f_c00260{width:21.504000pt;}
._2_c00260{width:22.613333pt;}
._f_c00260{width:24.320000pt;}
._28_c00260{width:25.429333pt;}
._16_c00260{width:26.453333pt;}
._14_c00260{width:27.648000pt;}
._31_c00260{width:28.842667pt;}
._13_c00260{width:29.781333pt;}
._d_c00260{width:30.720000pt;}
._24_c00260{width:32.000000pt;}
._2e_c00260{width:32.938667pt;}
._12_c00260{width:34.645333pt;}
._10_c00260{width:36.096000pt;}
._33_c00260{width:37.632000pt;}
._26_c00260{width:38.570667pt;}
._15_c00260{width:40.362667pt;}
._29_c00260{width:42.581333pt;}
._32_c00260{width:45.226667pt;}
._2b_c00260{width:46.250667pt;}
._21_c00260{width:47.701333pt;}
._27_c00260{width:48.725333pt;}
._46_c00260{width:50.944000pt;}
._35_c00260{width:59.306667pt;}
._3e_c00260{width:61.269333pt;}
._3c_c00260{width:65.109333pt;}
._1c_c00260{width:74.410667pt;}
._23_c00260{width:78.421333pt;}
._1b_c00260{width:87.722667pt;}
._36_c00260{width:109.653333pt;}
._1e_c00260{width:131.925333pt;}
._3a_c00260{width:133.888000pt;}
._20_c00260{width:143.189333pt;}
._3b_c00260{width:157.610667pt;}
._44_c00260{width:163.754667pt;}
._45_c00260{width:207.360000pt;}
._43_c00260{width:209.066667pt;}
._39_c00260{width:282.965333pt;}
._41_c00260{width:291.840000pt;}
._3f_c00260{width:334.933333pt;}
._34_c00260{width:413.610667pt;}
._19_c00260{width:630.784000pt;}
._49_c00260{width:734.805333pt;}
._48_c00260{width:935.765333pt;}
.fs1_c00260{font-size:42.666667pt;}
.fs0_c00260{font-size:85.333333pt;}
.y0_c00260{bottom:0.000000pt;}
.y26_c00260{bottom:2.760000pt;}
.y25_c00260{bottom:6.425206pt;}
.y24_c00260{bottom:56.960000pt;}
.y23_c00260{bottom:88.293333pt;}
.y22_c00260{bottom:119.360000pt;}
.y21_c00260{bottom:149.360000pt;}
.y20_c00260{bottom:180.026667pt;}
.y1f_c00260{bottom:210.960000pt;}
.y1e_c00260{bottom:240.960000pt;}
.y1d_c00260{bottom:270.960000pt;}
.y1c_c00260{bottom:300.293333pt;}
.y1b_c00260{bottom:330.560000pt;}
.y1a_c00260{bottom:361.226667pt;}
.y19_c00260{bottom:390.960000pt;}
.y18_c00260{bottom:420.693333pt;}
.y17_c00260{bottom:450.560000pt;}
.y16_c00260{bottom:480.693333pt;}
.y15_c00260{bottom:510.560000pt;}
.y14_c00260{bottom:540.026667pt;}
.y13_c00260{bottom:569.493333pt;}
.y12_c00260{bottom:599.493333pt;}
.y11_c00260{bottom:629.093333pt;}
.y10_c00260{bottom:659.360000pt;}
.yf_c00260{bottom:689.360000pt;}
.ye_c00260{bottom:718.160000pt;}
.yd_c00260{bottom:746.960000pt;}
.yc_c00260{bottom:777.093333pt;}
.yb_c00260{bottom:807.093333pt;}
.ya_c00260{bottom:836.426667pt;}
.y9_c00260{bottom:866.426667pt;}
.y8_c00260{bottom:895.893333pt;}
.y7_c00260{bottom:925.760000pt;}
.y6_c00260{bottom:956.160000pt;}
.y5_c00260{bottom:985.226667pt;}
.y4_c00260{bottom:1015.226667pt;}
.y3_c00260{bottom:1045.760000pt;}
.y2_c00260{bottom:1074.693333pt;}
.y1_c00260{bottom:1104.560000pt;}
.h3_c00260{height:11.733399pt;}
.h4_c00260{height:38.937500pt;}
.h2_c00260{height:108.041667pt;}
.h0_c00260{height:1215.866667pt;}
.h1_c00260{height:1216.000000pt;}
.w1_c00260{width:93.222667pt;}
.w0_c00260{width:771.333333pt;}
.x0_c00260{left:0.000000pt;}
.x9_c00260{left:41.066667pt;}
.x8_c00260{left:42.000000pt;}
.x7_c00260{left:42.933333pt;}
.x6_c00260{left:43.866667pt;}
.x5_c00260{left:44.933333pt;}
.x3_c00260{left:46.266667pt;}
.x2_c00260{left:47.333333pt;}
.x1_c00260{left:48.266667pt;}
.x4_c00260{left:52.533333pt;}
.xa_c00260{left:80.400000pt;}
.xb_c00260{left:342.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecc63321a3dc1eed5d336e93.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_f273100870a726c76ced9c9c.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_13df69a8572e84476bdeb1ec.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_424671b3b2e3455cd8370e9c.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_7ff7db10098cb87d956125ed.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00261;src:url('chunks/assets/font_d41e8253037a575ee541cef2.woff2')format("woff");}.ff6_c00261{font-family:ff6_c00261;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00261;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00261{font-family:ff7_c00261;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls4_c00261{letter-spacing:-3.000000px;}
.ls3_c00261{letter-spacing:0.000000px;}
.ls1_c00261{letter-spacing:8.220000px;}
.ls0_c00261{letter-spacing:37.800000px;}
.ls2_c00261{letter-spacing:69.972000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:-52.500000px;}
.ws0_c00261{word-spacing:-51.000000px;}
.ws2_c00261{word-spacing:0.000000px;}
._3f_c00261{margin-left:-88.224000px;}
._42_c00261{margin-left:-63.453000px;}
._41_c00261{margin-left:-28.188000px;}
._25_c00261{margin-left:-26.688000px;}
._33_c00261{margin-left:-21.984000px;}
._37_c00261{margin-left:-15.936000px;}
._2c_c00261{margin-left:-14.304000px;}
._1_c00261{margin-left:-12.480000px;}
._2a_c00261{margin-left:-11.040000px;}
._3_c00261{margin-left:-9.120000px;}
._17_c00261{margin-left:-7.872000px;}
._2_c00261{margin-left:-6.816000px;}
._0_c00261{margin-left:-5.664000px;}
._7_c00261{margin-left:-4.128000px;}
._e_c00261{margin-left:-2.784000px;}
._d_c00261{margin-left:-1.248000px;}
._6_c00261{width:1.056000px;}
._5_c00261{width:2.784000px;}
._a_c00261{width:3.840000px;}
._8_c00261{width:5.376000px;}
._18_c00261{width:6.528000px;}
._10_c00261{width:7.584000px;}
._11_c00261{width:8.640000px;}
._4_c00261{width:10.176000px;}
._15_c00261{width:11.808000px;}
._c_c00261{width:12.960000px;}
._b_c00261{width:14.016000px;}
._1e_c00261{width:15.168000px;}
._14_c00261{width:16.800000px;}
._35_c00261{width:17.856000px;}
._1f_c00261{width:19.392000px;}
._13_c00261{width:21.120000px;}
._26_c00261{width:24.192000px;}
._12_c00261{width:25.440000px;}
._32_c00261{width:27.360000px;}
._1a_c00261{width:28.416000px;}
._f_c00261{width:30.528000px;}
._1d_c00261{width:32.448000px;}
._20_c00261{width:34.368000px;}
._16_c00261{width:36.192000px;}
._9_c00261{width:38.016000px;}
._19_c00261{width:40.224000px;}
._2d_c00261{width:41.376000px;}
._1c_c00261{width:42.912000px;}
._21_c00261{width:45.120000px;}
._1b_c00261{width:47.520000px;}
._36_c00261{width:48.894000px;}
._3e_c00261{width:50.082000px;}
._24_c00261{width:51.456000px;}
._29_c00261{width:53.184000px;}
._22_c00261{width:56.352000px;}
._3d_c00261{width:61.536000px;}
._3c_c00261{width:62.880000px;}
._27_c00261{width:68.928000px;}
._2e_c00261{width:70.368000px;}
._28_c00261{width:77.952000px;}
._2f_c00261{width:104.352000px;}
._3b_c00261{width:180.960000px;}
._3a_c00261{width:189.216000px;}
._2b_c00261{width:206.688000px;}
._39_c00261{width:222.432000px;}
._23_c00261{width:235.008000px;}
._34_c00261{width:301.728000px;}
._38_c00261{width:326.592000px;}
._40_c00261{width:908.256000px;}
._30_c00261{width:929.376000px;}
._31_c00261{width:948.768000px;}
.fc2_c00261{color:transparent;}
.fc1_c00261{color:rgb(128,128,128);}
.fc0_c00261{color:rgb(0,0,0);}
.fs6_c00261{font-size:48.000000px;}
.fs2_c00261{font-size:84.000000px;}
.fs5_c00261{font-size:87.000000px;}
.fs0_c00261{font-size:96.000000px;}
.fs1_c00261{font-size:102.000000px;}
.fs3_c00261{font-size:105.000000px;}
.fs4_c00261{font-size:108.000000px;}
.y0_c00261{bottom:0.000000px;}
.y28_c00261{bottom:3.105000px;}
.y27_c00261{bottom:7.228369px;}
.y25_c00261{bottom:64.020000px;}
.y24_c00261{bottom:95.220000px;}
.y23_c00261{bottom:130.320000px;}
.y22_c00261{bottom:164.070000px;}
.y21_c00261{bottom:198.120000px;}
.y20_c00261{bottom:232.770000px;}
.y1f_c00261{bottom:268.020000px;}
.y1e_c00261{bottom:301.770000px;}
.y26_c00261{bottom:335.370000px;}
.y1d_c00261{bottom:336.120000px;}
.y1c_c00261{bottom:370.170000px;}
.y1b_c00261{bottom:404.970000px;}
.y1a_c00261{bottom:436.620000px;}
.y19_c00261{bottom:473.070000px;}
.y18_c00261{bottom:506.520000px;}
.y17_c00261{bottom:540.720000px;}
.y16_c00261{bottom:575.070000px;}
.y15_c00261{bottom:608.820000px;}
.y14_c00261{bottom:642.570000px;}
.y13_c00261{bottom:675.720000px;}
.y12_c00261{bottom:709.470000px;}
.y11_c00261{bottom:744.420000px;}
.y10_c00261{bottom:777.870000px;}
.yf_c00261{bottom:811.620000px;}
.ye_c00261{bottom:845.820000px;}
.yd_c00261{bottom:879.120000px;}
.yc_c00261{bottom:912.270000px;}
.yb_c00261{bottom:946.020000px;}
.ya_c00261{bottom:979.470000px;}
.y1_c00261{bottom:986.520000px;}
.y9_c00261{bottom:1013.820000px;}
.y8_c00261{bottom:1046.520000px;}
.y7_c00261{bottom:1080.570000px;}
.y6_c00261{bottom:1114.320000px;}
.y5_c00261{bottom:1147.470000px;}
.y4_c00261{bottom:1180.920000px;}
.y3_c00261{bottom:1214.220000px;}
.y2_c00261{bottom:1248.120000px;}
.h5_c00261{height:13.200073px;}
.h6_c00261{height:43.804688px;}
.h1_c00261{height:98.672872px;}
.h4_c00261{height:110.151855px;}
.h2_c00261{height:121.546875px;}
.h3_c00261{height:136.740234px;}
.h0_c00261{height:1340.250000px;}
.w2_c00261{width:104.875500px;}
.w1_c00261{width:836.250000px;}
.w0_c00261{width:836.475000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:52.650000px;}
.x7_c00261{left:109.950000px;}
.x8_c00261{left:149.400000px;}
.xc_c00261{left:157.950000px;}
.x9_c00261{left:193.050000px;}
.x3_c00261{left:232.500000px;}
.x5_c00261{left:233.550000px;}
.x2_c00261{left:234.600000px;}
.x4_c00261{left:235.800000px;}
.x6_c00261{left:236.850000px;}
.xa_c00261{left:284.850000px;}
.xd_c00261{left:370.051758px;}
.xb_c00261{left:477.900000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls4_c00261{letter-spacing:-2.666667pt;}
.ls3_c00261{letter-spacing:0.000000pt;}
.ls1_c00261{letter-spacing:7.306667pt;}
.ls0_c00261{letter-spacing:33.600000pt;}
.ls2_c00261{letter-spacing:62.197333pt;}
.ws1_c00261{word-spacing:-46.666667pt;}
.ws0_c00261{word-spacing:-45.333333pt;}
.ws2_c00261{word-spacing:0.000000pt;}
._3f_c00261{margin-left:-78.421333pt;}
._42_c00261{margin-left:-56.402667pt;}
._41_c00261{margin-left:-25.056000pt;}
._25_c00261{margin-left:-23.722667pt;}
._33_c00261{margin-left:-19.541333pt;}
._37_c00261{margin-left:-14.165333pt;}
._2c_c00261{margin-left:-12.714667pt;}
._1_c00261{margin-left:-11.093333pt;}
._2a_c00261{margin-left:-9.813333pt;}
._3_c00261{margin-left:-8.106667pt;}
._17_c00261{margin-left:-6.997333pt;}
._2_c00261{margin-left:-6.058667pt;}
._0_c00261{margin-left:-5.034667pt;}
._7_c00261{margin-left:-3.669333pt;}
._e_c00261{margin-left:-2.474667pt;}
._d_c00261{margin-left:-1.109333pt;}
._6_c00261{width:0.938667pt;}
._5_c00261{width:2.474667pt;}
._a_c00261{width:3.413333pt;}
._8_c00261{width:4.778667pt;}
._18_c00261{width:5.802667pt;}
._10_c00261{width:6.741333pt;}
._11_c00261{width:7.680000pt;}
._4_c00261{width:9.045333pt;}
._15_c00261{width:10.496000pt;}
._c_c00261{width:11.520000pt;}
._b_c00261{width:12.458667pt;}
._1e_c00261{width:13.482667pt;}
._14_c00261{width:14.933333pt;}
._35_c00261{width:15.872000pt;}
._1f_c00261{width:17.237333pt;}
._13_c00261{width:18.773333pt;}
._26_c00261{width:21.504000pt;}
._12_c00261{width:22.613333pt;}
._32_c00261{width:24.320000pt;}
._1a_c00261{width:25.258667pt;}
._f_c00261{width:27.136000pt;}
._1d_c00261{width:28.842667pt;}
._20_c00261{width:30.549333pt;}
._16_c00261{width:32.170667pt;}
._9_c00261{width:33.792000pt;}
._19_c00261{width:35.754667pt;}
._2d_c00261{width:36.778667pt;}
._1c_c00261{width:38.144000pt;}
._21_c00261{width:40.106667pt;}
._1b_c00261{width:42.240000pt;}
._36_c00261{width:43.461333pt;}
._3e_c00261{width:44.517333pt;}
._24_c00261{width:45.738667pt;}
._29_c00261{width:47.274667pt;}
._22_c00261{width:50.090667pt;}
._3d_c00261{width:54.698667pt;}
._3c_c00261{width:55.893333pt;}
._27_c00261{width:61.269333pt;}
._2e_c00261{width:62.549333pt;}
._28_c00261{width:69.290667pt;}
._2f_c00261{width:92.757333pt;}
._3b_c00261{width:160.853333pt;}
._3a_c00261{width:168.192000pt;}
._2b_c00261{width:183.722667pt;}
._39_c00261{width:197.717333pt;}
._23_c00261{width:208.896000pt;}
._34_c00261{width:268.202667pt;}
._38_c00261{width:290.304000pt;}
._40_c00261{width:807.338667pt;}
._30_c00261{width:826.112000pt;}
._31_c00261{width:843.349333pt;}
.fs6_c00261{font-size:42.666667pt;}
.fs2_c00261{font-size:74.666667pt;}
.fs5_c00261{font-size:77.333333pt;}
.fs0_c00261{font-size:85.333333pt;}
.fs1_c00261{font-size:90.666667pt;}
.fs3_c00261{font-size:93.333333pt;}
.fs4_c00261{font-size:96.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y28_c00261{bottom:2.760000pt;}
.y27_c00261{bottom:6.425217pt;}
.y25_c00261{bottom:56.906667pt;}
.y24_c00261{bottom:84.640000pt;}
.y23_c00261{bottom:115.840000pt;}
.y22_c00261{bottom:145.840000pt;}
.y21_c00261{bottom:176.106667pt;}
.y20_c00261{bottom:206.906667pt;}
.y1f_c00261{bottom:238.240000pt;}
.y1e_c00261{bottom:268.240000pt;}
.y26_c00261{bottom:298.106667pt;}
.y1d_c00261{bottom:298.773333pt;}
.y1c_c00261{bottom:329.040000pt;}
.y1b_c00261{bottom:359.973333pt;}
.y1a_c00261{bottom:388.106667pt;}
.y19_c00261{bottom:420.506667pt;}
.y18_c00261{bottom:450.240000pt;}
.y17_c00261{bottom:480.640000pt;}
.y16_c00261{bottom:511.173333pt;}
.y15_c00261{bottom:541.173333pt;}
.y14_c00261{bottom:571.173333pt;}
.y13_c00261{bottom:600.640000pt;}
.y12_c00261{bottom:630.640000pt;}
.y11_c00261{bottom:661.706667pt;}
.y10_c00261{bottom:691.440000pt;}
.yf_c00261{bottom:721.440000pt;}
.ye_c00261{bottom:751.840000pt;}
.yd_c00261{bottom:781.440000pt;}
.yc_c00261{bottom:810.906667pt;}
.yb_c00261{bottom:840.906667pt;}
.ya_c00261{bottom:870.640000pt;}
.y1_c00261{bottom:876.906667pt;}
.y9_c00261{bottom:901.173333pt;}
.y8_c00261{bottom:930.240000pt;}
.y7_c00261{bottom:960.506667pt;}
.y6_c00261{bottom:990.506667pt;}
.y5_c00261{bottom:1019.973333pt;}
.y4_c00261{bottom:1049.706667pt;}
.y3_c00261{bottom:1079.306667pt;}
.y2_c00261{bottom:1109.440000pt;}
.h5_c00261{height:11.733399pt;}
.h6_c00261{height:38.937500pt;}
.h1_c00261{height:87.709220pt;}
.h4_c00261{height:97.912760pt;}
.h2_c00261{height:108.041667pt;}
.h3_c00261{height:121.546875pt;}
.h0_c00261{height:1191.333333pt;}
.w2_c00261{width:93.222667pt;}
.w1_c00261{width:743.333333pt;}
.w0_c00261{width:743.533333pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:46.800000pt;}
.x7_c00261{left:97.733333pt;}
.x8_c00261{left:132.800000pt;}
.xc_c00261{left:140.400000pt;}
.x9_c00261{left:171.600000pt;}
.x3_c00261{left:206.666667pt;}
.x5_c00261{left:207.600000pt;}
.x2_c00261{left:208.533333pt;}
.x4_c00261{left:209.600000pt;}
.x6_c00261{left:210.533333pt;}
.xa_c00261{left:253.200000pt;}
.xd_c00261{left:328.934896pt;}
.xb_c00261{left:424.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f22d0bb01aa24ce94c260088.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_2070fc91bc233a68041f837d.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls1_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:4.800000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-63.504000px;}
.ws1_c00262{word-spacing:-51.000000px;}
.ws2_c00262{word-spacing:-24.582000px;}
.ws3_c00262{word-spacing:-23.136000px;}
.ws4_c00262{word-spacing:0.000000px;}
._39_c00262{margin-left:-69.888000px;}
._33_c00262{margin-left:-28.656000px;}
._38_c00262{margin-left:-26.094000px;}
._3a_c00262{margin-left:-19.968000px;}
._34_c00262{margin-left:-17.712000px;}
._3b_c00262{margin-left:-15.402000px;}
._f_c00262{margin-left:-14.364000px;}
._2a_c00262{margin-left:-11.616000px;}
._1d_c00262{margin-left:-9.066000px;}
._1e_c00262{margin-left:-7.818000px;}
._0_c00262{margin-left:-6.240000px;}
._21_c00262{margin-left:-5.202000px;}
._1c_c00262{margin-left:-3.726000px;}
._3_c00262{margin-left:-2.496000px;}
._2_c00262{margin-left:-1.056000px;}
._5_c00262{width:1.248000px;}
._6_c00262{width:3.264000px;}
._b_c00262{width:4.320000px;}
._7_c00262{width:5.568000px;}
._8_c00262{width:6.720000px;}
._d_c00262{width:8.400000px;}
._16_c00262{width:9.540000px;}
._15_c00262{width:11.040000px;}
._12_c00262{width:12.192000px;}
._a_c00262{width:14.016000px;}
._14_c00262{width:15.936000px;}
._2e_c00262{width:17.070000px;}
._11_c00262{width:18.240000px;}
._35_c00262{width:19.518000px;}
._e_c00262{width:20.928000px;}
._36_c00262{width:22.014000px;}
._20_c00262{width:24.480000px;}
._10_c00262{width:26.130000px;}
._32_c00262{width:27.936000px;}
._18_c00262{width:28.956000px;}
._2b_c00262{width:30.738000px;}
._17_c00262{width:32.520000px;}
._4_c00262{width:34.848000px;}
._19_c00262{width:36.096000px;}
._1a_c00262{width:37.152000px;}
._26_c00262{width:38.592000px;}
._13_c00262{width:40.272000px;}
._25_c00262{width:41.484000px;}
._c_c00262{width:42.936000px;}
._24_c00262{width:45.504000px;}
._1_c00262{width:47.040000px;}
._1f_c00262{width:49.128000px;}
._9_c00262{width:50.496000px;}
._2c_c00262{width:51.804000px;}
._22_c00262{width:53.748000px;}
._23_c00262{width:56.262000px;}
._2d_c00262{width:58.284000px;}
._31_c00262{width:62.178000px;}
._37_c00262{width:67.440000px;}
._1b_c00262{width:70.176000px;}
._30_c00262{width:71.616000px;}
._28_c00262{width:73.632000px;}
._29_c00262{width:76.584000px;}
._27_c00262{width:174.348000px;}
._2f_c00262{width:330.996000px;}
.fc2_c00262{color:transparent;}
.fc1_c00262{color:rgb(128,128,128);}
.fc0_c00262{color:rgb(0,0,0);}
.fs3_c00262{font-size:48.000000px;}
.fs1_c00262{font-size:84.000000px;}
.fs0_c00262{font-size:96.000000px;}
.fs2_c00262{font-size:102.000000px;}
.y0_c00262{bottom:0.000000px;}
.y26_c00262{bottom:3.105000px;}
.y25_c00262{bottom:7.228355px;}
.y24_c00262{bottom:47.535000px;}
.y23_c00262{bottom:115.035000px;}
.y22_c00262{bottom:148.785000px;}
.y21_c00262{bottom:183.585000px;}
.y20_c00262{bottom:217.935000px;}
.y1f_c00262{bottom:251.985000px;}
.y1e_c00262{bottom:285.435000px;}
.y1d_c00262{bottom:319.635000px;}
.y1c_c00262{bottom:353.385000px;}
.y1b_c00262{bottom:385.635000px;}
.y1a_c00262{bottom:421.785000px;}
.y19_c00262{bottom:454.635000px;}
.y18_c00262{bottom:488.385000px;}
.y17_c00262{bottom:522.135000px;}
.y16_c00262{bottom:555.735000px;}
.y15_c00262{bottom:589.635000px;}
.y14_c00262{bottom:622.335000px;}
.y13_c00262{bottom:655.635000px;}
.y12_c00262{bottom:689.535000px;}
.y11_c00262{bottom:723.435000px;}
.y10_c00262{bottom:757.035000px;}
.yf_c00262{bottom:790.635000px;}
.ye_c00262{bottom:823.185000px;}
.yd_c00262{bottom:856.785000px;}
.yc_c00262{bottom:889.635000px;}
.yb_c00262{bottom:923.985000px;}
.ya_c00262{bottom:957.735000px;}
.y9_c00262{bottom:989.535000px;}
.y8_c00262{bottom:1024.185000px;}
.y7_c00262{bottom:1058.085000px;}
.y6_c00262{bottom:1091.685000px;}
.y5_c00262{bottom:1125.135000px;}
.y4_c00262{bottom:1159.335000px;}
.y3_c00262{bottom:1192.335000px;}
.y2_c00262{bottom:1225.335000px;}
.y1_c00262{bottom:1258.485000px;}
.h4_c00262{height:13.200074px;}
.h5_c00262{height:43.804688px;}
.h2_c00262{height:121.546875px;}
.h3_c00262{height:129.143555px;}
.h1_c00262{height:1353.000000px;}
.h0_c00262{height:1353.225000px;}
.w2_c00262{width:104.875500px;}
.w0_c00262{width:858.600000px;}
.w1_c00262{width:858.750000px;}
.x0_c00262{left:0.000000px;}
.x8_c00262{left:56.400000px;}
.x7_c00262{left:57.600000px;}
.x9_c00262{left:58.650000px;}
.x5_c00262{left:59.700000px;}
.x4_c00262{left:60.750000px;}
.x3_c00262{left:61.800000px;}
.x2_c00262{left:63.900000px;}
.xb_c00262{left:65.100000px;}
.xa_c00262{left:102.300000px;}
.x6_c00262{left:107.700000px;}
.xd_c00262{left:381.114258px;}
.x1_c00262{left:532.650000px;}
.xc_c00262{left:577.050000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls1_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:4.266667pt;}
.ws0_c00262{word-spacing:-56.448000pt;}
.ws1_c00262{word-spacing:-45.333333pt;}
.ws2_c00262{word-spacing:-21.850667pt;}
.ws3_c00262{word-spacing:-20.565333pt;}
.ws4_c00262{word-spacing:0.000000pt;}
._39_c00262{margin-left:-62.122667pt;}
._33_c00262{margin-left:-25.472000pt;}
._38_c00262{margin-left:-23.194667pt;}
._3a_c00262{margin-left:-17.749333pt;}
._34_c00262{margin-left:-15.744000pt;}
._3b_c00262{margin-left:-13.690667pt;}
._f_c00262{margin-left:-12.768000pt;}
._2a_c00262{margin-left:-10.325333pt;}
._1d_c00262{margin-left:-8.058667pt;}
._1e_c00262{margin-left:-6.949333pt;}
._0_c00262{margin-left:-5.546667pt;}
._21_c00262{margin-left:-4.624000pt;}
._1c_c00262{margin-left:-3.312000pt;}
._3_c00262{margin-left:-2.218667pt;}
._2_c00262{margin-left:-0.938667pt;}
._5_c00262{width:1.109333pt;}
._6_c00262{width:2.901333pt;}
._b_c00262{width:3.840000pt;}
._7_c00262{width:4.949333pt;}
._8_c00262{width:5.973333pt;}
._d_c00262{width:7.466667pt;}
._16_c00262{width:8.480000pt;}
._15_c00262{width:9.813333pt;}
._12_c00262{width:10.837333pt;}
._a_c00262{width:12.458667pt;}
._14_c00262{width:14.165333pt;}
._2e_c00262{width:15.173333pt;}
._11_c00262{width:16.213333pt;}
._35_c00262{width:17.349333pt;}
._e_c00262{width:18.602667pt;}
._36_c00262{width:19.568000pt;}
._20_c00262{width:21.760000pt;}
._10_c00262{width:23.226667pt;}
._32_c00262{width:24.832000pt;}
._18_c00262{width:25.738667pt;}
._2b_c00262{width:27.322667pt;}
._17_c00262{width:28.906667pt;}
._4_c00262{width:30.976000pt;}
._19_c00262{width:32.085333pt;}
._1a_c00262{width:33.024000pt;}
._26_c00262{width:34.304000pt;}
._13_c00262{width:35.797333pt;}
._25_c00262{width:36.874667pt;}
._c_c00262{width:38.165333pt;}
._24_c00262{width:40.448000pt;}
._1_c00262{width:41.813333pt;}
._1f_c00262{width:43.669333pt;}
._9_c00262{width:44.885333pt;}
._2c_c00262{width:46.048000pt;}
._22_c00262{width:47.776000pt;}
._23_c00262{width:50.010667pt;}
._2d_c00262{width:51.808000pt;}
._31_c00262{width:55.269333pt;}
._37_c00262{width:59.946667pt;}
._1b_c00262{width:62.378667pt;}
._30_c00262{width:63.658667pt;}
._28_c00262{width:65.450667pt;}
._29_c00262{width:68.074667pt;}
._27_c00262{width:154.976000pt;}
._2f_c00262{width:294.218667pt;}
.fs3_c00262{font-size:42.666667pt;}
.fs1_c00262{font-size:74.666667pt;}
.fs0_c00262{font-size:85.333333pt;}
.fs2_c00262{font-size:90.666667pt;}
.y0_c00262{bottom:0.000000pt;}
.y26_c00262{bottom:2.760000pt;}
.y25_c00262{bottom:6.425204pt;}
.y24_c00262{bottom:42.253333pt;}
.y23_c00262{bottom:102.253333pt;}
.y22_c00262{bottom:132.253333pt;}
.y21_c00262{bottom:163.186667pt;}
.y20_c00262{bottom:193.720000pt;}
.y1f_c00262{bottom:223.986667pt;}
.y1e_c00262{bottom:253.720000pt;}
.y1d_c00262{bottom:284.120000pt;}
.y1c_c00262{bottom:314.120000pt;}
.y1b_c00262{bottom:342.786667pt;}
.y1a_c00262{bottom:374.920000pt;}
.y19_c00262{bottom:404.120000pt;}
.y18_c00262{bottom:434.120000pt;}
.y17_c00262{bottom:464.120000pt;}
.y16_c00262{bottom:493.986667pt;}
.y15_c00262{bottom:524.120000pt;}
.y14_c00262{bottom:553.186667pt;}
.y13_c00262{bottom:582.786667pt;}
.y12_c00262{bottom:612.920000pt;}
.y11_c00262{bottom:643.053333pt;}
.y10_c00262{bottom:672.920000pt;}
.yf_c00262{bottom:702.786667pt;}
.ye_c00262{bottom:731.720000pt;}
.yd_c00262{bottom:761.586667pt;}
.yc_c00262{bottom:790.786667pt;}
.yb_c00262{bottom:821.320000pt;}
.ya_c00262{bottom:851.320000pt;}
.y9_c00262{bottom:879.586667pt;}
.y8_c00262{bottom:910.386667pt;}
.y7_c00262{bottom:940.520000pt;}
.y6_c00262{bottom:970.386667pt;}
.y5_c00262{bottom:1000.120000pt;}
.y4_c00262{bottom:1030.520000pt;}
.y3_c00262{bottom:1059.853333pt;}
.y2_c00262{bottom:1089.186667pt;}
.y1_c00262{bottom:1118.653333pt;}
.h4_c00262{height:11.733399pt;}
.h5_c00262{height:38.937500pt;}
.h2_c00262{height:108.041667pt;}
.h3_c00262{height:114.794271pt;}
.h1_c00262{height:1202.666667pt;}
.h0_c00262{height:1202.866667pt;}
.w2_c00262{width:93.222667pt;}
.w0_c00262{width:763.200000pt;}
.w1_c00262{width:763.333333pt;}
.x0_c00262{left:0.000000pt;}
.x8_c00262{left:50.133333pt;}
.x7_c00262{left:51.200000pt;}
.x9_c00262{left:52.133333pt;}
.x5_c00262{left:53.066667pt;}
.x4_c00262{left:54.000000pt;}
.x3_c00262{left:54.933333pt;}
.x2_c00262{left:56.800000pt;}
.xb_c00262{left:57.866667pt;}
.xa_c00262{left:90.933333pt;}
.x6_c00262{left:95.733333pt;}
.xd_c00262{left:338.768229pt;}
.x1_c00262{left:473.466667pt;}
.xc_c00262{left:512.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dee609d2abf145294e77f833.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_0898ecdc1e18d5ff9f96ca71.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_9524f2f954c7acb294497cb9.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00263{vertical-align:-47.400000px;}
.v0_c00263{vertical-align:0.000000px;}
.v2_c00263{vertical-align:34.800000px;}
.v1_c00263{vertical-align:133.800000px;}
.ls2_c00263{letter-spacing:0.000000px;}
.ls1_c00263{letter-spacing:3.000000px;}
.ls0_c00263{letter-spacing:1616.004000px;}
.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;}
}
.ws3_c00263{word-spacing:-34.704000px;}
.ws2_c00263{word-spacing:-23.136000px;}
.ws0_c00263{word-spacing:-20.244000px;}
.ws5_c00263{word-spacing:-12.000000px;}
.ws6_c00263{word-spacing:0.000000px;}
.ws1_c00263{word-spacing:251.136000px;}
.ws4_c00263{word-spacing:482.736000px;}
._2a_c00263{margin-left:-52.704000px;}
._36_c00263{margin-left:-32.496000px;}
._31_c00263{margin-left:-31.452000px;}
._1e_c00263{margin-left:-26.688000px;}
._2b_c00263{margin-left:-25.224000px;}
._27_c00263{margin-left:-23.616000px;}
._1f_c00263{margin-left:-15.456000px;}
._30_c00263{margin-left:-11.916000px;}
._26_c00263{margin-left:-8.160000px;}
._18_c00263{margin-left:-6.048000px;}
._8_c00263{margin-left:-4.416000px;}
._11_c00263{margin-left:-3.072000px;}
._10_c00263{margin-left:-1.440000px;}
._2d_c00263{width:1.212000px;}
._6_c00263{width:2.304000px;}
._b_c00263{width:3.720000px;}
._a_c00263{width:4.812000px;}
._0_c00263{width:6.612000px;}
._d_c00263{width:8.244000px;}
._2_c00263{width:9.804000px;}
._35_c00263{width:10.848000px;}
._1a_c00263{width:12.012000px;}
._1_c00263{width:13.188000px;}
._32_c00263{width:14.316000px;}
._2e_c00263{width:15.480000px;}
._1d_c00263{width:17.700000px;}
._5_c00263{width:18.816000px;}
._4_c00263{width:21.120000px;}
._37_c00263{width:24.204000px;}
._15_c00263{width:25.704000px;}
._20_c00263{width:27.984000px;}
._7_c00263{width:29.952000px;}
._21_c00263{width:31.320000px;}
._19_c00263{width:32.364000px;}
._17_c00263{width:34.368000px;}
._14_c00263{width:35.784000px;}
._1b_c00263{width:37.320000px;}
._16_c00263{width:38.592000px;}
._13_c00263{width:39.840000px;}
._c_c00263{width:41.712000px;}
._2f_c00263{width:43.116000px;}
._24_c00263{width:45.384000px;}
._33_c00263{width:47.184000px;}
._1c_c00263{width:48.216000px;}
._23_c00263{width:49.788000px;}
._22_c00263{width:53.448000px;}
._12_c00263{width:55.404000px;}
._f_c00263{width:57.936000px;}
._2c_c00263{width:59.808000px;}
._25_c00263{width:62.484000px;}
._34_c00263{width:72.000000px;}
._e_c00263{width:75.516000px;}
._3_c00263{width:85.728000px;}
._9_c00263{width:107.328000px;}
._38_c00263{width:121.500000px;}
._28_c00263{width:123.720000px;}
._29_c00263{width:282.588000px;}
._39_c00263{width:543.072000px;}
.fc2_c00263{color:transparent;}
.fc1_c00263{color:rgb(128,128,128);}
.fc0_c00263{color:rgb(0,0,0);}
.fs0_c00263{font-size:36.000000px;}
.fs5_c00263{font-size:48.000000px;}
.fs4_c00263{font-size:78.000000px;}
.fs1_c00263{font-size:84.000000px;}
.fs2_c00263{font-size:96.000000px;}
.fs3_c00263{font-size:144.000000px;}
.y0_c00263{bottom:0.000000px;}
.y22_c00263{bottom:3.105000px;}
.y21_c00263{bottom:7.228369px;}
.y20_c00263{bottom:41.520000px;}
.y1f_c00263{bottom:107.970000px;}
.y1e_c00263{bottom:160.920000px;}
.y1d_c00263{bottom:207.870000px;}
.y1c_c00263{bottom:250.020000px;}
.y1b_c00263{bottom:283.170000px;}
.y1a_c00263{bottom:317.370000px;}
.y19_c00263{bottom:351.720000px;}
.y18_c00263{bottom:386.070000px;}
.y17_c00263{bottom:420.570000px;}
.y16_c00263{bottom:454.170000px;}
.y15_c00263{bottom:488.070000px;}
.y14_c00263{bottom:521.820000px;}
.y13_c00263{bottom:555.870000px;}
.y12_c00263{bottom:589.620000px;}
.y11_c00263{bottom:623.370000px;}
.y10_c00263{bottom:656.820000px;}
.yf_c00263{bottom:691.470000px;}
.ye_c00263{bottom:725.220000px;}
.yd_c00263{bottom:758.970000px;}
.yc_c00263{bottom:784.020000px;}
.yb_c00263{bottom:883.920000px;}
.y8_c00263{bottom:894.720000px;}
.ya_c00263{bottom:934.470000px;}
.y1_c00263{bottom:935.520000px;}
.y9_c00263{bottom:979.470000px;}
.y7_c00263{bottom:1063.170000px;}
.y6_c00263{bottom:1097.520000px;}
.y5_c00263{bottom:1130.970000px;}
.y4_c00263{bottom:1164.720000px;}
.y3_c00263{bottom:1197.720000px;}
.y2_c00263{bottom:1231.170000px;}
.h8_c00263{height:13.200073px;}
.h1_c00263{height:35.314453px;}
.h9_c00263{height:43.804688px;}
.h7_c00263{height:45.580078px;}
.h6_c00263{height:98.314453px;}
.h2_c00263{height:121.546875px;}
.h5_c00263{height:156.346875px;}
.h4_c00263{height:182.320312px;}
.h3_c00263{height:255.346875px;}
.h0_c00263{height:1340.250000px;}
.w2_c00263{width:104.875500px;}
.w1_c00263{width:836.250000px;}
.w0_c00263{width:836.475000px;}
.x0_c00263{left:0.000000px;}
.x10_c00263{left:173.550000px;}
.x1_c00263{left:178.950000px;}
.xf_c00263{left:186.600000px;}
.x11_c00263{left:214.050000px;}
.xe_c00263{left:215.100000px;}
.xd_c00263{left:216.750000px;}
.xc_c00263{left:217.800000px;}
.xb_c00263{left:219.000000px;}
.x4_c00263{left:221.100000px;}
.x5_c00263{left:222.750000px;}
.x3_c00263{left:224.400000px;}
.x2_c00263{left:227.100000px;}
.x9_c00263{left:271.800000px;}
.x13_c00263{left:344.250000px;}
.x7_c00263{left:370.200000px;}
.x8_c00263{left:453.300000px;}
.x12_c00263{left:455.400000px;}
.x6_c00263{left:465.000000px;}
.xa_c00263{left:475.500000px;}
.x14_c00263{left:667.950000px;}
.x15_c00263{left:736.800000px;}
@media print{
.v3_c00263{vertical-align:-42.133333pt;}
.v0_c00263{vertical-align:0.000000pt;}
.v2_c00263{vertical-align:30.933333pt;}
.v1_c00263{vertical-align:118.933333pt;}
.ls2_c00263{letter-spacing:0.000000pt;}
.ls1_c00263{letter-spacing:2.666667pt;}
.ls0_c00263{letter-spacing:1436.448000pt;}
.ws3_c00263{word-spacing:-30.848000pt;}
.ws2_c00263{word-spacing:-20.565333pt;}
.ws0_c00263{word-spacing:-17.994667pt;}
.ws5_c00263{word-spacing:-10.666667pt;}
.ws6_c00263{word-spacing:0.000000pt;}
.ws1_c00263{word-spacing:223.232000pt;}
.ws4_c00263{word-spacing:429.098667pt;}
._2a_c00263{margin-left:-46.848000pt;}
._36_c00263{margin-left:-28.885333pt;}
._31_c00263{margin-left:-27.957333pt;}
._1e_c00263{margin-left:-23.722667pt;}
._2b_c00263{margin-left:-22.421333pt;}
._27_c00263{margin-left:-20.992000pt;}
._1f_c00263{margin-left:-13.738667pt;}
._30_c00263{margin-left:-10.592000pt;}
._26_c00263{margin-left:-7.253333pt;}
._18_c00263{margin-left:-5.376000pt;}
._8_c00263{margin-left:-3.925333pt;}
._11_c00263{margin-left:-2.730667pt;}
._10_c00263{margin-left:-1.280000pt;}
._2d_c00263{width:1.077333pt;}
._6_c00263{width:2.048000pt;}
._b_c00263{width:3.306667pt;}
._a_c00263{width:4.277333pt;}
._0_c00263{width:5.877333pt;}
._d_c00263{width:7.328000pt;}
._2_c00263{width:8.714667pt;}
._35_c00263{width:9.642667pt;}
._1a_c00263{width:10.677333pt;}
._1_c00263{width:11.722667pt;}
._32_c00263{width:12.725333pt;}
._2e_c00263{width:13.760000pt;}
._1d_c00263{width:15.733333pt;}
._5_c00263{width:16.725333pt;}
._4_c00263{width:18.773333pt;}
._37_c00263{width:21.514667pt;}
._15_c00263{width:22.848000pt;}
._20_c00263{width:24.874667pt;}
._7_c00263{width:26.624000pt;}
._21_c00263{width:27.840000pt;}
._19_c00263{width:28.768000pt;}
._17_c00263{width:30.549333pt;}
._14_c00263{width:31.808000pt;}
._1b_c00263{width:33.173333pt;}
._16_c00263{width:34.304000pt;}
._13_c00263{width:35.413333pt;}
._c_c00263{width:37.077333pt;}
._2f_c00263{width:38.325333pt;}
._24_c00263{width:40.341333pt;}
._33_c00263{width:41.941333pt;}
._1c_c00263{width:42.858667pt;}
._23_c00263{width:44.256000pt;}
._22_c00263{width:47.509333pt;}
._12_c00263{width:49.248000pt;}
._f_c00263{width:51.498667pt;}
._2c_c00263{width:53.162667pt;}
._25_c00263{width:55.541333pt;}
._34_c00263{width:64.000000pt;}
._e_c00263{width:67.125333pt;}
._3_c00263{width:76.202667pt;}
._9_c00263{width:95.402667pt;}
._38_c00263{width:108.000000pt;}
._28_c00263{width:109.973333pt;}
._29_c00263{width:251.189333pt;}
._39_c00263{width:482.730667pt;}
.fs0_c00263{font-size:32.000000pt;}
.fs5_c00263{font-size:42.666667pt;}
.fs4_c00263{font-size:69.333333pt;}
.fs1_c00263{font-size:74.666667pt;}
.fs2_c00263{font-size:85.333333pt;}
.fs3_c00263{font-size:128.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y22_c00263{bottom:2.760000pt;}
.y21_c00263{bottom:6.425217pt;}
.y20_c00263{bottom:36.906667pt;}
.y1f_c00263{bottom:95.973333pt;}
.y1e_c00263{bottom:143.040000pt;}
.y1d_c00263{bottom:184.773333pt;}
.y1c_c00263{bottom:222.240000pt;}
.y1b_c00263{bottom:251.706667pt;}
.y1a_c00263{bottom:282.106667pt;}
.y19_c00263{bottom:312.640000pt;}
.y18_c00263{bottom:343.173333pt;}
.y17_c00263{bottom:373.840000pt;}
.y16_c00263{bottom:403.706667pt;}
.y15_c00263{bottom:433.840000pt;}
.y14_c00263{bottom:463.840000pt;}
.y13_c00263{bottom:494.106667pt;}
.y12_c00263{bottom:524.106667pt;}
.y11_c00263{bottom:554.106667pt;}
.y10_c00263{bottom:583.840000pt;}
.yf_c00263{bottom:614.640000pt;}
.ye_c00263{bottom:644.640000pt;}
.yd_c00263{bottom:674.640000pt;}
.yc_c00263{bottom:696.906667pt;}
.yb_c00263{bottom:785.706667pt;}
.y8_c00263{bottom:795.306667pt;}
.ya_c00263{bottom:830.640000pt;}
.y1_c00263{bottom:831.573333pt;}
.y9_c00263{bottom:870.640000pt;}
.y7_c00263{bottom:945.040000pt;}
.y6_c00263{bottom:975.573333pt;}
.y5_c00263{bottom:1005.306667pt;}
.y4_c00263{bottom:1035.306667pt;}
.y3_c00263{bottom:1064.640000pt;}
.y2_c00263{bottom:1094.373333pt;}
.h8_c00263{height:11.733399pt;}
.h1_c00263{height:31.390625pt;}
.h9_c00263{height:38.937500pt;}
.h7_c00263{height:40.515625pt;}
.h6_c00263{height:87.390625pt;}
.h2_c00263{height:108.041667pt;}
.h5_c00263{height:138.975000pt;}
.h4_c00263{height:162.062500pt;}
.h3_c00263{height:226.975000pt;}
.h0_c00263{height:1191.333333pt;}
.w2_c00263{width:93.222667pt;}
.w1_c00263{width:743.333333pt;}
.w0_c00263{width:743.533333pt;}
.x0_c00263{left:0.000000pt;}
.x10_c00263{left:154.266667pt;}
.x1_c00263{left:159.066667pt;}
.xf_c00263{left:165.866667pt;}
.x11_c00263{left:190.266667pt;}
.xe_c00263{left:191.200000pt;}
.xd_c00263{left:192.666667pt;}
.xc_c00263{left:193.600000pt;}
.xb_c00263{left:194.666667pt;}
.x4_c00263{left:196.533333pt;}
.x5_c00263{left:198.000000pt;}
.x3_c00263{left:199.466667pt;}
.x2_c00263{left:201.866667pt;}
.x9_c00263{left:241.600000pt;}
.x13_c00263{left:306.000000pt;}
.x7_c00263{left:329.066667pt;}
.x8_c00263{left:402.933333pt;}
.x12_c00263{left:404.800000pt;}
.x6_c00263{left:413.333333pt;}
.xa_c00263{left:422.666667pt;}
.x14_c00263{left:593.733333pt;}
.x15_c00263{left:654.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_43008bfc8204790fafb56bf8.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_526794fe114dba79fda9fbbd.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_5564c819fbcccf177944d2d0.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_debe9ae3545015d887c44584.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls3_c00264{letter-spacing:-9.000000px;}
.ls2_c00264{letter-spacing:0.000000px;}
.ls1_c00264{letter-spacing:14.292000px;}
.ls0_c00264{letter-spacing:209.928000px;}
.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;}
}
.ws3_c00264{word-spacing:-80.784000px;}
.ws2_c00264{word-spacing:-64.627200px;}
.ws5_c00264{word-spacing:-63.504000px;}
.ws0_c00264{word-spacing:-34.704000px;}
.ws4_c00264{word-spacing:-23.136000px;}
.ws6_c00264{word-spacing:0.000000px;}
.ws1_c00264{word-spacing:8.832000px;}
._6_c00264{margin-left:-125.712000px;}
._3a_c00264{margin-left:-86.112000px;}
._1c_c00264{margin-left:-40.800000px;}
._13_c00264{margin-left:-35.280000px;}
._11_c00264{margin-left:-30.753600px;}
._3e_c00264{margin-left:-27.840000px;}
._42_c00264{margin-left:-25.824000px;}
._1a_c00264{margin-left:-24.768000px;}
._15_c00264{margin-left:-20.592000px;}
._17_c00264{margin-left:-15.936000px;}
._1b_c00264{margin-left:-13.440000px;}
._b_c00264{margin-left:-10.800000px;}
._36_c00264{margin-left:-9.456000px;}
._f_c00264{margin-left:-7.992000px;}
._c_c00264{margin-left:-6.480000px;}
._4_c00264{margin-left:-5.112000px;}
._d_c00264{margin-left:-3.888000px;}
._8_c00264{margin-left:-2.160000px;}
._e_c00264{margin-left:-1.008000px;}
._20_c00264{width:1.920000px;}
._27_c00264{width:3.264000px;}
._1d_c00264{width:4.368000px;}
._2_c00264{width:5.472000px;}
._1_c00264{width:7.056000px;}
._0_c00264{width:8.064000px;}
._1e_c00264{width:9.120000px;}
._2f_c00264{width:10.416000px;}
._16_c00264{width:11.808000px;}
._22_c00264{width:13.200000px;}
._21_c00264{width:14.688000px;}
._a_c00264{width:16.704000px;}
._30_c00264{width:18.192000px;}
._1f_c00264{width:19.200000px;}
._5_c00264{width:20.448000px;}
._3_c00264{width:22.392000px;}
._31_c00264{width:25.776000px;}
._2e_c00264{width:27.888000px;}
._14_c00264{width:28.944000px;}
._2d_c00264{width:30.288000px;}
._28_c00264{width:31.392000px;}
._23_c00264{width:32.592000px;}
._2b_c00264{width:33.888000px;}
._32_c00264{width:35.040000px;}
._33_c00264{width:37.056000px;}
._26_c00264{width:38.064000px;}
._35_c00264{width:39.168000px;}
._24_c00264{width:41.232000px;}
._25_c00264{width:42.864000px;}
._34_c00264{width:45.504000px;}
._2a_c00264{width:47.136000px;}
._45_c00264{width:48.240000px;}
._19_c00264{width:49.560000px;}
._29_c00264{width:51.072000px;}
._2c_c00264{width:52.320000px;}
._38_c00264{width:53.928000px;}
._7_c00264{width:55.008000px;}
._40_c00264{width:56.352000px;}
._18_c00264{width:60.384000px;}
._3f_c00264{width:66.528000px;}
._44_c00264{width:75.936000px;}
._43_c00264{width:80.016000px;}
._3d_c00264{width:82.512000px;}
._10_c00264{width:102.816000px;}
._12_c00264{width:106.272000px;}
._37_c00264{width:114.240000px;}
._9_c00264{width:123.984000px;}
._41_c00264{width:135.696000px;}
._3c_c00264{width:152.880000px;}
._39_c00264{width:198.768000px;}
._3b_c00264{width:546.816000px;}
._46_c00264{width:716.160000px;}
.fc2_c00264{color:transparent;}
.fc1_c00264{color:rgb(128,128,128);}
.fc0_c00264{color:rgb(0,0,0);}
.fs5_c00264{font-size:48.000000px;}
.fs4_c00264{font-size:84.000000px;}
.fs3_c00264{font-size:96.000000px;}
.fs2_c00264{font-size:115.200000px;}
.fs0_c00264{font-size:144.000000px;}
.fs1_c00264{font-size:168.000000px;}
.y0_c00264{bottom:0.000000px;}
.y27_c00264{bottom:3.105000px;}
.y26_c00264{bottom:7.228369px;}
.y25_c00264{bottom:66.420000px;}
.y24_c00264{bottom:101.220000px;}
.y23_c00264{bottom:136.020000px;}
.y22_c00264{bottom:170.070000px;}
.y21_c00264{bottom:204.120000px;}
.y20_c00264{bottom:238.020000px;}
.y1f_c00264{bottom:271.920000px;}
.y1e_c00264{bottom:305.820000px;}
.y1d_c00264{bottom:339.120000px;}
.y1c_c00264{bottom:373.320000px;}
.y1b_c00264{bottom:407.070000px;}
.y1a_c00264{bottom:440.820000px;}
.y19_c00264{bottom:474.570000px;}
.y18_c00264{bottom:508.920000px;}
.y17_c00264{bottom:542.070000px;}
.y16_c00264{bottom:576.720000px;}
.y15_c00264{bottom:608.820000px;}
.y14_c00264{bottom:643.170000px;}
.y13_c00264{bottom:677.070000px;}
.y12_c00264{bottom:709.770000px;}
.y11_c00264{bottom:743.220000px;}
.y10_c00264{bottom:776.520000px;}
.yf_c00264{bottom:809.670000px;}
.ye_c00264{bottom:842.670000px;}
.yd_c00264{bottom:877.170000px;}
.yc_c00264{bottom:910.170000px;}
.yb_c00264{bottom:943.020000px;}
.ya_c00264{bottom:976.320000px;}
.y9_c00264{bottom:1009.470000px;}
.y8_c00264{bottom:1044.270000px;}
.y7_c00264{bottom:1078.920000px;}
.y6_c00264{bottom:1111.770000px;}
.y5_c00264{bottom:1149.120000px;}
.y4_c00264{bottom:1154.520000px;}
.y2_c00264{bottom:1183.620000px;}
.y1_c00264{bottom:1233.270000px;}
.y3_c00264{bottom:1250.070000px;}
.h5_c00264{height:13.200073px;}
.h6_c00264{height:43.804688px;}
.h3_c00264{height:121.546875px;}
.h4_c00264{height:122.146875px;}
.h2_c00264{height:182.320312px;}
.h0_c00264{height:1356.450000px;}
.h1_c00264{height:1356.750000px;}
.w2_c00264{width:104.875500px;}
.w0_c00264{width:860.775000px;}
.w1_c00264{width:861.000000px;}
.x0_c00264{left:0.000000px;}
.xb_c00264{left:60.150000px;}
.xa_c00264{left:61.200000px;}
.x9_c00264{left:62.400000px;}
.x8_c00264{left:63.450000px;}
.x1_c00264{left:65.250000px;}
.x5_c00264{left:114.150000px;}
.x7_c00264{left:260.550000px;}
.x6_c00264{left:265.950000px;}
.x2_c00264{left:280.200000px;}
.xc_c00264{left:361.500000px;}
.xd_c00264{left:382.201721px;}
.x4_c00264{left:483.600000px;}
.x3_c00264{left:533.250000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls3_c00264{letter-spacing:-8.000000pt;}
.ls2_c00264{letter-spacing:0.000000pt;}
.ls1_c00264{letter-spacing:12.704000pt;}
.ls0_c00264{letter-spacing:186.602667pt;}
.ws3_c00264{word-spacing:-71.808000pt;}
.ws2_c00264{word-spacing:-57.446400pt;}
.ws5_c00264{word-spacing:-56.448000pt;}
.ws0_c00264{word-spacing:-30.848000pt;}
.ws4_c00264{word-spacing:-20.565333pt;}
.ws6_c00264{word-spacing:0.000000pt;}
.ws1_c00264{word-spacing:7.850667pt;}
._6_c00264{margin-left:-111.744000pt;}
._3a_c00264{margin-left:-76.544000pt;}
._1c_c00264{margin-left:-36.266667pt;}
._13_c00264{margin-left:-31.360000pt;}
._11_c00264{margin-left:-27.336533pt;}
._3e_c00264{margin-left:-24.746667pt;}
._42_c00264{margin-left:-22.954667pt;}
._1a_c00264{margin-left:-22.016000pt;}
._15_c00264{margin-left:-18.304000pt;}
._17_c00264{margin-left:-14.165333pt;}
._1b_c00264{margin-left:-11.946667pt;}
._b_c00264{margin-left:-9.600000pt;}
._36_c00264{margin-left:-8.405333pt;}
._f_c00264{margin-left:-7.104000pt;}
._c_c00264{margin-left:-5.760000pt;}
._4_c00264{margin-left:-4.544000pt;}
._d_c00264{margin-left:-3.456000pt;}
._8_c00264{margin-left:-1.920000pt;}
._e_c00264{margin-left:-0.896000pt;}
._20_c00264{width:1.706667pt;}
._27_c00264{width:2.901333pt;}
._1d_c00264{width:3.882667pt;}
._2_c00264{width:4.864000pt;}
._1_c00264{width:6.272000pt;}
._0_c00264{width:7.168000pt;}
._1e_c00264{width:8.106667pt;}
._2f_c00264{width:9.258667pt;}
._16_c00264{width:10.496000pt;}
._22_c00264{width:11.733333pt;}
._21_c00264{width:13.056000pt;}
._a_c00264{width:14.848000pt;}
._30_c00264{width:16.170667pt;}
._1f_c00264{width:17.066667pt;}
._5_c00264{width:18.176000pt;}
._3_c00264{width:19.904000pt;}
._31_c00264{width:22.912000pt;}
._2e_c00264{width:24.789333pt;}
._14_c00264{width:25.728000pt;}
._2d_c00264{width:26.922667pt;}
._28_c00264{width:27.904000pt;}
._23_c00264{width:28.970667pt;}
._2b_c00264{width:30.122667pt;}
._32_c00264{width:31.146667pt;}
._33_c00264{width:32.938667pt;}
._26_c00264{width:33.834667pt;}
._35_c00264{width:34.816000pt;}
._24_c00264{width:36.650667pt;}
._25_c00264{width:38.101333pt;}
._34_c00264{width:40.448000pt;}
._2a_c00264{width:41.898667pt;}
._45_c00264{width:42.880000pt;}
._19_c00264{width:44.053333pt;}
._29_c00264{width:45.397333pt;}
._2c_c00264{width:46.506667pt;}
._38_c00264{width:47.936000pt;}
._7_c00264{width:48.896000pt;}
._40_c00264{width:50.090667pt;}
._18_c00264{width:53.674667pt;}
._3f_c00264{width:59.136000pt;}
._44_c00264{width:67.498667pt;}
._43_c00264{width:71.125333pt;}
._3d_c00264{width:73.344000pt;}
._10_c00264{width:91.392000pt;}
._12_c00264{width:94.464000pt;}
._37_c00264{width:101.546667pt;}
._9_c00264{width:110.208000pt;}
._41_c00264{width:120.618667pt;}
._3c_c00264{width:135.893333pt;}
._39_c00264{width:176.682667pt;}
._3b_c00264{width:486.058667pt;}
._46_c00264{width:636.586667pt;}
.fs5_c00264{font-size:42.666667pt;}
.fs4_c00264{font-size:74.666667pt;}
.fs3_c00264{font-size:85.333333pt;}
.fs2_c00264{font-size:102.400000pt;}
.fs0_c00264{font-size:128.000000pt;}
.fs1_c00264{font-size:149.333333pt;}
.y0_c00264{bottom:0.000000pt;}
.y27_c00264{bottom:2.760000pt;}
.y26_c00264{bottom:6.425217pt;}
.y25_c00264{bottom:59.040000pt;}
.y24_c00264{bottom:89.973333pt;}
.y23_c00264{bottom:120.906667pt;}
.y22_c00264{bottom:151.173333pt;}
.y21_c00264{bottom:181.440000pt;}
.y20_c00264{bottom:211.573333pt;}
.y1f_c00264{bottom:241.706667pt;}
.y1e_c00264{bottom:271.840000pt;}
.y1d_c00264{bottom:301.440000pt;}
.y1c_c00264{bottom:331.840000pt;}
.y1b_c00264{bottom:361.840000pt;}
.y1a_c00264{bottom:391.840000pt;}
.y19_c00264{bottom:421.840000pt;}
.y18_c00264{bottom:452.373333pt;}
.y17_c00264{bottom:481.840000pt;}
.y16_c00264{bottom:512.640000pt;}
.y15_c00264{bottom:541.173333pt;}
.y14_c00264{bottom:571.706667pt;}
.y13_c00264{bottom:601.840000pt;}
.y12_c00264{bottom:630.906667pt;}
.y11_c00264{bottom:660.640000pt;}
.y10_c00264{bottom:690.240000pt;}
.yf_c00264{bottom:719.706667pt;}
.ye_c00264{bottom:749.040000pt;}
.yd_c00264{bottom:779.706667pt;}
.yc_c00264{bottom:809.040000pt;}
.yb_c00264{bottom:838.240000pt;}
.ya_c00264{bottom:867.840000pt;}
.y9_c00264{bottom:897.306667pt;}
.y8_c00264{bottom:928.240000pt;}
.y7_c00264{bottom:959.040000pt;}
.y6_c00264{bottom:988.240000pt;}
.y5_c00264{bottom:1021.440000pt;}
.y4_c00264{bottom:1026.240000pt;}
.y2_c00264{bottom:1052.106667pt;}
.y1_c00264{bottom:1096.240000pt;}
.y3_c00264{bottom:1111.173333pt;}
.h5_c00264{height:11.733399pt;}
.h6_c00264{height:38.937500pt;}
.h3_c00264{height:108.041667pt;}
.h4_c00264{height:108.575000pt;}
.h2_c00264{height:162.062500pt;}
.h0_c00264{height:1205.733333pt;}
.h1_c00264{height:1206.000000pt;}
.w2_c00264{width:93.222667pt;}
.w0_c00264{width:765.133333pt;}
.w1_c00264{width:765.333333pt;}
.x0_c00264{left:0.000000pt;}
.xb_c00264{left:53.466667pt;}
.xa_c00264{left:54.400000pt;}
.x9_c00264{left:55.466667pt;}
.x8_c00264{left:56.400000pt;}
.x1_c00264{left:58.000000pt;}
.x5_c00264{left:101.466667pt;}
.x7_c00264{left:231.600000pt;}
.x6_c00264{left:236.400000pt;}
.x2_c00264{left:249.066667pt;}
.xc_c00264{left:321.333333pt;}
.xd_c00264{left:339.734863pt;}
.x4_c00264{left:429.866667pt;}
.x3_c00264{left:474.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_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_af00f6e231c2006dce00edf3.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_4571fab4ec7deed73cf65eed.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_466056eab155a87484b64868.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;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_c00265;src:url('chunks/assets/font_418e16e3f7190b38d90a626c.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_752549b2f2d8dd2cd5e2c813.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00265;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00265{font-family:ff7_c00265;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls4_c00265{letter-spacing:0.000000px;}
.ls2_c00265{letter-spacing:5.400000px;}
.ls5_c00265{letter-spacing:6.000000px;}
.ls3_c00265{letter-spacing:10.800000px;}
.ls0_c00265{letter-spacing:11.052000px;}
.ls1_c00265{letter-spacing:21.900000px;}
.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;}
}
.ws1_c00265{word-spacing:-51.000000px;}
.ws0_c00265{word-spacing:-20.244000px;}
.ws2_c00265{word-spacing:-6.052800px;}
.ws3_c00265{word-spacing:0.000000px;}
._3c_c00265{margin-left:-47.616000px;}
._30_c00265{margin-left:-32.640000px;}
._3a_c00265{margin-left:-31.200000px;}
._22_c00265{margin-left:-26.688000px;}
._33_c00265{margin-left:-23.904000px;}
._40_c00265{margin-left:-22.848000px;}
._29_c00265{margin-left:-21.216000px;}
._28_c00265{margin-left:-18.816000px;}
._2d_c00265{margin-left:-17.508000px;}
._19_c00265{margin-left:-16.032000px;}
._48_c00265{margin-left:-14.736000px;}
._24_c00265{margin-left:-13.548000px;}
._25_c00265{margin-left:-11.616000px;}
._2b_c00265{margin-left:-10.176000px;}
._27_c00265{margin-left:-9.120000px;}
._2a_c00265{margin-left:-7.776000px;}
._1c_c00265{margin-left:-6.528000px;}
._1d_c00265{margin-left:-5.280000px;}
._1e_c00265{margin-left:-3.912000px;}
._d_c00265{margin-left:-2.784000px;}
._e_c00265{margin-left:-1.728000px;}
._8_c00265{width:1.632000px;}
._0_c00265{width:3.264000px;}
._1_c00265{width:4.320000px;}
._2_c00265{width:5.376000px;}
._7_c00265{width:6.624000px;}
._a_c00265{width:8.064000px;}
._b_c00265{width:9.792000px;}
._5_c00265{width:11.232000px;}
._15_c00265{width:12.384000px;}
._6_c00265{width:13.824000px;}
._16_c00265{width:15.552000px;}
._11_c00265{width:17.184000px;}
._14_c00265{width:19.008000px;}
._26_c00265{width:20.160000px;}
._1a_c00265{width:22.008000px;}
._12_c00265{width:24.192000px;}
._10_c00265{width:26.016000px;}
._47_c00265{width:27.108000px;}
._17_c00265{width:28.224000px;}
._9_c00265{width:29.664000px;}
._18_c00265{width:31.488000px;}
._44_c00265{width:32.544000px;}
._3_c00265{width:34.200000px;}
._1b_c00265{width:37.032000px;}
._46_c00265{width:38.328000px;}
._23_c00265{width:39.360000px;}
._c_c00265{width:40.416000px;}
._1f_c00265{width:41.472000px;}
._21_c00265{width:42.816000px;}
._13_c00265{width:44.928000px;}
._38_c00265{width:46.368000px;}
._2e_c00265{width:47.760000px;}
._2c_c00265{width:49.728000px;}
._4_c00265{width:51.720000px;}
._45_c00265{width:55.776000px;}
._37_c00265{width:58.560000px;}
._36_c00265{width:62.016000px;}
._35_c00265{width:64.896000px;}
._20_c00265{width:67.392000px;}
._3e_c00265{width:73.344000px;}
._31_c00265{width:99.504000px;}
._3f_c00265{width:152.928000px;}
._42_c00265{width:159.936000px;}
._f_c00265{width:163.776000px;}
._4b_c00265{width:166.644000px;}
._43_c00265{width:182.784000px;}
._32_c00265{width:184.938000px;}
._3b_c00265{width:199.200000px;}
._34_c00265{width:243.840000px;}
._3d_c00265{width:284.640000px;}
._49_c00265{width:297.924000px;}
._41_c00265{width:304.224000px;}
._2f_c00265{width:345.120000px;}
._39_c00265{width:638.112000px;}
._4a_c00265{width:1444.356000px;}
.fc2_c00265{color:transparent;}
.fc1_c00265{color:rgb(128,128,128);}
.fc0_c00265{color:rgb(0,0,0);}
.fs6_c00265{font-size:48.000000px;}
.fs5_c00265{font-size:52.800000px;}
.fs4_c00265{font-size:66.000000px;}
.fs1_c00265{font-size:84.000000px;}
.fs0_c00265{font-size:96.000000px;}
.fs2_c00265{font-size:99.000000px;}
.fs3_c00265{font-size:102.000000px;}
.y0_c00265{bottom:0.000000px;}
.y26_c00265{bottom:3.105000px;}
.y25_c00265{bottom:7.228357px;}
.y24_c00265{bottom:81.030000px;}
.y23_c00265{bottom:111.330000px;}
.y22_c00265{bottom:146.430000px;}
.y21_c00265{bottom:180.180000px;}
.y20_c00265{bottom:214.680000px;}
.y1f_c00265{bottom:249.480000px;}
.y1e_c00265{bottom:283.230000px;}
.y1d_c00265{bottom:318.930000px;}
.y1c_c00265{bottom:351.780000px;}
.y1b_c00265{bottom:387.780000px;}
.y1a_c00265{bottom:421.230000px;}
.y19_c00265{bottom:455.280000px;}
.y18_c00265{bottom:489.480000px;}
.y17_c00265{bottom:523.830000px;}
.y16_c00265{bottom:557.880000px;}
.y15_c00265{bottom:590.280000px;}
.y14_c00265{bottom:625.380000px;}
.y13_c00265{bottom:659.880000px;}
.y12_c00265{bottom:693.930000px;}
.y11_c00265{bottom:727.980000px;}
.y10_c00265{bottom:760.080000px;}
.yf_c00265{bottom:795.480000px;}
.ye_c00265{bottom:829.230000px;}
.yd_c00265{bottom:863.430000px;}
.yc_c00265{bottom:897.030000px;}
.yb_c00265{bottom:930.480000px;}
.ya_c00265{bottom:963.930000px;}
.y9_c00265{bottom:997.680000px;}
.y8_c00265{bottom:1031.430000px;}
.y7_c00265{bottom:1065.180000px;}
.y6_c00265{bottom:1098.330000px;}
.y5_c00265{bottom:1130.730000px;}
.y4_c00265{bottom:1165.380000px;}
.y3_c00265{bottom:1198.830000px;}
.y2_c00265{bottom:1232.880000px;}
.y1_c00265{bottom:1265.580000px;}
.h4_c00265{height:13.200074px;}
.h5_c00265{height:43.804688px;}
.h3_c00265{height:83.563477px;}
.h2_c00265{height:121.546875px;}
.h0_c00265{height:1382.700000px;}
.h1_c00265{height:1383.000000px;}
.w2_c00265{width:104.875500px;}
.w0_c00265{width:863.175000px;}
.w1_c00265{width:863.250000px;}
.x0_c00265{left:0.000000px;}
.x9_c00265{left:170.400000px;}
.xa_c00265{left:213.000000px;}
.x7_c00265{left:214.200000px;}
.xc_c00265{left:252.450000px;}
.xb_c00265{left:254.100000px;}
.x5_c00265{left:255.150000px;}
.x2_c00265{left:256.800000px;}
.x1_c00265{left:257.850000px;}
.x3_c00265{left:258.900000px;}
.x6_c00265{left:301.050000px;}
.x8_c00265{left:308.700000px;}
.x4_c00265{left:317.850000px;}
.xd_c00265{left:383.401749px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls4_c00265{letter-spacing:0.000000pt;}
.ls2_c00265{letter-spacing:4.800000pt;}
.ls5_c00265{letter-spacing:5.333333pt;}
.ls3_c00265{letter-spacing:9.600000pt;}
.ls0_c00265{letter-spacing:9.824000pt;}
.ls1_c00265{letter-spacing:19.466667pt;}
.ws1_c00265{word-spacing:-45.333333pt;}
.ws0_c00265{word-spacing:-17.994667pt;}
.ws2_c00265{word-spacing:-5.380267pt;}
.ws3_c00265{word-spacing:0.000000pt;}
._3c_c00265{margin-left:-42.325333pt;}
._30_c00265{margin-left:-29.013333pt;}
._3a_c00265{margin-left:-27.733333pt;}
._22_c00265{margin-left:-23.722667pt;}
._33_c00265{margin-left:-21.248000pt;}
._40_c00265{margin-left:-20.309333pt;}
._29_c00265{margin-left:-18.858667pt;}
._28_c00265{margin-left:-16.725333pt;}
._2d_c00265{margin-left:-15.562667pt;}
._19_c00265{margin-left:-14.250667pt;}
._48_c00265{margin-left:-13.098667pt;}
._24_c00265{margin-left:-12.042667pt;}
._25_c00265{margin-left:-10.325333pt;}
._2b_c00265{margin-left:-9.045333pt;}
._27_c00265{margin-left:-8.106667pt;}
._2a_c00265{margin-left:-6.912000pt;}
._1c_c00265{margin-left:-5.802667pt;}
._1d_c00265{margin-left:-4.693333pt;}
._1e_c00265{margin-left:-3.477333pt;}
._d_c00265{margin-left:-2.474667pt;}
._e_c00265{margin-left:-1.536000pt;}
._8_c00265{width:1.450667pt;}
._0_c00265{width:2.901333pt;}
._1_c00265{width:3.840000pt;}
._2_c00265{width:4.778667pt;}
._7_c00265{width:5.888000pt;}
._a_c00265{width:7.168000pt;}
._b_c00265{width:8.704000pt;}
._5_c00265{width:9.984000pt;}
._15_c00265{width:11.008000pt;}
._6_c00265{width:12.288000pt;}
._16_c00265{width:13.824000pt;}
._11_c00265{width:15.274667pt;}
._14_c00265{width:16.896000pt;}
._26_c00265{width:17.920000pt;}
._1a_c00265{width:19.562667pt;}
._12_c00265{width:21.504000pt;}
._10_c00265{width:23.125333pt;}
._47_c00265{width:24.096000pt;}
._17_c00265{width:25.088000pt;}
._9_c00265{width:26.368000pt;}
._18_c00265{width:27.989333pt;}
._44_c00265{width:28.928000pt;}
._3_c00265{width:30.400000pt;}
._1b_c00265{width:32.917333pt;}
._46_c00265{width:34.069333pt;}
._23_c00265{width:34.986667pt;}
._c_c00265{width:35.925333pt;}
._1f_c00265{width:36.864000pt;}
._21_c00265{width:38.058667pt;}
._13_c00265{width:39.936000pt;}
._38_c00265{width:41.216000pt;}
._2e_c00265{width:42.453333pt;}
._2c_c00265{width:44.202667pt;}
._4_c00265{width:45.973333pt;}
._45_c00265{width:49.578667pt;}
._37_c00265{width:52.053333pt;}
._36_c00265{width:55.125333pt;}
._35_c00265{width:57.685333pt;}
._20_c00265{width:59.904000pt;}
._3e_c00265{width:65.194667pt;}
._31_c00265{width:88.448000pt;}
._3f_c00265{width:135.936000pt;}
._42_c00265{width:142.165333pt;}
._f_c00265{width:145.578667pt;}
._4b_c00265{width:148.128000pt;}
._43_c00265{width:162.474667pt;}
._32_c00265{width:164.389333pt;}
._3b_c00265{width:177.066667pt;}
._34_c00265{width:216.746667pt;}
._3d_c00265{width:253.013333pt;}
._49_c00265{width:264.821333pt;}
._41_c00265{width:270.421333pt;}
._2f_c00265{width:306.773333pt;}
._39_c00265{width:567.210667pt;}
._4a_c00265{width:1283.872000pt;}
.fs6_c00265{font-size:42.666667pt;}
.fs5_c00265{font-size:46.933333pt;}
.fs4_c00265{font-size:58.666667pt;}
.fs1_c00265{font-size:74.666667pt;}
.fs0_c00265{font-size:85.333333pt;}
.fs2_c00265{font-size:88.000000pt;}
.fs3_c00265{font-size:90.666667pt;}
.y0_c00265{bottom:0.000000pt;}
.y26_c00265{bottom:2.760000pt;}
.y25_c00265{bottom:6.425206pt;}
.y24_c00265{bottom:72.026667pt;}
.y23_c00265{bottom:98.960000pt;}
.y22_c00265{bottom:130.160000pt;}
.y21_c00265{bottom:160.160000pt;}
.y20_c00265{bottom:190.826667pt;}
.y1f_c00265{bottom:221.760000pt;}
.y1e_c00265{bottom:251.760000pt;}
.y1d_c00265{bottom:283.493333pt;}
.y1c_c00265{bottom:312.693333pt;}
.y1b_c00265{bottom:344.693333pt;}
.y1a_c00265{bottom:374.426667pt;}
.y19_c00265{bottom:404.693333pt;}
.y18_c00265{bottom:435.093333pt;}
.y17_c00265{bottom:465.626667pt;}
.y16_c00265{bottom:495.893333pt;}
.y15_c00265{bottom:524.693333pt;}
.y14_c00265{bottom:555.893333pt;}
.y13_c00265{bottom:586.560000pt;}
.y12_c00265{bottom:616.826667pt;}
.y11_c00265{bottom:647.093333pt;}
.y10_c00265{bottom:675.626667pt;}
.yf_c00265{bottom:707.093333pt;}
.ye_c00265{bottom:737.093333pt;}
.yd_c00265{bottom:767.493333pt;}
.yc_c00265{bottom:797.360000pt;}
.yb_c00265{bottom:827.093333pt;}
.ya_c00265{bottom:856.826667pt;}
.y9_c00265{bottom:886.826667pt;}
.y8_c00265{bottom:916.826667pt;}
.y7_c00265{bottom:946.826667pt;}
.y6_c00265{bottom:976.293333pt;}
.y5_c00265{bottom:1005.093333pt;}
.y4_c00265{bottom:1035.893333pt;}
.y3_c00265{bottom:1065.626667pt;}
.y2_c00265{bottom:1095.893333pt;}
.y1_c00265{bottom:1124.960000pt;}
.h4_c00265{height:11.733399pt;}
.h5_c00265{height:38.937500pt;}
.h3_c00265{height:74.278646pt;}
.h2_c00265{height:108.041667pt;}
.h0_c00265{height:1229.066667pt;}
.h1_c00265{height:1229.333333pt;}
.w2_c00265{width:93.222667pt;}
.w0_c00265{width:767.266667pt;}
.w1_c00265{width:767.333333pt;}
.x0_c00265{left:0.000000pt;}
.x9_c00265{left:151.466667pt;}
.xa_c00265{left:189.333333pt;}
.x7_c00265{left:190.400000pt;}
.xc_c00265{left:224.400000pt;}
.xb_c00265{left:225.866667pt;}
.x5_c00265{left:226.800000pt;}
.x2_c00265{left:228.266667pt;}
.x1_c00265{left:229.200000pt;}
.x3_c00265{left:230.133333pt;}
.x6_c00265{left:267.600000pt;}
.x8_c00265{left:274.400000pt;}
.x4_c00265{left:282.533333pt;}
.xd_c00265{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a705c6ba851ec0398205e421.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_da7b97c12c364b7bb7931a19.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_9072e991262d00ec66afebe7.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00266{word-spacing:-63.504000px;}
.ws0_c00266{word-spacing:-23.136000px;}
.ws2_c00266{word-spacing:0.000000px;}
._16_c00266{margin-left:-43.200000px;}
._25_c00266{margin-left:-33.942000px;}
._2c_c00266{margin-left:-31.104000px;}
._24_c00266{margin-left:-26.784000px;}
._2a_c00266{margin-left:-25.632000px;}
._28_c00266{margin-left:-23.904000px;}
._2e_c00266{margin-left:-18.720000px;}
._a_c00266{margin-left:-17.568000px;}
._2b_c00266{margin-left:-11.808000px;}
._27_c00266{margin-left:-10.656000px;}
._19_c00266{margin-left:-9.504000px;}
._10_c00266{margin-left:-7.200000px;}
._f_c00266{margin-left:-5.280000px;}
._14_c00266{margin-left:-3.168000px;}
._e_c00266{margin-left:-2.016000px;}
._15_c00266{width:1.056000px;}
._c_c00266{width:2.112000px;}
._3_c00266{width:4.128000px;}
._2_c00266{width:5.280000px;}
._7_c00266{width:6.720000px;}
._6_c00266{width:7.776000px;}
._5_c00266{width:9.216000px;}
._8_c00266{width:10.944000px;}
._11_c00266{width:12.480000px;}
._1_c00266{width:13.728000px;}
._d_c00266{width:15.552000px;}
._18_c00266{width:16.608000px;}
._4_c00266{width:18.432000px;}
._0_c00266{width:19.680000px;}
._1b_c00266{width:21.504000px;}
._20_c00266{width:25.248000px;}
._22_c00266{width:26.304000px;}
._b_c00266{width:27.648000px;}
._33_c00266{width:29.568000px;}
._9_c00266{width:30.624000px;}
._1f_c00266{width:32.544000px;}
._17_c00266{width:34.848000px;}
._1d_c00266{width:36.768000px;}
._13_c00266{width:37.920000px;}
._1e_c00266{width:40.416000px;}
._26_c00266{width:41.472000px;}
._1a_c00266{width:42.624000px;}
._30_c00266{width:43.872000px;}
._12_c00266{width:47.520000px;}
._2f_c00266{width:50.112000px;}
._29_c00266{width:52.032000px;}
._23_c00266{width:53.856000px;}
._1c_c00266{width:55.584000px;}
._21_c00266{width:60.192000px;}
._2d_c00266{width:63.936000px;}
._34_c00266{width:70.743000px;}
._32_c00266{width:78.048000px;}
._31_c00266{width:180.984000px;}
.fc2_c00266{color:transparent;}
.fc1_c00266{color:rgb(128,128,128);}
.fc0_c00266{color:rgb(0,0,0);}
.fs5_c00266{font-size:48.000000px;}
.fs3_c00266{font-size:84.000000px;}
.fs4_c00266{font-size:87.000000px;}
.fs0_c00266{font-size:96.000000px;}
.fs1_c00266{font-size:102.000000px;}
.fs2_c00266{font-size:114.000000px;}
.y0_c00266{bottom:0.000000px;}
.y26_c00266{bottom:3.105000px;}
.y25_c00266{bottom:7.228369px;}
.y24_c00266{bottom:73.470000px;}
.y23_c00266{bottom:118.470000px;}
.y22_c00266{bottom:153.270000px;}
.y21_c00266{bottom:186.270000px;}
.y20_c00266{bottom:221.970000px;}
.y1f_c00266{bottom:255.720000px;}
.y1e_c00266{bottom:288.870000px;}
.y1d_c00266{bottom:323.370000px;}
.y1c_c00266{bottom:357.720000px;}
.y1b_c00266{bottom:390.720000px;}
.y1a_c00266{bottom:424.920000px;}
.y19_c00266{bottom:458.670000px;}
.y18_c00266{bottom:492.720000px;}
.y17_c00266{bottom:526.470000px;}
.y16_c00266{bottom:559.620000px;}
.y15_c00266{bottom:593.670000px;}
.y14_c00266{bottom:626.970000px;}
.y13_c00266{bottom:659.820000px;}
.y12_c00266{bottom:693.270000px;}
.y11_c00266{bottom:727.320000px;}
.y10_c00266{bottom:761.070000px;}
.yf_c00266{bottom:794.820000px;}
.ye_c00266{bottom:828.120000px;}
.yd_c00266{bottom:860.970000px;}
.yc_c00266{bottom:894.420000px;}
.yb_c00266{bottom:929.820000px;}
.ya_c00266{bottom:961.920000px;}
.y9_c00266{bottom:994.920000px;}
.y8_c00266{bottom:1027.920000px;}
.y7_c00266{bottom:1061.820000px;}
.y6_c00266{bottom:1095.570000px;}
.y5_c00266{bottom:1128.870000px;}
.y4_c00266{bottom:1162.020000px;}
.y3_c00266{bottom:1196.070000px;}
.y2_c00266{bottom:1228.470000px;}
.y1_c00266{bottom:1262.220000px;}
.h4_c00266{height:13.200073px;}
.h5_c00266{height:43.804688px;}
.h2_c00266{height:121.546875px;}
.h3_c00266{height:129.143555px;}
.h0_c00266{height:1383.450000px;}
.h1_c00266{height:1383.750000px;}
.w2_c00266{width:104.875500px;}
.w0_c00266{width:878.025000px;}
.w1_c00266{width:878.250000px;}
.x0_c00266{left:0.000000px;}
.xa_c00266{left:53.250000px;}
.x9_c00266{left:54.300000px;}
.x8_c00266{left:55.350000px;}
.x7_c00266{left:56.400000px;}
.x6_c00266{left:57.450000px;}
.x5_c00266{left:58.500000px;}
.x4_c00266{left:59.700000px;}
.x3_c00266{left:61.800000px;}
.x2_c00266{left:62.850000px;}
.x1_c00266{left:64.050000px;}
.xb_c00266{left:102.900000px;}
.xd_c00266{left:390.826721px;}
.xc_c00266{left:572.100000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws1_c00266{word-spacing:-56.448000pt;}
.ws0_c00266{word-spacing:-20.565333pt;}
.ws2_c00266{word-spacing:0.000000pt;}
._16_c00266{margin-left:-38.400000pt;}
._25_c00266{margin-left:-30.170667pt;}
._2c_c00266{margin-left:-27.648000pt;}
._24_c00266{margin-left:-23.808000pt;}
._2a_c00266{margin-left:-22.784000pt;}
._28_c00266{margin-left:-21.248000pt;}
._2e_c00266{margin-left:-16.640000pt;}
._a_c00266{margin-left:-15.616000pt;}
._2b_c00266{margin-left:-10.496000pt;}
._27_c00266{margin-left:-9.472000pt;}
._19_c00266{margin-left:-8.448000pt;}
._10_c00266{margin-left:-6.400000pt;}
._f_c00266{margin-left:-4.693333pt;}
._14_c00266{margin-left:-2.816000pt;}
._e_c00266{margin-left:-1.792000pt;}
._15_c00266{width:0.938667pt;}
._c_c00266{width:1.877333pt;}
._3_c00266{width:3.669333pt;}
._2_c00266{width:4.693333pt;}
._7_c00266{width:5.973333pt;}
._6_c00266{width:6.912000pt;}
._5_c00266{width:8.192000pt;}
._8_c00266{width:9.728000pt;}
._11_c00266{width:11.093333pt;}
._1_c00266{width:12.202667pt;}
._d_c00266{width:13.824000pt;}
._18_c00266{width:14.762667pt;}
._4_c00266{width:16.384000pt;}
._0_c00266{width:17.493333pt;}
._1b_c00266{width:19.114667pt;}
._20_c00266{width:22.442667pt;}
._22_c00266{width:23.381333pt;}
._b_c00266{width:24.576000pt;}
._33_c00266{width:26.282667pt;}
._9_c00266{width:27.221333pt;}
._1f_c00266{width:28.928000pt;}
._17_c00266{width:30.976000pt;}
._1d_c00266{width:32.682667pt;}
._13_c00266{width:33.706667pt;}
._1e_c00266{width:35.925333pt;}
._26_c00266{width:36.864000pt;}
._1a_c00266{width:37.888000pt;}
._30_c00266{width:38.997333pt;}
._12_c00266{width:42.240000pt;}
._2f_c00266{width:44.544000pt;}
._29_c00266{width:46.250667pt;}
._23_c00266{width:47.872000pt;}
._1c_c00266{width:49.408000pt;}
._21_c00266{width:53.504000pt;}
._2d_c00266{width:56.832000pt;}
._34_c00266{width:62.882667pt;}
._32_c00266{width:69.376000pt;}
._31_c00266{width:160.874667pt;}
.fs5_c00266{font-size:42.666667pt;}
.fs3_c00266{font-size:74.666667pt;}
.fs4_c00266{font-size:77.333333pt;}
.fs0_c00266{font-size:85.333333pt;}
.fs1_c00266{font-size:90.666667pt;}
.fs2_c00266{font-size:101.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y26_c00266{bottom:2.760000pt;}
.y25_c00266{bottom:6.425217pt;}
.y24_c00266{bottom:65.306667pt;}
.y23_c00266{bottom:105.306667pt;}
.y22_c00266{bottom:136.240000pt;}
.y21_c00266{bottom:165.573333pt;}
.y20_c00266{bottom:197.306667pt;}
.y1f_c00266{bottom:227.306667pt;}
.y1e_c00266{bottom:256.773333pt;}
.y1d_c00266{bottom:287.440000pt;}
.y1c_c00266{bottom:317.973333pt;}
.y1b_c00266{bottom:347.306667pt;}
.y1a_c00266{bottom:377.706667pt;}
.y19_c00266{bottom:407.706667pt;}
.y18_c00266{bottom:437.973333pt;}
.y17_c00266{bottom:467.973333pt;}
.y16_c00266{bottom:497.440000pt;}
.y15_c00266{bottom:527.706667pt;}
.y14_c00266{bottom:557.306667pt;}
.y13_c00266{bottom:586.506667pt;}
.y12_c00266{bottom:616.240000pt;}
.y11_c00266{bottom:646.506667pt;}
.y10_c00266{bottom:676.506667pt;}
.yf_c00266{bottom:706.506667pt;}
.ye_c00266{bottom:736.106667pt;}
.yd_c00266{bottom:765.306667pt;}
.yc_c00266{bottom:795.040000pt;}
.yb_c00266{bottom:826.506667pt;}
.ya_c00266{bottom:855.040000pt;}
.y9_c00266{bottom:884.373333pt;}
.y8_c00266{bottom:913.706667pt;}
.y7_c00266{bottom:943.840000pt;}
.y6_c00266{bottom:973.840000pt;}
.y5_c00266{bottom:1003.440000pt;}
.y4_c00266{bottom:1032.906667pt;}
.y3_c00266{bottom:1063.173333pt;}
.y2_c00266{bottom:1091.973333pt;}
.y1_c00266{bottom:1121.973333pt;}
.h4_c00266{height:11.733399pt;}
.h5_c00266{height:38.937500pt;}
.h2_c00266{height:108.041667pt;}
.h3_c00266{height:114.794271pt;}
.h0_c00266{height:1229.733333pt;}
.h1_c00266{height:1230.000000pt;}
.w2_c00266{width:93.222667pt;}
.w0_c00266{width:780.466667pt;}
.w1_c00266{width:780.666667pt;}
.x0_c00266{left:0.000000pt;}
.xa_c00266{left:47.333333pt;}
.x9_c00266{left:48.266667pt;}
.x8_c00266{left:49.200000pt;}
.x7_c00266{left:50.133333pt;}
.x6_c00266{left:51.066667pt;}
.x5_c00266{left:52.000000pt;}
.x4_c00266{left:53.066667pt;}
.x3_c00266{left:54.933333pt;}
.x2_c00266{left:55.866667pt;}
.x1_c00266{left:56.933333pt;}
.xb_c00266{left:91.466667pt;}
.xd_c00266{left:347.401530pt;}
.xc_c00266{left:508.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e2b2b4012578e4b72bf88f05.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_a72ca0872b2cbc149acd3b19.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls2_c00267{letter-spacing:0.000000px;}
.ls0_c00267{letter-spacing:0.204000px;}
.ls3_c00267{letter-spacing:3.000000px;}
.ls1_c00267{letter-spacing:18.000000px;}
.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;}
}
.ws3_c00267{word-spacing:-23.967000px;}
.ws2_c00267{word-spacing:-23.136000px;}
.ws0_c00267{word-spacing:-20.244000px;}
.ws1_c00267{word-spacing:-0.672000px;}
.ws4_c00267{word-spacing:0.000000px;}
._32_c00267{margin-left:-88.512000px;}
._3c_c00267{margin-left:-86.400000px;}
._57_c00267{margin-left:-43.935000px;}
._4e_c00267{margin-left:-42.816000px;}
._52_c00267{margin-left:-38.715000px;}
._3d_c00267{margin-left:-34.752000px;}
._54_c00267{margin-left:-33.348000px;}
._5a_c00267{margin-left:-28.725000px;}
._59_c00267{margin-left:-27.579000px;}
._47_c00267{margin-left:-26.016000px;}
._53_c00267{margin-left:-22.593000px;}
._1c_c00267{margin-left:-21.504000px;}
._5f_c00267{margin-left:-20.127000px;}
._34_c00267{margin-left:-18.048000px;}
._c_c00267{margin-left:-16.992000px;}
._61_c00267{margin-left:-15.840000px;}
._13_c00267{margin-left:-14.688000px;}
._62_c00267{margin-left:-12.960000px;}
._60_c00267{margin-left:-11.712000px;}
._21_c00267{margin-left:-10.464000px;}
._1a_c00267{margin-left:-8.832000px;}
._1b_c00267{margin-left:-7.584000px;}
._14_c00267{margin-left:-6.144000px;}
._19_c00267{margin-left:-4.704000px;}
._18_c00267{margin-left:-3.552000px;}
._6_c00267{margin-left:-2.304000px;}
._e_c00267{margin-left:-1.056000px;}
._0_c00267{width:1.536000px;}
._2_c00267{width:2.592000px;}
._1_c00267{width:3.648000px;}
._5_c00267{width:4.800000px;}
._4_c00267{width:6.432000px;}
._a_c00267{width:8.160000px;}
._8_c00267{width:9.696000px;}
._11_c00267{width:11.520000px;}
._7_c00267{width:12.768000px;}
._12_c00267{width:14.016000px;}
._f_c00267{width:15.552000px;}
._10_c00267{width:16.704000px;}
._23_c00267{width:17.760000px;}
._9_c00267{width:18.816000px;}
._17_c00267{width:21.024000px;}
._2f_c00267{width:22.848000px;}
._16_c00267{width:24.384000px;}
._3_c00267{width:26.304000px;}
._15_c00267{width:27.744000px;}
._b_c00267{width:30.048000px;}
._39_c00267{width:31.392000px;}
._24_c00267{width:32.736000px;}
._d_c00267{width:33.792000px;}
._22_c00267{width:35.040000px;}
._1d_c00267{width:37.056000px;}
._2a_c00267{width:39.072000px;}
._42_c00267{width:41.088000px;}
._33_c00267{width:42.624000px;}
._25_c00267{width:43.776000px;}
._1f_c00267{width:45.408000px;}
._3f_c00267{width:47.808000px;}
._2c_c00267{width:49.920000px;}
._44_c00267{width:52.128000px;}
._20_c00267{width:53.184000px;}
._58_c00267{width:54.636000px;}
._4b_c00267{width:55.680000px;}
._27_c00267{width:56.736000px;}
._49_c00267{width:58.080000px;}
._30_c00267{width:60.480000px;}
._5d_c00267{width:62.379000px;}
._41_c00267{width:64.032000px;}
._4c_c00267{width:65.472000px;}
._31_c00267{width:67.392000px;}
._2e_c00267{width:68.448000px;}
._4a_c00267{width:70.848000px;}
._2b_c00267{width:73.248000px;}
._51_c00267{width:78.120000px;}
._56_c00267{width:81.600000px;}
._3a_c00267{width:84.048000px;}
._48_c00267{width:85.152000px;}
._35_c00267{width:87.840000px;}
._45_c00267{width:92.256000px;}
._26_c00267{width:93.408000px;}
._46_c00267{width:94.848000px;}
._2d_c00267{width:96.576000px;}
._3e_c00267{width:99.840000px;}
._40_c00267{width:101.472000px;}
._1e_c00267{width:114.720000px;}
._29_c00267{width:133.344000px;}
._43_c00267{width:142.080000px;}
._50_c00267{width:144.864000px;}
._38_c00267{width:164.448000px;}
._28_c00267{width:166.560000px;}
._4f_c00267{width:211.488000px;}
._5b_c00267{width:232.812000px;}
._55_c00267{width:239.814000px;}
._36_c00267{width:244.404000px;}
._4d_c00267{width:251.040000px;}
._5e_c00267{width:256.032000px;}
._37_c00267{width:281.280000px;}
._3b_c00267{width:289.500000px;}
._5c_c00267{width:304.746000px;}
._63_c00267{width:422.322000px;}
._64_c00267{width:771.936000px;}
.fc2_c00267{color:transparent;}
.fc1_c00267{color:rgb(128,128,128);}
.fc0_c00267{color:rgb(0,0,0);}
.fs4_c00267{font-size:48.000000px;}
.fs1_c00267{font-size:84.000000px;}
.fs3_c00267{font-size:87.000000px;}
.fs0_c00267{font-size:96.000000px;}
.fs2_c00267{font-size:102.000000px;}
.y0_c00267{bottom:0.000000px;}
.y24_c00267{bottom:3.105000px;}
.y23_c00267{bottom:7.228369px;}
.y22_c00267{bottom:64.770000px;}
.y21_c00267{bottom:127.620000px;}
.y20_c00267{bottom:141.120000px;}
.y1f_c00267{bottom:169.470000px;}
.y1e_c00267{bottom:230.070000px;}
.y1d_c00267{bottom:265.320000px;}
.y1c_c00267{bottom:299.670000px;}
.y1b_c00267{bottom:335.070000px;}
.y1a_c00267{bottom:369.270000px;}
.y19_c00267{bottom:403.920000px;}
.y18_c00267{bottom:438.120000px;}
.y17_c00267{bottom:471.870000px;}
.y16_c00267{bottom:505.920000px;}
.y15_c00267{bottom:540.570000px;}
.y14_c00267{bottom:574.020000px;}
.y13_c00267{bottom:608.820000px;}
.y12_c00267{bottom:642.270000px;}
.y11_c00267{bottom:675.720000px;}
.y10_c00267{bottom:710.670000px;}
.yf_c00267{bottom:742.470000px;}
.ye_c00267{bottom:778.170000px;}
.yd_c00267{bottom:846.720000px;}
.yc_c00267{bottom:880.470000px;}
.yb_c00267{bottom:915.870000px;}
.ya_c00267{bottom:947.370000px;}
.y9_c00267{bottom:980.670000px;}
.y8_c00267{bottom:1013.820000px;}
.y7_c00267{bottom:1048.320000px;}
.y6_c00267{bottom:1081.920000px;}
.y5_c00267{bottom:1114.770000px;}
.y4_c00267{bottom:1148.520000px;}
.y3_c00267{bottom:1181.970000px;}
.y2_c00267{bottom:1215.570000px;}
.y1_c00267{bottom:1248.720000px;}
.h4_c00267{height:13.200073px;}
.h5_c00267{height:43.804688px;}
.h3_c00267{height:110.151855px;}
.h2_c00267{height:121.546875px;}
.h1_c00267{height:1359.000000px;}
.h0_c00267{height:1359.150000px;}
.w2_c00267{width:104.875500px;}
.w1_c00267{width:848.250000px;}
.w0_c00267{width:848.325000px;}
.x0_c00267{left:0.000000px;}
.x5_c00267{left:41.250000px;}
.x6_c00267{left:250.800000px;}
.x4_c00267{left:251.850000px;}
.x3_c00267{left:254.100000px;}
.x1_c00267{left:255.150000px;}
.x2_c00267{left:256.200000px;}
.xb_c00267{left:261.600000px;}
.xe_c00267{left:265.200000px;}
.xa_c00267{left:286.500000px;}
.x8_c00267{left:322.650000px;}
.x7_c00267{left:335.850000px;}
.x10_c00267{left:375.976730px;}
.x9_c00267{left:385.350000px;}
.xc_c00267{left:471.000000px;}
.xd_c00267{left:505.200000px;}
.xf_c00267{left:534.600000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls2_c00267{letter-spacing:0.000000pt;}
.ls0_c00267{letter-spacing:0.181333pt;}
.ls3_c00267{letter-spacing:2.666667pt;}
.ls1_c00267{letter-spacing:16.000000pt;}
.ws3_c00267{word-spacing:-21.304000pt;}
.ws2_c00267{word-spacing:-20.565333pt;}
.ws0_c00267{word-spacing:-17.994667pt;}
.ws1_c00267{word-spacing:-0.597333pt;}
.ws4_c00267{word-spacing:0.000000pt;}
._32_c00267{margin-left:-78.677333pt;}
._3c_c00267{margin-left:-76.800000pt;}
._57_c00267{margin-left:-39.053333pt;}
._4e_c00267{margin-left:-38.058667pt;}
._52_c00267{margin-left:-34.413333pt;}
._3d_c00267{margin-left:-30.890667pt;}
._54_c00267{margin-left:-29.642667pt;}
._5a_c00267{margin-left:-25.533333pt;}
._59_c00267{margin-left:-24.514667pt;}
._47_c00267{margin-left:-23.125333pt;}
._53_c00267{margin-left:-20.082667pt;}
._1c_c00267{margin-left:-19.114667pt;}
._5f_c00267{margin-left:-17.890667pt;}
._34_c00267{margin-left:-16.042667pt;}
._c_c00267{margin-left:-15.104000pt;}
._61_c00267{margin-left:-14.080000pt;}
._13_c00267{margin-left:-13.056000pt;}
._62_c00267{margin-left:-11.520000pt;}
._60_c00267{margin-left:-10.410667pt;}
._21_c00267{margin-left:-9.301333pt;}
._1a_c00267{margin-left:-7.850667pt;}
._1b_c00267{margin-left:-6.741333pt;}
._14_c00267{margin-left:-5.461333pt;}
._19_c00267{margin-left:-4.181333pt;}
._18_c00267{margin-left:-3.157333pt;}
._6_c00267{margin-left:-2.048000pt;}
._e_c00267{margin-left:-0.938667pt;}
._0_c00267{width:1.365333pt;}
._2_c00267{width:2.304000pt;}
._1_c00267{width:3.242667pt;}
._5_c00267{width:4.266667pt;}
._4_c00267{width:5.717333pt;}
._a_c00267{width:7.253333pt;}
._8_c00267{width:8.618667pt;}
._11_c00267{width:10.240000pt;}
._7_c00267{width:11.349333pt;}
._12_c00267{width:12.458667pt;}
._f_c00267{width:13.824000pt;}
._10_c00267{width:14.848000pt;}
._23_c00267{width:15.786667pt;}
._9_c00267{width:16.725333pt;}
._17_c00267{width:18.688000pt;}
._2f_c00267{width:20.309333pt;}
._16_c00267{width:21.674667pt;}
._3_c00267{width:23.381333pt;}
._15_c00267{width:24.661333pt;}
._b_c00267{width:26.709333pt;}
._39_c00267{width:27.904000pt;}
._24_c00267{width:29.098667pt;}
._d_c00267{width:30.037333pt;}
._22_c00267{width:31.146667pt;}
._1d_c00267{width:32.938667pt;}
._2a_c00267{width:34.730667pt;}
._42_c00267{width:36.522667pt;}
._33_c00267{width:37.888000pt;}
._25_c00267{width:38.912000pt;}
._1f_c00267{width:40.362667pt;}
._3f_c00267{width:42.496000pt;}
._2c_c00267{width:44.373333pt;}
._44_c00267{width:46.336000pt;}
._20_c00267{width:47.274667pt;}
._58_c00267{width:48.565333pt;}
._4b_c00267{width:49.493333pt;}
._27_c00267{width:50.432000pt;}
._49_c00267{width:51.626667pt;}
._30_c00267{width:53.760000pt;}
._5d_c00267{width:55.448000pt;}
._41_c00267{width:56.917333pt;}
._4c_c00267{width:58.197333pt;}
._31_c00267{width:59.904000pt;}
._2e_c00267{width:60.842667pt;}
._4a_c00267{width:62.976000pt;}
._2b_c00267{width:65.109333pt;}
._51_c00267{width:69.440000pt;}
._56_c00267{width:72.533333pt;}
._3a_c00267{width:74.709333pt;}
._48_c00267{width:75.690667pt;}
._35_c00267{width:78.080000pt;}
._45_c00267{width:82.005333pt;}
._26_c00267{width:83.029333pt;}
._46_c00267{width:84.309333pt;}
._2d_c00267{width:85.845333pt;}
._3e_c00267{width:88.746667pt;}
._40_c00267{width:90.197333pt;}
._1e_c00267{width:101.973333pt;}
._29_c00267{width:118.528000pt;}
._43_c00267{width:126.293333pt;}
._50_c00267{width:128.768000pt;}
._38_c00267{width:146.176000pt;}
._28_c00267{width:148.053333pt;}
._4f_c00267{width:187.989333pt;}
._5b_c00267{width:206.944000pt;}
._55_c00267{width:213.168000pt;}
._36_c00267{width:217.248000pt;}
._4d_c00267{width:223.146667pt;}
._5e_c00267{width:227.584000pt;}
._37_c00267{width:250.026667pt;}
._3b_c00267{width:257.333333pt;}
._5c_c00267{width:270.885333pt;}
._63_c00267{width:375.397333pt;}
._64_c00267{width:686.165333pt;}
.fs4_c00267{font-size:42.666667pt;}
.fs1_c00267{font-size:74.666667pt;}
.fs3_c00267{font-size:77.333333pt;}
.fs0_c00267{font-size:85.333333pt;}
.fs2_c00267{font-size:90.666667pt;}
.y0_c00267{bottom:0.000000pt;}
.y24_c00267{bottom:2.760000pt;}
.y23_c00267{bottom:6.425217pt;}
.y22_c00267{bottom:57.573333pt;}
.y21_c00267{bottom:113.440000pt;}
.y20_c00267{bottom:125.440000pt;}
.y1f_c00267{bottom:150.640000pt;}
.y1e_c00267{bottom:204.506667pt;}
.y1d_c00267{bottom:235.840000pt;}
.y1c_c00267{bottom:266.373333pt;}
.y1b_c00267{bottom:297.840000pt;}
.y1a_c00267{bottom:328.240000pt;}
.y19_c00267{bottom:359.040000pt;}
.y18_c00267{bottom:389.440000pt;}
.y17_c00267{bottom:419.440000pt;}
.y16_c00267{bottom:449.706667pt;}
.y15_c00267{bottom:480.506667pt;}
.y14_c00267{bottom:510.240000pt;}
.y13_c00267{bottom:541.173333pt;}
.y12_c00267{bottom:570.906667pt;}
.y11_c00267{bottom:600.640000pt;}
.y10_c00267{bottom:631.706667pt;}
.yf_c00267{bottom:659.973333pt;}
.ye_c00267{bottom:691.706667pt;}
.yd_c00267{bottom:752.640000pt;}
.yc_c00267{bottom:782.640000pt;}
.yb_c00267{bottom:814.106667pt;}
.ya_c00267{bottom:842.106667pt;}
.y9_c00267{bottom:871.706667pt;}
.y8_c00267{bottom:901.173333pt;}
.y7_c00267{bottom:931.840000pt;}
.y6_c00267{bottom:961.706667pt;}
.y5_c00267{bottom:990.906667pt;}
.y4_c00267{bottom:1020.906667pt;}
.y3_c00267{bottom:1050.640000pt;}
.y2_c00267{bottom:1080.506667pt;}
.y1_c00267{bottom:1109.973333pt;}
.h4_c00267{height:11.733399pt;}
.h5_c00267{height:38.937500pt;}
.h3_c00267{height:97.912760pt;}
.h2_c00267{height:108.041667pt;}
.h1_c00267{height:1208.000000pt;}
.h0_c00267{height:1208.133333pt;}
.w2_c00267{width:93.222667pt;}
.w1_c00267{width:754.000000pt;}
.w0_c00267{width:754.066667pt;}
.x0_c00267{left:0.000000pt;}
.x5_c00267{left:36.666667pt;}
.x6_c00267{left:222.933333pt;}
.x4_c00267{left:223.866667pt;}
.x3_c00267{left:225.866667pt;}
.x1_c00267{left:226.800000pt;}
.x2_c00267{left:227.733333pt;}
.xb_c00267{left:232.533333pt;}
.xe_c00267{left:235.733333pt;}
.xa_c00267{left:254.666667pt;}
.x8_c00267{left:286.800000pt;}
.x7_c00267{left:298.533333pt;}
.x10_c00267{left:334.201538pt;}
.x9_c00267{left:342.533333pt;}
.xc_c00267{left:418.666667pt;}
.xd_c00267{left:449.066667pt;}
.xf_c00267{left:475.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_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_dee91691cad128399a6462c9.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_06debf67930b424a5d63b53b.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_de754c240ef5e3a8b6ba04b1.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_b9b86e00af772557321152e7.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls2_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:9.120000px;}
.ls1_c00268{letter-spacing:26.539200px;}
.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;}
}
.ws3_c00268{word-spacing:-53.856000px;}
.ws1_c00268{word-spacing:-51.000000px;}
.ws2_c00268{word-spacing:-43.084800px;}
.ws0_c00268{word-spacing:-34.704000px;}
.ws4_c00268{word-spacing:0.000000px;}
._30_c00268{margin-left:-32.640000px;}
._4e_c00268{margin-left:-30.528000px;}
._4d_c00268{margin-left:-29.424000px;}
._3e_c00268{margin-left:-24.720000px;}
._44_c00268{margin-left:-21.504000px;}
._19_c00268{margin-left:-19.680000px;}
._38_c00268{margin-left:-16.992000px;}
._7_c00268{margin-left:-14.832000px;}
._3c_c00268{margin-left:-11.520000px;}
._3f_c00268{margin-left:-10.368000px;}
._2e_c00268{margin-left:-8.832000px;}
._c_c00268{margin-left:-7.344000px;}
._a_c00268{margin-left:-6.192000px;}
._9_c00268{margin-left:-5.040000px;}
._8_c00268{margin-left:-3.456000px;}
._d_c00268{margin-left:-2.304000px;}
._28_c00268{margin-left:-1.224000px;}
._17_c00268{width:1.104000px;}
._11_c00268{width:2.208000px;}
._6_c00268{width:4.176000px;}
._1_c00268{width:6.048000px;}
._e_c00268{width:7.872000px;}
._37_c00268{width:8.976000px;}
._5_c00268{width:10.080000px;}
._0_c00268{width:11.088000px;}
._2_c00268{width:12.816000px;}
._25_c00268{width:14.064000px;}
._4_c00268{width:15.552000px;}
._32_c00268{width:16.608000px;}
._16_c00268{width:18.480000px;}
._1a_c00268{width:20.808000px;}
._34_c00268{width:24.384000px;}
._1b_c00268{width:25.440000px;}
._1d_c00268{width:26.784000px;}
._14_c00268{width:28.704000px;}
._15_c00268{width:30.336000px;}
._13_c00268{width:32.208000px;}
._29_c00268{width:33.792000px;}
._4c_c00268{width:35.016000px;}
._21_c00268{width:36.144000px;}
._20_c00268{width:38.448000px;}
._2b_c00268{width:40.272000px;}
._23_c00268{width:41.424000px;}
._2a_c00268{width:43.392000px;}
._24_c00268{width:46.224000px;}
._36_c00268{width:47.232000px;}
._3b_c00268{width:48.912000px;}
._10_c00268{width:50.304000px;}
._12_c00268{width:52.512000px;}
._3d_c00268{width:53.952000px;}
._1c_c00268{width:56.352000px;}
._22_c00268{width:57.600000px;}
._b_c00268{width:61.200000px;}
._27_c00268{width:63.648000px;}
._26_c00268{width:65.328000px;}
._41_c00268{width:68.928000px;}
._2c_c00268{width:72.888000px;}
._42_c00268{width:75.504000px;}
._3_c00268{width:79.920000px;}
._40_c00268{width:84.768000px;}
._4b_c00268{width:87.408000px;}
._33_c00268{width:91.056000px;}
._35_c00268{width:92.184000px;}
._18_c00268{width:110.016000px;}
._39_c00268{width:133.152000px;}
._3a_c00268{width:168.720000px;}
._4a_c00268{width:170.352000px;}
._48_c00268{width:172.848000px;}
._f_c00268{width:206.976000px;}
._43_c00268{width:212.544000px;}
._1e_c00268{width:252.864000px;}
._2f_c00268{width:258.528000px;}
._45_c00268{width:286.752000px;}
._46_c00268{width:291.360000px;}
._31_c00268{width:374.112000px;}
._1f_c00268{width:385.152000px;}
._49_c00268{width:516.480000px;}
._47_c00268{width:672.384000px;}
._50_c00268{width:706.800000px;}
._4f_c00268{width:1010.064000px;}
._2d_c00268{width:1180.656000px;}
.fc2_c00268{color:transparent;}
.fc1_c00268{color:rgb(128,128,128);}
.fc0_c00268{color:rgb(0,0,0);}
.fs1_c00268{font-size:36.000000px;}
.fs6_c00268{font-size:48.000000px;}
.fs5_c00268{font-size:76.800000px;}
.fs3_c00268{font-size:84.000000px;}
.fs2_c00268{font-size:96.000000px;}
.fs4_c00268{font-size:102.000000px;}
.fs0_c00268{font-size:144.000000px;}
.y0_c00268{bottom:0.000000px;}
.y24_c00268{bottom:3.105000px;}
.y23_c00268{bottom:7.228369px;}
.y22_c00268{bottom:89.670000px;}
.y21_c00268{bottom:124.770000px;}
.y20_c00268{bottom:158.670000px;}
.y1f_c00268{bottom:192.420000px;}
.y1e_c00268{bottom:226.470000px;}
.y1d_c00268{bottom:259.920000px;}
.y1c_c00268{bottom:294.270000px;}
.y1b_c00268{bottom:328.320000px;}
.y1a_c00268{bottom:361.470000px;}
.y19_c00268{bottom:395.220000px;}
.y18_c00268{bottom:428.670000px;}
.y17_c00268{bottom:462.270000px;}
.y16_c00268{bottom:494.670000px;}
.y15_c00268{bottom:527.820000px;}
.y14_c00268{bottom:563.670000px;}
.y13_c00268{bottom:595.320000px;}
.y12_c00268{bottom:629.370000px;}
.y11_c00268{bottom:662.070000px;}
.y10_c00268{bottom:695.220000px;}
.yf_c00268{bottom:727.920000px;}
.ye_c00268{bottom:763.470000px;}
.yd_c00268{bottom:795.420000px;}
.yc_c00268{bottom:828.570000px;}
.yb_c00268{bottom:861.570000px;}
.ya_c00268{bottom:895.020000px;}
.y9_c00268{bottom:928.020000px;}
.y8_c00268{bottom:961.470000px;}
.y7_c00268{bottom:994.170000px;}
.y6_c00268{bottom:1028.070000px;}
.y5_c00268{bottom:1062.420000px;}
.y4_c00268{bottom:1102.620000px;}
.y3_c00268{bottom:1151.220000px;}
.y2_c00268{bottom:1200.870000px;}
.y1_c00268{bottom:1251.720000px;}
.h5_c00268{height:13.200073px;}
.h6_c00268{height:43.804688px;}
.h3_c00268{height:45.580078px;}
.h4_c00268{height:121.546875px;}
.h2_c00268{height:182.320312px;}
.h0_c00268{height:1383.450000px;}
.h1_c00268{height:1383.750000px;}
.w2_c00268{width:104.875500px;}
.w0_c00268{width:878.025000px;}
.w1_c00268{width:878.250000px;}
.x0_c00268{left:0.000000px;}
.x10_c00268{left:49.500000px;}
.xf_c00268{left:50.550000px;}
.xa_c00268{left:51.600000px;}
.x9_c00268{left:53.250000px;}
.x8_c00268{left:54.300000px;}
.xd_c00268{left:55.350000px;}
.xc_c00268{left:59.100000px;}
.x11_c00268{left:60.750000px;}
.x4_c00268{left:62.100000px;}
.x1_c00268{left:92.250000px;}
.xe_c00268{left:96.900000px;}
.xb_c00268{left:99.600000px;}
.x5_c00268{left:104.550000px;}
.x2_c00268{left:174.150000px;}
.x7_c00268{left:175.200000px;}
.x3_c00268{left:281.100000px;}
.x6_c00268{left:282.150000px;}
.x12_c00268{left:390.826721px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls2_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:8.106667pt;}
.ls1_c00268{letter-spacing:23.590400pt;}
.ws3_c00268{word-spacing:-47.872000pt;}
.ws1_c00268{word-spacing:-45.333333pt;}
.ws2_c00268{word-spacing:-38.297600pt;}
.ws0_c00268{word-spacing:-30.848000pt;}
.ws4_c00268{word-spacing:0.000000pt;}
._30_c00268{margin-left:-29.013333pt;}
._4e_c00268{margin-left:-27.136000pt;}
._4d_c00268{margin-left:-26.154667pt;}
._3e_c00268{margin-left:-21.973333pt;}
._44_c00268{margin-left:-19.114667pt;}
._19_c00268{margin-left:-17.493333pt;}
._38_c00268{margin-left:-15.104000pt;}
._7_c00268{margin-left:-13.184000pt;}
._3c_c00268{margin-left:-10.240000pt;}
._3f_c00268{margin-left:-9.216000pt;}
._2e_c00268{margin-left:-7.850667pt;}
._c_c00268{margin-left:-6.528000pt;}
._a_c00268{margin-left:-5.504000pt;}
._9_c00268{margin-left:-4.480000pt;}
._8_c00268{margin-left:-3.072000pt;}
._d_c00268{margin-left:-2.048000pt;}
._28_c00268{margin-left:-1.088000pt;}
._17_c00268{width:0.981333pt;}
._11_c00268{width:1.962667pt;}
._6_c00268{width:3.712000pt;}
._1_c00268{width:5.376000pt;}
._e_c00268{width:6.997333pt;}
._37_c00268{width:7.978667pt;}
._5_c00268{width:8.960000pt;}
._0_c00268{width:9.856000pt;}
._2_c00268{width:11.392000pt;}
._25_c00268{width:12.501333pt;}
._4_c00268{width:13.824000pt;}
._32_c00268{width:14.762667pt;}
._16_c00268{width:16.426667pt;}
._1a_c00268{width:18.496000pt;}
._34_c00268{width:21.674667pt;}
._1b_c00268{width:22.613333pt;}
._1d_c00268{width:23.808000pt;}
._14_c00268{width:25.514667pt;}
._15_c00268{width:26.965333pt;}
._13_c00268{width:28.629333pt;}
._29_c00268{width:30.037333pt;}
._4c_c00268{width:31.125333pt;}
._21_c00268{width:32.128000pt;}
._20_c00268{width:34.176000pt;}
._2b_c00268{width:35.797333pt;}
._23_c00268{width:36.821333pt;}
._2a_c00268{width:38.570667pt;}
._24_c00268{width:41.088000pt;}
._36_c00268{width:41.984000pt;}
._3b_c00268{width:43.477333pt;}
._10_c00268{width:44.714667pt;}
._12_c00268{width:46.677333pt;}
._3d_c00268{width:47.957333pt;}
._1c_c00268{width:50.090667pt;}
._22_c00268{width:51.200000pt;}
._b_c00268{width:54.400000pt;}
._27_c00268{width:56.576000pt;}
._26_c00268{width:58.069333pt;}
._41_c00268{width:61.269333pt;}
._2c_c00268{width:64.789333pt;}
._42_c00268{width:67.114667pt;}
._3_c00268{width:71.040000pt;}
._40_c00268{width:75.349333pt;}
._4b_c00268{width:77.696000pt;}
._33_c00268{width:80.938667pt;}
._35_c00268{width:81.941333pt;}
._18_c00268{width:97.792000pt;}
._39_c00268{width:118.357333pt;}
._3a_c00268{width:149.973333pt;}
._4a_c00268{width:151.424000pt;}
._48_c00268{width:153.642667pt;}
._f_c00268{width:183.978667pt;}
._43_c00268{width:188.928000pt;}
._1e_c00268{width:224.768000pt;}
._2f_c00268{width:229.802667pt;}
._45_c00268{width:254.890667pt;}
._46_c00268{width:258.986667pt;}
._31_c00268{width:332.544000pt;}
._1f_c00268{width:342.357333pt;}
._49_c00268{width:459.093333pt;}
._47_c00268{width:597.674667pt;}
._50_c00268{width:628.266667pt;}
._4f_c00268{width:897.834667pt;}
._2d_c00268{width:1049.472000pt;}
.fs1_c00268{font-size:32.000000pt;}
.fs6_c00268{font-size:42.666667pt;}
.fs5_c00268{font-size:68.266667pt;}
.fs3_c00268{font-size:74.666667pt;}
.fs2_c00268{font-size:85.333333pt;}
.fs4_c00268{font-size:90.666667pt;}
.fs0_c00268{font-size:128.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y24_c00268{bottom:2.760000pt;}
.y23_c00268{bottom:6.425217pt;}
.y22_c00268{bottom:79.706667pt;}
.y21_c00268{bottom:110.906667pt;}
.y20_c00268{bottom:141.040000pt;}
.y1f_c00268{bottom:171.040000pt;}
.y1e_c00268{bottom:201.306667pt;}
.y1d_c00268{bottom:231.040000pt;}
.y1c_c00268{bottom:261.573333pt;}
.y1b_c00268{bottom:291.840000pt;}
.y1a_c00268{bottom:321.306667pt;}
.y19_c00268{bottom:351.306667pt;}
.y18_c00268{bottom:381.040000pt;}
.y17_c00268{bottom:410.906667pt;}
.y16_c00268{bottom:439.706667pt;}
.y15_c00268{bottom:469.173333pt;}
.y14_c00268{bottom:501.040000pt;}
.y13_c00268{bottom:529.173333pt;}
.y12_c00268{bottom:559.440000pt;}
.y11_c00268{bottom:588.506667pt;}
.y10_c00268{bottom:617.973333pt;}
.yf_c00268{bottom:647.040000pt;}
.ye_c00268{bottom:678.640000pt;}
.yd_c00268{bottom:707.040000pt;}
.yc_c00268{bottom:736.506667pt;}
.yb_c00268{bottom:765.840000pt;}
.ya_c00268{bottom:795.573333pt;}
.y9_c00268{bottom:824.906667pt;}
.y8_c00268{bottom:854.640000pt;}
.y7_c00268{bottom:883.706667pt;}
.y6_c00268{bottom:913.840000pt;}
.y5_c00268{bottom:944.373333pt;}
.y4_c00268{bottom:980.106667pt;}
.y3_c00268{bottom:1023.306667pt;}
.y2_c00268{bottom:1067.440000pt;}
.y1_c00268{bottom:1112.640000pt;}
.h5_c00268{height:11.733399pt;}
.h6_c00268{height:38.937500pt;}
.h3_c00268{height:40.515625pt;}
.h4_c00268{height:108.041667pt;}
.h2_c00268{height:162.062500pt;}
.h0_c00268{height:1229.733333pt;}
.h1_c00268{height:1230.000000pt;}
.w2_c00268{width:93.222667pt;}
.w0_c00268{width:780.466667pt;}
.w1_c00268{width:780.666667pt;}
.x0_c00268{left:0.000000pt;}
.x10_c00268{left:44.000000pt;}
.xf_c00268{left:44.933333pt;}
.xa_c00268{left:45.866667pt;}
.x9_c00268{left:47.333333pt;}
.x8_c00268{left:48.266667pt;}
.xd_c00268{left:49.200000pt;}
.xc_c00268{left:52.533333pt;}
.x11_c00268{left:54.000000pt;}
.x4_c00268{left:55.200000pt;}
.x1_c00268{left:82.000000pt;}
.xe_c00268{left:86.133333pt;}
.xb_c00268{left:88.533333pt;}
.x5_c00268{left:92.933333pt;}
.x2_c00268{left:154.800000pt;}
.x7_c00268{left:155.733333pt;}
.x3_c00268{left:249.866667pt;}
.x6_c00268{left:250.800000pt;}
.x12_c00268{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35a3d1292676b5a40ff4e9eb.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_42942962f83e974f5c2bec4c.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00269{word-spacing:-63.504000px;}
.ws0_c00269{word-spacing:-43.392000px;}
.ws2_c00269{word-spacing:0.000000px;}
._1d_c00269{margin-left:-30.528000px;}
._33_c00269{margin-left:-27.456000px;}
._2f_c00269{margin-left:-25.152000px;}
._2a_c00269{margin-left:-21.792000px;}
._39_c00269{margin-left:-17.952000px;}
._25_c00269{margin-left:-13.728000px;}
._35_c00269{margin-left:-11.520000px;}
._3d_c00269{margin-left:-9.951000px;}
._3e_c00269{margin-left:-8.715000px;}
._37_c00269{margin-left:-6.432000px;}
._2c_c00269{margin-left:-5.184000px;}
._19_c00269{margin-left:-3.072000px;}
._12_c00269{margin-left:-1.440000px;}
._c_c00269{width:1.824000px;}
._2_c00269{width:3.072000px;}
._1_c00269{width:4.128000px;}
._0_c00269{width:5.376000px;}
._5_c00269{width:7.200000px;}
._a_c00269{width:8.256000px;}
._28_c00269{width:9.312000px;}
._9_c00269{width:10.368000px;}
._1f_c00269{width:11.616000px;}
._4_c00269{width:12.672000px;}
._38_c00269{width:14.112000px;}
._1c_c00269{width:15.168000px;}
._36_c00269{width:16.224000px;}
._3_c00269{width:17.472000px;}
._11_c00269{width:19.104000px;}
._10_c00269{width:21.600000px;}
._3c_c00269{width:23.784000px;}
._1e_c00269{width:25.440000px;}
._24_c00269{width:27.264000px;}
._18_c00269{width:28.416000px;}
._d_c00269{width:29.568000px;}
._f_c00269{width:30.912000px;}
._b_c00269{width:32.064000px;}
._e_c00269{width:34.080000px;}
._20_c00269{width:36.000000px;}
._8_c00269{width:37.056000px;}
._15_c00269{width:38.784000px;}
._1a_c00269{width:41.184000px;}
._13_c00269{width:42.528000px;}
._2e_c00269{width:43.968000px;}
._17_c00269{width:45.408000px;}
._1b_c00269{width:46.752000px;}
._21_c00269{width:48.000000px;}
._6_c00269{width:49.152000px;}
._22_c00269{width:52.128000px;}
._26_c00269{width:54.336000px;}
._14_c00269{width:56.160000px;}
._3a_c00269{width:57.792000px;}
._7_c00269{width:58.848000px;}
._3f_c00269{width:60.000000px;}
._27_c00269{width:61.632000px;}
._29_c00269{width:62.880000px;}
._23_c00269{width:64.800000px;}
._2d_c00269{width:66.624000px;}
._16_c00269{width:68.736000px;}
._32_c00269{width:75.552000px;}
._34_c00269{width:90.132000px;}
._3b_c00269{width:112.704000px;}
._31_c00269{width:173.088000px;}
._30_c00269{width:258.624000px;}
._2b_c00269{width:446.400000px;}
._40_c00269{width:1964.736000px;}
.fc2_c00269{color:transparent;}
.fc1_c00269{color:rgb(128,128,128);}
.fc0_c00269{color:rgb(0,0,0);}
.fs3_c00269{font-size:48.000000px;}
.fs1_c00269{font-size:84.000000px;}
.fs0_c00269{font-size:96.000000px;}
.fs2_c00269{font-size:105.000000px;}
.y0_c00269{bottom:0.000000px;}
.y26_c00269{bottom:3.105000px;}
.y25_c00269{bottom:7.228357px;}
.y24_c00269{bottom:97.230000px;}
.y23_c00269{bottom:126.180000px;}
.y22_c00269{bottom:162.330000px;}
.y21_c00269{bottom:195.780000px;}
.y20_c00269{bottom:230.130000px;}
.y1f_c00269{bottom:264.030000px;}
.y1e_c00269{bottom:297.780000px;}
.y1d_c00269{bottom:332.730000px;}
.y1c_c00269{bottom:367.230000px;}
.y1b_c00269{bottom:400.680000px;}
.y1a_c00269{bottom:435.030000px;}
.y19_c00269{bottom:469.080000px;}
.y18_c00269{bottom:502.530000px;}
.y17_c00269{bottom:536.580000px;}
.y16_c00269{bottom:571.380000px;}
.y15_c00269{bottom:605.880000px;}
.y14_c00269{bottom:638.880000px;}
.y13_c00269{bottom:671.730000px;}
.y12_c00269{bottom:706.380000px;}
.y11_c00269{bottom:740.130000px;}
.y10_c00269{bottom:774.180000px;}
.yf_c00269{bottom:805.980000px;}
.ye_c00269{bottom:841.380000px;}
.yd_c00269{bottom:874.230000px;}
.yc_c00269{bottom:909.630000px;}
.yb_c00269{bottom:941.730000px;}
.ya_c00269{bottom:975.030000px;}
.y9_c00269{bottom:1009.080000px;}
.y8_c00269{bottom:1042.230000px;}
.y7_c00269{bottom:1075.680000px;}
.y6_c00269{bottom:1108.980000px;}
.y5_c00269{bottom:1142.730000px;}
.y4_c00269{bottom:1175.880000px;}
.y3_c00269{bottom:1209.030000px;}
.y2_c00269{bottom:1242.630000px;}
.y1_c00269{bottom:1276.080000px;}
.h4_c00269{height:13.200074px;}
.h5_c00269{height:43.804688px;}
.h2_c00269{height:121.546875px;}
.h3_c00269{height:132.941895px;}
.h0_c00269{height:1382.700000px;}
.h1_c00269{height:1383.000000px;}
.w2_c00269{width:104.875500px;}
.w0_c00269{width:863.175000px;}
.w1_c00269{width:863.250000px;}
.x0_c00269{left:0.000000px;}
.x6_c00269{left:129.300000px;}
.x8_c00269{left:180.600000px;}
.x5_c00269{left:216.900000px;}
.x4_c00269{left:222.300000px;}
.xe_c00269{left:249.300000px;}
.xd_c00269{left:250.350000px;}
.xc_c00269{left:251.400000px;}
.xb_c00269{left:253.050000px;}
.xa_c00269{left:254.700000px;}
.x9_c00269{left:255.750000px;}
.x3_c00269{left:256.800000px;}
.x2_c00269{left:258.300000px;}
.x1_c00269{left:259.500000px;}
.x7_c00269{left:305.400000px;}
.xf_c00269{left:383.401749px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws1_c00269{word-spacing:-56.448000pt;}
.ws0_c00269{word-spacing:-38.570667pt;}
.ws2_c00269{word-spacing:0.000000pt;}
._1d_c00269{margin-left:-27.136000pt;}
._33_c00269{margin-left:-24.405333pt;}
._2f_c00269{margin-left:-22.357333pt;}
._2a_c00269{margin-left:-19.370667pt;}
._39_c00269{margin-left:-15.957333pt;}
._25_c00269{margin-left:-12.202667pt;}
._35_c00269{margin-left:-10.240000pt;}
._3d_c00269{margin-left:-8.845333pt;}
._3e_c00269{margin-left:-7.746667pt;}
._37_c00269{margin-left:-5.717333pt;}
._2c_c00269{margin-left:-4.608000pt;}
._19_c00269{margin-left:-2.730667pt;}
._12_c00269{margin-left:-1.280000pt;}
._c_c00269{width:1.621333pt;}
._2_c00269{width:2.730667pt;}
._1_c00269{width:3.669333pt;}
._0_c00269{width:4.778667pt;}
._5_c00269{width:6.400000pt;}
._a_c00269{width:7.338667pt;}
._28_c00269{width:8.277333pt;}
._9_c00269{width:9.216000pt;}
._1f_c00269{width:10.325333pt;}
._4_c00269{width:11.264000pt;}
._38_c00269{width:12.544000pt;}
._1c_c00269{width:13.482667pt;}
._36_c00269{width:14.421333pt;}
._3_c00269{width:15.530667pt;}
._11_c00269{width:16.981333pt;}
._10_c00269{width:19.200000pt;}
._3c_c00269{width:21.141333pt;}
._1e_c00269{width:22.613333pt;}
._24_c00269{width:24.234667pt;}
._18_c00269{width:25.258667pt;}
._d_c00269{width:26.282667pt;}
._f_c00269{width:27.477333pt;}
._b_c00269{width:28.501333pt;}
._e_c00269{width:30.293333pt;}
._20_c00269{width:32.000000pt;}
._8_c00269{width:32.938667pt;}
._15_c00269{width:34.474667pt;}
._1a_c00269{width:36.608000pt;}
._13_c00269{width:37.802667pt;}
._2e_c00269{width:39.082667pt;}
._17_c00269{width:40.362667pt;}
._1b_c00269{width:41.557333pt;}
._21_c00269{width:42.666667pt;}
._6_c00269{width:43.690667pt;}
._22_c00269{width:46.336000pt;}
._26_c00269{width:48.298667pt;}
._14_c00269{width:49.920000pt;}
._3a_c00269{width:51.370667pt;}
._7_c00269{width:52.309333pt;}
._3f_c00269{width:53.333333pt;}
._27_c00269{width:54.784000pt;}
._29_c00269{width:55.893333pt;}
._23_c00269{width:57.600000pt;}
._2d_c00269{width:59.221333pt;}
._16_c00269{width:61.098667pt;}
._32_c00269{width:67.157333pt;}
._34_c00269{width:80.117333pt;}
._3b_c00269{width:100.181333pt;}
._31_c00269{width:153.856000pt;}
._30_c00269{width:229.888000pt;}
._2b_c00269{width:396.800000pt;}
._40_c00269{width:1746.432000pt;}
.fs3_c00269{font-size:42.666667pt;}
.fs1_c00269{font-size:74.666667pt;}
.fs0_c00269{font-size:85.333333pt;}
.fs2_c00269{font-size:93.333333pt;}
.y0_c00269{bottom:0.000000pt;}
.y26_c00269{bottom:2.760000pt;}
.y25_c00269{bottom:6.425206pt;}
.y24_c00269{bottom:86.426667pt;}
.y23_c00269{bottom:112.160000pt;}
.y22_c00269{bottom:144.293333pt;}
.y21_c00269{bottom:174.026667pt;}
.y20_c00269{bottom:204.560000pt;}
.y1f_c00269{bottom:234.693333pt;}
.y1e_c00269{bottom:264.693333pt;}
.y1d_c00269{bottom:295.760000pt;}
.y1c_c00269{bottom:326.426667pt;}
.y1b_c00269{bottom:356.160000pt;}
.y1a_c00269{bottom:386.693333pt;}
.y19_c00269{bottom:416.960000pt;}
.y18_c00269{bottom:446.693333pt;}
.y17_c00269{bottom:476.960000pt;}
.y16_c00269{bottom:507.893333pt;}
.y15_c00269{bottom:538.560000pt;}
.y14_c00269{bottom:567.893333pt;}
.y13_c00269{bottom:597.093333pt;}
.y12_c00269{bottom:627.893333pt;}
.y11_c00269{bottom:657.893333pt;}
.y10_c00269{bottom:688.160000pt;}
.yf_c00269{bottom:716.426667pt;}
.ye_c00269{bottom:747.893333pt;}
.yd_c00269{bottom:777.093333pt;}
.yc_c00269{bottom:808.560000pt;}
.yb_c00269{bottom:837.093333pt;}
.ya_c00269{bottom:866.693333pt;}
.y9_c00269{bottom:896.960000pt;}
.y8_c00269{bottom:926.426667pt;}
.y7_c00269{bottom:956.160000pt;}
.y6_c00269{bottom:985.760000pt;}
.y5_c00269{bottom:1015.760000pt;}
.y4_c00269{bottom:1045.226667pt;}
.y3_c00269{bottom:1074.693333pt;}
.y2_c00269{bottom:1104.560000pt;}
.y1_c00269{bottom:1134.293333pt;}
.h4_c00269{height:11.733399pt;}
.h5_c00269{height:38.937500pt;}
.h2_c00269{height:108.041667pt;}
.h3_c00269{height:118.170573pt;}
.h0_c00269{height:1229.066667pt;}
.h1_c00269{height:1229.333333pt;}
.w2_c00269{width:93.222667pt;}
.w0_c00269{width:767.266667pt;}
.w1_c00269{width:767.333333pt;}
.x0_c00269{left:0.000000pt;}
.x6_c00269{left:114.933333pt;}
.x8_c00269{left:160.533333pt;}
.x5_c00269{left:192.800000pt;}
.x4_c00269{left:197.600000pt;}
.xe_c00269{left:221.600000pt;}
.xd_c00269{left:222.533333pt;}
.xc_c00269{left:223.466667pt;}
.xb_c00269{left:224.933333pt;}
.xa_c00269{left:226.400000pt;}
.x9_c00269{left:227.333333pt;}
.x3_c00269{left:228.266667pt;}
.x2_c00269{left:229.600000pt;}
.x1_c00269{left:230.666667pt;}
.x7_c00269{left:271.466667pt;}
.xf_c00269{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10690784d17a25ed9371c20e.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_23cc6d026a32c5055b74b483.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_b7e87ebf885f4c68459ce8da.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_ebc64c3f17ffbc5534552b0c.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls2_c00270{letter-spacing:0.000000px;}
.ls3_c00270{letter-spacing:3.000000px;}
.ls0_c00270{letter-spacing:29.808000px;}
.ls1_c00270{letter-spacing:32.556000px;}
.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;}
}
.ws2_c00270{word-spacing:-63.504000px;}
.ws0_c00270{word-spacing:-51.000000px;}
.ws3_c00270{word-spacing:-23.136000px;}
.ws1_c00270{word-spacing:-19.195200px;}
.ws4_c00270{word-spacing:0.000000px;}
._1a_c00270{margin-left:-36.960000px;}
._1b_c00270{margin-left:-18.624000px;}
._3c_c00270{margin-left:-17.376000px;}
._f_c00270{margin-left:-15.840000px;}
._10_c00270{margin-left:-12.576000px;}
._15_c00270{margin-left:-10.368000px;}
._18_c00270{margin-left:-9.120000px;}
._36_c00270{margin-left:-7.602000px;}
._17_c00270{margin-left:-6.240000px;}
._21_c00270{margin-left:-5.220000px;}
._16_c00270{margin-left:-4.128000px;}
._23_c00270{margin-left:-2.286000px;}
._a_c00270{margin-left:-1.056000px;}
._3_c00270{width:1.920000px;}
._2_c00270{width:3.072000px;}
._8_c00270{width:4.128000px;}
._6_c00270{width:5.856000px;}
._5_c00270{width:7.488000px;}
._7_c00270{width:9.024000px;}
._1c_c00270{width:10.368000px;}
._0_c00270{width:11.424000px;}
._14_c00270{width:13.056000px;}
._c_c00270{width:14.208000px;}
._12_c00270{width:15.552000px;}
._26_c00270{width:16.800000px;}
._9_c00270{width:18.912000px;}
._2f_c00270{width:21.336000px;}
._35_c00270{width:24.312000px;}
._1d_c00270{width:25.440000px;}
._2e_c00270{width:26.496000px;}
._13_c00270{width:27.840000px;}
._4_c00270{width:30.432000px;}
._b_c00270{width:31.776000px;}
._d_c00270{width:33.504000px;}
._2a_c00270{width:34.656000px;}
._31_c00270{width:35.904000px;}
._22_c00270{width:37.032000px;}
._1f_c00270{width:38.688000px;}
._24_c00270{width:40.608000px;}
._40_c00270{width:42.264000px;}
._29_c00270{width:43.680000px;}
._1e_c00270{width:45.792000px;}
._41_c00270{width:46.848000px;}
._27_c00270{width:48.096000px;}
._28_c00270{width:50.016000px;}
._32_c00270{width:52.008000px;}
._2d_c00270{width:54.528000px;}
._2b_c00270{width:56.544000px;}
._25_c00270{width:58.776000px;}
._30_c00270{width:60.252000px;}
._42_c00270{width:62.760000px;}
._3f_c00270{width:66.624000px;}
._e_c00270{width:69.120000px;}
._37_c00270{width:72.744000px;}
._2c_c00270{width:73.902000px;}
._3e_c00270{width:82.080000px;}
._3b_c00270{width:95.808000px;}
._33_c00270{width:110.280000px;}
._20_c00270{width:150.144000px;}
._1_c00270{width:158.592000px;}
._3d_c00270{width:174.816000px;}
._34_c00270{width:184.032000px;}
._3a_c00270{width:214.830000px;}
._39_c00270{width:231.432000px;}
._19_c00270{width:297.504000px;}
._38_c00270{width:388.884000px;}
._11_c00270{width:493.152000px;}
.fc2_c00270{color:transparent;}
.fc1_c00270{color:rgb(128,128,128);}
.fc0_c00270{color:rgb(0,0,0);}
.fs4_c00270{font-size:48.000000px;}
.fs2_c00270{font-size:67.200000px;}
.fs3_c00270{font-size:84.000000px;}
.fs0_c00270{font-size:96.000000px;}
.fs1_c00270{font-size:102.000000px;}
.y0_c00270{bottom:0.000000px;}
.y26_c00270{bottom:3.105000px;}
.y25_c00270{bottom:7.228369px;}
.y24_c00270{bottom:88.470000px;}
.y23_c00270{bottom:124.920000px;}
.y22_c00270{bottom:159.870000px;}
.y21_c00270{bottom:193.620000px;}
.y20_c00270{bottom:227.520000px;}
.y1f_c00270{bottom:260.220000px;}
.y1e_c00270{bottom:295.620000px;}
.y1d_c00270{bottom:328.620000px;}
.y1c_c00270{bottom:362.520000px;}
.y1b_c00270{bottom:396.270000px;}
.y1a_c00270{bottom:428.670000px;}
.y19_c00270{bottom:463.770000px;}
.y18_c00270{bottom:497.070000px;}
.y17_c00270{bottom:530.220000px;}
.y16_c00270{bottom:563.970000px;}
.y15_c00270{bottom:597.270000px;}
.y14_c00270{bottom:630.420000px;}
.y13_c00270{bottom:663.870000px;}
.y12_c00270{bottom:696.870000px;}
.y11_c00270{bottom:730.320000px;}
.y10_c00270{bottom:764.070000px;}
.yf_c00270{bottom:797.520000px;}
.ye_c00270{bottom:830.220000px;}
.yd_c00270{bottom:863.370000px;}
.yc_c00270{bottom:896.670000px;}
.yb_c00270{bottom:929.520000px;}
.ya_c00270{bottom:963.120000px;}
.y9_c00270{bottom:996.270000px;}
.y8_c00270{bottom:1029.720000px;}
.y7_c00270{bottom:1063.170000px;}
.y6_c00270{bottom:1096.770000px;}
.y5_c00270{bottom:1129.620000px;}
.y4_c00270{bottom:1163.070000px;}
.y3_c00270{bottom:1198.470000px;}
.y2_c00270{bottom:1229.820000px;}
.y1_c00270{bottom:1262.970000px;}
.h3_c00270{height:13.200073px;}
.h4_c00270{height:43.804688px;}
.h2_c00270{height:121.546875px;}
.h0_c00270{height:1383.450000px;}
.h1_c00270{height:1383.750000px;}
.w2_c00270{width:104.875500px;}
.w0_c00270{width:878.025000px;}
.w1_c00270{width:878.250000px;}
.x0_c00270{left:0.000000px;}
.xf_c00270{left:48.300000px;}
.xd_c00270{left:49.350000px;}
.xc_c00270{left:51.000000px;}
.xa_c00270{left:52.050000px;}
.x9_c00270{left:53.250000px;}
.x8_c00270{left:54.300000px;}
.x7_c00270{left:55.350000px;}
.x6_c00270{left:57.000000px;}
.xb_c00270{left:58.050000px;}
.x5_c00270{left:59.700000px;}
.x4_c00270{left:60.750000px;}
.x3_c00270{left:61.800000px;}
.x2_c00270{left:62.850000px;}
.xe_c00270{left:97.950000px;}
.x1_c00270{left:112.950000px;}
.x11_c00270{left:390.826721px;}
.x10_c00270{left:598.050000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls2_c00270{letter-spacing:0.000000pt;}
.ls3_c00270{letter-spacing:2.666667pt;}
.ls0_c00270{letter-spacing:26.496000pt;}
.ls1_c00270{letter-spacing:28.938667pt;}
.ws2_c00270{word-spacing:-56.448000pt;}
.ws0_c00270{word-spacing:-45.333333pt;}
.ws3_c00270{word-spacing:-20.565333pt;}
.ws1_c00270{word-spacing:-17.062400pt;}
.ws4_c00270{word-spacing:0.000000pt;}
._1a_c00270{margin-left:-32.853333pt;}
._1b_c00270{margin-left:-16.554667pt;}
._3c_c00270{margin-left:-15.445333pt;}
._f_c00270{margin-left:-14.080000pt;}
._10_c00270{margin-left:-11.178667pt;}
._15_c00270{margin-left:-9.216000pt;}
._18_c00270{margin-left:-8.106667pt;}
._36_c00270{margin-left:-6.757333pt;}
._17_c00270{margin-left:-5.546667pt;}
._21_c00270{margin-left:-4.640000pt;}
._16_c00270{margin-left:-3.669333pt;}
._23_c00270{margin-left:-2.032000pt;}
._a_c00270{margin-left:-0.938667pt;}
._3_c00270{width:1.706667pt;}
._2_c00270{width:2.730667pt;}
._8_c00270{width:3.669333pt;}
._6_c00270{width:5.205333pt;}
._5_c00270{width:6.656000pt;}
._7_c00270{width:8.021333pt;}
._1c_c00270{width:9.216000pt;}
._0_c00270{width:10.154667pt;}
._14_c00270{width:11.605333pt;}
._c_c00270{width:12.629333pt;}
._12_c00270{width:13.824000pt;}
._26_c00270{width:14.933333pt;}
._9_c00270{width:16.810667pt;}
._2f_c00270{width:18.965333pt;}
._35_c00270{width:21.610667pt;}
._1d_c00270{width:22.613333pt;}
._2e_c00270{width:23.552000pt;}
._13_c00270{width:24.746667pt;}
._4_c00270{width:27.050667pt;}
._b_c00270{width:28.245333pt;}
._d_c00270{width:29.781333pt;}
._2a_c00270{width:30.805333pt;}
._31_c00270{width:31.914667pt;}
._22_c00270{width:32.917333pt;}
._1f_c00270{width:34.389333pt;}
._24_c00270{width:36.096000pt;}
._40_c00270{width:37.568000pt;}
._29_c00270{width:38.826667pt;}
._1e_c00270{width:40.704000pt;}
._41_c00270{width:41.642667pt;}
._27_c00270{width:42.752000pt;}
._28_c00270{width:44.458667pt;}
._32_c00270{width:46.229333pt;}
._2d_c00270{width:48.469333pt;}
._2b_c00270{width:50.261333pt;}
._25_c00270{width:52.245333pt;}
._30_c00270{width:53.557333pt;}
._42_c00270{width:55.786667pt;}
._3f_c00270{width:59.221333pt;}
._e_c00270{width:61.440000pt;}
._37_c00270{width:64.661333pt;}
._2c_c00270{width:65.690667pt;}
._3e_c00270{width:72.960000pt;}
._3b_c00270{width:85.162667pt;}
._33_c00270{width:98.026667pt;}
._20_c00270{width:133.461333pt;}
._1_c00270{width:140.970667pt;}
._3d_c00270{width:155.392000pt;}
._34_c00270{width:163.584000pt;}
._3a_c00270{width:190.960000pt;}
._39_c00270{width:205.717333pt;}
._19_c00270{width:264.448000pt;}
._38_c00270{width:345.674667pt;}
._11_c00270{width:438.357333pt;}
.fs4_c00270{font-size:42.666667pt;}
.fs2_c00270{font-size:59.733333pt;}
.fs3_c00270{font-size:74.666667pt;}
.fs0_c00270{font-size:85.333333pt;}
.fs1_c00270{font-size:90.666667pt;}
.y0_c00270{bottom:0.000000pt;}
.y26_c00270{bottom:2.760000pt;}
.y25_c00270{bottom:6.425217pt;}
.y24_c00270{bottom:78.640000pt;}
.y23_c00270{bottom:111.040000pt;}
.y22_c00270{bottom:142.106667pt;}
.y21_c00270{bottom:172.106667pt;}
.y20_c00270{bottom:202.240000pt;}
.y1f_c00270{bottom:231.306667pt;}
.y1e_c00270{bottom:262.773333pt;}
.y1d_c00270{bottom:292.106667pt;}
.y1c_c00270{bottom:322.240000pt;}
.y1b_c00270{bottom:352.240000pt;}
.y1a_c00270{bottom:381.040000pt;}
.y19_c00270{bottom:412.240000pt;}
.y18_c00270{bottom:441.840000pt;}
.y17_c00270{bottom:471.306667pt;}
.y16_c00270{bottom:501.306667pt;}
.y15_c00270{bottom:530.906667pt;}
.y14_c00270{bottom:560.373333pt;}
.y13_c00270{bottom:590.106667pt;}
.y12_c00270{bottom:619.440000pt;}
.y11_c00270{bottom:649.173333pt;}
.y10_c00270{bottom:679.173333pt;}
.yf_c00270{bottom:708.906667pt;}
.ye_c00270{bottom:737.973333pt;}
.yd_c00270{bottom:767.440000pt;}
.yc_c00270{bottom:797.040000pt;}
.yb_c00270{bottom:826.240000pt;}
.ya_c00270{bottom:856.106667pt;}
.y9_c00270{bottom:885.573333pt;}
.y8_c00270{bottom:915.306667pt;}
.y7_c00270{bottom:945.040000pt;}
.y6_c00270{bottom:974.906667pt;}
.y5_c00270{bottom:1004.106667pt;}
.y4_c00270{bottom:1033.840000pt;}
.y3_c00270{bottom:1065.306667pt;}
.y2_c00270{bottom:1093.173333pt;}
.y1_c00270{bottom:1122.640000pt;}
.h3_c00270{height:11.733399pt;}
.h4_c00270{height:38.937500pt;}
.h2_c00270{height:108.041667pt;}
.h0_c00270{height:1229.733333pt;}
.h1_c00270{height:1230.000000pt;}
.w2_c00270{width:93.222667pt;}
.w0_c00270{width:780.466667pt;}
.w1_c00270{width:780.666667pt;}
.x0_c00270{left:0.000000pt;}
.xf_c00270{left:42.933333pt;}
.xd_c00270{left:43.866667pt;}
.xc_c00270{left:45.333333pt;}
.xa_c00270{left:46.266667pt;}
.x9_c00270{left:47.333333pt;}
.x8_c00270{left:48.266667pt;}
.x7_c00270{left:49.200000pt;}
.x6_c00270{left:50.666667pt;}
.xb_c00270{left:51.600000pt;}
.x5_c00270{left:53.066667pt;}
.x4_c00270{left:54.000000pt;}
.x3_c00270{left:54.933333pt;}
.x2_c00270{left:55.866667pt;}
.xe_c00270{left:87.066667pt;}
.x1_c00270{left:100.400000pt;}
.x11_c00270{left:347.401530pt;}
.x10_c00270{left:531.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_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_994c21ecdb22ca1531a50e24.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_3f9edda82d548edbd5cdc338.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_aa4fe4bb42abef915c745b77.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls2_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:4.452000px;}
.ls1_c00271{letter-spacing:6.756000px;}
.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:-51.000000px;}
.ws0_c00271{word-spacing:-23.136000px;}
.ws2_c00271{word-spacing:0.000000px;}
._3b_c00271{margin-left:-30.528000px;}
._3e_c00271{margin-left:-23.712000px;}
._3d_c00271{margin-left:-18.336000px;}
._18_c00271{margin-left:-17.280000px;}
._31_c00271{margin-left:-15.840000px;}
._36_c00271{margin-left:-13.632000px;}
._32_c00271{margin-left:-12.576000px;}
._37_c00271{margin-left:-11.328000px;}
._35_c00271{margin-left:-9.696000px;}
._8_c00271{margin-left:-5.280000px;}
._7_c00271{margin-left:-4.128000px;}
._19_c00271{margin-left:-2.208000px;}
._2d_c00271{margin-left:-1.152000px;}
._1f_c00271{width:1.056000px;}
._0_c00271{width:2.112000px;}
._3_c00271{width:3.456000px;}
._d_c00271{width:4.704000px;}
._2_c00271{width:5.856000px;}
._e_c00271{width:6.912000px;}
._9_c00271{width:8.736000px;}
._11_c00271{width:10.080000px;}
._b_c00271{width:11.904000px;}
._3a_c00271{width:13.152000px;}
._10_c00271{width:14.208000px;}
._17_c00271{width:16.032000px;}
._25_c00271{width:17.184000px;}
._13_c00271{width:18.432000px;}
._1e_c00271{width:19.776000px;}
._1_c00271{width:21.312000px;}
._23_c00271{width:24.480000px;}
._4_c00271{width:25.728000px;}
._16_c00271{width:27.648000px;}
._1b_c00271{width:28.896000px;}
._5_c00271{width:29.952000px;}
._c_c00271{width:31.008000px;}
._22_c00271{width:32.064000px;}
._3c_c00271{width:33.216000px;}
._14_c00271{width:34.560000px;}
._a_c00271{width:36.000000px;}
._6_c00271{width:37.248000px;}
._12_c00271{width:39.360000px;}
._1d_c00271{width:41.472000px;}
._15_c00271{width:43.296000px;}
._21_c00271{width:44.928000px;}
._28_c00271{width:46.944000px;}
._1a_c00271{width:49.536000px;}
._2a_c00271{width:50.688000px;}
._2e_c00271{width:51.840000px;}
._2b_c00271{width:52.992000px;}
._29_c00271{width:54.144000px;}
._f_c00271{width:55.680000px;}
._30_c00271{width:57.984000px;}
._26_c00271{width:61.152000px;}
._20_c00271{width:62.304000px;}
._24_c00271{width:64.320000px;}
._2f_c00271{width:65.472000px;}
._2c_c00271{width:69.408000px;}
._27_c00271{width:73.728000px;}
._1c_c00271{width:79.488000px;}
._38_c00271{width:94.008000px;}
._34_c00271{width:174.432000px;}
._39_c00271{width:198.816000px;}
._33_c00271{width:289.728000px;}
.fc2_c00271{color:transparent;}
.fc1_c00271{color:rgb(128,128,128);}
.fc0_c00271{color:rgb(0,0,0);}
.fs3_c00271{font-size:48.000000px;}
.fs1_c00271{font-size:84.000000px;}
.fs0_c00271{font-size:96.000000px;}
.fs2_c00271{font-size:102.000000px;}
.y0_c00271{bottom:0.000000px;}
.y26_c00271{bottom:3.105000px;}
.y25_c00271{bottom:7.228357px;}
.y24_c00271{bottom:90.480000px;}
.y23_c00271{bottom:123.480000px;}
.y22_c00271{bottom:157.680000px;}
.y21_c00271{bottom:191.430000px;}
.y20_c00271{bottom:225.480000px;}
.y1f_c00271{bottom:259.830000px;}
.y1e_c00271{bottom:294.030000px;}
.y1d_c00271{bottom:327.780000px;}
.y1c_c00271{bottom:362.430000px;}
.y1b_c00271{bottom:396.180000px;}
.y1a_c00271{bottom:430.080000px;}
.y19_c00271{bottom:464.430000px;}
.y18_c00271{bottom:498.480000px;}
.y17_c00271{bottom:531.330000px;}
.y16_c00271{bottom:565.380000px;}
.y15_c00271{bottom:599.730000px;}
.y14_c00271{bottom:632.880000px;}
.y13_c00271{bottom:666.330000px;}
.y12_c00271{bottom:700.380000px;}
.y11_c00271{bottom:734.430000px;}
.y10_c00271{bottom:768.180000px;}
.yf_c00271{bottom:801.330000px;}
.ye_c00271{bottom:835.080000px;}
.yd_c00271{bottom:869.430000px;}
.yc_c00271{bottom:902.580000px;}
.yb_c00271{bottom:935.880000px;}
.ya_c00271{bottom:968.730000px;}
.y9_c00271{bottom:1002.030000px;}
.y8_c00271{bottom:1035.480000px;}
.y7_c00271{bottom:1068.630000px;}
.y6_c00271{bottom:1102.230000px;}
.y5_c00271{bottom:1135.680000px;}
.y4_c00271{bottom:1169.430000px;}
.y3_c00271{bottom:1202.280000px;}
.y2_c00271{bottom:1236.030000px;}
.y1_c00271{bottom:1268.730000px;}
.h3_c00271{height:13.200074px;}
.h4_c00271{height:43.804688px;}
.h2_c00271{height:121.546875px;}
.h0_c00271{height:1382.700000px;}
.h1_c00271{height:1383.000000px;}
.w2_c00271{width:104.875500px;}
.w0_c00271{width:863.175000px;}
.w1_c00271{width:863.250000px;}
.x0_c00271{left:0.000000px;}
.x8_c00271{left:142.800000px;}
.x7_c00271{left:146.100000px;}
.x9_c00271{left:156.900000px;}
.x3_c00271{left:213.000000px;}
.x6_c00271{left:247.500000px;}
.x5_c00271{left:248.700000px;}
.x4_c00271{left:249.750000px;}
.x2_c00271{left:250.800000px;}
.x1_c00271{left:252.900000px;}
.xb_c00271{left:383.401749px;}
.xa_c00271{left:796.800000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls2_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:3.957333pt;}
.ls1_c00271{letter-spacing:6.005333pt;}
.ws1_c00271{word-spacing:-45.333333pt;}
.ws0_c00271{word-spacing:-20.565333pt;}
.ws2_c00271{word-spacing:0.000000pt;}
._3b_c00271{margin-left:-27.136000pt;}
._3e_c00271{margin-left:-21.077333pt;}
._3d_c00271{margin-left:-16.298667pt;}
._18_c00271{margin-left:-15.360000pt;}
._31_c00271{margin-left:-14.080000pt;}
._36_c00271{margin-left:-12.117333pt;}
._32_c00271{margin-left:-11.178667pt;}
._37_c00271{margin-left:-10.069333pt;}
._35_c00271{margin-left:-8.618667pt;}
._8_c00271{margin-left:-4.693333pt;}
._7_c00271{margin-left:-3.669333pt;}
._19_c00271{margin-left:-1.962667pt;}
._2d_c00271{margin-left:-1.024000pt;}
._1f_c00271{width:0.938667pt;}
._0_c00271{width:1.877333pt;}
._3_c00271{width:3.072000pt;}
._d_c00271{width:4.181333pt;}
._2_c00271{width:5.205333pt;}
._e_c00271{width:6.144000pt;}
._9_c00271{width:7.765333pt;}
._11_c00271{width:8.960000pt;}
._b_c00271{width:10.581333pt;}
._3a_c00271{width:11.690667pt;}
._10_c00271{width:12.629333pt;}
._17_c00271{width:14.250667pt;}
._25_c00271{width:15.274667pt;}
._13_c00271{width:16.384000pt;}
._1e_c00271{width:17.578667pt;}
._1_c00271{width:18.944000pt;}
._23_c00271{width:21.760000pt;}
._4_c00271{width:22.869333pt;}
._16_c00271{width:24.576000pt;}
._1b_c00271{width:25.685333pt;}
._5_c00271{width:26.624000pt;}
._c_c00271{width:27.562667pt;}
._22_c00271{width:28.501333pt;}
._3c_c00271{width:29.525333pt;}
._14_c00271{width:30.720000pt;}
._a_c00271{width:32.000000pt;}
._6_c00271{width:33.109333pt;}
._12_c00271{width:34.986667pt;}
._1d_c00271{width:36.864000pt;}
._15_c00271{width:38.485333pt;}
._21_c00271{width:39.936000pt;}
._28_c00271{width:41.728000pt;}
._1a_c00271{width:44.032000pt;}
._2a_c00271{width:45.056000pt;}
._2e_c00271{width:46.080000pt;}
._2b_c00271{width:47.104000pt;}
._29_c00271{width:48.128000pt;}
._f_c00271{width:49.493333pt;}
._30_c00271{width:51.541333pt;}
._26_c00271{width:54.357333pt;}
._20_c00271{width:55.381333pt;}
._24_c00271{width:57.173333pt;}
._2f_c00271{width:58.197333pt;}
._2c_c00271{width:61.696000pt;}
._27_c00271{width:65.536000pt;}
._1c_c00271{width:70.656000pt;}
._38_c00271{width:83.562667pt;}
._34_c00271{width:155.050667pt;}
._39_c00271{width:176.725333pt;}
._33_c00271{width:257.536000pt;}
.fs3_c00271{font-size:42.666667pt;}
.fs1_c00271{font-size:74.666667pt;}
.fs0_c00271{font-size:85.333333pt;}
.fs2_c00271{font-size:90.666667pt;}
.y0_c00271{bottom:0.000000pt;}
.y26_c00271{bottom:2.760000pt;}
.y25_c00271{bottom:6.425206pt;}
.y24_c00271{bottom:80.426667pt;}
.y23_c00271{bottom:109.760000pt;}
.y22_c00271{bottom:140.160000pt;}
.y21_c00271{bottom:170.160000pt;}
.y20_c00271{bottom:200.426667pt;}
.y1f_c00271{bottom:230.960000pt;}
.y1e_c00271{bottom:261.360000pt;}
.y1d_c00271{bottom:291.360000pt;}
.y1c_c00271{bottom:322.160000pt;}
.y1b_c00271{bottom:352.160000pt;}
.y1a_c00271{bottom:382.293333pt;}
.y19_c00271{bottom:412.826667pt;}
.y18_c00271{bottom:443.093333pt;}
.y17_c00271{bottom:472.293333pt;}
.y16_c00271{bottom:502.560000pt;}
.y15_c00271{bottom:533.093333pt;}
.y14_c00271{bottom:562.560000pt;}
.y13_c00271{bottom:592.293333pt;}
.y12_c00271{bottom:622.560000pt;}
.y11_c00271{bottom:652.826667pt;}
.y10_c00271{bottom:682.826667pt;}
.yf_c00271{bottom:712.293333pt;}
.ye_c00271{bottom:742.293333pt;}
.yd_c00271{bottom:772.826667pt;}
.yc_c00271{bottom:802.293333pt;}
.yb_c00271{bottom:831.893333pt;}
.ya_c00271{bottom:861.093333pt;}
.y9_c00271{bottom:890.693333pt;}
.y8_c00271{bottom:920.426667pt;}
.y7_c00271{bottom:949.893333pt;}
.y6_c00271{bottom:979.760000pt;}
.y5_c00271{bottom:1009.493333pt;}
.y4_c00271{bottom:1039.493333pt;}
.y3_c00271{bottom:1068.693333pt;}
.y2_c00271{bottom:1098.693333pt;}
.y1_c00271{bottom:1127.760000pt;}
.h3_c00271{height:11.733399pt;}
.h4_c00271{height:38.937500pt;}
.h2_c00271{height:108.041667pt;}
.h0_c00271{height:1229.066667pt;}
.h1_c00271{height:1229.333333pt;}
.w2_c00271{width:93.222667pt;}
.w0_c00271{width:767.266667pt;}
.w1_c00271{width:767.333333pt;}
.x0_c00271{left:0.000000pt;}
.x8_c00271{left:126.933333pt;}
.x7_c00271{left:129.866667pt;}
.x9_c00271{left:139.466667pt;}
.x3_c00271{left:189.333333pt;}
.x6_c00271{left:220.000000pt;}
.x5_c00271{left:221.066667pt;}
.x4_c00271{left:222.000000pt;}
.x2_c00271{left:222.933333pt;}
.x1_c00271{left:224.800000pt;}
.xb_c00271{left:340.801554pt;}
.xa_c00271{left:708.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f1d4c3b94bb0e370c7a54de.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_4cb7b42fc1c575a0637bb936.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_1e9f98c0d0b3f5a2190276c1.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:5.400000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-51.000000px;}
.ws1_c00272{word-spacing:0.000000px;}
._20_c00272{margin-left:-81.888000px;}
._22_c00272{margin-left:-48.000000px;}
._28_c00272{margin-left:-38.880000px;}
._31_c00272{margin-left:-29.664000px;}
._2c_c00272{margin-left:-25.344000px;}
._3c_c00272{margin-left:-24.288000px;}
._24_c00272{margin-left:-19.656000px;}
._3b_c00272{margin-left:-18.240000px;}
._2d_c00272{margin-left:-15.840000px;}
._15_c00272{margin-left:-11.232000px;}
._39_c00272{margin-left:-9.696000px;}
._2a_c00272{margin-left:-8.640000px;}
._30_c00272{margin-left:-7.200000px;}
._44_c00272{margin-left:-5.952000px;}
._36_c00272{margin-left:-4.512000px;}
._9_c00272{margin-left:-2.496000px;}
._16_c00272{margin-left:-1.344000px;}
._2_c00272{width:2.016000px;}
._3_c00272{width:3.456000px;}
._b_c00272{width:5.280000px;}
._7_c00272{width:6.912000px;}
._5_c00272{width:7.968000px;}
._1_c00272{width:9.600000px;}
._1d_c00272{width:10.848000px;}
._18_c00272{width:12.480000px;}
._46_c00272{width:13.536000px;}
._10_c00272{width:14.784000px;}
._26_c00272{width:16.512000px;}
._f_c00272{width:17.664000px;}
._29_c00272{width:18.720000px;}
._c_c00272{width:21.216000px;}
._33_c00272{width:24.288000px;}
._1b_c00272{width:25.728000px;}
._34_c00272{width:26.976000px;}
._12_c00272{width:28.128000px;}
._e_c00272{width:29.856000px;}
._14_c00272{width:32.736000px;}
._11_c00272{width:33.984000px;}
._13_c00272{width:35.904000px;}
._0_c00272{width:37.632000px;}
._23_c00272{width:38.712000px;}
._17_c00272{width:40.512000px;}
._1a_c00272{width:42.144000px;}
._d_c00272{width:43.392000px;}
._1e_c00272{width:44.832000px;}
._35_c00272{width:47.232000px;}
._8_c00272{width:49.536000px;}
._2f_c00272{width:51.264000px;}
._6_c00272{width:52.992000px;}
._19_c00272{width:55.296000px;}
._37_c00272{width:56.352000px;}
._42_c00272{width:58.080000px;}
._a_c00272{width:60.192000px;}
._47_c00272{width:62.016000px;}
._41_c00272{width:63.648000px;}
._3e_c00272{width:64.800000px;}
._1c_c00272{width:66.816000px;}
._32_c00272{width:68.736000px;}
._45_c00272{width:70.944000px;}
._3d_c00272{width:75.360000px;}
._43_c00272{width:77.280000px;}
._2b_c00272{width:79.080000px;}
._3f_c00272{width:84.576000px;}
._40_c00272{width:88.608000px;}
._27_c00272{width:98.592000px;}
._4_c00272{width:116.832000px;}
._1f_c00272{width:174.432000px;}
._38_c00272{width:184.896000px;}
._2e_c00272{width:189.312000px;}
._25_c00272{width:333.144000px;}
._3a_c00272{width:343.584000px;}
._48_c00272{width:829.536000px;}
._21_c00272{width:1274.976000px;}
.fc2_c00272{color:transparent;}
.fc1_c00272{color:rgb(128,128,128);}
.fc0_c00272{color:rgb(0,0,0);}
.fs3_c00272{font-size:48.000000px;}
.fs1_c00272{font-size:84.000000px;}
.fs0_c00272{font-size:96.000000px;}
.fs2_c00272{font-size:102.000000px;}
.y0_c00272{bottom:0.000000px;}
.y26_c00272{bottom:3.105000px;}
.y25_c00272{bottom:7.228369px;}
.y24_c00272{bottom:88.770000px;}
.y23_c00272{bottom:123.570000px;}
.y22_c00272{bottom:158.520000px;}
.y21_c00272{bottom:192.420000px;}
.y20_c00272{bottom:226.470000px;}
.y1f_c00272{bottom:260.520000px;}
.y1e_c00272{bottom:294.270000px;}
.y1d_c00272{bottom:328.020000px;}
.y1c_c00272{bottom:361.770000px;}
.y1b_c00272{bottom:395.520000px;}
.y1a_c00272{bottom:428.970000px;}
.y19_c00272{bottom:461.970000px;}
.y18_c00272{bottom:496.170000px;}
.y17_c00272{bottom:529.770000px;}
.y16_c00272{bottom:563.220000px;}
.y15_c00272{bottom:596.970000px;}
.y14_c00272{bottom:630.420000px;}
.y13_c00272{bottom:663.420000px;}
.y12_c00272{bottom:696.570000px;}
.y11_c00272{bottom:729.570000px;}
.y10_c00272{bottom:763.020000px;}
.yf_c00272{bottom:797.220000px;}
.ye_c00272{bottom:830.520000px;}
.yd_c00272{bottom:863.370000px;}
.yc_c00272{bottom:897.120000px;}
.yb_c00272{bottom:930.120000px;}
.ya_c00272{bottom:963.570000px;}
.y9_c00272{bottom:996.870000px;}
.y8_c00272{bottom:1031.670000px;}
.y7_c00272{bottom:1064.370000px;}
.y6_c00272{bottom:1097.520000px;}
.y5_c00272{bottom:1131.570000px;}
.y4_c00272{bottom:1164.720000px;}
.y3_c00272{bottom:1198.470000px;}
.y2_c00272{bottom:1232.220000px;}
.y1_c00272{bottom:1264.620000px;}
.h3_c00272{height:13.200073px;}
.h4_c00272{height:43.804688px;}
.h2_c00272{height:121.546875px;}
.h0_c00272{height:1383.450000px;}
.h1_c00272{height:1383.750000px;}
.w2_c00272{width:104.875500px;}
.w0_c00272{width:878.025000px;}
.w1_c00272{width:878.250000px;}
.x0_c00272{left:0.000000px;}
.x7_c00272{left:49.350000px;}
.x6_c00272{left:51.000000px;}
.x5_c00272{left:52.650000px;}
.x4_c00272{left:54.300000px;}
.x2_c00272{left:55.350000px;}
.x1_c00272{left:57.000000px;}
.x3_c00272{left:101.250000px;}
.x8_c00272{left:332.850000px;}
.x9_c00272{left:390.826721px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:4.800000pt;}
.ws0_c00272{word-spacing:-45.333333pt;}
.ws1_c00272{word-spacing:0.000000pt;}
._20_c00272{margin-left:-72.789333pt;}
._22_c00272{margin-left:-42.666667pt;}
._28_c00272{margin-left:-34.560000pt;}
._31_c00272{margin-left:-26.368000pt;}
._2c_c00272{margin-left:-22.528000pt;}
._3c_c00272{margin-left:-21.589333pt;}
._24_c00272{margin-left:-17.472000pt;}
._3b_c00272{margin-left:-16.213333pt;}
._2d_c00272{margin-left:-14.080000pt;}
._15_c00272{margin-left:-9.984000pt;}
._39_c00272{margin-left:-8.618667pt;}
._2a_c00272{margin-left:-7.680000pt;}
._30_c00272{margin-left:-6.400000pt;}
._44_c00272{margin-left:-5.290667pt;}
._36_c00272{margin-left:-4.010667pt;}
._9_c00272{margin-left:-2.218667pt;}
._16_c00272{margin-left:-1.194667pt;}
._2_c00272{width:1.792000pt;}
._3_c00272{width:3.072000pt;}
._b_c00272{width:4.693333pt;}
._7_c00272{width:6.144000pt;}
._5_c00272{width:7.082667pt;}
._1_c00272{width:8.533333pt;}
._1d_c00272{width:9.642667pt;}
._18_c00272{width:11.093333pt;}
._46_c00272{width:12.032000pt;}
._10_c00272{width:13.141333pt;}
._26_c00272{width:14.677333pt;}
._f_c00272{width:15.701333pt;}
._29_c00272{width:16.640000pt;}
._c_c00272{width:18.858667pt;}
._33_c00272{width:21.589333pt;}
._1b_c00272{width:22.869333pt;}
._34_c00272{width:23.978667pt;}
._12_c00272{width:25.002667pt;}
._e_c00272{width:26.538667pt;}
._14_c00272{width:29.098667pt;}
._11_c00272{width:30.208000pt;}
._13_c00272{width:31.914667pt;}
._0_c00272{width:33.450667pt;}
._23_c00272{width:34.410667pt;}
._17_c00272{width:36.010667pt;}
._1a_c00272{width:37.461333pt;}
._d_c00272{width:38.570667pt;}
._1e_c00272{width:39.850667pt;}
._35_c00272{width:41.984000pt;}
._8_c00272{width:44.032000pt;}
._2f_c00272{width:45.568000pt;}
._6_c00272{width:47.104000pt;}
._19_c00272{width:49.152000pt;}
._37_c00272{width:50.090667pt;}
._42_c00272{width:51.626667pt;}
._a_c00272{width:53.504000pt;}
._47_c00272{width:55.125333pt;}
._41_c00272{width:56.576000pt;}
._3e_c00272{width:57.600000pt;}
._1c_c00272{width:59.392000pt;}
._32_c00272{width:61.098667pt;}
._45_c00272{width:63.061333pt;}
._3d_c00272{width:66.986667pt;}
._43_c00272{width:68.693333pt;}
._2b_c00272{width:70.293333pt;}
._3f_c00272{width:75.178667pt;}
._40_c00272{width:78.762667pt;}
._27_c00272{width:87.637333pt;}
._4_c00272{width:103.850667pt;}
._1f_c00272{width:155.050667pt;}
._38_c00272{width:164.352000pt;}
._2e_c00272{width:168.277333pt;}
._25_c00272{width:296.128000pt;}
._3a_c00272{width:305.408000pt;}
._48_c00272{width:737.365333pt;}
._21_c00272{width:1133.312000pt;}
.fs3_c00272{font-size:42.666667pt;}
.fs1_c00272{font-size:74.666667pt;}
.fs0_c00272{font-size:85.333333pt;}
.fs2_c00272{font-size:90.666667pt;}
.y0_c00272{bottom:0.000000pt;}
.y26_c00272{bottom:2.760000pt;}
.y25_c00272{bottom:6.425217pt;}
.y24_c00272{bottom:78.906667pt;}
.y23_c00272{bottom:109.840000pt;}
.y22_c00272{bottom:140.906667pt;}
.y21_c00272{bottom:171.040000pt;}
.y20_c00272{bottom:201.306667pt;}
.y1f_c00272{bottom:231.573333pt;}
.y1e_c00272{bottom:261.573333pt;}
.y1d_c00272{bottom:291.573333pt;}
.y1c_c00272{bottom:321.573333pt;}
.y1b_c00272{bottom:351.573333pt;}
.y1a_c00272{bottom:381.306667pt;}
.y19_c00272{bottom:410.640000pt;}
.y18_c00272{bottom:441.040000pt;}
.y17_c00272{bottom:470.906667pt;}
.y16_c00272{bottom:500.640000pt;}
.y15_c00272{bottom:530.640000pt;}
.y14_c00272{bottom:560.373333pt;}
.y13_c00272{bottom:589.706667pt;}
.y12_c00272{bottom:619.173333pt;}
.y11_c00272{bottom:648.506667pt;}
.y10_c00272{bottom:678.240000pt;}
.yf_c00272{bottom:708.640000pt;}
.ye_c00272{bottom:738.240000pt;}
.yd_c00272{bottom:767.440000pt;}
.yc_c00272{bottom:797.440000pt;}
.yb_c00272{bottom:826.773333pt;}
.ya_c00272{bottom:856.506667pt;}
.y9_c00272{bottom:886.106667pt;}
.y8_c00272{bottom:917.040000pt;}
.y7_c00272{bottom:946.106667pt;}
.y6_c00272{bottom:975.573333pt;}
.y5_c00272{bottom:1005.840000pt;}
.y4_c00272{bottom:1035.306667pt;}
.y3_c00272{bottom:1065.306667pt;}
.y2_c00272{bottom:1095.306667pt;}
.y1_c00272{bottom:1124.106667pt;}
.h3_c00272{height:11.733399pt;}
.h4_c00272{height:38.937500pt;}
.h2_c00272{height:108.041667pt;}
.h0_c00272{height:1229.733333pt;}
.h1_c00272{height:1230.000000pt;}
.w2_c00272{width:93.222667pt;}
.w0_c00272{width:780.466667pt;}
.w1_c00272{width:780.666667pt;}
.x0_c00272{left:0.000000pt;}
.x7_c00272{left:43.866667pt;}
.x6_c00272{left:45.333333pt;}
.x5_c00272{left:46.800000pt;}
.x4_c00272{left:48.266667pt;}
.x2_c00272{left:49.200000pt;}
.x1_c00272{left:50.666667pt;}
.x3_c00272{left:90.000000pt;}
.x8_c00272{left:295.866667pt;}
.x9_c00272{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26f9b2ace6f6678817f5087a.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_1844b9cfd96cd1899831b4d2.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_c83875837ceab4fb49c93677.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.v1_c00273{vertical-align:21.600000px;}
.ls1_c00273{letter-spacing:0.000000px;}
.ls0_c00273{letter-spacing:12.494400px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:-53.856000px;}
.ws2_c00273{word-spacing:-51.000000px;}
.ws3_c00273{word-spacing:0.000000px;}
.ws1_c00273{word-spacing:1923.144000px;}
._38_c00273{margin-left:-32.640000px;}
._d_c00273{margin-left:-30.528000px;}
._3e_c00273{margin-left:-26.970000px;}
._7_c00273{margin-left:-21.888000px;}
._2f_c00273{margin-left:-20.832000px;}
._3d_c00273{margin-left:-19.053000px;}
._8_c00273{margin-left:-14.784000px;}
._34_c00273{margin-left:-13.632000px;}
._a_c00273{margin-left:-12.192000px;}
._22_c00273{margin-left:-9.600000px;}
._2d_c00273{margin-left:-7.872000px;}
._c_c00273{margin-left:-6.720000px;}
._21_c00273{margin-left:-5.664000px;}
._2b_c00273{margin-left:-3.744000px;}
._1a_c00273{margin-left:-2.016000px;}
._0_c00273{width:1.536000px;}
._1_c00273{width:2.688000px;}
._2_c00273{width:4.032000px;}
._4_c00273{width:5.664000px;}
._23_c00273{width:6.912000px;}
._11_c00273{width:8.064000px;}
._28_c00273{width:9.120000px;}
._14_c00273{width:10.368000px;}
._15_c00273{width:12.384000px;}
._1c_c00273{width:14.496000px;}
._6_c00273{width:15.552000px;}
._18_c00273{width:17.184000px;}
._24_c00273{width:18.720000px;}
._13_c00273{width:19.872000px;}
._f_c00273{width:20.928000px;}
._3_c00273{width:22.080000px;}
._1e_c00273{width:24.576000px;}
._5_c00273{width:27.552000px;}
._16_c00273{width:29.280000px;}
._12_c00273{width:30.336000px;}
._10_c00273{width:31.584000px;}
._2c_c00273{width:32.928000px;}
._19_c00273{width:34.080000px;}
._b_c00273{width:36.192000px;}
._35_c00273{width:37.248000px;}
._9_c00273{width:38.400000px;}
._e_c00273{width:40.800000px;}
._29_c00273{width:42.912000px;}
._1b_c00273{width:44.736000px;}
._33_c00273{width:45.888000px;}
._2a_c00273{width:47.904000px;}
._17_c00273{width:49.056000px;}
._20_c00273{width:50.784000px;}
._1f_c00273{width:53.664000px;}
._26_c00273{width:55.200000px;}
._25_c00273{width:58.752000px;}
._1d_c00273{width:62.112000px;}
._37_c00273{width:75.360000px;}
._27_c00273{width:105.120000px;}
._30_c00273{width:109.728000px;}
._36_c00273{width:208.608000px;}
._3c_c00273{width:230.928000px;}
._3b_c00273{width:240.942000px;}
._32_c00273{width:257.184000px;}
._31_c00273{width:272.664000px;}
._3a_c00273{width:480.426000px;}
._2e_c00273{width:545.088000px;}
._39_c00273{width:1268.640000px;}
.fc2_c00273{color:transparent;}
.fc1_c00273{color:rgb(128,128,128);}
.fc0_c00273{color:rgb(0,0,0);}
.fs4_c00273{font-size:48.000000px;}
.fs1_c00273{font-size:76.800000px;}
.fs2_c00273{font-size:87.000000px;}
.fs0_c00273{font-size:96.000000px;}
.fs3_c00273{font-size:102.000000px;}
.y0_c00273{bottom:0.000000px;}
.y1e_c00273{bottom:3.105000px;}
.y1d_c00273{bottom:7.228357px;}
.y1c_c00273{bottom:68.280000px;}
.y1b_c00273{bottom:118.080000px;}
.y1a_c00273{bottom:416.580000px;}
.y19_c00273{bottom:448.980000px;}
.y18_c00273{bottom:483.330000px;}
.y17_c00273{bottom:517.830000px;}
.y16_c00273{bottom:551.580000px;}
.y15_c00273{bottom:585.330000px;}
.y14_c00273{bottom:619.680000px;}
.y13_c00273{bottom:653.430000px;}
.y12_c00273{bottom:686.880000px;}
.y11_c00273{bottom:717.930000px;}
.y10_c00273{bottom:754.080000px;}
.yf_c00273{bottom:787.680000px;}
.ye_c00273{bottom:822.480000px;}
.yd_c00273{bottom:856.530000px;}
.yc_c00273{bottom:889.380000px;}
.yb_c00273{bottom:922.830000px;}
.ya_c00273{bottom:956.880000px;}
.y9_c00273{bottom:989.880000px;}
.y8_c00273{bottom:1023.930000px;}
.y7_c00273{bottom:1057.080000px;}
.y6_c00273{bottom:1090.530000px;}
.y5_c00273{bottom:1123.980000px;}
.y4_c00273{bottom:1157.580000px;}
.y3_c00273{bottom:1190.730000px;}
.y2_c00273{bottom:1224.180000px;}
.y1_c00273{bottom:1257.930000px;}
.h5_c00273{height:13.200074px;}
.h6_c00273{height:43.804688px;}
.h3_c00273{height:110.151855px;}
.h2_c00273{height:121.546875px;}
.h4_c00273{height:124.396875px;}
.h0_c00273{height:1382.700000px;}
.h1_c00273{height:1383.000000px;}
.w2_c00273{width:104.875500px;}
.w0_c00273{width:863.175000px;}
.w1_c00273{width:863.250000px;}
.x0_c00273{left:0.000000px;}
.x5_c00273{left:144.450000px;}
.x4_c00273{left:149.850000px;}
.x3_c00273{left:195.750000px;}
.x1_c00273{left:252.450000px;}
.x2_c00273{left:253.500000px;}
.x6_c00273{left:255.150000px;}
.x8_c00273{left:259.500000px;}
.x9_c00273{left:383.401749px;}
.x7_c00273{left:546.150000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.v1_c00273{vertical-align:19.200000pt;}
.ls1_c00273{letter-spacing:0.000000pt;}
.ls0_c00273{letter-spacing:11.106133pt;}
.ws0_c00273{word-spacing:-47.872000pt;}
.ws2_c00273{word-spacing:-45.333333pt;}
.ws3_c00273{word-spacing:0.000000pt;}
.ws1_c00273{word-spacing:1709.461333pt;}
._38_c00273{margin-left:-29.013333pt;}
._d_c00273{margin-left:-27.136000pt;}
._3e_c00273{margin-left:-23.973333pt;}
._7_c00273{margin-left:-19.456000pt;}
._2f_c00273{margin-left:-18.517333pt;}
._3d_c00273{margin-left:-16.936000pt;}
._8_c00273{margin-left:-13.141333pt;}
._34_c00273{margin-left:-12.117333pt;}
._a_c00273{margin-left:-10.837333pt;}
._22_c00273{margin-left:-8.533333pt;}
._2d_c00273{margin-left:-6.997333pt;}
._c_c00273{margin-left:-5.973333pt;}
._21_c00273{margin-left:-5.034667pt;}
._2b_c00273{margin-left:-3.328000pt;}
._1a_c00273{margin-left:-1.792000pt;}
._0_c00273{width:1.365333pt;}
._1_c00273{width:2.389333pt;}
._2_c00273{width:3.584000pt;}
._4_c00273{width:5.034667pt;}
._23_c00273{width:6.144000pt;}
._11_c00273{width:7.168000pt;}
._28_c00273{width:8.106667pt;}
._14_c00273{width:9.216000pt;}
._15_c00273{width:11.008000pt;}
._1c_c00273{width:12.885333pt;}
._6_c00273{width:13.824000pt;}
._18_c00273{width:15.274667pt;}
._24_c00273{width:16.640000pt;}
._13_c00273{width:17.664000pt;}
._f_c00273{width:18.602667pt;}
._3_c00273{width:19.626667pt;}
._1e_c00273{width:21.845333pt;}
._5_c00273{width:24.490667pt;}
._16_c00273{width:26.026667pt;}
._12_c00273{width:26.965333pt;}
._10_c00273{width:28.074667pt;}
._2c_c00273{width:29.269333pt;}
._19_c00273{width:30.293333pt;}
._b_c00273{width:32.170667pt;}
._35_c00273{width:33.109333pt;}
._9_c00273{width:34.133333pt;}
._e_c00273{width:36.266667pt;}
._29_c00273{width:38.144000pt;}
._1b_c00273{width:39.765333pt;}
._33_c00273{width:40.789333pt;}
._2a_c00273{width:42.581333pt;}
._17_c00273{width:43.605333pt;}
._20_c00273{width:45.141333pt;}
._1f_c00273{width:47.701333pt;}
._26_c00273{width:49.066667pt;}
._25_c00273{width:52.224000pt;}
._1d_c00273{width:55.210667pt;}
._37_c00273{width:66.986667pt;}
._27_c00273{width:93.440000pt;}
._30_c00273{width:97.536000pt;}
._36_c00273{width:185.429333pt;}
._3c_c00273{width:205.269333pt;}
._3b_c00273{width:214.170667pt;}
._32_c00273{width:228.608000pt;}
._31_c00273{width:242.368000pt;}
._3a_c00273{width:427.045333pt;}
._2e_c00273{width:484.522667pt;}
._39_c00273{width:1127.680000pt;}
.fs4_c00273{font-size:42.666667pt;}
.fs1_c00273{font-size:68.266667pt;}
.fs2_c00273{font-size:77.333333pt;}
.fs0_c00273{font-size:85.333333pt;}
.fs3_c00273{font-size:90.666667pt;}
.y0_c00273{bottom:0.000000pt;}
.y1e_c00273{bottom:2.760000pt;}
.y1d_c00273{bottom:6.425206pt;}
.y1c_c00273{bottom:60.693333pt;}
.y1b_c00273{bottom:104.960000pt;}
.y1a_c00273{bottom:370.293333pt;}
.y19_c00273{bottom:399.093333pt;}
.y18_c00273{bottom:429.626667pt;}
.y17_c00273{bottom:460.293333pt;}
.y16_c00273{bottom:490.293333pt;}
.y15_c00273{bottom:520.293333pt;}
.y14_c00273{bottom:550.826667pt;}
.y13_c00273{bottom:580.826667pt;}
.y12_c00273{bottom:610.560000pt;}
.y11_c00273{bottom:638.160000pt;}
.y10_c00273{bottom:670.293333pt;}
.yf_c00273{bottom:700.160000pt;}
.ye_c00273{bottom:731.093333pt;}
.yd_c00273{bottom:761.360000pt;}
.yc_c00273{bottom:790.560000pt;}
.yb_c00273{bottom:820.293333pt;}
.ya_c00273{bottom:850.560000pt;}
.y9_c00273{bottom:879.893333pt;}
.y8_c00273{bottom:910.160000pt;}
.y7_c00273{bottom:939.626667pt;}
.y6_c00273{bottom:969.360000pt;}
.y5_c00273{bottom:999.093333pt;}
.y4_c00273{bottom:1028.960000pt;}
.y3_c00273{bottom:1058.426667pt;}
.y2_c00273{bottom:1088.160000pt;}
.y1_c00273{bottom:1118.160000pt;}
.h5_c00273{height:11.733399pt;}
.h6_c00273{height:38.937500pt;}
.h3_c00273{height:97.912760pt;}
.h2_c00273{height:108.041667pt;}
.h4_c00273{height:110.575000pt;}
.h0_c00273{height:1229.066667pt;}
.h1_c00273{height:1229.333333pt;}
.w2_c00273{width:93.222667pt;}
.w0_c00273{width:767.266667pt;}
.w1_c00273{width:767.333333pt;}
.x0_c00273{left:0.000000pt;}
.x5_c00273{left:128.400000pt;}
.x4_c00273{left:133.200000pt;}
.x3_c00273{left:174.000000pt;}
.x1_c00273{left:224.400000pt;}
.x2_c00273{left:225.333333pt;}
.x6_c00273{left:226.800000pt;}
.x8_c00273{left:230.666667pt;}
.x9_c00273{left:340.801554pt;}
.x7_c00273{left:485.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f07bdf3ecae008626c1f39b.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_2a770333009e9669da8f5394.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_b28753d6acf15dca21b54913.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_617ed6c4ab1765449c222c7c.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_f3414a97da9375c767e5ee74.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00274;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff6_c00274{font-family:ff6_c00274;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00274;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00274{font-family:ff7_c00274;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00274{vertical-align:-128.400000px;}
.v0_c00274{vertical-align:0.000000px;}
.v1_c00274{vertical-align:60.000000px;}
.ls7_c00274{letter-spacing:-6.000000px;}
.ls5_c00274{letter-spacing:0.000000px;}
.ls1_c00274{letter-spacing:3.000000px;}
.ls6_c00274{letter-spacing:6.000000px;}
.ls2_c00274{letter-spacing:7.200000px;}
.ls3_c00274{letter-spacing:10.920000px;}
.ls4_c00274{letter-spacing:11.400000px;}
.ls0_c00274{letter-spacing:25.972800px;}
.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;}
}
.ws2_c00274{word-spacing:-68.772000px;}
.ws1_c00274{word-spacing:-63.504000px;}
.ws5_c00274{word-spacing:-53.856000px;}
.ws4_c00274{word-spacing:-43.084800px;}
.ws3_c00274{word-spacing:-23.136000px;}
.ws0_c00274{word-spacing:-2.016000px;}
.ws6_c00274{word-spacing:0.000000px;}
._45_c00274{margin-left:-42.240000px;}
._3b_c00274{margin-left:-33.504000px;}
._1e_c00274{margin-left:-28.464000px;}
._9_c00274{margin-left:-25.824000px;}
._25_c00274{margin-left:-23.616000px;}
._27_c00274{margin-left:-22.380000px;}
._2e_c00274{margin-left:-21.360000px;}
._3a_c00274{margin-left:-20.352000px;}
._d_c00274{margin-left:-16.836000px;}
._24_c00274{margin-left:-15.264000px;}
._20_c00274{margin-left:-13.575000px;}
._1f_c00274{margin-left:-10.353000px;}
._4_c00274{margin-left:-8.640000px;}
._3_c00274{margin-left:-6.768000px;}
._f_c00274{margin-left:-5.382000px;}
._10_c00274{margin-left:-4.002000px;}
._1_c00274{margin-left:-2.448000px;}
._0_c00274{margin-left:-1.440000px;}
._33_c00274{width:1.152000px;}
._a_c00274{width:2.208000px;}
._17_c00274{width:3.888000px;}
._5_c00274{width:5.184000px;}
._19_c00274{width:6.756000px;}
._36_c00274{width:7.989000px;}
._12_c00274{width:9.177000px;}
._e_c00274{width:10.626000px;}
._2_c00274{width:11.808000px;}
._30_c00274{width:13.230000px;}
._8_c00274{width:14.976000px;}
._32_c00274{width:16.320000px;}
._1b_c00274{width:17.628000px;}
._6_c00274{width:18.720000px;}
._c_c00274{width:20.577000px;}
._2f_c00274{width:21.687000px;}
._21_c00274{width:25.938000px;}
._2b_c00274{width:27.468000px;}
._3f_c00274{width:28.608000px;}
._34_c00274{width:29.712000px;}
._15_c00274{width:30.873000px;}
._11_c00274{width:32.706000px;}
._14_c00274{width:33.948000px;}
._3e_c00274{width:35.961000px;}
._b_c00274{width:37.329000px;}
._35_c00274{width:38.448000px;}
._2d_c00274{width:40.068000px;}
._31_c00274{width:41.424000px;}
._43_c00274{width:43.806000px;}
._42_c00274{width:45.234000px;}
._29_c00274{width:47.409000px;}
._2c_c00274{width:49.524000px;}
._39_c00274{width:52.128000px;}
._41_c00274{width:54.309000px;}
._1a_c00274{width:59.580000px;}
._3d_c00274{width:65.172000px;}
._40_c00274{width:66.384000px;}
._13_c00274{width:69.843000px;}
._37_c00274{width:75.855000px;}
._47_c00274{width:90.051000px;}
._18_c00274{width:98.676000px;}
._16_c00274{width:103.956000px;}
._38_c00274{width:114.912000px;}
._2a_c00274{width:122.838000px;}
._3c_c00274{width:124.962000px;}
._44_c00274{width:207.042000px;}
._1c_c00274{width:213.408000px;}
._28_c00274{width:235.572000px;}
._23_c00274{width:249.636000px;}
._7_c00274{width:313.440000px;}
._22_c00274{width:725.268000px;}
._46_c00274{width:755.424000px;}
._26_c00274{width:997.152000px;}
._1d_c00274{width:1286.664000px;}
.fc2_c00274{color:transparent;}
.fc1_c00274{color:rgb(128,128,128);}
.fc0_c00274{color:rgb(0,0,0);}
.fs4_c00274{font-size:28.800000px;}
.fs3_c00274{font-size:36.000000px;}
.fsa_c00274{font-size:48.000000px;}
.fs2_c00274{font-size:69.000000px;}
.fs9_c00274{font-size:76.800000px;}
.fs6_c00274{font-size:84.000000px;}
.fs7_c00274{font-size:87.000000px;}
.fs0_c00274{font-size:96.000000px;}
.fs8_c00274{font-size:102.000000px;}
.fs5_c00274{font-size:117.000000px;}
.fs1_c00274{font-size:144.000000px;}
.y0_c00274{bottom:0.000000px;}
.y1f_c00274{bottom:3.105000px;}
.y1e_c00274{bottom:7.228369px;}
.y1d_c00274{bottom:322.920000px;}
.y1c_c00274{bottom:353.370000px;}
.y1b_c00274{bottom:387.720000px;}
.y1a_c00274{bottom:421.470000px;}
.y19_c00274{bottom:454.320000px;}
.y18_c00274{bottom:488.070000px;}
.y17_c00274{bottom:521.820000px;}
.y16_c00274{bottom:555.420000px;}
.y15_c00274{bottom:588.570000px;}
.y14_c00274{bottom:622.320000px;}
.y13_c00274{bottom:655.320000px;}
.y12_c00274{bottom:689.070000px;}
.y11_c00274{bottom:722.520000px;}
.y10_c00274{bottom:754.620000px;}
.yf_c00274{bottom:789.420000px;}
.ye_c00274{bottom:822.120000px;}
.yd_c00274{bottom:855.870000px;}
.yc_c00274{bottom:889.020000px;}
.yb_c00274{bottom:922.020000px;}
.ya_c00274{bottom:956.070000px;}
.y9_c00274{bottom:988.920000px;}
.y8_c00274{bottom:1054.320000px;}
.y7_c00274{bottom:1063.470000px;}
.y4_c00274{bottom:1090.470000px;}
.y6_c00274{bottom:1112.970000px;}
.y3_c00274{bottom:1122.870000px;}
.y5_c00274{bottom:1136.070000px;}
.y2_c00274{bottom:1163.070000px;}
.y1_c00274{bottom:1246.320000px;}
.h8_c00274{height:13.200073px;}
.h9_c00274{height:43.804688px;}
.h5_c00274{height:45.580078px;}
.h4_c00274{height:72.672363px;}
.h7_c00274{height:110.151855px;}
.h2_c00274{height:121.546875px;}
.h6_c00274{height:158.314453px;}
.h3_c00274{height:182.320312px;}
.h0_c00274{height:1383.450000px;}
.h1_c00274{height:1383.750000px;}
.w2_c00274{width:104.875500px;}
.w0_c00274{width:878.025000px;}
.w1_c00274{width:878.250000px;}
.x0_c00274{left:0.000000px;}
.xd_c00274{left:57.000000px;}
.xb_c00274{left:58.650000px;}
.xc_c00274{left:59.700000px;}
.xa_c00274{left:61.350000px;}
.x9_c00274{left:63.000000px;}
.x8_c00274{left:68.850000px;}
.x4_c00274{left:72.600000px;}
.x3_c00274{left:75.300000px;}
.x2_c00274{left:216.750000px;}
.x6_c00274{left:290.250000px;}
.x7_c00274{left:294.000000px;}
.x5_c00274{left:298.350000px;}
.xe_c00274{left:390.826721px;}
.x1_c00274{left:487.050000px;}
@media print{
.v2_c00274{vertical-align:-114.133333pt;}
.v0_c00274{vertical-align:0.000000pt;}
.v1_c00274{vertical-align:53.333333pt;}
.ls7_c00274{letter-spacing:-5.333333pt;}
.ls5_c00274{letter-spacing:0.000000pt;}
.ls1_c00274{letter-spacing:2.666667pt;}
.ls6_c00274{letter-spacing:5.333333pt;}
.ls2_c00274{letter-spacing:6.400000pt;}
.ls3_c00274{letter-spacing:9.706667pt;}
.ls4_c00274{letter-spacing:10.133333pt;}
.ls0_c00274{letter-spacing:23.086933pt;}
.ws2_c00274{word-spacing:-61.130667pt;}
.ws1_c00274{word-spacing:-56.448000pt;}
.ws5_c00274{word-spacing:-47.872000pt;}
.ws4_c00274{word-spacing:-38.297600pt;}
.ws3_c00274{word-spacing:-20.565333pt;}
.ws0_c00274{word-spacing:-1.792000pt;}
.ws6_c00274{word-spacing:0.000000pt;}
._45_c00274{margin-left:-37.546667pt;}
._3b_c00274{margin-left:-29.781333pt;}
._1e_c00274{margin-left:-25.301333pt;}
._9_c00274{margin-left:-22.954667pt;}
._25_c00274{margin-left:-20.992000pt;}
._27_c00274{margin-left:-19.893333pt;}
._2e_c00274{margin-left:-18.986667pt;}
._3a_c00274{margin-left:-18.090667pt;}
._d_c00274{margin-left:-14.965333pt;}
._24_c00274{margin-left:-13.568000pt;}
._20_c00274{margin-left:-12.066667pt;}
._1f_c00274{margin-left:-9.202667pt;}
._4_c00274{margin-left:-7.680000pt;}
._3_c00274{margin-left:-6.016000pt;}
._f_c00274{margin-left:-4.784000pt;}
._10_c00274{margin-left:-3.557333pt;}
._1_c00274{margin-left:-2.176000pt;}
._0_c00274{margin-left:-1.280000pt;}
._33_c00274{width:1.024000pt;}
._a_c00274{width:1.962667pt;}
._17_c00274{width:3.456000pt;}
._5_c00274{width:4.608000pt;}
._19_c00274{width:6.005333pt;}
._36_c00274{width:7.101333pt;}
._12_c00274{width:8.157333pt;}
._e_c00274{width:9.445333pt;}
._2_c00274{width:10.496000pt;}
._30_c00274{width:11.760000pt;}
._8_c00274{width:13.312000pt;}
._32_c00274{width:14.506667pt;}
._1b_c00274{width:15.669333pt;}
._6_c00274{width:16.640000pt;}
._c_c00274{width:18.290667pt;}
._2f_c00274{width:19.277333pt;}
._21_c00274{width:23.056000pt;}
._2b_c00274{width:24.416000pt;}
._3f_c00274{width:25.429333pt;}
._34_c00274{width:26.410667pt;}
._15_c00274{width:27.442667pt;}
._11_c00274{width:29.072000pt;}
._14_c00274{width:30.176000pt;}
._3e_c00274{width:31.965333pt;}
._b_c00274{width:33.181333pt;}
._35_c00274{width:34.176000pt;}
._2d_c00274{width:35.616000pt;}
._31_c00274{width:36.821333pt;}
._43_c00274{width:38.938667pt;}
._42_c00274{width:40.208000pt;}
._29_c00274{width:42.141333pt;}
._2c_c00274{width:44.021333pt;}
._39_c00274{width:46.336000pt;}
._41_c00274{width:48.274667pt;}
._1a_c00274{width:52.960000pt;}
._3d_c00274{width:57.930667pt;}
._40_c00274{width:59.008000pt;}
._13_c00274{width:62.082667pt;}
._37_c00274{width:67.426667pt;}
._47_c00274{width:80.045333pt;}
._18_c00274{width:87.712000pt;}
._16_c00274{width:92.405333pt;}
._38_c00274{width:102.144000pt;}
._2a_c00274{width:109.189333pt;}
._3c_c00274{width:111.077333pt;}
._44_c00274{width:184.037333pt;}
._1c_c00274{width:189.696000pt;}
._28_c00274{width:209.397333pt;}
._23_c00274{width:221.898667pt;}
._7_c00274{width:278.613333pt;}
._22_c00274{width:644.682667pt;}
._46_c00274{width:671.488000pt;}
._26_c00274{width:886.357333pt;}
._1d_c00274{width:1143.701333pt;}
.fs4_c00274{font-size:25.600000pt;}
.fs3_c00274{font-size:32.000000pt;}
.fsa_c00274{font-size:42.666667pt;}
.fs2_c00274{font-size:61.333333pt;}
.fs9_c00274{font-size:68.266667pt;}
.fs6_c00274{font-size:74.666667pt;}
.fs7_c00274{font-size:77.333333pt;}
.fs0_c00274{font-size:85.333333pt;}
.fs8_c00274{font-size:90.666667pt;}
.fs5_c00274{font-size:104.000000pt;}
.fs1_c00274{font-size:128.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y1f_c00274{bottom:2.760000pt;}
.y1e_c00274{bottom:6.425217pt;}
.y1d_c00274{bottom:287.040000pt;}
.y1c_c00274{bottom:314.106667pt;}
.y1b_c00274{bottom:344.640000pt;}
.y1a_c00274{bottom:374.640000pt;}
.y19_c00274{bottom:403.840000pt;}
.y18_c00274{bottom:433.840000pt;}
.y17_c00274{bottom:463.840000pt;}
.y16_c00274{bottom:493.706667pt;}
.y15_c00274{bottom:523.173333pt;}
.y14_c00274{bottom:553.173333pt;}
.y13_c00274{bottom:582.506667pt;}
.y12_c00274{bottom:612.506667pt;}
.y11_c00274{bottom:642.240000pt;}
.y10_c00274{bottom:670.773333pt;}
.yf_c00274{bottom:701.706667pt;}
.ye_c00274{bottom:730.773333pt;}
.yd_c00274{bottom:760.773333pt;}
.yc_c00274{bottom:790.240000pt;}
.yb_c00274{bottom:819.573333pt;}
.ya_c00274{bottom:849.840000pt;}
.y9_c00274{bottom:879.040000pt;}
.y8_c00274{bottom:937.173333pt;}
.y7_c00274{bottom:945.306667pt;}
.y4_c00274{bottom:969.306667pt;}
.y6_c00274{bottom:989.306667pt;}
.y3_c00274{bottom:998.106667pt;}
.y5_c00274{bottom:1009.840000pt;}
.y2_c00274{bottom:1033.840000pt;}
.y1_c00274{bottom:1107.840000pt;}
.h8_c00274{height:11.733399pt;}
.h9_c00274{height:38.937500pt;}
.h5_c00274{height:40.515625pt;}
.h4_c00274{height:64.597656pt;}
.h7_c00274{height:97.912760pt;}
.h2_c00274{height:108.041667pt;}
.h6_c00274{height:140.723958pt;}
.h3_c00274{height:162.062500pt;}
.h0_c00274{height:1229.733333pt;}
.h1_c00274{height:1230.000000pt;}
.w2_c00274{width:93.222667pt;}
.w0_c00274{width:780.466667pt;}
.w1_c00274{width:780.666667pt;}
.x0_c00274{left:0.000000pt;}
.xd_c00274{left:50.666667pt;}
.xb_c00274{left:52.133333pt;}
.xc_c00274{left:53.066667pt;}
.xa_c00274{left:54.533333pt;}
.x9_c00274{left:56.000000pt;}
.x8_c00274{left:61.200000pt;}
.x4_c00274{left:64.533333pt;}
.x3_c00274{left:66.933333pt;}
.x2_c00274{left:192.666667pt;}
.x6_c00274{left:258.000000pt;}
.x7_c00274{left:261.333333pt;}
.x5_c00274{left:265.200000pt;}
.xe_c00274{left:347.401530pt;}
.x1_c00274{left:432.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f68a5760acb0d6e0408ee659.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_f9ab52bbc7b31d8a0ed58e1f.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_fba59386c09004f9d811bc64.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_e0c6ebfa568c4a0d190c7380.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00275{vertical-align:-27.600000px;}
.v0_c00275{vertical-align:0.000000px;}
.v1_c00275{vertical-align:95.400000px;}
.ls7_c00275{letter-spacing:-3.000000px;}
.ls6_c00275{letter-spacing:0.000000px;}
.ls2_c00275{letter-spacing:1.680000px;}
.ls4_c00275{letter-spacing:5.400000px;}
.ls3_c00275{letter-spacing:9.600000px;}
.ls5_c00275{letter-spacing:37.800000px;}
.ls0_c00275{letter-spacing:48.051000px;}
.ls1_c00275{letter-spacing:113.520000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00275{word-spacing:-51.000000px;}
.ws0_c00275{word-spacing:-36.439200px;}
.ws3_c00275{word-spacing:-27.642000px;}
.ws5_c00275{word-spacing:-23.136000px;}
.ws6_c00275{word-spacing:-20.244000px;}
.ws7_c00275{word-spacing:0.000000px;}
.ws1_c00275{word-spacing:19.202400px;}
.ws4_c00275{word-spacing:490.737000px;}
._3b_c00275{margin-left:-49.728000px;}
._3d_c00275{margin-left:-28.011000px;}
._b_c00275{margin-left:-25.800000px;}
._c_c00275{margin-left:-23.808000px;}
._f_c00275{margin-left:-21.528000px;}
._35_c00275{margin-left:-17.918400px;}
._40_c00275{margin-left:-16.416000px;}
._3f_c00275{margin-left:-15.075600px;}
._34_c00275{margin-left:-13.886400px;}
._22_c00275{margin-left:-12.576000px;}
._d_c00275{margin-left:-10.353000px;}
._2f_c00275{margin-left:-9.060000px;}
._10_c00275{margin-left:-7.956000px;}
._2c_c00275{margin-left:-6.256200px;}
._11_c00275{margin-left:-5.184000px;}
._e_c00275{margin-left:-4.176000px;}
._2b_c00275{margin-left:-3.117000px;}
._9_c00275{margin-left:-1.920000px;}
._13_c00275{width:1.956000px;}
._1d_c00275{width:2.976000px;}
._12_c00275{width:4.123200px;}
._27_c00275{width:5.160000px;}
._1_c00275{width:6.199200px;}
._1c_c00275{width:7.425600px;}
._0_c00275{width:8.769600px;}
._2_c00275{width:10.735200px;}
._1e_c00275{width:11.904000px;}
._16_c00275{width:13.152000px;}
._4_c00275{width:14.364000px;}
._18_c00275{width:16.190400px;}
._17_c00275{width:17.472000px;}
._a_c00275{width:18.711000px;}
._15_c00275{width:19.776000px;}
._14_c00275{width:20.892000px;}
._2d_c00275{width:21.973800px;}
._1b_c00275{width:24.792000px;}
._31_c00275{width:26.392200px;}
._5_c00275{width:28.161000px;}
._33_c00275{width:29.709000px;}
._1a_c00275{width:31.159200px;}
._24_c00275{width:33.237600px;}
._25_c00275{width:34.408800px;}
._19_c00275{width:36.257400px;}
._1f_c00275{width:37.744800px;}
._26_c00275{width:39.160800px;}
._2a_c00275{width:41.217600px;}
._28_c00275{width:42.883200px;}
._29_c00275{width:44.839200px;}
._3e_c00275{width:46.644600px;}
._6_c00275{width:48.087000px;}
._32_c00275{width:49.183800px;}
._20_c00275{width:51.460800px;}
._44_c00275{width:52.615200px;}
._45_c00275{width:54.333000px;}
._3c_c00275{width:55.958400px;}
._8_c00275{width:57.304800px;}
._2e_c00275{width:58.450200px;}
._21_c00275{width:60.770400px;}
._39_c00275{width:63.952200px;}
._23_c00275{width:66.624000px;}
._7_c00275{width:70.459200px;}
._3_c00275{width:73.750800px;}
._30_c00275{width:82.146600px;}
._37_c00275{width:94.992000px;}
._42_c00275{width:125.776200px;}
._38_c00275{width:170.400000px;}
._36_c00275{width:323.066400px;}
._3a_c00275{width:517.512000px;}
._43_c00275{width:684.441600px;}
._41_c00275{width:735.804600px;}
.fc2_c00275{color:transparent;}
.fc1_c00275{color:rgb(128,128,128);}
.fc0_c00275{color:rgb(0,0,0);}
.fs8_c00275{font-size:48.000000px;}
.fs7_c00275{font-size:60.000000px;}
.fs6_c00275{font-size:78.000000px;}
.fs4_c00275{font-size:84.000000px;}
.fs5_c00275{font-size:87.000000px;}
.fs2_c00275{font-size:96.000000px;}
.fs3_c00275{font-size:102.000000px;}
.fs0_c00275{font-size:151.200000px;}
.fs1_c00275{font-size:189.000000px;}
.y0_c00275{bottom:0.000000px;}
.y29_c00275{bottom:3.105000px;}
.y28_c00275{bottom:7.228357px;}
.y27_c00275{bottom:81.330000px;}
.y26_c00275{bottom:114.780000px;}
.y25_c00275{bottom:149.280000px;}
.y24_c00275{bottom:183.030000px;}
.y23_c00275{bottom:217.380000px;}
.y22_c00275{bottom:251.430000px;}
.y21_c00275{bottom:286.230000px;}
.y20_c00275{bottom:320.280000px;}
.y1f_c00275{bottom:353.430000px;}
.y1e_c00275{bottom:386.730000px;}
.y1d_c00275{bottom:421.830000px;}
.y1c_c00275{bottom:455.730000px;}
.y1b_c00275{bottom:488.730000px;}
.y1a_c00275{bottom:524.130000px;}
.y19_c00275{bottom:557.880000px;}
.y18_c00275{bottom:592.680000px;}
.y17_c00275{bottom:626.730000px;}
.y16_c00275{bottom:660.180000px;}
.y15_c00275{bottom:694.230000px;}
.y7_c00275{bottom:703.380000px;}
.y14_c00275{bottom:728.280000px;}
.y13_c00275{bottom:762.180000px;}
.y12_c00275{bottom:795.930000px;}
.y11_c00275{bottom:828.330000px;}
.y10_c00275{bottom:862.380000px;}
.yf_c00275{bottom:896.730000px;}
.ye_c00275{bottom:930.180000px;}
.yd_c00275{bottom:963.330000px;}
.yc_c00275{bottom:996.330000px;}
.yb_c00275{bottom:1030.380000px;}
.ya_c00275{bottom:1063.230000px;}
.y9_c00275{bottom:1097.280000px;}
.y4_c00275{bottom:1122.480000px;}
.y2_c00275{bottom:1130.280000px;}
.y8_c00275{bottom:1136.880000px;}
.y6_c00275{bottom:1157.730000px;}
.y3_c00275{bottom:1219.680000px;}
.y5_c00275{bottom:1220.730000px;}
.y1_c00275{bottom:1251.480000px;}
.h6_c00275{height:13.200074px;}
.h7_c00275{height:43.804688px;}
.h5_c00275{height:93.946875px;}
.h3_c00275{height:121.546875px;}
.h4_c00275{height:186.691992px;}
.h2_c00275{height:239.295410px;}
.h0_c00275{height:1382.700000px;}
.h1_c00275{height:1383.000000px;}
.w2_c00275{width:104.875500px;}
.w0_c00275{width:863.175000px;}
.w1_c00275{width:863.250000px;}
.x0_c00275{left:0.000000px;}
.x2_c00275{left:34.200000px;}
.xe_c00275{left:137.400000px;}
.xa_c00275{left:140.700000px;}
.x7_c00275{left:210.900000px;}
.x1_c00275{left:253.350000px;}
.xb_c00275{left:254.550000px;}
.xf_c00275{left:257.400000px;}
.xc_c00275{left:264.900000px;}
.x3_c00275{left:297.750000px;}
.x4_c00275{left:301.050000px;}
.xd_c00275{left:365.400000px;}
.x11_c00275{left:383.401749px;}
.x8_c00275{left:402.000000px;}
.x6_c00275{left:431.700000px;}
.x9_c00275{left:470.100000px;}
.x10_c00275{left:776.250000px;}
.x5_c00275{left:803.700000px;}
@media print{
.v2_c00275{vertical-align:-24.533333pt;}
.v0_c00275{vertical-align:0.000000pt;}
.v1_c00275{vertical-align:84.800000pt;}
.ls7_c00275{letter-spacing:-2.666667pt;}
.ls6_c00275{letter-spacing:0.000000pt;}
.ls2_c00275{letter-spacing:1.493333pt;}
.ls4_c00275{letter-spacing:4.800000pt;}
.ls3_c00275{letter-spacing:8.533333pt;}
.ls5_c00275{letter-spacing:33.600000pt;}
.ls0_c00275{letter-spacing:42.712000pt;}
.ls1_c00275{letter-spacing:100.906667pt;}
.ws2_c00275{word-spacing:-45.333333pt;}
.ws0_c00275{word-spacing:-32.390400pt;}
.ws3_c00275{word-spacing:-24.570667pt;}
.ws5_c00275{word-spacing:-20.565333pt;}
.ws6_c00275{word-spacing:-17.994667pt;}
.ws7_c00275{word-spacing:0.000000pt;}
.ws1_c00275{word-spacing:17.068800pt;}
.ws4_c00275{word-spacing:436.210667pt;}
._3b_c00275{margin-left:-44.202667pt;}
._3d_c00275{margin-left:-24.898667pt;}
._b_c00275{margin-left:-22.933333pt;}
._c_c00275{margin-left:-21.162667pt;}
._f_c00275{margin-left:-19.136000pt;}
._35_c00275{margin-left:-15.927467pt;}
._40_c00275{margin-left:-14.592000pt;}
._3f_c00275{margin-left:-13.400533pt;}
._34_c00275{margin-left:-12.343467pt;}
._22_c00275{margin-left:-11.178667pt;}
._d_c00275{margin-left:-9.202667pt;}
._2f_c00275{margin-left:-8.053333pt;}
._10_c00275{margin-left:-7.072000pt;}
._2c_c00275{margin-left:-5.561067pt;}
._11_c00275{margin-left:-4.608000pt;}
._e_c00275{margin-left:-3.712000pt;}
._2b_c00275{margin-left:-2.770667pt;}
._9_c00275{margin-left:-1.706667pt;}
._13_c00275{width:1.738667pt;}
._1d_c00275{width:2.645333pt;}
._12_c00275{width:3.665067pt;}
._27_c00275{width:4.586667pt;}
._1_c00275{width:5.510400pt;}
._1c_c00275{width:6.600533pt;}
._0_c00275{width:7.795200pt;}
._2_c00275{width:9.542400pt;}
._1e_c00275{width:10.581333pt;}
._16_c00275{width:11.690667pt;}
._4_c00275{width:12.768000pt;}
._18_c00275{width:14.391467pt;}
._17_c00275{width:15.530667pt;}
._a_c00275{width:16.632000pt;}
._15_c00275{width:17.578667pt;}
._14_c00275{width:18.570667pt;}
._2d_c00275{width:19.532267pt;}
._1b_c00275{width:22.037333pt;}
._31_c00275{width:23.459733pt;}
._5_c00275{width:25.032000pt;}
._33_c00275{width:26.408000pt;}
._1a_c00275{width:27.697067pt;}
._24_c00275{width:29.544533pt;}
._25_c00275{width:30.585600pt;}
._19_c00275{width:32.228800pt;}
._1f_c00275{width:33.550933pt;}
._26_c00275{width:34.809600pt;}
._2a_c00275{width:36.637867pt;}
._28_c00275{width:38.118400pt;}
._29_c00275{width:39.857067pt;}
._3e_c00275{width:41.461867pt;}
._6_c00275{width:42.744000pt;}
._32_c00275{width:43.718933pt;}
._20_c00275{width:45.742933pt;}
._44_c00275{width:46.769067pt;}
._45_c00275{width:48.296000pt;}
._3c_c00275{width:49.740800pt;}
._8_c00275{width:50.937600pt;}
._2e_c00275{width:51.955733pt;}
._21_c00275{width:54.018133pt;}
._39_c00275{width:56.846400pt;}
._23_c00275{width:59.221333pt;}
._7_c00275{width:62.630400pt;}
._3_c00275{width:65.556267pt;}
._30_c00275{width:73.019200pt;}
._37_c00275{width:84.437333pt;}
._42_c00275{width:111.801067pt;}
._38_c00275{width:151.466667pt;}
._36_c00275{width:287.170133pt;}
._3a_c00275{width:460.010667pt;}
._43_c00275{width:608.392533pt;}
._41_c00275{width:654.048533pt;}
.fs8_c00275{font-size:42.666667pt;}
.fs7_c00275{font-size:53.333333pt;}
.fs6_c00275{font-size:69.333333pt;}
.fs4_c00275{font-size:74.666667pt;}
.fs5_c00275{font-size:77.333333pt;}
.fs2_c00275{font-size:85.333333pt;}
.fs3_c00275{font-size:90.666667pt;}
.fs0_c00275{font-size:134.400000pt;}
.fs1_c00275{font-size:168.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y29_c00275{bottom:2.760000pt;}
.y28_c00275{bottom:6.425206pt;}
.y27_c00275{bottom:72.293333pt;}
.y26_c00275{bottom:102.026667pt;}
.y25_c00275{bottom:132.693333pt;}
.y24_c00275{bottom:162.693333pt;}
.y23_c00275{bottom:193.226667pt;}
.y22_c00275{bottom:223.493333pt;}
.y21_c00275{bottom:254.426667pt;}
.y20_c00275{bottom:284.693333pt;}
.y1f_c00275{bottom:314.160000pt;}
.y1e_c00275{bottom:343.760000pt;}
.y1d_c00275{bottom:374.960000pt;}
.y1c_c00275{bottom:405.093333pt;}
.y1b_c00275{bottom:434.426667pt;}
.y1a_c00275{bottom:465.893333pt;}
.y19_c00275{bottom:495.893333pt;}
.y18_c00275{bottom:526.826667pt;}
.y17_c00275{bottom:557.093333pt;}
.y16_c00275{bottom:586.826667pt;}
.y15_c00275{bottom:617.093333pt;}
.y7_c00275{bottom:625.226667pt;}
.y14_c00275{bottom:647.360000pt;}
.y13_c00275{bottom:677.493333pt;}
.y12_c00275{bottom:707.493333pt;}
.y11_c00275{bottom:736.293333pt;}
.y10_c00275{bottom:766.560000pt;}
.yf_c00275{bottom:797.093333pt;}
.ye_c00275{bottom:826.826667pt;}
.yd_c00275{bottom:856.293333pt;}
.yc_c00275{bottom:885.626667pt;}
.yb_c00275{bottom:915.893333pt;}
.ya_c00275{bottom:945.093333pt;}
.y9_c00275{bottom:975.360000pt;}
.y4_c00275{bottom:997.760000pt;}
.y2_c00275{bottom:1004.693333pt;}
.y8_c00275{bottom:1010.560000pt;}
.y6_c00275{bottom:1029.093333pt;}
.y3_c00275{bottom:1084.160000pt;}
.y5_c00275{bottom:1085.093333pt;}
.y1_c00275{bottom:1112.426667pt;}
.h6_c00275{height:11.733399pt;}
.h7_c00275{height:38.937500pt;}
.h5_c00275{height:83.508333pt;}
.h3_c00275{height:108.041667pt;}
.h4_c00275{height:165.948438pt;}
.h2_c00275{height:212.707031pt;}
.h0_c00275{height:1229.066667pt;}
.h1_c00275{height:1229.333333pt;}
.w2_c00275{width:93.222667pt;}
.w0_c00275{width:767.266667pt;}
.w1_c00275{width:767.333333pt;}
.x0_c00275{left:0.000000pt;}
.x2_c00275{left:30.400000pt;}
.xe_c00275{left:122.133333pt;}
.xa_c00275{left:125.066667pt;}
.x7_c00275{left:187.466667pt;}
.x1_c00275{left:225.200000pt;}
.xb_c00275{left:226.266667pt;}
.xf_c00275{left:228.800000pt;}
.xc_c00275{left:235.466667pt;}
.x3_c00275{left:264.666667pt;}
.x4_c00275{left:267.600000pt;}
.xd_c00275{left:324.800000pt;}
.x11_c00275{left:340.801554pt;}
.x8_c00275{left:357.333333pt;}
.x6_c00275{left:383.733333pt;}
.x9_c00275{left:417.866667pt;}
.x10_c00275{left:690.000000pt;}
.x5_c00275{left:714.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_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_00fb26e661d2bcf06f89c3b1.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00276{vertical-align:-124.200000px;}
.v0_c00276{vertical-align:0.000000px;}
.ls0_c00276{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00276{word-spacing:-51.000000px;}
.ws0_c00276{word-spacing:-23.136000px;}
.ws2_c00276{word-spacing:0.000000px;}
._b_c00276{margin-left:-39.936000px;}
._28_c00276{margin-left:-33.408000px;}
._16_c00276{margin-left:-24.984000px;}
._d_c00276{margin-left:-20.328000px;}
._c_c00276{margin-left:-14.880000px;}
._13_c00276{margin-left:-11.328000px;}
._a_c00276{margin-left:-4.128000px;}
._39_c00276{margin-left:-2.760000px;}
._9_c00276{margin-left:-1.728000px;}
._12_c00276{width:1.824000px;}
._2_c00276{width:2.976000px;}
._1_c00276{width:4.704000px;}
._3_c00276{width:5.760000px;}
._10_c00276{width:6.912000px;}
._0_c00276{width:8.832000px;}
._e_c00276{width:10.272000px;}
._8_c00276{width:12.096000px;}
._1c_c00276{width:13.920000px;}
._1d_c00276{width:15.552000px;}
._2c_c00276{width:16.824000px;}
._21_c00276{width:18.216000px;}
._1b_c00276{width:19.968000px;}
._29_c00276{width:21.048000px;}
._22_c00276{width:26.016000px;}
._7_c00276{width:28.608000px;}
._1f_c00276{width:29.952000px;}
._15_c00276{width:31.752000px;}
._23_c00276{width:33.504000px;}
._17_c00276{width:34.584000px;}
._25_c00276{width:36.192000px;}
._18_c00276{width:38.016000px;}
._2d_c00276{width:39.072000px;}
._1e_c00276{width:40.392000px;}
._37_c00276{width:42.000000px;}
._27_c00276{width:43.776000px;}
._6_c00276{width:45.504000px;}
._26_c00276{width:46.752000px;}
._5_c00276{width:48.192000px;}
._4_c00276{width:49.920000px;}
._38_c00276{width:51.936000px;}
._19_c00276{width:53.952000px;}
._20_c00276{width:55.008000px;}
._1a_c00276{width:57.120000px;}
._11_c00276{width:58.176000px;}
._30_c00276{width:60.384000px;}
._2a_c00276{width:62.304000px;}
._2f_c00276{width:64.608000px;}
._14_c00276{width:66.912000px;}
._24_c00276{width:68.832000px;}
._33_c00276{width:70.656000px;}
._32_c00276{width:74.496000px;}
._2e_c00276{width:75.840000px;}
._31_c00276{width:79.632000px;}
._36_c00276{width:152.784000px;}
._f_c00276{width:176.256000px;}
._35_c00276{width:190.272000px;}
._2b_c00276{width:310.464000px;}
._3a_c00276{width:888.768000px;}
._34_c00276{width:1946.688000px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(128,128,128);}
.fc0_c00276{color:rgb(0,0,0);}
.fs2_c00276{font-size:48.000000px;}
.fs0_c00276{font-size:96.000000px;}
.fs1_c00276{font-size:102.000000px;}
.y0_c00276{bottom:0.000000px;}
.y25_c00276{bottom:3.105000px;}
.y24_c00276{bottom:7.228357px;}
.y23_c00276{bottom:99.330000px;}
.y22_c00276{bottom:134.280000px;}
.y21_c00276{bottom:168.030000px;}
.y20_c00276{bottom:201.780000px;}
.y1f_c00276{bottom:235.530000px;}
.y1e_c00276{bottom:268.680000px;}
.y1d_c00276{bottom:302.730000px;}
.y1c_c00276{bottom:336.480000px;}
.y1b_c00276{bottom:369.930000px;}
.y1a_c00276{bottom:402.930000px;}
.y19_c00276{bottom:436.680000px;}
.y18_c00276{bottom:469.830000px;}
.y17_c00276{bottom:502.830000px;}
.y16_c00276{bottom:535.980000px;}
.y15_c00276{bottom:569.430000px;}
.y14_c00276{bottom:602.730000px;}
.y13_c00276{bottom:635.580000px;}
.y12_c00276{bottom:666.930000px;}
.y11_c00276{bottom:702.630000px;}
.y10_c00276{bottom:736.380000px;}
.yf_c00276{bottom:769.230000px;}
.ye_c00276{bottom:801.630000px;}
.yd_c00276{bottom:834.930000px;}
.yc_c00276{bottom:867.330000px;}
.yb_c00276{bottom:901.530000px;}
.ya_c00276{bottom:933.630000px;}
.y9_c00276{bottom:967.230000px;}
.y8_c00276{bottom:1000.380000px;}
.y7_c00276{bottom:1033.530000px;}
.y6_c00276{bottom:1066.230000px;}
.y5_c00276{bottom:1098.930000px;}
.y4_c00276{bottom:1131.930000px;}
.y3_c00276{bottom:1164.780000px;}
.y2_c00276{bottom:1229.580000px;}
.y1_c00276{bottom:1263.930000px;}
.h3_c00276{height:13.200074px;}
.h4_c00276{height:43.804688px;}
.h2_c00276{height:121.546875px;}
.h0_c00276{height:1367.850000px;}
.h1_c00276{height:1368.000000px;}
.w1_c00276{width:104.875500px;}
.w0_c00276{width:867.750000px;}
.x0_c00276{left:0.000000px;}
.x7_c00276{left:68.400000px;}
.x6_c00276{left:69.450000px;}
.x4_c00276{left:72.150000px;}
.x3_c00276{left:73.200000px;}
.x1_c00276{left:75.300000px;}
.x2_c00276{left:76.950000px;}
.x8_c00276{left:78.000000px;}
.x5_c00276{left:121.800000px;}
.x9_c00276{left:344.250000px;}
.xa_c00276{left:385.689240px;}
@media print{
.v1_c00276{vertical-align:-110.400000pt;}
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws1_c00276{word-spacing:-45.333333pt;}
.ws0_c00276{word-spacing:-20.565333pt;}
.ws2_c00276{word-spacing:0.000000pt;}
._b_c00276{margin-left:-35.498667pt;}
._28_c00276{margin-left:-29.696000pt;}
._16_c00276{margin-left:-22.208000pt;}
._d_c00276{margin-left:-18.069333pt;}
._c_c00276{margin-left:-13.226667pt;}
._13_c00276{margin-left:-10.069333pt;}
._a_c00276{margin-left:-3.669333pt;}
._39_c00276{margin-left:-2.453333pt;}
._9_c00276{margin-left:-1.536000pt;}
._12_c00276{width:1.621333pt;}
._2_c00276{width:2.645333pt;}
._1_c00276{width:4.181333pt;}
._3_c00276{width:5.120000pt;}
._10_c00276{width:6.144000pt;}
._0_c00276{width:7.850667pt;}
._e_c00276{width:9.130667pt;}
._8_c00276{width:10.752000pt;}
._1c_c00276{width:12.373333pt;}
._1d_c00276{width:13.824000pt;}
._2c_c00276{width:14.954667pt;}
._21_c00276{width:16.192000pt;}
._1b_c00276{width:17.749333pt;}
._29_c00276{width:18.709333pt;}
._22_c00276{width:23.125333pt;}
._7_c00276{width:25.429333pt;}
._1f_c00276{width:26.624000pt;}
._15_c00276{width:28.224000pt;}
._23_c00276{width:29.781333pt;}
._17_c00276{width:30.741333pt;}
._25_c00276{width:32.170667pt;}
._18_c00276{width:33.792000pt;}
._2d_c00276{width:34.730667pt;}
._1e_c00276{width:35.904000pt;}
._37_c00276{width:37.333333pt;}
._27_c00276{width:38.912000pt;}
._6_c00276{width:40.448000pt;}
._26_c00276{width:41.557333pt;}
._5_c00276{width:42.837333pt;}
._4_c00276{width:44.373333pt;}
._38_c00276{width:46.165333pt;}
._19_c00276{width:47.957333pt;}
._20_c00276{width:48.896000pt;}
._1a_c00276{width:50.773333pt;}
._11_c00276{width:51.712000pt;}
._30_c00276{width:53.674667pt;}
._2a_c00276{width:55.381333pt;}
._2f_c00276{width:57.429333pt;}
._14_c00276{width:59.477333pt;}
._24_c00276{width:61.184000pt;}
._33_c00276{width:62.805333pt;}
._32_c00276{width:66.218667pt;}
._2e_c00276{width:67.413333pt;}
._31_c00276{width:70.784000pt;}
._36_c00276{width:135.808000pt;}
._f_c00276{width:156.672000pt;}
._35_c00276{width:169.130667pt;}
._2b_c00276{width:275.968000pt;}
._3a_c00276{width:790.016000pt;}
._34_c00276{width:1730.389333pt;}
.fs2_c00276{font-size:42.666667pt;}
.fs0_c00276{font-size:85.333333pt;}
.fs1_c00276{font-size:90.666667pt;}
.y0_c00276{bottom:0.000000pt;}
.y25_c00276{bottom:2.760000pt;}
.y24_c00276{bottom:6.425206pt;}
.y23_c00276{bottom:88.293333pt;}
.y22_c00276{bottom:119.360000pt;}
.y21_c00276{bottom:149.360000pt;}
.y20_c00276{bottom:179.360000pt;}
.y1f_c00276{bottom:209.360000pt;}
.y1e_c00276{bottom:238.826667pt;}
.y1d_c00276{bottom:269.093333pt;}
.y1c_c00276{bottom:299.093333pt;}
.y1b_c00276{bottom:328.826667pt;}
.y1a_c00276{bottom:358.160000pt;}
.y19_c00276{bottom:388.160000pt;}
.y18_c00276{bottom:417.626667pt;}
.y17_c00276{bottom:446.960000pt;}
.y16_c00276{bottom:476.426667pt;}
.y15_c00276{bottom:506.160000pt;}
.y14_c00276{bottom:535.760000pt;}
.y13_c00276{bottom:564.960000pt;}
.y12_c00276{bottom:592.826667pt;}
.y11_c00276{bottom:624.560000pt;}
.y10_c00276{bottom:654.560000pt;}
.yf_c00276{bottom:683.760000pt;}
.ye_c00276{bottom:712.560000pt;}
.yd_c00276{bottom:742.160000pt;}
.yc_c00276{bottom:770.960000pt;}
.yb_c00276{bottom:801.360000pt;}
.ya_c00276{bottom:829.893333pt;}
.y9_c00276{bottom:859.760000pt;}
.y8_c00276{bottom:889.226667pt;}
.y7_c00276{bottom:918.693333pt;}
.y6_c00276{bottom:947.760000pt;}
.y5_c00276{bottom:976.826667pt;}
.y4_c00276{bottom:1006.160000pt;}
.y3_c00276{bottom:1035.360000pt;}
.y2_c00276{bottom:1092.960000pt;}
.y1_c00276{bottom:1123.493333pt;}
.h3_c00276{height:11.733399pt;}
.h4_c00276{height:38.937500pt;}
.h2_c00276{height:108.041667pt;}
.h0_c00276{height:1215.866667pt;}
.h1_c00276{height:1216.000000pt;}
.w1_c00276{width:93.222667pt;}
.w0_c00276{width:771.333333pt;}
.x0_c00276{left:0.000000pt;}
.x7_c00276{left:60.800000pt;}
.x6_c00276{left:61.733333pt;}
.x4_c00276{left:64.133333pt;}
.x3_c00276{left:65.066667pt;}
.x1_c00276{left:66.933333pt;}
.x2_c00276{left:68.400000pt;}
.x8_c00276{left:69.333333pt;}
.x5_c00276{left:108.266667pt;}
.x9_c00276{left:306.000000pt;}
.xa_c00276{left:342.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a68d53ae862a6d9a5bd296e.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_ba804d7e514fd82a48d8b3b0.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_960e1a9e671ac0731eda8bb4.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;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_c00277;src:url('chunks/assets/font_92028267673b67b6c3b8c1a0.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;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_c00277;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls1_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:1.272000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:-51.000000px;}
.ws1_c00277{word-spacing:-23.136000px;}
.ws2_c00277{word-spacing:0.000000px;}
._2e_c00277{margin-left:-17.280000px;}
._2c_c00277{margin-left:-15.360000px;}
._1f_c00277{margin-left:-14.208000px;}
._33_c00277{margin-left:-13.152000px;}
._31_c00277{margin-left:-10.944000px;}
._34_c00277{margin-left:-8.832000px;}
._32_c00277{margin-left:-7.584000px;}
._30_c00277{margin-left:-5.760000px;}
._28_c00277{margin-left:-4.224000px;}
._29_c00277{margin-left:-3.168000px;}
._1d_c00277{margin-left:-1.248000px;}
._0_c00277{width:2.016000px;}
._c_c00277{width:3.840000px;}
._8_c00277{width:5.280000px;}
._a_c00277{width:6.912000px;}
._6_c00277{width:8.160000px;}
._5_c00277{width:9.216000px;}
._11_c00277{width:10.464000px;}
._4_c00277{width:11.616000px;}
._3_c00277{width:13.632000px;}
._7_c00277{width:15.072000px;}
._2_c00277{width:17.088000px;}
._1e_c00277{width:18.528000px;}
._12_c00277{width:20.448000px;}
._14_c00277{width:22.080000px;}
._20_c00277{width:25.056000px;}
._1c_c00277{width:26.400000px;}
._26_c00277{width:27.456000px;}
._15_c00277{width:28.992000px;}
._24_c00277{width:30.048000px;}
._f_c00277{width:31.200000px;}
._1b_c00277{width:32.448000px;}
._16_c00277{width:34.560000px;}
._9_c00277{width:36.288000px;}
._13_c00277{width:37.440000px;}
._b_c00277{width:38.592000px;}
._d_c00277{width:40.512000px;}
._25_c00277{width:41.952000px;}
._e_c00277{width:43.008000px;}
._1_c00277{width:44.256000px;}
._2b_c00277{width:45.312000px;}
._1a_c00277{width:47.232000px;}
._21_c00277{width:49.440000px;}
._18_c00277{width:51.072000px;}
._10_c00277{width:52.416000px;}
._23_c00277{width:54.024000px;}
._17_c00277{width:55.776000px;}
._19_c00277{width:62.112000px;}
._2a_c00277{width:137.664000px;}
._27_c00277{width:170.016000px;}
._22_c00277{width:357.984000px;}
._2f_c00277{width:427.104000px;}
._2d_c00277{width:555.552000px;}
.fc2_c00277{color:transparent;}
.fc1_c00277{color:rgb(128,128,128);}
.fc0_c00277{color:rgb(0,0,0);}
.fs4_c00277{font-size:48.000000px;}
.fs1_c00277{font-size:84.000000px;}
.fs0_c00277{font-size:96.000000px;}
.fs3_c00277{font-size:102.000000px;}
.fs2_c00277{font-size:111.000000px;}
.y0_c00277{bottom:0.000000px;}
.y26_c00277{bottom:3.105000px;}
.y25_c00277{bottom:7.228363px;}
.y24_c00277{bottom:85.800000px;}
.y23_c00277{bottom:116.850000px;}
.y22_c00277{bottom:152.850000px;}
.y21_c00277{bottom:186.900000px;}
.y20_c00277{bottom:220.350000px;}
.y1f_c00277{bottom:254.400000px;}
.y1e_c00277{bottom:288.900000px;}
.y1d_c00277{bottom:322.950000px;}
.y1c_c00277{bottom:354.150000px;}
.y1b_c00277{bottom:390.900000px;}
.y1a_c00277{bottom:424.200000px;}
.y19_c00277{bottom:458.100000px;}
.y18_c00277{bottom:492.450000px;}
.y17_c00277{bottom:526.200000px;}
.y16_c00277{bottom:559.950000px;}
.y15_c00277{bottom:594.000000px;}
.y14_c00277{bottom:627.150000px;}
.y13_c00277{bottom:660.600000px;}
.y12_c00277{bottom:694.350000px;}
.y11_c00277{bottom:727.950000px;}
.y10_c00277{bottom:760.500000px;}
.yf_c00277{bottom:795.150000px;}
.ye_c00277{bottom:828.600000px;}
.yd_c00277{bottom:862.050000px;}
.yc_c00277{bottom:895.350000px;}
.yb_c00277{bottom:929.100000px;}
.ya_c00277{bottom:961.650000px;}
.y9_c00277{bottom:994.650000px;}
.y8_c00277{bottom:1027.650000px;}
.y7_c00277{bottom:1061.100000px;}
.y6_c00277{bottom:1094.550000px;}
.y5_c00277{bottom:1127.700000px;}
.y4_c00277{bottom:1160.700000px;}
.y3_c00277{bottom:1194.750000px;}
.y2_c00277{bottom:1227.150000px;}
.y1_c00277{bottom:1260.000000px;}
.h3_c00277{height:13.200074px;}
.h4_c00277{height:43.804688px;}
.h2_c00277{height:121.546875px;}
.h0_c00277{height:1344.600000px;}
.h1_c00277{height:1344.750000px;}
.w2_c00277{width:104.875500px;}
.w0_c00277{width:839.175000px;}
.w1_c00277{width:839.250000px;}
.x0_c00277{left:0.000000px;}
.x8_c00277{left:145.500000px;}
.x5_c00277{left:209.250000px;}
.xe_c00277{left:217.350000px;}
.xd_c00277{left:239.400000px;}
.xc_c00277{left:243.300000px;}
.xb_c00277{left:244.800000px;}
.xa_c00277{left:246.000000px;}
.x9_c00277{left:247.050000px;}
.x7_c00277{left:250.200000px;}
.x6_c00277{left:252.450000px;}
.x2_c00277{left:253.500000px;}
.x1_c00277{left:255.150000px;}
.x3_c00277{left:256.800000px;}
.x4_c00277{left:304.800000px;}
.x10_c00277{left:371.401749px;}
.xf_c00277{left:798.300000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls1_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:1.130667pt;}
.ws0_c00277{word-spacing:-45.333333pt;}
.ws1_c00277{word-spacing:-20.565333pt;}
.ws2_c00277{word-spacing:0.000000pt;}
._2e_c00277{margin-left:-15.360000pt;}
._2c_c00277{margin-left:-13.653333pt;}
._1f_c00277{margin-left:-12.629333pt;}
._33_c00277{margin-left:-11.690667pt;}
._31_c00277{margin-left:-9.728000pt;}
._34_c00277{margin-left:-7.850667pt;}
._32_c00277{margin-left:-6.741333pt;}
._30_c00277{margin-left:-5.120000pt;}
._28_c00277{margin-left:-3.754667pt;}
._29_c00277{margin-left:-2.816000pt;}
._1d_c00277{margin-left:-1.109333pt;}
._0_c00277{width:1.792000pt;}
._c_c00277{width:3.413333pt;}
._8_c00277{width:4.693333pt;}
._a_c00277{width:6.144000pt;}
._6_c00277{width:7.253333pt;}
._5_c00277{width:8.192000pt;}
._11_c00277{width:9.301333pt;}
._4_c00277{width:10.325333pt;}
._3_c00277{width:12.117333pt;}
._7_c00277{width:13.397333pt;}
._2_c00277{width:15.189333pt;}
._1e_c00277{width:16.469333pt;}
._12_c00277{width:18.176000pt;}
._14_c00277{width:19.626667pt;}
._20_c00277{width:22.272000pt;}
._1c_c00277{width:23.466667pt;}
._26_c00277{width:24.405333pt;}
._15_c00277{width:25.770667pt;}
._24_c00277{width:26.709333pt;}
._f_c00277{width:27.733333pt;}
._1b_c00277{width:28.842667pt;}
._16_c00277{width:30.720000pt;}
._9_c00277{width:32.256000pt;}
._13_c00277{width:33.280000pt;}
._b_c00277{width:34.304000pt;}
._d_c00277{width:36.010667pt;}
._25_c00277{width:37.290667pt;}
._e_c00277{width:38.229333pt;}
._1_c00277{width:39.338667pt;}
._2b_c00277{width:40.277333pt;}
._1a_c00277{width:41.984000pt;}
._21_c00277{width:43.946667pt;}
._18_c00277{width:45.397333pt;}
._10_c00277{width:46.592000pt;}
._23_c00277{width:48.021333pt;}
._17_c00277{width:49.578667pt;}
._19_c00277{width:55.210667pt;}
._2a_c00277{width:122.368000pt;}
._27_c00277{width:151.125333pt;}
._22_c00277{width:318.208000pt;}
._2f_c00277{width:379.648000pt;}
._2d_c00277{width:493.824000pt;}
.fs4_c00277{font-size:42.666667pt;}
.fs1_c00277{font-size:74.666667pt;}
.fs0_c00277{font-size:85.333333pt;}
.fs3_c00277{font-size:90.666667pt;}
.fs2_c00277{font-size:98.666667pt;}
.y0_c00277{bottom:0.000000pt;}
.y26_c00277{bottom:2.760000pt;}
.y25_c00277{bottom:6.425212pt;}
.y24_c00277{bottom:76.266667pt;}
.y23_c00277{bottom:103.866667pt;}
.y22_c00277{bottom:135.866667pt;}
.y21_c00277{bottom:166.133333pt;}
.y20_c00277{bottom:195.866667pt;}
.y1f_c00277{bottom:226.133333pt;}
.y1e_c00277{bottom:256.800000pt;}
.y1d_c00277{bottom:287.066667pt;}
.y1c_c00277{bottom:314.800000pt;}
.y1b_c00277{bottom:347.466667pt;}
.y1a_c00277{bottom:377.066667pt;}
.y19_c00277{bottom:407.200000pt;}
.y18_c00277{bottom:437.733333pt;}
.y17_c00277{bottom:467.733333pt;}
.y16_c00277{bottom:497.733333pt;}
.y15_c00277{bottom:528.000000pt;}
.y14_c00277{bottom:557.466667pt;}
.y13_c00277{bottom:587.200000pt;}
.y12_c00277{bottom:617.200000pt;}
.y11_c00277{bottom:647.066667pt;}
.y10_c00277{bottom:676.000000pt;}
.yf_c00277{bottom:706.800000pt;}
.ye_c00277{bottom:736.533333pt;}
.yd_c00277{bottom:766.266667pt;}
.yc_c00277{bottom:795.866667pt;}
.yb_c00277{bottom:825.866667pt;}
.ya_c00277{bottom:854.800000pt;}
.y9_c00277{bottom:884.133333pt;}
.y8_c00277{bottom:913.466667pt;}
.y7_c00277{bottom:943.200000pt;}
.y6_c00277{bottom:972.933333pt;}
.y5_c00277{bottom:1002.400000pt;}
.y4_c00277{bottom:1031.733333pt;}
.y3_c00277{bottom:1062.000000pt;}
.y2_c00277{bottom:1090.800000pt;}
.y1_c00277{bottom:1120.000000pt;}
.h3_c00277{height:11.733399pt;}
.h4_c00277{height:38.937500pt;}
.h2_c00277{height:108.041667pt;}
.h0_c00277{height:1195.200000pt;}
.h1_c00277{height:1195.333333pt;}
.w2_c00277{width:93.222667pt;}
.w0_c00277{width:745.933333pt;}
.w1_c00277{width:746.000000pt;}
.x0_c00277{left:0.000000pt;}
.x8_c00277{left:129.333333pt;}
.x5_c00277{left:186.000000pt;}
.xe_c00277{left:193.200000pt;}
.xd_c00277{left:212.800000pt;}
.xc_c00277{left:216.266667pt;}
.xb_c00277{left:217.600000pt;}
.xa_c00277{left:218.666667pt;}
.x9_c00277{left:219.600000pt;}
.x7_c00277{left:222.400000pt;}
.x6_c00277{left:224.400000pt;}
.x2_c00277{left:225.333333pt;}
.x1_c00277{left:226.800000pt;}
.x3_c00277{left:228.266667pt;}
.x4_c00277{left:270.933333pt;}
.x10_c00277{left:330.134888pt;}
.xf_c00277{left:709.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_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_642dc10a0399d93749efc3d5.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_0fa04bd2e1103b2d45b3d331.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls2_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:9.984000px;}
.ls1_c00278{letter-spacing:11.500800px;}
.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:-53.856000px;}
.ws0_c00278{word-spacing:-43.084800px;}
.ws2_c00278{word-spacing:-23.136000px;}
.ws3_c00278{word-spacing:0.000000px;}
._20_c00278{margin-left:-12.960000px;}
._1c_c00278{margin-left:-11.808000px;}
._1b_c00278{margin-left:-8.352000px;}
._21_c00278{margin-left:-6.417600px;}
._a_c00278{margin-left:-4.608000px;}
._28_c00278{margin-left:-3.456000px;}
._0_c00278{margin-left:-2.208000px;}
._18_c00278{margin-left:-1.056000px;}
._2_c00278{width:1.728000px;}
._1_c00278{width:3.456000px;}
._3_c00278{width:5.280000px;}
._d_c00278{width:6.912000px;}
._11_c00278{width:8.544000px;}
._4_c00278{width:10.176000px;}
._9_c00278{width:11.232000px;}
._6_c00278{width:12.480000px;}
._14_c00278{width:14.208000px;}
._c_c00278{width:15.648000px;}
._17_c00278{width:16.992000px;}
._b_c00278{width:18.816000px;}
._13_c00278{width:20.544000px;}
._7_c00278{width:21.600000px;}
._16_c00278{width:25.056000px;}
._12_c00278{width:26.304000px;}
._8_c00278{width:27.840000px;}
._5_c00278{width:29.952000px;}
._f_c00278{width:31.680000px;}
._25_c00278{width:32.736000px;}
._19_c00278{width:34.176000px;}
._15_c00278{width:35.424000px;}
._1f_c00278{width:36.864000px;}
._1d_c00278{width:38.400000px;}
._10_c00278{width:40.416000px;}
._1a_c00278{width:41.760000px;}
._22_c00278{width:42.912000px;}
._24_c00278{width:44.256000px;}
._e_c00278{width:45.696000px;}
._2f_c00278{width:49.728000px;}
._2b_c00278{width:52.032000px;}
._1e_c00278{width:53.472000px;}
._26_c00278{width:55.680000px;}
._2a_c00278{width:62.496000px;}
._2c_c00278{width:65.760000px;}
._2e_c00278{width:76.704000px;}
._27_c00278{width:93.696000px;}
._29_c00278{width:149.472000px;}
._23_c00278{width:292.977600px;}
._2d_c00278{width:368.736000px;}
.fc2_c00278{color:transparent;}
.fc1_c00278{color:rgb(128,128,128);}
.fc0_c00278{color:rgb(0,0,0);}
.fs2_c00278{font-size:48.000000px;}
.fs1_c00278{font-size:76.800000px;}
.fs0_c00278{font-size:96.000000px;}
.y0_c00278{bottom:0.000000px;}
.y26_c00278{bottom:3.105000px;}
.y25_c00278{bottom:7.228371px;}
.y24_c00278{bottom:116.115000px;}
.y23_c00278{bottom:151.515000px;}
.y22_c00278{bottom:185.265000px;}
.y21_c00278{bottom:219.465000px;}
.y20_c00278{bottom:252.915000px;}
.y1f_c00278{bottom:286.965000px;}
.y1e_c00278{bottom:320.265000px;}
.y1d_c00278{bottom:352.815000px;}
.y1c_c00278{bottom:385.815000px;}
.y1b_c00278{bottom:419.265000px;}
.y1a_c00278{bottom:453.915000px;}
.y19_c00278{bottom:486.465000px;}
.y18_c00278{bottom:520.215000px;}
.y17_c00278{bottom:553.515000px;}
.y16_c00278{bottom:586.365000px;}
.y15_c00278{bottom:619.665000px;}
.y14_c00278{bottom:652.515000px;}
.y13_c00278{bottom:684.915000px;}
.y12_c00278{bottom:718.215000px;}
.y11_c00278{bottom:752.265000px;}
.y10_c00278{bottom:786.165000px;}
.yf_c00278{bottom:818.415000px;}
.ye_c00278{bottom:851.565000px;}
.yd_c00278{bottom:884.715000px;}
.yc_c00278{bottom:918.015000px;}
.yb_c00278{bottom:950.415000px;}
.ya_c00278{bottom:983.865000px;}
.y9_c00278{bottom:1016.865000px;}
.y8_c00278{bottom:1050.015000px;}
.y7_c00278{bottom:1083.015000px;}
.y6_c00278{bottom:1115.865000px;}
.y5_c00278{bottom:1147.965000px;}
.y4_c00278{bottom:1181.715000px;}
.y3_c00278{bottom:1214.415000px;}
.y2_c00278{bottom:1247.715000px;}
.y1_c00278{bottom:1281.165000px;}
.h3_c00278{height:13.200074px;}
.h4_c00278{height:43.804688px;}
.h2_c00278{height:121.546875px;}
.h1_c00278{height:1371.000000px;}
.h0_c00278{height:1371.075000px;}
.w2_c00278{width:104.875500px;}
.w0_c00278{width:869.925000px;}
.w1_c00278{width:870.000000px;}
.x0_c00278{left:0.000000px;}
.x8_c00278{left:39.150000px;}
.xb_c00278{left:48.900000px;}
.xa_c00278{left:49.950000px;}
.x9_c00278{left:51.000000px;}
.x7_c00278{left:52.050000px;}
.x6_c00278{left:53.100000px;}
.x5_c00278{left:54.750000px;}
.x4_c00278{left:55.800000px;}
.x3_c00278{left:57.000000px;}
.x2_c00278{left:58.050000px;}
.x1_c00278{left:59.700000px;}
.xc_c00278{left:104.400000px;}
.xe_c00278{left:386.776749px;}
.xd_c00278{left:573.750000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls2_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:8.874667pt;}
.ls1_c00278{letter-spacing:10.222933pt;}
.ws1_c00278{word-spacing:-47.872000pt;}
.ws0_c00278{word-spacing:-38.297600pt;}
.ws2_c00278{word-spacing:-20.565333pt;}
.ws3_c00278{word-spacing:0.000000pt;}
._20_c00278{margin-left:-11.520000pt;}
._1c_c00278{margin-left:-10.496000pt;}
._1b_c00278{margin-left:-7.424000pt;}
._21_c00278{margin-left:-5.704533pt;}
._a_c00278{margin-left:-4.096000pt;}
._28_c00278{margin-left:-3.072000pt;}
._0_c00278{margin-left:-1.962667pt;}
._18_c00278{margin-left:-0.938667pt;}
._2_c00278{width:1.536000pt;}
._1_c00278{width:3.072000pt;}
._3_c00278{width:4.693333pt;}
._d_c00278{width:6.144000pt;}
._11_c00278{width:7.594667pt;}
._4_c00278{width:9.045333pt;}
._9_c00278{width:9.984000pt;}
._6_c00278{width:11.093333pt;}
._14_c00278{width:12.629333pt;}
._c_c00278{width:13.909333pt;}
._17_c00278{width:15.104000pt;}
._b_c00278{width:16.725333pt;}
._13_c00278{width:18.261333pt;}
._7_c00278{width:19.200000pt;}
._16_c00278{width:22.272000pt;}
._12_c00278{width:23.381333pt;}
._8_c00278{width:24.746667pt;}
._5_c00278{width:26.624000pt;}
._f_c00278{width:28.160000pt;}
._25_c00278{width:29.098667pt;}
._19_c00278{width:30.378667pt;}
._15_c00278{width:31.488000pt;}
._1f_c00278{width:32.768000pt;}
._1d_c00278{width:34.133333pt;}
._10_c00278{width:35.925333pt;}
._1a_c00278{width:37.120000pt;}
._22_c00278{width:38.144000pt;}
._24_c00278{width:39.338667pt;}
._e_c00278{width:40.618667pt;}
._2f_c00278{width:44.202667pt;}
._2b_c00278{width:46.250667pt;}
._1e_c00278{width:47.530667pt;}
._26_c00278{width:49.493333pt;}
._2a_c00278{width:55.552000pt;}
._2c_c00278{width:58.453333pt;}
._2e_c00278{width:68.181333pt;}
._27_c00278{width:83.285333pt;}
._29_c00278{width:132.864000pt;}
._23_c00278{width:260.424533pt;}
._2d_c00278{width:327.765333pt;}
.fs2_c00278{font-size:42.666667pt;}
.fs1_c00278{font-size:68.266667pt;}
.fs0_c00278{font-size:85.333333pt;}
.y0_c00278{bottom:0.000000pt;}
.y26_c00278{bottom:2.760000pt;}
.y25_c00278{bottom:6.425219pt;}
.y24_c00278{bottom:103.213333pt;}
.y23_c00278{bottom:134.680000pt;}
.y22_c00278{bottom:164.680000pt;}
.y21_c00278{bottom:195.080000pt;}
.y20_c00278{bottom:224.813333pt;}
.y1f_c00278{bottom:255.080000pt;}
.y1e_c00278{bottom:284.680000pt;}
.y1d_c00278{bottom:313.613333pt;}
.y1c_c00278{bottom:342.946667pt;}
.y1b_c00278{bottom:372.680000pt;}
.y1a_c00278{bottom:403.480000pt;}
.y19_c00278{bottom:432.413333pt;}
.y18_c00278{bottom:462.413333pt;}
.y17_c00278{bottom:492.013333pt;}
.y16_c00278{bottom:521.213333pt;}
.y15_c00278{bottom:550.813333pt;}
.y14_c00278{bottom:580.013333pt;}
.y13_c00278{bottom:608.813333pt;}
.y12_c00278{bottom:638.413333pt;}
.y11_c00278{bottom:668.680000pt;}
.y10_c00278{bottom:698.813333pt;}
.yf_c00278{bottom:727.480000pt;}
.ye_c00278{bottom:756.946667pt;}
.yd_c00278{bottom:786.413333pt;}
.yc_c00278{bottom:816.013333pt;}
.yb_c00278{bottom:844.813333pt;}
.ya_c00278{bottom:874.546667pt;}
.y9_c00278{bottom:903.880000pt;}
.y8_c00278{bottom:933.346667pt;}
.y7_c00278{bottom:962.680000pt;}
.y6_c00278{bottom:991.880000pt;}
.y5_c00278{bottom:1020.413333pt;}
.y4_c00278{bottom:1050.413333pt;}
.y3_c00278{bottom:1079.480000pt;}
.y2_c00278{bottom:1109.080000pt;}
.y1_c00278{bottom:1138.813333pt;}
.h3_c00278{height:11.733399pt;}
.h4_c00278{height:38.937500pt;}
.h2_c00278{height:108.041667pt;}
.h1_c00278{height:1218.666667pt;}
.h0_c00278{height:1218.733333pt;}
.w2_c00278{width:93.222667pt;}
.w0_c00278{width:773.266667pt;}
.w1_c00278{width:773.333333pt;}
.x0_c00278{left:0.000000pt;}
.x8_c00278{left:34.800000pt;}
.xb_c00278{left:43.466667pt;}
.xa_c00278{left:44.400000pt;}
.x9_c00278{left:45.333333pt;}
.x7_c00278{left:46.266667pt;}
.x6_c00278{left:47.200000pt;}
.x5_c00278{left:48.666667pt;}
.x4_c00278{left:49.600000pt;}
.x3_c00278{left:50.666667pt;}
.x2_c00278{left:51.600000pt;}
.x1_c00278{left:53.066667pt;}
.xc_c00278{left:92.800000pt;}
.xe_c00278{left:343.801554pt;}
.xd_c00278{left:510.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_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_ebcb771baad54a4f061788a9.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_69ea068af9ffc2a86bf3dde2.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_de2e619425cdeadd58bd547c.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls2_c00279{letter-spacing:-6.000000px;}
.ls3_c00279{letter-spacing:-3.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.ls1_c00279{letter-spacing:48.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00279{word-spacing:-25.464000px;}
.ws0_c00279{word-spacing:-23.136000px;}
.ws3_c00279{word-spacing:-21.582000px;}
.ws2_c00279{word-spacing:-20.244000px;}
.ws5_c00279{word-spacing:0.000000px;}
.ws1_c00279{word-spacing:28.416000px;}
._2c_c00279{margin-left:-46.368000px;}
._2d_c00279{margin-left:-45.312000px;}
._2f_c00279{margin-left:-42.456000px;}
._2e_c00279{margin-left:-39.648000px;}
._39_c00279{margin-left:-33.936000px;}
._35_c00279{margin-left:-13.500000px;}
._23_c00279{margin-left:-10.464000px;}
._36_c00279{margin-left:-9.444000px;}
._29_c00279{margin-left:-8.352000px;}
._33_c00279{margin-left:-7.104000px;}
._24_c00279{margin-left:-5.760000px;}
._1d_c00279{margin-left:-3.936000px;}
._8_c00279{margin-left:-2.496000px;}
._20_c00279{margin-left:-1.344000px;}
._a_c00279{width:1.056000px;}
._0_c00279{width:2.304000px;}
._1_c00279{width:3.360000px;}
._5_c00279{width:4.416000px;}
._6_c00279{width:5.664000px;}
._1a_c00279{width:6.816000px;}
._4_c00279{width:7.872000px;}
._15_c00279{width:9.216000px;}
._14_c00279{width:11.040000px;}
._2_c00279{width:12.480000px;}
._10_c00279{width:15.072000px;}
._1c_c00279{width:16.512000px;}
._1b_c00279{width:17.664000px;}
._b_c00279{width:18.912000px;}
._13_c00279{width:20.832000px;}
._11_c00279{width:21.984000px;}
._37_c00279{width:24.288000px;}
._e_c00279{width:26.304000px;}
._30_c00279{width:27.552000px;}
._7_c00279{width:28.608000px;}
._19_c00279{width:29.664000px;}
._17_c00279{width:30.720000px;}
._12_c00279{width:32.544000px;}
._1f_c00279{width:34.752000px;}
._16_c00279{width:37.248000px;}
._d_c00279{width:38.880000px;}
._c_c00279{width:41.088000px;}
._f_c00279{width:42.624000px;}
._9_c00279{width:45.216000px;}
._3_c00279{width:46.752000px;}
._28_c00279{width:47.904000px;}
._22_c00279{width:49.248000px;}
._3a_c00279{width:50.640000px;}
._18_c00279{width:51.936000px;}
._1e_c00279{width:53.952000px;}
._21_c00279{width:64.896000px;}
._2a_c00279{width:75.168000px;}
._31_c00279{width:83.616000px;}
._34_c00279{width:85.728000px;}
._2b_c00279{width:103.584000px;}
._26_c00279{width:105.696000px;}
._38_c00279{width:171.342000px;}
._25_c00279{width:245.568000px;}
._32_c00279{width:328.992000px;}
._27_c00279{width:495.552000px;}
.fc2_c00279{color:transparent;}
.fc1_c00279{color:rgb(128,128,128);}
.fc0_c00279{color:rgb(0,0,0);}
.fs4_c00279{font-size:48.000000px;}
.fs1_c00279{font-size:84.000000px;}
.fs0_c00279{font-size:96.000000px;}
.fs3_c00279{font-size:102.000000px;}
.fs2_c00279{font-size:114.000000px;}
.y0_c00279{bottom:0.000000px;}
.y1e_c00279{bottom:3.105000px;}
.y1d_c00279{bottom:7.228369px;}
.y1c_c00279{bottom:89.670000px;}
.y1b_c00279{bottom:328.320000px;}
.y1a_c00279{bottom:360.720000px;}
.y19_c00279{bottom:394.920000px;}
.y18_c00279{bottom:429.570000px;}
.y17_c00279{bottom:462.720000px;}
.y16_c00279{bottom:497.520000px;}
.y15_c00279{bottom:530.820000px;}
.y14_c00279{bottom:564.570000px;}
.y13_c00279{bottom:597.720000px;}
.y12_c00279{bottom:631.470000px;}
.y11_c00279{bottom:665.220000px;}
.y10_c00279{bottom:699.570000px;}
.yf_c00279{bottom:732.420000px;}
.ye_c00279{bottom:765.720000px;}
.yd_c00279{bottom:799.170000px;}
.yc_c00279{bottom:833.520000px;}
.yb_c00279{bottom:866.520000px;}
.ya_c00279{bottom:899.670000px;}
.y9_c00279{bottom:932.820000px;}
.y8_c00279{bottom:998.970000px;}
.y7_c00279{bottom:1063.170000px;}
.y6_c00279{bottom:1099.170000px;}
.y5_c00279{bottom:1132.920000px;}
.y4_c00279{bottom:1165.770000px;}
.y3_c00279{bottom:1199.070000px;}
.y2_c00279{bottom:1231.920000px;}
.y1_c00279{bottom:1264.920000px;}
.h6_c00279{height:13.200073px;}
.h7_c00279{height:43.804688px;}
.h4_c00279{height:119.381836px;}
.h5_c00279{height:120.067383px;}
.h2_c00279{height:121.546875px;}
.h3_c00279{height:129.143555px;}
.h1_c00279{height:1359.000000px;}
.h0_c00279{height:1359.150000px;}
.w2_c00279{width:104.875500px;}
.w1_c00279{width:848.250000px;}
.w0_c00279{width:848.325000px;}
.x0_c00279{left:0.000000px;}
.xb_c00279{left:137.400000px;}
.xc_c00279{left:160.050000px;}
.x2_c00279{left:265.950000px;}
.x1_c00279{left:267.000000px;}
.x3_c00279{left:268.050000px;}
.xa_c00279{left:269.700000px;}
.x9_c00279{left:270.900000px;}
.x4_c00279{left:302.400000px;}
.x7_c00279{left:303.750000px;}
.xd_c00279{left:315.600000px;}
.x8_c00279{left:321.000000px;}
.x5_c00279{left:375.600000px;}
.x6_c00279{left:413.400000px;}
.xe_c00279{left:781.050000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls2_c00279{letter-spacing:-5.333333pt;}
.ls3_c00279{letter-spacing:-2.666667pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ls1_c00279{letter-spacing:42.666667pt;}
.ws4_c00279{word-spacing:-22.634667pt;}
.ws0_c00279{word-spacing:-20.565333pt;}
.ws3_c00279{word-spacing:-19.184000pt;}
.ws2_c00279{word-spacing:-17.994667pt;}
.ws5_c00279{word-spacing:0.000000pt;}
.ws1_c00279{word-spacing:25.258667pt;}
._2c_c00279{margin-left:-41.216000pt;}
._2d_c00279{margin-left:-40.277333pt;}
._2f_c00279{margin-left:-37.738667pt;}
._2e_c00279{margin-left:-35.242667pt;}
._39_c00279{margin-left:-30.165333pt;}
._35_c00279{margin-left:-12.000000pt;}
._23_c00279{margin-left:-9.301333pt;}
._36_c00279{margin-left:-8.394667pt;}
._29_c00279{margin-left:-7.424000pt;}
._33_c00279{margin-left:-6.314667pt;}
._24_c00279{margin-left:-5.120000pt;}
._1d_c00279{margin-left:-3.498667pt;}
._8_c00279{margin-left:-2.218667pt;}
._20_c00279{margin-left:-1.194667pt;}
._a_c00279{width:0.938667pt;}
._0_c00279{width:2.048000pt;}
._1_c00279{width:2.986667pt;}
._5_c00279{width:3.925333pt;}
._6_c00279{width:5.034667pt;}
._1a_c00279{width:6.058667pt;}
._4_c00279{width:6.997333pt;}
._15_c00279{width:8.192000pt;}
._14_c00279{width:9.813333pt;}
._2_c00279{width:11.093333pt;}
._10_c00279{width:13.397333pt;}
._1c_c00279{width:14.677333pt;}
._1b_c00279{width:15.701333pt;}
._b_c00279{width:16.810667pt;}
._13_c00279{width:18.517333pt;}
._11_c00279{width:19.541333pt;}
._37_c00279{width:21.589333pt;}
._e_c00279{width:23.381333pt;}
._30_c00279{width:24.490667pt;}
._7_c00279{width:25.429333pt;}
._19_c00279{width:26.368000pt;}
._17_c00279{width:27.306667pt;}
._12_c00279{width:28.928000pt;}
._1f_c00279{width:30.890667pt;}
._16_c00279{width:33.109333pt;}
._d_c00279{width:34.560000pt;}
._c_c00279{width:36.522667pt;}
._f_c00279{width:37.888000pt;}
._9_c00279{width:40.192000pt;}
._3_c00279{width:41.557333pt;}
._28_c00279{width:42.581333pt;}
._22_c00279{width:43.776000pt;}
._3a_c00279{width:45.013333pt;}
._18_c00279{width:46.165333pt;}
._1e_c00279{width:47.957333pt;}
._21_c00279{width:57.685333pt;}
._2a_c00279{width:66.816000pt;}
._31_c00279{width:74.325333pt;}
._34_c00279{width:76.202667pt;}
._2b_c00279{width:92.074667pt;}
._26_c00279{width:93.952000pt;}
._38_c00279{width:152.304000pt;}
._25_c00279{width:218.282667pt;}
._32_c00279{width:292.437333pt;}
._27_c00279{width:440.490667pt;}
.fs4_c00279{font-size:42.666667pt;}
.fs1_c00279{font-size:74.666667pt;}
.fs0_c00279{font-size:85.333333pt;}
.fs3_c00279{font-size:90.666667pt;}
.fs2_c00279{font-size:101.333333pt;}
.y0_c00279{bottom:0.000000pt;}
.y1e_c00279{bottom:2.760000pt;}
.y1d_c00279{bottom:6.425217pt;}
.y1c_c00279{bottom:79.706667pt;}
.y1b_c00279{bottom:291.840000pt;}
.y1a_c00279{bottom:320.640000pt;}
.y19_c00279{bottom:351.040000pt;}
.y18_c00279{bottom:381.840000pt;}
.y17_c00279{bottom:411.306667pt;}
.y16_c00279{bottom:442.240000pt;}
.y15_c00279{bottom:471.840000pt;}
.y14_c00279{bottom:501.840000pt;}
.y13_c00279{bottom:531.306667pt;}
.y12_c00279{bottom:561.306667pt;}
.y11_c00279{bottom:591.306667pt;}
.y10_c00279{bottom:621.840000pt;}
.yf_c00279{bottom:651.040000pt;}
.ye_c00279{bottom:680.640000pt;}
.yd_c00279{bottom:710.373333pt;}
.yc_c00279{bottom:740.906667pt;}
.yb_c00279{bottom:770.240000pt;}
.ya_c00279{bottom:799.706667pt;}
.y9_c00279{bottom:829.173333pt;}
.y8_c00279{bottom:887.973333pt;}
.y7_c00279{bottom:945.040000pt;}
.y6_c00279{bottom:977.040000pt;}
.y5_c00279{bottom:1007.040000pt;}
.y4_c00279{bottom:1036.240000pt;}
.y3_c00279{bottom:1065.840000pt;}
.y2_c00279{bottom:1095.040000pt;}
.y1_c00279{bottom:1124.373333pt;}
.h6_c00279{height:11.733399pt;}
.h7_c00279{height:38.937500pt;}
.h4_c00279{height:106.117188pt;}
.h5_c00279{height:106.726562pt;}
.h2_c00279{height:108.041667pt;}
.h3_c00279{height:114.794271pt;}
.h1_c00279{height:1208.000000pt;}
.h0_c00279{height:1208.133333pt;}
.w2_c00279{width:93.222667pt;}
.w1_c00279{width:754.000000pt;}
.w0_c00279{width:754.066667pt;}
.x0_c00279{left:0.000000pt;}
.xb_c00279{left:122.133333pt;}
.xc_c00279{left:142.266667pt;}
.x2_c00279{left:236.400000pt;}
.x1_c00279{left:237.333333pt;}
.x3_c00279{left:238.266667pt;}
.xa_c00279{left:239.733333pt;}
.x9_c00279{left:240.800000pt;}
.x4_c00279{left:268.800000pt;}
.x7_c00279{left:270.000000pt;}
.xd_c00279{left:280.533333pt;}
.x8_c00279{left:285.333333pt;}
.x5_c00279{left:333.866667pt;}
.x6_c00279{left:367.466667pt;}
.xe_c00279{left:694.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a88ae2484e4952ab5ef01d2.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_ed903e379b9ab5159011b77e.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.006336;font-style:normal;font-weight:normal;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_9297be93f058431647fe5656.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_baf11829562686fa4d2ebd23.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;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_c00280;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00280{vertical-align:-81.000000px;}
.v0_c00280{vertical-align:0.000000px;}
.ls4_c00280{letter-spacing:-21.000000px;}
.ls3_c00280{letter-spacing:0.000000px;}
.ls5_c00280{letter-spacing:3.000000px;}
.ls1_c00280{letter-spacing:12.000000px;}
.ls2_c00280{letter-spacing:13.800000px;}
.ls0_c00280{letter-spacing:19.800000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00280{word-spacing:-51.000000px;}
.ws1_c00280{word-spacing:-23.136000px;}
.ws0_c00280{word-spacing:-20.967000px;}
.ws3_c00280{word-spacing:0.000000px;}
._a_c00280{margin-left:-46.272000px;}
._45_c00280{margin-left:-36.864000px;}
._22_c00280{margin-left:-35.859000px;}
._1b_c00280{margin-left:-30.240000px;}
._b_c00280{margin-left:-28.512000px;}
._19_c00280{margin-left:-24.807000px;}
._1d_c00280{margin-left:-20.544000px;}
._c_c00280{margin-left:-18.912000px;}
._23_c00280{margin-left:-17.835000px;}
._2d_c00280{margin-left:-16.032000px;}
._7_c00280{margin-left:-13.536000px;}
._d_c00280{margin-left:-11.616000px;}
._9_c00280{margin-left:-9.792000px;}
._11_c00280{margin-left:-8.352000px;}
._16_c00280{margin-left:-7.344000px;}
._f_c00280{margin-left:-5.781000px;}
._14_c00280{margin-left:-4.176000px;}
._13_c00280{margin-left:-2.880000px;}
._8_c00280{margin-left:-1.536000px;}
._29_c00280{width:1.344000px;}
._27_c00280{width:3.168000px;}
._36_c00280{width:4.368000px;}
._21_c00280{width:5.568000px;}
._26_c00280{width:6.624000px;}
._2_c00280{width:7.776000px;}
._34_c00280{width:8.784000px;}
._1f_c00280{width:9.888000px;}
._1_c00280{width:11.664000px;}
._0_c00280{width:12.816000px;}
._3_c00280{width:14.688000px;}
._6_c00280{width:16.272000px;}
._4b_c00280{width:17.280000px;}
._5_c00280{width:18.288000px;}
._2b_c00280{width:19.296000px;}
._20_c00280{width:21.312000px;}
._18_c00280{width:22.812000px;}
._e_c00280{width:23.829000px;}
._38_c00280{width:25.392000px;}
._1c_c00280{width:26.400000px;}
._35_c00280{width:27.888000px;}
._39_c00280{width:29.616000px;}
._37_c00280{width:30.720000px;}
._15_c00280{width:32.133000px;}
._42_c00280{width:33.984000px;}
._28_c00280{width:36.048000px;}
._30_c00280{width:38.688000px;}
._12_c00280{width:40.629000px;}
._2f_c00280{width:42.336000px;}
._3a_c00280{width:44.880000px;}
._4a_c00280{width:46.848000px;}
._3c_c00280{width:49.419000px;}
._41_c00280{width:51.264000px;}
._3d_c00280{width:52.560000px;}
._40_c00280{width:53.664000px;}
._43_c00280{width:57.984000px;}
._17_c00280{width:59.205000px;}
._33_c00280{width:60.768000px;}
._31_c00280{width:64.512000px;}
._4d_c00280{width:66.516000px;}
._25_c00280{width:68.139000px;}
._48_c00280{width:69.723000px;}
._2a_c00280{width:72.432000px;}
._3f_c00280{width:78.048000px;}
._4c_c00280{width:82.272000px;}
._2e_c00280{width:92.352000px;}
._49_c00280{width:101.232000px;}
._4_c00280{width:132.624000px;}
._10_c00280{width:145.422000px;}
._32_c00280{width:156.765000px;}
._47_c00280{width:172.512000px;}
._24_c00280{width:176.976000px;}
._3e_c00280{width:178.176000px;}
._46_c00280{width:180.864000px;}
._2c_c00280{width:193.776000px;}
._1a_c00280{width:214.464000px;}
._1e_c00280{width:219.264000px;}
._3b_c00280{width:290.250000px;}
._4e_c00280{width:785.376000px;}
._44_c00280{width:903.552000px;}
.fc2_c00280{color:transparent;}
.fc1_c00280{color:rgb(128,128,128);}
.fc0_c00280{color:rgb(0,0,0);}
.fs6_c00280{font-size:48.000000px;}
.fs4_c00280{font-size:84.000000px;}
.fs3_c00280{font-size:87.000000px;}
.fs1_c00280{font-size:96.000000px;}
.fs5_c00280{font-size:102.000000px;}
.fs2_c00280{font-size:141.000000px;}
.fs0_c00280{font-size:144.000000px;}
.y0_c00280{bottom:0.000000px;}
.y26_c00280{bottom:3.105000px;}
.y25_c00280{bottom:7.228369px;}
.y24_c00280{bottom:93.870000px;}
.y23_c00280{bottom:129.270000px;}
.y22_c00280{bottom:163.920000px;}
.y21_c00280{bottom:197.820000px;}
.y20_c00280{bottom:231.420000px;}
.y1f_c00280{bottom:265.170000px;}
.y1e_c00280{bottom:298.620000px;}
.y1d_c00280{bottom:333.420000px;}
.y1c_c00280{bottom:366.570000px;}
.y1b_c00280{bottom:400.920000px;}
.y1a_c00280{bottom:434.370000px;}
.y19_c00280{bottom:467.820000px;}
.y18_c00280{bottom:501.420000px;}
.y17_c00280{bottom:534.870000px;}
.y16_c00280{bottom:568.020000px;}
.y15_c00280{bottom:601.020000px;}
.y14_c00280{bottom:634.170000px;}
.y13_c00280{bottom:667.620000px;}
.y12_c00280{bottom:701.970000px;}
.y11_c00280{bottom:734.970000px;}
.y6_c00280{bottom:756.570000px;}
.y10_c00280{bottom:768.420000px;}
.yf_c00280{bottom:801.870000px;}
.ye_c00280{bottom:834.570000px;}
.yd_c00280{bottom:868.620000px;}
.yc_c00280{bottom:900.420000px;}
.yb_c00280{bottom:934.470000px;}
.ya_c00280{bottom:967.320000px;}
.y9_c00280{bottom:1000.020000px;}
.y8_c00280{bottom:1034.070000px;}
.y7_c00280{bottom:1066.470000px;}
.y5_c00280{bottom:1106.970000px;}
.y4_c00280{bottom:1131.270000px;}
.y3_c00280{bottom:1208.970000px;}
.y2_c00280{bottom:1245.720000px;}
.y1_c00280{bottom:1259.520000px;}
.h5_c00280{height:13.200073px;}
.h6_c00280{height:43.804688px;}
.h4_c00280{height:101.825684px;}
.h3_c00280{height:121.546875px;}
.h2_c00280{height:182.320312px;}
.h0_c00280{height:1383.450000px;}
.h1_c00280{height:1383.750000px;}
.w2_c00280{width:104.875500px;}
.w0_c00280{width:878.025000px;}
.w1_c00280{width:878.250000px;}
.x0_c00280{left:0.000000px;}
.x10_c00280{left:44.550000px;}
.xd_c00280{left:50.550000px;}
.xb_c00280{left:52.200000px;}
.xe_c00280{left:53.250000px;}
.xc_c00280{left:54.300000px;}
.xa_c00280{left:55.350000px;}
.x1_c00280{left:84.750000px;}
.xf_c00280{left:103.950000px;}
.x7_c00280{left:106.200000px;}
.x3_c00280{left:113.700000px;}
.x8_c00280{left:204.450000px;}
.x9_c00280{left:273.000000px;}
.x11_c00280{left:327.600000px;}
.x12_c00280{left:390.826721px;}
.x5_c00280{left:410.100000px;}
.x2_c00280{left:532.950000px;}
.x4_c00280{left:560.850000px;}
.x6_c00280{left:644.550000px;}
@media print{
.v1_c00280{vertical-align:-72.000000pt;}
.v0_c00280{vertical-align:0.000000pt;}
.ls4_c00280{letter-spacing:-18.666667pt;}
.ls3_c00280{letter-spacing:0.000000pt;}
.ls5_c00280{letter-spacing:2.666667pt;}
.ls1_c00280{letter-spacing:10.666667pt;}
.ls2_c00280{letter-spacing:12.266667pt;}
.ls0_c00280{letter-spacing:17.600000pt;}
.ws2_c00280{word-spacing:-45.333333pt;}
.ws1_c00280{word-spacing:-20.565333pt;}
.ws0_c00280{word-spacing:-18.637333pt;}
.ws3_c00280{word-spacing:0.000000pt;}
._a_c00280{margin-left:-41.130667pt;}
._45_c00280{margin-left:-32.768000pt;}
._22_c00280{margin-left:-31.874667pt;}
._1b_c00280{margin-left:-26.880000pt;}
._b_c00280{margin-left:-25.344000pt;}
._19_c00280{margin-left:-22.050667pt;}
._1d_c00280{margin-left:-18.261333pt;}
._c_c00280{margin-left:-16.810667pt;}
._23_c00280{margin-left:-15.853333pt;}
._2d_c00280{margin-left:-14.250667pt;}
._7_c00280{margin-left:-12.032000pt;}
._d_c00280{margin-left:-10.325333pt;}
._9_c00280{margin-left:-8.704000pt;}
._11_c00280{margin-left:-7.424000pt;}
._16_c00280{margin-left:-6.528000pt;}
._f_c00280{margin-left:-5.138667pt;}
._14_c00280{margin-left:-3.712000pt;}
._13_c00280{margin-left:-2.560000pt;}
._8_c00280{margin-left:-1.365333pt;}
._29_c00280{width:1.194667pt;}
._27_c00280{width:2.816000pt;}
._36_c00280{width:3.882667pt;}
._21_c00280{width:4.949333pt;}
._26_c00280{width:5.888000pt;}
._2_c00280{width:6.912000pt;}
._34_c00280{width:7.808000pt;}
._1f_c00280{width:8.789333pt;}
._1_c00280{width:10.368000pt;}
._0_c00280{width:11.392000pt;}
._3_c00280{width:13.056000pt;}
._6_c00280{width:14.464000pt;}
._4b_c00280{width:15.360000pt;}
._5_c00280{width:16.256000pt;}
._2b_c00280{width:17.152000pt;}
._20_c00280{width:18.944000pt;}
._18_c00280{width:20.277333pt;}
._e_c00280{width:21.181333pt;}
._38_c00280{width:22.570667pt;}
._1c_c00280{width:23.466667pt;}
._35_c00280{width:24.789333pt;}
._39_c00280{width:26.325333pt;}
._37_c00280{width:27.306667pt;}
._15_c00280{width:28.562667pt;}
._42_c00280{width:30.208000pt;}
._28_c00280{width:32.042667pt;}
._30_c00280{width:34.389333pt;}
._12_c00280{width:36.114667pt;}
._2f_c00280{width:37.632000pt;}
._3a_c00280{width:39.893333pt;}
._4a_c00280{width:41.642667pt;}
._3c_c00280{width:43.928000pt;}
._41_c00280{width:45.568000pt;}
._3d_c00280{width:46.720000pt;}
._40_c00280{width:47.701333pt;}
._43_c00280{width:51.541333pt;}
._17_c00280{width:52.626667pt;}
._33_c00280{width:54.016000pt;}
._31_c00280{width:57.344000pt;}
._4d_c00280{width:59.125333pt;}
._25_c00280{width:60.568000pt;}
._48_c00280{width:61.976000pt;}
._2a_c00280{width:64.384000pt;}
._3f_c00280{width:69.376000pt;}
._4c_c00280{width:73.130667pt;}
._2e_c00280{width:82.090667pt;}
._49_c00280{width:89.984000pt;}
._4_c00280{width:117.888000pt;}
._10_c00280{width:129.264000pt;}
._32_c00280{width:139.346667pt;}
._47_c00280{width:153.344000pt;}
._24_c00280{width:157.312000pt;}
._3e_c00280{width:158.378667pt;}
._46_c00280{width:160.768000pt;}
._2c_c00280{width:172.245333pt;}
._1a_c00280{width:190.634667pt;}
._1e_c00280{width:194.901333pt;}
._3b_c00280{width:258.000000pt;}
._4e_c00280{width:698.112000pt;}
._44_c00280{width:803.157333pt;}
.fs6_c00280{font-size:42.666667pt;}
.fs4_c00280{font-size:74.666667pt;}
.fs3_c00280{font-size:77.333333pt;}
.fs1_c00280{font-size:85.333333pt;}
.fs5_c00280{font-size:90.666667pt;}
.fs2_c00280{font-size:125.333333pt;}
.fs0_c00280{font-size:128.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y26_c00280{bottom:2.760000pt;}
.y25_c00280{bottom:6.425217pt;}
.y24_c00280{bottom:83.440000pt;}
.y23_c00280{bottom:114.906667pt;}
.y22_c00280{bottom:145.706667pt;}
.y21_c00280{bottom:175.840000pt;}
.y20_c00280{bottom:205.706667pt;}
.y1f_c00280{bottom:235.706667pt;}
.y1e_c00280{bottom:265.440000pt;}
.y1d_c00280{bottom:296.373333pt;}
.y1c_c00280{bottom:325.840000pt;}
.y1b_c00280{bottom:356.373333pt;}
.y1a_c00280{bottom:386.106667pt;}
.y19_c00280{bottom:415.840000pt;}
.y18_c00280{bottom:445.706667pt;}
.y17_c00280{bottom:475.440000pt;}
.y16_c00280{bottom:504.906667pt;}
.y15_c00280{bottom:534.240000pt;}
.y14_c00280{bottom:563.706667pt;}
.y13_c00280{bottom:593.440000pt;}
.y12_c00280{bottom:623.973333pt;}
.y11_c00280{bottom:653.306667pt;}
.y6_c00280{bottom:672.506667pt;}
.y10_c00280{bottom:683.040000pt;}
.yf_c00280{bottom:712.773333pt;}
.ye_c00280{bottom:741.840000pt;}
.yd_c00280{bottom:772.106667pt;}
.yc_c00280{bottom:800.373333pt;}
.yb_c00280{bottom:830.640000pt;}
.ya_c00280{bottom:859.840000pt;}
.y9_c00280{bottom:888.906667pt;}
.y8_c00280{bottom:919.173333pt;}
.y7_c00280{bottom:947.973333pt;}
.y5_c00280{bottom:983.973333pt;}
.y4_c00280{bottom:1005.573333pt;}
.y3_c00280{bottom:1074.640000pt;}
.y2_c00280{bottom:1107.306667pt;}
.y1_c00280{bottom:1119.573333pt;}
.h5_c00280{height:11.733399pt;}
.h6_c00280{height:38.937500pt;}
.h4_c00280{height:90.511719pt;}
.h3_c00280{height:108.041667pt;}
.h2_c00280{height:162.062500pt;}
.h0_c00280{height:1229.733333pt;}
.h1_c00280{height:1230.000000pt;}
.w2_c00280{width:93.222667pt;}
.w0_c00280{width:780.466667pt;}
.w1_c00280{width:780.666667pt;}
.x0_c00280{left:0.000000pt;}
.x10_c00280{left:39.600000pt;}
.xd_c00280{left:44.933333pt;}
.xb_c00280{left:46.400000pt;}
.xe_c00280{left:47.333333pt;}
.xc_c00280{left:48.266667pt;}
.xa_c00280{left:49.200000pt;}
.x1_c00280{left:75.333333pt;}
.xf_c00280{left:92.400000pt;}
.x7_c00280{left:94.400000pt;}
.x3_c00280{left:101.066667pt;}
.x8_c00280{left:181.733333pt;}
.x9_c00280{left:242.666667pt;}
.x11_c00280{left:291.200000pt;}
.x12_c00280{left:347.401530pt;}
.x5_c00280{left:364.533333pt;}
.x2_c00280{left:473.733333pt;}
.x4_c00280{left:498.533333pt;}
.x6_c00280{left:572.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0db5bec5d7d172c40c58013f.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_7c9258df861664c67eb189c9.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_07bbcde1ae1eaa8325ac5437.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_f63ccde9c9f3e3e45286a791.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_f5c7e31c8de3b3d999c53023.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00281;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00281{font-family:ff6_c00281;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00281{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls4_c00281{letter-spacing:-6.000000px;}
.ls3_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:5.100000px;}
.ls1_c00281{letter-spacing:37.800000px;}
.ls2_c00281{letter-spacing:42.000000px;}
.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;}
}
.ws4_c00281{word-spacing:-68.529000px;}
.ws1_c00281{word-spacing:-63.504000px;}
.ws2_c00281{word-spacing:-51.000000px;}
.ws0_c00281{word-spacing:-27.924000px;}
.ws3_c00281{word-spacing:-23.136000px;}
.ws5_c00281{word-spacing:0.000000px;}
._4e_c00281{margin-left:-31.776000px;}
._58_c00281{margin-left:-30.432000px;}
._43_c00281{margin-left:-28.128000px;}
._2a_c00281{margin-left:-26.784000px;}
._39_c00281{margin-left:-25.320000px;}
._4b_c00281{margin-left:-23.904000px;}
._53_c00281{margin-left:-22.464000px;}
._34_c00281{margin-left:-19.392000px;}
._3c_c00281{margin-left:-16.320000px;}
._31_c00281{margin-left:-13.056000px;}
._3_c00281{margin-left:-11.328000px;}
._3a_c00281{margin-left:-9.504000px;}
._26_c00281{margin-left:-7.680000px;}
._4_c00281{margin-left:-6.528000px;}
._13_c00281{margin-left:-5.280000px;}
._11_c00281{margin-left:-3.264000px;}
._d_c00281{margin-left:-1.248000px;}
._0_c00281{width:2.016000px;}
._1_c00281{width:3.840000px;}
._b_c00281{width:5.088000px;}
._9_c00281{width:6.528000px;}
._f_c00281{width:7.776000px;}
._8_c00281{width:9.312000px;}
._29_c00281{width:10.608000px;}
._6_c00281{width:11.952000px;}
._1c_c00281{width:13.968000px;}
._2e_c00281{width:15.168000px;}
._45_c00281{width:16.224000px;}
._1b_c00281{width:17.472000px;}
._24_c00281{width:18.816000px;}
._49_c00281{width:20.016000px;}
._e_c00281{width:21.024000px;}
._2d_c00281{width:22.128000px;}
._54_c00281{width:24.240000px;}
._21_c00281{width:25.344000px;}
._1f_c00281{width:26.880000px;}
._20_c00281{width:28.512000px;}
._17_c00281{width:29.856000px;}
._2_c00281{width:32.064000px;}
._5_c00281{width:34.176000px;}
._28_c00281{width:35.712000px;}
._a_c00281{width:36.864000px;}
._c_c00281{width:38.688000px;}
._7_c00281{width:40.800000px;}
._19_c00281{width:42.432000px;}
._16_c00281{width:44.256000px;}
._22_c00281{width:45.840000px;}
._55_c00281{width:47.376000px;}
._18_c00281{width:49.920000px;}
._12_c00281{width:51.552000px;}
._2c_c00281{width:53.664000px;}
._3f_c00281{width:55.680000px;}
._15_c00281{width:57.696000px;}
._2b_c00281{width:59.040000px;}
._1e_c00281{width:60.672000px;}
._35_c00281{width:73.128000px;}
._57_c00281{width:75.696000px;}
._27_c00281{width:77.376000px;}
._56_c00281{width:78.912000px;}
._37_c00281{width:85.536000px;}
._1a_c00281{width:90.144000px;}
._23_c00281{width:103.776000px;}
._30_c00281{width:108.288000px;}
._5b_c00281{width:111.924000px;}
._59_c00281{width:117.792000px;}
._48_c00281{width:128.976000px;}
._47_c00281{width:137.088000px;}
._41_c00281{width:140.496000px;}
._46_c00281{width:163.920000px;}
._4d_c00281{width:171.456000px;}
._44_c00281{width:174.528000px;}
._3b_c00281{width:180.960000px;}
._1d_c00281{width:206.688000px;}
._4c_c00281{width:213.216000px;}
._25_c00281{width:231.648000px;}
._38_c00281{width:240.048000px;}
._32_c00281{width:252.192000px;}
._36_c00281{width:313.680000px;}
._14_c00281{width:337.152000px;}
._50_c00281{width:346.176000px;}
._10_c00281{width:349.728000px;}
._3d_c00281{width:374.496000px;}
._4f_c00281{width:398.976000px;}
._2f_c00281{width:400.896000px;}
._40_c00281{width:493.248000px;}
._4a_c00281{width:566.976000px;}
._3e_c00281{width:577.488000px;}
._52_c00281{width:704.640000px;}
._33_c00281{width:820.416000px;}
._5a_c00281{width:899.904000px;}
._42_c00281{width:981.216000px;}
._51_c00281{width:1314.696000px;}
.fc2_c00281{color:transparent;}
.fc1_c00281{color:rgb(128,128,128);}
.fc0_c00281{color:rgb(0,0,0);}
.fs6_c00281{font-size:36.000000px;}
.fs7_c00281{font-size:48.000000px;}
.fs5_c00281{font-size:60.000000px;}
.fs2_c00281{font-size:84.000000px;}
.fs0_c00281{font-size:96.000000px;}
.fs1_c00281{font-size:102.000000px;}
.fs4_c00281{font-size:117.000000px;}
.fs3_c00281{font-size:144.000000px;}
.y0_c00281{bottom:0.000000px;}
.y24_c00281{bottom:3.105000px;}
.y23_c00281{bottom:7.228357px;}
.y21_c00281{bottom:85.830000px;}
.y20_c00281{bottom:119.880000px;}
.y1f_c00281{bottom:154.230000px;}
.y1e_c00281{bottom:188.280000px;}
.y1d_c00281{bottom:223.830000px;}
.y1c_c00281{bottom:256.230000px;}
.y1b_c00281{bottom:289.230000px;}
.y1a_c00281{bottom:314.280000px;}
.y19_c00281{bottom:383.730000px;}
.y18_c00281{bottom:435.330000px;}
.y17_c00281{bottom:486.780000px;}
.y16_c00281{bottom:564.330000px;}
.y15_c00281{bottom:598.680000px;}
.y14_c00281{bottom:632.430000px;}
.y22_c00281{bottom:661.830000px;}
.y13_c00281{bottom:666.180000px;}
.y12_c00281{bottom:699.630000px;}
.y11_c00281{bottom:733.680000px;}
.y10_c00281{bottom:763.530000px;}
.yf_c00281{bottom:800.580000px;}
.ye_c00281{bottom:834.030000px;}
.yd_c00281{bottom:868.830000px;}
.yc_c00281{bottom:903.480000px;}
.yb_c00281{bottom:934.830000px;}
.ya_c00281{bottom:958.530000px;}
.y9_c00281{bottom:1001.730000px;}
.y8_c00281{bottom:1034.730000px;}
.y7_c00281{bottom:1068.630000px;}
.y6_c00281{bottom:1102.380000px;}
.y5_c00281{bottom:1135.680000px;}
.y4_c00281{bottom:1168.080000px;}
.y3_c00281{bottom:1201.530000px;}
.y2_c00281{bottom:1233.330000px;}
.y1_c00281{bottom:1269.030000px;}
.h7_c00281{height:13.200074px;}
.h8_c00281{height:43.804688px;}
.h6_c00281{height:45.580078px;}
.h5_c00281{height:75.966797px;}
.h2_c00281{height:121.546875px;}
.h4_c00281{height:124.839000px;}
.h3_c00281{height:182.320312px;}
.h0_c00281{height:1382.700000px;}
.h1_c00281{height:1383.000000px;}
.w2_c00281{width:104.875500px;}
.w0_c00281{width:863.175000px;}
.w1_c00281{width:863.250000px;}
.x0_c00281{left:0.000000px;}
.x2_c00281{left:33.150000px;}
.x9_c00281{left:94.800000px;}
.xd_c00281{left:125.550000px;}
.xa_c00281{left:129.300000px;}
.x11_c00281{left:146.700000px;}
.x5_c00281{left:152.550000px;}
.xc_c00281{left:155.400000px;}
.x15_c00281{left:172.500000px;}
.x16_c00281{left:182.850000px;}
.x6_c00281{left:202.200000px;}
.x7_c00281{left:250.800000px;}
.xb_c00281{left:251.850000px;}
.x1_c00281{left:252.900000px;}
.x4_c00281{left:254.550000px;}
.x3_c00281{left:256.800000px;}
.xe_c00281{left:257.850000px;}
.x13_c00281{left:258.900000px;}
.x8_c00281{left:295.050000px;}
.x17_c00281{left:383.401749px;}
.xf_c00281{left:408.750000px;}
.x12_c00281{left:428.550000px;}
.x14_c00281{left:481.500000px;}
.x10_c00281{left:484.650000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls4_c00281{letter-spacing:-5.333333pt;}
.ls3_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:4.533333pt;}
.ls1_c00281{letter-spacing:33.600000pt;}
.ls2_c00281{letter-spacing:37.333333pt;}
.ws4_c00281{word-spacing:-60.914667pt;}
.ws1_c00281{word-spacing:-56.448000pt;}
.ws2_c00281{word-spacing:-45.333333pt;}
.ws0_c00281{word-spacing:-24.821333pt;}
.ws3_c00281{word-spacing:-20.565333pt;}
.ws5_c00281{word-spacing:0.000000pt;}
._4e_c00281{margin-left:-28.245333pt;}
._58_c00281{margin-left:-27.050667pt;}
._43_c00281{margin-left:-25.002667pt;}
._2a_c00281{margin-left:-23.808000pt;}
._39_c00281{margin-left:-22.506667pt;}
._4b_c00281{margin-left:-21.248000pt;}
._53_c00281{margin-left:-19.968000pt;}
._34_c00281{margin-left:-17.237333pt;}
._3c_c00281{margin-left:-14.506667pt;}
._31_c00281{margin-left:-11.605333pt;}
._3_c00281{margin-left:-10.069333pt;}
._3a_c00281{margin-left:-8.448000pt;}
._26_c00281{margin-left:-6.826667pt;}
._4_c00281{margin-left:-5.802667pt;}
._13_c00281{margin-left:-4.693333pt;}
._11_c00281{margin-left:-2.901333pt;}
._d_c00281{margin-left:-1.109333pt;}
._0_c00281{width:1.792000pt;}
._1_c00281{width:3.413333pt;}
._b_c00281{width:4.522667pt;}
._9_c00281{width:5.802667pt;}
._f_c00281{width:6.912000pt;}
._8_c00281{width:8.277333pt;}
._29_c00281{width:9.429333pt;}
._6_c00281{width:10.624000pt;}
._1c_c00281{width:12.416000pt;}
._2e_c00281{width:13.482667pt;}
._45_c00281{width:14.421333pt;}
._1b_c00281{width:15.530667pt;}
._24_c00281{width:16.725333pt;}
._49_c00281{width:17.792000pt;}
._e_c00281{width:18.688000pt;}
._2d_c00281{width:19.669333pt;}
._54_c00281{width:21.546667pt;}
._21_c00281{width:22.528000pt;}
._1f_c00281{width:23.893333pt;}
._20_c00281{width:25.344000pt;}
._17_c00281{width:26.538667pt;}
._2_c00281{width:28.501333pt;}
._5_c00281{width:30.378667pt;}
._28_c00281{width:31.744000pt;}
._a_c00281{width:32.768000pt;}
._c_c00281{width:34.389333pt;}
._7_c00281{width:36.266667pt;}
._19_c00281{width:37.717333pt;}
._16_c00281{width:39.338667pt;}
._22_c00281{width:40.746667pt;}
._55_c00281{width:42.112000pt;}
._18_c00281{width:44.373333pt;}
._12_c00281{width:45.824000pt;}
._2c_c00281{width:47.701333pt;}
._3f_c00281{width:49.493333pt;}
._15_c00281{width:51.285333pt;}
._2b_c00281{width:52.480000pt;}
._1e_c00281{width:53.930667pt;}
._35_c00281{width:65.002667pt;}
._57_c00281{width:67.285333pt;}
._27_c00281{width:68.778667pt;}
._56_c00281{width:70.144000pt;}
._37_c00281{width:76.032000pt;}
._1a_c00281{width:80.128000pt;}
._23_c00281{width:92.245333pt;}
._30_c00281{width:96.256000pt;}
._5b_c00281{width:99.488000pt;}
._59_c00281{width:104.704000pt;}
._48_c00281{width:114.645333pt;}
._47_c00281{width:121.856000pt;}
._41_c00281{width:124.885333pt;}
._46_c00281{width:145.706667pt;}
._4d_c00281{width:152.405333pt;}
._44_c00281{width:155.136000pt;}
._3b_c00281{width:160.853333pt;}
._1d_c00281{width:183.722667pt;}
._4c_c00281{width:189.525333pt;}
._25_c00281{width:205.909333pt;}
._38_c00281{width:213.376000pt;}
._32_c00281{width:224.170667pt;}
._36_c00281{width:278.826667pt;}
._14_c00281{width:299.690667pt;}
._50_c00281{width:307.712000pt;}
._10_c00281{width:310.869333pt;}
._3d_c00281{width:332.885333pt;}
._4f_c00281{width:354.645333pt;}
._2f_c00281{width:356.352000pt;}
._40_c00281{width:438.442667pt;}
._4a_c00281{width:503.978667pt;}
._3e_c00281{width:513.322667pt;}
._52_c00281{width:626.346667pt;}
._33_c00281{width:729.258667pt;}
._5a_c00281{width:799.914667pt;}
._42_c00281{width:872.192000pt;}
._51_c00281{width:1168.618667pt;}
.fs6_c00281{font-size:32.000000pt;}
.fs7_c00281{font-size:42.666667pt;}
.fs5_c00281{font-size:53.333333pt;}
.fs2_c00281{font-size:74.666667pt;}
.fs0_c00281{font-size:85.333333pt;}
.fs1_c00281{font-size:90.666667pt;}
.fs4_c00281{font-size:104.000000pt;}
.fs3_c00281{font-size:128.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y24_c00281{bottom:2.760000pt;}
.y23_c00281{bottom:6.425206pt;}
.y21_c00281{bottom:76.293333pt;}
.y20_c00281{bottom:106.560000pt;}
.y1f_c00281{bottom:137.093333pt;}
.y1e_c00281{bottom:167.360000pt;}
.y1d_c00281{bottom:198.960000pt;}
.y1c_c00281{bottom:227.760000pt;}
.y1b_c00281{bottom:257.093333pt;}
.y1a_c00281{bottom:279.360000pt;}
.y19_c00281{bottom:341.093333pt;}
.y18_c00281{bottom:386.960000pt;}
.y17_c00281{bottom:432.693333pt;}
.y16_c00281{bottom:501.626667pt;}
.y15_c00281{bottom:532.160000pt;}
.y14_c00281{bottom:562.160000pt;}
.y22_c00281{bottom:588.293333pt;}
.y13_c00281{bottom:592.160000pt;}
.y12_c00281{bottom:621.893333pt;}
.y11_c00281{bottom:652.160000pt;}
.y10_c00281{bottom:678.693333pt;}
.yf_c00281{bottom:711.626667pt;}
.ye_c00281{bottom:741.360000pt;}
.yd_c00281{bottom:772.293333pt;}
.yc_c00281{bottom:803.093333pt;}
.yb_c00281{bottom:830.960000pt;}
.ya_c00281{bottom:852.026667pt;}
.y9_c00281{bottom:890.426667pt;}
.y8_c00281{bottom:919.760000pt;}
.y7_c00281{bottom:949.893333pt;}
.y6_c00281{bottom:979.893333pt;}
.y5_c00281{bottom:1009.493333pt;}
.y4_c00281{bottom:1038.293333pt;}
.y3_c00281{bottom:1068.026667pt;}
.y2_c00281{bottom:1096.293333pt;}
.y1_c00281{bottom:1128.026667pt;}
.h7_c00281{height:11.733399pt;}
.h8_c00281{height:38.937500pt;}
.h6_c00281{height:40.515625pt;}
.h5_c00281{height:67.526042pt;}
.h2_c00281{height:108.041667pt;}
.h4_c00281{height:110.968000pt;}
.h3_c00281{height:162.062500pt;}
.h0_c00281{height:1229.066667pt;}
.h1_c00281{height:1229.333333pt;}
.w2_c00281{width:93.222667pt;}
.w0_c00281{width:767.266667pt;}
.w1_c00281{width:767.333333pt;}
.x0_c00281{left:0.000000pt;}
.x2_c00281{left:29.466667pt;}
.x9_c00281{left:84.266667pt;}
.xd_c00281{left:111.600000pt;}
.xa_c00281{left:114.933333pt;}
.x11_c00281{left:130.400000pt;}
.x5_c00281{left:135.600000pt;}
.xc_c00281{left:138.133333pt;}
.x15_c00281{left:153.333333pt;}
.x16_c00281{left:162.533333pt;}
.x6_c00281{left:179.733333pt;}
.x7_c00281{left:222.933333pt;}
.xb_c00281{left:223.866667pt;}
.x1_c00281{left:224.800000pt;}
.x4_c00281{left:226.266667pt;}
.x3_c00281{left:228.266667pt;}
.xe_c00281{left:229.200000pt;}
.x13_c00281{left:230.133333pt;}
.x8_c00281{left:262.266667pt;}
.x17_c00281{left:340.801554pt;}
.xf_c00281{left:363.333333pt;}
.x12_c00281{left:380.933333pt;}
.x14_c00281{left:428.000000pt;}
.x10_c00281{left:430.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_208b7c6dd664bc3f851a4337.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_14013ec1d5d35ce43ce57ee4.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_460e5597467520bc3d5a40fe.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_36d8500e98824893dd876618.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_6bf41bd82364311646e351bc.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00282;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00282{font-family:ff6_c00282;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls3_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.600000px;}
.ls5_c00282{letter-spacing:6.000000px;}
.ls4_c00282{letter-spacing:15.000000px;}
.ls1_c00282{letter-spacing:18.000000px;}
.ls2_c00282{letter-spacing:34.200000px;}
.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;}
}
.ws2_c00282{word-spacing:-63.504000px;}
.ws0_c00282{word-spacing:-51.000000px;}
.ws1_c00282{word-spacing:-23.136000px;}
.ws3_c00282{word-spacing:0.000000px;}
._49_c00282{margin-left:-69.600000px;}
._39_c00282{margin-left:-36.960000px;}
._4b_c00282{margin-left:-34.848000px;}
._4a_c00282{margin-left:-32.736000px;}
._2b_c00282{margin-left:-30.888000px;}
._44_c00282{margin-left:-28.320000px;}
._21_c00282{margin-left:-26.688000px;}
._9_c00282{margin-left:-24.024000px;}
._46_c00282{margin-left:-22.272000px;}
._28_c00282{margin-left:-19.584000px;}
._33_c00282{margin-left:-18.336000px;}
._17_c00282{margin-left:-16.320000px;}
._1b_c00282{margin-left:-14.976000px;}
._1a_c00282{margin-left:-13.488000px;}
._e_c00282{margin-left:-11.424000px;}
._30_c00282{margin-left:-10.176000px;}
._11_c00282{margin-left:-9.120000px;}
._3_c00282{margin-left:-6.912000px;}
._14_c00282{margin-left:-5.760000px;}
._b_c00282{margin-left:-4.032000px;}
._6_c00282{margin-left:-2.112000px;}
._12_c00282{margin-left:-1.056000px;}
._31_c00282{width:1.056000px;}
._2_c00282{width:2.208000px;}
._1_c00282{width:3.264000px;}
._0_c00282{width:5.184000px;}
._5_c00282{width:6.816000px;}
._a_c00282{width:7.968000px;}
._4_c00282{width:9.408000px;}
._1f_c00282{width:10.752000px;}
._8_c00282{width:11.808000px;}
._19_c00282{width:13.536000px;}
._7_c00282{width:15.072000px;}
._32_c00282{width:16.128000px;}
._c_c00282{width:17.184000px;}
._34_c00282{width:18.288000px;}
._f_c00282{width:19.776000px;}
._26_c00282{width:21.024000px;}
._2f_c00282{width:24.216000px;}
._d_c00282{width:25.440000px;}
._1e_c00282{width:26.592000px;}
._27_c00282{width:28.320000px;}
._3c_c00282{width:29.376000px;}
._10_c00282{width:30.912000px;}
._25_c00282{width:33.024000px;}
._16_c00282{width:34.944000px;}
._15_c00282{width:36.288000px;}
._1d_c00282{width:38.784000px;}
._23_c00282{width:40.320000px;}
._3f_c00282{width:41.577000px;}
._2e_c00282{width:43.008000px;}
._18_c00282{width:44.928000px;}
._35_c00282{width:47.424000px;}
._13_c00282{width:49.152000px;}
._22_c00282{width:51.552000px;}
._50_c00282{width:54.336000px;}
._41_c00282{width:56.352000px;}
._20_c00282{width:58.272000px;}
._2d_c00282{width:61.536000px;}
._36_c00282{width:67.008000px;}
._24_c00282{width:68.112000px;}
._3d_c00282{width:69.408000px;}
._42_c00282{width:71.376000px;}
._43_c00282{width:75.264000px;}
._3a_c00282{width:85.824000px;}
._4e_c00282{width:87.012000px;}
._4c_c00282{width:89.568000px;}
._47_c00282{width:103.872000px;}
._3e_c00282{width:106.080000px;}
._3b_c00282{width:116.928000px;}
._1c_c00282{width:165.888000px;}
._40_c00282{width:174.528000px;}
._4f_c00282{width:177.120000px;}
._37_c00282{width:204.744000px;}
._48_c00282{width:226.512000px;}
._29_c00282{width:237.696000px;}
._45_c00282{width:262.176000px;}
._4d_c00282{width:309.648000px;}
._2c_c00282{width:523.056000px;}
._38_c00282{width:557.184000px;}
._2a_c00282{width:675.360000px;}
._51_c00282{width:1856.544000px;}
.fc2_c00282{color:transparent;}
.fc1_c00282{color:rgb(128,128,128);}
.fc0_c00282{color:rgb(0,0,0);}
.fs8_c00282{font-size:48.000000px;}
.fs4_c00282{font-size:60.000000px;}
.fs5_c00282{font-size:69.000000px;}
.fs6_c00282{font-size:84.000000px;}
.fs3_c00282{font-size:87.000000px;}
.fs0_c00282{font-size:96.000000px;}
.fs1_c00282{font-size:102.000000px;}
.fs7_c00282{font-size:105.000000px;}
.fs2_c00282{font-size:144.000000px;}
.y0_c00282{bottom:0.000000px;}
.y25_c00282{bottom:3.105000px;}
.y24_c00282{bottom:7.228369px;}
.y23_c00282{bottom:100.470000px;}
.y22_c00282{bottom:136.320000px;}
.y21_c00282{bottom:171.720000px;}
.y20_c00282{bottom:206.820000px;}
.y1f_c00282{bottom:234.120000px;}
.y1e_c00282{bottom:274.320000px;}
.y1d_c00282{bottom:306.720000px;}
.y1c_c00282{bottom:341.520000px;}
.y1b_c00282{bottom:376.320000px;}
.y1a_c00282{bottom:407.370000px;}
.y19_c00282{bottom:442.470000px;}
.y18_c00282{bottom:476.520000px;}
.y17_c00282{bottom:509.970000px;}
.y16_c00282{bottom:543.420000px;}
.y15_c00282{bottom:577.020000px;}
.y14_c00282{bottom:610.170000px;}
.y13_c00282{bottom:643.170000px;}
.y12_c00282{bottom:676.470000px;}
.y11_c00282{bottom:709.770000px;}
.y10_c00282{bottom:743.070000px;}
.yf_c00282{bottom:775.620000px;}
.ye_c00282{bottom:809.220000px;}
.yd_c00282{bottom:843.120000px;}
.yc_c00282{bottom:877.170000px;}
.yb_c00282{bottom:909.870000px;}
.ya_c00282{bottom:943.620000px;}
.y9_c00282{bottom:978.720000px;}
.y8_c00282{bottom:1012.470000px;}
.y7_c00282{bottom:1044.870000px;}
.y6_c00282{bottom:1091.820000px;}
.y5_c00282{bottom:1105.920000px;}
.y4_c00282{bottom:1168.470000px;}
.y3_c00282{bottom:1206.270000px;}
.y2_c00282{bottom:1241.970000px;}
.y1_c00282{bottom:1276.770000px;}
.h6_c00282{height:13.200073px;}
.h7_c00282{height:43.804688px;}
.h4_c00282{height:110.151855px;}
.h2_c00282{height:121.546875px;}
.h5_c00282{height:132.941895px;}
.h3_c00282{height:182.320312px;}
.h0_c00282{height:1383.450000px;}
.h1_c00282{height:1383.750000px;}
.w2_c00282{width:104.875500px;}
.w0_c00282{width:878.025000px;}
.w1_c00282{width:878.250000px;}
.x0_c00282{left:0.000000px;}
.xc_c00282{left:43.500000px;}
.xb_c00282{left:46.200000px;}
.xa_c00282{left:47.250000px;}
.xf_c00282{left:48.900000px;}
.x1_c00282{left:52.200000px;}
.x8_c00282{left:53.250000px;}
.x2_c00282{left:54.600000px;}
.x9_c00282{left:55.800000px;}
.xd_c00282{left:57.000000px;}
.x5_c00282{left:81.300000px;}
.xe_c00282{left:102.300000px;}
.x10_c00282{left:106.200000px;}
.x11_c00282{left:108.300000px;}
.x3_c00282{left:168.750000px;}
.x7_c00282{left:276.750000px;}
.x6_c00282{left:291.300000px;}
.x12_c00282{left:390.826721px;}
.x4_c00282{left:433.950000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls3_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.533333pt;}
.ls5_c00282{letter-spacing:5.333333pt;}
.ls4_c00282{letter-spacing:13.333333pt;}
.ls1_c00282{letter-spacing:16.000000pt;}
.ls2_c00282{letter-spacing:30.400000pt;}
.ws2_c00282{word-spacing:-56.448000pt;}
.ws0_c00282{word-spacing:-45.333333pt;}
.ws1_c00282{word-spacing:-20.565333pt;}
.ws3_c00282{word-spacing:0.000000pt;}
._49_c00282{margin-left:-61.866667pt;}
._39_c00282{margin-left:-32.853333pt;}
._4b_c00282{margin-left:-30.976000pt;}
._4a_c00282{margin-left:-29.098667pt;}
._2b_c00282{margin-left:-27.456000pt;}
._44_c00282{margin-left:-25.173333pt;}
._21_c00282{margin-left:-23.722667pt;}
._9_c00282{margin-left:-21.354667pt;}
._46_c00282{margin-left:-19.797333pt;}
._28_c00282{margin-left:-17.408000pt;}
._33_c00282{margin-left:-16.298667pt;}
._17_c00282{margin-left:-14.506667pt;}
._1b_c00282{margin-left:-13.312000pt;}
._1a_c00282{margin-left:-11.989333pt;}
._e_c00282{margin-left:-10.154667pt;}
._30_c00282{margin-left:-9.045333pt;}
._11_c00282{margin-left:-8.106667pt;}
._3_c00282{margin-left:-6.144000pt;}
._14_c00282{margin-left:-5.120000pt;}
._b_c00282{margin-left:-3.584000pt;}
._6_c00282{margin-left:-1.877333pt;}
._12_c00282{margin-left:-0.938667pt;}
._31_c00282{width:0.938667pt;}
._2_c00282{width:1.962667pt;}
._1_c00282{width:2.901333pt;}
._0_c00282{width:4.608000pt;}
._5_c00282{width:6.058667pt;}
._a_c00282{width:7.082667pt;}
._4_c00282{width:8.362667pt;}
._1f_c00282{width:9.557333pt;}
._8_c00282{width:10.496000pt;}
._19_c00282{width:12.032000pt;}
._7_c00282{width:13.397333pt;}
._32_c00282{width:14.336000pt;}
._c_c00282{width:15.274667pt;}
._34_c00282{width:16.256000pt;}
._f_c00282{width:17.578667pt;}
._26_c00282{width:18.688000pt;}
._2f_c00282{width:21.525333pt;}
._d_c00282{width:22.613333pt;}
._1e_c00282{width:23.637333pt;}
._27_c00282{width:25.173333pt;}
._3c_c00282{width:26.112000pt;}
._10_c00282{width:27.477333pt;}
._25_c00282{width:29.354667pt;}
._16_c00282{width:31.061333pt;}
._15_c00282{width:32.256000pt;}
._1d_c00282{width:34.474667pt;}
._23_c00282{width:35.840000pt;}
._3f_c00282{width:36.957333pt;}
._2e_c00282{width:38.229333pt;}
._18_c00282{width:39.936000pt;}
._35_c00282{width:42.154667pt;}
._13_c00282{width:43.690667pt;}
._22_c00282{width:45.824000pt;}
._50_c00282{width:48.298667pt;}
._41_c00282{width:50.090667pt;}
._20_c00282{width:51.797333pt;}
._2d_c00282{width:54.698667pt;}
._36_c00282{width:59.562667pt;}
._24_c00282{width:60.544000pt;}
._3d_c00282{width:61.696000pt;}
._42_c00282{width:63.445333pt;}
._43_c00282{width:66.901333pt;}
._3a_c00282{width:76.288000pt;}
._4e_c00282{width:77.344000pt;}
._4c_c00282{width:79.616000pt;}
._47_c00282{width:92.330667pt;}
._3e_c00282{width:94.293333pt;}
._3b_c00282{width:103.936000pt;}
._1c_c00282{width:147.456000pt;}
._40_c00282{width:155.136000pt;}
._4f_c00282{width:157.440000pt;}
._37_c00282{width:181.994667pt;}
._48_c00282{width:201.344000pt;}
._29_c00282{width:211.285333pt;}
._45_c00282{width:233.045333pt;}
._4d_c00282{width:275.242667pt;}
._2c_c00282{width:464.938667pt;}
._38_c00282{width:495.274667pt;}
._2a_c00282{width:600.320000pt;}
._51_c00282{width:1650.261333pt;}
.fs8_c00282{font-size:42.666667pt;}
.fs4_c00282{font-size:53.333333pt;}
.fs5_c00282{font-size:61.333333pt;}
.fs6_c00282{font-size:74.666667pt;}
.fs3_c00282{font-size:77.333333pt;}
.fs0_c00282{font-size:85.333333pt;}
.fs1_c00282{font-size:90.666667pt;}
.fs7_c00282{font-size:93.333333pt;}
.fs2_c00282{font-size:128.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y25_c00282{bottom:2.760000pt;}
.y24_c00282{bottom:6.425217pt;}
.y23_c00282{bottom:89.306667pt;}
.y22_c00282{bottom:121.173333pt;}
.y21_c00282{bottom:152.640000pt;}
.y20_c00282{bottom:183.840000pt;}
.y1f_c00282{bottom:208.106667pt;}
.y1e_c00282{bottom:243.840000pt;}
.y1d_c00282{bottom:272.640000pt;}
.y1c_c00282{bottom:303.573333pt;}
.y1b_c00282{bottom:334.506667pt;}
.y1a_c00282{bottom:362.106667pt;}
.y19_c00282{bottom:393.306667pt;}
.y18_c00282{bottom:423.573333pt;}
.y17_c00282{bottom:453.306667pt;}
.y16_c00282{bottom:483.040000pt;}
.y15_c00282{bottom:512.906667pt;}
.y14_c00282{bottom:542.373333pt;}
.y13_c00282{bottom:571.706667pt;}
.y12_c00282{bottom:601.306667pt;}
.y11_c00282{bottom:630.906667pt;}
.y10_c00282{bottom:660.506667pt;}
.yf_c00282{bottom:689.440000pt;}
.ye_c00282{bottom:719.306667pt;}
.yd_c00282{bottom:749.440000pt;}
.yc_c00282{bottom:779.706667pt;}
.yb_c00282{bottom:808.773333pt;}
.ya_c00282{bottom:838.773333pt;}
.y9_c00282{bottom:869.973333pt;}
.y8_c00282{bottom:899.973333pt;}
.y7_c00282{bottom:928.773333pt;}
.y6_c00282{bottom:970.506667pt;}
.y5_c00282{bottom:983.040000pt;}
.y4_c00282{bottom:1038.640000pt;}
.y3_c00282{bottom:1072.240000pt;}
.y2_c00282{bottom:1103.973333pt;}
.y1_c00282{bottom:1134.906667pt;}
.h6_c00282{height:11.733399pt;}
.h7_c00282{height:38.937500pt;}
.h4_c00282{height:97.912760pt;}
.h2_c00282{height:108.041667pt;}
.h5_c00282{height:118.170573pt;}
.h3_c00282{height:162.062500pt;}
.h0_c00282{height:1229.733333pt;}
.h1_c00282{height:1230.000000pt;}
.w2_c00282{width:93.222667pt;}
.w0_c00282{width:780.466667pt;}
.w1_c00282{width:780.666667pt;}
.x0_c00282{left:0.000000pt;}
.xc_c00282{left:38.666667pt;}
.xb_c00282{left:41.066667pt;}
.xa_c00282{left:42.000000pt;}
.xf_c00282{left:43.466667pt;}
.x1_c00282{left:46.400000pt;}
.x8_c00282{left:47.333333pt;}
.x2_c00282{left:48.533333pt;}
.x9_c00282{left:49.600000pt;}
.xd_c00282{left:50.666667pt;}
.x5_c00282{left:72.266667pt;}
.xe_c00282{left:90.933333pt;}
.x10_c00282{left:94.400000pt;}
.x11_c00282{left:96.266667pt;}
.x3_c00282{left:150.000000pt;}
.x7_c00282{left:246.000000pt;}
.x6_c00282{left:258.933333pt;}
.x12_c00282{left:347.401530pt;}
.x4_c00282{left:385.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2dcd672895d71a749458008.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_8f8a73ce8257326c24714bb1.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_e61d76161a78c86a12be397f.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_2a10409f26fcae1fac9bab1a.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00283{font-family:ff6_c00283;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls3_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:12.000000px;}
.ls4_c00283{letter-spacing:30.000000px;}
.ls2_c00283{letter-spacing:49.728000px;}
.ls1_c00283{letter-spacing:58.291200px;}
.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;}
}
.ws1_c00283{word-spacing:-34.704000px;}
.ws2_c00283{word-spacing:-29.070000px;}
.ws3_c00283{word-spacing:-20.244000px;}
.ws4_c00283{word-spacing:0.000000px;}
.ws0_c00283{word-spacing:15.372000px;}
._24_c00283{margin-left:-83.328000px;}
._32_c00283{margin-left:-47.616000px;}
._46_c00283{margin-left:-40.704000px;}
._4b_c00283{margin-left:-36.864000px;}
._3a_c00283{margin-left:-34.752000px;}
._3_c00283{margin-left:-28.128000px;}
._47_c00283{margin-left:-23.616000px;}
._38_c00283{margin-left:-22.368000px;}
._35_c00283{margin-left:-21.252000px;}
._2c_c00283{margin-left:-19.488000px;}
._2e_c00283{margin-left:-18.432000px;}
._3e_c00283{margin-left:-17.088000px;}
._2d_c00283{margin-left:-14.208000px;}
._21_c00283{margin-left:-13.152000px;}
._1f_c00283{margin-left:-11.616000px;}
._20_c00283{margin-left:-10.176000px;}
._15_c00283{margin-left:-8.064000px;}
._25_c00283{margin-left:-6.912000px;}
._16_c00283{margin-left:-5.280000px;}
._4c_c00283{margin-left:-4.140000px;}
._e_c00283{margin-left:-2.976000px;}
._f_c00283{margin-left:-1.824000px;}
._1_c00283{width:1.920000px;}
._0_c00283{width:3.552000px;}
._6_c00283{width:4.800000px;}
._10_c00283{width:5.952000px;}
._b_c00283{width:7.968000px;}
._c_c00283{width:9.984000px;}
._42_c00283{width:11.136000px;}
._13_c00283{width:12.288000px;}
._1d_c00283{width:14.016000px;}
._27_c00283{width:15.072000px;}
._1c_c00283{width:16.128000px;}
._11_c00283{width:17.160000px;}
._14_c00283{width:18.720000px;}
._26_c00283{width:19.776000px;}
._2b_c00283{width:21.600000px;}
._4f_c00283{width:23.112000px;}
._37_c00283{width:24.960000px;}
._2a_c00283{width:26.304000px;}
._17_c00283{width:27.936000px;}
._a_c00283{width:29.856000px;}
._12_c00283{width:32.256000px;}
._5_c00283{width:33.696000px;}
._2_c00283{width:34.752000px;}
._28_c00283{width:35.904000px;}
._40_c00283{width:36.960000px;}
._4_c00283{width:38.304000px;}
._23_c00283{width:40.800000px;}
._45_c00283{width:42.816000px;}
._22_c00283{width:45.120000px;}
._9_c00283{width:46.656000px;}
._8_c00283{width:47.712000px;}
._7_c00283{width:49.344000px;}
._49_c00283{width:51.744000px;}
._d_c00283{width:53.184000px;}
._41_c00283{width:54.336000px;}
._29_c00283{width:55.392000px;}
._19_c00283{width:57.888000px;}
._52_c00283{width:59.712000px;}
._30_c00283{width:60.864000px;}
._1a_c00283{width:62.688000px;}
._4a_c00283{width:65.664000px;}
._2f_c00283{width:67.296000px;}
._51_c00283{width:76.872000px;}
._44_c00283{width:81.504000px;}
._53_c00283{width:110.328000px;}
._1b_c00283{width:116.328000px;}
._31_c00283{width:149.664000px;}
._34_c00283{width:152.592000px;}
._18_c00283{width:161.664000px;}
._4e_c00283{width:184.560000px;}
._50_c00283{width:187.128000px;}
._3c_c00283{width:194.784000px;}
._1e_c00283{width:239.136000px;}
._48_c00283{width:334.464000px;}
._4d_c00283{width:351.840000px;}
._3d_c00283{width:356.832000px;}
._43_c00283{width:500.352000px;}
._3f_c00283{width:608.448000px;}
._39_c00283{width:698.592000px;}
._3b_c00283{width:742.464000px;}
._36_c00283{width:763.392000px;}
._33_c00283{width:959.328000px;}
.fc2_c00283{color:transparent;}
.fc1_c00283{color:rgb(128,128,128);}
.fc0_c00283{color:rgb(0,0,0);}
.fs7_c00283{font-size:48.000000px;}
.fs6_c00283{font-size:72.000000px;}
.fs2_c00283{font-size:84.000000px;}
.fs0_c00283{font-size:96.000000px;}
.fs5_c00283{font-size:99.000000px;}
.fs1_c00283{font-size:102.000000px;}
.fs4_c00283{font-size:115.200000px;}
.fs3_c00283{font-size:144.000000px;}
.y0_c00283{bottom:0.000000px;}
.y21_c00283{bottom:3.105000px;}
.y20_c00283{bottom:7.228357px;}
.y1f_c00283{bottom:87.780000px;}
.y1e_c00283{bottom:120.180000px;}
.y1d_c00283{bottom:154.530000px;}
.y1c_c00283{bottom:190.080000px;}
.y1b_c00283{bottom:223.530000px;}
.y1a_c00283{bottom:257.280000px;}
.y19_c00283{bottom:292.230000px;}
.y18_c00283{bottom:326.130000px;}
.y17_c00283{bottom:359.880000px;}
.y16_c00283{bottom:394.530000px;}
.y15_c00283{bottom:427.980000px;}
.y14_c00283{bottom:462.330000px;}
.y13_c00283{bottom:496.080000px;}
.y12_c00283{bottom:529.530000px;}
.y11_c00283{bottom:561.330000px;}
.y10_c00283{bottom:595.680000px;}
.yf_c00283{bottom:689.580000px;}
.ye_c00283{bottom:769.830000px;}
.yd_c00283{bottom:801.630000px;}
.yc_c00283{bottom:836.430000px;}
.yb_c00283{bottom:870.180000px;}
.ya_c00283{bottom:903.180000px;}
.y9_c00283{bottom:937.530000px;}
.y8_c00283{bottom:970.380000px;}
.y7_c00283{bottom:1003.380000px;}
.y6_c00283{bottom:1036.530000px;}
.y5_c00283{bottom:1104.630000px;}
.y4_c00283{bottom:1169.880000px;}
.y3_c00283{bottom:1204.230000px;}
.y2_c00283{bottom:1237.680000px;}
.y1_c00283{bottom:1270.680000px;}
.h7_c00283{height:13.200074px;}
.h8_c00283{height:43.804688px;}
.h5_c00283{height:91.160156px;}
.h6_c00283{height:98.314453px;}
.h2_c00283{height:121.546875px;}
.h4_c00283{height:125.345215px;}
.h3_c00283{height:182.320312px;}
.h0_c00283{height:1382.700000px;}
.h1_c00283{height:1383.000000px;}
.w2_c00283{width:104.875500px;}
.w0_c00283{width:863.175000px;}
.w1_c00283{width:863.250000px;}
.x0_c00283{left:0.000000px;}
.xa_c00283{left:144.450000px;}
.xf_c00283{left:148.800000px;}
.xd_c00283{left:162.300000px;}
.xb_c00283{left:165.000000px;}
.xe_c00283{left:210.300000px;}
.x10_c00283{left:253.500000px;}
.x1_c00283{left:258.900000px;}
.x2_c00283{left:260.550000px;}
.xc_c00283{left:263.250000px;}
.x11_c00283{left:268.200000px;}
.x7_c00283{left:291.300000px;}
.x3_c00283{left:292.950000px;}
.x6_c00283{left:296.250000px;}
.x9_c00283{left:311.100000px;}
.x8_c00283{left:323.550000px;}
.x4_c00283{left:358.800000px;}
.x13_c00283{left:383.401749px;}
.x5_c00283{left:408.000000px;}
.x12_c00283{left:796.800000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls3_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:10.666667pt;}
.ls4_c00283{letter-spacing:26.666667pt;}
.ls2_c00283{letter-spacing:44.202667pt;}
.ls1_c00283{letter-spacing:51.814400pt;}
.ws1_c00283{word-spacing:-30.848000pt;}
.ws2_c00283{word-spacing:-25.840000pt;}
.ws3_c00283{word-spacing:-17.994667pt;}
.ws4_c00283{word-spacing:0.000000pt;}
.ws0_c00283{word-spacing:13.664000pt;}
._24_c00283{margin-left:-74.069333pt;}
._32_c00283{margin-left:-42.325333pt;}
._46_c00283{margin-left:-36.181333pt;}
._4b_c00283{margin-left:-32.768000pt;}
._3a_c00283{margin-left:-30.890667pt;}
._3_c00283{margin-left:-25.002667pt;}
._47_c00283{margin-left:-20.992000pt;}
._38_c00283{margin-left:-19.882667pt;}
._35_c00283{margin-left:-18.890667pt;}
._2c_c00283{margin-left:-17.322667pt;}
._2e_c00283{margin-left:-16.384000pt;}
._3e_c00283{margin-left:-15.189333pt;}
._2d_c00283{margin-left:-12.629333pt;}
._21_c00283{margin-left:-11.690667pt;}
._1f_c00283{margin-left:-10.325333pt;}
._20_c00283{margin-left:-9.045333pt;}
._15_c00283{margin-left:-7.168000pt;}
._25_c00283{margin-left:-6.144000pt;}
._16_c00283{margin-left:-4.693333pt;}
._4c_c00283{margin-left:-3.680000pt;}
._e_c00283{margin-left:-2.645333pt;}
._f_c00283{margin-left:-1.621333pt;}
._1_c00283{width:1.706667pt;}
._0_c00283{width:3.157333pt;}
._6_c00283{width:4.266667pt;}
._10_c00283{width:5.290667pt;}
._b_c00283{width:7.082667pt;}
._c_c00283{width:8.874667pt;}
._42_c00283{width:9.898667pt;}
._13_c00283{width:10.922667pt;}
._1d_c00283{width:12.458667pt;}
._27_c00283{width:13.397333pt;}
._1c_c00283{width:14.336000pt;}
._11_c00283{width:15.253333pt;}
._14_c00283{width:16.640000pt;}
._26_c00283{width:17.578667pt;}
._2b_c00283{width:19.200000pt;}
._4f_c00283{width:20.544000pt;}
._37_c00283{width:22.186667pt;}
._2a_c00283{width:23.381333pt;}
._17_c00283{width:24.832000pt;}
._a_c00283{width:26.538667pt;}
._12_c00283{width:28.672000pt;}
._5_c00283{width:29.952000pt;}
._2_c00283{width:30.890667pt;}
._28_c00283{width:31.914667pt;}
._40_c00283{width:32.853333pt;}
._4_c00283{width:34.048000pt;}
._23_c00283{width:36.266667pt;}
._45_c00283{width:38.058667pt;}
._22_c00283{width:40.106667pt;}
._9_c00283{width:41.472000pt;}
._8_c00283{width:42.410667pt;}
._7_c00283{width:43.861333pt;}
._49_c00283{width:45.994667pt;}
._d_c00283{width:47.274667pt;}
._41_c00283{width:48.298667pt;}
._29_c00283{width:49.237333pt;}
._19_c00283{width:51.456000pt;}
._52_c00283{width:53.077333pt;}
._30_c00283{width:54.101333pt;}
._1a_c00283{width:55.722667pt;}
._4a_c00283{width:58.368000pt;}
._2f_c00283{width:59.818667pt;}
._51_c00283{width:68.330667pt;}
._44_c00283{width:72.448000pt;}
._53_c00283{width:98.069333pt;}
._1b_c00283{width:103.402667pt;}
._31_c00283{width:133.034667pt;}
._34_c00283{width:135.637333pt;}
._18_c00283{width:143.701333pt;}
._4e_c00283{width:164.053333pt;}
._50_c00283{width:166.336000pt;}
._3c_c00283{width:173.141333pt;}
._1e_c00283{width:212.565333pt;}
._48_c00283{width:297.301333pt;}
._4d_c00283{width:312.746667pt;}
._3d_c00283{width:317.184000pt;}
._43_c00283{width:444.757333pt;}
._3f_c00283{width:540.842667pt;}
._39_c00283{width:620.970667pt;}
._3b_c00283{width:659.968000pt;}
._36_c00283{width:678.570667pt;}
._33_c00283{width:852.736000pt;}
.fs7_c00283{font-size:42.666667pt;}
.fs6_c00283{font-size:64.000000pt;}
.fs2_c00283{font-size:74.666667pt;}
.fs0_c00283{font-size:85.333333pt;}
.fs5_c00283{font-size:88.000000pt;}
.fs1_c00283{font-size:90.666667pt;}
.fs4_c00283{font-size:102.400000pt;}
.fs3_c00283{font-size:128.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y21_c00283{bottom:2.760000pt;}
.y20_c00283{bottom:6.425206pt;}
.y1f_c00283{bottom:78.026667pt;}
.y1e_c00283{bottom:106.826667pt;}
.y1d_c00283{bottom:137.360000pt;}
.y1c_c00283{bottom:168.960000pt;}
.y1b_c00283{bottom:198.693333pt;}
.y1a_c00283{bottom:228.693333pt;}
.y19_c00283{bottom:259.760000pt;}
.y18_c00283{bottom:289.893333pt;}
.y17_c00283{bottom:319.893333pt;}
.y16_c00283{bottom:350.693333pt;}
.y15_c00283{bottom:380.426667pt;}
.y14_c00283{bottom:410.960000pt;}
.y13_c00283{bottom:440.960000pt;}
.y12_c00283{bottom:470.693333pt;}
.y11_c00283{bottom:498.960000pt;}
.y10_c00283{bottom:529.493333pt;}
.yf_c00283{bottom:612.960000pt;}
.ye_c00283{bottom:684.293333pt;}
.yd_c00283{bottom:712.560000pt;}
.yc_c00283{bottom:743.493333pt;}
.yb_c00283{bottom:773.493333pt;}
.ya_c00283{bottom:802.826667pt;}
.y9_c00283{bottom:833.360000pt;}
.y8_c00283{bottom:862.560000pt;}
.y7_c00283{bottom:891.893333pt;}
.y6_c00283{bottom:921.360000pt;}
.y5_c00283{bottom:981.893333pt;}
.y4_c00283{bottom:1039.893333pt;}
.y3_c00283{bottom:1070.426667pt;}
.y2_c00283{bottom:1100.160000pt;}
.y1_c00283{bottom:1129.493333pt;}
.h7_c00283{height:11.733399pt;}
.h8_c00283{height:38.937500pt;}
.h5_c00283{height:81.031250pt;}
.h6_c00283{height:87.390625pt;}
.h2_c00283{height:108.041667pt;}
.h4_c00283{height:111.417969pt;}
.h3_c00283{height:162.062500pt;}
.h0_c00283{height:1229.066667pt;}
.h1_c00283{height:1229.333333pt;}
.w2_c00283{width:93.222667pt;}
.w0_c00283{width:767.266667pt;}
.w1_c00283{width:767.333333pt;}
.x0_c00283{left:0.000000pt;}
.xa_c00283{left:128.400000pt;}
.xf_c00283{left:132.266667pt;}
.xd_c00283{left:144.266667pt;}
.xb_c00283{left:146.666667pt;}
.xe_c00283{left:186.933333pt;}
.x10_c00283{left:225.333333pt;}
.x1_c00283{left:230.133333pt;}
.x2_c00283{left:231.600000pt;}
.xc_c00283{left:234.000000pt;}
.x11_c00283{left:238.400000pt;}
.x7_c00283{left:258.933333pt;}
.x3_c00283{left:260.400000pt;}
.x6_c00283{left:263.333333pt;}
.x9_c00283{left:276.533333pt;}
.x8_c00283{left:287.600000pt;}
.x4_c00283{left:318.933333pt;}
.x13_c00283{left:340.801554pt;}
.x5_c00283{left:362.666667pt;}
.x12_c00283{left:708.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_04948a902f884c05ba239cbf.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_4e52eb5e0635076a2ee16f08.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_4a961af872e1bfdbf10bc63b.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.000000px;}
.ls1_c00284{letter-spacing:3.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-50.124000px;}
.ws2_c00284{word-spacing:-40.699200px;}
.ws0_c00284{word-spacing:-20.244000px;}
.ws3_c00284{word-spacing:0.000000px;}
._33_c00284{margin-left:-26.820000px;}
._10_c00284{margin-left:-20.160000px;}
._d_c00284{margin-left:-17.136000px;}
._e_c00284{margin-left:-14.784000px;}
._f_c00284{margin-left:-11.592000px;}
._3f_c00284{margin-left:-10.500000px;}
._38_c00284{margin-left:-8.184000px;}
._27_c00284{margin-left:-7.032000px;}
._22_c00284{margin-left:-5.784000px;}
._23_c00284{margin-left:-4.056000px;}
._31_c00284{margin-left:-2.352000px;}
._29_c00284{margin-left:-1.092000px;}
._19_c00284{width:1.632000px;}
._c_c00284{width:2.688000px;}
._12_c00284{width:3.780000px;}
._1_c00284{width:4.956000px;}
._4_c00284{width:6.048000px;}
._3_c00284{width:7.224000px;}
._0_c00284{width:8.400000px;}
._13_c00284{width:9.576000px;}
._a_c00284{width:10.584000px;}
._1d_c00284{width:11.844000px;}
._16_c00284{width:13.020000px;}
._2b_c00284{width:14.052000px;}
._1c_c00284{width:15.120000px;}
._7_c00284{width:16.380000px;}
._3a_c00284{width:17.412000px;}
._6_c00284{width:18.480000px;}
._37_c00284{width:19.704000px;}
._3b_c00284{width:20.916000px;}
._11_c00284{width:22.092000px;}
._b_c00284{width:24.612000px;}
._2_c00284{width:25.620000px;}
._28_c00284{width:27.000000px;}
._2e_c00284{width:28.068000px;}
._35_c00284{width:29.136000px;}
._26_c00284{width:30.660000px;}
._2d_c00284{width:31.740000px;}
._14_c00284{width:32.844000px;}
._2c_c00284{width:33.852000px;}
._1a_c00284{width:35.088000px;}
._3c_c00284{width:36.348000px;}
._1f_c00284{width:37.440000px;}
._1e_c00284{width:38.772000px;}
._34_c00284{width:40.080000px;}
._17_c00284{width:42.168000px;}
._8_c00284{width:43.404000px;}
._15_c00284{width:44.520000px;}
._9_c00284{width:45.636000px;}
._24_c00284{width:48.132000px;}
._18_c00284{width:49.656000px;}
._5_c00284{width:50.904000px;}
._25_c00284{width:52.128000px;}
._3d_c00284{width:53.544000px;}
._32_c00284{width:54.852000px;}
._1b_c00284{width:56.472000px;}
._2a_c00284{width:60.816000px;}
._36_c00284{width:63.924000px;}
._21_c00284{width:69.468000px;}
._2f_c00284{width:71.280000px;}
._20_c00284{width:72.324000px;}
._3e_c00284{width:92.472000px;}
._39_c00284{width:109.824000px;}
._40_c00284{width:173.424000px;}
._30_c00284{width:194.184000px;}
._41_c00284{width:800.748000px;}
.fc2_c00284{color:transparent;}
.fc1_c00284{color:rgb(128,128,128);}
.fc0_c00284{color:rgb(0,0,0);}
.fs3_c00284{font-size:48.000000px;}
.fs2_c00284{font-size:67.200000px;}
.fs0_c00284{font-size:84.000000px;}
.fs1_c00284{font-size:96.000000px;}
.y0_c00284{bottom:0.000000px;}
.y25_c00284{bottom:3.105000px;}
.y24_c00284{bottom:7.228369px;}
.y23_c00284{bottom:97.770000px;}
.y22_c00284{bottom:131.970000px;}
.y21_c00284{bottom:165.420000px;}
.y20_c00284{bottom:200.820000px;}
.y1f_c00284{bottom:234.570000px;}
.y1e_c00284{bottom:268.620000px;}
.y1d_c00284{bottom:302.370000px;}
.y1c_c00284{bottom:336.120000px;}
.y1b_c00284{bottom:369.870000px;}
.y1a_c00284{bottom:403.620000px;}
.y19_c00284{bottom:437.670000px;}
.y18_c00284{bottom:471.420000px;}
.y17_c00284{bottom:504.870000px;}
.y16_c00284{bottom:538.920000px;}
.y15_c00284{bottom:572.970000px;}
.y14_c00284{bottom:606.420000px;}
.y13_c00284{bottom:640.170000px;}
.y12_c00284{bottom:673.020000px;}
.y11_c00284{bottom:706.620000px;}
.y10_c00284{bottom:740.370000px;}
.yf_c00284{bottom:773.820000px;}
.ye_c00284{bottom:807.270000px;}
.yd_c00284{bottom:840.720000px;}
.yc_c00284{bottom:874.020000px;}
.yb_c00284{bottom:906.120000px;}
.ya_c00284{bottom:940.920000px;}
.y9_c00284{bottom:974.370000px;}
.y8_c00284{bottom:1007.820000px;}
.y7_c00284{bottom:1041.570000px;}
.y6_c00284{bottom:1075.320000px;}
.y5_c00284{bottom:1108.320000px;}
.y4_c00284{bottom:1141.470000px;}
.y3_c00284{bottom:1175.070000px;}
.y2_c00284{bottom:1208.220000px;}
.y1_c00284{bottom:1241.370000px;}
.h5_c00284{height:13.200073px;}
.h6_c00284{height:43.804688px;}
.h3_c00284{height:98.314453px;}
.h4_c00284{height:106.353516px;}
.h2_c00284{height:121.546875px;}
.h0_c00284{height:1383.450000px;}
.h1_c00284{height:1383.750000px;}
.w2_c00284{width:104.875500px;}
.w0_c00284{width:878.025000px;}
.w1_c00284{width:878.250000px;}
.x0_c00284{left:0.000000px;}
.x5_c00284{left:58.500000px;}
.x1_c00284{left:63.000000px;}
.x4_c00284{left:65.100000px;}
.x2_c00284{left:66.600000px;}
.x3_c00284{left:67.800000px;}
.x7_c00284{left:69.300000px;}
.x6_c00284{left:113.700000px;}
.x8_c00284{left:322.050000px;}
.x9_c00284{left:390.826721px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ls1_c00284{letter-spacing:2.666667pt;}
.ws1_c00284{word-spacing:-44.554667pt;}
.ws2_c00284{word-spacing:-36.177067pt;}
.ws0_c00284{word-spacing:-17.994667pt;}
.ws3_c00284{word-spacing:0.000000pt;}
._33_c00284{margin-left:-23.840000pt;}
._10_c00284{margin-left:-17.920000pt;}
._d_c00284{margin-left:-15.232000pt;}
._e_c00284{margin-left:-13.141333pt;}
._f_c00284{margin-left:-10.304000pt;}
._3f_c00284{margin-left:-9.333333pt;}
._38_c00284{margin-left:-7.274667pt;}
._27_c00284{margin-left:-6.250667pt;}
._22_c00284{margin-left:-5.141333pt;}
._23_c00284{margin-left:-3.605333pt;}
._31_c00284{margin-left:-2.090667pt;}
._29_c00284{margin-left:-0.970667pt;}
._19_c00284{width:1.450667pt;}
._c_c00284{width:2.389333pt;}
._12_c00284{width:3.360000pt;}
._1_c00284{width:4.405333pt;}
._4_c00284{width:5.376000pt;}
._3_c00284{width:6.421333pt;}
._0_c00284{width:7.466667pt;}
._13_c00284{width:8.512000pt;}
._a_c00284{width:9.408000pt;}
._1d_c00284{width:10.528000pt;}
._16_c00284{width:11.573333pt;}
._2b_c00284{width:12.490667pt;}
._1c_c00284{width:13.440000pt;}
._7_c00284{width:14.560000pt;}
._3a_c00284{width:15.477333pt;}
._6_c00284{width:16.426667pt;}
._37_c00284{width:17.514667pt;}
._3b_c00284{width:18.592000pt;}
._11_c00284{width:19.637333pt;}
._b_c00284{width:21.877333pt;}
._2_c00284{width:22.773333pt;}
._28_c00284{width:24.000000pt;}
._2e_c00284{width:24.949333pt;}
._35_c00284{width:25.898667pt;}
._26_c00284{width:27.253333pt;}
._2d_c00284{width:28.213333pt;}
._14_c00284{width:29.194667pt;}
._2c_c00284{width:30.090667pt;}
._1a_c00284{width:31.189333pt;}
._3c_c00284{width:32.309333pt;}
._1f_c00284{width:33.280000pt;}
._1e_c00284{width:34.464000pt;}
._34_c00284{width:35.626667pt;}
._17_c00284{width:37.482667pt;}
._8_c00284{width:38.581333pt;}
._15_c00284{width:39.573333pt;}
._9_c00284{width:40.565333pt;}
._24_c00284{width:42.784000pt;}
._18_c00284{width:44.138667pt;}
._5_c00284{width:45.248000pt;}
._25_c00284{width:46.336000pt;}
._3d_c00284{width:47.594667pt;}
._32_c00284{width:48.757333pt;}
._1b_c00284{width:50.197333pt;}
._2a_c00284{width:54.058667pt;}
._36_c00284{width:56.821333pt;}
._21_c00284{width:61.749333pt;}
._2f_c00284{width:63.360000pt;}
._20_c00284{width:64.288000pt;}
._3e_c00284{width:82.197333pt;}
._39_c00284{width:97.621333pt;}
._40_c00284{width:154.154667pt;}
._30_c00284{width:172.608000pt;}
._41_c00284{width:711.776000pt;}
.fs3_c00284{font-size:42.666667pt;}
.fs2_c00284{font-size:59.733333pt;}
.fs0_c00284{font-size:74.666667pt;}
.fs1_c00284{font-size:85.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y25_c00284{bottom:2.760000pt;}
.y24_c00284{bottom:6.425217pt;}
.y23_c00284{bottom:86.906667pt;}
.y22_c00284{bottom:117.306667pt;}
.y21_c00284{bottom:147.040000pt;}
.y20_c00284{bottom:178.506667pt;}
.y1f_c00284{bottom:208.506667pt;}
.y1e_c00284{bottom:238.773333pt;}
.y1d_c00284{bottom:268.773333pt;}
.y1c_c00284{bottom:298.773333pt;}
.y1b_c00284{bottom:328.773333pt;}
.y1a_c00284{bottom:358.773333pt;}
.y19_c00284{bottom:389.040000pt;}
.y18_c00284{bottom:419.040000pt;}
.y17_c00284{bottom:448.773333pt;}
.y16_c00284{bottom:479.040000pt;}
.y15_c00284{bottom:509.306667pt;}
.y14_c00284{bottom:539.040000pt;}
.y13_c00284{bottom:569.040000pt;}
.y12_c00284{bottom:598.240000pt;}
.y11_c00284{bottom:628.106667pt;}
.y10_c00284{bottom:658.106667pt;}
.yf_c00284{bottom:687.840000pt;}
.ye_c00284{bottom:717.573333pt;}
.yd_c00284{bottom:747.306667pt;}
.yc_c00284{bottom:776.906667pt;}
.yb_c00284{bottom:805.440000pt;}
.ya_c00284{bottom:836.373333pt;}
.y9_c00284{bottom:866.106667pt;}
.y8_c00284{bottom:895.840000pt;}
.y7_c00284{bottom:925.840000pt;}
.y6_c00284{bottom:955.840000pt;}
.y5_c00284{bottom:985.173333pt;}
.y4_c00284{bottom:1014.640000pt;}
.y3_c00284{bottom:1044.506667pt;}
.y2_c00284{bottom:1073.973333pt;}
.y1_c00284{bottom:1103.440000pt;}
.h5_c00284{height:11.733399pt;}
.h6_c00284{height:38.937500pt;}
.h3_c00284{height:87.390625pt;}
.h4_c00284{height:94.536458pt;}
.h2_c00284{height:108.041667pt;}
.h0_c00284{height:1229.733333pt;}
.h1_c00284{height:1230.000000pt;}
.w2_c00284{width:93.222667pt;}
.w0_c00284{width:780.466667pt;}
.w1_c00284{width:780.666667pt;}
.x0_c00284{left:0.000000pt;}
.x5_c00284{left:52.000000pt;}
.x1_c00284{left:56.000000pt;}
.x4_c00284{left:57.866667pt;}
.x2_c00284{left:59.200000pt;}
.x3_c00284{left:60.266667pt;}
.x7_c00284{left:61.600000pt;}
.x6_c00284{left:101.066667pt;}
.x8_c00284{left:286.266667pt;}
.x9_c00284{left:347.401530pt;}
}





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

.ir_c00285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_cf0e0bf69723d5f916e56103.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_943c50739afd9d7c800687ce.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls1_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:9.600000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:-20.244000px;}
.ws1_c00285{word-spacing:0.000000px;}
._2c_c00285{margin-left:-86.400000px;}
._3a_c00285{margin-left:-82.176000px;}
._37_c00285{margin-left:-30.480000px;}
._33_c00285{margin-left:-27.351000px;}
._2b_c00285{margin-left:-11.664000px;}
._39_c00285{margin-left:-9.552000px;}
._c_c00285{margin-left:-4.704000px;}
._d_c00285{margin-left:-2.880000px;}
._24_c00285{margin-left:-1.344000px;}
._0_c00285{width:1.248000px;}
._3_c00285{width:2.304000px;}
._2_c00285{width:3.456000px;}
._1_c00285{width:4.608000px;}
._4_c00285{width:5.760000px;}
._6_c00285{width:7.392000px;}
._b_c00285{width:8.640000px;}
._f_c00285{width:9.696000px;}
._16_c00285{width:10.800000px;}
._14_c00285{width:11.952000px;}
._13_c00285{width:13.488000px;}
._3d_c00285{width:14.628000px;}
._2f_c00285{width:15.660000px;}
._10_c00285{width:17.184000px;}
._36_c00285{width:19.488000px;}
._17_c00285{width:21.360000px;}
._1c_c00285{width:22.848000px;}
._1d_c00285{width:24.612000px;}
._21_c00285{width:25.956000px;}
._19_c00285{width:27.048000px;}
._22_c00285{width:28.308000px;}
._20_c00285{width:29.484000px;}
._18_c00285{width:30.996000px;}
._1e_c00285{width:32.508000px;}
._a_c00285{width:34.656000px;}
._8_c00285{width:36.960000px;}
._9_c00285{width:38.688000px;}
._11_c00285{width:40.608000px;}
._2e_c00285{width:42.495000px;}
._41_c00285{width:44.508000px;}
._32_c00285{width:45.660000px;}
._35_c00285{width:47.616000px;}
._23_c00285{width:48.816000px;}
._7_c00285{width:51.648000px;}
._5_c00285{width:53.664000px;}
._29_c00285{width:55.680000px;}
._3e_c00285{width:57.288000px;}
._e_c00285{width:58.560000px;}
._34_c00285{width:59.808000px;}
._3f_c00285{width:60.864000px;}
._3b_c00285{width:62.856000px;}
._31_c00285{width:65.424000px;}
._3c_c00285{width:68.628000px;}
._27_c00285{width:71.232000px;}
._30_c00285{width:73.152000px;}
._15_c00285{width:76.608000px;}
._38_c00285{width:77.748000px;}
._28_c00285{width:78.816000px;}
._26_c00285{width:81.744000px;}
._40_c00285{width:85.107000px;}
._1f_c00285{width:103.356000px;}
._1a_c00285{width:112.644000px;}
._2a_c00285{width:113.952000px;}
._1b_c00285{width:116.976000px;}
._42_c00285{width:169.314000px;}
._25_c00285{width:181.152000px;}
._12_c00285{width:395.712000px;}
._2d_c00285{width:410.976000px;}
.fc2_c00285{color:transparent;}
.fc1_c00285{color:rgb(128,128,128);}
.fc0_c00285{color:rgb(0,0,0);}
.fs5_c00285{font-size:48.000000px;}
.fs2_c00285{font-size:84.000000px;}
.fs3_c00285{font-size:93.000000px;}
.fs0_c00285{font-size:96.000000px;}
.fs4_c00285{font-size:102.000000px;}
.fs1_c00285{font-size:144.000000px;}
.y0_c00285{bottom:0.000000px;}
.y22_c00285{bottom:3.105000px;}
.y21_c00285{bottom:7.228357px;}
.y20_c00285{bottom:84.030000px;}
.y1f_c00285{bottom:116.730000px;}
.y1e_c00285{bottom:151.230000px;}
.y1d_c00285{bottom:184.680000px;}
.y1c_c00285{bottom:218.430000px;}
.y1b_c00285{bottom:253.230000px;}
.y1a_c00285{bottom:287.580000px;}
.y19_c00285{bottom:321.330000px;}
.y18_c00285{bottom:355.680000px;}
.y17_c00285{bottom:389.580000px;}
.y16_c00285{bottom:423.630000px;}
.y15_c00285{bottom:457.680000px;}
.y14_c00285{bottom:492.030000px;}
.y13_c00285{bottom:525.780000px;}
.y12_c00285{bottom:559.680000px;}
.y11_c00285{bottom:593.430000px;}
.y10_c00285{bottom:627.030000px;}
.yf_c00285{bottom:661.230000px;}
.ye_c00285{bottom:694.680000px;}
.yd_c00285{bottom:728.730000px;}
.yc_c00285{bottom:762.480000px;}
.yb_c00285{bottom:796.230000px;}
.ya_c00285{bottom:829.530000px;}
.y4_c00285{bottom:852.180000px;}
.y9_c00285{bottom:863.730000px;}
.y8_c00285{bottom:897.030000px;}
.y7_c00285{bottom:965.880000px;}
.y6_c00285{bottom:1000.080000px;}
.y5_c00285{bottom:1033.080000px;}
.y3_c00285{bottom:1123.830000px;}
.y2_c00285{bottom:1202.580000px;}
.y1_c00285{bottom:1235.580000px;}
.h7_c00285{height:13.200074px;}
.h8_c00285{height:43.804688px;}
.h5_c00285{height:98.314453px;}
.h4_c00285{height:106.353516px;}
.h6_c00285{height:117.748535px;}
.h2_c00285{height:121.546875px;}
.h3_c00285{height:182.320312px;}
.h0_c00285{height:1382.700000px;}
.h1_c00285{height:1383.000000px;}
.w2_c00285{width:104.875500px;}
.w0_c00285{width:863.175000px;}
.w1_c00285{width:863.250000px;}
.x0_c00285{left:0.000000px;}
.x3_c00285{left:141.750000px;}
.xd_c00285{left:238.500000px;}
.xf_c00285{left:247.050000px;}
.x10_c00285{left:248.100000px;}
.xe_c00285{left:251.400000px;}
.xc_c00285{left:254.100000px;}
.xb_c00285{left:255.150000px;}
.xa_c00285{left:257.400000px;}
.x9_c00285{left:258.900000px;}
.x1_c00285{left:261.600000px;}
.x6_c00285{left:311.850000px;}
.x12_c00285{left:383.401749px;}
.x2_c00285{left:388.050000px;}
.x8_c00285{left:393.450000px;}
.x7_c00285{left:419.850000px;}
.x4_c00285{left:460.950000px;}
.x5_c00285{left:527.850000px;}
.x11_c00285{left:762.300000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls1_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:8.533333pt;}
.ws0_c00285{word-spacing:-17.994667pt;}
.ws1_c00285{word-spacing:0.000000pt;}
._2c_c00285{margin-left:-76.800000pt;}
._3a_c00285{margin-left:-73.045333pt;}
._37_c00285{margin-left:-27.093333pt;}
._33_c00285{margin-left:-24.312000pt;}
._2b_c00285{margin-left:-10.368000pt;}
._39_c00285{margin-left:-8.490667pt;}
._c_c00285{margin-left:-4.181333pt;}
._d_c00285{margin-left:-2.560000pt;}
._24_c00285{margin-left:-1.194667pt;}
._0_c00285{width:1.109333pt;}
._3_c00285{width:2.048000pt;}
._2_c00285{width:3.072000pt;}
._1_c00285{width:4.096000pt;}
._4_c00285{width:5.120000pt;}
._6_c00285{width:6.570667pt;}
._b_c00285{width:7.680000pt;}
._f_c00285{width:8.618667pt;}
._16_c00285{width:9.600000pt;}
._14_c00285{width:10.624000pt;}
._13_c00285{width:11.989333pt;}
._3d_c00285{width:13.002667pt;}
._2f_c00285{width:13.920000pt;}
._10_c00285{width:15.274667pt;}
._36_c00285{width:17.322667pt;}
._17_c00285{width:18.986667pt;}
._1c_c00285{width:20.309333pt;}
._1d_c00285{width:21.877333pt;}
._21_c00285{width:23.072000pt;}
._19_c00285{width:24.042667pt;}
._22_c00285{width:25.162667pt;}
._20_c00285{width:26.208000pt;}
._18_c00285{width:27.552000pt;}
._1e_c00285{width:28.896000pt;}
._a_c00285{width:30.805333pt;}
._8_c00285{width:32.853333pt;}
._9_c00285{width:34.389333pt;}
._11_c00285{width:36.096000pt;}
._2e_c00285{width:37.773333pt;}
._41_c00285{width:39.562667pt;}
._32_c00285{width:40.586667pt;}
._35_c00285{width:42.325333pt;}
._23_c00285{width:43.392000pt;}
._7_c00285{width:45.909333pt;}
._5_c00285{width:47.701333pt;}
._29_c00285{width:49.493333pt;}
._3e_c00285{width:50.922667pt;}
._e_c00285{width:52.053333pt;}
._34_c00285{width:53.162667pt;}
._3f_c00285{width:54.101333pt;}
._3b_c00285{width:55.872000pt;}
._31_c00285{width:58.154667pt;}
._3c_c00285{width:61.002667pt;}
._27_c00285{width:63.317333pt;}
._30_c00285{width:65.024000pt;}
._15_c00285{width:68.096000pt;}
._38_c00285{width:69.109333pt;}
._28_c00285{width:70.058667pt;}
._26_c00285{width:72.661333pt;}
._40_c00285{width:75.650667pt;}
._1f_c00285{width:91.872000pt;}
._1a_c00285{width:100.128000pt;}
._2a_c00285{width:101.290667pt;}
._1b_c00285{width:103.978667pt;}
._42_c00285{width:150.501333pt;}
._25_c00285{width:161.024000pt;}
._12_c00285{width:351.744000pt;}
._2d_c00285{width:365.312000pt;}
.fs5_c00285{font-size:42.666667pt;}
.fs2_c00285{font-size:74.666667pt;}
.fs3_c00285{font-size:82.666667pt;}
.fs0_c00285{font-size:85.333333pt;}
.fs4_c00285{font-size:90.666667pt;}
.fs1_c00285{font-size:128.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y22_c00285{bottom:2.760000pt;}
.y21_c00285{bottom:6.425206pt;}
.y20_c00285{bottom:74.693333pt;}
.y1f_c00285{bottom:103.760000pt;}
.y1e_c00285{bottom:134.426667pt;}
.y1d_c00285{bottom:164.160000pt;}
.y1c_c00285{bottom:194.160000pt;}
.y1b_c00285{bottom:225.093333pt;}
.y1a_c00285{bottom:255.626667pt;}
.y19_c00285{bottom:285.626667pt;}
.y18_c00285{bottom:316.160000pt;}
.y17_c00285{bottom:346.293333pt;}
.y16_c00285{bottom:376.560000pt;}
.y15_c00285{bottom:406.826667pt;}
.y14_c00285{bottom:437.360000pt;}
.y13_c00285{bottom:467.360000pt;}
.y12_c00285{bottom:497.493333pt;}
.y11_c00285{bottom:527.493333pt;}
.y10_c00285{bottom:557.360000pt;}
.yf_c00285{bottom:587.760000pt;}
.ye_c00285{bottom:617.493333pt;}
.yd_c00285{bottom:647.760000pt;}
.yc_c00285{bottom:677.760000pt;}
.yb_c00285{bottom:707.760000pt;}
.ya_c00285{bottom:737.360000pt;}
.y4_c00285{bottom:757.493333pt;}
.y9_c00285{bottom:767.760000pt;}
.y8_c00285{bottom:797.360000pt;}
.y7_c00285{bottom:858.560000pt;}
.y6_c00285{bottom:888.960000pt;}
.y5_c00285{bottom:918.293333pt;}
.y3_c00285{bottom:998.960000pt;}
.y2_c00285{bottom:1068.960000pt;}
.y1_c00285{bottom:1098.293333pt;}
.h7_c00285{height:11.733399pt;}
.h8_c00285{height:38.937500pt;}
.h5_c00285{height:87.390625pt;}
.h4_c00285{height:94.536458pt;}
.h6_c00285{height:104.665365pt;}
.h2_c00285{height:108.041667pt;}
.h3_c00285{height:162.062500pt;}
.h0_c00285{height:1229.066667pt;}
.h1_c00285{height:1229.333333pt;}
.w2_c00285{width:93.222667pt;}
.w0_c00285{width:767.266667pt;}
.w1_c00285{width:767.333333pt;}
.x0_c00285{left:0.000000pt;}
.x3_c00285{left:126.000000pt;}
.xd_c00285{left:212.000000pt;}
.xf_c00285{left:219.600000pt;}
.x10_c00285{left:220.533333pt;}
.xe_c00285{left:223.466667pt;}
.xc_c00285{left:225.866667pt;}
.xb_c00285{left:226.800000pt;}
.xa_c00285{left:228.800000pt;}
.x9_c00285{left:230.133333pt;}
.x1_c00285{left:232.533333pt;}
.x6_c00285{left:277.200000pt;}
.x12_c00285{left:340.801554pt;}
.x2_c00285{left:344.933333pt;}
.x8_c00285{left:349.733333pt;}
.x7_c00285{left:373.200000pt;}
.x4_c00285{left:409.733333pt;}
.x5_c00285{left:469.200000pt;}
.x11_c00285{left:677.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_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_c8ff7b08ce52203340b10843.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_38f2fe32446d5e434d99a7f4.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_a7a3eead648d7ddcd92a8bc3.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_438c271f62c64ddb5fb52854.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00286{vertical-align:-137.400000px;}
.v1_c00286{vertical-align:-101.400000px;}
.v0_c00286{vertical-align:0.000000px;}
.ls2_c00286{letter-spacing:0.000000px;}
.ls3_c00286{letter-spacing:3.000000px;}
.ls1_c00286{letter-spacing:33.494400px;}
.ls0_c00286{letter-spacing:281.652000px;}
.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;}
}
.ws1_c00286{word-spacing:-23.136000px;}
.ws0_c00286{word-spacing:-18.984000px;}
.ws2_c00286{word-spacing:0.000000px;}
._44_c00286{margin-left:-33.600000px;}
._36_c00286{margin-left:-29.664000px;}
._4b_c00286{margin-left:-28.128000px;}
._3a_c00286{margin-left:-26.496000px;}
._28_c00286{margin-left:-21.504000px;}
._4c_c00286{margin-left:-19.062000px;}
._4a_c00286{margin-left:-17.280000px;}
._3c_c00286{margin-left:-15.456000px;}
._2c_c00286{margin-left:-14.400000px;}
._26_c00286{margin-left:-13.056000px;}
._2d_c00286{margin-left:-11.712000px;}
._33_c00286{margin-left:-9.984000px;}
._45_c00286{margin-left:-8.640000px;}
._4d_c00286{margin-left:-7.392000px;}
._41_c00286{margin-left:-6.144000px;}
._11_c00286{margin-left:-3.936000px;}
._16_c00286{margin-left:-2.784000px;}
._d_c00286{margin-left:-1.728000px;}
._0_c00286{width:1.632000px;}
._1_c00286{width:3.168000px;}
._4_c00286{width:4.320000px;}
._6_c00286{width:5.664000px;}
._8_c00286{width:7.008000px;}
._1f_c00286{width:8.448000px;}
._10_c00286{width:9.792000px;}
._9_c00286{width:11.136000px;}
._18_c00286{width:12.960000px;}
._1e_c00286{width:14.880000px;}
._22_c00286{width:16.704000px;}
._37_c00286{width:17.856000px;}
._24_c00286{width:19.584000px;}
._20_c00286{width:21.696000px;}
._30_c00286{width:24.288000px;}
._f_c00286{width:26.208000px;}
._a_c00286{width:27.648000px;}
._38_c00286{width:28.704000px;}
._2f_c00286{width:29.760000px;}
._e_c00286{width:31.488000px;}
._b_c00286{width:32.544000px;}
._2_c00286{width:33.792000px;}
._25_c00286{width:34.848000px;}
._3_c00286{width:36.480000px;}
._7_c00286{width:38.304000px;}
._50_c00286{width:39.552000px;}
._23_c00286{width:40.800000px;}
._5_c00286{width:43.200000px;}
._32_c00286{width:45.408000px;}
._17_c00286{width:47.136000px;}
._15_c00286{width:49.152000px;}
._39_c00286{width:50.304000px;}
._21_c00286{width:52.128000px;}
._2e_c00286{width:53.952000px;}
._1c_c00286{width:56.256000px;}
._3f_c00286{width:57.984000px;}
._1d_c00286{width:59.232000px;}
._3d_c00286{width:60.768000px;}
._1a_c00286{width:62.016000px;}
._35_c00286{width:64.032000px;}
._12_c00286{width:68.544000px;}
._3e_c00286{width:69.600000px;}
._31_c00286{width:71.520000px;}
._1b_c00286{width:73.056000px;}
._c_c00286{width:75.552000px;}
._2b_c00286{width:76.800000px;}
._14_c00286{width:79.392000px;}
._34_c00286{width:81.600000px;}
._3b_c00286{width:85.632000px;}
._19_c00286{width:92.448000px;}
._40_c00286{width:94.560000px;}
._49_c00286{width:110.400000px;}
._27_c00286{width:142.752000px;}
._47_c00286{width:149.568000px;}
._2a_c00286{width:153.312000px;}
._46_c00286{width:160.128000px;}
._4f_c00286{width:178.464000px;}
._29_c00286{width:182.976000px;}
._4e_c00286{width:196.896000px;}
._51_c00286{width:202.272000px;}
._48_c00286{width:390.432000px;}
._13_c00286{width:394.752000px;}
._43_c00286{width:411.744000px;}
._42_c00286{width:702.720000px;}
.fc2_c00286{color:transparent;}
.fc1_c00286{color:rgb(128,128,128);}
.fc0_c00286{color:rgb(0,0,0);}
.fs1_c00286{font-size:36.000000px;}
.fs5_c00286{font-size:48.000000px;}
.fs4_c00286{font-size:76.800000px;}
.fs3_c00286{font-size:84.000000px;}
.fs2_c00286{font-size:87.000000px;}
.fs0_c00286{font-size:96.000000px;}
.y0_c00286{bottom:0.000000px;}
.y2a_c00286{bottom:3.105000px;}
.y29_c00286{bottom:7.228369px;}
.y28_c00286{bottom:85.020000px;}
.y27_c00286{bottom:119.520000px;}
.y26_c00286{bottom:153.570000px;}
.y25_c00286{bottom:187.620000px;}
.y24_c00286{bottom:221.370000px;}
.y23_c00286{bottom:255.420000px;}
.y1d_c00286{bottom:288.870000px;}
.y22_c00286{bottom:302.370000px;}
.y1c_c00286{bottom:323.670000px;}
.y1b_c00286{bottom:358.470000px;}
.y21_c00286{bottom:379.020000px;}
.y1a_c00286{bottom:390.120000px;}
.y19_c00286{bottom:425.220000px;}
.y18_c00286{bottom:459.270000px;}
.y17_c00286{bottom:492.720000px;}
.y16_c00286{bottom:526.170000px;}
.y15_c00286{bottom:559.920000px;}
.y14_c00286{bottom:593.370000px;}
.y13_c00286{bottom:627.120000px;}
.y12_c00286{bottom:660.120000px;}
.y20_c00286{bottom:673.020000px;}
.y11_c00286{bottom:693.570000px;}
.y1f_c00286{bottom:694.920000px;}
.y1e_c00286{bottom:712.170000px;}
.y10_c00286{bottom:727.320000px;}
.yf_c00286{bottom:760.770000px;}
.ye_c00286{bottom:794.070000px;}
.yd_c00286{bottom:827.370000px;}
.yc_c00286{bottom:860.520000px;}
.yb_c00286{bottom:893.670000px;}
.ya_c00286{bottom:927.120000px;}
.y9_c00286{bottom:960.870000px;}
.y8_c00286{bottom:994.620000px;}
.y7_c00286{bottom:1029.420000px;}
.y6_c00286{bottom:1061.070000px;}
.y5_c00286{bottom:1095.120000px;}
.y4_c00286{bottom:1128.570000px;}
.y3_c00286{bottom:1161.570000px;}
.y2_c00286{bottom:1194.720000px;}
.y1_c00286{bottom:1228.170000px;}
.h6_c00286{height:13.200073px;}
.h3_c00286{height:35.314453px;}
.h7_c00286{height:43.804688px;}
.h5_c00286{height:98.314453px;}
.h4_c00286{height:110.151855px;}
.h2_c00286{height:121.546875px;}
.h0_c00286{height:1356.450000px;}
.h1_c00286{height:1356.750000px;}
.w2_c00286{width:104.875500px;}
.w0_c00286{width:860.775000px;}
.w1_c00286{width:861.000000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:60.300000px;}
.x4_c00286{left:61.350000px;}
.x3_c00286{left:63.450000px;}
.x5_c00286{left:65.100000px;}
.xd_c00286{left:70.500000px;}
.xe_c00286{left:73.800000px;}
.x2_c00286{left:109.350000px;}
.x6_c00286{left:114.300000px;}
.xc_c00286{left:115.800000px;}
.xf_c00286{left:382.201721px;}
.xb_c00286{left:462.450000px;}
.x7_c00286{left:655.350000px;}
.xa_c00286{left:665.550000px;}
.x9_c00286{left:666.900000px;}
.x8_c00286{left:682.500000px;}
@media print{
.v2_c00286{vertical-align:-122.133333pt;}
.v1_c00286{vertical-align:-90.133333pt;}
.v0_c00286{vertical-align:0.000000pt;}
.ls2_c00286{letter-spacing:0.000000pt;}
.ls3_c00286{letter-spacing:2.666667pt;}
.ls1_c00286{letter-spacing:29.772800pt;}
.ls0_c00286{letter-spacing:250.357333pt;}
.ws1_c00286{word-spacing:-20.565333pt;}
.ws0_c00286{word-spacing:-16.874667pt;}
.ws2_c00286{word-spacing:0.000000pt;}
._44_c00286{margin-left:-29.866667pt;}
._36_c00286{margin-left:-26.368000pt;}
._4b_c00286{margin-left:-25.002667pt;}
._3a_c00286{margin-left:-23.552000pt;}
._28_c00286{margin-left:-19.114667pt;}
._4c_c00286{margin-left:-16.944000pt;}
._4a_c00286{margin-left:-15.360000pt;}
._3c_c00286{margin-left:-13.738667pt;}
._2c_c00286{margin-left:-12.800000pt;}
._26_c00286{margin-left:-11.605333pt;}
._2d_c00286{margin-left:-10.410667pt;}
._33_c00286{margin-left:-8.874667pt;}
._45_c00286{margin-left:-7.680000pt;}
._4d_c00286{margin-left:-6.570667pt;}
._41_c00286{margin-left:-5.461333pt;}
._11_c00286{margin-left:-3.498667pt;}
._16_c00286{margin-left:-2.474667pt;}
._d_c00286{margin-left:-1.536000pt;}
._0_c00286{width:1.450667pt;}
._1_c00286{width:2.816000pt;}
._4_c00286{width:3.840000pt;}
._6_c00286{width:5.034667pt;}
._8_c00286{width:6.229333pt;}
._1f_c00286{width:7.509333pt;}
._10_c00286{width:8.704000pt;}
._9_c00286{width:9.898667pt;}
._18_c00286{width:11.520000pt;}
._1e_c00286{width:13.226667pt;}
._22_c00286{width:14.848000pt;}
._37_c00286{width:15.872000pt;}
._24_c00286{width:17.408000pt;}
._20_c00286{width:19.285333pt;}
._30_c00286{width:21.589333pt;}
._f_c00286{width:23.296000pt;}
._a_c00286{width:24.576000pt;}
._38_c00286{width:25.514667pt;}
._2f_c00286{width:26.453333pt;}
._e_c00286{width:27.989333pt;}
._b_c00286{width:28.928000pt;}
._2_c00286{width:30.037333pt;}
._25_c00286{width:30.976000pt;}
._3_c00286{width:32.426667pt;}
._7_c00286{width:34.048000pt;}
._50_c00286{width:35.157333pt;}
._23_c00286{width:36.266667pt;}
._5_c00286{width:38.400000pt;}
._32_c00286{width:40.362667pt;}
._17_c00286{width:41.898667pt;}
._15_c00286{width:43.690667pt;}
._39_c00286{width:44.714667pt;}
._21_c00286{width:46.336000pt;}
._2e_c00286{width:47.957333pt;}
._1c_c00286{width:50.005333pt;}
._3f_c00286{width:51.541333pt;}
._1d_c00286{width:52.650667pt;}
._3d_c00286{width:54.016000pt;}
._1a_c00286{width:55.125333pt;}
._35_c00286{width:56.917333pt;}
._12_c00286{width:60.928000pt;}
._3e_c00286{width:61.866667pt;}
._31_c00286{width:63.573333pt;}
._1b_c00286{width:64.938667pt;}
._c_c00286{width:67.157333pt;}
._2b_c00286{width:68.266667pt;}
._14_c00286{width:70.570667pt;}
._34_c00286{width:72.533333pt;}
._3b_c00286{width:76.117333pt;}
._19_c00286{width:82.176000pt;}
._40_c00286{width:84.053333pt;}
._49_c00286{width:98.133333pt;}
._27_c00286{width:126.890667pt;}
._47_c00286{width:132.949333pt;}
._2a_c00286{width:136.277333pt;}
._46_c00286{width:142.336000pt;}
._4f_c00286{width:158.634667pt;}
._29_c00286{width:162.645333pt;}
._4e_c00286{width:175.018667pt;}
._51_c00286{width:179.797333pt;}
._48_c00286{width:347.050667pt;}
._13_c00286{width:350.890667pt;}
._43_c00286{width:365.994667pt;}
._42_c00286{width:624.640000pt;}
.fs1_c00286{font-size:32.000000pt;}
.fs5_c00286{font-size:42.666667pt;}
.fs4_c00286{font-size:68.266667pt;}
.fs3_c00286{font-size:74.666667pt;}
.fs2_c00286{font-size:77.333333pt;}
.fs0_c00286{font-size:85.333333pt;}
.y0_c00286{bottom:0.000000pt;}
.y2a_c00286{bottom:2.760000pt;}
.y29_c00286{bottom:6.425217pt;}
.y28_c00286{bottom:75.573333pt;}
.y27_c00286{bottom:106.240000pt;}
.y26_c00286{bottom:136.506667pt;}
.y25_c00286{bottom:166.773333pt;}
.y24_c00286{bottom:196.773333pt;}
.y23_c00286{bottom:227.040000pt;}
.y1d_c00286{bottom:256.773333pt;}
.y22_c00286{bottom:268.773333pt;}
.y1c_c00286{bottom:287.706667pt;}
.y1b_c00286{bottom:318.640000pt;}
.y21_c00286{bottom:336.906667pt;}
.y1a_c00286{bottom:346.773333pt;}
.y19_c00286{bottom:377.973333pt;}
.y18_c00286{bottom:408.240000pt;}
.y17_c00286{bottom:437.973333pt;}
.y16_c00286{bottom:467.706667pt;}
.y15_c00286{bottom:497.706667pt;}
.y14_c00286{bottom:527.440000pt;}
.y13_c00286{bottom:557.440000pt;}
.y12_c00286{bottom:586.773333pt;}
.y20_c00286{bottom:598.240000pt;}
.y11_c00286{bottom:616.506667pt;}
.y1f_c00286{bottom:617.706667pt;}
.y1e_c00286{bottom:633.040000pt;}
.y10_c00286{bottom:646.506667pt;}
.yf_c00286{bottom:676.240000pt;}
.ye_c00286{bottom:705.840000pt;}
.yd_c00286{bottom:735.440000pt;}
.yc_c00286{bottom:764.906667pt;}
.yb_c00286{bottom:794.373333pt;}
.ya_c00286{bottom:824.106667pt;}
.y9_c00286{bottom:854.106667pt;}
.y8_c00286{bottom:884.106667pt;}
.y7_c00286{bottom:915.040000pt;}
.y6_c00286{bottom:943.173333pt;}
.y5_c00286{bottom:973.440000pt;}
.y4_c00286{bottom:1003.173333pt;}
.y3_c00286{bottom:1032.506667pt;}
.y2_c00286{bottom:1061.973333pt;}
.y1_c00286{bottom:1091.706667pt;}
.h6_c00286{height:11.733399pt;}
.h3_c00286{height:31.390625pt;}
.h7_c00286{height:38.937500pt;}
.h5_c00286{height:87.390625pt;}
.h4_c00286{height:97.912760pt;}
.h2_c00286{height:108.041667pt;}
.h0_c00286{height:1205.733333pt;}
.h1_c00286{height:1206.000000pt;}
.w2_c00286{width:93.222667pt;}
.w0_c00286{width:765.133333pt;}
.w1_c00286{width:765.333333pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:53.600000pt;}
.x4_c00286{left:54.533333pt;}
.x3_c00286{left:56.400000pt;}
.x5_c00286{left:57.866667pt;}
.xd_c00286{left:62.666667pt;}
.xe_c00286{left:65.600000pt;}
.x2_c00286{left:97.200000pt;}
.x6_c00286{left:101.600000pt;}
.xc_c00286{left:102.933333pt;}
.xf_c00286{left:339.734863pt;}
.xb_c00286{left:411.066667pt;}
.x7_c00286{left:582.533333pt;}
.xa_c00286{left:591.600000pt;}
.x9_c00286{left:592.800000pt;}
.x8_c00286{left:606.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7e0a7ec8895c09c09499c6a.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_23ae8d17d951ba086d029bbd.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.ls1_c00287{letter-spacing:12.000000px;}
.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:-35.976000px;}
.ws0_c00287{word-spacing:-23.136000px;}
.ws2_c00287{word-spacing:0.000000px;}
._25_c00287{margin-left:-81.888000px;}
._0_c00287{margin-left:-36.096000px;}
._23_c00287{margin-left:-22.176000px;}
._12_c00287{margin-left:-9.216000px;}
._31_c00287{margin-left:-7.776000px;}
._a_c00287{margin-left:-5.952000px;}
._1b_c00287{margin-left:-3.456000px;}
._7_c00287{margin-left:-2.016000px;}
._1_c00287{width:1.728000px;}
._6_c00287{width:3.648000px;}
._4_c00287{width:4.992000px;}
._5_c00287{width:6.144000px;}
._c_c00287{width:7.488000px;}
._9_c00287{width:8.928000px;}
._17_c00287{width:10.080000px;}
._2_c00287{width:11.232000px;}
._d_c00287{width:13.248000px;}
._10_c00287{width:15.072000px;}
._b_c00287{width:16.800000px;}
._1e_c00287{width:18.528000px;}
._e_c00287{width:20.448000px;}
._1a_c00287{width:22.080000px;}
._21_c00287{width:24.768000px;}
._8_c00287{width:25.920000px;}
._18_c00287{width:27.072000px;}
._14_c00287{width:28.512000px;}
._15_c00287{width:30.144000px;}
._2f_c00287{width:31.296000px;}
._3_c00287{width:32.448000px;}
._2e_c00287{width:33.504000px;}
._f_c00287{width:34.848000px;}
._19_c00287{width:36.192000px;}
._30_c00287{width:37.536000px;}
._1d_c00287{width:38.688000px;}
._1f_c00287{width:40.800000px;}
._2b_c00287{width:42.144000px;}
._22_c00287{width:43.392000px;}
._1c_c00287{width:44.832000px;}
._13_c00287{width:47.040000px;}
._29_c00287{width:48.864000px;}
._2c_c00287{width:51.648000px;}
._2d_c00287{width:52.896000px;}
._2a_c00287{width:53.952000px;}
._16_c00287{width:56.448000px;}
._32_c00287{width:58.464000px;}
._26_c00287{width:62.400000px;}
._20_c00287{width:64.992000px;}
._24_c00287{width:66.240000px;}
._28_c00287{width:72.288000px;}
._27_c00287{width:177.600000px;}
._34_c00287{width:182.016000px;}
._35_c00287{width:218.016000px;}
._33_c00287{width:265.152000px;}
._11_c00287{width:394.368000px;}
.fc2_c00287{color:transparent;}
.fc1_c00287{color:rgb(128,128,128);}
.fc0_c00287{color:rgb(0,0,0);}
.fs3_c00287{font-size:48.000000px;}
.fs2_c00287{font-size:72.000000px;}
.fs1_c00287{font-size:87.000000px;}
.fs0_c00287{font-size:96.000000px;}
.y0_c00287{bottom:0.000000px;}
.y28_c00287{bottom:3.105000px;}
.y27_c00287{bottom:7.228357px;}
.y25_c00287{bottom:68.880000px;}
.y24_c00287{bottom:100.980000px;}
.y23_c00287{bottom:135.630000px;}
.y22_c00287{bottom:168.480000px;}
.y21_c00287{bottom:203.130000px;}
.y20_c00287{bottom:237.630000px;}
.y1f_c00287{bottom:271.980000px;}
.y1e_c00287{bottom:306.780000px;}
.y1d_c00287{bottom:340.230000px;}
.y1c_c00287{bottom:374.730000px;}
.y26_c00287{bottom:393.480000px;}
.y1b_c00287{bottom:409.380000px;}
.y1a_c00287{bottom:442.830000px;}
.y19_c00287{bottom:477.630000px;}
.y18_c00287{bottom:511.980000px;}
.y17_c00287{bottom:545.730000px;}
.y16_c00287{bottom:579.780000px;}
.y15_c00287{bottom:613.680000px;}
.y14_c00287{bottom:647.430000px;}
.y13_c00287{bottom:681.480000px;}
.y12_c00287{bottom:715.230000px;}
.y11_c00287{bottom:748.980000px;}
.y10_c00287{bottom:783.330000px;}
.yf_c00287{bottom:817.380000px;}
.ye_c00287{bottom:851.130000px;}
.yd_c00287{bottom:885.330000px;}
.yc_c00287{bottom:918.630000px;}
.yb_c00287{bottom:952.080000px;}
.ya_c00287{bottom:985.230000px;}
.y9_c00287{bottom:1018.680000px;}
.y8_c00287{bottom:1052.730000px;}
.y1_c00287{bottom:1062.480000px;}
.y7_c00287{bottom:1086.030000px;}
.y6_c00287{bottom:1119.780000px;}
.y5_c00287{bottom:1153.530000px;}
.y4_c00287{bottom:1186.380000px;}
.y3_c00287{bottom:1220.130000px;}
.y2_c00287{bottom:1253.580000px;}
.h4_c00287{height:13.200074px;}
.h5_c00287{height:43.804688px;}
.h3_c00287{height:75.456000px;}
.h2_c00287{height:121.546875px;}
.h0_c00287{height:1382.700000px;}
.h1_c00287{height:1383.000000px;}
.w2_c00287{width:104.875500px;}
.w0_c00287{width:863.175000px;}
.w1_c00287{width:863.250000px;}
.x0_c00287{left:0.000000px;}
.x12_c00287{left:135.300000px;}
.xf_c00287{left:139.050000px;}
.xe_c00287{left:146.100000px;}
.x1_c00287{left:164.400000px;}
.x10_c00287{left:242.100000px;}
.xd_c00287{left:244.800000px;}
.xc_c00287{left:246.000000px;}
.x9_c00287{left:247.050000px;}
.xb_c00287{left:248.100000px;}
.xa_c00287{left:249.750000px;}
.x8_c00287{left:250.800000px;}
.x7_c00287{left:251.850000px;}
.x6_c00287{left:253.500000px;}
.x5_c00287{left:254.550000px;}
.x4_c00287{left:255.600000px;}
.x2_c00287{left:257.400000px;}
.x3_c00287{left:305.400000px;}
.x13_c00287{left:383.401749px;}
.x11_c00287{left:781.050000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ls1_c00287{letter-spacing:10.666667pt;}
.ws1_c00287{word-spacing:-31.978667pt;}
.ws0_c00287{word-spacing:-20.565333pt;}
.ws2_c00287{word-spacing:0.000000pt;}
._25_c00287{margin-left:-72.789333pt;}
._0_c00287{margin-left:-32.085333pt;}
._23_c00287{margin-left:-19.712000pt;}
._12_c00287{margin-left:-8.192000pt;}
._31_c00287{margin-left:-6.912000pt;}
._a_c00287{margin-left:-5.290667pt;}
._1b_c00287{margin-left:-3.072000pt;}
._7_c00287{margin-left:-1.792000pt;}
._1_c00287{width:1.536000pt;}
._6_c00287{width:3.242667pt;}
._4_c00287{width:4.437333pt;}
._5_c00287{width:5.461333pt;}
._c_c00287{width:6.656000pt;}
._9_c00287{width:7.936000pt;}
._17_c00287{width:8.960000pt;}
._2_c00287{width:9.984000pt;}
._d_c00287{width:11.776000pt;}
._10_c00287{width:13.397333pt;}
._b_c00287{width:14.933333pt;}
._1e_c00287{width:16.469333pt;}
._e_c00287{width:18.176000pt;}
._1a_c00287{width:19.626667pt;}
._21_c00287{width:22.016000pt;}
._8_c00287{width:23.040000pt;}
._18_c00287{width:24.064000pt;}
._14_c00287{width:25.344000pt;}
._15_c00287{width:26.794667pt;}
._2f_c00287{width:27.818667pt;}
._3_c00287{width:28.842667pt;}
._2e_c00287{width:29.781333pt;}
._f_c00287{width:30.976000pt;}
._19_c00287{width:32.170667pt;}
._30_c00287{width:33.365333pt;}
._1d_c00287{width:34.389333pt;}
._1f_c00287{width:36.266667pt;}
._2b_c00287{width:37.461333pt;}
._22_c00287{width:38.570667pt;}
._1c_c00287{width:39.850667pt;}
._13_c00287{width:41.813333pt;}
._29_c00287{width:43.434667pt;}
._2c_c00287{width:45.909333pt;}
._2d_c00287{width:47.018667pt;}
._2a_c00287{width:47.957333pt;}
._16_c00287{width:50.176000pt;}
._32_c00287{width:51.968000pt;}
._26_c00287{width:55.466667pt;}
._20_c00287{width:57.770667pt;}
._24_c00287{width:58.880000pt;}
._28_c00287{width:64.256000pt;}
._27_c00287{width:157.866667pt;}
._34_c00287{width:161.792000pt;}
._35_c00287{width:193.792000pt;}
._33_c00287{width:235.690667pt;}
._11_c00287{width:350.549333pt;}
.fs3_c00287{font-size:42.666667pt;}
.fs2_c00287{font-size:64.000000pt;}
.fs1_c00287{font-size:77.333333pt;}
.fs0_c00287{font-size:85.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.y28_c00287{bottom:2.760000pt;}
.y27_c00287{bottom:6.425206pt;}
.y25_c00287{bottom:61.226667pt;}
.y24_c00287{bottom:89.760000pt;}
.y23_c00287{bottom:120.560000pt;}
.y22_c00287{bottom:149.760000pt;}
.y21_c00287{bottom:180.560000pt;}
.y20_c00287{bottom:211.226667pt;}
.y1f_c00287{bottom:241.760000pt;}
.y1e_c00287{bottom:272.693333pt;}
.y1d_c00287{bottom:302.426667pt;}
.y1c_c00287{bottom:333.093333pt;}
.y26_c00287{bottom:349.760000pt;}
.y1b_c00287{bottom:363.893333pt;}
.y1a_c00287{bottom:393.626667pt;}
.y19_c00287{bottom:424.560000pt;}
.y18_c00287{bottom:455.093333pt;}
.y17_c00287{bottom:485.093333pt;}
.y16_c00287{bottom:515.360000pt;}
.y15_c00287{bottom:545.493333pt;}
.y14_c00287{bottom:575.493333pt;}
.y13_c00287{bottom:605.760000pt;}
.y12_c00287{bottom:635.760000pt;}
.y11_c00287{bottom:665.760000pt;}
.y10_c00287{bottom:696.293333pt;}
.yf_c00287{bottom:726.560000pt;}
.ye_c00287{bottom:756.560000pt;}
.yd_c00287{bottom:786.960000pt;}
.yc_c00287{bottom:816.560000pt;}
.yb_c00287{bottom:846.293333pt;}
.ya_c00287{bottom:875.760000pt;}
.y9_c00287{bottom:905.493333pt;}
.y8_c00287{bottom:935.760000pt;}
.y1_c00287{bottom:944.426667pt;}
.y7_c00287{bottom:965.360000pt;}
.y6_c00287{bottom:995.360000pt;}
.y5_c00287{bottom:1025.360000pt;}
.y4_c00287{bottom:1054.560000pt;}
.y3_c00287{bottom:1084.560000pt;}
.y2_c00287{bottom:1114.293333pt;}
.h4_c00287{height:11.733399pt;}
.h5_c00287{height:38.937500pt;}
.h3_c00287{height:67.072000pt;}
.h2_c00287{height:108.041667pt;}
.h0_c00287{height:1229.066667pt;}
.h1_c00287{height:1229.333333pt;}
.w2_c00287{width:93.222667pt;}
.w0_c00287{width:767.266667pt;}
.w1_c00287{width:767.333333pt;}
.x0_c00287{left:0.000000pt;}
.x12_c00287{left:120.266667pt;}
.xf_c00287{left:123.600000pt;}
.xe_c00287{left:129.866667pt;}
.x1_c00287{left:146.133333pt;}
.x10_c00287{left:215.200000pt;}
.xd_c00287{left:217.600000pt;}
.xc_c00287{left:218.666667pt;}
.x9_c00287{left:219.600000pt;}
.xb_c00287{left:220.533333pt;}
.xa_c00287{left:222.000000pt;}
.x8_c00287{left:222.933333pt;}
.x7_c00287{left:223.866667pt;}
.x6_c00287{left:225.333333pt;}
.x5_c00287{left:226.266667pt;}
.x4_c00287{left:227.200000pt;}
.x2_c00287{left:228.800000pt;}
.x3_c00287{left:271.466667pt;}
.x13_c00287{left:340.801554pt;}
.x11_c00287{left:694.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_538deeb5cad52f5b6f3dcb57.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_8c8072126afd087c3781bcf6.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls2_c00288{letter-spacing:0.000000px;}
.ls3_c00288{letter-spacing:3.000000px;}
.ls0_c00288{letter-spacing:4.320000px;}
.ls1_c00288{letter-spacing:27.494400px;}
.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;}
}
.ws3_c00288{word-spacing:-53.856000px;}
.ws2_c00288{word-spacing:-23.244000px;}
.ws0_c00288{word-spacing:-23.136000px;}
.ws1_c00288{word-spacing:-2.748000px;}
.ws4_c00288{word-spacing:0.000000px;}
._34_c00288{margin-left:-32.928000px;}
._3a_c00288{margin-left:-19.392000px;}
._33_c00288{margin-left:-14.208000px;}
._29_c00288{margin-left:-11.856000px;}
._1d_c00288{margin-left:-7.488000px;}
._2a_c00288{margin-left:-6.048000px;}
._24_c00288{margin-left:-4.896000px;}
._18_c00288{margin-left:-3.264000px;}
._7_c00288{margin-left:-1.152000px;}
._c_c00288{width:1.152000px;}
._9_c00288{width:2.208000px;}
._4_c00288{width:3.840000px;}
._26_c00288{width:4.848000px;}
._3_c00288{width:5.856000px;}
._1_c00288{width:7.200000px;}
._0_c00288{width:8.832000px;}
._2_c00288{width:10.272000px;}
._1c_c00288{width:11.328000px;}
._16_c00288{width:12.576000px;}
._b_c00288{width:13.728000px;}
._5_c00288{width:15.264000px;}
._2e_c00288{width:16.560000px;}
._10_c00288{width:17.664000px;}
._25_c00288{width:19.008000px;}
._21_c00288{width:20.064000px;}
._d_c00288{width:21.312000px;}
._2f_c00288{width:24.432000px;}
._1f_c00288{width:25.728000px;}
._a_c00288{width:28.128000px;}
._e_c00288{width:30.144000px;}
._8_c00288{width:32.064000px;}
._6_c00288{width:33.216000px;}
._19_c00288{width:34.560000px;}
._1e_c00288{width:36.288000px;}
._f_c00288{width:37.440000px;}
._20_c00288{width:38.688000px;}
._11_c00288{width:40.512000px;}
._1b_c00288{width:42.336000px;}
._13_c00288{width:43.392000px;}
._22_c00288{width:45.180000px;}
._2d_c00288{width:46.752000px;}
._1a_c00288{width:47.808000px;}
._17_c00288{width:49.344000px;}
._12_c00288{width:52.512000px;}
._30_c00288{width:53.616000px;}
._27_c00288{width:55.776000px;}
._23_c00288{width:57.120000px;}
._28_c00288{width:58.548000px;}
._14_c00288{width:59.616000px;}
._3b_c00288{width:60.768000px;}
._15_c00288{width:64.800000px;}
._37_c00288{width:72.588000px;}
._38_c00288{width:80.124000px;}
._31_c00288{width:82.080000px;}
._2c_c00288{width:105.360000px;}
._35_c00288{width:161.664000px;}
._36_c00288{width:174.576000px;}
._2b_c00288{width:180.960000px;}
._39_c00288{width:313.104000px;}
._3c_c00288{width:824.112000px;}
._32_c00288{width:1401.120000px;}
.fc2_c00288{color:transparent;}
.fc1_c00288{color:rgb(128,128,128);}
.fc0_c00288{color:rgb(0,0,0);}
.fs3_c00288{font-size:48.000000px;}
.fs2_c00288{font-size:76.800000px;}
.fs1_c00288{font-size:84.000000px;}
.fs0_c00288{font-size:96.000000px;}
.y0_c00288{bottom:0.000000px;}
.y26_c00288{bottom:3.105000px;}
.y25_c00288{bottom:7.228369px;}
.y24_c00288{bottom:106.920000px;}
.y23_c00288{bottom:141.420000px;}
.y22_c00288{bottom:176.070000px;}
.y21_c00288{bottom:209.520000px;}
.y20_c00288{bottom:243.570000px;}
.y1f_c00288{bottom:278.070000px;}
.y1e_c00288{bottom:311.520000px;}
.y1d_c00288{bottom:345.570000px;}
.y1c_c00288{bottom:379.020000px;}
.y1b_c00288{bottom:413.070000px;}
.y1a_c00288{bottom:447.570000px;}
.y19_c00288{bottom:480.570000px;}
.y18_c00288{bottom:514.320000px;}
.y17_c00288{bottom:548.070000px;}
.y16_c00288{bottom:581.070000px;}
.y15_c00288{bottom:614.220000px;}
.y14_c00288{bottom:647.970000px;}
.y13_c00288{bottom:680.970000px;}
.y12_c00288{bottom:714.870000px;}
.y11_c00288{bottom:748.170000px;}
.y10_c00288{bottom:781.320000px;}
.yf_c00288{bottom:814.770000px;}
.ye_c00288{bottom:847.470000px;}
.yd_c00288{bottom:880.770000px;}
.yc_c00288{bottom:913.620000px;}
.yb_c00288{bottom:947.070000px;}
.ya_c00288{bottom:980.370000px;}
.y9_c00288{bottom:1013.520000px;}
.y8_c00288{bottom:1046.970000px;}
.y7_c00288{bottom:1080.270000px;}
.y6_c00288{bottom:1113.120000px;}
.y5_c00288{bottom:1146.420000px;}
.y4_c00288{bottom:1179.270000px;}
.y3_c00288{bottom:1212.270000px;}
.y2_c00288{bottom:1245.270000px;}
.y1_c00288{bottom:1279.020000px;}
.h3_c00288{height:13.200073px;}
.h4_c00288{height:43.804688px;}
.h2_c00288{height:121.546875px;}
.h0_c00288{height:1383.450000px;}
.h1_c00288{height:1383.750000px;}
.w2_c00288{width:104.875500px;}
.w0_c00288{width:878.025000px;}
.w1_c00288{width:878.250000px;}
.x0_c00288{left:0.000000px;}
.x4_c00288{left:53.250000px;}
.x3_c00288{left:54.300000px;}
.x1_c00288{left:55.950000px;}
.x2_c00288{left:57.000000px;}
.x6_c00288{left:58.650000px;}
.x7_c00288{left:59.700000px;}
.x8_c00288{left:60.750000px;}
.x9_c00288{left:62.400000px;}
.xa_c00288{left:64.050000px;}
.x5_c00288{left:106.650000px;}
.xb_c00288{left:314.550000px;}
.xc_c00288{left:390.826721px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls2_c00288{letter-spacing:0.000000pt;}
.ls3_c00288{letter-spacing:2.666667pt;}
.ls0_c00288{letter-spacing:3.840000pt;}
.ls1_c00288{letter-spacing:24.439467pt;}
.ws3_c00288{word-spacing:-47.872000pt;}
.ws2_c00288{word-spacing:-20.661333pt;}
.ws0_c00288{word-spacing:-20.565333pt;}
.ws1_c00288{word-spacing:-2.442667pt;}
.ws4_c00288{word-spacing:0.000000pt;}
._34_c00288{margin-left:-29.269333pt;}
._3a_c00288{margin-left:-17.237333pt;}
._33_c00288{margin-left:-12.629333pt;}
._29_c00288{margin-left:-10.538667pt;}
._1d_c00288{margin-left:-6.656000pt;}
._2a_c00288{margin-left:-5.376000pt;}
._24_c00288{margin-left:-4.352000pt;}
._18_c00288{margin-left:-2.901333pt;}
._7_c00288{margin-left:-1.024000pt;}
._c_c00288{width:1.024000pt;}
._9_c00288{width:1.962667pt;}
._4_c00288{width:3.413333pt;}
._26_c00288{width:4.309333pt;}
._3_c00288{width:5.205333pt;}
._1_c00288{width:6.400000pt;}
._0_c00288{width:7.850667pt;}
._2_c00288{width:9.130667pt;}
._1c_c00288{width:10.069333pt;}
._16_c00288{width:11.178667pt;}
._b_c00288{width:12.202667pt;}
._5_c00288{width:13.568000pt;}
._2e_c00288{width:14.720000pt;}
._10_c00288{width:15.701333pt;}
._25_c00288{width:16.896000pt;}
._21_c00288{width:17.834667pt;}
._d_c00288{width:18.944000pt;}
._2f_c00288{width:21.717333pt;}
._1f_c00288{width:22.869333pt;}
._a_c00288{width:25.002667pt;}
._e_c00288{width:26.794667pt;}
._8_c00288{width:28.501333pt;}
._6_c00288{width:29.525333pt;}
._19_c00288{width:30.720000pt;}
._1e_c00288{width:32.256000pt;}
._f_c00288{width:33.280000pt;}
._20_c00288{width:34.389333pt;}
._11_c00288{width:36.010667pt;}
._1b_c00288{width:37.632000pt;}
._13_c00288{width:38.570667pt;}
._22_c00288{width:40.160000pt;}
._2d_c00288{width:41.557333pt;}
._1a_c00288{width:42.496000pt;}
._17_c00288{width:43.861333pt;}
._12_c00288{width:46.677333pt;}
._30_c00288{width:47.658667pt;}
._27_c00288{width:49.578667pt;}
._23_c00288{width:50.773333pt;}
._28_c00288{width:52.042667pt;}
._14_c00288{width:52.992000pt;}
._3b_c00288{width:54.016000pt;}
._15_c00288{width:57.600000pt;}
._37_c00288{width:64.522667pt;}
._38_c00288{width:71.221333pt;}
._31_c00288{width:72.960000pt;}
._2c_c00288{width:93.653333pt;}
._35_c00288{width:143.701333pt;}
._36_c00288{width:155.178667pt;}
._2b_c00288{width:160.853333pt;}
._39_c00288{width:278.314667pt;}
._3c_c00288{width:732.544000pt;}
._32_c00288{width:1245.440000pt;}
.fs3_c00288{font-size:42.666667pt;}
.fs2_c00288{font-size:68.266667pt;}
.fs1_c00288{font-size:74.666667pt;}
.fs0_c00288{font-size:85.333333pt;}
.y0_c00288{bottom:0.000000pt;}
.y26_c00288{bottom:2.760000pt;}
.y25_c00288{bottom:6.425217pt;}
.y24_c00288{bottom:95.040000pt;}
.y23_c00288{bottom:125.706667pt;}
.y22_c00288{bottom:156.506667pt;}
.y21_c00288{bottom:186.240000pt;}
.y20_c00288{bottom:216.506667pt;}
.y1f_c00288{bottom:247.173333pt;}
.y1e_c00288{bottom:276.906667pt;}
.y1d_c00288{bottom:307.173333pt;}
.y1c_c00288{bottom:336.906667pt;}
.y1b_c00288{bottom:367.173333pt;}
.y1a_c00288{bottom:397.840000pt;}
.y19_c00288{bottom:427.173333pt;}
.y18_c00288{bottom:457.173333pt;}
.y17_c00288{bottom:487.173333pt;}
.y16_c00288{bottom:516.506667pt;}
.y15_c00288{bottom:545.973333pt;}
.y14_c00288{bottom:575.973333pt;}
.y13_c00288{bottom:605.306667pt;}
.y12_c00288{bottom:635.440000pt;}
.y11_c00288{bottom:665.040000pt;}
.y10_c00288{bottom:694.506667pt;}
.yf_c00288{bottom:724.240000pt;}
.ye_c00288{bottom:753.306667pt;}
.yd_c00288{bottom:782.906667pt;}
.yc_c00288{bottom:812.106667pt;}
.yb_c00288{bottom:841.840000pt;}
.ya_c00288{bottom:871.440000pt;}
.y9_c00288{bottom:900.906667pt;}
.y8_c00288{bottom:930.640000pt;}
.y7_c00288{bottom:960.240000pt;}
.y6_c00288{bottom:989.440000pt;}
.y5_c00288{bottom:1019.040000pt;}
.y4_c00288{bottom:1048.240000pt;}
.y3_c00288{bottom:1077.573333pt;}
.y2_c00288{bottom:1106.906667pt;}
.y1_c00288{bottom:1136.906667pt;}
.h3_c00288{height:11.733399pt;}
.h4_c00288{height:38.937500pt;}
.h2_c00288{height:108.041667pt;}
.h0_c00288{height:1229.733333pt;}
.h1_c00288{height:1230.000000pt;}
.w2_c00288{width:93.222667pt;}
.w0_c00288{width:780.466667pt;}
.w1_c00288{width:780.666667pt;}
.x0_c00288{left:0.000000pt;}
.x4_c00288{left:47.333333pt;}
.x3_c00288{left:48.266667pt;}
.x1_c00288{left:49.733333pt;}
.x2_c00288{left:50.666667pt;}
.x6_c00288{left:52.133333pt;}
.x7_c00288{left:53.066667pt;}
.x8_c00288{left:54.000000pt;}
.x9_c00288{left:55.466667pt;}
.xa_c00288{left:56.933333pt;}
.x5_c00288{left:94.800000pt;}
.xb_c00288{left:279.600000pt;}
.xc_c00288{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48b73a94c8722293614a3bee.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_61900a61ab9ddec1fa71f054.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_8db29985dd43b97bfe8a0357.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls2_c00289{letter-spacing:-3.000000px;}
.ls3_c00289{letter-spacing:0.000000px;}
.ls1_c00289{letter-spacing:4.320000px;}
.ls0_c00289{letter-spacing:7.152000px;}
.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:-24.582000px;}
.ws0_c00289{word-spacing:-23.859000px;}
.ws1_c00289{word-spacing:-20.244000px;}
.ws3_c00289{word-spacing:0.000000px;}
._24_c00289{margin-left:-21.000000px;}
._6_c00289{margin-left:-15.120000px;}
._0_c00289{margin-left:-11.160000px;}
._1f_c00289{margin-left:-9.804000px;}
._30_c00289{margin-left:-8.784000px;}
._1_c00289{margin-left:-6.000000px;}
._1d_c00289{margin-left:-4.368000px;}
._11_c00289{margin-left:-3.336000px;}
._1e_c00289{margin-left:-1.488000px;}
._34_c00289{width:1.020000px;}
._3_c00289{width:2.040000px;}
._4_c00289{width:3.960000px;}
._8_c00289{width:5.568000px;}
._e_c00289{width:6.696000px;}
._a_c00289{width:7.944000px;}
._7_c00289{width:9.600000px;}
._18_c00289{width:10.704000px;}
._2_c00289{width:11.880000px;}
._19_c00289{width:13.272000px;}
._13_c00289{width:15.408000px;}
._17_c00289{width:17.640000px;}
._9_c00289{width:19.272000px;}
._f_c00289{width:21.168000px;}
._12_c00289{width:24.528000px;}
._23_c00289{width:26.088000px;}
._5_c00289{width:27.120000px;}
._28_c00289{width:28.320000px;}
._1a_c00289{width:29.568000px;}
._1c_c00289{width:31.584000px;}
._25_c00289{width:32.964000px;}
._d_c00289{width:34.680000px;}
._15_c00289{width:36.432000px;}
._1b_c00289{width:37.896000px;}
._14_c00289{width:40.008000px;}
._29_c00289{width:41.040000px;}
._16_c00289{width:42.240000px;}
._10_c00289{width:43.488000px;}
._2e_c00289{width:44.700000px;}
._26_c00289{width:46.404000px;}
._2d_c00289{width:47.808000px;}
._21_c00289{width:48.840000px;}
._c_c00289{width:49.992000px;}
._20_c00289{width:51.744000px;}
._2a_c00289{width:53.328000px;}
._22_c00289{width:56.616000px;}
._b_c00289{width:58.008000px;}
._2c_c00289{width:59.472000px;}
._2b_c00289{width:60.696000px;}
._27_c00289{width:62.592000px;}
._31_c00289{width:64.896000px;}
._32_c00289{width:67.044000px;}
._2f_c00289{width:98.424000px;}
._33_c00289{width:376.152000px;}
.fc2_c00289{color:transparent;}
.fc1_c00289{color:rgb(128,128,128);}
.fc0_c00289{color:rgb(0,0,0);}
.fs5_c00289{font-size:48.000000px;}
.fs3_c00289{font-size:84.000000px;}
.fs2_c00289{font-size:96.000000px;}
.fs1_c00289{font-size:99.000000px;}
.fs4_c00289{font-size:102.000000px;}
.fs0_c00289{font-size:120.000000px;}
.y0_c00289{bottom:0.000000px;}
.y28_c00289{bottom:3.105000px;}
.y27_c00289{bottom:7.228363px;}
.y26_c00289{bottom:81.600000px;}
.y25_c00289{bottom:113.400000px;}
.y24_c00289{bottom:148.200000px;}
.y23_c00289{bottom:181.950000px;}
.y22_c00289{bottom:216.300000px;}
.y21_c00289{bottom:250.200000px;}
.y20_c00289{bottom:284.850000px;}
.y2_c00289{bottom:290.550000px;}
.y1f_c00289{bottom:318.300000px;}
.y1_c00289{bottom:318.900000px;}
.y1e_c00289{bottom:353.400000px;}
.y1d_c00289{bottom:387.150000px;}
.y1c_c00289{bottom:421.200000px;}
.y1b_c00289{bottom:455.400000px;}
.y1a_c00289{bottom:489.150000px;}
.y19_c00289{bottom:522.750000px;}
.y18_c00289{bottom:557.100000px;}
.y17_c00289{bottom:590.850000px;}
.y16_c00289{bottom:624.450000px;}
.y15_c00289{bottom:658.200000px;}
.y14_c00289{bottom:691.950000px;}
.y13_c00289{bottom:725.700000px;}
.y12_c00289{bottom:759.000000px;}
.y11_c00289{bottom:792.900000px;}
.y10_c00289{bottom:826.500000px;}
.yf_c00289{bottom:860.400000px;}
.ye_c00289{bottom:894.000000px;}
.yd_c00289{bottom:927.150000px;}
.yc_c00289{bottom:960.300000px;}
.yb_c00289{bottom:993.300000px;}
.ya_c00289{bottom:1026.750000px;}
.y9_c00289{bottom:1060.200000px;}
.y8_c00289{bottom:1093.950000px;}
.y7_c00289{bottom:1126.950000px;}
.y6_c00289{bottom:1161.000000px;}
.y5_c00289{bottom:1193.850000px;}
.y4_c00289{bottom:1227.150000px;}
.y3_c00289{bottom:1260.600000px;}
.h6_c00289{height:13.200074px;}
.h7_c00289{height:43.804688px;}
.h4_c00289{height:121.546875px;}
.h3_c00289{height:125.345215px;}
.h2_c00289{height:128.040000px;}
.h5_c00289{height:129.143555px;}
.h1_c00289{height:1374.000000px;}
.h0_c00289{height:1374.300000px;}
.w2_c00289{width:104.875500px;}
.w1_c00289{width:857.250000px;}
.w0_c00289{width:857.550000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:111.000000px;}
.x2_c00289{left:142.800000px;}
.x9_c00289{left:247.500000px;}
.x8_c00289{left:249.150000px;}
.x5_c00289{left:250.800000px;}
.x6_c00289{left:252.450000px;}
.x4_c00289{left:253.500000px;}
.x3_c00289{left:255.150000px;}
.x7_c00289{left:300.000000px;}
.xb_c00289{left:380.589249px;}
.xa_c00289{left:770.250000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls2_c00289{letter-spacing:-2.666667pt;}
.ls3_c00289{letter-spacing:0.000000pt;}
.ls1_c00289{letter-spacing:3.840000pt;}
.ls0_c00289{letter-spacing:6.357333pt;}
.ws2_c00289{word-spacing:-21.850667pt;}
.ws0_c00289{word-spacing:-21.208000pt;}
.ws1_c00289{word-spacing:-17.994667pt;}
.ws3_c00289{word-spacing:0.000000pt;}
._24_c00289{margin-left:-18.666667pt;}
._6_c00289{margin-left:-13.440000pt;}
._0_c00289{margin-left:-9.920000pt;}
._1f_c00289{margin-left:-8.714667pt;}
._30_c00289{margin-left:-7.808000pt;}
._1_c00289{margin-left:-5.333333pt;}
._1d_c00289{margin-left:-3.882667pt;}
._11_c00289{margin-left:-2.965333pt;}
._1e_c00289{margin-left:-1.322667pt;}
._34_c00289{width:0.906667pt;}
._3_c00289{width:1.813333pt;}
._4_c00289{width:3.520000pt;}
._8_c00289{width:4.949333pt;}
._e_c00289{width:5.952000pt;}
._a_c00289{width:7.061333pt;}
._7_c00289{width:8.533333pt;}
._18_c00289{width:9.514667pt;}
._2_c00289{width:10.560000pt;}
._19_c00289{width:11.797333pt;}
._13_c00289{width:13.696000pt;}
._17_c00289{width:15.680000pt;}
._9_c00289{width:17.130667pt;}
._f_c00289{width:18.816000pt;}
._12_c00289{width:21.802667pt;}
._23_c00289{width:23.189333pt;}
._5_c00289{width:24.106667pt;}
._28_c00289{width:25.173333pt;}
._1a_c00289{width:26.282667pt;}
._1c_c00289{width:28.074667pt;}
._25_c00289{width:29.301333pt;}
._d_c00289{width:30.826667pt;}
._15_c00289{width:32.384000pt;}
._1b_c00289{width:33.685333pt;}
._14_c00289{width:35.562667pt;}
._29_c00289{width:36.480000pt;}
._16_c00289{width:37.546667pt;}
._10_c00289{width:38.656000pt;}
._2e_c00289{width:39.733333pt;}
._26_c00289{width:41.248000pt;}
._2d_c00289{width:42.496000pt;}
._21_c00289{width:43.413333pt;}
._c_c00289{width:44.437333pt;}
._20_c00289{width:45.994667pt;}
._2a_c00289{width:47.402667pt;}
._22_c00289{width:50.325333pt;}
._b_c00289{width:51.562667pt;}
._2c_c00289{width:52.864000pt;}
._2b_c00289{width:53.952000pt;}
._27_c00289{width:55.637333pt;}
._31_c00289{width:57.685333pt;}
._32_c00289{width:59.594667pt;}
._2f_c00289{width:87.488000pt;}
._33_c00289{width:334.357333pt;}
.fs5_c00289{font-size:42.666667pt;}
.fs3_c00289{font-size:74.666667pt;}
.fs2_c00289{font-size:85.333333pt;}
.fs1_c00289{font-size:88.000000pt;}
.fs4_c00289{font-size:90.666667pt;}
.fs0_c00289{font-size:106.666667pt;}
.y0_c00289{bottom:0.000000pt;}
.y28_c00289{bottom:2.760000pt;}
.y27_c00289{bottom:6.425212pt;}
.y26_c00289{bottom:72.533333pt;}
.y25_c00289{bottom:100.800000pt;}
.y24_c00289{bottom:131.733333pt;}
.y23_c00289{bottom:161.733333pt;}
.y22_c00289{bottom:192.266667pt;}
.y21_c00289{bottom:222.400000pt;}
.y20_c00289{bottom:253.200000pt;}
.y2_c00289{bottom:258.266667pt;}
.y1f_c00289{bottom:282.933333pt;}
.y1_c00289{bottom:283.466667pt;}
.y1e_c00289{bottom:314.133333pt;}
.y1d_c00289{bottom:344.133333pt;}
.y1c_c00289{bottom:374.400000pt;}
.y1b_c00289{bottom:404.800000pt;}
.y1a_c00289{bottom:434.800000pt;}
.y19_c00289{bottom:464.666667pt;}
.y18_c00289{bottom:495.200000pt;}
.y17_c00289{bottom:525.200000pt;}
.y16_c00289{bottom:555.066667pt;}
.y15_c00289{bottom:585.066667pt;}
.y14_c00289{bottom:615.066667pt;}
.y13_c00289{bottom:645.066667pt;}
.y12_c00289{bottom:674.666667pt;}
.y11_c00289{bottom:704.800000pt;}
.y10_c00289{bottom:734.666667pt;}
.yf_c00289{bottom:764.800000pt;}
.ye_c00289{bottom:794.666667pt;}
.yd_c00289{bottom:824.133333pt;}
.yc_c00289{bottom:853.600000pt;}
.yb_c00289{bottom:882.933333pt;}
.ya_c00289{bottom:912.666667pt;}
.y9_c00289{bottom:942.400000pt;}
.y8_c00289{bottom:972.400000pt;}
.y7_c00289{bottom:1001.733333pt;}
.y6_c00289{bottom:1032.000000pt;}
.y5_c00289{bottom:1061.200000pt;}
.y4_c00289{bottom:1090.800000pt;}
.y3_c00289{bottom:1120.533333pt;}
.h6_c00289{height:11.733399pt;}
.h7_c00289{height:38.937500pt;}
.h4_c00289{height:108.041667pt;}
.h3_c00289{height:111.417969pt;}
.h2_c00289{height:113.813333pt;}
.h5_c00289{height:114.794271pt;}
.h1_c00289{height:1221.333333pt;}
.h0_c00289{height:1221.600000pt;}
.w2_c00289{width:93.222667pt;}
.w1_c00289{width:762.000000pt;}
.w0_c00289{width:762.266667pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:98.666667pt;}
.x2_c00289{left:126.933333pt;}
.x9_c00289{left:220.000000pt;}
.x8_c00289{left:221.466667pt;}
.x5_c00289{left:222.933333pt;}
.x6_c00289{left:224.400000pt;}
.x4_c00289{left:225.333333pt;}
.x3_c00289{left:226.800000pt;}
.x7_c00289{left:266.666667pt;}
.xb_c00289{left:338.301554pt;}
.xa_c00289{left:684.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fa4bdb87055271f0b5e2d5e8.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00290{vertical-align:-118.800000px;}
.v0_c00290{vertical-align:0.000000px;}
.ls1_c00290{letter-spacing:-9.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00290{word-spacing:-27.150000px;}
.ws0_c00290{word-spacing:-23.136000px;}
.ws2_c00290{word-spacing:0.000000px;}
._7_c00290{margin-left:-27.936000px;}
._34_c00290{margin-left:-18.240000px;}
._17_c00290{margin-left:-14.136000px;}
._24_c00290{margin-left:-12.480000px;}
._2e_c00290{margin-left:-9.216000px;}
._25_c00290{margin-left:-8.160000px;}
._26_c00290{margin-left:-7.104000px;}
._c_c00290{margin-left:-5.472000px;}
._e_c00290{margin-left:-3.264000px;}
._1c_c00290{margin-left:-1.344000px;}
._2_c00290{width:1.728000px;}
._1_c00290{width:3.168000px;}
._4_c00290{width:4.416000px;}
._0_c00290{width:6.144000px;}
._a_c00290{width:8.064000px;}
._9_c00290{width:9.600000px;}
._31_c00290{width:10.656000px;}
._16_c00290{width:11.712000px;}
._b_c00290{width:13.536000px;}
._15_c00290{width:15.552000px;}
._1d_c00290{width:16.992000px;}
._8_c00290{width:18.624000px;}
._33_c00290{width:19.776000px;}
._14_c00290{width:21.216000px;}
._32_c00290{width:24.192000px;}
._20_c00290{width:25.248000px;}
._2b_c00290{width:26.784000px;}
._21_c00290{width:28.320000px;}
._6_c00290{width:29.472000px;}
._d_c00290{width:32.064000px;}
._23_c00290{width:33.216000px;}
._1f_c00290{width:34.848000px;}
._1e_c00290{width:36.384000px;}
._13_c00290{width:38.016000px;}
._5_c00290{width:39.072000px;}
._29_c00290{width:40.416000px;}
._12_c00290{width:41.760000px;}
._11_c00290{width:43.008000px;}
._f_c00290{width:45.024000px;}
._3_c00290{width:47.616000px;}
._1a_c00290{width:48.768000px;}
._10_c00290{width:51.168000px;}
._30_c00290{width:55.008000px;}
._22_c00290{width:57.696000px;}
._1b_c00290{width:59.808000px;}
._27_c00290{width:60.864000px;}
._19_c00290{width:64.320000px;}
._28_c00290{width:68.544000px;}
._2f_c00290{width:79.392000px;}
._2d_c00290{width:252.864000px;}
._2a_c00290{width:353.088000px;}
._2c_c00290{width:377.664000px;}
._18_c00290{width:379.104000px;}
._36_c00290{width:741.024000px;}
._35_c00290{width:769.152000px;}
.fc2_c00290{color:transparent;}
.fc1_c00290{color:rgb(128,128,128);}
.fc0_c00290{color:rgb(0,0,0);}
.fs2_c00290{font-size:48.000000px;}
.fs0_c00290{font-size:96.000000px;}
.fs1_c00290{font-size:150.000000px;}
.y0_c00290{bottom:0.000000px;}
.y21_c00290{bottom:3.105000px;}
.y20_c00290{bottom:7.228369px;}
.y1f_c00290{bottom:52.920000px;}
.y1e_c00290{bottom:92.370000px;}
.y1d_c00290{bottom:228.120000px;}
.y1c_c00290{bottom:261.870000px;}
.y1b_c00290{bottom:296.370000px;}
.y1a_c00290{bottom:329.970000px;}
.y19_c00290{bottom:364.170000px;}
.y18_c00290{bottom:397.620000px;}
.y17_c00290{bottom:431.220000px;}
.y16_c00290{bottom:464.670000px;}
.y15_c00290{bottom:498.720000px;}
.y14_c00290{bottom:531.570000px;}
.y13_c00290{bottom:565.320000px;}
.y12_c00290{bottom:630.720000px;}
.y11_c00290{bottom:695.820000px;}
.y10_c00290{bottom:731.670000px;}
.yf_c00290{bottom:765.120000px;}
.ye_c00290{bottom:798.420000px;}
.yd_c00290{bottom:831.270000px;}
.yc_c00290{bottom:863.970000px;}
.yb_c00290{bottom:897.120000px;}
.ya_c00290{bottom:930.720000px;}
.y9_c00290{bottom:963.570000px;}
.y8_c00290{bottom:997.320000px;}
.y7_c00290{bottom:1030.770000px;}
.y6_c00290{bottom:1063.770000px;}
.y5_c00290{bottom:1096.920000px;}
.y4_c00290{bottom:1160.370000px;}
.y3_c00290{bottom:1196.070000px;}
.y2_c00290{bottom:1229.820000px;}
.y1_c00290{bottom:1262.820000px;}
.h4_c00290{height:13.200073px;}
.h5_c00290{height:43.804688px;}
.h2_c00290{height:121.546875px;}
.h3_c00290{height:189.916992px;}
.h0_c00290{height:1383.450000px;}
.h1_c00290{height:1383.750000px;}
.w2_c00290{width:104.875500px;}
.w0_c00290{width:878.025000px;}
.w1_c00290{width:878.250000px;}
.x0_c00290{left:0.000000px;}
.x3_c00290{left:68.400000px;}
.x2_c00290{left:69.900000px;}
.x1_c00290{left:70.950000px;}
.x8_c00290{left:103.350000px;}
.x9_c00290{left:104.550000px;}
.x5_c00290{left:108.900000px;}
.x4_c00290{left:121.200000px;}
.xb_c00290{left:173.100000px;}
.x6_c00290{left:213.600000px;}
.x7_c00290{left:215.250000px;}
.xc_c00290{left:390.826721px;}
.xa_c00290{left:593.700000px;}
@media print{
.v1_c00290{vertical-align:-105.600000pt;}
.v0_c00290{vertical-align:0.000000pt;}
.ls1_c00290{letter-spacing:-8.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws1_c00290{word-spacing:-24.133333pt;}
.ws0_c00290{word-spacing:-20.565333pt;}
.ws2_c00290{word-spacing:0.000000pt;}
._7_c00290{margin-left:-24.832000pt;}
._34_c00290{margin-left:-16.213333pt;}
._17_c00290{margin-left:-12.565333pt;}
._24_c00290{margin-left:-11.093333pt;}
._2e_c00290{margin-left:-8.192000pt;}
._25_c00290{margin-left:-7.253333pt;}
._26_c00290{margin-left:-6.314667pt;}
._c_c00290{margin-left:-4.864000pt;}
._e_c00290{margin-left:-2.901333pt;}
._1c_c00290{margin-left:-1.194667pt;}
._2_c00290{width:1.536000pt;}
._1_c00290{width:2.816000pt;}
._4_c00290{width:3.925333pt;}
._0_c00290{width:5.461333pt;}
._a_c00290{width:7.168000pt;}
._9_c00290{width:8.533333pt;}
._31_c00290{width:9.472000pt;}
._16_c00290{width:10.410667pt;}
._b_c00290{width:12.032000pt;}
._15_c00290{width:13.824000pt;}
._1d_c00290{width:15.104000pt;}
._8_c00290{width:16.554667pt;}
._33_c00290{width:17.578667pt;}
._14_c00290{width:18.858667pt;}
._32_c00290{width:21.504000pt;}
._20_c00290{width:22.442667pt;}
._2b_c00290{width:23.808000pt;}
._21_c00290{width:25.173333pt;}
._6_c00290{width:26.197333pt;}
._d_c00290{width:28.501333pt;}
._23_c00290{width:29.525333pt;}
._1f_c00290{width:30.976000pt;}
._1e_c00290{width:32.341333pt;}
._13_c00290{width:33.792000pt;}
._5_c00290{width:34.730667pt;}
._29_c00290{width:35.925333pt;}
._12_c00290{width:37.120000pt;}
._11_c00290{width:38.229333pt;}
._f_c00290{width:40.021333pt;}
._3_c00290{width:42.325333pt;}
._1a_c00290{width:43.349333pt;}
._10_c00290{width:45.482667pt;}
._30_c00290{width:48.896000pt;}
._22_c00290{width:51.285333pt;}
._1b_c00290{width:53.162667pt;}
._27_c00290{width:54.101333pt;}
._19_c00290{width:57.173333pt;}
._28_c00290{width:60.928000pt;}
._2f_c00290{width:70.570667pt;}
._2d_c00290{width:224.768000pt;}
._2a_c00290{width:313.856000pt;}
._2c_c00290{width:335.701333pt;}
._18_c00290{width:336.981333pt;}
._36_c00290{width:658.688000pt;}
._35_c00290{width:683.690667pt;}
.fs2_c00290{font-size:42.666667pt;}
.fs0_c00290{font-size:85.333333pt;}
.fs1_c00290{font-size:133.333333pt;}
.y0_c00290{bottom:0.000000pt;}
.y21_c00290{bottom:2.760000pt;}
.y20_c00290{bottom:6.425217pt;}
.y1f_c00290{bottom:47.040000pt;}
.y1e_c00290{bottom:82.106667pt;}
.y1d_c00290{bottom:202.773333pt;}
.y1c_c00290{bottom:232.773333pt;}
.y1b_c00290{bottom:263.440000pt;}
.y1a_c00290{bottom:293.306667pt;}
.y19_c00290{bottom:323.706667pt;}
.y18_c00290{bottom:353.440000pt;}
.y17_c00290{bottom:383.306667pt;}
.y16_c00290{bottom:413.040000pt;}
.y15_c00290{bottom:443.306667pt;}
.y14_c00290{bottom:472.506667pt;}
.y13_c00290{bottom:502.506667pt;}
.y12_c00290{bottom:560.640000pt;}
.y11_c00290{bottom:618.506667pt;}
.y10_c00290{bottom:650.373333pt;}
.yf_c00290{bottom:680.106667pt;}
.ye_c00290{bottom:709.706667pt;}
.yd_c00290{bottom:738.906667pt;}
.yc_c00290{bottom:767.973333pt;}
.yb_c00290{bottom:797.440000pt;}
.ya_c00290{bottom:827.306667pt;}
.y9_c00290{bottom:856.506667pt;}
.y8_c00290{bottom:886.506667pt;}
.y7_c00290{bottom:916.240000pt;}
.y6_c00290{bottom:945.573333pt;}
.y5_c00290{bottom:975.040000pt;}
.y4_c00290{bottom:1031.440000pt;}
.y3_c00290{bottom:1063.173333pt;}
.y2_c00290{bottom:1093.173333pt;}
.y1_c00290{bottom:1122.506667pt;}
.h4_c00290{height:11.733399pt;}
.h5_c00290{height:38.937500pt;}
.h2_c00290{height:108.041667pt;}
.h3_c00290{height:168.815104pt;}
.h0_c00290{height:1229.733333pt;}
.h1_c00290{height:1230.000000pt;}
.w2_c00290{width:93.222667pt;}
.w0_c00290{width:780.466667pt;}
.w1_c00290{width:780.666667pt;}
.x0_c00290{left:0.000000pt;}
.x3_c00290{left:60.800000pt;}
.x2_c00290{left:62.133333pt;}
.x1_c00290{left:63.066667pt;}
.x8_c00290{left:91.866667pt;}
.x9_c00290{left:92.933333pt;}
.x5_c00290{left:96.800000pt;}
.x4_c00290{left:107.733333pt;}
.xb_c00290{left:153.866667pt;}
.x6_c00290{left:189.866667pt;}
.x7_c00290{left:191.333333pt;}
.xc_c00290{left:347.401530pt;}
.xa_c00290{left:527.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_970e0e7413233ab6f4971818.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_47bce203d692553d6e3c478e.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_ec0449f0f45e7d464ea54eea.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls1_c00291{letter-spacing:0.000000px;}
.ls0_c00291{letter-spacing:10.452000px;}
.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;}
}
.ws2_c00291{word-spacing:-23.136000px;}
.ws1_c00291{word-spacing:-20.358000px;}
.ws0_c00291{word-spacing:-17.352000px;}
.ws3_c00291{word-spacing:0.000000px;}
._2c_c00291{margin-left:-29.916000px;}
._25_c00291{margin-left:-25.488000px;}
._b_c00291{margin-left:-8.733000px;}
._a_c00291{margin-left:-6.642000px;}
._30_c00291{margin-left:-5.466000px;}
._2a_c00291{margin-left:-4.110000px;}
._7_c00291{margin-left:-2.460000px;}
._8_c00291{margin-left:-1.353000px;}
._d_c00291{width:1.230000px;}
._2e_c00291{width:2.262000px;}
._1a_c00291{width:3.264000px;}
._1b_c00291{width:4.992000px;}
._12_c00291{width:6.336000px;}
._22_c00291{width:7.344000px;}
._3_c00291{width:8.352000px;}
._11_c00291{width:9.504000px;}
._23_c00291{width:10.842000px;}
._0_c00291{width:12.096000px;}
._4_c00291{width:13.248000px;}
._1_c00291{width:15.264000px;}
._6_c00291{width:16.848000px;}
._21_c00291{width:18.336000px;}
._5_c00291{width:19.584000px;}
._29_c00291{width:20.688000px;}
._32_c00291{width:21.897000px;}
._10_c00291{width:23.112000px;}
._34_c00291{width:24.174000px;}
._31_c00291{width:25.254000px;}
._24_c00291{width:26.496000px;}
._f_c00291{width:28.536000px;}
._26_c00291{width:29.952000px;}
._2d_c00291{width:32.064000px;}
._19_c00291{width:33.888000px;}
._35_c00291{width:35.046000px;}
._1f_c00291{width:36.408000px;}
._13_c00291{width:37.584000px;}
._2f_c00291{width:39.192000px;}
._27_c00291{width:40.560000px;}
._14_c00291{width:41.760000px;}
._38_c00291{width:42.948000px;}
._18_c00291{width:45.024000px;}
._15_c00291{width:46.848000px;}
._37_c00291{width:49.488000px;}
._17_c00291{width:50.976000px;}
._1e_c00291{width:52.128000px;}
._2_c00291{width:53.856000px;}
._1d_c00291{width:54.930000px;}
._36_c00291{width:56.448000px;}
._3a_c00291{width:58.560000px;}
._33_c00291{width:59.730000px;}
._2b_c00291{width:64.128000px;}
._1c_c00291{width:66.528000px;}
._39_c00291{width:68.658000px;}
._9_c00291{width:82.287000px;}
._e_c00291{width:99.138000px;}
._c_c00291{width:103.935000px;}
._16_c00291{width:200.352000px;}
._28_c00291{width:432.978000px;}
._20_c00291{width:465.840000px;}
.fc2_c00291{color:transparent;}
.fc1_c00291{color:rgb(128,128,128);}
.fc0_c00291{color:rgb(0,0,0);}
.fs6_c00291{font-size:48.000000px;}
.fs2_c00291{font-size:72.000000px;}
.fs5_c00291{font-size:84.000000px;}
.fs3_c00291{font-size:96.000000px;}
.fs4_c00291{font-size:102.000000px;}
.fs1_c00291{font-size:123.000000px;}
.fs0_c00291{font-size:144.000000px;}
.y0_c00291{bottom:0.000000px;}
.y23_c00291{bottom:3.105000px;}
.y22_c00291{bottom:7.228357px;}
.y21_c00291{bottom:88.830000px;}
.y20_c00291{bottom:119.580000px;}
.y1f_c00291{bottom:154.530000px;}
.y1e_c00291{bottom:188.430000px;}
.y1d_c00291{bottom:222.180000px;}
.y1c_c00291{bottom:256.530000px;}
.y1b_c00291{bottom:290.580000px;}
.y1a_c00291{bottom:324.780000px;}
.y19_c00291{bottom:358.830000px;}
.y18_c00291{bottom:393.180000px;}
.y17_c00291{bottom:427.230000px;}
.y16_c00291{bottom:460.980000px;}
.y15_c00291{bottom:495.180000px;}
.y14_c00291{bottom:528.630000px;}
.y13_c00291{bottom:562.680000px;}
.y12_c00291{bottom:596.430000px;}
.y11_c00291{bottom:630.480000px;}
.y10_c00291{bottom:663.930000px;}
.yf_c00291{bottom:697.680000px;}
.ye_c00291{bottom:731.730000px;}
.yd_c00291{bottom:765.180000px;}
.yc_c00291{bottom:799.230000px;}
.yb_c00291{bottom:832.680000px;}
.ya_c00291{bottom:866.430000px;}
.y9_c00291{bottom:900.180000px;}
.y8_c00291{bottom:933.180000px;}
.y7_c00291{bottom:965.880000px;}
.y6_c00291{bottom:998.430000px;}
.y5_c00291{bottom:1031.730000px;}
.y4_c00291{bottom:1100.880000px;}
.y3_c00291{bottom:1134.330000px;}
.y2_c00291{bottom:1167.780000px;}
.y1_c00291{bottom:1257.480000px;}
.h6_c00291{height:13.200074px;}
.h7_c00291{height:43.804688px;}
.h4_c00291{height:84.269531px;}
.h5_c00291{height:121.546875px;}
.h3_c00291{height:143.960449px;}
.h2_c00291{height:182.320312px;}
.h0_c00291{height:1382.700000px;}
.h1_c00291{height:1383.000000px;}
.w2_c00291{width:104.875500px;}
.w0_c00291{width:863.175000px;}
.w1_c00291{width:863.250000px;}
.x0_c00291{left:0.000000px;}
.xe_c00291{left:231.450000px;}
.xd_c00291{left:232.500000px;}
.xc_c00291{left:233.550000px;}
.xb_c00291{left:235.200000px;}
.xa_c00291{left:237.300000px;}
.x9_c00291{left:238.500000px;}
.x8_c00291{left:239.550000px;}
.x2_c00291{left:242.400000px;}
.x5_c00291{left:290.700000px;}
.x1_c00291{left:307.350000px;}
.x10_c00291{left:383.401749px;}
.x6_c00291{left:392.850000px;}
.x3_c00291{left:456.000000px;}
.x7_c00291{left:471.150000px;}
.x4_c00291{left:501.900000px;}
.xf_c00291{left:781.650000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls1_c00291{letter-spacing:0.000000pt;}
.ls0_c00291{letter-spacing:9.290667pt;}
.ws2_c00291{word-spacing:-20.565333pt;}
.ws1_c00291{word-spacing:-18.096000pt;}
.ws0_c00291{word-spacing:-15.424000pt;}
.ws3_c00291{word-spacing:0.000000pt;}
._2c_c00291{margin-left:-26.592000pt;}
._25_c00291{margin-left:-22.656000pt;}
._b_c00291{margin-left:-7.762667pt;}
._a_c00291{margin-left:-5.904000pt;}
._30_c00291{margin-left:-4.858667pt;}
._2a_c00291{margin-left:-3.653333pt;}
._7_c00291{margin-left:-2.186667pt;}
._8_c00291{margin-left:-1.202667pt;}
._d_c00291{width:1.093333pt;}
._2e_c00291{width:2.010667pt;}
._1a_c00291{width:2.901333pt;}
._1b_c00291{width:4.437333pt;}
._12_c00291{width:5.632000pt;}
._22_c00291{width:6.528000pt;}
._3_c00291{width:7.424000pt;}
._11_c00291{width:8.448000pt;}
._23_c00291{width:9.637333pt;}
._0_c00291{width:10.752000pt;}
._4_c00291{width:11.776000pt;}
._1_c00291{width:13.568000pt;}
._6_c00291{width:14.976000pt;}
._21_c00291{width:16.298667pt;}
._5_c00291{width:17.408000pt;}
._29_c00291{width:18.389333pt;}
._32_c00291{width:19.464000pt;}
._10_c00291{width:20.544000pt;}
._34_c00291{width:21.488000pt;}
._31_c00291{width:22.448000pt;}
._24_c00291{width:23.552000pt;}
._f_c00291{width:25.365333pt;}
._26_c00291{width:26.624000pt;}
._2d_c00291{width:28.501333pt;}
._19_c00291{width:30.122667pt;}
._35_c00291{width:31.152000pt;}
._1f_c00291{width:32.362667pt;}
._13_c00291{width:33.408000pt;}
._2f_c00291{width:34.837333pt;}
._27_c00291{width:36.053333pt;}
._14_c00291{width:37.120000pt;}
._38_c00291{width:38.176000pt;}
._18_c00291{width:40.021333pt;}
._15_c00291{width:41.642667pt;}
._37_c00291{width:43.989333pt;}
._17_c00291{width:45.312000pt;}
._1e_c00291{width:46.336000pt;}
._2_c00291{width:47.872000pt;}
._1d_c00291{width:48.826667pt;}
._36_c00291{width:50.176000pt;}
._3a_c00291{width:52.053333pt;}
._33_c00291{width:53.093333pt;}
._2b_c00291{width:57.002667pt;}
._1c_c00291{width:59.136000pt;}
._39_c00291{width:61.029333pt;}
._9_c00291{width:73.144000pt;}
._e_c00291{width:88.122667pt;}
._c_c00291{width:92.386667pt;}
._16_c00291{width:178.090667pt;}
._28_c00291{width:384.869333pt;}
._20_c00291{width:414.080000pt;}
.fs6_c00291{font-size:42.666667pt;}
.fs2_c00291{font-size:64.000000pt;}
.fs5_c00291{font-size:74.666667pt;}
.fs3_c00291{font-size:85.333333pt;}
.fs4_c00291{font-size:90.666667pt;}
.fs1_c00291{font-size:109.333333pt;}
.fs0_c00291{font-size:128.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y23_c00291{bottom:2.760000pt;}
.y22_c00291{bottom:6.425206pt;}
.y21_c00291{bottom:78.960000pt;}
.y20_c00291{bottom:106.293333pt;}
.y1f_c00291{bottom:137.360000pt;}
.y1e_c00291{bottom:167.493333pt;}
.y1d_c00291{bottom:197.493333pt;}
.y1c_c00291{bottom:228.026667pt;}
.y1b_c00291{bottom:258.293333pt;}
.y1a_c00291{bottom:288.693333pt;}
.y19_c00291{bottom:318.960000pt;}
.y18_c00291{bottom:349.493333pt;}
.y17_c00291{bottom:379.760000pt;}
.y16_c00291{bottom:409.760000pt;}
.y15_c00291{bottom:440.160000pt;}
.y14_c00291{bottom:469.893333pt;}
.y13_c00291{bottom:500.160000pt;}
.y12_c00291{bottom:530.160000pt;}
.y11_c00291{bottom:560.426667pt;}
.y10_c00291{bottom:590.160000pt;}
.yf_c00291{bottom:620.160000pt;}
.ye_c00291{bottom:650.426667pt;}
.yd_c00291{bottom:680.160000pt;}
.yc_c00291{bottom:710.426667pt;}
.yb_c00291{bottom:740.160000pt;}
.ya_c00291{bottom:770.160000pt;}
.y9_c00291{bottom:800.160000pt;}
.y8_c00291{bottom:829.493333pt;}
.y7_c00291{bottom:858.560000pt;}
.y6_c00291{bottom:887.493333pt;}
.y5_c00291{bottom:917.093333pt;}
.y4_c00291{bottom:978.560000pt;}
.y3_c00291{bottom:1008.293333pt;}
.y2_c00291{bottom:1038.026667pt;}
.y1_c00291{bottom:1117.760000pt;}
.h6_c00291{height:11.733399pt;}
.h7_c00291{height:38.937500pt;}
.h4_c00291{height:74.906250pt;}
.h5_c00291{height:108.041667pt;}
.h3_c00291{height:127.964844pt;}
.h2_c00291{height:162.062500pt;}
.h0_c00291{height:1229.066667pt;}
.h1_c00291{height:1229.333333pt;}
.w2_c00291{width:93.222667pt;}
.w0_c00291{width:767.266667pt;}
.w1_c00291{width:767.333333pt;}
.x0_c00291{left:0.000000pt;}
.xe_c00291{left:205.733333pt;}
.xd_c00291{left:206.666667pt;}
.xc_c00291{left:207.600000pt;}
.xb_c00291{left:209.066667pt;}
.xa_c00291{left:210.933333pt;}
.x9_c00291{left:212.000000pt;}
.x8_c00291{left:212.933333pt;}
.x2_c00291{left:215.466667pt;}
.x5_c00291{left:258.400000pt;}
.x1_c00291{left:273.200000pt;}
.x10_c00291{left:340.801554pt;}
.x6_c00291{left:349.200000pt;}
.x3_c00291{left:405.333333pt;}
.x7_c00291{left:418.800000pt;}
.x4_c00291{left:446.133333pt;}
.xf_c00291{left:694.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_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_7e00aeb3106d8a924993021c.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_66b0618fa0e5fbb7fb0bafce.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_c8fa253082652db5c8567642.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_5d9d18f77c0e11d27ffa2a91.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls2_c00292{letter-spacing:0.000000px;}
.ls3_c00292{letter-spacing:6.000000px;}
.ls1_c00292{letter-spacing:14.292000px;}
.ls0_c00292{letter-spacing:30.264000px;}
.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;}
}
.ws2_c00292{word-spacing:-61.044000px;}
.ws1_c00292{word-spacing:-51.000000px;}
.ws0_c00292{word-spacing:-23.136000px;}
.ws3_c00292{word-spacing:-20.244000px;}
.ws4_c00292{word-spacing:0.000000px;}
._2e_c00292{margin-left:-26.976000px;}
._29_c00292{margin-left:-25.368000px;}
._38_c00292{margin-left:-23.904000px;}
._21_c00292{margin-left:-20.088000px;}
._2b_c00292{margin-left:-18.216000px;}
._2_c00292{margin-left:-14.484000px;}
._1f_c00292{margin-left:-10.197000px;}
._17_c00292{margin-left:-6.336000px;}
._d_c00292{margin-left:-4.032000px;}
._14_c00292{margin-left:-2.880000px;}
._18_c00292{margin-left:-1.344000px;}
._7_c00292{width:1.248000px;}
._1b_c00292{width:2.304000px;}
._6_c00292{width:3.384000px;}
._9_c00292{width:4.392000px;}
._5_c00292{width:6.360000px;}
._1_c00292{width:7.560000px;}
._15_c00292{width:8.640000px;}
._b_c00292{width:9.906000px;}
._3_c00292{width:11.118000px;}
._0_c00292{width:12.288000px;}
._f_c00292{width:13.728000px;}
._12_c00292{width:15.552000px;}
._13_c00292{width:16.632000px;}
._4_c00292{width:17.856000px;}
._25_c00292{width:18.960000px;}
._39_c00292{width:20.442000px;}
._c_c00292{width:21.918000px;}
._3d_c00292{width:24.480000px;}
._a_c00292{width:25.968000px;}
._20_c00292{width:27.786000px;}
._23_c00292{width:29.880000px;}
._1c_c00292{width:31.344000px;}
._36_c00292{width:32.505000px;}
._e_c00292{width:34.176000px;}
._8_c00292{width:36.288000px;}
._31_c00292{width:38.184000px;}
._16_c00292{width:39.360000px;}
._1a_c00292{width:41.286000px;}
._24_c00292{width:43.482000px;}
._3b_c00292{width:44.844000px;}
._11_c00292{width:45.888000px;}
._1d_c00292{width:47.760000px;}
._3a_c00292{width:49.248000px;}
._10_c00292{width:50.328000px;}
._22_c00292{width:51.954000px;}
._35_c00292{width:53.712000px;}
._3f_c00292{width:56.064000px;}
._34_c00292{width:60.111000px;}
._37_c00292{width:61.704000px;}
._3c_c00292{width:62.934000px;}
._1e_c00292{width:66.768000px;}
._2a_c00292{width:71.646000px;}
._32_c00292{width:73.464000px;}
._33_c00292{width:75.984000px;}
._3e_c00292{width:80.826000px;}
._27_c00292{width:157.749000px;}
._30_c00292{width:170.952000px;}
._2f_c00292{width:174.336000px;}
._28_c00292{width:176.616000px;}
._19_c00292{width:179.112000px;}
._40_c00292{width:325.920000px;}
._26_c00292{width:353.520000px;}
._2c_c00292{width:441.570000px;}
._41_c00292{width:517.560000px;}
._2d_c00292{width:535.488000px;}
.fc2_c00292{color:transparent;}
.fc1_c00292{color:rgb(128,128,128);}
.fc0_c00292{color:rgb(0,0,0);}
.fs5_c00292{font-size:48.000000px;}
.fs4_c00292{font-size:84.000000px;}
.fs2_c00292{font-size:87.000000px;}
.fs0_c00292{font-size:96.000000px;}
.fs3_c00292{font-size:99.000000px;}
.fs1_c00292{font-size:102.000000px;}
.y0_c00292{bottom:0.000000px;}
.y27_c00292{bottom:3.105000px;}
.y26_c00292{bottom:7.228369px;}
.y25_c00292{bottom:95.520000px;}
.y24_c00292{bottom:130.170000px;}
.y23_c00292{bottom:164.970000px;}
.y22_c00292{bottom:198.720000px;}
.y21_c00292{bottom:232.920000px;}
.y20_c00292{bottom:266.520000px;}
.y1f_c00292{bottom:300.420000px;}
.y1e_c00292{bottom:334.470000px;}
.y1d_c00292{bottom:368.220000px;}
.y1c_c00292{bottom:401.970000px;}
.y1b_c00292{bottom:435.270000px;}
.y1a_c00292{bottom:469.170000px;}
.y19_c00292{bottom:502.470000px;}
.y18_c00292{bottom:536.220000px;}
.y17_c00292{bottom:569.070000px;}
.y16_c00292{bottom:602.820000px;}
.y15_c00292{bottom:636.120000px;}
.y14_c00292{bottom:668.970000px;}
.y13_c00292{bottom:702.270000px;}
.y12_c00292{bottom:736.020000px;}
.y11_c00292{bottom:769.770000px;}
.y10_c00292{bottom:802.920000px;}
.yf_c00292{bottom:836.670000px;}
.ye_c00292{bottom:870.120000px;}
.yd_c00292{bottom:903.420000px;}
.yc_c00292{bottom:936.570000px;}
.yb_c00292{bottom:969.570000px;}
.ya_c00292{bottom:1004.370000px;}
.y9_c00292{bottom:1037.370000px;}
.y8_c00292{bottom:1070.520000px;}
.y7_c00292{bottom:1103.970000px;}
.y6_c00292{bottom:1136.970000px;}
.y5_c00292{bottom:1169.670000px;}
.y4_c00292{bottom:1202.520000px;}
.y3_c00292{bottom:1236.270000px;}
.y2_c00292{bottom:1270.020000px;}
.y1_c00292{bottom:1296.570000px;}
.h3_c00292{height:13.200073px;}
.h4_c00292{height:43.804688px;}
.h2_c00292{height:121.546875px;}
.h0_c00292{height:1383.450000px;}
.h1_c00292{height:1383.750000px;}
.w2_c00292{width:104.875500px;}
.w0_c00292{width:878.025000px;}
.w1_c00292{width:878.250000px;}
.x0_c00292{left:0.000000px;}
.x7_c00292{left:46.650000px;}
.x6_c00292{left:48.900000px;}
.x5_c00292{left:49.950000px;}
.x3_c00292{left:51.000000px;}
.x2_c00292{left:52.650000px;}
.x8_c00292{left:55.350000px;}
.x9_c00292{left:57.000000px;}
.x4_c00292{left:101.700000px;}
.xa_c00292{left:318.300000px;}
.xb_c00292{left:390.826721px;}
.x1_c00292{left:532.650000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls2_c00292{letter-spacing:0.000000pt;}
.ls3_c00292{letter-spacing:5.333333pt;}
.ls1_c00292{letter-spacing:12.704000pt;}
.ls0_c00292{letter-spacing:26.901333pt;}
.ws2_c00292{word-spacing:-54.261333pt;}
.ws1_c00292{word-spacing:-45.333333pt;}
.ws0_c00292{word-spacing:-20.565333pt;}
.ws3_c00292{word-spacing:-17.994667pt;}
.ws4_c00292{word-spacing:0.000000pt;}
._2e_c00292{margin-left:-23.978667pt;}
._29_c00292{margin-left:-22.549333pt;}
._38_c00292{margin-left:-21.248000pt;}
._21_c00292{margin-left:-17.856000pt;}
._2b_c00292{margin-left:-16.192000pt;}
._2_c00292{margin-left:-12.874667pt;}
._1f_c00292{margin-left:-9.064000pt;}
._17_c00292{margin-left:-5.632000pt;}
._d_c00292{margin-left:-3.584000pt;}
._14_c00292{margin-left:-2.560000pt;}
._18_c00292{margin-left:-1.194667pt;}
._7_c00292{width:1.109333pt;}
._1b_c00292{width:2.048000pt;}
._6_c00292{width:3.008000pt;}
._9_c00292{width:3.904000pt;}
._5_c00292{width:5.653333pt;}
._1_c00292{width:6.720000pt;}
._15_c00292{width:7.680000pt;}
._b_c00292{width:8.805333pt;}
._3_c00292{width:9.882667pt;}
._0_c00292{width:10.922667pt;}
._f_c00292{width:12.202667pt;}
._12_c00292{width:13.824000pt;}
._13_c00292{width:14.784000pt;}
._4_c00292{width:15.872000pt;}
._25_c00292{width:16.853333pt;}
._39_c00292{width:18.170667pt;}
._c_c00292{width:19.482667pt;}
._3d_c00292{width:21.760000pt;}
._a_c00292{width:23.082667pt;}
._20_c00292{width:24.698667pt;}
._23_c00292{width:26.560000pt;}
._1c_c00292{width:27.861333pt;}
._36_c00292{width:28.893333pt;}
._e_c00292{width:30.378667pt;}
._8_c00292{width:32.256000pt;}
._31_c00292{width:33.941333pt;}
._16_c00292{width:34.986667pt;}
._1a_c00292{width:36.698667pt;}
._24_c00292{width:38.650667pt;}
._3b_c00292{width:39.861333pt;}
._11_c00292{width:40.789333pt;}
._1d_c00292{width:42.453333pt;}
._3a_c00292{width:43.776000pt;}
._10_c00292{width:44.736000pt;}
._22_c00292{width:46.181333pt;}
._35_c00292{width:47.744000pt;}
._3f_c00292{width:49.834667pt;}
._34_c00292{width:53.432000pt;}
._37_c00292{width:54.848000pt;}
._3c_c00292{width:55.941333pt;}
._1e_c00292{width:59.349333pt;}
._2a_c00292{width:63.685333pt;}
._32_c00292{width:65.301333pt;}
._33_c00292{width:67.541333pt;}
._3e_c00292{width:71.845333pt;}
._27_c00292{width:140.221333pt;}
._30_c00292{width:151.957333pt;}
._2f_c00292{width:154.965333pt;}
._28_c00292{width:156.992000pt;}
._19_c00292{width:159.210667pt;}
._40_c00292{width:289.706667pt;}
._26_c00292{width:314.240000pt;}
._2c_c00292{width:392.506667pt;}
._41_c00292{width:460.053333pt;}
._2d_c00292{width:475.989333pt;}
.fs5_c00292{font-size:42.666667pt;}
.fs4_c00292{font-size:74.666667pt;}
.fs2_c00292{font-size:77.333333pt;}
.fs0_c00292{font-size:85.333333pt;}
.fs3_c00292{font-size:88.000000pt;}
.fs1_c00292{font-size:90.666667pt;}
.y0_c00292{bottom:0.000000pt;}
.y27_c00292{bottom:2.760000pt;}
.y26_c00292{bottom:6.425217pt;}
.y25_c00292{bottom:84.906667pt;}
.y24_c00292{bottom:115.706667pt;}
.y23_c00292{bottom:146.640000pt;}
.y22_c00292{bottom:176.640000pt;}
.y21_c00292{bottom:207.040000pt;}
.y20_c00292{bottom:236.906667pt;}
.y1f_c00292{bottom:267.040000pt;}
.y1e_c00292{bottom:297.306667pt;}
.y1d_c00292{bottom:327.306667pt;}
.y1c_c00292{bottom:357.306667pt;}
.y1b_c00292{bottom:386.906667pt;}
.y1a_c00292{bottom:417.040000pt;}
.y19_c00292{bottom:446.640000pt;}
.y18_c00292{bottom:476.640000pt;}
.y17_c00292{bottom:505.840000pt;}
.y16_c00292{bottom:535.840000pt;}
.y15_c00292{bottom:565.440000pt;}
.y14_c00292{bottom:594.640000pt;}
.y13_c00292{bottom:624.240000pt;}
.y12_c00292{bottom:654.240000pt;}
.y11_c00292{bottom:684.240000pt;}
.y10_c00292{bottom:713.706667pt;}
.yf_c00292{bottom:743.706667pt;}
.ye_c00292{bottom:773.440000pt;}
.yd_c00292{bottom:803.040000pt;}
.yc_c00292{bottom:832.506667pt;}
.yb_c00292{bottom:861.840000pt;}
.ya_c00292{bottom:892.773333pt;}
.y9_c00292{bottom:922.106667pt;}
.y8_c00292{bottom:951.573333pt;}
.y7_c00292{bottom:981.306667pt;}
.y6_c00292{bottom:1010.640000pt;}
.y5_c00292{bottom:1039.706667pt;}
.y4_c00292{bottom:1068.906667pt;}
.y3_c00292{bottom:1098.906667pt;}
.y2_c00292{bottom:1128.906667pt;}
.y1_c00292{bottom:1152.506667pt;}
.h3_c00292{height:11.733399pt;}
.h4_c00292{height:38.937500pt;}
.h2_c00292{height:108.041667pt;}
.h0_c00292{height:1229.733333pt;}
.h1_c00292{height:1230.000000pt;}
.w2_c00292{width:93.222667pt;}
.w0_c00292{width:780.466667pt;}
.w1_c00292{width:780.666667pt;}
.x0_c00292{left:0.000000pt;}
.x7_c00292{left:41.466667pt;}
.x6_c00292{left:43.466667pt;}
.x5_c00292{left:44.400000pt;}
.x3_c00292{left:45.333333pt;}
.x2_c00292{left:46.800000pt;}
.x8_c00292{left:49.200000pt;}
.x9_c00292{left:50.666667pt;}
.x4_c00292{left:90.400000pt;}
.xa_c00292{left:282.933333pt;}
.xb_c00292{left:347.401530pt;}
.x1_c00292{left:473.466667pt;}
}





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

.ir_c00293:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00293;src:url('chunks/assets/font_57cf7e08b82ba59c893b9813.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_4dc31a9d52be4a9335920fd1.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls1_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:11.964000px;}
.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:-63.504000px;}
.ws1_c00293{word-spacing:0.000000px;}
._2_c00293{margin-left:-17.088000px;}
._2f_c00293{margin-left:-12.000000px;}
._33_c00293{margin-left:-9.504000px;}
._3_c00293{margin-left:-8.448000px;}
._5_c00293{margin-left:-7.104000px;}
._32_c00293{margin-left:-6.048000px;}
._4_c00293{margin-left:-4.704000px;}
._1c_c00293{margin-left:-2.640000px;}
._16_c00293{margin-left:-1.464000px;}
._18_c00293{width:1.248000px;}
._8_c00293{width:2.256000px;}
._0_c00293{width:3.864000px;}
._b_c00293{width:5.568000px;}
._6_c00293{width:7.032000px;}
._f_c00293{width:8.856000px;}
._20_c00293{width:9.936000px;}
._2e_c00293{width:11.928000px;}
._1_c00293{width:12.936000px;}
._7_c00293{width:14.592000px;}
._1e_c00293{width:16.176000px;}
._14_c00293{width:17.328000px;}
._1f_c00293{width:18.576000px;}
._2d_c00293{width:19.584000px;}
._e_c00293{width:20.592000px;}
._22_c00293{width:21.768000px;}
._1b_c00293{width:24.288000px;}
._a_c00293{width:26.160000px;}
._1d_c00293{width:27.840000px;}
._c_c00293{width:29.904000px;}
._11_c00293{width:31.272000px;}
._34_c00293{width:32.712000px;}
._10_c00293{width:33.888000px;}
._2c_c00293{width:35.112000px;}
._1a_c00293{width:36.480000px;}
._9_c00293{width:38.400000px;}
._35_c00293{width:39.576000px;}
._12_c00293{width:40.776000px;}
._15_c00293{width:43.152000px;}
._d_c00293{width:44.664000px;}
._23_c00293{width:45.864000px;}
._19_c00293{width:47.112000px;}
._21_c00293{width:49.248000px;}
._25_c00293{width:50.580000px;}
._27_c00293{width:51.936000px;}
._26_c00293{width:53.448000px;}
._28_c00293{width:55.896000px;}
._24_c00293{width:57.504000px;}
._38_c00293{width:59.664000px;}
._36_c00293{width:62.544000px;}
._13_c00293{width:64.512000px;}
._37_c00293{width:66.528000px;}
._2a_c00293{width:68.688000px;}
._29_c00293{width:77.616000px;}
._2b_c00293{width:88.680000px;}
._30_c00293{width:165.792000px;}
._31_c00293{width:181.800000px;}
._17_c00293{width:187.488000px;}
.fc2_c00293{color:transparent;}
.fc1_c00293{color:rgb(128,128,128);}
.fc0_c00293{color:rgb(0,0,0);}
.fs2_c00293{font-size:48.000000px;}
.fs0_c00293{font-size:84.000000px;}
.fs1_c00293{font-size:96.000000px;}
.y0_c00293{bottom:0.000000px;}
.y26_c00293{bottom:3.105000px;}
.y25_c00293{bottom:7.228369px;}
.y24_c00293{bottom:103.620000px;}
.y23_c00293{bottom:139.020000px;}
.y22_c00293{bottom:172.470000px;}
.y21_c00293{bottom:206.820000px;}
.y20_c00293{bottom:240.870000px;}
.y1f_c00293{bottom:275.070000px;}
.y1e_c00293{bottom:309.720000px;}
.y1d_c00293{bottom:343.470000px;}
.y1c_c00293{bottom:377.670000px;}
.y1b_c00293{bottom:411.720000px;}
.y1a_c00293{bottom:445.470000px;}
.y19_c00293{bottom:479.970000px;}
.y18_c00293{bottom:513.720000px;}
.y17_c00293{bottom:547.470000px;}
.y16_c00293{bottom:581.520000px;}
.y15_c00293{bottom:614.970000px;}
.y14_c00293{bottom:649.020000px;}
.y13_c00293{bottom:682.470000px;}
.y12_c00293{bottom:716.820000px;}
.y11_c00293{bottom:750.270000px;}
.y1_c00293{bottom:754.920000px;}
.y10_c00293{bottom:784.320000px;}
.yf_c00293{bottom:817.470000px;}
.ye_c00293{bottom:851.220000px;}
.yd_c00293{bottom:885.570000px;}
.yc_c00293{bottom:919.020000px;}
.yb_c00293{bottom:952.320000px;}
.ya_c00293{bottom:985.170000px;}
.y9_c00293{bottom:1018.620000px;}
.y8_c00293{bottom:1052.370000px;}
.y7_c00293{bottom:1085.370000px;}
.y6_c00293{bottom:1119.720000px;}
.y5_c00293{bottom:1152.570000px;}
.y4_c00293{bottom:1186.620000px;}
.y3_c00293{bottom:1219.320000px;}
.y2_c00293{bottom:1253.070000px;}
.h4_c00293{height:13.200073px;}
.h5_c00293{height:43.804688px;}
.h2_c00293{height:98.314453px;}
.h3_c00293{height:121.546875px;}
.h1_c00293{height:1359.000000px;}
.h0_c00293{height:1359.150000px;}
.w2_c00293{width:104.875500px;}
.w1_c00293{width:848.250000px;}
.w0_c00293{width:848.325000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:170.400000px;}
.xb_c00293{left:230.850000px;}
.xa_c00293{left:231.900000px;}
.xc_c00293{left:234.150000px;}
.xd_c00293{left:235.200000px;}
.x9_c00293{left:236.850000px;}
.x7_c00293{left:237.900000px;}
.x5_c00293{left:240.600000px;}
.x8_c00293{left:241.650000px;}
.x2_c00293{left:242.700000px;}
.x4_c00293{left:243.900000px;}
.x6_c00293{left:244.950000px;}
.x3_c00293{left:294.600000px;}
.xe_c00293{left:375.976730px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls1_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:10.634667pt;}
.ws0_c00293{word-spacing:-56.448000pt;}
.ws1_c00293{word-spacing:0.000000pt;}
._2_c00293{margin-left:-15.189333pt;}
._2f_c00293{margin-left:-10.666667pt;}
._33_c00293{margin-left:-8.448000pt;}
._3_c00293{margin-left:-7.509333pt;}
._5_c00293{margin-left:-6.314667pt;}
._32_c00293{margin-left:-5.376000pt;}
._4_c00293{margin-left:-4.181333pt;}
._1c_c00293{margin-left:-2.346667pt;}
._16_c00293{margin-left:-1.301333pt;}
._18_c00293{width:1.109333pt;}
._8_c00293{width:2.005333pt;}
._0_c00293{width:3.434667pt;}
._b_c00293{width:4.949333pt;}
._6_c00293{width:6.250667pt;}
._f_c00293{width:7.872000pt;}
._20_c00293{width:8.832000pt;}
._2e_c00293{width:10.602667pt;}
._1_c00293{width:11.498667pt;}
._7_c00293{width:12.970667pt;}
._1e_c00293{width:14.378667pt;}
._14_c00293{width:15.402667pt;}
._1f_c00293{width:16.512000pt;}
._2d_c00293{width:17.408000pt;}
._e_c00293{width:18.304000pt;}
._22_c00293{width:19.349333pt;}
._1b_c00293{width:21.589333pt;}
._a_c00293{width:23.253333pt;}
._1d_c00293{width:24.746667pt;}
._c_c00293{width:26.581333pt;}
._11_c00293{width:27.797333pt;}
._34_c00293{width:29.077333pt;}
._10_c00293{width:30.122667pt;}
._2c_c00293{width:31.210667pt;}
._1a_c00293{width:32.426667pt;}
._9_c00293{width:34.133333pt;}
._35_c00293{width:35.178667pt;}
._12_c00293{width:36.245333pt;}
._15_c00293{width:38.357333pt;}
._d_c00293{width:39.701333pt;}
._23_c00293{width:40.768000pt;}
._19_c00293{width:41.877333pt;}
._21_c00293{width:43.776000pt;}
._25_c00293{width:44.960000pt;}
._27_c00293{width:46.165333pt;}
._26_c00293{width:47.509333pt;}
._28_c00293{width:49.685333pt;}
._24_c00293{width:51.114667pt;}
._38_c00293{width:53.034667pt;}
._36_c00293{width:55.594667pt;}
._13_c00293{width:57.344000pt;}
._37_c00293{width:59.136000pt;}
._2a_c00293{width:61.056000pt;}
._29_c00293{width:68.992000pt;}
._2b_c00293{width:78.826667pt;}
._30_c00293{width:147.370667pt;}
._31_c00293{width:161.600000pt;}
._17_c00293{width:166.656000pt;}
.fs2_c00293{font-size:42.666667pt;}
.fs0_c00293{font-size:74.666667pt;}
.fs1_c00293{font-size:85.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y26_c00293{bottom:2.760000pt;}
.y25_c00293{bottom:6.425217pt;}
.y24_c00293{bottom:92.106667pt;}
.y23_c00293{bottom:123.573333pt;}
.y22_c00293{bottom:153.306667pt;}
.y21_c00293{bottom:183.840000pt;}
.y20_c00293{bottom:214.106667pt;}
.y1f_c00293{bottom:244.506667pt;}
.y1e_c00293{bottom:275.306667pt;}
.y1d_c00293{bottom:305.306667pt;}
.y1c_c00293{bottom:335.706667pt;}
.y1b_c00293{bottom:365.973333pt;}
.y1a_c00293{bottom:395.973333pt;}
.y19_c00293{bottom:426.640000pt;}
.y18_c00293{bottom:456.640000pt;}
.y17_c00293{bottom:486.640000pt;}
.y16_c00293{bottom:516.906667pt;}
.y15_c00293{bottom:546.640000pt;}
.y14_c00293{bottom:576.906667pt;}
.y13_c00293{bottom:606.640000pt;}
.y12_c00293{bottom:637.173333pt;}
.y11_c00293{bottom:666.906667pt;}
.y1_c00293{bottom:671.040000pt;}
.y10_c00293{bottom:697.173333pt;}
.yf_c00293{bottom:726.640000pt;}
.ye_c00293{bottom:756.640000pt;}
.yd_c00293{bottom:787.173333pt;}
.yc_c00293{bottom:816.906667pt;}
.yb_c00293{bottom:846.506667pt;}
.ya_c00293{bottom:875.706667pt;}
.y9_c00293{bottom:905.440000pt;}
.y8_c00293{bottom:935.440000pt;}
.y7_c00293{bottom:964.773333pt;}
.y6_c00293{bottom:995.306667pt;}
.y5_c00293{bottom:1024.506667pt;}
.y4_c00293{bottom:1054.773333pt;}
.y3_c00293{bottom:1083.840000pt;}
.y2_c00293{bottom:1113.840000pt;}
.h4_c00293{height:11.733399pt;}
.h5_c00293{height:38.937500pt;}
.h2_c00293{height:87.390625pt;}
.h3_c00293{height:108.041667pt;}
.h1_c00293{height:1208.000000pt;}
.h0_c00293{height:1208.133333pt;}
.w2_c00293{width:93.222667pt;}
.w1_c00293{width:754.000000pt;}
.w0_c00293{width:754.066667pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:151.466667pt;}
.xb_c00293{left:205.200000pt;}
.xa_c00293{left:206.133333pt;}
.xc_c00293{left:208.133333pt;}
.xd_c00293{left:209.066667pt;}
.x9_c00293{left:210.533333pt;}
.x7_c00293{left:211.466667pt;}
.x5_c00293{left:213.866667pt;}
.x8_c00293{left:214.800000pt;}
.x2_c00293{left:215.733333pt;}
.x4_c00293{left:216.800000pt;}
.x6_c00293{left:217.733333pt;}
.x3_c00293{left:261.866667pt;}
.xe_c00293{left:334.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a83989c4819c74aecc20929d.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_b1bb2210e6201dfb6fd417a3.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:-63.504000px;}
.ws1_c00294{word-spacing:0.000000px;}
._33_c00294{margin-left:-85.920000px;}
._1c_c00294{margin-left:-30.240000px;}
._25_c00294{margin-left:-18.912000px;}
._12_c00294{margin-left:-14.016000px;}
._13_c00294{margin-left:-12.384000px;}
._38_c00294{margin-left:-10.752000px;}
._19_c00294{margin-left:-8.928000px;}
._11_c00294{margin-left:-7.680000px;}
._36_c00294{margin-left:-6.336000px;}
._14_c00294{margin-left:-5.184000px;}
._2e_c00294{margin-left:-4.128000px;}
._f_c00294{margin-left:-2.592000px;}
._27_c00294{margin-left:-1.344000px;}
._1d_c00294{width:1.152000px;}
._0_c00294{width:2.304000px;}
._a_c00294{width:3.456000px;}
._5_c00294{width:4.704000px;}
._9_c00294{width:5.952000px;}
._8_c00294{width:7.776000px;}
._d_c00294{width:9.408000px;}
._7_c00294{width:10.656000px;}
._28_c00294{width:11.808000px;}
._b_c00294{width:13.056000px;}
._2a_c00294{width:14.496000px;}
._29_c00294{width:15.648000px;}
._26_c00294{width:16.800000px;}
._10_c00294{width:18.528000px;}
._e_c00294{width:19.680000px;}
._2d_c00294{width:21.216000px;}
._35_c00294{width:24.288000px;}
._c_c00294{width:25.440000px;}
._1a_c00294{width:27.552000px;}
._3a_c00294{width:29.088000px;}
._4_c00294{width:30.624000px;}
._34_c00294{width:31.680000px;}
._1_c00294{width:33.408000px;}
._2c_c00294{width:34.560000px;}
._32_c00294{width:36.096000px;}
._16_c00294{width:37.440000px;}
._17_c00294{width:38.784000px;}
._2b_c00294{width:40.320000px;}
._2_c00294{width:41.568000px;}
._21_c00294{width:42.816000px;}
._3_c00294{width:43.872000px;}
._20_c00294{width:45.600000px;}
._2f_c00294{width:46.848000px;}
._1e_c00294{width:49.152000px;}
._1b_c00294{width:52.896000px;}
._22_c00294{width:54.144000px;}
._15_c00294{width:55.584000px;}
._1f_c00294{width:58.368000px;}
._39_c00294{width:60.864000px;}
._18_c00294{width:62.880000px;}
._23_c00294{width:64.704000px;}
._37_c00294{width:67.488000px;}
._30_c00294{width:69.408000px;}
._31_c00294{width:71.328000px;}
._24_c00294{width:73.728000px;}
._6_c00294{width:74.976000px;}
.fc2_c00294{color:transparent;}
.fc1_c00294{color:rgb(128,128,128);}
.fc0_c00294{color:rgb(0,0,0);}
.fs2_c00294{font-size:48.000000px;}
.fs1_c00294{font-size:84.000000px;}
.fs0_c00294{font-size:96.000000px;}
.y0_c00294{bottom:0.000000px;}
.y26_c00294{bottom:3.105000px;}
.y25_c00294{bottom:7.228371px;}
.y24_c00294{bottom:79.965000px;}
.y23_c00294{bottom:115.065000px;}
.y22_c00294{bottom:148.965000px;}
.y21_c00294{bottom:183.615000px;}
.y20_c00294{bottom:217.665000px;}
.y1f_c00294{bottom:251.565000px;}
.y1e_c00294{bottom:285.615000px;}
.y1d_c00294{bottom:319.365000px;}
.y1c_c00294{bottom:353.415000px;}
.y1b_c00294{bottom:387.465000px;}
.y1a_c00294{bottom:420.615000px;}
.y19_c00294{bottom:454.365000px;}
.y18_c00294{bottom:487.815000px;}
.y17_c00294{bottom:521.415000px;}
.y16_c00294{bottom:554.565000px;}
.y15_c00294{bottom:588.615000px;}
.y14_c00294{bottom:622.065000px;}
.y13_c00294{bottom:655.215000px;}
.y12_c00294{bottom:688.515000px;}
.y11_c00294{bottom:721.965000px;}
.y10_c00294{bottom:755.415000px;}
.yf_c00294{bottom:788.415000px;}
.ye_c00294{bottom:821.565000px;}
.yd_c00294{bottom:854.565000px;}
.yc_c00294{bottom:887.715000px;}
.yb_c00294{bottom:921.465000px;}
.ya_c00294{bottom:954.765000px;}
.y9_c00294{bottom:987.615000px;}
.y8_c00294{bottom:1021.665000px;}
.y7_c00294{bottom:1055.415000px;}
.y6_c00294{bottom:1088.115000px;}
.y5_c00294{bottom:1121.565000px;}
.y4_c00294{bottom:1154.865000px;}
.y3_c00294{bottom:1188.015000px;}
.y2_c00294{bottom:1221.165000px;}
.y1_c00294{bottom:1254.915000px;}
.h3_c00294{height:13.200074px;}
.h4_c00294{height:43.804688px;}
.h2_c00294{height:121.546875px;}
.h0_c00294{height:1360.275000px;}
.h1_c00294{height:1360.500000px;}
.w2_c00294{width:104.875500px;}
.w1_c00294{width:863.250000px;}
.w0_c00294{width:863.475000px;}
.x0_c00294{left:0.000000px;}
.x6_c00294{left:66.600000px;}
.x5_c00294{left:68.250000px;}
.x3_c00294{left:69.300000px;}
.x4_c00294{left:71.550000px;}
.x1_c00294{left:72.600000px;}
.x2_c00294{left:74.700000px;}
.x8_c00294{left:383.551758px;}
.x7_c00294{left:582.450000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:-56.448000pt;}
.ws1_c00294{word-spacing:0.000000pt;}
._33_c00294{margin-left:-76.373333pt;}
._1c_c00294{margin-left:-26.880000pt;}
._25_c00294{margin-left:-16.810667pt;}
._12_c00294{margin-left:-12.458667pt;}
._13_c00294{margin-left:-11.008000pt;}
._38_c00294{margin-left:-9.557333pt;}
._19_c00294{margin-left:-7.936000pt;}
._11_c00294{margin-left:-6.826667pt;}
._36_c00294{margin-left:-5.632000pt;}
._14_c00294{margin-left:-4.608000pt;}
._2e_c00294{margin-left:-3.669333pt;}
._f_c00294{margin-left:-2.304000pt;}
._27_c00294{margin-left:-1.194667pt;}
._1d_c00294{width:1.024000pt;}
._0_c00294{width:2.048000pt;}
._a_c00294{width:3.072000pt;}
._5_c00294{width:4.181333pt;}
._9_c00294{width:5.290667pt;}
._8_c00294{width:6.912000pt;}
._d_c00294{width:8.362667pt;}
._7_c00294{width:9.472000pt;}
._28_c00294{width:10.496000pt;}
._b_c00294{width:11.605333pt;}
._2a_c00294{width:12.885333pt;}
._29_c00294{width:13.909333pt;}
._26_c00294{width:14.933333pt;}
._10_c00294{width:16.469333pt;}
._e_c00294{width:17.493333pt;}
._2d_c00294{width:18.858667pt;}
._35_c00294{width:21.589333pt;}
._c_c00294{width:22.613333pt;}
._1a_c00294{width:24.490667pt;}
._3a_c00294{width:25.856000pt;}
._4_c00294{width:27.221333pt;}
._34_c00294{width:28.160000pt;}
._1_c00294{width:29.696000pt;}
._2c_c00294{width:30.720000pt;}
._32_c00294{width:32.085333pt;}
._16_c00294{width:33.280000pt;}
._17_c00294{width:34.474667pt;}
._2b_c00294{width:35.840000pt;}
._2_c00294{width:36.949333pt;}
._21_c00294{width:38.058667pt;}
._3_c00294{width:38.997333pt;}
._20_c00294{width:40.533333pt;}
._2f_c00294{width:41.642667pt;}
._1e_c00294{width:43.690667pt;}
._1b_c00294{width:47.018667pt;}
._22_c00294{width:48.128000pt;}
._15_c00294{width:49.408000pt;}
._1f_c00294{width:51.882667pt;}
._39_c00294{width:54.101333pt;}
._18_c00294{width:55.893333pt;}
._23_c00294{width:57.514667pt;}
._37_c00294{width:59.989333pt;}
._30_c00294{width:61.696000pt;}
._31_c00294{width:63.402667pt;}
._24_c00294{width:65.536000pt;}
._6_c00294{width:66.645333pt;}
.fs2_c00294{font-size:42.666667pt;}
.fs1_c00294{font-size:74.666667pt;}
.fs0_c00294{font-size:85.333333pt;}
.y0_c00294{bottom:0.000000pt;}
.y26_c00294{bottom:2.760000pt;}
.y25_c00294{bottom:6.425219pt;}
.y24_c00294{bottom:71.080000pt;}
.y23_c00294{bottom:102.280000pt;}
.y22_c00294{bottom:132.413333pt;}
.y21_c00294{bottom:163.213333pt;}
.y20_c00294{bottom:193.480000pt;}
.y1f_c00294{bottom:223.613333pt;}
.y1e_c00294{bottom:253.880000pt;}
.y1d_c00294{bottom:283.880000pt;}
.y1c_c00294{bottom:314.146667pt;}
.y1b_c00294{bottom:344.413333pt;}
.y1a_c00294{bottom:373.880000pt;}
.y19_c00294{bottom:403.880000pt;}
.y18_c00294{bottom:433.613333pt;}
.y17_c00294{bottom:463.480000pt;}
.y16_c00294{bottom:492.946667pt;}
.y15_c00294{bottom:523.213333pt;}
.y14_c00294{bottom:552.946667pt;}
.y13_c00294{bottom:582.413333pt;}
.y12_c00294{bottom:612.013333pt;}
.y11_c00294{bottom:641.746667pt;}
.y10_c00294{bottom:671.480000pt;}
.yf_c00294{bottom:700.813333pt;}
.ye_c00294{bottom:730.280000pt;}
.yd_c00294{bottom:759.613333pt;}
.yc_c00294{bottom:789.080000pt;}
.yb_c00294{bottom:819.080000pt;}
.ya_c00294{bottom:848.680000pt;}
.y9_c00294{bottom:877.880000pt;}
.y8_c00294{bottom:908.146667pt;}
.y7_c00294{bottom:938.146667pt;}
.y6_c00294{bottom:967.213333pt;}
.y5_c00294{bottom:996.946667pt;}
.y4_c00294{bottom:1026.546667pt;}
.y3_c00294{bottom:1056.013333pt;}
.y2_c00294{bottom:1085.480000pt;}
.y1_c00294{bottom:1115.480000pt;}
.h3_c00294{height:11.733399pt;}
.h4_c00294{height:38.937500pt;}
.h2_c00294{height:108.041667pt;}
.h0_c00294{height:1209.133333pt;}
.h1_c00294{height:1209.333333pt;}
.w2_c00294{width:93.222667pt;}
.w1_c00294{width:767.333333pt;}
.w0_c00294{width:767.533333pt;}
.x0_c00294{left:0.000000pt;}
.x6_c00294{left:59.200000pt;}
.x5_c00294{left:60.666667pt;}
.x3_c00294{left:61.600000pt;}
.x4_c00294{left:63.600000pt;}
.x1_c00294{left:64.533333pt;}
.x2_c00294{left:66.400000pt;}
.x8_c00294{left:340.934896pt;}
.x7_c00294{left:517.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ac70cea3e7accc466426796.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_2f08178ac98b4e502bbeaab1.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00295{word-spacing:-63.504000px;}
.ws0_c00295{word-spacing:-51.000000px;}
.ws2_c00295{word-spacing:0.000000px;}
._3e_c00295{margin-left:-70.752000px;}
._10_c00295{margin-left:-28.128000px;}
._3b_c00295{margin-left:-24.192000px;}
._19_c00295{margin-left:-18.336000px;}
._23_c00295{margin-left:-14.496000px;}
._38_c00295{margin-left:-13.344000px;}
._32_c00295{margin-left:-11.760000px;}
._1f_c00295{margin-left:-10.464000px;}
._20_c00295{margin-left:-8.256000px;}
._1e_c00295{margin-left:-6.816000px;}
._24_c00295{margin-left:-5.376000px;}
._b_c00295{margin-left:-4.032000px;}
._8_c00295{margin-left:-2.976000px;}
._9_c00295{margin-left:-1.440000px;}
._14_c00295{width:1.344000px;}
._2_c00295{width:2.688000px;}
._0_c00295{width:4.416000px;}
._5_c00295{width:5.568000px;}
._7_c00295{width:7.008000px;}
._d_c00295{width:8.064000px;}
._26_c00295{width:9.600000px;}
._4_c00295{width:10.656000px;}
._37_c00295{width:11.712000px;}
._c_c00295{width:12.768000px;}
._33_c00295{width:13.920000px;}
._11_c00295{width:15.072000px;}
._f_c00295{width:17.280000px;}
._6_c00295{width:18.528000px;}
._28_c00295{width:19.584000px;}
._36_c00295{width:20.736000px;}
._29_c00295{width:21.792000px;}
._13_c00295{width:25.152000px;}
._17_c00295{width:26.880000px;}
._e_c00295{width:28.416000px;}
._27_c00295{width:29.568000px;}
._25_c00295{width:30.816000px;}
._15_c00295{width:32.736000px;}
._12_c00295{width:34.176000px;}
._1c_c00295{width:36.192000px;}
._a_c00295{width:38.400000px;}
._21_c00295{width:40.512000px;}
._3_c00295{width:42.528000px;}
._1_c00295{width:44.400000px;}
._35_c00295{width:45.408000px;}
._2f_c00295{width:47.040000px;}
._16_c00295{width:48.672000px;}
._22_c00295{width:50.112000px;}
._1d_c00295{width:52.224000px;}
._2e_c00295{width:53.568000px;}
._2a_c00295{width:55.968000px;}
._1b_c00295{width:58.464000px;}
._34_c00295{width:59.808000px;}
._2c_c00295{width:64.320000px;}
._3a_c00295{width:66.720000px;}
._2b_c00295{width:71.328000px;}
._2d_c00295{width:73.344000px;}
._31_c00295{width:84.192000px;}
._30_c00295{width:91.008000px;}
._1a_c00295{width:116.352000px;}
._3c_c00295{width:174.528000px;}
._39_c00295{width:176.976000px;}
._3f_c00295{width:627.840000px;}
._3d_c00295{width:642.528000px;}
._18_c00295{width:743.040000px;}
.fc2_c00295{color:transparent;}
.fc1_c00295{color:rgb(128,128,128);}
.fc0_c00295{color:rgb(0,0,0);}
.fs3_c00295{font-size:48.000000px;}
.fs2_c00295{font-size:84.000000px;}
.fs0_c00295{font-size:96.000000px;}
.fs1_c00295{font-size:102.000000px;}
.y0_c00295{bottom:0.000000px;}
.y26_c00295{bottom:3.105000px;}
.y25_c00295{bottom:7.228357px;}
.y24_c00295{bottom:99.330000px;}
.y23_c00295{bottom:127.530000px;}
.y22_c00295{bottom:162.780000px;}
.y21_c00295{bottom:196.830000px;}
.y20_c00295{bottom:231.630000px;}
.y1f_c00295{bottom:265.980000px;}
.y1e_c00295{bottom:300.030000px;}
.y1d_c00295{bottom:335.130000px;}
.y1c_c00295{bottom:369.180000px;}
.y1b_c00295{bottom:403.680000px;}
.y1a_c00295{bottom:437.730000px;}
.y19_c00295{bottom:470.880000px;}
.y18_c00295{bottom:505.980000px;}
.y17_c00295{bottom:539.730000px;}
.y16_c00295{bottom:573.480000px;}
.y15_c00295{bottom:607.530000px;}
.y14_c00295{bottom:641.430000px;}
.y13_c00295{bottom:675.630000px;}
.y12_c00295{bottom:709.830000px;}
.y11_c00295{bottom:742.830000px;}
.y10_c00295{bottom:776.880000px;}
.yf_c00295{bottom:811.380000px;}
.ye_c00295{bottom:842.730000px;}
.yd_c00295{bottom:878.880000px;}
.yc_c00295{bottom:912.330000px;}
.yb_c00295{bottom:945.780000px;}
.ya_c00295{bottom:978.780000px;}
.y9_c00295{bottom:1011.780000px;}
.y8_c00295{bottom:1045.530000px;}
.y7_c00295{bottom:1078.680000px;}
.y6_c00295{bottom:1112.430000px;}
.y5_c00295{bottom:1145.880000px;}
.y4_c00295{bottom:1179.630000px;}
.y3_c00295{bottom:1211.280000px;}
.y2_c00295{bottom:1246.080000px;}
.y1_c00295{bottom:1279.830000px;}
.h3_c00295{height:13.200074px;}
.h4_c00295{height:43.804688px;}
.h2_c00295{height:121.546875px;}
.h0_c00295{height:1382.700000px;}
.h1_c00295{height:1383.000000px;}
.w2_c00295{width:104.875500px;}
.w0_c00295{width:863.175000px;}
.w1_c00295{width:863.250000px;}
.x0_c00295{left:0.000000px;}
.xc_c00295{left:247.650000px;}
.xa_c00295{left:248.700000px;}
.x9_c00295{left:250.350000px;}
.x8_c00295{left:252.000000px;}
.x6_c00295{left:254.100000px;}
.x2_c00295{left:256.200000px;}
.x3_c00295{left:257.850000px;}
.x1_c00295{left:261.150000px;}
.xb_c00295{left:292.500000px;}
.x5_c00295{left:306.450000px;}
.x4_c00295{left:308.100000px;}
.xd_c00295{left:352.950000px;}
.xe_c00295{left:383.401749px;}
.x7_c00295{left:410.100000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws1_c00295{word-spacing:-56.448000pt;}
.ws0_c00295{word-spacing:-45.333333pt;}
.ws2_c00295{word-spacing:0.000000pt;}
._3e_c00295{margin-left:-62.890667pt;}
._10_c00295{margin-left:-25.002667pt;}
._3b_c00295{margin-left:-21.504000pt;}
._19_c00295{margin-left:-16.298667pt;}
._23_c00295{margin-left:-12.885333pt;}
._38_c00295{margin-left:-11.861333pt;}
._32_c00295{margin-left:-10.453333pt;}
._1f_c00295{margin-left:-9.301333pt;}
._20_c00295{margin-left:-7.338667pt;}
._1e_c00295{margin-left:-6.058667pt;}
._24_c00295{margin-left:-4.778667pt;}
._b_c00295{margin-left:-3.584000pt;}
._8_c00295{margin-left:-2.645333pt;}
._9_c00295{margin-left:-1.280000pt;}
._14_c00295{width:1.194667pt;}
._2_c00295{width:2.389333pt;}
._0_c00295{width:3.925333pt;}
._5_c00295{width:4.949333pt;}
._7_c00295{width:6.229333pt;}
._d_c00295{width:7.168000pt;}
._26_c00295{width:8.533333pt;}
._4_c00295{width:9.472000pt;}
._37_c00295{width:10.410667pt;}
._c_c00295{width:11.349333pt;}
._33_c00295{width:12.373333pt;}
._11_c00295{width:13.397333pt;}
._f_c00295{width:15.360000pt;}
._6_c00295{width:16.469333pt;}
._28_c00295{width:17.408000pt;}
._36_c00295{width:18.432000pt;}
._29_c00295{width:19.370667pt;}
._13_c00295{width:22.357333pt;}
._17_c00295{width:23.893333pt;}
._e_c00295{width:25.258667pt;}
._27_c00295{width:26.282667pt;}
._25_c00295{width:27.392000pt;}
._15_c00295{width:29.098667pt;}
._12_c00295{width:30.378667pt;}
._1c_c00295{width:32.170667pt;}
._a_c00295{width:34.133333pt;}
._21_c00295{width:36.010667pt;}
._3_c00295{width:37.802667pt;}
._1_c00295{width:39.466667pt;}
._35_c00295{width:40.362667pt;}
._2f_c00295{width:41.813333pt;}
._16_c00295{width:43.264000pt;}
._22_c00295{width:44.544000pt;}
._1d_c00295{width:46.421333pt;}
._2e_c00295{width:47.616000pt;}
._2a_c00295{width:49.749333pt;}
._1b_c00295{width:51.968000pt;}
._34_c00295{width:53.162667pt;}
._2c_c00295{width:57.173333pt;}
._3a_c00295{width:59.306667pt;}
._2b_c00295{width:63.402667pt;}
._2d_c00295{width:65.194667pt;}
._31_c00295{width:74.837333pt;}
._30_c00295{width:80.896000pt;}
._1a_c00295{width:103.424000pt;}
._3c_c00295{width:155.136000pt;}
._39_c00295{width:157.312000pt;}
._3f_c00295{width:558.080000pt;}
._3d_c00295{width:571.136000pt;}
._18_c00295{width:660.480000pt;}
.fs3_c00295{font-size:42.666667pt;}
.fs2_c00295{font-size:74.666667pt;}
.fs0_c00295{font-size:85.333333pt;}
.fs1_c00295{font-size:90.666667pt;}
.y0_c00295{bottom:0.000000pt;}
.y26_c00295{bottom:2.760000pt;}
.y25_c00295{bottom:6.425206pt;}
.y24_c00295{bottom:88.293333pt;}
.y23_c00295{bottom:113.360000pt;}
.y22_c00295{bottom:144.693333pt;}
.y21_c00295{bottom:174.960000pt;}
.y20_c00295{bottom:205.893333pt;}
.y1f_c00295{bottom:236.426667pt;}
.y1e_c00295{bottom:266.693333pt;}
.y1d_c00295{bottom:297.893333pt;}
.y1c_c00295{bottom:328.160000pt;}
.y1b_c00295{bottom:358.826667pt;}
.y1a_c00295{bottom:389.093333pt;}
.y19_c00295{bottom:418.560000pt;}
.y18_c00295{bottom:449.760000pt;}
.y17_c00295{bottom:479.760000pt;}
.y16_c00295{bottom:509.760000pt;}
.y15_c00295{bottom:540.026667pt;}
.y14_c00295{bottom:570.160000pt;}
.y13_c00295{bottom:600.560000pt;}
.y12_c00295{bottom:630.960000pt;}
.y11_c00295{bottom:660.293333pt;}
.y10_c00295{bottom:690.560000pt;}
.yf_c00295{bottom:721.226667pt;}
.ye_c00295{bottom:749.093333pt;}
.yd_c00295{bottom:781.226667pt;}
.yc_c00295{bottom:810.960000pt;}
.yb_c00295{bottom:840.693333pt;}
.ya_c00295{bottom:870.026667pt;}
.y9_c00295{bottom:899.360000pt;}
.y8_c00295{bottom:929.360000pt;}
.y7_c00295{bottom:958.826667pt;}
.y6_c00295{bottom:988.826667pt;}
.y5_c00295{bottom:1018.560000pt;}
.y4_c00295{bottom:1048.560000pt;}
.y3_c00295{bottom:1076.693333pt;}
.y2_c00295{bottom:1107.626667pt;}
.y1_c00295{bottom:1137.626667pt;}
.h3_c00295{height:11.733399pt;}
.h4_c00295{height:38.937500pt;}
.h2_c00295{height:108.041667pt;}
.h0_c00295{height:1229.066667pt;}
.h1_c00295{height:1229.333333pt;}
.w2_c00295{width:93.222667pt;}
.w0_c00295{width:767.266667pt;}
.w1_c00295{width:767.333333pt;}
.x0_c00295{left:0.000000pt;}
.xc_c00295{left:220.133333pt;}
.xa_c00295{left:221.066667pt;}
.x9_c00295{left:222.533333pt;}
.x8_c00295{left:224.000000pt;}
.x6_c00295{left:225.866667pt;}
.x2_c00295{left:227.733333pt;}
.x3_c00295{left:229.200000pt;}
.x1_c00295{left:232.133333pt;}
.xb_c00295{left:260.000000pt;}
.x5_c00295{left:272.400000pt;}
.x4_c00295{left:273.866667pt;}
.xd_c00295{left:313.733333pt;}
.xe_c00295{left:340.801554pt;}
.x7_c00295{left:364.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f44730755af22504e4ed4dd4.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_2a4ef0d9dd7b9af3294d1e3d.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls2_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:4.956000px;}
.ls1_c00296{letter-spacing:97.764000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-63.504000px;}
.ws1_c00296{word-spacing:0.000000px;}
._37_c00296{margin-left:-16.704000px;}
._36_c00296{margin-left:-14.976000px;}
._30_c00296{margin-left:-13.632000px;}
._1d_c00296{margin-left:-5.952000px;}
._19_c00296{margin-left:-4.608000px;}
._14_c00296{margin-left:-3.168000px;}
._c_c00296{margin-left:-1.440000px;}
._0_c00296{width:1.440000px;}
._2_c00296{width:3.456000px;}
._3_c00296{width:5.280000px;}
._6_c00296{width:6.720000px;}
._8_c00296{width:7.872000px;}
._12_c00296{width:9.024000px;}
._17_c00296{width:10.560000px;}
._1e_c00296{width:12.288000px;}
._11_c00296{width:13.536000px;}
._10_c00296{width:14.592000px;}
._1f_c00296{width:15.648000px;}
._1_c00296{width:17.664000px;}
._1c_c00296{width:19.488000px;}
._5_c00296{width:20.928000px;}
._29_c00296{width:21.984000px;}
._13_c00296{width:25.344000px;}
._34_c00296{width:26.784000px;}
._28_c00296{width:28.320000px;}
._9_c00296{width:29.472000px;}
._7_c00296{width:31.584000px;}
._16_c00296{width:32.640000px;}
._a_c00296{width:34.560000px;}
._f_c00296{width:36.672000px;}
._2c_c00296{width:37.824000px;}
._e_c00296{width:39.168000px;}
._22_c00296{width:40.992000px;}
._1b_c00296{width:42.144000px;}
._d_c00296{width:43.968000px;}
._2a_c00296{width:45.984000px;}
._4_c00296{width:47.136000px;}
._2b_c00296{width:48.576000px;}
._31_c00296{width:49.632000px;}
._b_c00296{width:50.688000px;}
._18_c00296{width:51.840000px;}
._23_c00296{width:53.760000px;}
._15_c00296{width:55.200000px;}
._33_c00296{width:56.256000px;}
._1a_c00296{width:57.408000px;}
._20_c00296{width:59.616000px;}
._25_c00296{width:60.864000px;}
._27_c00296{width:62.208000px;}
._39_c00296{width:65.088000px;}
._2e_c00296{width:67.008000px;}
._32_c00296{width:73.728000px;}
._35_c00296{width:75.840000px;}
._26_c00296{width:77.856000px;}
._21_c00296{width:80.160000px;}
._38_c00296{width:84.480000px;}
._2f_c00296{width:175.104000px;}
._24_c00296{width:178.560000px;}
._2d_c00296{width:182.208000px;}
._3a_c00296{width:773.664000px;}
.fc2_c00296{color:transparent;}
.fc1_c00296{color:rgb(128,128,128);}
.fc0_c00296{color:rgb(0,0,0);}
.fs2_c00296{font-size:48.000000px;}
.fs1_c00296{font-size:84.000000px;}
.fs0_c00296{font-size:96.000000px;}
.y0_c00296{bottom:0.000000px;}
.y26_c00296{bottom:3.105000px;}
.y25_c00296{bottom:7.228369px;}
.y24_c00296{bottom:93.420000px;}
.y23_c00296{bottom:127.170000px;}
.y22_c00296{bottom:161.670000px;}
.y21_c00296{bottom:195.720000px;}
.y20_c00296{bottom:229.470000px;}
.y1f_c00296{bottom:263.520000px;}
.y1e_c00296{bottom:296.970000px;}
.y1d_c00296{bottom:331.020000px;}
.y1c_c00296{bottom:364.470000px;}
.y1b_c00296{bottom:397.470000px;}
.y1a_c00296{bottom:430.620000px;}
.y19_c00296{bottom:464.070000px;}
.y18_c00296{bottom:497.520000px;}
.y17_c00296{bottom:531.270000px;}
.y16_c00296{bottom:563.970000px;}
.y15_c00296{bottom:596.820000px;}
.y14_c00296{bottom:629.670000px;}
.y13_c00296{bottom:662.520000px;}
.y12_c00296{bottom:697.170000px;}
.y11_c00296{bottom:729.570000px;}
.y10_c00296{bottom:763.020000px;}
.yf_c00296{bottom:796.170000px;}
.ye_c00296{bottom:828.870000px;}
.yd_c00296{bottom:862.320000px;}
.yc_c00296{bottom:895.020000px;}
.yb_c00296{bottom:928.020000px;}
.ya_c00296{bottom:961.170000px;}
.y9_c00296{bottom:993.870000px;}
.y8_c00296{bottom:1028.070000px;}
.y7_c00296{bottom:1060.470000px;}
.y6_c00296{bottom:1094.070000px;}
.y5_c00296{bottom:1126.470000px;}
.y4_c00296{bottom:1159.020000px;}
.y3_c00296{bottom:1192.020000px;}
.y2_c00296{bottom:1225.470000px;}
.y1_c00296{bottom:1258.920000px;}
.h3_c00296{height:13.200073px;}
.h4_c00296{height:43.804688px;}
.h2_c00296{height:121.546875px;}
.h0_c00296{height:1383.450000px;}
.h1_c00296{height:1383.750000px;}
.w2_c00296{width:104.875500px;}
.w0_c00296{width:878.025000px;}
.w1_c00296{width:878.250000px;}
.x0_c00296{left:0.000000px;}
.x3_c00296{left:61.200000px;}
.x1_c00296{left:62.400000px;}
.x2_c00296{left:63.450000px;}
.x7_c00296{left:64.500000px;}
.x8_c00296{left:65.700000px;}
.x9_c00296{left:67.200000px;}
.xa_c00296{left:69.450000px;}
.xb_c00296{left:70.500000px;}
.xc_c00296{left:71.550000px;}
.xd_c00296{left:72.600000px;}
.x6_c00296{left:108.300000px;}
.x4_c00296{left:110.400000px;}
.x5_c00296{left:116.400000px;}
.xe_c00296{left:362.400000px;}
.xf_c00296{left:390.826721px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls2_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:4.405333pt;}
.ls1_c00296{letter-spacing:86.901333pt;}
.ws0_c00296{word-spacing:-56.448000pt;}
.ws1_c00296{word-spacing:0.000000pt;}
._37_c00296{margin-left:-14.848000pt;}
._36_c00296{margin-left:-13.312000pt;}
._30_c00296{margin-left:-12.117333pt;}
._1d_c00296{margin-left:-5.290667pt;}
._19_c00296{margin-left:-4.096000pt;}
._14_c00296{margin-left:-2.816000pt;}
._c_c00296{margin-left:-1.280000pt;}
._0_c00296{width:1.280000pt;}
._2_c00296{width:3.072000pt;}
._3_c00296{width:4.693333pt;}
._6_c00296{width:5.973333pt;}
._8_c00296{width:6.997333pt;}
._12_c00296{width:8.021333pt;}
._17_c00296{width:9.386667pt;}
._1e_c00296{width:10.922667pt;}
._11_c00296{width:12.032000pt;}
._10_c00296{width:12.970667pt;}
._1f_c00296{width:13.909333pt;}
._1_c00296{width:15.701333pt;}
._1c_c00296{width:17.322667pt;}
._5_c00296{width:18.602667pt;}
._29_c00296{width:19.541333pt;}
._13_c00296{width:22.528000pt;}
._34_c00296{width:23.808000pt;}
._28_c00296{width:25.173333pt;}
._9_c00296{width:26.197333pt;}
._7_c00296{width:28.074667pt;}
._16_c00296{width:29.013333pt;}
._a_c00296{width:30.720000pt;}
._f_c00296{width:32.597333pt;}
._2c_c00296{width:33.621333pt;}
._e_c00296{width:34.816000pt;}
._22_c00296{width:36.437333pt;}
._1b_c00296{width:37.461333pt;}
._d_c00296{width:39.082667pt;}
._2a_c00296{width:40.874667pt;}
._4_c00296{width:41.898667pt;}
._2b_c00296{width:43.178667pt;}
._31_c00296{width:44.117333pt;}
._b_c00296{width:45.056000pt;}
._18_c00296{width:46.080000pt;}
._23_c00296{width:47.786667pt;}
._15_c00296{width:49.066667pt;}
._33_c00296{width:50.005333pt;}
._1a_c00296{width:51.029333pt;}
._20_c00296{width:52.992000pt;}
._25_c00296{width:54.101333pt;}
._27_c00296{width:55.296000pt;}
._39_c00296{width:57.856000pt;}
._2e_c00296{width:59.562667pt;}
._32_c00296{width:65.536000pt;}
._35_c00296{width:67.413333pt;}
._26_c00296{width:69.205333pt;}
._21_c00296{width:71.253333pt;}
._38_c00296{width:75.093333pt;}
._2f_c00296{width:155.648000pt;}
._24_c00296{width:158.720000pt;}
._2d_c00296{width:161.962667pt;}
._3a_c00296{width:687.701333pt;}
.fs2_c00296{font-size:42.666667pt;}
.fs1_c00296{font-size:74.666667pt;}
.fs0_c00296{font-size:85.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y26_c00296{bottom:2.760000pt;}
.y25_c00296{bottom:6.425217pt;}
.y24_c00296{bottom:83.040000pt;}
.y23_c00296{bottom:113.040000pt;}
.y22_c00296{bottom:143.706667pt;}
.y21_c00296{bottom:173.973333pt;}
.y20_c00296{bottom:203.973333pt;}
.y1f_c00296{bottom:234.240000pt;}
.y1e_c00296{bottom:263.973333pt;}
.y1d_c00296{bottom:294.240000pt;}
.y1c_c00296{bottom:323.973333pt;}
.y1b_c00296{bottom:353.306667pt;}
.y1a_c00296{bottom:382.773333pt;}
.y19_c00296{bottom:412.506667pt;}
.y18_c00296{bottom:442.240000pt;}
.y17_c00296{bottom:472.240000pt;}
.y16_c00296{bottom:501.306667pt;}
.y15_c00296{bottom:530.506667pt;}
.y14_c00296{bottom:559.706667pt;}
.y13_c00296{bottom:588.906667pt;}
.y12_c00296{bottom:619.706667pt;}
.y11_c00296{bottom:648.506667pt;}
.y10_c00296{bottom:678.240000pt;}
.yf_c00296{bottom:707.706667pt;}
.ye_c00296{bottom:736.773333pt;}
.yd_c00296{bottom:766.506667pt;}
.yc_c00296{bottom:795.573333pt;}
.yb_c00296{bottom:824.906667pt;}
.ya_c00296{bottom:854.373333pt;}
.y9_c00296{bottom:883.440000pt;}
.y8_c00296{bottom:913.840000pt;}
.y7_c00296{bottom:942.640000pt;}
.y6_c00296{bottom:972.506667pt;}
.y5_c00296{bottom:1001.306667pt;}
.y4_c00296{bottom:1030.240000pt;}
.y3_c00296{bottom:1059.573333pt;}
.y2_c00296{bottom:1089.306667pt;}
.y1_c00296{bottom:1119.040000pt;}
.h3_c00296{height:11.733399pt;}
.h4_c00296{height:38.937500pt;}
.h2_c00296{height:108.041667pt;}
.h0_c00296{height:1229.733333pt;}
.h1_c00296{height:1230.000000pt;}
.w2_c00296{width:93.222667pt;}
.w0_c00296{width:780.466667pt;}
.w1_c00296{width:780.666667pt;}
.x0_c00296{left:0.000000pt;}
.x3_c00296{left:54.400000pt;}
.x1_c00296{left:55.466667pt;}
.x2_c00296{left:56.400000pt;}
.x7_c00296{left:57.333333pt;}
.x8_c00296{left:58.400000pt;}
.x9_c00296{left:59.733333pt;}
.xa_c00296{left:61.733333pt;}
.xb_c00296{left:62.666667pt;}
.xc_c00296{left:63.600000pt;}
.xd_c00296{left:64.533333pt;}
.x6_c00296{left:96.266667pt;}
.x4_c00296{left:98.133333pt;}
.x5_c00296{left:103.466667pt;}
.xe_c00296{left:322.133333pt;}
.xf_c00296{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ea46d25d7ed6eb9beb0b72b.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_ea33731b2078c9830ffe922e.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_91fed020fa16c8c01e1ebc89.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls1_c00297{letter-spacing:-6.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:-20.244000px;}
.ws1_c00297{word-spacing:0.000000px;}
._30_c00297{margin-left:-44.544000px;}
._2f_c00297{margin-left:-32.256000px;}
._19_c00297{margin-left:-29.952000px;}
._15_c00297{margin-left:-23.808000px;}
._27_c00297{margin-left:-21.504000px;}
._25_c00297{margin-left:-16.104000px;}
._2b_c00297{margin-left:-14.832000px;}
._26_c00297{margin-left:-11.568000px;}
._29_c00297{margin-left:-7.872000px;}
._2a_c00297{margin-left:-5.856000px;}
._f_c00297{margin-left:-4.032000px;}
._8_c00297{margin-left:-2.208000px;}
._20_c00297{margin-left:-1.152000px;}
._4_c00297{width:1.248000px;}
._11_c00297{width:2.304000px;}
._0_c00297{width:3.456000px;}
._2_c00297{width:4.704000px;}
._1_c00297{width:6.144000px;}
._a_c00297{width:7.680000px;}
._13_c00297{width:9.408000px;}
._14_c00297{width:10.848000px;}
._b_c00297{width:12.480000px;}
._6_c00297{width:14.400000px;}
._d_c00297{width:15.552000px;}
._16_c00297{width:17.664000px;}
._c_c00297{width:19.008000px;}
._23_c00297{width:20.448000px;}
._17_c00297{width:21.792000px;}
._24_c00297{width:24.384000px;}
._1b_c00297{width:25.440000px;}
._5_c00297{width:27.648000px;}
._2c_c00297{width:29.712000px;}
._10_c00297{width:32.448000px;}
._12_c00297{width:34.272000px;}
._2e_c00297{width:35.808000px;}
._1a_c00297{width:36.960000px;}
._1d_c00297{width:38.880000px;}
._3_c00297{width:40.512000px;}
._18_c00297{width:42.720000px;}
._1f_c00297{width:44.736000px;}
._9_c00297{width:46.656000px;}
._28_c00297{width:47.904000px;}
._7_c00297{width:50.016000px;}
._22_c00297{width:51.744000px;}
._1e_c00297{width:54.144000px;}
._e_c00297{width:55.776000px;}
._1c_c00297{width:68.832000px;}
._2d_c00297{width:83.400000px;}
._21_c00297{width:88.224000px;}
._31_c00297{width:170.112000px;}
._32_c00297{width:532.842000px;}
.fc2_c00297{color:transparent;}
.fc1_c00297{color:rgb(128,128,128);}
.fc0_c00297{color:rgb(0,0,0);}
.fs3_c00297{font-size:48.000000px;}
.fs1_c00297{font-size:84.000000px;}
.fs0_c00297{font-size:96.000000px;}
.fs2_c00297{font-size:114.000000px;}
.y0_c00297{bottom:0.000000px;}
.y26_c00297{bottom:3.105000px;}
.y25_c00297{bottom:7.228355px;}
.y24_c00297{bottom:79.935000px;}
.y23_c00297{bottom:113.385000px;}
.y22_c00297{bottom:147.735000px;}
.y21_c00297{bottom:181.935000px;}
.y20_c00297{bottom:215.535000px;}
.y1f_c00297{bottom:249.285000px;}
.y1e_c00297{bottom:283.485000px;}
.y1d_c00297{bottom:317.535000px;}
.y1c_c00297{bottom:351.585000px;}
.y1b_c00297{bottom:385.035000px;}
.y1a_c00297{bottom:419.385000px;}
.y19_c00297{bottom:452.835000px;}
.y18_c00297{bottom:487.035000px;}
.y17_c00297{bottom:520.635000px;}
.y16_c00297{bottom:554.385000px;}
.y15_c00297{bottom:588.135000px;}
.y14_c00297{bottom:622.035000px;}
.y13_c00297{bottom:655.635000px;}
.y12_c00297{bottom:689.085000px;}
.y11_c00297{bottom:722.835000px;}
.y10_c00297{bottom:755.985000px;}
.yf_c00297{bottom:789.435000px;}
.ye_c00297{bottom:823.485000px;}
.yd_c00297{bottom:856.935000px;}
.yc_c00297{bottom:890.685000px;}
.yb_c00297{bottom:923.985000px;}
.ya_c00297{bottom:957.435000px;}
.y9_c00297{bottom:990.585000px;}
.y8_c00297{bottom:1023.885000px;}
.y7_c00297{bottom:1056.735000px;}
.y6_c00297{bottom:1090.035000px;}
.y5_c00297{bottom:1123.785000px;}
.y4_c00297{bottom:1156.635000px;}
.y3_c00297{bottom:1189.935000px;}
.y2_c00297{bottom:1223.985000px;}
.y1_c00297{bottom:1256.535000px;}
.h3_c00297{height:13.200074px;}
.h4_c00297{height:43.804688px;}
.h2_c00297{height:121.546875px;}
.h1_c00297{height:1366.500000px;}
.h0_c00297{height:1366.725000px;}
.w2_c00297{width:104.875500px;}
.w0_c00297{width:852.675000px;}
.w1_c00297{width:852.750000px;}
.x0_c00297{left:0.000000px;}
.x8_c00297{left:254.550000px;}
.xb_c00297{left:256.800000px;}
.x9_c00297{left:258.300000px;}
.x6_c00297{left:259.950000px;}
.x5_c00297{left:261.000000px;}
.x7_c00297{left:265.950000px;}
.x1_c00297{left:267.600000px;}
.x4_c00297{left:268.650000px;}
.x2_c00297{left:269.700000px;}
.x3_c00297{left:270.900000px;}
.xa_c00297{left:309.600000px;}
.xc_c00297{left:378.151749px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls1_c00297{letter-spacing:-5.333333pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:-17.994667pt;}
.ws1_c00297{word-spacing:0.000000pt;}
._30_c00297{margin-left:-39.594667pt;}
._2f_c00297{margin-left:-28.672000pt;}
._19_c00297{margin-left:-26.624000pt;}
._15_c00297{margin-left:-21.162667pt;}
._27_c00297{margin-left:-19.114667pt;}
._25_c00297{margin-left:-14.314667pt;}
._2b_c00297{margin-left:-13.184000pt;}
._26_c00297{margin-left:-10.282667pt;}
._29_c00297{margin-left:-6.997333pt;}
._2a_c00297{margin-left:-5.205333pt;}
._f_c00297{margin-left:-3.584000pt;}
._8_c00297{margin-left:-1.962667pt;}
._20_c00297{margin-left:-1.024000pt;}
._4_c00297{width:1.109333pt;}
._11_c00297{width:2.048000pt;}
._0_c00297{width:3.072000pt;}
._2_c00297{width:4.181333pt;}
._1_c00297{width:5.461333pt;}
._a_c00297{width:6.826667pt;}
._13_c00297{width:8.362667pt;}
._14_c00297{width:9.642667pt;}
._b_c00297{width:11.093333pt;}
._6_c00297{width:12.800000pt;}
._d_c00297{width:13.824000pt;}
._16_c00297{width:15.701333pt;}
._c_c00297{width:16.896000pt;}
._23_c00297{width:18.176000pt;}
._17_c00297{width:19.370667pt;}
._24_c00297{width:21.674667pt;}
._1b_c00297{width:22.613333pt;}
._5_c00297{width:24.576000pt;}
._2c_c00297{width:26.410667pt;}
._10_c00297{width:28.842667pt;}
._12_c00297{width:30.464000pt;}
._2e_c00297{width:31.829333pt;}
._1a_c00297{width:32.853333pt;}
._1d_c00297{width:34.560000pt;}
._3_c00297{width:36.010667pt;}
._18_c00297{width:37.973333pt;}
._1f_c00297{width:39.765333pt;}
._9_c00297{width:41.472000pt;}
._28_c00297{width:42.581333pt;}
._7_c00297{width:44.458667pt;}
._22_c00297{width:45.994667pt;}
._1e_c00297{width:48.128000pt;}
._e_c00297{width:49.578667pt;}
._1c_c00297{width:61.184000pt;}
._2d_c00297{width:74.133333pt;}
._21_c00297{width:78.421333pt;}
._31_c00297{width:151.210667pt;}
._32_c00297{width:473.637333pt;}
.fs3_c00297{font-size:42.666667pt;}
.fs1_c00297{font-size:74.666667pt;}
.fs0_c00297{font-size:85.333333pt;}
.fs2_c00297{font-size:101.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.y26_c00297{bottom:2.760000pt;}
.y25_c00297{bottom:6.425204pt;}
.y24_c00297{bottom:71.053333pt;}
.y23_c00297{bottom:100.786667pt;}
.y22_c00297{bottom:131.320000pt;}
.y21_c00297{bottom:161.720000pt;}
.y20_c00297{bottom:191.586667pt;}
.y1f_c00297{bottom:221.586667pt;}
.y1e_c00297{bottom:251.986667pt;}
.y1d_c00297{bottom:282.253333pt;}
.y1c_c00297{bottom:312.520000pt;}
.y1b_c00297{bottom:342.253333pt;}
.y1a_c00297{bottom:372.786667pt;}
.y19_c00297{bottom:402.520000pt;}
.y18_c00297{bottom:432.920000pt;}
.y17_c00297{bottom:462.786667pt;}
.y16_c00297{bottom:492.786667pt;}
.y15_c00297{bottom:522.786667pt;}
.y14_c00297{bottom:552.920000pt;}
.y13_c00297{bottom:582.786667pt;}
.y12_c00297{bottom:612.520000pt;}
.y11_c00297{bottom:642.520000pt;}
.y10_c00297{bottom:671.986667pt;}
.yf_c00297{bottom:701.720000pt;}
.ye_c00297{bottom:731.986667pt;}
.yd_c00297{bottom:761.720000pt;}
.yc_c00297{bottom:791.720000pt;}
.yb_c00297{bottom:821.320000pt;}
.ya_c00297{bottom:851.053333pt;}
.y9_c00297{bottom:880.520000pt;}
.y8_c00297{bottom:910.120000pt;}
.y7_c00297{bottom:939.320000pt;}
.y6_c00297{bottom:968.920000pt;}
.y5_c00297{bottom:998.920000pt;}
.y4_c00297{bottom:1028.120000pt;}
.y3_c00297{bottom:1057.720000pt;}
.y2_c00297{bottom:1087.986667pt;}
.y1_c00297{bottom:1116.920000pt;}
.h3_c00297{height:11.733399pt;}
.h4_c00297{height:38.937500pt;}
.h2_c00297{height:108.041667pt;}
.h1_c00297{height:1214.666667pt;}
.h0_c00297{height:1214.866667pt;}
.w2_c00297{width:93.222667pt;}
.w0_c00297{width:757.933333pt;}
.w1_c00297{width:758.000000pt;}
.x0_c00297{left:0.000000pt;}
.x8_c00297{left:226.266667pt;}
.xb_c00297{left:228.266667pt;}
.x9_c00297{left:229.600000pt;}
.x6_c00297{left:231.066667pt;}
.x5_c00297{left:232.000000pt;}
.x7_c00297{left:236.400000pt;}
.x1_c00297{left:237.866667pt;}
.x4_c00297{left:238.800000pt;}
.x2_c00297{left:239.733333pt;}
.x3_c00297{left:240.800000pt;}
.xa_c00297{left:275.200000pt;}
.xc_c00297{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df131726a83afa904f7f163f.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-23.136000px;}
.ws1_c00298{word-spacing:0.000000px;}
._27_c00298{margin-left:-32.640000px;}
._11_c00298{margin-left:-12.192000px;}
._18_c00298{margin-left:-10.752000px;}
._24_c00298{margin-left:-8.544000px;}
._17_c00298{margin-left:-7.008000px;}
._30_c00298{margin-left:-5.088000px;}
._25_c00298{margin-left:-4.032000px;}
._19_c00298{margin-left:-2.976000px;}
._f_c00298{margin-left:-1.152000px;}
._14_c00298{width:1.152000px;}
._a_c00298{width:2.208000px;}
._2_c00298{width:3.744000px;}
._3_c00298{width:5.664000px;}
._4_c00298{width:6.720000px;}
._7_c00298{width:8.640000px;}
._6_c00298{width:10.656000px;}
._0_c00298{width:12.192000px;}
._9_c00298{width:14.112000px;}
._1a_c00298{width:15.360000px;}
._21_c00298{width:17.472000px;}
._1b_c00298{width:19.200000px;}
._1_c00298{width:20.256000px;}
._b_c00298{width:21.888000px;}
._28_c00298{width:24.288000px;}
._8_c00298{width:25.536000px;}
._d_c00298{width:27.456000px;}
._2b_c00298{width:28.704000px;}
._13_c00298{width:30.240000px;}
._2f_c00298{width:31.392000px;}
._c_c00298{width:32.640000px;}
._1e_c00298{width:34.848000px;}
._26_c00298{width:35.904000px;}
._1f_c00298{width:37.248000px;}
._12_c00298{width:38.304000px;}
._15_c00298{width:39.360000px;}
._20_c00298{width:40.800000px;}
._e_c00298{width:42.528000px;}
._1d_c00298{width:44.352000px;}
._22_c00298{width:45.696000px;}
._10_c00298{width:47.616000px;}
._16_c00298{width:50.304000px;}
._1c_c00298{width:51.648000px;}
._31_c00298{width:53.376000px;}
._2e_c00298{width:54.912000px;}
._29_c00298{width:55.968000px;}
._32_c00298{width:59.520000px;}
._23_c00298{width:60.672000px;}
._2d_c00298{width:70.080000px;}
._2a_c00298{width:77.568000px;}
._2c_c00298{width:79.200000px;}
._5_c00298{width:187.680000px;}
.fc2_c00298{color:transparent;}
.fc1_c00298{color:rgb(128,128,128);}
.fc0_c00298{color:rgb(0,0,0);}
.fs1_c00298{font-size:48.000000px;}
.fs0_c00298{font-size:96.000000px;}
.y0_c00298{bottom:0.000000px;}
.y27_c00298{bottom:3.105000px;}
.y26_c00298{bottom:7.228369px;}
.y25_c00298{bottom:103.620000px;}
.y24_c00298{bottom:136.620000px;}
.y23_c00298{bottom:170.670000px;}
.y22_c00298{bottom:204.570000px;}
.y21_c00298{bottom:238.320000px;}
.y20_c00298{bottom:272.070000px;}
.y1f_c00298{bottom:305.820000px;}
.y1e_c00298{bottom:339.570000px;}
.y1d_c00298{bottom:373.170000px;}
.y1c_c00298{bottom:406.020000px;}
.y1b_c00298{bottom:440.070000px;}
.y1a_c00298{bottom:473.220000px;}
.y19_c00298{bottom:506.970000px;}
.y18_c00298{bottom:539.670000px;}
.y17_c00298{bottom:572.970000px;}
.y16_c00298{bottom:606.420000px;}
.y15_c00298{bottom:639.120000px;}
.y14_c00298{bottom:672.870000px;}
.y13_c00298{bottom:705.720000px;}
.y12_c00298{bottom:739.170000px;}
.y11_c00298{bottom:772.170000px;}
.y10_c00298{bottom:805.170000px;}
.yf_c00298{bottom:837.720000px;}
.ye_c00298{bottom:870.720000px;}
.yd_c00298{bottom:903.720000px;}
.yc_c00298{bottom:937.170000px;}
.yb_c00298{bottom:970.320000px;}
.ya_c00298{bottom:1003.320000px;}
.y9_c00298{bottom:1036.470000px;}
.y8_c00298{bottom:1069.770000px;}
.y7_c00298{bottom:1102.620000px;}
.y6_c00298{bottom:1135.320000px;}
.y5_c00298{bottom:1168.320000px;}
.y4_c00298{bottom:1201.170000px;}
.y3_c00298{bottom:1234.170000px;}
.y2_c00298{bottom:1268.220000px;}
.y1_c00298{bottom:1302.420000px;}
.h3_c00298{height:13.200073px;}
.h4_c00298{height:43.804688px;}
.h2_c00298{height:121.546875px;}
.h0_c00298{height:1383.450000px;}
.h1_c00298{height:1383.750000px;}
.w2_c00298{width:104.875500px;}
.w0_c00298{width:878.025000px;}
.w1_c00298{width:878.250000px;}
.x0_c00298{left:0.000000px;}
.x9_c00298{left:62.850000px;}
.x8_c00298{left:63.900000px;}
.x7_c00298{left:65.100000px;}
.x6_c00298{left:66.150000px;}
.x5_c00298{left:67.200000px;}
.x4_c00298{left:68.250000px;}
.x3_c00298{left:69.900000px;}
.xa_c00298{left:70.950000px;}
.x2_c00298{left:122.850000px;}
.xc_c00298{left:390.826721px;}
.x1_c00298{left:561.300000px;}
.xb_c00298{left:587.250000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:-20.565333pt;}
.ws1_c00298{word-spacing:0.000000pt;}
._27_c00298{margin-left:-29.013333pt;}
._11_c00298{margin-left:-10.837333pt;}
._18_c00298{margin-left:-9.557333pt;}
._24_c00298{margin-left:-7.594667pt;}
._17_c00298{margin-left:-6.229333pt;}
._30_c00298{margin-left:-4.522667pt;}
._25_c00298{margin-left:-3.584000pt;}
._19_c00298{margin-left:-2.645333pt;}
._f_c00298{margin-left:-1.024000pt;}
._14_c00298{width:1.024000pt;}
._a_c00298{width:1.962667pt;}
._2_c00298{width:3.328000pt;}
._3_c00298{width:5.034667pt;}
._4_c00298{width:5.973333pt;}
._7_c00298{width:7.680000pt;}
._6_c00298{width:9.472000pt;}
._0_c00298{width:10.837333pt;}
._9_c00298{width:12.544000pt;}
._1a_c00298{width:13.653333pt;}
._21_c00298{width:15.530667pt;}
._1b_c00298{width:17.066667pt;}
._1_c00298{width:18.005333pt;}
._b_c00298{width:19.456000pt;}
._28_c00298{width:21.589333pt;}
._8_c00298{width:22.698667pt;}
._d_c00298{width:24.405333pt;}
._2b_c00298{width:25.514667pt;}
._13_c00298{width:26.880000pt;}
._2f_c00298{width:27.904000pt;}
._c_c00298{width:29.013333pt;}
._1e_c00298{width:30.976000pt;}
._26_c00298{width:31.914667pt;}
._1f_c00298{width:33.109333pt;}
._12_c00298{width:34.048000pt;}
._15_c00298{width:34.986667pt;}
._20_c00298{width:36.266667pt;}
._e_c00298{width:37.802667pt;}
._1d_c00298{width:39.424000pt;}
._22_c00298{width:40.618667pt;}
._10_c00298{width:42.325333pt;}
._16_c00298{width:44.714667pt;}
._1c_c00298{width:45.909333pt;}
._31_c00298{width:47.445333pt;}
._2e_c00298{width:48.810667pt;}
._29_c00298{width:49.749333pt;}
._32_c00298{width:52.906667pt;}
._23_c00298{width:53.930667pt;}
._2d_c00298{width:62.293333pt;}
._2a_c00298{width:68.949333pt;}
._2c_c00298{width:70.400000pt;}
._5_c00298{width:166.826667pt;}
.fs1_c00298{font-size:42.666667pt;}
.fs0_c00298{font-size:85.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y27_c00298{bottom:2.760000pt;}
.y26_c00298{bottom:6.425217pt;}
.y25_c00298{bottom:92.106667pt;}
.y24_c00298{bottom:121.440000pt;}
.y23_c00298{bottom:151.706667pt;}
.y22_c00298{bottom:181.840000pt;}
.y21_c00298{bottom:211.840000pt;}
.y20_c00298{bottom:241.840000pt;}
.y1f_c00298{bottom:271.840000pt;}
.y1e_c00298{bottom:301.840000pt;}
.y1d_c00298{bottom:331.706667pt;}
.y1c_c00298{bottom:360.906667pt;}
.y1b_c00298{bottom:391.173333pt;}
.y1a_c00298{bottom:420.640000pt;}
.y19_c00298{bottom:450.640000pt;}
.y18_c00298{bottom:479.706667pt;}
.y17_c00298{bottom:509.306667pt;}
.y16_c00298{bottom:539.040000pt;}
.y15_c00298{bottom:568.106667pt;}
.y14_c00298{bottom:598.106667pt;}
.y13_c00298{bottom:627.306667pt;}
.y12_c00298{bottom:657.040000pt;}
.y11_c00298{bottom:686.373333pt;}
.y10_c00298{bottom:715.706667pt;}
.yf_c00298{bottom:744.640000pt;}
.ye_c00298{bottom:773.973333pt;}
.yd_c00298{bottom:803.306667pt;}
.yc_c00298{bottom:833.040000pt;}
.yb_c00298{bottom:862.506667pt;}
.ya_c00298{bottom:891.840000pt;}
.y9_c00298{bottom:921.306667pt;}
.y8_c00298{bottom:950.906667pt;}
.y7_c00298{bottom:980.106667pt;}
.y6_c00298{bottom:1009.173333pt;}
.y5_c00298{bottom:1038.506667pt;}
.y4_c00298{bottom:1067.706667pt;}
.y3_c00298{bottom:1097.040000pt;}
.y2_c00298{bottom:1127.306667pt;}
.y1_c00298{bottom:1157.706667pt;}
.h3_c00298{height:11.733399pt;}
.h4_c00298{height:38.937500pt;}
.h2_c00298{height:108.041667pt;}
.h0_c00298{height:1229.733333pt;}
.h1_c00298{height:1230.000000pt;}
.w2_c00298{width:93.222667pt;}
.w0_c00298{width:780.466667pt;}
.w1_c00298{width:780.666667pt;}
.x0_c00298{left:0.000000pt;}
.x9_c00298{left:55.866667pt;}
.x8_c00298{left:56.800000pt;}
.x7_c00298{left:57.866667pt;}
.x6_c00298{left:58.800000pt;}
.x5_c00298{left:59.733333pt;}
.x4_c00298{left:60.666667pt;}
.x3_c00298{left:62.133333pt;}
.xa_c00298{left:63.066667pt;}
.x2_c00298{left:109.200000pt;}
.xc_c00298{left:347.401530pt;}
.x1_c00298{left:498.933333pt;}
.xb_c00298{left:522.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_60567617c7bec56f97af7d39.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_9327e205ed7af67b73e171f9.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_032e18906237ef10441a2f85.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00299;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls3_c00299{letter-spacing:-3.000000px;}
.ls2_c00299{letter-spacing:0.000000px;}
.ls1_c00299{letter-spacing:8.520000px;}
.ls0_c00299{letter-spacing:9.600000px;}
.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:-63.504000px;}
.ws1_c00299{word-spacing:-23.136000px;}
.ws2_c00299{word-spacing:0.000000px;}
._28_c00299{margin-left:-77.664000px;}
._1a_c00299{margin-left:-25.932000px;}
._17_c00299{margin-left:-10.368000px;}
._c_c00299{margin-left:-8.640000px;}
._22_c00299{margin-left:-6.912000px;}
._24_c00299{margin-left:-5.856000px;}
._23_c00299{margin-left:-4.800000px;}
._d_c00299{margin-left:-3.480000px;}
._11_c00299{margin-left:-2.208000px;}
._21_c00299{margin-left:-1.104000px;}
._7_c00299{width:1.536000px;}
._3_c00299{width:3.072000px;}
._2_c00299{width:4.704000px;}
._1_c00299{width:6.144000px;}
._b_c00299{width:7.200000px;}
._0_c00299{width:8.256000px;}
._a_c00299{width:9.984000px;}
._25_c00299{width:10.992000px;}
._1f_c00299{width:12.480000px;}
._19_c00299{width:13.680000px;}
._8_c00299{width:15.264000px;}
._9_c00299{width:17.184000px;}
._12_c00299{width:18.816000px;}
._1b_c00299{width:19.872000px;}
._5_c00299{width:21.792000px;}
._4_c00299{width:25.128000px;}
._26_c00299{width:27.168000px;}
._f_c00299{width:28.512000px;}
._6_c00299{width:30.432000px;}
._14_c00299{width:32.448000px;}
._1c_c00299{width:34.368000px;}
._13_c00299{width:36.384000px;}
._10_c00299{width:38.304000px;}
._2f_c00299{width:40.728000px;}
._e_c00299{width:42.648000px;}
._2b_c00299{width:43.776000px;}
._18_c00299{width:45.216000px;}
._1d_c00299{width:46.944000px;}
._1e_c00299{width:49.248000px;}
._20_c00299{width:51.072000px;}
._30_c00299{width:53.304000px;}
._16_c00299{width:55.392000px;}
._2e_c00299{width:56.520000px;}
._2c_c00299{width:66.528000px;}
._2d_c00299{width:67.680000px;}
._15_c00299{width:75.168000px;}
._2a_c00299{width:176.352000px;}
._29_c00299{width:183.264000px;}
._27_c00299{width:555.840000px;}
.fc2_c00299{color:transparent;}
.fc1_c00299{color:rgb(128,128,128);}
.fc0_c00299{color:rgb(0,0,0);}
.fs4_c00299{font-size:48.000000px;}
.fs3_c00299{font-size:84.000000px;}
.fs0_c00299{font-size:96.000000px;}
.fs1_c00299{font-size:102.000000px;}
.fs2_c00299{font-size:120.000000px;}
.y0_c00299{bottom:0.000000px;}
.y26_c00299{bottom:3.105000px;}
.y25_c00299{bottom:7.228369px;}
.y24_c00299{bottom:91.170000px;}
.y23_c00299{bottom:124.470000px;}
.y22_c00299{bottom:158.970000px;}
.y21_c00299{bottom:192.420000px;}
.y20_c00299{bottom:227.070000px;}
.y1f_c00299{bottom:260.520000px;}
.y1e_c00299{bottom:294.870000px;}
.y1d_c00299{bottom:328.620000px;}
.y1c_c00299{bottom:362.370000px;}
.y1b_c00299{bottom:396.270000px;}
.y1a_c00299{bottom:430.020000px;}
.y19_c00299{bottom:463.620000px;}
.y18_c00299{bottom:497.370000px;}
.y17_c00299{bottom:531.270000px;}
.y16_c00299{bottom:564.570000px;}
.y15_c00299{bottom:600.420000px;}
.y14_c00299{bottom:632.820000px;}
.y13_c00299{bottom:666.570000px;}
.y12_c00299{bottom:700.620000px;}
.y11_c00299{bottom:733.770000px;}
.y10_c00299{bottom:767.820000px;}
.yf_c00299{bottom:800.820000px;}
.ye_c00299{bottom:834.270000px;}
.yd_c00299{bottom:868.020000px;}
.yc_c00299{bottom:901.020000px;}
.yb_c00299{bottom:934.170000px;}
.ya_c00299{bottom:967.170000px;}
.y9_c00299{bottom:1000.320000px;}
.y8_c00299{bottom:1033.320000px;}
.y7_c00299{bottom:1066.770000px;}
.y6_c00299{bottom:1099.620000px;}
.y5_c00299{bottom:1132.620000px;}
.y4_c00299{bottom:1165.770000px;}
.y3_c00299{bottom:1199.070000px;}
.y2_c00299{bottom:1232.520000px;}
.y1_c00299{bottom:1265.520000px;}
.h4_c00299{height:13.200073px;}
.h5_c00299{height:43.804688px;}
.h2_c00299{height:121.546875px;}
.h3_c00299{height:128.040000px;}
.h0_c00299{height:1369.950000px;}
.h1_c00299{height:1370.250000px;}
.w2_c00299{width:104.875500px;}
.w0_c00299{width:854.850000px;}
.w1_c00299{width:855.000000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:248.700000px;}
.x2_c00299{left:251.400000px;}
.x3_c00299{left:252.450000px;}
.x4_c00299{left:254.100000px;}
.x5_c00299{left:255.600000px;}
.x6_c00299{left:303.150000px;}
.x9_c00299{left:379.239258px;}
.x7_c00299{left:400.350000px;}
.x8_c00299{left:787.050000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls3_c00299{letter-spacing:-2.666667pt;}
.ls2_c00299{letter-spacing:0.000000pt;}
.ls1_c00299{letter-spacing:7.573333pt;}
.ls0_c00299{letter-spacing:8.533333pt;}
.ws0_c00299{word-spacing:-56.448000pt;}
.ws1_c00299{word-spacing:-20.565333pt;}
.ws2_c00299{word-spacing:0.000000pt;}
._28_c00299{margin-left:-69.034667pt;}
._1a_c00299{margin-left:-23.050667pt;}
._17_c00299{margin-left:-9.216000pt;}
._c_c00299{margin-left:-7.680000pt;}
._22_c00299{margin-left:-6.144000pt;}
._24_c00299{margin-left:-5.205333pt;}
._23_c00299{margin-left:-4.266667pt;}
._d_c00299{margin-left:-3.093333pt;}
._11_c00299{margin-left:-1.962667pt;}
._21_c00299{margin-left:-0.981333pt;}
._7_c00299{width:1.365333pt;}
._3_c00299{width:2.730667pt;}
._2_c00299{width:4.181333pt;}
._1_c00299{width:5.461333pt;}
._b_c00299{width:6.400000pt;}
._0_c00299{width:7.338667pt;}
._a_c00299{width:8.874667pt;}
._25_c00299{width:9.770667pt;}
._1f_c00299{width:11.093333pt;}
._19_c00299{width:12.160000pt;}
._8_c00299{width:13.568000pt;}
._9_c00299{width:15.274667pt;}
._12_c00299{width:16.725333pt;}
._1b_c00299{width:17.664000pt;}
._5_c00299{width:19.370667pt;}
._4_c00299{width:22.336000pt;}
._26_c00299{width:24.149333pt;}
._f_c00299{width:25.344000pt;}
._6_c00299{width:27.050667pt;}
._14_c00299{width:28.842667pt;}
._1c_c00299{width:30.549333pt;}
._13_c00299{width:32.341333pt;}
._10_c00299{width:34.048000pt;}
._2f_c00299{width:36.202667pt;}
._e_c00299{width:37.909333pt;}
._2b_c00299{width:38.912000pt;}
._18_c00299{width:40.192000pt;}
._1d_c00299{width:41.728000pt;}
._1e_c00299{width:43.776000pt;}
._20_c00299{width:45.397333pt;}
._30_c00299{width:47.381333pt;}
._16_c00299{width:49.237333pt;}
._2e_c00299{width:50.240000pt;}
._2c_c00299{width:59.136000pt;}
._2d_c00299{width:60.160000pt;}
._15_c00299{width:66.816000pt;}
._2a_c00299{width:156.757333pt;}
._29_c00299{width:162.901333pt;}
._27_c00299{width:494.080000pt;}
.fs4_c00299{font-size:42.666667pt;}
.fs3_c00299{font-size:74.666667pt;}
.fs0_c00299{font-size:85.333333pt;}
.fs1_c00299{font-size:90.666667pt;}
.fs2_c00299{font-size:106.666667pt;}
.y0_c00299{bottom:0.000000pt;}
.y26_c00299{bottom:2.760000pt;}
.y25_c00299{bottom:6.425217pt;}
.y24_c00299{bottom:81.040000pt;}
.y23_c00299{bottom:110.640000pt;}
.y22_c00299{bottom:141.306667pt;}
.y21_c00299{bottom:171.040000pt;}
.y20_c00299{bottom:201.840000pt;}
.y1f_c00299{bottom:231.573333pt;}
.y1e_c00299{bottom:262.106667pt;}
.y1d_c00299{bottom:292.106667pt;}
.y1c_c00299{bottom:322.106667pt;}
.y1b_c00299{bottom:352.240000pt;}
.y1a_c00299{bottom:382.240000pt;}
.y19_c00299{bottom:412.106667pt;}
.y18_c00299{bottom:442.106667pt;}
.y17_c00299{bottom:472.240000pt;}
.y16_c00299{bottom:501.840000pt;}
.y15_c00299{bottom:533.706667pt;}
.y14_c00299{bottom:562.506667pt;}
.y13_c00299{bottom:592.506667pt;}
.y12_c00299{bottom:622.773333pt;}
.y11_c00299{bottom:652.240000pt;}
.y10_c00299{bottom:682.506667pt;}
.yf_c00299{bottom:711.840000pt;}
.ye_c00299{bottom:741.573333pt;}
.yd_c00299{bottom:771.573333pt;}
.yc_c00299{bottom:800.906667pt;}
.yb_c00299{bottom:830.373333pt;}
.ya_c00299{bottom:859.706667pt;}
.y9_c00299{bottom:889.173333pt;}
.y8_c00299{bottom:918.506667pt;}
.y7_c00299{bottom:948.240000pt;}
.y6_c00299{bottom:977.440000pt;}
.y5_c00299{bottom:1006.773333pt;}
.y4_c00299{bottom:1036.240000pt;}
.y3_c00299{bottom:1065.840000pt;}
.y2_c00299{bottom:1095.573333pt;}
.y1_c00299{bottom:1124.906667pt;}
.h4_c00299{height:11.733399pt;}
.h5_c00299{height:38.937500pt;}
.h2_c00299{height:108.041667pt;}
.h3_c00299{height:113.813333pt;}
.h0_c00299{height:1217.733333pt;}
.h1_c00299{height:1218.000000pt;}
.w2_c00299{width:93.222667pt;}
.w0_c00299{width:759.866667pt;}
.w1_c00299{width:760.000000pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:221.066667pt;}
.x2_c00299{left:223.466667pt;}
.x3_c00299{left:224.400000pt;}
.x4_c00299{left:225.866667pt;}
.x5_c00299{left:227.200000pt;}
.x6_c00299{left:269.466667pt;}
.x9_c00299{left:337.101563pt;}
.x7_c00299{left:355.866667pt;}
.x8_c00299{left:699.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_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_0f553756dfc8baab205b2a6d.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_c9138ce19edd6be72f2b8d81.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_536cbf13efb3930020608d0d.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_1f65d0decffc18614510a214.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{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_c00300{vertical-align:0.000000px;}
.ls4_c00300{letter-spacing:-3.000000px;}
.ls2_c00300{letter-spacing:0.000000px;}
.ls1_c00300{letter-spacing:1.200000px;}
.ls0_c00300{letter-spacing:9.600000px;}
.ls3_c00300{letter-spacing:15.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:-51.000000px;}
.ws2_c00300{word-spacing:-35.967000px;}
.ws3_c00300{word-spacing:-22.305000px;}
.ws1_c00300{word-spacing:-20.244000px;}
.ws4_c00300{word-spacing:0.000000px;}
._51_c00300{margin-left:-67.512000px;}
._4e_c00300{margin-left:-50.895000px;}
._46_c00300{margin-left:-45.531000px;}
._43_c00300{margin-left:-43.848000px;}
._3c_c00300{margin-left:-40.455000px;}
._36_c00300{margin-left:-38.454000px;}
._45_c00300{margin-left:-36.630000px;}
._32_c00300{margin-left:-34.662000px;}
._44_c00300{margin-left:-32.217000px;}
._13_c00300{margin-left:-29.616000px;}
._49_c00300{margin-left:-28.362000px;}
._4d_c00300{margin-left:-27.318000px;}
._38_c00300{margin-left:-25.599000px;}
._2b_c00300{margin-left:-23.616000px;}
._59_c00300{margin-left:-22.260000px;}
._28_c00300{margin-left:-20.448000px;}
._34_c00300{margin-left:-18.531000px;}
._1b_c00300{margin-left:-16.800000px;}
._24_c00300{margin-left:-15.360000px;}
._20_c00300{margin-left:-13.248000px;}
._7_c00300{margin-left:-11.520000px;}
._18_c00300{margin-left:-9.888000px;}
._d_c00300{margin-left:-8.448000px;}
._9_c00300{margin-left:-6.528000px;}
._c_c00300{margin-left:-4.992000px;}
._b_c00300{margin-left:-3.744000px;}
._e_c00300{margin-left:-2.592000px;}
._f_c00300{margin-left:-1.152000px;}
._1e_c00300{width:1.056000px;}
._6_c00300{width:2.112000px;}
._3_c00300{width:3.360000px;}
._2_c00300{width:4.608000px;}
._4_c00300{width:6.528000px;}
._1_c00300{width:8.064000px;}
._10_c00300{width:9.120000px;}
._0_c00300{width:10.560000px;}
._a_c00300{width:12.384000px;}
._15_c00300{width:13.440000px;}
._16_c00300{width:15.000000px;}
._8_c00300{width:16.224000px;}
._37_c00300{width:17.748000px;}
._5_c00300{width:19.008000px;}
._11_c00300{width:20.064000px;}
._19_c00300{width:21.672000px;}
._55_c00300{width:22.680000px;}
._58_c00300{width:24.312000px;}
._1c_c00300{width:26.400000px;}
._1d_c00300{width:28.488000px;}
._17_c00300{width:30.048000px;}
._21_c00300{width:31.896000px;}
._5d_c00300{width:33.048000px;}
._1a_c00300{width:34.656000px;}
._54_c00300{width:36.708000px;}
._5c_c00300{width:38.136000px;}
._14_c00300{width:39.264000px;}
._25_c00300{width:41.184000px;}
._1f_c00300{width:42.624000px;}
._57_c00300{width:46.272000px;}
._56_c00300{width:47.964000px;}
._12_c00300{width:49.152000px;}
._2e_c00300{width:50.880000px;}
._22_c00300{width:52.032000px;}
._23_c00300{width:55.296000px;}
._3b_c00300{width:57.141000px;}
._2f_c00300{width:60.096000px;}
._5f_c00300{width:62.712000px;}
._29_c00300{width:66.624000px;}
._5e_c00300{width:78.264000px;}
._4c_c00300{width:79.710000px;}
._48_c00300{width:83.346000px;}
._35_c00300{width:87.000000px;}
._4b_c00300{width:93.267000px;}
._40_c00300{width:96.084000px;}
._39_c00300{width:103.182000px;}
._3d_c00300{width:119.880000px;}
._31_c00300{width:121.344000px;}
._27_c00300{width:123.168000px;}
._5b_c00300{width:133.116000px;}
._4f_c00300{width:136.638000px;}
._3a_c00300{width:165.270000px;}
._3e_c00300{width:174.084000px;}
._53_c00300{width:176.820000px;}
._2c_c00300{width:189.504000px;}
._5a_c00300{width:194.016000px;}
._2a_c00300{width:211.776000px;}
._42_c00300{width:218.457000px;}
._47_c00300{width:241.512000px;}
._2d_c00300{width:243.360000px;}
._52_c00300{width:255.717000px;}
._50_c00300{width:271.989000px;}
._4a_c00300{width:307.626000px;}
._26_c00300{width:388.224000px;}
._41_c00300{width:512.604000px;}
._61_c00300{width:772.800000px;}
._3f_c00300{width:793.440000px;}
._33_c00300{width:862.122000px;}
._60_c00300{width:1014.816000px;}
._30_c00300{width:1231.776000px;}
.fc2_c00300{color:transparent;}
.fc1_c00300{color:rgb(128,128,128);}
.fc0_c00300{color:rgb(0,0,0);}
.fs4_c00300{font-size:36.000000px;}
.fs7_c00300{font-size:48.000000px;}
.fs2_c00300{font-size:84.000000px;}
.fs3_c00300{font-size:87.000000px;}
.fs0_c00300{font-size:96.000000px;}
.fs1_c00300{font-size:102.000000px;}
.fs6_c00300{font-size:105.000000px;}
.fs5_c00300{font-size:114.000000px;}
.y0_c00300{bottom:0.000000px;}
.y27_c00300{bottom:3.105000px;}
.y26_c00300{bottom:7.228369px;}
.y25_c00300{bottom:103.170000px;}
.y24_c00300{bottom:137.970000px;}
.y23_c00300{bottom:172.470000px;}
.y22_c00300{bottom:205.170000px;}
.y21_c00300{bottom:239.520000px;}
.y20_c00300{bottom:273.270000px;}
.y1f_c00300{bottom:307.170000px;}
.y1e_c00300{bottom:340.770000px;}
.y1d_c00300{bottom:375.270000px;}
.y1c_c00300{bottom:408.420000px;}
.y1b_c00300{bottom:441.420000px;}
.y1a_c00300{bottom:474.570000px;}
.y19_c00300{bottom:508.920000px;}
.y18_c00300{bottom:542.070000px;}
.y17_c00300{bottom:575.370000px;}
.y16_c00300{bottom:608.520000px;}
.y15_c00300{bottom:641.970000px;}
.y14_c00300{bottom:674.370000px;}
.y13_c00300{bottom:743.520000px;}
.y12_c00300{bottom:776.520000px;}
.y11_c00300{bottom:809.370000px;}
.y10_c00300{bottom:810.570000px;}
.yf_c00300{bottom:817.320000px;}
.ye_c00300{bottom:843.420000px;}
.yd_c00300{bottom:850.470000px;}
.yc_c00300{bottom:868.320000px;}
.yb_c00300{bottom:943.320000px;}
.ya_c00300{bottom:977.370000px;}
.y9_c00300{bottom:1010.370000px;}
.y8_c00300{bottom:1044.120000px;}
.y7_c00300{bottom:1077.570000px;}
.y6_c00300{bottom:1109.670000px;}
.y5_c00300{bottom:1142.820000px;}
.y4_c00300{bottom:1175.820000px;}
.y3_c00300{bottom:1209.270000px;}
.y2_c00300{bottom:1242.720000px;}
.y1_c00300{bottom:1275.120000px;}
.h7_c00300{height:13.200073px;}
.h8_c00300{height:43.804688px;}
.h4_c00300{height:45.580078px;}
.h5_c00300{height:106.353516px;}
.h3_c00300{height:110.151855px;}
.h2_c00300{height:121.546875px;}
.h6_c00300{height:122.893066px;}
.h0_c00300{height:1383.450000px;}
.h1_c00300{height:1383.750000px;}
.w2_c00300{width:104.875500px;}
.w0_c00300{width:878.025000px;}
.w1_c00300{width:878.250000px;}
.x0_c00300{left:0.000000px;}
.xf_c00300{left:53.700000px;}
.xd_c00300{left:54.900000px;}
.xb_c00300{left:56.400000px;}
.xe_c00300{left:57.600000px;}
.x8_c00300{left:59.100000px;}
.x5_c00300{left:60.750000px;}
.x4_c00300{left:61.800000px;}
.x3_c00300{left:62.850000px;}
.x2_c00300{left:64.500000px;}
.x1_c00300{left:67.800000px;}
.x6_c00300{left:115.050000px;}
.x7_c00300{left:117.000000px;}
.xc_c00300{left:196.800000px;}
.x9_c00300{left:208.200000px;}
.x10_c00300{left:390.826721px;}
.xa_c00300{left:586.500000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls4_c00300{letter-spacing:-2.666667pt;}
.ls2_c00300{letter-spacing:0.000000pt;}
.ls1_c00300{letter-spacing:1.066667pt;}
.ls0_c00300{letter-spacing:8.533333pt;}
.ls3_c00300{letter-spacing:13.333333pt;}
.ws0_c00300{word-spacing:-45.333333pt;}
.ws2_c00300{word-spacing:-31.970667pt;}
.ws3_c00300{word-spacing:-19.826667pt;}
.ws1_c00300{word-spacing:-17.994667pt;}
.ws4_c00300{word-spacing:0.000000pt;}
._51_c00300{margin-left:-60.010667pt;}
._4e_c00300{margin-left:-45.240000pt;}
._46_c00300{margin-left:-40.472000pt;}
._43_c00300{margin-left:-38.976000pt;}
._3c_c00300{margin-left:-35.960000pt;}
._36_c00300{margin-left:-34.181333pt;}
._45_c00300{margin-left:-32.560000pt;}
._32_c00300{margin-left:-30.810667pt;}
._44_c00300{margin-left:-28.637333pt;}
._13_c00300{margin-left:-26.325333pt;}
._49_c00300{margin-left:-25.210667pt;}
._4d_c00300{margin-left:-24.282667pt;}
._38_c00300{margin-left:-22.754667pt;}
._2b_c00300{margin-left:-20.992000pt;}
._59_c00300{margin-left:-19.786667pt;}
._28_c00300{margin-left:-18.176000pt;}
._34_c00300{margin-left:-16.472000pt;}
._1b_c00300{margin-left:-14.933333pt;}
._24_c00300{margin-left:-13.653333pt;}
._20_c00300{margin-left:-11.776000pt;}
._7_c00300{margin-left:-10.240000pt;}
._18_c00300{margin-left:-8.789333pt;}
._d_c00300{margin-left:-7.509333pt;}
._9_c00300{margin-left:-5.802667pt;}
._c_c00300{margin-left:-4.437333pt;}
._b_c00300{margin-left:-3.328000pt;}
._e_c00300{margin-left:-2.304000pt;}
._f_c00300{margin-left:-1.024000pt;}
._1e_c00300{width:0.938667pt;}
._6_c00300{width:1.877333pt;}
._3_c00300{width:2.986667pt;}
._2_c00300{width:4.096000pt;}
._4_c00300{width:5.802667pt;}
._1_c00300{width:7.168000pt;}
._10_c00300{width:8.106667pt;}
._0_c00300{width:9.386667pt;}
._a_c00300{width:11.008000pt;}
._15_c00300{width:11.946667pt;}
._16_c00300{width:13.333333pt;}
._8_c00300{width:14.421333pt;}
._37_c00300{width:15.776000pt;}
._5_c00300{width:16.896000pt;}
._11_c00300{width:17.834667pt;}
._19_c00300{width:19.264000pt;}
._55_c00300{width:20.160000pt;}
._58_c00300{width:21.610667pt;}
._1c_c00300{width:23.466667pt;}
._1d_c00300{width:25.322667pt;}
._17_c00300{width:26.709333pt;}
._21_c00300{width:28.352000pt;}
._5d_c00300{width:29.376000pt;}
._1a_c00300{width:30.805333pt;}
._54_c00300{width:32.629333pt;}
._5c_c00300{width:33.898667pt;}
._14_c00300{width:34.901333pt;}
._25_c00300{width:36.608000pt;}
._1f_c00300{width:37.888000pt;}
._57_c00300{width:41.130667pt;}
._56_c00300{width:42.634667pt;}
._12_c00300{width:43.690667pt;}
._2e_c00300{width:45.226667pt;}
._22_c00300{width:46.250667pt;}
._23_c00300{width:49.152000pt;}
._3b_c00300{width:50.792000pt;}
._2f_c00300{width:53.418667pt;}
._5f_c00300{width:55.744000pt;}
._29_c00300{width:59.221333pt;}
._5e_c00300{width:69.568000pt;}
._4c_c00300{width:70.853333pt;}
._48_c00300{width:74.085333pt;}
._35_c00300{width:77.333333pt;}
._4b_c00300{width:82.904000pt;}
._40_c00300{width:85.408000pt;}
._39_c00300{width:91.717333pt;}
._3d_c00300{width:106.560000pt;}
._31_c00300{width:107.861333pt;}
._27_c00300{width:109.482667pt;}
._5b_c00300{width:118.325333pt;}
._4f_c00300{width:121.456000pt;}
._3a_c00300{width:146.906667pt;}
._3e_c00300{width:154.741333pt;}
._53_c00300{width:157.173333pt;}
._2c_c00300{width:168.448000pt;}
._5a_c00300{width:172.458667pt;}
._2a_c00300{width:188.245333pt;}
._42_c00300{width:194.184000pt;}
._47_c00300{width:214.677333pt;}
._2d_c00300{width:216.320000pt;}
._52_c00300{width:227.304000pt;}
._50_c00300{width:241.768000pt;}
._4a_c00300{width:273.445333pt;}
._26_c00300{width:345.088000pt;}
._41_c00300{width:455.648000pt;}
._61_c00300{width:686.933333pt;}
._3f_c00300{width:705.280000pt;}
._33_c00300{width:766.330667pt;}
._60_c00300{width:902.058667pt;}
._30_c00300{width:1094.912000pt;}
.fs4_c00300{font-size:32.000000pt;}
.fs7_c00300{font-size:42.666667pt;}
.fs2_c00300{font-size:74.666667pt;}
.fs3_c00300{font-size:77.333333pt;}
.fs0_c00300{font-size:85.333333pt;}
.fs1_c00300{font-size:90.666667pt;}
.fs6_c00300{font-size:93.333333pt;}
.fs5_c00300{font-size:101.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y27_c00300{bottom:2.760000pt;}
.y26_c00300{bottom:6.425217pt;}
.y25_c00300{bottom:91.706667pt;}
.y24_c00300{bottom:122.640000pt;}
.y23_c00300{bottom:153.306667pt;}
.y22_c00300{bottom:182.373333pt;}
.y21_c00300{bottom:212.906667pt;}
.y20_c00300{bottom:242.906667pt;}
.y1f_c00300{bottom:273.040000pt;}
.y1e_c00300{bottom:302.906667pt;}
.y1d_c00300{bottom:333.573333pt;}
.y1c_c00300{bottom:363.040000pt;}
.y1b_c00300{bottom:392.373333pt;}
.y1a_c00300{bottom:421.840000pt;}
.y19_c00300{bottom:452.373333pt;}
.y18_c00300{bottom:481.840000pt;}
.y17_c00300{bottom:511.440000pt;}
.y16_c00300{bottom:540.906667pt;}
.y15_c00300{bottom:570.640000pt;}
.y14_c00300{bottom:599.440000pt;}
.y13_c00300{bottom:660.906667pt;}
.y12_c00300{bottom:690.240000pt;}
.y11_c00300{bottom:719.440000pt;}
.y10_c00300{bottom:720.506667pt;}
.yf_c00300{bottom:726.506667pt;}
.ye_c00300{bottom:749.706667pt;}
.yd_c00300{bottom:755.973333pt;}
.yc_c00300{bottom:771.840000pt;}
.yb_c00300{bottom:838.506667pt;}
.ya_c00300{bottom:868.773333pt;}
.y9_c00300{bottom:898.106667pt;}
.y8_c00300{bottom:928.106667pt;}
.y7_c00300{bottom:957.840000pt;}
.y6_c00300{bottom:986.373333pt;}
.y5_c00300{bottom:1015.840000pt;}
.y4_c00300{bottom:1045.173333pt;}
.y3_c00300{bottom:1074.906667pt;}
.y2_c00300{bottom:1104.640000pt;}
.y1_c00300{bottom:1133.440000pt;}
.h7_c00300{height:11.733399pt;}
.h8_c00300{height:38.937500pt;}
.h4_c00300{height:40.515625pt;}
.h5_c00300{height:94.536458pt;}
.h3_c00300{height:97.912760pt;}
.h2_c00300{height:108.041667pt;}
.h6_c00300{height:109.238281pt;}
.h0_c00300{height:1229.733333pt;}
.h1_c00300{height:1230.000000pt;}
.w2_c00300{width:93.222667pt;}
.w0_c00300{width:780.466667pt;}
.w1_c00300{width:780.666667pt;}
.x0_c00300{left:0.000000pt;}
.xf_c00300{left:47.733333pt;}
.xd_c00300{left:48.800000pt;}
.xb_c00300{left:50.133333pt;}
.xe_c00300{left:51.200000pt;}
.x8_c00300{left:52.533333pt;}
.x5_c00300{left:54.000000pt;}
.x4_c00300{left:54.933333pt;}
.x3_c00300{left:55.866667pt;}
.x2_c00300{left:57.333333pt;}
.x1_c00300{left:60.266667pt;}
.x6_c00300{left:102.266667pt;}
.x7_c00300{left:104.000000pt;}
.xc_c00300{left:174.933333pt;}
.x9_c00300{left:185.066667pt;}
.x10_c00300{left:347.401530pt;}
.xa_c00300{left:521.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8499dd98e4c3a965bfac7b7d.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_d3cb4ed7f5e73cd8ecdfe0a5.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_098bfcf4b58fc8eed827564a.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls3_c00301{letter-spacing:0.000000px;}
.ls2_c00301{letter-spacing:10.920000px;}
.ls1_c00301{letter-spacing:14.892000px;}
.ls0_c00301{letter-spacing:28.800000px;}
.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;}
}
.ws1_c00301{word-spacing:-63.504000px;}
.ws2_c00301{word-spacing:-51.000000px;}
.ws0_c00301{word-spacing:-23.136000px;}
.ws3_c00301{word-spacing:0.000000px;}
._2d_c00301{margin-left:-31.296000px;}
._2e_c00301{margin-left:-28.704000px;}
._d_c00301{margin-left:-26.304000px;}
._2c_c00301{margin-left:-20.256000px;}
._17_c00301{margin-left:-19.104000px;}
._14_c00301{margin-left:-16.440000px;}
._26_c00301{margin-left:-13.668000px;}
._16_c00301{margin-left:-11.232000px;}
._1f_c00301{margin-left:-9.216000px;}
._2_c00301{margin-left:-7.776000px;}
._9_c00301{margin-left:-5.952000px;}
._3_c00301{margin-left:-4.512000px;}
._4_c00301{margin-left:-3.264000px;}
._1e_c00301{margin-left:-2.208000px;}
._18_c00301{margin-left:-1.152000px;}
._1d_c00301{width:1.056000px;}
._f_c00301{width:2.688000px;}
._6_c00301{width:4.128000px;}
._8_c00301{width:6.144000px;}
._7_c00301{width:8.160000px;}
._15_c00301{width:9.984000px;}
._5_c00301{width:11.232000px;}
._b_c00301{width:12.576000px;}
._1_c00301{width:14.688000px;}
._19_c00301{width:15.744000px;}
._1b_c00301{width:17.376000px;}
._e_c00301{width:19.104000px;}
._10_c00301{width:21.408000px;}
._13_c00301{width:25.728000px;}
._11_c00301{width:27.456000px;}
._29_c00301{width:28.704000px;}
._1a_c00301{width:29.856000px;}
._12_c00301{width:32.448000px;}
._1c_c00301{width:34.368000px;}
._c_c00301{width:35.904000px;}
._0_c00301{width:37.536000px;}
._20_c00301{width:39.264000px;}
._25_c00301{width:41.088000px;}
._21_c00301{width:43.104000px;}
._27_c00301{width:44.352000px;}
._31_c00301{width:46.656000px;}
._22_c00301{width:47.904000px;}
._24_c00301{width:49.440000px;}
._23_c00301{width:50.976000px;}
._a_c00301{width:55.872000px;}
._2a_c00301{width:57.984000px;}
._2b_c00301{width:60.960000px;}
._28_c00301{width:179.328000px;}
._30_c00301{width:214.944000px;}
._2f_c00301{width:559.824000px;}
._32_c00301{width:2039.808000px;}
.fc2_c00301{color:transparent;}
.fc1_c00301{color:rgb(128,128,128);}
.fc0_c00301{color:rgb(0,0,0);}
.fs3_c00301{font-size:48.000000px;}
.fs1_c00301{font-size:84.000000px;}
.fs0_c00301{font-size:96.000000px;}
.fs2_c00301{font-size:102.000000px;}
.y0_c00301{bottom:0.000000px;}
.y2a_c00301{bottom:3.105000px;}
.y29_c00301{bottom:7.228357px;}
.y28_c00301{bottom:111.030000px;}
.y27_c00301{bottom:142.380000px;}
.y26_c00301{bottom:177.180000px;}
.y25_c00301{bottom:210.630000px;}
.y24_c00301{bottom:244.680000px;}
.y23_c00301{bottom:278.880000px;}
.y22_c00301{bottom:313.230000px;}
.y21_c00301{bottom:347.280000px;}
.y4_c00301{bottom:350.430000px;}
.y20_c00301{bottom:381.480000px;}
.y3_c00301{bottom:384.780000px;}
.y1f_c00301{bottom:415.530000px;}
.y1e_c00301{bottom:449.880000px;}
.y1d_c00301{bottom:483.030000px;}
.y1c_c00301{bottom:516.480000px;}
.y1b_c00301{bottom:551.430000px;}
.y1a_c00301{bottom:585.180000px;}
.y19_c00301{bottom:619.080000px;}
.y2_c00301{bottom:644.580000px;}
.y18_c00301{bottom:653.130000px;}
.y17_c00301{bottom:686.880000px;}
.y1_c00301{bottom:701.280000px;}
.y16_c00301{bottom:720.330000px;}
.y15_c00301{bottom:754.380000px;}
.y14_c00301{bottom:788.130000px;}
.y13_c00301{bottom:821.580000px;}
.y12_c00301{bottom:855.330000px;}
.y11_c00301{bottom:889.080000px;}
.y10_c00301{bottom:922.830000px;}
.yf_c00301{bottom:956.130000px;}
.ye_c00301{bottom:988.980000px;}
.yd_c00301{bottom:1022.280000px;}
.yc_c00301{bottom:1056.030000px;}
.yb_c00301{bottom:1089.480000px;}
.ya_c00301{bottom:1123.230000px;}
.y9_c00301{bottom:1156.380000px;}
.y8_c00301{bottom:1190.130000px;}
.y7_c00301{bottom:1223.130000px;}
.y6_c00301{bottom:1256.580000px;}
.y5_c00301{bottom:1289.580000px;}
.h3_c00301{height:13.200074px;}
.h4_c00301{height:43.804688px;}
.h2_c00301{height:121.546875px;}
.h0_c00301{height:1382.700000px;}
.h1_c00301{height:1383.000000px;}
.w2_c00301{width:104.875500px;}
.w0_c00301{width:863.175000px;}
.w1_c00301{width:863.250000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:148.200000px;}
.x3_c00301{left:162.750000px;}
.x4_c00301{left:165.450000px;}
.x2_c00301{left:221.700000px;}
.xf_c00301{left:258.450000px;}
.x6_c00301{left:261.600000px;}
.xe_c00301{left:262.800000px;}
.x9_c00301{left:263.850000px;}
.x5_c00301{left:264.900000px;}
.x8_c00301{left:265.950000px;}
.xb_c00301{left:267.600000px;}
.xa_c00301{left:268.650000px;}
.x7_c00301{left:269.700000px;}
.xc_c00301{left:322.050000px;}
.x10_c00301{left:383.401749px;}
.xd_c00301{left:414.450000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls3_c00301{letter-spacing:0.000000pt;}
.ls2_c00301{letter-spacing:9.706667pt;}
.ls1_c00301{letter-spacing:13.237333pt;}
.ls0_c00301{letter-spacing:25.600000pt;}
.ws1_c00301{word-spacing:-56.448000pt;}
.ws2_c00301{word-spacing:-45.333333pt;}
.ws0_c00301{word-spacing:-20.565333pt;}
.ws3_c00301{word-spacing:0.000000pt;}
._2d_c00301{margin-left:-27.818667pt;}
._2e_c00301{margin-left:-25.514667pt;}
._d_c00301{margin-left:-23.381333pt;}
._2c_c00301{margin-left:-18.005333pt;}
._17_c00301{margin-left:-16.981333pt;}
._14_c00301{margin-left:-14.613333pt;}
._26_c00301{margin-left:-12.149333pt;}
._16_c00301{margin-left:-9.984000pt;}
._1f_c00301{margin-left:-8.192000pt;}
._2_c00301{margin-left:-6.912000pt;}
._9_c00301{margin-left:-5.290667pt;}
._3_c00301{margin-left:-4.010667pt;}
._4_c00301{margin-left:-2.901333pt;}
._1e_c00301{margin-left:-1.962667pt;}
._18_c00301{margin-left:-1.024000pt;}
._1d_c00301{width:0.938667pt;}
._f_c00301{width:2.389333pt;}
._6_c00301{width:3.669333pt;}
._8_c00301{width:5.461333pt;}
._7_c00301{width:7.253333pt;}
._15_c00301{width:8.874667pt;}
._5_c00301{width:9.984000pt;}
._b_c00301{width:11.178667pt;}
._1_c00301{width:13.056000pt;}
._19_c00301{width:13.994667pt;}
._1b_c00301{width:15.445333pt;}
._e_c00301{width:16.981333pt;}
._10_c00301{width:19.029333pt;}
._13_c00301{width:22.869333pt;}
._11_c00301{width:24.405333pt;}
._29_c00301{width:25.514667pt;}
._1a_c00301{width:26.538667pt;}
._12_c00301{width:28.842667pt;}
._1c_c00301{width:30.549333pt;}
._c_c00301{width:31.914667pt;}
._0_c00301{width:33.365333pt;}
._20_c00301{width:34.901333pt;}
._25_c00301{width:36.522667pt;}
._21_c00301{width:38.314667pt;}
._27_c00301{width:39.424000pt;}
._31_c00301{width:41.472000pt;}
._22_c00301{width:42.581333pt;}
._24_c00301{width:43.946667pt;}
._23_c00301{width:45.312000pt;}
._a_c00301{width:49.664000pt;}
._2a_c00301{width:51.541333pt;}
._2b_c00301{width:54.186667pt;}
._28_c00301{width:159.402667pt;}
._30_c00301{width:191.061333pt;}
._2f_c00301{width:497.621333pt;}
._32_c00301{width:1813.162667pt;}
.fs3_c00301{font-size:42.666667pt;}
.fs1_c00301{font-size:74.666667pt;}
.fs0_c00301{font-size:85.333333pt;}
.fs2_c00301{font-size:90.666667pt;}
.y0_c00301{bottom:0.000000pt;}
.y2a_c00301{bottom:2.760000pt;}
.y29_c00301{bottom:6.425206pt;}
.y28_c00301{bottom:98.693333pt;}
.y27_c00301{bottom:126.560000pt;}
.y26_c00301{bottom:157.493333pt;}
.y25_c00301{bottom:187.226667pt;}
.y24_c00301{bottom:217.493333pt;}
.y23_c00301{bottom:247.893333pt;}
.y22_c00301{bottom:278.426667pt;}
.y21_c00301{bottom:308.693333pt;}
.y4_c00301{bottom:311.493333pt;}
.y20_c00301{bottom:339.093333pt;}
.y3_c00301{bottom:342.026667pt;}
.y1f_c00301{bottom:369.360000pt;}
.y1e_c00301{bottom:399.893333pt;}
.y1d_c00301{bottom:429.360000pt;}
.y1c_c00301{bottom:459.093333pt;}
.y1b_c00301{bottom:490.160000pt;}
.y1a_c00301{bottom:520.160000pt;}
.y19_c00301{bottom:550.293333pt;}
.y2_c00301{bottom:572.960000pt;}
.y18_c00301{bottom:580.560000pt;}
.y17_c00301{bottom:610.560000pt;}
.y1_c00301{bottom:623.360000pt;}
.y16_c00301{bottom:640.293333pt;}
.y15_c00301{bottom:670.560000pt;}
.y14_c00301{bottom:700.560000pt;}
.y13_c00301{bottom:730.293333pt;}
.y12_c00301{bottom:760.293333pt;}
.y11_c00301{bottom:790.293333pt;}
.y10_c00301{bottom:820.293333pt;}
.yf_c00301{bottom:849.893333pt;}
.ye_c00301{bottom:879.093333pt;}
.yd_c00301{bottom:908.693333pt;}
.yc_c00301{bottom:938.693333pt;}
.yb_c00301{bottom:968.426667pt;}
.ya_c00301{bottom:998.426667pt;}
.y9_c00301{bottom:1027.893333pt;}
.y8_c00301{bottom:1057.893333pt;}
.y7_c00301{bottom:1087.226667pt;}
.y6_c00301{bottom:1116.960000pt;}
.y5_c00301{bottom:1146.293333pt;}
.h3_c00301{height:11.733399pt;}
.h4_c00301{height:38.937500pt;}
.h2_c00301{height:108.041667pt;}
.h0_c00301{height:1229.066667pt;}
.h1_c00301{height:1229.333333pt;}
.w2_c00301{width:93.222667pt;}
.w0_c00301{width:767.266667pt;}
.w1_c00301{width:767.333333pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:131.733333pt;}
.x3_c00301{left:144.666667pt;}
.x4_c00301{left:147.066667pt;}
.x2_c00301{left:197.066667pt;}
.xf_c00301{left:229.733333pt;}
.x6_c00301{left:232.533333pt;}
.xe_c00301{left:233.600000pt;}
.x9_c00301{left:234.533333pt;}
.x5_c00301{left:235.466667pt;}
.x8_c00301{left:236.400000pt;}
.xb_c00301{left:237.866667pt;}
.xa_c00301{left:238.800000pt;}
.x7_c00301{left:239.733333pt;}
.xc_c00301{left:286.266667pt;}
.x10_c00301{left:340.801554pt;}
.xd_c00301{left:368.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_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_9b4ab0b049612a600f5e3060.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_0f8f43622bcca35a5ec11697.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls3_c00302{letter-spacing:0.000000px;}
.ls1_c00302{letter-spacing:3.000000px;}
.ls0_c00302{letter-spacing:9.000000px;}
.ls2_c00302{letter-spacing:15.000000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:-20.244000px;}
.ws1_c00302{word-spacing:0.000000px;}
._6_c00302{margin-left:-44.892000px;}
._e_c00302{margin-left:-35.235000px;}
._2_c00302{margin-left:-33.408000px;}
._0_c00302{margin-left:-31.929000px;}
._42_c00302{margin-left:-28.128000px;}
._3d_c00302{margin-left:-25.932000px;}
._47_c00302{margin-left:-21.663000px;}
._8_c00302{margin-left:-20.532000px;}
._10_c00302{margin-left:-16.965000px;}
._a_c00302{margin-left:-15.660000px;}
._3b_c00302{margin-left:-14.451000px;}
._2b_c00302{margin-left:-12.816000px;}
._3c_c00302{margin-left:-10.986000px;}
._3_c00302{margin-left:-8.961000px;}
._4_c00302{margin-left:-6.960000px;}
._16_c00302{margin-left:-5.301000px;}
._18_c00302{margin-left:-3.360000px;}
._17_c00302{margin-left:-2.304000px;}
._1_c00302{margin-left:-1.131000px;}
._33_c00302{width:1.065000px;}
._11_c00302{width:2.112000px;}
._1f_c00302{width:3.498000px;}
._14_c00302{width:4.533000px;}
._1a_c00302{width:5.910000px;}
._13_c00302{width:7.680000px;}
._c_c00302{width:9.483000px;}
._7_c00302{width:10.527000px;}
._20_c00302{width:11.925000px;}
._34_c00302{width:13.623000px;}
._25_c00302{width:14.646000px;}
._3a_c00302{width:16.071000px;}
._1d_c00302{width:17.163000px;}
._35_c00302{width:18.936000px;}
._12_c00302{width:20.928000px;}
._1c_c00302{width:21.984000px;}
._1b_c00302{width:25.440000px;}
._19_c00302{width:27.264000px;}
._2f_c00302{width:28.365000px;}
._21_c00302{width:29.568000px;}
._31_c00302{width:30.840000px;}
._15_c00302{width:32.139000px;}
._37_c00302{width:34.683000px;}
._36_c00302{width:36.570000px;}
._23_c00302{width:37.950000px;}
._32_c00302{width:38.988000px;}
._2d_c00302{width:40.992000px;}
._29_c00302{width:42.336000px;}
._30_c00302{width:44.208000px;}
._22_c00302{width:45.696000px;}
._24_c00302{width:47.724000px;}
._28_c00302{width:48.984000px;}
._2e_c00302{width:50.805000px;}
._38_c00302{width:54.090000px;}
._39_c00302{width:56.388000px;}
._3f_c00302{width:59.265000px;}
._41_c00302{width:61.095000px;}
._3e_c00302{width:63.078000px;}
._44_c00302{width:65.568000px;}
._2c_c00302{width:67.077000px;}
._2a_c00302{width:68.397000px;}
._27_c00302{width:71.313000px;}
._40_c00302{width:95.328000px;}
._5_c00302{width:98.397000px;}
._f_c00302{width:103.269000px;}
._1e_c00302{width:109.089000px;}
._46_c00302{width:111.693000px;}
._45_c00302{width:155.040000px;}
._26_c00302{width:176.511000px;}
._43_c00302{width:185.484000px;}
._48_c00302{width:188.064000px;}
._9_c00302{width:234.900000px;}
._b_c00302{width:245.775000px;}
._d_c00302{width:954.651000px;}
.fc2_c00302{color:transparent;}
.fc1_c00302{color:rgb(128,128,128);}
.fc0_c00302{color:rgb(0,0,0);}
.fs4_c00302{font-size:36.000000px;}
.fs5_c00302{font-size:48.000000px;}
.fs3_c00302{font-size:84.000000px;}
.fs0_c00302{font-size:87.000000px;}
.fs1_c00302{font-size:96.000000px;}
.fs2_c00302{font-size:102.000000px;}
.y0_c00302{bottom:0.000000px;}
.y27_c00302{bottom:3.105000px;}
.y26_c00302{bottom:7.228369px;}
.y25_c00302{bottom:70.770000px;}
.y24_c00302{bottom:138.270000px;}
.y23_c00302{bottom:172.020000px;}
.y22_c00302{bottom:206.520000px;}
.y21_c00302{bottom:239.220000px;}
.y20_c00302{bottom:274.770000px;}
.y1f_c00302{bottom:307.170000px;}
.y1e_c00302{bottom:341.520000px;}
.y1d_c00302{bottom:374.970000px;}
.y1c_c00302{bottom:408.270000px;}
.y1b_c00302{bottom:439.470000px;}
.y1a_c00302{bottom:475.470000px;}
.y19_c00302{bottom:509.220000px;}
.y18_c00302{bottom:542.070000px;}
.y17_c00302{bottom:576.120000px;}
.y16_c00302{bottom:608.820000px;}
.y15_c00302{bottom:641.970000px;}
.y14_c00302{bottom:675.720000px;}
.y13_c00302{bottom:709.020000px;}
.y12_c00302{bottom:742.470000px;}
.y11_c00302{bottom:774.870000px;}
.y10_c00302{bottom:809.220000px;}
.yf_c00302{bottom:842.370000px;}
.ye_c00302{bottom:875.070000px;}
.yd_c00302{bottom:908.520000px;}
.yc_c00302{bottom:941.670000px;}
.y1_c00302{bottom:967.170000px;}
.yb_c00302{bottom:975.420000px;}
.ya_c00302{bottom:1008.720000px;}
.y9_c00302{bottom:1041.870000px;}
.y8_c00302{bottom:1075.320000px;}
.y7_c00302{bottom:1108.320000px;}
.y6_c00302{bottom:1141.470000px;}
.y5_c00302{bottom:1173.120000px;}
.y4_c00302{bottom:1207.920000px;}
.y3_c00302{bottom:1241.370000px;}
.y2_c00302{bottom:1262.520000px;}
.h5_c00302{height:13.200073px;}
.h6_c00302{height:43.804688px;}
.h4_c00302{height:45.580078px;}
.h2_c00302{height:110.151855px;}
.h3_c00302{height:121.546875px;}
.h0_c00302{height:1334.850000px;}
.h1_c00302{height:1335.000000px;}
.w2_c00302{width:104.875500px;}
.w0_c00302{width:847.275000px;}
.w1_c00302{width:847.500000px;}
.x0_c00302{left:0.000000px;}
.x7_c00302{left:41.400000px;}
.x8_c00302{left:42.450000px;}
.x3_c00302{left:43.500000px;}
.x4_c00302{left:44.550000px;}
.x9_c00302{left:45.600000px;}
.xa_c00302{left:47.250000px;}
.x5_c00302{left:48.300000px;}
.xb_c00302{left:54.000000px;}
.x6_c00302{left:95.850000px;}
.x2_c00302{left:155.850000px;}
.xc_c00302{left:375.451721px;}
.x1_c00302{left:702.750000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls3_c00302{letter-spacing:0.000000pt;}
.ls1_c00302{letter-spacing:2.666667pt;}
.ls0_c00302{letter-spacing:8.000000pt;}
.ls2_c00302{letter-spacing:13.333333pt;}
.ws0_c00302{word-spacing:-17.994667pt;}
.ws1_c00302{word-spacing:0.000000pt;}
._6_c00302{margin-left:-39.904000pt;}
._e_c00302{margin-left:-31.320000pt;}
._2_c00302{margin-left:-29.696000pt;}
._0_c00302{margin-left:-28.381333pt;}
._42_c00302{margin-left:-25.002667pt;}
._3d_c00302{margin-left:-23.050667pt;}
._47_c00302{margin-left:-19.256000pt;}
._8_c00302{margin-left:-18.250667pt;}
._10_c00302{margin-left:-15.080000pt;}
._a_c00302{margin-left:-13.920000pt;}
._3b_c00302{margin-left:-12.845333pt;}
._2b_c00302{margin-left:-11.392000pt;}
._3c_c00302{margin-left:-9.765333pt;}
._3_c00302{margin-left:-7.965333pt;}
._4_c00302{margin-left:-6.186667pt;}
._16_c00302{margin-left:-4.712000pt;}
._18_c00302{margin-left:-2.986667pt;}
._17_c00302{margin-left:-2.048000pt;}
._1_c00302{margin-left:-1.005333pt;}
._33_c00302{width:0.946667pt;}
._11_c00302{width:1.877333pt;}
._1f_c00302{width:3.109333pt;}
._14_c00302{width:4.029333pt;}
._1a_c00302{width:5.253333pt;}
._13_c00302{width:6.826667pt;}
._c_c00302{width:8.429333pt;}
._7_c00302{width:9.357333pt;}
._20_c00302{width:10.600000pt;}
._34_c00302{width:12.109333pt;}
._25_c00302{width:13.018667pt;}
._3a_c00302{width:14.285333pt;}
._1d_c00302{width:15.256000pt;}
._35_c00302{width:16.832000pt;}
._12_c00302{width:18.602667pt;}
._1c_c00302{width:19.541333pt;}
._1b_c00302{width:22.613333pt;}
._19_c00302{width:24.234667pt;}
._2f_c00302{width:25.213333pt;}
._21_c00302{width:26.282667pt;}
._31_c00302{width:27.413333pt;}
._15_c00302{width:28.568000pt;}
._37_c00302{width:30.829333pt;}
._36_c00302{width:32.506667pt;}
._23_c00302{width:33.733333pt;}
._32_c00302{width:34.656000pt;}
._2d_c00302{width:36.437333pt;}
._29_c00302{width:37.632000pt;}
._30_c00302{width:39.296000pt;}
._22_c00302{width:40.618667pt;}
._24_c00302{width:42.421333pt;}
._28_c00302{width:43.541333pt;}
._2e_c00302{width:45.160000pt;}
._38_c00302{width:48.080000pt;}
._39_c00302{width:50.122667pt;}
._3f_c00302{width:52.680000pt;}
._41_c00302{width:54.306667pt;}
._3e_c00302{width:56.069333pt;}
._44_c00302{width:58.282667pt;}
._2c_c00302{width:59.624000pt;}
._2a_c00302{width:60.797333pt;}
._27_c00302{width:63.389333pt;}
._40_c00302{width:84.736000pt;}
._5_c00302{width:87.464000pt;}
._f_c00302{width:91.794667pt;}
._1e_c00302{width:96.968000pt;}
._46_c00302{width:99.282667pt;}
._45_c00302{width:137.813333pt;}
._26_c00302{width:156.898667pt;}
._43_c00302{width:164.874667pt;}
._48_c00302{width:167.168000pt;}
._9_c00302{width:208.800000pt;}
._b_c00302{width:218.466667pt;}
._d_c00302{width:848.578667pt;}
.fs4_c00302{font-size:32.000000pt;}
.fs5_c00302{font-size:42.666667pt;}
.fs3_c00302{font-size:74.666667pt;}
.fs0_c00302{font-size:77.333333pt;}
.fs1_c00302{font-size:85.333333pt;}
.fs2_c00302{font-size:90.666667pt;}
.y0_c00302{bottom:0.000000pt;}
.y27_c00302{bottom:2.760000pt;}
.y26_c00302{bottom:6.425217pt;}
.y25_c00302{bottom:62.906667pt;}
.y24_c00302{bottom:122.906667pt;}
.y23_c00302{bottom:152.906667pt;}
.y22_c00302{bottom:183.573333pt;}
.y21_c00302{bottom:212.640000pt;}
.y20_c00302{bottom:244.240000pt;}
.y1f_c00302{bottom:273.040000pt;}
.y1e_c00302{bottom:303.573333pt;}
.y1d_c00302{bottom:333.306667pt;}
.y1c_c00302{bottom:362.906667pt;}
.y1b_c00302{bottom:390.640000pt;}
.y1a_c00302{bottom:422.640000pt;}
.y19_c00302{bottom:452.640000pt;}
.y18_c00302{bottom:481.840000pt;}
.y17_c00302{bottom:512.106667pt;}
.y16_c00302{bottom:541.173333pt;}
.y15_c00302{bottom:570.640000pt;}
.y14_c00302{bottom:600.640000pt;}
.y13_c00302{bottom:630.240000pt;}
.y12_c00302{bottom:659.973333pt;}
.y11_c00302{bottom:688.773333pt;}
.y10_c00302{bottom:719.306667pt;}
.yf_c00302{bottom:748.773333pt;}
.ye_c00302{bottom:777.840000pt;}
.yd_c00302{bottom:807.573333pt;}
.yc_c00302{bottom:837.040000pt;}
.y1_c00302{bottom:859.706667pt;}
.yb_c00302{bottom:867.040000pt;}
.ya_c00302{bottom:896.640000pt;}
.y9_c00302{bottom:926.106667pt;}
.y8_c00302{bottom:955.840000pt;}
.y7_c00302{bottom:985.173333pt;}
.y6_c00302{bottom:1014.640000pt;}
.y5_c00302{bottom:1042.773333pt;}
.y4_c00302{bottom:1073.706667pt;}
.y3_c00302{bottom:1103.440000pt;}
.y2_c00302{bottom:1122.240000pt;}
.h5_c00302{height:11.733399pt;}
.h6_c00302{height:38.937500pt;}
.h4_c00302{height:40.515625pt;}
.h2_c00302{height:97.912760pt;}
.h3_c00302{height:108.041667pt;}
.h0_c00302{height:1186.533333pt;}
.h1_c00302{height:1186.666667pt;}
.w2_c00302{width:93.222667pt;}
.w0_c00302{width:753.133333pt;}
.w1_c00302{width:753.333333pt;}
.x0_c00302{left:0.000000pt;}
.x7_c00302{left:36.800000pt;}
.x8_c00302{left:37.733333pt;}
.x3_c00302{left:38.666667pt;}
.x4_c00302{left:39.600000pt;}
.x9_c00302{left:40.533333pt;}
.xa_c00302{left:42.000000pt;}
.x5_c00302{left:42.933333pt;}
.xb_c00302{left:48.000000pt;}
.x6_c00302{left:85.200000pt;}
.x2_c00302{left:138.533333pt;}
.xc_c00302{left:333.734863pt;}
.x1_c00302{left:624.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d1a78d8ea695a2882194308.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_e200277ddaf8cb9e97a2b59d.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_9cb3ad1661a15996d737671c.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;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_c00303;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls1_c00303{letter-spacing:-3.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.ls2_c00303{letter-spacing:15.000000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00303{word-spacing:-63.504000px;}
.ws0_c00303{word-spacing:-35.967000px;}
.ws3_c00303{word-spacing:-24.582000px;}
.ws1_c00303{word-spacing:-8.676000px;}
.ws4_c00303{word-spacing:0.000000px;}
._18_c00303{margin-left:-52.266000px;}
._2a_c00303{margin-left:-32.928000px;}
._3e_c00303{margin-left:-24.543000px;}
._24_c00303{margin-left:-22.185000px;}
._3f_c00303{margin-left:-20.256000px;}
._2d_c00303{margin-left:-19.224000px;}
._3b_c00303{margin-left:-15.753000px;}
._39_c00303{margin-left:-14.517000px;}
._4_c00303{margin-left:-12.960000px;}
._8_c00303{margin-left:-11.040000px;}
._9_c00303{margin-left:-9.720000px;}
._0_c00303{margin-left:-8.640000px;}
._10_c00303{margin-left:-7.035000px;}
._25_c00303{margin-left:-5.436000px;}
._1_c00303{margin-left:-4.200000px;}
._14_c00303{margin-left:-3.165000px;}
._6_c00303{margin-left:-2.142000px;}
._12_c00303{margin-left:-1.113000px;}
._2e_c00303{width:1.176000px;}
._c_c00303{width:2.280000px;}
._d_c00303{width:3.480000px;}
._b_c00303{width:5.280000px;}
._2b_c00303{width:7.104000px;}
._2c_c00303{width:8.217000px;}
._7_c00303{width:10.236000px;}
._32_c00303{width:11.343000px;}
._1d_c00303{width:12.423000px;}
._20_c00303{width:13.968000px;}
._1f_c00303{width:15.840000px;}
._16_c00303{width:17.385000px;}
._1b_c00303{width:19.152000px;}
._1c_c00303{width:20.880000px;}
._e_c00303{width:22.320000px;}
._15_c00303{width:23.682000px;}
._23_c00303{width:24.912000px;}
._3_c00303{width:27.000000px;}
._29_c00303{width:28.086000px;}
._f_c00303{width:29.820000px;}
._33_c00303{width:30.828000px;}
._3d_c00303{width:31.848000px;}
._27_c00303{width:32.958000px;}
._28_c00303{width:34.125000px;}
._34_c00303{width:36.216000px;}
._45_c00303{width:37.233000px;}
._37_c00303{width:38.397000px;}
._13_c00303{width:39.837000px;}
._11_c00303{width:41.790000px;}
._3a_c00303{width:42.990000px;}
._a_c00303{width:44.520000px;}
._38_c00303{width:45.573000px;}
._35_c00303{width:47.556000px;}
._21_c00303{width:49.248000px;}
._41_c00303{width:50.544000px;}
._31_c00303{width:51.792000px;}
._36_c00303{width:53.784000px;}
._2f_c00303{width:56.256000px;}
._22_c00303{width:57.705000px;}
._44_c00303{width:61.413000px;}
._30_c00303{width:63.456000px;}
._42_c00303{width:64.872000px;}
._1e_c00303{width:67.470000px;}
._43_c00303{width:68.736000px;}
._3c_c00303{width:71.487000px;}
._40_c00303{width:76.047000px;}
._46_c00303{width:90.696000px;}
._47_c00303{width:100.275000px;}
._2_c00303{width:108.120000px;}
._1a_c00303{width:164.004000px;}
._5_c00303{width:494.280000px;}
._48_c00303{width:505.818000px;}
._26_c00303{width:672.795000px;}
._17_c00303{width:781.809000px;}
._19_c00303{width:1037.136000px;}
.fc2_c00303{color:transparent;}
.fc1_c00303{color:rgb(128,128,128);}
.fc0_c00303{color:rgb(0,0,0);}
.fs6_c00303{font-size:36.000000px;}
.fs9_c00303{font-size:48.000000px;}
.fs8_c00303{font-size:84.000000px;}
.fs5_c00303{font-size:87.000000px;}
.fs3_c00303{font-size:93.000000px;}
.fs7_c00303{font-size:96.000000px;}
.fs1_c00303{font-size:102.000000px;}
.fs2_c00303{font-size:105.000000px;}
.fs0_c00303{font-size:120.000000px;}
.fs4_c00303{font-size:144.000000px;}
.y0_c00303{bottom:0.000000px;}
.y23_c00303{bottom:3.105000px;}
.y22_c00303{bottom:7.228355px;}
.y21_c00303{bottom:65.385000px;}
.y20_c00303{bottom:132.285000px;}
.y1f_c00303{bottom:166.335000px;}
.y1e_c00303{bottom:201.435000px;}
.y1d_c00303{bottom:235.185000px;}
.y1c_c00303{bottom:269.535000px;}
.y1b_c00303{bottom:303.435000px;}
.y1a_c00303{bottom:337.035000px;}
.y19_c00303{bottom:371.835000px;}
.y18_c00303{bottom:405.285000px;}
.y17_c00303{bottom:439.635000px;}
.y16_c00303{bottom:473.535000px;}
.y15_c00303{bottom:507.285000px;}
.y14_c00303{bottom:541.335000px;}
.y13_c00303{bottom:575.085000px;}
.y12_c00303{bottom:609.135000px;}
.y11_c00303{bottom:642.885000px;}
.y10_c00303{bottom:676.335000px;}
.yf_c00303{bottom:710.085000px;}
.ye_c00303{bottom:743.535000px;}
.yd_c00303{bottom:777.285000px;}
.yc_c00303{bottom:811.035000px;}
.yb_c00303{bottom:845.085000px;}
.ya_c00303{bottom:877.785000px;}
.y9_c00303{bottom:911.835000px;}
.y8_c00303{bottom:944.535000px;}
.y7_c00303{bottom:976.035000px;}
.y6_c00303{bottom:1036.785000px;}
.y5_c00303{bottom:1051.335000px;}
.y4_c00303{bottom:1102.635000px;}
.y3_c00303{bottom:1179.885000px;}
.y2_c00303{bottom:1213.635000px;}
.y1_c00303{bottom:1247.685000px;}
.h9_c00303{height:13.200074px;}
.ha_c00303{height:43.804688px;}
.h7_c00303{height:45.580078px;}
.h6_c00303{height:110.151855px;}
.h4_c00303{height:117.748535px;}
.h8_c00303{height:121.546875px;}
.h2_c00303{height:129.143555px;}
.h3_c00303{height:132.941895px;}
.h5_c00303{height:182.320312px;}
.h1_c00303{height:1347.750000px;}
.h0_c00303{height:1347.825000px;}
.w1_c00303{width:104.875500px;}
.w0_c00303{width:840.750000px;}
.x0_c00303{left:0.000000px;}
.x6_c00303{left:138.600000px;}
.x1_c00303{left:175.800000px;}
.xf_c00303{left:236.250000px;}
.xe_c00303{left:237.300000px;}
.xd_c00303{left:238.500000px;}
.xc_c00303{left:239.550000px;}
.xb_c00303{left:241.200000px;}
.xa_c00303{left:242.250000px;}
.x9_c00303{left:243.300000px;}
.x2_c00303{left:244.950000px;}
.x3_c00303{left:273.750000px;}
.x11_c00303{left:372.189240px;}
.x8_c00303{left:478.200000px;}
.x7_c00303{left:484.200000px;}
.x5_c00303{left:596.250000px;}
.x4_c00303{left:615.300000px;}
.x10_c00303{left:756.300000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls1_c00303{letter-spacing:-2.666667pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ls2_c00303{letter-spacing:13.333333pt;}
.ws2_c00303{word-spacing:-56.448000pt;}
.ws0_c00303{word-spacing:-31.970667pt;}
.ws3_c00303{word-spacing:-21.850667pt;}
.ws1_c00303{word-spacing:-7.712000pt;}
.ws4_c00303{word-spacing:0.000000pt;}
._18_c00303{margin-left:-46.458667pt;}
._2a_c00303{margin-left:-29.269333pt;}
._3e_c00303{margin-left:-21.816000pt;}
._24_c00303{margin-left:-19.720000pt;}
._3f_c00303{margin-left:-18.005333pt;}
._2d_c00303{margin-left:-17.088000pt;}
._3b_c00303{margin-left:-14.002667pt;}
._39_c00303{margin-left:-12.904000pt;}
._4_c00303{margin-left:-11.520000pt;}
._8_c00303{margin-left:-9.813333pt;}
._9_c00303{margin-left:-8.640000pt;}
._0_c00303{margin-left:-7.680000pt;}
._10_c00303{margin-left:-6.253333pt;}
._25_c00303{margin-left:-4.832000pt;}
._1_c00303{margin-left:-3.733333pt;}
._14_c00303{margin-left:-2.813333pt;}
._6_c00303{margin-left:-1.904000pt;}
._12_c00303{margin-left:-0.989333pt;}
._2e_c00303{width:1.045333pt;}
._c_c00303{width:2.026667pt;}
._d_c00303{width:3.093333pt;}
._b_c00303{width:4.693333pt;}
._2b_c00303{width:6.314667pt;}
._2c_c00303{width:7.304000pt;}
._7_c00303{width:9.098667pt;}
._32_c00303{width:10.082667pt;}
._1d_c00303{width:11.042667pt;}
._20_c00303{width:12.416000pt;}
._1f_c00303{width:14.080000pt;}
._16_c00303{width:15.453333pt;}
._1b_c00303{width:17.024000pt;}
._1c_c00303{width:18.560000pt;}
._e_c00303{width:19.840000pt;}
._15_c00303{width:21.050667pt;}
._23_c00303{width:22.144000pt;}
._3_c00303{width:24.000000pt;}
._29_c00303{width:24.965333pt;}
._f_c00303{width:26.506667pt;}
._33_c00303{width:27.402667pt;}
._3d_c00303{width:28.309333pt;}
._27_c00303{width:29.296000pt;}
._28_c00303{width:30.333333pt;}
._34_c00303{width:32.192000pt;}
._45_c00303{width:33.096000pt;}
._37_c00303{width:34.130667pt;}
._13_c00303{width:35.410667pt;}
._11_c00303{width:37.146667pt;}
._3a_c00303{width:38.213333pt;}
._a_c00303{width:39.573333pt;}
._38_c00303{width:40.509333pt;}
._35_c00303{width:42.272000pt;}
._21_c00303{width:43.776000pt;}
._41_c00303{width:44.928000pt;}
._31_c00303{width:46.037333pt;}
._36_c00303{width:47.808000pt;}
._2f_c00303{width:50.005333pt;}
._22_c00303{width:51.293333pt;}
._44_c00303{width:54.589333pt;}
._30_c00303{width:56.405333pt;}
._42_c00303{width:57.664000pt;}
._1e_c00303{width:59.973333pt;}
._43_c00303{width:61.098667pt;}
._3c_c00303{width:63.544000pt;}
._40_c00303{width:67.597333pt;}
._46_c00303{width:80.618667pt;}
._47_c00303{width:89.133333pt;}
._2_c00303{width:96.106667pt;}
._1a_c00303{width:145.781333pt;}
._5_c00303{width:439.360000pt;}
._48_c00303{width:449.616000pt;}
._26_c00303{width:598.040000pt;}
._17_c00303{width:694.941333pt;}
._19_c00303{width:921.898667pt;}
.fs6_c00303{font-size:32.000000pt;}
.fs9_c00303{font-size:42.666667pt;}
.fs8_c00303{font-size:74.666667pt;}
.fs5_c00303{font-size:77.333333pt;}
.fs3_c00303{font-size:82.666667pt;}
.fs7_c00303{font-size:85.333333pt;}
.fs1_c00303{font-size:90.666667pt;}
.fs2_c00303{font-size:93.333333pt;}
.fs0_c00303{font-size:106.666667pt;}
.fs4_c00303{font-size:128.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y23_c00303{bottom:2.760000pt;}
.y22_c00303{bottom:6.425204pt;}
.y21_c00303{bottom:58.120000pt;}
.y20_c00303{bottom:117.586667pt;}
.y1f_c00303{bottom:147.853333pt;}
.y1e_c00303{bottom:179.053333pt;}
.y1d_c00303{bottom:209.053333pt;}
.y1c_c00303{bottom:239.586667pt;}
.y1b_c00303{bottom:269.720000pt;}
.y1a_c00303{bottom:299.586667pt;}
.y19_c00303{bottom:330.520000pt;}
.y18_c00303{bottom:360.253333pt;}
.y17_c00303{bottom:390.786667pt;}
.y16_c00303{bottom:420.920000pt;}
.y15_c00303{bottom:450.920000pt;}
.y14_c00303{bottom:481.186667pt;}
.y13_c00303{bottom:511.186667pt;}
.y12_c00303{bottom:541.453333pt;}
.y11_c00303{bottom:571.453333pt;}
.y10_c00303{bottom:601.186667pt;}
.yf_c00303{bottom:631.186667pt;}
.ye_c00303{bottom:660.920000pt;}
.yd_c00303{bottom:690.920000pt;}
.yc_c00303{bottom:720.920000pt;}
.yb_c00303{bottom:751.186667pt;}
.ya_c00303{bottom:780.253333pt;}
.y9_c00303{bottom:810.520000pt;}
.y8_c00303{bottom:839.586667pt;}
.y7_c00303{bottom:867.586667pt;}
.y6_c00303{bottom:921.586667pt;}
.y5_c00303{bottom:934.520000pt;}
.y4_c00303{bottom:980.120000pt;}
.y3_c00303{bottom:1048.786667pt;}
.y2_c00303{bottom:1078.786667pt;}
.y1_c00303{bottom:1109.053333pt;}
.h9_c00303{height:11.733399pt;}
.ha_c00303{height:38.937500pt;}
.h7_c00303{height:40.515625pt;}
.h6_c00303{height:97.912760pt;}
.h4_c00303{height:104.665365pt;}
.h8_c00303{height:108.041667pt;}
.h2_c00303{height:114.794271pt;}
.h3_c00303{height:118.170573pt;}
.h5_c00303{height:162.062500pt;}
.h1_c00303{height:1198.000000pt;}
.h0_c00303{height:1198.066667pt;}
.w1_c00303{width:93.222667pt;}
.w0_c00303{width:747.333333pt;}
.x0_c00303{left:0.000000pt;}
.x6_c00303{left:123.200000pt;}
.x1_c00303{left:156.266667pt;}
.xf_c00303{left:210.000000pt;}
.xe_c00303{left:210.933333pt;}
.xd_c00303{left:212.000000pt;}
.xc_c00303{left:212.933333pt;}
.xb_c00303{left:214.400000pt;}
.xa_c00303{left:215.333333pt;}
.x9_c00303{left:216.266667pt;}
.x2_c00303{left:217.733333pt;}
.x3_c00303{left:243.333333pt;}
.x11_c00303{left:330.834880pt;}
.x8_c00303{left:425.066667pt;}
.x7_c00303{left:430.400000pt;}
.x5_c00303{left:530.000000pt;}
.x4_c00303{left:546.933333pt;}
.x10_c00303{left:672.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_caf580871d24f128bbf81578.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_c42fc07012b5348b97b11736.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_34931702082aa9967330a606.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_60fac27b654e32bfaba7e728.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_8567ddefcc4b33d49db4b57d.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_fdccf638dda58dbbaec9679f.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00304;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00304{font-family:ff8_c00304;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.v1_c00304{vertical-align:297.600000px;}
.ls5_c00304{letter-spacing:-24.000000px;}
.ls3_c00304{letter-spacing:0.000000px;}
.ls1_c00304{letter-spacing:2.088000px;}
.ls2_c00304{letter-spacing:5.400000px;}
.ls4_c00304{letter-spacing:15.000000px;}
.ls0_c00304{letter-spacing:22.800000px;}
.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;}
}
.ws3_c00304{word-spacing:-23.136000px;}
.ws2_c00304{word-spacing:-20.244000px;}
.ws1_c00304{word-spacing:-0.501000px;}
.ws5_c00304{word-spacing:0.000000px;}
.ws0_c00304{word-spacing:1.228800px;}
.ws4_c00304{word-spacing:8.820000px;}
._2a_c00304{margin-left:-84.000000px;}
._13_c00304{margin-left:-74.439000px;}
._4e_c00304{margin-left:-59.328000px;}
._4d_c00304{margin-left:-36.960000px;}
._11_c00304{margin-left:-30.000000px;}
._37_c00304{margin-left:-26.376000px;}
._35_c00304{margin-left:-24.288000px;}
._38_c00304{margin-left:-21.504000px;}
._4_c00304{margin-left:-18.336000px;}
._46_c00304{margin-left:-14.265600px;}
._e_c00304{margin-left:-13.248000px;}
._12_c00304{margin-left:-10.512000px;}
._34_c00304{margin-left:-7.776000px;}
._32_c00304{margin-left:-6.384000px;}
._36_c00304{margin-left:-4.800000px;}
._28_c00304{margin-left:-2.208000px;}
._1a_c00304{margin-left:-1.056000px;}
._1f_c00304{width:1.632000px;}
._1e_c00304{width:2.688000px;}
._1c_c00304{width:3.840000px;}
._b_c00304{width:5.088000px;}
._18_c00304{width:6.720000px;}
._17_c00304{width:7.968000px;}
._c_c00304{width:9.024000px;}
._a_c00304{width:10.368000px;}
._2b_c00304{width:11.904000px;}
._0_c00304{width:13.056000px;}
._42_c00304{width:14.304000px;}
._2_c00304{width:15.456000px;}
._23_c00304{width:17.472000px;}
._1_c00304{width:18.816000px;}
._15_c00304{width:20.256000px;}
._7_c00304{width:21.273600px;}
._6_c00304{width:23.193600px;}
._14_c00304{width:24.288000px;}
._8_c00304{width:25.651200px;}
._24_c00304{width:27.552000px;}
._4c_c00304{width:28.780800px;}
._39_c00304{width:30.432000px;}
._19_c00304{width:31.968000px;}
._25_c00304{width:33.216000px;}
._2d_c00304{width:34.656000px;}
._3d_c00304{width:35.712000px;}
._21_c00304{width:36.864000px;}
._3f_c00304{width:38.112000px;}
._22_c00304{width:39.168000px;}
._27_c00304{width:41.088000px;}
._16_c00304{width:42.816000px;}
._20_c00304{width:45.024000px;}
._1d_c00304{width:47.520000px;}
._2f_c00304{width:49.536000px;}
._1b_c00304{width:50.880000px;}
._3a_c00304{width:52.128000px;}
._41_c00304{width:53.760000px;}
._30_c00304{width:56.352000px;}
._31_c00304{width:58.272000px;}
._5_c00304{width:60.240000px;}
._2e_c00304{width:62.688000px;}
._40_c00304{width:65.856000px;}
._3_c00304{width:70.752000px;}
._4f_c00304{width:72.864000px;}
._26_c00304{width:78.240000px;}
._43_c00304{width:81.408000px;}
._48_c00304{width:88.800000px;}
._49_c00304{width:90.816000px;}
._d_c00304{width:93.984000px;}
._f_c00304{width:96.864000px;}
._9_c00304{width:104.553600px;}
._3c_c00304{width:132.576000px;}
._4a_c00304{width:134.688000px;}
._44_c00304{width:136.224000px;}
._47_c00304{width:165.672000px;}
._3e_c00304{width:167.904000px;}
._45_c00304{width:172.512000px;}
._2c_c00304{width:175.680000px;}
._4b_c00304{width:177.312000px;}
._33_c00304{width:185.952000px;}
._29_c00304{width:203.112000px;}
._10_c00304{width:397.110000px;}
._3b_c00304{width:681.312000px;}
._51_c00304{width:683.328000px;}
._50_c00304{width:855.552000px;}
.fc2_c00304{color:transparent;}
.fc1_c00304{color:rgb(128,128,128);}
.fc0_c00304{color:rgb(0,0,0);}
.fs3_c00304{font-size:30.000000px;}
.fs9_c00304{font-size:48.000000px;}
.fs4_c00304{font-size:60.000000px;}
.fs1_c00304{font-size:76.800000px;}
.fs7_c00304{font-size:84.000000px;}
.fs2_c00304{font-size:87.000000px;}
.fs0_c00304{font-size:96.000000px;}
.fs8_c00304{font-size:102.000000px;}
.fs6_c00304{font-size:420.000000px;}
.fs5_c00304{font-size:501.000000px;}
.y0_c00304{bottom:0.000000px;}
.y25_c00304{bottom:3.105000px;}
.y24_c00304{bottom:7.228369px;}
.y23_c00304{bottom:112.620000px;}
.y22_c00304{bottom:146.820000px;}
.y21_c00304{bottom:181.170000px;}
.y20_c00304{bottom:214.320000px;}
.y1f_c00304{bottom:247.770000px;}
.y1e_c00304{bottom:282.120000px;}
.y1d_c00304{bottom:315.570000px;}
.y1c_c00304{bottom:348.870000px;}
.y1b_c00304{bottom:382.320000px;}
.y1a_c00304{bottom:448.470000px;}
.y19_c00304{bottom:515.070000px;}
.y18_c00304{bottom:549.120000px;}
.y17_c00304{bottom:582.870000px;}
.y16_c00304{bottom:614.970000px;}
.y15_c00304{bottom:648.270000px;}
.y14_c00304{bottom:681.120000px;}
.y13_c00304{bottom:714.420000px;}
.y12_c00304{bottom:747.270000px;}
.y11_c00304{bottom:780.570000px;}
.y10_c00304{bottom:813.420000px;}
.yf_c00304{bottom:845.670000px;}
.ye_c00304{bottom:878.820000px;}
.yd_c00304{bottom:912.270000px;}
.yc_c00304{bottom:944.970000px;}
.yb_c00304{bottom:978.120000px;}
.ya_c00304{bottom:1010.820000px;}
.y9_c00304{bottom:1044.570000px;}
.y8_c00304{bottom:1076.520000px;}
.y7_c00304{bottom:1109.370000px;}
.y4_c00304{bottom:1133.220000px;}
.y6_c00304{bottom:1141.770000px;}
.y5_c00304{bottom:1174.470000px;}
.y3_c00304{bottom:1241.220000px;}
.y2_c00304{bottom:1246.770000px;}
.y1_c00304{bottom:1274.670000px;}
.h7_c00304{height:13.200073px;}
.h8_c00304{height:43.804688px;}
.h4_c00304{height:70.224609px;}
.h3_c00304{height:110.151855px;}
.h2_c00304{height:121.546875px;}
.h6_c00304{height:412.207031px;}
.h5_c00304{height:534.567000px;}
.h0_c00304{height:1383.450000px;}
.h1_c00304{height:1383.750000px;}
.w2_c00304{width:104.875500px;}
.w0_c00304{width:878.025000px;}
.w1_c00304{width:878.250000px;}
.x0_c00304{left:0.000000px;}
.xa_c00304{left:49.950000px;}
.x9_c00304{left:51.600000px;}
.xe_c00304{left:55.350000px;}
.xc_c00304{left:56.400000px;}
.xd_c00304{left:58.500000px;}
.x12_c00304{left:61.200000px;}
.x7_c00304{left:85.500000px;}
.x6_c00304{left:86.700000px;}
.x11_c00304{left:88.800000px;}
.x1_c00304{left:92.100000px;}
.xb_c00304{left:102.900000px;}
.x8_c00304{left:103.950000px;}
.xf_c00304{left:163.800000px;}
.x5_c00304{left:166.500000px;}
.x10_c00304{left:196.800000px;}
.x4_c00304{left:198.450000px;}
.x13_c00304{left:390.826721px;}
.x2_c00304{left:499.500000px;}
.x3_c00304{left:507.300000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.v1_c00304{vertical-align:264.533333pt;}
.ls5_c00304{letter-spacing:-21.333333pt;}
.ls3_c00304{letter-spacing:0.000000pt;}
.ls1_c00304{letter-spacing:1.856000pt;}
.ls2_c00304{letter-spacing:4.800000pt;}
.ls4_c00304{letter-spacing:13.333333pt;}
.ls0_c00304{letter-spacing:20.266667pt;}
.ws3_c00304{word-spacing:-20.565333pt;}
.ws2_c00304{word-spacing:-17.994667pt;}
.ws1_c00304{word-spacing:-0.445333pt;}
.ws5_c00304{word-spacing:0.000000pt;}
.ws0_c00304{word-spacing:1.092267pt;}
.ws4_c00304{word-spacing:7.840000pt;}
._2a_c00304{margin-left:-74.666667pt;}
._13_c00304{margin-left:-66.168000pt;}
._4e_c00304{margin-left:-52.736000pt;}
._4d_c00304{margin-left:-32.853333pt;}
._11_c00304{margin-left:-26.666667pt;}
._37_c00304{margin-left:-23.445333pt;}
._35_c00304{margin-left:-21.589333pt;}
._38_c00304{margin-left:-19.114667pt;}
._4_c00304{margin-left:-16.298667pt;}
._46_c00304{margin-left:-12.680533pt;}
._e_c00304{margin-left:-11.776000pt;}
._12_c00304{margin-left:-9.344000pt;}
._34_c00304{margin-left:-6.912000pt;}
._32_c00304{margin-left:-5.674667pt;}
._36_c00304{margin-left:-4.266667pt;}
._28_c00304{margin-left:-1.962667pt;}
._1a_c00304{margin-left:-0.938667pt;}
._1f_c00304{width:1.450667pt;}
._1e_c00304{width:2.389333pt;}
._1c_c00304{width:3.413333pt;}
._b_c00304{width:4.522667pt;}
._18_c00304{width:5.973333pt;}
._17_c00304{width:7.082667pt;}
._c_c00304{width:8.021333pt;}
._a_c00304{width:9.216000pt;}
._2b_c00304{width:10.581333pt;}
._0_c00304{width:11.605333pt;}
._42_c00304{width:12.714667pt;}
._2_c00304{width:13.738667pt;}
._23_c00304{width:15.530667pt;}
._1_c00304{width:16.725333pt;}
._15_c00304{width:18.005333pt;}
._7_c00304{width:18.909867pt;}
._6_c00304{width:20.616533pt;}
._14_c00304{width:21.589333pt;}
._8_c00304{width:22.801067pt;}
._24_c00304{width:24.490667pt;}
._4c_c00304{width:25.582933pt;}
._39_c00304{width:27.050667pt;}
._19_c00304{width:28.416000pt;}
._25_c00304{width:29.525333pt;}
._2d_c00304{width:30.805333pt;}
._3d_c00304{width:31.744000pt;}
._21_c00304{width:32.768000pt;}
._3f_c00304{width:33.877333pt;}
._22_c00304{width:34.816000pt;}
._27_c00304{width:36.522667pt;}
._16_c00304{width:38.058667pt;}
._20_c00304{width:40.021333pt;}
._1d_c00304{width:42.240000pt;}
._2f_c00304{width:44.032000pt;}
._1b_c00304{width:45.226667pt;}
._3a_c00304{width:46.336000pt;}
._41_c00304{width:47.786667pt;}
._30_c00304{width:50.090667pt;}
._31_c00304{width:51.797333pt;}
._5_c00304{width:53.546667pt;}
._2e_c00304{width:55.722667pt;}
._40_c00304{width:58.538667pt;}
._3_c00304{width:62.890667pt;}
._4f_c00304{width:64.768000pt;}
._26_c00304{width:69.546667pt;}
._43_c00304{width:72.362667pt;}
._48_c00304{width:78.933333pt;}
._49_c00304{width:80.725333pt;}
._d_c00304{width:83.541333pt;}
._f_c00304{width:86.101333pt;}
._9_c00304{width:92.936533pt;}
._3c_c00304{width:117.845333pt;}
._4a_c00304{width:119.722667pt;}
._44_c00304{width:121.088000pt;}
._47_c00304{width:147.264000pt;}
._3e_c00304{width:149.248000pt;}
._45_c00304{width:153.344000pt;}
._2c_c00304{width:156.160000pt;}
._4b_c00304{width:157.610667pt;}
._33_c00304{width:165.290667pt;}
._29_c00304{width:180.544000pt;}
._10_c00304{width:352.986667pt;}
._3b_c00304{width:605.610667pt;}
._51_c00304{width:607.402667pt;}
._50_c00304{width:760.490667pt;}
.fs3_c00304{font-size:26.666667pt;}
.fs9_c00304{font-size:42.666667pt;}
.fs4_c00304{font-size:53.333333pt;}
.fs1_c00304{font-size:68.266667pt;}
.fs7_c00304{font-size:74.666667pt;}
.fs2_c00304{font-size:77.333333pt;}
.fs0_c00304{font-size:85.333333pt;}
.fs8_c00304{font-size:90.666667pt;}
.fs6_c00304{font-size:373.333333pt;}
.fs5_c00304{font-size:445.333333pt;}
.y0_c00304{bottom:0.000000pt;}
.y25_c00304{bottom:2.760000pt;}
.y24_c00304{bottom:6.425217pt;}
.y23_c00304{bottom:100.106667pt;}
.y22_c00304{bottom:130.506667pt;}
.y21_c00304{bottom:161.040000pt;}
.y20_c00304{bottom:190.506667pt;}
.y1f_c00304{bottom:220.240000pt;}
.y1e_c00304{bottom:250.773333pt;}
.y1d_c00304{bottom:280.506667pt;}
.y1c_c00304{bottom:310.106667pt;}
.y1b_c00304{bottom:339.840000pt;}
.y1a_c00304{bottom:398.640000pt;}
.y19_c00304{bottom:457.840000pt;}
.y18_c00304{bottom:488.106667pt;}
.y17_c00304{bottom:518.106667pt;}
.y16_c00304{bottom:546.640000pt;}
.y15_c00304{bottom:576.240000pt;}
.y14_c00304{bottom:605.440000pt;}
.y13_c00304{bottom:635.040000pt;}
.y12_c00304{bottom:664.240000pt;}
.y11_c00304{bottom:693.840000pt;}
.y10_c00304{bottom:723.040000pt;}
.yf_c00304{bottom:751.706667pt;}
.ye_c00304{bottom:781.173333pt;}
.yd_c00304{bottom:810.906667pt;}
.yc_c00304{bottom:839.973333pt;}
.yb_c00304{bottom:869.440000pt;}
.ya_c00304{bottom:898.506667pt;}
.y9_c00304{bottom:928.506667pt;}
.y8_c00304{bottom:956.906667pt;}
.y7_c00304{bottom:986.106667pt;}
.y4_c00304{bottom:1007.306667pt;}
.y6_c00304{bottom:1014.906667pt;}
.y5_c00304{bottom:1043.973333pt;}
.y3_c00304{bottom:1103.306667pt;}
.y2_c00304{bottom:1108.240000pt;}
.y1_c00304{bottom:1133.040000pt;}
.h7_c00304{height:11.733399pt;}
.h8_c00304{height:38.937500pt;}
.h4_c00304{height:62.421875pt;}
.h3_c00304{height:97.912760pt;}
.h2_c00304{height:108.041667pt;}
.h6_c00304{height:366.406250pt;}
.h5_c00304{height:475.170667pt;}
.h0_c00304{height:1229.733333pt;}
.h1_c00304{height:1230.000000pt;}
.w2_c00304{width:93.222667pt;}
.w0_c00304{width:780.466667pt;}
.w1_c00304{width:780.666667pt;}
.x0_c00304{left:0.000000pt;}
.xa_c00304{left:44.400000pt;}
.x9_c00304{left:45.866667pt;}
.xe_c00304{left:49.200000pt;}
.xc_c00304{left:50.133333pt;}
.xd_c00304{left:52.000000pt;}
.x12_c00304{left:54.400000pt;}
.x7_c00304{left:76.000000pt;}
.x6_c00304{left:77.066667pt;}
.x11_c00304{left:78.933333pt;}
.x1_c00304{left:81.866667pt;}
.xb_c00304{left:91.466667pt;}
.x8_c00304{left:92.400000pt;}
.xf_c00304{left:145.600000pt;}
.x5_c00304{left:148.000000pt;}
.x10_c00304{left:174.933333pt;}
.x4_c00304{left:176.400000pt;}
.x13_c00304{left:347.401530pt;}
.x2_c00304{left:444.000000pt;}
.x3_c00304{left:450.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b32a15193e7d07cc09718e0c.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_30065263cd95ad07013c7c35.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_25563ffa636685465f49f235.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00305;src:url('chunks/assets/font_af170812e9b8f6bf8cf19d98.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_6ccd79e03bc3a54c1b7ff706.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00305;src:url('chunks/assets/font_e6c61490b8527959977241a8.woff2')format("woff");}.ff7_c00305{font-family:ff7_c00305;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00305;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00305{font-family:ff8_c00305;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.v1_c00305{vertical-align:181.800000px;}
.ls3_c00305{letter-spacing:-6.000000px;}
.ls2_c00305{letter-spacing:0.000000px;}
.ls1_c00305{letter-spacing:9.600000px;}
.ls0_c00305{letter-spacing:39.600000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:-139.347000px;}
.ws3_c00305{word-spacing:-23.136000px;}
.ws1_c00305{word-spacing:-20.244000px;}
.ws2_c00305{word-spacing:-18.582000px;}
.ws4_c00305{word-spacing:0.000000px;}
._3a_c00305{margin-left:-23.712000px;}
._39_c00305{margin-left:-22.173000px;}
._3b_c00305{margin-left:-17.565000px;}
._38_c00305{margin-left:-16.320000px;}
._1b_c00305{margin-left:-13.524000px;}
._0_c00305{margin-left:-12.471000px;}
._35_c00305{margin-left:-10.656000px;}
._2f_c00305{margin-left:-9.219000px;}
._25_c00305{margin-left:-7.536000px;}
._1c_c00305{margin-left:-6.384000px;}
._1_c00305{margin-left:-5.280000px;}
._24_c00305{margin-left:-3.936000px;}
._23_c00305{margin-left:-2.400000px;}
._29_c00305{margin-left:-1.152000px;}
._13_c00305{width:1.536000px;}
._3_c00305{width:2.880000px;}
._4_c00305{width:4.416000px;}
._40_c00305{width:5.421000px;}
._8_c00305{width:6.432000px;}
._c_c00305{width:7.968000px;}
._d_c00305{width:9.216000px;}
._9_c00305{width:10.368000px;}
._7_c00305{width:12.096000px;}
._6_c00305{width:13.344000px;}
._1e_c00305{width:14.688000px;}
._b_c00305{width:16.032000px;}
._10_c00305{width:18.336000px;}
._e_c00305{width:20.640000px;}
._f_c00305{width:22.080000px;}
._a_c00305{width:25.728000px;}
._2_c00305{width:27.552000px;}
._15_c00305{width:29.049000px;}
._31_c00305{width:30.144000px;}
._14_c00305{width:31.299000px;}
._1d_c00305{width:34.176000px;}
._12_c00305{width:36.480000px;}
._2d_c00305{width:37.566000px;}
._11_c00305{width:39.552000px;}
._2a_c00305{width:40.656000px;}
._5_c00305{width:42.528000px;}
._1f_c00305{width:45.024000px;}
._2b_c00305{width:46.848000px;}
._2e_c00305{width:48.624000px;}
._20_c00305{width:49.824000px;}
._3f_c00305{width:51.072000px;}
._19_c00305{width:52.083000px;}
._3d_c00305{width:53.907000px;}
._22_c00305{width:56.160000px;}
._34_c00305{width:60.672000px;}
._26_c00305{width:61.821000px;}
._37_c00305{width:63.789000px;}
._33_c00305{width:64.992000px;}
._27_c00305{width:66.432000px;}
._3e_c00305{width:67.488000px;}
._28_c00305{width:70.656000px;}
._30_c00305{width:79.440000px;}
._18_c00305{width:100.989000px;}
._17_c00305{width:140.796000px;}
._16_c00305{width:142.224000px;}
._2c_c00305{width:177.120000px;}
._21_c00305{width:183.264000px;}
._1a_c00305{width:184.272000px;}
._3c_c00305{width:317.856000px;}
._41_c00305{width:319.680000px;}
._32_c00305{width:364.512000px;}
._36_c00305{width:591.072000px;}
._42_c00305{width:2012.022000px;}
.fc2_c00305{color:transparent;}
.fc1_c00305{color:rgb(128,128,128);}
.fc0_c00305{color:rgb(0,0,0);}
.fs7_c00305{font-size:48.000000px;}
.fs4_c00305{font-size:84.000000px;}
.fs6_c00305{font-size:93.000000px;}
.fs1_c00305{font-size:96.000000px;}
.fs5_c00305{font-size:102.000000px;}
.fs2_c00305{font-size:117.000000px;}
.fs3_c00305{font-size:120.000000px;}
.fs0_c00305{font-size:351.000000px;}
.y0_c00305{bottom:0.000000px;}
.y20_c00305{bottom:3.105000px;}
.y1f_c00305{bottom:7.228357px;}
.y1e_c00305{bottom:99.630000px;}
.y1d_c00305{bottom:132.930000px;}
.y1c_c00305{bottom:167.430000px;}
.y1b_c00305{bottom:201.480000px;}
.y1a_c00305{bottom:234.330000px;}
.y19_c00305{bottom:270.780000px;}
.y18_c00305{bottom:303.180000px;}
.y17_c00305{bottom:335.430000px;}
.y16_c00305{bottom:372.330000px;}
.y15_c00305{bottom:405.330000px;}
.y14_c00305{bottom:439.530000px;}
.y13_c00305{bottom:473.130000px;}
.y12_c00305{bottom:507.030000px;}
.y11_c00305{bottom:540.330000px;}
.y10_c00305{bottom:574.080000px;}
.yf_c00305{bottom:607.830000px;}
.ye_c00305{bottom:641.280000px;}
.yd_c00305{bottom:675.330000px;}
.yc_c00305{bottom:708.780000px;}
.yb_c00305{bottom:741.930000px;}
.ya_c00305{bottom:775.230000px;}
.y9_c00305{bottom:808.680000px;}
.y8_c00305{bottom:843.030000px;}
.y7_c00305{bottom:875.580000px;}
.y6_c00305{bottom:909.180000px;}
.y5_c00305{bottom:996.930000px;}
.y4_c00305{bottom:1048.380000px;}
.y3_c00305{bottom:1098.630000px;}
.y1_c00305{bottom:1164.480000px;}
.y2_c00305{bottom:1174.530000px;}
.h7_c00305{height:13.200074px;}
.h8_c00305{height:43.804688px;}
.h6_c00305{height:117.748535px;}
.h3_c00305{height:121.546875px;}
.h4_c00305{height:124.839000px;}
.h5_c00305{height:140.449219px;}
.h2_c00305{height:444.405762px;}
.h0_c00305{height:1382.700000px;}
.h1_c00305{height:1383.000000px;}
.w2_c00305{width:104.875500px;}
.w0_c00305{width:863.175000px;}
.w1_c00305{width:863.250000px;}
.x0_c00305{left:0.000000px;}
.x12_c00305{left:169.800000px;}
.x11_c00305{left:171.900000px;}
.x13_c00305{left:173.550000px;}
.xa_c00305{left:242.100000px;}
.x9_c00305{left:273.000000px;}
.xb_c00305{left:274.500000px;}
.xd_c00305{left:276.750000px;}
.xe_c00305{left:277.800000px;}
.xf_c00305{left:279.450000px;}
.x1_c00305{left:301.350000px;}
.x3_c00305{left:317.700000px;}
.x6_c00305{left:323.100000px;}
.x10_c00305{left:325.800000px;}
.xc_c00305{left:327.600000px;}
.x14_c00305{left:383.401749px;}
.x2_c00305{left:393.900000px;}
.x4_c00305{left:431.100000px;}
.x7_c00305{left:439.350000px;}
.x5_c00305{left:484.050000px;}
.x8_c00305{left:522.000000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.v1_c00305{vertical-align:161.600000pt;}
.ls3_c00305{letter-spacing:-5.333333pt;}
.ls2_c00305{letter-spacing:0.000000pt;}
.ls1_c00305{letter-spacing:8.533333pt;}
.ls0_c00305{letter-spacing:35.200000pt;}
.ws0_c00305{word-spacing:-123.864000pt;}
.ws3_c00305{word-spacing:-20.565333pt;}
.ws1_c00305{word-spacing:-17.994667pt;}
.ws2_c00305{word-spacing:-16.517333pt;}
.ws4_c00305{word-spacing:0.000000pt;}
._3a_c00305{margin-left:-21.077333pt;}
._39_c00305{margin-left:-19.709333pt;}
._3b_c00305{margin-left:-15.613333pt;}
._38_c00305{margin-left:-14.506667pt;}
._1b_c00305{margin-left:-12.021333pt;}
._0_c00305{margin-left:-11.085333pt;}
._35_c00305{margin-left:-9.472000pt;}
._2f_c00305{margin-left:-8.194667pt;}
._25_c00305{margin-left:-6.698667pt;}
._1c_c00305{margin-left:-5.674667pt;}
._1_c00305{margin-left:-4.693333pt;}
._24_c00305{margin-left:-3.498667pt;}
._23_c00305{margin-left:-2.133333pt;}
._29_c00305{margin-left:-1.024000pt;}
._13_c00305{width:1.365333pt;}
._3_c00305{width:2.560000pt;}
._4_c00305{width:3.925333pt;}
._40_c00305{width:4.818667pt;}
._8_c00305{width:5.717333pt;}
._c_c00305{width:7.082667pt;}
._d_c00305{width:8.192000pt;}
._9_c00305{width:9.216000pt;}
._7_c00305{width:10.752000pt;}
._6_c00305{width:11.861333pt;}
._1e_c00305{width:13.056000pt;}
._b_c00305{width:14.250667pt;}
._10_c00305{width:16.298667pt;}
._e_c00305{width:18.346667pt;}
._f_c00305{width:19.626667pt;}
._a_c00305{width:22.869333pt;}
._2_c00305{width:24.490667pt;}
._15_c00305{width:25.821333pt;}
._31_c00305{width:26.794667pt;}
._14_c00305{width:27.821333pt;}
._1d_c00305{width:30.378667pt;}
._12_c00305{width:32.426667pt;}
._2d_c00305{width:33.392000pt;}
._11_c00305{width:35.157333pt;}
._2a_c00305{width:36.138667pt;}
._5_c00305{width:37.802667pt;}
._1f_c00305{width:40.021333pt;}
._2b_c00305{width:41.642667pt;}
._2e_c00305{width:43.221333pt;}
._20_c00305{width:44.288000pt;}
._3f_c00305{width:45.397333pt;}
._19_c00305{width:46.296000pt;}
._3d_c00305{width:47.917333pt;}
._22_c00305{width:49.920000pt;}
._34_c00305{width:53.930667pt;}
._26_c00305{width:54.952000pt;}
._37_c00305{width:56.701333pt;}
._33_c00305{width:57.770667pt;}
._27_c00305{width:59.050667pt;}
._3e_c00305{width:59.989333pt;}
._28_c00305{width:62.805333pt;}
._30_c00305{width:70.613333pt;}
._18_c00305{width:89.768000pt;}
._17_c00305{width:125.152000pt;}
._16_c00305{width:126.421333pt;}
._2c_c00305{width:157.440000pt;}
._21_c00305{width:162.901333pt;}
._1a_c00305{width:163.797333pt;}
._3c_c00305{width:282.538667pt;}
._41_c00305{width:284.160000pt;}
._32_c00305{width:324.010667pt;}
._36_c00305{width:525.397333pt;}
._42_c00305{width:1788.464000pt;}
.fs7_c00305{font-size:42.666667pt;}
.fs4_c00305{font-size:74.666667pt;}
.fs6_c00305{font-size:82.666667pt;}
.fs1_c00305{font-size:85.333333pt;}
.fs5_c00305{font-size:90.666667pt;}
.fs2_c00305{font-size:104.000000pt;}
.fs3_c00305{font-size:106.666667pt;}
.fs0_c00305{font-size:312.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y20_c00305{bottom:2.760000pt;}
.y1f_c00305{bottom:6.425206pt;}
.y1e_c00305{bottom:88.560000pt;}
.y1d_c00305{bottom:118.160000pt;}
.y1c_c00305{bottom:148.826667pt;}
.y1b_c00305{bottom:179.093333pt;}
.y1a_c00305{bottom:208.293333pt;}
.y19_c00305{bottom:240.693333pt;}
.y18_c00305{bottom:269.493333pt;}
.y17_c00305{bottom:298.160000pt;}
.y16_c00305{bottom:330.960000pt;}
.y15_c00305{bottom:360.293333pt;}
.y14_c00305{bottom:390.693333pt;}
.y13_c00305{bottom:420.560000pt;}
.y12_c00305{bottom:450.693333pt;}
.y11_c00305{bottom:480.293333pt;}
.y10_c00305{bottom:510.293333pt;}
.yf_c00305{bottom:540.293333pt;}
.ye_c00305{bottom:570.026667pt;}
.yd_c00305{bottom:600.293333pt;}
.yc_c00305{bottom:630.026667pt;}
.yb_c00305{bottom:659.493333pt;}
.ya_c00305{bottom:689.093333pt;}
.y9_c00305{bottom:718.826667pt;}
.y8_c00305{bottom:749.360000pt;}
.y7_c00305{bottom:778.293333pt;}
.y6_c00305{bottom:808.160000pt;}
.y5_c00305{bottom:886.160000pt;}
.y4_c00305{bottom:931.893333pt;}
.y3_c00305{bottom:976.560000pt;}
.y1_c00305{bottom:1035.093333pt;}
.y2_c00305{bottom:1044.026667pt;}
.h7_c00305{height:11.733399pt;}
.h8_c00305{height:38.937500pt;}
.h6_c00305{height:104.665365pt;}
.h3_c00305{height:108.041667pt;}
.h4_c00305{height:110.968000pt;}
.h5_c00305{height:124.843750pt;}
.h2_c00305{height:395.027344pt;}
.h0_c00305{height:1229.066667pt;}
.h1_c00305{height:1229.333333pt;}
.w2_c00305{width:93.222667pt;}
.w0_c00305{width:767.266667pt;}
.w1_c00305{width:767.333333pt;}
.x0_c00305{left:0.000000pt;}
.x12_c00305{left:150.933333pt;}
.x11_c00305{left:152.800000pt;}
.x13_c00305{left:154.266667pt;}
.xa_c00305{left:215.200000pt;}
.x9_c00305{left:242.666667pt;}
.xb_c00305{left:244.000000pt;}
.xd_c00305{left:246.000000pt;}
.xe_c00305{left:246.933333pt;}
.xf_c00305{left:248.400000pt;}
.x1_c00305{left:267.866667pt;}
.x3_c00305{left:282.400000pt;}
.x6_c00305{left:287.200000pt;}
.x10_c00305{left:289.600000pt;}
.xc_c00305{left:291.200000pt;}
.x14_c00305{left:340.801554pt;}
.x2_c00305{left:350.133333pt;}
.x4_c00305{left:383.200000pt;}
.x7_c00305{left:390.533333pt;}
.x5_c00305{left:430.266667pt;}
.x8_c00305{left:464.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_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_6b205359b2c4312b77fdeb46.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_15d0f6ab83f82a945fa16aff.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_26cbf51c50df8e06632ec4ff.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls2_c00306{letter-spacing:-6.000000px;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:30.756000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:-63.504000px;}
.ws1_c00306{word-spacing:-51.000000px;}
.ws2_c00306{word-spacing:-23.136000px;}
.ws3_c00306{word-spacing:0.000000px;}
._31_c00306{margin-left:-33.312000px;}
._1d_c00306{margin-left:-26.784000px;}
._3b_c00306{margin-left:-9.708000px;}
._2e_c00306{margin-left:-8.064000px;}
._2a_c00306{margin-left:-7.008000px;}
._2f_c00306{margin-left:-5.184000px;}
._2b_c00306{margin-left:-4.128000px;}
._21_c00306{margin-left:-2.688000px;}
._a_c00306{margin-left:-1.248000px;}
._c_c00306{width:1.824000px;}
._4_c00306{width:2.976000px;}
._3_c00306{width:4.896000px;}
._1_c00306{width:6.720000px;}
._8_c00306{width:7.872000px;}
._0_c00306{width:9.120000px;}
._7_c00306{width:10.464000px;}
._17_c00306{width:12.060000px;}
._15_c00306{width:13.188000px;}
._12_c00306{width:14.868000px;}
._1e_c00306{width:15.972000px;}
._1a_c00306{width:18.048000px;}
._14_c00306{width:19.872000px;}
._24_c00306{width:21.312000px;}
._33_c00306{width:23.202000px;}
._23_c00306{width:24.384000px;}
._10_c00306{width:25.920000px;}
._32_c00306{width:26.976000px;}
._6_c00306{width:28.416000px;}
._1b_c00306{width:30.144000px;}
._25_c00306{width:32.160000px;}
._e_c00306{width:33.888000px;}
._22_c00306{width:35.808000px;}
._11_c00306{width:37.704000px;}
._9_c00306{width:38.976000px;}
._18_c00306{width:40.992000px;}
._d_c00306{width:42.816000px;}
._13_c00306{width:45.492000px;}
._19_c00306{width:47.424000px;}
._2_c00306{width:49.920000px;}
._5_c00306{width:52.032000px;}
._27_c00306{width:54.912000px;}
._1f_c00306{width:57.972000px;}
._3a_c00306{width:59.052000px;}
._26_c00306{width:61.824000px;}
._16_c00306{width:62.988000px;}
._39_c00306{width:68.556000px;}
._28_c00306{width:71.136000px;}
._f_c00306{width:72.672000px;}
._29_c00306{width:74.880000px;}
._b_c00306{width:79.392000px;}
._38_c00306{width:87.996000px;}
._30_c00306{width:89.868000px;}
._2d_c00306{width:93.120000px;}
._35_c00306{width:100.716000px;}
._37_c00306{width:113.952000px;}
._2c_c00306{width:183.648000px;}
._34_c00306{width:187.944000px;}
._1c_c00306{width:202.368000px;}
._20_c00306{width:374.112000px;}
._36_c00306{width:642.600000px;}
.fc2_c00306{color:transparent;}
.fc1_c00306{color:rgb(128,128,128);}
.fc0_c00306{color:rgb(0,0,0);}
.fs4_c00306{font-size:48.000000px;}
.fs1_c00306{font-size:84.000000px;}
.fs0_c00306{font-size:96.000000px;}
.fs2_c00306{font-size:102.000000px;}
.fs3_c00306{font-size:117.000000px;}
.y0_c00306{bottom:0.000000px;}
.y21_c00306{bottom:3.105000px;}
.y20_c00306{bottom:7.228369px;}
.y1f_c00306{bottom:72.870000px;}
.y1e_c00306{bottom:114.120000px;}
.y1d_c00306{bottom:149.070000px;}
.y1c_c00306{bottom:182.220000px;}
.y1b_c00306{bottom:216.570000px;}
.y1a_c00306{bottom:250.020000px;}
.y19_c00306{bottom:283.170000px;}
.y18_c00306{bottom:317.220000px;}
.y17_c00306{bottom:352.020000px;}
.y16_c00306{bottom:441.720000px;}
.y15_c00306{bottom:518.370000px;}
.y14_c00306{bottom:551.370000px;}
.y13_c00306{bottom:583.920000px;}
.y12_c00306{bottom:616.620000px;}
.y11_c00306{bottom:649.920000px;}
.y10_c00306{bottom:683.070000px;}
.yf_c00306{bottom:749.220000px;}
.ye_c00306{bottom:815.670000px;}
.yd_c00306{bottom:847.770000px;}
.yc_c00306{bottom:880.170000px;}
.yb_c00306{bottom:913.920000px;}
.ya_c00306{bottom:946.620000px;}
.y9_c00306{bottom:979.320000px;}
.y8_c00306{bottom:1013.070000px;}
.y7_c00306{bottom:1046.220000px;}
.y6_c00306{bottom:1078.620000px;}
.y5_c00306{bottom:1112.370000px;}
.y4_c00306{bottom:1145.070000px;}
.y3_c00306{bottom:1177.470000px;}
.y2_c00306{bottom:1211.220000px;}
.y1_c00306{bottom:1244.970000px;}
.h4_c00306{height:13.200073px;}
.h5_c00306{height:43.804688px;}
.h2_c00306{height:121.546875px;}
.h3_c00306{height:124.839000px;}
.h0_c00306{height:1383.450000px;}
.h1_c00306{height:1383.750000px;}
.w2_c00306{width:104.875500px;}
.w0_c00306{width:878.025000px;}
.w1_c00306{width:878.250000px;}
.x0_c00306{left:0.000000px;}
.x7_c00306{left:52.650000px;}
.x2_c00306{left:53.700000px;}
.x4_c00306{left:55.350000px;}
.x12_c00306{left:63.450000px;}
.x13_c00306{left:64.500000px;}
.x14_c00306{left:67.200000px;}
.x15_c00306{left:68.400000px;}
.xc_c00306{left:73.200000px;}
.x8_c00306{left:88.800000px;}
.xb_c00306{left:91.050000px;}
.xd_c00306{left:92.100000px;}
.x6_c00306{left:103.950000px;}
.xf_c00306{left:111.000000px;}
.x5_c00306{left:117.000000px;}
.x3_c00306{left:118.500000px;}
.x1_c00306{left:119.700000px;}
.xe_c00306{left:123.750000px;}
.x9_c00306{left:160.200000px;}
.xa_c00306{left:199.050000px;}
.x10_c00306{left:211.950000px;}
.x11_c00306{left:308.100000px;}
.x17_c00306{left:390.826721px;}
.x16_c00306{left:593.700000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls2_c00306{letter-spacing:-5.333333pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:27.338667pt;}
.ws0_c00306{word-spacing:-56.448000pt;}
.ws1_c00306{word-spacing:-45.333333pt;}
.ws2_c00306{word-spacing:-20.565333pt;}
.ws3_c00306{word-spacing:0.000000pt;}
._31_c00306{margin-left:-29.610667pt;}
._1d_c00306{margin-left:-23.808000pt;}
._3b_c00306{margin-left:-8.629333pt;}
._2e_c00306{margin-left:-7.168000pt;}
._2a_c00306{margin-left:-6.229333pt;}
._2f_c00306{margin-left:-4.608000pt;}
._2b_c00306{margin-left:-3.669333pt;}
._21_c00306{margin-left:-2.389333pt;}
._a_c00306{margin-left:-1.109333pt;}
._c_c00306{width:1.621333pt;}
._4_c00306{width:2.645333pt;}
._3_c00306{width:4.352000pt;}
._1_c00306{width:5.973333pt;}
._8_c00306{width:6.997333pt;}
._0_c00306{width:8.106667pt;}
._7_c00306{width:9.301333pt;}
._17_c00306{width:10.720000pt;}
._15_c00306{width:11.722667pt;}
._12_c00306{width:13.216000pt;}
._1e_c00306{width:14.197333pt;}
._1a_c00306{width:16.042667pt;}
._14_c00306{width:17.664000pt;}
._24_c00306{width:18.944000pt;}
._33_c00306{width:20.624000pt;}
._23_c00306{width:21.674667pt;}
._10_c00306{width:23.040000pt;}
._32_c00306{width:23.978667pt;}
._6_c00306{width:25.258667pt;}
._1b_c00306{width:26.794667pt;}
._25_c00306{width:28.586667pt;}
._e_c00306{width:30.122667pt;}
._22_c00306{width:31.829333pt;}
._11_c00306{width:33.514667pt;}
._9_c00306{width:34.645333pt;}
._18_c00306{width:36.437333pt;}
._d_c00306{width:38.058667pt;}
._13_c00306{width:40.437333pt;}
._19_c00306{width:42.154667pt;}
._2_c00306{width:44.373333pt;}
._5_c00306{width:46.250667pt;}
._27_c00306{width:48.810667pt;}
._1f_c00306{width:51.530667pt;}
._3a_c00306{width:52.490667pt;}
._26_c00306{width:54.954667pt;}
._16_c00306{width:55.989333pt;}
._39_c00306{width:60.938667pt;}
._28_c00306{width:63.232000pt;}
._f_c00306{width:64.597333pt;}
._29_c00306{width:66.560000pt;}
._b_c00306{width:70.570667pt;}
._38_c00306{width:78.218667pt;}
._30_c00306{width:79.882667pt;}
._2d_c00306{width:82.773333pt;}
._35_c00306{width:89.525333pt;}
._37_c00306{width:101.290667pt;}
._2c_c00306{width:163.242667pt;}
._34_c00306{width:167.061333pt;}
._1c_c00306{width:179.882667pt;}
._20_c00306{width:332.544000pt;}
._36_c00306{width:571.200000pt;}
.fs4_c00306{font-size:42.666667pt;}
.fs1_c00306{font-size:74.666667pt;}
.fs0_c00306{font-size:85.333333pt;}
.fs2_c00306{font-size:90.666667pt;}
.fs3_c00306{font-size:104.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y21_c00306{bottom:2.760000pt;}
.y20_c00306{bottom:6.425217pt;}
.y1f_c00306{bottom:64.773333pt;}
.y1e_c00306{bottom:101.440000pt;}
.y1d_c00306{bottom:132.506667pt;}
.y1c_c00306{bottom:161.973333pt;}
.y1b_c00306{bottom:192.506667pt;}
.y1a_c00306{bottom:222.240000pt;}
.y19_c00306{bottom:251.706667pt;}
.y18_c00306{bottom:281.973333pt;}
.y17_c00306{bottom:312.906667pt;}
.y16_c00306{bottom:392.640000pt;}
.y15_c00306{bottom:460.773333pt;}
.y14_c00306{bottom:490.106667pt;}
.y13_c00306{bottom:519.040000pt;}
.y12_c00306{bottom:548.106667pt;}
.y11_c00306{bottom:577.706667pt;}
.y10_c00306{bottom:607.173333pt;}
.yf_c00306{bottom:665.973333pt;}
.ye_c00306{bottom:725.040000pt;}
.yd_c00306{bottom:753.573333pt;}
.yc_c00306{bottom:782.373333pt;}
.yb_c00306{bottom:812.373333pt;}
.ya_c00306{bottom:841.440000pt;}
.y9_c00306{bottom:870.506667pt;}
.y8_c00306{bottom:900.506667pt;}
.y7_c00306{bottom:929.973333pt;}
.y6_c00306{bottom:958.773333pt;}
.y5_c00306{bottom:988.773333pt;}
.y4_c00306{bottom:1017.840000pt;}
.y3_c00306{bottom:1046.640000pt;}
.y2_c00306{bottom:1076.640000pt;}
.y1_c00306{bottom:1106.640000pt;}
.h4_c00306{height:11.733399pt;}
.h5_c00306{height:38.937500pt;}
.h2_c00306{height:108.041667pt;}
.h3_c00306{height:110.968000pt;}
.h0_c00306{height:1229.733333pt;}
.h1_c00306{height:1230.000000pt;}
.w2_c00306{width:93.222667pt;}
.w0_c00306{width:780.466667pt;}
.w1_c00306{width:780.666667pt;}
.x0_c00306{left:0.000000pt;}
.x7_c00306{left:46.800000pt;}
.x2_c00306{left:47.733333pt;}
.x4_c00306{left:49.200000pt;}
.x12_c00306{left:56.400000pt;}
.x13_c00306{left:57.333333pt;}
.x14_c00306{left:59.733333pt;}
.x15_c00306{left:60.800000pt;}
.xc_c00306{left:65.066667pt;}
.x8_c00306{left:78.933333pt;}
.xb_c00306{left:80.933333pt;}
.xd_c00306{left:81.866667pt;}
.x6_c00306{left:92.400000pt;}
.xf_c00306{left:98.666667pt;}
.x5_c00306{left:104.000000pt;}
.x3_c00306{left:105.333333pt;}
.x1_c00306{left:106.400000pt;}
.xe_c00306{left:110.000000pt;}
.x9_c00306{left:142.400000pt;}
.xa_c00306{left:176.933333pt;}
.x10_c00306{left:188.400000pt;}
.x11_c00306{left:273.866667pt;}
.x17_c00306{left:347.401530pt;}
.x16_c00306{left:527.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4a63af0e526ba914510a72c7.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_ceebd3a9e87ff81890b7c027.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_9e9e52c771dfc539124852e4.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls0_c00307{letter-spacing:0.000000px;}
.ls3_c00307{letter-spacing:6.000000px;}
.ls1_c00307{letter-spacing:15.000000px;}
.ls2_c00307{letter-spacing:18.000000px;}
.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:0.000000px;}
._40_c00307{margin-left:-55.332000px;}
._3d_c00307{margin-left:-30.240000px;}
._2c_c00307{margin-left:-18.528000px;}
._32_c00307{margin-left:-12.960000px;}
._22_c00307{margin-left:-9.792000px;}
._23_c00307{margin-left:-8.256000px;}
._1b_c00307{margin-left:-6.144000px;}
._10_c00307{margin-left:-4.416000px;}
._3c_c00307{margin-left:-3.168000px;}
._0_c00307{margin-left:-2.016000px;}
._7_c00307{width:1.920000px;}
._6_c00307{width:3.168000px;}
._4_c00307{width:4.416000px;}
._b_c00307{width:6.240000px;}
._3_c00307{width:7.296000px;}
._2_c00307{width:8.832000px;}
._16_c00307{width:10.656000px;}
._2a_c00307{width:11.712000px;}
._1f_c00307{width:13.344000px;}
._1d_c00307{width:14.688000px;}
._2f_c00307{width:15.840000px;}
._17_c00307{width:16.896000px;}
._21_c00307{width:18.528000px;}
._19_c00307{width:20.352000px;}
._26_c00307{width:21.888000px;}
._27_c00307{width:24.384000px;}
._9_c00307{width:25.824000px;}
._3b_c00307{width:26.976000px;}
._e_c00307{width:28.224000px;}
._d_c00307{width:29.568000px;}
._a_c00307{width:31.008000px;}
._1c_c00307{width:32.640000px;}
._8_c00307{width:34.272000px;}
._1e_c00307{width:35.712000px;}
._14_c00307{width:37.632000px;}
._25_c00307{width:39.072000px;}
._15_c00307{width:40.992000px;}
._1a_c00307{width:42.336000px;}
._37_c00307{width:43.392000px;}
._13_c00307{width:44.640000px;}
._f_c00307{width:46.368000px;}
._c_c00307{width:47.520000px;}
._5_c00307{width:49.152000px;}
._24_c00307{width:51.360000px;}
._38_c00307{width:52.512000px;}
._20_c00307{width:54.624000px;}
._29_c00307{width:57.024000px;}
._31_c00307{width:58.272000px;}
._11_c00307{width:59.328000px;}
._1_c00307{width:62.304000px;}
._39_c00307{width:65.856000px;}
._33_c00307{width:69.120000px;}
._30_c00307{width:70.464000px;}
._35_c00307{width:71.520000px;}
._34_c00307{width:73.056000px;}
._36_c00307{width:74.976000px;}
._12_c00307{width:76.896000px;}
._3a_c00307{width:82.848000px;}
._3e_c00307{width:98.976000px;}
._18_c00307{width:107.616000px;}
._2e_c00307{width:174.720000px;}
._28_c00307{width:176.928000px;}
._2d_c00307{width:280.896000px;}
._2b_c00307{width:925.824000px;}
._3f_c00307{width:1202.592000px;}
.fc2_c00307{color:transparent;}
.fc1_c00307{color:rgb(128,128,128);}
.fc0_c00307{color:rgb(0,0,0);}
.fs2_c00307{font-size:42.000000px;}
.fs3_c00307{font-size:48.000000px;}
.fs1_c00307{font-size:87.000000px;}
.fs0_c00307{font-size:96.000000px;}
.y0_c00307{bottom:0.000000px;}
.y28_c00307{bottom:3.105000px;}
.y27_c00307{bottom:7.228357px;}
.y24_c00307{bottom:89.130000px;}
.y23_c00307{bottom:120.930000px;}
.y22_c00307{bottom:156.930000px;}
.y21_c00307{bottom:191.130000px;}
.y20_c00307{bottom:224.880000px;}
.y1f_c00307{bottom:258.630000px;}
.y1e_c00307{bottom:292.680000px;}
.y1d_c00307{bottom:325.980000px;}
.y1c_c00307{bottom:359.730000px;}
.y26_c00307{bottom:369.630000px;}
.y25_c00307{bottom:379.680000px;}
.y1b_c00307{bottom:393.630000px;}
.y1a_c00307{bottom:427.230000px;}
.y19_c00307{bottom:460.380000px;}
.y18_c00307{bottom:494.430000px;}
.y17_c00307{bottom:527.130000px;}
.y16_c00307{bottom:561.330000px;}
.y15_c00307{bottom:594.780000px;}
.y14_c00307{bottom:628.080000px;}
.y13_c00307{bottom:661.830000px;}
.y12_c00307{bottom:695.280000px;}
.y11_c00307{bottom:729.330000px;}
.y10_c00307{bottom:762.030000px;}
.yf_c00307{bottom:794.880000px;}
.ye_c00307{bottom:828.180000px;}
.yd_c00307{bottom:864.030000px;}
.yc_c00307{bottom:896.730000px;}
.yb_c00307{bottom:929.880000px;}
.ya_c00307{bottom:962.580000px;}
.y9_c00307{bottom:995.730000px;}
.y8_c00307{bottom:1028.730000px;}
.y7_c00307{bottom:1061.730000px;}
.y6_c00307{bottom:1094.580000px;}
.y5_c00307{bottom:1127.880000px;}
.y4_c00307{bottom:1161.330000px;}
.y3_c00307{bottom:1194.480000px;}
.y2_c00307{bottom:1227.480000px;}
.y1_c00307{bottom:1260.330000px;}
.h5_c00307{height:13.200074px;}
.h4_c00307{height:42.328125px;}
.h6_c00307{height:43.804688px;}
.h3_c00307{height:110.151855px;}
.h2_c00307{height:121.546875px;}
.h0_c00307{height:1382.700000px;}
.h1_c00307{height:1383.000000px;}
.w2_c00307{width:104.875500px;}
.w0_c00307{width:863.175000px;}
.w1_c00307{width:863.250000px;}
.x0_c00307{left:0.000000px;}
.x7_c00307{left:159.000000px;}
.xd_c00307{left:174.450000px;}
.xc_c00307{left:178.650000px;}
.x3_c00307{left:231.900000px;}
.x1_c00307{left:242.100000px;}
.x5_c00307{left:260.550000px;}
.xa_c00307{left:265.950000px;}
.x9_c00307{left:267.000000px;}
.x8_c00307{left:268.200000px;}
.x2_c00307{left:269.700000px;}
.x4_c00307{left:271.950000px;}
.x6_c00307{left:318.300000px;}
.xe_c00307{left:383.401749px;}
.xb_c00307{left:452.400000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ls3_c00307{letter-spacing:5.333333pt;}
.ls1_c00307{letter-spacing:13.333333pt;}
.ls2_c00307{letter-spacing:16.000000pt;}
.ws0_c00307{word-spacing:0.000000pt;}
._40_c00307{margin-left:-49.184000pt;}
._3d_c00307{margin-left:-26.880000pt;}
._2c_c00307{margin-left:-16.469333pt;}
._32_c00307{margin-left:-11.520000pt;}
._22_c00307{margin-left:-8.704000pt;}
._23_c00307{margin-left:-7.338667pt;}
._1b_c00307{margin-left:-5.461333pt;}
._10_c00307{margin-left:-3.925333pt;}
._3c_c00307{margin-left:-2.816000pt;}
._0_c00307{margin-left:-1.792000pt;}
._7_c00307{width:1.706667pt;}
._6_c00307{width:2.816000pt;}
._4_c00307{width:3.925333pt;}
._b_c00307{width:5.546667pt;}
._3_c00307{width:6.485333pt;}
._2_c00307{width:7.850667pt;}
._16_c00307{width:9.472000pt;}
._2a_c00307{width:10.410667pt;}
._1f_c00307{width:11.861333pt;}
._1d_c00307{width:13.056000pt;}
._2f_c00307{width:14.080000pt;}
._17_c00307{width:15.018667pt;}
._21_c00307{width:16.469333pt;}
._19_c00307{width:18.090667pt;}
._26_c00307{width:19.456000pt;}
._27_c00307{width:21.674667pt;}
._9_c00307{width:22.954667pt;}
._3b_c00307{width:23.978667pt;}
._e_c00307{width:25.088000pt;}
._d_c00307{width:26.282667pt;}
._a_c00307{width:27.562667pt;}
._1c_c00307{width:29.013333pt;}
._8_c00307{width:30.464000pt;}
._1e_c00307{width:31.744000pt;}
._14_c00307{width:33.450667pt;}
._25_c00307{width:34.730667pt;}
._15_c00307{width:36.437333pt;}
._1a_c00307{width:37.632000pt;}
._37_c00307{width:38.570667pt;}
._13_c00307{width:39.680000pt;}
._f_c00307{width:41.216000pt;}
._c_c00307{width:42.240000pt;}
._5_c00307{width:43.690667pt;}
._24_c00307{width:45.653333pt;}
._38_c00307{width:46.677333pt;}
._20_c00307{width:48.554667pt;}
._29_c00307{width:50.688000pt;}
._31_c00307{width:51.797333pt;}
._11_c00307{width:52.736000pt;}
._1_c00307{width:55.381333pt;}
._39_c00307{width:58.538667pt;}
._33_c00307{width:61.440000pt;}
._30_c00307{width:62.634667pt;}
._35_c00307{width:63.573333pt;}
._34_c00307{width:64.938667pt;}
._36_c00307{width:66.645333pt;}
._12_c00307{width:68.352000pt;}
._3a_c00307{width:73.642667pt;}
._3e_c00307{width:87.978667pt;}
._18_c00307{width:95.658667pt;}
._2e_c00307{width:155.306667pt;}
._28_c00307{width:157.269333pt;}
._2d_c00307{width:249.685333pt;}
._2b_c00307{width:822.954667pt;}
._3f_c00307{width:1068.970667pt;}
.fs2_c00307{font-size:37.333333pt;}
.fs3_c00307{font-size:42.666667pt;}
.fs1_c00307{font-size:77.333333pt;}
.fs0_c00307{font-size:85.333333pt;}
.y0_c00307{bottom:0.000000pt;}
.y28_c00307{bottom:2.760000pt;}
.y27_c00307{bottom:6.425206pt;}
.y24_c00307{bottom:79.226667pt;}
.y23_c00307{bottom:107.493333pt;}
.y22_c00307{bottom:139.493333pt;}
.y21_c00307{bottom:169.893333pt;}
.y20_c00307{bottom:199.893333pt;}
.y1f_c00307{bottom:229.893333pt;}
.y1e_c00307{bottom:260.160000pt;}
.y1d_c00307{bottom:289.760000pt;}
.y1c_c00307{bottom:319.760000pt;}
.y26_c00307{bottom:328.560000pt;}
.y25_c00307{bottom:337.493333pt;}
.y1b_c00307{bottom:349.893333pt;}
.y1a_c00307{bottom:379.760000pt;}
.y19_c00307{bottom:409.226667pt;}
.y18_c00307{bottom:439.493333pt;}
.y17_c00307{bottom:468.560000pt;}
.y16_c00307{bottom:498.960000pt;}
.y15_c00307{bottom:528.693333pt;}
.y14_c00307{bottom:558.293333pt;}
.y13_c00307{bottom:588.293333pt;}
.y12_c00307{bottom:618.026667pt;}
.y11_c00307{bottom:648.293333pt;}
.y10_c00307{bottom:677.360000pt;}
.yf_c00307{bottom:706.560000pt;}
.ye_c00307{bottom:736.160000pt;}
.yd_c00307{bottom:768.026667pt;}
.yc_c00307{bottom:797.093333pt;}
.yb_c00307{bottom:826.560000pt;}
.ya_c00307{bottom:855.626667pt;}
.y9_c00307{bottom:885.093333pt;}
.y8_c00307{bottom:914.426667pt;}
.y7_c00307{bottom:943.760000pt;}
.y6_c00307{bottom:972.960000pt;}
.y5_c00307{bottom:1002.560000pt;}
.y4_c00307{bottom:1032.293333pt;}
.y3_c00307{bottom:1061.760000pt;}
.y2_c00307{bottom:1091.093333pt;}
.y1_c00307{bottom:1120.293333pt;}
.h5_c00307{height:11.733399pt;}
.h4_c00307{height:37.625000pt;}
.h6_c00307{height:38.937500pt;}
.h3_c00307{height:97.912760pt;}
.h2_c00307{height:108.041667pt;}
.h0_c00307{height:1229.066667pt;}
.h1_c00307{height:1229.333333pt;}
.w2_c00307{width:93.222667pt;}
.w0_c00307{width:767.266667pt;}
.w1_c00307{width:767.333333pt;}
.x0_c00307{left:0.000000pt;}
.x7_c00307{left:141.333333pt;}
.xd_c00307{left:155.066667pt;}
.xc_c00307{left:158.800000pt;}
.x3_c00307{left:206.133333pt;}
.x1_c00307{left:215.200000pt;}
.x5_c00307{left:231.600000pt;}
.xa_c00307{left:236.400000pt;}
.x9_c00307{left:237.333333pt;}
.x8_c00307{left:238.400000pt;}
.x2_c00307{left:239.733333pt;}
.x4_c00307{left:241.733333pt;}
.x6_c00307{left:282.933333pt;}
.xe_c00307{left:340.801554pt;}
.xb_c00307{left:402.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e154b2f66d5d6a22d433f90.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;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:ff2_c00308;src:url('chunks/assets/font_5be6f6022de92fe4a1b4a72a.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_7c66cc413f21f73a6dcb97a9.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls0_c00308{letter-spacing:0.000000px;}
.ls1_c00308{letter-spacing:15.000000px;}
.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:-51.000000px;}
.ws2_c00308{word-spacing:-38.304000px;}
.ws0_c00308{word-spacing:-30.600000px;}
.ws3_c00308{word-spacing:0.000000px;}
._24_c00308{margin-left:-86.112000px;}
._44_c00308{margin-left:-51.417000px;}
._34_c00308{margin-left:-36.864000px;}
._43_c00308{margin-left:-33.408000px;}
._47_c00308{margin-left:-30.885000px;}
._45_c00308{margin-left:-25.230000px;}
._46_c00308{margin-left:-21.402000px;}
._3f_c00308{margin-left:-16.608000px;}
._31_c00308{margin-left:-12.960000px;}
._19_c00308{margin-left:-11.712000px;}
._4_c00308{margin-left:-9.696000px;}
._9_c00308{margin-left:-7.968000px;}
._16_c00308{margin-left:-6.240000px;}
._a_c00308{margin-left:-4.416000px;}
._17_c00308{margin-left:-3.264000px;}
._1_c00308{margin-left:-1.824000px;}
._0_c00308{width:1.920000px;}
._d_c00308{width:3.168000px;}
._11_c00308{width:4.320000px;}
._13_c00308{width:6.336000px;}
._1a_c00308{width:7.584000px;}
._1e_c00308{width:9.600000px;}
._8_c00308{width:11.040000px;}
._20_c00308{width:12.864000px;}
._6_c00308{width:13.920000px;}
._2d_c00308{width:15.840000px;}
._3_c00308{width:17.184000px;}
._29_c00308{width:19.296000px;}
._c_c00308{width:20.352000px;}
._21_c00308{width:21.696000px;}
._2b_c00308{width:24.768000px;}
._3b_c00308{width:25.824000px;}
._2_c00308{width:27.168000px;}
._38_c00308{width:28.224000px;}
._3c_c00308{width:29.280000px;}
._15_c00308{width:30.432000px;}
._b_c00308{width:31.968000px;}
._2e_c00308{width:33.216000px;}
._18_c00308{width:34.944000px;}
._e_c00308{width:36.960000px;}
._f_c00308{width:38.208000px;}
._22_c00308{width:39.360000px;}
._33_c00308{width:40.416000px;}
._7_c00308{width:42.528000px;}
._2c_c00308{width:43.680000px;}
._5_c00308{width:44.928000px;}
._1d_c00308{width:46.464000px;}
._1c_c00308{width:47.520000px;}
._32_c00308{width:48.576000px;}
._1b_c00308{width:49.728000px;}
._41_c00308{width:50.784000px;}
._36_c00308{width:52.032000px;}
._3a_c00308{width:53.748000px;}
._35_c00308{width:55.200000px;}
._14_c00308{width:56.256000px;}
._27_c00308{width:57.792000px;}
._12_c00308{width:59.400000px;}
._39_c00308{width:62.496000px;}
._10_c00308{width:64.416000px;}
._42_c00308{width:67.872000px;}
._28_c00308{width:71.520000px;}
._37_c00308{width:73.056000px;}
._1f_c00308{width:77.376000px;}
._26_c00308{width:81.504000px;}
._2a_c00308{width:90.720000px;}
._2f_c00308{width:96.768000px;}
._3e_c00308{width:104.160000px;}
._30_c00308{width:172.416000px;}
._40_c00308{width:177.216000px;}
._25_c00308{width:230.688000px;}
._3d_c00308{width:713.184000px;}
._4a_c00308{width:910.110000px;}
._23_c00308{width:929.376000px;}
._48_c00308{width:969.267000px;}
._49_c00308{width:990.741000px;}
.fc2_c00308{color:transparent;}
.fc1_c00308{color:rgb(128,128,128);}
.fc0_c00308{color:rgb(0,0,0);}
.fs5_c00308{font-size:48.000000px;}
.fs2_c00308{font-size:84.000000px;}
.fs3_c00308{font-size:87.000000px;}
.fs1_c00308{font-size:96.000000px;}
.fs0_c00308{font-size:102.000000px;}
.fs4_c00308{font-size:114.000000px;}
.y0_c00308{bottom:0.000000px;}
.y28_c00308{bottom:3.105000px;}
.y27_c00308{bottom:7.228355px;}
.y26_c00308{bottom:81.585000px;}
.y25_c00308{bottom:100.485000px;}
.y24_c00308{bottom:115.785000px;}
.y23_c00308{bottom:150.135000px;}
.y22_c00308{bottom:184.185000px;}
.y21_c00308{bottom:218.235000px;}
.y20_c00308{bottom:252.135000px;}
.y1f_c00308{bottom:285.435000px;}
.y1e_c00308{bottom:319.485000px;}
.y1d_c00308{bottom:352.035000px;}
.y1c_c00308{bottom:388.335000px;}
.y1b_c00308{bottom:421.785000px;}
.y1a_c00308{bottom:455.535000px;}
.y19_c00308{bottom:488.385000px;}
.y18_c00308{bottom:522.135000px;}
.y17_c00308{bottom:555.435000px;}
.y16_c00308{bottom:588.135000px;}
.y15_c00308{bottom:621.585000px;}
.y14_c00308{bottom:654.735000px;}
.y13_c00308{bottom:688.185000px;}
.y12_c00308{bottom:721.185000px;}
.y11_c00308{bottom:754.935000px;}
.y10_c00308{bottom:788.385000px;}
.yf_c00308{bottom:820.335000px;}
.ye_c00308{bottom:853.485000px;}
.yd_c00308{bottom:886.935000px;}
.yc_c00308{bottom:919.935000px;}
.yb_c00308{bottom:953.385000px;}
.ya_c00308{bottom:986.385000px;}
.y9_c00308{bottom:1020.585000px;}
.y8_c00308{bottom:1052.535000px;}
.y7_c00308{bottom:1086.435000px;}
.y6_c00308{bottom:1119.435000px;}
.y5_c00308{bottom:1152.135000px;}
.y4_c00308{bottom:1185.285000px;}
.y3_c00308{bottom:1218.735000px;}
.y2_c00308{bottom:1252.335000px;}
.y1_c00308{bottom:1281.435000px;}
.h5_c00308{height:13.200074px;}
.h6_c00308{height:43.804688px;}
.h3_c00308{height:110.151855px;}
.h2_c00308{height:121.546875px;}
.h4_c00308{height:144.336914px;}
.h1_c00308{height:1353.000000px;}
.h0_c00308{height:1353.225000px;}
.w2_c00308{width:104.875500px;}
.w0_c00308{width:858.600000px;}
.w1_c00308{width:858.750000px;}
.x0_c00308{left:0.000000px;}
.x7_c00308{left:60.150000px;}
.x8_c00308{left:62.400000px;}
.x6_c00308{left:63.450000px;}
.x5_c00308{left:64.500000px;}
.x4_c00308{left:65.550000px;}
.x3_c00308{left:67.200000px;}
.x2_c00308{left:68.250000px;}
.xb_c00308{left:69.300000px;}
.xa_c00308{left:70.950000px;}
.x9_c00308{left:120.150000px;}
.xc_c00308{left:351.000000px;}
.xd_c00308{left:381.114258px;}
.x1_c00308{left:549.000000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ls1_c00308{letter-spacing:13.333333pt;}
.ws1_c00308{word-spacing:-45.333333pt;}
.ws2_c00308{word-spacing:-34.048000pt;}
.ws0_c00308{word-spacing:-27.200000pt;}
.ws3_c00308{word-spacing:0.000000pt;}
._24_c00308{margin-left:-76.544000pt;}
._44_c00308{margin-left:-45.704000pt;}
._34_c00308{margin-left:-32.768000pt;}
._43_c00308{margin-left:-29.696000pt;}
._47_c00308{margin-left:-27.453333pt;}
._45_c00308{margin-left:-22.426667pt;}
._46_c00308{margin-left:-19.024000pt;}
._3f_c00308{margin-left:-14.762667pt;}
._31_c00308{margin-left:-11.520000pt;}
._19_c00308{margin-left:-10.410667pt;}
._4_c00308{margin-left:-8.618667pt;}
._9_c00308{margin-left:-7.082667pt;}
._16_c00308{margin-left:-5.546667pt;}
._a_c00308{margin-left:-3.925333pt;}
._17_c00308{margin-left:-2.901333pt;}
._1_c00308{margin-left:-1.621333pt;}
._0_c00308{width:1.706667pt;}
._d_c00308{width:2.816000pt;}
._11_c00308{width:3.840000pt;}
._13_c00308{width:5.632000pt;}
._1a_c00308{width:6.741333pt;}
._1e_c00308{width:8.533333pt;}
._8_c00308{width:9.813333pt;}
._20_c00308{width:11.434667pt;}
._6_c00308{width:12.373333pt;}
._2d_c00308{width:14.080000pt;}
._3_c00308{width:15.274667pt;}
._29_c00308{width:17.152000pt;}
._c_c00308{width:18.090667pt;}
._21_c00308{width:19.285333pt;}
._2b_c00308{width:22.016000pt;}
._3b_c00308{width:22.954667pt;}
._2_c00308{width:24.149333pt;}
._38_c00308{width:25.088000pt;}
._3c_c00308{width:26.026667pt;}
._15_c00308{width:27.050667pt;}
._b_c00308{width:28.416000pt;}
._2e_c00308{width:29.525333pt;}
._18_c00308{width:31.061333pt;}
._e_c00308{width:32.853333pt;}
._f_c00308{width:33.962667pt;}
._22_c00308{width:34.986667pt;}
._33_c00308{width:35.925333pt;}
._7_c00308{width:37.802667pt;}
._2c_c00308{width:38.826667pt;}
._5_c00308{width:39.936000pt;}
._1d_c00308{width:41.301333pt;}
._1c_c00308{width:42.240000pt;}
._32_c00308{width:43.178667pt;}
._1b_c00308{width:44.202667pt;}
._41_c00308{width:45.141333pt;}
._36_c00308{width:46.250667pt;}
._3a_c00308{width:47.776000pt;}
._35_c00308{width:49.066667pt;}
._14_c00308{width:50.005333pt;}
._27_c00308{width:51.370667pt;}
._12_c00308{width:52.800000pt;}
._39_c00308{width:55.552000pt;}
._10_c00308{width:57.258667pt;}
._42_c00308{width:60.330667pt;}
._28_c00308{width:63.573333pt;}
._37_c00308{width:64.938667pt;}
._1f_c00308{width:68.778667pt;}
._26_c00308{width:72.448000pt;}
._2a_c00308{width:80.640000pt;}
._2f_c00308{width:86.016000pt;}
._3e_c00308{width:92.586667pt;}
._30_c00308{width:153.258667pt;}
._40_c00308{width:157.525333pt;}
._25_c00308{width:205.056000pt;}
._3d_c00308{width:633.941333pt;}
._4a_c00308{width:808.986667pt;}
._23_c00308{width:826.112000pt;}
._48_c00308{width:861.570667pt;}
._49_c00308{width:880.658667pt;}
.fs5_c00308{font-size:42.666667pt;}
.fs2_c00308{font-size:74.666667pt;}
.fs3_c00308{font-size:77.333333pt;}
.fs1_c00308{font-size:85.333333pt;}
.fs0_c00308{font-size:90.666667pt;}
.fs4_c00308{font-size:101.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y28_c00308{bottom:2.760000pt;}
.y27_c00308{bottom:6.425204pt;}
.y26_c00308{bottom:72.520000pt;}
.y25_c00308{bottom:89.320000pt;}
.y24_c00308{bottom:102.920000pt;}
.y23_c00308{bottom:133.453333pt;}
.y22_c00308{bottom:163.720000pt;}
.y21_c00308{bottom:193.986667pt;}
.y20_c00308{bottom:224.120000pt;}
.y1f_c00308{bottom:253.720000pt;}
.y1e_c00308{bottom:283.986667pt;}
.y1d_c00308{bottom:312.920000pt;}
.y1c_c00308{bottom:345.186667pt;}
.y1b_c00308{bottom:374.920000pt;}
.y1a_c00308{bottom:404.920000pt;}
.y19_c00308{bottom:434.120000pt;}
.y18_c00308{bottom:464.120000pt;}
.y17_c00308{bottom:493.720000pt;}
.y16_c00308{bottom:522.786667pt;}
.y15_c00308{bottom:552.520000pt;}
.y14_c00308{bottom:581.986667pt;}
.y13_c00308{bottom:611.720000pt;}
.y12_c00308{bottom:641.053333pt;}
.y11_c00308{bottom:671.053333pt;}
.y10_c00308{bottom:700.786667pt;}
.yf_c00308{bottom:729.186667pt;}
.ye_c00308{bottom:758.653333pt;}
.yd_c00308{bottom:788.386667pt;}
.yc_c00308{bottom:817.720000pt;}
.yb_c00308{bottom:847.453333pt;}
.ya_c00308{bottom:876.786667pt;}
.y9_c00308{bottom:907.186667pt;}
.y8_c00308{bottom:935.586667pt;}
.y7_c00308{bottom:965.720000pt;}
.y6_c00308{bottom:995.053333pt;}
.y5_c00308{bottom:1024.120000pt;}
.y4_c00308{bottom:1053.586667pt;}
.y3_c00308{bottom:1083.320000pt;}
.y2_c00308{bottom:1113.186667pt;}
.y1_c00308{bottom:1139.053333pt;}
.h5_c00308{height:11.733399pt;}
.h6_c00308{height:38.937500pt;}
.h3_c00308{height:97.912760pt;}
.h2_c00308{height:108.041667pt;}
.h4_c00308{height:128.299479pt;}
.h1_c00308{height:1202.666667pt;}
.h0_c00308{height:1202.866667pt;}
.w2_c00308{width:93.222667pt;}
.w0_c00308{width:763.200000pt;}
.w1_c00308{width:763.333333pt;}
.x0_c00308{left:0.000000pt;}
.x7_c00308{left:53.466667pt;}
.x8_c00308{left:55.466667pt;}
.x6_c00308{left:56.400000pt;}
.x5_c00308{left:57.333333pt;}
.x4_c00308{left:58.266667pt;}
.x3_c00308{left:59.733333pt;}
.x2_c00308{left:60.666667pt;}
.xb_c00308{left:61.600000pt;}
.xa_c00308{left:63.066667pt;}
.x9_c00308{left:106.800000pt;}
.xc_c00308{left:312.000000pt;}
.xd_c00308{left:338.768229pt;}
.x1_c00308{left:488.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_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_1af9e54e07cc99b54ff31a35.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_3b79ae916969364640725d8f.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;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_c00309;src:url('chunks/assets/font_e148be954e269afcff67fa1e.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls3_c00309{letter-spacing:0.000000px;}
.ls1_c00309{letter-spacing:6.120000px;}
.ls2_c00309{letter-spacing:7.800000px;}
.ls0_c00309{letter-spacing:10.320000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:-51.000000px;}
.ws1_c00309{word-spacing:-29.070000px;}
.ws2_c00309{word-spacing:-23.136000px;}
.ws3_c00309{word-spacing:0.000000px;}
._1e_c00309{margin-left:-86.400000px;}
._41_c00309{margin-left:-37.164000px;}
._2e_c00309{margin-left:-32.064000px;}
._36_c00309{margin-left:-27.168000px;}
._39_c00309{margin-left:-24.144000px;}
._47_c00309{margin-left:-20.640000px;}
._38_c00309{margin-left:-18.396000px;}
._48_c00309{margin-left:-16.692000px;}
._2d_c00309{margin-left:-15.288000px;}
._2c_c00309{margin-left:-13.332000px;}
._3f_c00309{margin-left:-11.760000px;}
._4e_c00309{margin-left:-9.600000px;}
._3b_c00309{margin-left:-8.352000px;}
._44_c00309{margin-left:-6.336000px;}
._b_c00309{margin-left:-5.040000px;}
._1b_c00309{margin-left:-3.168000px;}
._23_c00309{margin-left:-2.088000px;}
._1_c00309{width:1.920000px;}
._4_c00309{width:3.072000px;}
._0_c00309{width:4.128000px;}
._5_c00309{width:5.472000px;}
._1c_c00309{width:7.200000px;}
._3_c00309{width:8.736000px;}
._a_c00309{width:10.656000px;}
._17_c00309{width:11.904000px;}
._26_c00309{width:13.848000px;}
._2b_c00309{width:14.940000px;}
._16_c00309{width:16.320000px;}
._3a_c00309{width:17.592000px;}
._d_c00309{width:18.720000px;}
._4f_c00309{width:20.148000px;}
._21_c00309{width:21.948000px;}
._31_c00309{width:23.040000px;}
._15_c00309{width:24.288000px;}
._6_c00309{width:25.440000px;}
._19_c00309{width:26.784000px;}
._7_c00309{width:28.320000px;}
._2_c00309{width:29.568000px;}
._35_c00309{width:30.576000px;}
._18_c00309{width:31.776000px;}
._25_c00309{width:32.868000px;}
._1a_c00309{width:34.272000px;}
._24_c00309{width:35.700000px;}
._22_c00309{width:36.876000px;}
._e_c00309{width:38.208000px;}
._32_c00309{width:39.228000px;}
._8_c00309{width:40.800000px;}
._27_c00309{width:42.900000px;}
._3c_c00309{width:43.944000px;}
._10_c00309{width:45.504000px;}
._29_c00309{width:47.376000px;}
._28_c00309{width:49.620000px;}
._37_c00309{width:51.492000px;}
._46_c00309{width:52.524000px;}
._30_c00309{width:54.312000px;}
._2f_c00309{width:57.060000px;}
._9_c00309{width:58.272000px;}
._3e_c00309{width:61.056000px;}
._42_c00309{width:62.472000px;}
._4b_c00309{width:63.864000px;}
._45_c00309{width:65.124000px;}
._49_c00309{width:66.648000px;}
._20_c00309{width:67.812000px;}
._13_c00309{width:69.504000px;}
._14_c00309{width:71.520000px;}
._11_c00309{width:75.168000px;}
._12_c00309{width:87.168000px;}
._40_c00309{width:96.768000px;}
._1d_c00309{width:107.808000px;}
._2a_c00309{width:125.496000px;}
._f_c00309{width:170.304000px;}
._3d_c00309{width:177.228000px;}
._43_c00309{width:184.908000px;}
._1f_c00309{width:209.064000px;}
._4a_c00309{width:261.300000px;}
._33_c00309{width:282.336000px;}
._4d_c00309{width:325.788000px;}
._4c_c00309{width:432.984000px;}
._34_c00309{width:583.680000px;}
._c_c00309{width:1309.728000px;}
.fc2_c00309{color:transparent;}
.fc1_c00309{color:rgb(128,128,128);}
.fc0_c00309{color:rgb(0,0,0);}
.fs3_c00309{font-size:48.000000px;}
.fs2_c00309{font-size:84.000000px;}
.fs0_c00309{font-size:96.000000px;}
.fs1_c00309{font-size:102.000000px;}
.y0_c00309{bottom:0.000000px;}
.y26_c00309{bottom:3.105000px;}
.y25_c00309{bottom:7.228357px;}
.y24_c00309{bottom:75.930000px;}
.y23_c00309{bottom:106.980000px;}
.y22_c00309{bottom:140.730000px;}
.y21_c00309{bottom:176.580000px;}
.y20_c00309{bottom:208.530000px;}
.y1f_c00309{bottom:243.330000px;}
.y1e_c00309{bottom:277.530000px;}
.y1d_c00309{bottom:311.280000px;}
.y1c_c00309{bottom:345.330000px;}
.y1b_c00309{bottom:379.380000px;}
.y1a_c00309{bottom:412.530000px;}
.y19_c00309{bottom:446.580000px;}
.y18_c00309{bottom:480.630000px;}
.y17_c00309{bottom:514.080000px;}
.y16_c00309{bottom:547.830000px;}
.y15_c00309{bottom:581.130000px;}
.y14_c00309{bottom:615.630000px;}
.y13_c00309{bottom:648.630000px;}
.y12_c00309{bottom:682.830000px;}
.y11_c00309{bottom:716.880000px;}
.y10_c00309{bottom:750.030000px;}
.yf_c00309{bottom:783.780000px;}
.ye_c00309{bottom:817.530000px;}
.yd_c00309{bottom:849.180000px;}
.yc_c00309{bottom:884.580000px;}
.yb_c00309{bottom:918.030000px;}
.ya_c00309{bottom:951.180000px;}
.y9_c00309{bottom:984.480000px;}
.y8_c00309{bottom:1017.330000px;}
.y7_c00309{bottom:1050.930000px;}
.y6_c00309{bottom:1084.680000px;}
.y5_c00309{bottom:1117.830000px;}
.y4_c00309{bottom:1150.980000px;}
.y3_c00309{bottom:1184.280000px;}
.y2_c00309{bottom:1217.430000px;}
.y1_c00309{bottom:1250.880000px;}
.h5_c00309{height:13.200074px;}
.h6_c00309{height:43.804688px;}
.h4_c00309{height:98.314453px;}
.h3_c00309{height:106.353516px;}
.h2_c00309{height:121.546875px;}
.h0_c00309{height:1382.700000px;}
.h1_c00309{height:1383.000000px;}
.w2_c00309{width:104.875500px;}
.w0_c00309{width:863.175000px;}
.w1_c00309{width:863.250000px;}
.x0_c00309{left:0.000000px;}
.x7_c00309{left:129.300000px;}
.xd_c00309{left:142.350000px;}
.x4_c00309{left:146.550000px;}
.x5_c00309{left:207.000000px;}
.xe_c00309{left:213.600000px;}
.x10_c00309{left:241.200000px;}
.xf_c00309{left:242.700000px;}
.xa_c00309{left:244.350000px;}
.x12_c00309{left:245.400000px;}
.x9_c00309{left:247.050000px;}
.x8_c00309{left:248.100000px;}
.x6_c00309{left:249.150000px;}
.x2_c00309{left:250.800000px;}
.x1_c00309{left:251.850000px;}
.x11_c00309{left:295.200000px;}
.x3_c00309{left:302.700000px;}
.xb_c00309{left:334.050000px;}
.x14_c00309{left:383.401749px;}
.xc_c00309{left:391.800000px;}
.x13_c00309{left:768.750000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls3_c00309{letter-spacing:0.000000pt;}
.ls1_c00309{letter-spacing:5.440000pt;}
.ls2_c00309{letter-spacing:6.933333pt;}
.ls0_c00309{letter-spacing:9.173333pt;}
.ws0_c00309{word-spacing:-45.333333pt;}
.ws1_c00309{word-spacing:-25.840000pt;}
.ws2_c00309{word-spacing:-20.565333pt;}
.ws3_c00309{word-spacing:0.000000pt;}
._1e_c00309{margin-left:-76.800000pt;}
._41_c00309{margin-left:-33.034667pt;}
._2e_c00309{margin-left:-28.501333pt;}
._36_c00309{margin-left:-24.149333pt;}
._39_c00309{margin-left:-21.461333pt;}
._47_c00309{margin-left:-18.346667pt;}
._38_c00309{margin-left:-16.352000pt;}
._48_c00309{margin-left:-14.837333pt;}
._2d_c00309{margin-left:-13.589333pt;}
._2c_c00309{margin-left:-11.850667pt;}
._3f_c00309{margin-left:-10.453333pt;}
._4e_c00309{margin-left:-8.533333pt;}
._3b_c00309{margin-left:-7.424000pt;}
._44_c00309{margin-left:-5.632000pt;}
._b_c00309{margin-left:-4.480000pt;}
._1b_c00309{margin-left:-2.816000pt;}
._23_c00309{margin-left:-1.856000pt;}
._1_c00309{width:1.706667pt;}
._4_c00309{width:2.730667pt;}
._0_c00309{width:3.669333pt;}
._5_c00309{width:4.864000pt;}
._1c_c00309{width:6.400000pt;}
._3_c00309{width:7.765333pt;}
._a_c00309{width:9.472000pt;}
._17_c00309{width:10.581333pt;}
._26_c00309{width:12.309333pt;}
._2b_c00309{width:13.280000pt;}
._16_c00309{width:14.506667pt;}
._3a_c00309{width:15.637333pt;}
._d_c00309{width:16.640000pt;}
._4f_c00309{width:17.909333pt;}
._21_c00309{width:19.509333pt;}
._31_c00309{width:20.480000pt;}
._15_c00309{width:21.589333pt;}
._6_c00309{width:22.613333pt;}
._19_c00309{width:23.808000pt;}
._7_c00309{width:25.173333pt;}
._2_c00309{width:26.282667pt;}
._35_c00309{width:27.178667pt;}
._18_c00309{width:28.245333pt;}
._25_c00309{width:29.216000pt;}
._1a_c00309{width:30.464000pt;}
._24_c00309{width:31.733333pt;}
._22_c00309{width:32.778667pt;}
._e_c00309{width:33.962667pt;}
._32_c00309{width:34.869333pt;}
._8_c00309{width:36.266667pt;}
._27_c00309{width:38.133333pt;}
._3c_c00309{width:39.061333pt;}
._10_c00309{width:40.448000pt;}
._29_c00309{width:42.112000pt;}
._28_c00309{width:44.106667pt;}
._37_c00309{width:45.770667pt;}
._46_c00309{width:46.688000pt;}
._30_c00309{width:48.277333pt;}
._2f_c00309{width:50.720000pt;}
._9_c00309{width:51.797333pt;}
._3e_c00309{width:54.272000pt;}
._42_c00309{width:55.530667pt;}
._4b_c00309{width:56.768000pt;}
._45_c00309{width:57.888000pt;}
._49_c00309{width:59.242667pt;}
._20_c00309{width:60.277333pt;}
._13_c00309{width:61.781333pt;}
._14_c00309{width:63.573333pt;}
._11_c00309{width:66.816000pt;}
._12_c00309{width:77.482667pt;}
._40_c00309{width:86.016000pt;}
._1d_c00309{width:95.829333pt;}
._2a_c00309{width:111.552000pt;}
._f_c00309{width:151.381333pt;}
._3d_c00309{width:157.536000pt;}
._43_c00309{width:164.362667pt;}
._1f_c00309{width:185.834667pt;}
._4a_c00309{width:232.266667pt;}
._33_c00309{width:250.965333pt;}
._4d_c00309{width:289.589333pt;}
._4c_c00309{width:384.874667pt;}
._34_c00309{width:518.826667pt;}
._c_c00309{width:1164.202667pt;}
.fs3_c00309{font-size:42.666667pt;}
.fs2_c00309{font-size:74.666667pt;}
.fs0_c00309{font-size:85.333333pt;}
.fs1_c00309{font-size:90.666667pt;}
.y0_c00309{bottom:0.000000pt;}
.y26_c00309{bottom:2.760000pt;}
.y25_c00309{bottom:6.425206pt;}
.y24_c00309{bottom:67.493333pt;}
.y23_c00309{bottom:95.093333pt;}
.y22_c00309{bottom:125.093333pt;}
.y21_c00309{bottom:156.960000pt;}
.y20_c00309{bottom:185.360000pt;}
.y1f_c00309{bottom:216.293333pt;}
.y1e_c00309{bottom:246.693333pt;}
.y1d_c00309{bottom:276.693333pt;}
.y1c_c00309{bottom:306.960000pt;}
.y1b_c00309{bottom:337.226667pt;}
.y1a_c00309{bottom:366.693333pt;}
.y19_c00309{bottom:396.960000pt;}
.y18_c00309{bottom:427.226667pt;}
.y17_c00309{bottom:456.960000pt;}
.y16_c00309{bottom:486.960000pt;}
.y15_c00309{bottom:516.560000pt;}
.y14_c00309{bottom:547.226667pt;}
.y13_c00309{bottom:576.560000pt;}
.y12_c00309{bottom:606.960000pt;}
.y11_c00309{bottom:637.226667pt;}
.y10_c00309{bottom:666.693333pt;}
.yf_c00309{bottom:696.693333pt;}
.ye_c00309{bottom:726.693333pt;}
.yd_c00309{bottom:754.826667pt;}
.yc_c00309{bottom:786.293333pt;}
.yb_c00309{bottom:816.026667pt;}
.ya_c00309{bottom:845.493333pt;}
.y9_c00309{bottom:875.093333pt;}
.y8_c00309{bottom:904.293333pt;}
.y7_c00309{bottom:934.160000pt;}
.y6_c00309{bottom:964.160000pt;}
.y5_c00309{bottom:993.626667pt;}
.y4_c00309{bottom:1023.093333pt;}
.y3_c00309{bottom:1052.693333pt;}
.y2_c00309{bottom:1082.160000pt;}
.y1_c00309{bottom:1111.893333pt;}
.h5_c00309{height:11.733399pt;}
.h6_c00309{height:38.937500pt;}
.h4_c00309{height:87.390625pt;}
.h3_c00309{height:94.536458pt;}
.h2_c00309{height:108.041667pt;}
.h0_c00309{height:1229.066667pt;}
.h1_c00309{height:1229.333333pt;}
.w2_c00309{width:93.222667pt;}
.w0_c00309{width:767.266667pt;}
.w1_c00309{width:767.333333pt;}
.x0_c00309{left:0.000000pt;}
.x7_c00309{left:114.933333pt;}
.xd_c00309{left:126.533333pt;}
.x4_c00309{left:130.266667pt;}
.x5_c00309{left:184.000000pt;}
.xe_c00309{left:189.866667pt;}
.x10_c00309{left:214.400000pt;}
.xf_c00309{left:215.733333pt;}
.xa_c00309{left:217.200000pt;}
.x12_c00309{left:218.133333pt;}
.x9_c00309{left:219.600000pt;}
.x8_c00309{left:220.533333pt;}
.x6_c00309{left:221.466667pt;}
.x2_c00309{left:222.933333pt;}
.x1_c00309{left:223.866667pt;}
.x11_c00309{left:262.400000pt;}
.x3_c00309{left:269.066667pt;}
.xb_c00309{left:296.933333pt;}
.x14_c00309{left:340.801554pt;}
.xc_c00309{left:348.266667pt;}
.x13_c00309{left:683.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_41c37e6116f94d21a45e4348.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_528360227d3220576b12c61c.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_3f4b61449e06905cd908d46e.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls2_c00310{letter-spacing:-12.000000px;}
.ls1_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:15.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00310{word-spacing:-63.504000px;}
.ws2_c00310{word-spacing:0.000000px;}
.ws0_c00310{word-spacing:20.583000px;}
._34_c00310{margin-left:-33.504000px;}
._16_c00310{margin-left:-29.280000px;}
._14_c00310{margin-left:-24.864000px;}
._35_c00310{margin-left:-11.880000px;}
._28_c00310{margin-left:-10.464000px;}
._2f_c00310{margin-left:-9.312000px;}
._25_c00310{margin-left:-8.256000px;}
._24_c00310{margin-left:-6.432000px;}
._37_c00310{margin-left:-5.352000px;}
._2e_c00310{margin-left:-3.840000px;}
._22_c00310{margin-left:-2.784000px;}
._20_c00310{margin-left:-1.152000px;}
._1_c00310{width:1.728000px;}
._0_c00310{width:3.168000px;}
._4_c00310{width:4.224000px;}
._2_c00310{width:5.376000px;}
._9_c00310{width:6.528000px;}
._d_c00310{width:7.680000px;}
._26_c00310{width:8.832000px;}
._8_c00310{width:10.080000px;}
._18_c00310{width:11.424000px;}
._7_c00310{width:12.480000px;}
._2a_c00310{width:13.632000px;}
._b_c00310{width:14.832000px;}
._e_c00310{width:16.032000px;}
._c_c00310{width:17.976000px;}
._23_c00310{width:19.680000px;}
._30_c00310{width:21.024000px;}
._39_c00310{width:23.280000px;}
._1a_c00310{width:24.288000px;}
._36_c00310{width:25.344000px;}
._f_c00310{width:28.128000px;}
._5_c00310{width:29.664000px;}
._10_c00310{width:30.816000px;}
._3_c00310{width:32.064000px;}
._17_c00310{width:34.632000px;}
._11_c00310{width:36.480000px;}
._6_c00310{width:37.920000px;}
._12_c00310{width:39.840000px;}
._a_c00310{width:40.896000px;}
._21_c00310{width:42.528000px;}
._1c_c00310{width:43.776000px;}
._1e_c00310{width:44.928000px;}
._41_c00310{width:46.464000px;}
._1d_c00310{width:47.688000px;}
._1f_c00310{width:49.080000px;}
._29_c00310{width:51.264000px;}
._32_c00310{width:52.320000px;}
._31_c00310{width:53.472000px;}
._27_c00310{width:56.160000px;}
._1b_c00310{width:57.792000px;}
._3c_c00310{width:58.848000px;}
._2b_c00310{width:60.096000px;}
._2d_c00310{width:62.880000px;}
._2c_c00310{width:65.184000px;}
._3a_c00310{width:66.744000px;}
._19_c00310{width:68.304000px;}
._38_c00310{width:71.520000px;}
._3e_c00310{width:72.864000px;}
._3d_c00310{width:74.304000px;}
._13_c00310{width:93.216000px;}
._33_c00310{width:121.320000px;}
._3b_c00310{width:137.784000px;}
._3f_c00310{width:162.312000px;}
._40_c00310{width:196.344000px;}
._15_c00310{width:234.816000px;}
._42_c00310{width:292.008000px;}
._43_c00310{width:1882.176000px;}
.fc2_c00310{color:transparent;}
.fc1_c00310{color:rgb(128,128,128);}
.fc0_c00310{color:rgb(0,0,0);}
.fs3_c00310{font-size:48.000000px;}
.fs2_c00310{font-size:84.000000px;}
.fs0_c00310{font-size:87.000000px;}
.fs1_c00310{font-size:96.000000px;}
.y0_c00310{bottom:0.000000px;}
.y26_c00310{bottom:3.105000px;}
.y25_c00310{bottom:7.228369px;}
.y24_c00310{bottom:114.420000px;}
.y23_c00310{bottom:147.120000px;}
.y22_c00310{bottom:181.470000px;}
.y21_c00310{bottom:215.220000px;}
.y20_c00310{bottom:248.520000px;}
.y1f_c00310{bottom:282.720000px;}
.y1e_c00310{bottom:316.920000px;}
.y1d_c00310{bottom:350.220000px;}
.y1c_c00310{bottom:383.370000px;}
.y1b_c00310{bottom:417.120000px;}
.y1a_c00310{bottom:450.870000px;}
.y19_c00310{bottom:484.320000px;}
.y18_c00310{bottom:518.070000px;}
.y17_c00310{bottom:550.470000px;}
.y16_c00310{bottom:584.220000px;}
.y15_c00310{bottom:617.220000px;}
.y14_c00310{bottom:651.270000px;}
.y13_c00310{bottom:684.720000px;}
.y12_c00310{bottom:717.570000px;}
.y11_c00310{bottom:751.620000px;}
.y10_c00310{bottom:784.320000px;}
.yf_c00310{bottom:818.070000px;}
.ye_c00310{bottom:850.470000px;}
.yd_c00310{bottom:884.220000px;}
.yc_c00310{bottom:917.670000px;}
.yb_c00310{bottom:950.670000px;}
.ya_c00310{bottom:983.520000px;}
.y9_c00310{bottom:1017.870000px;}
.y8_c00310{bottom:1051.320000px;}
.y7_c00310{bottom:1084.320000px;}
.y6_c00310{bottom:1117.470000px;}
.y5_c00310{bottom:1149.570000px;}
.y4_c00310{bottom:1183.920000px;}
.y3_c00310{bottom:1217.070000px;}
.y2_c00310{bottom:1251.420000px;}
.y1_c00310{bottom:1271.070000px;}
.h4_c00310{height:13.200073px;}
.h5_c00310{height:43.804688px;}
.h2_c00310{height:110.151855px;}
.h3_c00310{height:121.546875px;}
.h0_c00310{height:1383.450000px;}
.h1_c00310{height:1383.750000px;}
.w2_c00310{width:104.875500px;}
.w0_c00310{width:878.025000px;}
.w1_c00310{width:878.250000px;}
.x0_c00310{left:0.000000px;}
.x8_c00310{left:35.850000px;}
.x7_c00310{left:37.500000px;}
.x6_c00310{left:39.150000px;}
.x5_c00310{left:40.200000px;}
.x3_c00310{left:41.850000px;}
.x4_c00310{left:42.900000px;}
.x2_c00310{left:43.950000px;}
.x9_c00310{left:45.000000px;}
.xa_c00310{left:46.200000px;}
.xb_c00310{left:390.826721px;}
.x1_c00310{left:434.400000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls2_c00310{letter-spacing:-10.666667pt;}
.ls1_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:13.333333pt;}
.ws1_c00310{word-spacing:-56.448000pt;}
.ws2_c00310{word-spacing:0.000000pt;}
.ws0_c00310{word-spacing:18.296000pt;}
._34_c00310{margin-left:-29.781333pt;}
._16_c00310{margin-left:-26.026667pt;}
._14_c00310{margin-left:-22.101333pt;}
._35_c00310{margin-left:-10.560000pt;}
._28_c00310{margin-left:-9.301333pt;}
._2f_c00310{margin-left:-8.277333pt;}
._25_c00310{margin-left:-7.338667pt;}
._24_c00310{margin-left:-5.717333pt;}
._37_c00310{margin-left:-4.757333pt;}
._2e_c00310{margin-left:-3.413333pt;}
._22_c00310{margin-left:-2.474667pt;}
._20_c00310{margin-left:-1.024000pt;}
._1_c00310{width:1.536000pt;}
._0_c00310{width:2.816000pt;}
._4_c00310{width:3.754667pt;}
._2_c00310{width:4.778667pt;}
._9_c00310{width:5.802667pt;}
._d_c00310{width:6.826667pt;}
._26_c00310{width:7.850667pt;}
._8_c00310{width:8.960000pt;}
._18_c00310{width:10.154667pt;}
._7_c00310{width:11.093333pt;}
._2a_c00310{width:12.117333pt;}
._b_c00310{width:13.184000pt;}
._e_c00310{width:14.250667pt;}
._c_c00310{width:15.978667pt;}
._23_c00310{width:17.493333pt;}
._30_c00310{width:18.688000pt;}
._39_c00310{width:20.693333pt;}
._1a_c00310{width:21.589333pt;}
._36_c00310{width:22.528000pt;}
._f_c00310{width:25.002667pt;}
._5_c00310{width:26.368000pt;}
._10_c00310{width:27.392000pt;}
._3_c00310{width:28.501333pt;}
._17_c00310{width:30.784000pt;}
._11_c00310{width:32.426667pt;}
._6_c00310{width:33.706667pt;}
._12_c00310{width:35.413333pt;}
._a_c00310{width:36.352000pt;}
._21_c00310{width:37.802667pt;}
._1c_c00310{width:38.912000pt;}
._1e_c00310{width:39.936000pt;}
._41_c00310{width:41.301333pt;}
._1d_c00310{width:42.389333pt;}
._1f_c00310{width:43.626667pt;}
._29_c00310{width:45.568000pt;}
._32_c00310{width:46.506667pt;}
._31_c00310{width:47.530667pt;}
._27_c00310{width:49.920000pt;}
._1b_c00310{width:51.370667pt;}
._3c_c00310{width:52.309333pt;}
._2b_c00310{width:53.418667pt;}
._2d_c00310{width:55.893333pt;}
._2c_c00310{width:57.941333pt;}
._3a_c00310{width:59.328000pt;}
._19_c00310{width:60.714667pt;}
._38_c00310{width:63.573333pt;}
._3e_c00310{width:64.768000pt;}
._3d_c00310{width:66.048000pt;}
._13_c00310{width:82.858667pt;}
._33_c00310{width:107.840000pt;}
._3b_c00310{width:122.474667pt;}
._3f_c00310{width:144.277333pt;}
._40_c00310{width:174.528000pt;}
._15_c00310{width:208.725333pt;}
._42_c00310{width:259.562667pt;}
._43_c00310{width:1673.045333pt;}
.fs3_c00310{font-size:42.666667pt;}
.fs2_c00310{font-size:74.666667pt;}
.fs0_c00310{font-size:77.333333pt;}
.fs1_c00310{font-size:85.333333pt;}
.y0_c00310{bottom:0.000000pt;}
.y26_c00310{bottom:2.760000pt;}
.y25_c00310{bottom:6.425217pt;}
.y24_c00310{bottom:101.706667pt;}
.y23_c00310{bottom:130.773333pt;}
.y22_c00310{bottom:161.306667pt;}
.y21_c00310{bottom:191.306667pt;}
.y20_c00310{bottom:220.906667pt;}
.y1f_c00310{bottom:251.306667pt;}
.y1e_c00310{bottom:281.706667pt;}
.y1d_c00310{bottom:311.306667pt;}
.y1c_c00310{bottom:340.773333pt;}
.y1b_c00310{bottom:370.773333pt;}
.y1a_c00310{bottom:400.773333pt;}
.y19_c00310{bottom:430.506667pt;}
.y18_c00310{bottom:460.506667pt;}
.y17_c00310{bottom:489.306667pt;}
.y16_c00310{bottom:519.306667pt;}
.y15_c00310{bottom:548.640000pt;}
.y14_c00310{bottom:578.906667pt;}
.y13_c00310{bottom:608.640000pt;}
.y12_c00310{bottom:637.840000pt;}
.y11_c00310{bottom:668.106667pt;}
.y10_c00310{bottom:697.173333pt;}
.yf_c00310{bottom:727.173333pt;}
.ye_c00310{bottom:755.973333pt;}
.yd_c00310{bottom:785.973333pt;}
.yc_c00310{bottom:815.706667pt;}
.yb_c00310{bottom:845.040000pt;}
.ya_c00310{bottom:874.240000pt;}
.y9_c00310{bottom:904.773333pt;}
.y8_c00310{bottom:934.506667pt;}
.y7_c00310{bottom:963.840000pt;}
.y6_c00310{bottom:993.306667pt;}
.y5_c00310{bottom:1021.840000pt;}
.y4_c00310{bottom:1052.373333pt;}
.y3_c00310{bottom:1081.840000pt;}
.y2_c00310{bottom:1112.373333pt;}
.y1_c00310{bottom:1129.840000pt;}
.h4_c00310{height:11.733399pt;}
.h5_c00310{height:38.937500pt;}
.h2_c00310{height:97.912760pt;}
.h3_c00310{height:108.041667pt;}
.h0_c00310{height:1229.733333pt;}
.h1_c00310{height:1230.000000pt;}
.w2_c00310{width:93.222667pt;}
.w0_c00310{width:780.466667pt;}
.w1_c00310{width:780.666667pt;}
.x0_c00310{left:0.000000pt;}
.x8_c00310{left:31.866667pt;}
.x7_c00310{left:33.333333pt;}
.x6_c00310{left:34.800000pt;}
.x5_c00310{left:35.733333pt;}
.x3_c00310{left:37.200000pt;}
.x4_c00310{left:38.133333pt;}
.x2_c00310{left:39.066667pt;}
.x9_c00310{left:40.000000pt;}
.xa_c00310{left:41.066667pt;}
.xb_c00310{left:347.401530pt;}
.x1_c00310{left:386.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e15ee292497a0f8569554db.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_b5082740f648082983360459.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_17752601a17d752576a2abc7.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls2_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:8.520000px;}
.ls3_c00311{letter-spacing:9.000000px;}
.ls1_c00311{letter-spacing:43.218000px;}
.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:-51.000000px;}
.ws4_c00311{word-spacing:-23.136000px;}
.ws2_c00311{word-spacing:-20.244000px;}
.ws5_c00311{word-spacing:0.000000px;}
.ws3_c00311{word-spacing:2.700000px;}
.ws0_c00311{word-spacing:3.024000px;}
._3d_c00311{margin-left:-84.576000px;}
._3c_c00311{margin-left:-33.504000px;}
._2d_c00311{margin-left:-23.232000px;}
._2e_c00311{margin-left:-18.624000px;}
._17_c00311{margin-left:-15.552000px;}
._18_c00311{margin-left:-14.400000px;}
._33_c00311{margin-left:-13.248000px;}
._31_c00311{margin-left:-12.000000px;}
._32_c00311{margin-left:-10.752000px;}
._e_c00311{margin-left:-9.312000px;}
._3b_c00311{margin-left:-8.262000px;}
._f_c00311{margin-left:-6.624000px;}
._29_c00311{margin-left:-5.472000px;}
._2a_c00311{margin-left:-3.834000px;}
._7_c00311{margin-left:-2.400000px;}
._8_c00311{margin-left:-1.056000px;}
._10_c00311{width:2.016000px;}
._6_c00311{width:3.072000px;}
._a_c00311{width:4.224000px;}
._4_c00311{width:5.472000px;}
._3_c00311{width:6.816000px;}
._b_c00311{width:7.872000px;}
._2_c00311{width:8.928000px;}
._1_c00311{width:10.080000px;}
._c_c00311{width:11.424000px;}
._0_c00311{width:13.440000px;}
._23_c00311{width:14.592000px;}
._3e_c00311{width:15.648000px;}
._21_c00311{width:16.704000px;}
._9_c00311{width:17.760000px;}
._15_c00311{width:18.960000px;}
._12_c00311{width:20.064000px;}
._1c_c00311{width:21.216000px;}
._3a_c00311{width:24.480000px;}
._13_c00311{width:25.536000px;}
._34_c00311{width:27.408000px;}
._24_c00311{width:28.992000px;}
._1d_c00311{width:30.576000px;}
._1a_c00311{width:32.160000px;}
._1f_c00311{width:33.216000px;}
._14_c00311{width:34.272000px;}
._1b_c00311{width:36.288000px;}
._11_c00311{width:37.920000px;}
._27_c00311{width:39.456000px;}
._1e_c00311{width:40.992000px;}
._5_c00311{width:42.912000px;}
._25_c00311{width:44.928000px;}
._22_c00311{width:46.080000px;}
._2b_c00311{width:47.520000px;}
._19_c00311{width:49.056000px;}
._26_c00311{width:50.292000px;}
._28_c00311{width:52.032000px;}
._20_c00311{width:54.240000px;}
._d_c00311{width:56.256000px;}
._35_c00311{width:62.064000px;}
._30_c00311{width:68.640000px;}
._37_c00311{width:159.264000px;}
._16_c00311{width:168.864000px;}
._36_c00311{width:180.108000px;}
._2f_c00311{width:182.976000px;}
._39_c00311{width:391.200000px;}
._38_c00311{width:446.688000px;}
._2c_c00311{width:528.576000px;}
.fc2_c00311{color:transparent;}
.fc1_c00311{color:rgb(128,128,128);}
.fc0_c00311{color:rgb(0,0,0);}
.fs5_c00311{font-size:48.000000px;}
.fs3_c00311{font-size:60.000000px;}
.fs4_c00311{font-size:78.000000px;}
.fs1_c00311{font-size:84.000000px;}
.fs0_c00311{font-size:96.000000px;}
.fs2_c00311{font-size:102.000000px;}
.y0_c00311{bottom:0.000000px;}
.y24_c00311{bottom:3.105000px;}
.y23_c00311{bottom:7.228357px;}
.y22_c00311{bottom:142.380000px;}
.y21_c00311{bottom:176.130000px;}
.y20_c00311{bottom:210.330000px;}
.y1f_c00311{bottom:244.380000px;}
.y1e_c00311{bottom:278.730000px;}
.y1d_c00311{bottom:312.180000px;}
.y1c_c00311{bottom:345.930000px;}
.y1b_c00311{bottom:379.380000px;}
.y1a_c00311{bottom:413.880000px;}
.y19_c00311{bottom:447.180000px;}
.y18_c00311{bottom:480.030000px;}
.y17_c00311{bottom:514.980000px;}
.y16_c00311{bottom:548.730000px;}
.y15_c00311{bottom:582.480000px;}
.y14_c00311{bottom:616.380000px;}
.y13_c00311{bottom:650.130000px;}
.y12_c00311{bottom:683.130000px;}
.y11_c00311{bottom:717.630000px;}
.y10_c00311{bottom:750.930000px;}
.yf_c00311{bottom:783.630000px;}
.ye_c00311{bottom:818.430000px;}
.yd_c00311{bottom:849.780000px;}
.yc_c00311{bottom:884.880000px;}
.yb_c00311{bottom:918.330000px;}
.ya_c00311{bottom:951.180000px;}
.y9_c00311{bottom:984.480000px;}
.y8_c00311{bottom:1017.630000px;}
.y7_c00311{bottom:1051.080000px;}
.y6_c00311{bottom:1084.080000px;}
.y5_c00311{bottom:1118.430000px;}
.y4_c00311{bottom:1150.980000px;}
.y3_c00311{bottom:1185.630000px;}
.y2_c00311{bottom:1216.680000px;}
.y1_c00311{bottom:1251.180000px;}
.h4_c00311{height:13.200074px;}
.h5_c00311{height:43.804688px;}
.h2_c00311{height:121.546875px;}
.h3_c00311{height:129.143555px;}
.h0_c00311{height:1382.700000px;}
.h1_c00311{height:1383.000000px;}
.w2_c00311{width:104.875500px;}
.w0_c00311{width:863.175000px;}
.w1_c00311{width:863.250000px;}
.x0_c00311{left:0.000000px;}
.x6_c00311{left:160.050000px;}
.x1_c00311{left:258.900000px;}
.x3_c00311{left:260.550000px;}
.x5_c00311{left:262.200000px;}
.x7_c00311{left:263.700000px;}
.x8_c00311{left:264.900000px;}
.x2_c00311{left:312.300000px;}
.x4_c00311{left:313.500000px;}
.x9_c00311{left:383.401749px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:7.573333pt;}
.ls3_c00311{letter-spacing:8.000000pt;}
.ls1_c00311{letter-spacing:38.416000pt;}
.ws1_c00311{word-spacing:-45.333333pt;}
.ws4_c00311{word-spacing:-20.565333pt;}
.ws2_c00311{word-spacing:-17.994667pt;}
.ws5_c00311{word-spacing:0.000000pt;}
.ws3_c00311{word-spacing:2.400000pt;}
.ws0_c00311{word-spacing:2.688000pt;}
._3d_c00311{margin-left:-75.178667pt;}
._3c_c00311{margin-left:-29.781333pt;}
._2d_c00311{margin-left:-20.650667pt;}
._2e_c00311{margin-left:-16.554667pt;}
._17_c00311{margin-left:-13.824000pt;}
._18_c00311{margin-left:-12.800000pt;}
._33_c00311{margin-left:-11.776000pt;}
._31_c00311{margin-left:-10.666667pt;}
._32_c00311{margin-left:-9.557333pt;}
._e_c00311{margin-left:-8.277333pt;}
._3b_c00311{margin-left:-7.344000pt;}
._f_c00311{margin-left:-5.888000pt;}
._29_c00311{margin-left:-4.864000pt;}
._2a_c00311{margin-left:-3.408000pt;}
._7_c00311{margin-left:-2.133333pt;}
._8_c00311{margin-left:-0.938667pt;}
._10_c00311{width:1.792000pt;}
._6_c00311{width:2.730667pt;}
._a_c00311{width:3.754667pt;}
._4_c00311{width:4.864000pt;}
._3_c00311{width:6.058667pt;}
._b_c00311{width:6.997333pt;}
._2_c00311{width:7.936000pt;}
._1_c00311{width:8.960000pt;}
._c_c00311{width:10.154667pt;}
._0_c00311{width:11.946667pt;}
._23_c00311{width:12.970667pt;}
._3e_c00311{width:13.909333pt;}
._21_c00311{width:14.848000pt;}
._9_c00311{width:15.786667pt;}
._15_c00311{width:16.853333pt;}
._12_c00311{width:17.834667pt;}
._1c_c00311{width:18.858667pt;}
._3a_c00311{width:21.760000pt;}
._13_c00311{width:22.698667pt;}
._34_c00311{width:24.362667pt;}
._24_c00311{width:25.770667pt;}
._1d_c00311{width:27.178667pt;}
._1a_c00311{width:28.586667pt;}
._1f_c00311{width:29.525333pt;}
._14_c00311{width:30.464000pt;}
._1b_c00311{width:32.256000pt;}
._11_c00311{width:33.706667pt;}
._27_c00311{width:35.072000pt;}
._1e_c00311{width:36.437333pt;}
._5_c00311{width:38.144000pt;}
._25_c00311{width:39.936000pt;}
._22_c00311{width:40.960000pt;}
._2b_c00311{width:42.240000pt;}
._19_c00311{width:43.605333pt;}
._26_c00311{width:44.704000pt;}
._28_c00311{width:46.250667pt;}
._20_c00311{width:48.213333pt;}
._d_c00311{width:50.005333pt;}
._35_c00311{width:55.168000pt;}
._30_c00311{width:61.013333pt;}
._37_c00311{width:141.568000pt;}
._16_c00311{width:150.101333pt;}
._36_c00311{width:160.096000pt;}
._2f_c00311{width:162.645333pt;}
._39_c00311{width:347.733333pt;}
._38_c00311{width:397.056000pt;}
._2c_c00311{width:469.845333pt;}
.fs5_c00311{font-size:42.666667pt;}
.fs3_c00311{font-size:53.333333pt;}
.fs4_c00311{font-size:69.333333pt;}
.fs1_c00311{font-size:74.666667pt;}
.fs0_c00311{font-size:85.333333pt;}
.fs2_c00311{font-size:90.666667pt;}
.y0_c00311{bottom:0.000000pt;}
.y24_c00311{bottom:2.760000pt;}
.y23_c00311{bottom:6.425206pt;}
.y22_c00311{bottom:126.560000pt;}
.y21_c00311{bottom:156.560000pt;}
.y20_c00311{bottom:186.960000pt;}
.y1f_c00311{bottom:217.226667pt;}
.y1e_c00311{bottom:247.760000pt;}
.y1d_c00311{bottom:277.493333pt;}
.y1c_c00311{bottom:307.493333pt;}
.y1b_c00311{bottom:337.226667pt;}
.y1a_c00311{bottom:367.893333pt;}
.y19_c00311{bottom:397.493333pt;}
.y18_c00311{bottom:426.693333pt;}
.y17_c00311{bottom:457.760000pt;}
.y16_c00311{bottom:487.760000pt;}
.y15_c00311{bottom:517.760000pt;}
.y14_c00311{bottom:547.893333pt;}
.y13_c00311{bottom:577.893333pt;}
.y12_c00311{bottom:607.226667pt;}
.y11_c00311{bottom:637.893333pt;}
.y10_c00311{bottom:667.493333pt;}
.yf_c00311{bottom:696.560000pt;}
.ye_c00311{bottom:727.493333pt;}
.yd_c00311{bottom:755.360000pt;}
.yc_c00311{bottom:786.560000pt;}
.yb_c00311{bottom:816.293333pt;}
.ya_c00311{bottom:845.493333pt;}
.y9_c00311{bottom:875.093333pt;}
.y8_c00311{bottom:904.560000pt;}
.y7_c00311{bottom:934.293333pt;}
.y6_c00311{bottom:963.626667pt;}
.y5_c00311{bottom:994.160000pt;}
.y4_c00311{bottom:1023.093333pt;}
.y3_c00311{bottom:1053.893333pt;}
.y2_c00311{bottom:1081.493333pt;}
.y1_c00311{bottom:1112.160000pt;}
.h4_c00311{height:11.733399pt;}
.h5_c00311{height:38.937500pt;}
.h2_c00311{height:108.041667pt;}
.h3_c00311{height:114.794271pt;}
.h0_c00311{height:1229.066667pt;}
.h1_c00311{height:1229.333333pt;}
.w2_c00311{width:93.222667pt;}
.w0_c00311{width:767.266667pt;}
.w1_c00311{width:767.333333pt;}
.x0_c00311{left:0.000000pt;}
.x6_c00311{left:142.266667pt;}
.x1_c00311{left:230.133333pt;}
.x3_c00311{left:231.600000pt;}
.x5_c00311{left:233.066667pt;}
.x7_c00311{left:234.400000pt;}
.x8_c00311{left:235.466667pt;}
.x2_c00311{left:277.600000pt;}
.x4_c00311{left:278.666667pt;}
.x9_c00311{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c14705a49e9887ab5875a0eb.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls0_c00312{letter-spacing:0.000000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:0.000000px;}
._23_c00312{margin-left:-9.024000px;}
._12_c00312{margin-left:-7.008000px;}
._13_c00312{margin-left:-5.760000px;}
._2d_c00312{margin-left:-4.416000px;}
._1a_c00312{margin-left:-3.168000px;}
._c_c00312{margin-left:-1.344000px;}
._1b_c00312{width:1.056000px;}
._5_c00312{width:2.208000px;}
._a_c00312{width:4.032000px;}
._8_c00312{width:5.856000px;}
._3_c00312{width:7.680000px;}
._2_c00312{width:8.928000px;}
._1_c00312{width:10.752000px;}
._0_c00312{width:12.672000px;}
._18_c00312{width:13.824000px;}
._f_c00312{width:15.744000px;}
._10_c00312{width:17.760000px;}
._17_c00312{width:18.912000px;}
._2a_c00312{width:20.256000px;}
._1c_c00312{width:21.312000px;}
._e_c00312{width:25.632000px;}
._29_c00312{width:26.688000px;}
._19_c00312{width:27.840000px;}
._2b_c00312{width:29.088000px;}
._b_c00312{width:30.336000px;}
._22_c00312{width:31.392000px;}
._7_c00312{width:33.216000px;}
._d_c00312{width:34.272000px;}
._2c_c00312{width:36.000000px;}
._1d_c00312{width:37.152000px;}
._16_c00312{width:38.208000px;}
._4_c00312{width:39.360000px;}
._15_c00312{width:41.184000px;}
._14_c00312{width:42.720000px;}
._27_c00312{width:43.968000px;}
._6_c00312{width:45.024000px;}
._9_c00312{width:47.040000px;}
._25_c00312{width:50.304000px;}
._21_c00312{width:51.936000px;}
._11_c00312{width:53.184000px;}
._24_c00312{width:54.240000px;}
._26_c00312{width:56.448000px;}
._2f_c00312{width:58.656000px;}
._20_c00312{width:60.000000px;}
._2e_c00312{width:61.344000px;}
._32_c00312{width:67.296000px;}
._28_c00312{width:68.544000px;}
._1e_c00312{width:70.080000px;}
._31_c00312{width:75.264000px;}
._1f_c00312{width:86.784000px;}
._30_c00312{width:94.752000px;}
._34_c00312{width:746.496000px;}
._33_c00312{width:1016.352000px;}
.fc2_c00312{color:transparent;}
.fc1_c00312{color:rgb(128,128,128);}
.fc0_c00312{color:rgb(0,0,0);}
.fs1_c00312{font-size:48.000000px;}
.fs0_c00312{font-size:96.000000px;}
.y0_c00312{bottom:0.000000px;}
.y25_c00312{bottom:3.105000px;}
.y24_c00312{bottom:7.228357px;}
.y23_c00312{bottom:58.080000px;}
.y22_c00312{bottom:128.580000px;}
.y21_c00312{bottom:162.330000px;}
.y20_c00312{bottom:196.530000px;}
.y1f_c00312{bottom:230.880000px;}
.y1e_c00312{bottom:264.930000px;}
.y1d_c00312{bottom:298.980000px;}
.y1c_c00312{bottom:332.730000px;}
.y1b_c00312{bottom:366.480000px;}
.y1a_c00312{bottom:399.630000px;}
.y19_c00312{bottom:433.380000px;}
.y18_c00312{bottom:466.830000px;}
.y17_c00312{bottom:500.580000px;}
.y16_c00312{bottom:533.880000px;}
.y15_c00312{bottom:567.330000px;}
.y14_c00312{bottom:600.480000px;}
.y13_c00312{bottom:634.230000px;}
.y12_c00312{bottom:667.230000px;}
.y11_c00312{bottom:700.980000px;}
.y10_c00312{bottom:734.130000px;}
.yf_c00312{bottom:767.580000px;}
.ye_c00312{bottom:800.280000px;}
.yd_c00312{bottom:833.280000px;}
.yc_c00312{bottom:866.730000px;}
.yb_c00312{bottom:899.880000px;}
.ya_c00312{bottom:933.030000px;}
.y9_c00312{bottom:966.630000px;}
.y8_c00312{bottom:1000.230000px;}
.y7_c00312{bottom:1033.380000px;}
.y6_c00312{bottom:1066.530000px;}
.y5_c00312{bottom:1099.680000px;}
.y4_c00312{bottom:1132.980000px;}
.y3_c00312{bottom:1165.830000px;}
.y2_c00312{bottom:1199.130000px;}
.y1_c00312{bottom:1232.880000px;}
.h2_c00312{height:13.200074px;}
.h3_c00312{height:43.804688px;}
.h1_c00312{height:121.546875px;}
.h0_c00312{height:1346.250000px;}
.w1_c00312{width:104.875500px;}
.w0_c00312{width:854.250000px;}
.x0_c00312{left:0.000000px;}
.x5_c00312{left:51.600000px;}
.x7_c00312{left:55.350000px;}
.x6_c00312{left:59.100000px;}
.x4_c00312{left:61.200000px;}
.x3_c00312{left:62.400000px;}
.x2_c00312{left:64.050000px;}
.x1_c00312{left:65.100000px;}
.x8_c00312{left:69.450000px;}
.x9_c00312{left:70.500000px;}
.xa_c00312{left:349.350000px;}
.xb_c00312{left:378.939240px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
._23_c00312{margin-left:-8.021333pt;}
._12_c00312{margin-left:-6.229333pt;}
._13_c00312{margin-left:-5.120000pt;}
._2d_c00312{margin-left:-3.925333pt;}
._1a_c00312{margin-left:-2.816000pt;}
._c_c00312{margin-left:-1.194667pt;}
._1b_c00312{width:0.938667pt;}
._5_c00312{width:1.962667pt;}
._a_c00312{width:3.584000pt;}
._8_c00312{width:5.205333pt;}
._3_c00312{width:6.826667pt;}
._2_c00312{width:7.936000pt;}
._1_c00312{width:9.557333pt;}
._0_c00312{width:11.264000pt;}
._18_c00312{width:12.288000pt;}
._f_c00312{width:13.994667pt;}
._10_c00312{width:15.786667pt;}
._17_c00312{width:16.810667pt;}
._2a_c00312{width:18.005333pt;}
._1c_c00312{width:18.944000pt;}
._e_c00312{width:22.784000pt;}
._29_c00312{width:23.722667pt;}
._19_c00312{width:24.746667pt;}
._2b_c00312{width:25.856000pt;}
._b_c00312{width:26.965333pt;}
._22_c00312{width:27.904000pt;}
._7_c00312{width:29.525333pt;}
._d_c00312{width:30.464000pt;}
._2c_c00312{width:32.000000pt;}
._1d_c00312{width:33.024000pt;}
._16_c00312{width:33.962667pt;}
._4_c00312{width:34.986667pt;}
._15_c00312{width:36.608000pt;}
._14_c00312{width:37.973333pt;}
._27_c00312{width:39.082667pt;}
._6_c00312{width:40.021333pt;}
._9_c00312{width:41.813333pt;}
._25_c00312{width:44.714667pt;}
._21_c00312{width:46.165333pt;}
._11_c00312{width:47.274667pt;}
._24_c00312{width:48.213333pt;}
._26_c00312{width:50.176000pt;}
._2f_c00312{width:52.138667pt;}
._20_c00312{width:53.333333pt;}
._2e_c00312{width:54.528000pt;}
._32_c00312{width:59.818667pt;}
._28_c00312{width:60.928000pt;}
._1e_c00312{width:62.293333pt;}
._31_c00312{width:66.901333pt;}
._1f_c00312{width:77.141333pt;}
._30_c00312{width:84.224000pt;}
._34_c00312{width:663.552000pt;}
._33_c00312{width:903.424000pt;}
.fs1_c00312{font-size:42.666667pt;}
.fs0_c00312{font-size:85.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y25_c00312{bottom:2.760000pt;}
.y24_c00312{bottom:6.425206pt;}
.y23_c00312{bottom:51.626667pt;}
.y22_c00312{bottom:114.293333pt;}
.y21_c00312{bottom:144.293333pt;}
.y20_c00312{bottom:174.693333pt;}
.y1f_c00312{bottom:205.226667pt;}
.y1e_c00312{bottom:235.493333pt;}
.y1d_c00312{bottom:265.760000pt;}
.y1c_c00312{bottom:295.760000pt;}
.y1b_c00312{bottom:325.760000pt;}
.y1a_c00312{bottom:355.226667pt;}
.y19_c00312{bottom:385.226667pt;}
.y18_c00312{bottom:414.960000pt;}
.y17_c00312{bottom:444.960000pt;}
.y16_c00312{bottom:474.560000pt;}
.y15_c00312{bottom:504.293333pt;}
.y14_c00312{bottom:533.760000pt;}
.y13_c00312{bottom:563.760000pt;}
.y12_c00312{bottom:593.093333pt;}
.y11_c00312{bottom:623.093333pt;}
.y10_c00312{bottom:652.560000pt;}
.yf_c00312{bottom:682.293333pt;}
.ye_c00312{bottom:711.360000pt;}
.yd_c00312{bottom:740.693333pt;}
.yc_c00312{bottom:770.426667pt;}
.yb_c00312{bottom:799.893333pt;}
.ya_c00312{bottom:829.360000pt;}
.y9_c00312{bottom:859.226667pt;}
.y8_c00312{bottom:889.093333pt;}
.y7_c00312{bottom:918.560000pt;}
.y6_c00312{bottom:948.026667pt;}
.y5_c00312{bottom:977.493333pt;}
.y4_c00312{bottom:1007.093333pt;}
.y3_c00312{bottom:1036.293333pt;}
.y2_c00312{bottom:1065.893333pt;}
.y1_c00312{bottom:1095.893333pt;}
.h2_c00312{height:11.733399pt;}
.h3_c00312{height:38.937500pt;}
.h1_c00312{height:108.041667pt;}
.h0_c00312{height:1196.666667pt;}
.w1_c00312{width:93.222667pt;}
.w0_c00312{width:759.333333pt;}
.x0_c00312{left:0.000000pt;}
.x5_c00312{left:45.866667pt;}
.x7_c00312{left:49.200000pt;}
.x6_c00312{left:52.533333pt;}
.x4_c00312{left:54.400000pt;}
.x3_c00312{left:55.466667pt;}
.x2_c00312{left:56.933333pt;}
.x1_c00312{left:57.866667pt;}
.x8_c00312{left:61.733333pt;}
.x9_c00312{left:62.666667pt;}
.xa_c00312{left:310.533333pt;}
.xb_c00312{left:336.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9f0ae8b05aa8fa763e03e4c.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_e0ca12856533fb12a127143a.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_89fc1c5f95b714b212813d29.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls2_c00313{letter-spacing:0.000000px;}
.ls1_c00313{letter-spacing:2.052000px;}
.ls0_c00313{letter-spacing:22.776000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-32.424000px;}
.ws1_c00313{word-spacing:-25.939200px;}
.ws2_c00313{word-spacing:-20.244000px;}
.ws3_c00313{word-spacing:0.000000px;}
._2f_c00313{margin-left:-30.396000px;}
._39_c00313{margin-left:-24.228000px;}
._27_c00313{margin-left:-21.312000px;}
._7_c00313{margin-left:-19.392000px;}
._37_c00313{margin-left:-17.256000px;}
._3c_c00313{margin-left:-15.492000px;}
._2c_c00313{margin-left:-13.776000px;}
._21_c00313{margin-left:-11.712000px;}
._25_c00313{margin-left:-10.656000px;}
._3_c00313{margin-left:-9.504000px;}
._4_c00313{margin-left:-8.160000px;}
._1f_c00313{margin-left:-6.816000px;}
._15_c00313{margin-left:-4.704000px;}
._5_c00313{margin-left:-2.976000px;}
._9_c00313{margin-left:-1.920000px;}
._3d_c00313{width:1.008000px;}
._1_c00313{width:2.016000px;}
._2_c00313{width:3.840000px;}
._3f_c00313{width:4.848000px;}
._0_c00313{width:5.856000px;}
._1e_c00313{width:7.104000px;}
._e_c00313{width:8.160000px;}
._f_c00313{width:9.696000px;}
._13_c00313{width:11.040000px;}
._30_c00313{width:12.132000px;}
._12_c00313{width:13.152000px;}
._19_c00313{width:14.784000px;}
._2e_c00313{width:16.272000px;}
._14_c00313{width:17.664000px;}
._29_c00313{width:18.780000px;}
._2d_c00313{width:21.696000px;}
._34_c00313{width:22.728000px;}
._3b_c00313{width:24.144000px;}
._11_c00313{width:25.152000px;}
._3a_c00313{width:26.172000px;}
._35_c00313{width:27.180000px;}
._1c_c00313{width:28.320000px;}
._10_c00313{width:29.856000px;}
._38_c00313{width:30.900000px;}
._a_c00313{width:32.352000px;}
._1d_c00313{width:33.696000px;}
._47_c00313{width:34.944000px;}
._1a_c00313{width:36.000000px;}
._2b_c00313{width:37.536000px;}
._16_c00313{width:38.592000px;}
._c_c00313{width:39.744000px;}
._17_c00313{width:40.896000px;}
._18_c00313{width:42.528000px;}
._1b_c00313{width:44.448000px;}
._45_c00313{width:45.540000px;}
._d_c00313{width:46.656000px;}
._33_c00313{width:47.808000px;}
._b_c00313{width:48.864000px;}
._31_c00313{width:50.400000px;}
._3e_c00313{width:51.816000px;}
._32_c00313{width:52.992000px;}
._20_c00313{width:56.064000px;}
._42_c00313{width:58.272000px;}
._2a_c00313{width:77.856000px;}
._6_c00313{width:128.832000px;}
._46_c00313{width:142.668000px;}
._28_c00313{width:178.800000px;}
._22_c00313{width:194.040000px;}
._43_c00313{width:263.856000px;}
._36_c00313{width:300.696000px;}
._26_c00313{width:327.840000px;}
._24_c00313{width:355.788000px;}
._44_c00313{width:381.972000px;}
._8_c00313{width:430.464000px;}
._23_c00313{width:530.796000px;}
._41_c00313{width:670.176000px;}
._40_c00313{width:1005.816000px;}
.fc2_c00313{color:transparent;}
.fc1_c00313{color:rgb(128,128,128);}
.fc0_c00313{color:rgb(0,0,0);}
.fs3_c00313{font-size:48.000000px;}
.fs2_c00313{font-size:67.200000px;}
.fs1_c00313{font-size:84.000000px;}
.fs0_c00313{font-size:96.000000px;}
.y0_c00313{bottom:0.000000px;}
.y25_c00313{bottom:3.105000px;}
.y24_c00313{bottom:7.228355px;}
.y23_c00313{bottom:99.885000px;}
.y22_c00313{bottom:134.235000px;}
.y21_c00313{bottom:168.285000px;}
.y20_c00313{bottom:202.185000px;}
.y1f_c00313{bottom:236.535000px;}
.y1e_c00313{bottom:269.985000px;}
.y1d_c00313{bottom:304.785000px;}
.y1c_c00313{bottom:338.535000px;}
.y1b_c00313{bottom:370.185000px;}
.y1a_c00313{bottom:408.285000px;}
.y19_c00313{bottom:440.685000px;}
.y18_c00313{bottom:475.185000px;}
.y17_c00313{bottom:508.635000px;}
.y16_c00313{bottom:542.385000px;}
.y15_c00313{bottom:574.785000px;}
.y14_c00313{bottom:609.885000px;}
.y13_c00313{bottom:643.485000px;}
.y12_c00313{bottom:677.385000px;}
.y11_c00313{bottom:711.435000px;}
.y10_c00313{bottom:744.735000px;}
.yf_c00313{bottom:778.485000px;}
.ye_c00313{bottom:812.235000px;}
.yd_c00313{bottom:845.685000px;}
.yc_c00313{bottom:879.735000px;}
.yb_c00313{bottom:912.885000px;}
.ya_c00313{bottom:945.885000px;}
.y9_c00313{bottom:979.335000px;}
.y8_c00313{bottom:1013.085000px;}
.y7_c00313{bottom:1049.235000px;}
.y6_c00313{bottom:1077.885000px;}
.y5_c00313{bottom:1112.385000px;}
.y4_c00313{bottom:1145.685000px;}
.y3_c00313{bottom:1178.235000px;}
.y2_c00313{bottom:1211.835000px;}
.y1_c00313{bottom:1243.935000px;}
.h5_c00313{height:13.200074px;}
.h6_c00313{height:43.804688px;}
.h3_c00313{height:98.314453px;}
.h4_c00313{height:106.353516px;}
.h2_c00313{height:121.546875px;}
.h1_c00313{height:1366.500000px;}
.h0_c00313{height:1366.725000px;}
.w2_c00313{width:104.875500px;}
.w0_c00313{width:852.675000px;}
.w1_c00313{width:852.750000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:134.100000px;}
.x5_c00313{left:138.600000px;}
.xb_c00313{left:140.100000px;}
.x4_c00313{left:149.400000px;}
.x7_c00313{left:158.550000px;}
.xe_c00313{left:232.500000px;}
.xc_c00313{left:234.000000px;}
.xd_c00313{left:236.250000px;}
.xa_c00313{left:237.900000px;}
.x9_c00313{left:239.400000px;}
.x8_c00313{left:240.600000px;}
.x2_c00313{left:242.700000px;}
.x3_c00313{left:244.800000px;}
.x6_c00313{left:246.600000px;}
.xf_c00313{left:249.150000px;}
.x10_c00313{left:378.151749px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls2_c00313{letter-spacing:0.000000pt;}
.ls1_c00313{letter-spacing:1.824000pt;}
.ls0_c00313{letter-spacing:20.245333pt;}
.ws0_c00313{word-spacing:-28.821333pt;}
.ws1_c00313{word-spacing:-23.057067pt;}
.ws2_c00313{word-spacing:-17.994667pt;}
.ws3_c00313{word-spacing:0.000000pt;}
._2f_c00313{margin-left:-27.018667pt;}
._39_c00313{margin-left:-21.536000pt;}
._27_c00313{margin-left:-18.944000pt;}
._7_c00313{margin-left:-17.237333pt;}
._37_c00313{margin-left:-15.338667pt;}
._3c_c00313{margin-left:-13.770667pt;}
._2c_c00313{margin-left:-12.245333pt;}
._21_c00313{margin-left:-10.410667pt;}
._25_c00313{margin-left:-9.472000pt;}
._3_c00313{margin-left:-8.448000pt;}
._4_c00313{margin-left:-7.253333pt;}
._1f_c00313{margin-left:-6.058667pt;}
._15_c00313{margin-left:-4.181333pt;}
._5_c00313{margin-left:-2.645333pt;}
._9_c00313{margin-left:-1.706667pt;}
._3d_c00313{width:0.896000pt;}
._1_c00313{width:1.792000pt;}
._2_c00313{width:3.413333pt;}
._3f_c00313{width:4.309333pt;}
._0_c00313{width:5.205333pt;}
._1e_c00313{width:6.314667pt;}
._e_c00313{width:7.253333pt;}
._f_c00313{width:8.618667pt;}
._13_c00313{width:9.813333pt;}
._30_c00313{width:10.784000pt;}
._12_c00313{width:11.690667pt;}
._19_c00313{width:13.141333pt;}
._2e_c00313{width:14.464000pt;}
._14_c00313{width:15.701333pt;}
._29_c00313{width:16.693333pt;}
._2d_c00313{width:19.285333pt;}
._34_c00313{width:20.202667pt;}
._3b_c00313{width:21.461333pt;}
._11_c00313{width:22.357333pt;}
._3a_c00313{width:23.264000pt;}
._35_c00313{width:24.160000pt;}
._1c_c00313{width:25.173333pt;}
._10_c00313{width:26.538667pt;}
._38_c00313{width:27.466667pt;}
._a_c00313{width:28.757333pt;}
._1d_c00313{width:29.952000pt;}
._47_c00313{width:31.061333pt;}
._1a_c00313{width:32.000000pt;}
._2b_c00313{width:33.365333pt;}
._16_c00313{width:34.304000pt;}
._c_c00313{width:35.328000pt;}
._17_c00313{width:36.352000pt;}
._18_c00313{width:37.802667pt;}
._1b_c00313{width:39.509333pt;}
._45_c00313{width:40.480000pt;}
._d_c00313{width:41.472000pt;}
._33_c00313{width:42.496000pt;}
._b_c00313{width:43.434667pt;}
._31_c00313{width:44.800000pt;}
._3e_c00313{width:46.058667pt;}
._32_c00313{width:47.104000pt;}
._20_c00313{width:49.834667pt;}
._42_c00313{width:51.797333pt;}
._2a_c00313{width:69.205333pt;}
._6_c00313{width:114.517333pt;}
._46_c00313{width:126.816000pt;}
._28_c00313{width:158.933333pt;}
._22_c00313{width:172.480000pt;}
._43_c00313{width:234.538667pt;}
._36_c00313{width:267.285333pt;}
._26_c00313{width:291.413333pt;}
._24_c00313{width:316.256000pt;}
._44_c00313{width:339.530667pt;}
._8_c00313{width:382.634667pt;}
._23_c00313{width:471.818667pt;}
._41_c00313{width:595.712000pt;}
._40_c00313{width:894.058667pt;}
.fs3_c00313{font-size:42.666667pt;}
.fs2_c00313{font-size:59.733333pt;}
.fs1_c00313{font-size:74.666667pt;}
.fs0_c00313{font-size:85.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y25_c00313{bottom:2.760000pt;}
.y24_c00313{bottom:6.425204pt;}
.y23_c00313{bottom:88.786667pt;}
.y22_c00313{bottom:119.320000pt;}
.y21_c00313{bottom:149.586667pt;}
.y20_c00313{bottom:179.720000pt;}
.y1f_c00313{bottom:210.253333pt;}
.y1e_c00313{bottom:239.986667pt;}
.y1d_c00313{bottom:270.920000pt;}
.y1c_c00313{bottom:300.920000pt;}
.y1b_c00313{bottom:329.053333pt;}
.y1a_c00313{bottom:362.920000pt;}
.y19_c00313{bottom:391.720000pt;}
.y18_c00313{bottom:422.386667pt;}
.y17_c00313{bottom:452.120000pt;}
.y16_c00313{bottom:482.120000pt;}
.y15_c00313{bottom:510.920000pt;}
.y14_c00313{bottom:542.120000pt;}
.y13_c00313{bottom:571.986667pt;}
.y12_c00313{bottom:602.120000pt;}
.y11_c00313{bottom:632.386667pt;}
.y10_c00313{bottom:661.986667pt;}
.yf_c00313{bottom:691.986667pt;}
.ye_c00313{bottom:721.986667pt;}
.yd_c00313{bottom:751.720000pt;}
.yc_c00313{bottom:781.986667pt;}
.yb_c00313{bottom:811.453333pt;}
.ya_c00313{bottom:840.786667pt;}
.y9_c00313{bottom:870.520000pt;}
.y8_c00313{bottom:900.520000pt;}
.y7_c00313{bottom:932.653333pt;}
.y6_c00313{bottom:958.120000pt;}
.y5_c00313{bottom:988.786667pt;}
.y4_c00313{bottom:1018.386667pt;}
.y3_c00313{bottom:1047.320000pt;}
.y2_c00313{bottom:1077.186667pt;}
.y1_c00313{bottom:1105.720000pt;}
.h5_c00313{height:11.733399pt;}
.h6_c00313{height:38.937500pt;}
.h3_c00313{height:87.390625pt;}
.h4_c00313{height:94.536458pt;}
.h2_c00313{height:108.041667pt;}
.h1_c00313{height:1214.666667pt;}
.h0_c00313{height:1214.866667pt;}
.w2_c00313{width:93.222667pt;}
.w0_c00313{width:757.933333pt;}
.w1_c00313{width:758.000000pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:119.200000pt;}
.x5_c00313{left:123.200000pt;}
.xb_c00313{left:124.533333pt;}
.x4_c00313{left:132.800000pt;}
.x7_c00313{left:140.933333pt;}
.xe_c00313{left:206.666667pt;}
.xc_c00313{left:208.000000pt;}
.xd_c00313{left:210.000000pt;}
.xa_c00313{left:211.466667pt;}
.x9_c00313{left:212.800000pt;}
.x8_c00313{left:213.866667pt;}
.x2_c00313{left:215.733333pt;}
.x3_c00313{left:217.600000pt;}
.x6_c00313{left:219.200000pt;}
.xf_c00313{left:221.466667pt;}
.x10_c00313{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08ff4eb4b6f7ac6ee13453b3.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_f5cb4ad00d5fb9cde164edd6.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls1_c00314{letter-spacing:0.000000px;}
.ls0_c00314{letter-spacing:12.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:-63.504000px;}
.ws1_c00314{word-spacing:0.000000px;}
._38_c00314{margin-left:-30.048000px;}
._1f_c00314{margin-left:-25.920000px;}
._17_c00314{margin-left:-20.256000px;}
._1e_c00314{margin-left:-17.976000px;}
._36_c00314{margin-left:-15.264000px;}
._18_c00314{margin-left:-14.208000px;}
._1c_c00314{margin-left:-12.192000px;}
._2e_c00314{margin-left:-10.620000px;}
._1b_c00314{margin-left:-9.504000px;}
._26_c00314{margin-left:-7.488000px;}
._21_c00314{margin-left:-6.120000px;}
._25_c00314{margin-left:-4.800000px;}
._20_c00314{margin-left:-3.168000px;}
._14_c00314{margin-left:-1.668000px;}
._0_c00314{width:1.632000px;}
._3_c00314{width:2.880000px;}
._9_c00314{width:4.032000px;}
._b_c00314{width:5.664000px;}
._2_c00314{width:7.008000px;}
._7_c00314{width:8.256000px;}
._5_c00314{width:9.696000px;}
._6_c00314{width:10.848000px;}
._13_c00314{width:12.312000px;}
._31_c00314{width:13.440000px;}
._c_c00314{width:14.592000px;}
._29_c00314{width:15.636000px;}
._16_c00314{width:16.704000px;}
._24_c00314{width:17.976000px;}
._e_c00314{width:19.488000px;}
._11_c00314{width:21.600000px;}
._23_c00314{width:24.288000px;}
._a_c00314{width:25.920000px;}
._d_c00314{width:27.168000px;}
._2f_c00314{width:29.184000px;}
._15_c00314{width:30.216000px;}
._4_c00314{width:31.776000px;}
._34_c00314{width:33.912000px;}
._22_c00314{width:35.052000px;}
._19_c00314{width:36.192000px;}
._2d_c00314{width:37.212000px;}
._1d_c00314{width:38.256000px;}
._28_c00314{width:39.456000px;}
._12_c00314{width:40.872000px;}
._35_c00314{width:41.898000px;}
._2b_c00314{width:43.680000px;}
._10_c00314{width:45.312000px;}
._8_c00314{width:46.752000px;}
._2a_c00314{width:47.808000px;}
._2c_c00314{width:50.112000px;}
._1a_c00314{width:51.216000px;}
._f_c00314{width:52.224000px;}
._1_c00314{width:53.856000px;}
._27_c00314{width:55.920000px;}
._37_c00314{width:64.800000px;}
._30_c00314{width:127.260000px;}
._33_c00314{width:169.728000px;}
._32_c00314{width:817.656000px;}
._39_c00314{width:1932.564000px;}
.fc2_c00314{color:transparent;}
.fc1_c00314{color:rgb(128,128,128);}
.fc0_c00314{color:rgb(0,0,0);}
.fs4_c00314{font-size:48.000000px;}
.fs1_c00314{font-size:84.000000px;}
.fs0_c00314{font-size:96.000000px;}
.fs2_c00314{font-size:102.000000px;}
.fs3_c00314{font-size:105.000000px;}
.y0_c00314{bottom:0.000000px;}
.y26_c00314{bottom:3.105000px;}
.y25_c00314{bottom:7.228357px;}
.y24_c00314{bottom:67.230000px;}
.y23_c00314{bottom:100.980000px;}
.y22_c00314{bottom:135.780000px;}
.y21_c00314{bottom:169.830000px;}
.y20_c00314{bottom:203.880000px;}
.y1f_c00314{bottom:237.330000px;}
.y1e_c00314{bottom:271.680000px;}
.y1d_c00314{bottom:305.430000px;}
.y1c_c00314{bottom:339.630000px;}
.y1b_c00314{bottom:373.680000px;}
.y1a_c00314{bottom:406.380000px;}
.y19_c00314{bottom:439.530000px;}
.y18_c00314{bottom:473.280000px;}
.y17_c00314{bottom:507.330000px;}
.y16_c00314{bottom:540.780000px;}
.y15_c00314{bottom:574.080000px;}
.y14_c00314{bottom:606.930000px;}
.y13_c00314{bottom:640.980000px;}
.y12_c00314{bottom:674.280000px;}
.y11_c00314{bottom:708.030000px;}
.y10_c00314{bottom:741.180000px;}
.yf_c00314{bottom:774.930000px;}
.ye_c00314{bottom:807.630000px;}
.yd_c00314{bottom:841.080000px;}
.yc_c00314{bottom:874.230000px;}
.yb_c00314{bottom:907.530000px;}
.ya_c00314{bottom:940.980000px;}
.y9_c00314{bottom:974.130000px;}
.y8_c00314{bottom:1007.430000px;}
.y7_c00314{bottom:1041.180000px;}
.y6_c00314{bottom:1073.580000px;}
.y5_c00314{bottom:1107.030000px;}
.y4_c00314{bottom:1140.180000px;}
.y3_c00314{bottom:1173.480000px;}
.y2_c00314{bottom:1206.630000px;}
.y1_c00314{bottom:1240.080000px;}
.h3_c00314{height:13.200074px;}
.h4_c00314{height:43.804688px;}
.h1_c00314{height:121.546875px;}
.h2_c00314{height:132.941895px;}
.h0_c00314{height:1346.250000px;}
.w1_c00314{width:104.875500px;}
.w0_c00314{width:854.250000px;}
.x0_c00314{left:0.000000px;}
.x4_c00314{left:40.800000px;}
.x3_c00314{left:41.850000px;}
.x2_c00314{left:43.500000px;}
.x1_c00314{left:45.000000px;}
.x6_c00314{left:47.850000px;}
.x5_c00314{left:48.900000px;}
.x7_c00314{left:50.550000px;}
.x9_c00314{left:54.750000px;}
.xa_c00314{left:94.800000px;}
.x8_c00314{left:103.950000px;}
.xb_c00314{left:378.939240px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls1_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:10.666667pt;}
.ws0_c00314{word-spacing:-56.448000pt;}
.ws1_c00314{word-spacing:0.000000pt;}
._38_c00314{margin-left:-26.709333pt;}
._1f_c00314{margin-left:-23.040000pt;}
._17_c00314{margin-left:-18.005333pt;}
._1e_c00314{margin-left:-15.978667pt;}
._36_c00314{margin-left:-13.568000pt;}
._18_c00314{margin-left:-12.629333pt;}
._1c_c00314{margin-left:-10.837333pt;}
._2e_c00314{margin-left:-9.440000pt;}
._1b_c00314{margin-left:-8.448000pt;}
._26_c00314{margin-left:-6.656000pt;}
._21_c00314{margin-left:-5.440000pt;}
._25_c00314{margin-left:-4.266667pt;}
._20_c00314{margin-left:-2.816000pt;}
._14_c00314{margin-left:-1.482667pt;}
._0_c00314{width:1.450667pt;}
._3_c00314{width:2.560000pt;}
._9_c00314{width:3.584000pt;}
._b_c00314{width:5.034667pt;}
._2_c00314{width:6.229333pt;}
._7_c00314{width:7.338667pt;}
._5_c00314{width:8.618667pt;}
._6_c00314{width:9.642667pt;}
._13_c00314{width:10.944000pt;}
._31_c00314{width:11.946667pt;}
._c_c00314{width:12.970667pt;}
._29_c00314{width:13.898667pt;}
._16_c00314{width:14.848000pt;}
._24_c00314{width:15.978667pt;}
._e_c00314{width:17.322667pt;}
._11_c00314{width:19.200000pt;}
._23_c00314{width:21.589333pt;}
._a_c00314{width:23.040000pt;}
._d_c00314{width:24.149333pt;}
._2f_c00314{width:25.941333pt;}
._15_c00314{width:26.858667pt;}
._4_c00314{width:28.245333pt;}
._34_c00314{width:30.144000pt;}
._22_c00314{width:31.157333pt;}
._19_c00314{width:32.170667pt;}
._2d_c00314{width:33.077333pt;}
._1d_c00314{width:34.005333pt;}
._28_c00314{width:35.072000pt;}
._12_c00314{width:36.330667pt;}
._35_c00314{width:37.242667pt;}
._2b_c00314{width:38.826667pt;}
._10_c00314{width:40.277333pt;}
._8_c00314{width:41.557333pt;}
._2a_c00314{width:42.496000pt;}
._2c_c00314{width:44.544000pt;}
._1a_c00314{width:45.525333pt;}
._f_c00314{width:46.421333pt;}
._1_c00314{width:47.872000pt;}
._27_c00314{width:49.706667pt;}
._37_c00314{width:57.600000pt;}
._30_c00314{width:113.120000pt;}
._33_c00314{width:150.869333pt;}
._32_c00314{width:726.805333pt;}
._39_c00314{width:1717.834667pt;}
.fs4_c00314{font-size:42.666667pt;}
.fs1_c00314{font-size:74.666667pt;}
.fs0_c00314{font-size:85.333333pt;}
.fs2_c00314{font-size:90.666667pt;}
.fs3_c00314{font-size:93.333333pt;}
.y0_c00314{bottom:0.000000pt;}
.y26_c00314{bottom:2.760000pt;}
.y25_c00314{bottom:6.425206pt;}
.y24_c00314{bottom:59.760000pt;}
.y23_c00314{bottom:89.760000pt;}
.y22_c00314{bottom:120.693333pt;}
.y21_c00314{bottom:150.960000pt;}
.y20_c00314{bottom:181.226667pt;}
.y1f_c00314{bottom:210.960000pt;}
.y1e_c00314{bottom:241.493333pt;}
.y1d_c00314{bottom:271.493333pt;}
.y1c_c00314{bottom:301.893333pt;}
.y1b_c00314{bottom:332.160000pt;}
.y1a_c00314{bottom:361.226667pt;}
.y19_c00314{bottom:390.693333pt;}
.y18_c00314{bottom:420.693333pt;}
.y17_c00314{bottom:450.960000pt;}
.y16_c00314{bottom:480.693333pt;}
.y15_c00314{bottom:510.293333pt;}
.y14_c00314{bottom:539.493333pt;}
.y13_c00314{bottom:569.760000pt;}
.y12_c00314{bottom:599.360000pt;}
.y11_c00314{bottom:629.360000pt;}
.y10_c00314{bottom:658.826667pt;}
.yf_c00314{bottom:688.826667pt;}
.ye_c00314{bottom:717.893333pt;}
.yd_c00314{bottom:747.626667pt;}
.yc_c00314{bottom:777.093333pt;}
.yb_c00314{bottom:806.693333pt;}
.ya_c00314{bottom:836.426667pt;}
.y9_c00314{bottom:865.893333pt;}
.y8_c00314{bottom:895.493333pt;}
.y7_c00314{bottom:925.493333pt;}
.y6_c00314{bottom:954.293333pt;}
.y5_c00314{bottom:984.026667pt;}
.y4_c00314{bottom:1013.493333pt;}
.y3_c00314{bottom:1043.093333pt;}
.y2_c00314{bottom:1072.560000pt;}
.y1_c00314{bottom:1102.293333pt;}
.h3_c00314{height:11.733399pt;}
.h4_c00314{height:38.937500pt;}
.h1_c00314{height:108.041667pt;}
.h2_c00314{height:118.170573pt;}
.h0_c00314{height:1196.666667pt;}
.w1_c00314{width:93.222667pt;}
.w0_c00314{width:759.333333pt;}
.x0_c00314{left:0.000000pt;}
.x4_c00314{left:36.266667pt;}
.x3_c00314{left:37.200000pt;}
.x2_c00314{left:38.666667pt;}
.x1_c00314{left:40.000000pt;}
.x6_c00314{left:42.533333pt;}
.x5_c00314{left:43.466667pt;}
.x7_c00314{left:44.933333pt;}
.x9_c00314{left:48.666667pt;}
.xa_c00314{left:84.266667pt;}
.x8_c00314{left:92.400000pt;}
.xb_c00314{left:336.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa5e083d346193fdec3f8704.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_dadde3fb774a802d81234ae4.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_eb4947f7444ffd905f1b50db.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;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_c00315;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls4_c00315{letter-spacing:-6.000000px;}
.ls3_c00315{letter-spacing:-3.000000px;}
.ls2_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:6.252000px;}
.ls1_c00315{letter-spacing:24.600000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-20.244000px;}
.ws1_c00315{word-spacing:-1.428000px;}
.ws2_c00315{word-spacing:0.000000px;}
._3a_c00315{margin-left:-76.044000px;}
._30_c00315{margin-left:-46.656000px;}
._34_c00315{margin-left:-31.200000px;}
._33_c00315{margin-left:-28.272000px;}
._2e_c00315{margin-left:-21.984000px;}
._16_c00315{margin-left:-16.728000px;}
._3d_c00315{margin-left:-14.184000px;}
._13_c00315{margin-left:-12.480000px;}
._1_c00315{margin-left:-10.176000px;}
._40_c00315{margin-left:-8.856000px;}
._32_c00315{margin-left:-7.776000px;}
._a_c00315{margin-left:-5.736000px;}
._17_c00315{margin-left:-4.728000px;}
._0_c00315{margin-left:-3.264000px;}
._9_c00315{margin-left:-1.848000px;}
._7_c00315{width:1.248000px;}
._c_c00315{width:3.240000px;}
._4_c00315{width:4.320000px;}
._5_c00315{width:5.592000px;}
._b_c00315{width:7.152000px;}
._3_c00315{width:8.640000px;}
._15_c00315{width:9.984000px;}
._d_c00315{width:11.424000px;}
._e_c00315{width:12.528000px;}
._12_c00315{width:14.496000px;}
._24_c00315{width:15.504000px;}
._6_c00315{width:16.512000px;}
._1c_c00315{width:17.688000px;}
._f_c00315{width:18.888000px;}
._22_c00315{width:19.992000px;}
._2_c00315{width:21.312000px;}
._3b_c00315{width:24.480000px;}
._20_c00315{width:26.400000px;}
._1a_c00315{width:28.128000px;}
._27_c00315{width:29.448000px;}
._21_c00315{width:30.528000px;}
._14_c00315{width:31.728000px;}
._42_c00315{width:32.904000px;}
._10_c00315{width:34.008000px;}
._3f_c00315{width:35.208000px;}
._8_c00315{width:36.288000px;}
._1b_c00315{width:38.256000px;}
._11_c00315{width:39.456000px;}
._1e_c00315{width:40.800000px;}
._28_c00315{width:42.888000px;}
._2c_c00315{width:45.000000px;}
._23_c00315{width:46.920000px;}
._25_c00315{width:49.152000px;}
._2a_c00315{width:51.048000px;}
._1d_c00315{width:53.232000px;}
._26_c00315{width:54.360000px;}
._43_c00315{width:58.248000px;}
._1f_c00315{width:63.312000px;}
._2b_c00315{width:69.888000px;}
._19_c00315{width:88.992000px;}
._35_c00315{width:90.240000px;}
._41_c00315{width:92.832000px;}
._2f_c00315{width:102.240000px;}
._36_c00315{width:103.968000px;}
._2d_c00315{width:112.248000px;}
._29_c00315{width:115.032000px;}
._31_c00315{width:116.352000px;}
._3c_c00315{width:155.544000px;}
._38_c00315{width:187.560000px;}
._37_c00315{width:283.344000px;}
._18_c00315{width:540.480000px;}
._3e_c00315{width:637.728000px;}
._39_c00315{width:651.144000px;}
._44_c00315{width:1932.144000px;}
.fc2_c00315{color:transparent;}
.fc1_c00315{color:rgb(128,128,128);}
.fc0_c00315{color:rgb(0,0,0);}
.fs5_c00315{font-size:48.000000px;}
.fs3_c00315{font-size:72.000000px;}
.fs1_c00315{font-size:84.000000px;}
.fs0_c00315{font-size:96.000000px;}
.fs4_c00315{font-size:102.000000px;}
.fs2_c00315{font-size:144.000000px;}
.y0_c00315{bottom:0.000000px;}
.y23_c00315{bottom:3.105000px;}
.y22_c00315{bottom:7.228357px;}
.y21_c00315{bottom:81.330000px;}
.y20_c00315{bottom:113.130000px;}
.y1f_c00315{bottom:147.930000px;}
.y1e_c00315{bottom:181.530000px;}
.y1d_c00315{bottom:215.730000px;}
.y1c_c00315{bottom:249.480000px;}
.y1b_c00315{bottom:283.530000px;}
.y1a_c00315{bottom:317.580000px;}
.y19_c00315{bottom:351.780000px;}
.y18_c00315{bottom:385.380000px;}
.y17_c00315{bottom:419.580000px;}
.y16_c00315{bottom:452.280000px;}
.y15_c00315{bottom:486.630000px;}
.y14_c00315{bottom:517.830000px;}
.y13_c00315{bottom:557.580000px;}
.y12_c00315{bottom:605.430000px;}
.y11_c00315{bottom:679.830000px;}
.y10_c00315{bottom:758.130000px;}
.yf_c00315{bottom:791.880000px;}
.ye_c00315{bottom:825.930000px;}
.yd_c00315{bottom:859.230000px;}
.yc_c00315{bottom:892.980000px;}
.yb_c00315{bottom:925.830000px;}
.ya_c00315{bottom:958.980000px;}
.y9_c00315{bottom:991.980000px;}
.y8_c00315{bottom:1024.980000px;}
.y7_c00315{bottom:1058.730000px;}
.y6_c00315{bottom:1091.580000px;}
.y5_c00315{bottom:1125.630000px;}
.y4_c00315{bottom:1158.180000px;}
.y3_c00315{bottom:1191.330000px;}
.y2_c00315{bottom:1224.480000px;}
.y1_c00315{bottom:1257.480000px;}
.h5_c00315{height:13.200074px;}
.h6_c00315{height:43.804688px;}
.h4_c00315{height:75.456000px;}
.h2_c00315{height:121.546875px;}
.h3_c00315{height:182.320312px;}
.h0_c00315{height:1382.700000px;}
.h1_c00315{height:1383.000000px;}
.w2_c00315{width:104.875500px;}
.w0_c00315{width:863.175000px;}
.w1_c00315{width:863.250000px;}
.x0_c00315{left:0.000000px;}
.x3_c00315{left:157.500000px;}
.x6_c00315{left:170.400000px;}
.xa_c00315{left:262.200000px;}
.x9_c00315{left:263.850000px;}
.x7_c00315{left:269.250000px;}
.x8_c00315{left:270.300000px;}
.x1_c00315{left:271.350000px;}
.x2_c00315{left:273.000000px;}
.x5_c00315{left:287.550000px;}
.xb_c00315{left:383.401749px;}
.x4_c00315{left:400.200000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls4_c00315{letter-spacing:-5.333333pt;}
.ls3_c00315{letter-spacing:-2.666667pt;}
.ls2_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:5.557333pt;}
.ls1_c00315{letter-spacing:21.866667pt;}
.ws0_c00315{word-spacing:-17.994667pt;}
.ws1_c00315{word-spacing:-1.269333pt;}
.ws2_c00315{word-spacing:0.000000pt;}
._3a_c00315{margin-left:-67.594667pt;}
._30_c00315{margin-left:-41.472000pt;}
._34_c00315{margin-left:-27.733333pt;}
._33_c00315{margin-left:-25.130667pt;}
._2e_c00315{margin-left:-19.541333pt;}
._16_c00315{margin-left:-14.869333pt;}
._3d_c00315{margin-left:-12.608000pt;}
._13_c00315{margin-left:-11.093333pt;}
._1_c00315{margin-left:-9.045333pt;}
._40_c00315{margin-left:-7.872000pt;}
._32_c00315{margin-left:-6.912000pt;}
._a_c00315{margin-left:-5.098667pt;}
._17_c00315{margin-left:-4.202667pt;}
._0_c00315{margin-left:-2.901333pt;}
._9_c00315{margin-left:-1.642667pt;}
._7_c00315{width:1.109333pt;}
._c_c00315{width:2.880000pt;}
._4_c00315{width:3.840000pt;}
._5_c00315{width:4.970667pt;}
._b_c00315{width:6.357333pt;}
._3_c00315{width:7.680000pt;}
._15_c00315{width:8.874667pt;}
._d_c00315{width:10.154667pt;}
._e_c00315{width:11.136000pt;}
._12_c00315{width:12.885333pt;}
._24_c00315{width:13.781333pt;}
._6_c00315{width:14.677333pt;}
._1c_c00315{width:15.722667pt;}
._f_c00315{width:16.789333pt;}
._22_c00315{width:17.770667pt;}
._2_c00315{width:18.944000pt;}
._3b_c00315{width:21.760000pt;}
._20_c00315{width:23.466667pt;}
._1a_c00315{width:25.002667pt;}
._27_c00315{width:26.176000pt;}
._21_c00315{width:27.136000pt;}
._14_c00315{width:28.202667pt;}
._42_c00315{width:29.248000pt;}
._10_c00315{width:30.229333pt;}
._3f_c00315{width:31.296000pt;}
._8_c00315{width:32.256000pt;}
._1b_c00315{width:34.005333pt;}
._11_c00315{width:35.072000pt;}
._1e_c00315{width:36.266667pt;}
._28_c00315{width:38.122667pt;}
._2c_c00315{width:40.000000pt;}
._23_c00315{width:41.706667pt;}
._25_c00315{width:43.690667pt;}
._2a_c00315{width:45.376000pt;}
._1d_c00315{width:47.317333pt;}
._26_c00315{width:48.320000pt;}
._43_c00315{width:51.776000pt;}
._1f_c00315{width:56.277333pt;}
._2b_c00315{width:62.122667pt;}
._19_c00315{width:79.104000pt;}
._35_c00315{width:80.213333pt;}
._41_c00315{width:82.517333pt;}
._2f_c00315{width:90.880000pt;}
._36_c00315{width:92.416000pt;}
._2d_c00315{width:99.776000pt;}
._29_c00315{width:102.250667pt;}
._31_c00315{width:103.424000pt;}
._3c_c00315{width:138.261333pt;}
._38_c00315{width:166.720000pt;}
._37_c00315{width:251.861333pt;}
._18_c00315{width:480.426667pt;}
._3e_c00315{width:566.869333pt;}
._39_c00315{width:578.794667pt;}
._44_c00315{width:1717.461333pt;}
.fs5_c00315{font-size:42.666667pt;}
.fs3_c00315{font-size:64.000000pt;}
.fs1_c00315{font-size:74.666667pt;}
.fs0_c00315{font-size:85.333333pt;}
.fs4_c00315{font-size:90.666667pt;}
.fs2_c00315{font-size:128.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y23_c00315{bottom:2.760000pt;}
.y22_c00315{bottom:6.425206pt;}
.y21_c00315{bottom:72.293333pt;}
.y20_c00315{bottom:100.560000pt;}
.y1f_c00315{bottom:131.493333pt;}
.y1e_c00315{bottom:161.360000pt;}
.y1d_c00315{bottom:191.760000pt;}
.y1c_c00315{bottom:221.760000pt;}
.y1b_c00315{bottom:252.026667pt;}
.y1a_c00315{bottom:282.293333pt;}
.y19_c00315{bottom:312.693333pt;}
.y18_c00315{bottom:342.560000pt;}
.y17_c00315{bottom:372.960000pt;}
.y16_c00315{bottom:402.026667pt;}
.y15_c00315{bottom:432.560000pt;}
.y14_c00315{bottom:460.293333pt;}
.y13_c00315{bottom:495.626667pt;}
.y12_c00315{bottom:538.160000pt;}
.y11_c00315{bottom:604.293333pt;}
.y10_c00315{bottom:673.893333pt;}
.yf_c00315{bottom:703.893333pt;}
.ye_c00315{bottom:734.160000pt;}
.yd_c00315{bottom:763.760000pt;}
.yc_c00315{bottom:793.760000pt;}
.yb_c00315{bottom:822.960000pt;}
.ya_c00315{bottom:852.426667pt;}
.y9_c00315{bottom:881.760000pt;}
.y8_c00315{bottom:911.093333pt;}
.y7_c00315{bottom:941.093333pt;}
.y6_c00315{bottom:970.293333pt;}
.y5_c00315{bottom:1000.560000pt;}
.y4_c00315{bottom:1029.493333pt;}
.y3_c00315{bottom:1058.960000pt;}
.y2_c00315{bottom:1088.426667pt;}
.y1_c00315{bottom:1117.760000pt;}
.h5_c00315{height:11.733399pt;}
.h6_c00315{height:38.937500pt;}
.h4_c00315{height:67.072000pt;}
.h2_c00315{height:108.041667pt;}
.h3_c00315{height:162.062500pt;}
.h0_c00315{height:1229.066667pt;}
.h1_c00315{height:1229.333333pt;}
.w2_c00315{width:93.222667pt;}
.w0_c00315{width:767.266667pt;}
.w1_c00315{width:767.333333pt;}
.x0_c00315{left:0.000000pt;}
.x3_c00315{left:140.000000pt;}
.x6_c00315{left:151.466667pt;}
.xa_c00315{left:233.066667pt;}
.x9_c00315{left:234.533333pt;}
.x7_c00315{left:239.333333pt;}
.x8_c00315{left:240.266667pt;}
.x1_c00315{left:241.200000pt;}
.x2_c00315{left:242.666667pt;}
.x5_c00315{left:255.600000pt;}
.xb_c00315{left:340.801554pt;}
.x4_c00315{left:355.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fdb8f566736cfd335e01ea0e.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_9ca6311b449cbbfd10ac8b5c.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_1b86eeec0fdb8e492bf8323e.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls2_c00316{letter-spacing:-6.000000px;}
.ls1_c00316{letter-spacing:-3.000000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.ls3_c00316{letter-spacing:15.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:0.000000px;}
._20_c00316{margin-left:-83.808000px;}
._1e_c00316{margin-left:-34.752000px;}
._19_c00316{margin-left:-28.416000px;}
._35_c00316{margin-left:-23.442000px;}
._1c_c00316{margin-left:-18.816000px;}
._13_c00316{margin-left:-16.704000px;}
._1d_c00316{margin-left:-14.976000px;}
._22_c00316{margin-left:-13.152000px;}
._34_c00316{margin-left:-12.096000px;}
._14_c00316{margin-left:-10.080000px;}
._8_c00316{margin-left:-8.832000px;}
._28_c00316{margin-left:-7.680000px;}
._9_c00316{margin-left:-6.432000px;}
._7_c00316{margin-left:-4.608000px;}
._11_c00316{margin-left:-3.552000px;}
._12_c00316{margin-left:-1.824000px;}
._c_c00316{width:1.056000px;}
._5_c00316{width:2.208000px;}
._4_c00316{width:4.128000px;}
._0_c00316{width:5.952000px;}
._1_c00316{width:7.968000px;}
._6_c00316{width:9.888000px;}
._2_c00316{width:11.328000px;}
._a_c00316{width:13.056000px;}
._29_c00316{width:14.130000px;}
._16_c00316{width:15.264000px;}
._3_c00316{width:16.704000px;}
._b_c00316{width:17.856000px;}
._15_c00316{width:19.776000px;}
._24_c00316{width:21.408000px;}
._2f_c00316{width:23.268000px;}
._18_c00316{width:24.288000px;}
._d_c00316{width:25.536000px;}
._1b_c00316{width:27.456000px;}
._e_c00316{width:29.280000px;}
._17_c00316{width:31.776000px;}
._27_c00316{width:33.024000px;}
._f_c00316{width:34.176000px;}
._36_c00316{width:36.768000px;}
._1a_c00316{width:38.304000px;}
._2e_c00316{width:40.110000px;}
._2d_c00316{width:41.856000px;}
._33_c00316{width:43.104000px;}
._10_c00316{width:44.736000px;}
._37_c00316{width:46.464000px;}
._25_c00316{width:49.056000px;}
._38_c00316{width:50.976000px;}
._39_c00316{width:52.014000px;}
._1f_c00316{width:53.184000px;}
._26_c00316{width:55.200000px;}
._2b_c00316{width:58.368000px;}
._2c_c00316{width:71.136000px;}
._30_c00316{width:76.716000px;}
._23_c00316{width:80.064000px;}
._31_c00316{width:95.904000px;}
._32_c00316{width:174.336000px;}
._21_c00316{width:371.904000px;}
._2a_c00316{width:462.798000px;}
._3a_c00316{width:950.772000px;}
.fc2_c00316{color:transparent;}
.fc1_c00316{color:rgb(128,128,128);}
.fc0_c00316{color:rgb(0,0,0);}
.fs5_c00316{font-size:48.000000px;}
.fs2_c00316{font-size:84.000000px;}
.fs4_c00316{font-size:87.000000px;}
.fs0_c00316{font-size:96.000000px;}
.fs3_c00316{font-size:102.000000px;}
.fs1_c00316{font-size:114.000000px;}
.y0_c00316{bottom:0.000000px;}
.y27_c00316{bottom:3.105000px;}
.y26_c00316{bottom:7.228369px;}
.y24_c00316{bottom:95.520000px;}
.y23_c00316{bottom:129.570000px;}
.y22_c00316{bottom:163.920000px;}
.y21_c00316{bottom:198.720000px;}
.y20_c00316{bottom:232.470000px;}
.y1f_c00316{bottom:266.520000px;}
.y1e_c00316{bottom:300.420000px;}
.y1d_c00316{bottom:335.370000px;}
.y1c_c00316{bottom:368.520000px;}
.y1b_c00316{bottom:401.520000px;}
.y1a_c00316{bottom:434.370000px;}
.y19_c00316{bottom:468.420000px;}
.y18_c00316{bottom:501.870000px;}
.y17_c00316{bottom:535.620000px;}
.y16_c00316{bottom:568.920000px;}
.y15_c00316{bottom:603.720000px;}
.y14_c00316{bottom:636.420000px;}
.y13_c00316{bottom:668.220000px;}
.y12_c00316{bottom:703.020000px;}
.y11_c00316{bottom:736.020000px;}
.y10_c00316{bottom:770.220000px;}
.yf_c00316{bottom:803.220000px;}
.y25_c00316{bottom:818.370000px;}
.ye_c00316{bottom:835.920000px;}
.yd_c00316{bottom:868.770000px;}
.yc_c00316{bottom:902.820000px;}
.yb_c00316{bottom:936.120000px;}
.ya_c00316{bottom:968.970000px;}
.y9_c00316{bottom:1002.270000px;}
.y8_c00316{bottom:1036.170000px;}
.y7_c00316{bottom:1069.170000px;}
.y6_c00316{bottom:1102.620000px;}
.y5_c00316{bottom:1135.320000px;}
.y4_c00316{bottom:1168.470000px;}
.y3_c00316{bottom:1201.170000px;}
.y2_c00316{bottom:1233.870000px;}
.y1_c00316{bottom:1267.920000px;}
.h6_c00316{height:13.200073px;}
.h7_c00316{height:43.804688px;}
.h5_c00316{height:110.151855px;}
.h4_c00316{height:120.067383px;}
.h2_c00316{height:121.546875px;}
.h3_c00316{height:129.143555px;}
.h0_c00316{height:1383.450000px;}
.h1_c00316{height:1383.750000px;}
.w2_c00316{width:104.875500px;}
.w0_c00316{width:878.025000px;}
.w1_c00316{width:878.250000px;}
.x0_c00316{left:0.000000px;}
.x8_c00316{left:66.600000px;}
.x6_c00316{left:67.800000px;}
.x7_c00316{left:68.850000px;}
.x5_c00316{left:69.900000px;}
.x4_c00316{left:70.950000px;}
.x3_c00316{left:72.000000px;}
.x2_c00316{left:73.200000px;}
.xa_c00316{left:74.250000px;}
.x1_c00316{left:75.300000px;}
.x9_c00316{left:82.800000px;}
.xb_c00316{left:342.600000px;}
.xd_c00316{left:390.826721px;}
.xc_c00316{left:745.800000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls2_c00316{letter-spacing:-5.333333pt;}
.ls1_c00316{letter-spacing:-2.666667pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ls3_c00316{letter-spacing:13.333333pt;}
.ws0_c00316{word-spacing:0.000000pt;}
._20_c00316{margin-left:-74.496000pt;}
._1e_c00316{margin-left:-30.890667pt;}
._19_c00316{margin-left:-25.258667pt;}
._35_c00316{margin-left:-20.837333pt;}
._1c_c00316{margin-left:-16.725333pt;}
._13_c00316{margin-left:-14.848000pt;}
._1d_c00316{margin-left:-13.312000pt;}
._22_c00316{margin-left:-11.690667pt;}
._34_c00316{margin-left:-10.752000pt;}
._14_c00316{margin-left:-8.960000pt;}
._8_c00316{margin-left:-7.850667pt;}
._28_c00316{margin-left:-6.826667pt;}
._9_c00316{margin-left:-5.717333pt;}
._7_c00316{margin-left:-4.096000pt;}
._11_c00316{margin-left:-3.157333pt;}
._12_c00316{margin-left:-1.621333pt;}
._c_c00316{width:0.938667pt;}
._5_c00316{width:1.962667pt;}
._4_c00316{width:3.669333pt;}
._0_c00316{width:5.290667pt;}
._1_c00316{width:7.082667pt;}
._6_c00316{width:8.789333pt;}
._2_c00316{width:10.069333pt;}
._a_c00316{width:11.605333pt;}
._29_c00316{width:12.560000pt;}
._16_c00316{width:13.568000pt;}
._3_c00316{width:14.848000pt;}
._b_c00316{width:15.872000pt;}
._15_c00316{width:17.578667pt;}
._24_c00316{width:19.029333pt;}
._2f_c00316{width:20.682667pt;}
._18_c00316{width:21.589333pt;}
._d_c00316{width:22.698667pt;}
._1b_c00316{width:24.405333pt;}
._e_c00316{width:26.026667pt;}
._17_c00316{width:28.245333pt;}
._27_c00316{width:29.354667pt;}
._f_c00316{width:30.378667pt;}
._36_c00316{width:32.682667pt;}
._1a_c00316{width:34.048000pt;}
._2e_c00316{width:35.653333pt;}
._2d_c00316{width:37.205333pt;}
._33_c00316{width:38.314667pt;}
._10_c00316{width:39.765333pt;}
._37_c00316{width:41.301333pt;}
._25_c00316{width:43.605333pt;}
._38_c00316{width:45.312000pt;}
._39_c00316{width:46.234667pt;}
._1f_c00316{width:47.274667pt;}
._26_c00316{width:49.066667pt;}
._2b_c00316{width:51.882667pt;}
._2c_c00316{width:63.232000pt;}
._30_c00316{width:68.192000pt;}
._23_c00316{width:71.168000pt;}
._31_c00316{width:85.248000pt;}
._32_c00316{width:154.965333pt;}
._21_c00316{width:330.581333pt;}
._2a_c00316{width:411.376000pt;}
._3a_c00316{width:845.130667pt;}
.fs5_c00316{font-size:42.666667pt;}
.fs2_c00316{font-size:74.666667pt;}
.fs4_c00316{font-size:77.333333pt;}
.fs0_c00316{font-size:85.333333pt;}
.fs3_c00316{font-size:90.666667pt;}
.fs1_c00316{font-size:101.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y27_c00316{bottom:2.760000pt;}
.y26_c00316{bottom:6.425217pt;}
.y24_c00316{bottom:84.906667pt;}
.y23_c00316{bottom:115.173333pt;}
.y22_c00316{bottom:145.706667pt;}
.y21_c00316{bottom:176.640000pt;}
.y20_c00316{bottom:206.640000pt;}
.y1f_c00316{bottom:236.906667pt;}
.y1e_c00316{bottom:267.040000pt;}
.y1d_c00316{bottom:298.106667pt;}
.y1c_c00316{bottom:327.573333pt;}
.y1b_c00316{bottom:356.906667pt;}
.y1a_c00316{bottom:386.106667pt;}
.y19_c00316{bottom:416.373333pt;}
.y18_c00316{bottom:446.106667pt;}
.y17_c00316{bottom:476.106667pt;}
.y16_c00316{bottom:505.706667pt;}
.y15_c00316{bottom:536.640000pt;}
.y14_c00316{bottom:565.706667pt;}
.y13_c00316{bottom:593.973333pt;}
.y12_c00316{bottom:624.906667pt;}
.y11_c00316{bottom:654.240000pt;}
.y10_c00316{bottom:684.640000pt;}
.yf_c00316{bottom:713.973333pt;}
.y25_c00316{bottom:727.440000pt;}
.ye_c00316{bottom:743.040000pt;}
.yd_c00316{bottom:772.240000pt;}
.yc_c00316{bottom:802.506667pt;}
.yb_c00316{bottom:832.106667pt;}
.ya_c00316{bottom:861.306667pt;}
.y9_c00316{bottom:890.906667pt;}
.y8_c00316{bottom:921.040000pt;}
.y7_c00316{bottom:950.373333pt;}
.y6_c00316{bottom:980.106667pt;}
.y5_c00316{bottom:1009.173333pt;}
.y4_c00316{bottom:1038.640000pt;}
.y3_c00316{bottom:1067.706667pt;}
.y2_c00316{bottom:1096.773333pt;}
.y1_c00316{bottom:1127.040000pt;}
.h6_c00316{height:11.733399pt;}
.h7_c00316{height:38.937500pt;}
.h5_c00316{height:97.912760pt;}
.h4_c00316{height:106.726562pt;}
.h2_c00316{height:108.041667pt;}
.h3_c00316{height:114.794271pt;}
.h0_c00316{height:1229.733333pt;}
.h1_c00316{height:1230.000000pt;}
.w2_c00316{width:93.222667pt;}
.w0_c00316{width:780.466667pt;}
.w1_c00316{width:780.666667pt;}
.x0_c00316{left:0.000000pt;}
.x8_c00316{left:59.200000pt;}
.x6_c00316{left:60.266667pt;}
.x7_c00316{left:61.200000pt;}
.x5_c00316{left:62.133333pt;}
.x4_c00316{left:63.066667pt;}
.x3_c00316{left:64.000000pt;}
.x2_c00316{left:65.066667pt;}
.xa_c00316{left:66.000000pt;}
.x1_c00316{left:66.933333pt;}
.x9_c00316{left:73.600000pt;}
.xb_c00316{left:304.533333pt;}
.xd_c00316{left:347.401530pt;}
.xc_c00316{left:662.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_57ad80535a9bdb936020e19e.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_39b8580573750aefe2834372.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_8ea60fbcb9c80b46f9edac93.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_b74c4d9773538664148991a9.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls3_c00317{letter-spacing:0.000000px;}
.ls2_c00317{letter-spacing:3.000000px;}
.ls1_c00317{letter-spacing:3.852000px;}
.ls0_c00317{letter-spacing:37.500000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:-51.000000px;}
.ws1_c00317{word-spacing:-48.000000px;}
.ws2_c00317{word-spacing:0.000000px;}
._3b_c00317{margin-left:-81.888000px;}
._2d_c00317{margin-left:-21.600000px;}
._24_c00317{margin-left:-17.664000px;}
._23_c00317{margin-left:-16.224000px;}
._33_c00317{margin-left:-14.592000px;}
._9_c00317{margin-left:-12.960000px;}
._7_c00317{margin-left:-9.408000px;}
._5_c00317{margin-left:-7.872000px;}
._18_c00317{margin-left:-5.952000px;}
._4_c00317{margin-left:-4.896000px;}
._6_c00317{margin-left:-3.072000px;}
._10_c00317{margin-left:-1.152000px;}
._b_c00317{width:1.920000px;}
._13_c00317{width:2.976000px;}
._2_c00317{width:4.032000px;}
._15_c00317{width:5.184000px;}
._1_c00317{width:6.240000px;}
._d_c00317{width:7.392000px;}
._20_c00317{width:8.640000px;}
._e_c00317{width:9.984000px;}
._22_c00317{width:11.616000px;}
._1c_c00317{width:12.672000px;}
._1b_c00317{width:14.208000px;}
._f_c00317{width:15.264000px;}
._17_c00317{width:17.280000px;}
._21_c00317{width:19.680000px;}
._c_c00317{width:20.832000px;}
._25_c00317{width:21.984000px;}
._a_c00317{width:25.152000px;}
._14_c00317{width:26.976000px;}
._34_c00317{width:28.128000px;}
._0_c00317{width:29.664000px;}
._1d_c00317{width:31.008000px;}
._11_c00317{width:32.064000px;}
._19_c00317{width:34.080000px;}
._2c_c00317{width:35.136000px;}
._16_c00317{width:36.480000px;}
._1a_c00317{width:38.400000px;}
._2f_c00317{width:39.456000px;}
._3_c00317{width:40.704000px;}
._2a_c00317{width:43.296000px;}
._1f_c00317{width:45.408000px;}
._28_c00317{width:47.520000px;}
._1e_c00317{width:49.536000px;}
._29_c00317{width:52.224000px;}
._36_c00317{width:54.624000px;}
._30_c00317{width:55.872000px;}
._3a_c00317{width:58.560000px;}
._32_c00317{width:64.224000px;}
._39_c00317{width:65.376000px;}
._38_c00317{width:66.720000px;}
._37_c00317{width:69.600000px;}
._31_c00317{width:73.344000px;}
._26_c00317{width:75.840000px;}
._35_c00317{width:78.144000px;}
._8_c00317{width:81.216000px;}
._27_c00317{width:84.672000px;}
._2e_c00317{width:90.240000px;}
._2b_c00317{width:175.200000px;}
._12_c00317{width:368.832000px;}
.fc2_c00317{color:transparent;}
.fc1_c00317{color:rgb(128,128,128);}
.fc0_c00317{color:rgb(0,0,0);}
.fs4_c00317{font-size:48.000000px;}
.fs0_c00317{font-size:84.000000px;}
.fs3_c00317{font-size:90.000000px;}
.fs1_c00317{font-size:96.000000px;}
.fs2_c00317{font-size:102.000000px;}
.y0_c00317{bottom:0.000000px;}
.y25_c00317{bottom:3.105000px;}
.y24_c00317{bottom:7.228355px;}
.y23_c00317{bottom:104.835000px;}
.y22_c00317{bottom:139.035000px;}
.y21_c00317{bottom:174.135000px;}
.y20_c00317{bottom:208.185000px;}
.y1f_c00317{bottom:242.235000px;}
.y1e_c00317{bottom:275.685000px;}
.y1d_c00317{bottom:310.035000px;}
.y1c_c00317{bottom:344.235000px;}
.y1b_c00317{bottom:377.685000px;}
.y1a_c00317{bottom:411.735000px;}
.y19_c00317{bottom:445.185000px;}
.y18_c00317{bottom:478.935000px;}
.y17_c00317{bottom:512.985000px;}
.y16_c00317{bottom:546.435000px;}
.y15_c00317{bottom:581.535000px;}
.y14_c00317{bottom:613.785000px;}
.y13_c00317{bottom:647.985000px;}
.y12_c00317{bottom:681.435000px;}
.y11_c00317{bottom:715.185000px;}
.y10_c00317{bottom:748.785000px;}
.yf_c00317{bottom:782.535000px;}
.ye_c00317{bottom:813.585000px;}
.yd_c00317{bottom:849.435000px;}
.yc_c00317{bottom:883.185000px;}
.yb_c00317{bottom:916.335000px;}
.ya_c00317{bottom:949.335000px;}
.y9_c00317{bottom:982.335000px;}
.y8_c00317{bottom:1015.185000px;}
.y7_c00317{bottom:1048.635000px;}
.y6_c00317{bottom:1081.935000px;}
.y5_c00317{bottom:1115.385000px;}
.y4_c00317{bottom:1148.535000px;}
.y3_c00317{bottom:1181.835000px;}
.y2_c00317{bottom:1215.285000px;}
.y1_c00317{bottom:1248.285000px;}
.h3_c00317{height:13.200074px;}
.h4_c00317{height:43.804688px;}
.h2_c00317{height:121.546875px;}
.h0_c00317{height:1337.025000px;}
.h1_c00317{height:1337.250000px;}
.w2_c00317{width:104.875500px;}
.w1_c00317{width:834.000000px;}
.w0_c00317{width:834.300000px;}
.x0_c00317{left:0.000000px;}
.x8_c00317{left:141.150000px;}
.x7_c00317{left:166.050000px;}
.xb_c00317{left:233.550000px;}
.xa_c00317{left:237.300000px;}
.x1_c00317{left:239.400000px;}
.x2_c00317{left:240.600000px;}
.x4_c00317{left:241.650000px;}
.x3_c00317{left:242.700000px;}
.x5_c00317{left:244.350000px;}
.x9_c00317{left:246.000000px;}
.xc_c00317{left:247.050000px;}
.x6_c00317{left:294.600000px;}
.xd_c00317{left:368.964249px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls3_c00317{letter-spacing:0.000000pt;}
.ls2_c00317{letter-spacing:2.666667pt;}
.ls1_c00317{letter-spacing:3.424000pt;}
.ls0_c00317{letter-spacing:33.333333pt;}
.ws0_c00317{word-spacing:-45.333333pt;}
.ws1_c00317{word-spacing:-42.666667pt;}
.ws2_c00317{word-spacing:0.000000pt;}
._3b_c00317{margin-left:-72.789333pt;}
._2d_c00317{margin-left:-19.200000pt;}
._24_c00317{margin-left:-15.701333pt;}
._23_c00317{margin-left:-14.421333pt;}
._33_c00317{margin-left:-12.970667pt;}
._9_c00317{margin-left:-11.520000pt;}
._7_c00317{margin-left:-8.362667pt;}
._5_c00317{margin-left:-6.997333pt;}
._18_c00317{margin-left:-5.290667pt;}
._4_c00317{margin-left:-4.352000pt;}
._6_c00317{margin-left:-2.730667pt;}
._10_c00317{margin-left:-1.024000pt;}
._b_c00317{width:1.706667pt;}
._13_c00317{width:2.645333pt;}
._2_c00317{width:3.584000pt;}
._15_c00317{width:4.608000pt;}
._1_c00317{width:5.546667pt;}
._d_c00317{width:6.570667pt;}
._20_c00317{width:7.680000pt;}
._e_c00317{width:8.874667pt;}
._22_c00317{width:10.325333pt;}
._1c_c00317{width:11.264000pt;}
._1b_c00317{width:12.629333pt;}
._f_c00317{width:13.568000pt;}
._17_c00317{width:15.360000pt;}
._21_c00317{width:17.493333pt;}
._c_c00317{width:18.517333pt;}
._25_c00317{width:19.541333pt;}
._a_c00317{width:22.357333pt;}
._14_c00317{width:23.978667pt;}
._34_c00317{width:25.002667pt;}
._0_c00317{width:26.368000pt;}
._1d_c00317{width:27.562667pt;}
._11_c00317{width:28.501333pt;}
._19_c00317{width:30.293333pt;}
._2c_c00317{width:31.232000pt;}
._16_c00317{width:32.426667pt;}
._1a_c00317{width:34.133333pt;}
._2f_c00317{width:35.072000pt;}
._3_c00317{width:36.181333pt;}
._2a_c00317{width:38.485333pt;}
._1f_c00317{width:40.362667pt;}
._28_c00317{width:42.240000pt;}
._1e_c00317{width:44.032000pt;}
._29_c00317{width:46.421333pt;}
._36_c00317{width:48.554667pt;}
._30_c00317{width:49.664000pt;}
._3a_c00317{width:52.053333pt;}
._32_c00317{width:57.088000pt;}
._39_c00317{width:58.112000pt;}
._38_c00317{width:59.306667pt;}
._37_c00317{width:61.866667pt;}
._31_c00317{width:65.194667pt;}
._26_c00317{width:67.413333pt;}
._35_c00317{width:69.461333pt;}
._8_c00317{width:72.192000pt;}
._27_c00317{width:75.264000pt;}
._2e_c00317{width:80.213333pt;}
._2b_c00317{width:155.733333pt;}
._12_c00317{width:327.850667pt;}
.fs4_c00317{font-size:42.666667pt;}
.fs0_c00317{font-size:74.666667pt;}
.fs3_c00317{font-size:80.000000pt;}
.fs1_c00317{font-size:85.333333pt;}
.fs2_c00317{font-size:90.666667pt;}
.y0_c00317{bottom:0.000000pt;}
.y25_c00317{bottom:2.760000pt;}
.y24_c00317{bottom:6.425204pt;}
.y23_c00317{bottom:93.186667pt;}
.y22_c00317{bottom:123.586667pt;}
.y21_c00317{bottom:154.786667pt;}
.y20_c00317{bottom:185.053333pt;}
.y1f_c00317{bottom:215.320000pt;}
.y1e_c00317{bottom:245.053333pt;}
.y1d_c00317{bottom:275.586667pt;}
.y1c_c00317{bottom:305.986667pt;}
.y1b_c00317{bottom:335.720000pt;}
.y1a_c00317{bottom:365.986667pt;}
.y19_c00317{bottom:395.720000pt;}
.y18_c00317{bottom:425.720000pt;}
.y17_c00317{bottom:455.986667pt;}
.y16_c00317{bottom:485.720000pt;}
.y15_c00317{bottom:516.920000pt;}
.y14_c00317{bottom:545.586667pt;}
.y13_c00317{bottom:575.986667pt;}
.y12_c00317{bottom:605.720000pt;}
.y11_c00317{bottom:635.720000pt;}
.y10_c00317{bottom:665.586667pt;}
.yf_c00317{bottom:695.586667pt;}
.ye_c00317{bottom:723.186667pt;}
.yd_c00317{bottom:755.053333pt;}
.yc_c00317{bottom:785.053333pt;}
.yb_c00317{bottom:814.520000pt;}
.ya_c00317{bottom:843.853333pt;}
.y9_c00317{bottom:873.186667pt;}
.y8_c00317{bottom:902.386667pt;}
.y7_c00317{bottom:932.120000pt;}
.y6_c00317{bottom:961.720000pt;}
.y5_c00317{bottom:991.453333pt;}
.y4_c00317{bottom:1020.920000pt;}
.y3_c00317{bottom:1050.520000pt;}
.y2_c00317{bottom:1080.253333pt;}
.y1_c00317{bottom:1109.586667pt;}
.h3_c00317{height:11.733399pt;}
.h4_c00317{height:38.937500pt;}
.h2_c00317{height:108.041667pt;}
.h0_c00317{height:1188.466667pt;}
.h1_c00317{height:1188.666667pt;}
.w2_c00317{width:93.222667pt;}
.w1_c00317{width:741.333333pt;}
.w0_c00317{width:741.600000pt;}
.x0_c00317{left:0.000000pt;}
.x8_c00317{left:125.466667pt;}
.x7_c00317{left:147.600000pt;}
.xb_c00317{left:207.600000pt;}
.xa_c00317{left:210.933333pt;}
.x1_c00317{left:212.800000pt;}
.x2_c00317{left:213.866667pt;}
.x4_c00317{left:214.800000pt;}
.x3_c00317{left:215.733333pt;}
.x5_c00317{left:217.200000pt;}
.x9_c00317{left:218.666667pt;}
.xc_c00317{left:219.600000pt;}
.x6_c00317{left:261.866667pt;}
.xd_c00317{left:327.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_555b3ab99f430fb8ed2493be.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_56155f13eafed62a38e9b214.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_9d189eaacb485782c295b2a5.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_a564eddd57e4aa1791645bdf.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;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_c00318;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_4c4bc8580db85158f9530046.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00318;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls4_c00318{letter-spacing:0.000000px;}
.ls3_c00318{letter-spacing:9.600000px;}
.ls0_c00318{letter-spacing:13.692000px;}
.ls1_c00318{letter-spacing:13.800000px;}
.ls2_c00318{letter-spacing:63.000000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:-77.196000px;}
.ws2_c00318{word-spacing:-51.000000px;}
.ws3_c00318{word-spacing:-43.084800px;}
.ws1_c00318{word-spacing:-23.136000px;}
.ws4_c00318{word-spacing:0.000000px;}
._36_c00318{margin-left:-28.704000px;}
._31_c00318{margin-left:-15.846000px;}
._35_c00318{margin-left:-14.054400px;}
._15_c00318{margin-left:-12.672000px;}
._1_c00318{margin-left:-11.136000px;}
._27_c00318{margin-left:-9.792000px;}
._5_c00318{margin-left:-8.640000px;}
._7_c00318{margin-left:-7.488000px;}
._6_c00318{margin-left:-5.856000px;}
._2f_c00318{margin-left:-4.554000px;}
._3_c00318{margin-left:-3.552000px;}
._29_c00318{margin-left:-2.256000px;}
._2_c00318{margin-left:-1.152000px;}
._c_c00318{width:1.440000px;}
._b_c00318{width:3.072000px;}
._a_c00318{width:4.704000px;}
._11_c00318{width:6.240000px;}
._26_c00318{width:7.272000px;}
._1a_c00318{width:8.448000px;}
._13_c00318{width:9.600000px;}
._10_c00318{width:11.136000px;}
._1f_c00318{width:12.768000px;}
._0_c00318{width:13.920000px;}
._1d_c00318{width:15.552000px;}
._1e_c00318{width:16.650000px;}
._1c_c00318{width:17.952000px;}
._17_c00318{width:19.680000px;}
._12_c00318{width:21.696000px;}
._9_c00318{width:24.534000px;}
._d_c00318{width:25.824000px;}
._18_c00318{width:27.744000px;}
._28_c00318{width:29.664000px;}
._e_c00318{width:32.352000px;}
._8_c00318{width:33.912000px;}
._32_c00318{width:35.520000px;}
._21_c00318{width:36.714000px;}
._20_c00318{width:38.496000px;}
._16_c00318{width:41.088000px;}
._2c_c00318{width:42.528000px;}
._1b_c00318{width:43.560000px;}
._f_c00318{width:45.120000px;}
._19_c00318{width:47.040000px;}
._2a_c00318{width:50.304000px;}
._34_c00318{width:52.230000px;}
._14_c00318{width:53.664000px;}
._2b_c00318{width:55.056000px;}
._30_c00318{width:58.176000px;}
._24_c00318{width:62.262000px;}
._25_c00318{width:69.234000px;}
._2d_c00318{width:70.656000px;}
._2e_c00318{width:74.760000px;}
._4_c00318{width:107.136000px;}
._22_c00318{width:144.360000px;}
._33_c00318{width:150.858000px;}
._23_c00318{width:168.528000px;}
._37_c00318{width:536.352000px;}
.fc2_c00318{color:transparent;}
.fc1_c00318{color:rgb(128,128,128);}
.fc0_c00318{color:rgb(0,0,0);}
.fs5_c00318{font-size:48.000000px;}
.fs4_c00318{font-size:76.800000px;}
.fs2_c00318{font-size:84.000000px;}
.fs0_c00318{font-size:96.000000px;}
.fs3_c00318{font-size:102.000000px;}
.fs1_c00318{font-size:105.000000px;}
.y0_c00318{bottom:0.000000px;}
.y27_c00318{bottom:3.105000px;}
.y26_c00318{bottom:7.228369px;}
.y25_c00318{bottom:61.470000px;}
.y24_c00318{bottom:92.070000px;}
.y23_c00318{bottom:127.170000px;}
.y22_c00318{bottom:160.620000px;}
.y21_c00318{bottom:195.120000px;}
.y20_c00318{bottom:228.720000px;}
.y1f_c00318{bottom:263.220000px;}
.y1e_c00318{bottom:296.970000px;}
.y1d_c00318{bottom:330.420000px;}
.y1c_c00318{bottom:365.220000px;}
.y1b_c00318{bottom:397.920000px;}
.y1a_c00318{bottom:431.970000px;}
.y19_c00318{bottom:464.970000px;}
.y18_c00318{bottom:498.420000px;}
.y17_c00318{bottom:532.170000px;}
.y16_c00318{bottom:565.620000px;}
.y15_c00318{bottom:598.770000px;}
.y14_c00318{bottom:631.020000px;}
.y13_c00318{bottom:666.120000px;}
.y12_c00318{bottom:699.270000px;}
.y11_c00318{bottom:732.720000px;}
.y10_c00318{bottom:766.020000px;}
.yf_c00318{bottom:799.470000px;}
.ye_c00318{bottom:831.870000px;}
.yd_c00318{bottom:865.020000px;}
.yc_c00318{bottom:898.020000px;}
.yb_c00318{bottom:932.070000px;}
.ya_c00318{bottom:965.520000px;}
.y9_c00318{bottom:998.970000px;}
.y8_c00318{bottom:1031.370000px;}
.y7_c00318{bottom:1065.120000px;}
.y6_c00318{bottom:1098.270000px;}
.y5_c00318{bottom:1131.570000px;}
.y4_c00318{bottom:1164.270000px;}
.y3_c00318{bottom:1197.120000px;}
.y2_c00318{bottom:1230.420000px;}
.y1_c00318{bottom:1264.170000px;}
.h3_c00318{height:13.200073px;}
.h4_c00318{height:43.804688px;}
.h2_c00318{height:121.546875px;}
.h0_c00318{height:1375.350000px;}
.h1_c00318{height:1375.500000px;}
.w2_c00318{width:104.875500px;}
.w0_c00318{width:872.625000px;}
.w1_c00318{width:873.000000px;}
.x0_c00318{left:0.000000px;}
.x7_c00318{left:28.350000px;}
.x6_c00318{left:30.000000px;}
.x5_c00318{left:31.050000px;}
.x2_c00318{left:32.700000px;}
.x3_c00318{left:33.750000px;}
.x4_c00318{left:35.400000px;}
.x8_c00318{left:36.450000px;}
.x9_c00318{left:38.100000px;}
.xa_c00318{left:39.150000px;}
.xb_c00318{left:40.200000px;}
.xc_c00318{left:41.850000px;}
.xd_c00318{left:42.900000px;}
.xf_c00318{left:388.126740px;}
.xe_c00318{left:411.300000px;}
.x1_c00318{left:517.050000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls4_c00318{letter-spacing:0.000000pt;}
.ls3_c00318{letter-spacing:8.533333pt;}
.ls0_c00318{letter-spacing:12.170667pt;}
.ls1_c00318{letter-spacing:12.266667pt;}
.ls2_c00318{letter-spacing:56.000000pt;}
.ws0_c00318{word-spacing:-68.618667pt;}
.ws2_c00318{word-spacing:-45.333333pt;}
.ws3_c00318{word-spacing:-38.297600pt;}
.ws1_c00318{word-spacing:-20.565333pt;}
.ws4_c00318{word-spacing:0.000000pt;}
._36_c00318{margin-left:-25.514667pt;}
._31_c00318{margin-left:-14.085333pt;}
._35_c00318{margin-left:-12.492800pt;}
._15_c00318{margin-left:-11.264000pt;}
._1_c00318{margin-left:-9.898667pt;}
._27_c00318{margin-left:-8.704000pt;}
._5_c00318{margin-left:-7.680000pt;}
._7_c00318{margin-left:-6.656000pt;}
._6_c00318{margin-left:-5.205333pt;}
._2f_c00318{margin-left:-4.048000pt;}
._3_c00318{margin-left:-3.157333pt;}
._29_c00318{margin-left:-2.005333pt;}
._2_c00318{margin-left:-1.024000pt;}
._c_c00318{width:1.280000pt;}
._b_c00318{width:2.730667pt;}
._a_c00318{width:4.181333pt;}
._11_c00318{width:5.546667pt;}
._26_c00318{width:6.464000pt;}
._1a_c00318{width:7.509333pt;}
._13_c00318{width:8.533333pt;}
._10_c00318{width:9.898667pt;}
._1f_c00318{width:11.349333pt;}
._0_c00318{width:12.373333pt;}
._1d_c00318{width:13.824000pt;}
._1e_c00318{width:14.800000pt;}
._1c_c00318{width:15.957333pt;}
._17_c00318{width:17.493333pt;}
._12_c00318{width:19.285333pt;}
._9_c00318{width:21.808000pt;}
._d_c00318{width:22.954667pt;}
._18_c00318{width:24.661333pt;}
._28_c00318{width:26.368000pt;}
._e_c00318{width:28.757333pt;}
._8_c00318{width:30.144000pt;}
._32_c00318{width:31.573333pt;}
._21_c00318{width:32.634667pt;}
._20_c00318{width:34.218667pt;}
._16_c00318{width:36.522667pt;}
._2c_c00318{width:37.802667pt;}
._1b_c00318{width:38.720000pt;}
._f_c00318{width:40.106667pt;}
._19_c00318{width:41.813333pt;}
._2a_c00318{width:44.714667pt;}
._34_c00318{width:46.426667pt;}
._14_c00318{width:47.701333pt;}
._2b_c00318{width:48.938667pt;}
._30_c00318{width:51.712000pt;}
._24_c00318{width:55.344000pt;}
._25_c00318{width:61.541333pt;}
._2d_c00318{width:62.805333pt;}
._2e_c00318{width:66.453333pt;}
._4_c00318{width:95.232000pt;}
._22_c00318{width:128.320000pt;}
._33_c00318{width:134.096000pt;}
._23_c00318{width:149.802667pt;}
._37_c00318{width:476.757333pt;}
.fs5_c00318{font-size:42.666667pt;}
.fs4_c00318{font-size:68.266667pt;}
.fs2_c00318{font-size:74.666667pt;}
.fs0_c00318{font-size:85.333333pt;}
.fs3_c00318{font-size:90.666667pt;}
.fs1_c00318{font-size:93.333333pt;}
.y0_c00318{bottom:0.000000pt;}
.y27_c00318{bottom:2.760000pt;}
.y26_c00318{bottom:6.425217pt;}
.y25_c00318{bottom:54.640000pt;}
.y24_c00318{bottom:81.840000pt;}
.y23_c00318{bottom:113.040000pt;}
.y22_c00318{bottom:142.773333pt;}
.y21_c00318{bottom:173.440000pt;}
.y20_c00318{bottom:203.306667pt;}
.y1f_c00318{bottom:233.973333pt;}
.y1e_c00318{bottom:263.973333pt;}
.y1d_c00318{bottom:293.706667pt;}
.y1c_c00318{bottom:324.640000pt;}
.y1b_c00318{bottom:353.706667pt;}
.y1a_c00318{bottom:383.973333pt;}
.y19_c00318{bottom:413.306667pt;}
.y18_c00318{bottom:443.040000pt;}
.y17_c00318{bottom:473.040000pt;}
.y16_c00318{bottom:502.773333pt;}
.y15_c00318{bottom:532.240000pt;}
.y14_c00318{bottom:560.906667pt;}
.y13_c00318{bottom:592.106667pt;}
.y12_c00318{bottom:621.573333pt;}
.y11_c00318{bottom:651.306667pt;}
.y10_c00318{bottom:680.906667pt;}
.yf_c00318{bottom:710.640000pt;}
.ye_c00318{bottom:739.440000pt;}
.yd_c00318{bottom:768.906667pt;}
.yc_c00318{bottom:798.240000pt;}
.yb_c00318{bottom:828.506667pt;}
.ya_c00318{bottom:858.240000pt;}
.y9_c00318{bottom:887.973333pt;}
.y8_c00318{bottom:916.773333pt;}
.y7_c00318{bottom:946.773333pt;}
.y6_c00318{bottom:976.240000pt;}
.y5_c00318{bottom:1005.840000pt;}
.y4_c00318{bottom:1034.906667pt;}
.y3_c00318{bottom:1064.106667pt;}
.y2_c00318{bottom:1093.706667pt;}
.y1_c00318{bottom:1123.706667pt;}
.h3_c00318{height:11.733399pt;}
.h4_c00318{height:38.937500pt;}
.h2_c00318{height:108.041667pt;}
.h0_c00318{height:1222.533333pt;}
.h1_c00318{height:1222.666667pt;}
.w2_c00318{width:93.222667pt;}
.w0_c00318{width:775.666667pt;}
.w1_c00318{width:776.000000pt;}
.x0_c00318{left:0.000000pt;}
.x7_c00318{left:25.200000pt;}
.x6_c00318{left:26.666667pt;}
.x5_c00318{left:27.600000pt;}
.x2_c00318{left:29.066667pt;}
.x3_c00318{left:30.000000pt;}
.x4_c00318{left:31.466667pt;}
.x8_c00318{left:32.400000pt;}
.x9_c00318{left:33.866667pt;}
.xa_c00318{left:34.800000pt;}
.xb_c00318{left:35.733333pt;}
.xc_c00318{left:37.200000pt;}
.xd_c00318{left:38.133333pt;}
.xf_c00318{left:345.001546pt;}
.xe_c00318{left:365.600000pt;}
.x1_c00318{left:459.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_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_de7656095f21c604c477f2cb.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_c96289332d98c7f69accb976.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_f00cc990c48e0ce56b8b755c.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls4_c00319{letter-spacing:-6.000000px;}
.ls3_c00319{letter-spacing:0.000000px;}
.ls1_c00319{letter-spacing:1.416000px;}
.ls2_c00319{letter-spacing:7.200000px;}
.ls0_c00319{letter-spacing:18.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00319{word-spacing:-25.500000px;}
.ws2_c00319{word-spacing:-23.136000px;}
.ws0_c00319{word-spacing:-20.244000px;}
.ws1_c00319{word-spacing:-0.084000px;}
.ws4_c00319{word-spacing:0.000000px;}
._22_c00319{margin-left:-54.336000px;}
._2b_c00319{margin-left:-33.408000px;}
._2f_c00319{margin-left:-27.168000px;}
._21_c00319{margin-left:-25.536000px;}
._1d_c00319{margin-left:-21.888000px;}
._38_c00319{margin-left:-20.184000px;}
._3c_c00319{margin-left:-18.720000px;}
._23_c00319{margin-left:-17.088000px;}
._33_c00319{margin-left:-15.744000px;}
._1a_c00319{margin-left:-14.304000px;}
._25_c00319{margin-left:-12.288000px;}
._26_c00319{margin-left:-10.368000px;}
._28_c00319{margin-left:-9.120000px;}
._7_c00319{margin-left:-7.872000px;}
._30_c00319{margin-left:-6.816000px;}
._8_c00319{margin-left:-5.184000px;}
._9_c00319{margin-left:-3.744000px;}
._f_c00319{margin-left:-2.688000px;}
._13_c00319{margin-left:-1.248000px;}
._3_c00319{width:1.536000px;}
._4_c00319{width:3.072000px;}
._d_c00319{width:4.320000px;}
._c_c00319{width:5.568000px;}
._10_c00319{width:6.912000px;}
._2c_c00319{width:8.160000px;}
._5_c00319{width:9.216000px;}
._1_c00319{width:10.368000px;}
._0_c00319{width:11.904000px;}
._a_c00319{width:13.920000px;}
._15_c00319{width:15.264000px;}
._b_c00319{width:17.088000px;}
._17_c00319{width:18.240000px;}
._2a_c00319{width:19.296000px;}
._1f_c00319{width:20.832000px;}
._37_c00319{width:22.560000px;}
._3b_c00319{width:24.144000px;}
._16_c00319{width:25.248000px;}
._14_c00319{width:27.648000px;}
._2e_c00319{width:29.760000px;}
._6_c00319{width:30.912000px;}
._11_c00319{width:32.928000px;}
._12_c00319{width:33.984000px;}
._2_c00319{width:36.096000px;}
._3f_c00319{width:37.248000px;}
._18_c00319{width:39.264000px;}
._e_c00319{width:40.704000px;}
._40_c00319{width:41.856000px;}
._27_c00319{width:43.296000px;}
._32_c00319{width:45.480000px;}
._1c_c00319{width:47.328000px;}
._29_c00319{width:50.112000px;}
._31_c00319{width:51.360000px;}
._19_c00319{width:58.080000px;}
._3e_c00319{width:65.376000px;}
._35_c00319{width:75.504000px;}
._20_c00319{width:78.720000px;}
._3d_c00319{width:84.000000px;}
._41_c00319{width:89.856000px;}
._39_c00319{width:103.200000px;}
._24_c00319{width:112.116000px;}
._2d_c00319{width:113.664000px;}
._3a_c00319{width:144.744000px;}
._36_c00319{width:169.296000px;}
._1b_c00319{width:211.200000px;}
._1e_c00319{width:402.624000px;}
._34_c00319{width:743.136000px;}
.fc2_c00319{color:transparent;}
.fc1_c00319{color:rgb(128,128,128);}
.fc0_c00319{color:rgb(0,0,0);}
.fs4_c00319{font-size:48.000000px;}
.fs1_c00319{font-size:84.000000px;}
.fs0_c00319{font-size:96.000000px;}
.fs3_c00319{font-size:102.000000px;}
.fs2_c00319{font-size:117.000000px;}
.y0_c00319{bottom:0.000000px;}
.y26_c00319{bottom:3.105000px;}
.y25_c00319{bottom:7.228357px;}
.y24_c00319{bottom:73.680000px;}
.y23_c00319{bottom:105.330000px;}
.y22_c00319{bottom:140.730000px;}
.y21_c00319{bottom:174.480000px;}
.y20_c00319{bottom:208.530000px;}
.y1f_c00319{bottom:242.430000px;}
.y1e_c00319{bottom:276.180000px;}
.y1d_c00319{bottom:310.230000px;}
.y1c_c00319{bottom:344.280000px;}
.y1b_c00319{bottom:378.030000px;}
.y1a_c00319{bottom:412.080000px;}
.y19_c00319{bottom:445.830000px;}
.y18_c00319{bottom:479.880000px;}
.y17_c00319{bottom:513.330000px;}
.y16_c00319{bottom:547.380000px;}
.y15_c00319{bottom:581.280000px;}
.y14_c00319{bottom:614.880000px;}
.y13_c00319{bottom:646.080000px;}
.y12_c00319{bottom:682.830000px;}
.y11_c00319{bottom:716.280000px;}
.y10_c00319{bottom:750.630000px;}
.yf_c00319{bottom:784.080000px;}
.ye_c00319{bottom:816.480000px;}
.yd_c00319{bottom:850.830000px;}
.yc_c00319{bottom:885.030000px;}
.yb_c00319{bottom:918.330000px;}
.ya_c00319{bottom:951.030000px;}
.y9_c00319{bottom:984.480000px;}
.y8_c00319{bottom:1017.630000px;}
.y7_c00319{bottom:1051.080000px;}
.y6_c00319{bottom:1084.080000px;}
.y5_c00319{bottom:1116.780000px;}
.y4_c00319{bottom:1149.930000px;}
.y3_c00319{bottom:1183.980000px;}
.y2_c00319{bottom:1217.130000px;}
.y1_c00319{bottom:1250.730000px;}
.h3_c00319{height:13.200074px;}
.h4_c00319{height:43.804688px;}
.h2_c00319{height:121.546875px;}
.h0_c00319{height:1382.700000px;}
.h1_c00319{height:1383.000000px;}
.w2_c00319{width:104.875500px;}
.w0_c00319{width:863.175000px;}
.w1_c00319{width:863.250000px;}
.x0_c00319{left:0.000000px;}
.x7_c00319{left:175.800000px;}
.xb_c00319{left:268.200000px;}
.xa_c00319{left:269.250000px;}
.x9_c00319{left:270.900000px;}
.x8_c00319{left:273.600000px;}
.x6_c00319{left:274.650000px;}
.x5_c00319{left:275.700000px;}
.x4_c00319{left:276.750000px;}
.xc_c00319{left:277.800000px;}
.x1_c00319{left:278.850000px;}
.x2_c00319{left:281.100000px;}
.x3_c00319{left:282.750000px;}
.xe_c00319{left:383.401749px;}
.xd_c00319{left:802.800000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls4_c00319{letter-spacing:-5.333333pt;}
.ls3_c00319{letter-spacing:0.000000pt;}
.ls1_c00319{letter-spacing:1.258667pt;}
.ls2_c00319{letter-spacing:6.400000pt;}
.ls0_c00319{letter-spacing:16.000000pt;}
.ws3_c00319{word-spacing:-22.666667pt;}
.ws2_c00319{word-spacing:-20.565333pt;}
.ws0_c00319{word-spacing:-17.994667pt;}
.ws1_c00319{word-spacing:-0.074667pt;}
.ws4_c00319{word-spacing:0.000000pt;}
._22_c00319{margin-left:-48.298667pt;}
._2b_c00319{margin-left:-29.696000pt;}
._2f_c00319{margin-left:-24.149333pt;}
._21_c00319{margin-left:-22.698667pt;}
._1d_c00319{margin-left:-19.456000pt;}
._38_c00319{margin-left:-17.941333pt;}
._3c_c00319{margin-left:-16.640000pt;}
._23_c00319{margin-left:-15.189333pt;}
._33_c00319{margin-left:-13.994667pt;}
._1a_c00319{margin-left:-12.714667pt;}
._25_c00319{margin-left:-10.922667pt;}
._26_c00319{margin-left:-9.216000pt;}
._28_c00319{margin-left:-8.106667pt;}
._7_c00319{margin-left:-6.997333pt;}
._30_c00319{margin-left:-6.058667pt;}
._8_c00319{margin-left:-4.608000pt;}
._9_c00319{margin-left:-3.328000pt;}
._f_c00319{margin-left:-2.389333pt;}
._13_c00319{margin-left:-1.109333pt;}
._3_c00319{width:1.365333pt;}
._4_c00319{width:2.730667pt;}
._d_c00319{width:3.840000pt;}
._c_c00319{width:4.949333pt;}
._10_c00319{width:6.144000pt;}
._2c_c00319{width:7.253333pt;}
._5_c00319{width:8.192000pt;}
._1_c00319{width:9.216000pt;}
._0_c00319{width:10.581333pt;}
._a_c00319{width:12.373333pt;}
._15_c00319{width:13.568000pt;}
._b_c00319{width:15.189333pt;}
._17_c00319{width:16.213333pt;}
._2a_c00319{width:17.152000pt;}
._1f_c00319{width:18.517333pt;}
._37_c00319{width:20.053333pt;}
._3b_c00319{width:21.461333pt;}
._16_c00319{width:22.442667pt;}
._14_c00319{width:24.576000pt;}
._2e_c00319{width:26.453333pt;}
._6_c00319{width:27.477333pt;}
._11_c00319{width:29.269333pt;}
._12_c00319{width:30.208000pt;}
._2_c00319{width:32.085333pt;}
._3f_c00319{width:33.109333pt;}
._18_c00319{width:34.901333pt;}
._e_c00319{width:36.181333pt;}
._40_c00319{width:37.205333pt;}
._27_c00319{width:38.485333pt;}
._32_c00319{width:40.426667pt;}
._1c_c00319{width:42.069333pt;}
._29_c00319{width:44.544000pt;}
._31_c00319{width:45.653333pt;}
._19_c00319{width:51.626667pt;}
._3e_c00319{width:58.112000pt;}
._35_c00319{width:67.114667pt;}
._20_c00319{width:69.973333pt;}
._3d_c00319{width:74.666667pt;}
._41_c00319{width:79.872000pt;}
._39_c00319{width:91.733333pt;}
._24_c00319{width:99.658667pt;}
._2d_c00319{width:101.034667pt;}
._3a_c00319{width:128.661333pt;}
._36_c00319{width:150.485333pt;}
._1b_c00319{width:187.733333pt;}
._1e_c00319{width:357.888000pt;}
._34_c00319{width:660.565333pt;}
.fs4_c00319{font-size:42.666667pt;}
.fs1_c00319{font-size:74.666667pt;}
.fs0_c00319{font-size:85.333333pt;}
.fs3_c00319{font-size:90.666667pt;}
.fs2_c00319{font-size:104.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y26_c00319{bottom:2.760000pt;}
.y25_c00319{bottom:6.425206pt;}
.y24_c00319{bottom:65.493333pt;}
.y23_c00319{bottom:93.626667pt;}
.y22_c00319{bottom:125.093333pt;}
.y21_c00319{bottom:155.093333pt;}
.y20_c00319{bottom:185.360000pt;}
.y1f_c00319{bottom:215.493333pt;}
.y1e_c00319{bottom:245.493333pt;}
.y1d_c00319{bottom:275.760000pt;}
.y1c_c00319{bottom:306.026667pt;}
.y1b_c00319{bottom:336.026667pt;}
.y1a_c00319{bottom:366.293333pt;}
.y19_c00319{bottom:396.293333pt;}
.y18_c00319{bottom:426.560000pt;}
.y17_c00319{bottom:456.293333pt;}
.y16_c00319{bottom:486.560000pt;}
.y15_c00319{bottom:516.693333pt;}
.y14_c00319{bottom:546.560000pt;}
.y13_c00319{bottom:574.293333pt;}
.y12_c00319{bottom:606.960000pt;}
.y11_c00319{bottom:636.693333pt;}
.y10_c00319{bottom:667.226667pt;}
.yf_c00319{bottom:696.960000pt;}
.ye_c00319{bottom:725.760000pt;}
.yd_c00319{bottom:756.293333pt;}
.yc_c00319{bottom:786.693333pt;}
.yb_c00319{bottom:816.293333pt;}
.ya_c00319{bottom:845.360000pt;}
.y9_c00319{bottom:875.093333pt;}
.y8_c00319{bottom:904.560000pt;}
.y7_c00319{bottom:934.293333pt;}
.y6_c00319{bottom:963.626667pt;}
.y5_c00319{bottom:992.693333pt;}
.y4_c00319{bottom:1022.160000pt;}
.y3_c00319{bottom:1052.426667pt;}
.y2_c00319{bottom:1081.893333pt;}
.y1_c00319{bottom:1111.760000pt;}
.h3_c00319{height:11.733399pt;}
.h4_c00319{height:38.937500pt;}
.h2_c00319{height:108.041667pt;}
.h0_c00319{height:1229.066667pt;}
.h1_c00319{height:1229.333333pt;}
.w2_c00319{width:93.222667pt;}
.w0_c00319{width:767.266667pt;}
.w1_c00319{width:767.333333pt;}
.x0_c00319{left:0.000000pt;}
.x7_c00319{left:156.266667pt;}
.xb_c00319{left:238.400000pt;}
.xa_c00319{left:239.333333pt;}
.x9_c00319{left:240.800000pt;}
.x8_c00319{left:243.200000pt;}
.x6_c00319{left:244.133333pt;}
.x5_c00319{left:245.066667pt;}
.x4_c00319{left:246.000000pt;}
.xc_c00319{left:246.933333pt;}
.x1_c00319{left:247.866667pt;}
.x2_c00319{left:249.866667pt;}
.x3_c00319{left:251.333333pt;}
.xe_c00319{left:340.801554pt;}
.xd_c00319{left:713.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_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_725dfd9d8ef57b6a34a08142.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_79130bbadb0ff1ce919a6f53.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls1_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:9.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;}
}
.ws0_c00320{word-spacing:-42.252000px;}
.ws1_c00320{word-spacing:-23.136000px;}
.ws2_c00320{word-spacing:0.000000px;}
._32_c00320{margin-left:-38.064000px;}
._35_c00320{margin-left:-24.048000px;}
._e_c00320{margin-left:-21.792000px;}
._0_c00320{margin-left:-19.104000px;}
._30_c00320{margin-left:-17.856000px;}
._22_c00320{margin-left:-16.704000px;}
._37_c00320{margin-left:-14.976000px;}
._28_c00320{margin-left:-11.952000px;}
._1c_c00320{margin-left:-10.080000px;}
._2f_c00320{margin-left:-8.976000px;}
._2a_c00320{margin-left:-6.432000px;}
._21_c00320{margin-left:-4.752000px;}
._f_c00320{margin-left:-3.696000px;}
._12_c00320{margin-left:-1.776000px;}
._a_c00320{width:1.920000px;}
._7_c00320{width:3.072000px;}
._d_c00320{width:4.656000px;}
._10_c00320{width:5.808000px;}
._14_c00320{width:7.680000px;}
._3_c00320{width:8.736000px;}
._13_c00320{width:10.704000px;}
._1_c00320{width:12.240000px;}
._4_c00320{width:13.440000px;}
._11_c00320{width:15.264000px;}
._c_c00320{width:16.320000px;}
._5_c00320{width:17.664000px;}
._8_c00320{width:19.104000px;}
._9_c00320{width:20.448000px;}
._36_c00320{width:21.696000px;}
._29_c00320{width:24.192000px;}
._17_c00320{width:25.200000px;}
._15_c00320{width:27.216000px;}
._b_c00320{width:28.800000px;}
._1b_c00320{width:30.672000px;}
._18_c00320{width:32.400000px;}
._24_c00320{width:34.320000px;}
._1d_c00320{width:35.808000px;}
._6_c00320{width:37.728000px;}
._2b_c00320{width:38.928000px;}
._1a_c00320{width:39.936000px;}
._2_c00320{width:40.992000px;}
._16_c00320{width:42.768000px;}
._2c_c00320{width:43.872000px;}
._1f_c00320{width:45.120000px;}
._20_c00320{width:46.752000px;}
._19_c00320{width:47.856000px;}
._25_c00320{width:49.104000px;}
._2d_c00320{width:50.592000px;}
._23_c00320{width:52.368000px;}
._1e_c00320{width:54.288000px;}
._26_c00320{width:55.584000px;}
._33_c00320{width:58.848000px;}
._34_c00320{width:60.000000px;}
._27_c00320{width:61.584000px;}
._2e_c00320{width:64.656000px;}
._3b_c00320{width:73.248000px;}
._31_c00320{width:82.272000px;}
._38_c00320{width:105.024000px;}
._3d_c00320{width:108.384000px;}
._3a_c00320{width:127.488000px;}
._3c_c00320{width:151.584000px;}
._39_c00320{width:183.360000px;}
._3e_c00320{width:826.512000px;}
.fc2_c00320{color:transparent;}
.fc1_c00320{color:rgb(128,128,128);}
.fc0_c00320{color:rgb(0,0,0);}
.fs2_c00320{font-size:48.000000px;}
.fs1_c00320{font-size:84.000000px;}
.fs0_c00320{font-size:96.000000px;}
.y0_c00320{bottom:0.000000px;}
.y27_c00320{bottom:3.105000px;}
.y26_c00320{bottom:7.228355px;}
.y25_c00320{bottom:74.835000px;}
.y24_c00320{bottom:109.635000px;}
.y23_c00320{bottom:144.135000px;}
.y22_c00320{bottom:178.185000px;}
.y21_c00320{bottom:212.235000px;}
.y20_c00320{bottom:246.285000px;}
.y1f_c00320{bottom:280.485000px;}
.y1e_c00320{bottom:314.235000px;}
.y1d_c00320{bottom:347.985000px;}
.y1c_c00320{bottom:382.035000px;}
.y1b_c00320{bottom:415.785000px;}
.y1a_c00320{bottom:449.085000px;}
.y19_c00320{bottom:482.835000px;}
.y18_c00320{bottom:516.585000px;}
.y17_c00320{bottom:549.735000px;}
.y16_c00320{bottom:583.485000px;}
.y15_c00320{bottom:616.935000px;}
.y14_c00320{bottom:649.635000px;}
.y13_c00320{bottom:683.385000px;}
.y12_c00320{bottom:717.435000px;}
.y11_c00320{bottom:751.185000px;}
.y10_c00320{bottom:784.635000px;}
.yf_c00320{bottom:817.635000px;}
.ye_c00320{bottom:850.785000px;}
.yd_c00320{bottom:884.835000px;}
.yc_c00320{bottom:917.685000px;}
.yb_c00320{bottom:950.385000px;}
.ya_c00320{bottom:985.035000px;}
.y9_c00320{bottom:1017.585000px;}
.y8_c00320{bottom:1050.585000px;}
.y7_c00320{bottom:1084.635000px;}
.y6_c00320{bottom:1117.785000px;}
.y5_c00320{bottom:1150.485000px;}
.y4_c00320{bottom:1183.935000px;}
.y3_c00320{bottom:1217.085000px;}
.y2_c00320{bottom:1251.135000px;}
.y1_c00320{bottom:1285.185000px;}
.h3_c00320{height:13.200074px;}
.h4_c00320{height:43.804688px;}
.h2_c00320{height:121.546875px;}
.h1_c00320{height:1353.000000px;}
.h0_c00320{height:1353.225000px;}
.w2_c00320{width:104.875500px;}
.w0_c00320{width:858.600000px;}
.w1_c00320{width:858.750000px;}
.x0_c00320{left:0.000000px;}
.x7_c00320{left:46.800000px;}
.x6_c00320{left:49.350000px;}
.x5_c00320{left:51.000000px;}
.x4_c00320{left:52.050000px;}
.x2_c00320{left:53.250000px;}
.x3_c00320{left:54.300000px;}
.x8_c00320{left:55.350000px;}
.xa_c00320{left:58.650000px;}
.xb_c00320{left:60.750000px;}
.xd_c00320{left:63.450000px;}
.x9_c00320{left:109.350000px;}
.xc_c00320{left:113.100000px;}
.xe_c00320{left:296.100000px;}
.xf_c00320{left:381.114258px;}
.x1_c00320{left:527.250000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls1_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:8.106667pt;}
.ws0_c00320{word-spacing:-37.557333pt;}
.ws1_c00320{word-spacing:-20.565333pt;}
.ws2_c00320{word-spacing:0.000000pt;}
._32_c00320{margin-left:-33.834667pt;}
._35_c00320{margin-left:-21.376000pt;}
._e_c00320{margin-left:-19.370667pt;}
._0_c00320{margin-left:-16.981333pt;}
._30_c00320{margin-left:-15.872000pt;}
._22_c00320{margin-left:-14.848000pt;}
._37_c00320{margin-left:-13.312000pt;}
._28_c00320{margin-left:-10.624000pt;}
._1c_c00320{margin-left:-8.960000pt;}
._2f_c00320{margin-left:-7.978667pt;}
._2a_c00320{margin-left:-5.717333pt;}
._21_c00320{margin-left:-4.224000pt;}
._f_c00320{margin-left:-3.285333pt;}
._12_c00320{margin-left:-1.578667pt;}
._a_c00320{width:1.706667pt;}
._7_c00320{width:2.730667pt;}
._d_c00320{width:4.138667pt;}
._10_c00320{width:5.162667pt;}
._14_c00320{width:6.826667pt;}
._3_c00320{width:7.765333pt;}
._13_c00320{width:9.514667pt;}
._1_c00320{width:10.880000pt;}
._4_c00320{width:11.946667pt;}
._11_c00320{width:13.568000pt;}
._c_c00320{width:14.506667pt;}
._5_c00320{width:15.701333pt;}
._8_c00320{width:16.981333pt;}
._9_c00320{width:18.176000pt;}
._36_c00320{width:19.285333pt;}
._29_c00320{width:21.504000pt;}
._17_c00320{width:22.400000pt;}
._15_c00320{width:24.192000pt;}
._b_c00320{width:25.600000pt;}
._1b_c00320{width:27.264000pt;}
._18_c00320{width:28.800000pt;}
._24_c00320{width:30.506667pt;}
._1d_c00320{width:31.829333pt;}
._6_c00320{width:33.536000pt;}
._2b_c00320{width:34.602667pt;}
._1a_c00320{width:35.498667pt;}
._2_c00320{width:36.437333pt;}
._16_c00320{width:38.016000pt;}
._2c_c00320{width:38.997333pt;}
._1f_c00320{width:40.106667pt;}
._20_c00320{width:41.557333pt;}
._19_c00320{width:42.538667pt;}
._25_c00320{width:43.648000pt;}
._2d_c00320{width:44.970667pt;}
._23_c00320{width:46.549333pt;}
._1e_c00320{width:48.256000pt;}
._26_c00320{width:49.408000pt;}
._33_c00320{width:52.309333pt;}
._34_c00320{width:53.333333pt;}
._27_c00320{width:54.741333pt;}
._2e_c00320{width:57.472000pt;}
._3b_c00320{width:65.109333pt;}
._31_c00320{width:73.130667pt;}
._38_c00320{width:93.354667pt;}
._3d_c00320{width:96.341333pt;}
._3a_c00320{width:113.322667pt;}
._3c_c00320{width:134.741333pt;}
._39_c00320{width:162.986667pt;}
._3e_c00320{width:734.677333pt;}
.fs2_c00320{font-size:42.666667pt;}
.fs1_c00320{font-size:74.666667pt;}
.fs0_c00320{font-size:85.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.y27_c00320{bottom:2.760000pt;}
.y26_c00320{bottom:6.425204pt;}
.y25_c00320{bottom:66.520000pt;}
.y24_c00320{bottom:97.453333pt;}
.y23_c00320{bottom:128.120000pt;}
.y22_c00320{bottom:158.386667pt;}
.y21_c00320{bottom:188.653333pt;}
.y20_c00320{bottom:218.920000pt;}
.y1f_c00320{bottom:249.320000pt;}
.y1e_c00320{bottom:279.320000pt;}
.y1d_c00320{bottom:309.320000pt;}
.y1c_c00320{bottom:339.586667pt;}
.y1b_c00320{bottom:369.586667pt;}
.y1a_c00320{bottom:399.186667pt;}
.y19_c00320{bottom:429.186667pt;}
.y18_c00320{bottom:459.186667pt;}
.y17_c00320{bottom:488.653333pt;}
.y16_c00320{bottom:518.653333pt;}
.y15_c00320{bottom:548.386667pt;}
.y14_c00320{bottom:577.453333pt;}
.y13_c00320{bottom:607.453333pt;}
.y12_c00320{bottom:637.720000pt;}
.y11_c00320{bottom:667.720000pt;}
.y10_c00320{bottom:697.453333pt;}
.yf_c00320{bottom:726.786667pt;}
.ye_c00320{bottom:756.253333pt;}
.yd_c00320{bottom:786.520000pt;}
.yc_c00320{bottom:815.720000pt;}
.yb_c00320{bottom:844.786667pt;}
.ya_c00320{bottom:875.586667pt;}
.y9_c00320{bottom:904.520000pt;}
.y8_c00320{bottom:933.853333pt;}
.y7_c00320{bottom:964.120000pt;}
.y6_c00320{bottom:993.586667pt;}
.y5_c00320{bottom:1022.653333pt;}
.y4_c00320{bottom:1052.386667pt;}
.y3_c00320{bottom:1081.853333pt;}
.y2_c00320{bottom:1112.120000pt;}
.y1_c00320{bottom:1142.386667pt;}
.h3_c00320{height:11.733399pt;}
.h4_c00320{height:38.937500pt;}
.h2_c00320{height:108.041667pt;}
.h1_c00320{height:1202.666667pt;}
.h0_c00320{height:1202.866667pt;}
.w2_c00320{width:93.222667pt;}
.w0_c00320{width:763.200000pt;}
.w1_c00320{width:763.333333pt;}
.x0_c00320{left:0.000000pt;}
.x7_c00320{left:41.600000pt;}
.x6_c00320{left:43.866667pt;}
.x5_c00320{left:45.333333pt;}
.x4_c00320{left:46.266667pt;}
.x2_c00320{left:47.333333pt;}
.x3_c00320{left:48.266667pt;}
.x8_c00320{left:49.200000pt;}
.xa_c00320{left:52.133333pt;}
.xb_c00320{left:54.000000pt;}
.xd_c00320{left:56.400000pt;}
.x9_c00320{left:97.200000pt;}
.xc_c00320{left:100.533333pt;}
.xe_c00320{left:263.200000pt;}
.xf_c00320{left:338.768229pt;}
.x1_c00320{left:468.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5105704c83ff9a90119715db.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_0ced3628ce49647c0bb49e5d.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00321{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls0_c00321{letter-spacing:0.000000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:-63.504000px;}
.ws1_c00321{word-spacing:-23.136000px;}
.ws2_c00321{word-spacing:0.000000px;}
._3c_c00321{margin-left:-88.512000px;}
._1a_c00321{margin-left:-83.808000px;}
._9_c00321{margin-left:-28.128000px;}
._8_c00321{margin-left:-24.864000px;}
._a_c00321{margin-left:-21.024000px;}
._3a_c00321{margin-left:-17.856000px;}
._1f_c00321{margin-left:-16.368000px;}
._39_c00321{margin-left:-12.384000px;}
._20_c00321{margin-left:-11.304000px;}
._25_c00321{margin-left:-8.928000px;}
._28_c00321{margin-left:-7.392000px;}
._1d_c00321{margin-left:-6.048000px;}
._12_c00321{margin-left:-4.800000px;}
._2c_c00321{margin-left:-3.072000px;}
._0_c00321{margin-left:-1.920000px;}
._6_c00321{width:1.440000px;}
._e_c00321{width:3.360000px;}
._15_c00321{width:4.416000px;}
._4_c00321{width:5.472000px;}
._10_c00321{width:6.720000px;}
._2_c00321{width:8.256000px;}
._3_c00321{width:9.312000px;}
._5_c00321{width:10.752000px;}
._14_c00321{width:11.904000px;}
._7_c00321{width:12.960000px;}
._21_c00321{width:14.880000px;}
._18_c00321{width:17.280000px;}
._f_c00321{width:19.200000px;}
._1_c00321{width:20.448000px;}
._19_c00321{width:22.080000px;}
._32_c00321{width:24.288000px;}
._c_c00321{width:25.440000px;}
._34_c00321{width:26.496000px;}
._16_c00321{width:27.648000px;}
._37_c00321{width:29.088000px;}
._17_c00321{width:30.432000px;}
._11_c00321{width:32.064000px;}
._33_c00321{width:33.408000px;}
._d_c00321{width:34.464000px;}
._13_c00321{width:36.192000px;}
._24_c00321{width:37.440000px;}
._1e_c00321{width:38.496000px;}
._b_c00321{width:40.512000px;}
._26_c00321{width:42.624000px;}
._38_c00321{width:43.680000px;}
._30_c00321{width:44.832000px;}
._2a_c00321{width:46.080000px;}
._1c_c00321{width:47.424000px;}
._29_c00321{width:48.960000px;}
._31_c00321{width:50.112000px;}
._27_c00321{width:54.528000px;}
._2b_c00321{width:56.736000px;}
._35_c00321{width:58.560000px;}
._36_c00321{width:60.672000px;}
._2e_c00321{width:62.688000px;}
._2d_c00321{width:64.776000px;}
._2f_c00321{width:70.080000px;}
._23_c00321{width:71.808000px;}
._1b_c00321{width:75.744000px;}
._22_c00321{width:84.768000px;}
._3d_c00321{width:193.824000px;}
._3b_c00321{width:608.640000px;}
.fc2_c00321{color:transparent;}
.fc1_c00321{color:rgb(128,128,128);}
.fc0_c00321{color:rgb(0,0,0);}
.fs2_c00321{font-size:48.000000px;}
.fs1_c00321{font-size:84.000000px;}
.fs0_c00321{font-size:96.000000px;}
.y0_c00321{bottom:0.000000px;}
.y26_c00321{bottom:3.105000px;}
.y25_c00321{bottom:7.228357px;}
.y24_c00321{bottom:71.580000px;}
.y23_c00321{bottom:104.730000px;}
.y22_c00321{bottom:138.780000px;}
.y21_c00321{bottom:172.830000px;}
.y20_c00321{bottom:207.330000px;}
.y1f_c00321{bottom:241.980000px;}
.y1e_c00321{bottom:275.730000px;}
.y1d_c00321{bottom:310.230000px;}
.y1c_c00321{bottom:344.130000px;}
.y1b_c00321{bottom:378.330000px;}
.y1a_c00321{bottom:412.530000px;}
.y19_c00321{bottom:446.580000px;}
.y18_c00321{bottom:480.330000px;}
.y17_c00321{bottom:514.080000px;}
.y16_c00321{bottom:547.380000px;}
.y15_c00321{bottom:581.880000px;}
.y14_c00321{bottom:615.930000px;}
.y13_c00321{bottom:649.380000px;}
.y12_c00321{bottom:683.130000px;}
.y11_c00321{bottom:717.180000px;}
.y10_c00321{bottom:750.330000px;}
.yf_c00321{bottom:784.380000px;}
.ye_c00321{bottom:817.830000px;}
.yd_c00321{bottom:851.880000px;}
.yc_c00321{bottom:885.030000px;}
.yb_c00321{bottom:918.780000px;}
.ya_c00321{bottom:952.530000px;}
.y9_c00321{bottom:985.230000px;}
.y8_c00321{bottom:1018.680000px;}
.y7_c00321{bottom:1051.980000px;}
.y6_c00321{bottom:1086.030000px;}
.y5_c00321{bottom:1119.480000px;}
.y4_c00321{bottom:1152.630000px;}
.y3_c00321{bottom:1185.930000px;}
.y2_c00321{bottom:1219.380000px;}
.y1_c00321{bottom:1252.080000px;}
.h4_c00321{height:13.200074px;}
.h5_c00321{height:43.804688px;}
.h2_c00321{height:121.546875px;}
.h3_c00321{height:122.146875px;}
.h0_c00321{height:1382.700000px;}
.h1_c00321{height:1383.000000px;}
.w2_c00321{width:104.875500px;}
.w0_c00321{width:863.175000px;}
.w1_c00321{width:863.250000px;}
.x0_c00321{left:0.000000px;}
.x6_c00321{left:261.150000px;}
.x1_c00321{left:271.350000px;}
.x3_c00321{left:273.000000px;}
.x2_c00321{left:274.050000px;}
.x4_c00321{left:275.700000px;}
.x5_c00321{left:277.350000px;}
.xb_c00321{left:383.401749px;}
.x7_c00321{left:493.050000px;}
.x8_c00321{left:499.500000px;}
.x9_c00321{left:579.900000px;}
.xa_c00321{left:587.550000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:-56.448000pt;}
.ws1_c00321{word-spacing:-20.565333pt;}
.ws2_c00321{word-spacing:0.000000pt;}
._3c_c00321{margin-left:-78.677333pt;}
._1a_c00321{margin-left:-74.496000pt;}
._9_c00321{margin-left:-25.002667pt;}
._8_c00321{margin-left:-22.101333pt;}
._a_c00321{margin-left:-18.688000pt;}
._3a_c00321{margin-left:-15.872000pt;}
._1f_c00321{margin-left:-14.549333pt;}
._39_c00321{margin-left:-11.008000pt;}
._20_c00321{margin-left:-10.048000pt;}
._25_c00321{margin-left:-7.936000pt;}
._28_c00321{margin-left:-6.570667pt;}
._1d_c00321{margin-left:-5.376000pt;}
._12_c00321{margin-left:-4.266667pt;}
._2c_c00321{margin-left:-2.730667pt;}
._0_c00321{margin-left:-1.706667pt;}
._6_c00321{width:1.280000pt;}
._e_c00321{width:2.986667pt;}
._15_c00321{width:3.925333pt;}
._4_c00321{width:4.864000pt;}
._10_c00321{width:5.973333pt;}
._2_c00321{width:7.338667pt;}
._3_c00321{width:8.277333pt;}
._5_c00321{width:9.557333pt;}
._14_c00321{width:10.581333pt;}
._7_c00321{width:11.520000pt;}
._21_c00321{width:13.226667pt;}
._18_c00321{width:15.360000pt;}
._f_c00321{width:17.066667pt;}
._1_c00321{width:18.176000pt;}
._19_c00321{width:19.626667pt;}
._32_c00321{width:21.589333pt;}
._c_c00321{width:22.613333pt;}
._34_c00321{width:23.552000pt;}
._16_c00321{width:24.576000pt;}
._37_c00321{width:25.856000pt;}
._17_c00321{width:27.050667pt;}
._11_c00321{width:28.501333pt;}
._33_c00321{width:29.696000pt;}
._d_c00321{width:30.634667pt;}
._13_c00321{width:32.170667pt;}
._24_c00321{width:33.280000pt;}
._1e_c00321{width:34.218667pt;}
._b_c00321{width:36.010667pt;}
._26_c00321{width:37.888000pt;}
._38_c00321{width:38.826667pt;}
._30_c00321{width:39.850667pt;}
._2a_c00321{width:40.960000pt;}
._1c_c00321{width:42.154667pt;}
._29_c00321{width:43.520000pt;}
._31_c00321{width:44.544000pt;}
._27_c00321{width:48.469333pt;}
._2b_c00321{width:50.432000pt;}
._35_c00321{width:52.053333pt;}
._36_c00321{width:53.930667pt;}
._2e_c00321{width:55.722667pt;}
._2d_c00321{width:57.578667pt;}
._2f_c00321{width:62.293333pt;}
._23_c00321{width:63.829333pt;}
._1b_c00321{width:67.328000pt;}
._22_c00321{width:75.349333pt;}
._3d_c00321{width:172.288000pt;}
._3b_c00321{width:541.013333pt;}
.fs2_c00321{font-size:42.666667pt;}
.fs1_c00321{font-size:74.666667pt;}
.fs0_c00321{font-size:85.333333pt;}
.y0_c00321{bottom:0.000000pt;}
.y26_c00321{bottom:2.760000pt;}
.y25_c00321{bottom:6.425206pt;}
.y24_c00321{bottom:63.626667pt;}
.y23_c00321{bottom:93.093333pt;}
.y22_c00321{bottom:123.360000pt;}
.y21_c00321{bottom:153.626667pt;}
.y20_c00321{bottom:184.293333pt;}
.y1f_c00321{bottom:215.093333pt;}
.y1e_c00321{bottom:245.093333pt;}
.y1d_c00321{bottom:275.760000pt;}
.y1c_c00321{bottom:305.893333pt;}
.y1b_c00321{bottom:336.293333pt;}
.y1a_c00321{bottom:366.693333pt;}
.y19_c00321{bottom:396.960000pt;}
.y18_c00321{bottom:426.960000pt;}
.y17_c00321{bottom:456.960000pt;}
.y16_c00321{bottom:486.560000pt;}
.y15_c00321{bottom:517.226667pt;}
.y14_c00321{bottom:547.493333pt;}
.y13_c00321{bottom:577.226667pt;}
.y12_c00321{bottom:607.226667pt;}
.y11_c00321{bottom:637.493333pt;}
.y10_c00321{bottom:666.960000pt;}
.yf_c00321{bottom:697.226667pt;}
.ye_c00321{bottom:726.960000pt;}
.yd_c00321{bottom:757.226667pt;}
.yc_c00321{bottom:786.693333pt;}
.yb_c00321{bottom:816.693333pt;}
.ya_c00321{bottom:846.693333pt;}
.y9_c00321{bottom:875.760000pt;}
.y8_c00321{bottom:905.493333pt;}
.y7_c00321{bottom:935.093333pt;}
.y6_c00321{bottom:965.360000pt;}
.y5_c00321{bottom:995.093333pt;}
.y4_c00321{bottom:1024.560000pt;}
.y3_c00321{bottom:1054.160000pt;}
.y2_c00321{bottom:1083.893333pt;}
.y1_c00321{bottom:1112.960000pt;}
.h4_c00321{height:11.733399pt;}
.h5_c00321{height:38.937500pt;}
.h2_c00321{height:108.041667pt;}
.h3_c00321{height:108.575000pt;}
.h0_c00321{height:1229.066667pt;}
.h1_c00321{height:1229.333333pt;}
.w2_c00321{width:93.222667pt;}
.w0_c00321{width:767.266667pt;}
.w1_c00321{width:767.333333pt;}
.x0_c00321{left:0.000000pt;}
.x6_c00321{left:232.133333pt;}
.x1_c00321{left:241.200000pt;}
.x3_c00321{left:242.666667pt;}
.x2_c00321{left:243.600000pt;}
.x4_c00321{left:245.066667pt;}
.x5_c00321{left:246.533333pt;}
.xb_c00321{left:340.801554pt;}
.x7_c00321{left:438.266667pt;}
.x8_c00321{left:444.000000pt;}
.x9_c00321{left:515.466667pt;}
.xa_c00321{left:522.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db056abe7fc12a00db398af0.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_3b9750a8f193d0f4d9b73ec1.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_ed4b39bf048e2d4a24aef9a4.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_e19232b0cf10724ceb302bdf.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;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_c00322;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls2_c00322{letter-spacing:-6.000000px;}
.ls4_c00322{letter-spacing:-3.000000px;}
.ls3_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:9.600000px;}
.ls1_c00322{letter-spacing:27.600000px;}
.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:-51.000000px;}
.ws1_c00322{word-spacing:-23.136000px;}
.ws2_c00322{word-spacing:0.000000px;}
._31_c00322{margin-left:-38.700000px;}
._2d_c00322{margin-left:-37.344000px;}
._2e_c00322{margin-left:-28.512000px;}
._39_c00322{margin-left:-26.454000px;}
._30_c00322{margin-left:-17.796000px;}
._2f_c00322{margin-left:-16.032000px;}
._27_c00322{margin-left:-13.002000px;}
._26_c00322{margin-left:-11.040000px;}
._c_c00322{margin-left:-9.024000px;}
._1e_c00322{margin-left:-7.734000px;}
._d_c00322{margin-left:-6.720000px;}
._16_c00322{margin-left:-5.322000px;}
._b_c00322{margin-left:-4.224000px;}
._e_c00322{margin-left:-3.168000px;}
._6_c00322{margin-left:-1.632000px;}
._a_c00322{width:1.728000px;}
._3_c00322{width:2.784000px;}
._10_c00322{width:3.840000px;}
._2_c00322{width:4.992000px;}
._4_c00322{width:6.432000px;}
._8_c00322{width:7.872000px;}
._22_c00322{width:9.216000px;}
._9_c00322{width:10.368000px;}
._7_c00322{width:12.096000px;}
._23_c00322{width:14.016000px;}
._14_c00322{width:15.840000px;}
._3c_c00322{width:16.896000px;}
._21_c00322{width:17.952000px;}
._5_c00322{width:19.200000px;}
._3d_c00322{width:20.544000px;}
._18_c00322{width:21.696000px;}
._2b_c00322{width:24.288000px;}
._2a_c00322{width:26.304000px;}
._28_c00322{width:28.128000px;}
._29_c00322{width:29.184000px;}
._13_c00322{width:30.240000px;}
._15_c00322{width:32.298000px;}
._1c_c00322{width:34.656000px;}
._20_c00322{width:36.192000px;}
._1a_c00322{width:37.824000px;}
._25_c00322{width:38.880000px;}
._0_c00322{width:40.374000px;}
._19_c00322{width:41.952000px;}
._1d_c00322{width:43.872000px;}
._11_c00322{width:45.696000px;}
._1f_c00322{width:47.520000px;}
._f_c00322{width:49.632000px;}
._38_c00322{width:51.798000px;}
._2c_c00322{width:53.472000px;}
._12_c00322{width:54.528000px;}
._1_c00322{width:56.184000px;}
._24_c00322{width:58.026000px;}
._3b_c00322{width:59.616000px;}
._17_c00322{width:61.056000px;}
._1b_c00322{width:62.688000px;}
._36_c00322{width:66.282000px;}
._3a_c00322{width:80.160000px;}
._33_c00322{width:104.352000px;}
._35_c00322{width:178.092000px;}
._32_c00322{width:229.440000px;}
._37_c00322{width:241.356000px;}
._34_c00322{width:259.620000px;}
.fc2_c00322{color:transparent;}
.fc1_c00322{color:rgb(128,128,128);}
.fc0_c00322{color:rgb(0,0,0);}
.fs3_c00322{font-size:48.000000px;}
.fs2_c00322{font-size:60.000000px;}
.fs1_c00322{font-size:96.000000px;}
.fs0_c00322{font-size:102.000000px;}
.y0_c00322{bottom:0.000000px;}
.y28_c00322{bottom:3.105000px;}
.y27_c00322{bottom:7.228369px;}
.y26_c00322{bottom:76.170000px;}
.y25_c00322{bottom:111.420000px;}
.y24_c00322{bottom:146.070000px;}
.y23_c00322{bottom:180.570000px;}
.y22_c00322{bottom:214.320000px;}
.y21_c00322{bottom:247.620000px;}
.y20_c00322{bottom:282.420000px;}
.y1f_c00322{bottom:316.470000px;}
.y1e_c00322{bottom:350.670000px;}
.y1d_c00322{bottom:384.120000px;}
.y1c_c00322{bottom:418.170000px;}
.y1b_c00322{bottom:451.620000px;}
.y1a_c00322{bottom:484.920000px;}
.y19_c00322{bottom:519.120000px;}
.y18_c00322{bottom:552.420000px;}
.y17_c00322{bottom:585.570000px;}
.y16_c00322{bottom:619.320000px;}
.y15_c00322{bottom:652.320000px;}
.y14_c00322{bottom:686.070000px;}
.y13_c00322{bottom:719.220000px;}
.y12_c00322{bottom:753.570000px;}
.y11_c00322{bottom:787.020000px;}
.y10_c00322{bottom:808.020000px;}
.yf_c00322{bottom:820.470000px;}
.ye_c00322{bottom:853.170000px;}
.yd_c00322{bottom:886.320000px;}
.yc_c00322{bottom:920.670000px;}
.yb_c00322{bottom:954.120000px;}
.ya_c00322{bottom:987.120000px;}
.y9_c00322{bottom:1021.170000px;}
.y8_c00322{bottom:1053.720000px;}
.y7_c00322{bottom:1086.420000px;}
.y6_c00322{bottom:1120.470000px;}
.y5_c00322{bottom:1154.220000px;}
.y4_c00322{bottom:1187.970000px;}
.y3_c00322{bottom:1220.670000px;}
.y2_c00322{bottom:1254.720000px;}
.y1_c00322{bottom:1286.820000px;}
.h5_c00322{height:13.200073px;}
.h6_c00322{height:43.804688px;}
.h4_c00322{height:75.966797px;}
.h2_c00322{height:119.381836px;}
.h3_c00322{height:121.546875px;}
.h0_c00322{height:1383.450000px;}
.h1_c00322{height:1383.750000px;}
.w2_c00322{width:104.875500px;}
.w0_c00322{width:878.025000px;}
.w1_c00322{width:878.250000px;}
.x0_c00322{left:0.000000px;}
.x7_c00322{left:47.850000px;}
.x6_c00322{left:48.900000px;}
.x5_c00322{left:49.950000px;}
.x4_c00322{left:51.000000px;}
.x3_c00322{left:52.650000px;}
.x2_c00322{left:53.700000px;}
.x9_c00322{left:55.350000px;}
.xa_c00322{left:57.000000px;}
.xc_c00322{left:58.050000px;}
.xb_c00322{left:61.200000px;}
.xd_c00322{left:62.850000px;}
.xe_c00322{left:65.550000px;}
.x8_c00322{left:262.200000px;}
.x10_c00322{left:390.826721px;}
.x1_c00322{left:522.450000px;}
.xf_c00322{left:584.550000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls2_c00322{letter-spacing:-5.333333pt;}
.ls4_c00322{letter-spacing:-2.666667pt;}
.ls3_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:8.533333pt;}
.ls1_c00322{letter-spacing:24.533333pt;}
.ws0_c00322{word-spacing:-45.333333pt;}
.ws1_c00322{word-spacing:-20.565333pt;}
.ws2_c00322{word-spacing:0.000000pt;}
._31_c00322{margin-left:-34.400000pt;}
._2d_c00322{margin-left:-33.194667pt;}
._2e_c00322{margin-left:-25.344000pt;}
._39_c00322{margin-left:-23.514667pt;}
._30_c00322{margin-left:-15.818667pt;}
._2f_c00322{margin-left:-14.250667pt;}
._27_c00322{margin-left:-11.557333pt;}
._26_c00322{margin-left:-9.813333pt;}
._c_c00322{margin-left:-8.021333pt;}
._1e_c00322{margin-left:-6.874667pt;}
._d_c00322{margin-left:-5.973333pt;}
._16_c00322{margin-left:-4.730667pt;}
._b_c00322{margin-left:-3.754667pt;}
._e_c00322{margin-left:-2.816000pt;}
._6_c00322{margin-left:-1.450667pt;}
._a_c00322{width:1.536000pt;}
._3_c00322{width:2.474667pt;}
._10_c00322{width:3.413333pt;}
._2_c00322{width:4.437333pt;}
._4_c00322{width:5.717333pt;}
._8_c00322{width:6.997333pt;}
._22_c00322{width:8.192000pt;}
._9_c00322{width:9.216000pt;}
._7_c00322{width:10.752000pt;}
._23_c00322{width:12.458667pt;}
._14_c00322{width:14.080000pt;}
._3c_c00322{width:15.018667pt;}
._21_c00322{width:15.957333pt;}
._5_c00322{width:17.066667pt;}
._3d_c00322{width:18.261333pt;}
._18_c00322{width:19.285333pt;}
._2b_c00322{width:21.589333pt;}
._2a_c00322{width:23.381333pt;}
._28_c00322{width:25.002667pt;}
._29_c00322{width:25.941333pt;}
._13_c00322{width:26.880000pt;}
._15_c00322{width:28.709333pt;}
._1c_c00322{width:30.805333pt;}
._20_c00322{width:32.170667pt;}
._1a_c00322{width:33.621333pt;}
._25_c00322{width:34.560000pt;}
._0_c00322{width:35.888000pt;}
._19_c00322{width:37.290667pt;}
._1d_c00322{width:38.997333pt;}
._11_c00322{width:40.618667pt;}
._1f_c00322{width:42.240000pt;}
._f_c00322{width:44.117333pt;}
._38_c00322{width:46.042667pt;}
._2c_c00322{width:47.530667pt;}
._12_c00322{width:48.469333pt;}
._1_c00322{width:49.941333pt;}
._24_c00322{width:51.578667pt;}
._3b_c00322{width:52.992000pt;}
._17_c00322{width:54.272000pt;}
._1b_c00322{width:55.722667pt;}
._36_c00322{width:58.917333pt;}
._3a_c00322{width:71.253333pt;}
._33_c00322{width:92.757333pt;}
._35_c00322{width:158.304000pt;}
._32_c00322{width:203.946667pt;}
._37_c00322{width:214.538667pt;}
._34_c00322{width:230.773333pt;}
.fs3_c00322{font-size:42.666667pt;}
.fs2_c00322{font-size:53.333333pt;}
.fs1_c00322{font-size:85.333333pt;}
.fs0_c00322{font-size:90.666667pt;}
.y0_c00322{bottom:0.000000pt;}
.y28_c00322{bottom:2.760000pt;}
.y27_c00322{bottom:6.425217pt;}
.y26_c00322{bottom:67.706667pt;}
.y25_c00322{bottom:99.040000pt;}
.y24_c00322{bottom:129.840000pt;}
.y23_c00322{bottom:160.506667pt;}
.y22_c00322{bottom:190.506667pt;}
.y21_c00322{bottom:220.106667pt;}
.y20_c00322{bottom:251.040000pt;}
.y1f_c00322{bottom:281.306667pt;}
.y1e_c00322{bottom:311.706667pt;}
.y1d_c00322{bottom:341.440000pt;}
.y1c_c00322{bottom:371.706667pt;}
.y1b_c00322{bottom:401.440000pt;}
.y1a_c00322{bottom:431.040000pt;}
.y19_c00322{bottom:461.440000pt;}
.y18_c00322{bottom:491.040000pt;}
.y17_c00322{bottom:520.506667pt;}
.y16_c00322{bottom:550.506667pt;}
.y15_c00322{bottom:579.840000pt;}
.y14_c00322{bottom:609.840000pt;}
.y13_c00322{bottom:639.306667pt;}
.y12_c00322{bottom:669.840000pt;}
.y11_c00322{bottom:699.573333pt;}
.y10_c00322{bottom:718.240000pt;}
.yf_c00322{bottom:729.306667pt;}
.ye_c00322{bottom:758.373333pt;}
.yd_c00322{bottom:787.840000pt;}
.yc_c00322{bottom:818.373333pt;}
.yb_c00322{bottom:848.106667pt;}
.ya_c00322{bottom:877.440000pt;}
.y9_c00322{bottom:907.706667pt;}
.y8_c00322{bottom:936.640000pt;}
.y7_c00322{bottom:965.706667pt;}
.y6_c00322{bottom:995.973333pt;}
.y5_c00322{bottom:1025.973333pt;}
.y4_c00322{bottom:1055.973333pt;}
.y3_c00322{bottom:1085.040000pt;}
.y2_c00322{bottom:1115.306667pt;}
.y1_c00322{bottom:1143.840000pt;}
.h5_c00322{height:11.733399pt;}
.h6_c00322{height:38.937500pt;}
.h4_c00322{height:67.526042pt;}
.h2_c00322{height:106.117188pt;}
.h3_c00322{height:108.041667pt;}
.h0_c00322{height:1229.733333pt;}
.h1_c00322{height:1230.000000pt;}
.w2_c00322{width:93.222667pt;}
.w0_c00322{width:780.466667pt;}
.w1_c00322{width:780.666667pt;}
.x0_c00322{left:0.000000pt;}
.x7_c00322{left:42.533333pt;}
.x6_c00322{left:43.466667pt;}
.x5_c00322{left:44.400000pt;}
.x4_c00322{left:45.333333pt;}
.x3_c00322{left:46.800000pt;}
.x2_c00322{left:47.733333pt;}
.x9_c00322{left:49.200000pt;}
.xa_c00322{left:50.666667pt;}
.xc_c00322{left:51.600000pt;}
.xb_c00322{left:54.400000pt;}
.xd_c00322{left:55.866667pt;}
.xe_c00322{left:58.266667pt;}
.x8_c00322{left:233.066667pt;}
.x10_c00322{left:347.401530pt;}
.x1_c00322{left:464.400000pt;}
.xf_c00322{left:519.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_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_4024ad8a84912ef071ced056.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_f58bd2d7f5143eac62fc7363.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00323{vertical-align:-21.600000px;}
.v0_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:-63.504000px;}
.ws2_c00323{word-spacing:-25.305000px;}
.ws3_c00323{word-spacing:0.000000px;}
.ws1_c00323{word-spacing:2051.136000px;}
._3d_c00323{margin-left:-26.976000px;}
._32_c00323{margin-left:-25.536000px;}
._2f_c00323{margin-left:-23.280000px;}
._36_c00323{margin-left:-19.776000px;}
._2a_c00323{margin-left:-15.336000px;}
._33_c00323{margin-left:-13.944000px;}
._27_c00323{margin-left:-7.848000px;}
._c_c00323{margin-left:-6.216000px;}
._5_c00323{margin-left:-4.416000px;}
._4_c00323{margin-left:-2.400000px;}
._d_c00323{margin-left:-1.176000px;}
._9_c00323{width:1.872000px;}
._0_c00323{width:3.744000px;}
._1_c00323{width:5.280000px;}
._b_c00323{width:6.600000px;}
._2_c00323{width:7.680000px;}
._10_c00323{width:8.712000px;}
._7_c00323{width:10.416000px;}
._11_c00323{width:12.576000px;}
._8_c00323{width:14.376000px;}
._13_c00323{width:16.200000px;}
._25_c00323{width:17.208000px;}
._6_c00323{width:18.600000px;}
._18_c00323{width:19.704000px;}
._17_c00323{width:21.456000px;}
._39_c00323{width:22.830000px;}
._35_c00323{width:24.312000px;}
._e_c00323{width:26.304000px;}
._1c_c00323{width:27.864000px;}
._1d_c00323{width:29.088000px;}
._12_c00323{width:30.240000px;}
._a_c00323{width:31.584000px;}
._20_c00323{width:33.360000px;}
._24_c00323{width:34.536000px;}
._f_c00323{width:36.480000px;}
._3_c00323{width:38.304000px;}
._22_c00323{width:39.360000px;}
._1b_c00323{width:41.088000px;}
._14_c00323{width:42.936000px;}
._16_c00323{width:44.160000px;}
._26_c00323{width:45.360000px;}
._15_c00323{width:46.680000px;}
._34_c00323{width:47.688000px;}
._19_c00323{width:49.728000px;}
._21_c00323{width:51.408000px;}
._1e_c00323{width:53.568000px;}
._1f_c00323{width:54.840000px;}
._29_c00323{width:55.944000px;}
._31_c00323{width:58.560000px;}
._28_c00323{width:60.000000px;}
._1a_c00323{width:62.208000px;}
._30_c00323{width:66.504000px;}
._38_c00323{width:68.232000px;}
._2c_c00323{width:70.896000px;}
._2e_c00323{width:77.472000px;}
._37_c00323{width:84.360000px;}
._2d_c00323{width:142.872000px;}
._23_c00323{width:148.656000px;}
._3b_c00323{width:169.371000px;}
._2b_c00323{width:217.488000px;}
._3a_c00323{width:271.605000px;}
._3c_c00323{width:380.616000px;}
.fc2_c00323{color:transparent;}
.fc1_c00323{color:rgb(128,128,128);}
.fc0_c00323{color:rgb(0,0,0);}
.fs4_c00323{font-size:48.000000px;}
.fs3_c00323{font-size:60.000000px;}
.fs1_c00323{font-size:84.000000px;}
.fs0_c00323{font-size:96.000000px;}
.fs2_c00323{font-size:105.000000px;}
.y0_c00323{bottom:0.000000px;}
.y26_c00323{bottom:3.105000px;}
.y25_c00323{bottom:7.228357px;}
.y24_c00323{bottom:51.930000px;}
.y23_c00323{bottom:79.680000px;}
.y22_c00323{bottom:117.180000px;}
.y21_c00323{bottom:153.180000px;}
.y20_c00323{bottom:186.630000px;}
.y1f_c00323{bottom:221.730000px;}
.y1e_c00323{bottom:255.180000px;}
.y1d_c00323{bottom:289.680000px;}
.y1c_c00323{bottom:323.730000px;}
.y1b_c00323{bottom:357.780000px;}
.y1a_c00323{bottom:392.130000px;}
.y19_c00323{bottom:425.880000px;}
.y18_c00323{bottom:459.030000px;}
.y17_c00323{bottom:493.530000px;}
.y16_c00323{bottom:527.130000px;}
.y15_c00323{bottom:561.030000px;}
.y14_c00323{bottom:594.330000px;}
.y13_c00323{bottom:627.780000px;}
.y12_c00323{bottom:662.130000px;}
.y11_c00323{bottom:695.880000px;}
.y10_c00323{bottom:729.330000px;}
.yf_c00323{bottom:763.380000px;}
.ye_c00323{bottom:796.830000px;}
.yd_c00323{bottom:830.580000px;}
.yc_c00323{bottom:863.730000px;}
.yb_c00323{bottom:897.780000px;}
.ya_c00323{bottom:930.930000px;}
.y9_c00323{bottom:964.680000px;}
.y8_c00323{bottom:997.230000px;}
.y7_c00323{bottom:1030.680000px;}
.y6_c00323{bottom:1064.130000px;}
.y5_c00323{bottom:1096.980000px;}
.y4_c00323{bottom:1131.330000px;}
.y3_c00323{bottom:1164.480000px;}
.y2_c00323{bottom:1197.480000px;}
.y1_c00323{bottom:1230.930000px;}
.h5_c00323{height:13.200074px;}
.h6_c00323{height:43.804688px;}
.h4_c00323{height:75.966797px;}
.h2_c00323{height:121.546875px;}
.h3_c00323{height:132.941895px;}
.h1_c00323{height:1351.500000px;}
.h0_c00323{height:1351.650000px;}
.w2_c00323{width:104.875500px;}
.w0_c00323{width:843.450000px;}
.w1_c00323{width:843.750000px;}
.x0_c00323{left:0.000000px;}
.x8_c00323{left:251.100000px;}
.x1_c00323{left:259.500000px;}
.x2_c00323{left:261.600000px;}
.x3_c00323{left:263.250000px;}
.x4_c00323{left:264.300000px;}
.x6_c00323{left:267.000000px;}
.x5_c00323{left:371.250000px;}
.x9_c00323{left:373.539230px;}
.x7_c00323{left:487.350000px;}
@media print{
.v1_c00323{vertical-align:-19.200000pt;}
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:-56.448000pt;}
.ws2_c00323{word-spacing:-22.493333pt;}
.ws3_c00323{word-spacing:0.000000pt;}
.ws1_c00323{word-spacing:1823.232000pt;}
._3d_c00323{margin-left:-23.978667pt;}
._32_c00323{margin-left:-22.698667pt;}
._2f_c00323{margin-left:-20.693333pt;}
._36_c00323{margin-left:-17.578667pt;}
._2a_c00323{margin-left:-13.632000pt;}
._33_c00323{margin-left:-12.394667pt;}
._27_c00323{margin-left:-6.976000pt;}
._c_c00323{margin-left:-5.525333pt;}
._5_c00323{margin-left:-3.925333pt;}
._4_c00323{margin-left:-2.133333pt;}
._d_c00323{margin-left:-1.045333pt;}
._9_c00323{width:1.664000pt;}
._0_c00323{width:3.328000pt;}
._1_c00323{width:4.693333pt;}
._b_c00323{width:5.866667pt;}
._2_c00323{width:6.826667pt;}
._10_c00323{width:7.744000pt;}
._7_c00323{width:9.258667pt;}
._11_c00323{width:11.178667pt;}
._8_c00323{width:12.778667pt;}
._13_c00323{width:14.400000pt;}
._25_c00323{width:15.296000pt;}
._6_c00323{width:16.533333pt;}
._18_c00323{width:17.514667pt;}
._17_c00323{width:19.072000pt;}
._39_c00323{width:20.293333pt;}
._35_c00323{width:21.610667pt;}
._e_c00323{width:23.381333pt;}
._1c_c00323{width:24.768000pt;}
._1d_c00323{width:25.856000pt;}
._12_c00323{width:26.880000pt;}
._a_c00323{width:28.074667pt;}
._20_c00323{width:29.653333pt;}
._24_c00323{width:30.698667pt;}
._f_c00323{width:32.426667pt;}
._3_c00323{width:34.048000pt;}
._22_c00323{width:34.986667pt;}
._1b_c00323{width:36.522667pt;}
._14_c00323{width:38.165333pt;}
._16_c00323{width:39.253333pt;}
._26_c00323{width:40.320000pt;}
._15_c00323{width:41.493333pt;}
._34_c00323{width:42.389333pt;}
._19_c00323{width:44.202667pt;}
._21_c00323{width:45.696000pt;}
._1e_c00323{width:47.616000pt;}
._1f_c00323{width:48.746667pt;}
._29_c00323{width:49.728000pt;}
._31_c00323{width:52.053333pt;}
._28_c00323{width:53.333333pt;}
._1a_c00323{width:55.296000pt;}
._30_c00323{width:59.114667pt;}
._38_c00323{width:60.650667pt;}
._2c_c00323{width:63.018667pt;}
._2e_c00323{width:68.864000pt;}
._37_c00323{width:74.986667pt;}
._2d_c00323{width:126.997333pt;}
._23_c00323{width:132.138667pt;}
._3b_c00323{width:150.552000pt;}
._2b_c00323{width:193.322667pt;}
._3a_c00323{width:241.426667pt;}
._3c_c00323{width:338.325333pt;}
.fs4_c00323{font-size:42.666667pt;}
.fs3_c00323{font-size:53.333333pt;}
.fs1_c00323{font-size:74.666667pt;}
.fs0_c00323{font-size:85.333333pt;}
.fs2_c00323{font-size:93.333333pt;}
.y0_c00323{bottom:0.000000pt;}
.y26_c00323{bottom:2.760000pt;}
.y25_c00323{bottom:6.425206pt;}
.y24_c00323{bottom:46.160000pt;}
.y23_c00323{bottom:70.826667pt;}
.y22_c00323{bottom:104.160000pt;}
.y21_c00323{bottom:136.160000pt;}
.y20_c00323{bottom:165.893333pt;}
.y1f_c00323{bottom:197.093333pt;}
.y1e_c00323{bottom:226.826667pt;}
.y1d_c00323{bottom:257.493333pt;}
.y1c_c00323{bottom:287.760000pt;}
.y1b_c00323{bottom:318.026667pt;}
.y1a_c00323{bottom:348.560000pt;}
.y19_c00323{bottom:378.560000pt;}
.y18_c00323{bottom:408.026667pt;}
.y17_c00323{bottom:438.693333pt;}
.y16_c00323{bottom:468.560000pt;}
.y15_c00323{bottom:498.693333pt;}
.y14_c00323{bottom:528.293333pt;}
.y13_c00323{bottom:558.026667pt;}
.y12_c00323{bottom:588.560000pt;}
.y11_c00323{bottom:618.560000pt;}
.y10_c00323{bottom:648.293333pt;}
.yf_c00323{bottom:678.560000pt;}
.ye_c00323{bottom:708.293333pt;}
.yd_c00323{bottom:738.293333pt;}
.yc_c00323{bottom:767.760000pt;}
.yb_c00323{bottom:798.026667pt;}
.ya_c00323{bottom:827.493333pt;}
.y9_c00323{bottom:857.493333pt;}
.y8_c00323{bottom:886.426667pt;}
.y7_c00323{bottom:916.160000pt;}
.y6_c00323{bottom:945.893333pt;}
.y5_c00323{bottom:975.093333pt;}
.y4_c00323{bottom:1005.626667pt;}
.y3_c00323{bottom:1035.093333pt;}
.y2_c00323{bottom:1064.426667pt;}
.y1_c00323{bottom:1094.160000pt;}
.h5_c00323{height:11.733399pt;}
.h6_c00323{height:38.937500pt;}
.h4_c00323{height:67.526042pt;}
.h2_c00323{height:108.041667pt;}
.h3_c00323{height:118.170573pt;}
.h1_c00323{height:1201.333333pt;}
.h0_c00323{height:1201.466667pt;}
.w2_c00323{width:93.222667pt;}
.w0_c00323{width:749.733333pt;}
.w1_c00323{width:750.000000pt;}
.x0_c00323{left:0.000000pt;}
.x8_c00323{left:223.200000pt;}
.x1_c00323{left:230.666667pt;}
.x2_c00323{left:232.533333pt;}
.x3_c00323{left:234.000000pt;}
.x4_c00323{left:234.933333pt;}
.x6_c00323{left:237.333333pt;}
.x5_c00323{left:330.000000pt;}
.x9_c00323{left:332.034871pt;}
.x7_c00323{left:433.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d6c3ceb0bfbfd3ff358fc9e3.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_a03d64dbc91615d70490856f.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls1_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:16.200000px;}
.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:-63.504000px;}
.ws1_c00324{word-spacing:-51.000000px;}
.ws2_c00324{word-spacing:0.000000px;}
._20_c00324{margin-left:-17.952000px;}
._22_c00324{margin-left:-13.632000px;}
._38_c00324{margin-left:-12.576000px;}
._21_c00324{margin-left:-11.328000px;}
._10_c00324{margin-left:-9.792000px;}
._37_c00324{margin-left:-8.256000px;}
._c_c00324{margin-left:-7.104000px;}
._b_c00324{margin-left:-5.664000px;}
._2_c00324{margin-left:-4.416000px;}
._9_c00324{margin-left:-2.880000px;}
._8_c00324{margin-left:-1.344000px;}
._4_c00324{width:1.536000px;}
._6_c00324{width:2.880000px;}
._7_c00324{width:4.416000px;}
._a_c00324{width:6.144000px;}
._12_c00324{width:7.968000px;}
._16_c00324{width:9.792000px;}
._31_c00324{width:11.040000px;}
._19_c00324{width:12.192000px;}
._14_c00324{width:13.824000px;}
._34_c00324{width:15.168000px;}
._17_c00324{width:16.224000px;}
._18_c00324{width:17.568000px;}
._0_c00324{width:19.392000px;}
._5_c00324{width:20.832000px;}
._39_c00324{width:22.080000px;}
._2a_c00324{width:24.672000px;}
._1e_c00324{width:26.304000px;}
._1d_c00324{width:28.032000px;}
._30_c00324{width:29.568000px;}
._1b_c00324{width:31.776000px;}
._36_c00324{width:33.600000px;}
._15_c00324{width:34.752000px;}
._1_c00324{width:36.288000px;}
._35_c00324{width:37.824000px;}
._13_c00324{width:39.072000px;}
._d_c00324{width:40.704000px;}
._e_c00324{width:42.528000px;}
._23_c00324{width:44.448000px;}
._f_c00324{width:45.792000px;}
._1f_c00324{width:47.520000px;}
._28_c00324{width:49.152000px;}
._32_c00324{width:51.552000px;}
._2c_c00324{width:54.528000px;}
._27_c00324{width:55.776000px;}
._2b_c00324{width:57.696000px;}
._1a_c00324{width:59.424000px;}
._2d_c00324{width:60.672000px;}
._2f_c00324{width:61.728000px;}
._3b_c00324{width:63.360000px;}
._1c_c00324{width:64.704000px;}
._2e_c00324{width:67.392000px;}
._3a_c00324{width:70.272000px;}
._29_c00324{width:71.424000px;}
._24_c00324{width:75.378000px;}
._3_c00324{width:90.240000px;}
._11_c00324{width:92.064000px;}
._33_c00324{width:153.792000px;}
._25_c00324{width:166.710000px;}
._26_c00324{width:256.320000px;}
._3c_c00324{width:793.392000px;}
._3d_c00324{width:831.264000px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(128,128,128);}
.fc0_c00324{color:rgb(0,0,0);}
.fs3_c00324{font-size:48.000000px;}
.fs2_c00324{font-size:84.000000px;}
.fs0_c00324{font-size:96.000000px;}
.fs1_c00324{font-size:102.000000px;}
.y0_c00324{bottom:0.000000px;}
.y26_c00324{bottom:3.105000px;}
.y25_c00324{bottom:7.228369px;}
.y24_c00324{bottom:86.670000px;}
.y23_c00324{bottom:120.870000px;}
.y22_c00324{bottom:155.220000px;}
.y21_c00324{bottom:189.570000px;}
.y20_c00324{bottom:223.320000px;}
.y1f_c00324{bottom:257.070000px;}
.y1e_c00324{bottom:290.970000px;}
.y1d_c00324{bottom:324.720000px;}
.y1c_c00324{bottom:358.320000px;}
.y1b_c00324{bottom:391.770000px;}
.y1a_c00324{bottom:425.220000px;}
.y19_c00324{bottom:458.670000px;}
.y18_c00324{bottom:491.970000px;}
.y17_c00324{bottom:525.420000px;}
.y16_c00324{bottom:559.170000px;}
.y15_c00324{bottom:592.620000px;}
.y14_c00324{bottom:626.670000px;}
.y13_c00324{bottom:660.120000px;}
.y12_c00324{bottom:693.870000px;}
.y11_c00324{bottom:726.870000px;}
.y10_c00324{bottom:760.620000px;}
.yf_c00324{bottom:793.470000px;}
.ye_c00324{bottom:826.770000px;}
.yd_c00324{bottom:859.170000px;}
.yc_c00324{bottom:892.920000px;}
.yb_c00324{bottom:925.770000px;}
.ya_c00324{bottom:959.520000px;}
.y9_c00324{bottom:992.970000px;}
.y8_c00324{bottom:1026.720000px;}
.y7_c00324{bottom:1059.720000px;}
.y6_c00324{bottom:1093.470000px;}
.y5_c00324{bottom:1126.620000px;}
.y4_c00324{bottom:1159.620000px;}
.y3_c00324{bottom:1193.070000px;}
.y2_c00324{bottom:1226.520000px;}
.y1_c00324{bottom:1260.270000px;}
.h4_c00324{height:13.200073px;}
.h5_c00324{height:43.804688px;}
.h2_c00324{height:121.546875px;}
.h3_c00324{height:129.143555px;}
.h0_c00324{height:1383.450000px;}
.h1_c00324{height:1383.750000px;}
.w2_c00324{width:104.875500px;}
.w0_c00324{width:878.025000px;}
.w1_c00324{width:878.250000px;}
.x0_c00324{left:0.000000px;}
.x8_c00324{left:39.600000px;}
.x9_c00324{left:40.800000px;}
.x7_c00324{left:42.900000px;}
.x6_c00324{left:44.550000px;}
.x4_c00324{left:45.600000px;}
.x3_c00324{left:46.650000px;}
.x2_c00324{left:48.300000px;}
.x5_c00324{left:52.650000px;}
.xa_c00324{left:54.750000px;}
.x1_c00324{left:96.450000px;}
.xb_c00324{left:390.826721px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls1_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:14.400000pt;}
.ws0_c00324{word-spacing:-56.448000pt;}
.ws1_c00324{word-spacing:-45.333333pt;}
.ws2_c00324{word-spacing:0.000000pt;}
._20_c00324{margin-left:-15.957333pt;}
._22_c00324{margin-left:-12.117333pt;}
._38_c00324{margin-left:-11.178667pt;}
._21_c00324{margin-left:-10.069333pt;}
._10_c00324{margin-left:-8.704000pt;}
._37_c00324{margin-left:-7.338667pt;}
._c_c00324{margin-left:-6.314667pt;}
._b_c00324{margin-left:-5.034667pt;}
._2_c00324{margin-left:-3.925333pt;}
._9_c00324{margin-left:-2.560000pt;}
._8_c00324{margin-left:-1.194667pt;}
._4_c00324{width:1.365333pt;}
._6_c00324{width:2.560000pt;}
._7_c00324{width:3.925333pt;}
._a_c00324{width:5.461333pt;}
._12_c00324{width:7.082667pt;}
._16_c00324{width:8.704000pt;}
._31_c00324{width:9.813333pt;}
._19_c00324{width:10.837333pt;}
._14_c00324{width:12.288000pt;}
._34_c00324{width:13.482667pt;}
._17_c00324{width:14.421333pt;}
._18_c00324{width:15.616000pt;}
._0_c00324{width:17.237333pt;}
._5_c00324{width:18.517333pt;}
._39_c00324{width:19.626667pt;}
._2a_c00324{width:21.930667pt;}
._1e_c00324{width:23.381333pt;}
._1d_c00324{width:24.917333pt;}
._30_c00324{width:26.282667pt;}
._1b_c00324{width:28.245333pt;}
._36_c00324{width:29.866667pt;}
._15_c00324{width:30.890667pt;}
._1_c00324{width:32.256000pt;}
._35_c00324{width:33.621333pt;}
._13_c00324{width:34.730667pt;}
._d_c00324{width:36.181333pt;}
._e_c00324{width:37.802667pt;}
._23_c00324{width:39.509333pt;}
._f_c00324{width:40.704000pt;}
._1f_c00324{width:42.240000pt;}
._28_c00324{width:43.690667pt;}
._32_c00324{width:45.824000pt;}
._2c_c00324{width:48.469333pt;}
._27_c00324{width:49.578667pt;}
._2b_c00324{width:51.285333pt;}
._1a_c00324{width:52.821333pt;}
._2d_c00324{width:53.930667pt;}
._2f_c00324{width:54.869333pt;}
._3b_c00324{width:56.320000pt;}
._1c_c00324{width:57.514667pt;}
._2e_c00324{width:59.904000pt;}
._3a_c00324{width:62.464000pt;}
._29_c00324{width:63.488000pt;}
._24_c00324{width:67.002667pt;}
._3_c00324{width:80.213333pt;}
._11_c00324{width:81.834667pt;}
._33_c00324{width:136.704000pt;}
._25_c00324{width:148.186667pt;}
._26_c00324{width:227.840000pt;}
._3c_c00324{width:705.237333pt;}
._3d_c00324{width:738.901333pt;}
.fs3_c00324{font-size:42.666667pt;}
.fs2_c00324{font-size:74.666667pt;}
.fs0_c00324{font-size:85.333333pt;}
.fs1_c00324{font-size:90.666667pt;}
.y0_c00324{bottom:0.000000pt;}
.y26_c00324{bottom:2.760000pt;}
.y25_c00324{bottom:6.425217pt;}
.y24_c00324{bottom:77.040000pt;}
.y23_c00324{bottom:107.440000pt;}
.y22_c00324{bottom:137.973333pt;}
.y21_c00324{bottom:168.506667pt;}
.y20_c00324{bottom:198.506667pt;}
.y1f_c00324{bottom:228.506667pt;}
.y1e_c00324{bottom:258.640000pt;}
.y1d_c00324{bottom:288.640000pt;}
.y1c_c00324{bottom:318.506667pt;}
.y1b_c00324{bottom:348.240000pt;}
.y1a_c00324{bottom:377.973333pt;}
.y19_c00324{bottom:407.706667pt;}
.y18_c00324{bottom:437.306667pt;}
.y17_c00324{bottom:467.040000pt;}
.y16_c00324{bottom:497.040000pt;}
.y15_c00324{bottom:526.773333pt;}
.y14_c00324{bottom:557.040000pt;}
.y13_c00324{bottom:586.773333pt;}
.y12_c00324{bottom:616.773333pt;}
.y11_c00324{bottom:646.106667pt;}
.y10_c00324{bottom:676.106667pt;}
.yf_c00324{bottom:705.306667pt;}
.ye_c00324{bottom:734.906667pt;}
.yd_c00324{bottom:763.706667pt;}
.yc_c00324{bottom:793.706667pt;}
.yb_c00324{bottom:822.906667pt;}
.ya_c00324{bottom:852.906667pt;}
.y9_c00324{bottom:882.640000pt;}
.y8_c00324{bottom:912.640000pt;}
.y7_c00324{bottom:941.973333pt;}
.y6_c00324{bottom:971.973333pt;}
.y5_c00324{bottom:1001.440000pt;}
.y4_c00324{bottom:1030.773333pt;}
.y3_c00324{bottom:1060.506667pt;}
.y2_c00324{bottom:1090.240000pt;}
.y1_c00324{bottom:1120.240000pt;}
.h4_c00324{height:11.733399pt;}
.h5_c00324{height:38.937500pt;}
.h2_c00324{height:108.041667pt;}
.h3_c00324{height:114.794271pt;}
.h0_c00324{height:1229.733333pt;}
.h1_c00324{height:1230.000000pt;}
.w2_c00324{width:93.222667pt;}
.w0_c00324{width:780.466667pt;}
.w1_c00324{width:780.666667pt;}
.x0_c00324{left:0.000000pt;}
.x8_c00324{left:35.200000pt;}
.x9_c00324{left:36.266667pt;}
.x7_c00324{left:38.133333pt;}
.x6_c00324{left:39.600000pt;}
.x4_c00324{left:40.533333pt;}
.x3_c00324{left:41.466667pt;}
.x2_c00324{left:42.933333pt;}
.x5_c00324{left:46.800000pt;}
.xa_c00324{left:48.666667pt;}
.x1_c00324{left:85.733333pt;}
.xb_c00324{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad0a8e46ee3a6d24e81d4ed1.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.314453;font-style:normal;font-weight:normal;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_5c846eaac3abc1ca04c494d2.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_2e83e6e75cb37c931f8ccd83.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_c6c757b0ab9fa33f3341810f.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_ad6228883c14322903cbfc30.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00325;src:url('chunks/assets/font_73742e2e660b2a536c02d61e.woff2')format("woff");}.ff7_c00325{font-family:ff7_c00325;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00325;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00325{font-family:ff8_c00325;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls9_c00325{letter-spacing:0.000000px;}
.ls8_c00325{letter-spacing:3.000000px;}
.ls6_c00325{letter-spacing:5.880000px;}
.ls0_c00325{letter-spacing:6.396000px;}
.ls4_c00325{letter-spacing:6.648000px;}
.ls1_c00325{letter-spacing:7.440000px;}
.ls2_c00325{letter-spacing:11.304000px;}
.ls3_c00325{letter-spacing:11.400000px;}
.lsa_c00325{letter-spacing:15.000000px;}
.ls7_c00325{letter-spacing:31.236000px;}
.ls5_c00325{letter-spacing:32.064000px;}
.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;}
}
.ws1_c00325{word-spacing:-63.504000px;}
.ws2_c00325{word-spacing:-51.000000px;}
.ws3_c00325{word-spacing:-25.939200px;}
.ws4_c00325{word-spacing:-23.136000px;}
.ws0_c00325{word-spacing:-20.967000px;}
.ws5_c00325{word-spacing:0.000000px;}
._6_c00325{margin-left:-41.412000px;}
._3_c00325{margin-left:-38.976000px;}
._5_c00325{margin-left:-32.190000px;}
._2_c00325{margin-left:-26.796000px;}
._a_c00325{margin-left:-24.969000px;}
._44_c00325{margin-left:-21.888000px;}
._8_c00325{margin-left:-20.097000px;}
._7_c00325{margin-left:-18.858000px;}
._41_c00325{margin-left:-17.490000px;}
._24_c00325{margin-left:-16.407000px;}
._b_c00325{margin-left:-14.790000px;}
._c_c00325{margin-left:-13.137000px;}
._9_c00325{margin-left:-11.571000px;}
._19_c00325{margin-left:-10.158000px;}
._20_c00325{margin-left:-8.280000px;}
._1d_c00325{margin-left:-6.522000px;}
._47_c00325{margin-left:-5.298000px;}
._26_c00325{margin-left:-4.110000px;}
._15_c00325{margin-left:-3.072000px;}
._4_c00325{margin-left:-1.479000px;}
._0_c00325{width:1.392000px;}
._e_c00325{width:2.880000px;}
._1a_c00325{width:3.984000px;}
._f_c00325{width:5.184000px;}
._3d_c00325{width:6.198000px;}
._12_c00325{width:7.200000px;}
._14_c00325{width:8.736000px;}
._11_c00325{width:10.176000px;}
._29_c00325{width:11.712000px;}
._1c_c00325{width:13.248000px;}
._21_c00325{width:14.688000px;}
._1f_c00325{width:16.464000px;}
._2a_c00325{width:17.736000px;}
._1b_c00325{width:19.704000px;}
._2b_c00325{width:21.072000px;}
._1e_c00325{width:24.474000px;}
._2d_c00325{width:26.316000px;}
._10_c00325{width:27.528000px;}
._30_c00325{width:29.376000px;}
._22_c00325{width:30.960000px;}
._27_c00325{width:32.628000px;}
._13_c00325{width:34.080000px;}
._38_c00325{width:35.703000px;}
._16_c00325{width:37.152000px;}
._18_c00325{width:38.496000px;}
._39_c00325{width:39.606000px;}
._17_c00325{width:40.704000px;}
._25_c00325{width:42.864000px;}
._28_c00325{width:45.042000px;}
._23_c00325{width:47.310000px;}
._1_c00325{width:49.824000px;}
._2c_c00325{width:51.984000px;}
._3a_c00325{width:54.336000px;}
._2e_c00325{width:56.352000px;}
._37_c00325{width:58.854000px;}
._45_c00325{width:60.000000px;}
._32_c00325{width:61.104000px;}
._34_c00325{width:62.592000px;}
._36_c00325{width:65.088000px;}
._3b_c00325{width:66.324000px;}
._35_c00325{width:67.392000px;}
._42_c00325{width:69.438000px;}
._40_c00325{width:70.458000px;}
._2f_c00325{width:72.432000px;}
._3f_c00325{width:75.705000px;}
._33_c00325{width:79.776000px;}
._3e_c00325{width:81.765000px;}
._31_c00325{width:84.432000px;}
._43_c00325{width:85.650000px;}
._3c_c00325{width:96.672000px;}
._d_c00325{width:109.224000px;}
._46_c00325{width:165.579000px;}
.fc2_c00325{color:transparent;}
.fc1_c00325{color:rgb(128,128,128);}
.fc0_c00325{color:rgb(0,0,0);}
.fs0_c00325{font-size:24.000000px;}
.fs2_c00325{font-size:36.000000px;}
.fs7_c00325{font-size:48.000000px;}
.fs6_c00325{font-size:67.200000px;}
.fs4_c00325{font-size:84.000000px;}
.fs1_c00325{font-size:87.000000px;}
.fs3_c00325{font-size:96.000000px;}
.fs5_c00325{font-size:102.000000px;}
.y0_c00325{bottom:0.000000px;}
.y27_c00325{bottom:3.105000px;}
.y26_c00325{bottom:7.228357px;}
.y25_c00325{bottom:120.780000px;}
.y24_c00325{bottom:156.630000px;}
.y23_c00325{bottom:190.380000px;}
.y22_c00325{bottom:224.730000px;}
.y21_c00325{bottom:258.630000px;}
.y1_c00325{bottom:261.180000px;}
.y20_c00325{bottom:292.980000px;}
.y1f_c00325{bottom:327.030000px;}
.y1e_c00325{bottom:359.430000px;}
.y1d_c00325{bottom:394.530000px;}
.y1c_c00325{bottom:427.380000px;}
.y1b_c00325{bottom:462.030000px;}
.y1a_c00325{bottom:495.180000px;}
.y19_c00325{bottom:529.230000px;}
.y18_c00325{bottom:561.630000px;}
.y17_c00325{bottom:596.730000px;}
.y16_c00325{bottom:630.480000px;}
.y15_c00325{bottom:663.930000px;}
.y14_c00325{bottom:697.680000px;}
.y13_c00325{bottom:732.030000px;}
.y12_c00325{bottom:764.880000px;}
.y11_c00325{bottom:798.630000px;}
.y10_c00325{bottom:831.930000px;}
.yf_c00325{bottom:865.980000px;}
.ye_c00325{bottom:899.430000px;}
.yd_c00325{bottom:932.580000px;}
.yc_c00325{bottom:966.330000px;}
.yb_c00325{bottom:999.330000px;}
.ya_c00325{bottom:1032.030000px;}
.y9_c00325{bottom:1065.480000px;}
.y8_c00325{bottom:1099.680000px;}
.y7_c00325{bottom:1133.280000px;}
.y6_c00325{bottom:1166.130000px;}
.y5_c00325{bottom:1199.880000px;}
.y4_c00325{bottom:1234.230000px;}
.y3_c00325{bottom:1266.330000px;}
.y2_c00325{bottom:1300.680000px;}
.h5_c00325{height:13.200074px;}
.h6_c00325{height:43.804688px;}
.h3_c00325{height:45.580078px;}
.h2_c00325{height:110.151855px;}
.h4_c00325{height:121.546875px;}
.h0_c00325{height:1382.700000px;}
.h1_c00325{height:1383.000000px;}
.w2_c00325{width:104.875500px;}
.w0_c00325{width:863.175000px;}
.w1_c00325{width:863.250000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:57.750000px;}
.x3_c00325{left:247.650000px;}
.x6_c00325{left:249.150000px;}
.x5_c00325{left:250.200000px;}
.x7_c00325{left:251.400000px;}
.x4_c00325{left:252.900000px;}
.x8_c00325{left:254.100000px;}
.xb_c00325{left:255.150000px;}
.x9_c00325{left:256.200000px;}
.xa_c00325{left:257.250000px;}
.xd_c00325{left:258.900000px;}
.xc_c00325{left:285.900000px;}
.x2_c00325{left:295.650000px;}
.xe_c00325{left:383.401749px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls9_c00325{letter-spacing:0.000000pt;}
.ls8_c00325{letter-spacing:2.666667pt;}
.ls6_c00325{letter-spacing:5.226667pt;}
.ls0_c00325{letter-spacing:5.685333pt;}
.ls4_c00325{letter-spacing:5.909333pt;}
.ls1_c00325{letter-spacing:6.613333pt;}
.ls2_c00325{letter-spacing:10.048000pt;}
.ls3_c00325{letter-spacing:10.133333pt;}
.lsa_c00325{letter-spacing:13.333333pt;}
.ls7_c00325{letter-spacing:27.765333pt;}
.ls5_c00325{letter-spacing:28.501333pt;}
.ws1_c00325{word-spacing:-56.448000pt;}
.ws2_c00325{word-spacing:-45.333333pt;}
.ws3_c00325{word-spacing:-23.057067pt;}
.ws4_c00325{word-spacing:-20.565333pt;}
.ws0_c00325{word-spacing:-18.637333pt;}
.ws5_c00325{word-spacing:0.000000pt;}
._6_c00325{margin-left:-36.810667pt;}
._3_c00325{margin-left:-34.645333pt;}
._5_c00325{margin-left:-28.613333pt;}
._2_c00325{margin-left:-23.818667pt;}
._a_c00325{margin-left:-22.194667pt;}
._44_c00325{margin-left:-19.456000pt;}
._8_c00325{margin-left:-17.864000pt;}
._7_c00325{margin-left:-16.762667pt;}
._41_c00325{margin-left:-15.546667pt;}
._24_c00325{margin-left:-14.584000pt;}
._b_c00325{margin-left:-13.146667pt;}
._c_c00325{margin-left:-11.677333pt;}
._9_c00325{margin-left:-10.285333pt;}
._19_c00325{margin-left:-9.029333pt;}
._20_c00325{margin-left:-7.360000pt;}
._1d_c00325{margin-left:-5.797333pt;}
._47_c00325{margin-left:-4.709333pt;}
._26_c00325{margin-left:-3.653333pt;}
._15_c00325{margin-left:-2.730667pt;}
._4_c00325{margin-left:-1.314667pt;}
._0_c00325{width:1.237333pt;}
._e_c00325{width:2.560000pt;}
._1a_c00325{width:3.541333pt;}
._f_c00325{width:4.608000pt;}
._3d_c00325{width:5.509333pt;}
._12_c00325{width:6.400000pt;}
._14_c00325{width:7.765333pt;}
._11_c00325{width:9.045333pt;}
._29_c00325{width:10.410667pt;}
._1c_c00325{width:11.776000pt;}
._21_c00325{width:13.056000pt;}
._1f_c00325{width:14.634667pt;}
._2a_c00325{width:15.765333pt;}
._1b_c00325{width:17.514667pt;}
._2b_c00325{width:18.730667pt;}
._1e_c00325{width:21.754667pt;}
._2d_c00325{width:23.392000pt;}
._10_c00325{width:24.469333pt;}
._30_c00325{width:26.112000pt;}
._22_c00325{width:27.520000pt;}
._27_c00325{width:29.002667pt;}
._13_c00325{width:30.293333pt;}
._38_c00325{width:31.736000pt;}
._16_c00325{width:33.024000pt;}
._18_c00325{width:34.218667pt;}
._39_c00325{width:35.205333pt;}
._17_c00325{width:36.181333pt;}
._25_c00325{width:38.101333pt;}
._28_c00325{width:40.037333pt;}
._23_c00325{width:42.053333pt;}
._1_c00325{width:44.288000pt;}
._2c_c00325{width:46.208000pt;}
._3a_c00325{width:48.298667pt;}
._2e_c00325{width:50.090667pt;}
._37_c00325{width:52.314667pt;}
._45_c00325{width:53.333333pt;}
._32_c00325{width:54.314667pt;}
._34_c00325{width:55.637333pt;}
._36_c00325{width:57.856000pt;}
._3b_c00325{width:58.954667pt;}
._35_c00325{width:59.904000pt;}
._42_c00325{width:61.722667pt;}
._40_c00325{width:62.629333pt;}
._2f_c00325{width:64.384000pt;}
._3f_c00325{width:67.293333pt;}
._33_c00325{width:70.912000pt;}
._3e_c00325{width:72.680000pt;}
._31_c00325{width:75.050667pt;}
._43_c00325{width:76.133333pt;}
._3c_c00325{width:85.930667pt;}
._d_c00325{width:97.088000pt;}
._46_c00325{width:147.181333pt;}
.fs0_c00325{font-size:21.333333pt;}
.fs2_c00325{font-size:32.000000pt;}
.fs7_c00325{font-size:42.666667pt;}
.fs6_c00325{font-size:59.733333pt;}
.fs4_c00325{font-size:74.666667pt;}
.fs1_c00325{font-size:77.333333pt;}
.fs3_c00325{font-size:85.333333pt;}
.fs5_c00325{font-size:90.666667pt;}
.y0_c00325{bottom:0.000000pt;}
.y27_c00325{bottom:2.760000pt;}
.y26_c00325{bottom:6.425206pt;}
.y25_c00325{bottom:107.360000pt;}
.y24_c00325{bottom:139.226667pt;}
.y23_c00325{bottom:169.226667pt;}
.y22_c00325{bottom:199.760000pt;}
.y21_c00325{bottom:229.893333pt;}
.y1_c00325{bottom:232.160000pt;}
.y20_c00325{bottom:260.426667pt;}
.y1f_c00325{bottom:290.693333pt;}
.y1e_c00325{bottom:319.493333pt;}
.y1d_c00325{bottom:350.693333pt;}
.y1c_c00325{bottom:379.893333pt;}
.y1b_c00325{bottom:410.693333pt;}
.y1a_c00325{bottom:440.160000pt;}
.y19_c00325{bottom:470.426667pt;}
.y18_c00325{bottom:499.226667pt;}
.y17_c00325{bottom:530.426667pt;}
.y16_c00325{bottom:560.426667pt;}
.y15_c00325{bottom:590.160000pt;}
.y14_c00325{bottom:620.160000pt;}
.y13_c00325{bottom:650.693333pt;}
.y12_c00325{bottom:679.893333pt;}
.y11_c00325{bottom:709.893333pt;}
.y10_c00325{bottom:739.493333pt;}
.yf_c00325{bottom:769.760000pt;}
.ye_c00325{bottom:799.493333pt;}
.yd_c00325{bottom:828.960000pt;}
.yc_c00325{bottom:858.960000pt;}
.yb_c00325{bottom:888.293333pt;}
.ya_c00325{bottom:917.360000pt;}
.y9_c00325{bottom:947.093333pt;}
.y8_c00325{bottom:977.493333pt;}
.y7_c00325{bottom:1007.360000pt;}
.y6_c00325{bottom:1036.560000pt;}
.y5_c00325{bottom:1066.560000pt;}
.y4_c00325{bottom:1097.093333pt;}
.y3_c00325{bottom:1125.626667pt;}
.y2_c00325{bottom:1156.160000pt;}
.h5_c00325{height:11.733399pt;}
.h6_c00325{height:38.937500pt;}
.h3_c00325{height:40.515625pt;}
.h2_c00325{height:97.912760pt;}
.h4_c00325{height:108.041667pt;}
.h0_c00325{height:1229.066667pt;}
.h1_c00325{height:1229.333333pt;}
.w2_c00325{width:93.222667pt;}
.w0_c00325{width:767.266667pt;}
.w1_c00325{width:767.333333pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:51.333333pt;}
.x3_c00325{left:220.133333pt;}
.x6_c00325{left:221.466667pt;}
.x5_c00325{left:222.400000pt;}
.x7_c00325{left:223.466667pt;}
.x4_c00325{left:224.800000pt;}
.x8_c00325{left:225.866667pt;}
.xb_c00325{left:226.800000pt;}
.x9_c00325{left:227.733333pt;}
.xa_c00325{left:228.666667pt;}
.xd_c00325{left:230.133333pt;}
.xc_c00325{left:254.133333pt;}
.x2_c00325{left:262.800000pt;}
.xe_c00325{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_04e6837b2c2473523b8f6e38.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_24f72fedc73a74cc9883e7e8.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_1fed0c0ce74bec3bd30dc3f6.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls1_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:18.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-63.504000px;}
.ws1_c00326{word-spacing:-51.000000px;}
.ws2_c00326{word-spacing:0.000000px;}
._2b_c00326{margin-left:-32.640000px;}
._17_c00326{margin-left:-29.952000px;}
._2f_c00326{margin-left:-21.792000px;}
._33_c00326{margin-left:-20.064000px;}
._2c_c00326{margin-left:-16.608000px;}
._30_c00326{margin-left:-14.784000px;}
._24_c00326{margin-left:-13.728000px;}
._32_c00326{margin-left:-12.000000px;}
._11_c00326{margin-left:-10.080000px;}
._1_c00326{margin-left:-8.640000px;}
._2_c00326{margin-left:-6.912000px;}
._10_c00326{margin-left:-5.280000px;}
._0_c00326{margin-left:-4.128000px;}
._12_c00326{margin-left:-3.072000px;}
._4_c00326{margin-left:-1.632000px;}
._7_c00326{width:1.920000px;}
._6_c00326{width:3.840000px;}
._14_c00326{width:4.896000px;}
._15_c00326{width:6.240000px;}
._1b_c00326{width:7.488000px;}
._1f_c00326{width:9.504000px;}
._c_c00326{width:10.560000px;}
._1c_c00326{width:12.096000px;}
._e_c00326{width:13.440000px;}
._9_c00326{width:15.264000px;}
._b_c00326{width:16.992000px;}
._a_c00326{width:18.528000px;}
._26_c00326{width:20.064000px;}
._d_c00326{width:21.120000px;}
._25_c00326{width:24.192000px;}
._f_c00326{width:26.016000px;}
._1d_c00326{width:27.744000px;}
._23_c00326{width:28.896000px;}
._27_c00326{width:30.336000px;}
._8_c00326{width:31.680000px;}
._18_c00326{width:33.024000px;}
._3_c00326{width:34.080000px;}
._5_c00326{width:36.000000px;}
._34_c00326{width:37.728000px;}
._1e_c00326{width:39.264000px;}
._22_c00326{width:40.320000px;}
._19_c00326{width:41.376000px;}
._3b_c00326{width:42.528000px;}
._31_c00326{width:43.872000px;}
._13_c00326{width:45.792000px;}
._2e_c00326{width:47.136000px;}
._2d_c00326{width:49.248000px;}
._3a_c00326{width:52.224000px;}
._1a_c00326{width:53.376000px;}
._20_c00326{width:55.680000px;}
._37_c00326{width:59.424000px;}
._16_c00326{width:63.360000px;}
._36_c00326{width:64.704000px;}
._38_c00326{width:68.160000px;}
._28_c00326{width:115.776000px;}
._21_c00326{width:129.120000px;}
._39_c00326{width:307.392000px;}
._35_c00326{width:311.904000px;}
._29_c00326{width:358.368000px;}
._3c_c00326{width:673.920000px;}
._2a_c00326{width:769.440000px;}
._3d_c00326{width:1219.392000px;}
.fc2_c00326{color:transparent;}
.fc1_c00326{color:rgb(128,128,128);}
.fc0_c00326{color:rgb(0,0,0);}
.fs3_c00326{font-size:48.000000px;}
.fs1_c00326{font-size:84.000000px;}
.fs0_c00326{font-size:96.000000px;}
.fs2_c00326{font-size:102.000000px;}
.y0_c00326{bottom:0.000000px;}
.y26_c00326{bottom:3.105000px;}
.y25_c00326{bottom:7.228371px;}
.y24_c00326{bottom:61.515000px;}
.y23_c00326{bottom:95.565000px;}
.y22_c00326{bottom:129.015000px;}
.y21_c00326{bottom:163.365000px;}
.y20_c00326{bottom:197.115000px;}
.y1f_c00326{bottom:231.165000px;}
.y1e_c00326{bottom:264.615000px;}
.y1d_c00326{bottom:300.015000px;}
.y1c_c00326{bottom:332.115000px;}
.y1b_c00326{bottom:366.165000px;}
.y1a_c00326{bottom:399.315000px;}
.y19_c00326{bottom:432.765000px;}
.y18_c00326{bottom:466.215000px;}
.y17_c00326{bottom:499.815000px;}
.y16_c00326{bottom:533.565000px;}
.y15_c00326{bottom:566.415000px;}
.y14_c00326{bottom:601.215000px;}
.y13_c00326{bottom:634.215000px;}
.y12_c00326{bottom:667.365000px;}
.y11_c00326{bottom:700.665000px;}
.y10_c00326{bottom:734.115000px;}
.yf_c00326{bottom:767.565000px;}
.ye_c00326{bottom:801.015000px;}
.yd_c00326{bottom:834.015000px;}
.yc_c00326{bottom:866.715000px;}
.yb_c00326{bottom:900.465000px;}
.ya_c00326{bottom:933.615000px;}
.y9_c00326{bottom:967.365000px;}
.y8_c00326{bottom:1000.065000px;}
.y7_c00326{bottom:1032.765000px;}
.y6_c00326{bottom:1067.265000px;}
.y5_c00326{bottom:1101.015000px;}
.y4_c00326{bottom:1134.015000px;}
.y3_c00326{bottom:1167.765000px;}
.y2_c00326{bottom:1200.465000px;}
.y1_c00326{bottom:1234.215000px;}
.h3_c00326{height:13.200074px;}
.h4_c00326{height:43.804688px;}
.h2_c00326{height:121.546875px;}
.h0_c00326{height:1360.275000px;}
.h1_c00326{height:1360.500000px;}
.w2_c00326{width:104.875500px;}
.w1_c00326{width:863.250000px;}
.w0_c00326{width:863.475000px;}
.x0_c00326{left:0.000000px;}
.x6_c00326{left:27.300000px;}
.x5_c00326{left:28.350000px;}
.x4_c00326{left:30.000000px;}
.x7_c00326{left:31.050000px;}
.x3_c00326{left:32.100000px;}
.x8_c00326{left:33.150000px;}
.x1_c00326{left:34.800000px;}
.x2_c00326{left:36.000000px;}
.x9_c00326{left:43.500000px;}
.xa_c00326{left:383.551758px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls1_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:16.000000pt;}
.ws0_c00326{word-spacing:-56.448000pt;}
.ws1_c00326{word-spacing:-45.333333pt;}
.ws2_c00326{word-spacing:0.000000pt;}
._2b_c00326{margin-left:-29.013333pt;}
._17_c00326{margin-left:-26.624000pt;}
._2f_c00326{margin-left:-19.370667pt;}
._33_c00326{margin-left:-17.834667pt;}
._2c_c00326{margin-left:-14.762667pt;}
._30_c00326{margin-left:-13.141333pt;}
._24_c00326{margin-left:-12.202667pt;}
._32_c00326{margin-left:-10.666667pt;}
._11_c00326{margin-left:-8.960000pt;}
._1_c00326{margin-left:-7.680000pt;}
._2_c00326{margin-left:-6.144000pt;}
._10_c00326{margin-left:-4.693333pt;}
._0_c00326{margin-left:-3.669333pt;}
._12_c00326{margin-left:-2.730667pt;}
._4_c00326{margin-left:-1.450667pt;}
._7_c00326{width:1.706667pt;}
._6_c00326{width:3.413333pt;}
._14_c00326{width:4.352000pt;}
._15_c00326{width:5.546667pt;}
._1b_c00326{width:6.656000pt;}
._1f_c00326{width:8.448000pt;}
._c_c00326{width:9.386667pt;}
._1c_c00326{width:10.752000pt;}
._e_c00326{width:11.946667pt;}
._9_c00326{width:13.568000pt;}
._b_c00326{width:15.104000pt;}
._a_c00326{width:16.469333pt;}
._26_c00326{width:17.834667pt;}
._d_c00326{width:18.773333pt;}
._25_c00326{width:21.504000pt;}
._f_c00326{width:23.125333pt;}
._1d_c00326{width:24.661333pt;}
._23_c00326{width:25.685333pt;}
._27_c00326{width:26.965333pt;}
._8_c00326{width:28.160000pt;}
._18_c00326{width:29.354667pt;}
._3_c00326{width:30.293333pt;}
._5_c00326{width:32.000000pt;}
._34_c00326{width:33.536000pt;}
._1e_c00326{width:34.901333pt;}
._22_c00326{width:35.840000pt;}
._19_c00326{width:36.778667pt;}
._3b_c00326{width:37.802667pt;}
._31_c00326{width:38.997333pt;}
._13_c00326{width:40.704000pt;}
._2e_c00326{width:41.898667pt;}
._2d_c00326{width:43.776000pt;}
._3a_c00326{width:46.421333pt;}
._1a_c00326{width:47.445333pt;}
._20_c00326{width:49.493333pt;}
._37_c00326{width:52.821333pt;}
._16_c00326{width:56.320000pt;}
._36_c00326{width:57.514667pt;}
._38_c00326{width:60.586667pt;}
._28_c00326{width:102.912000pt;}
._21_c00326{width:114.773333pt;}
._39_c00326{width:273.237333pt;}
._35_c00326{width:277.248000pt;}
._29_c00326{width:318.549333pt;}
._3c_c00326{width:599.040000pt;}
._2a_c00326{width:683.946667pt;}
._3d_c00326{width:1083.904000pt;}
.fs3_c00326{font-size:42.666667pt;}
.fs1_c00326{font-size:74.666667pt;}
.fs0_c00326{font-size:85.333333pt;}
.fs2_c00326{font-size:90.666667pt;}
.y0_c00326{bottom:0.000000pt;}
.y26_c00326{bottom:2.760000pt;}
.y25_c00326{bottom:6.425219pt;}
.y24_c00326{bottom:54.680000pt;}
.y23_c00326{bottom:84.946667pt;}
.y22_c00326{bottom:114.680000pt;}
.y21_c00326{bottom:145.213333pt;}
.y20_c00326{bottom:175.213333pt;}
.y1f_c00326{bottom:205.480000pt;}
.y1e_c00326{bottom:235.213333pt;}
.y1d_c00326{bottom:266.680000pt;}
.y1c_c00326{bottom:295.213333pt;}
.y1b_c00326{bottom:325.480000pt;}
.y1a_c00326{bottom:354.946667pt;}
.y19_c00326{bottom:384.680000pt;}
.y18_c00326{bottom:414.413333pt;}
.y17_c00326{bottom:444.280000pt;}
.y16_c00326{bottom:474.280000pt;}
.y15_c00326{bottom:503.480000pt;}
.y14_c00326{bottom:534.413333pt;}
.y13_c00326{bottom:563.746667pt;}
.y12_c00326{bottom:593.213333pt;}
.y11_c00326{bottom:622.813333pt;}
.y10_c00326{bottom:652.546667pt;}
.yf_c00326{bottom:682.280000pt;}
.ye_c00326{bottom:712.013333pt;}
.yd_c00326{bottom:741.346667pt;}
.yc_c00326{bottom:770.413333pt;}
.yb_c00326{bottom:800.413333pt;}
.ya_c00326{bottom:829.880000pt;}
.y9_c00326{bottom:859.880000pt;}
.y8_c00326{bottom:888.946667pt;}
.y7_c00326{bottom:918.013333pt;}
.y6_c00326{bottom:948.680000pt;}
.y5_c00326{bottom:978.680000pt;}
.y4_c00326{bottom:1008.013333pt;}
.y3_c00326{bottom:1038.013333pt;}
.y2_c00326{bottom:1067.080000pt;}
.y1_c00326{bottom:1097.080000pt;}
.h3_c00326{height:11.733399pt;}
.h4_c00326{height:38.937500pt;}
.h2_c00326{height:108.041667pt;}
.h0_c00326{height:1209.133333pt;}
.h1_c00326{height:1209.333333pt;}
.w2_c00326{width:93.222667pt;}
.w1_c00326{width:767.333333pt;}
.w0_c00326{width:767.533333pt;}
.x0_c00326{left:0.000000pt;}
.x6_c00326{left:24.266667pt;}
.x5_c00326{left:25.200000pt;}
.x4_c00326{left:26.666667pt;}
.x7_c00326{left:27.600000pt;}
.x3_c00326{left:28.533333pt;}
.x8_c00326{left:29.466667pt;}
.x1_c00326{left:30.933333pt;}
.x2_c00326{left:32.000000pt;}
.x9_c00326{left:38.666667pt;}
.xa_c00326{left:340.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0082de972875096370e3641c.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_c9b50fc0fe37d95a6d03caf8.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_f68860b333c6f91bbb922530.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_fba59386c09004f9d811bc64.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;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_c00327;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls2_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:8.520000px;}
.ls0_c00327{letter-spacing:12.000000px;}
.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;}
}
.ws1_c00327{word-spacing:-51.000000px;}
.ws2_c00327{word-spacing:-23.136000px;}
.ws0_c00327{word-spacing:-20.244000px;}
.ws3_c00327{word-spacing:0.000000px;}
._32_c00327{margin-left:-42.576000px;}
._35_c00327{margin-left:-36.456000px;}
._38_c00327{margin-left:-34.590000px;}
._39_c00327{margin-left:-30.624000px;}
._1f_c00327{margin-left:-28.992000px;}
._1e_c00327{margin-left:-23.712000px;}
._3e_c00327{margin-left:-14.040000px;}
._3b_c00327{margin-left:-12.894000px;}
._c_c00327{margin-left:-11.232000px;}
._e_c00327{margin-left:-9.408000px;}
._f_c00327{margin-left:-7.872000px;}
._2c_c00327{margin-left:-6.816000px;}
._d_c00327{margin-left:-5.280000px;}
._1_c00327{margin-left:-3.744000px;}
._2_c00327{margin-left:-2.688000px;}
._0_c00327{margin-left:-1.152000px;}
._13_c00327{width:1.632000px;}
._7_c00327{width:3.456000px;}
._a_c00327{width:4.992000px;}
._5_c00327{width:6.816000px;}
._12_c00327{width:8.064000px;}
._4_c00327{width:9.504000px;}
._9_c00327{width:10.848000px;}
._10_c00327{width:12.672000px;}
._19_c00327{width:14.112000px;}
._8_c00327{width:15.936000px;}
._1d_c00327{width:17.184000px;}
._1a_c00327{width:18.624000px;}
._6_c00327{width:21.312000px;}
._42_c00327{width:24.192000px;}
._1c_c00327{width:25.728000px;}
._15_c00327{width:27.936000px;}
._30_c00327{width:29.376000px;}
._41_c00327{width:30.576000px;}
._14_c00327{width:32.064000px;}
._2f_c00327{width:33.552000px;}
._2a_c00327{width:34.926000px;}
._26_c00327{width:36.432000px;}
._1b_c00327{width:38.400000px;}
._20_c00327{width:40.800000px;}
._11_c00327{width:42.432000px;}
._3f_c00327{width:43.512000px;}
._b_c00327{width:44.928000px;}
._3c_c00327{width:45.984000px;}
._18_c00327{width:47.232000px;}
._21_c00327{width:48.864000px;}
._40_c00327{width:50.304000px;}
._22_c00327{width:51.840000px;}
._37_c00327{width:53.070000px;}
._17_c00327{width:54.528000px;}
._3_c00327{width:56.064000px;}
._28_c00327{width:57.600000px;}
._31_c00327{width:58.656000px;}
._2d_c00327{width:62.064000px;}
._24_c00327{width:65.088000px;}
._25_c00327{width:67.104000px;}
._3a_c00327{width:68.640000px;}
._29_c00327{width:70.800000px;}
._36_c00327{width:72.354000px;}
._23_c00327{width:80.352000px;}
._33_c00327{width:82.458000px;}
._16_c00327{width:83.808000px;}
._2b_c00327{width:91.728000px;}
._3d_c00327{width:110.526000px;}
._27_c00327{width:134.364000px;}
._34_c00327{width:270.144000px;}
._2e_c00327{width:477.564000px;}
.fc2_c00327{color:transparent;}
.fc1_c00327{color:rgb(128,128,128);}
.fc0_c00327{color:rgb(0,0,0);}
.fs4_c00327{font-size:48.000000px;}
.fs2_c00327{font-size:81.000000px;}
.fs1_c00327{font-size:84.000000px;}
.fs0_c00327{font-size:96.000000px;}
.fs3_c00327{font-size:102.000000px;}
.y0_c00327{bottom:0.000000px;}
.y26_c00327{bottom:3.105000px;}
.y25_c00327{bottom:7.228357px;}
.y24_c00327{bottom:98.580000px;}
.y23_c00327{bottom:128.580000px;}
.y22_c00327{bottom:162.630000px;}
.y21_c00327{bottom:196.530000px;}
.y20_c00327{bottom:230.580000px;}
.y1f_c00327{bottom:264.630000px;}
.y1e_c00327{bottom:298.980000px;}
.y1d_c00327{bottom:332.430000px;}
.y1c_c00327{bottom:366.630000px;}
.y1b_c00327{bottom:400.230000px;}
.y1a_c00327{bottom:434.130000px;}
.y19_c00327{bottom:468.180000px;}
.y18_c00327{bottom:502.230000px;}
.y17_c00327{bottom:535.980000px;}
.y16_c00327{bottom:569.730000px;}
.y15_c00327{bottom:603.480000px;}
.y14_c00327{bottom:636.930000px;}
.y13_c00327{bottom:670.680000px;}
.y12_c00327{bottom:704.430000px;}
.y11_c00327{bottom:738.180000px;}
.y10_c00327{bottom:771.480000px;}
.yf_c00327{bottom:805.230000px;}
.ye_c00327{bottom:839.430000px;}
.yd_c00327{bottom:872.730000px;}
.yc_c00327{bottom:906.480000px;}
.yb_c00327{bottom:938.580000px;}
.ya_c00327{bottom:972.030000px;}
.y9_c00327{bottom:1003.080000px;}
.y8_c00327{bottom:1035.480000px;}
.y7_c00327{bottom:1068.480000px;}
.y6_c00327{bottom:1104.630000px;}
.y5_c00327{bottom:1138.680000px;}
.y4_c00327{bottom:1171.830000px;}
.y3_c00327{bottom:1205.580000px;}
.y2_c00327{bottom:1238.730000px;}
.y1_c00327{bottom:1272.330000px;}
.h3_c00327{height:13.200074px;}
.h4_c00327{height:43.804688px;}
.h2_c00327{height:121.546875px;}
.h0_c00327{height:1382.700000px;}
.h1_c00327{height:1383.000000px;}
.w2_c00327{width:104.875500px;}
.w0_c00327{width:863.175000px;}
.w1_c00327{width:863.250000px;}
.x0_c00327{left:0.000000px;}
.x4_c00327{left:27.900000px;}
.x3_c00327{left:28.950000px;}
.x5_c00327{left:246.600000px;}
.x2_c00327{left:248.100000px;}
.x1_c00327{left:249.750000px;}
.x7_c00327{left:383.401749px;}
.x6_c00327{left:757.950000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls2_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:7.573333pt;}
.ls0_c00327{letter-spacing:10.666667pt;}
.ws1_c00327{word-spacing:-45.333333pt;}
.ws2_c00327{word-spacing:-20.565333pt;}
.ws0_c00327{word-spacing:-17.994667pt;}
.ws3_c00327{word-spacing:0.000000pt;}
._32_c00327{margin-left:-37.845333pt;}
._35_c00327{margin-left:-32.405333pt;}
._38_c00327{margin-left:-30.746667pt;}
._39_c00327{margin-left:-27.221333pt;}
._1f_c00327{margin-left:-25.770667pt;}
._1e_c00327{margin-left:-21.077333pt;}
._3e_c00327{margin-left:-12.480000pt;}
._3b_c00327{margin-left:-11.461333pt;}
._c_c00327{margin-left:-9.984000pt;}
._e_c00327{margin-left:-8.362667pt;}
._f_c00327{margin-left:-6.997333pt;}
._2c_c00327{margin-left:-6.058667pt;}
._d_c00327{margin-left:-4.693333pt;}
._1_c00327{margin-left:-3.328000pt;}
._2_c00327{margin-left:-2.389333pt;}
._0_c00327{margin-left:-1.024000pt;}
._13_c00327{width:1.450667pt;}
._7_c00327{width:3.072000pt;}
._a_c00327{width:4.437333pt;}
._5_c00327{width:6.058667pt;}
._12_c00327{width:7.168000pt;}
._4_c00327{width:8.448000pt;}
._9_c00327{width:9.642667pt;}
._10_c00327{width:11.264000pt;}
._19_c00327{width:12.544000pt;}
._8_c00327{width:14.165333pt;}
._1d_c00327{width:15.274667pt;}
._1a_c00327{width:16.554667pt;}
._6_c00327{width:18.944000pt;}
._42_c00327{width:21.504000pt;}
._1c_c00327{width:22.869333pt;}
._15_c00327{width:24.832000pt;}
._30_c00327{width:26.112000pt;}
._41_c00327{width:27.178667pt;}
._14_c00327{width:28.501333pt;}
._2f_c00327{width:29.824000pt;}
._2a_c00327{width:31.045333pt;}
._26_c00327{width:32.384000pt;}
._1b_c00327{width:34.133333pt;}
._20_c00327{width:36.266667pt;}
._11_c00327{width:37.717333pt;}
._3f_c00327{width:38.677333pt;}
._b_c00327{width:39.936000pt;}
._3c_c00327{width:40.874667pt;}
._18_c00327{width:41.984000pt;}
._21_c00327{width:43.434667pt;}
._40_c00327{width:44.714667pt;}
._22_c00327{width:46.080000pt;}
._37_c00327{width:47.173333pt;}
._17_c00327{width:48.469333pt;}
._3_c00327{width:49.834667pt;}
._28_c00327{width:51.200000pt;}
._31_c00327{width:52.138667pt;}
._2d_c00327{width:55.168000pt;}
._24_c00327{width:57.856000pt;}
._25_c00327{width:59.648000pt;}
._3a_c00327{width:61.013333pt;}
._29_c00327{width:62.933333pt;}
._36_c00327{width:64.314667pt;}
._23_c00327{width:71.424000pt;}
._33_c00327{width:73.296000pt;}
._16_c00327{width:74.496000pt;}
._2b_c00327{width:81.536000pt;}
._3d_c00327{width:98.245333pt;}
._27_c00327{width:119.434667pt;}
._34_c00327{width:240.128000pt;}
._2e_c00327{width:424.501333pt;}
.fs4_c00327{font-size:42.666667pt;}
.fs2_c00327{font-size:72.000000pt;}
.fs1_c00327{font-size:74.666667pt;}
.fs0_c00327{font-size:85.333333pt;}
.fs3_c00327{font-size:90.666667pt;}
.y0_c00327{bottom:0.000000pt;}
.y26_c00327{bottom:2.760000pt;}
.y25_c00327{bottom:6.425206pt;}
.y24_c00327{bottom:87.626667pt;}
.y23_c00327{bottom:114.293333pt;}
.y22_c00327{bottom:144.560000pt;}
.y21_c00327{bottom:174.693333pt;}
.y20_c00327{bottom:204.960000pt;}
.y1f_c00327{bottom:235.226667pt;}
.y1e_c00327{bottom:265.760000pt;}
.y1d_c00327{bottom:295.493333pt;}
.y1c_c00327{bottom:325.893333pt;}
.y1b_c00327{bottom:355.760000pt;}
.y1a_c00327{bottom:385.893333pt;}
.y19_c00327{bottom:416.160000pt;}
.y18_c00327{bottom:446.426667pt;}
.y17_c00327{bottom:476.426667pt;}
.y16_c00327{bottom:506.426667pt;}
.y15_c00327{bottom:536.426667pt;}
.y14_c00327{bottom:566.160000pt;}
.y13_c00327{bottom:596.160000pt;}
.y12_c00327{bottom:626.160000pt;}
.y11_c00327{bottom:656.160000pt;}
.y10_c00327{bottom:685.760000pt;}
.yf_c00327{bottom:715.760000pt;}
.ye_c00327{bottom:746.160000pt;}
.yd_c00327{bottom:775.760000pt;}
.yc_c00327{bottom:805.760000pt;}
.yb_c00327{bottom:834.293333pt;}
.ya_c00327{bottom:864.026667pt;}
.y9_c00327{bottom:891.626667pt;}
.y8_c00327{bottom:920.426667pt;}
.y7_c00327{bottom:949.760000pt;}
.y6_c00327{bottom:981.893333pt;}
.y5_c00327{bottom:1012.160000pt;}
.y4_c00327{bottom:1041.626667pt;}
.y3_c00327{bottom:1071.626667pt;}
.y2_c00327{bottom:1101.093333pt;}
.y1_c00327{bottom:1130.960000pt;}
.h3_c00327{height:11.733399pt;}
.h4_c00327{height:38.937500pt;}
.h2_c00327{height:108.041667pt;}
.h0_c00327{height:1229.066667pt;}
.h1_c00327{height:1229.333333pt;}
.w2_c00327{width:93.222667pt;}
.w0_c00327{width:767.266667pt;}
.w1_c00327{width:767.333333pt;}
.x0_c00327{left:0.000000pt;}
.x4_c00327{left:24.800000pt;}
.x3_c00327{left:25.733333pt;}
.x5_c00327{left:219.200000pt;}
.x2_c00327{left:220.533333pt;}
.x1_c00327{left:222.000000pt;}
.x7_c00327{left:340.801554pt;}
.x6_c00327{left:673.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6e794215e43b5b72f33d2b0b.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_6cc97e411ef622be4948a33d.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_548468373d838319defe07a5.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_c533c32e682fe87b23941265.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_8e26444aff0df8fbd540c78d.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_60e5c8c128af0b21cff2df60.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00328;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff7_c00328{font-family:ff7_c00328;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00328;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00328{font-family:ff8_c00328;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00328{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.v2_c00328{vertical-align:-201.000000px;}
.v0_c00328{vertical-align:0.000000px;}
.v1_c00328{vertical-align:67.200000px;}
.ls5_c00328{letter-spacing:-24.000000px;}
.ls4_c00328{letter-spacing:-3.000000px;}
.ls2_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:1.068000px;}
.ls1_c00328{letter-spacing:12.000000px;}
.ls3_c00328{letter-spacing:18.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00328{word-spacing:-51.000000px;}
.ws0_c00328{word-spacing:-32.244000px;}
.ws1_c00328{word-spacing:-31.704000px;}
.ws2_c00328{word-spacing:-18.508800px;}
.ws4_c00328{word-spacing:0.000000px;}
._45_c00328{margin-left:-254.532000px;}
._50_c00328{margin-left:-221.004000px;}
._4d_c00328{margin-left:-219.660000px;}
._4f_c00328{margin-left:-135.660000px;}
._49_c00328{margin-left:-113.400000px;}
._42_c00328{margin-left:-92.400000px;}
._4e_c00328{margin-left:-91.140000px;}
._43_c00328{margin-left:-87.360000px;}
._4b_c00328{margin-left:-70.980000px;}
._40_c00328{margin-left:-64.944000px;}
._37_c00328{margin-left:-52.026000px;}
._3a_c00328{margin-left:-40.512000px;}
._44_c00328{margin-left:-39.060000px;}
._27_c00328{margin-left:-36.018000px;}
._24_c00328{margin-left:-34.368000px;}
._33_c00328{margin-left:-32.160000px;}
._5a_c00328{margin-left:-30.720000px;}
._25_c00328{margin-left:-29.664000px;}
._4c_c00328{margin-left:-28.560000px;}
._29_c00328{margin-left:-24.384000px;}
._2a_c00328{margin-left:-23.040000px;}
._38_c00328{margin-left:-21.993600px;}
._16_c00328{margin-left:-20.448000px;}
._5b_c00328{margin-left:-19.230000px;}
._31_c00328{margin-left:-18.048000px;}
._51_c00328{margin-left:-16.800000px;}
._23_c00328{margin-left:-15.744000px;}
._17_c00328{margin-left:-14.496000px;}
._2b_c00328{margin-left:-12.384000px;}
._2f_c00328{margin-left:-10.836000px;}
._1c_c00328{margin-left:-9.504000px;}
._3d_c00328{margin-left:-8.484000px;}
._22_c00328{margin-left:-7.104000px;}
._a_c00328{margin-left:-5.376000px;}
._1b_c00328{margin-left:-4.032000px;}
._15_c00328{margin-left:-2.496000px;}
._11_c00328{margin-left:-1.248000px;}
._18_c00328{width:1.056000px;}
._e_c00328{width:2.208000px;}
._7_c00328{width:3.264000px;}
._b_c00328{width:5.088000px;}
._3_c00328{width:6.240000px;}
._c_c00328{width:7.776000px;}
._1_c00328{width:9.120000px;}
._2_c00328{width:11.040000px;}
._9_c00328{width:12.864000px;}
._d_c00328{width:14.496000px;}
._0_c00328{width:16.224000px;}
._4_c00328{width:18.144000px;}
._5_c00328{width:19.392000px;}
._5e_c00328{width:20.640000px;}
._1d_c00328{width:21.792000px;}
._1e_c00328{width:25.344000px;}
._8_c00328{width:26.496000px;}
._19_c00328{width:28.224000px;}
._30_c00328{width:29.376000px;}
._5f_c00328{width:31.200000px;}
._56_c00328{width:33.024000px;}
._59_c00328{width:34.080000px;}
._34_c00328{width:35.088000px;}
._6_c00328{width:36.960000px;}
._f_c00328{width:39.072000px;}
._53_c00328{width:40.416000px;}
._1a_c00328{width:41.760000px;}
._10_c00328{width:43.104000px;}
._12_c00328{width:45.120000px;}
._66_c00328{width:46.176000px;}
._65_c00328{width:47.328000px;}
._14_c00328{width:48.672000px;}
._52_c00328{width:50.592000px;}
._13_c00328{width:51.840000px;}
._35_c00328{width:52.848000px;}
._64_c00328{width:54.816000px;}
._1f_c00328{width:55.872000px;}
._61_c00328{width:57.120000px;}
._39_c00328{width:58.752000px;}
._57_c00328{width:61.920000px;}
._63_c00328{width:63.264000px;}
._21_c00328{width:64.896000px;}
._20_c00328{width:66.624000px;}
._48_c00328{width:68.190000px;}
._60_c00328{width:70.560000px;}
._5c_c00328{width:76.443600px;}
._4a_c00328{width:78.540000px;}
._5d_c00328{width:87.318000px;}
._28_c00328{width:113.448000px;}
._54_c00328{width:114.600000px;}
._55_c00328{width:119.460000px;}
._2e_c00328{width:128.910000px;}
._41_c00328{width:132.048000px;}
._47_c00328{width:145.470000px;}
._62_c00328{width:152.136000px;}
._3b_c00328{width:159.060000px;}
._3c_c00328{width:193.824000px;}
._36_c00328{width:201.264000px;}
._67_c00328{width:204.960000px;}
._2c_c00328{width:245.952000px;}
._2d_c00328{width:249.840000px;}
._3f_c00328{width:274.656000px;}
._3e_c00328{width:290.052000px;}
._58_c00328{width:366.528000px;}
._26_c00328{width:414.720000px;}
._46_c00328{width:571.500000px;}
._32_c00328{width:585.792000px;}
._68_c00328{width:832.128000px;}
.fc2_c00328{color:transparent;}
.fc1_c00328{color:rgb(128,128,128);}
.fc0_c00328{color:rgb(0,0,0);}
.fs2_c00328{font-size:30.000000px;}
.fs9_c00328{font-size:48.000000px;}
.fs5_c00328{font-size:76.800000px;}
.fs3_c00328{font-size:84.000000px;}
.fs1_c00328{font-size:87.000000px;}
.fs7_c00328{font-size:93.000000px;}
.fs0_c00328{font-size:96.000000px;}
.fs8_c00328{font-size:102.000000px;}
.fs4_c00328{font-size:144.000000px;}
.fs6_c00328{font-size:420.000000px;}
.y0_c00328{bottom:0.000000px;}
.y26_c00328{bottom:3.105000px;}
.y25_c00328{bottom:7.228369px;}
.y24_c00328{bottom:122.820000px;}
.y23_c00328{bottom:155.970000px;}
.y22_c00328{bottom:189.720000px;}
.y21_c00328{bottom:223.470000px;}
.y20_c00328{bottom:257.520000px;}
.y1f_c00328{bottom:291.570000px;}
.y1e_c00328{bottom:325.320000px;}
.y1d_c00328{bottom:359.370000px;}
.y1c_c00328{bottom:393.120000px;}
.y1b_c00328{bottom:426.870000px;}
.y1a_c00328{bottom:460.320000px;}
.y19_c00328{bottom:494.070000px;}
.y18_c00328{bottom:527.820000px;}
.y17_c00328{bottom:560.970000px;}
.yc_c00328{bottom:581.070000px;}
.y16_c00328{bottom:594.720000px;}
.y15_c00328{bottom:628.020000px;}
.y14_c00328{bottom:661.470000px;}
.y13_c00328{bottom:694.920000px;}
.y12_c00328{bottom:728.670000px;}
.y11_c00328{bottom:763.020000px;}
.y10_c00328{bottom:796.170000px;}
.yf_c00328{bottom:833.520000px;}
.ye_c00328{bottom:867.270000px;}
.yd_c00328{bottom:934.770000px;}
.yb_c00328{bottom:935.220000px;}
.ya_c00328{bottom:987.120000px;}
.y9_c00328{bottom:1069.920000px;}
.y8_c00328{bottom:1083.270000px;}
.y6_c00328{bottom:1098.870000px;}
.y7_c00328{bottom:1103.670000px;}
.y5_c00328{bottom:1132.020000px;}
.y4_c00328{bottom:1165.620000px;}
.y3_c00328{bottom:1198.170000px;}
.y2_c00328{bottom:1231.770000px;}
.y1_c00328{bottom:1264.620000px;}
.h8_c00328{height:13.200073px;}
.h4_c00328{height:37.983398px;}
.h9_c00328{height:43.804688px;}
.h6_c00328{height:101.825684px;}
.h2_c00328{height:121.546875px;}
.h3_c00328{height:169.025684px;}
.h5_c00328{height:182.320312px;}
.h7_c00328{height:412.207031px;}
.h0_c00328{height:1383.450000px;}
.h1_c00328{height:1383.750000px;}
.w2_c00328{width:104.875500px;}
.w0_c00328{width:878.025000px;}
.w1_c00328{width:878.250000px;}
.x0_c00328{left:0.000000px;}
.x14_c00328{left:33.300000px;}
.x15_c00328{left:34.815000px;}
.x13_c00328{left:36.481500px;}
.x16_c00328{left:38.148000px;}
.x3_c00328{left:39.600000px;}
.x2_c00328{left:41.250000px;}
.x1_c00328{left:42.450000px;}
.x7_c00328{left:43.650000px;}
.xd_c00328{left:44.814000px;}
.xb_c00328{left:160.105500px;}
.xe_c00328{left:173.740500px;}
.x10_c00328{left:183.891000px;}
.xf_c00328{left:217.372500px;}
.x17_c00328{left:234.643500px;}
.x11_c00328{left:280.548000px;}
.x12_c00328{left:287.517000px;}
.x8_c00328{left:302.850000px;}
.x6_c00328{left:305.100000px;}
.x9_c00328{left:364.500000px;}
.x4_c00328{left:366.450000px;}
.xa_c00328{left:381.750000px;}
.x18_c00328{left:390.826721px;}
.x5_c00328{left:403.500000px;}
.xc_c00328{left:631.573500px;}
@media print{
.v2_c00328{vertical-align:-178.666667pt;}
.v0_c00328{vertical-align:0.000000pt;}
.v1_c00328{vertical-align:59.733333pt;}
.ls5_c00328{letter-spacing:-21.333333pt;}
.ls4_c00328{letter-spacing:-2.666667pt;}
.ls2_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:0.949333pt;}
.ls1_c00328{letter-spacing:10.666667pt;}
.ls3_c00328{letter-spacing:16.000000pt;}
.ws3_c00328{word-spacing:-45.333333pt;}
.ws0_c00328{word-spacing:-28.661333pt;}
.ws1_c00328{word-spacing:-28.181333pt;}
.ws2_c00328{word-spacing:-16.452267pt;}
.ws4_c00328{word-spacing:0.000000pt;}
._45_c00328{margin-left:-226.250667pt;}
._50_c00328{margin-left:-196.448000pt;}
._4d_c00328{margin-left:-195.253333pt;}
._4f_c00328{margin-left:-120.586667pt;}
._49_c00328{margin-left:-100.800000pt;}
._42_c00328{margin-left:-82.133333pt;}
._4e_c00328{margin-left:-81.013333pt;}
._43_c00328{margin-left:-77.653333pt;}
._4b_c00328{margin-left:-63.093333pt;}
._40_c00328{margin-left:-57.728000pt;}
._37_c00328{margin-left:-46.245333pt;}
._3a_c00328{margin-left:-36.010667pt;}
._44_c00328{margin-left:-34.720000pt;}
._27_c00328{margin-left:-32.016000pt;}
._24_c00328{margin-left:-30.549333pt;}
._33_c00328{margin-left:-28.586667pt;}
._5a_c00328{margin-left:-27.306667pt;}
._25_c00328{margin-left:-26.368000pt;}
._4c_c00328{margin-left:-25.386667pt;}
._29_c00328{margin-left:-21.674667pt;}
._2a_c00328{margin-left:-20.480000pt;}
._38_c00328{margin-left:-19.549867pt;}
._16_c00328{margin-left:-18.176000pt;}
._5b_c00328{margin-left:-17.093333pt;}
._31_c00328{margin-left:-16.042667pt;}
._51_c00328{margin-left:-14.933333pt;}
._23_c00328{margin-left:-13.994667pt;}
._17_c00328{margin-left:-12.885333pt;}
._2b_c00328{margin-left:-11.008000pt;}
._2f_c00328{margin-left:-9.632000pt;}
._1c_c00328{margin-left:-8.448000pt;}
._3d_c00328{margin-left:-7.541333pt;}
._22_c00328{margin-left:-6.314667pt;}
._a_c00328{margin-left:-4.778667pt;}
._1b_c00328{margin-left:-3.584000pt;}
._15_c00328{margin-left:-2.218667pt;}
._11_c00328{margin-left:-1.109333pt;}
._18_c00328{width:0.938667pt;}
._e_c00328{width:1.962667pt;}
._7_c00328{width:2.901333pt;}
._b_c00328{width:4.522667pt;}
._3_c00328{width:5.546667pt;}
._c_c00328{width:6.912000pt;}
._1_c00328{width:8.106667pt;}
._2_c00328{width:9.813333pt;}
._9_c00328{width:11.434667pt;}
._d_c00328{width:12.885333pt;}
._0_c00328{width:14.421333pt;}
._4_c00328{width:16.128000pt;}
._5_c00328{width:17.237333pt;}
._5e_c00328{width:18.346667pt;}
._1d_c00328{width:19.370667pt;}
._1e_c00328{width:22.528000pt;}
._8_c00328{width:23.552000pt;}
._19_c00328{width:25.088000pt;}
._30_c00328{width:26.112000pt;}
._5f_c00328{width:27.733333pt;}
._56_c00328{width:29.354667pt;}
._59_c00328{width:30.293333pt;}
._34_c00328{width:31.189333pt;}
._6_c00328{width:32.853333pt;}
._f_c00328{width:34.730667pt;}
._53_c00328{width:35.925333pt;}
._1a_c00328{width:37.120000pt;}
._10_c00328{width:38.314667pt;}
._12_c00328{width:40.106667pt;}
._66_c00328{width:41.045333pt;}
._65_c00328{width:42.069333pt;}
._14_c00328{width:43.264000pt;}
._52_c00328{width:44.970667pt;}
._13_c00328{width:46.080000pt;}
._35_c00328{width:46.976000pt;}
._64_c00328{width:48.725333pt;}
._1f_c00328{width:49.664000pt;}
._61_c00328{width:50.773333pt;}
._39_c00328{width:52.224000pt;}
._57_c00328{width:55.040000pt;}
._63_c00328{width:56.234667pt;}
._21_c00328{width:57.685333pt;}
._20_c00328{width:59.221333pt;}
._48_c00328{width:60.613333pt;}
._60_c00328{width:62.720000pt;}
._5c_c00328{width:67.949867pt;}
._4a_c00328{width:69.813333pt;}
._5d_c00328{width:77.616000pt;}
._28_c00328{width:100.842667pt;}
._54_c00328{width:101.866667pt;}
._55_c00328{width:106.186667pt;}
._2e_c00328{width:114.586667pt;}
._41_c00328{width:117.376000pt;}
._47_c00328{width:129.306667pt;}
._62_c00328{width:135.232000pt;}
._3b_c00328{width:141.386667pt;}
._3c_c00328{width:172.288000pt;}
._36_c00328{width:178.901333pt;}
._67_c00328{width:182.186667pt;}
._2c_c00328{width:218.624000pt;}
._2d_c00328{width:222.080000pt;}
._3f_c00328{width:244.138667pt;}
._3e_c00328{width:257.824000pt;}
._58_c00328{width:325.802667pt;}
._26_c00328{width:368.640000pt;}
._46_c00328{width:508.000000pt;}
._32_c00328{width:520.704000pt;}
._68_c00328{width:739.669333pt;}
.fs2_c00328{font-size:26.666667pt;}
.fs9_c00328{font-size:42.666667pt;}
.fs5_c00328{font-size:68.266667pt;}
.fs3_c00328{font-size:74.666667pt;}
.fs1_c00328{font-size:77.333333pt;}
.fs7_c00328{font-size:82.666667pt;}
.fs0_c00328{font-size:85.333333pt;}
.fs8_c00328{font-size:90.666667pt;}
.fs4_c00328{font-size:128.000000pt;}
.fs6_c00328{font-size:373.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y26_c00328{bottom:2.760000pt;}
.y25_c00328{bottom:6.425217pt;}
.y24_c00328{bottom:109.173333pt;}
.y23_c00328{bottom:138.640000pt;}
.y22_c00328{bottom:168.640000pt;}
.y21_c00328{bottom:198.640000pt;}
.y20_c00328{bottom:228.906667pt;}
.y1f_c00328{bottom:259.173333pt;}
.y1e_c00328{bottom:289.173333pt;}
.y1d_c00328{bottom:319.440000pt;}
.y1c_c00328{bottom:349.440000pt;}
.y1b_c00328{bottom:379.440000pt;}
.y1a_c00328{bottom:409.173333pt;}
.y19_c00328{bottom:439.173333pt;}
.y18_c00328{bottom:469.173333pt;}
.y17_c00328{bottom:498.640000pt;}
.yc_c00328{bottom:516.506667pt;}
.y16_c00328{bottom:528.640000pt;}
.y15_c00328{bottom:558.240000pt;}
.y14_c00328{bottom:587.973333pt;}
.y13_c00328{bottom:617.706667pt;}
.y12_c00328{bottom:647.706667pt;}
.y11_c00328{bottom:678.240000pt;}
.y10_c00328{bottom:707.706667pt;}
.yf_c00328{bottom:740.906667pt;}
.ye_c00328{bottom:770.906667pt;}
.yd_c00328{bottom:830.906667pt;}
.yb_c00328{bottom:831.306667pt;}
.ya_c00328{bottom:877.440000pt;}
.y9_c00328{bottom:951.040000pt;}
.y8_c00328{bottom:962.906667pt;}
.y6_c00328{bottom:976.773333pt;}
.y7_c00328{bottom:981.040000pt;}
.y5_c00328{bottom:1006.240000pt;}
.y4_c00328{bottom:1036.106667pt;}
.y3_c00328{bottom:1065.040000pt;}
.y2_c00328{bottom:1094.906667pt;}
.y1_c00328{bottom:1124.106667pt;}
.h8_c00328{height:11.733399pt;}
.h4_c00328{height:33.763021pt;}
.h9_c00328{height:38.937500pt;}
.h6_c00328{height:90.511719pt;}
.h2_c00328{height:108.041667pt;}
.h3_c00328{height:150.245052pt;}
.h5_c00328{height:162.062500pt;}
.h7_c00328{height:366.406250pt;}
.h0_c00328{height:1229.733333pt;}
.h1_c00328{height:1230.000000pt;}
.w2_c00328{width:93.222667pt;}
.w0_c00328{width:780.466667pt;}
.w1_c00328{width:780.666667pt;}
.x0_c00328{left:0.000000pt;}
.x14_c00328{left:29.600000pt;}
.x15_c00328{left:30.946667pt;}
.x13_c00328{left:32.428000pt;}
.x16_c00328{left:33.909333pt;}
.x3_c00328{left:35.200000pt;}
.x2_c00328{left:36.666667pt;}
.x1_c00328{left:37.733333pt;}
.x7_c00328{left:38.800000pt;}
.xd_c00328{left:39.834667pt;}
.xb_c00328{left:142.316000pt;}
.xe_c00328{left:154.436000pt;}
.x10_c00328{left:163.458667pt;}
.xf_c00328{left:193.220000pt;}
.x17_c00328{left:208.572000pt;}
.x11_c00328{left:249.376000pt;}
.x12_c00328{left:255.570667pt;}
.x8_c00328{left:269.200000pt;}
.x6_c00328{left:271.200000pt;}
.x9_c00328{left:324.000000pt;}
.x4_c00328{left:325.733333pt;}
.xa_c00328{left:339.333333pt;}
.x18_c00328{left:347.401530pt;}
.x5_c00328{left:358.666667pt;}
.xc_c00328{left:561.398667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab4bf211a6e888ad505ff0aa.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_f0c9ee99756b8639b0b5ac5d.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;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_c00329;src:url('chunks/assets/font_b5a9b4f4320690129d54fb47.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_b10aef889e6e985e026fdbe6.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;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_c00329;src:url('chunks/assets/font_408f7db5d77543326116dd54.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00329;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls5_c00329{letter-spacing:0.000000px;}
.ls0_c00329{letter-spacing:3.600000px;}
.ls4_c00329{letter-spacing:6.600000px;}
.ls2_c00329{letter-spacing:13.800000px;}
.ls3_c00329{letter-spacing:16.596000px;}
.ls1_c00329{letter-spacing:31.152000px;}
.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;}
}
.ws2_c00329{word-spacing:-76.038000px;}
.ws3_c00329{word-spacing:-51.000000px;}
.ws1_c00329{word-spacing:-24.582000px;}
.ws0_c00329{word-spacing:-23.136000px;}
.ws4_c00329{word-spacing:-20.244000px;}
.ws5_c00329{word-spacing:-1.512000px;}
.ws8_c00329{word-spacing:0.000000px;}
.ws6_c00329{word-spacing:0.624000px;}
.ws7_c00329{word-spacing:3.609600px;}
._41_c00329{margin-left:-81.888000px;}
._4f_c00329{margin-left:-62.112000px;}
._34_c00329{margin-left:-43.815000px;}
._13_c00329{margin-left:-42.630000px;}
._1f_c00329{margin-left:-34.944000px;}
._2f_c00329{margin-left:-28.476000px;}
._46_c00329{margin-left:-25.248000px;}
._2b_c00329{margin-left:-23.772000px;}
._47_c00329{margin-left:-21.600000px;}
._50_c00329{margin-left:-19.488000px;}
._19_c00329{margin-left:-17.751000px;}
._38_c00329{margin-left:-16.107000px;}
._1e_c00329{margin-left:-14.859000px;}
._c_c00329{margin-left:-13.728000px;}
._33_c00329{margin-left:-11.961000px;}
._a_c00329{margin-left:-10.692000px;}
._17_c00329{margin-left:-9.249000px;}
._b_c00329{margin-left:-7.548000px;}
._5_c00329{margin-left:-5.565000px;}
._1_c00329{margin-left:-3.990000px;}
._0_c00329{margin-left:-2.730000px;}
._3_c00329{margin-left:-1.155000px;}
._7_c00329{width:1.785000px;}
._8_c00329{width:2.835000px;}
._d_c00329{width:4.725000px;}
._1b_c00329{width:6.240000px;}
._23_c00329{width:7.461000px;}
._24_c00329{width:8.844000px;}
._2_c00329{width:10.395000px;}
._1a_c00329{width:11.883000px;}
._e_c00329{width:13.335000px;}
._40_c00329{width:14.508000px;}
._37_c00329{width:15.927000px;}
._25_c00329{width:17.250000px;}
._28_c00329{width:19.020000px;}
._20_c00329{width:20.928000px;}
._36_c00329{width:23.070000px;}
._22_c00329{width:24.615000px;}
._2e_c00329{width:26.241000px;}
._30_c00329{width:27.351000px;}
._26_c00329{width:29.301000px;}
._6_c00329{width:30.555000px;}
._10_c00329{width:31.710000px;}
._1d_c00329{width:32.757000px;}
._2a_c00329{width:35.010000px;}
._9_c00329{width:36.435000px;}
._f_c00329{width:38.325000px;}
._3f_c00329{width:39.552000px;}
._29_c00329{width:41.064000px;}
._1c_c00329{width:42.261000px;}
._4b_c00329{width:44.211000px;}
._18_c00329{width:45.594000px;}
._43_c00329{width:46.713000px;}
._12_c00329{width:47.880000px;}
._27_c00329{width:49.341000px;}
._3e_c00329{width:51.642000px;}
._31_c00329{width:53.805000px;}
._4c_c00329{width:57.912000px;}
._42_c00329{width:59.829000px;}
._52_c00329{width:62.646000px;}
._32_c00329{width:63.855000px;}
._3b_c00329{width:68.523000px;}
._21_c00329{width:70.332000px;}
._3a_c00329{width:71.766000px;}
._53_c00329{width:73.143000px;}
._3c_c00329{width:81.015000px;}
._11_c00329{width:85.458000px;}
._39_c00329{width:90.444000px;}
._55_c00329{width:95.298000px;}
._48_c00329{width:98.928000px;}
._15_c00329{width:114.750000px;}
._54_c00329{width:128.985000px;}
._14_c00329{width:146.265000px;}
._2d_c00329{width:177.327000px;}
._35_c00329{width:183.216000px;}
._45_c00329{width:187.041000px;}
._4a_c00329{width:217.440000px;}
._56_c00329{width:240.576000px;}
._57_c00329{width:278.052000px;}
._51_c00329{width:286.440000px;}
._2c_c00329{width:299.616000px;}
._44_c00329{width:307.458000px;}
._4e_c00329{width:418.560000px;}
._16_c00329{width:450.714000px;}
._4_c00329{width:534.135000px;}
._3d_c00329{width:555.390000px;}
._49_c00329{width:755.280000px;}
._4d_c00329{width:860.553000px;}
._58_c00329{width:1340.763000px;}
.fc2_c00329{color:transparent;}
.fc1_c00329{color:rgb(128,128,128);}
.fc0_c00329{color:rgb(0,0,0);}
.fs6_c00329{font-size:48.000000px;}
.fs5_c00329{font-size:76.800000px;}
.fs4_c00329{font-size:84.000000px;}
.fs1_c00329{font-size:96.000000px;}
.fs2_c00329{font-size:102.000000px;}
.fs0_c00329{font-size:105.000000px;}
.fs3_c00329{font-size:114.000000px;}
.y0_c00329{bottom:0.000000px;}
.y24_c00329{bottom:3.105000px;}
.y23_c00329{bottom:7.228357px;}
.y22_c00329{bottom:121.230000px;}
.y21_c00329{bottom:151.980000px;}
.y20_c00329{bottom:186.630000px;}
.y1f_c00329{bottom:222.480000px;}
.y1e_c00329{bottom:254.880000px;}
.y1d_c00329{bottom:289.530000px;}
.y1c_c00329{bottom:325.080000px;}
.y1b_c00329{bottom:393.180000px;}
.y1a_c00329{bottom:426.930000px;}
.y19_c00329{bottom:460.380000px;}
.y18_c00329{bottom:494.880000px;}
.y17_c00329{bottom:528.480000px;}
.y16_c00329{bottom:562.680000px;}
.y15_c00329{bottom:594.780000px;}
.y14_c00329{bottom:629.130000px;}
.y13_c00329{bottom:664.830000px;}
.y12_c00329{bottom:698.580000px;}
.y11_c00329{bottom:732.780000px;}
.y10_c00329{bottom:764.130000px;}
.yf_c00329{bottom:800.580000px;}
.ye_c00329{bottom:833.730000px;}
.yd_c00329{bottom:867.480000px;}
.yc_c00329{bottom:901.080000px;}
.yb_c00329{bottom:933.930000px;}
.ya_c00329{bottom:967.980000px;}
.y9_c00329{bottom:1001.130000px;}
.y8_c00329{bottom:1034.130000px;}
.y7_c00329{bottom:1067.130000px;}
.y6_c00329{bottom:1100.280000px;}
.y5_c00329{bottom:1132.380000px;}
.y4_c00329{bottom:1167.180000px;}
.y3_c00329{bottom:1200.480000px;}
.y2_c00329{bottom:1232.880000px;}
.y1_c00329{bottom:1267.080000px;}
.h5_c00329{height:13.200074px;}
.h6_c00329{height:43.804688px;}
.h4_c00329{height:121.546875px;}
.h3_c00329{height:129.143555px;}
.h2_c00329{height:132.941895px;}
.h0_c00329{height:1382.700000px;}
.h1_c00329{height:1383.000000px;}
.w2_c00329{width:104.875500px;}
.w0_c00329{width:863.175000px;}
.w1_c00329{width:863.250000px;}
.x0_c00329{left:0.000000px;}
.x4_c00329{left:142.800000px;}
.xa_c00329{left:144.000000px;}
.x3_c00329{left:147.150000px;}
.x9_c00329{left:149.850000px;}
.xb_c00329{left:179.550000px;}
.x7_c00329{left:185.550000px;}
.x10_c00329{left:250.350000px;}
.x1_c00329{left:251.850000px;}
.x2_c00329{left:253.050000px;}
.x5_c00329{left:254.100000px;}
.x6_c00329{left:255.150000px;}
.x11_c00329{left:283.200000px;}
.xc_c00329{left:284.850000px;}
.x8_c00329{left:302.100000px;}
.xd_c00329{left:357.150000px;}
.x12_c00329{left:383.401749px;}
.xf_c00329{left:393.900000px;}
.xe_c00329{left:394.950000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls5_c00329{letter-spacing:0.000000pt;}
.ls0_c00329{letter-spacing:3.200000pt;}
.ls4_c00329{letter-spacing:5.866667pt;}
.ls2_c00329{letter-spacing:12.266667pt;}
.ls3_c00329{letter-spacing:14.752000pt;}
.ls1_c00329{letter-spacing:27.690667pt;}
.ws2_c00329{word-spacing:-67.589333pt;}
.ws3_c00329{word-spacing:-45.333333pt;}
.ws1_c00329{word-spacing:-21.850667pt;}
.ws0_c00329{word-spacing:-20.565333pt;}
.ws4_c00329{word-spacing:-17.994667pt;}
.ws5_c00329{word-spacing:-1.344000pt;}
.ws8_c00329{word-spacing:0.000000pt;}
.ws6_c00329{word-spacing:0.554667pt;}
.ws7_c00329{word-spacing:3.208533pt;}
._41_c00329{margin-left:-72.789333pt;}
._4f_c00329{margin-left:-55.210667pt;}
._34_c00329{margin-left:-38.946667pt;}
._13_c00329{margin-left:-37.893333pt;}
._1f_c00329{margin-left:-31.061333pt;}
._2f_c00329{margin-left:-25.312000pt;}
._46_c00329{margin-left:-22.442667pt;}
._2b_c00329{margin-left:-21.130667pt;}
._47_c00329{margin-left:-19.200000pt;}
._50_c00329{margin-left:-17.322667pt;}
._19_c00329{margin-left:-15.778667pt;}
._38_c00329{margin-left:-14.317333pt;}
._1e_c00329{margin-left:-13.208000pt;}
._c_c00329{margin-left:-12.202667pt;}
._33_c00329{margin-left:-10.632000pt;}
._a_c00329{margin-left:-9.504000pt;}
._17_c00329{margin-left:-8.221333pt;}
._b_c00329{margin-left:-6.709333pt;}
._5_c00329{margin-left:-4.946667pt;}
._1_c00329{margin-left:-3.546667pt;}
._0_c00329{margin-left:-2.426667pt;}
._3_c00329{margin-left:-1.026667pt;}
._7_c00329{width:1.586667pt;}
._8_c00329{width:2.520000pt;}
._d_c00329{width:4.200000pt;}
._1b_c00329{width:5.546667pt;}
._23_c00329{width:6.632000pt;}
._24_c00329{width:7.861333pt;}
._2_c00329{width:9.240000pt;}
._1a_c00329{width:10.562667pt;}
._e_c00329{width:11.853333pt;}
._40_c00329{width:12.896000pt;}
._37_c00329{width:14.157333pt;}
._25_c00329{width:15.333333pt;}
._28_c00329{width:16.906667pt;}
._20_c00329{width:18.602667pt;}
._36_c00329{width:20.506667pt;}
._22_c00329{width:21.880000pt;}
._2e_c00329{width:23.325333pt;}
._30_c00329{width:24.312000pt;}
._26_c00329{width:26.045333pt;}
._6_c00329{width:27.160000pt;}
._10_c00329{width:28.186667pt;}
._1d_c00329{width:29.117333pt;}
._2a_c00329{width:31.120000pt;}
._9_c00329{width:32.386667pt;}
._f_c00329{width:34.066667pt;}
._3f_c00329{width:35.157333pt;}
._29_c00329{width:36.501333pt;}
._1c_c00329{width:37.565333pt;}
._4b_c00329{width:39.298667pt;}
._18_c00329{width:40.528000pt;}
._43_c00329{width:41.522667pt;}
._12_c00329{width:42.560000pt;}
._27_c00329{width:43.858667pt;}
._3e_c00329{width:45.904000pt;}
._31_c00329{width:47.826667pt;}
._4c_c00329{width:51.477333pt;}
._42_c00329{width:53.181333pt;}
._52_c00329{width:55.685333pt;}
._32_c00329{width:56.760000pt;}
._3b_c00329{width:60.909333pt;}
._21_c00329{width:62.517333pt;}
._3a_c00329{width:63.792000pt;}
._53_c00329{width:65.016000pt;}
._3c_c00329{width:72.013333pt;}
._11_c00329{width:75.962667pt;}
._39_c00329{width:80.394667pt;}
._55_c00329{width:84.709333pt;}
._48_c00329{width:87.936000pt;}
._15_c00329{width:102.000000pt;}
._54_c00329{width:114.653333pt;}
._14_c00329{width:130.013333pt;}
._2d_c00329{width:157.624000pt;}
._35_c00329{width:162.858667pt;}
._45_c00329{width:166.258667pt;}
._4a_c00329{width:193.280000pt;}
._56_c00329{width:213.845333pt;}
._57_c00329{width:247.157333pt;}
._51_c00329{width:254.613333pt;}
._2c_c00329{width:266.325333pt;}
._44_c00329{width:273.296000pt;}
._4e_c00329{width:372.053333pt;}
._16_c00329{width:400.634667pt;}
._4_c00329{width:474.786667pt;}
._3d_c00329{width:493.680000pt;}
._49_c00329{width:671.360000pt;}
._4d_c00329{width:764.936000pt;}
._58_c00329{width:1191.789333pt;}
.fs6_c00329{font-size:42.666667pt;}
.fs5_c00329{font-size:68.266667pt;}
.fs4_c00329{font-size:74.666667pt;}
.fs1_c00329{font-size:85.333333pt;}
.fs2_c00329{font-size:90.666667pt;}
.fs0_c00329{font-size:93.333333pt;}
.fs3_c00329{font-size:101.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y24_c00329{bottom:2.760000pt;}
.y23_c00329{bottom:6.425206pt;}
.y22_c00329{bottom:107.760000pt;}
.y21_c00329{bottom:135.093333pt;}
.y20_c00329{bottom:165.893333pt;}
.y1f_c00329{bottom:197.760000pt;}
.y1e_c00329{bottom:226.560000pt;}
.y1d_c00329{bottom:257.360000pt;}
.y1c_c00329{bottom:288.960000pt;}
.y1b_c00329{bottom:349.493333pt;}
.y1a_c00329{bottom:379.493333pt;}
.y19_c00329{bottom:409.226667pt;}
.y18_c00329{bottom:439.893333pt;}
.y17_c00329{bottom:469.760000pt;}
.y16_c00329{bottom:500.160000pt;}
.y15_c00329{bottom:528.693333pt;}
.y14_c00329{bottom:559.226667pt;}
.y13_c00329{bottom:590.960000pt;}
.y12_c00329{bottom:620.960000pt;}
.y11_c00329{bottom:651.360000pt;}
.y10_c00329{bottom:679.226667pt;}
.yf_c00329{bottom:711.626667pt;}
.ye_c00329{bottom:741.093333pt;}
.yd_c00329{bottom:771.093333pt;}
.yc_c00329{bottom:800.960000pt;}
.yb_c00329{bottom:830.160000pt;}
.ya_c00329{bottom:860.426667pt;}
.y9_c00329{bottom:889.893333pt;}
.y8_c00329{bottom:919.226667pt;}
.y7_c00329{bottom:948.560000pt;}
.y6_c00329{bottom:978.026667pt;}
.y5_c00329{bottom:1006.560000pt;}
.y4_c00329{bottom:1037.493333pt;}
.y3_c00329{bottom:1067.093333pt;}
.y2_c00329{bottom:1095.893333pt;}
.y1_c00329{bottom:1126.293333pt;}
.h5_c00329{height:11.733399pt;}
.h6_c00329{height:38.937500pt;}
.h4_c00329{height:108.041667pt;}
.h3_c00329{height:114.794271pt;}
.h2_c00329{height:118.170573pt;}
.h0_c00329{height:1229.066667pt;}
.h1_c00329{height:1229.333333pt;}
.w2_c00329{width:93.222667pt;}
.w0_c00329{width:767.266667pt;}
.w1_c00329{width:767.333333pt;}
.x0_c00329{left:0.000000pt;}
.x4_c00329{left:126.933333pt;}
.xa_c00329{left:128.000000pt;}
.x3_c00329{left:130.800000pt;}
.x9_c00329{left:133.200000pt;}
.xb_c00329{left:159.600000pt;}
.x7_c00329{left:164.933333pt;}
.x10_c00329{left:222.533333pt;}
.x1_c00329{left:223.866667pt;}
.x2_c00329{left:224.933333pt;}
.x5_c00329{left:225.866667pt;}
.x6_c00329{left:226.800000pt;}
.x11_c00329{left:251.733333pt;}
.xc_c00329{left:253.200000pt;}
.x8_c00329{left:268.533333pt;}
.xd_c00329{left:317.466667pt;}
.x12_c00329{left:340.801554pt;}
.xf_c00329{left:350.133333pt;}
.xe_c00329{left:351.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df49385b3e37fc1deba4af5a.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_2daf1defed74923f97471f2d.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_7bb189cbff2fdeadaf680f2f.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_d782f5f3c09ebb05eddcb09c.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_57db8a2e433b810260704d20.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00330;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00330{font-family:ff6_c00330;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls6_c00330{letter-spacing:-6.000000px;}
.ls5_c00330{letter-spacing:0.000000px;}
.ls1_c00330{letter-spacing:5.400000px;}
.ls2_c00330{letter-spacing:9.600000px;}
.ls0_c00330{letter-spacing:11.400000px;}
.ls4_c00330{letter-spacing:11.860800px;}
.ls7_c00330{letter-spacing:12.000000px;}
.ls3_c00330{letter-spacing:12.096000px;}
.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;}
}
.ws1_c00330{word-spacing:-63.504000px;}
.ws2_c00330{word-spacing:-53.856000px;}
.ws0_c00330{word-spacing:-51.000000px;}
.ws3_c00330{word-spacing:0.000000px;}
._3d_c00330{margin-left:-81.249000px;}
._3b_c00330{margin-left:-77.268000px;}
._3a_c00330{margin-left:-51.678000px;}
._45_c00330{margin-left:-39.552000px;}
._35_c00330{margin-left:-32.064000px;}
._f_c00330{margin-left:-29.184000px;}
._2f_c00330{margin-left:-27.264000px;}
._0_c00330{margin-left:-21.504000px;}
._31_c00330{margin-left:-19.032000px;}
._25_c00330{margin-left:-17.292000px;}
._19_c00330{margin-left:-15.168000px;}
._2c_c00330{margin-left:-14.112000px;}
._26_c00330{margin-left:-11.808000px;}
._15_c00330{margin-left:-10.506000px;}
._18_c00330{margin-left:-9.120000px;}
._17_c00330{margin-left:-8.064000px;}
._c_c00330{margin-left:-6.912000px;}
._20_c00330{margin-left:-5.376000px;}
._b_c00330{margin-left:-4.320000px;}
._1f_c00330{margin-left:-3.168000px;}
._e_c00330{margin-left:-1.824000px;}
._11_c00330{width:1.344000px;}
._2_c00330{width:2.496000px;}
._3_c00330{width:4.512000px;}
._13_c00330{width:5.952000px;}
._9_c00330{width:7.200000px;}
._8_c00330{width:8.352000px;}
._7_c00330{width:10.368000px;}
._6_c00330{width:12.192000px;}
._a_c00330{width:13.824000px;}
._5_c00330{width:15.552000px;}
._1b_c00330{width:16.800000px;}
._16_c00330{width:18.924000px;}
._32_c00330{width:20.154000px;}
._21_c00330{width:21.696000px;}
._1d_c00330{width:26.208000px;}
._14_c00330{width:27.360000px;}
._23_c00330{width:28.788000px;}
._33_c00330{width:30.240000px;}
._1e_c00330{width:31.818000px;}
._4_c00330{width:33.888000px;}
._28_c00330{width:35.136000px;}
._44_c00330{width:37.332000px;}
._d_c00330{width:38.400000px;}
._2b_c00330{width:40.128000px;}
._1c_c00330{width:41.214000px;}
._30_c00330{width:42.804000px;}
._29_c00330{width:44.160000px;}
._27_c00330{width:45.984000px;}
._34_c00330{width:47.136000px;}
._36_c00330{width:49.728000px;}
._2a_c00330{width:51.840000px;}
._22_c00330{width:53.856000px;}
._46_c00330{width:55.926000px;}
._1a_c00330{width:57.888000px;}
._42_c00330{width:62.592000px;}
._24_c00330{width:65.664000px;}
._38_c00330{width:75.168000px;}
._10_c00330{width:78.720000px;}
._1_c00330{width:81.792000px;}
._12_c00330{width:90.720000px;}
._43_c00330{width:105.588000px;}
._37_c00330{width:119.532000px;}
._2e_c00330{width:120.852000px;}
._3f_c00330{width:142.752000px;}
._40_c00330{width:167.712000px;}
._41_c00330{width:187.296000px;}
._2d_c00330{width:192.384000px;}
._3e_c00330{width:266.133000px;}
._39_c00330{width:343.455000px;}
._3c_c00330{width:354.873000px;}
.fc2_c00330{color:transparent;}
.fc1_c00330{color:rgb(128,128,128);}
.fc0_c00330{color:rgb(0,0,0);}
.fs5_c00330{font-size:36.000000px;}
.fs7_c00330{font-size:48.000000px;}
.fs6_c00330{font-size:76.800000px;}
.fs2_c00330{font-size:84.000000px;}
.fs4_c00330{font-size:87.000000px;}
.fs0_c00330{font-size:96.000000px;}
.fs1_c00330{font-size:102.000000px;}
.fs3_c00330{font-size:114.000000px;}
.y0_c00330{bottom:0.000000px;}
.y27_c00330{bottom:3.105000px;}
.y26_c00330{bottom:7.228369px;}
.y23_c00330{bottom:104.220000px;}
.y22_c00330{bottom:138.720000px;}
.y21_c00330{bottom:172.470000px;}
.y20_c00330{bottom:207.570000px;}
.y1f_c00330{bottom:255.420000px;}
.y1e_c00330{bottom:277.320000px;}
.y25_c00330{bottom:291.570000px;}
.y24_c00330{bottom:302.970000px;}
.y1d_c00330{bottom:307.770000px;}
.y1c_c00330{bottom:343.920000px;}
.y1b_c00330{bottom:377.970000px;}
.y1a_c00330{bottom:411.720000px;}
.y19_c00330{bottom:444.870000px;}
.y18_c00330{bottom:479.220000px;}
.y17_c00330{bottom:512.220000px;}
.y16_c00330{bottom:545.970000px;}
.y15_c00330{bottom:579.870000px;}
.y14_c00330{bottom:614.520000px;}
.y13_c00330{bottom:647.220000px;}
.y12_c00330{bottom:679.620000px;}
.y11_c00330{bottom:711.120000px;}
.y10_c00330{bottom:745.920000px;}
.yf_c00330{bottom:780.870000px;}
.ye_c00330{bottom:812.370000px;}
.yd_c00330{bottom:846.720000px;}
.yc_c00330{bottom:879.870000px;}
.yb_c00330{bottom:912.270000px;}
.ya_c00330{bottom:947.970000px;}
.y9_c00330{bottom:979.020000px;}
.y8_c00330{bottom:1013.820000px;}
.y7_c00330{bottom:1047.270000px;}
.y6_c00330{bottom:1079.670000px;}
.y5_c00330{bottom:1114.020000px;}
.y4_c00330{bottom:1146.420000px;}
.y3_c00330{bottom:1181.520000px;}
.y2_c00330{bottom:1213.320000px;}
.y1_c00330{bottom:1248.720000px;}
.h6_c00330{height:13.200073px;}
.h7_c00330{height:43.804688px;}
.h4_c00330{height:45.580078px;}
.h5_c00330{height:98.314453px;}
.h3_c00330{height:110.151855px;}
.h2_c00330{height:121.546875px;}
.h0_c00330{height:1356.450000px;}
.h1_c00330{height:1356.750000px;}
.w2_c00330{width:104.875500px;}
.w0_c00330{width:860.775000px;}
.w1_c00330{width:861.000000px;}
.x0_c00330{left:0.000000px;}
.x8_c00330{left:42.450000px;}
.x7_c00330{left:44.100000px;}
.x9_c00330{left:45.150000px;}
.x6_c00330{left:46.200000px;}
.x5_c00330{left:47.250000px;}
.x3_c00330{left:48.300000px;}
.x2_c00330{left:49.350000px;}
.xb_c00330{left:50.550000px;}
.x10_c00330{left:52.200000px;}
.xa_c00330{left:103.950000px;}
.xd_c00330{left:159.600000px;}
.x1_c00330{left:161.700000px;}
.x4_c00330{left:189.300000px;}
.xe_c00330{left:193.050000px;}
.xf_c00330{left:194.100000px;}
.xc_c00330{left:290.550000px;}
.x13_c00330{left:382.201721px;}
.x12_c00330{left:697.500000px;}
.x11_c00330{left:699.000000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls6_c00330{letter-spacing:-5.333333pt;}
.ls5_c00330{letter-spacing:0.000000pt;}
.ls1_c00330{letter-spacing:4.800000pt;}
.ls2_c00330{letter-spacing:8.533333pt;}
.ls0_c00330{letter-spacing:10.133333pt;}
.ls4_c00330{letter-spacing:10.542933pt;}
.ls7_c00330{letter-spacing:10.666667pt;}
.ls3_c00330{letter-spacing:10.752000pt;}
.ws1_c00330{word-spacing:-56.448000pt;}
.ws2_c00330{word-spacing:-47.872000pt;}
.ws0_c00330{word-spacing:-45.333333pt;}
.ws3_c00330{word-spacing:0.000000pt;}
._3d_c00330{margin-left:-72.221333pt;}
._3b_c00330{margin-left:-68.682667pt;}
._3a_c00330{margin-left:-45.936000pt;}
._45_c00330{margin-left:-35.157333pt;}
._35_c00330{margin-left:-28.501333pt;}
._f_c00330{margin-left:-25.941333pt;}
._2f_c00330{margin-left:-24.234667pt;}
._0_c00330{margin-left:-19.114667pt;}
._31_c00330{margin-left:-16.917333pt;}
._25_c00330{margin-left:-15.370667pt;}
._19_c00330{margin-left:-13.482667pt;}
._2c_c00330{margin-left:-12.544000pt;}
._26_c00330{margin-left:-10.496000pt;}
._15_c00330{margin-left:-9.338667pt;}
._18_c00330{margin-left:-8.106667pt;}
._17_c00330{margin-left:-7.168000pt;}
._c_c00330{margin-left:-6.144000pt;}
._20_c00330{margin-left:-4.778667pt;}
._b_c00330{margin-left:-3.840000pt;}
._1f_c00330{margin-left:-2.816000pt;}
._e_c00330{margin-left:-1.621333pt;}
._11_c00330{width:1.194667pt;}
._2_c00330{width:2.218667pt;}
._3_c00330{width:4.010667pt;}
._13_c00330{width:5.290667pt;}
._9_c00330{width:6.400000pt;}
._8_c00330{width:7.424000pt;}
._7_c00330{width:9.216000pt;}
._6_c00330{width:10.837333pt;}
._a_c00330{width:12.288000pt;}
._5_c00330{width:13.824000pt;}
._1b_c00330{width:14.933333pt;}
._16_c00330{width:16.821333pt;}
._32_c00330{width:17.914667pt;}
._21_c00330{width:19.285333pt;}
._1d_c00330{width:23.296000pt;}
._14_c00330{width:24.320000pt;}
._23_c00330{width:25.589333pt;}
._33_c00330{width:26.880000pt;}
._1e_c00330{width:28.282667pt;}
._4_c00330{width:30.122667pt;}
._28_c00330{width:31.232000pt;}
._44_c00330{width:33.184000pt;}
._d_c00330{width:34.133333pt;}
._2b_c00330{width:35.669333pt;}
._1c_c00330{width:36.634667pt;}
._30_c00330{width:38.048000pt;}
._29_c00330{width:39.253333pt;}
._27_c00330{width:40.874667pt;}
._34_c00330{width:41.898667pt;}
._36_c00330{width:44.202667pt;}
._2a_c00330{width:46.080000pt;}
._22_c00330{width:47.872000pt;}
._46_c00330{width:49.712000pt;}
._1a_c00330{width:51.456000pt;}
._42_c00330{width:55.637333pt;}
._24_c00330{width:58.368000pt;}
._38_c00330{width:66.816000pt;}
._10_c00330{width:69.973333pt;}
._1_c00330{width:72.704000pt;}
._12_c00330{width:80.640000pt;}
._43_c00330{width:93.856000pt;}
._37_c00330{width:106.250667pt;}
._2e_c00330{width:107.424000pt;}
._3f_c00330{width:126.890667pt;}
._40_c00330{width:149.077333pt;}
._41_c00330{width:166.485333pt;}
._2d_c00330{width:171.008000pt;}
._3e_c00330{width:236.562667pt;}
._39_c00330{width:305.293333pt;}
._3c_c00330{width:315.442667pt;}
.fs5_c00330{font-size:32.000000pt;}
.fs7_c00330{font-size:42.666667pt;}
.fs6_c00330{font-size:68.266667pt;}
.fs2_c00330{font-size:74.666667pt;}
.fs4_c00330{font-size:77.333333pt;}
.fs0_c00330{font-size:85.333333pt;}
.fs1_c00330{font-size:90.666667pt;}
.fs3_c00330{font-size:101.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y27_c00330{bottom:2.760000pt;}
.y26_c00330{bottom:6.425217pt;}
.y23_c00330{bottom:92.640000pt;}
.y22_c00330{bottom:123.306667pt;}
.y21_c00330{bottom:153.306667pt;}
.y20_c00330{bottom:184.506667pt;}
.y1f_c00330{bottom:227.040000pt;}
.y1e_c00330{bottom:246.506667pt;}
.y25_c00330{bottom:259.173333pt;}
.y24_c00330{bottom:269.306667pt;}
.y1d_c00330{bottom:273.573333pt;}
.y1c_c00330{bottom:305.706667pt;}
.y1b_c00330{bottom:335.973333pt;}
.y1a_c00330{bottom:365.973333pt;}
.y19_c00330{bottom:395.440000pt;}
.y18_c00330{bottom:425.973333pt;}
.y17_c00330{bottom:455.306667pt;}
.y16_c00330{bottom:485.306667pt;}
.y15_c00330{bottom:515.440000pt;}
.y14_c00330{bottom:546.240000pt;}
.y13_c00330{bottom:575.306667pt;}
.y12_c00330{bottom:604.106667pt;}
.y11_c00330{bottom:632.106667pt;}
.y10_c00330{bottom:663.040000pt;}
.yf_c00330{bottom:694.106667pt;}
.ye_c00330{bottom:722.106667pt;}
.yd_c00330{bottom:752.640000pt;}
.yc_c00330{bottom:782.106667pt;}
.yb_c00330{bottom:810.906667pt;}
.ya_c00330{bottom:842.640000pt;}
.y9_c00330{bottom:870.240000pt;}
.y8_c00330{bottom:901.173333pt;}
.y7_c00330{bottom:930.906667pt;}
.y6_c00330{bottom:959.706667pt;}
.y5_c00330{bottom:990.240000pt;}
.y4_c00330{bottom:1019.040000pt;}
.y3_c00330{bottom:1050.240000pt;}
.y2_c00330{bottom:1078.506667pt;}
.y1_c00330{bottom:1109.973333pt;}
.h6_c00330{height:11.733399pt;}
.h7_c00330{height:38.937500pt;}
.h4_c00330{height:40.515625pt;}
.h5_c00330{height:87.390625pt;}
.h3_c00330{height:97.912760pt;}
.h2_c00330{height:108.041667pt;}
.h0_c00330{height:1205.733333pt;}
.h1_c00330{height:1206.000000pt;}
.w2_c00330{width:93.222667pt;}
.w0_c00330{width:765.133333pt;}
.w1_c00330{width:765.333333pt;}
.x0_c00330{left:0.000000pt;}
.x8_c00330{left:37.733333pt;}
.x7_c00330{left:39.200000pt;}
.x9_c00330{left:40.133333pt;}
.x6_c00330{left:41.066667pt;}
.x5_c00330{left:42.000000pt;}
.x3_c00330{left:42.933333pt;}
.x2_c00330{left:43.866667pt;}
.xb_c00330{left:44.933333pt;}
.x10_c00330{left:46.400000pt;}
.xa_c00330{left:92.400000pt;}
.xd_c00330{left:141.866667pt;}
.x1_c00330{left:143.733333pt;}
.x4_c00330{left:168.266667pt;}
.xe_c00330{left:171.600000pt;}
.xf_c00330{left:172.533333pt;}
.xc_c00330{left:258.266667pt;}
.x13_c00330{left:339.734863pt;}
.x12_c00330{left:620.000000pt;}
.x11_c00330{left:621.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba306571db690a9430ba37d2.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_50a64ad48829aca6899e9580.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_e39d07d960d93cec08457b9e.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls6_c00331{letter-spacing:0.000000px;}
.ls8_c00331{letter-spacing:3.000000px;}
.ls1_c00331{letter-spacing:5.400000px;}
.ls3_c00331{letter-spacing:6.252000px;}
.ls0_c00331{letter-spacing:10.200000px;}
.ls5_c00331{letter-spacing:11.400000px;}
.ls2_c00331{letter-spacing:14.652000px;}
.ls7_c00331{letter-spacing:18.000000px;}
.ls4_c00331{letter-spacing:146.664000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:-23.136000px;}
.ws2_c00331{word-spacing:0.000000px;}
.ws1_c00331{word-spacing:1.344000px;}
._28_c00331{margin-left:-83.904000px;}
._33_c00331{margin-left:-28.896000px;}
._2b_c00331{margin-left:-25.536000px;}
._32_c00331{margin-left:-24.384000px;}
._2d_c00331{margin-left:-21.072000px;}
._1f_c00331{margin-left:-13.752000px;}
._2c_c00331{margin-left:-11.328000px;}
._23_c00331{margin-left:-10.272000px;}
._22_c00331{margin-left:-9.000000px;}
._25_c00331{margin-left:-7.296000px;}
._2a_c00331{margin-left:-5.766000px;}
._20_c00331{margin-left:-4.608000px;}
._21_c00331{margin-left:-3.264000px;}
._7_c00331{margin-left:-1.920000px;}
._1_c00331{width:1.920000px;}
._a_c00331{width:3.456000px;}
._0_c00331{width:4.992000px;}
._b_c00331{width:6.720000px;}
._18_c00331{width:7.872000px;}
._e_c00331{width:9.408000px;}
._5_c00331{width:11.136000px;}
._6_c00331{width:12.288000px;}
._4_c00331{width:14.208000px;}
._8_c00331{width:15.576000px;}
._f_c00331{width:17.568000px;}
._19_c00331{width:18.744000px;}
._16_c00331{width:19.776000px;}
._31_c00331{width:20.832000px;}
._13_c00331{width:21.984000px;}
._30_c00331{width:24.336000px;}
._9_c00331{width:25.440000px;}
._17_c00331{width:27.648000px;}
._27_c00331{width:29.496000px;}
._26_c00331{width:30.660000px;}
._1a_c00331{width:32.256000px;}
._c_c00331{width:33.408000px;}
._2_c00331{width:35.424000px;}
._1c_c00331{width:36.672000px;}
._3_c00331{width:38.400000px;}
._24_c00331{width:40.896000px;}
._d_c00331{width:43.584000px;}
._1e_c00331{width:45.408000px;}
._1d_c00331{width:47.232000px;}
._1b_c00331{width:48.672000px;}
._12_c00331{width:50.304000px;}
._10_c00331{width:51.624000px;}
._14_c00331{width:54.624000px;}
._11_c00331{width:56.256000px;}
._15_c00331{width:109.344000px;}
._2f_c00331{width:178.668000px;}
._2e_c00331{width:1500.672000px;}
._29_c00331{width:1603.200000px;}
._34_c00331{width:1976.256000px;}
.fc2_c00331{color:transparent;}
.fc1_c00331{color:rgb(128,128,128);}
.fc0_c00331{color:rgb(0,0,0);}
.fs4_c00331{font-size:48.000000px;}
.fs2_c00331{font-size:84.000000px;}
.fs3_c00331{font-size:87.000000px;}
.fs0_c00331{font-size:96.000000px;}
.fs1_c00331{font-size:102.000000px;}
.y0_c00331{bottom:0.000000px;}
.y29_c00331{bottom:3.105000px;}
.y28_c00331{bottom:7.228357px;}
.y27_c00331{bottom:98.880000px;}
.y26_c00331{bottom:127.530000px;}
.y25_c00331{bottom:161.730000px;}
.y24_c00331{bottom:196.080000px;}
.y23_c00331{bottom:229.830000px;}
.y22_c00331{bottom:264.330000px;}
.y21_c00331{bottom:298.680000px;}
.y3_c00331{bottom:322.680000px;}
.y20_c00331{bottom:332.880000px;}
.y1f_c00331{bottom:367.230000px;}
.y1e_c00331{bottom:401.730000px;}
.y1d_c00331{bottom:435.330000px;}
.y1c_c00331{bottom:469.530000px;}
.y1b_c00331{bottom:503.580000px;}
.y1a_c00331{bottom:537.630000px;}
.y19_c00331{bottom:571.080000px;}
.y18_c00331{bottom:605.130000px;}
.y17_c00331{bottom:638.880000px;}
.y16_c00331{bottom:672.930000px;}
.y15_c00331{bottom:706.680000px;}
.y14_c00331{bottom:740.430000px;}
.y2_c00331{bottom:761.430000px;}
.y13_c00331{bottom:773.280000px;}
.y12_c00331{bottom:807.030000px;}
.y11_c00331{bottom:841.830000px;}
.y10_c00331{bottom:876.180000px;}
.yf_c00331{bottom:909.330000px;}
.ye_c00331{bottom:943.080000px;}
.yd_c00331{bottom:976.380000px;}
.y1_c00331{bottom:979.380000px;}
.yc_c00331{bottom:1009.830000px;}
.yb_c00331{bottom:1042.980000px;}
.ya_c00331{bottom:1075.380000px;}
.y9_c00331{bottom:1109.130000px;}
.y8_c00331{bottom:1142.730000px;}
.y7_c00331{bottom:1175.880000px;}
.y6_c00331{bottom:1209.030000px;}
.y5_c00331{bottom:1242.330000px;}
.y4_c00331{bottom:1275.780000px;}
.h4_c00331{height:13.200074px;}
.h5_c00331{height:43.804688px;}
.h2_c00331{height:121.546875px;}
.h3_c00331{height:129.143555px;}
.h0_c00331{height:1382.700000px;}
.h1_c00331{height:1383.000000px;}
.w2_c00331{width:104.875500px;}
.w0_c00331{width:863.175000px;}
.w1_c00331{width:863.250000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:134.100000px;}
.x1_c00331{left:151.500000px;}
.x10_c00331{left:249.300000px;}
.xf_c00331{left:251.400000px;}
.x9_c00331{left:252.900000px;}
.xa_c00331{left:254.100000px;}
.xc_c00331{left:255.150000px;}
.xd_c00331{left:257.400000px;}
.x7_c00331{left:264.300000px;}
.x6_c00331{left:281.100000px;}
.x4_c00331{left:282.600000px;}
.x3_c00331{left:284.850000px;}
.x5_c00331{left:285.900000px;}
.xb_c00331{left:302.100000px;}
.xe_c00331{left:304.350000px;}
.x11_c00331{left:383.401749px;}
.x8_c00331{left:402.600000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls6_c00331{letter-spacing:0.000000pt;}
.ls8_c00331{letter-spacing:2.666667pt;}
.ls1_c00331{letter-spacing:4.800000pt;}
.ls3_c00331{letter-spacing:5.557333pt;}
.ls0_c00331{letter-spacing:9.066667pt;}
.ls5_c00331{letter-spacing:10.133333pt;}
.ls2_c00331{letter-spacing:13.024000pt;}
.ls7_c00331{letter-spacing:16.000000pt;}
.ls4_c00331{letter-spacing:130.368000pt;}
.ws0_c00331{word-spacing:-20.565333pt;}
.ws2_c00331{word-spacing:0.000000pt;}
.ws1_c00331{word-spacing:1.194667pt;}
._28_c00331{margin-left:-74.581333pt;}
._33_c00331{margin-left:-25.685333pt;}
._2b_c00331{margin-left:-22.698667pt;}
._32_c00331{margin-left:-21.674667pt;}
._2d_c00331{margin-left:-18.730667pt;}
._1f_c00331{margin-left:-12.224000pt;}
._2c_c00331{margin-left:-10.069333pt;}
._23_c00331{margin-left:-9.130667pt;}
._22_c00331{margin-left:-8.000000pt;}
._25_c00331{margin-left:-6.485333pt;}
._2a_c00331{margin-left:-5.125333pt;}
._20_c00331{margin-left:-4.096000pt;}
._21_c00331{margin-left:-2.901333pt;}
._7_c00331{margin-left:-1.706667pt;}
._1_c00331{width:1.706667pt;}
._a_c00331{width:3.072000pt;}
._0_c00331{width:4.437333pt;}
._b_c00331{width:5.973333pt;}
._18_c00331{width:6.997333pt;}
._e_c00331{width:8.362667pt;}
._5_c00331{width:9.898667pt;}
._6_c00331{width:10.922667pt;}
._4_c00331{width:12.629333pt;}
._8_c00331{width:13.845333pt;}
._f_c00331{width:15.616000pt;}
._19_c00331{width:16.661333pt;}
._16_c00331{width:17.578667pt;}
._31_c00331{width:18.517333pt;}
._13_c00331{width:19.541333pt;}
._30_c00331{width:21.632000pt;}
._9_c00331{width:22.613333pt;}
._17_c00331{width:24.576000pt;}
._27_c00331{width:26.218667pt;}
._26_c00331{width:27.253333pt;}
._1a_c00331{width:28.672000pt;}
._c_c00331{width:29.696000pt;}
._2_c00331{width:31.488000pt;}
._1c_c00331{width:32.597333pt;}
._3_c00331{width:34.133333pt;}
._24_c00331{width:36.352000pt;}
._d_c00331{width:38.741333pt;}
._1e_c00331{width:40.362667pt;}
._1d_c00331{width:41.984000pt;}
._1b_c00331{width:43.264000pt;}
._12_c00331{width:44.714667pt;}
._10_c00331{width:45.888000pt;}
._14_c00331{width:48.554667pt;}
._11_c00331{width:50.005333pt;}
._15_c00331{width:97.194667pt;}
._2f_c00331{width:158.816000pt;}
._2e_c00331{width:1333.930667pt;}
._29_c00331{width:1425.066667pt;}
._34_c00331{width:1756.672000pt;}
.fs4_c00331{font-size:42.666667pt;}
.fs2_c00331{font-size:74.666667pt;}
.fs3_c00331{font-size:77.333333pt;}
.fs0_c00331{font-size:85.333333pt;}
.fs1_c00331{font-size:90.666667pt;}
.y0_c00331{bottom:0.000000pt;}
.y29_c00331{bottom:2.760000pt;}
.y28_c00331{bottom:6.425206pt;}
.y27_c00331{bottom:87.893333pt;}
.y26_c00331{bottom:113.360000pt;}
.y25_c00331{bottom:143.760000pt;}
.y24_c00331{bottom:174.293333pt;}
.y23_c00331{bottom:204.293333pt;}
.y22_c00331{bottom:234.960000pt;}
.y21_c00331{bottom:265.493333pt;}
.y3_c00331{bottom:286.826667pt;}
.y20_c00331{bottom:295.893333pt;}
.y1f_c00331{bottom:326.426667pt;}
.y1e_c00331{bottom:357.093333pt;}
.y1d_c00331{bottom:386.960000pt;}
.y1c_c00331{bottom:417.360000pt;}
.y1b_c00331{bottom:447.626667pt;}
.y1a_c00331{bottom:477.893333pt;}
.y19_c00331{bottom:507.626667pt;}
.y18_c00331{bottom:537.893333pt;}
.y17_c00331{bottom:567.893333pt;}
.y16_c00331{bottom:598.160000pt;}
.y15_c00331{bottom:628.160000pt;}
.y14_c00331{bottom:658.160000pt;}
.y2_c00331{bottom:676.826667pt;}
.y13_c00331{bottom:687.360000pt;}
.y12_c00331{bottom:717.360000pt;}
.y11_c00331{bottom:748.293333pt;}
.y10_c00331{bottom:778.826667pt;}
.yf_c00331{bottom:808.293333pt;}
.ye_c00331{bottom:838.293333pt;}
.yd_c00331{bottom:867.893333pt;}
.y1_c00331{bottom:870.560000pt;}
.yc_c00331{bottom:897.626667pt;}
.yb_c00331{bottom:927.093333pt;}
.ya_c00331{bottom:955.893333pt;}
.y9_c00331{bottom:985.893333pt;}
.y8_c00331{bottom:1015.760000pt;}
.y7_c00331{bottom:1045.226667pt;}
.y6_c00331{bottom:1074.693333pt;}
.y5_c00331{bottom:1104.293333pt;}
.y4_c00331{bottom:1134.026667pt;}
.h4_c00331{height:11.733399pt;}
.h5_c00331{height:38.937500pt;}
.h2_c00331{height:108.041667pt;}
.h3_c00331{height:114.794271pt;}
.h0_c00331{height:1229.066667pt;}
.h1_c00331{height:1229.333333pt;}
.w2_c00331{width:93.222667pt;}
.w0_c00331{width:767.266667pt;}
.w1_c00331{width:767.333333pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:119.200000pt;}
.x1_c00331{left:134.666667pt;}
.x10_c00331{left:221.600000pt;}
.xf_c00331{left:223.466667pt;}
.x9_c00331{left:224.800000pt;}
.xa_c00331{left:225.866667pt;}
.xc_c00331{left:226.800000pt;}
.xd_c00331{left:228.800000pt;}
.x7_c00331{left:234.933333pt;}
.x6_c00331{left:249.866667pt;}
.x4_c00331{left:251.200000pt;}
.x3_c00331{left:253.200000pt;}
.x5_c00331{left:254.133333pt;}
.xb_c00331{left:268.533333pt;}
.xe_c00331{left:270.533333pt;}
.x11_c00331{left:340.801554pt;}
.x8_c00331{left:357.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_29baa77a6b64bb0bdba11c82.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_f42aea5c0da0926feeaf0a8b.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls1_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:6.720000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-20.244000px;}
.ws1_c00332{word-spacing:0.000000px;}
._38_c00332{margin-left:-27.264000px;}
._32_c00332{margin-left:-19.680000px;}
._c_c00332{margin-left:-13.728000px;}
._36_c00332{margin-left:-12.516000px;}
._16_c00332{margin-left:-11.232000px;}
._24_c00332{margin-left:-8.640000px;}
._18_c00332{margin-left:-6.816000px;}
._8_c00332{margin-left:-5.184000px;}
._19_c00332{margin-left:-4.032000px;}
._1c_c00332{margin-left:-2.976000px;}
._5_c00332{margin-left:-1.728000px;}
._0_c00332{width:1.920000px;}
._3_c00332{width:3.168000px;}
._4_c00332{width:4.704000px;}
._2_c00332{width:5.856000px;}
._b_c00332{width:7.200000px;}
._14_c00332{width:8.256000px;}
._11_c00332{width:9.504000px;}
._1a_c00332{width:10.752000px;}
._10_c00332{width:12.384000px;}
._23_c00332{width:13.728000px;}
._e_c00332{width:15.360000px;}
._a_c00332{width:17.376000px;}
._25_c00332{width:19.200000px;}
._f_c00332{width:21.024000px;}
._2d_c00332{width:22.080000px;}
._15_c00332{width:24.288000px;}
._1e_c00332{width:25.440000px;}
._30_c00332{width:26.496000px;}
._d_c00332{width:27.936000px;}
._1d_c00332{width:29.952000px;}
._1b_c00332{width:31.968000px;}
._9_c00332{width:34.464000px;}
._1f_c00332{width:36.864000px;}
._12_c00332{width:38.496000px;}
._26_c00332{width:39.552000px;}
._20_c00332{width:40.872000px;}
._2c_c00332{width:42.816000px;}
._6_c00332{width:44.544000px;}
._28_c00332{width:45.600000px;}
._2b_c00332{width:47.616000px;}
._22_c00332{width:49.248000px;}
._21_c00332{width:52.224000px;}
._2f_c00332{width:54.432000px;}
._2a_c00332{width:55.968000px;}
._7_c00332{width:60.192000px;}
._34_c00332{width:67.296000px;}
._1_c00332{width:74.304000px;}
._29_c00332{width:82.368000px;}
._17_c00332{width:86.016000px;}
._35_c00332{width:96.384000px;}
._27_c00332{width:172.092000px;}
._13_c00332{width:177.504000px;}
._37_c00332{width:205.236000px;}
._2e_c00332{width:387.168000px;}
._3a_c00332{width:864.288000px;}
._39_c00332{width:879.264000px;}
._33_c00332{width:915.552000px;}
._31_c00332{width:1052.832000px;}
.fc2_c00332{color:transparent;}
.fc1_c00332{color:rgb(128,128,128);}
.fc0_c00332{color:rgb(0,0,0);}
.fs3_c00332{font-size:48.000000px;}
.fs1_c00332{font-size:84.000000px;}
.fs2_c00332{font-size:87.000000px;}
.fs0_c00332{font-size:96.000000px;}
.y0_c00332{bottom:0.000000px;}
.y26_c00332{bottom:3.105000px;}
.y25_c00332{bottom:7.228371px;}
.y24_c00332{bottom:89.415000px;}
.y23_c00332{bottom:122.565000px;}
.y22_c00332{bottom:157.065000px;}
.y21_c00332{bottom:191.115000px;}
.y20_c00332{bottom:224.115000px;}
.y1f_c00332{bottom:257.865000px;}
.y1e_c00332{bottom:291.015000px;}
.y1d_c00332{bottom:324.315000px;}
.y1c_c00332{bottom:358.815000px;}
.y1b_c00332{bottom:391.215000px;}
.y1a_c00332{bottom:425.565000px;}
.y19_c00332{bottom:459.015000px;}
.y18_c00332{bottom:493.065000px;}
.y17_c00332{bottom:525.915000px;}
.y16_c00332{bottom:558.915000px;}
.y15_c00332{bottom:592.065000px;}
.y14_c00332{bottom:625.365000px;}
.y13_c00332{bottom:659.265000px;}
.y12_c00332{bottom:691.515000px;}
.y11_c00332{bottom:725.715000px;}
.y10_c00332{bottom:759.165000px;}
.yf_c00332{bottom:792.165000px;}
.ye_c00332{bottom:824.865000px;}
.yd_c00332{bottom:858.015000px;}
.yc_c00332{bottom:890.715000px;}
.yb_c00332{bottom:924.465000px;}
.ya_c00332{bottom:956.265000px;}
.y9_c00332{bottom:989.865000px;}
.y8_c00332{bottom:1023.315000px;}
.y7_c00332{bottom:1056.015000px;}
.y6_c00332{bottom:1089.165000px;}
.y5_c00332{bottom:1122.165000px;}
.y4_c00332{bottom:1154.715000px;}
.y3_c00332{bottom:1187.415000px;}
.y2_c00332{bottom:1220.865000px;}
.y1_c00332{bottom:1254.615000px;}
.h3_c00332{height:13.200074px;}
.h4_c00332{height:43.804688px;}
.h2_c00332{height:121.546875px;}
.h1_c00332{height:1371.000000px;}
.h0_c00332{height:1371.075000px;}
.w2_c00332{width:104.875500px;}
.w0_c00332{width:869.925000px;}
.w1_c00332{width:870.000000px;}
.x0_c00332{left:0.000000px;}
.x9_c00332{left:40.200000px;}
.x8_c00332{left:41.400000px;}
.x6_c00332{left:42.450000px;}
.xa_c00332{left:43.500000px;}
.x5_c00332{left:44.550000px;}
.x4_c00332{left:46.200000px;}
.xc_c00332{left:47.250000px;}
.x1_c00332{left:48.900000px;}
.x2_c00332{left:49.950000px;}
.xb_c00332{left:93.150000px;}
.x7_c00332{left:94.200000px;}
.x3_c00332{left:99.600000px;}
.xd_c00332{left:386.776749px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls1_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:5.973333pt;}
.ws0_c00332{word-spacing:-17.994667pt;}
.ws1_c00332{word-spacing:0.000000pt;}
._38_c00332{margin-left:-24.234667pt;}
._32_c00332{margin-left:-17.493333pt;}
._c_c00332{margin-left:-12.202667pt;}
._36_c00332{margin-left:-11.125333pt;}
._16_c00332{margin-left:-9.984000pt;}
._24_c00332{margin-left:-7.680000pt;}
._18_c00332{margin-left:-6.058667pt;}
._8_c00332{margin-left:-4.608000pt;}
._19_c00332{margin-left:-3.584000pt;}
._1c_c00332{margin-left:-2.645333pt;}
._5_c00332{margin-left:-1.536000pt;}
._0_c00332{width:1.706667pt;}
._3_c00332{width:2.816000pt;}
._4_c00332{width:4.181333pt;}
._2_c00332{width:5.205333pt;}
._b_c00332{width:6.400000pt;}
._14_c00332{width:7.338667pt;}
._11_c00332{width:8.448000pt;}
._1a_c00332{width:9.557333pt;}
._10_c00332{width:11.008000pt;}
._23_c00332{width:12.202667pt;}
._e_c00332{width:13.653333pt;}
._a_c00332{width:15.445333pt;}
._25_c00332{width:17.066667pt;}
._f_c00332{width:18.688000pt;}
._2d_c00332{width:19.626667pt;}
._15_c00332{width:21.589333pt;}
._1e_c00332{width:22.613333pt;}
._30_c00332{width:23.552000pt;}
._d_c00332{width:24.832000pt;}
._1d_c00332{width:26.624000pt;}
._1b_c00332{width:28.416000pt;}
._9_c00332{width:30.634667pt;}
._1f_c00332{width:32.768000pt;}
._12_c00332{width:34.218667pt;}
._26_c00332{width:35.157333pt;}
._20_c00332{width:36.330667pt;}
._2c_c00332{width:38.058667pt;}
._6_c00332{width:39.594667pt;}
._28_c00332{width:40.533333pt;}
._2b_c00332{width:42.325333pt;}
._22_c00332{width:43.776000pt;}
._21_c00332{width:46.421333pt;}
._2f_c00332{width:48.384000pt;}
._2a_c00332{width:49.749333pt;}
._7_c00332{width:53.504000pt;}
._34_c00332{width:59.818667pt;}
._1_c00332{width:66.048000pt;}
._29_c00332{width:73.216000pt;}
._17_c00332{width:76.458667pt;}
._35_c00332{width:85.674667pt;}
._27_c00332{width:152.970667pt;}
._13_c00332{width:157.781333pt;}
._37_c00332{width:182.432000pt;}
._2e_c00332{width:344.149333pt;}
._3a_c00332{width:768.256000pt;}
._39_c00332{width:781.568000pt;}
._33_c00332{width:813.824000pt;}
._31_c00332{width:935.850667pt;}
.fs3_c00332{font-size:42.666667pt;}
.fs1_c00332{font-size:74.666667pt;}
.fs2_c00332{font-size:77.333333pt;}
.fs0_c00332{font-size:85.333333pt;}
.y0_c00332{bottom:0.000000pt;}
.y26_c00332{bottom:2.760000pt;}
.y25_c00332{bottom:6.425219pt;}
.y24_c00332{bottom:79.480000pt;}
.y23_c00332{bottom:108.946667pt;}
.y22_c00332{bottom:139.613333pt;}
.y21_c00332{bottom:169.880000pt;}
.y20_c00332{bottom:199.213333pt;}
.y1f_c00332{bottom:229.213333pt;}
.y1e_c00332{bottom:258.680000pt;}
.y1d_c00332{bottom:288.280000pt;}
.y1c_c00332{bottom:318.946667pt;}
.y1b_c00332{bottom:347.746667pt;}
.y1a_c00332{bottom:378.280000pt;}
.y19_c00332{bottom:408.013333pt;}
.y18_c00332{bottom:438.280000pt;}
.y17_c00332{bottom:467.480000pt;}
.y16_c00332{bottom:496.813333pt;}
.y15_c00332{bottom:526.280000pt;}
.y14_c00332{bottom:555.880000pt;}
.y13_c00332{bottom:586.013333pt;}
.y12_c00332{bottom:614.680000pt;}
.y11_c00332{bottom:645.080000pt;}
.y10_c00332{bottom:674.813333pt;}
.yf_c00332{bottom:704.146667pt;}
.ye_c00332{bottom:733.213333pt;}
.yd_c00332{bottom:762.680000pt;}
.yc_c00332{bottom:791.746667pt;}
.yb_c00332{bottom:821.746667pt;}
.ya_c00332{bottom:850.013333pt;}
.y9_c00332{bottom:879.880000pt;}
.y8_c00332{bottom:909.613333pt;}
.y7_c00332{bottom:938.680000pt;}
.y6_c00332{bottom:968.146667pt;}
.y5_c00332{bottom:997.480000pt;}
.y4_c00332{bottom:1026.413333pt;}
.y3_c00332{bottom:1055.480000pt;}
.y2_c00332{bottom:1085.213333pt;}
.y1_c00332{bottom:1115.213333pt;}
.h3_c00332{height:11.733399pt;}
.h4_c00332{height:38.937500pt;}
.h2_c00332{height:108.041667pt;}
.h1_c00332{height:1218.666667pt;}
.h0_c00332{height:1218.733333pt;}
.w2_c00332{width:93.222667pt;}
.w0_c00332{width:773.266667pt;}
.w1_c00332{width:773.333333pt;}
.x0_c00332{left:0.000000pt;}
.x9_c00332{left:35.733333pt;}
.x8_c00332{left:36.800000pt;}
.x6_c00332{left:37.733333pt;}
.xa_c00332{left:38.666667pt;}
.x5_c00332{left:39.600000pt;}
.x4_c00332{left:41.066667pt;}
.xc_c00332{left:42.000000pt;}
.x1_c00332{left:43.466667pt;}
.x2_c00332{left:44.400000pt;}
.xb_c00332{left:82.800000pt;}
.x7_c00332{left:83.733333pt;}
.x3_c00332{left:88.533333pt;}
.xd_c00332{left:343.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1dee2cad2dd86e99998e5a44.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_736f70eb9c5207e6ce293ca0.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_a3334a285e8824fed93de6cc.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls2_c00333{letter-spacing:0.000000px;}
.ls1_c00333{letter-spacing:8.520000px;}
.ls0_c00333{letter-spacing:46.272000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00333{word-spacing:-51.000000px;}
.ws1_c00333{word-spacing:-23.136000px;}
.ws2_c00333{word-spacing:-20.244000px;}
.ws3_c00333{word-spacing:0.000000px;}
._33_c00333{margin-left:-80.352000px;}
._42_c00333{margin-left:-29.040000px;}
._26_c00333{margin-left:-26.880000px;}
._34_c00333{margin-left:-25.248000px;}
._3e_c00333{margin-left:-20.556000px;}
._3c_c00333{margin-left:-19.104000px;}
._43_c00333{margin-left:-16.248000px;}
._37_c00333{margin-left:-13.656000px;}
._22_c00333{margin-left:-11.328000px;}
._14_c00333{margin-left:-8.760000px;}
._2c_c00333{margin-left:-6.888000px;}
._3b_c00333{margin-left:-5.568000px;}
._2e_c00333{margin-left:-4.224000px;}
._25_c00333{margin-left:-3.096000px;}
._9_c00333{margin-left:-1.512000px;}
._8_c00333{width:1.752000px;}
._2_c00333{width:2.880000px;}
._3_c00333{width:4.704000px;}
._1_c00333{width:6.696000px;}
._0_c00333{width:7.752000px;}
._c_c00333{width:8.760000px;}
._b_c00333{width:10.272000px;}
._13_c00333{width:11.520000px;}
._5_c00333{width:12.576000px;}
._f_c00333{width:14.040000px;}
._e_c00333{width:15.480000px;}
._d_c00333{width:16.992000px;}
._19_c00333{width:19.104000px;}
._6_c00333{width:20.640000px;}
._a_c00333{width:21.864000px;}
._1f_c00333{width:24.168000px;}
._2b_c00333{width:25.968000px;}
._15_c00333{width:27.024000px;}
._1a_c00333{width:28.848000px;}
._16_c00333{width:30.024000px;}
._2f_c00333{width:31.536000px;}
._10_c00333{width:33.288000px;}
._7_c00333{width:35.328000px;}
._38_c00333{width:36.384000px;}
._12_c00333{width:37.440000px;}
._23_c00333{width:38.688000px;}
._4_c00333{width:40.800000px;}
._24_c00333{width:42.504000px;}
._1c_c00333{width:44.928000px;}
._31_c00333{width:46.536000px;}
._2a_c00333{width:47.616000px;}
._11_c00333{width:50.088000px;}
._2d_c00333{width:51.168000px;}
._20_c00333{width:54.264000px;}
._18_c00333{width:56.928000px;}
._36_c00333{width:58.776000px;}
._1b_c00333{width:59.904000px;}
._29_c00333{width:61.248000px;}
._21_c00333{width:63.336000px;}
._32_c00333{width:65.088000px;}
._41_c00333{width:67.080000px;}
._39_c00333{width:68.496000px;}
._1d_c00333{width:70.104000px;}
._17_c00333{width:71.616000px;}
._1e_c00333{width:73.824000px;}
._3d_c00333{width:75.768000px;}
._46_c00333{width:157.608000px;}
._28_c00333{width:177.192000px;}
._30_c00333{width:187.752000px;}
._40_c00333{width:203.448000px;}
._35_c00333{width:211.104000px;}
._3a_c00333{width:254.328000px;}
._3f_c00333{width:274.128000px;}
._27_c00333{width:299.616000px;}
._45_c00333{width:559.512000px;}
._44_c00333{width:1206.048000px;}
.fc2_c00333{color:transparent;}
.fc1_c00333{color:rgb(128,128,128);}
.fc0_c00333{color:rgb(0,0,0);}
.fs3_c00333{font-size:48.000000px;}
.fs2_c00333{font-size:84.000000px;}
.fs0_c00333{font-size:96.000000px;}
.fs1_c00333{font-size:102.000000px;}
.y0_c00333{bottom:0.000000px;}
.y27_c00333{bottom:3.105000px;}
.y26_c00333{bottom:7.228357px;}
.y25_c00333{bottom:99.630000px;}
.y24_c00333{bottom:131.280000px;}
.y23_c00333{bottom:165.780000px;}
.y22_c00333{bottom:199.230000px;}
.y21_c00333{bottom:233.280000px;}
.y20_c00333{bottom:265.380000px;}
.y1f_c00333{bottom:301.830000px;}
.y1e_c00333{bottom:335.130000px;}
.y1d_c00333{bottom:369.180000px;}
.y1c_c00333{bottom:402.930000px;}
.y1b_c00333{bottom:435.480000px;}
.y1a_c00333{bottom:469.830000px;}
.y19_c00333{bottom:503.280000px;}
.y18_c00333{bottom:537.630000px;}
.y17_c00333{bottom:571.080000px;}
.y16_c00333{bottom:604.080000px;}
.y15_c00333{bottom:637.830000px;}
.y1_c00333{bottom:640.680000px;}
.y14_c00333{bottom:671.580000px;}
.y13_c00333{bottom:705.030000px;}
.y12_c00333{bottom:738.180000px;}
.y11_c00333{bottom:771.180000px;}
.y10_c00333{bottom:804.330000px;}
.yf_c00333{bottom:838.680000px;}
.ye_c00333{bottom:871.530000px;}
.yd_c00333{bottom:905.130000px;}
.yc_c00333{bottom:938.280000px;}
.yb_c00333{bottom:971.430000px;}
.ya_c00333{bottom:1004.130000px;}
.y9_c00333{bottom:1036.530000px;}
.y8_c00333{bottom:1069.830000px;}
.y7_c00333{bottom:1102.980000px;}
.y6_c00333{bottom:1136.130000px;}
.y5_c00333{bottom:1169.730000px;}
.y4_c00333{bottom:1203.180000px;}
.y3_c00333{bottom:1235.580000px;}
.y2_c00333{bottom:1268.730000px;}
.h4_c00333{height:13.200074px;}
.h5_c00333{height:43.804688px;}
.h3_c00333{height:98.314453px;}
.h2_c00333{height:121.546875px;}
.h0_c00333{height:1382.700000px;}
.h1_c00333{height:1383.000000px;}
.w2_c00333{width:104.875500px;}
.w0_c00333{width:863.175000px;}
.w1_c00333{width:863.250000px;}
.x0_c00333{left:0.000000px;}
.x7_c00333{left:146.550000px;}
.xe_c00333{left:148.200000px;}
.xd_c00333{left:149.850000px;}
.x1_c00333{left:151.950000px;}
.xb_c00333{left:193.650000px;}
.x2_c00333{left:249.150000px;}
.x5_c00333{left:250.800000px;}
.x4_c00333{left:252.450000px;}
.x6_c00333{left:253.500000px;}
.x8_c00333{left:254.700000px;}
.x9_c00333{left:256.200000px;}
.xc_c00333{left:257.400000px;}
.xa_c00333{left:307.050000px;}
.xf_c00333{left:383.401749px;}
.x3_c00333{left:399.900000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls2_c00333{letter-spacing:0.000000pt;}
.ls1_c00333{letter-spacing:7.573333pt;}
.ls0_c00333{letter-spacing:41.130667pt;}
.ws0_c00333{word-spacing:-45.333333pt;}
.ws1_c00333{word-spacing:-20.565333pt;}
.ws2_c00333{word-spacing:-17.994667pt;}
.ws3_c00333{word-spacing:0.000000pt;}
._33_c00333{margin-left:-71.424000pt;}
._42_c00333{margin-left:-25.813333pt;}
._26_c00333{margin-left:-23.893333pt;}
._34_c00333{margin-left:-22.442667pt;}
._3e_c00333{margin-left:-18.272000pt;}
._3c_c00333{margin-left:-16.981333pt;}
._43_c00333{margin-left:-14.442667pt;}
._37_c00333{margin-left:-12.138667pt;}
._22_c00333{margin-left:-10.069333pt;}
._14_c00333{margin-left:-7.786667pt;}
._2c_c00333{margin-left:-6.122667pt;}
._3b_c00333{margin-left:-4.949333pt;}
._2e_c00333{margin-left:-3.754667pt;}
._25_c00333{margin-left:-2.752000pt;}
._9_c00333{margin-left:-1.344000pt;}
._8_c00333{width:1.557333pt;}
._2_c00333{width:2.560000pt;}
._3_c00333{width:4.181333pt;}
._1_c00333{width:5.952000pt;}
._0_c00333{width:6.890667pt;}
._c_c00333{width:7.786667pt;}
._b_c00333{width:9.130667pt;}
._13_c00333{width:10.240000pt;}
._5_c00333{width:11.178667pt;}
._f_c00333{width:12.480000pt;}
._e_c00333{width:13.760000pt;}
._d_c00333{width:15.104000pt;}
._19_c00333{width:16.981333pt;}
._6_c00333{width:18.346667pt;}
._a_c00333{width:19.434667pt;}
._1f_c00333{width:21.482667pt;}
._2b_c00333{width:23.082667pt;}
._15_c00333{width:24.021333pt;}
._1a_c00333{width:25.642667pt;}
._16_c00333{width:26.688000pt;}
._2f_c00333{width:28.032000pt;}
._10_c00333{width:29.589333pt;}
._7_c00333{width:31.402667pt;}
._38_c00333{width:32.341333pt;}
._12_c00333{width:33.280000pt;}
._23_c00333{width:34.389333pt;}
._4_c00333{width:36.266667pt;}
._24_c00333{width:37.781333pt;}
._1c_c00333{width:39.936000pt;}
._31_c00333{width:41.365333pt;}
._2a_c00333{width:42.325333pt;}
._11_c00333{width:44.522667pt;}
._2d_c00333{width:45.482667pt;}
._20_c00333{width:48.234667pt;}
._18_c00333{width:50.602667pt;}
._36_c00333{width:52.245333pt;}
._1b_c00333{width:53.248000pt;}
._29_c00333{width:54.442667pt;}
._21_c00333{width:56.298667pt;}
._32_c00333{width:57.856000pt;}
._41_c00333{width:59.626667pt;}
._39_c00333{width:60.885333pt;}
._1d_c00333{width:62.314667pt;}
._17_c00333{width:63.658667pt;}
._1e_c00333{width:65.621333pt;}
._3d_c00333{width:67.349333pt;}
._46_c00333{width:140.096000pt;}
._28_c00333{width:157.504000pt;}
._30_c00333{width:166.890667pt;}
._40_c00333{width:180.842667pt;}
._35_c00333{width:187.648000pt;}
._3a_c00333{width:226.069333pt;}
._3f_c00333{width:243.669333pt;}
._27_c00333{width:266.325333pt;}
._45_c00333{width:497.344000pt;}
._44_c00333{width:1072.042667pt;}
.fs3_c00333{font-size:42.666667pt;}
.fs2_c00333{font-size:74.666667pt;}
.fs0_c00333{font-size:85.333333pt;}
.fs1_c00333{font-size:90.666667pt;}
.y0_c00333{bottom:0.000000pt;}
.y27_c00333{bottom:2.760000pt;}
.y26_c00333{bottom:6.425206pt;}
.y25_c00333{bottom:88.560000pt;}
.y24_c00333{bottom:116.693333pt;}
.y23_c00333{bottom:147.360000pt;}
.y22_c00333{bottom:177.093333pt;}
.y21_c00333{bottom:207.360000pt;}
.y20_c00333{bottom:235.893333pt;}
.y1f_c00333{bottom:268.293333pt;}
.y1e_c00333{bottom:297.893333pt;}
.y1d_c00333{bottom:328.160000pt;}
.y1c_c00333{bottom:358.160000pt;}
.y1b_c00333{bottom:387.093333pt;}
.y1a_c00333{bottom:417.626667pt;}
.y19_c00333{bottom:447.360000pt;}
.y18_c00333{bottom:477.893333pt;}
.y17_c00333{bottom:507.626667pt;}
.y16_c00333{bottom:536.960000pt;}
.y15_c00333{bottom:566.960000pt;}
.y1_c00333{bottom:569.493333pt;}
.y14_c00333{bottom:596.960000pt;}
.y13_c00333{bottom:626.693333pt;}
.y12_c00333{bottom:656.160000pt;}
.y11_c00333{bottom:685.493333pt;}
.y10_c00333{bottom:714.960000pt;}
.yf_c00333{bottom:745.493333pt;}
.ye_c00333{bottom:774.693333pt;}
.yd_c00333{bottom:804.560000pt;}
.yc_c00333{bottom:834.026667pt;}
.yb_c00333{bottom:863.493333pt;}
.ya_c00333{bottom:892.560000pt;}
.y9_c00333{bottom:921.360000pt;}
.y8_c00333{bottom:950.960000pt;}
.y7_c00333{bottom:980.426667pt;}
.y6_c00333{bottom:1009.893333pt;}
.y5_c00333{bottom:1039.760000pt;}
.y4_c00333{bottom:1069.493333pt;}
.y3_c00333{bottom:1098.293333pt;}
.y2_c00333{bottom:1127.760000pt;}
.h4_c00333{height:11.733399pt;}
.h5_c00333{height:38.937500pt;}
.h3_c00333{height:87.390625pt;}
.h2_c00333{height:108.041667pt;}
.h0_c00333{height:1229.066667pt;}
.h1_c00333{height:1229.333333pt;}
.w2_c00333{width:93.222667pt;}
.w0_c00333{width:767.266667pt;}
.w1_c00333{width:767.333333pt;}
.x0_c00333{left:0.000000pt;}
.x7_c00333{left:130.266667pt;}
.xe_c00333{left:131.733333pt;}
.xd_c00333{left:133.200000pt;}
.x1_c00333{left:135.066667pt;}
.xb_c00333{left:172.133333pt;}
.x2_c00333{left:221.466667pt;}
.x5_c00333{left:222.933333pt;}
.x4_c00333{left:224.400000pt;}
.x6_c00333{left:225.333333pt;}
.x8_c00333{left:226.400000pt;}
.x9_c00333{left:227.733333pt;}
.xc_c00333{left:228.800000pt;}
.xa_c00333{left:272.933333pt;}
.xf_c00333{left:340.801554pt;}
.x3_c00333{left:355.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_41a56fab354f719c2e90a7b6.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_06debf67930b424a5d63b53b.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_4d74da4c0eb04a5fd50f443b.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;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_c00334;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls3_c00334{letter-spacing:-3.000000px;}
.ls2_c00334{letter-spacing:0.000000px;}
.ls1_c00334{letter-spacing:4.290000px;}
.ls0_c00334{letter-spacing:6.720000px;}
.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;}
}
.ws1_c00334{word-spacing:-71.037000px;}
.ws0_c00334{word-spacing:-23.136000px;}
.ws2_c00334{word-spacing:0.000000px;}
._23_c00334{margin-left:-21.312000px;}
._c_c00334{margin-left:-11.712000px;}
._21_c00334{margin-left:-7.392000px;}
._37_c00334{margin-left:-5.580000px;}
._32_c00334{margin-left:-3.366000px;}
._1d_c00334{margin-left:-1.920000px;}
._5_c00334{width:1.536000px;}
._9_c00334{width:3.168000px;}
._3_c00334{width:4.704000px;}
._18_c00334{width:6.144000px;}
._2_c00334{width:7.488000px;}
._11_c00334{width:8.640000px;}
._8_c00334{width:9.696000px;}
._2c_c00334{width:10.710000px;}
._1_c00334{width:11.808000px;}
._15_c00334{width:12.864000px;}
._6_c00334{width:14.784000px;}
._b_c00334{width:16.704000px;}
._a_c00334{width:17.856000px;}
._10_c00334{width:19.008000px;}
._26_c00334{width:20.499000px;}
._28_c00334{width:24.183000px;}
._d_c00334{width:25.440000px;}
._0_c00334{width:27.360000px;}
._29_c00334{width:28.365000px;}
._e_c00334{width:29.472000px;}
._2d_c00334{width:31.239000px;}
._f_c00334{width:32.640000px;}
._16_c00334{width:34.176000px;}
._19_c00334{width:36.096000px;}
._17_c00334{width:37.248000px;}
._2a_c00334{width:38.463000px;}
._4_c00334{width:40.224000px;}
._2b_c00334{width:41.559000px;}
._27_c00334{width:43.584000px;}
._7_c00334{width:46.080000px;}
._1f_c00334{width:48.000000px;}
._3d_c00334{width:50.094000px;}
._14_c00334{width:51.192000px;}
._39_c00334{width:52.464000px;}
._1e_c00334{width:53.664000px;}
._2f_c00334{width:54.846000px;}
._13_c00334{width:55.968000px;}
._1a_c00334{width:58.752000px;}
._1b_c00334{width:60.288000px;}
._34_c00334{width:61.578000px;}
._12_c00334{width:64.896000px;}
._35_c00334{width:66.096000px;}
._25_c00334{width:68.220000px;}
._1c_c00334{width:70.656000px;}
._3e_c00334{width:72.144000px;}
._33_c00334{width:76.179000px;}
._2e_c00334{width:77.901000px;}
._3a_c00334{width:94.926000px;}
._36_c00334{width:99.828000px;}
._38_c00334{width:106.143000px;}
._31_c00334{width:107.646000px;}
._22_c00334{width:135.552000px;}
._3c_c00334{width:179.070000px;}
._24_c00334{width:190.497000px;}
._3f_c00334{width:233.385000px;}
._30_c00334{width:249.888000px;}
._20_c00334{width:284.352000px;}
._3b_c00334{width:527.973000px;}
.fc2_c00334{color:transparent;}
.fc1_c00334{color:rgb(128,128,128);}
.fc0_c00334{color:rgb(0,0,0);}
.fs4_c00334{font-size:48.000000px;}
.fs1_c00334{font-size:84.000000px;}
.fs2_c00334{font-size:93.000000px;}
.fs0_c00334{font-size:96.000000px;}
.fs3_c00334{font-size:111.000000px;}
.y0_c00334{bottom:0.000000px;}
.y24_c00334{bottom:3.105000px;}
.y23_c00334{bottom:7.228369px;}
.y22_c00334{bottom:91.770000px;}
.y21_c00334{bottom:122.070000px;}
.y20_c00334{bottom:157.170000px;}
.y1f_c00334{bottom:190.320000px;}
.y1e_c00334{bottom:224.370000px;}
.y1d_c00334{bottom:258.120000px;}
.y1c_c00334{bottom:291.870000px;}
.y1b_c00334{bottom:324.720000px;}
.y1a_c00334{bottom:359.370000px;}
.y19_c00334{bottom:391.770000px;}
.y18_c00334{bottom:425.970000px;}
.y17_c00334{bottom:459.570000px;}
.y16_c00334{bottom:493.020000px;}
.y15_c00334{bottom:526.170000px;}
.y14_c00334{bottom:559.620000px;}
.y13_c00334{bottom:593.220000px;}
.y12_c00334{bottom:625.620000px;}
.y11_c00334{bottom:692.820000px;}
.y10_c00334{bottom:758.670000px;}
.yf_c00334{bottom:793.770000px;}
.ye_c00334{bottom:825.870000px;}
.yd_c00334{bottom:858.870000px;}
.yc_c00334{bottom:891.720000px;}
.yb_c00334{bottom:925.320000px;}
.ya_c00334{bottom:958.170000px;}
.y9_c00334{bottom:991.470000px;}
.y8_c00334{bottom:1024.620000px;}
.y7_c00334{bottom:1058.370000px;}
.y6_c00334{bottom:1090.770000px;}
.y5_c00334{bottom:1124.220000px;}
.y4_c00334{bottom:1157.520000px;}
.y3_c00334{bottom:1191.270000px;}
.y2_c00334{bottom:1223.670000px;}
.y1_c00334{bottom:1256.820000px;}
.h5_c00334{height:13.200073px;}
.h6_c00334{height:43.804688px;}
.h4_c00334{height:108.940430px;}
.h3_c00334{height:117.748535px;}
.h2_c00334{height:121.546875px;}
.h0_c00334{height:1383.450000px;}
.h1_c00334{height:1383.750000px;}
.w2_c00334{width:104.875500px;}
.w0_c00334{width:878.025000px;}
.w1_c00334{width:878.250000px;}
.x0_c00334{left:0.000000px;}
.x8_c00334{left:41.400000px;}
.x7_c00334{left:42.450000px;}
.x6_c00334{left:43.500000px;}
.x4_c00334{left:45.150000px;}
.x3_c00334{left:47.250000px;}
.x2_c00334{left:48.900000px;}
.x1_c00334{left:49.950000px;}
.x11_c00334{left:51.600000px;}
.x12_c00334{left:52.650000px;}
.x9_c00334{left:73.200000px;}
.xd_c00334{left:74.250000px;}
.xe_c00334{left:75.900000px;}
.xf_c00334{left:76.950000px;}
.x5_c00334{left:93.750000px;}
.x10_c00334{left:95.850000px;}
.xa_c00334{left:149.850000px;}
.xb_c00334{left:164.400000px;}
.xc_c00334{left:183.300000px;}
.x14_c00334{left:390.826721px;}
.x13_c00334{left:568.350000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls3_c00334{letter-spacing:-2.666667pt;}
.ls2_c00334{letter-spacing:0.000000pt;}
.ls1_c00334{letter-spacing:3.813333pt;}
.ls0_c00334{letter-spacing:5.973333pt;}
.ws1_c00334{word-spacing:-63.144000pt;}
.ws0_c00334{word-spacing:-20.565333pt;}
.ws2_c00334{word-spacing:0.000000pt;}
._23_c00334{margin-left:-18.944000pt;}
._c_c00334{margin-left:-10.410667pt;}
._21_c00334{margin-left:-6.570667pt;}
._37_c00334{margin-left:-4.960000pt;}
._32_c00334{margin-left:-2.992000pt;}
._1d_c00334{margin-left:-1.706667pt;}
._5_c00334{width:1.365333pt;}
._9_c00334{width:2.816000pt;}
._3_c00334{width:4.181333pt;}
._18_c00334{width:5.461333pt;}
._2_c00334{width:6.656000pt;}
._11_c00334{width:7.680000pt;}
._8_c00334{width:8.618667pt;}
._2c_c00334{width:9.520000pt;}
._1_c00334{width:10.496000pt;}
._15_c00334{width:11.434667pt;}
._6_c00334{width:13.141333pt;}
._b_c00334{width:14.848000pt;}
._a_c00334{width:15.872000pt;}
._10_c00334{width:16.896000pt;}
._26_c00334{width:18.221333pt;}
._28_c00334{width:21.496000pt;}
._d_c00334{width:22.613333pt;}
._0_c00334{width:24.320000pt;}
._29_c00334{width:25.213333pt;}
._e_c00334{width:26.197333pt;}
._2d_c00334{width:27.768000pt;}
._f_c00334{width:29.013333pt;}
._16_c00334{width:30.378667pt;}
._19_c00334{width:32.085333pt;}
._17_c00334{width:33.109333pt;}
._2a_c00334{width:34.189333pt;}
._4_c00334{width:35.754667pt;}
._2b_c00334{width:36.941333pt;}
._27_c00334{width:38.741333pt;}
._7_c00334{width:40.960000pt;}
._1f_c00334{width:42.666667pt;}
._3d_c00334{width:44.528000pt;}
._14_c00334{width:45.504000pt;}
._39_c00334{width:46.634667pt;}
._1e_c00334{width:47.701333pt;}
._2f_c00334{width:48.752000pt;}
._13_c00334{width:49.749333pt;}
._1a_c00334{width:52.224000pt;}
._1b_c00334{width:53.589333pt;}
._34_c00334{width:54.736000pt;}
._12_c00334{width:57.685333pt;}
._35_c00334{width:58.752000pt;}
._25_c00334{width:60.640000pt;}
._1c_c00334{width:62.805333pt;}
._3e_c00334{width:64.128000pt;}
._33_c00334{width:67.714667pt;}
._2e_c00334{width:69.245333pt;}
._3a_c00334{width:84.378667pt;}
._36_c00334{width:88.736000pt;}
._38_c00334{width:94.349333pt;}
._31_c00334{width:95.685333pt;}
._22_c00334{width:120.490667pt;}
._3c_c00334{width:159.173333pt;}
._24_c00334{width:169.330667pt;}
._3f_c00334{width:207.453333pt;}
._30_c00334{width:222.122667pt;}
._20_c00334{width:252.757333pt;}
._3b_c00334{width:469.309333pt;}
.fs4_c00334{font-size:42.666667pt;}
.fs1_c00334{font-size:74.666667pt;}
.fs2_c00334{font-size:82.666667pt;}
.fs0_c00334{font-size:85.333333pt;}
.fs3_c00334{font-size:98.666667pt;}
.y0_c00334{bottom:0.000000pt;}
.y24_c00334{bottom:2.760000pt;}
.y23_c00334{bottom:6.425217pt;}
.y22_c00334{bottom:81.573333pt;}
.y21_c00334{bottom:108.506667pt;}
.y20_c00334{bottom:139.706667pt;}
.y1f_c00334{bottom:169.173333pt;}
.y1e_c00334{bottom:199.440000pt;}
.y1d_c00334{bottom:229.440000pt;}
.y1c_c00334{bottom:259.440000pt;}
.y1b_c00334{bottom:288.640000pt;}
.y1a_c00334{bottom:319.440000pt;}
.y19_c00334{bottom:348.240000pt;}
.y18_c00334{bottom:378.640000pt;}
.y17_c00334{bottom:408.506667pt;}
.y16_c00334{bottom:438.240000pt;}
.y15_c00334{bottom:467.706667pt;}
.y14_c00334{bottom:497.440000pt;}
.y13_c00334{bottom:527.306667pt;}
.y12_c00334{bottom:556.106667pt;}
.y11_c00334{bottom:615.840000pt;}
.y10_c00334{bottom:674.373333pt;}
.yf_c00334{bottom:705.573333pt;}
.ye_c00334{bottom:734.106667pt;}
.yd_c00334{bottom:763.440000pt;}
.yc_c00334{bottom:792.640000pt;}
.yb_c00334{bottom:822.506667pt;}
.ya_c00334{bottom:851.706667pt;}
.y9_c00334{bottom:881.306667pt;}
.y8_c00334{bottom:910.773333pt;}
.y7_c00334{bottom:940.773333pt;}
.y6_c00334{bottom:969.573333pt;}
.y5_c00334{bottom:999.306667pt;}
.y4_c00334{bottom:1028.906667pt;}
.y3_c00334{bottom:1058.906667pt;}
.y2_c00334{bottom:1087.706667pt;}
.y1_c00334{bottom:1117.173333pt;}
.h5_c00334{height:11.733399pt;}
.h6_c00334{height:38.937500pt;}
.h4_c00334{height:96.835938pt;}
.h3_c00334{height:104.665365pt;}
.h2_c00334{height:108.041667pt;}
.h0_c00334{height:1229.733333pt;}
.h1_c00334{height:1230.000000pt;}
.w2_c00334{width:93.222667pt;}
.w0_c00334{width:780.466667pt;}
.w1_c00334{width:780.666667pt;}
.x0_c00334{left:0.000000pt;}
.x8_c00334{left:36.800000pt;}
.x7_c00334{left:37.733333pt;}
.x6_c00334{left:38.666667pt;}
.x4_c00334{left:40.133333pt;}
.x3_c00334{left:42.000000pt;}
.x2_c00334{left:43.466667pt;}
.x1_c00334{left:44.400000pt;}
.x11_c00334{left:45.866667pt;}
.x12_c00334{left:46.800000pt;}
.x9_c00334{left:65.066667pt;}
.xd_c00334{left:66.000000pt;}
.xe_c00334{left:67.466667pt;}
.xf_c00334{left:68.400000pt;}
.x5_c00334{left:83.333333pt;}
.x10_c00334{left:85.200000pt;}
.xa_c00334{left:133.200000pt;}
.xb_c00334{left:146.133333pt;}
.xc_c00334{left:162.933333pt;}
.x14_c00334{left:347.401530pt;}
.x13_c00334{left:505.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_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_5664ca892b21d3b57363733d.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00335{vertical-align:-39.000000px;}
.v0_c00335{vertical-align:0.000000px;}
.ls0_c00335{letter-spacing:0.000000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:-23.136000px;}
.ws1_c00335{word-spacing:0.000000px;}
._2e_c00335{margin-left:-27.168000px;}
._25_c00335{margin-left:-16.992000px;}
._19_c00335{margin-left:-14.592000px;}
._1a_c00335{margin-left:-12.480000px;}
._12_c00335{margin-left:-11.232000px;}
._13_c00335{margin-left:-9.888000px;}
._2b_c00335{margin-left:-8.736000px;}
._3d_c00335{margin-left:-7.296000px;}
._14_c00335{margin-left:-6.048000px;}
._2f_c00335{margin-left:-4.704000px;}
._2a_c00335{margin-left:-3.456000px;}
._9_c00335{margin-left:-2.112000px;}
._8_c00335{margin-left:-1.056000px;}
._6_c00335{width:1.344000px;}
._a_c00335{width:2.784000px;}
._2_c00335{width:4.032000px;}
._1_c00335{width:5.088000px;}
._0_c00335{width:6.816000px;}
._3_c00335{width:8.256000px;}
._c_c00335{width:9.888000px;}
._4_c00335{width:11.040000px;}
._23_c00335{width:12.864000px;}
._16_c00335{width:14.688000px;}
._1c_c00335{width:16.224000px;}
._28_c00335{width:17.472000px;}
._5_c00335{width:18.528000px;}
._22_c00335{width:20.448000px;}
._7_c00335{width:21.600000px;}
._29_c00335{width:24.288000px;}
._21_c00335{width:26.400000px;}
._10_c00335{width:27.552000px;}
._b_c00335{width:28.800000px;}
._d_c00335{width:30.432000px;}
._f_c00335{width:32.832000px;}
._17_c00335{width:34.368000px;}
._15_c00335{width:35.712000px;}
._e_c00335{width:37.056000px;}
._3c_c00335{width:38.112000px;}
._11_c00335{width:39.360000px;}
._18_c00335{width:41.088000px;}
._37_c00335{width:43.488000px;}
._1b_c00335{width:44.736000px;}
._3e_c00335{width:45.792000px;}
._27_c00335{width:47.232000px;}
._36_c00335{width:49.440000px;}
._1f_c00335{width:51.360000px;}
._41_c00335{width:52.512000px;}
._1d_c00335{width:54.528000px;}
._2d_c00335{width:56.640000px;}
._2c_c00335{width:58.752000px;}
._3f_c00335{width:61.920000px;}
._35_c00335{width:64.800000px;}
._33_c00335{width:66.528000px;}
._32_c00335{width:72.288000px;}
._31_c00335{width:73.440000px;}
._26_c00335{width:79.488000px;}
._34_c00335{width:84.000000px;}
._3b_c00335{width:87.360000px;}
._20_c00335{width:172.416000px;}
._30_c00335{width:176.064000px;}
._3a_c00335{width:179.136000px;}
._24_c00335{width:186.240000px;}
._1e_c00335{width:206.496000px;}
._39_c00335{width:282.912000px;}
._40_c00335{width:308.952000px;}
._38_c00335{width:357.600000px;}
.fc2_c00335{color:transparent;}
.fc1_c00335{color:rgb(128,128,128);}
.fc0_c00335{color:rgb(0,0,0);}
.fs1_c00335{font-size:48.000000px;}
.fs0_c00335{font-size:96.000000px;}
.y0_c00335{bottom:0.000000px;}
.y26_c00335{bottom:3.105000px;}
.y25_c00335{bottom:7.228357px;}
.y24_c00335{bottom:81.630000px;}
.y23_c00335{bottom:114.030000px;}
.y22_c00335{bottom:156.630000px;}
.y21_c00335{bottom:181.530000px;}
.y20_c00335{bottom:215.280000px;}
.y1f_c00335{bottom:249.030000px;}
.y1e_c00335{bottom:282.930000px;}
.y1d_c00335{bottom:316.530000px;}
.y1c_c00335{bottom:350.280000px;}
.y1b_c00335{bottom:383.730000px;}
.y1a_c00335{bottom:417.930000px;}
.y19_c00335{bottom:451.230000px;}
.y18_c00335{bottom:485.430000px;}
.y17_c00335{bottom:518.730000px;}
.y16_c00335{bottom:552.480000px;}
.y15_c00335{bottom:585.630000px;}
.y14_c00335{bottom:619.380000px;}
.y13_c00335{bottom:653.130000px;}
.y12_c00335{bottom:686.430000px;}
.y11_c00335{bottom:719.880000px;}
.y10_c00335{bottom:753.630000px;}
.yf_c00335{bottom:787.080000px;}
.ye_c00335{bottom:820.830000px;}
.yd_c00335{bottom:853.980000px;}
.yc_c00335{bottom:887.280000px;}
.yb_c00335{bottom:920.730000px;}
.ya_c00335{bottom:953.880000px;}
.y9_c00335{bottom:987.180000px;}
.y8_c00335{bottom:1019.580000px;}
.y7_c00335{bottom:1052.730000px;}
.y6_c00335{bottom:1086.030000px;}
.y5_c00335{bottom:1119.780000px;}
.y4_c00335{bottom:1149.480000px;}
.y3_c00335{bottom:1185.330000px;}
.y2_c00335{bottom:1219.380000px;}
.y1_c00335{bottom:1252.830000px;}
.h3_c00335{height:13.200074px;}
.h4_c00335{height:43.804688px;}
.h2_c00335{height:121.546875px;}
.h0_c00335{height:1362.450000px;}
.h1_c00335{height:1362.750000px;}
.w2_c00335{width:104.875500px;}
.w1_c00335{width:849.750000px;}
.w0_c00335{width:849.975000px;}
.x0_c00335{left:0.000000px;}
.x3_c00335{left:141.750000px;}
.xa_c00335{left:148.200000px;}
.x7_c00335{left:156.300000px;}
.x4_c00335{left:169.800000px;}
.x8_c00335{left:222.750000px;}
.x1_c00335{left:256.200000px;}
.x9_c00335{left:257.250000px;}
.x2_c00335{left:258.450000px;}
.x5_c00335{left:260.100000px;}
.x6_c00335{left:310.200000px;}
.xc_c00335{left:376.801758px;}
.xb_c00335{left:795.150000px;}
@media print{
.v1_c00335{vertical-align:-34.666667pt;}
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws0_c00335{word-spacing:-20.565333pt;}
.ws1_c00335{word-spacing:0.000000pt;}
._2e_c00335{margin-left:-24.149333pt;}
._25_c00335{margin-left:-15.104000pt;}
._19_c00335{margin-left:-12.970667pt;}
._1a_c00335{margin-left:-11.093333pt;}
._12_c00335{margin-left:-9.984000pt;}
._13_c00335{margin-left:-8.789333pt;}
._2b_c00335{margin-left:-7.765333pt;}
._3d_c00335{margin-left:-6.485333pt;}
._14_c00335{margin-left:-5.376000pt;}
._2f_c00335{margin-left:-4.181333pt;}
._2a_c00335{margin-left:-3.072000pt;}
._9_c00335{margin-left:-1.877333pt;}
._8_c00335{margin-left:-0.938667pt;}
._6_c00335{width:1.194667pt;}
._a_c00335{width:2.474667pt;}
._2_c00335{width:3.584000pt;}
._1_c00335{width:4.522667pt;}
._0_c00335{width:6.058667pt;}
._3_c00335{width:7.338667pt;}
._c_c00335{width:8.789333pt;}
._4_c00335{width:9.813333pt;}
._23_c00335{width:11.434667pt;}
._16_c00335{width:13.056000pt;}
._1c_c00335{width:14.421333pt;}
._28_c00335{width:15.530667pt;}
._5_c00335{width:16.469333pt;}
._22_c00335{width:18.176000pt;}
._7_c00335{width:19.200000pt;}
._29_c00335{width:21.589333pt;}
._21_c00335{width:23.466667pt;}
._10_c00335{width:24.490667pt;}
._b_c00335{width:25.600000pt;}
._d_c00335{width:27.050667pt;}
._f_c00335{width:29.184000pt;}
._17_c00335{width:30.549333pt;}
._15_c00335{width:31.744000pt;}
._e_c00335{width:32.938667pt;}
._3c_c00335{width:33.877333pt;}
._11_c00335{width:34.986667pt;}
._18_c00335{width:36.522667pt;}
._37_c00335{width:38.656000pt;}
._1b_c00335{width:39.765333pt;}
._3e_c00335{width:40.704000pt;}
._27_c00335{width:41.984000pt;}
._36_c00335{width:43.946667pt;}
._1f_c00335{width:45.653333pt;}
._41_c00335{width:46.677333pt;}
._1d_c00335{width:48.469333pt;}
._2d_c00335{width:50.346667pt;}
._2c_c00335{width:52.224000pt;}
._3f_c00335{width:55.040000pt;}
._35_c00335{width:57.600000pt;}
._33_c00335{width:59.136000pt;}
._32_c00335{width:64.256000pt;}
._31_c00335{width:65.280000pt;}
._26_c00335{width:70.656000pt;}
._34_c00335{width:74.666667pt;}
._3b_c00335{width:77.653333pt;}
._20_c00335{width:153.258667pt;}
._30_c00335{width:156.501333pt;}
._3a_c00335{width:159.232000pt;}
._24_c00335{width:165.546667pt;}
._1e_c00335{width:183.552000pt;}
._39_c00335{width:251.477333pt;}
._40_c00335{width:274.624000pt;}
._38_c00335{width:317.866667pt;}
.fs1_c00335{font-size:42.666667pt;}
.fs0_c00335{font-size:85.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y26_c00335{bottom:2.760000pt;}
.y25_c00335{bottom:6.425206pt;}
.y24_c00335{bottom:72.560000pt;}
.y23_c00335{bottom:101.360000pt;}
.y22_c00335{bottom:139.226667pt;}
.y21_c00335{bottom:161.360000pt;}
.y20_c00335{bottom:191.360000pt;}
.y1f_c00335{bottom:221.360000pt;}
.y1e_c00335{bottom:251.493333pt;}
.y1d_c00335{bottom:281.360000pt;}
.y1c_c00335{bottom:311.360000pt;}
.y1b_c00335{bottom:341.093333pt;}
.y1a_c00335{bottom:371.493333pt;}
.y19_c00335{bottom:401.093333pt;}
.y18_c00335{bottom:431.493333pt;}
.y17_c00335{bottom:461.093333pt;}
.y16_c00335{bottom:491.093333pt;}
.y15_c00335{bottom:520.560000pt;}
.y14_c00335{bottom:550.560000pt;}
.y13_c00335{bottom:580.560000pt;}
.y12_c00335{bottom:610.160000pt;}
.y11_c00335{bottom:639.893333pt;}
.y10_c00335{bottom:669.893333pt;}
.yf_c00335{bottom:699.626667pt;}
.ye_c00335{bottom:729.626667pt;}
.yd_c00335{bottom:759.093333pt;}
.yc_c00335{bottom:788.693333pt;}
.yb_c00335{bottom:818.426667pt;}
.ya_c00335{bottom:847.893333pt;}
.y9_c00335{bottom:877.493333pt;}
.y8_c00335{bottom:906.293333pt;}
.y7_c00335{bottom:935.760000pt;}
.y6_c00335{bottom:965.360000pt;}
.y5_c00335{bottom:995.360000pt;}
.y4_c00335{bottom:1021.760000pt;}
.y3_c00335{bottom:1053.626667pt;}
.y2_c00335{bottom:1083.893333pt;}
.y1_c00335{bottom:1113.626667pt;}
.h3_c00335{height:11.733399pt;}
.h4_c00335{height:38.937500pt;}
.h2_c00335{height:108.041667pt;}
.h0_c00335{height:1211.066667pt;}
.h1_c00335{height:1211.333333pt;}
.w2_c00335{width:93.222667pt;}
.w1_c00335{width:755.333333pt;}
.w0_c00335{width:755.533333pt;}
.x0_c00335{left:0.000000pt;}
.x3_c00335{left:126.000000pt;}
.xa_c00335{left:131.733333pt;}
.x7_c00335{left:138.933333pt;}
.x4_c00335{left:150.933333pt;}
.x8_c00335{left:198.000000pt;}
.x1_c00335{left:227.733333pt;}
.x9_c00335{left:228.666667pt;}
.x2_c00335{left:229.733333pt;}
.x5_c00335{left:231.200000pt;}
.x6_c00335{left:275.733333pt;}
.xc_c00335{left:334.934896pt;}
.xb_c00335{left:706.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_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_76f39141a88e4c4c4b9aef52.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_940bf1c0879b178f705d2a8c.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_814409c18789e1d36afa7031.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls2_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:1.060800px;}
.ls3_c00336{letter-spacing:6.000000px;}
.ls1_c00336{letter-spacing:27.096000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00336{word-spacing:-51.000000px;}
.ws2_c00336{word-spacing:-43.084800px;}
.ws3_c00336{word-spacing:0.000000px;}
.ws0_c00336{word-spacing:4.536000px;}
._3f_c00336{margin-left:-78.384000px;}
._38_c00336{margin-left:-47.616000px;}
._24_c00336{margin-left:-45.432000px;}
._28_c00336{margin-left:-34.872000px;}
._34_c00336{margin-left:-22.104000px;}
._3_c00336{margin-left:-18.720000px;}
._26_c00336{margin-left:-17.376000px;}
._25_c00336{margin-left:-15.168000px;}
._23_c00336{margin-left:-14.028000px;}
._36_c00336{margin-left:-12.960000px;}
._32_c00336{margin-left:-10.752000px;}
._3a_c00336{margin-left:-9.024000px;}
._21_c00336{margin-left:-7.392000px;}
._d_c00336{margin-left:-5.760000px;}
._e_c00336{margin-left:-3.936000px;}
._a_c00336{margin-left:-2.304000px;}
._12_c00336{margin-left:-1.056000px;}
._10_c00336{width:1.344000px;}
._2_c00336{width:2.880000px;}
._14_c00336{width:4.032000px;}
._1_c00336{width:5.568000px;}
._c_c00336{width:7.200000px;}
._9_c00336{width:8.928000px;}
._8_c00336{width:9.984000px;}
._17_c00336{width:11.232000px;}
._0_c00336{width:12.516000px;}
._1f_c00336{width:14.304000px;}
._13_c00336{width:15.360000px;}
._4_c00336{width:16.800000px;}
._19_c00336{width:18.048000px;}
._1c_c00336{width:19.872000px;}
._b_c00336{width:21.600000px;}
._3e_c00336{width:24.228000px;}
._f_c00336{width:25.440000px;}
._11_c00336{width:27.552000px;}
._2c_c00336{width:29.472000px;}
._16_c00336{width:31.584000px;}
._5_c00336{width:32.640000px;}
._33_c00336{width:34.428000px;}
._6_c00336{width:35.520000px;}
._2b_c00336{width:36.900000px;}
._1e_c00336{width:38.208000px;}
._1d_c00336{width:39.360000px;}
._1a_c00336{width:41.052000px;}
._22_c00336{width:42.840000px;}
._1b_c00336{width:44.544000px;}
._29_c00336{width:47.040000px;}
._7_c00336{width:48.480000px;}
._2f_c00336{width:50.016000px;}
._30_c00336{width:51.936000px;}
._2a_c00336{width:54.144000px;}
._43_c00336{width:55.392000px;}
._41_c00336{width:57.216000px;}
._18_c00336{width:58.656000px;}
._3b_c00336{width:59.712000px;}
._15_c00336{width:62.784000px;}
._45_c00336{width:71.136000px;}
._3d_c00336{width:72.600000px;}
._2d_c00336{width:75.648000px;}
._46_c00336{width:79.296000px;}
._42_c00336{width:81.768000px;}
._37_c00336{width:86.400000px;}
._27_c00336{width:109.536000px;}
._2e_c00336{width:115.032000px;}
._40_c00336{width:183.168000px;}
._39_c00336{width:185.376000px;}
._3c_c00336{width:188.256000px;}
._31_c00336{width:295.548000px;}
._44_c00336{width:321.252000px;}
._20_c00336{width:446.148000px;}
._35_c00336{width:819.084000px;}
.fc2_c00336{color:transparent;}
.fc1_c00336{color:rgb(128,128,128);}
.fc0_c00336{color:rgb(0,0,0);}
.fs4_c00336{font-size:48.000000px;}
.fs3_c00336{font-size:76.800000px;}
.fs0_c00336{font-size:84.000000px;}
.fs1_c00336{font-size:96.000000px;}
.fs2_c00336{font-size:102.000000px;}
.y0_c00336{bottom:0.000000px;}
.y26_c00336{bottom:3.105000px;}
.y25_c00336{bottom:7.228363px;}
.y24_c00336{bottom:107.700000px;}
.y23_c00336{bottom:145.050000px;}
.y22_c00336{bottom:176.100000px;}
.y21_c00336{bottom:210.600000px;}
.y20_c00336{bottom:244.650000px;}
.y1f_c00336{bottom:278.400000px;}
.y1e_c00336{bottom:313.200000px;}
.y1d_c00336{bottom:346.200000px;}
.y1c_c00336{bottom:379.650000px;}
.y1b_c00336{bottom:413.400000px;}
.y1a_c00336{bottom:446.550000px;}
.y19_c00336{bottom:480.150000px;}
.y18_c00336{bottom:514.350000px;}
.y17_c00336{bottom:547.050000px;}
.y16_c00336{bottom:581.100000px;}
.y15_c00336{bottom:615.150000px;}
.y14_c00336{bottom:647.550000px;}
.y13_c00336{bottom:682.050000px;}
.y12_c00336{bottom:715.050000px;}
.y11_c00336{bottom:748.500000px;}
.y10_c00336{bottom:781.350000px;}
.yf_c00336{bottom:814.950000px;}
.ye_c00336{bottom:848.700000px;}
.yd_c00336{bottom:883.500000px;}
.yc_c00336{bottom:914.850000px;}
.yb_c00336{bottom:949.050000px;}
.ya_c00336{bottom:982.050000px;}
.y9_c00336{bottom:1015.800000px;}
.y8_c00336{bottom:1048.650000px;}
.y7_c00336{bottom:1083.750000px;}
.y6_c00336{bottom:1115.100000px;}
.y5_c00336{bottom:1148.250000px;}
.y4_c00336{bottom:1181.700000px;}
.y3_c00336{bottom:1215.300000px;}
.y2_c00336{bottom:1248.300000px;}
.y1_c00336{bottom:1283.550000px;}
.h3_c00336{height:13.200074px;}
.h4_c00336{height:43.804688px;}
.h1_c00336{height:98.314453px;}
.h2_c00336{height:121.546875px;}
.h0_c00336{height:1363.500000px;}
.w2_c00336{width:104.875500px;}
.w1_c00336{width:864.750000px;}
.w0_c00336{width:865.050000px;}
.x0_c00336{left:0.000000px;}
.xb_c00336{left:28.350000px;}
.x9_c00336{left:30.000000px;}
.x7_c00336{left:31.050000px;}
.x6_c00336{left:32.100000px;}
.x5_c00336{left:33.150000px;}
.xc_c00336{left:34.200000px;}
.x3_c00336{left:35.400000px;}
.x4_c00336{left:36.450000px;}
.x2_c00336{left:37.500000px;}
.x8_c00336{left:82.350000px;}
.xa_c00336{left:83.400000px;}
.xd_c00336{left:155.700000px;}
.xe_c00336{left:384.339249px;}
.x1_c00336{left:524.700000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls2_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:0.942933pt;}
.ls3_c00336{letter-spacing:5.333333pt;}
.ls1_c00336{letter-spacing:24.085333pt;}
.ws1_c00336{word-spacing:-45.333333pt;}
.ws2_c00336{word-spacing:-38.297600pt;}
.ws3_c00336{word-spacing:0.000000pt;}
.ws0_c00336{word-spacing:4.032000pt;}
._3f_c00336{margin-left:-69.674667pt;}
._38_c00336{margin-left:-42.325333pt;}
._24_c00336{margin-left:-40.384000pt;}
._28_c00336{margin-left:-30.997333pt;}
._34_c00336{margin-left:-19.648000pt;}
._3_c00336{margin-left:-16.640000pt;}
._26_c00336{margin-left:-15.445333pt;}
._25_c00336{margin-left:-13.482667pt;}
._23_c00336{margin-left:-12.469333pt;}
._36_c00336{margin-left:-11.520000pt;}
._32_c00336{margin-left:-9.557333pt;}
._3a_c00336{margin-left:-8.021333pt;}
._21_c00336{margin-left:-6.570667pt;}
._d_c00336{margin-left:-5.120000pt;}
._e_c00336{margin-left:-3.498667pt;}
._a_c00336{margin-left:-2.048000pt;}
._12_c00336{margin-left:-0.938667pt;}
._10_c00336{width:1.194667pt;}
._2_c00336{width:2.560000pt;}
._14_c00336{width:3.584000pt;}
._1_c00336{width:4.949333pt;}
._c_c00336{width:6.400000pt;}
._9_c00336{width:7.936000pt;}
._8_c00336{width:8.874667pt;}
._17_c00336{width:9.984000pt;}
._0_c00336{width:11.125333pt;}
._1f_c00336{width:12.714667pt;}
._13_c00336{width:13.653333pt;}
._4_c00336{width:14.933333pt;}
._19_c00336{width:16.042667pt;}
._1c_c00336{width:17.664000pt;}
._b_c00336{width:19.200000pt;}
._3e_c00336{width:21.536000pt;}
._f_c00336{width:22.613333pt;}
._11_c00336{width:24.490667pt;}
._2c_c00336{width:26.197333pt;}
._16_c00336{width:28.074667pt;}
._5_c00336{width:29.013333pt;}
._33_c00336{width:30.602667pt;}
._6_c00336{width:31.573333pt;}
._2b_c00336{width:32.800000pt;}
._1e_c00336{width:33.962667pt;}
._1d_c00336{width:34.986667pt;}
._1a_c00336{width:36.490667pt;}
._22_c00336{width:38.080000pt;}
._1b_c00336{width:39.594667pt;}
._29_c00336{width:41.813333pt;}
._7_c00336{width:43.093333pt;}
._2f_c00336{width:44.458667pt;}
._30_c00336{width:46.165333pt;}
._2a_c00336{width:48.128000pt;}
._43_c00336{width:49.237333pt;}
._41_c00336{width:50.858667pt;}
._18_c00336{width:52.138667pt;}
._3b_c00336{width:53.077333pt;}
._15_c00336{width:55.808000pt;}
._45_c00336{width:63.232000pt;}
._3d_c00336{width:64.533333pt;}
._2d_c00336{width:67.242667pt;}
._46_c00336{width:70.485333pt;}
._42_c00336{width:72.682667pt;}
._37_c00336{width:76.800000pt;}
._27_c00336{width:97.365333pt;}
._2e_c00336{width:102.250667pt;}
._40_c00336{width:162.816000pt;}
._39_c00336{width:164.778667pt;}
._3c_c00336{width:167.338667pt;}
._31_c00336{width:262.709333pt;}
._44_c00336{width:285.557333pt;}
._20_c00336{width:396.576000pt;}
._35_c00336{width:728.074667pt;}
.fs4_c00336{font-size:42.666667pt;}
.fs3_c00336{font-size:68.266667pt;}
.fs0_c00336{font-size:74.666667pt;}
.fs1_c00336{font-size:85.333333pt;}
.fs2_c00336{font-size:90.666667pt;}
.y0_c00336{bottom:0.000000pt;}
.y26_c00336{bottom:2.760000pt;}
.y25_c00336{bottom:6.425212pt;}
.y24_c00336{bottom:95.733333pt;}
.y23_c00336{bottom:128.933333pt;}
.y22_c00336{bottom:156.533333pt;}
.y21_c00336{bottom:187.200000pt;}
.y20_c00336{bottom:217.466667pt;}
.y1f_c00336{bottom:247.466667pt;}
.y1e_c00336{bottom:278.400000pt;}
.y1d_c00336{bottom:307.733333pt;}
.y1c_c00336{bottom:337.466667pt;}
.y1b_c00336{bottom:367.466667pt;}
.y1a_c00336{bottom:396.933333pt;}
.y19_c00336{bottom:426.800000pt;}
.y18_c00336{bottom:457.200000pt;}
.y17_c00336{bottom:486.266667pt;}
.y16_c00336{bottom:516.533333pt;}
.y15_c00336{bottom:546.800000pt;}
.y14_c00336{bottom:575.600000pt;}
.y13_c00336{bottom:606.266667pt;}
.y12_c00336{bottom:635.600000pt;}
.y11_c00336{bottom:665.333333pt;}
.y10_c00336{bottom:694.533333pt;}
.yf_c00336{bottom:724.400000pt;}
.ye_c00336{bottom:754.400000pt;}
.yd_c00336{bottom:785.333333pt;}
.yc_c00336{bottom:813.200000pt;}
.yb_c00336{bottom:843.600000pt;}
.ya_c00336{bottom:872.933333pt;}
.y9_c00336{bottom:902.933333pt;}
.y8_c00336{bottom:932.133333pt;}
.y7_c00336{bottom:963.333333pt;}
.y6_c00336{bottom:991.200000pt;}
.y5_c00336{bottom:1020.666667pt;}
.y4_c00336{bottom:1050.400000pt;}
.y3_c00336{bottom:1080.266667pt;}
.y2_c00336{bottom:1109.600000pt;}
.y1_c00336{bottom:1140.933333pt;}
.h3_c00336{height:11.733399pt;}
.h4_c00336{height:38.937500pt;}
.h1_c00336{height:87.390625pt;}
.h2_c00336{height:108.041667pt;}
.h0_c00336{height:1212.000000pt;}
.w2_c00336{width:93.222667pt;}
.w1_c00336{width:768.666667pt;}
.w0_c00336{width:768.933333pt;}
.x0_c00336{left:0.000000pt;}
.xb_c00336{left:25.200000pt;}
.x9_c00336{left:26.666667pt;}
.x7_c00336{left:27.600000pt;}
.x6_c00336{left:28.533333pt;}
.x5_c00336{left:29.466667pt;}
.xc_c00336{left:30.400000pt;}
.x3_c00336{left:31.466667pt;}
.x4_c00336{left:32.400000pt;}
.x2_c00336{left:33.333333pt;}
.x8_c00336{left:73.200000pt;}
.xa_c00336{left:74.133333pt;}
.xd_c00336{left:138.400000pt;}
.xe_c00336{left:341.634888pt;}
.x1_c00336{left:466.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_94d3881adb099dadbf11b618.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_a40a10ea3cd22e0e6db0ddc1.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_2c9c335fc8b6ca11beff3f39.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;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_c00337;src:url('chunks/assets/font_3b9b3dcbd7bdd84a299b4eb1.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00337;src:url('chunks/assets/font_bf70a19d476024725a22aab1.woff2')format("woff");}.ff6_c00337{font-family:ff6_c00337;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00337;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00337{font-family:ff7_c00337;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00337{vertical-align:-114.600000px;}
.v0_c00337{vertical-align:0.000000px;}
.ls3_c00337{letter-spacing:-12.000000px;}
.ls2_c00337{letter-spacing:0.000000px;}
.ls0_c00337{letter-spacing:9.600000px;}
.ls1_c00337{letter-spacing:10.452000px;}
.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;}
}
.ws6_c00337{word-spacing:-63.504000px;}
.ws4_c00337{word-spacing:-51.000000px;}
.ws5_c00337{word-spacing:-44.826000px;}
.ws1_c00337{word-spacing:-24.750000px;}
.ws3_c00337{word-spacing:-23.136000px;}
.ws0_c00337{word-spacing:-10.413000px;}
.ws7_c00337{word-spacing:0.000000px;}
.ws2_c00337{word-spacing:15.069000px;}
._3f_c00337{margin-left:-33.312000px;}
._45_c00337{margin-left:-31.821000px;}
._3c_c00337{margin-left:-30.213000px;}
._39_c00337{margin-left:-27.819000px;}
._33_c00337{margin-left:-22.731000px;}
._21_c00337{margin-left:-21.504000px;}
._30_c00337{margin-left:-17.469000px;}
._31_c00337{margin-left:-14.523000px;}
._42_c00337{margin-left:-13.440000px;}
._13_c00337{margin-left:-11.583000px;}
._27_c00337{margin-left:-10.566000px;}
._11_c00337{margin-left:-9.207000px;}
._28_c00337{margin-left:-8.127000px;}
._12_c00337{margin-left:-6.237000px;}
._25_c00337{margin-left:-4.992000px;}
._1b_c00337{margin-left:-3.828000px;}
._26_c00337{margin-left:-2.730000px;}
._b_c00337{margin-left:-1.674000px;}
._8_c00337{width:1.674000px;}
._1_c00337{width:3.627000px;}
._2_c00337{width:5.115000px;}
._3_c00337{width:6.324000px;}
._0_c00337{width:7.812000px;}
._9_c00337{width:9.021000px;}
._2b_c00337{width:10.224000px;}
._7_c00337{width:11.253000px;}
._e_c00337{width:12.369000px;}
._f_c00337{width:14.481000px;}
._2d_c00337{width:15.771000px;}
._1d_c00337{width:17.136000px;}
._6_c00337{width:18.228000px;}
._1c_c00337{width:19.296000px;}
._10_c00337{width:20.553000px;}
._14_c00337{width:21.681000px;}
._37_c00337{width:24.663000px;}
._23_c00337{width:25.677000px;}
._5_c00337{width:26.691000px;}
._2e_c00337{width:27.789000px;}
._1a_c00337{width:29.031000px;}
._38_c00337{width:30.081000px;}
._c_c00337{width:31.341000px;}
._d_c00337{width:33.201000px;}
._3b_c00337{width:34.566000px;}
._1f_c00337{width:35.712000px;}
._4_c00337{width:37.014000px;}
._a_c00337{width:38.343000px;}
._19_c00337{width:39.879000px;}
._2c_c00337{width:40.971000px;}
._18_c00337{width:42.036000px;}
._16_c00337{width:43.896000px;}
._1e_c00337{width:45.663000px;}
._2f_c00337{width:46.686000px;}
._3e_c00337{width:48.006000px;}
._17_c00337{width:50.034000px;}
._24_c00337{width:51.573000px;}
._35_c00337{width:53.691000px;}
._36_c00337{width:56.697000px;}
._29_c00337{width:57.903000px;}
._34_c00337{width:63.690000px;}
._43_c00337{width:81.600000px;}
._44_c00337{width:101.631000px;}
._2a_c00337{width:159.735000px;}
._20_c00337{width:161.664000px;}
._41_c00337{width:176.958000px;}
._32_c00337{width:179.304000px;}
._15_c00337{width:199.176000px;}
._46_c00337{width:231.558000px;}
._3d_c00337{width:246.951000px;}
._40_c00337{width:273.633000px;}
._22_c00337{width:493.152000px;}
._3a_c00337{width:663.234000px;}
.fc2_c00337{color:transparent;}
.fc1_c00337{color:rgb(128,128,128);}
.fc0_c00337{color:rgb(0,0,0);}
.fs5_c00337{font-size:48.000000px;}
.fs4_c00337{font-size:84.000000px;}
.fs0_c00337{font-size:93.000000px;}
.fs2_c00337{font-size:96.000000px;}
.fs1_c00337{font-size:99.000000px;}
.fs3_c00337{font-size:102.000000px;}
.y0_c00337{bottom:0.000000px;}
.y24_c00337{bottom:3.105000px;}
.y23_c00337{bottom:7.228357px;}
.y22_c00337{bottom:124.530000px;}
.y21_c00337{bottom:158.730000px;}
.y20_c00337{bottom:193.680000px;}
.y1f_c00337{bottom:227.430000px;}
.y1e_c00337{bottom:261.630000px;}
.y1d_c00337{bottom:295.980000px;}
.y1c_c00337{bottom:330.780000px;}
.y1b_c00337{bottom:363.930000px;}
.y1a_c00337{bottom:398.580000px;}
.y19_c00337{bottom:431.430000px;}
.y18_c00337{bottom:464.730000px;}
.y17_c00337{bottom:500.280000px;}
.y16_c00337{bottom:533.580000px;}
.y15_c00337{bottom:567.780000px;}
.y14_c00337{bottom:602.430000px;}
.y13_c00337{bottom:634.530000px;}
.y12_c00337{bottom:668.580000px;}
.y11_c00337{bottom:701.430000px;}
.y10_c00337{bottom:736.380000px;}
.yf_c00337{bottom:769.830000px;}
.ye_c00337{bottom:803.280000px;}
.yd_c00337{bottom:836.280000px;}
.yc_c00337{bottom:870.180000px;}
.yb_c00337{bottom:904.230000px;}
.ya_c00337{bottom:936.630000px;}
.y9_c00337{bottom:972.030000px;}
.y8_c00337{bottom:1003.680000px;}
.y7_c00337{bottom:1036.830000px;}
.y6_c00337{bottom:1104.330000px;}
.y5_c00337{bottom:1138.380000px;}
.y4_c00337{bottom:1169.880000px;}
.y3_c00337{bottom:1203.630000px;}
.y2_c00337{bottom:1236.930000px;}
.y1_c00337{bottom:1270.080000px;}
.h4_c00337{height:13.200074px;}
.h5_c00337{height:43.804688px;}
.h2_c00337{height:117.748535px;}
.h3_c00337{height:121.546875px;}
.h0_c00337{height:1382.700000px;}
.h1_c00337{height:1383.000000px;}
.w2_c00337{width:104.875500px;}
.w0_c00337{width:863.175000px;}
.w1_c00337{width:863.250000px;}
.x0_c00337{left:0.000000px;}
.xe_c00337{left:147.600000px;}
.xc_c00337{left:158.550000px;}
.x3_c00337{left:160.650000px;}
.xf_c00337{left:194.700000px;}
.xd_c00337{left:258.450000px;}
.x1_c00337{left:261.150000px;}
.x2_c00337{left:263.250000px;}
.x7_c00337{left:264.300000px;}
.x4_c00337{left:265.500000px;}
.x6_c00337{left:267.000000px;}
.xa_c00337{left:268.650000px;}
.xb_c00337{left:269.700000px;}
.x8_c00337{left:273.600000px;}
.x5_c00337{left:298.950000px;}
.x9_c00337{left:321.600000px;}
.x10_c00337{left:383.401749px;}
@media print{
.v1_c00337{vertical-align:-101.866667pt;}
.v0_c00337{vertical-align:0.000000pt;}
.ls3_c00337{letter-spacing:-10.666667pt;}
.ls2_c00337{letter-spacing:0.000000pt;}
.ls0_c00337{letter-spacing:8.533333pt;}
.ls1_c00337{letter-spacing:9.290667pt;}
.ws6_c00337{word-spacing:-56.448000pt;}
.ws4_c00337{word-spacing:-45.333333pt;}
.ws5_c00337{word-spacing:-39.845333pt;}
.ws1_c00337{word-spacing:-22.000000pt;}
.ws3_c00337{word-spacing:-20.565333pt;}
.ws0_c00337{word-spacing:-9.256000pt;}
.ws7_c00337{word-spacing:0.000000pt;}
.ws2_c00337{word-spacing:13.394667pt;}
._3f_c00337{margin-left:-29.610667pt;}
._45_c00337{margin-left:-28.285333pt;}
._3c_c00337{margin-left:-26.856000pt;}
._39_c00337{margin-left:-24.728000pt;}
._33_c00337{margin-left:-20.205333pt;}
._21_c00337{margin-left:-19.114667pt;}
._30_c00337{margin-left:-15.528000pt;}
._31_c00337{margin-left:-12.909333pt;}
._42_c00337{margin-left:-11.946667pt;}
._13_c00337{margin-left:-10.296000pt;}
._27_c00337{margin-left:-9.392000pt;}
._11_c00337{margin-left:-8.184000pt;}
._28_c00337{margin-left:-7.224000pt;}
._12_c00337{margin-left:-5.544000pt;}
._25_c00337{margin-left:-4.437333pt;}
._1b_c00337{margin-left:-3.402667pt;}
._26_c00337{margin-left:-2.426667pt;}
._b_c00337{margin-left:-1.488000pt;}
._8_c00337{width:1.488000pt;}
._1_c00337{width:3.224000pt;}
._2_c00337{width:4.546667pt;}
._3_c00337{width:5.621333pt;}
._0_c00337{width:6.944000pt;}
._9_c00337{width:8.018667pt;}
._2b_c00337{width:9.088000pt;}
._7_c00337{width:10.002667pt;}
._e_c00337{width:10.994667pt;}
._f_c00337{width:12.872000pt;}
._2d_c00337{width:14.018667pt;}
._1d_c00337{width:15.232000pt;}
._6_c00337{width:16.202667pt;}
._1c_c00337{width:17.152000pt;}
._10_c00337{width:18.269333pt;}
._14_c00337{width:19.272000pt;}
._37_c00337{width:21.922667pt;}
._23_c00337{width:22.824000pt;}
._5_c00337{width:23.725333pt;}
._2e_c00337{width:24.701333pt;}
._1a_c00337{width:25.805333pt;}
._38_c00337{width:26.738667pt;}
._c_c00337{width:27.858667pt;}
._d_c00337{width:29.512000pt;}
._3b_c00337{width:30.725333pt;}
._1f_c00337{width:31.744000pt;}
._4_c00337{width:32.901333pt;}
._a_c00337{width:34.082667pt;}
._19_c00337{width:35.448000pt;}
._2c_c00337{width:36.418667pt;}
._18_c00337{width:37.365333pt;}
._16_c00337{width:39.018667pt;}
._1e_c00337{width:40.589333pt;}
._2f_c00337{width:41.498667pt;}
._3e_c00337{width:42.672000pt;}
._17_c00337{width:44.474667pt;}
._24_c00337{width:45.842667pt;}
._35_c00337{width:47.725333pt;}
._36_c00337{width:50.397333pt;}
._29_c00337{width:51.469333pt;}
._34_c00337{width:56.613333pt;}
._43_c00337{width:72.533333pt;}
._44_c00337{width:90.338667pt;}
._2a_c00337{width:141.986667pt;}
._20_c00337{width:143.701333pt;}
._41_c00337{width:157.296000pt;}
._32_c00337{width:159.381333pt;}
._15_c00337{width:177.045333pt;}
._46_c00337{width:205.829333pt;}
._3d_c00337{width:219.512000pt;}
._40_c00337{width:243.229333pt;}
._22_c00337{width:438.357333pt;}
._3a_c00337{width:589.541333pt;}
.fs5_c00337{font-size:42.666667pt;}
.fs4_c00337{font-size:74.666667pt;}
.fs0_c00337{font-size:82.666667pt;}
.fs2_c00337{font-size:85.333333pt;}
.fs1_c00337{font-size:88.000000pt;}
.fs3_c00337{font-size:90.666667pt;}
.y0_c00337{bottom:0.000000pt;}
.y24_c00337{bottom:2.760000pt;}
.y23_c00337{bottom:6.425206pt;}
.y22_c00337{bottom:110.693333pt;}
.y21_c00337{bottom:141.093333pt;}
.y20_c00337{bottom:172.160000pt;}
.y1f_c00337{bottom:202.160000pt;}
.y1e_c00337{bottom:232.560000pt;}
.y1d_c00337{bottom:263.093333pt;}
.y1c_c00337{bottom:294.026667pt;}
.y1b_c00337{bottom:323.493333pt;}
.y1a_c00337{bottom:354.293333pt;}
.y19_c00337{bottom:383.493333pt;}
.y18_c00337{bottom:413.093333pt;}
.y17_c00337{bottom:444.693333pt;}
.y16_c00337{bottom:474.293333pt;}
.y15_c00337{bottom:504.693333pt;}
.y14_c00337{bottom:535.493333pt;}
.y13_c00337{bottom:564.026667pt;}
.y12_c00337{bottom:594.293333pt;}
.y11_c00337{bottom:623.493333pt;}
.y10_c00337{bottom:654.560000pt;}
.yf_c00337{bottom:684.293333pt;}
.ye_c00337{bottom:714.026667pt;}
.yd_c00337{bottom:743.360000pt;}
.yc_c00337{bottom:773.493333pt;}
.yb_c00337{bottom:803.760000pt;}
.ya_c00337{bottom:832.560000pt;}
.y9_c00337{bottom:864.026667pt;}
.y8_c00337{bottom:892.160000pt;}
.y7_c00337{bottom:921.626667pt;}
.y6_c00337{bottom:981.626667pt;}
.y5_c00337{bottom:1011.893333pt;}
.y4_c00337{bottom:1039.893333pt;}
.y3_c00337{bottom:1069.893333pt;}
.y2_c00337{bottom:1099.493333pt;}
.y1_c00337{bottom:1128.960000pt;}
.h4_c00337{height:11.733399pt;}
.h5_c00337{height:38.937500pt;}
.h2_c00337{height:104.665365pt;}
.h3_c00337{height:108.041667pt;}
.h0_c00337{height:1229.066667pt;}
.h1_c00337{height:1229.333333pt;}
.w2_c00337{width:93.222667pt;}
.w0_c00337{width:767.266667pt;}
.w1_c00337{width:767.333333pt;}
.x0_c00337{left:0.000000pt;}
.xe_c00337{left:131.200000pt;}
.xc_c00337{left:140.933333pt;}
.x3_c00337{left:142.800000pt;}
.xf_c00337{left:173.066667pt;}
.xd_c00337{left:229.733333pt;}
.x1_c00337{left:232.133333pt;}
.x2_c00337{left:234.000000pt;}
.x7_c00337{left:234.933333pt;}
.x4_c00337{left:236.000000pt;}
.x6_c00337{left:237.333333pt;}
.xa_c00337{left:238.800000pt;}
.xb_c00337{left:239.733333pt;}
.x8_c00337{left:243.200000pt;}
.x5_c00337{left:265.733333pt;}
.x9_c00337{left:285.866667pt;}
.x10_c00337{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b2dd49f9c1f9be0bb82034c.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_5b475a2405818a7ce2f8eec3.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_bf62adc0cc152e53b07931bc.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_345e1a78cdc306b930465b00.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_4903a38990cdf6fdfaece19d.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00338;src:url('chunks/assets/font_049670c546be0213a60d2dcd.woff2')format("woff");}.ff6_c00338{font-family:ff6_c00338;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00338;src:url('chunks/assets/font_6cc0728efa20118d57f6a9bc.woff2')format("woff");}.ff7_c00338{font-family:ff7_c00338;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00338;src:url('chunks/assets/font_dfa171711f7867e538e06ea0.woff2')format("woff");}.ff8_c00338{font-family:ff8_c00338;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00338;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00338{font-family:ff9_c00338;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00338{vertical-align:-110.400000px;}
.v3_c00338{vertical-align:-57.000000px;}
.v1_c00338{vertical-align:-34.200000px;}
.v0_c00338{vertical-align:0.000000px;}
.ls6_c00338{letter-spacing:-24.000000px;}
.ls5_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:4.872000px;}
.ls1_c00338{letter-spacing:5.174400px;}
.ls3_c00338{letter-spacing:9.139200px;}
.ls2_c00338{letter-spacing:9.816000px;}
.ls8_c00338{letter-spacing:12.000000px;}
.ls9_c00338{letter-spacing:18.000000px;}
.ls7_c00338{letter-spacing:24.000000px;}
.ls4_c00338{letter-spacing:38.538000px;}
.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;}
}
.ws6_c00338{word-spacing:-58.029000px;}
.ws2_c00338{word-spacing:-53.856000px;}
.ws1_c00338{word-spacing:-51.000000px;}
.ws0_c00338{word-spacing:-43.084800px;}
.ws7_c00338{word-spacing:-38.967000px;}
.ws9_c00338{word-spacing:-25.305000px;}
.ws4_c00338{word-spacing:-24.129000px;}
.ws5_c00338{word-spacing:-20.244000px;}
.wsa_c00338{word-spacing:0.000000px;}
.ws3_c00338{word-spacing:208.320000px;}
.ws8_c00338{word-spacing:309.690000px;}
._43_c00338{margin-left:-83.085000px;}
._3c_c00338{margin-left:-47.241000px;}
._41_c00338{margin-left:-35.043000px;}
._3e_c00338{margin-left:-30.996000px;}
._40_c00338{margin-left:-27.651000px;}
._3b_c00338{margin-left:-24.828000px;}
._3d_c00338{margin-left:-22.260000px;}
._33_c00338{margin-left:-20.856000px;}
._10_c00338{margin-left:-18.720000px;}
._29_c00338{margin-left:-17.472000px;}
._27_c00338{margin-left:-16.320000px;}
._30_c00338{margin-left:-14.400000px;}
._2a_c00338{margin-left:-12.864000px;}
._20_c00338{margin-left:-11.400000px;}
._f_c00338{margin-left:-9.408000px;}
._2f_c00338{margin-left:-8.328000px;}
._11_c00338{margin-left:-7.104000px;}
._32_c00338{margin-left:-5.088000px;}
._1a_c00338{margin-left:-3.840000px;}
._23_c00338{margin-left:-2.208000px;}
._1f_c00338{margin-left:-1.152000px;}
._0_c00338{width:1.632000px;}
._2_c00338{width:3.456000px;}
._7_c00338{width:4.704000px;}
._5_c00338{width:6.528000px;}
._6_c00338{width:7.680000px;}
._1_c00338{width:8.928000px;}
._9_c00338{width:10.080000px;}
._d_c00338{width:11.808000px;}
._c_c00338{width:13.152000px;}
._e_c00338{width:15.168000px;}
._1c_c00338{width:16.416000px;}
._22_c00338{width:17.760000px;}
._a_c00338{width:19.296000px;}
._b_c00338{width:21.024000px;}
._1b_c00338{width:25.248000px;}
._35_c00338{width:26.400000px;}
._18_c00338{width:27.456000px;}
._2d_c00338{width:28.608000px;}
._12_c00338{width:30.048000px;}
._4_c00338{width:31.488000px;}
._16_c00338{width:32.640000px;}
._3_c00338{width:33.888000px;}
._15_c00338{width:35.040000px;}
._14_c00338{width:36.480000px;}
._8_c00338{width:38.016000px;}
._2c_c00338{width:39.552000px;}
._1d_c00338{width:41.184000px;}
._25_c00338{width:43.008000px;}
._21_c00338{width:44.160000px;}
._36_c00338{width:45.792000px;}
._24_c00338{width:47.232000px;}
._13_c00338{width:49.920000px;}
._2b_c00338{width:52.224000px;}
._26_c00338{width:54.144000px;}
._37_c00338{width:55.488000px;}
._2e_c00338{width:57.792000px;}
._1e_c00338{width:61.632000px;}
._28_c00338{width:62.976000px;}
._31_c00338{width:66.624000px;}
._17_c00338{width:72.672000px;}
._3a_c00338{width:91.968000px;}
._44_c00338{width:111.708000px;}
._42_c00338{width:122.757000px;}
._3f_c00338{width:131.109000px;}
._39_c00338{width:176.928000px;}
._19_c00338{width:183.456000px;}
._34_c00338{width:274.080000px;}
._38_c00338{width:1382.208000px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(128,128,128);}
.fc0_c00338{color:rgb(0,0,0);}
.fsb_c00338{font-size:48.000000px;}
.fs9_c00338{font-size:60.000000px;}
.fsa_c00338{font-size:75.000000px;}
.fs1_c00338{font-size:76.800000px;}
.fs6_c00338{font-size:78.000000px;}
.fs7_c00338{font-size:84.000000px;}
.fs8_c00338{font-size:87.000000px;}
.fs0_c00338{font-size:96.000000px;}
.fs2_c00338{font-size:102.000000px;}
.fs3_c00338{font-size:105.000000px;}
.fs5_c00338{font-size:129.000000px;}
.fs4_c00338{font-size:420.000000px;}
.y0_c00338{bottom:0.000000px;}
.y20_c00338{bottom:3.105000px;}
.y1f_c00338{bottom:7.228369px;}
.y1e_c00338{bottom:100.620000px;}
.y1d_c00338{bottom:233.220000px;}
.y1c_c00338{bottom:254.370000px;}
.y1b_c00338{bottom:265.620000px;}
.y1a_c00338{bottom:294.270000px;}
.y18_c00338{bottom:334.770000px;}
.y19_c00338{bottom:338.070000px;}
.y17_c00338{bottom:525.870000px;}
.y16_c00338{bottom:562.320000px;}
.y15_c00338{bottom:593.970000px;}
.y14_c00338{bottom:628.770000px;}
.y13_c00338{bottom:662.220000px;}
.y12_c00338{bottom:696.270000px;}
.y11_c00338{bottom:730.620000px;}
.y10_c00338{bottom:765.720000px;}
.yf_c00338{bottom:798.420000px;}
.ye_c00338{bottom:829.470000px;}
.yd_c00338{bottom:863.670000px;}
.yc_c00338{bottom:897.120000px;}
.yb_c00338{bottom:930.420000px;}
.ya_c00338{bottom:963.870000px;}
.y9_c00338{bottom:997.920000px;}
.y8_c00338{bottom:1031.370000px;}
.y7_c00338{bottom:1065.120000px;}
.y6_c00338{bottom:1098.570000px;}
.y5_c00338{bottom:1129.920000px;}
.y4_c00338{bottom:1164.420000px;}
.y3_c00338{bottom:1197.720000px;}
.y2_c00338{bottom:1230.570000px;}
.y1_c00338{bottom:1263.270000px;}
.h8_c00338{height:13.200073px;}
.h9_c00338{height:43.804688px;}
.h7_c00338{height:78.600000px;}
.h5_c00338{height:91.291992px;}
.h6_c00338{height:110.151855px;}
.h2_c00338{height:121.546875px;}
.h4_c00338{height:137.643000px;}
.h3_c00338{height:378.007031px;}
.h0_c00338{height:1383.450000px;}
.h1_c00338{height:1383.750000px;}
.w2_c00338{width:104.875500px;}
.w0_c00338{width:878.025000px;}
.w1_c00338{width:878.250000px;}
.x0_c00338{left:0.000000px;}
.x7_c00338{left:56.400000px;}
.x6_c00338{left:57.450000px;}
.x5_c00338{left:59.100000px;}
.x4_c00338{left:61.200000px;}
.x2_c00338{left:62.400000px;}
.x1_c00338{left:63.450000px;}
.x8_c00338{left:109.350000px;}
.x3_c00338{left:113.700000px;}
.x10_c00338{left:390.826721px;}
.xe_c00338{left:444.450000px;}
.xf_c00338{left:469.500000px;}
.xb_c00338{left:471.900000px;}
.xc_c00338{left:494.100000px;}
.xa_c00338{left:524.250000px;}
.xd_c00338{left:535.650000px;}
.x9_c00338{left:730.800000px;}
@media print{
.v2_c00338{vertical-align:-98.133333pt;}
.v3_c00338{vertical-align:-50.666667pt;}
.v1_c00338{vertical-align:-30.400000pt;}
.v0_c00338{vertical-align:0.000000pt;}
.ls6_c00338{letter-spacing:-21.333333pt;}
.ls5_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:4.330667pt;}
.ls1_c00338{letter-spacing:4.599467pt;}
.ls3_c00338{letter-spacing:8.123733pt;}
.ls2_c00338{letter-spacing:8.725333pt;}
.ls8_c00338{letter-spacing:10.666667pt;}
.ls9_c00338{letter-spacing:16.000000pt;}
.ls7_c00338{letter-spacing:21.333333pt;}
.ls4_c00338{letter-spacing:34.256000pt;}
.ws6_c00338{word-spacing:-51.581333pt;}
.ws2_c00338{word-spacing:-47.872000pt;}
.ws1_c00338{word-spacing:-45.333333pt;}
.ws0_c00338{word-spacing:-38.297600pt;}
.ws7_c00338{word-spacing:-34.637333pt;}
.ws9_c00338{word-spacing:-22.493333pt;}
.ws4_c00338{word-spacing:-21.448000pt;}
.ws5_c00338{word-spacing:-17.994667pt;}
.wsa_c00338{word-spacing:0.000000pt;}
.ws3_c00338{word-spacing:185.173333pt;}
.ws8_c00338{word-spacing:275.280000pt;}
._43_c00338{margin-left:-73.853333pt;}
._3c_c00338{margin-left:-41.992000pt;}
._41_c00338{margin-left:-31.149333pt;}
._3e_c00338{margin-left:-27.552000pt;}
._40_c00338{margin-left:-24.578667pt;}
._3b_c00338{margin-left:-22.069333pt;}
._3d_c00338{margin-left:-19.786667pt;}
._33_c00338{margin-left:-18.538667pt;}
._10_c00338{margin-left:-16.640000pt;}
._29_c00338{margin-left:-15.530667pt;}
._27_c00338{margin-left:-14.506667pt;}
._30_c00338{margin-left:-12.800000pt;}
._2a_c00338{margin-left:-11.434667pt;}
._20_c00338{margin-left:-10.133333pt;}
._f_c00338{margin-left:-8.362667pt;}
._2f_c00338{margin-left:-7.402667pt;}
._11_c00338{margin-left:-6.314667pt;}
._32_c00338{margin-left:-4.522667pt;}
._1a_c00338{margin-left:-3.413333pt;}
._23_c00338{margin-left:-1.962667pt;}
._1f_c00338{margin-left:-1.024000pt;}
._0_c00338{width:1.450667pt;}
._2_c00338{width:3.072000pt;}
._7_c00338{width:4.181333pt;}
._5_c00338{width:5.802667pt;}
._6_c00338{width:6.826667pt;}
._1_c00338{width:7.936000pt;}
._9_c00338{width:8.960000pt;}
._d_c00338{width:10.496000pt;}
._c_c00338{width:11.690667pt;}
._e_c00338{width:13.482667pt;}
._1c_c00338{width:14.592000pt;}
._22_c00338{width:15.786667pt;}
._a_c00338{width:17.152000pt;}
._b_c00338{width:18.688000pt;}
._1b_c00338{width:22.442667pt;}
._35_c00338{width:23.466667pt;}
._18_c00338{width:24.405333pt;}
._2d_c00338{width:25.429333pt;}
._12_c00338{width:26.709333pt;}
._4_c00338{width:27.989333pt;}
._16_c00338{width:29.013333pt;}
._3_c00338{width:30.122667pt;}
._15_c00338{width:31.146667pt;}
._14_c00338{width:32.426667pt;}
._8_c00338{width:33.792000pt;}
._2c_c00338{width:35.157333pt;}
._1d_c00338{width:36.608000pt;}
._25_c00338{width:38.229333pt;}
._21_c00338{width:39.253333pt;}
._36_c00338{width:40.704000pt;}
._24_c00338{width:41.984000pt;}
._13_c00338{width:44.373333pt;}
._2b_c00338{width:46.421333pt;}
._26_c00338{width:48.128000pt;}
._37_c00338{width:49.322667pt;}
._2e_c00338{width:51.370667pt;}
._1e_c00338{width:54.784000pt;}
._28_c00338{width:55.978667pt;}
._31_c00338{width:59.221333pt;}
._17_c00338{width:64.597333pt;}
._3a_c00338{width:81.749333pt;}
._44_c00338{width:99.296000pt;}
._42_c00338{width:109.117333pt;}
._3f_c00338{width:116.541333pt;}
._39_c00338{width:157.269333pt;}
._19_c00338{width:163.072000pt;}
._34_c00338{width:243.626667pt;}
._38_c00338{width:1228.629333pt;}
.fsb_c00338{font-size:42.666667pt;}
.fs9_c00338{font-size:53.333333pt;}
.fsa_c00338{font-size:66.666667pt;}
.fs1_c00338{font-size:68.266667pt;}
.fs6_c00338{font-size:69.333333pt;}
.fs7_c00338{font-size:74.666667pt;}
.fs8_c00338{font-size:77.333333pt;}
.fs0_c00338{font-size:85.333333pt;}
.fs2_c00338{font-size:90.666667pt;}
.fs3_c00338{font-size:93.333333pt;}
.fs5_c00338{font-size:114.666667pt;}
.fs4_c00338{font-size:373.333333pt;}
.y0_c00338{bottom:0.000000pt;}
.y20_c00338{bottom:2.760000pt;}
.y1f_c00338{bottom:6.425217pt;}
.y1e_c00338{bottom:89.440000pt;}
.y1d_c00338{bottom:207.306667pt;}
.y1c_c00338{bottom:226.106667pt;}
.y1b_c00338{bottom:236.106667pt;}
.y1a_c00338{bottom:261.573333pt;}
.y18_c00338{bottom:297.573333pt;}
.y19_c00338{bottom:300.506667pt;}
.y17_c00338{bottom:467.440000pt;}
.y16_c00338{bottom:499.840000pt;}
.y15_c00338{bottom:527.973333pt;}
.y14_c00338{bottom:558.906667pt;}
.y13_c00338{bottom:588.640000pt;}
.y12_c00338{bottom:618.906667pt;}
.y11_c00338{bottom:649.440000pt;}
.y10_c00338{bottom:680.640000pt;}
.yf_c00338{bottom:709.706667pt;}
.ye_c00338{bottom:737.306667pt;}
.yd_c00338{bottom:767.706667pt;}
.yc_c00338{bottom:797.440000pt;}
.yb_c00338{bottom:827.040000pt;}
.ya_c00338{bottom:856.773333pt;}
.y9_c00338{bottom:887.040000pt;}
.y8_c00338{bottom:916.773333pt;}
.y7_c00338{bottom:946.773333pt;}
.y6_c00338{bottom:976.506667pt;}
.y5_c00338{bottom:1004.373333pt;}
.y4_c00338{bottom:1035.040000pt;}
.y3_c00338{bottom:1064.640000pt;}
.y2_c00338{bottom:1093.840000pt;}
.y1_c00338{bottom:1122.906667pt;}
.h8_c00338{height:11.733399pt;}
.h9_c00338{height:38.937500pt;}
.h7_c00338{height:69.866667pt;}
.h5_c00338{height:81.148438pt;}
.h6_c00338{height:97.912760pt;}
.h2_c00338{height:108.041667pt;}
.h4_c00338{height:122.349333pt;}
.h3_c00338{height:336.006250pt;}
.h0_c00338{height:1229.733333pt;}
.h1_c00338{height:1230.000000pt;}
.w2_c00338{width:93.222667pt;}
.w0_c00338{width:780.466667pt;}
.w1_c00338{width:780.666667pt;}
.x0_c00338{left:0.000000pt;}
.x7_c00338{left:50.133333pt;}
.x6_c00338{left:51.066667pt;}
.x5_c00338{left:52.533333pt;}
.x4_c00338{left:54.400000pt;}
.x2_c00338{left:55.466667pt;}
.x1_c00338{left:56.400000pt;}
.x8_c00338{left:97.200000pt;}
.x3_c00338{left:101.066667pt;}
.x10_c00338{left:347.401530pt;}
.xe_c00338{left:395.066667pt;}
.xf_c00338{left:417.333333pt;}
.xb_c00338{left:419.466667pt;}
.xc_c00338{left:439.200000pt;}
.xa_c00338{left:466.000000pt;}
.xd_c00338{left:476.133333pt;}
.x9_c00338{left:649.600000pt;}
}





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

.ir_c00339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_e0b9ac6f8053248052e8e083.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_b73609ce759833f3b347ebd9.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_053334531b98df2814652ab4.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_b6d1fe3328627621075f271f.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;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_c00339;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00339{vertical-align:-137.400000px;}
.v0_c00339{vertical-align:0.000000px;}
.ls2_c00339{letter-spacing:-9.000000px;}
.ls0_c00339{letter-spacing:-3.000000px;}
.ls4_c00339{letter-spacing:0.000000px;}
.ls3_c00339{letter-spacing:3.000000px;}
.ls1_c00339{letter-spacing:6.000000px;}
.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;}
}
.ws2_c00339{word-spacing:-51.000000px;}
.ws1_c00339{word-spacing:-23.136000px;}
.ws3_c00339{word-spacing:-20.244000px;}
.ws0_c00339{word-spacing:-12.690000px;}
.ws4_c00339{word-spacing:0.000000px;}
._2c_c00339{margin-left:-34.656000px;}
._4b_c00339{margin-left:-30.720000px;}
._49_c00339{margin-left:-28.608000px;}
._13_c00339{margin-left:-26.928000px;}
._27_c00339{margin-left:-23.343000px;}
._16_c00339{margin-left:-22.032000px;}
._26_c00339{margin-left:-19.671000px;}
._1d_c00339{margin-left:-14.400000px;}
._11_c00339{margin-left:-11.952000px;}
._21_c00339{margin-left:-10.764000px;}
._1e_c00339{margin-left:-9.648000px;}
._14_c00339{margin-left:-8.640000px;}
._34_c00339{margin-left:-7.488000px;}
._17_c00339{margin-left:-6.480000px;}
._c_c00339{margin-left:-4.896000px;}
._25_c00339{margin-left:-3.492000px;}
._0_c00339{margin-left:-2.448000px;}
._1_c00339{margin-left:-1.152000px;}
._f_c00339{width:1.008000px;}
._e_c00339{width:2.736000px;}
._15_c00339{width:4.032000px;}
._19_c00339{width:5.064000px;}
._1a_c00339{width:6.624000px;}
._5_c00339{width:8.328000px;}
._3c_c00339{width:9.864000px;}
._7_c00339{width:11.376000px;}
._8_c00339{width:12.960000px;}
._6_c00339{width:14.400000px;}
._3f_c00339{width:15.576000px;}
._2a_c00339{width:16.632000px;}
._38_c00339{width:17.700000px;}
._1b_c00339{width:19.008000px;}
._31_c00339{width:20.295000px;}
._4d_c00339{width:21.456000px;}
._4_c00339{width:23.760000px;}
._37_c00339{width:25.776000px;}
._56_c00339{width:27.192000px;}
._3_c00339{width:28.512000px;}
._18_c00339{width:29.808000px;}
._3e_c00339{width:31.824000px;}
._54_c00339{width:32.982000px;}
._40_c00339{width:34.368000px;}
._b_c00339{width:36.432000px;}
._d_c00339{width:37.488000px;}
._48_c00339{width:38.922000px;}
._24_c00339{width:40.158000px;}
._30_c00339{width:41.376000px;}
._51_c00339{width:42.696000px;}
._2e_c00339{width:43.968000px;}
._3d_c00339{width:45.288000px;}
._10_c00339{width:46.512000px;}
._4e_c00339{width:47.592000px;}
._9_c00339{width:48.840000px;}
._2f_c00339{width:51.564000px;}
._35_c00339{width:53.376000px;}
._52_c00339{width:58.098000px;}
._55_c00339{width:59.994000px;}
._3a_c00339{width:63.876000px;}
._2_c00339{width:66.096000px;}
._39_c00339{width:67.320000px;}
._2b_c00339{width:69.312000px;}
._4f_c00339{width:74.640000px;}
._32_c00339{width:79.776000px;}
._53_c00339{width:81.024000px;}
._4a_c00339{width:92.352000px;}
._57_c00339{width:96.792000px;}
._1c_c00339{width:103.824000px;}
._43_c00339{width:107.568000px;}
._12_c00339{width:114.048000px;}
._22_c00339{width:124.614000px;}
._46_c00339{width:130.368000px;}
._2d_c00339{width:139.680000px;}
._1f_c00339{width:141.696000px;}
._44_c00339{width:170.904000px;}
._a_c00339{width:182.448000px;}
._47_c00339{width:188.352000px;}
._28_c00339{width:211.347000px;}
._45_c00339{width:220.440000px;}
._42_c00339{width:273.984000px;}
._20_c00339{width:293.328000px;}
._3b_c00339{width:295.956000px;}
._23_c00339{width:299.724000px;}
._33_c00339{width:339.264000px;}
._41_c00339{width:369.180000px;}
._4c_c00339{width:404.640000px;}
._36_c00339{width:423.012000px;}
._29_c00339{width:595.092000px;}
._50_c00339{width:726.300000px;}
.fc2_c00339{color:transparent;}
.fc1_c00339{color:rgb(128,128,128);}
.fc0_c00339{color:rgb(0,0,0);}
.fs6_c00339{font-size:48.000000px;}
.fs1_c00339{font-size:69.000000px;}
.fs4_c00339{font-size:84.000000px;}
.fs2_c00339{font-size:90.000000px;}
.fs3_c00339{font-size:96.000000px;}
.fs5_c00339{font-size:102.000000px;}
.fs0_c00339{font-size:144.000000px;}
.y0_c00339{bottom:0.000000px;}
.y22_c00339{bottom:3.105000px;}
.y21_c00339{bottom:7.228371px;}
.y20_c00339{bottom:66.915000px;}
.y1f_c00339{bottom:97.665000px;}
.y1e_c00339{bottom:132.315000px;}
.y1d_c00339{bottom:166.365000px;}
.y1c_c00339{bottom:200.115000px;}
.y1b_c00339{bottom:234.015000px;}
.y1a_c00339{bottom:266.415000px;}
.y19_c00339{bottom:298.815000px;}
.y18_c00339{bottom:335.565000px;}
.y17_c00339{bottom:369.915000px;}
.y16_c00339{bottom:403.365000px;}
.y15_c00339{bottom:437.715000px;}
.y14_c00339{bottom:471.615000px;}
.y13_c00339{bottom:540.015000px;}
.y12_c00339{bottom:575.115000px;}
.y11_c00339{bottom:607.515000px;}
.y10_c00339{bottom:641.715000px;}
.yf_c00339{bottom:675.465000px;}
.ye_c00339{bottom:709.815000px;}
.yd_c00339{bottom:743.865000px;}
.yc_c00339{bottom:776.715000px;}
.yb_c00339{bottom:809.715000px;}
.ya_c00339{bottom:843.165000px;}
.y9_c00339{bottom:881.565000px;}
.y8_c00339{bottom:912.915000px;}
.y6_c00339{bottom:943.365000px;}
.y7_c00339{bottom:944.415000px;}
.y5_c00339{bottom:1010.865000px;}
.y4_c00339{bottom:1033.515000px;}
.y3_c00339{bottom:1084.815000px;}
.y2_c00339{bottom:1135.665000px;}
.y1_c00339{bottom:1184.415000px;}
.h5_c00339{height:13.200074px;}
.h6_c00339{height:43.804688px;}
.h3_c00339{height:105.336914px;}
.h4_c00339{height:121.546875px;}
.h2_c00339{height:182.320312px;}
.h0_c00339{height:1354.875000px;}
.h1_c00339{height:1355.250000px;}
.w2_c00339{width:104.875500px;}
.w0_c00339{width:845.625000px;}
.w1_c00339{width:846.000000px;}
.x0_c00339{left:0.000000px;}
.x10_c00339{left:19.200000px;}
.x8_c00339{left:20.250000px;}
.x9_c00339{left:49.500000px;}
.xf_c00339{left:50.550000px;}
.xe_c00339{left:92.700000px;}
.x7_c00339{left:125.550000px;}
.xc_c00339{left:238.500000px;}
.x1_c00339{left:240.300000px;}
.x5_c00339{left:242.100000px;}
.x11_c00339{left:243.300000px;}
.xa_c00339{left:244.350000px;}
.x2_c00339{left:246.000000px;}
.x12_c00339{left:247.050000px;}
.x6_c00339{left:280.050000px;}
.x4_c00339{left:294.000000px;}
.xd_c00339{left:298.950000px;}
.x3_c00339{left:330.150000px;}
.x14_c00339{left:374.626740px;}
.xb_c00339{left:695.250000px;}
.x13_c00339{left:764.400000px;}
@media print{
.v1_c00339{vertical-align:-122.133333pt;}
.v0_c00339{vertical-align:0.000000pt;}
.ls2_c00339{letter-spacing:-8.000000pt;}
.ls0_c00339{letter-spacing:-2.666667pt;}
.ls4_c00339{letter-spacing:0.000000pt;}
.ls3_c00339{letter-spacing:2.666667pt;}
.ls1_c00339{letter-spacing:5.333333pt;}
.ws2_c00339{word-spacing:-45.333333pt;}
.ws1_c00339{word-spacing:-20.565333pt;}
.ws3_c00339{word-spacing:-17.994667pt;}
.ws0_c00339{word-spacing:-11.280000pt;}
.ws4_c00339{word-spacing:0.000000pt;}
._2c_c00339{margin-left:-30.805333pt;}
._4b_c00339{margin-left:-27.306667pt;}
._49_c00339{margin-left:-25.429333pt;}
._13_c00339{margin-left:-23.936000pt;}
._27_c00339{margin-left:-20.749333pt;}
._16_c00339{margin-left:-19.584000pt;}
._26_c00339{margin-left:-17.485333pt;}
._1d_c00339{margin-left:-12.800000pt;}
._11_c00339{margin-left:-10.624000pt;}
._21_c00339{margin-left:-9.568000pt;}
._1e_c00339{margin-left:-8.576000pt;}
._14_c00339{margin-left:-7.680000pt;}
._34_c00339{margin-left:-6.656000pt;}
._17_c00339{margin-left:-5.760000pt;}
._c_c00339{margin-left:-4.352000pt;}
._25_c00339{margin-left:-3.104000pt;}
._0_c00339{margin-left:-2.176000pt;}
._1_c00339{margin-left:-1.024000pt;}
._f_c00339{width:0.896000pt;}
._e_c00339{width:2.432000pt;}
._15_c00339{width:3.584000pt;}
._19_c00339{width:4.501333pt;}
._1a_c00339{width:5.888000pt;}
._5_c00339{width:7.402667pt;}
._3c_c00339{width:8.768000pt;}
._7_c00339{width:10.112000pt;}
._8_c00339{width:11.520000pt;}
._6_c00339{width:12.800000pt;}
._3f_c00339{width:13.845333pt;}
._2a_c00339{width:14.784000pt;}
._38_c00339{width:15.733333pt;}
._1b_c00339{width:16.896000pt;}
._31_c00339{width:18.040000pt;}
._4d_c00339{width:19.072000pt;}
._4_c00339{width:21.120000pt;}
._37_c00339{width:22.912000pt;}
._56_c00339{width:24.170667pt;}
._3_c00339{width:25.344000pt;}
._18_c00339{width:26.496000pt;}
._3e_c00339{width:28.288000pt;}
._54_c00339{width:29.317333pt;}
._40_c00339{width:30.549333pt;}
._b_c00339{width:32.384000pt;}
._d_c00339{width:33.322667pt;}
._48_c00339{width:34.597333pt;}
._24_c00339{width:35.696000pt;}
._30_c00339{width:36.778667pt;}
._51_c00339{width:37.952000pt;}
._2e_c00339{width:39.082667pt;}
._3d_c00339{width:40.256000pt;}
._10_c00339{width:41.344000pt;}
._4e_c00339{width:42.304000pt;}
._9_c00339{width:43.413333pt;}
._2f_c00339{width:45.834667pt;}
._35_c00339{width:47.445333pt;}
._52_c00339{width:51.642667pt;}
._55_c00339{width:53.328000pt;}
._3a_c00339{width:56.778667pt;}
._2_c00339{width:58.752000pt;}
._39_c00339{width:59.840000pt;}
._2b_c00339{width:61.610667pt;}
._4f_c00339{width:66.346667pt;}
._32_c00339{width:70.912000pt;}
._53_c00339{width:72.021333pt;}
._4a_c00339{width:82.090667pt;}
._57_c00339{width:86.037333pt;}
._1c_c00339{width:92.288000pt;}
._43_c00339{width:95.616000pt;}
._12_c00339{width:101.376000pt;}
._22_c00339{width:110.768000pt;}
._46_c00339{width:115.882667pt;}
._2d_c00339{width:124.160000pt;}
._1f_c00339{width:125.952000pt;}
._44_c00339{width:151.914667pt;}
._a_c00339{width:162.176000pt;}
._47_c00339{width:167.424000pt;}
._28_c00339{width:187.864000pt;}
._45_c00339{width:195.946667pt;}
._42_c00339{width:243.541333pt;}
._20_c00339{width:260.736000pt;}
._3b_c00339{width:263.072000pt;}
._23_c00339{width:266.421333pt;}
._33_c00339{width:301.568000pt;}
._41_c00339{width:328.160000pt;}
._4c_c00339{width:359.680000pt;}
._36_c00339{width:376.010667pt;}
._29_c00339{width:528.970667pt;}
._50_c00339{width:645.600000pt;}
.fs6_c00339{font-size:42.666667pt;}
.fs1_c00339{font-size:61.333333pt;}
.fs4_c00339{font-size:74.666667pt;}
.fs2_c00339{font-size:80.000000pt;}
.fs3_c00339{font-size:85.333333pt;}
.fs5_c00339{font-size:90.666667pt;}
.fs0_c00339{font-size:128.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y22_c00339{bottom:2.760000pt;}
.y21_c00339{bottom:6.425219pt;}
.y20_c00339{bottom:59.480000pt;}
.y1f_c00339{bottom:86.813333pt;}
.y1e_c00339{bottom:117.613333pt;}
.y1d_c00339{bottom:147.880000pt;}
.y1c_c00339{bottom:177.880000pt;}
.y1b_c00339{bottom:208.013333pt;}
.y1a_c00339{bottom:236.813333pt;}
.y19_c00339{bottom:265.613333pt;}
.y18_c00339{bottom:298.280000pt;}
.y17_c00339{bottom:328.813333pt;}
.y16_c00339{bottom:358.546667pt;}
.y15_c00339{bottom:389.080000pt;}
.y14_c00339{bottom:419.213333pt;}
.y13_c00339{bottom:480.013333pt;}
.y12_c00339{bottom:511.213333pt;}
.y11_c00339{bottom:540.013333pt;}
.y10_c00339{bottom:570.413333pt;}
.yf_c00339{bottom:600.413333pt;}
.ye_c00339{bottom:630.946667pt;}
.yd_c00339{bottom:661.213333pt;}
.yc_c00339{bottom:690.413333pt;}
.yb_c00339{bottom:719.746667pt;}
.ya_c00339{bottom:749.480000pt;}
.y9_c00339{bottom:783.613333pt;}
.y8_c00339{bottom:811.480000pt;}
.y6_c00339{bottom:838.546667pt;}
.y7_c00339{bottom:839.480000pt;}
.y5_c00339{bottom:898.546667pt;}
.y4_c00339{bottom:918.680000pt;}
.y3_c00339{bottom:964.280000pt;}
.y2_c00339{bottom:1009.480000pt;}
.y1_c00339{bottom:1052.813333pt;}
.h5_c00339{height:11.733399pt;}
.h6_c00339{height:38.937500pt;}
.h3_c00339{height:93.632812pt;}
.h4_c00339{height:108.041667pt;}
.h2_c00339{height:162.062500pt;}
.h0_c00339{height:1204.333333pt;}
.h1_c00339{height:1204.666667pt;}
.w2_c00339{width:93.222667pt;}
.w0_c00339{width:751.666667pt;}
.w1_c00339{width:752.000000pt;}
.x0_c00339{left:0.000000pt;}
.x10_c00339{left:17.066667pt;}
.x8_c00339{left:18.000000pt;}
.x9_c00339{left:44.000000pt;}
.xf_c00339{left:44.933333pt;}
.xe_c00339{left:82.400000pt;}
.x7_c00339{left:111.600000pt;}
.xc_c00339{left:212.000000pt;}
.x1_c00339{left:213.600000pt;}
.x5_c00339{left:215.200000pt;}
.x11_c00339{left:216.266667pt;}
.xa_c00339{left:217.200000pt;}
.x2_c00339{left:218.666667pt;}
.x12_c00339{left:219.600000pt;}
.x6_c00339{left:248.933333pt;}
.x4_c00339{left:261.333333pt;}
.xd_c00339{left:265.733333pt;}
.x3_c00339{left:293.466667pt;}
.x14_c00339{left:333.001546pt;}
.xb_c00339{left:618.000000pt;}
.x13_c00339{left:679.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f9dabeaa139e4b591ceb70d2.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_61bb8bc290654d50f609abc2.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_1be44732ccb455531c7cdaf1.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_68b934d29d5686dda38633ff.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_a3f7ccad8e806033f0450165.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00340;src:url('chunks/assets/font_b886427e562cd55b64417852.woff2')format("woff");}.ff6_c00340{font-family:ff6_c00340;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00340;src:url('chunks/assets/font_d9c1d95558b11a63f30926f2.woff2')format("woff");}.ff7_c00340{font-family:ff7_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00340;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00340{font-family:ff8_c00340;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls5_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:2.610000px;}
.ls7_c00340{letter-spacing:9.000000px;}
.ls6_c00340{letter-spacing:12.000000px;}
.ls4_c00340{letter-spacing:23.100000px;}
.ls2_c00340{letter-spacing:24.000000px;}
.ls1_c00340{letter-spacing:25.800000px;}
.ls3_c00340{letter-spacing:27.300000px;}
.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;}
}
.ws4_c00340{word-spacing:-29.757000px;}
.ws2_c00340{word-spacing:-24.582000px;}
.ws6_c00340{word-spacing:-24.180000px;}
.ws3_c00340{word-spacing:-18.798000px;}
.ws1_c00340{word-spacing:-14.460000px;}
.ws7_c00340{word-spacing:0.000000px;}
.ws5_c00340{word-spacing:4.380000px;}
.ws0_c00340{word-spacing:5.100000px;}
._1f_c00340{margin-left:-31.926000px;}
._4d_c00340{margin-left:-30.474000px;}
._2a_c00340{margin-left:-28.848000px;}
._4e_c00340{margin-left:-27.444000px;}
._20_c00340{margin-left:-25.086000px;}
._34_c00340{margin-left:-23.256000px;}
._1c_c00340{margin-left:-19.176000px;}
._35_c00340{margin-left:-16.422000px;}
._41_c00340{margin-left:-14.106000px;}
._2b_c00340{margin-left:-11.622000px;}
._40_c00340{margin-left:-10.614000px;}
._26_c00340{margin-left:-9.078000px;}
._19_c00340{margin-left:-7.512000px;}
._27_c00340{margin-left:-6.018000px;}
._c_c00340{margin-left:-4.590000px;}
._4_c00340{margin-left:-2.856000px;}
._6_c00340{margin-left:-1.224000px;}
._2_c00340{width:1.224000px;}
._1_c00340{width:2.856000px;}
._0_c00340{width:4.488000px;}
._2c_c00340{width:5.790000px;}
._10_c00340{width:6.834000px;}
._f_c00340{width:8.262000px;}
._b_c00340{width:9.282000px;}
._17_c00340{width:10.500000px;}
._e_c00340{width:11.526000px;}
._11_c00340{width:13.158000px;}
._d_c00340{width:15.096000px;}
._31_c00340{width:16.116000px;}
._15_c00340{width:17.250000px;}
._13_c00340{width:18.666000px;}
._1d_c00340{width:19.992000px;}
._18_c00340{width:21.240000px;}
._16_c00340{width:22.440000px;}
._38_c00340{width:23.460000px;}
._8_c00340{width:26.112000px;}
._14_c00340{width:27.642000px;}
._12_c00340{width:29.886000px;}
._23_c00340{width:31.620000px;}
._a_c00340{width:33.252000px;}
._37_c00340{width:34.476000px;}
._39_c00340{width:35.496000px;}
._21_c00340{width:36.924000px;}
._46_c00340{width:38.658000px;}
._2d_c00340{width:39.702000px;}
._36_c00340{width:41.310000px;}
._2e_c00340{width:42.432000px;}
._5_c00340{width:43.452000px;}
._30_c00340{width:44.880000px;}
._1a_c00340{width:46.104000px;}
._9_c00340{width:48.042000px;}
._3a_c00340{width:49.368000px;}
._48_c00340{width:50.796000px;}
._3d_c00340{width:54.390000px;}
._32_c00340{width:57.096000px;}
._4a_c00340{width:58.614000px;}
._7_c00340{width:63.240000px;}
._3e_c00340{width:65.064000px;}
._2f_c00340{width:67.122000px;}
._3c_c00340{width:69.870000px;}
._3_c00340{width:71.400000px;}
._29_c00340{width:74.964000px;}
._25_c00340{width:77.730000px;}
._28_c00340{width:95.232000px;}
._3f_c00340{width:118.812000px;}
._44_c00340{width:130.080000px;}
._22_c00340{width:175.746000px;}
._49_c00340{width:180.606000px;}
._3b_c00340{width:195.330000px;}
._43_c00340{width:224.904000px;}
._42_c00340{width:300.900000px;}
._45_c00340{width:305.010000px;}
._47_c00340{width:307.344000px;}
._33_c00340{width:334.344000px;}
._1e_c00340{width:355.950000px;}
._4b_c00340{width:369.642000px;}
._1b_c00340{width:394.398000px;}
._24_c00340{width:407.040000px;}
._4c_c00340{width:675.474000px;}
._4f_c00340{width:792.336000px;}
.fc2_c00340{color:transparent;}
.fc1_c00340{color:rgb(128,128,128);}
.fc0_c00340{color:rgb(0,0,0);}
.fs6_c00340{font-size:48.000000px;}
.fs2_c00340{font-size:57.000000px;}
.fs1_c00340{font-size:60.000000px;}
.fs5_c00340{font-size:78.000000px;}
.fs4_c00340{font-size:87.000000px;}
.fs3_c00340{font-size:96.000000px;}
.fs0_c00340{font-size:102.000000px;}
.y0_c00340{bottom:0.000000px;}
.y27_c00340{bottom:3.105000px;}
.y26_c00340{bottom:7.228369px;}
.y25_c00340{bottom:100.470000px;}
.y24_c00340{bottom:132.570000px;}
.y23_c00340{bottom:167.370000px;}
.y22_c00340{bottom:201.420000px;}
.y21_c00340{bottom:236.520000px;}
.y20_c00340{bottom:269.220000px;}
.y1f_c00340{bottom:303.120000px;}
.y1e_c00340{bottom:336.120000px;}
.y1d_c00340{bottom:369.570000px;}
.y1c_c00340{bottom:402.870000px;}
.y1b_c00340{bottom:433.920000px;}
.y1a_c00340{bottom:466.470000px;}
.y19_c00340{bottom:485.670000px;}
.y18_c00340{bottom:502.470000px;}
.y17_c00340{bottom:536.520000px;}
.y16_c00340{bottom:569.670000px;}
.y15_c00340{bottom:603.120000px;}
.y14_c00340{bottom:636.870000px;}
.y13_c00340{bottom:669.870000px;}
.y12_c00340{bottom:703.020000px;}
.y11_c00340{bottom:736.470000px;}
.y10_c00340{bottom:770.070000px;}
.yf_c00340{bottom:802.470000px;}
.ye_c00340{bottom:836.220000px;}
.yd_c00340{bottom:868.770000px;}
.yc_c00340{bottom:902.520000px;}
.yb_c00340{bottom:936.270000px;}
.ya_c00340{bottom:968.520000px;}
.y9_c00340{bottom:1001.370000px;}
.y8_c00340{bottom:1035.720000px;}
.y7_c00340{bottom:1068.870000px;}
.y6_c00340{bottom:1101.570000px;}
.y5_c00340{bottom:1134.570000px;}
.y4_c00340{bottom:1167.420000px;}
.y3_c00340{bottom:1200.720000px;}
.y2_c00340{bottom:1233.270000px;}
.y1_c00340{bottom:1266.270000px;}
.h4_c00340{height:13.200073px;}
.h5_c00340{height:43.804688px;}
.h3_c00340{height:110.151855px;}
.h2_c00340{height:129.143555px;}
.h0_c00340{height:1383.450000px;}
.h1_c00340{height:1383.750000px;}
.w2_c00340{width:104.875500px;}
.w0_c00340{width:878.025000px;}
.w1_c00340{width:878.250000px;}
.x0_c00340{left:0.000000px;}
.x7_c00340{left:27.900000px;}
.x6_c00340{left:28.950000px;}
.x5_c00340{left:30.450000px;}
.x4_c00340{left:32.100000px;}
.x3_c00340{left:33.750000px;}
.x2_c00340{left:34.800000px;}
.x1_c00340{left:36.000000px;}
.x9_c00340{left:37.500000px;}
.x8_c00340{left:217.950000px;}
.xa_c00340{left:294.150000px;}
.xb_c00340{left:390.826721px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls5_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:2.320000pt;}
.ls7_c00340{letter-spacing:8.000000pt;}
.ls6_c00340{letter-spacing:10.666667pt;}
.ls4_c00340{letter-spacing:20.533333pt;}
.ls2_c00340{letter-spacing:21.333333pt;}
.ls1_c00340{letter-spacing:22.933333pt;}
.ls3_c00340{letter-spacing:24.266667pt;}
.ws4_c00340{word-spacing:-26.450667pt;}
.ws2_c00340{word-spacing:-21.850667pt;}
.ws6_c00340{word-spacing:-21.493333pt;}
.ws3_c00340{word-spacing:-16.709333pt;}
.ws1_c00340{word-spacing:-12.853333pt;}
.ws7_c00340{word-spacing:0.000000pt;}
.ws5_c00340{word-spacing:3.893333pt;}
.ws0_c00340{word-spacing:4.533333pt;}
._1f_c00340{margin-left:-28.378667pt;}
._4d_c00340{margin-left:-27.088000pt;}
._2a_c00340{margin-left:-25.642667pt;}
._4e_c00340{margin-left:-24.394667pt;}
._20_c00340{margin-left:-22.298667pt;}
._34_c00340{margin-left:-20.672000pt;}
._1c_c00340{margin-left:-17.045333pt;}
._35_c00340{margin-left:-14.597333pt;}
._41_c00340{margin-left:-12.538667pt;}
._2b_c00340{margin-left:-10.330667pt;}
._40_c00340{margin-left:-9.434667pt;}
._26_c00340{margin-left:-8.069333pt;}
._19_c00340{margin-left:-6.677333pt;}
._27_c00340{margin-left:-5.349333pt;}
._c_c00340{margin-left:-4.080000pt;}
._4_c00340{margin-left:-2.538667pt;}
._6_c00340{margin-left:-1.088000pt;}
._2_c00340{width:1.088000pt;}
._1_c00340{width:2.538667pt;}
._0_c00340{width:3.989333pt;}
._2c_c00340{width:5.146667pt;}
._10_c00340{width:6.074667pt;}
._f_c00340{width:7.344000pt;}
._b_c00340{width:8.250667pt;}
._17_c00340{width:9.333333pt;}
._e_c00340{width:10.245333pt;}
._11_c00340{width:11.696000pt;}
._d_c00340{width:13.418667pt;}
._31_c00340{width:14.325333pt;}
._15_c00340{width:15.333333pt;}
._13_c00340{width:16.592000pt;}
._1d_c00340{width:17.770667pt;}
._18_c00340{width:18.880000pt;}
._16_c00340{width:19.946667pt;}
._38_c00340{width:20.853333pt;}
._8_c00340{width:23.210667pt;}
._14_c00340{width:24.570667pt;}
._12_c00340{width:26.565333pt;}
._23_c00340{width:28.106667pt;}
._a_c00340{width:29.557333pt;}
._37_c00340{width:30.645333pt;}
._39_c00340{width:31.552000pt;}
._21_c00340{width:32.821333pt;}
._46_c00340{width:34.362667pt;}
._2d_c00340{width:35.290667pt;}
._36_c00340{width:36.720000pt;}
._2e_c00340{width:37.717333pt;}
._5_c00340{width:38.624000pt;}
._30_c00340{width:39.893333pt;}
._1a_c00340{width:40.981333pt;}
._9_c00340{width:42.704000pt;}
._3a_c00340{width:43.882667pt;}
._48_c00340{width:45.152000pt;}
._3d_c00340{width:48.346667pt;}
._32_c00340{width:50.752000pt;}
._4a_c00340{width:52.101333pt;}
._7_c00340{width:56.213333pt;}
._3e_c00340{width:57.834667pt;}
._2f_c00340{width:59.664000pt;}
._3c_c00340{width:62.106667pt;}
._3_c00340{width:63.466667pt;}
._29_c00340{width:66.634667pt;}
._25_c00340{width:69.093333pt;}
._28_c00340{width:84.650667pt;}
._3f_c00340{width:105.610667pt;}
._44_c00340{width:115.626667pt;}
._22_c00340{width:156.218667pt;}
._49_c00340{width:160.538667pt;}
._3b_c00340{width:173.626667pt;}
._43_c00340{width:199.914667pt;}
._42_c00340{width:267.466667pt;}
._45_c00340{width:271.120000pt;}
._47_c00340{width:273.194667pt;}
._33_c00340{width:297.194667pt;}
._1e_c00340{width:316.400000pt;}
._4b_c00340{width:328.570667pt;}
._1b_c00340{width:350.576000pt;}
._24_c00340{width:361.813333pt;}
._4c_c00340{width:600.421333pt;}
._4f_c00340{width:704.298667pt;}
.fs6_c00340{font-size:42.666667pt;}
.fs2_c00340{font-size:50.666667pt;}
.fs1_c00340{font-size:53.333333pt;}
.fs5_c00340{font-size:69.333333pt;}
.fs4_c00340{font-size:77.333333pt;}
.fs3_c00340{font-size:85.333333pt;}
.fs0_c00340{font-size:90.666667pt;}
.y0_c00340{bottom:0.000000pt;}
.y27_c00340{bottom:2.760000pt;}
.y26_c00340{bottom:6.425217pt;}
.y25_c00340{bottom:89.306667pt;}
.y24_c00340{bottom:117.840000pt;}
.y23_c00340{bottom:148.773333pt;}
.y22_c00340{bottom:179.040000pt;}
.y21_c00340{bottom:210.240000pt;}
.y20_c00340{bottom:239.306667pt;}
.y1f_c00340{bottom:269.440000pt;}
.y1e_c00340{bottom:298.773333pt;}
.y1d_c00340{bottom:328.506667pt;}
.y1c_c00340{bottom:358.106667pt;}
.y1b_c00340{bottom:385.706667pt;}
.y1a_c00340{bottom:414.640000pt;}
.y19_c00340{bottom:431.706667pt;}
.y18_c00340{bottom:446.640000pt;}
.y17_c00340{bottom:476.906667pt;}
.y16_c00340{bottom:506.373333pt;}
.y15_c00340{bottom:536.106667pt;}
.y14_c00340{bottom:566.106667pt;}
.y13_c00340{bottom:595.440000pt;}
.y12_c00340{bottom:624.906667pt;}
.y11_c00340{bottom:654.640000pt;}
.y10_c00340{bottom:684.506667pt;}
.yf_c00340{bottom:713.306667pt;}
.ye_c00340{bottom:743.306667pt;}
.yd_c00340{bottom:772.240000pt;}
.yc_c00340{bottom:802.240000pt;}
.yb_c00340{bottom:832.240000pt;}
.ya_c00340{bottom:860.906667pt;}
.y9_c00340{bottom:890.106667pt;}
.y8_c00340{bottom:920.640000pt;}
.y7_c00340{bottom:950.106667pt;}
.y6_c00340{bottom:979.173333pt;}
.y5_c00340{bottom:1008.506667pt;}
.y4_c00340{bottom:1037.706667pt;}
.y3_c00340{bottom:1067.306667pt;}
.y2_c00340{bottom:1096.240000pt;}
.y1_c00340{bottom:1125.573333pt;}
.h4_c00340{height:11.733399pt;}
.h5_c00340{height:38.937500pt;}
.h3_c00340{height:97.912760pt;}
.h2_c00340{height:114.794271pt;}
.h0_c00340{height:1229.733333pt;}
.h1_c00340{height:1230.000000pt;}
.w2_c00340{width:93.222667pt;}
.w0_c00340{width:780.466667pt;}
.w1_c00340{width:780.666667pt;}
.x0_c00340{left:0.000000pt;}
.x7_c00340{left:24.800000pt;}
.x6_c00340{left:25.733333pt;}
.x5_c00340{left:27.066667pt;}
.x4_c00340{left:28.533333pt;}
.x3_c00340{left:30.000000pt;}
.x2_c00340{left:30.933333pt;}
.x1_c00340{left:32.000000pt;}
.x9_c00340{left:33.333333pt;}
.x8_c00340{left:193.733333pt;}
.xa_c00340{left:261.466667pt;}
.xb_c00340{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_312bca27fabbb150ca549a53.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_4ffa2ef3c1d17f7445510d1f.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_475d491519cba2bafb42123b.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_c07b6e2bd6bd7ee08d3fe15c.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_b5d66c705041199fae6eb807.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00341;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls5_c00341{letter-spacing:-3.000000px;}
.ls3_c00341{letter-spacing:0.000000px;}
.ls2_c00341{letter-spacing:6.000000px;}
.ls0_c00341{letter-spacing:11.142000px;}
.ls4_c00341{letter-spacing:12.000000px;}
.ls1_c00341{letter-spacing:14.340000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00341{word-spacing:-48.372000px;}
.ws3_c00341{word-spacing:-23.136000px;}
.ws0_c00341{word-spacing:-18.798000px;}
.ws4_c00341{word-spacing:0.000000px;}
.ws2_c00341{word-spacing:2.943000px;}
._10_c00341{margin-left:-27.753000px;}
._12_c00341{margin-left:-17.868000px;}
._24_c00341{margin-left:-10.230000px;}
._e_c00341{margin-left:-7.647000px;}
._8_c00341{margin-left:-5.928000px;}
._9_c00341{margin-left:-4.134000px;}
._b_c00341{margin-left:-2.886000px;}
._a_c00341{margin-left:-1.560000px;}
._c_c00341{width:1.044000px;}
._1_c00341{width:2.100000px;}
._0_c00341{width:3.960000px;}
._4_c00341{width:5.850000px;}
._7_c00341{width:7.254000px;}
._d_c00341{width:8.736000px;}
._5_c00341{width:9.828000px;}
._15_c00341{width:10.944000px;}
._3_c00341{width:13.080000px;}
._6_c00341{width:14.118000px;}
._22_c00341{width:15.504000px;}
._16_c00341{width:16.506000px;}
._1e_c00341{width:17.520000px;}
._17_c00341{width:19.008000px;}
._11_c00341{width:20.115000px;}
._1f_c00341{width:21.354000px;}
._13_c00341{width:24.306000px;}
._2a_c00341{width:25.386000px;}
._f_c00341{width:26.448000px;}
._18_c00341{width:28.224000px;}
._2c_c00341{width:29.292000px;}
._2_c00341{width:30.540000px;}
._1d_c00341{width:32.124000px;}
._2e_c00341{width:33.192000px;}
._1a_c00341{width:35.028000px;}
._20_c00341{width:37.062000px;}
._2d_c00341{width:38.196000px;}
._14_c00341{width:39.234000px;}
._31_c00341{width:40.632000px;}
._1b_c00341{width:41.724000px;}
._28_c00341{width:43.020000px;}
._19_c00341{width:44.082000px;}
._23_c00341{width:45.126000px;}
._21_c00341{width:47.586000px;}
._29_c00341{width:49.194000px;}
._1c_c00341{width:50.316000px;}
._27_c00341{width:52.032000px;}
._26_c00341{width:53.466000px;}
._35_c00341{width:55.092000px;}
._2f_c00341{width:56.706000px;}
._25_c00341{width:57.888000px;}
._30_c00341{width:59.142000px;}
._37_c00341{width:62.682000px;}
._33_c00341{width:70.116000px;}
._34_c00341{width:71.532000px;}
._36_c00341{width:72.618000px;}
._2b_c00341{width:74.490000px;}
._32_c00341{width:80.364000px;}
.fc2_c00341{color:transparent;}
.fc1_c00341{color:rgb(128,128,128);}
.fc0_c00341{color:rgb(0,0,0);}
.fs6_c00341{font-size:48.000000px;}
.fs4_c00341{font-size:57.000000px;}
.fs0_c00341{font-size:60.000000px;}
.fs2_c00341{font-size:78.000000px;}
.fs3_c00341{font-size:87.000000px;}
.fs5_c00341{font-size:96.000000px;}
.fs1_c00341{font-size:99.000000px;}
.y0_c00341{bottom:0.000000px;}
.y33_c00341{bottom:3.105000px;}
.y32_c00341{bottom:7.228357px;}
.y31_c00341{bottom:101.880000px;}
.y30_c00341{bottom:132.930000px;}
.y2f_c00341{bottom:167.130000px;}
.y2e_c00341{bottom:201.180000px;}
.y2d_c00341{bottom:235.230000px;}
.y2c_c00341{bottom:268.980000px;}
.y2b_c00341{bottom:303.180000px;}
.y2a_c00341{bottom:336.780000px;}
.y29_c00341{bottom:370.230000px;}
.y28_c00341{bottom:403.980000px;}
.y27_c00341{bottom:438.030000px;}
.y26_c00341{bottom:471.780000px;}
.y25_c00341{bottom:505.230000px;}
.y24_c00341{bottom:538.680000px;}
.y23_c00341{bottom:572.430000px;}
.yd_c00341{bottom:584.580000px;}
.y22_c00341{bottom:606.480000px;}
.yc_c00341{bottom:615.630000px;}
.y21_c00341{bottom:639.930000px;}
.yb_c00341{bottom:645.630000px;}
.y20_c00341{bottom:673.680000px;}
.ya_c00341{bottom:675.630000px;}
.y9_c00341{bottom:704.730000px;}
.y1f_c00341{bottom:706.830000px;}
.y8_c00341{bottom:734.130000px;}
.y1e_c00341{bottom:740.880000px;}
.y7_c00341{bottom:764.130000px;}
.y1d_c00341{bottom:774.180000px;}
.y6_c00341{bottom:793.230000px;}
.y1c_c00341{bottom:808.080000px;}
.y5_c00341{bottom:821.430000px;}
.y1b_c00341{bottom:841.830000px;}
.y4_c00341{bottom:851.580000px;}
.y1a_c00341{bottom:874.830000px;}
.y3_c00341{bottom:880.230000px;}
.y19_c00341{bottom:908.580000px;}
.y2_c00341{bottom:909.930000px;}
.y1_c00341{bottom:935.880000px;}
.y18_c00341{bottom:942.630000px;}
.y17_c00341{bottom:973.980000px;}
.y16_c00341{bottom:1007.880000px;}
.y15_c00341{bottom:1041.180000px;}
.y14_c00341{bottom:1074.030000px;}
.y13_c00341{bottom:1107.030000px;}
.y12_c00341{bottom:1140.930000px;}
.y11_c00341{bottom:1174.230000px;}
.y10_c00341{bottom:1207.530000px;}
.yf_c00341{bottom:1240.680000px;}
.ye_c00341{bottom:1273.830000px;}
.h7_c00341{height:13.200074px;}
.h8_c00341{height:43.804688px;}
.h4_c00341{height:91.291992px;}
.h3_c00341{height:98.756836px;}
.h2_c00341{height:105.633000px;}
.h5_c00341{height:110.151855px;}
.h6_c00341{height:121.546875px;}
.h0_c00341{height:1382.700000px;}
.h1_c00341{height:1383.000000px;}
.w2_c00341{width:104.875500px;}
.w0_c00341{width:863.175000px;}
.w1_c00341{width:863.250000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:38.100000px;}
.x3_c00341{left:39.600000px;}
.x4_c00341{left:40.800000px;}
.x5_c00341{left:41.850000px;}
.x1_c00341{left:153.600000px;}
.x6_c00341{left:254.700000px;}
.x7_c00341{left:256.200000px;}
.x8_c00341{left:258.450000px;}
.x9_c00341{left:259.500000px;}
.xb_c00341{left:260.550000px;}
.xc_c00341{left:261.600000px;}
.xd_c00341{left:262.800000px;}
.xf_c00341{left:383.401749px;}
.xa_c00341{left:407.400000px;}
.xe_c00341{left:795.750000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls5_c00341{letter-spacing:-2.666667pt;}
.ls3_c00341{letter-spacing:0.000000pt;}
.ls2_c00341{letter-spacing:5.333333pt;}
.ls0_c00341{letter-spacing:9.904000pt;}
.ls4_c00341{letter-spacing:10.666667pt;}
.ls1_c00341{letter-spacing:12.746667pt;}
.ws1_c00341{word-spacing:-42.997333pt;}
.ws3_c00341{word-spacing:-20.565333pt;}
.ws0_c00341{word-spacing:-16.709333pt;}
.ws4_c00341{word-spacing:0.000000pt;}
.ws2_c00341{word-spacing:2.616000pt;}
._10_c00341{margin-left:-24.669333pt;}
._12_c00341{margin-left:-15.882667pt;}
._24_c00341{margin-left:-9.093333pt;}
._e_c00341{margin-left:-6.797333pt;}
._8_c00341{margin-left:-5.269333pt;}
._9_c00341{margin-left:-3.674667pt;}
._b_c00341{margin-left:-2.565333pt;}
._a_c00341{margin-left:-1.386667pt;}
._c_c00341{width:0.928000pt;}
._1_c00341{width:1.866667pt;}
._0_c00341{width:3.520000pt;}
._4_c00341{width:5.200000pt;}
._7_c00341{width:6.448000pt;}
._d_c00341{width:7.765333pt;}
._5_c00341{width:8.736000pt;}
._15_c00341{width:9.728000pt;}
._3_c00341{width:11.626667pt;}
._6_c00341{width:12.549333pt;}
._22_c00341{width:13.781333pt;}
._16_c00341{width:14.672000pt;}
._1e_c00341{width:15.573333pt;}
._17_c00341{width:16.896000pt;}
._11_c00341{width:17.880000pt;}
._1f_c00341{width:18.981333pt;}
._13_c00341{width:21.605333pt;}
._2a_c00341{width:22.565333pt;}
._f_c00341{width:23.509333pt;}
._18_c00341{width:25.088000pt;}
._2c_c00341{width:26.037333pt;}
._2_c00341{width:27.146667pt;}
._1d_c00341{width:28.554667pt;}
._2e_c00341{width:29.504000pt;}
._1a_c00341{width:31.136000pt;}
._20_c00341{width:32.944000pt;}
._2d_c00341{width:33.952000pt;}
._14_c00341{width:34.874667pt;}
._31_c00341{width:36.117333pt;}
._1b_c00341{width:37.088000pt;}
._28_c00341{width:38.240000pt;}
._19_c00341{width:39.184000pt;}
._23_c00341{width:40.112000pt;}
._21_c00341{width:42.298667pt;}
._29_c00341{width:43.728000pt;}
._1c_c00341{width:44.725333pt;}
._27_c00341{width:46.250667pt;}
._26_c00341{width:47.525333pt;}
._35_c00341{width:48.970667pt;}
._2f_c00341{width:50.405333pt;}
._25_c00341{width:51.456000pt;}
._30_c00341{width:52.570667pt;}
._37_c00341{width:55.717333pt;}
._33_c00341{width:62.325333pt;}
._34_c00341{width:63.584000pt;}
._36_c00341{width:64.549333pt;}
._2b_c00341{width:66.213333pt;}
._32_c00341{width:71.434667pt;}
.fs6_c00341{font-size:42.666667pt;}
.fs4_c00341{font-size:50.666667pt;}
.fs0_c00341{font-size:53.333333pt;}
.fs2_c00341{font-size:69.333333pt;}
.fs3_c00341{font-size:77.333333pt;}
.fs5_c00341{font-size:85.333333pt;}
.fs1_c00341{font-size:88.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y33_c00341{bottom:2.760000pt;}
.y32_c00341{bottom:6.425206pt;}
.y31_c00341{bottom:90.560000pt;}
.y30_c00341{bottom:118.160000pt;}
.y2f_c00341{bottom:148.560000pt;}
.y2e_c00341{bottom:178.826667pt;}
.y2d_c00341{bottom:209.093333pt;}
.y2c_c00341{bottom:239.093333pt;}
.y2b_c00341{bottom:269.493333pt;}
.y2a_c00341{bottom:299.360000pt;}
.y29_c00341{bottom:329.093333pt;}
.y28_c00341{bottom:359.093333pt;}
.y27_c00341{bottom:389.360000pt;}
.y26_c00341{bottom:419.360000pt;}
.y25_c00341{bottom:449.093333pt;}
.y24_c00341{bottom:478.826667pt;}
.y23_c00341{bottom:508.826667pt;}
.yd_c00341{bottom:519.626667pt;}
.y22_c00341{bottom:539.093333pt;}
.yc_c00341{bottom:547.226667pt;}
.y21_c00341{bottom:568.826667pt;}
.yb_c00341{bottom:573.893333pt;}
.y20_c00341{bottom:598.826667pt;}
.ya_c00341{bottom:600.560000pt;}
.y9_c00341{bottom:626.426667pt;}
.y1f_c00341{bottom:628.293333pt;}
.y8_c00341{bottom:652.560000pt;}
.y1e_c00341{bottom:658.560000pt;}
.y7_c00341{bottom:679.226667pt;}
.y1d_c00341{bottom:688.160000pt;}
.y6_c00341{bottom:705.093333pt;}
.y1c_c00341{bottom:718.293333pt;}
.y5_c00341{bottom:730.160000pt;}
.y1b_c00341{bottom:748.293333pt;}
.y4_c00341{bottom:756.960000pt;}
.y1a_c00341{bottom:777.626667pt;}
.y3_c00341{bottom:782.426667pt;}
.y19_c00341{bottom:807.626667pt;}
.y2_c00341{bottom:808.826667pt;}
.y1_c00341{bottom:831.893333pt;}
.y18_c00341{bottom:837.893333pt;}
.y17_c00341{bottom:865.760000pt;}
.y16_c00341{bottom:895.893333pt;}
.y15_c00341{bottom:925.493333pt;}
.y14_c00341{bottom:954.693333pt;}
.y13_c00341{bottom:984.026667pt;}
.y12_c00341{bottom:1014.160000pt;}
.y11_c00341{bottom:1043.760000pt;}
.y10_c00341{bottom:1073.360000pt;}
.yf_c00341{bottom:1102.826667pt;}
.ye_c00341{bottom:1132.293333pt;}
.h7_c00341{height:11.733399pt;}
.h8_c00341{height:38.937500pt;}
.h4_c00341{height:81.148438pt;}
.h3_c00341{height:87.783854pt;}
.h2_c00341{height:93.896000pt;}
.h5_c00341{height:97.912760pt;}
.h6_c00341{height:108.041667pt;}
.h0_c00341{height:1229.066667pt;}
.h1_c00341{height:1229.333333pt;}
.w2_c00341{width:93.222667pt;}
.w0_c00341{width:767.266667pt;}
.w1_c00341{width:767.333333pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:33.866667pt;}
.x3_c00341{left:35.200000pt;}
.x4_c00341{left:36.266667pt;}
.x5_c00341{left:37.200000pt;}
.x1_c00341{left:136.533333pt;}
.x6_c00341{left:226.400000pt;}
.x7_c00341{left:227.733333pt;}
.x8_c00341{left:229.733333pt;}
.x9_c00341{left:230.666667pt;}
.xb_c00341{left:231.600000pt;}
.xc_c00341{left:232.533333pt;}
.xd_c00341{left:233.600000pt;}
.xf_c00341{left:340.801554pt;}
.xa_c00341{left:362.133333pt;}
.xe_c00341{left:707.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0df76572feab618c5e775dc5.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls0_c00342{letter-spacing:0.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:-23.136000px;}
.ws1_c00342{word-spacing:0.000000px;}
._25_c00342{margin-left:-30.336000px;}
._d_c00342{margin-left:-15.072000px;}
._e_c00342{margin-left:-12.384000px;}
._3c_c00342{margin-left:-8.928000px;}
._27_c00342{margin-left:-7.008000px;}
._18_c00342{margin-left:-4.032000px;}
._26_c00342{margin-left:-2.976000px;}
._0_c00342{margin-left:-1.824000px;}
._a_c00342{width:1.344000px;}
._3_c00342{width:2.496000px;}
._b_c00342{width:3.648000px;}
._8_c00342{width:4.704000px;}
._7_c00342{width:6.048000px;}
._13_c00342{width:7.872000px;}
._24_c00342{width:8.928000px;}
._6_c00342{width:9.984000px;}
._22_c00342{width:11.232000px;}
._1f_c00342{width:12.672000px;}
._38_c00342{width:14.016000px;}
._23_c00342{width:15.456000px;}
._f_c00342{width:16.896000px;}
._36_c00342{width:18.048000px;}
._2a_c00342{width:19.584000px;}
._1e_c00342{width:21.696000px;}
._2b_c00342{width:24.288000px;}
._1a_c00342{width:25.344000px;}
._35_c00342{width:26.784000px;}
._10_c00342{width:27.936000px;}
._17_c00342{width:29.568000px;}
._2c_c00342{width:30.624000px;}
._1_c00342{width:32.160000px;}
._20_c00342{width:34.464000px;}
._30_c00342{width:35.808000px;}
._1d_c00342{width:36.864000px;}
._12_c00342{width:38.016000px;}
._15_c00342{width:39.072000px;}
._11_c00342{width:40.800000px;}
._19_c00342{width:42.528000px;}
._32_c00342{width:43.680000px;}
._14_c00342{width:45.120000px;}
._2_c00342{width:47.232000px;}
._1c_c00342{width:48.864000px;}
._39_c00342{width:50.112000px;}
._4_c00342{width:52.800000px;}
._1b_c00342{width:54.240000px;}
._34_c00342{width:55.488000px;}
._21_c00342{width:56.544000px;}
._16_c00342{width:59.904000px;}
._9_c00342{width:62.208000px;}
._5_c00342{width:64.320000px;}
._2d_c00342{width:67.584000px;}
._29_c00342{width:68.736000px;}
._31_c00342{width:70.656000px;}
._2f_c00342{width:73.536000px;}
._3a_c00342{width:74.880000px;}
._33_c00342{width:76.032000px;}
._2e_c00342{width:77.472000px;}
._c_c00342{width:80.256000px;}
._37_c00342{width:83.808000px;}
._28_c00342{width:97.152000px;}
._3b_c00342{width:146.208000px;}
._3d_c00342{width:164.256000px;}
.fc2_c00342{color:transparent;}
.fc1_c00342{color:rgb(128,128,128);}
.fc0_c00342{color:rgb(0,0,0);}
.fs1_c00342{font-size:48.000000px;}
.fs0_c00342{font-size:96.000000px;}
.y0_c00342{bottom:0.000000px;}
.y26_c00342{bottom:3.105000px;}
.y25_c00342{bottom:7.228369px;}
.y24_c00342{bottom:107.970000px;}
.y23_c00342{bottom:135.270000px;}
.y22_c00342{bottom:169.470000px;}
.y21_c00342{bottom:203.070000px;}
.y20_c00342{bottom:236.970000px;}
.y1f_c00342{bottom:270.570000px;}
.y1e_c00342{bottom:304.320000px;}
.y1d_c00342{bottom:338.070000px;}
.y1c_c00342{bottom:371.220000px;}
.y1b_c00342{bottom:404.670000px;}
.y1a_c00342{bottom:438.420000px;}
.y19_c00342{bottom:472.170000px;}
.y18_c00342{bottom:504.870000px;}
.y17_c00342{bottom:538.020000px;}
.y16_c00342{bottom:571.620000px;}
.y15_c00342{bottom:605.370000px;}
.y14_c00342{bottom:638.520000px;}
.y13_c00342{bottom:671.670000px;}
.y12_c00342{bottom:704.670000px;}
.y11_c00342{bottom:738.120000px;}
.y10_c00342{bottom:771.870000px;}
.yf_c00342{bottom:804.870000px;}
.ye_c00342{bottom:837.720000px;}
.yd_c00342{bottom:871.020000px;}
.yc_c00342{bottom:903.420000px;}
.yb_c00342{bottom:937.170000px;}
.ya_c00342{bottom:970.320000px;}
.y9_c00342{bottom:1003.620000px;}
.y8_c00342{bottom:1037.370000px;}
.y7_c00342{bottom:1069.920000px;}
.y6_c00342{bottom:1102.920000px;}
.y5_c00342{bottom:1135.620000px;}
.y4_c00342{bottom:1169.070000px;}
.y3_c00342{bottom:1201.770000px;}
.y2_c00342{bottom:1234.920000px;}
.y1_c00342{bottom:1267.920000px;}
.h3_c00342{height:13.200073px;}
.h4_c00342{height:43.804688px;}
.h2_c00342{height:121.546875px;}
.h0_c00342{height:1383.450000px;}
.h1_c00342{height:1383.750000px;}
.w2_c00342{width:104.875500px;}
.w0_c00342{width:878.025000px;}
.w1_c00342{width:878.250000px;}
.x0_c00342{left:0.000000px;}
.x9_c00342{left:43.950000px;}
.x8_c00342{left:45.000000px;}
.x7_c00342{left:46.200000px;}
.x6_c00342{left:47.250000px;}
.xa_c00342{left:48.300000px;}
.x5_c00342{left:49.350000px;}
.x4_c00342{left:50.550000px;}
.x3_c00342{left:51.600000px;}
.x2_c00342{left:52.650000px;}
.xb_c00342{left:53.700000px;}
.xc_c00342{left:54.750000px;}
.x1_c00342{left:55.950000px;}
.xd_c00342{left:57.450000px;}
.xe_c00342{left:59.700000px;}
.x10_c00342{left:390.826721px;}
.xf_c00342{left:570.450000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:-20.565333pt;}
.ws1_c00342{word-spacing:0.000000pt;}
._25_c00342{margin-left:-26.965333pt;}
._d_c00342{margin-left:-13.397333pt;}
._e_c00342{margin-left:-11.008000pt;}
._3c_c00342{margin-left:-7.936000pt;}
._27_c00342{margin-left:-6.229333pt;}
._18_c00342{margin-left:-3.584000pt;}
._26_c00342{margin-left:-2.645333pt;}
._0_c00342{margin-left:-1.621333pt;}
._a_c00342{width:1.194667pt;}
._3_c00342{width:2.218667pt;}
._b_c00342{width:3.242667pt;}
._8_c00342{width:4.181333pt;}
._7_c00342{width:5.376000pt;}
._13_c00342{width:6.997333pt;}
._24_c00342{width:7.936000pt;}
._6_c00342{width:8.874667pt;}
._22_c00342{width:9.984000pt;}
._1f_c00342{width:11.264000pt;}
._38_c00342{width:12.458667pt;}
._23_c00342{width:13.738667pt;}
._f_c00342{width:15.018667pt;}
._36_c00342{width:16.042667pt;}
._2a_c00342{width:17.408000pt;}
._1e_c00342{width:19.285333pt;}
._2b_c00342{width:21.589333pt;}
._1a_c00342{width:22.528000pt;}
._35_c00342{width:23.808000pt;}
._10_c00342{width:24.832000pt;}
._17_c00342{width:26.282667pt;}
._2c_c00342{width:27.221333pt;}
._1_c00342{width:28.586667pt;}
._20_c00342{width:30.634667pt;}
._30_c00342{width:31.829333pt;}
._1d_c00342{width:32.768000pt;}
._12_c00342{width:33.792000pt;}
._15_c00342{width:34.730667pt;}
._11_c00342{width:36.266667pt;}
._19_c00342{width:37.802667pt;}
._32_c00342{width:38.826667pt;}
._14_c00342{width:40.106667pt;}
._2_c00342{width:41.984000pt;}
._1c_c00342{width:43.434667pt;}
._39_c00342{width:44.544000pt;}
._4_c00342{width:46.933333pt;}
._1b_c00342{width:48.213333pt;}
._34_c00342{width:49.322667pt;}
._21_c00342{width:50.261333pt;}
._16_c00342{width:53.248000pt;}
._9_c00342{width:55.296000pt;}
._5_c00342{width:57.173333pt;}
._2d_c00342{width:60.074667pt;}
._29_c00342{width:61.098667pt;}
._31_c00342{width:62.805333pt;}
._2f_c00342{width:65.365333pt;}
._3a_c00342{width:66.560000pt;}
._33_c00342{width:67.584000pt;}
._2e_c00342{width:68.864000pt;}
._c_c00342{width:71.338667pt;}
._37_c00342{width:74.496000pt;}
._28_c00342{width:86.357333pt;}
._3b_c00342{width:129.962667pt;}
._3d_c00342{width:146.005333pt;}
.fs1_c00342{font-size:42.666667pt;}
.fs0_c00342{font-size:85.333333pt;}
.y0_c00342{bottom:0.000000pt;}
.y26_c00342{bottom:2.760000pt;}
.y25_c00342{bottom:6.425217pt;}
.y24_c00342{bottom:95.973333pt;}
.y23_c00342{bottom:120.240000pt;}
.y22_c00342{bottom:150.640000pt;}
.y21_c00342{bottom:180.506667pt;}
.y20_c00342{bottom:210.640000pt;}
.y1f_c00342{bottom:240.506667pt;}
.y1e_c00342{bottom:270.506667pt;}
.y1d_c00342{bottom:300.506667pt;}
.y1c_c00342{bottom:329.973333pt;}
.y1b_c00342{bottom:359.706667pt;}
.y1a_c00342{bottom:389.706667pt;}
.y19_c00342{bottom:419.706667pt;}
.y18_c00342{bottom:448.773333pt;}
.y17_c00342{bottom:478.240000pt;}
.y16_c00342{bottom:508.106667pt;}
.y15_c00342{bottom:538.106667pt;}
.y14_c00342{bottom:567.573333pt;}
.y13_c00342{bottom:597.040000pt;}
.y12_c00342{bottom:626.373333pt;}
.y11_c00342{bottom:656.106667pt;}
.y10_c00342{bottom:686.106667pt;}
.yf_c00342{bottom:715.440000pt;}
.ye_c00342{bottom:744.640000pt;}
.yd_c00342{bottom:774.240000pt;}
.yc_c00342{bottom:803.040000pt;}
.yb_c00342{bottom:833.040000pt;}
.ya_c00342{bottom:862.506667pt;}
.y9_c00342{bottom:892.106667pt;}
.y8_c00342{bottom:922.106667pt;}
.y7_c00342{bottom:951.040000pt;}
.y6_c00342{bottom:980.373333pt;}
.y5_c00342{bottom:1009.440000pt;}
.y4_c00342{bottom:1039.173333pt;}
.y3_c00342{bottom:1068.240000pt;}
.y2_c00342{bottom:1097.706667pt;}
.y1_c00342{bottom:1127.040000pt;}
.h3_c00342{height:11.733399pt;}
.h4_c00342{height:38.937500pt;}
.h2_c00342{height:108.041667pt;}
.h0_c00342{height:1229.733333pt;}
.h1_c00342{height:1230.000000pt;}
.w2_c00342{width:93.222667pt;}
.w0_c00342{width:780.466667pt;}
.w1_c00342{width:780.666667pt;}
.x0_c00342{left:0.000000pt;}
.x9_c00342{left:39.066667pt;}
.x8_c00342{left:40.000000pt;}
.x7_c00342{left:41.066667pt;}
.x6_c00342{left:42.000000pt;}
.xa_c00342{left:42.933333pt;}
.x5_c00342{left:43.866667pt;}
.x4_c00342{left:44.933333pt;}
.x3_c00342{left:45.866667pt;}
.x2_c00342{left:46.800000pt;}
.xb_c00342{left:47.733333pt;}
.xc_c00342{left:48.666667pt;}
.x1_c00342{left:49.733333pt;}
.xd_c00342{left:51.066667pt;}
.xe_c00342{left:53.066667pt;}
.x10_c00342{left:347.401530pt;}
.xf_c00342{left:507.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba7332c5fc2201a418c1072c.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_6dab9a1c5a7c193aaa94f599.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_2b90090dfdb0257d47072663.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00343;src:url('chunks/assets/font_50adc61ea4810356a23e9e13.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00343;src:url('chunks/assets/font_6603eb944001d8a615221f84.woff2')format("woff");}.ff6_c00343{font-family:ff6_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00343;src:url('chunks/assets/font_3cdc9a18fe32a97797475e84.woff2')format("woff");}.ff7_c00343{font-family:ff7_c00343;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00343;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00343{font-family:ff8_c00343;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls6_c00343{letter-spacing:-24.000000px;}
.ls5_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:6.600000px;}
.ls2_c00343{letter-spacing:7.800000px;}
.ls1_c00343{letter-spacing:11.400000px;}
.ls3_c00343{letter-spacing:33.600000px;}
.ls4_c00343{letter-spacing:39.600000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:-23.136000px;}
.ws2_c00343{word-spacing:-18.798000px;}
.ws3_c00343{word-spacing:0.000000px;}
.ws1_c00343{word-spacing:0.924000px;}
._2c_c00343{margin-left:-231.420000px;}
._32_c00343{margin-left:-133.140000px;}
._2f_c00343{margin-left:-131.040000px;}
._33_c00343{margin-left:-122.640000px;}
._2d_c00343{margin-left:-67.200000px;}
._2b_c00343{margin-left:-51.075000px;}
._31_c00343{margin-left:-42.096000px;}
._2e_c00343{margin-left:-19.740000px;}
._3d_c00343{margin-left:-15.108000px;}
._3a_c00343{margin-left:-11.856000px;}
._2a_c00343{margin-left:-8.943000px;}
._29_c00343{margin-left:-7.626000px;}
._26_c00343{margin-left:-5.952000px;}
._27_c00343{margin-left:-4.356000px;}
._13_c00343{margin-left:-3.072000px;}
._2_c00343{margin-left:-1.824000px;}
._0_c00343{width:1.632000px;}
._4_c00343{width:3.552000px;}
._8_c00343{width:4.656000px;}
._17_c00343{width:5.664000px;}
._5_c00343{width:6.720000px;}
._7_c00343{width:8.304000px;}
._23_c00343{width:10.176000px;}
._37_c00343{width:11.424000px;}
._15_c00343{width:12.480000px;}
._22_c00343{width:13.968000px;}
._24_c00343{width:15.168000px;}
._6_c00343{width:17.040000px;}
._12_c00343{width:18.240000px;}
._a_c00343{width:19.776000px;}
._11_c00343{width:21.120000px;}
._9_c00343{width:25.104000px;}
._38_c00343{width:26.664000px;}
._d_c00343{width:27.744000px;}
._f_c00343{width:29.664000px;}
._20_c00343{width:31.104000px;}
._c_c00343{width:32.640000px;}
._16_c00343{width:34.176000px;}
._1d_c00343{width:35.184000px;}
._14_c00343{width:36.576000px;}
._3_c00343{width:38.256000px;}
._3e_c00343{width:39.696000px;}
._1_c00343{width:40.800000px;}
._e_c00343{width:43.008000px;}
._3b_c00343{width:44.928000px;}
._b_c00343{width:46.176000px;}
._1b_c00343{width:47.328000px;}
._1f_c00343{width:49.056000px;}
._40_c00343{width:50.160000px;}
._19_c00343{width:51.168000px;}
._1c_c00343{width:52.224000px;}
._21_c00343{width:53.376000px;}
._41_c00343{width:56.613000px;}
._10_c00343{width:58.752000px;}
._28_c00343{width:59.892000px;}
._39_c00343{width:61.188000px;}
._3f_c00343{width:66.720000px;}
._18_c00343{width:70.464000px;}
._1a_c00343{width:77.664000px;}
._42_c00343{width:88.032000px;}
._1e_c00343{width:95.232000px;}
._34_c00343{width:98.496000px;}
._30_c00343{width:101.139000px;}
._25_c00343{width:103.776000px;}
._35_c00343{width:144.378000px;}
._3c_c00343{width:172.992000px;}
._36_c00343{width:180.840000px;}
.fc2_c00343{color:transparent;}
.fc1_c00343{color:rgb(128,128,128);}
.fc0_c00343{color:rgb(0,0,0);}
.fs2_c00343{font-size:24.000000px;}
.fs8_c00343{font-size:48.000000px;}
.fs5_c00343{font-size:78.000000px;}
.fs6_c00343{font-size:84.000000px;}
.fs3_c00343{font-size:93.000000px;}
.fs0_c00343{font-size:96.000000px;}
.fs1_c00343{font-size:102.000000px;}
.fs7_c00343{font-size:105.000000px;}
.fs4_c00343{font-size:420.000000px;}
.y0_c00343{bottom:0.000000px;}
.y36_c00343{bottom:3.105000px;}
.y35_c00343{bottom:7.228357px;}
.y34_c00343{bottom:107.730000px;}
.y33_c00343{bottom:141.780000px;}
.y1e_c00343{bottom:155.880000px;}
.y32_c00343{bottom:176.130000px;}
.y1d_c00343{bottom:184.380000px;}
.y31_c00343{bottom:210.330000px;}
.y1c_c00343{bottom:214.080000px;}
.y30_c00343{bottom:244.380000px;}
.y1b_c00343{bottom:244.980000px;}
.y2f_c00343{bottom:278.130000px;}
.y2e_c00343{bottom:311.580000px;}
.y2d_c00343{bottom:344.880000px;}
.y1a_c00343{bottom:357.780000px;}
.y2c_c00343{bottom:378.780000px;}
.y19_c00343{bottom:386.880000px;}
.y2b_c00343{bottom:412.530000px;}
.y2a_c00343{bottom:446.280000px;}
.y18_c00343{bottom:449.280000px;}
.y17_c00343{bottom:478.530000px;}
.y29_c00343{bottom:480.330000px;}
.y16_c00343{bottom:508.230000px;}
.y28_c00343{bottom:513.630000px;}
.y27_c00343{bottom:546.780000px;}
.y15_c00343{bottom:570.780000px;}
.y26_c00343{bottom:580.530000px;}
.y14_c00343{bottom:594.780000px;}
.y25_c00343{bottom:613.980000px;}
.y13_c00343{bottom:632.130000px;}
.y24_c00343{bottom:647.730000px;}
.y23_c00343{bottom:681.180000px;}
.y12_c00343{bottom:695.280000px;}
.y22_c00343{bottom:714.780000px;}
.y11_c00343{bottom:725.730000px;}
.y21_c00343{bottom:747.630000px;}
.y10_c00343{bottom:754.080000px;}
.y20_c00343{bottom:781.080000px;}
.yf_c00343{bottom:784.080000px;}
.ye_c00343{bottom:813.780000px;}
.y1f_c00343{bottom:815.430000px;}
.yd_c00343{bottom:882.630000px;}
.yc_c00343{bottom:917.280000px;}
.yb_c00343{bottom:950.130000px;}
.ya_c00343{bottom:983.430000px;}
.y9_c00343{bottom:1015.830000px;}
.y8_c00343{bottom:1048.380000px;}
.y7_c00343{bottom:1081.680000px;}
.y6_c00343{bottom:1114.530000px;}
.y5_c00343{bottom:1147.830000px;}
.y4_c00343{bottom:1181.280000px;}
.y3_c00343{bottom:1213.680000px;}
.y2_c00343{bottom:1246.830000px;}
.y1_c00343{bottom:1280.130000px;}
.ha_c00343{height:13.200074px;}
.h3_c00343{height:20.601562px;}
.hb_c00343{height:43.804688px;}
.h7_c00343{height:91.291992px;}
.h4_c00343{height:97.464000px;}
.h8_c00343{height:98.314453px;}
.h6_c00343{height:98.756836px;}
.h2_c00343{height:121.546875px;}
.h9_c00343{height:132.941895px;}
.h5_c00343{height:412.207031px;}
.h0_c00343{height:1382.700000px;}
.h1_c00343{height:1383.000000px;}
.w2_c00343{width:104.875500px;}
.w0_c00343{width:863.175000px;}
.w1_c00343{width:863.250000px;}
.x0_c00343{left:0.000000px;}
.xa_c00343{left:42.300000px;}
.x10_c00343{left:43.500000px;}
.xb_c00343{left:45.600000px;}
.xe_c00343{left:58.500000px;}
.xf_c00343{left:70.500000px;}
.x9_c00343{left:72.000000px;}
.xd_c00343{left:115.200000px;}
.xc_c00343{left:139.050000px;}
.x7_c00343{left:153.600000px;}
.x8_c00343{left:159.000000px;}
.x1_c00343{left:264.300000px;}
.x2_c00343{left:265.950000px;}
.x3_c00343{left:267.000000px;}
.x4_c00343{left:268.200000px;}
.x12_c00343{left:269.700000px;}
.x14_c00343{left:270.750000px;}
.x11_c00343{left:319.950000px;}
.x13_c00343{left:322.650000px;}
.x16_c00343{left:383.401749px;}
.x6_c00343{left:472.800000px;}
.x15_c00343{left:798.900000px;}
.x5_c00343{left:827.250000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls6_c00343{letter-spacing:-21.333333pt;}
.ls5_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:5.866667pt;}
.ls2_c00343{letter-spacing:6.933333pt;}
.ls1_c00343{letter-spacing:10.133333pt;}
.ls3_c00343{letter-spacing:29.866667pt;}
.ls4_c00343{letter-spacing:35.200000pt;}
.ws0_c00343{word-spacing:-20.565333pt;}
.ws2_c00343{word-spacing:-16.709333pt;}
.ws3_c00343{word-spacing:0.000000pt;}
.ws1_c00343{word-spacing:0.821333pt;}
._2c_c00343{margin-left:-205.706667pt;}
._32_c00343{margin-left:-118.346667pt;}
._2f_c00343{margin-left:-116.480000pt;}
._33_c00343{margin-left:-109.013333pt;}
._2d_c00343{margin-left:-59.733333pt;}
._2b_c00343{margin-left:-45.400000pt;}
._31_c00343{margin-left:-37.418667pt;}
._2e_c00343{margin-left:-17.546667pt;}
._3d_c00343{margin-left:-13.429333pt;}
._3a_c00343{margin-left:-10.538667pt;}
._2a_c00343{margin-left:-7.949333pt;}
._29_c00343{margin-left:-6.778667pt;}
._26_c00343{margin-left:-5.290667pt;}
._27_c00343{margin-left:-3.872000pt;}
._13_c00343{margin-left:-2.730667pt;}
._2_c00343{margin-left:-1.621333pt;}
._0_c00343{width:1.450667pt;}
._4_c00343{width:3.157333pt;}
._8_c00343{width:4.138667pt;}
._17_c00343{width:5.034667pt;}
._5_c00343{width:5.973333pt;}
._7_c00343{width:7.381333pt;}
._23_c00343{width:9.045333pt;}
._37_c00343{width:10.154667pt;}
._15_c00343{width:11.093333pt;}
._22_c00343{width:12.416000pt;}
._24_c00343{width:13.482667pt;}
._6_c00343{width:15.146667pt;}
._12_c00343{width:16.213333pt;}
._a_c00343{width:17.578667pt;}
._11_c00343{width:18.773333pt;}
._9_c00343{width:22.314667pt;}
._38_c00343{width:23.701333pt;}
._d_c00343{width:24.661333pt;}
._f_c00343{width:26.368000pt;}
._20_c00343{width:27.648000pt;}
._c_c00343{width:29.013333pt;}
._16_c00343{width:30.378667pt;}
._1d_c00343{width:31.274667pt;}
._14_c00343{width:32.512000pt;}
._3_c00343{width:34.005333pt;}
._3e_c00343{width:35.285333pt;}
._1_c00343{width:36.266667pt;}
._e_c00343{width:38.229333pt;}
._3b_c00343{width:39.936000pt;}
._b_c00343{width:41.045333pt;}
._1b_c00343{width:42.069333pt;}
._1f_c00343{width:43.605333pt;}
._40_c00343{width:44.586667pt;}
._19_c00343{width:45.482667pt;}
._1c_c00343{width:46.421333pt;}
._21_c00343{width:47.445333pt;}
._41_c00343{width:50.322667pt;}
._10_c00343{width:52.224000pt;}
._28_c00343{width:53.237333pt;}
._39_c00343{width:54.389333pt;}
._3f_c00343{width:59.306667pt;}
._18_c00343{width:62.634667pt;}
._1a_c00343{width:69.034667pt;}
._42_c00343{width:78.250667pt;}
._1e_c00343{width:84.650667pt;}
._34_c00343{width:87.552000pt;}
._30_c00343{width:89.901333pt;}
._25_c00343{width:92.245333pt;}
._35_c00343{width:128.336000pt;}
._3c_c00343{width:153.770667pt;}
._36_c00343{width:160.746667pt;}
.fs2_c00343{font-size:21.333333pt;}
.fs8_c00343{font-size:42.666667pt;}
.fs5_c00343{font-size:69.333333pt;}
.fs6_c00343{font-size:74.666667pt;}
.fs3_c00343{font-size:82.666667pt;}
.fs0_c00343{font-size:85.333333pt;}
.fs1_c00343{font-size:90.666667pt;}
.fs7_c00343{font-size:93.333333pt;}
.fs4_c00343{font-size:373.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y36_c00343{bottom:2.760000pt;}
.y35_c00343{bottom:6.425206pt;}
.y34_c00343{bottom:95.760000pt;}
.y33_c00343{bottom:126.026667pt;}
.y1e_c00343{bottom:138.560000pt;}
.y32_c00343{bottom:156.560000pt;}
.y1d_c00343{bottom:163.893333pt;}
.y31_c00343{bottom:186.960000pt;}
.y1c_c00343{bottom:190.293333pt;}
.y30_c00343{bottom:217.226667pt;}
.y1b_c00343{bottom:217.760000pt;}
.y2f_c00343{bottom:247.226667pt;}
.y2e_c00343{bottom:276.960000pt;}
.y2d_c00343{bottom:306.560000pt;}
.y1a_c00343{bottom:318.026667pt;}
.y2c_c00343{bottom:336.693333pt;}
.y19_c00343{bottom:343.893333pt;}
.y2b_c00343{bottom:366.693333pt;}
.y2a_c00343{bottom:396.693333pt;}
.y18_c00343{bottom:399.360000pt;}
.y17_c00343{bottom:425.360000pt;}
.y29_c00343{bottom:426.960000pt;}
.y16_c00343{bottom:451.760000pt;}
.y28_c00343{bottom:456.560000pt;}
.y27_c00343{bottom:486.026667pt;}
.y15_c00343{bottom:507.360000pt;}
.y26_c00343{bottom:516.026667pt;}
.y14_c00343{bottom:528.693333pt;}
.y25_c00343{bottom:545.760000pt;}
.y13_c00343{bottom:561.893333pt;}
.y24_c00343{bottom:575.760000pt;}
.y23_c00343{bottom:605.493333pt;}
.y12_c00343{bottom:618.026667pt;}
.y22_c00343{bottom:635.360000pt;}
.y11_c00343{bottom:645.093333pt;}
.y21_c00343{bottom:664.560000pt;}
.y10_c00343{bottom:670.293333pt;}
.y20_c00343{bottom:694.293333pt;}
.yf_c00343{bottom:696.960000pt;}
.ye_c00343{bottom:723.360000pt;}
.y1f_c00343{bottom:724.826667pt;}
.yd_c00343{bottom:784.560000pt;}
.yc_c00343{bottom:815.360000pt;}
.yb_c00343{bottom:844.560000pt;}
.ya_c00343{bottom:874.160000pt;}
.y9_c00343{bottom:902.960000pt;}
.y8_c00343{bottom:931.893333pt;}
.y7_c00343{bottom:961.493333pt;}
.y6_c00343{bottom:990.693333pt;}
.y5_c00343{bottom:1020.293333pt;}
.y4_c00343{bottom:1050.026667pt;}
.y3_c00343{bottom:1078.826667pt;}
.y2_c00343{bottom:1108.293333pt;}
.y1_c00343{bottom:1137.893333pt;}
.ha_c00343{height:11.733399pt;}
.h3_c00343{height:18.312500pt;}
.hb_c00343{height:38.937500pt;}
.h7_c00343{height:81.148438pt;}
.h4_c00343{height:86.634667pt;}
.h8_c00343{height:87.390625pt;}
.h6_c00343{height:87.783854pt;}
.h2_c00343{height:108.041667pt;}
.h9_c00343{height:118.170573pt;}
.h5_c00343{height:366.406250pt;}
.h0_c00343{height:1229.066667pt;}
.h1_c00343{height:1229.333333pt;}
.w2_c00343{width:93.222667pt;}
.w0_c00343{width:767.266667pt;}
.w1_c00343{width:767.333333pt;}
.x0_c00343{left:0.000000pt;}
.xa_c00343{left:37.600000pt;}
.x10_c00343{left:38.666667pt;}
.xb_c00343{left:40.533333pt;}
.xe_c00343{left:52.000000pt;}
.xf_c00343{left:62.666667pt;}
.x9_c00343{left:64.000000pt;}
.xd_c00343{left:102.400000pt;}
.xc_c00343{left:123.600000pt;}
.x7_c00343{left:136.533333pt;}
.x8_c00343{left:141.333333pt;}
.x1_c00343{left:234.933333pt;}
.x2_c00343{left:236.400000pt;}
.x3_c00343{left:237.333333pt;}
.x4_c00343{left:238.400000pt;}
.x12_c00343{left:239.733333pt;}
.x14_c00343{left:240.666667pt;}
.x11_c00343{left:284.400000pt;}
.x13_c00343{left:286.800000pt;}
.x16_c00343{left:340.801554pt;}
.x6_c00343{left:420.266667pt;}
.x15_c00343{left:710.133333pt;}
.x5_c00343{left:735.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e69b2847584bfedd6bebbeba.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_a8af1c5db56997758ac5012d.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls1_c00344{letter-spacing:0.000000px;}
.ls0_c00344{letter-spacing:12.720000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:-20.244000px;}
.ws2_c00344{word-spacing:0.000000px;}
.ws1_c00344{word-spacing:2.856000px;}
._2a_c00344{margin-left:-25.536000px;}
._2d_c00344{margin-left:-20.448000px;}
._e_c00344{margin-left:-15.792000px;}
._2b_c00344{margin-left:-14.112000px;}
._2c_c00344{margin-left:-12.768000px;}
._f_c00344{margin-left:-11.304000px;}
._31_c00344{margin-left:-9.000000px;}
._32_c00344{margin-left:-7.920000px;}
._a_c00344{margin-left:-6.624000px;}
._30_c00344{margin-left:-4.836000px;}
._b_c00344{margin-left:-3.456000px;}
._12_c00344{margin-left:-1.440000px;}
._c_c00344{width:1.056000px;}
._4_c00344{width:3.072000px;}
._5_c00344{width:4.320000px;}
._2_c00344{width:5.472000px;}
._6_c00344{width:6.624000px;}
._8_c00344{width:7.680000px;}
._0_c00344{width:9.216000px;}
._1_c00344{width:10.464000px;}
._3_c00344{width:12.576000px;}
._7_c00344{width:14.688000px;}
._9_c00344{width:16.704000px;}
._d_c00344{width:17.856000px;}
._13_c00344{width:19.200000px;}
._11_c00344{width:20.832000px;}
._26_c00344{width:21.888000px;}
._25_c00344{width:24.216000px;}
._10_c00344{width:25.728000px;}
._14_c00344{width:27.840000px;}
._24_c00344{width:29.664000px;}
._20_c00344{width:30.720000px;}
._1d_c00344{width:32.544000px;}
._27_c00344{width:33.696000px;}
._17_c00344{width:34.752000px;}
._16_c00344{width:36.768000px;}
._22_c00344{width:38.400000px;}
._18_c00344{width:39.552000px;}
._1b_c00344{width:40.704000px;}
._1c_c00344{width:41.760000px;}
._21_c00344{width:42.912000px;}
._28_c00344{width:44.160000px;}
._23_c00344{width:45.696000px;}
._1e_c00344{width:47.232000px;}
._15_c00344{width:48.672000px;}
._1f_c00344{width:52.128000px;}
._19_c00344{width:53.568000px;}
._2e_c00344{width:55.584000px;}
._1a_c00344{width:56.928000px;}
._29_c00344{width:58.656000px;}
._2f_c00344{width:830.976000px;}
.fc2_c00344{color:transparent;}
.fc1_c00344{color:rgb(128,128,128);}
.fc0_c00344{color:rgb(0,0,0);}
.fs3_c00344{font-size:48.000000px;}
.fs2_c00344{font-size:78.000000px;}
.fs1_c00344{font-size:84.000000px;}
.fs0_c00344{font-size:96.000000px;}
.y0_c00344{bottom:0.000000px;}
.y2e_c00344{bottom:3.105000px;}
.y2d_c00344{bottom:7.228371px;}
.y25_c00344{bottom:61.515000px;}
.y24_c00344{bottom:94.515000px;}
.y23_c00344{bottom:129.315000px;}
.y22_c00344{bottom:163.365000px;}
.y21_c00344{bottom:197.415000px;}
.y20_c00344{bottom:230.865000px;}
.y1f_c00344{bottom:264.615000px;}
.y1e_c00344{bottom:298.815000px;}
.y1d_c00344{bottom:332.115000px;}
.y1c_c00344{bottom:365.865000px;}
.y1b_c00344{bottom:399.915000px;}
.y1a_c00344{bottom:433.365000px;}
.y19_c00344{bottom:466.215000px;}
.y18_c00344{bottom:499.965000px;}
.y17_c00344{bottom:533.715000px;}
.y16_c00344{bottom:567.315000px;}
.y2c_c00344{bottom:586.965000px;}
.y15_c00344{bottom:600.465000px;}
.y2b_c00344{bottom:616.665000px;}
.y14_c00344{bottom:633.915000px;}
.y13_c00344{bottom:667.215000px;}
.y12_c00344{bottom:700.965000px;}
.y2a_c00344{bottom:715.965000px;}
.y11_c00344{bottom:734.415000px;}
.y29_c00344{bottom:742.965000px;}
.y10_c00344{bottom:768.165000px;}
.y28_c00344{bottom:772.215000px;}
.y27_c00344{bottom:800.565000px;}
.yf_c00344{bottom:801.465000px;}
.y26_c00344{bottom:812.715000px;}
.ye_c00344{bottom:834.615000px;}
.yd_c00344{bottom:867.765000px;}
.yc_c00344{bottom:901.215000px;}
.yb_c00344{bottom:934.665000px;}
.ya_c00344{bottom:967.965000px;}
.y9_c00344{bottom:1001.415000px;}
.y8_c00344{bottom:1034.865000px;}
.y7_c00344{bottom:1068.615000px;}
.y6_c00344{bottom:1101.915000px;}
.y5_c00344{bottom:1134.465000px;}
.y4_c00344{bottom:1167.765000px;}
.y3_c00344{bottom:1201.515000px;}
.y2_c00344{bottom:1234.215000px;}
.y1_c00344{bottom:1267.965000px;}
.h6_c00344{height:13.200074px;}
.h7_c00344{height:43.804688px;}
.h5_c00344{height:98.314453px;}
.h4_c00344{height:98.756836px;}
.h3_c00344{height:106.353516px;}
.h2_c00344{height:121.546875px;}
.h0_c00344{height:1360.275000px;}
.h1_c00344{height:1360.500000px;}
.w2_c00344{width:104.875500px;}
.w1_c00344{width:863.250000px;}
.w0_c00344{width:863.475000px;}
.x0_c00344{left:0.000000px;}
.x9_c00344{left:29.400000px;}
.x7_c00344{left:31.050000px;}
.x8_c00344{left:32.100000px;}
.x6_c00344{left:33.150000px;}
.x5_c00344{left:34.800000px;}
.x4_c00344{left:35.850000px;}
.x3_c00344{left:36.900000px;}
.x2_c00344{left:38.100000px;}
.x1_c00344{left:39.750000px;}
.xa_c00344{left:317.550000px;}
.x10_c00344{left:383.551758px;}
.xc_c00344{left:621.750000px;}
.xd_c00344{left:622.800000px;}
.xf_c00344{left:625.050000px;}
.xb_c00344{left:636.450000px;}
.xe_c00344{left:653.100000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls1_c00344{letter-spacing:0.000000pt;}
.ls0_c00344{letter-spacing:11.306667pt;}
.ws0_c00344{word-spacing:-17.994667pt;}
.ws2_c00344{word-spacing:0.000000pt;}
.ws1_c00344{word-spacing:2.538667pt;}
._2a_c00344{margin-left:-22.698667pt;}
._2d_c00344{margin-left:-18.176000pt;}
._e_c00344{margin-left:-14.037333pt;}
._2b_c00344{margin-left:-12.544000pt;}
._2c_c00344{margin-left:-11.349333pt;}
._f_c00344{margin-left:-10.048000pt;}
._31_c00344{margin-left:-8.000000pt;}
._32_c00344{margin-left:-7.040000pt;}
._a_c00344{margin-left:-5.888000pt;}
._30_c00344{margin-left:-4.298667pt;}
._b_c00344{margin-left:-3.072000pt;}
._12_c00344{margin-left:-1.280000pt;}
._c_c00344{width:0.938667pt;}
._4_c00344{width:2.730667pt;}
._5_c00344{width:3.840000pt;}
._2_c00344{width:4.864000pt;}
._6_c00344{width:5.888000pt;}
._8_c00344{width:6.826667pt;}
._0_c00344{width:8.192000pt;}
._1_c00344{width:9.301333pt;}
._3_c00344{width:11.178667pt;}
._7_c00344{width:13.056000pt;}
._9_c00344{width:14.848000pt;}
._d_c00344{width:15.872000pt;}
._13_c00344{width:17.066667pt;}
._11_c00344{width:18.517333pt;}
._26_c00344{width:19.456000pt;}
._25_c00344{width:21.525333pt;}
._10_c00344{width:22.869333pt;}
._14_c00344{width:24.746667pt;}
._24_c00344{width:26.368000pt;}
._20_c00344{width:27.306667pt;}
._1d_c00344{width:28.928000pt;}
._27_c00344{width:29.952000pt;}
._17_c00344{width:30.890667pt;}
._16_c00344{width:32.682667pt;}
._22_c00344{width:34.133333pt;}
._18_c00344{width:35.157333pt;}
._1b_c00344{width:36.181333pt;}
._1c_c00344{width:37.120000pt;}
._21_c00344{width:38.144000pt;}
._28_c00344{width:39.253333pt;}
._23_c00344{width:40.618667pt;}
._1e_c00344{width:41.984000pt;}
._15_c00344{width:43.264000pt;}
._1f_c00344{width:46.336000pt;}
._19_c00344{width:47.616000pt;}
._2e_c00344{width:49.408000pt;}
._1a_c00344{width:50.602667pt;}
._29_c00344{width:52.138667pt;}
._2f_c00344{width:738.645333pt;}
.fs3_c00344{font-size:42.666667pt;}
.fs2_c00344{font-size:69.333333pt;}
.fs1_c00344{font-size:74.666667pt;}
.fs0_c00344{font-size:85.333333pt;}
.y0_c00344{bottom:0.000000pt;}
.y2e_c00344{bottom:2.760000pt;}
.y2d_c00344{bottom:6.425219pt;}
.y25_c00344{bottom:54.680000pt;}
.y24_c00344{bottom:84.013333pt;}
.y23_c00344{bottom:114.946667pt;}
.y22_c00344{bottom:145.213333pt;}
.y21_c00344{bottom:175.480000pt;}
.y20_c00344{bottom:205.213333pt;}
.y1f_c00344{bottom:235.213333pt;}
.y1e_c00344{bottom:265.613333pt;}
.y1d_c00344{bottom:295.213333pt;}
.y1c_c00344{bottom:325.213333pt;}
.y1b_c00344{bottom:355.480000pt;}
.y1a_c00344{bottom:385.213333pt;}
.y19_c00344{bottom:414.413333pt;}
.y18_c00344{bottom:444.413333pt;}
.y17_c00344{bottom:474.413333pt;}
.y16_c00344{bottom:504.280000pt;}
.y2c_c00344{bottom:521.746667pt;}
.y15_c00344{bottom:533.746667pt;}
.y2b_c00344{bottom:548.146667pt;}
.y14_c00344{bottom:563.480000pt;}
.y13_c00344{bottom:593.080000pt;}
.y12_c00344{bottom:623.080000pt;}
.y2a_c00344{bottom:636.413333pt;}
.y11_c00344{bottom:652.813333pt;}
.y29_c00344{bottom:660.413333pt;}
.y10_c00344{bottom:682.813333pt;}
.y28_c00344{bottom:686.413333pt;}
.y27_c00344{bottom:711.613333pt;}
.yf_c00344{bottom:712.413333pt;}
.y26_c00344{bottom:722.413333pt;}
.ye_c00344{bottom:741.880000pt;}
.yd_c00344{bottom:771.346667pt;}
.yc_c00344{bottom:801.080000pt;}
.yb_c00344{bottom:830.813333pt;}
.ya_c00344{bottom:860.413333pt;}
.y9_c00344{bottom:890.146667pt;}
.y8_c00344{bottom:919.880000pt;}
.y7_c00344{bottom:949.880000pt;}
.y6_c00344{bottom:979.480000pt;}
.y5_c00344{bottom:1008.413333pt;}
.y4_c00344{bottom:1038.013333pt;}
.y3_c00344{bottom:1068.013333pt;}
.y2_c00344{bottom:1097.080000pt;}
.y1_c00344{bottom:1127.080000pt;}
.h6_c00344{height:11.733399pt;}
.h7_c00344{height:38.937500pt;}
.h5_c00344{height:87.390625pt;}
.h4_c00344{height:87.783854pt;}
.h3_c00344{height:94.536458pt;}
.h2_c00344{height:108.041667pt;}
.h0_c00344{height:1209.133333pt;}
.h1_c00344{height:1209.333333pt;}
.w2_c00344{width:93.222667pt;}
.w1_c00344{width:767.333333pt;}
.w0_c00344{width:767.533333pt;}
.x0_c00344{left:0.000000pt;}
.x9_c00344{left:26.133333pt;}
.x7_c00344{left:27.600000pt;}
.x8_c00344{left:28.533333pt;}
.x6_c00344{left:29.466667pt;}
.x5_c00344{left:30.933333pt;}
.x4_c00344{left:31.866667pt;}
.x3_c00344{left:32.800000pt;}
.x2_c00344{left:33.866667pt;}
.x1_c00344{left:35.333333pt;}
.xa_c00344{left:282.266667pt;}
.x10_c00344{left:340.934896pt;}
.xc_c00344{left:552.666667pt;}
.xd_c00344{left:553.600000pt;}
.xf_c00344{left:555.600000pt;}
.xb_c00344{left:565.733333pt;}
.xe_c00344{left:580.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f2e351dd00bcf40a77247a2.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_f01318bf02fab49752e4c0bd.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_4fca806e62d3151cd3809b47.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.v1_c00345{vertical-align:77.400000px;}
.ls2_c00345{letter-spacing:0.000000px;}
.ls0_c00345{letter-spacing:4.800000px;}
.ls1_c00345{letter-spacing:13.800000px;}
.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;}
}
.ws1_c00345{word-spacing:-51.000000px;}
.ws2_c00345{word-spacing:-23.136000px;}
.ws5_c00345{word-spacing:-20.244000px;}
.ws4_c00345{word-spacing:-14.460000px;}
.ws6_c00345{word-spacing:-1.428000px;}
.ws7_c00345{word-spacing:0.000000px;}
.ws3_c00345{word-spacing:1.824000px;}
.ws0_c00345{word-spacing:278.640000px;}
._2a_c00345{margin-left:-29.712000px;}
._15_c00345{margin-left:-26.040000px;}
._37_c00345{margin-left:-21.612000px;}
._2c_c00345{margin-left:-19.200000px;}
._16_c00345{margin-left:-15.072000px;}
._0_c00345{margin-left:-12.180000px;}
._a_c00345{margin-left:-10.020000px;}
._1f_c00345{margin-left:-8.184000px;}
._38_c00345{margin-left:-6.948000px;}
._1_c00345{margin-left:-5.856000px;}
._5_c00345{margin-left:-4.332000px;}
._2_c00345{margin-left:-2.880000px;}
._1e_c00345{margin-left:-1.536000px;}
._26_c00345{width:1.044000px;}
._11_c00345{width:2.052000px;}
._14_c00345{width:3.108000px;}
._6_c00345{width:4.272000px;}
._12_c00345{width:5.856000px;}
._4_c00345{width:6.936000px;}
._f_c00345{width:8.100000px;}
._9_c00345{width:9.240000px;}
._b_c00345{width:10.812000px;}
._c_c00345{width:12.540000px;}
._33_c00345{width:13.632000px;}
._3_c00345{width:14.976000px;}
._8_c00345{width:16.320000px;}
._7_c00345{width:17.760000px;}
._20_c00345{width:18.888000px;}
._27_c00345{width:21.336000px;}
._2d_c00345{width:24.528000px;}
._13_c00345{width:25.572000px;}
._19_c00345{width:26.592000px;}
._28_c00345{width:28.524000px;}
._25_c00345{width:30.660000px;}
._1b_c00345{width:32.316000px;}
._d_c00345{width:33.996000px;}
._24_c00345{width:35.736000px;}
._18_c00345{width:36.744000px;}
._23_c00345{width:38.616000px;}
._36_c00345{width:39.672000px;}
._1d_c00345{width:40.956000px;}
._1a_c00345{width:43.380000px;}
._1c_c00345{width:45.792000px;}
._22_c00345{width:46.968000px;}
._21_c00345{width:48.036000px;}
._2f_c00345{width:49.344000px;}
._2b_c00345{width:51.108000px;}
._35_c00345{width:54.108000px;}
._17_c00345{width:55.944000px;}
._10_c00345{width:58.584000px;}
._29_c00345{width:60.528000px;}
._e_c00345{width:63.768000px;}
._32_c00345{width:66.600000px;}
._30_c00345{width:68.160000px;}
._31_c00345{width:70.524000px;}
._34_c00345{width:73.812000px;}
._39_c00345{width:76.236000px;}
._3a_c00345{width:86.784000px;}
._2e_c00345{width:422.196000px;}
.fc2_c00345{color:transparent;}
.fc1_c00345{color:rgb(128,128,128);}
.fc0_c00345{color:rgb(0,0,0);}
.fs4_c00345{font-size:48.000000px;}
.fs3_c00345{font-size:60.000000px;}
.fs0_c00345{font-size:84.000000px;}
.fs1_c00345{font-size:96.000000px;}
.fs2_c00345{font-size:102.000000px;}
.y0_c00345{bottom:0.000000px;}
.y2d_c00345{bottom:3.105000px;}
.y2c_c00345{bottom:7.228357px;}
.y2b_c00345{bottom:91.080000px;}
.y2a_c00345{bottom:124.680000px;}
.y29_c00345{bottom:158.730000px;}
.y28_c00345{bottom:192.780000px;}
.y27_c00345{bottom:227.130000px;}
.y26_c00345{bottom:260.880000px;}
.y25_c00345{bottom:294.930000px;}
.y24_c00345{bottom:329.130000px;}
.y23_c00345{bottom:363.180000px;}
.y22_c00345{bottom:396.930000px;}
.y21_c00345{bottom:430.680000px;}
.y20_c00345{bottom:465.330000px;}
.y1f_c00345{bottom:498.780000px;}
.y1e_c00345{bottom:532.230000px;}
.y1d_c00345{bottom:566.430000px;}
.y1c_c00345{bottom:600.030000px;}
.y7_c00345{bottom:610.530000px;}
.y1b_c00345{bottom:633.930000px;}
.y6_c00345{bottom:642.930000px;}
.y1a_c00345{bottom:667.680000px;}
.y5_c00345{bottom:673.680000px;}
.y19_c00345{bottom:701.430000px;}
.y4_c00345{bottom:702.780000px;}
.y3_c00345{bottom:733.680000px;}
.y18_c00345{bottom:735.180000px;}
.y17_c00345{bottom:768.930000px;}
.y2_c00345{bottom:790.830000px;}
.y16_c00345{bottom:802.230000px;}
.y1_c00345{bottom:806.580000px;}
.y15_c00345{bottom:835.380000px;}
.y14_c00345{bottom:869.730000px;}
.y13_c00345{bottom:903.930000px;}
.y12_c00345{bottom:937.530000px;}
.y11_c00345{bottom:970.980000px;}
.y10_c00345{bottom:1004.130000px;}
.yf_c00345{bottom:1037.430000px;}
.ye_c00345{bottom:1070.580000px;}
.yd_c00345{bottom:1104.330000px;}
.yc_c00345{bottom:1138.080000px;}
.yb_c00345{bottom:1171.230000px;}
.ya_c00345{bottom:1204.830000px;}
.y9_c00345{bottom:1237.680000px;}
.y8_c00345{bottom:1271.430000px;}
.h7_c00345{height:13.200074px;}
.h8_c00345{height:43.804688px;}
.h4_c00345{height:75.966797px;}
.h6_c00345{height:98.314453px;}
.h3_c00345{height:121.546875px;}
.h5_c00345{height:129.143555px;}
.h2_c00345{height:198.946875px;}
.h0_c00345{height:1382.700000px;}
.h1_c00345{height:1383.000000px;}
.w2_c00345{width:104.875500px;}
.w0_c00345{width:863.175000px;}
.w1_c00345{width:863.250000px;}
.x0_c00345{left:0.000000px;}
.x4_c00345{left:42.450000px;}
.x3_c00345{left:51.000000px;}
.x1_c00345{left:58.950000px;}
.x2_c00345{left:152.550000px;}
.x5_c00345{left:261.600000px;}
.x6_c00345{left:263.250000px;}
.x7_c00345{left:264.300000px;}
.x8_c00345{left:265.500000px;}
.xa_c00345{left:266.550000px;}
.x9_c00345{left:315.600000px;}
.xc_c00345{left:383.401749px;}
.xb_c00345{left:802.200000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.v1_c00345{vertical-align:68.800000pt;}
.ls2_c00345{letter-spacing:0.000000pt;}
.ls0_c00345{letter-spacing:4.266667pt;}
.ls1_c00345{letter-spacing:12.266667pt;}
.ws1_c00345{word-spacing:-45.333333pt;}
.ws2_c00345{word-spacing:-20.565333pt;}
.ws5_c00345{word-spacing:-17.994667pt;}
.ws4_c00345{word-spacing:-12.853333pt;}
.ws6_c00345{word-spacing:-1.269333pt;}
.ws7_c00345{word-spacing:0.000000pt;}
.ws3_c00345{word-spacing:1.621333pt;}
.ws0_c00345{word-spacing:247.680000pt;}
._2a_c00345{margin-left:-26.410667pt;}
._15_c00345{margin-left:-23.146667pt;}
._37_c00345{margin-left:-19.210667pt;}
._2c_c00345{margin-left:-17.066667pt;}
._16_c00345{margin-left:-13.397333pt;}
._0_c00345{margin-left:-10.826667pt;}
._a_c00345{margin-left:-8.906667pt;}
._1f_c00345{margin-left:-7.274667pt;}
._38_c00345{margin-left:-6.176000pt;}
._1_c00345{margin-left:-5.205333pt;}
._5_c00345{margin-left:-3.850667pt;}
._2_c00345{margin-left:-2.560000pt;}
._1e_c00345{margin-left:-1.365333pt;}
._26_c00345{width:0.928000pt;}
._11_c00345{width:1.824000pt;}
._14_c00345{width:2.762667pt;}
._6_c00345{width:3.797333pt;}
._12_c00345{width:5.205333pt;}
._4_c00345{width:6.165333pt;}
._f_c00345{width:7.200000pt;}
._9_c00345{width:8.213333pt;}
._b_c00345{width:9.610667pt;}
._c_c00345{width:11.146667pt;}
._33_c00345{width:12.117333pt;}
._3_c00345{width:13.312000pt;}
._8_c00345{width:14.506667pt;}
._7_c00345{width:15.786667pt;}
._20_c00345{width:16.789333pt;}
._27_c00345{width:18.965333pt;}
._2d_c00345{width:21.802667pt;}
._13_c00345{width:22.730667pt;}
._19_c00345{width:23.637333pt;}
._28_c00345{width:25.354667pt;}
._25_c00345{width:27.253333pt;}
._1b_c00345{width:28.725333pt;}
._d_c00345{width:30.218667pt;}
._24_c00345{width:31.765333pt;}
._18_c00345{width:32.661333pt;}
._23_c00345{width:34.325333pt;}
._36_c00345{width:35.264000pt;}
._1d_c00345{width:36.405333pt;}
._1a_c00345{width:38.560000pt;}
._1c_c00345{width:40.704000pt;}
._22_c00345{width:41.749333pt;}
._21_c00345{width:42.698667pt;}
._2f_c00345{width:43.861333pt;}
._2b_c00345{width:45.429333pt;}
._35_c00345{width:48.096000pt;}
._17_c00345{width:49.728000pt;}
._10_c00345{width:52.074667pt;}
._29_c00345{width:53.802667pt;}
._e_c00345{width:56.682667pt;}
._32_c00345{width:59.200000pt;}
._30_c00345{width:60.586667pt;}
._31_c00345{width:62.688000pt;}
._34_c00345{width:65.610667pt;}
._39_c00345{width:67.765333pt;}
._3a_c00345{width:77.141333pt;}
._2e_c00345{width:375.285333pt;}
.fs4_c00345{font-size:42.666667pt;}
.fs3_c00345{font-size:53.333333pt;}
.fs0_c00345{font-size:74.666667pt;}
.fs1_c00345{font-size:85.333333pt;}
.fs2_c00345{font-size:90.666667pt;}
.y0_c00345{bottom:0.000000pt;}
.y2d_c00345{bottom:2.760000pt;}
.y2c_c00345{bottom:6.425206pt;}
.y2b_c00345{bottom:80.960000pt;}
.y2a_c00345{bottom:110.826667pt;}
.y29_c00345{bottom:141.093333pt;}
.y28_c00345{bottom:171.360000pt;}
.y27_c00345{bottom:201.893333pt;}
.y26_c00345{bottom:231.893333pt;}
.y25_c00345{bottom:262.160000pt;}
.y24_c00345{bottom:292.560000pt;}
.y23_c00345{bottom:322.826667pt;}
.y22_c00345{bottom:352.826667pt;}
.y21_c00345{bottom:382.826667pt;}
.y20_c00345{bottom:413.626667pt;}
.y1f_c00345{bottom:443.360000pt;}
.y1e_c00345{bottom:473.093333pt;}
.y1d_c00345{bottom:503.493333pt;}
.y1c_c00345{bottom:533.360000pt;}
.y7_c00345{bottom:542.693333pt;}
.y1b_c00345{bottom:563.493333pt;}
.y6_c00345{bottom:571.493333pt;}
.y1a_c00345{bottom:593.493333pt;}
.y5_c00345{bottom:598.826667pt;}
.y19_c00345{bottom:623.493333pt;}
.y4_c00345{bottom:624.693333pt;}
.y3_c00345{bottom:652.160000pt;}
.y18_c00345{bottom:653.493333pt;}
.y17_c00345{bottom:683.493333pt;}
.y2_c00345{bottom:702.960000pt;}
.y16_c00345{bottom:713.093333pt;}
.y1_c00345{bottom:716.960000pt;}
.y15_c00345{bottom:742.560000pt;}
.y14_c00345{bottom:773.093333pt;}
.y13_c00345{bottom:803.493333pt;}
.y12_c00345{bottom:833.360000pt;}
.y11_c00345{bottom:863.093333pt;}
.y10_c00345{bottom:892.560000pt;}
.yf_c00345{bottom:922.160000pt;}
.ye_c00345{bottom:951.626667pt;}
.yd_c00345{bottom:981.626667pt;}
.yc_c00345{bottom:1011.626667pt;}
.yb_c00345{bottom:1041.093333pt;}
.ya_c00345{bottom:1070.960000pt;}
.y9_c00345{bottom:1100.160000pt;}
.y8_c00345{bottom:1130.160000pt;}
.h7_c00345{height:11.733399pt;}
.h8_c00345{height:38.937500pt;}
.h4_c00345{height:67.526042pt;}
.h6_c00345{height:87.390625pt;}
.h3_c00345{height:108.041667pt;}
.h5_c00345{height:114.794271pt;}
.h2_c00345{height:176.841667pt;}
.h0_c00345{height:1229.066667pt;}
.h1_c00345{height:1229.333333pt;}
.w2_c00345{width:93.222667pt;}
.w0_c00345{width:767.266667pt;}
.w1_c00345{width:767.333333pt;}
.x0_c00345{left:0.000000pt;}
.x4_c00345{left:37.733333pt;}
.x3_c00345{left:45.333333pt;}
.x1_c00345{left:52.400000pt;}
.x2_c00345{left:135.600000pt;}
.x5_c00345{left:232.533333pt;}
.x6_c00345{left:234.000000pt;}
.x7_c00345{left:234.933333pt;}
.x8_c00345{left:236.000000pt;}
.xa_c00345{left:236.933333pt;}
.x9_c00345{left:280.533333pt;}
.xc_c00345{left:340.801554pt;}
.xb_c00345{left:713.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5adcc4876a787ccab4e24f4a.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_b07597ed7dd8c1fcc9bfb4eb.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_6ab6ff3b1a086c246444df60.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00346{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:3.000000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00346{word-spacing:-51.000000px;}
.ws0_c00346{word-spacing:-23.136000px;}
.ws3_c00346{word-spacing:-20.244000px;}
.ws2_c00346{word-spacing:-1.176000px;}
.ws4_c00346{word-spacing:0.000000px;}
._3b_c00346{margin-left:-69.012000px;}
._49_c00346{margin-left:-43.392000px;}
._31_c00346{margin-left:-30.144000px;}
._2f_c00346{margin-left:-26.400000px;}
._35_c00346{margin-left:-20.544000px;}
._33_c00346{margin-left:-18.432000px;}
._2d_c00346{margin-left:-17.088000px;}
._2a_c00346{margin-left:-15.840000px;}
._2c_c00346{margin-left:-14.019000px;}
._15_c00346{margin-left:-11.904000px;}
._c_c00346{margin-left:-10.464000px;}
._d_c00346{margin-left:-8.544000px;}
._e_c00346{margin-left:-6.912000px;}
._16_c00346{margin-left:-4.800000px;}
._20_c00346{margin-left:-3.552000px;}
._6_c00346{margin-left:-1.728000px;}
._45_c00346{width:1.005000px;}
._2_c00346{width:2.016000px;}
._0_c00346{width:3.168000px;}
._14_c00346{width:4.224000px;}
._1_c00346{width:5.376000px;}
._b_c00346{width:6.432000px;}
._4_c00346{width:7.680000px;}
._9_c00346{width:8.928000px;}
._a_c00346{width:10.464000px;}
._3_c00346{width:11.616000px;}
._21_c00346{width:13.197000px;}
._7_c00346{width:14.304000px;}
._22_c00346{width:15.648000px;}
._18_c00346{width:17.280000px;}
._5_c00346{width:18.912000px;}
._29_c00346{width:21.120000px;}
._13_c00346{width:26.112000px;}
._1a_c00346{width:28.275000px;}
._f_c00346{width:30.144000px;}
._11_c00346{width:32.352000px;}
._8_c00346{width:33.984000px;}
._2e_c00346{width:35.040000px;}
._10_c00346{width:36.384000px;}
._1d_c00346{width:37.728000px;}
._24_c00346{width:38.880000px;}
._17_c00346{width:40.320000px;}
._3f_c00346{width:41.880000px;}
._1c_c00346{width:43.776000px;}
._1f_c00346{width:44.928000px;}
._4b_c00346{width:46.011000px;}
._1e_c00346{width:47.712000px;}
._19_c00346{width:49.320000px;}
._40_c00346{width:50.580000px;}
._3d_c00346{width:52.182000px;}
._30_c00346{width:54.432000px;}
._23_c00346{width:55.872000px;}
._42_c00346{width:58.848000px;}
._47_c00346{width:60.168000px;}
._43_c00346{width:61.176000px;}
._44_c00346{width:62.208000px;}
._12_c00346{width:64.800000px;}
._25_c00346{width:67.008000px;}
._41_c00346{width:70.875000px;}
._46_c00346{width:73.899000px;}
._27_c00346{width:75.021000px;}
._37_c00346{width:76.179000px;}
._4e_c00346{width:77.784000px;}
._4c_c00346{width:88.371000px;}
._2b_c00346{width:96.864000px;}
._4a_c00346{width:100.992000px;}
._3e_c00346{width:108.279000px;}
._3c_c00346{width:127.806000px;}
._4d_c00346{width:137.043000px;}
._39_c00346{width:155.904000px;}
._28_c00346{width:161.664000px;}
._3a_c00346{width:199.872000px;}
._1b_c00346{width:205.152000px;}
._38_c00346{width:212.256000px;}
._48_c00346{width:261.171000px;}
._26_c00346{width:361.770000px;}
._34_c00346{width:749.088000px;}
._36_c00346{width:793.152000px;}
._32_c00346{width:1137.312000px;}
._4f_c00346{width:2018.400000px;}
.fc2_c00346{color:transparent;}
.fc1_c00346{color:rgb(128,128,128);}
.fc0_c00346{color:rgb(0,0,0);}
.fs4_c00346{font-size:48.000000px;}
.fs3_c00346{font-size:84.000000px;}
.fs0_c00346{font-size:96.000000px;}
.fs2_c00346{font-size:102.000000px;}
.fs1_c00346{font-size:105.000000px;}
.y0_c00346{bottom:0.000000px;}
.y26_c00346{bottom:3.105000px;}
.y25_c00346{bottom:7.228369px;}
.y24_c00346{bottom:110.370000px;}
.y23_c00346{bottom:142.770000px;}
.y22_c00346{bottom:176.820000px;}
.y21_c00346{bottom:211.170000px;}
.y20_c00346{bottom:244.920000px;}
.y1f_c00346{bottom:277.470000px;}
.y1e_c00346{bottom:312.570000px;}
.y1d_c00346{bottom:346.620000px;}
.y1c_c00346{bottom:380.670000px;}
.y1b_c00346{bottom:414.420000px;}
.y1a_c00346{bottom:445.770000px;}
.y19_c00346{bottom:482.670000px;}
.y18_c00346{bottom:515.370000px;}
.y17_c00346{bottom:551.070000px;}
.y16_c00346{bottom:583.020000px;}
.y15_c00346{bottom:616.320000px;}
.y14_c00346{bottom:649.620000px;}
.y13_c00346{bottom:683.370000px;}
.y12_c00346{bottom:716.520000px;}
.y11_c00346{bottom:750.570000px;}
.y10_c00346{bottom:783.720000px;}
.yf_c00346{bottom:817.320000px;}
.ye_c00346{bottom:849.720000px;}
.yd_c00346{bottom:883.920000px;}
.yc_c00346{bottom:916.920000px;}
.yb_c00346{bottom:950.070000px;}
.ya_c00346{bottom:983.370000px;}
.y9_c00346{bottom:1016.520000px;}
.y8_c00346{bottom:1050.270000px;}
.y7_c00346{bottom:1084.020000px;}
.y6_c00346{bottom:1117.170000px;}
.y5_c00346{bottom:1150.170000px;}
.y4_c00346{bottom:1183.320000px;}
.y3_c00346{bottom:1216.020000px;}
.y2_c00346{bottom:1250.070000px;}
.y1_c00346{bottom:1283.220000px;}
.h7_c00346{height:13.200073px;}
.h8_c00346{height:43.804688px;}
.h5_c00346{height:102.796875px;}
.h2_c00346{height:121.546875px;}
.h6_c00346{height:129.143555px;}
.h4_c00346{height:132.341895px;}
.h3_c00346{height:132.941895px;}
.h0_c00346{height:1383.450000px;}
.h1_c00346{height:1383.750000px;}
.w2_c00346{width:104.875500px;}
.w0_c00346{width:878.025000px;}
.w1_c00346{width:878.250000px;}
.x0_c00346{left:0.000000px;}
.xa_c00346{left:36.900000px;}
.x9_c00346{left:38.100000px;}
.x8_c00346{left:39.150000px;}
.x7_c00346{left:41.250000px;}
.x6_c00346{left:42.900000px;}
.x4_c00346{left:43.950000px;}
.x5_c00346{left:45.000000px;}
.x3_c00346{left:46.650000px;}
.x2_c00346{left:48.300000px;}
.x1_c00346{left:49.500000px;}
.xf_c00346{left:189.300000px;}
.x10_c00346{left:390.826721px;}
.xe_c00346{left:439.800000px;}
.xb_c00346{left:628.500000px;}
.xc_c00346{left:632.100000px;}
.xd_c00346{left:684.000000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:2.666667pt;}
.ws1_c00346{word-spacing:-45.333333pt;}
.ws0_c00346{word-spacing:-20.565333pt;}
.ws3_c00346{word-spacing:-17.994667pt;}
.ws2_c00346{word-spacing:-1.045333pt;}
.ws4_c00346{word-spacing:0.000000pt;}
._3b_c00346{margin-left:-61.344000pt;}
._49_c00346{margin-left:-38.570667pt;}
._31_c00346{margin-left:-26.794667pt;}
._2f_c00346{margin-left:-23.466667pt;}
._35_c00346{margin-left:-18.261333pt;}
._33_c00346{margin-left:-16.384000pt;}
._2d_c00346{margin-left:-15.189333pt;}
._2a_c00346{margin-left:-14.080000pt;}
._2c_c00346{margin-left:-12.461333pt;}
._15_c00346{margin-left:-10.581333pt;}
._c_c00346{margin-left:-9.301333pt;}
._d_c00346{margin-left:-7.594667pt;}
._e_c00346{margin-left:-6.144000pt;}
._16_c00346{margin-left:-4.266667pt;}
._20_c00346{margin-left:-3.157333pt;}
._6_c00346{margin-left:-1.536000pt;}
._45_c00346{width:0.893333pt;}
._2_c00346{width:1.792000pt;}
._0_c00346{width:2.816000pt;}
._14_c00346{width:3.754667pt;}
._1_c00346{width:4.778667pt;}
._b_c00346{width:5.717333pt;}
._4_c00346{width:6.826667pt;}
._9_c00346{width:7.936000pt;}
._a_c00346{width:9.301333pt;}
._3_c00346{width:10.325333pt;}
._21_c00346{width:11.730667pt;}
._7_c00346{width:12.714667pt;}
._22_c00346{width:13.909333pt;}
._18_c00346{width:15.360000pt;}
._5_c00346{width:16.810667pt;}
._29_c00346{width:18.773333pt;}
._13_c00346{width:23.210667pt;}
._1a_c00346{width:25.133333pt;}
._f_c00346{width:26.794667pt;}
._11_c00346{width:28.757333pt;}
._8_c00346{width:30.208000pt;}
._2e_c00346{width:31.146667pt;}
._10_c00346{width:32.341333pt;}
._1d_c00346{width:33.536000pt;}
._24_c00346{width:34.560000pt;}
._17_c00346{width:35.840000pt;}
._3f_c00346{width:37.226667pt;}
._1c_c00346{width:38.912000pt;}
._1f_c00346{width:39.936000pt;}
._4b_c00346{width:40.898667pt;}
._1e_c00346{width:42.410667pt;}
._19_c00346{width:43.840000pt;}
._40_c00346{width:44.960000pt;}
._3d_c00346{width:46.384000pt;}
._30_c00346{width:48.384000pt;}
._23_c00346{width:49.664000pt;}
._42_c00346{width:52.309333pt;}
._47_c00346{width:53.482667pt;}
._43_c00346{width:54.378667pt;}
._44_c00346{width:55.296000pt;}
._12_c00346{width:57.600000pt;}
._25_c00346{width:59.562667pt;}
._41_c00346{width:63.000000pt;}
._46_c00346{width:65.688000pt;}
._27_c00346{width:66.685333pt;}
._37_c00346{width:67.714667pt;}
._4e_c00346{width:69.141333pt;}
._4c_c00346{width:78.552000pt;}
._2b_c00346{width:86.101333pt;}
._4a_c00346{width:89.770667pt;}
._3e_c00346{width:96.248000pt;}
._3c_c00346{width:113.605333pt;}
._4d_c00346{width:121.816000pt;}
._39_c00346{width:138.581333pt;}
._28_c00346{width:143.701333pt;}
._3a_c00346{width:177.664000pt;}
._1b_c00346{width:182.357333pt;}
._38_c00346{width:188.672000pt;}
._48_c00346{width:232.152000pt;}
._26_c00346{width:321.573333pt;}
._34_c00346{width:665.856000pt;}
._36_c00346{width:705.024000pt;}
._32_c00346{width:1010.944000pt;}
._4f_c00346{width:1794.133333pt;}
.fs4_c00346{font-size:42.666667pt;}
.fs3_c00346{font-size:74.666667pt;}
.fs0_c00346{font-size:85.333333pt;}
.fs2_c00346{font-size:90.666667pt;}
.fs1_c00346{font-size:93.333333pt;}
.y0_c00346{bottom:0.000000pt;}
.y26_c00346{bottom:2.760000pt;}
.y25_c00346{bottom:6.425217pt;}
.y24_c00346{bottom:98.106667pt;}
.y23_c00346{bottom:126.906667pt;}
.y22_c00346{bottom:157.173333pt;}
.y21_c00346{bottom:187.706667pt;}
.y20_c00346{bottom:217.706667pt;}
.y1f_c00346{bottom:246.640000pt;}
.y1e_c00346{bottom:277.840000pt;}
.y1d_c00346{bottom:308.106667pt;}
.y1c_c00346{bottom:338.373333pt;}
.y1b_c00346{bottom:368.373333pt;}
.y1a_c00346{bottom:396.240000pt;}
.y19_c00346{bottom:429.040000pt;}
.y18_c00346{bottom:458.106667pt;}
.y17_c00346{bottom:489.840000pt;}
.y16_c00346{bottom:518.240000pt;}
.y15_c00346{bottom:547.840000pt;}
.y14_c00346{bottom:577.440000pt;}
.y13_c00346{bottom:607.440000pt;}
.y12_c00346{bottom:636.906667pt;}
.y11_c00346{bottom:667.173333pt;}
.y10_c00346{bottom:696.640000pt;}
.yf_c00346{bottom:726.506667pt;}
.ye_c00346{bottom:755.306667pt;}
.yd_c00346{bottom:785.706667pt;}
.yc_c00346{bottom:815.040000pt;}
.yb_c00346{bottom:844.506667pt;}
.ya_c00346{bottom:874.106667pt;}
.y9_c00346{bottom:903.573333pt;}
.y8_c00346{bottom:933.573333pt;}
.y7_c00346{bottom:963.573333pt;}
.y6_c00346{bottom:993.040000pt;}
.y5_c00346{bottom:1022.373333pt;}
.y4_c00346{bottom:1051.840000pt;}
.y3_c00346{bottom:1080.906667pt;}
.y2_c00346{bottom:1111.173333pt;}
.y1_c00346{bottom:1140.640000pt;}
.h7_c00346{height:11.733399pt;}
.h8_c00346{height:38.937500pt;}
.h5_c00346{height:91.375000pt;}
.h2_c00346{height:108.041667pt;}
.h6_c00346{height:114.794271pt;}
.h4_c00346{height:117.637240pt;}
.h3_c00346{height:118.170573pt;}
.h0_c00346{height:1229.733333pt;}
.h1_c00346{height:1230.000000pt;}
.w2_c00346{width:93.222667pt;}
.w0_c00346{width:780.466667pt;}
.w1_c00346{width:780.666667pt;}
.x0_c00346{left:0.000000pt;}
.xa_c00346{left:32.800000pt;}
.x9_c00346{left:33.866667pt;}
.x8_c00346{left:34.800000pt;}
.x7_c00346{left:36.666667pt;}
.x6_c00346{left:38.133333pt;}
.x4_c00346{left:39.066667pt;}
.x5_c00346{left:40.000000pt;}
.x3_c00346{left:41.466667pt;}
.x2_c00346{left:42.933333pt;}
.x1_c00346{left:44.000000pt;}
.xf_c00346{left:168.266667pt;}
.x10_c00346{left:347.401530pt;}
.xe_c00346{left:390.933333pt;}
.xb_c00346{left:558.666667pt;}
.xc_c00346{left:561.866667pt;}
.xd_c00346{left:608.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_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_223bc3b08bb93807b4e00844.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_1412a1b67c59f1589a1efc85.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls3_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:11.418000px;}
.ls0_c00347{letter-spacing:84.618000px;}
.ls2_c00347{letter-spacing:231.018000px;}
.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;}
}
.ws1_c00347{word-spacing:-23.136000px;}
.ws0_c00347{word-spacing:-14.460000px;}
.ws2_c00347{word-spacing:0.000000px;}
._40_c00347{margin-left:-34.752000px;}
._10_c00347{margin-left:-24.960000px;}
._3b_c00347{margin-left:-23.616000px;}
._12_c00347{margin-left:-19.680000px;}
._13_c00347{margin-left:-15.360000px;}
._38_c00347{margin-left:-12.960000px;}
._8_c00347{margin-left:-10.656000px;}
._42_c00347{margin-left:-8.640000px;}
._7_c00347{margin-left:-7.200000px;}
._9_c00347{margin-left:-6.144000px;}
._b_c00347{margin-left:-4.320000px;}
._c_c00347{margin-left:-3.264000px;}
._14_c00347{margin-left:-1.824000px;}
._5_c00347{width:1.728000px;}
._4_c00347{width:2.976000px;}
._1_c00347{width:4.512000px;}
._2_c00347{width:6.240000px;}
._0_c00347{width:8.160000px;}
._e_c00347{width:9.888000px;}
._26_c00347{width:11.244000px;}
._1b_c00347{width:12.576000px;}
._18_c00347{width:14.112000px;}
._6_c00347{width:15.456000px;}
._1a_c00347{width:17.184000px;}
._27_c00347{width:18.924000px;}
._2e_c00347{width:20.352000px;}
._29_c00347{width:21.660000px;}
._28_c00347{width:22.836000px;}
._24_c00347{width:24.576000px;}
._30_c00347{width:26.400000px;}
._2b_c00347{width:28.128000px;}
._17_c00347{width:29.760000px;}
._39_c00347{width:31.092000px;}
._19_c00347{width:32.160000px;}
._2d_c00347{width:33.312000px;}
._1c_c00347{width:34.944000px;}
._2a_c00347{width:36.648000px;}
._2f_c00347{width:38.304000px;}
._22_c00347{width:39.456000px;}
._20_c00347{width:41.280000px;}
._1d_c00347{width:43.392000px;}
._23_c00347{width:44.832000px;}
._1f_c00347{width:47.328000px;}
._35_c00347{width:48.984000px;}
._36_c00347{width:50.496000px;}
._31_c00347{width:52.404000px;}
._1e_c00347{width:53.472000px;}
._3e_c00347{width:54.816000px;}
._25_c00347{width:56.448000px;}
._34_c00347{width:58.272000px;}
._43_c00347{width:60.384000px;}
._3_c00347{width:62.208000px;}
._3d_c00347{width:64.896000px;}
._33_c00347{width:66.192000px;}
._a_c00347{width:70.752000px;}
._37_c00347{width:73.632000px;}
._3a_c00347{width:75.648000px;}
._f_c00347{width:81.792000px;}
._d_c00347{width:85.920000px;}
._3f_c00347{width:92.352000px;}
._3c_c00347{width:96.384000px;}
._16_c00347{width:175.392000px;}
._2c_c00347{width:237.948000px;}
._41_c00347{width:299.712000px;}
._15_c00347{width:303.840000px;}
._21_c00347{width:357.888000px;}
._32_c00347{width:374.112000px;}
._11_c00347{width:1210.176000px;}
.fc2_c00347{color:transparent;}
.fc1_c00347{color:rgb(128,128,128);}
.fc0_c00347{color:rgb(0,0,0);}
.fs3_c00347{font-size:48.000000px;}
.fs1_c00347{font-size:60.000000px;}
.fs0_c00347{font-size:96.000000px;}
.fs2_c00347{font-size:102.000000px;}
.y0_c00347{bottom:0.000000px;}
.y26_c00347{bottom:3.105000px;}
.y25_c00347{bottom:7.228357px;}
.y24_c00347{bottom:92.430000px;}
.y23_c00347{bottom:123.180000px;}
.y22_c00347{bottom:157.680000px;}
.y21_c00347{bottom:192.030000px;}
.y20_c00347{bottom:225.780000px;}
.y1f_c00347{bottom:259.980000px;}
.y1e_c00347{bottom:294.330000px;}
.y1d_c00347{bottom:327.780000px;}
.y1c_c00347{bottom:361.530000px;}
.y1b_c00347{bottom:396.180000px;}
.y1a_c00347{bottom:429.630000px;}
.y19_c00347{bottom:463.680000px;}
.y18_c00347{bottom:497.130000px;}
.y17_c00347{bottom:531.930000px;}
.y16_c00347{bottom:564.330000px;}
.y15_c00347{bottom:598.680000px;}
.y14_c00347{bottom:632.430000px;}
.y13_c00347{bottom:666.630000px;}
.y12_c00347{bottom:699.930000px;}
.y11_c00347{bottom:733.830000px;}
.y10_c00347{bottom:767.130000px;}
.yf_c00347{bottom:800.880000px;}
.ye_c00347{bottom:834.330000px;}
.yd_c00347{bottom:872.430000px;}
.yc_c00347{bottom:901.230000px;}
.yb_c00347{bottom:934.980000px;}
.ya_c00347{bottom:968.580000px;}
.y9_c00347{bottom:1001.130000px;}
.y8_c00347{bottom:1034.730000px;}
.y7_c00347{bottom:1069.830000px;}
.y6_c00347{bottom:1102.980000px;}
.y5_c00347{bottom:1134.780000px;}
.y4_c00347{bottom:1168.380000px;}
.y3_c00347{bottom:1199.130000px;}
.y2_c00347{bottom:1233.630000px;}
.y1_c00347{bottom:1269.030000px;}
.h4_c00347{height:13.200074px;}
.h5_c00347{height:43.804688px;}
.h2_c00347{height:121.546875px;}
.h3_c00347{height:129.143555px;}
.h0_c00347{height:1362.450000px;}
.h1_c00347{height:1362.750000px;}
.w2_c00347{width:104.875500px;}
.w1_c00347{width:849.750000px;}
.w0_c00347{width:849.975000px;}
.x0_c00347{left:0.000000px;}
.xd_c00347{left:24.000000px;}
.x9_c00347{left:41.850000px;}
.x5_c00347{left:44.100000px;}
.xe_c00347{left:81.750000px;}
.x6_c00347{left:88.350000px;}
.x8_c00347{left:103.350000px;}
.x4_c00347{left:109.350000px;}
.xf_c00347{left:130.950000px;}
.x3_c00347{left:145.050000px;}
.xa_c00347{left:150.300000px;}
.xb_c00347{left:175.200000px;}
.xc_c00347{left:243.750000px;}
.x2_c00347{left:247.650000px;}
.x7_c00347{left:249.300000px;}
.x1_c00347{left:250.800000px;}
.x11_c00347{left:376.801758px;}
.x10_c00347{left:765.450000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls3_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:10.149333pt;}
.ls0_c00347{letter-spacing:75.216000pt;}
.ls2_c00347{letter-spacing:205.349333pt;}
.ws1_c00347{word-spacing:-20.565333pt;}
.ws0_c00347{word-spacing:-12.853333pt;}
.ws2_c00347{word-spacing:0.000000pt;}
._40_c00347{margin-left:-30.890667pt;}
._10_c00347{margin-left:-22.186667pt;}
._3b_c00347{margin-left:-20.992000pt;}
._12_c00347{margin-left:-17.493333pt;}
._13_c00347{margin-left:-13.653333pt;}
._38_c00347{margin-left:-11.520000pt;}
._8_c00347{margin-left:-9.472000pt;}
._42_c00347{margin-left:-7.680000pt;}
._7_c00347{margin-left:-6.400000pt;}
._9_c00347{margin-left:-5.461333pt;}
._b_c00347{margin-left:-3.840000pt;}
._c_c00347{margin-left:-2.901333pt;}
._14_c00347{margin-left:-1.621333pt;}
._5_c00347{width:1.536000pt;}
._4_c00347{width:2.645333pt;}
._1_c00347{width:4.010667pt;}
._2_c00347{width:5.546667pt;}
._0_c00347{width:7.253333pt;}
._e_c00347{width:8.789333pt;}
._26_c00347{width:9.994667pt;}
._1b_c00347{width:11.178667pt;}
._18_c00347{width:12.544000pt;}
._6_c00347{width:13.738667pt;}
._1a_c00347{width:15.274667pt;}
._27_c00347{width:16.821333pt;}
._2e_c00347{width:18.090667pt;}
._29_c00347{width:19.253333pt;}
._28_c00347{width:20.298667pt;}
._24_c00347{width:21.845333pt;}
._30_c00347{width:23.466667pt;}
._2b_c00347{width:25.002667pt;}
._17_c00347{width:26.453333pt;}
._39_c00347{width:27.637333pt;}
._19_c00347{width:28.586667pt;}
._2d_c00347{width:29.610667pt;}
._1c_c00347{width:31.061333pt;}
._2a_c00347{width:32.576000pt;}
._2f_c00347{width:34.048000pt;}
._22_c00347{width:35.072000pt;}
._20_c00347{width:36.693333pt;}
._1d_c00347{width:38.570667pt;}
._23_c00347{width:39.850667pt;}
._1f_c00347{width:42.069333pt;}
._35_c00347{width:43.541333pt;}
._36_c00347{width:44.885333pt;}
._31_c00347{width:46.581333pt;}
._1e_c00347{width:47.530667pt;}
._3e_c00347{width:48.725333pt;}
._25_c00347{width:50.176000pt;}
._34_c00347{width:51.797333pt;}
._43_c00347{width:53.674667pt;}
._3_c00347{width:55.296000pt;}
._3d_c00347{width:57.685333pt;}
._33_c00347{width:58.837333pt;}
._a_c00347{width:62.890667pt;}
._37_c00347{width:65.450667pt;}
._3a_c00347{width:67.242667pt;}
._f_c00347{width:72.704000pt;}
._d_c00347{width:76.373333pt;}
._3f_c00347{width:82.090667pt;}
._3c_c00347{width:85.674667pt;}
._16_c00347{width:155.904000pt;}
._2c_c00347{width:211.509333pt;}
._41_c00347{width:266.410667pt;}
._15_c00347{width:270.080000pt;}
._21_c00347{width:318.122667pt;}
._32_c00347{width:332.544000pt;}
._11_c00347{width:1075.712000pt;}
.fs3_c00347{font-size:42.666667pt;}
.fs1_c00347{font-size:53.333333pt;}
.fs0_c00347{font-size:85.333333pt;}
.fs2_c00347{font-size:90.666667pt;}
.y0_c00347{bottom:0.000000pt;}
.y26_c00347{bottom:2.760000pt;}
.y25_c00347{bottom:6.425206pt;}
.y24_c00347{bottom:82.160000pt;}
.y23_c00347{bottom:109.493333pt;}
.y22_c00347{bottom:140.160000pt;}
.y21_c00347{bottom:170.693333pt;}
.y20_c00347{bottom:200.693333pt;}
.y1f_c00347{bottom:231.093333pt;}
.y1e_c00347{bottom:261.626667pt;}
.y1d_c00347{bottom:291.360000pt;}
.y1c_c00347{bottom:321.360000pt;}
.y1b_c00347{bottom:352.160000pt;}
.y1a_c00347{bottom:381.893333pt;}
.y19_c00347{bottom:412.160000pt;}
.y18_c00347{bottom:441.893333pt;}
.y17_c00347{bottom:472.826667pt;}
.y16_c00347{bottom:501.626667pt;}
.y15_c00347{bottom:532.160000pt;}
.y14_c00347{bottom:562.160000pt;}
.y13_c00347{bottom:592.560000pt;}
.y12_c00347{bottom:622.160000pt;}
.y11_c00347{bottom:652.293333pt;}
.y10_c00347{bottom:681.893333pt;}
.yf_c00347{bottom:711.893333pt;}
.ye_c00347{bottom:741.626667pt;}
.yd_c00347{bottom:775.493333pt;}
.yc_c00347{bottom:801.093333pt;}
.yb_c00347{bottom:831.093333pt;}
.ya_c00347{bottom:860.960000pt;}
.y9_c00347{bottom:889.893333pt;}
.y8_c00347{bottom:919.760000pt;}
.y7_c00347{bottom:950.960000pt;}
.y6_c00347{bottom:980.426667pt;}
.y5_c00347{bottom:1008.693333pt;}
.y4_c00347{bottom:1038.560000pt;}
.y3_c00347{bottom:1065.893333pt;}
.y2_c00347{bottom:1096.560000pt;}
.y1_c00347{bottom:1128.026667pt;}
.h4_c00347{height:11.733399pt;}
.h5_c00347{height:38.937500pt;}
.h2_c00347{height:108.041667pt;}
.h3_c00347{height:114.794271pt;}
.h0_c00347{height:1211.066667pt;}
.h1_c00347{height:1211.333333pt;}
.w2_c00347{width:93.222667pt;}
.w1_c00347{width:755.333333pt;}
.w0_c00347{width:755.533333pt;}
.x0_c00347{left:0.000000pt;}
.xd_c00347{left:21.333333pt;}
.x9_c00347{left:37.200000pt;}
.x5_c00347{left:39.200000pt;}
.xe_c00347{left:72.666667pt;}
.x6_c00347{left:78.533333pt;}
.x8_c00347{left:91.866667pt;}
.x4_c00347{left:97.200000pt;}
.xf_c00347{left:116.400000pt;}
.x3_c00347{left:128.933333pt;}
.xa_c00347{left:133.600000pt;}
.xb_c00347{left:155.733333pt;}
.xc_c00347{left:216.666667pt;}
.x2_c00347{left:220.133333pt;}
.x7_c00347{left:221.600000pt;}
.x1_c00347{left:222.933333pt;}
.x11_c00347{left:334.934896pt;}
.x10_c00347{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_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_1e6de145cd2e4873eaf88508.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_83285f800918ffd68cdeca7a.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_6435559a37f39f0175cc1513.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00348;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls4_c00348{letter-spacing:0.000000px;}
.ls3_c00348{letter-spacing:3.000000px;}
.ls6_c00348{letter-spacing:18.000000px;}
.ls1_c00348{letter-spacing:18.018000px;}
.ls5_c00348{letter-spacing:24.000000px;}
.ls0_c00348{letter-spacing:30.600000px;}
.ls2_c00348{letter-spacing:53.664000px;}
.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;}
}
.ws1_c00348{word-spacing:-47.136000px;}
.ws2_c00348{word-spacing:-23.622000px;}
.ws0_c00348{word-spacing:-23.136000px;}
.ws3_c00348{word-spacing:-20.244000px;}
.ws4_c00348{word-spacing:0.000000px;}
._3e_c00348{margin-left:-61.290000px;}
._40_c00348{margin-left:-28.797000px;}
._2f_c00348{margin-left:-19.710000px;}
._30_c00348{margin-left:-17.193000px;}
._28_c00348{margin-left:-14.880000px;}
._31_c00348{margin-left:-13.590000px;}
._21_c00348{margin-left:-10.368000px;}
._2a_c00348{margin-left:-8.352000px;}
._1c_c00348{margin-left:-7.200000px;}
._1d_c00348{margin-left:-6.144000px;}
._1e_c00348{margin-left:-4.800000px;}
._1b_c00348{margin-left:-3.552000px;}
._f_c00348{margin-left:-2.496000px;}
._11_c00348{margin-left:-1.152000px;}
._1_c00348{width:1.824000px;}
._2_c00348{width:3.744000px;}
._8_c00348{width:5.088000px;}
._0_c00348{width:6.336000px;}
._3_c00348{width:8.256000px;}
._4_c00348{width:9.696000px;}
._9_c00348{width:11.136000px;}
._a_c00348{width:12.960000px;}
._5_c00348{width:14.400000px;}
._10_c00348{width:15.936000px;}
._23_c00348{width:17.472000px;}
._e_c00348{width:18.624000px;}
._1a_c00348{width:20.448000px;}
._32_c00348{width:21.888000px;}
._26_c00348{width:24.384000px;}
._19_c00348{width:25.440000px;}
._12_c00348{width:27.840000px;}
._b_c00348{width:29.760000px;}
._38_c00348{width:30.816000px;}
._24_c00348{width:32.064000px;}
._20_c00348{width:33.312000px;}
._c_c00348{width:35.136000px;}
._6_c00348{width:37.152000px;}
._27_c00348{width:38.208000px;}
._7_c00348{width:39.456000px;}
._13_c00348{width:40.512000px;}
._29_c00348{width:42.144000px;}
._d_c00348{width:43.776000px;}
._22_c00348{width:45.312000px;}
._1f_c00348{width:47.808000px;}
._16_c00348{width:49.632000px;}
._15_c00348{width:51.360000px;}
._18_c00348{width:53.376000px;}
._39_c00348{width:54.528000px;}
._17_c00348{width:56.448000px;}
._3c_c00348{width:57.696000px;}
._14_c00348{width:59.808000px;}
._36_c00348{width:63.936000px;}
._34_c00348{width:67.740000px;}
._25_c00348{width:69.504000px;}
._35_c00348{width:75.360000px;}
._3b_c00348{width:77.664000px;}
._3a_c00348{width:81.984000px;}
._37_c00348{width:96.816000px;}
._2e_c00348{width:102.771000px;}
._33_c00348{width:109.416000px;}
._2c_c00348{width:112.512000px;}
._2b_c00348{width:364.800000px;}
._3d_c00348{width:384.768000px;}
._2d_c00348{width:752.352000px;}
._3f_c00348{width:806.880000px;}
.fc2_c00348{color:transparent;}
.fc1_c00348{color:rgb(128,128,128);}
.fc0_c00348{color:rgb(0,0,0);}
.fs5_c00348{font-size:48.000000px;}
.fs3_c00348{font-size:84.000000px;}
.fs4_c00348{font-size:87.000000px;}
.fs2_c00348{font-size:93.000000px;}
.fs0_c00348{font-size:96.000000px;}
.fs1_c00348{font-size:102.000000px;}
.y0_c00348{bottom:0.000000px;}
.y27_c00348{bottom:3.105000px;}
.y26_c00348{bottom:7.228357px;}
.y24_c00348{bottom:96.630000px;}
.y23_c00348{bottom:131.580000px;}
.y22_c00348{bottom:165.030000px;}
.y21_c00348{bottom:196.830000px;}
.y20_c00348{bottom:232.830000px;}
.y1f_c00348{bottom:266.280000px;}
.y1e_c00348{bottom:300.030000px;}
.y1d_c00348{bottom:333.780000px;}
.y1c_c00348{bottom:367.230000px;}
.y25_c00348{bottom:380.130000px;}
.y1b_c00348{bottom:401.280000px;}
.y1a_c00348{bottom:434.430000px;}
.y19_c00348{bottom:468.180000px;}
.y18_c00348{bottom:501.630000px;}
.y17_c00348{bottom:535.380000px;}
.y16_c00348{bottom:569.430000px;}
.y15_c00348{bottom:602.880000px;}
.y14_c00348{bottom:635.880000px;}
.y13_c00348{bottom:670.230000px;}
.y12_c00348{bottom:702.330000px;}
.y11_c00348{bottom:734.130000px;}
.y10_c00348{bottom:768.780000px;}
.yf_c00348{bottom:801.330000px;}
.ye_c00348{bottom:835.680000px;}
.yd_c00348{bottom:868.080000px;}
.yc_c00348{bottom:902.130000px;}
.yb_c00348{bottom:935.880000px;}
.ya_c00348{bottom:969.030000px;}
.y9_c00348{bottom:1002.030000px;}
.y8_c00348{bottom:1035.780000px;}
.y7_c00348{bottom:1069.230000px;}
.y6_c00348{bottom:1102.680000px;}
.y5_c00348{bottom:1135.680000px;}
.y4_c00348{bottom:1169.130000px;}
.y3_c00348{bottom:1201.830000px;}
.y2_c00348{bottom:1234.980000px;}
.y1_c00348{bottom:1268.430000px;}
.h5_c00348{height:13.200074px;}
.h6_c00348{height:43.804688px;}
.h4_c00348{height:110.151855px;}
.h2_c00348{height:121.546875px;}
.h3_c00348{height:129.143555px;}
.h0_c00348{height:1367.850000px;}
.h1_c00348{height:1368.000000px;}
.w1_c00348{width:104.875500px;}
.w0_c00348{width:867.750000px;}
.x0_c00348{left:0.000000px;}
.xa_c00348{left:34.800000px;}
.xd_c00348{left:39.150000px;}
.xc_c00348{left:40.200000px;}
.x1_c00348{left:41.850000px;}
.x9_c00348{left:42.900000px;}
.x7_c00348{left:44.550000px;}
.x8_c00348{left:46.200000px;}
.x5_c00348{left:47.250000px;}
.x6_c00348{left:49.500000px;}
.x4_c00348{left:51.000000px;}
.x3_c00348{left:53.700000px;}
.x2_c00348{left:54.750000px;}
.xb_c00348{left:89.100000px;}
.xe_c00348{left:340.500000px;}
.x10_c00348{left:385.689240px;}
.xf_c00348{left:662.850000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls4_c00348{letter-spacing:0.000000pt;}
.ls3_c00348{letter-spacing:2.666667pt;}
.ls6_c00348{letter-spacing:16.000000pt;}
.ls1_c00348{letter-spacing:16.016000pt;}
.ls5_c00348{letter-spacing:21.333333pt;}
.ls0_c00348{letter-spacing:27.200000pt;}
.ls2_c00348{letter-spacing:47.701333pt;}
.ws1_c00348{word-spacing:-41.898667pt;}
.ws2_c00348{word-spacing:-20.997333pt;}
.ws0_c00348{word-spacing:-20.565333pt;}
.ws3_c00348{word-spacing:-17.994667pt;}
.ws4_c00348{word-spacing:0.000000pt;}
._3e_c00348{margin-left:-54.480000pt;}
._40_c00348{margin-left:-25.597333pt;}
._2f_c00348{margin-left:-17.520000pt;}
._30_c00348{margin-left:-15.282667pt;}
._28_c00348{margin-left:-13.226667pt;}
._31_c00348{margin-left:-12.080000pt;}
._21_c00348{margin-left:-9.216000pt;}
._2a_c00348{margin-left:-7.424000pt;}
._1c_c00348{margin-left:-6.400000pt;}
._1d_c00348{margin-left:-5.461333pt;}
._1e_c00348{margin-left:-4.266667pt;}
._1b_c00348{margin-left:-3.157333pt;}
._f_c00348{margin-left:-2.218667pt;}
._11_c00348{margin-left:-1.024000pt;}
._1_c00348{width:1.621333pt;}
._2_c00348{width:3.328000pt;}
._8_c00348{width:4.522667pt;}
._0_c00348{width:5.632000pt;}
._3_c00348{width:7.338667pt;}
._4_c00348{width:8.618667pt;}
._9_c00348{width:9.898667pt;}
._a_c00348{width:11.520000pt;}
._5_c00348{width:12.800000pt;}
._10_c00348{width:14.165333pt;}
._23_c00348{width:15.530667pt;}
._e_c00348{width:16.554667pt;}
._1a_c00348{width:18.176000pt;}
._32_c00348{width:19.456000pt;}
._26_c00348{width:21.674667pt;}
._19_c00348{width:22.613333pt;}
._12_c00348{width:24.746667pt;}
._b_c00348{width:26.453333pt;}
._38_c00348{width:27.392000pt;}
._24_c00348{width:28.501333pt;}
._20_c00348{width:29.610667pt;}
._c_c00348{width:31.232000pt;}
._6_c00348{width:33.024000pt;}
._27_c00348{width:33.962667pt;}
._7_c00348{width:35.072000pt;}
._13_c00348{width:36.010667pt;}
._29_c00348{width:37.461333pt;}
._d_c00348{width:38.912000pt;}
._22_c00348{width:40.277333pt;}
._1f_c00348{width:42.496000pt;}
._16_c00348{width:44.117333pt;}
._15_c00348{width:45.653333pt;}
._18_c00348{width:47.445333pt;}
._39_c00348{width:48.469333pt;}
._17_c00348{width:50.176000pt;}
._3c_c00348{width:51.285333pt;}
._14_c00348{width:53.162667pt;}
._36_c00348{width:56.832000pt;}
._34_c00348{width:60.213333pt;}
._25_c00348{width:61.781333pt;}
._35_c00348{width:66.986667pt;}
._3b_c00348{width:69.034667pt;}
._3a_c00348{width:72.874667pt;}
._37_c00348{width:86.058667pt;}
._2e_c00348{width:91.352000pt;}
._33_c00348{width:97.258667pt;}
._2c_c00348{width:100.010667pt;}
._2b_c00348{width:324.266667pt;}
._3d_c00348{width:342.016000pt;}
._2d_c00348{width:668.757333pt;}
._3f_c00348{width:717.226667pt;}
.fs5_c00348{font-size:42.666667pt;}
.fs3_c00348{font-size:74.666667pt;}
.fs4_c00348{font-size:77.333333pt;}
.fs2_c00348{font-size:82.666667pt;}
.fs0_c00348{font-size:85.333333pt;}
.fs1_c00348{font-size:90.666667pt;}
.y0_c00348{bottom:0.000000pt;}
.y27_c00348{bottom:2.760000pt;}
.y26_c00348{bottom:6.425206pt;}
.y24_c00348{bottom:85.893333pt;}
.y23_c00348{bottom:116.960000pt;}
.y22_c00348{bottom:146.693333pt;}
.y21_c00348{bottom:174.960000pt;}
.y20_c00348{bottom:206.960000pt;}
.y1f_c00348{bottom:236.693333pt;}
.y1e_c00348{bottom:266.693333pt;}
.y1d_c00348{bottom:296.693333pt;}
.y1c_c00348{bottom:326.426667pt;}
.y25_c00348{bottom:337.893333pt;}
.y1b_c00348{bottom:356.693333pt;}
.y1a_c00348{bottom:386.160000pt;}
.y19_c00348{bottom:416.160000pt;}
.y18_c00348{bottom:445.893333pt;}
.y17_c00348{bottom:475.893333pt;}
.y16_c00348{bottom:506.160000pt;}
.y15_c00348{bottom:535.893333pt;}
.y14_c00348{bottom:565.226667pt;}
.y13_c00348{bottom:595.760000pt;}
.y12_c00348{bottom:624.293333pt;}
.y11_c00348{bottom:652.560000pt;}
.y10_c00348{bottom:683.360000pt;}
.yf_c00348{bottom:712.293333pt;}
.ye_c00348{bottom:742.826667pt;}
.yd_c00348{bottom:771.626667pt;}
.yc_c00348{bottom:801.893333pt;}
.yb_c00348{bottom:831.893333pt;}
.ya_c00348{bottom:861.360000pt;}
.y9_c00348{bottom:890.693333pt;}
.y8_c00348{bottom:920.693333pt;}
.y7_c00348{bottom:950.426667pt;}
.y6_c00348{bottom:980.160000pt;}
.y5_c00348{bottom:1009.493333pt;}
.y4_c00348{bottom:1039.226667pt;}
.y3_c00348{bottom:1068.293333pt;}
.y2_c00348{bottom:1097.760000pt;}
.y1_c00348{bottom:1127.493333pt;}
.h5_c00348{height:11.733399pt;}
.h6_c00348{height:38.937500pt;}
.h4_c00348{height:97.912760pt;}
.h2_c00348{height:108.041667pt;}
.h3_c00348{height:114.794271pt;}
.h0_c00348{height:1215.866667pt;}
.h1_c00348{height:1216.000000pt;}
.w1_c00348{width:93.222667pt;}
.w0_c00348{width:771.333333pt;}
.x0_c00348{left:0.000000pt;}
.xa_c00348{left:30.933333pt;}
.xd_c00348{left:34.800000pt;}
.xc_c00348{left:35.733333pt;}
.x1_c00348{left:37.200000pt;}
.x9_c00348{left:38.133333pt;}
.x7_c00348{left:39.600000pt;}
.x8_c00348{left:41.066667pt;}
.x5_c00348{left:42.000000pt;}
.x6_c00348{left:44.000000pt;}
.x4_c00348{left:45.333333pt;}
.x3_c00348{left:47.733333pt;}
.x2_c00348{left:48.666667pt;}
.xb_c00348{left:79.200000pt;}
.xe_c00348{left:302.666667pt;}
.x10_c00348{left:342.834880pt;}
.xf_c00348{left:589.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_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_9c826a48ba102531433f1635.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_f4e4b99c429145a79f337afe.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_e6315c96f492b43f6480165a.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_4665ee66511861c1d2a4642e.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;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_c00349;src:url('chunks/assets/font_b15fd2cb6dc32f9a832b48c7.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00349;src:url('chunks/assets/font_c75cae9fbd2818b8852fac20.woff2')format("woff");}.ff6_c00349{font-family:ff6_c00349;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00349;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00349{font-family:ff7_c00349;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.v1_c00349{vertical-align:113.400000px;}
.ls7_c00349{letter-spacing:0.000000px;}
.ls1_c00349{letter-spacing:0.468000px;}
.ls8_c00349{letter-spacing:9.000000px;}
.ls5_c00349{letter-spacing:9.870000px;}
.ls3_c00349{letter-spacing:12.000000px;}
.ls0_c00349{letter-spacing:14.076000px;}
.ls2_c00349{letter-spacing:15.756000px;}
.ls4_c00349{letter-spacing:16.200000px;}
.ls9_c00349{letter-spacing:21.000000px;}
.ls6_c00349{letter-spacing:54.018000px;}
.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;}
}
.ws5_c00349{word-spacing:-36.840000px;}
.ws1_c00349{word-spacing:-32.244000px;}
.ws2_c00349{word-spacing:-25.500000px;}
.ws3_c00349{word-spacing:-23.136000px;}
.ws6_c00349{word-spacing:-20.244000px;}
.ws0_c00349{word-spacing:-14.460000px;}
.ws7_c00349{word-spacing:0.000000px;}
.ws4_c00349{word-spacing:38.520000px;}
._4e_c00349{margin-left:-55.800000px;}
._4d_c00349{margin-left:-48.510000px;}
._59_c00349{margin-left:-44.736000px;}
._2e_c00349{margin-left:-41.673000px;}
._3f_c00349{margin-left:-36.864000px;}
._47_c00349{margin-left:-33.900000px;}
._49_c00349{margin-left:-30.600000px;}
._28_c00349{margin-left:-26.112000px;}
._58_c00349{margin-left:-24.192000px;}
._40_c00349{margin-left:-20.808000px;}
._1_c00349{margin-left:-19.776000px;}
._2a_c00349{margin-left:-18.048000px;}
._32_c00349{margin-left:-15.822000px;}
._3c_c00349{margin-left:-14.112000px;}
._2f_c00349{margin-left:-12.267000px;}
._30_c00349{margin-left:-10.752000px;}
._5e_c00349{margin-left:-9.504000px;}
._1c_c00349{margin-left:-8.352000px;}
._4f_c00349{margin-left:-6.816000px;}
._16_c00349{margin-left:-5.184000px;}
._11_c00349{margin-left:-3.456000px;}
._10_c00349{margin-left:-2.208000px;}
._9_c00349{width:1.536000px;}
._15_c00349{width:2.592000px;}
._2_c00349{width:3.648000px;}
._5_c00349{width:5.184000px;}
._6_c00349{width:6.624000px;}
._24_c00349{width:7.776000px;}
._d_c00349{width:9.024000px;}
._8_c00349{width:10.848000px;}
._39_c00349{width:12.192000px;}
._17_c00349{width:13.200000px;}
._4_c00349{width:14.688000px;}
._5a_c00349{width:15.696000px;}
._25_c00349{width:16.800000px;}
._26_c00349{width:17.856000px;}
._0_c00349{width:19.008000px;}
._c_c00349{width:21.408000px;}
._3e_c00349{width:22.452000px;}
._31_c00349{width:23.472000px;}
._18_c00349{width:25.152000px;}
._a_c00349{width:26.976000px;}
._22_c00349{width:28.512000px;}
._7_c00349{width:29.664000px;}
._21_c00349{width:31.632000px;}
._b_c00349{width:32.832000px;}
._13_c00349{width:34.176000px;}
._14_c00349{width:36.000000px;}
._33_c00349{width:37.095000px;}
._1a_c00349{width:38.976000px;}
._12_c00349{width:40.464000px;}
._1b_c00349{width:42.528000px;}
._e_c00349{width:43.680000px;}
._f_c00349{width:45.600000px;}
._1f_c00349{width:46.944000px;}
._29_c00349{width:49.248000px;}
._19_c00349{width:50.304000px;}
._3b_c00349{width:51.744000px;}
._37_c00349{width:53.112000px;}
._1d_c00349{width:56.544000px;}
._1e_c00349{width:57.984000px;}
._23_c00349{width:59.712000px;}
._55_c00349{width:60.828000px;}
._20_c00349{width:62.976000px;}
._44_c00349{width:64.836000px;}
._52_c00349{width:69.432000px;}
._53_c00349{width:76.176000px;}
._45_c00349{width:88.416000px;}
._35_c00349{width:91.578000px;}
._3a_c00349{width:95.904000px;}
._5b_c00349{width:103.296000px;}
._3d_c00349{width:124.299000px;}
._38_c00349{width:125.436000px;}
._2c_c00349{width:127.008000px;}
._48_c00349{width:130.080000px;}
._46_c00349{width:146.616000px;}
._3_c00349{width:179.064000px;}
._56_c00349{width:189.756000px;}
._4a_c00349{width:193.380000px;}
._43_c00349{width:197.520000px;}
._34_c00349{width:210.330000px;}
._2b_c00349{width:219.840000px;}
._41_c00349{width:283.842000px;}
._36_c00349{width:302.208000px;}
._42_c00349{width:324.648000px;}
._54_c00349{width:333.024000px;}
._4b_c00349{width:360.432000px;}
._5d_c00349{width:444.576000px;}
._57_c00349{width:467.979000px;}
._2d_c00349{width:555.984000px;}
._4c_c00349{width:573.267000px;}
._5c_c00349{width:590.976000px;}
._50_c00349{width:692.427000px;}
._27_c00349{width:746.592000px;}
._51_c00349{width:1020.456000px;}
._5f_c00349{width:1113.600000px;}
.fc2_c00349{color:transparent;}
.fc1_c00349{color:rgb(128,128,128);}
.fc0_c00349{color:rgb(0,0,0);}
.fs2_c00349{font-size:36.000000px;}
.fs6_c00349{font-size:45.000000px;}
.fs8_c00349{font-size:48.000000px;}
.fs4_c00349{font-size:60.000000px;}
.fs1_c00349{font-size:84.000000px;}
.fs3_c00349{font-size:87.000000px;}
.fs0_c00349{font-size:96.000000px;}
.fs5_c00349{font-size:102.000000px;}
.fs7_c00349{font-size:114.000000px;}
.y0_c00349{bottom:0.000000px;}
.y29_c00349{bottom:3.105000px;}
.y28_c00349{bottom:7.228357px;}
.y27_c00349{bottom:97.980000px;}
.y26_c00349{bottom:127.530000px;}
.y25_c00349{bottom:161.430000px;}
.y24_c00349{bottom:194.430000px;}
.y23_c00349{bottom:229.530000px;}
.y22_c00349{bottom:261.930000px;}
.y21_c00349{bottom:297.630000px;}
.y20_c00349{bottom:328.680000px;}
.y1f_c00349{bottom:360.780000px;}
.y1e_c00349{bottom:385.080000px;}
.y1d_c00349{bottom:431.730000px;}
.y1c_c00349{bottom:464.430000px;}
.y1b_c00349{bottom:498.180000px;}
.y1a_c00349{bottom:534.330000px;}
.y19_c00349{bottom:569.730000px;}
.y18_c00349{bottom:604.080000px;}
.y17_c00349{bottom:637.830000px;}
.y16_c00349{bottom:670.380000px;}
.y15_c00349{bottom:704.430000px;}
.y11_c00349{bottom:726.030000px;}
.y14_c00349{bottom:738.480000px;}
.y10_c00349{bottom:754.080000px;}
.y13_c00349{bottom:771.480000px;}
.yf_c00349{bottom:784.680000px;}
.y12_c00349{bottom:805.230000px;}
.ye_c00349{bottom:813.480000px;}
.yd_c00349{bottom:844.080000px;}
.yc_c00349{bottom:872.880000px;}
.yb_c00349{bottom:939.930000px;}
.ya_c00349{bottom:973.380000px;}
.y9_c00349{bottom:1006.080000px;}
.y8_c00349{bottom:1040.130000px;}
.y7_c00349{bottom:1073.580000px;}
.y6_c00349{bottom:1107.030000px;}
.y5_c00349{bottom:1140.480000px;}
.y4_c00349{bottom:1174.230000px;}
.y3_c00349{bottom:1207.530000px;}
.y2_c00349{bottom:1240.680000px;}
.y1_c00349{bottom:1272.480000px;}
.h8_c00349{height:13.200074px;}
.h9_c00349{height:43.804688px;}
.h6_c00349{height:64.020000px;}
.h4_c00349{height:110.151855px;}
.h2_c00349{height:121.546875px;}
.h5_c00349{height:129.143555px;}
.h7_c00349{height:144.336914px;}
.h3_c00349{height:144.411328px;}
.h0_c00349{height:1382.700000px;}
.h1_c00349{height:1383.000000px;}
.w2_c00349{width:104.875500px;}
.w0_c00349{width:863.175000px;}
.w1_c00349{width:863.250000px;}
.x0_c00349{left:0.000000px;}
.x12_c00349{left:31.500000px;}
.x9_c00349{left:34.200000px;}
.xa_c00349{left:36.900000px;}
.x11_c00349{left:45.600000px;}
.x8_c00349{left:65.100000px;}
.x1_c00349{left:135.300000px;}
.x7_c00349{left:154.200000px;}
.x10_c00349{left:155.400000px;}
.xc_c00349{left:221.100000px;}
.x13_c00349{left:252.450000px;}
.x14_c00349{left:254.100000px;}
.xb_c00349{left:257.850000px;}
.x4_c00349{left:261.000000px;}
.x3_c00349{left:262.200000px;}
.x2_c00349{left:263.250000px;}
.xf_c00349{left:265.650000px;}
.xe_c00349{left:277.050000px;}
.x6_c00349{left:376.050000px;}
.x16_c00349{left:383.401749px;}
.x5_c00349{left:456.000000px;}
.xd_c00349{left:466.050000px;}
.x15_c00349{left:474.600000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.v1_c00349{vertical-align:100.800000pt;}
.ls7_c00349{letter-spacing:0.000000pt;}
.ls1_c00349{letter-spacing:0.416000pt;}
.ls8_c00349{letter-spacing:8.000000pt;}
.ls5_c00349{letter-spacing:8.773333pt;}
.ls3_c00349{letter-spacing:10.666667pt;}
.ls0_c00349{letter-spacing:12.512000pt;}
.ls2_c00349{letter-spacing:14.005333pt;}
.ls4_c00349{letter-spacing:14.400000pt;}
.ls9_c00349{letter-spacing:18.666667pt;}
.ls6_c00349{letter-spacing:48.016000pt;}
.ws5_c00349{word-spacing:-32.746667pt;}
.ws1_c00349{word-spacing:-28.661333pt;}
.ws2_c00349{word-spacing:-22.666667pt;}
.ws3_c00349{word-spacing:-20.565333pt;}
.ws6_c00349{word-spacing:-17.994667pt;}
.ws0_c00349{word-spacing:-12.853333pt;}
.ws7_c00349{word-spacing:0.000000pt;}
.ws4_c00349{word-spacing:34.240000pt;}
._4e_c00349{margin-left:-49.600000pt;}
._4d_c00349{margin-left:-43.120000pt;}
._59_c00349{margin-left:-39.765333pt;}
._2e_c00349{margin-left:-37.042667pt;}
._3f_c00349{margin-left:-32.768000pt;}
._47_c00349{margin-left:-30.133333pt;}
._49_c00349{margin-left:-27.200000pt;}
._28_c00349{margin-left:-23.210667pt;}
._58_c00349{margin-left:-21.504000pt;}
._40_c00349{margin-left:-18.496000pt;}
._1_c00349{margin-left:-17.578667pt;}
._2a_c00349{margin-left:-16.042667pt;}
._32_c00349{margin-left:-14.064000pt;}
._3c_c00349{margin-left:-12.544000pt;}
._2f_c00349{margin-left:-10.904000pt;}
._30_c00349{margin-left:-9.557333pt;}
._5e_c00349{margin-left:-8.448000pt;}
._1c_c00349{margin-left:-7.424000pt;}
._4f_c00349{margin-left:-6.058667pt;}
._16_c00349{margin-left:-4.608000pt;}
._11_c00349{margin-left:-3.072000pt;}
._10_c00349{margin-left:-1.962667pt;}
._9_c00349{width:1.365333pt;}
._15_c00349{width:2.304000pt;}
._2_c00349{width:3.242667pt;}
._5_c00349{width:4.608000pt;}
._6_c00349{width:5.888000pt;}
._24_c00349{width:6.912000pt;}
._d_c00349{width:8.021333pt;}
._8_c00349{width:9.642667pt;}
._39_c00349{width:10.837333pt;}
._17_c00349{width:11.733333pt;}
._4_c00349{width:13.056000pt;}
._5a_c00349{width:13.952000pt;}
._25_c00349{width:14.933333pt;}
._26_c00349{width:15.872000pt;}
._0_c00349{width:16.896000pt;}
._c_c00349{width:19.029333pt;}
._3e_c00349{width:19.957333pt;}
._31_c00349{width:20.864000pt;}
._18_c00349{width:22.357333pt;}
._a_c00349{width:23.978667pt;}
._22_c00349{width:25.344000pt;}
._7_c00349{width:26.368000pt;}
._21_c00349{width:28.117333pt;}
._b_c00349{width:29.184000pt;}
._13_c00349{width:30.378667pt;}
._14_c00349{width:32.000000pt;}
._33_c00349{width:32.973333pt;}
._1a_c00349{width:34.645333pt;}
._12_c00349{width:35.968000pt;}
._1b_c00349{width:37.802667pt;}
._e_c00349{width:38.826667pt;}
._f_c00349{width:40.533333pt;}
._1f_c00349{width:41.728000pt;}
._29_c00349{width:43.776000pt;}
._19_c00349{width:44.714667pt;}
._3b_c00349{width:45.994667pt;}
._37_c00349{width:47.210667pt;}
._1d_c00349{width:50.261333pt;}
._1e_c00349{width:51.541333pt;}
._23_c00349{width:53.077333pt;}
._55_c00349{width:54.069333pt;}
._20_c00349{width:55.978667pt;}
._44_c00349{width:57.632000pt;}
._52_c00349{width:61.717333pt;}
._53_c00349{width:67.712000pt;}
._45_c00349{width:78.592000pt;}
._35_c00349{width:81.402667pt;}
._3a_c00349{width:85.248000pt;}
._5b_c00349{width:91.818667pt;}
._3d_c00349{width:110.488000pt;}
._38_c00349{width:111.498667pt;}
._2c_c00349{width:112.896000pt;}
._48_c00349{width:115.626667pt;}
._46_c00349{width:130.325333pt;}
._3_c00349{width:159.168000pt;}
._56_c00349{width:168.672000pt;}
._4a_c00349{width:171.893333pt;}
._43_c00349{width:175.573333pt;}
._34_c00349{width:186.960000pt;}
._2b_c00349{width:195.413333pt;}
._41_c00349{width:252.304000pt;}
._36_c00349{width:268.629333pt;}
._42_c00349{width:288.576000pt;}
._54_c00349{width:296.021333pt;}
._4b_c00349{width:320.384000pt;}
._5d_c00349{width:395.178667pt;}
._57_c00349{width:415.981333pt;}
._2d_c00349{width:494.208000pt;}
._4c_c00349{width:509.570667pt;}
._5c_c00349{width:525.312000pt;}
._50_c00349{width:615.490667pt;}
._27_c00349{width:663.637333pt;}
._51_c00349{width:907.072000pt;}
._5f_c00349{width:989.866667pt;}
.fs2_c00349{font-size:32.000000pt;}
.fs6_c00349{font-size:40.000000pt;}
.fs8_c00349{font-size:42.666667pt;}
.fs4_c00349{font-size:53.333333pt;}
.fs1_c00349{font-size:74.666667pt;}
.fs3_c00349{font-size:77.333333pt;}
.fs0_c00349{font-size:85.333333pt;}
.fs5_c00349{font-size:90.666667pt;}
.fs7_c00349{font-size:101.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y29_c00349{bottom:2.760000pt;}
.y28_c00349{bottom:6.425206pt;}
.y27_c00349{bottom:87.093333pt;}
.y26_c00349{bottom:113.360000pt;}
.y25_c00349{bottom:143.493333pt;}
.y24_c00349{bottom:172.826667pt;}
.y23_c00349{bottom:204.026667pt;}
.y22_c00349{bottom:232.826667pt;}
.y21_c00349{bottom:264.560000pt;}
.y20_c00349{bottom:292.160000pt;}
.y1f_c00349{bottom:320.693333pt;}
.y1e_c00349{bottom:342.293333pt;}
.y1d_c00349{bottom:383.760000pt;}
.y1c_c00349{bottom:412.826667pt;}
.y1b_c00349{bottom:442.826667pt;}
.y1a_c00349{bottom:474.960000pt;}
.y19_c00349{bottom:506.426667pt;}
.y18_c00349{bottom:536.960000pt;}
.y17_c00349{bottom:566.960000pt;}
.y16_c00349{bottom:595.893333pt;}
.y15_c00349{bottom:626.160000pt;}
.y11_c00349{bottom:645.360000pt;}
.y14_c00349{bottom:656.426667pt;}
.y10_c00349{bottom:670.293333pt;}
.y13_c00349{bottom:685.760000pt;}
.yf_c00349{bottom:697.493333pt;}
.y12_c00349{bottom:715.760000pt;}
.ye_c00349{bottom:723.093333pt;}
.yd_c00349{bottom:750.293333pt;}
.yc_c00349{bottom:775.893333pt;}
.yb_c00349{bottom:835.493333pt;}
.ya_c00349{bottom:865.226667pt;}
.y9_c00349{bottom:894.293333pt;}
.y8_c00349{bottom:924.560000pt;}
.y7_c00349{bottom:954.293333pt;}
.y6_c00349{bottom:984.026667pt;}
.y5_c00349{bottom:1013.760000pt;}
.y4_c00349{bottom:1043.760000pt;}
.y3_c00349{bottom:1073.360000pt;}
.y2_c00349{bottom:1102.826667pt;}
.y1_c00349{bottom:1131.093333pt;}
.h8_c00349{height:11.733399pt;}
.h9_c00349{height:38.937500pt;}
.h6_c00349{height:56.906667pt;}
.h4_c00349{height:97.912760pt;}
.h2_c00349{height:108.041667pt;}
.h5_c00349{height:114.794271pt;}
.h7_c00349{height:128.299479pt;}
.h3_c00349{height:128.365625pt;}
.h0_c00349{height:1229.066667pt;}
.h1_c00349{height:1229.333333pt;}
.w2_c00349{width:93.222667pt;}
.w0_c00349{width:767.266667pt;}
.w1_c00349{width:767.333333pt;}
.x0_c00349{left:0.000000pt;}
.x12_c00349{left:28.000000pt;}
.x9_c00349{left:30.400000pt;}
.xa_c00349{left:32.800000pt;}
.x11_c00349{left:40.533333pt;}
.x8_c00349{left:57.866667pt;}
.x1_c00349{left:120.266667pt;}
.x7_c00349{left:137.066667pt;}
.x10_c00349{left:138.133333pt;}
.xc_c00349{left:196.533333pt;}
.x13_c00349{left:224.400000pt;}
.x14_c00349{left:225.866667pt;}
.xb_c00349{left:229.200000pt;}
.x4_c00349{left:232.000000pt;}
.x3_c00349{left:233.066667pt;}
.x2_c00349{left:234.000000pt;}
.xf_c00349{left:236.133333pt;}
.xe_c00349{left:246.266667pt;}
.x6_c00349{left:334.266667pt;}
.x16_c00349{left:340.801554pt;}
.x5_c00349{left:405.333333pt;}
.xd_c00349{left:414.266667pt;}
.x15_c00349{left:421.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a88cdd38b4cabf22b1b4cd7e.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_b812be1464dfb2ba678a9d64.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_19d31e978d7c89e2708d9534.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_8967a324699bf7a09f83aeed.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_763976930d1abbe8e164fe58.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00350;src:url('chunks/assets/font_76192c8bff43955a5e861ca4.woff2')format("woff");}.ff6_c00350{font-family:ff6_c00350;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00350;src:url('chunks/assets/font_3f2dd21948bc58dce27ab8e0.woff2')format("woff");}.ff7_c00350{font-family:ff7_c00350;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00350;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00350{font-family:ff8_c00350;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:119.400000px;}
.ls3_c00350{letter-spacing:-3.000000px;}
.ls2_c00350{letter-spacing:0.000000px;}
.ls1_c00350{letter-spacing:1.320000px;}
.ls4_c00350{letter-spacing:9.000000px;}
.ls5_c00350{letter-spacing:12.000000px;}
.ls0_c00350{letter-spacing:16.008000px;}
.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;}
}
.ws2_c00350{word-spacing:-44.424000px;}
.ws3_c00350{word-spacing:-37.939200px;}
.ws0_c00350{word-spacing:-29.682000px;}
.ws5_c00350{word-spacing:-23.136000px;}
.ws4_c00350{word-spacing:-20.244000px;}
.ws6_c00350{word-spacing:0.000000px;}
.ws1_c00350{word-spacing:4.992000px;}
._3e_c00350{margin-left:-110.736000px;}
._47_c00350{margin-left:-41.499000px;}
._41_c00350{margin-left:-37.692000px;}
._45_c00350{margin-left:-23.634000px;}
._34_c00350{margin-left:-20.544000px;}
._2a_c00350{margin-left:-14.304000px;}
._2b_c00350{margin-left:-13.056000px;}
._36_c00350{margin-left:-11.712000px;}
._1c_c00350{margin-left:-10.176000px;}
._1d_c00350{margin-left:-8.832000px;}
._1e_c00350{margin-left:-7.392000px;}
._10_c00350{margin-left:-5.472000px;}
._25_c00350{margin-left:-3.456000px;}
._0_c00350{margin-left:-1.728000px;}
._5_c00350{width:1.920000px;}
._2_c00350{width:3.456000px;}
._6_c00350{width:5.376000px;}
._3_c00350{width:6.432000px;}
._1_c00350{width:7.584000px;}
._27_c00350{width:8.832000px;}
._13_c00350{width:9.888000px;}
._8_c00350{width:10.944000px;}
._f_c00350{width:12.864000px;}
._26_c00350{width:14.016000px;}
._7_c00350{width:15.264000px;}
._1a_c00350{width:16.416000px;}
._21_c00350{width:17.664000px;}
._e_c00350{width:19.200000px;}
._4_c00350{width:20.928000px;}
._2f_c00350{width:22.080000px;}
._2c_c00350{width:24.384000px;}
._a_c00350{width:25.920000px;}
._c_c00350{width:27.360000px;}
._22_c00350{width:29.664000px;}
._1b_c00350{width:31.008000px;}
._28_c00350{width:32.160000px;}
._b_c00350{width:33.216000px;}
._d_c00350{width:34.848000px;}
._9_c00350{width:36.288000px;}
._20_c00350{width:37.440000px;}
._17_c00350{width:39.456000px;}
._2d_c00350{width:41.280000px;}
._24_c00350{width:43.488000px;}
._42_c00350{width:44.835000px;}
._1f_c00350{width:46.368000px;}
._12_c00350{width:47.424000px;}
._19_c00350{width:49.056000px;}
._16_c00350{width:51.264000px;}
._18_c00350{width:52.320000px;}
._11_c00350{width:55.776000px;}
._2e_c00350{width:57.984000px;}
._44_c00350{width:60.432000px;}
._14_c00350{width:64.224000px;}
._23_c00350{width:67.008000px;}
._15_c00350{width:69.408000px;}
._3c_c00350{width:75.744000px;}
._39_c00350{width:86.496000px;}
._32_c00350{width:92.736000px;}
._38_c00350{width:98.112000px;}
._46_c00350{width:99.381000px;}
._33_c00350{width:122.016000px;}
._29_c00350{width:131.616000px;}
._31_c00350{width:150.912000px;}
._3a_c00350{width:197.190000px;}
._3d_c00350{width:239.376000px;}
._3f_c00350{width:394.896000px;}
._30_c00350{width:404.928000px;}
._35_c00350{width:418.464000px;}
._37_c00350{width:443.616000px;}
._3b_c00350{width:467.316000px;}
._40_c00350{width:666.171000px;}
._43_c00350{width:748.194000px;}
._48_c00350{width:2757.234000px;}
.fc2_c00350{color:transparent;}
.fc1_c00350{color:rgb(128,128,128);}
.fc0_c00350{color:rgb(0,0,0);}
.fs2_c00350{font-size:36.000000px;}
.fsb_c00350{font-size:48.000000px;}
.fs4_c00350{font-size:51.000000px;}
.fs7_c00350{font-size:67.200000px;}
.fs5_c00350{font-size:72.000000px;}
.fs9_c00350{font-size:78.000000px;}
.fs6_c00350{font-size:84.000000px;}
.fsa_c00350{font-size:87.000000px;}
.fs0_c00350{font-size:96.000000px;}
.fs1_c00350{font-size:102.000000px;}
.fs8_c00350{font-size:105.000000px;}
.fs3_c00350{font-size:144.000000px;}
.y0_c00350{bottom:0.000000px;}
.y26_c00350{bottom:3.105000px;}
.y25_c00350{bottom:7.228369px;}
.y24_c00350{bottom:112.620000px;}
.y23_c00350{bottom:140.070000px;}
.y22_c00350{bottom:174.870000px;}
.y21_c00350{bottom:206.820000px;}
.y20_c00350{bottom:240.870000px;}
.y1f_c00350{bottom:274.020000px;}
.y1e_c00350{bottom:308.370000px;}
.y1d_c00350{bottom:336.870000px;}
.y1c_c00350{bottom:375.870000px;}
.y1b_c00350{bottom:411.720000px;}
.y1a_c00350{bottom:433.920000px;}
.y19_c00350{bottom:474.570000px;}
.y18_c00350{bottom:512.220000px;}
.y17_c00350{bottom:546.420000px;}
.y16_c00350{bottom:580.470000px;}
.y15_c00350{bottom:612.870000px;}
.y14_c00350{bottom:647.670000px;}
.y13_c00350{bottom:681.120000px;}
.y12_c00350{bottom:714.420000px;}
.y11_c00350{bottom:746.520000px;}
.y10_c00350{bottom:781.020000px;}
.yf_c00350{bottom:814.620000px;}
.ye_c00350{bottom:846.720000px;}
.yd_c00350{bottom:879.870000px;}
.yc_c00350{bottom:913.320000px;}
.yb_c00350{bottom:946.920000px;}
.ya_c00350{bottom:979.770000px;}
.y9_c00350{bottom:1012.470000px;}
.y8_c00350{bottom:1046.970000px;}
.y7_c00350{bottom:1080.270000px;}
.y6_c00350{bottom:1113.120000px;}
.y5_c00350{bottom:1146.870000px;}
.y4_c00350{bottom:1180.920000px;}
.y3_c00350{bottom:1213.020000px;}
.y2_c00350{bottom:1246.620000px;}
.y1_c00350{bottom:1279.170000px;}
.h8_c00350{height:13.200073px;}
.h9_c00350{height:43.804688px;}
.h4_c00350{height:76.824000px;}
.h5_c00350{height:98.314453px;}
.h2_c00350{height:121.546875px;}
.h6_c00350{height:132.941895px;}
.h3_c00350{height:182.320312px;}
.h7_c00350{height:240.946875px;}
.h0_c00350{height:1383.450000px;}
.h1_c00350{height:1383.750000px;}
.w2_c00350{width:104.875500px;}
.w0_c00350{width:878.025000px;}
.w1_c00350{width:878.250000px;}
.x0_c00350{left:0.000000px;}
.x18_c00350{left:20.700000px;}
.xe_c00350{left:22.350000px;}
.xd_c00350{left:23.400000px;}
.xc_c00350{left:24.600000px;}
.xa_c00350{left:25.650000px;}
.xb_c00350{left:26.700000px;}
.x9_c00350{left:30.000000px;}
.x8_c00350{left:31.500000px;}
.x7_c00350{left:32.700000px;}
.x6_c00350{left:33.750000px;}
.x5_c00350{left:34.800000px;}
.x4_c00350{left:36.900000px;}
.x3_c00350{left:38.550000px;}
.x2_c00350{left:39.750000px;}
.x1_c00350{left:42.450000px;}
.x10_c00350{left:88.050000px;}
.xf_c00350{left:205.650000px;}
.x15_c00350{left:240.000000px;}
.x17_c00350{left:243.300000px;}
.x16_c00350{left:245.400000px;}
.x13_c00350{left:250.800000px;}
.x11_c00350{left:353.100000px;}
.x19_c00350{left:390.826721px;}
.x14_c00350{left:484.050000px;}
.x12_c00350{left:488.400000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:106.133333pt;}
.ls3_c00350{letter-spacing:-2.666667pt;}
.ls2_c00350{letter-spacing:0.000000pt;}
.ls1_c00350{letter-spacing:1.173333pt;}
.ls4_c00350{letter-spacing:8.000000pt;}
.ls5_c00350{letter-spacing:10.666667pt;}
.ls0_c00350{letter-spacing:14.229333pt;}
.ws2_c00350{word-spacing:-39.488000pt;}
.ws3_c00350{word-spacing:-33.723733pt;}
.ws0_c00350{word-spacing:-26.384000pt;}
.ws5_c00350{word-spacing:-20.565333pt;}
.ws4_c00350{word-spacing:-17.994667pt;}
.ws6_c00350{word-spacing:0.000000pt;}
.ws1_c00350{word-spacing:4.437333pt;}
._3e_c00350{margin-left:-98.432000pt;}
._47_c00350{margin-left:-36.888000pt;}
._41_c00350{margin-left:-33.504000pt;}
._45_c00350{margin-left:-21.008000pt;}
._34_c00350{margin-left:-18.261333pt;}
._2a_c00350{margin-left:-12.714667pt;}
._2b_c00350{margin-left:-11.605333pt;}
._36_c00350{margin-left:-10.410667pt;}
._1c_c00350{margin-left:-9.045333pt;}
._1d_c00350{margin-left:-7.850667pt;}
._1e_c00350{margin-left:-6.570667pt;}
._10_c00350{margin-left:-4.864000pt;}
._25_c00350{margin-left:-3.072000pt;}
._0_c00350{margin-left:-1.536000pt;}
._5_c00350{width:1.706667pt;}
._2_c00350{width:3.072000pt;}
._6_c00350{width:4.778667pt;}
._3_c00350{width:5.717333pt;}
._1_c00350{width:6.741333pt;}
._27_c00350{width:7.850667pt;}
._13_c00350{width:8.789333pt;}
._8_c00350{width:9.728000pt;}
._f_c00350{width:11.434667pt;}
._26_c00350{width:12.458667pt;}
._7_c00350{width:13.568000pt;}
._1a_c00350{width:14.592000pt;}
._21_c00350{width:15.701333pt;}
._e_c00350{width:17.066667pt;}
._4_c00350{width:18.602667pt;}
._2f_c00350{width:19.626667pt;}
._2c_c00350{width:21.674667pt;}
._a_c00350{width:23.040000pt;}
._c_c00350{width:24.320000pt;}
._22_c00350{width:26.368000pt;}
._1b_c00350{width:27.562667pt;}
._28_c00350{width:28.586667pt;}
._b_c00350{width:29.525333pt;}
._d_c00350{width:30.976000pt;}
._9_c00350{width:32.256000pt;}
._20_c00350{width:33.280000pt;}
._17_c00350{width:35.072000pt;}
._2d_c00350{width:36.693333pt;}
._24_c00350{width:38.656000pt;}
._42_c00350{width:39.853333pt;}
._1f_c00350{width:41.216000pt;}
._12_c00350{width:42.154667pt;}
._19_c00350{width:43.605333pt;}
._16_c00350{width:45.568000pt;}
._18_c00350{width:46.506667pt;}
._11_c00350{width:49.578667pt;}
._2e_c00350{width:51.541333pt;}
._44_c00350{width:53.717333pt;}
._14_c00350{width:57.088000pt;}
._23_c00350{width:59.562667pt;}
._15_c00350{width:61.696000pt;}
._3c_c00350{width:67.328000pt;}
._39_c00350{width:76.885333pt;}
._32_c00350{width:82.432000pt;}
._38_c00350{width:87.210667pt;}
._46_c00350{width:88.338667pt;}
._33_c00350{width:108.458667pt;}
._29_c00350{width:116.992000pt;}
._31_c00350{width:134.144000pt;}
._3a_c00350{width:175.280000pt;}
._3d_c00350{width:212.778667pt;}
._3f_c00350{width:351.018667pt;}
._30_c00350{width:359.936000pt;}
._35_c00350{width:371.968000pt;}
._37_c00350{width:394.325333pt;}
._3b_c00350{width:415.392000pt;}
._40_c00350{width:592.152000pt;}
._43_c00350{width:665.061333pt;}
._48_c00350{width:2450.874667pt;}
.fs2_c00350{font-size:32.000000pt;}
.fsb_c00350{font-size:42.666667pt;}
.fs4_c00350{font-size:45.333333pt;}
.fs7_c00350{font-size:59.733333pt;}
.fs5_c00350{font-size:64.000000pt;}
.fs9_c00350{font-size:69.333333pt;}
.fs6_c00350{font-size:74.666667pt;}
.fsa_c00350{font-size:77.333333pt;}
.fs0_c00350{font-size:85.333333pt;}
.fs1_c00350{font-size:90.666667pt;}
.fs8_c00350{font-size:93.333333pt;}
.fs3_c00350{font-size:128.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y26_c00350{bottom:2.760000pt;}
.y25_c00350{bottom:6.425217pt;}
.y24_c00350{bottom:100.106667pt;}
.y23_c00350{bottom:124.506667pt;}
.y22_c00350{bottom:155.440000pt;}
.y21_c00350{bottom:183.840000pt;}
.y20_c00350{bottom:214.106667pt;}
.y1f_c00350{bottom:243.573333pt;}
.y1e_c00350{bottom:274.106667pt;}
.y1d_c00350{bottom:299.440000pt;}
.y1c_c00350{bottom:334.106667pt;}
.y1b_c00350{bottom:365.973333pt;}
.y1a_c00350{bottom:385.706667pt;}
.y19_c00350{bottom:421.840000pt;}
.y18_c00350{bottom:455.306667pt;}
.y17_c00350{bottom:485.706667pt;}
.y16_c00350{bottom:515.973333pt;}
.y15_c00350{bottom:544.773333pt;}
.y14_c00350{bottom:575.706667pt;}
.y13_c00350{bottom:605.440000pt;}
.y12_c00350{bottom:635.040000pt;}
.y11_c00350{bottom:663.573333pt;}
.y10_c00350{bottom:694.240000pt;}
.yf_c00350{bottom:724.106667pt;}
.ye_c00350{bottom:752.640000pt;}
.yd_c00350{bottom:782.106667pt;}
.yc_c00350{bottom:811.840000pt;}
.yb_c00350{bottom:841.706667pt;}
.ya_c00350{bottom:870.906667pt;}
.y9_c00350{bottom:899.973333pt;}
.y8_c00350{bottom:930.640000pt;}
.y7_c00350{bottom:960.240000pt;}
.y6_c00350{bottom:989.440000pt;}
.y5_c00350{bottom:1019.440000pt;}
.y4_c00350{bottom:1049.706667pt;}
.y3_c00350{bottom:1078.240000pt;}
.y2_c00350{bottom:1108.106667pt;}
.y1_c00350{bottom:1137.040000pt;}
.h8_c00350{height:11.733399pt;}
.h9_c00350{height:38.937500pt;}
.h4_c00350{height:68.288000pt;}
.h5_c00350{height:87.390625pt;}
.h2_c00350{height:108.041667pt;}
.h6_c00350{height:118.170573pt;}
.h3_c00350{height:162.062500pt;}
.h7_c00350{height:214.175000pt;}
.h0_c00350{height:1229.733333pt;}
.h1_c00350{height:1230.000000pt;}
.w2_c00350{width:93.222667pt;}
.w0_c00350{width:780.466667pt;}
.w1_c00350{width:780.666667pt;}
.x0_c00350{left:0.000000pt;}
.x18_c00350{left:18.400000pt;}
.xe_c00350{left:19.866667pt;}
.xd_c00350{left:20.800000pt;}
.xc_c00350{left:21.866667pt;}
.xa_c00350{left:22.800000pt;}
.xb_c00350{left:23.733333pt;}
.x9_c00350{left:26.666667pt;}
.x8_c00350{left:28.000000pt;}
.x7_c00350{left:29.066667pt;}
.x6_c00350{left:30.000000pt;}
.x5_c00350{left:30.933333pt;}
.x4_c00350{left:32.800000pt;}
.x3_c00350{left:34.266667pt;}
.x2_c00350{left:35.333333pt;}
.x1_c00350{left:37.733333pt;}
.x10_c00350{left:78.266667pt;}
.xf_c00350{left:182.800000pt;}
.x15_c00350{left:213.333333pt;}
.x17_c00350{left:216.266667pt;}
.x16_c00350{left:218.133333pt;}
.x13_c00350{left:222.933333pt;}
.x11_c00350{left:313.866667pt;}
.x19_c00350{left:347.401530pt;}
.x14_c00350{left:430.266667pt;}
.x12_c00350{left:434.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df4187b2de1124527eb097f3.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_4b97626aaedd8f2f626af15a.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_58fccf9a639551083e55295b.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_6ed01a8ebbd684cb30290e53.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00351;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00351{font-family:ff6_c00351;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls3_c00351{letter-spacing:0.000000px;}
.ls2_c00351{letter-spacing:7.200000px;}
.ls5_c00351{letter-spacing:12.000000px;}
.ls1_c00351{letter-spacing:14.160000px;}
.ls0_c00351{letter-spacing:22.200000px;}
.ls4_c00351{letter-spacing:24.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00351{word-spacing:-53.856000px;}
.ws0_c00351{word-spacing:-47.136000px;}
.ws2_c00351{word-spacing:-43.084800px;}
.ws1_c00351{word-spacing:-20.244000px;}
.ws4_c00351{word-spacing:0.000000px;}
._38_c00351{margin-left:-37.536000px;}
._30_c00351{margin-left:-32.064000px;}
._2d_c00351{margin-left:-30.210000px;}
._42_c00351{margin-left:-28.800000px;}
._2b_c00351{margin-left:-26.106000px;}
._2f_c00351{margin-left:-24.427200px;}
._3f_c00351{margin-left:-23.328000px;}
._3d_c00351{margin-left:-20.640000px;}
._24_c00351{margin-left:-18.816000px;}
._25_c00351{margin-left:-15.552000px;}
._26_c00351{margin-left:-14.304000px;}
._36_c00351{margin-left:-13.152000px;}
._20_c00351{margin-left:-12.096000px;}
._1e_c00351{margin-left:-10.752000px;}
._1f_c00351{margin-left:-8.448000px;}
._11_c00351{margin-left:-6.624000px;}
._18_c00351{margin-left:-4.992000px;}
._8_c00351{margin-left:-3.840000px;}
._1c_c00351{margin-left:-2.784000px;}
._c_c00351{margin-left:-1.728000px;}
._6_c00351{width:1.632000px;}
._0_c00351{width:2.880000px;}
._1_c00351{width:4.416000px;}
._2_c00351{width:5.760000px;}
._1a_c00351{width:6.816000px;}
._4_c00351{width:7.968000px;}
._d_c00351{width:9.024000px;}
._a_c00351{width:11.040000px;}
._14_c00351{width:12.288000px;}
._21_c00351{width:13.440000px;}
._e_c00351{width:14.880000px;}
._19_c00351{width:16.608000px;}
._33_c00351{width:17.667000px;}
._12_c00351{width:19.296000px;}
._1d_c00351{width:20.928000px;}
._3a_c00351{width:21.984000px;}
._28_c00351{width:24.192000px;}
._3_c00351{width:26.112000px;}
._b_c00351{width:27.840000px;}
._9_c00351{width:29.664000px;}
._15_c00351{width:30.912000px;}
._5_c00351{width:32.544000px;}
._7_c00351{width:33.888000px;}
._17_c00351{width:35.328000px;}
._f_c00351{width:36.864000px;}
._10_c00351{width:38.688000px;}
._2a_c00351{width:39.957000px;}
._16_c00351{width:40.992000px;}
._13_c00351{width:43.200000px;}
._1b_c00351{width:45.216000px;}
._27_c00351{width:46.848000px;}
._47_c00351{width:47.904000px;}
._29_c00351{width:49.728000px;}
._50_c00351{width:51.660000px;}
._4e_c00351{width:54.093000px;}
._22_c00351{width:55.776000px;}
._23_c00351{width:57.312000px;}
._2c_c00351{width:59.760000px;}
._4d_c00351{width:61.584000px;}
._4a_c00351{width:62.784000px;}
._49_c00351{width:67.680000px;}
._4f_c00351{width:71.640000px;}
._48_c00351{width:72.816000px;}
._40_c00351{width:75.168000px;}
._44_c00351{width:80.160000px;}
._45_c00351{width:88.992000px;}
._37_c00351{width:99.360000px;}
._3c_c00351{width:110.304000px;}
._3b_c00351{width:138.504000px;}
._34_c00351{width:140.544000px;}
._2e_c00351{width:154.359000px;}
._41_c00351{width:193.536000px;}
._39_c00351{width:196.224000px;}
._43_c00351{width:219.840000px;}
._3e_c00351{width:269.376000px;}
._4c_c00351{width:289.092000px;}
._46_c00351{width:308.469000px;}
._35_c00351{width:324.960000px;}
._4b_c00351{width:351.288000px;}
._31_c00351{width:376.896000px;}
._32_c00351{width:459.243000px;}
._51_c00351{width:696.588000px;}
._52_c00351{width:1925.526000px;}
.fc2_c00351{color:transparent;}
.fc1_c00351{color:rgb(128,128,128);}
.fc0_c00351{color:rgb(0,0,0);}
.fs7_c00351{font-size:48.000000px;}
.fs3_c00351{font-size:57.000000px;}
.fs4_c00351{font-size:76.800000px;}
.fs1_c00351{font-size:84.000000px;}
.fs5_c00351{font-size:93.000000px;}
.fs0_c00351{font-size:96.000000px;}
.fs2_c00351{font-size:102.000000px;}
.fs6_c00351{font-size:105.000000px;}
.y0_c00351{bottom:0.000000px;}
.y27_c00351{bottom:3.105000px;}
.y26_c00351{bottom:7.228357px;}
.y25_c00351{bottom:118.080000px;}
.y24_c00351{bottom:146.580000px;}
.y23_c00351{bottom:181.230000px;}
.y22_c00351{bottom:214.380000px;}
.y21_c00351{bottom:247.830000px;}
.y20_c00351{bottom:279.480000px;}
.y1f_c00351{bottom:315.630000px;}
.y1e_c00351{bottom:348.630000px;}
.y1d_c00351{bottom:383.130000px;}
.y1c_c00351{bottom:417.180000px;}
.y1b_c00351{bottom:451.980000px;}
.y1a_c00351{bottom:465.180000px;}
.y19_c00351{bottom:485.280000px;}
.y18_c00351{bottom:518.730000px;}
.y17_c00351{bottom:552.930000px;}
.y16_c00351{bottom:585.930000px;}
.y15_c00351{bottom:621.780000px;}
.y14_c00351{bottom:654.780000px;}
.y13_c00351{bottom:687.930000px;}
.y12_c00351{bottom:721.980000px;}
.y11_c00351{bottom:755.430000px;}
.y10_c00351{bottom:788.130000px;}
.yf_c00351{bottom:822.480000px;}
.ye_c00351{bottom:855.630000px;}
.yd_c00351{bottom:889.080000px;}
.yc_c00351{bottom:923.130000px;}
.yb_c00351{bottom:956.430000px;}
.ya_c00351{bottom:989.880000px;}
.y9_c00351{bottom:1022.730000px;}
.y8_c00351{bottom:1056.030000px;}
.y7_c00351{bottom:1088.880000px;}
.y6_c00351{bottom:1122.480000px;}
.y5_c00351{bottom:1155.930000px;}
.y4_c00351{bottom:1189.380000px;}
.y3_c00351{bottom:1223.130000px;}
.y2_c00351{bottom:1256.130000px;}
.y1_c00351{bottom:1289.580000px;}
.h5_c00351{height:13.200074px;}
.h6_c00351{height:43.804688px;}
.h3_c00351{height:117.748535px;}
.h2_c00351{height:121.546875px;}
.h4_c00351{height:132.941895px;}
.h0_c00351{height:1382.700000px;}
.h1_c00351{height:1383.000000px;}
.w2_c00351{width:104.875500px;}
.w0_c00351{width:863.175000px;}
.w1_c00351{width:863.250000px;}
.x0_c00351{left:0.000000px;}
.xe_c00351{left:35.400000px;}
.xd_c00351{left:41.850000px;}
.xc_c00351{left:42.900000px;}
.xa_c00351{left:62.400000px;}
.xb_c00351{left:113.100000px;}
.x9_c00351{left:115.800000px;}
.x8_c00351{left:120.900000px;}
.x7_c00351{left:191.700000px;}
.x3_c00351{left:254.550000px;}
.x2_c00351{left:255.600000px;}
.x1_c00351{left:256.800000px;}
.x4_c00351{left:257.850000px;}
.x5_c00351{left:258.900000px;}
.x6_c00351{left:261.600000px;}
.xf_c00351{left:271.800000px;}
.x10_c00351{left:383.401749px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls3_c00351{letter-spacing:0.000000pt;}
.ls2_c00351{letter-spacing:6.400000pt;}
.ls5_c00351{letter-spacing:10.666667pt;}
.ls1_c00351{letter-spacing:12.586667pt;}
.ls0_c00351{letter-spacing:19.733333pt;}
.ls4_c00351{letter-spacing:21.333333pt;}
.ws3_c00351{word-spacing:-47.872000pt;}
.ws0_c00351{word-spacing:-41.898667pt;}
.ws2_c00351{word-spacing:-38.297600pt;}
.ws1_c00351{word-spacing:-17.994667pt;}
.ws4_c00351{word-spacing:0.000000pt;}
._38_c00351{margin-left:-33.365333pt;}
._30_c00351{margin-left:-28.501333pt;}
._2d_c00351{margin-left:-26.853333pt;}
._42_c00351{margin-left:-25.600000pt;}
._2b_c00351{margin-left:-23.205333pt;}
._2f_c00351{margin-left:-21.713067pt;}
._3f_c00351{margin-left:-20.736000pt;}
._3d_c00351{margin-left:-18.346667pt;}
._24_c00351{margin-left:-16.725333pt;}
._25_c00351{margin-left:-13.824000pt;}
._26_c00351{margin-left:-12.714667pt;}
._36_c00351{margin-left:-11.690667pt;}
._20_c00351{margin-left:-10.752000pt;}
._1e_c00351{margin-left:-9.557333pt;}
._1f_c00351{margin-left:-7.509333pt;}
._11_c00351{margin-left:-5.888000pt;}
._18_c00351{margin-left:-4.437333pt;}
._8_c00351{margin-left:-3.413333pt;}
._1c_c00351{margin-left:-2.474667pt;}
._c_c00351{margin-left:-1.536000pt;}
._6_c00351{width:1.450667pt;}
._0_c00351{width:2.560000pt;}
._1_c00351{width:3.925333pt;}
._2_c00351{width:5.120000pt;}
._1a_c00351{width:6.058667pt;}
._4_c00351{width:7.082667pt;}
._d_c00351{width:8.021333pt;}
._a_c00351{width:9.813333pt;}
._14_c00351{width:10.922667pt;}
._21_c00351{width:11.946667pt;}
._e_c00351{width:13.226667pt;}
._19_c00351{width:14.762667pt;}
._33_c00351{width:15.704000pt;}
._12_c00351{width:17.152000pt;}
._1d_c00351{width:18.602667pt;}
._3a_c00351{width:19.541333pt;}
._28_c00351{width:21.504000pt;}
._3_c00351{width:23.210667pt;}
._b_c00351{width:24.746667pt;}
._9_c00351{width:26.368000pt;}
._15_c00351{width:27.477333pt;}
._5_c00351{width:28.928000pt;}
._7_c00351{width:30.122667pt;}
._17_c00351{width:31.402667pt;}
._f_c00351{width:32.768000pt;}
._10_c00351{width:34.389333pt;}
._2a_c00351{width:35.517333pt;}
._16_c00351{width:36.437333pt;}
._13_c00351{width:38.400000pt;}
._1b_c00351{width:40.192000pt;}
._27_c00351{width:41.642667pt;}
._47_c00351{width:42.581333pt;}
._29_c00351{width:44.202667pt;}
._50_c00351{width:45.920000pt;}
._4e_c00351{width:48.082667pt;}
._22_c00351{width:49.578667pt;}
._23_c00351{width:50.944000pt;}
._2c_c00351{width:53.120000pt;}
._4d_c00351{width:54.741333pt;}
._4a_c00351{width:55.808000pt;}
._49_c00351{width:60.160000pt;}
._4f_c00351{width:63.680000pt;}
._48_c00351{width:64.725333pt;}
._40_c00351{width:66.816000pt;}
._44_c00351{width:71.253333pt;}
._45_c00351{width:79.104000pt;}
._37_c00351{width:88.320000pt;}
._3c_c00351{width:98.048000pt;}
._3b_c00351{width:123.114667pt;}
._34_c00351{width:124.928000pt;}
._2e_c00351{width:137.208000pt;}
._41_c00351{width:172.032000pt;}
._39_c00351{width:174.421333pt;}
._43_c00351{width:195.413333pt;}
._3e_c00351{width:239.445333pt;}
._4c_c00351{width:256.970667pt;}
._46_c00351{width:274.194667pt;}
._35_c00351{width:288.853333pt;}
._4b_c00351{width:312.256000pt;}
._31_c00351{width:335.018667pt;}
._32_c00351{width:408.216000pt;}
._51_c00351{width:619.189333pt;}
._52_c00351{width:1711.578667pt;}
.fs7_c00351{font-size:42.666667pt;}
.fs3_c00351{font-size:50.666667pt;}
.fs4_c00351{font-size:68.266667pt;}
.fs1_c00351{font-size:74.666667pt;}
.fs5_c00351{font-size:82.666667pt;}
.fs0_c00351{font-size:85.333333pt;}
.fs2_c00351{font-size:90.666667pt;}
.fs6_c00351{font-size:93.333333pt;}
.y0_c00351{bottom:0.000000pt;}
.y27_c00351{bottom:2.760000pt;}
.y26_c00351{bottom:6.425206pt;}
.y25_c00351{bottom:104.960000pt;}
.y24_c00351{bottom:130.293333pt;}
.y23_c00351{bottom:161.093333pt;}
.y22_c00351{bottom:190.560000pt;}
.y21_c00351{bottom:220.293333pt;}
.y20_c00351{bottom:248.426667pt;}
.y1f_c00351{bottom:280.560000pt;}
.y1e_c00351{bottom:309.893333pt;}
.y1d_c00351{bottom:340.560000pt;}
.y1c_c00351{bottom:370.826667pt;}
.y1b_c00351{bottom:401.760000pt;}
.y1a_c00351{bottom:413.493333pt;}
.y19_c00351{bottom:431.360000pt;}
.y18_c00351{bottom:461.093333pt;}
.y17_c00351{bottom:491.493333pt;}
.y16_c00351{bottom:520.826667pt;}
.y15_c00351{bottom:552.693333pt;}
.y14_c00351{bottom:582.026667pt;}
.y13_c00351{bottom:611.493333pt;}
.y12_c00351{bottom:641.760000pt;}
.y11_c00351{bottom:671.493333pt;}
.y10_c00351{bottom:700.560000pt;}
.yf_c00351{bottom:731.093333pt;}
.ye_c00351{bottom:760.560000pt;}
.yd_c00351{bottom:790.293333pt;}
.yc_c00351{bottom:820.560000pt;}
.yb_c00351{bottom:850.160000pt;}
.ya_c00351{bottom:879.893333pt;}
.y9_c00351{bottom:909.093333pt;}
.y8_c00351{bottom:938.693333pt;}
.y7_c00351{bottom:967.893333pt;}
.y6_c00351{bottom:997.760000pt;}
.y5_c00351{bottom:1027.493333pt;}
.y4_c00351{bottom:1057.226667pt;}
.y3_c00351{bottom:1087.226667pt;}
.y2_c00351{bottom:1116.560000pt;}
.y1_c00351{bottom:1146.293333pt;}
.h5_c00351{height:11.733399pt;}
.h6_c00351{height:38.937500pt;}
.h3_c00351{height:104.665365pt;}
.h2_c00351{height:108.041667pt;}
.h4_c00351{height:118.170573pt;}
.h0_c00351{height:1229.066667pt;}
.h1_c00351{height:1229.333333pt;}
.w2_c00351{width:93.222667pt;}
.w0_c00351{width:767.266667pt;}
.w1_c00351{width:767.333333pt;}
.x0_c00351{left:0.000000pt;}
.xe_c00351{left:31.466667pt;}
.xd_c00351{left:37.200000pt;}
.xc_c00351{left:38.133333pt;}
.xa_c00351{left:55.466667pt;}
.xb_c00351{left:100.533333pt;}
.x9_c00351{left:102.933333pt;}
.x8_c00351{left:107.466667pt;}
.x7_c00351{left:170.400000pt;}
.x3_c00351{left:226.266667pt;}
.x2_c00351{left:227.200000pt;}
.x1_c00351{left:228.266667pt;}
.x4_c00351{left:229.200000pt;}
.x5_c00351{left:230.133333pt;}
.x6_c00351{left:232.533333pt;}
.xf_c00351{left:241.600000pt;}
.x10_c00351{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2fc137293683ec011a3b399e.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_9876b8be6a3420802e950637.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_08a36239a306ffc547809ce3.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_ed54909643373d56e4185727.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_569e1dd9c53a759d8c8db119.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00352;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls6_c00352{letter-spacing:-12.000000px;}
.ls5_c00352{letter-spacing:-6.000000px;}
.ls2_c00352{letter-spacing:0.000000px;}
.ls3_c00352{letter-spacing:9.000000px;}
.ls1_c00352{letter-spacing:12.000000px;}
.ls0_c00352{letter-spacing:21.036000px;}
.ls4_c00352{letter-spacing:105.000000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00352{word-spacing:-128.136000px;}
.ws2_c00352{word-spacing:-44.424000px;}
.ws3_c00352{word-spacing:-37.939200px;}
.ws1_c00352{word-spacing:-25.500000px;}
.ws5_c00352{word-spacing:-8.244000px;}
.ws6_c00352{word-spacing:0.000000px;}
.ws0_c00352{word-spacing:16.728000px;}
._2b_c00352{margin-left:-82.368000px;}
._2c_c00352{margin-left:-52.992000px;}
._46_c00352{margin-left:-40.062000px;}
._44_c00352{margin-left:-35.040000px;}
._c_c00352{margin-left:-30.624000px;}
._43_c00352{margin-left:-28.392000px;}
._3b_c00352{margin-left:-22.992000px;}
._3d_c00352{margin-left:-21.792000px;}
._32_c00352{margin-left:-19.344000px;}
._3f_c00352{margin-left:-17.472000px;}
._36_c00352{margin-left:-15.360000px;}
._28_c00352{margin-left:-13.824000px;}
._42_c00352{margin-left:-12.768000px;}
._f_c00352{margin-left:-11.616000px;}
._10_c00352{margin-left:-9.792000px;}
._33_c00352{margin-left:-8.064000px;}
._25_c00352{margin-left:-6.720000px;}
._e_c00352{margin-left:-5.376000px;}
._16_c00352{margin-left:-3.552000px;}
._2f_c00352{margin-left:-2.496000px;}
._0_c00352{margin-left:-1.440000px;}
._b_c00352{width:1.920000px;}
._13_c00352{width:3.072000px;}
._12_c00352{width:4.128000px;}
._9_c00352{width:5.184000px;}
._d_c00352{width:6.624000px;}
._6_c00352{width:8.544000px;}
._7_c00352{width:9.600000px;}
._27_c00352{width:11.082000px;}
._5_c00352{width:12.096000px;}
._1f_c00352{width:13.344000px;}
._14_c00352{width:15.072000px;}
._29_c00352{width:16.896000px;}
._1_c00352{width:18.120000px;}
._1a_c00352{width:19.152000px;}
._19_c00352{width:20.448000px;}
._1b_c00352{width:21.888000px;}
._35_c00352{width:24.696000px;}
._21_c00352{width:25.824000px;}
._2d_c00352{width:27.216000px;}
._39_c00352{width:28.512000px;}
._22_c00352{width:29.664000px;}
._49_c00352{width:30.714000px;}
._a_c00352{width:32.256000px;}
._11_c00352{width:33.888000px;}
._1e_c00352{width:34.944000px;}
._8_c00352{width:36.288000px;}
._40_c00352{width:37.440000px;}
._17_c00352{width:38.688000px;}
._23_c00352{width:39.840000px;}
._1c_c00352{width:41.184000px;}
._30_c00352{width:42.432000px;}
._2e_c00352{width:43.680000px;}
._1d_c00352{width:45.312000px;}
._15_c00352{width:47.520000px;}
._37_c00352{width:49.248000px;}
._24_c00352{width:51.360000px;}
._18_c00352{width:52.992000px;}
._20_c00352{width:56.640000px;}
._3a_c00352{width:60.396000px;}
._4d_c00352{width:64.950000px;}
._4c_c00352{width:67.200000px;}
._48_c00352{width:70.254000px;}
._38_c00352{width:77.376000px;}
._31_c00352{width:81.888000px;}
._34_c00352{width:95.184000px;}
._4a_c00352{width:96.384000px;}
._3_c00352{width:115.080000px;}
._4e_c00352{width:116.448000px;}
._2_c00352{width:144.504000px;}
._4b_c00352{width:266.280000px;}
._47_c00352{width:295.830000px;}
._26_c00352{width:300.024000px;}
._4_c00352{width:317.616000px;}
._3e_c00352{width:346.584000px;}
._45_c00352{width:356.544000px;}
._2a_c00352{width:371.568000px;}
._3c_c00352{width:393.282000px;}
._41_c00352{width:457.440000px;}
._4f_c00352{width:461.904000px;}
._50_c00352{width:837.696000px;}
.fc2_c00352{color:transparent;}
.fc1_c00352{color:rgb(128,128,128);}
.fc0_c00352{color:rgb(0,0,0);}
.fs0_c00352{font-size:24.000000px;}
.fs6_c00352{font-size:48.000000px;}
.fs4_c00352{font-size:67.200000px;}
.fs5_c00352{font-size:69.000000px;}
.fs3_c00352{font-size:84.000000px;}
.fs1_c00352{font-size:96.000000px;}
.fs2_c00352{font-size:102.000000px;}
.y0_c00352{bottom:0.000000px;}
.y27_c00352{bottom:3.105000px;}
.y26_c00352{bottom:7.228369px;}
.y25_c00352{bottom:100.470000px;}
.y24_c00352{bottom:132.870000px;}
.y23_c00352{bottom:167.970000px;}
.y22_c00352{bottom:201.120000px;}
.y21_c00352{bottom:231.870000px;}
.y20_c00352{bottom:269.670000px;}
.y1f_c00352{bottom:302.670000px;}
.y1e_c00352{bottom:335.070000px;}
.y1d_c00352{bottom:369.570000px;}
.y1c_c00352{bottom:405.570000px;}
.y1b_c00352{bottom:438.420000px;}
.y1a_c00352{bottom:473.520000px;}
.y19_c00352{bottom:504.120000px;}
.y18_c00352{bottom:537.870000px;}
.y17_c00352{bottom:571.620000px;}
.y16_c00352{bottom:606.120000px;}
.y15_c00352{bottom:637.770000px;}
.y14_c00352{bottom:672.270000px;}
.y13_c00352{bottom:706.020000px;}
.y12_c00352{bottom:739.470000px;}
.y11_c00352{bottom:773.820000px;}
.y10_c00352{bottom:806.670000px;}
.yf_c00352{bottom:840.270000px;}
.ye_c00352{bottom:873.120000px;}
.yd_c00352{bottom:906.120000px;}
.yc_c00352{bottom:940.170000px;}
.yb_c00352{bottom:973.320000px;}
.ya_c00352{bottom:1007.070000px;}
.y9_c00352{bottom:1040.220000px;}
.y8_c00352{bottom:1074.270000px;}
.y7_c00352{bottom:1107.570000px;}
.y6_c00352{bottom:1140.120000px;}
.y5_c00352{bottom:1173.720000px;}
.y4_c00352{bottom:1207.170000px;}
.y3_c00352{bottom:1240.320000px;}
.y2_c00352{bottom:1274.070000px;}
.y1_c00352{bottom:1301.670000px;}
.h4_c00352{height:13.200073px;}
.h2_c00352{height:30.386719px;}
.h5_c00352{height:43.804688px;}
.h3_c00352{height:121.546875px;}
.h0_c00352{height:1383.450000px;}
.h1_c00352{height:1383.750000px;}
.w2_c00352{width:104.875500px;}
.w0_c00352{width:878.025000px;}
.w1_c00352{width:878.250000px;}
.x0_c00352{left:0.000000px;}
.xa_c00352{left:36.000000px;}
.x9_c00352{left:37.500000px;}
.x8_c00352{left:39.150000px;}
.x7_c00352{left:40.800000px;}
.x6_c00352{left:41.850000px;}
.x4_c00352{left:43.500000px;}
.x5_c00352{left:44.550000px;}
.x3_c00352{left:46.200000px;}
.x2_c00352{left:47.250000px;}
.x1_c00352{left:240.000000px;}
.xb_c00352{left:390.826721px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls6_c00352{letter-spacing:-10.666667pt;}
.ls5_c00352{letter-spacing:-5.333333pt;}
.ls2_c00352{letter-spacing:0.000000pt;}
.ls3_c00352{letter-spacing:8.000000pt;}
.ls1_c00352{letter-spacing:10.666667pt;}
.ls0_c00352{letter-spacing:18.698667pt;}
.ls4_c00352{letter-spacing:93.333333pt;}
.ws4_c00352{word-spacing:-113.898667pt;}
.ws2_c00352{word-spacing:-39.488000pt;}
.ws3_c00352{word-spacing:-33.723733pt;}
.ws1_c00352{word-spacing:-22.666667pt;}
.ws5_c00352{word-spacing:-7.328000pt;}
.ws6_c00352{word-spacing:0.000000pt;}
.ws0_c00352{word-spacing:14.869333pt;}
._2b_c00352{margin-left:-73.216000pt;}
._2c_c00352{margin-left:-47.104000pt;}
._46_c00352{margin-left:-35.610667pt;}
._44_c00352{margin-left:-31.146667pt;}
._c_c00352{margin-left:-27.221333pt;}
._43_c00352{margin-left:-25.237333pt;}
._3b_c00352{margin-left:-20.437333pt;}
._3d_c00352{margin-left:-19.370667pt;}
._32_c00352{margin-left:-17.194667pt;}
._3f_c00352{margin-left:-15.530667pt;}
._36_c00352{margin-left:-13.653333pt;}
._28_c00352{margin-left:-12.288000pt;}
._42_c00352{margin-left:-11.349333pt;}
._f_c00352{margin-left:-10.325333pt;}
._10_c00352{margin-left:-8.704000pt;}
._33_c00352{margin-left:-7.168000pt;}
._25_c00352{margin-left:-5.973333pt;}
._e_c00352{margin-left:-4.778667pt;}
._16_c00352{margin-left:-3.157333pt;}
._2f_c00352{margin-left:-2.218667pt;}
._0_c00352{margin-left:-1.280000pt;}
._b_c00352{width:1.706667pt;}
._13_c00352{width:2.730667pt;}
._12_c00352{width:3.669333pt;}
._9_c00352{width:4.608000pt;}
._d_c00352{width:5.888000pt;}
._6_c00352{width:7.594667pt;}
._7_c00352{width:8.533333pt;}
._27_c00352{width:9.850667pt;}
._5_c00352{width:10.752000pt;}
._1f_c00352{width:11.861333pt;}
._14_c00352{width:13.397333pt;}
._29_c00352{width:15.018667pt;}
._1_c00352{width:16.106667pt;}
._1a_c00352{width:17.024000pt;}
._19_c00352{width:18.176000pt;}
._1b_c00352{width:19.456000pt;}
._35_c00352{width:21.952000pt;}
._21_c00352{width:22.954667pt;}
._2d_c00352{width:24.192000pt;}
._39_c00352{width:25.344000pt;}
._22_c00352{width:26.368000pt;}
._49_c00352{width:27.301333pt;}
._a_c00352{width:28.672000pt;}
._11_c00352{width:30.122667pt;}
._1e_c00352{width:31.061333pt;}
._8_c00352{width:32.256000pt;}
._40_c00352{width:33.280000pt;}
._17_c00352{width:34.389333pt;}
._23_c00352{width:35.413333pt;}
._1c_c00352{width:36.608000pt;}
._30_c00352{width:37.717333pt;}
._2e_c00352{width:38.826667pt;}
._1d_c00352{width:40.277333pt;}
._15_c00352{width:42.240000pt;}
._37_c00352{width:43.776000pt;}
._24_c00352{width:45.653333pt;}
._18_c00352{width:47.104000pt;}
._20_c00352{width:50.346667pt;}
._3a_c00352{width:53.685333pt;}
._4d_c00352{width:57.733333pt;}
._4c_c00352{width:59.733333pt;}
._48_c00352{width:62.448000pt;}
._38_c00352{width:68.778667pt;}
._31_c00352{width:72.789333pt;}
._34_c00352{width:84.608000pt;}
._4a_c00352{width:85.674667pt;}
._3_c00352{width:102.293333pt;}
._4e_c00352{width:103.509333pt;}
._2_c00352{width:128.448000pt;}
._4b_c00352{width:236.693333pt;}
._47_c00352{width:262.960000pt;}
._26_c00352{width:266.688000pt;}
._4_c00352{width:282.325333pt;}
._3e_c00352{width:308.074667pt;}
._45_c00352{width:316.928000pt;}
._2a_c00352{width:330.282667pt;}
._3c_c00352{width:349.584000pt;}
._41_c00352{width:406.613333pt;}
._4f_c00352{width:410.581333pt;}
._50_c00352{width:744.618667pt;}
.fs0_c00352{font-size:21.333333pt;}
.fs6_c00352{font-size:42.666667pt;}
.fs4_c00352{font-size:59.733333pt;}
.fs5_c00352{font-size:61.333333pt;}
.fs3_c00352{font-size:74.666667pt;}
.fs1_c00352{font-size:85.333333pt;}
.fs2_c00352{font-size:90.666667pt;}
.y0_c00352{bottom:0.000000pt;}
.y27_c00352{bottom:2.760000pt;}
.y26_c00352{bottom:6.425217pt;}
.y25_c00352{bottom:89.306667pt;}
.y24_c00352{bottom:118.106667pt;}
.y23_c00352{bottom:149.306667pt;}
.y22_c00352{bottom:178.773333pt;}
.y21_c00352{bottom:206.106667pt;}
.y20_c00352{bottom:239.706667pt;}
.y1f_c00352{bottom:269.040000pt;}
.y1e_c00352{bottom:297.840000pt;}
.y1d_c00352{bottom:328.506667pt;}
.y1c_c00352{bottom:360.506667pt;}
.y1b_c00352{bottom:389.706667pt;}
.y1a_c00352{bottom:420.906667pt;}
.y19_c00352{bottom:448.106667pt;}
.y18_c00352{bottom:478.106667pt;}
.y17_c00352{bottom:508.106667pt;}
.y16_c00352{bottom:538.773333pt;}
.y15_c00352{bottom:566.906667pt;}
.y14_c00352{bottom:597.573333pt;}
.y13_c00352{bottom:627.573333pt;}
.y12_c00352{bottom:657.306667pt;}
.y11_c00352{bottom:687.840000pt;}
.y10_c00352{bottom:717.040000pt;}
.yf_c00352{bottom:746.906667pt;}
.ye_c00352{bottom:776.106667pt;}
.yd_c00352{bottom:805.440000pt;}
.yc_c00352{bottom:835.706667pt;}
.yb_c00352{bottom:865.173333pt;}
.ya_c00352{bottom:895.173333pt;}
.y9_c00352{bottom:924.640000pt;}
.y8_c00352{bottom:954.906667pt;}
.y7_c00352{bottom:984.506667pt;}
.y6_c00352{bottom:1013.440000pt;}
.y5_c00352{bottom:1043.306667pt;}
.y4_c00352{bottom:1073.040000pt;}
.y3_c00352{bottom:1102.506667pt;}
.y2_c00352{bottom:1132.506667pt;}
.y1_c00352{bottom:1157.040000pt;}
.h4_c00352{height:11.733399pt;}
.h2_c00352{height:27.010417pt;}
.h5_c00352{height:38.937500pt;}
.h3_c00352{height:108.041667pt;}
.h0_c00352{height:1229.733333pt;}
.h1_c00352{height:1230.000000pt;}
.w2_c00352{width:93.222667pt;}
.w0_c00352{width:780.466667pt;}
.w1_c00352{width:780.666667pt;}
.x0_c00352{left:0.000000pt;}
.xa_c00352{left:32.000000pt;}
.x9_c00352{left:33.333333pt;}
.x8_c00352{left:34.800000pt;}
.x7_c00352{left:36.266667pt;}
.x6_c00352{left:37.200000pt;}
.x4_c00352{left:38.666667pt;}
.x5_c00352{left:39.600000pt;}
.x3_c00352{left:41.066667pt;}
.x2_c00352{left:42.000000pt;}
.x1_c00352{left:213.333333pt;}
.xb_c00352{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b58325c0d157f4f6b78b176.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_3c0d43e4b25b7f3d5f1e6f83.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_c4dfe86724a7f652083512a0.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;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_c00353;src:url('chunks/assets/font_e47f2540b4643c267b0bf875.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00353;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls7_c00353{letter-spacing:-12.000000px;}
.ls6_c00353{letter-spacing:0.000000px;}
.ls3_c00353{letter-spacing:4.800000px;}
.ls2_c00353{letter-spacing:7.200000px;}
.ls0_c00353{letter-spacing:15.768000px;}
.ls1_c00353{letter-spacing:39.600000px;}
.ls4_c00353{letter-spacing:47.787000px;}
.ls5_c00353{letter-spacing:267.264000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:-63.504000px;}
.ws2_c00353{word-spacing:-44.604000px;}
.ws1_c00353{word-spacing:-19.200000px;}
.ws3_c00353{word-spacing:0.000000px;}
._31_c00353{margin-left:-47.808000px;}
._33_c00353{margin-left:-32.016000px;}
._47_c00353{margin-left:-30.432000px;}
._23_c00353{margin-left:-26.400000px;}
._2f_c00353{margin-left:-24.264000px;}
._30_c00353{margin-left:-22.944000px;}
._38_c00353{margin-left:-20.412000px;}
._22_c00353{margin-left:-19.392000px;}
._1e_c00353{margin-left:-16.608000px;}
._36_c00353{margin-left:-15.000000px;}
._3c_c00353{margin-left:-12.576000px;}
._f_c00353{margin-left:-11.232000px;}
._28_c00353{margin-left:-9.542400px;}
._29_c00353{margin-left:-8.256000px;}
._37_c00353{margin-left:-7.209600px;}
._27_c00353{margin-left:-5.928000px;}
._35_c00353{margin-left:-4.704000px;}
._13_c00353{margin-left:-3.552000px;}
._0_c00353{margin-left:-1.536000px;}
._c_c00353{width:1.824000px;}
._7_c00353{width:2.976000px;}
._6_c00353{width:4.608000px;}
._a_c00353{width:5.760000px;}
._4_c00353{width:7.584000px;}
._8_c00353{width:8.904000px;}
._17_c00353{width:10.176000px;}
._1c_c00353{width:11.448000px;}
._26_c00353{width:12.960000px;}
._e_c00353{width:14.208000px;}
._2_c00353{width:15.792000px;}
._3_c00353{width:17.304000px;}
._15_c00353{width:18.576000px;}
._14_c00353{width:20.424000px;}
._34_c00353{width:21.504000px;}
._d_c00353{width:25.632000px;}
._25_c00353{width:27.504000px;}
._9_c00353{width:29.088000px;}
._2d_c00353{width:30.456000px;}
._12_c00353{width:31.704000px;}
._1_c00353{width:33.648000px;}
._10_c00353{width:34.848000px;}
._5_c00353{width:36.000000px;}
._2c_c00353{width:37.248000px;}
._20_c00353{width:39.072000px;}
._11_c00353{width:40.800000px;}
._2b_c00353{width:42.720000px;}
._1d_c00353{width:44.232000px;}
._2e_c00353{width:45.288000px;}
._b_c00353{width:46.440000px;}
._2a_c00353{width:49.080000px;}
._19_c00353{width:50.112000px;}
._1a_c00353{width:51.648000px;}
._16_c00353{width:54.240000px;}
._1b_c00353{width:56.640000px;}
._43_c00353{width:58.440000px;}
._45_c00353{width:66.912000px;}
._46_c00353{width:70.560000px;}
._18_c00353{width:73.536000px;}
._40_c00353{width:84.576000px;}
._44_c00353{width:88.032000px;}
._3a_c00353{width:125.592000px;}
._41_c00353{width:146.808000px;}
._3d_c00353{width:160.449000px;}
._3f_c00353{width:186.024000px;}
._21_c00353{width:210.240000px;}
._24_c00353{width:226.176000px;}
._3b_c00353{width:293.712000px;}
._49_c00353{width:380.640000px;}
._3e_c00353{width:400.728000px;}
._1f_c00353{width:538.464000px;}
._39_c00353{width:586.176000px;}
._42_c00353{width:687.936000px;}
._32_c00353{width:707.040000px;}
._48_c00353{width:1424.352000px;}
.fc2_c00353{color:transparent;}
.fc1_c00353{color:rgb(128,128,128);}
.fc0_c00353{color:rgb(0,0,0);}
.fs7_c00353{font-size:48.000000px;}
.fs2_c00353{font-size:76.800000px;}
.fs1_c00353{font-size:84.000000px;}
.fs6_c00353{font-size:87.000000px;}
.fs5_c00353{font-size:93.000000px;}
.fs0_c00353{font-size:96.000000px;}
.fs4_c00353{font-size:99.000000px;}
.fs3_c00353{font-size:102.000000px;}
.y0_c00353{bottom:0.000000px;}
.y26_c00353{bottom:3.105000px;}
.y25_c00353{bottom:7.228355px;}
.y24_c00353{bottom:77.235000px;}
.y23_c00353{bottom:109.635000px;}
.y22_c00353{bottom:143.985000px;}
.y21_c00353{bottom:180.585000px;}
.y20_c00353{bottom:211.635000px;}
.y1f_c00353{bottom:245.385000px;}
.y1e_c00353{bottom:279.735000px;}
.y1d_c00353{bottom:312.135000px;}
.y1c_c00353{bottom:348.585000px;}
.y1b_c00353{bottom:382.635000px;}
.y1a_c00353{bottom:416.085000px;}
.y19_c00353{bottom:449.235000px;}
.y18_c00353{bottom:484.935000px;}
.y17_c00353{bottom:515.985000px;}
.y16_c00353{bottom:551.085000px;}
.y15_c00353{bottom:584.835000px;}
.y14_c00353{bottom:619.185000px;}
.y13_c00353{bottom:652.935000px;}
.y12_c00353{bottom:686.685000px;}
.y11_c00353{bottom:720.585000px;}
.y10_c00353{bottom:753.885000px;}
.yf_c00353{bottom:787.635000px;}
.ye_c00353{bottom:821.385000px;}
.yd_c00353{bottom:855.135000px;}
.yc_c00353{bottom:888.885000px;}
.yb_c00353{bottom:922.035000px;}
.ya_c00353{bottom:955.485000px;}
.y9_c00353{bottom:988.485000px;}
.y8_c00353{bottom:1021.485000px;}
.y7_c00353{bottom:1055.685000px;}
.y6_c00353{bottom:1088.985000px;}
.y5_c00353{bottom:1122.735000px;}
.y4_c00353{bottom:1156.185000px;}
.y3_c00353{bottom:1189.635000px;}
.y2_c00353{bottom:1222.635000px;}
.y1_c00353{bottom:1255.785000px;}
.h3_c00353{height:13.200074px;}
.h4_c00353{height:43.804688px;}
.h2_c00353{height:121.546875px;}
.h1_c00353{height:1347.750000px;}
.h0_c00353{height:1347.825000px;}
.w1_c00353{width:104.875500px;}
.w0_c00353{width:840.750000px;}
.x0_c00353{left:0.000000px;}
.xd_c00353{left:35.850000px;}
.xa_c00353{left:50.400000px;}
.xc_c00353{left:62.850000px;}
.x8_c00353{left:69.900000px;}
.xe_c00353{left:96.300000px;}
.x9_c00353{left:100.650000px;}
.xb_c00353{left:103.950000px;}
.x4_c00353{left:113.700000px;}
.x3_c00353{left:115.200000px;}
.x7_c00353{left:254.550000px;}
.x6_c00353{left:256.200000px;}
.x5_c00353{left:257.850000px;}
.x1_c00353{left:259.500000px;}
.x2_c00353{left:260.550000px;}
.xf_c00353{left:270.750000px;}
.x10_c00353{left:372.189240px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls7_c00353{letter-spacing:-10.666667pt;}
.ls6_c00353{letter-spacing:0.000000pt;}
.ls3_c00353{letter-spacing:4.266667pt;}
.ls2_c00353{letter-spacing:6.400000pt;}
.ls0_c00353{letter-spacing:14.016000pt;}
.ls1_c00353{letter-spacing:35.200000pt;}
.ls4_c00353{letter-spacing:42.477333pt;}
.ls5_c00353{letter-spacing:237.568000pt;}
.ws0_c00353{word-spacing:-56.448000pt;}
.ws2_c00353{word-spacing:-39.648000pt;}
.ws1_c00353{word-spacing:-17.066667pt;}
.ws3_c00353{word-spacing:0.000000pt;}
._31_c00353{margin-left:-42.496000pt;}
._33_c00353{margin-left:-28.458667pt;}
._47_c00353{margin-left:-27.050667pt;}
._23_c00353{margin-left:-23.466667pt;}
._2f_c00353{margin-left:-21.568000pt;}
._30_c00353{margin-left:-20.394667pt;}
._38_c00353{margin-left:-18.144000pt;}
._22_c00353{margin-left:-17.237333pt;}
._1e_c00353{margin-left:-14.762667pt;}
._36_c00353{margin-left:-13.333333pt;}
._3c_c00353{margin-left:-11.178667pt;}
._f_c00353{margin-left:-9.984000pt;}
._28_c00353{margin-left:-8.482133pt;}
._29_c00353{margin-left:-7.338667pt;}
._37_c00353{margin-left:-6.408533pt;}
._27_c00353{margin-left:-5.269333pt;}
._35_c00353{margin-left:-4.181333pt;}
._13_c00353{margin-left:-3.157333pt;}
._0_c00353{margin-left:-1.365333pt;}
._c_c00353{width:1.621333pt;}
._7_c00353{width:2.645333pt;}
._6_c00353{width:4.096000pt;}
._a_c00353{width:5.120000pt;}
._4_c00353{width:6.741333pt;}
._8_c00353{width:7.914667pt;}
._17_c00353{width:9.045333pt;}
._1c_c00353{width:10.176000pt;}
._26_c00353{width:11.520000pt;}
._e_c00353{width:12.629333pt;}
._2_c00353{width:14.037333pt;}
._3_c00353{width:15.381333pt;}
._15_c00353{width:16.512000pt;}
._14_c00353{width:18.154667pt;}
._34_c00353{width:19.114667pt;}
._d_c00353{width:22.784000pt;}
._25_c00353{width:24.448000pt;}
._9_c00353{width:25.856000pt;}
._2d_c00353{width:27.072000pt;}
._12_c00353{width:28.181333pt;}
._1_c00353{width:29.909333pt;}
._10_c00353{width:30.976000pt;}
._5_c00353{width:32.000000pt;}
._2c_c00353{width:33.109333pt;}
._20_c00353{width:34.730667pt;}
._11_c00353{width:36.266667pt;}
._2b_c00353{width:37.973333pt;}
._1d_c00353{width:39.317333pt;}
._2e_c00353{width:40.256000pt;}
._b_c00353{width:41.280000pt;}
._2a_c00353{width:43.626667pt;}
._19_c00353{width:44.544000pt;}
._1a_c00353{width:45.909333pt;}
._16_c00353{width:48.213333pt;}
._1b_c00353{width:50.346667pt;}
._43_c00353{width:51.946667pt;}
._45_c00353{width:59.477333pt;}
._46_c00353{width:62.720000pt;}
._18_c00353{width:65.365333pt;}
._40_c00353{width:75.178667pt;}
._44_c00353{width:78.250667pt;}
._3a_c00353{width:111.637333pt;}
._41_c00353{width:130.496000pt;}
._3d_c00353{width:142.621333pt;}
._3f_c00353{width:165.354667pt;}
._21_c00353{width:186.880000pt;}
._24_c00353{width:201.045333pt;}
._3b_c00353{width:261.077333pt;}
._49_c00353{width:338.346667pt;}
._3e_c00353{width:356.202667pt;}
._1f_c00353{width:478.634667pt;}
._39_c00353{width:521.045333pt;}
._42_c00353{width:611.498667pt;}
._32_c00353{width:628.480000pt;}
._48_c00353{width:1266.090667pt;}
.fs7_c00353{font-size:42.666667pt;}
.fs2_c00353{font-size:68.266667pt;}
.fs1_c00353{font-size:74.666667pt;}
.fs6_c00353{font-size:77.333333pt;}
.fs5_c00353{font-size:82.666667pt;}
.fs0_c00353{font-size:85.333333pt;}
.fs4_c00353{font-size:88.000000pt;}
.fs3_c00353{font-size:90.666667pt;}
.y0_c00353{bottom:0.000000pt;}
.y26_c00353{bottom:2.760000pt;}
.y25_c00353{bottom:6.425204pt;}
.y24_c00353{bottom:68.653333pt;}
.y23_c00353{bottom:97.453333pt;}
.y22_c00353{bottom:127.986667pt;}
.y21_c00353{bottom:160.520000pt;}
.y20_c00353{bottom:188.120000pt;}
.y1f_c00353{bottom:218.120000pt;}
.y1e_c00353{bottom:248.653333pt;}
.y1d_c00353{bottom:277.453333pt;}
.y1c_c00353{bottom:309.853333pt;}
.y1b_c00353{bottom:340.120000pt;}
.y1a_c00353{bottom:369.853333pt;}
.y19_c00353{bottom:399.320000pt;}
.y18_c00353{bottom:431.053333pt;}
.y17_c00353{bottom:458.653333pt;}
.y16_c00353{bottom:489.853333pt;}
.y15_c00353{bottom:519.853333pt;}
.y14_c00353{bottom:550.386667pt;}
.y13_c00353{bottom:580.386667pt;}
.y12_c00353{bottom:610.386667pt;}
.y11_c00353{bottom:640.520000pt;}
.y10_c00353{bottom:670.120000pt;}
.yf_c00353{bottom:700.120000pt;}
.ye_c00353{bottom:730.120000pt;}
.yd_c00353{bottom:760.120000pt;}
.yc_c00353{bottom:790.120000pt;}
.yb_c00353{bottom:819.586667pt;}
.ya_c00353{bottom:849.320000pt;}
.y9_c00353{bottom:878.653333pt;}
.y8_c00353{bottom:907.986667pt;}
.y7_c00353{bottom:938.386667pt;}
.y6_c00353{bottom:967.986667pt;}
.y5_c00353{bottom:997.986667pt;}
.y4_c00353{bottom:1027.720000pt;}
.y3_c00353{bottom:1057.453333pt;}
.y2_c00353{bottom:1086.786667pt;}
.y1_c00353{bottom:1116.253333pt;}
.h3_c00353{height:11.733399pt;}
.h4_c00353{height:38.937500pt;}
.h2_c00353{height:108.041667pt;}
.h1_c00353{height:1198.000000pt;}
.h0_c00353{height:1198.066667pt;}
.w1_c00353{width:93.222667pt;}
.w0_c00353{width:747.333333pt;}
.x0_c00353{left:0.000000pt;}
.xd_c00353{left:31.866667pt;}
.xa_c00353{left:44.800000pt;}
.xc_c00353{left:55.866667pt;}
.x8_c00353{left:62.133333pt;}
.xe_c00353{left:85.600000pt;}
.x9_c00353{left:89.466667pt;}
.xb_c00353{left:92.400000pt;}
.x4_c00353{left:101.066667pt;}
.x3_c00353{left:102.400000pt;}
.x7_c00353{left:226.266667pt;}
.x6_c00353{left:227.733333pt;}
.x5_c00353{left:229.200000pt;}
.x1_c00353{left:230.666667pt;}
.x2_c00353{left:231.600000pt;}
.xf_c00353{left:240.666667pt;}
.x10_c00353{left:330.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38a6284341397457949aa0ca.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_917eee973bdab5c919dcd943.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_cf1e3bb47b4db3535d4c8ac7.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;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_c00354;src:url('chunks/assets/font_d59f15d9f2d8f44d4a68e9a0.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00354;src:url('chunks/assets/font_8de7ee31da5065864762b615.woff2')format("woff");}.ff6_c00354{font-family:ff6_c00354;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00354;src:url('chunks/assets/font_6ed3833ea33e8c1ca3252a7e.woff2')format("woff");}.ff7_c00354{font-family:ff7_c00354;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00354;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00354{font-family:ff8_c00354;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{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_c00354{vertical-align:0.000000px;}
.ls6_c00354{letter-spacing:-12.000000px;}
.ls5_c00354{letter-spacing:-6.000000px;}
.ls3_c00354{letter-spacing:0.000000px;}
.ls4_c00354{letter-spacing:6.000000px;}
.ls2_c00354{letter-spacing:13.315200px;}
.ls0_c00354{letter-spacing:15.648000px;}
.ls1_c00354{letter-spacing:55.464000px;}
.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;}
}
.ws3_c00354{word-spacing:-51.000000px;}
.ws4_c00354{word-spacing:-20.967000px;}
.ws0_c00354{word-spacing:-18.508800px;}
.ws5_c00354{word-spacing:-5.550000px;}
.ws6_c00354{word-spacing:0.000000px;}
.ws1_c00354{word-spacing:2.688000px;}
.ws2_c00354{word-spacing:15.444000px;}
._60_c00354{margin-left:-88.674000px;}
._5e_c00354{margin-left:-68.382000px;}
._59_c00354{margin-left:-53.856000px;}
._54_c00354{margin-left:-47.712000px;}
._5b_c00354{margin-left:-45.504000px;}
._66_c00354{margin-left:-39.624000px;}
._51_c00354{margin-left:-36.864000px;}
._3c_c00354{margin-left:-34.310400px;}
._6b_c00354{margin-left:-29.856000px;}
._68_c00354{margin-left:-27.042000px;}
._4e_c00354{margin-left:-25.539000px;}
._38_c00354{margin-left:-23.904000px;}
._9_c00354{margin-left:-21.792000px;}
._41_c00354{margin-left:-20.544000px;}
._5c_c00354{margin-left:-18.816000px;}
._30_c00354{margin-left:-15.810000px;}
._32_c00354{margin-left:-14.400000px;}
._6c_c00354{margin-left:-13.344000px;}
._37_c00354{margin-left:-12.249600px;}
._36_c00354{margin-left:-10.752000px;}
._0_c00354{margin-left:-9.216000px;}
._2_c00354{margin-left:-7.872000px;}
._1_c00354{margin-left:-6.144000px;}
._3_c00354{margin-left:-4.416000px;}
._4f_c00354{margin-left:-3.360000px;}
._b_c00354{margin-left:-2.208000px;}
._14_c00354{margin-left:-1.152000px;}
._16_c00354{width:1.152000px;}
._6_c00354{width:2.208000px;}
._5_c00354{width:3.840000px;}
._7_c00354{width:5.280000px;}
._d_c00354{width:6.624000px;}
._8_c00354{width:7.968000px;}
._18_c00354{width:9.216000px;}
._1c_c00354{width:10.752000px;}
._21_c00354{width:12.288000px;}
._11_c00354{width:14.112000px;}
._25_c00354{width:15.540000px;}
._17_c00354{width:16.608000px;}
._15_c00354{width:18.144000px;}
._13_c00354{width:19.968000px;}
._2c_c00354{width:21.504000px;}
._6f_c00354{width:23.250000px;}
._12_c00354{width:24.864000px;}
._1f_c00354{width:26.112000px;}
._1a_c00354{width:27.264000px;}
._42_c00354{width:28.416000px;}
._e_c00354{width:30.240000px;}
._19_c00354{width:31.776000px;}
._a_c00354{width:34.080000px;}
._2e_c00354{width:35.826000px;}
._4_c00354{width:36.864000px;}
._20_c00354{width:38.304000px;}
._1b_c00354{width:39.360000px;}
._f_c00354{width:41.184000px;}
._c_c00354{width:42.624000px;}
._23_c00354{width:44.160000px;}
._24_c00354{width:45.792000px;}
._1e_c00354{width:48.000000px;}
._1d_c00354{width:50.016000px;}
._22_c00354{width:51.264000px;}
._45_c00354{width:52.524000px;}
._10_c00354{width:53.568000px;}
._39_c00354{width:54.624000px;}
._26_c00354{width:55.968000px;}
._28_c00354{width:57.312000px;}
._3d_c00354{width:58.368000px;}
._3a_c00354{width:59.808000px;}
._4b_c00354{width:62.604000px;}
._27_c00354{width:68.256000px;}
._72_c00354{width:69.816000px;}
._2b_c00354{width:73.728000px;}
._65_c00354{width:77.460000px;}
._5f_c00354{width:85.710000px;}
._55_c00354{width:88.224000px;}
._6e_c00354{width:93.720000px;}
._3e_c00354{width:97.344000px;}
._3b_c00354{width:99.726000px;}
._62_c00354{width:100.824000px;}
._35_c00354{width:105.552000px;}
._6a_c00354{width:109.920000px;}
._29_c00354{width:112.224000px;}
._64_c00354{width:121.905600px;}
._70_c00354{width:123.780000px;}
._6d_c00354{width:126.927600px;}
._5d_c00354{width:133.464000px;}
._49_c00354{width:142.464000px;}
._61_c00354{width:146.304000px;}
._53_c00354{width:153.792000px;}
._57_c00354{width:159.456000px;}
._47_c00354{width:169.248000px;}
._44_c00354{width:181.152000px;}
._33_c00354{width:183.744000px;}
._31_c00354{width:203.100000px;}
._4d_c00354{width:207.702000px;}
._2f_c00354{width:210.096000px;}
._63_c00354{width:212.130000px;}
._50_c00354{width:261.774000px;}
._3f_c00354{width:316.866000px;}
._40_c00354{width:326.154000px;}
._52_c00354{width:337.536000px;}
._2d_c00354{width:343.890000px;}
._2a_c00354{width:345.024000px;}
._5a_c00354{width:349.152000px;}
._34_c00354{width:370.446000px;}
._71_c00354{width:392.112000px;}
._67_c00354{width:438.924000px;}
._4c_c00354{width:488.424000px;}
._46_c00354{width:517.344000px;}
._48_c00354{width:592.224000px;}
._43_c00354{width:696.864000px;}
._4a_c00354{width:732.384000px;}
._58_c00354{width:769.536000px;}
._56_c00354{width:825.888000px;}
._69_c00354{width:983.040000px;}
._73_c00354{width:1874.400000px;}
.fc2_c00354{color:transparent;}
.fc1_c00354{color:rgb(128,128,128);}
.fc0_c00354{color:rgb(0,0,0);}
.fsa_c00354{font-size:24.000000px;}
.fs9_c00354{font-size:30.000000px;}
.fsb_c00354{font-size:48.000000px;}
.fs1_c00354{font-size:60.000000px;}
.fs4_c00354{font-size:76.800000px;}
.fs8_c00354{font-size:78.000000px;}
.fs5_c00354{font-size:81.000000px;}
.fs6_c00354{font-size:84.000000px;}
.fs7_c00354{font-size:87.000000px;}
.fs0_c00354{font-size:96.000000px;}
.fs3_c00354{font-size:102.000000px;}
.fs2_c00354{font-size:114.000000px;}
.y0_c00354{bottom:0.000000px;}
.y25_c00354{bottom:3.105000px;}
.y24_c00354{bottom:7.228369px;}
.y23_c00354{bottom:108.720000px;}
.y22_c00354{bottom:141.420000px;}
.y21_c00354{bottom:211.170000px;}
.y20_c00354{bottom:245.670000px;}
.y1f_c00354{bottom:274.020000px;}
.y1e_c00354{bottom:312.870000px;}
.y1d_c00354{bottom:346.620000px;}
.y1c_c00354{bottom:378.270000px;}
.y1b_c00354{bottom:411.120000px;}
.y1a_c00354{bottom:444.120000px;}
.y19_c00354{bottom:477.120000px;}
.y18_c00354{bottom:513.270000px;}
.y17_c00354{bottom:546.420000px;}
.y16_c00354{bottom:579.120000px;}
.y15_c00354{bottom:613.920000px;}
.y14_c00354{bottom:646.920000px;}
.y13_c00354{bottom:681.120000px;}
.y12_c00354{bottom:716.070000px;}
.y11_c00354{bottom:747.570000px;}
.y10_c00354{bottom:780.270000px;}
.yf_c00354{bottom:813.420000px;}
.ye_c00354{bottom:846.720000px;}
.yd_c00354{bottom:879.570000px;}
.yc_c00354{bottom:913.170000px;}
.yb_c00354{bottom:946.620000px;}
.ya_c00354{bottom:981.120000px;}
.y9_c00354{bottom:1013.820000px;}
.y8_c00354{bottom:1046.520000px;}
.y7_c00354{bottom:1079.970000px;}
.y6_c00354{bottom:1113.720000px;}
.y5_c00354{bottom:1146.720000px;}
.y4_c00354{bottom:1179.870000px;}
.y3_c00354{bottom:1212.870000px;}
.y2_c00354{bottom:1246.020000px;}
.y1_c00354{bottom:1280.820000px;}
.h7_c00354{height:13.200073px;}
.h8_c00354{height:43.804688px;}
.h5_c00354{height:76.552734px;}
.h6_c00354{height:110.151855px;}
.h2_c00354{height:121.546875px;}
.h4_c00354{height:129.143555px;}
.h3_c00354{height:144.336914px;}
.h0_c00354{height:1383.450000px;}
.h1_c00354{height:1383.750000px;}
.w2_c00354{width:104.875500px;}
.w0_c00354{width:878.025000px;}
.w1_c00354{width:878.250000px;}
.x0_c00354{left:0.000000px;}
.xd_c00354{left:38.100000px;}
.xa_c00354{left:41.250000px;}
.x8_c00354{left:42.300000px;}
.x6_c00354{left:43.500000px;}
.x7_c00354{left:44.550000px;}
.x5_c00354{left:46.200000px;}
.x4_c00354{left:47.250000px;}
.x3_c00354{left:48.900000px;}
.x2_c00354{left:51.000000px;}
.x1_c00354{left:54.300000px;}
.xb_c00354{left:71.850000px;}
.x9_c00354{left:96.600000px;}
.xe_c00354{left:390.826721px;}
.xc_c00354{left:492.450000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls6_c00354{letter-spacing:-10.666667pt;}
.ls5_c00354{letter-spacing:-5.333333pt;}
.ls3_c00354{letter-spacing:0.000000pt;}
.ls4_c00354{letter-spacing:5.333333pt;}
.ls2_c00354{letter-spacing:11.835733pt;}
.ls0_c00354{letter-spacing:13.909333pt;}
.ls1_c00354{letter-spacing:49.301333pt;}
.ws3_c00354{word-spacing:-45.333333pt;}
.ws4_c00354{word-spacing:-18.637333pt;}
.ws0_c00354{word-spacing:-16.452267pt;}
.ws5_c00354{word-spacing:-4.933333pt;}
.ws6_c00354{word-spacing:0.000000pt;}
.ws1_c00354{word-spacing:2.389333pt;}
.ws2_c00354{word-spacing:13.728000pt;}
._60_c00354{margin-left:-78.821333pt;}
._5e_c00354{margin-left:-60.784000pt;}
._59_c00354{margin-left:-47.872000pt;}
._54_c00354{margin-left:-42.410667pt;}
._5b_c00354{margin-left:-40.448000pt;}
._66_c00354{margin-left:-35.221333pt;}
._51_c00354{margin-left:-32.768000pt;}
._3c_c00354{margin-left:-30.498133pt;}
._6b_c00354{margin-left:-26.538667pt;}
._68_c00354{margin-left:-24.037333pt;}
._4e_c00354{margin-left:-22.701333pt;}
._38_c00354{margin-left:-21.248000pt;}
._9_c00354{margin-left:-19.370667pt;}
._41_c00354{margin-left:-18.261333pt;}
._5c_c00354{margin-left:-16.725333pt;}
._30_c00354{margin-left:-14.053333pt;}
._32_c00354{margin-left:-12.800000pt;}
._6c_c00354{margin-left:-11.861333pt;}
._37_c00354{margin-left:-10.888533pt;}
._36_c00354{margin-left:-9.557333pt;}
._0_c00354{margin-left:-8.192000pt;}
._2_c00354{margin-left:-6.997333pt;}
._1_c00354{margin-left:-5.461333pt;}
._3_c00354{margin-left:-3.925333pt;}
._4f_c00354{margin-left:-2.986667pt;}
._b_c00354{margin-left:-1.962667pt;}
._14_c00354{margin-left:-1.024000pt;}
._16_c00354{width:1.024000pt;}
._6_c00354{width:1.962667pt;}
._5_c00354{width:3.413333pt;}
._7_c00354{width:4.693333pt;}
._d_c00354{width:5.888000pt;}
._8_c00354{width:7.082667pt;}
._18_c00354{width:8.192000pt;}
._1c_c00354{width:9.557333pt;}
._21_c00354{width:10.922667pt;}
._11_c00354{width:12.544000pt;}
._25_c00354{width:13.813333pt;}
._17_c00354{width:14.762667pt;}
._15_c00354{width:16.128000pt;}
._13_c00354{width:17.749333pt;}
._2c_c00354{width:19.114667pt;}
._6f_c00354{width:20.666667pt;}
._12_c00354{width:22.101333pt;}
._1f_c00354{width:23.210667pt;}
._1a_c00354{width:24.234667pt;}
._42_c00354{width:25.258667pt;}
._e_c00354{width:26.880000pt;}
._19_c00354{width:28.245333pt;}
._a_c00354{width:30.293333pt;}
._2e_c00354{width:31.845333pt;}
._4_c00354{width:32.768000pt;}
._20_c00354{width:34.048000pt;}
._1b_c00354{width:34.986667pt;}
._f_c00354{width:36.608000pt;}
._c_c00354{width:37.888000pt;}
._23_c00354{width:39.253333pt;}
._24_c00354{width:40.704000pt;}
._1e_c00354{width:42.666667pt;}
._1d_c00354{width:44.458667pt;}
._22_c00354{width:45.568000pt;}
._45_c00354{width:46.688000pt;}
._10_c00354{width:47.616000pt;}
._39_c00354{width:48.554667pt;}
._26_c00354{width:49.749333pt;}
._28_c00354{width:50.944000pt;}
._3d_c00354{width:51.882667pt;}
._3a_c00354{width:53.162667pt;}
._4b_c00354{width:55.648000pt;}
._27_c00354{width:60.672000pt;}
._72_c00354{width:62.058667pt;}
._2b_c00354{width:65.536000pt;}
._65_c00354{width:68.853333pt;}
._5f_c00354{width:76.186667pt;}
._55_c00354{width:78.421333pt;}
._6e_c00354{width:83.306667pt;}
._3e_c00354{width:86.528000pt;}
._3b_c00354{width:88.645333pt;}
._62_c00354{width:89.621333pt;}
._35_c00354{width:93.824000pt;}
._6a_c00354{width:97.706667pt;}
._29_c00354{width:99.754667pt;}
._64_c00354{width:108.360533pt;}
._70_c00354{width:110.026667pt;}
._6d_c00354{width:112.824533pt;}
._5d_c00354{width:118.634667pt;}
._49_c00354{width:126.634667pt;}
._61_c00354{width:130.048000pt;}
._53_c00354{width:136.704000pt;}
._57_c00354{width:141.738667pt;}
._47_c00354{width:150.442667pt;}
._44_c00354{width:161.024000pt;}
._33_c00354{width:163.328000pt;}
._31_c00354{width:180.533333pt;}
._4d_c00354{width:184.624000pt;}
._2f_c00354{width:186.752000pt;}
._63_c00354{width:188.560000pt;}
._50_c00354{width:232.688000pt;}
._3f_c00354{width:281.658667pt;}
._40_c00354{width:289.914667pt;}
._52_c00354{width:300.032000pt;}
._2d_c00354{width:305.680000pt;}
._2a_c00354{width:306.688000pt;}
._5a_c00354{width:310.357333pt;}
._34_c00354{width:329.285333pt;}
._71_c00354{width:348.544000pt;}
._67_c00354{width:390.154667pt;}
._4c_c00354{width:434.154667pt;}
._46_c00354{width:459.861333pt;}
._48_c00354{width:526.421333pt;}
._43_c00354{width:619.434667pt;}
._4a_c00354{width:651.008000pt;}
._58_c00354{width:684.032000pt;}
._56_c00354{width:734.122667pt;}
._69_c00354{width:873.813333pt;}
._73_c00354{width:1666.133333pt;}
.fsa_c00354{font-size:21.333333pt;}
.fs9_c00354{font-size:26.666667pt;}
.fsb_c00354{font-size:42.666667pt;}
.fs1_c00354{font-size:53.333333pt;}
.fs4_c00354{font-size:68.266667pt;}
.fs8_c00354{font-size:69.333333pt;}
.fs5_c00354{font-size:72.000000pt;}
.fs6_c00354{font-size:74.666667pt;}
.fs7_c00354{font-size:77.333333pt;}
.fs0_c00354{font-size:85.333333pt;}
.fs3_c00354{font-size:90.666667pt;}
.fs2_c00354{font-size:101.333333pt;}
.y0_c00354{bottom:0.000000pt;}
.y25_c00354{bottom:2.760000pt;}
.y24_c00354{bottom:6.425217pt;}
.y23_c00354{bottom:96.640000pt;}
.y22_c00354{bottom:125.706667pt;}
.y21_c00354{bottom:187.706667pt;}
.y20_c00354{bottom:218.373333pt;}
.y1f_c00354{bottom:243.573333pt;}
.y1e_c00354{bottom:278.106667pt;}
.y1d_c00354{bottom:308.106667pt;}
.y1c_c00354{bottom:336.240000pt;}
.y1b_c00354{bottom:365.440000pt;}
.y1a_c00354{bottom:394.773333pt;}
.y19_c00354{bottom:424.106667pt;}
.y18_c00354{bottom:456.240000pt;}
.y17_c00354{bottom:485.706667pt;}
.y16_c00354{bottom:514.773333pt;}
.y15_c00354{bottom:545.706667pt;}
.y14_c00354{bottom:575.040000pt;}
.y13_c00354{bottom:605.440000pt;}
.y12_c00354{bottom:636.506667pt;}
.y11_c00354{bottom:664.506667pt;}
.y10_c00354{bottom:693.573333pt;}
.yf_c00354{bottom:723.040000pt;}
.ye_c00354{bottom:752.640000pt;}
.yd_c00354{bottom:781.840000pt;}
.yc_c00354{bottom:811.706667pt;}
.yb_c00354{bottom:841.440000pt;}
.ya_c00354{bottom:872.106667pt;}
.y9_c00354{bottom:901.173333pt;}
.y8_c00354{bottom:930.240000pt;}
.y7_c00354{bottom:959.973333pt;}
.y6_c00354{bottom:989.973333pt;}
.y5_c00354{bottom:1019.306667pt;}
.y4_c00354{bottom:1048.773333pt;}
.y3_c00354{bottom:1078.106667pt;}
.y2_c00354{bottom:1107.573333pt;}
.y1_c00354{bottom:1138.506667pt;}
.h7_c00354{height:11.733399pt;}
.h8_c00354{height:38.937500pt;}
.h5_c00354{height:68.046875pt;}
.h6_c00354{height:97.912760pt;}
.h2_c00354{height:108.041667pt;}
.h4_c00354{height:114.794271pt;}
.h3_c00354{height:128.299479pt;}
.h0_c00354{height:1229.733333pt;}
.h1_c00354{height:1230.000000pt;}
.w2_c00354{width:93.222667pt;}
.w0_c00354{width:780.466667pt;}
.w1_c00354{width:780.666667pt;}
.x0_c00354{left:0.000000pt;}
.xd_c00354{left:33.866667pt;}
.xa_c00354{left:36.666667pt;}
.x8_c00354{left:37.600000pt;}
.x6_c00354{left:38.666667pt;}
.x7_c00354{left:39.600000pt;}
.x5_c00354{left:41.066667pt;}
.x4_c00354{left:42.000000pt;}
.x3_c00354{left:43.466667pt;}
.x2_c00354{left:45.333333pt;}
.x1_c00354{left:48.266667pt;}
.xb_c00354{left:63.866667pt;}
.x9_c00354{left:85.866667pt;}
.xe_c00354{left:347.401530pt;}
.xc_c00354{left:437.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a1a0dc0a1c8a6295aaf7320c.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_f934793c170f4e53c622a818.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_5b11b98fe6649429c5104c8a.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00355;src:url('chunks/assets/font_96bb552b5480a8161ffb220d.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00355;src:url('chunks/assets/font_4dd60adfc931ec833d274d9d.woff2')format("woff");}.ff6_c00355{font-family:ff6_c00355;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00355;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff7_c00355{font-family:ff7_c00355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00355;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00355{font-family:ff8_c00355;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.lsb_c00355{letter-spacing:-15.000000px;}
.lsa_c00355{letter-spacing:-6.000000px;}
.lsd_c00355{letter-spacing:-3.000000px;}
.ls9_c00355{letter-spacing:0.000000px;}
.ls0_c00355{letter-spacing:3.834000px;}
.ls2_c00355{letter-spacing:3.864000px;}
.ls3_c00355{letter-spacing:4.392000px;}
.ls5_c00355{letter-spacing:5.400000px;}
.ls6_c00355{letter-spacing:7.200000px;}
.ls7_c00355{letter-spacing:8.520000px;}
.ls8_c00355{letter-spacing:12.000000px;}
.lsc_c00355{letter-spacing:15.000000px;}
.ls1_c00355{letter-spacing:17.100000px;}
.ls4_c00355{letter-spacing:22.344000px;}
.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;}
}
.ws3_c00355{word-spacing:-49.704000px;}
.ws7_c00355{word-spacing:-43.084800px;}
.ws6_c00355{word-spacing:-32.424000px;}
.ws5_c00355{word-spacing:-23.136000px;}
.ws0_c00355{word-spacing:-18.798000px;}
.ws1_c00355{word-spacing:-3.798000px;}
.ws8_c00355{word-spacing:0.000000px;}
.ws4_c00355{word-spacing:3.048000px;}
.ws2_c00355{word-spacing:14.844000px;}
._30_c00355{margin-left:-132.102000px;}
._43_c00355{margin-left:-83.121000px;}
._2f_c00355{margin-left:-64.656000px;}
._35_c00355{margin-left:-42.240000px;}
._3d_c00355{margin-left:-23.448000px;}
._41_c00355{margin-left:-21.462000px;}
._34_c00355{margin-left:-19.806000px;}
._44_c00355{margin-left:-18.144000px;}
._36_c00355{margin-left:-17.052000px;}
._45_c00355{margin-left:-14.847000px;}
._0_c00355{margin-left:-13.398000px;}
._1f_c00355{margin-left:-11.484000px;}
._1e_c00355{margin-left:-10.461000px;}
._1b_c00355{margin-left:-8.985000px;}
._1_c00355{margin-left:-7.569000px;}
._d_c00355{margin-left:-6.168000px;}
._9_c00355{margin-left:-4.287000px;}
._8_c00355{margin-left:-2.730000px;}
._10_c00355{margin-left:-1.014000px;}
._16_c00355{width:1.275000px;}
._2_c00355{width:2.397000px;}
._1a_c00355{width:3.510000px;}
._3_c00355{width:4.785000px;}
._19_c00355{width:6.045000px;}
._7_c00355{width:7.308000px;}
._6_c00355{width:9.309000px;}
._2b_c00355{width:10.494000px;}
._b_c00355{width:11.544000px;}
._17_c00355{width:12.675000px;}
._4_c00355{width:14.883000px;}
._1d_c00355{width:17.394000px;}
._29_c00355{width:18.432000px;}
._2d_c00355{width:19.512000px;}
._21_c00355{width:21.126000px;}
._2a_c00355{width:22.404000px;}
._e_c00355{width:24.108000px;}
._15_c00355{width:26.286000px;}
._5_c00355{width:27.666000px;}
._24_c00355{width:29.742000px;}
._1c_c00355{width:31.605000px;}
._18_c00355{width:32.673000px;}
._11_c00355{width:33.900000px;}
._46_c00355{width:35.007000px;}
._22_c00355{width:36.654000px;}
._13_c00355{width:38.376000px;}
._3c_c00355{width:39.465000px;}
._14_c00355{width:41.025000px;}
._a_c00355{width:42.975000px;}
._c_c00355{width:45.786000px;}
._49_c00355{width:47.028000px;}
._48_c00355{width:49.326000px;}
._3a_c00355{width:52.248000px;}
._38_c00355{width:53.505000px;}
._f_c00355{width:57.249000px;}
._27_c00355{width:58.767000px;}
._25_c00355{width:59.826000px;}
._39_c00355{width:60.951000px;}
._12_c00355{width:62.934000px;}
._2c_c00355{width:66.180000px;}
._23_c00355{width:67.185000px;}
._42_c00355{width:69.357000px;}
._28_c00355{width:71.760000px;}
._3b_c00355{width:75.039000px;}
._32_c00355{width:78.180000px;}
._26_c00355{width:80.259000px;}
._31_c00355{width:96.729000px;}
._3f_c00355{width:107.859000px;}
._37_c00355{width:122.688000px;}
._3e_c00355{width:129.333000px;}
._2e_c00355{width:138.705000px;}
._47_c00355{width:169.752000px;}
._20_c00355{width:237.873000px;}
._40_c00355{width:302.781000px;}
._33_c00355{width:735.264000px;}
.fc2_c00355{color:transparent;}
.fc1_c00355{color:rgb(128,128,128);}
.fc0_c00355{color:rgb(0,0,0);}
.fsa_c00355{font-size:48.000000px;}
.fs7_c00355{font-size:67.200000px;}
.fs8_c00355{font-size:76.800000px;}
.fs1_c00355{font-size:78.000000px;}
.fs5_c00355{font-size:84.000000px;}
.fs0_c00355{font-size:87.000000px;}
.fs2_c00355{font-size:90.000000px;}
.fs6_c00355{font-size:96.000000px;}
.fs9_c00355{font-size:102.000000px;}
.fs3_c00355{font-size:105.000000px;}
.fs4_c00355{font-size:144.000000px;}
.y0_c00355{bottom:0.000000px;}
.y42_c00355{bottom:3.105000px;}
.y41_c00355{bottom:7.228357px;}
.y40_c00355{bottom:96.480000px;}
.y3f_c00355{bottom:126.930000px;}
.y1c_c00355{bottom:139.680000px;}
.y3e_c00355{bottom:160.980000px;}
.y1b_c00355{bottom:170.130000px;}
.y3d_c00355{bottom:195.480000px;}
.y1a_c00355{bottom:201.180000px;}
.y3c_c00355{bottom:228.780000px;}
.y19_c00355{bottom:230.130000px;}
.y18_c00355{bottom:259.830000px;}
.y3b_c00355{bottom:262.530000px;}
.y17_c00355{bottom:290.280000px;}
.y3a_c00355{bottom:295.980000px;}
.y16_c00355{bottom:319.380000px;}
.y39_c00355{bottom:330.180000px;}
.y15_c00355{bottom:349.080000px;}
.y38_c00355{bottom:364.830000px;}
.y14_c00355{bottom:378.630000px;}
.y37_c00355{bottom:397.980000px;}
.y13_c00355{bottom:407.130000px;}
.y36_c00355{bottom:427.230000px;}
.y35_c00355{bottom:465.780000px;}
.y12_c00355{bottom:469.080000px;}
.y11_c00355{bottom:497.580000px;}
.y34_c00355{bottom:497.880000px;}
.y10_c00355{bottom:528.480000px;}
.y33_c00355{bottom:532.980000px;}
.yf_c00355{bottom:558.180000px;}
.y32_c00355{bottom:567.330000px;}
.ye_c00355{bottom:586.530000px;}
.y31_c00355{bottom:598.380000px;}
.yd_c00355{bottom:611.280000px;}
.y30_c00355{bottom:634.230000px;}
.yc_c00355{bottom:646.980000px;}
.y2f_c00355{bottom:667.980000px;}
.yb_c00355{bottom:676.080000px;}
.y2e_c00355{bottom:701.730000px;}
.ya_c00355{bottom:706.380000px;}
.y2d_c00355{bottom:735.180000px;}
.y9_c00355{bottom:735.630000px;}
.y8_c00355{bottom:764.880000px;}
.y2c_c00355{bottom:769.230000px;}
.y7_c00355{bottom:794.130000px;}
.y2b_c00355{bottom:802.680000px;}
.y6_c00355{bottom:823.830000px;}
.y2a_c00355{bottom:836.280000px;}
.y29_c00355{bottom:869.430000px;}
.y28_c00355{bottom:903.480000px;}
.y25_c00355{bottom:904.530000px;}
.y5_c00355{bottom:920.430000px;}
.y27_c00355{bottom:936.180000px;}
.y24_c00355{bottom:937.980000px;}
.y4_c00355{bottom:950.430000px;}
.y23_c00355{bottom:969.030000px;}
.y26_c00355{bottom:969.930000px;}
.y3_c00355{bottom:978.480000px;}
.y2_c00355{bottom:1009.080000px;}
.y22_c00355{bottom:1033.830000px;}
.y21_c00355{bottom:1060.380000px;}
.y1_c00355{bottom:1071.180000px;}
.y20_c00355{bottom:1110.030000px;}
.y1f_c00355{bottom:1160.430000px;}
.y1e_c00355{bottom:1211.280000px;}
.y1d_c00355{bottom:1261.680000px;}
.hc_c00355{height:13.200074px;}
.hd_c00355{height:43.804688px;}
.h4_c00355{height:91.291992px;}
.h9_c00355{height:98.314453px;}
.h3_c00355{height:98.756836px;}
.h5_c00355{height:109.551855px;}
.h2_c00355{height:110.151855px;}
.h6_c00355{height:113.950195px;}
.ha_c00355{height:121.546875px;}
.h7_c00355{height:122.893066px;}
.hb_c00355{height:132.941895px;}
.h8_c00355{height:182.320312px;}
.h0_c00355{height:1382.700000px;}
.h1_c00355{height:1383.000000px;}
.w2_c00355{width:104.875500px;}
.w0_c00355{width:863.175000px;}
.w1_c00355{width:863.250000px;}
.x0_c00355{left:0.000000px;}
.x9_c00355{left:28.350000px;}
.x6_c00355{left:29.400000px;}
.xb_c00355{left:31.050000px;}
.x3_c00355{left:32.700000px;}
.x4_c00355{left:33.750000px;}
.x7_c00355{left:34.800000px;}
.xa_c00355{left:36.450000px;}
.x5_c00355{left:47.850000px;}
.x1_c00355{left:73.800000px;}
.x8_c00355{left:86.100000px;}
.x2_c00355{left:122.400000px;}
.xd_c00355{left:257.400000px;}
.xc_c00355{left:259.800000px;}
.x19_c00355{left:261.150000px;}
.x18_c00355{left:262.200000px;}
.x14_c00355{left:284.400000px;}
.x1a_c00355{left:294.000000px;}
.x12_c00355{left:302.700000px;}
.xe_c00355{left:326.400000px;}
.x13_c00355{left:333.750000px;}
.x1c_c00355{left:383.401749px;}
.xf_c00355{left:418.200000px;}
.x11_c00355{left:427.200000px;}
.x10_c00355{left:477.600000px;}
.x15_c00355{left:487.950000px;}
.x16_c00355{left:497.100000px;}
.x17_c00355{left:522.450000px;}
.x1b_c00355{left:790.800000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.lsb_c00355{letter-spacing:-13.333333pt;}
.lsa_c00355{letter-spacing:-5.333333pt;}
.lsd_c00355{letter-spacing:-2.666667pt;}
.ls9_c00355{letter-spacing:0.000000pt;}
.ls0_c00355{letter-spacing:3.408000pt;}
.ls2_c00355{letter-spacing:3.434667pt;}
.ls3_c00355{letter-spacing:3.904000pt;}
.ls5_c00355{letter-spacing:4.800000pt;}
.ls6_c00355{letter-spacing:6.400000pt;}
.ls7_c00355{letter-spacing:7.573333pt;}
.ls8_c00355{letter-spacing:10.666667pt;}
.lsc_c00355{letter-spacing:13.333333pt;}
.ls1_c00355{letter-spacing:15.200000pt;}
.ls4_c00355{letter-spacing:19.861333pt;}
.ws3_c00355{word-spacing:-44.181333pt;}
.ws7_c00355{word-spacing:-38.297600pt;}
.ws6_c00355{word-spacing:-28.821333pt;}
.ws5_c00355{word-spacing:-20.565333pt;}
.ws0_c00355{word-spacing:-16.709333pt;}
.ws1_c00355{word-spacing:-3.376000pt;}
.ws8_c00355{word-spacing:0.000000pt;}
.ws4_c00355{word-spacing:2.709333pt;}
.ws2_c00355{word-spacing:13.194667pt;}
._30_c00355{margin-left:-117.424000pt;}
._43_c00355{margin-left:-73.885333pt;}
._2f_c00355{margin-left:-57.472000pt;}
._35_c00355{margin-left:-37.546667pt;}
._3d_c00355{margin-left:-20.842667pt;}
._41_c00355{margin-left:-19.077333pt;}
._34_c00355{margin-left:-17.605333pt;}
._44_c00355{margin-left:-16.128000pt;}
._36_c00355{margin-left:-15.157333pt;}
._45_c00355{margin-left:-13.197333pt;}
._0_c00355{margin-left:-11.909333pt;}
._1f_c00355{margin-left:-10.208000pt;}
._1e_c00355{margin-left:-9.298667pt;}
._1b_c00355{margin-left:-7.986667pt;}
._1_c00355{margin-left:-6.728000pt;}
._d_c00355{margin-left:-5.482667pt;}
._9_c00355{margin-left:-3.810667pt;}
._8_c00355{margin-left:-2.426667pt;}
._10_c00355{margin-left:-0.901333pt;}
._16_c00355{width:1.133333pt;}
._2_c00355{width:2.130667pt;}
._1a_c00355{width:3.120000pt;}
._3_c00355{width:4.253333pt;}
._19_c00355{width:5.373333pt;}
._7_c00355{width:6.496000pt;}
._6_c00355{width:8.274667pt;}
._2b_c00355{width:9.328000pt;}
._b_c00355{width:10.261333pt;}
._17_c00355{width:11.266667pt;}
._4_c00355{width:13.229333pt;}
._1d_c00355{width:15.461333pt;}
._29_c00355{width:16.384000pt;}
._2d_c00355{width:17.344000pt;}
._21_c00355{width:18.778667pt;}
._2a_c00355{width:19.914667pt;}
._e_c00355{width:21.429333pt;}
._15_c00355{width:23.365333pt;}
._5_c00355{width:24.592000pt;}
._24_c00355{width:26.437333pt;}
._1c_c00355{width:28.093333pt;}
._18_c00355{width:29.042667pt;}
._11_c00355{width:30.133333pt;}
._46_c00355{width:31.117333pt;}
._22_c00355{width:32.581333pt;}
._13_c00355{width:34.112000pt;}
._3c_c00355{width:35.080000pt;}
._14_c00355{width:36.466667pt;}
._a_c00355{width:38.200000pt;}
._c_c00355{width:40.698667pt;}
._49_c00355{width:41.802667pt;}
._48_c00355{width:43.845333pt;}
._3a_c00355{width:46.442667pt;}
._38_c00355{width:47.560000pt;}
._f_c00355{width:50.888000pt;}
._27_c00355{width:52.237333pt;}
._25_c00355{width:53.178667pt;}
._39_c00355{width:54.178667pt;}
._12_c00355{width:55.941333pt;}
._2c_c00355{width:58.826667pt;}
._23_c00355{width:59.720000pt;}
._42_c00355{width:61.650667pt;}
._28_c00355{width:63.786667pt;}
._3b_c00355{width:66.701333pt;}
._32_c00355{width:69.493333pt;}
._26_c00355{width:71.341333pt;}
._31_c00355{width:85.981333pt;}
._3f_c00355{width:95.874667pt;}
._37_c00355{width:109.056000pt;}
._3e_c00355{width:114.962667pt;}
._2e_c00355{width:123.293333pt;}
._47_c00355{width:150.890667pt;}
._20_c00355{width:211.442667pt;}
._40_c00355{width:269.138667pt;}
._33_c00355{width:653.568000pt;}
.fsa_c00355{font-size:42.666667pt;}
.fs7_c00355{font-size:59.733333pt;}
.fs8_c00355{font-size:68.266667pt;}
.fs1_c00355{font-size:69.333333pt;}
.fs5_c00355{font-size:74.666667pt;}
.fs0_c00355{font-size:77.333333pt;}
.fs2_c00355{font-size:80.000000pt;}
.fs6_c00355{font-size:85.333333pt;}
.fs9_c00355{font-size:90.666667pt;}
.fs3_c00355{font-size:93.333333pt;}
.fs4_c00355{font-size:128.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y42_c00355{bottom:2.760000pt;}
.y41_c00355{bottom:6.425206pt;}
.y40_c00355{bottom:85.760000pt;}
.y3f_c00355{bottom:112.826667pt;}
.y1c_c00355{bottom:124.160000pt;}
.y3e_c00355{bottom:143.093333pt;}
.y1b_c00355{bottom:151.226667pt;}
.y3d_c00355{bottom:173.760000pt;}
.y1a_c00355{bottom:178.826667pt;}
.y3c_c00355{bottom:203.360000pt;}
.y19_c00355{bottom:204.560000pt;}
.y18_c00355{bottom:230.960000pt;}
.y3b_c00355{bottom:233.360000pt;}
.y17_c00355{bottom:258.026667pt;}
.y3a_c00355{bottom:263.093333pt;}
.y16_c00355{bottom:283.893333pt;}
.y39_c00355{bottom:293.493333pt;}
.y15_c00355{bottom:310.293333pt;}
.y38_c00355{bottom:324.293333pt;}
.y14_c00355{bottom:336.560000pt;}
.y37_c00355{bottom:353.760000pt;}
.y13_c00355{bottom:361.893333pt;}
.y36_c00355{bottom:379.760000pt;}
.y35_c00355{bottom:414.026667pt;}
.y12_c00355{bottom:416.960000pt;}
.y11_c00355{bottom:442.293333pt;}
.y34_c00355{bottom:442.560000pt;}
.y10_c00355{bottom:469.760000pt;}
.y33_c00355{bottom:473.760000pt;}
.yf_c00355{bottom:496.160000pt;}
.y32_c00355{bottom:504.293333pt;}
.ye_c00355{bottom:521.360000pt;}
.y31_c00355{bottom:531.893333pt;}
.yd_c00355{bottom:543.360000pt;}
.y30_c00355{bottom:563.760000pt;}
.yc_c00355{bottom:575.093333pt;}
.y2f_c00355{bottom:593.760000pt;}
.yb_c00355{bottom:600.960000pt;}
.y2e_c00355{bottom:623.760000pt;}
.ya_c00355{bottom:627.893333pt;}
.y2d_c00355{bottom:653.493333pt;}
.y9_c00355{bottom:653.893333pt;}
.y8_c00355{bottom:679.893333pt;}
.y2c_c00355{bottom:683.760000pt;}
.y7_c00355{bottom:705.893333pt;}
.y2b_c00355{bottom:713.493333pt;}
.y6_c00355{bottom:732.293333pt;}
.y2a_c00355{bottom:743.360000pt;}
.y29_c00355{bottom:772.826667pt;}
.y28_c00355{bottom:803.093333pt;}
.y25_c00355{bottom:804.026667pt;}
.y5_c00355{bottom:818.160000pt;}
.y27_c00355{bottom:832.160000pt;}
.y24_c00355{bottom:833.760000pt;}
.y4_c00355{bottom:844.826667pt;}
.y23_c00355{bottom:861.360000pt;}
.y26_c00355{bottom:862.160000pt;}
.y3_c00355{bottom:869.760000pt;}
.y2_c00355{bottom:896.960000pt;}
.y22_c00355{bottom:918.960000pt;}
.y21_c00355{bottom:942.560000pt;}
.y1_c00355{bottom:952.160000pt;}
.y20_c00355{bottom:986.693333pt;}
.y1f_c00355{bottom:1031.493333pt;}
.y1e_c00355{bottom:1076.693333pt;}
.y1d_c00355{bottom:1121.493333pt;}
.hc_c00355{height:11.733399pt;}
.hd_c00355{height:38.937500pt;}
.h4_c00355{height:81.148438pt;}
.h9_c00355{height:87.390625pt;}
.h3_c00355{height:87.783854pt;}
.h5_c00355{height:97.379427pt;}
.h2_c00355{height:97.912760pt;}
.h6_c00355{height:101.289062pt;}
.ha_c00355{height:108.041667pt;}
.h7_c00355{height:109.238281pt;}
.hb_c00355{height:118.170573pt;}
.h8_c00355{height:162.062500pt;}
.h0_c00355{height:1229.066667pt;}
.h1_c00355{height:1229.333333pt;}
.w2_c00355{width:93.222667pt;}
.w0_c00355{width:767.266667pt;}
.w1_c00355{width:767.333333pt;}
.x0_c00355{left:0.000000pt;}
.x9_c00355{left:25.200000pt;}
.x6_c00355{left:26.133333pt;}
.xb_c00355{left:27.600000pt;}
.x3_c00355{left:29.066667pt;}
.x4_c00355{left:30.000000pt;}
.x7_c00355{left:30.933333pt;}
.xa_c00355{left:32.400000pt;}
.x5_c00355{left:42.533333pt;}
.x1_c00355{left:65.600000pt;}
.x8_c00355{left:76.533333pt;}
.x2_c00355{left:108.800000pt;}
.xd_c00355{left:228.800000pt;}
.xc_c00355{left:230.933333pt;}
.x19_c00355{left:232.133333pt;}
.x18_c00355{left:233.066667pt;}
.x14_c00355{left:252.800000pt;}
.x1a_c00355{left:261.333333pt;}
.x12_c00355{left:269.066667pt;}
.xe_c00355{left:290.133333pt;}
.x13_c00355{left:296.666667pt;}
.x1c_c00355{left:340.801554pt;}
.xf_c00355{left:371.733333pt;}
.x11_c00355{left:379.733333pt;}
.x10_c00355{left:424.533333pt;}
.x15_c00355{left:433.733333pt;}
.x16_c00355{left:441.866667pt;}
.x17_c00355{left:464.400000pt;}
.x1b_c00355{left:702.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3076c3e86dd3f110c49e8577.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_95f2e8c617b389a8af29be81.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_ceebd3a9e87ff81890b7c027.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls3_c00356{letter-spacing:0.000000px;}
.ls1_c00356{letter-spacing:0.648000px;}
.ls0_c00356{letter-spacing:13.008000px;}
.ls2_c00356{letter-spacing:22.368000px;}
.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:-63.504000px;}
.ws1_c00356{word-spacing:-20.967000px;}
.ws0_c00356{word-spacing:-18.508800px;}
.ws3_c00356{word-spacing:0.000000px;}
._40_c00356{margin-left:-77.430000px;}
._39_c00356{margin-left:-57.792000px;}
._d_c00356{margin-left:-50.208000px;}
._47_c00356{margin-left:-43.935000px;}
._17_c00356{margin-left:-32.448000px;}
._44_c00356{margin-left:-31.392000px;}
._1f_c00356{margin-left:-28.704000px;}
._3b_c00356{margin-left:-21.312000px;}
._34_c00356{margin-left:-18.336000px;}
._20_c00356{margin-left:-16.896000px;}
._35_c00356{margin-left:-15.451200px;}
._3a_c00356{margin-left:-14.414400px;}
._37_c00356{margin-left:-11.808000px;}
._29_c00356{margin-left:-10.656000px;}
._2a_c00356{margin-left:-8.160000px;}
._2b_c00356{margin-left:-6.528000px;}
._46_c00356{margin-left:-5.088000px;}
._12_c00356{margin-left:-3.936000px;}
._b_c00356{margin-left:-2.208000px;}
._c_c00356{margin-left:-1.056000px;}
._0_c00356{width:1.056000px;}
._5_c00356{width:2.208000px;}
._1_c00356{width:3.264000px;}
._3_c00356{width:4.416000px;}
._6_c00356{width:5.472000px;}
._2_c00356{width:6.624000px;}
._10_c00356{width:7.680000px;}
._a_c00356{width:8.736000px;}
._8_c00356{width:10.656000px;}
._4_c00356{width:12.576000px;}
._11_c00356{width:14.112000px;}
._9_c00356{width:15.648000px;}
._7_c00356{width:16.800000px;}
._2c_c00356{width:17.952000px;}
._e_c00356{width:19.008000px;}
._23_c00356{width:20.448000px;}
._f_c00356{width:21.600000px;}
._1e_c00356{width:25.152000px;}
._16_c00356{width:26.208000px;}
._1a_c00356{width:27.840000px;}
._13_c00356{width:29.568000px;}
._25_c00356{width:31.488000px;}
._1c_c00356{width:33.216000px;}
._28_c00356{width:35.040000px;}
._14_c00356{width:37.056000px;}
._15_c00356{width:38.208000px;}
._32_c00356{width:39.360000px;}
._1b_c00356{width:40.704000px;}
._21_c00356{width:42.048000px;}
._1d_c00356{width:44.064000px;}
._24_c00356{width:45.984000px;}
._19_c00356{width:47.520000px;}
._2e_c00356{width:48.672000px;}
._22_c00356{width:50.112000px;}
._30_c00356{width:51.360000px;}
._27_c00356{width:52.512000px;}
._18_c00356{width:54.816000px;}
._26_c00356{width:58.368000px;}
._2f_c00356{width:59.808000px;}
._2d_c00356{width:61.152000px;}
._3e_c00356{width:62.976000px;}
._3f_c00356{width:64.704000px;}
._31_c00356{width:67.296000px;}
._43_c00356{width:77.952000px;}
._45_c00356{width:84.252000px;}
._36_c00356{width:103.104000px;}
._38_c00356{width:207.168000px;}
._33_c00356{width:209.856000px;}
._3c_c00356{width:224.160000px;}
._3d_c00356{width:324.576000px;}
._42_c00356{width:432.960000px;}
._41_c00356{width:529.863000px;}
.fc2_c00356{color:transparent;}
.fc1_c00356{color:rgb(128,128,128);}
.fc0_c00356{color:rgb(0,0,0);}
.fs4_c00356{font-size:48.000000px;}
.fs1_c00356{font-size:76.800000px;}
.fs3_c00356{font-size:84.000000px;}
.fs2_c00356{font-size:87.000000px;}
.fs0_c00356{font-size:96.000000px;}
.y0_c00356{bottom:0.000000px;}
.y29_c00356{bottom:3.105000px;}
.y28_c00356{bottom:7.228369px;}
.y23_c00356{bottom:121.770000px;}
.y22_c00356{bottom:155.970000px;}
.y21_c00356{bottom:190.320000px;}
.y20_c00356{bottom:224.670000px;}
.y1f_c00356{bottom:258.420000px;}
.y1e_c00356{bottom:291.570000px;}
.y1d_c00356{bottom:325.020000px;}
.y1c_c00356{bottom:358.770000px;}
.y27_c00356{bottom:388.770000px;}
.y1b_c00356{bottom:392.520000px;}
.y1a_c00356{bottom:425.970000px;}
.y26_c00356{bottom:431.970000px;}
.y19_c00356{bottom:459.720000px;}
.y25_c00356{bottom:475.770000px;}
.y18_c00356{bottom:493.020000px;}
.y17_c00356{bottom:526.170000px;}
.y24_c00356{bottom:549.720000px;}
.y16_c00356{bottom:559.470000px;}
.y15_c00356{bottom:593.370000px;}
.y14_c00356{bottom:626.970000px;}
.y13_c00356{bottom:660.420000px;}
.y12_c00356{bottom:693.870000px;}
.y11_c00356{bottom:727.320000px;}
.y10_c00356{bottom:760.770000px;}
.yf_c00356{bottom:794.370000px;}
.ye_c00356{bottom:827.220000px;}
.yd_c00356{bottom:859.920000px;}
.yc_c00356{bottom:893.370000px;}
.yb_c00356{bottom:926.670000px;}
.ya_c00356{bottom:959.970000px;}
.y9_c00356{bottom:993.270000px;}
.y8_c00356{bottom:1026.570000px;}
.y7_c00356{bottom:1059.720000px;}
.y6_c00356{bottom:1092.870000px;}
.y5_c00356{bottom:1126.170000px;}
.y4_c00356{bottom:1158.870000px;}
.y3_c00356{bottom:1192.620000px;}
.y2_c00356{bottom:1225.470000px;}
.y1_c00356{bottom:1258.170000px;}
.h4_c00356{height:13.200073px;}
.h5_c00356{height:43.804688px;}
.h3_c00356{height:110.151855px;}
.h2_c00356{height:121.546875px;}
.h0_c00356{height:1383.450000px;}
.h1_c00356{height:1383.750000px;}
.w2_c00356{width:104.875500px;}
.w0_c00356{width:878.025000px;}
.w1_c00356{width:878.250000px;}
.x0_c00356{left:0.000000px;}
.x6_c00356{left:37.500000px;}
.x5_c00356{left:38.550000px;}
.x4_c00356{left:39.750000px;}
.x3_c00356{left:41.850000px;}
.x2_c00356{left:44.100000px;}
.x1_c00356{left:47.250000px;}
.x7_c00356{left:84.000000px;}
.xc_c00356{left:390.826721px;}
.x9_c00356{left:745.800000px;}
.xb_c00356{left:756.000000px;}
.x8_c00356{left:762.750000px;}
.xa_c00356{left:796.200000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls3_c00356{letter-spacing:0.000000pt;}
.ls1_c00356{letter-spacing:0.576000pt;}
.ls0_c00356{letter-spacing:11.562667pt;}
.ls2_c00356{letter-spacing:19.882667pt;}
.ws2_c00356{word-spacing:-56.448000pt;}
.ws1_c00356{word-spacing:-18.637333pt;}
.ws0_c00356{word-spacing:-16.452267pt;}
.ws3_c00356{word-spacing:0.000000pt;}
._40_c00356{margin-left:-68.826667pt;}
._39_c00356{margin-left:-51.370667pt;}
._d_c00356{margin-left:-44.629333pt;}
._47_c00356{margin-left:-39.053333pt;}
._17_c00356{margin-left:-28.842667pt;}
._44_c00356{margin-left:-27.904000pt;}
._1f_c00356{margin-left:-25.514667pt;}
._3b_c00356{margin-left:-18.944000pt;}
._34_c00356{margin-left:-16.298667pt;}
._20_c00356{margin-left:-15.018667pt;}
._35_c00356{margin-left:-13.734400pt;}
._3a_c00356{margin-left:-12.812800pt;}
._37_c00356{margin-left:-10.496000pt;}
._29_c00356{margin-left:-9.472000pt;}
._2a_c00356{margin-left:-7.253333pt;}
._2b_c00356{margin-left:-5.802667pt;}
._46_c00356{margin-left:-4.522667pt;}
._12_c00356{margin-left:-3.498667pt;}
._b_c00356{margin-left:-1.962667pt;}
._c_c00356{margin-left:-0.938667pt;}
._0_c00356{width:0.938667pt;}
._5_c00356{width:1.962667pt;}
._1_c00356{width:2.901333pt;}
._3_c00356{width:3.925333pt;}
._6_c00356{width:4.864000pt;}
._2_c00356{width:5.888000pt;}
._10_c00356{width:6.826667pt;}
._a_c00356{width:7.765333pt;}
._8_c00356{width:9.472000pt;}
._4_c00356{width:11.178667pt;}
._11_c00356{width:12.544000pt;}
._9_c00356{width:13.909333pt;}
._7_c00356{width:14.933333pt;}
._2c_c00356{width:15.957333pt;}
._e_c00356{width:16.896000pt;}
._23_c00356{width:18.176000pt;}
._f_c00356{width:19.200000pt;}
._1e_c00356{width:22.357333pt;}
._16_c00356{width:23.296000pt;}
._1a_c00356{width:24.746667pt;}
._13_c00356{width:26.282667pt;}
._25_c00356{width:27.989333pt;}
._1c_c00356{width:29.525333pt;}
._28_c00356{width:31.146667pt;}
._14_c00356{width:32.938667pt;}
._15_c00356{width:33.962667pt;}
._32_c00356{width:34.986667pt;}
._1b_c00356{width:36.181333pt;}
._21_c00356{width:37.376000pt;}
._1d_c00356{width:39.168000pt;}
._24_c00356{width:40.874667pt;}
._19_c00356{width:42.240000pt;}
._2e_c00356{width:43.264000pt;}
._22_c00356{width:44.544000pt;}
._30_c00356{width:45.653333pt;}
._27_c00356{width:46.677333pt;}
._18_c00356{width:48.725333pt;}
._26_c00356{width:51.882667pt;}
._2f_c00356{width:53.162667pt;}
._2d_c00356{width:54.357333pt;}
._3e_c00356{width:55.978667pt;}
._3f_c00356{width:57.514667pt;}
._31_c00356{width:59.818667pt;}
._43_c00356{width:69.290667pt;}
._45_c00356{width:74.890667pt;}
._36_c00356{width:91.648000pt;}
._38_c00356{width:184.149333pt;}
._33_c00356{width:186.538667pt;}
._3c_c00356{width:199.253333pt;}
._3d_c00356{width:288.512000pt;}
._42_c00356{width:384.853333pt;}
._41_c00356{width:470.989333pt;}
.fs4_c00356{font-size:42.666667pt;}
.fs1_c00356{font-size:68.266667pt;}
.fs3_c00356{font-size:74.666667pt;}
.fs2_c00356{font-size:77.333333pt;}
.fs0_c00356{font-size:85.333333pt;}
.y0_c00356{bottom:0.000000pt;}
.y29_c00356{bottom:2.760000pt;}
.y28_c00356{bottom:6.425217pt;}
.y23_c00356{bottom:108.240000pt;}
.y22_c00356{bottom:138.640000pt;}
.y21_c00356{bottom:169.173333pt;}
.y20_c00356{bottom:199.706667pt;}
.y1f_c00356{bottom:229.706667pt;}
.y1e_c00356{bottom:259.173333pt;}
.y1d_c00356{bottom:288.906667pt;}
.y1c_c00356{bottom:318.906667pt;}
.y27_c00356{bottom:345.573333pt;}
.y1b_c00356{bottom:348.906667pt;}
.y1a_c00356{bottom:378.640000pt;}
.y26_c00356{bottom:383.973333pt;}
.y19_c00356{bottom:408.640000pt;}
.y25_c00356{bottom:422.906667pt;}
.y18_c00356{bottom:438.240000pt;}
.y17_c00356{bottom:467.706667pt;}
.y24_c00356{bottom:488.640000pt;}
.y16_c00356{bottom:497.306667pt;}
.y15_c00356{bottom:527.440000pt;}
.y14_c00356{bottom:557.306667pt;}
.y13_c00356{bottom:587.040000pt;}
.y12_c00356{bottom:616.773333pt;}
.y11_c00356{bottom:646.506667pt;}
.y10_c00356{bottom:676.240000pt;}
.yf_c00356{bottom:706.106667pt;}
.ye_c00356{bottom:735.306667pt;}
.yd_c00356{bottom:764.373333pt;}
.yc_c00356{bottom:794.106667pt;}
.yb_c00356{bottom:823.706667pt;}
.ya_c00356{bottom:853.306667pt;}
.y9_c00356{bottom:882.906667pt;}
.y8_c00356{bottom:912.506667pt;}
.y7_c00356{bottom:941.973333pt;}
.y6_c00356{bottom:971.440000pt;}
.y5_c00356{bottom:1001.040000pt;}
.y4_c00356{bottom:1030.106667pt;}
.y3_c00356{bottom:1060.106667pt;}
.y2_c00356{bottom:1089.306667pt;}
.y1_c00356{bottom:1118.373333pt;}
.h4_c00356{height:11.733399pt;}
.h5_c00356{height:38.937500pt;}
.h3_c00356{height:97.912760pt;}
.h2_c00356{height:108.041667pt;}
.h0_c00356{height:1229.733333pt;}
.h1_c00356{height:1230.000000pt;}
.w2_c00356{width:93.222667pt;}
.w0_c00356{width:780.466667pt;}
.w1_c00356{width:780.666667pt;}
.x0_c00356{left:0.000000pt;}
.x6_c00356{left:33.333333pt;}
.x5_c00356{left:34.266667pt;}
.x4_c00356{left:35.333333pt;}
.x3_c00356{left:37.200000pt;}
.x2_c00356{left:39.200000pt;}
.x1_c00356{left:42.000000pt;}
.x7_c00356{left:74.666667pt;}
.xc_c00356{left:347.401530pt;}
.x9_c00356{left:662.933333pt;}
.xb_c00356{left:672.000000pt;}
.x8_c00356{left:678.000000pt;}
.xa_c00356{left:707.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a03383865e16e3b9261591b.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_1603ba362e02c59f69947d46.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_a2ff0ac77936d4488b043a87.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls5_c00357{letter-spacing:-12.000000px;}
.ls3_c00357{letter-spacing:0.000000px;}
.ls4_c00357{letter-spacing:15.000000px;}
.ls0_c00357{letter-spacing:23.100000px;}
.ls2_c00357{letter-spacing:53.433000px;}
.ls1_c00357{letter-spacing:180.633000px;}
.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;}
}
.ws2_c00357{word-spacing:-33.798000px;}
.ws0_c00357{word-spacing:-23.136000px;}
.ws4_c00357{word-spacing:-20.244000px;}
.ws1_c00357{word-spacing:-0.702000px;}
.ws6_c00357{word-spacing:0.000000px;}
.ws3_c00357{word-spacing:6.564000px;}
.ws5_c00357{word-spacing:12.744000px;}
._33_c00357{margin-left:-28.416000px;}
._37_c00357{margin-left:-18.552000px;}
._31_c00357{margin-left:-16.920000px;}
._3c_c00357{margin-left:-12.894000px;}
._2c_c00357{margin-left:-11.070000px;}
._3d_c00357{margin-left:-10.053000px;}
._30_c00357{margin-left:-8.955000px;}
._29_c00357{margin-left:-7.488000px;}
._e_c00357{margin-left:-5.280000px;}
._c_c00357{margin-left:-3.840000px;}
._d_c00357{margin-left:-2.400000px;}
._14_c00357{margin-left:-1.152000px;}
._4_c00357{width:1.248000px;}
._3_c00357{width:3.072000px;}
._7_c00357{width:4.224000px;}
._2a_c00357{width:5.232000px;}
._b_c00357{width:6.240000px;}
._1f_c00357{width:7.296000px;}
._a_c00357{width:8.544000px;}
._23_c00357{width:9.984000px;}
._1_c00357{width:11.040000px;}
._1d_c00357{width:12.096000px;}
._16_c00357{width:13.344000px;}
._5_c00357{width:14.688000px;}
._2b_c00357{width:15.696000px;}
._2_c00357{width:16.704000px;}
._21_c00357{width:17.952000px;}
._0_c00357{width:19.200000px;}
._20_c00357{width:21.600000px;}
._35_c00357{width:23.088000px;}
._24_c00357{width:25.152000px;}
._2e_c00357{width:26.352000px;}
._8_c00357{width:28.512000px;}
._10_c00357{width:30.144000px;}
._6_c00357{width:31.584000px;}
._9_c00357{width:33.408000px;}
._18_c00357{width:34.944000px;}
._1c_c00357{width:36.480000px;}
._1e_c00357{width:37.536000px;}
._1a_c00357{width:39.168000px;}
._15_c00357{width:40.512000px;}
._13_c00357{width:41.568000px;}
._17_c00357{width:43.008000px;}
._1b_c00357{width:44.544000px;}
._f_c00357{width:45.792000px;}
._22_c00357{width:47.136000px;}
._19_c00357{width:48.480000px;}
._11_c00357{width:50.496000px;}
._2f_c00357{width:51.792000px;}
._26_c00357{width:54.624000px;}
._12_c00357{width:58.080000px;}
._39_c00357{width:59.808000px;}
._25_c00357{width:62.304000px;}
._3f_c00357{width:68.880000px;}
._3a_c00357{width:71.232000px;}
._2d_c00357{width:73.620000px;}
._27_c00357{width:75.936000px;}
._3b_c00357{width:78.285000px;}
._38_c00357{width:81.240000px;}
._3e_c00357{width:83.364000px;}
._28_c00357{width:129.930000px;}
._40_c00357{width:166.080000px;}
._42_c00357{width:190.608000px;}
._36_c00357{width:350.112000px;}
._34_c00357{width:381.888000px;}
._32_c00357{width:623.052000px;}
._43_c00357{width:647.412000px;}
._41_c00357{width:1330.392000px;}
.fc2_c00357{color:transparent;}
.fc1_c00357{color:rgb(128,128,128);}
.fc0_c00357{color:rgb(0,0,0);}
.fs4_c00357{font-size:48.000000px;}
.fs1_c00357{font-size:78.000000px;}
.fs3_c00357{font-size:84.000000px;}
.fs2_c00357{font-size:87.000000px;}
.fs0_c00357{font-size:96.000000px;}
.y0_c00357{bottom:0.000000px;}
.y26_c00357{bottom:3.105000px;}
.y25_c00357{bottom:7.228357px;}
.y24_c00357{bottom:79.080000px;}
.y23_c00357{bottom:112.680000px;}
.y22_c00357{bottom:148.230000px;}
.y21_c00357{bottom:181.230000px;}
.y20_c00357{bottom:215.280000px;}
.y1f_c00357{bottom:249.180000px;}
.y1e_c00357{bottom:282.780000px;}
.y1d_c00357{bottom:316.680000px;}
.y1c_c00357{bottom:349.680000px;}
.y1b_c00357{bottom:381.780000px;}
.y1a_c00357{bottom:412.380000px;}
.y19_c00357{bottom:448.980000px;}
.y18_c00357{bottom:488.730000px;}
.y17_c00357{bottom:521.730000px;}
.y16_c00357{bottom:552.930000px;}
.y15_c00357{bottom:585.180000px;}
.y14_c00357{bottom:618.030000px;}
.y13_c00357{bottom:648.330000px;}
.y12_c00357{bottom:692.280000px;}
.y11_c00357{bottom:722.580000px;}
.y10_c00357{bottom:756.630000px;}
.yf_c00357{bottom:789.180000px;}
.ye_c00357{bottom:821.580000px;}
.yd_c00357{bottom:855.930000px;}
.yc_c00357{bottom:889.380000px;}
.yb_c00357{bottom:922.830000px;}
.ya_c00357{bottom:956.130000px;}
.y9_c00357{bottom:988.230000px;}
.y8_c00357{bottom:1021.380000px;}
.y7_c00357{bottom:1055.130000px;}
.y6_c00357{bottom:1088.430000px;}
.y5_c00357{bottom:1122.180000px;}
.y4_c00357{bottom:1155.030000px;}
.y3_c00357{bottom:1188.330000px;}
.y2_c00357{bottom:1222.080000px;}
.y1_c00357{bottom:1255.230000px;}
.h3_c00357{height:13.200074px;}
.h4_c00357{height:43.804688px;}
.h2_c00357{height:121.546875px;}
.h0_c00357{height:1382.700000px;}
.h1_c00357{height:1383.000000px;}
.w2_c00357{width:104.875500px;}
.w0_c00357{width:863.175000px;}
.w1_c00357{width:863.250000px;}
.x0_c00357{left:0.000000px;}
.x9_c00357{left:53.400000px;}
.x6_c00357{left:54.750000px;}
.x7_c00357{left:56.400000px;}
.x5_c00357{left:58.650000px;}
.x4_c00357{left:70.500000px;}
.xc_c00357{left:264.900000px;}
.xb_c00357{left:267.600000px;}
.xa_c00357{left:268.650000px;}
.x2_c00357{left:272.400000px;}
.x3_c00357{left:273.600000px;}
.x1_c00357{left:275.100000px;}
.xe_c00357{left:383.401749px;}
.x8_c00357{left:404.400000px;}
.xd_c00357{left:789.150000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls5_c00357{letter-spacing:-10.666667pt;}
.ls3_c00357{letter-spacing:0.000000pt;}
.ls4_c00357{letter-spacing:13.333333pt;}
.ls0_c00357{letter-spacing:20.533333pt;}
.ls2_c00357{letter-spacing:47.496000pt;}
.ls1_c00357{letter-spacing:160.562667pt;}
.ws2_c00357{word-spacing:-30.042667pt;}
.ws0_c00357{word-spacing:-20.565333pt;}
.ws4_c00357{word-spacing:-17.994667pt;}
.ws1_c00357{word-spacing:-0.624000pt;}
.ws6_c00357{word-spacing:0.000000pt;}
.ws3_c00357{word-spacing:5.834667pt;}
.ws5_c00357{word-spacing:11.328000pt;}
._33_c00357{margin-left:-25.258667pt;}
._37_c00357{margin-left:-16.490667pt;}
._31_c00357{margin-left:-15.040000pt;}
._3c_c00357{margin-left:-11.461333pt;}
._2c_c00357{margin-left:-9.840000pt;}
._3d_c00357{margin-left:-8.936000pt;}
._30_c00357{margin-left:-7.960000pt;}
._29_c00357{margin-left:-6.656000pt;}
._e_c00357{margin-left:-4.693333pt;}
._c_c00357{margin-left:-3.413333pt;}
._d_c00357{margin-left:-2.133333pt;}
._14_c00357{margin-left:-1.024000pt;}
._4_c00357{width:1.109333pt;}
._3_c00357{width:2.730667pt;}
._7_c00357{width:3.754667pt;}
._2a_c00357{width:4.650667pt;}
._b_c00357{width:5.546667pt;}
._1f_c00357{width:6.485333pt;}
._a_c00357{width:7.594667pt;}
._23_c00357{width:8.874667pt;}
._1_c00357{width:9.813333pt;}
._1d_c00357{width:10.752000pt;}
._16_c00357{width:11.861333pt;}
._5_c00357{width:13.056000pt;}
._2b_c00357{width:13.952000pt;}
._2_c00357{width:14.848000pt;}
._21_c00357{width:15.957333pt;}
._0_c00357{width:17.066667pt;}
._20_c00357{width:19.200000pt;}
._35_c00357{width:20.522667pt;}
._24_c00357{width:22.357333pt;}
._2e_c00357{width:23.424000pt;}
._8_c00357{width:25.344000pt;}
._10_c00357{width:26.794667pt;}
._6_c00357{width:28.074667pt;}
._9_c00357{width:29.696000pt;}
._18_c00357{width:31.061333pt;}
._1c_c00357{width:32.426667pt;}
._1e_c00357{width:33.365333pt;}
._1a_c00357{width:34.816000pt;}
._15_c00357{width:36.010667pt;}
._13_c00357{width:36.949333pt;}
._17_c00357{width:38.229333pt;}
._1b_c00357{width:39.594667pt;}
._f_c00357{width:40.704000pt;}
._22_c00357{width:41.898667pt;}
._19_c00357{width:43.093333pt;}
._11_c00357{width:44.885333pt;}
._2f_c00357{width:46.037333pt;}
._26_c00357{width:48.554667pt;}
._12_c00357{width:51.626667pt;}
._39_c00357{width:53.162667pt;}
._25_c00357{width:55.381333pt;}
._3f_c00357{width:61.226667pt;}
._3a_c00357{width:63.317333pt;}
._2d_c00357{width:65.440000pt;}
._27_c00357{width:67.498667pt;}
._3b_c00357{width:69.586667pt;}
._38_c00357{width:72.213333pt;}
._3e_c00357{width:74.101333pt;}
._28_c00357{width:115.493333pt;}
._40_c00357{width:147.626667pt;}
._42_c00357{width:169.429333pt;}
._36_c00357{width:311.210667pt;}
._34_c00357{width:339.456000pt;}
._32_c00357{width:553.824000pt;}
._43_c00357{width:575.477333pt;}
._41_c00357{width:1182.570667pt;}
.fs4_c00357{font-size:42.666667pt;}
.fs1_c00357{font-size:69.333333pt;}
.fs3_c00357{font-size:74.666667pt;}
.fs2_c00357{font-size:77.333333pt;}
.fs0_c00357{font-size:85.333333pt;}
.y0_c00357{bottom:0.000000pt;}
.y26_c00357{bottom:2.760000pt;}
.y25_c00357{bottom:6.425206pt;}
.y24_c00357{bottom:70.293333pt;}
.y23_c00357{bottom:100.160000pt;}
.y22_c00357{bottom:131.760000pt;}
.y21_c00357{bottom:161.093333pt;}
.y20_c00357{bottom:191.360000pt;}
.y1f_c00357{bottom:221.493333pt;}
.y1e_c00357{bottom:251.360000pt;}
.y1d_c00357{bottom:281.493333pt;}
.y1c_c00357{bottom:310.826667pt;}
.y1b_c00357{bottom:339.360000pt;}
.y1a_c00357{bottom:366.560000pt;}
.y19_c00357{bottom:399.093333pt;}
.y18_c00357{bottom:434.426667pt;}
.y17_c00357{bottom:463.760000pt;}
.y16_c00357{bottom:491.493333pt;}
.y15_c00357{bottom:520.160000pt;}
.y14_c00357{bottom:549.360000pt;}
.y13_c00357{bottom:576.293333pt;}
.y12_c00357{bottom:615.360000pt;}
.y11_c00357{bottom:642.293333pt;}
.y10_c00357{bottom:672.560000pt;}
.yf_c00357{bottom:701.493333pt;}
.ye_c00357{bottom:730.293333pt;}
.yd_c00357{bottom:760.826667pt;}
.yc_c00357{bottom:790.560000pt;}
.yb_c00357{bottom:820.293333pt;}
.ya_c00357{bottom:849.893333pt;}
.y9_c00357{bottom:878.426667pt;}
.y8_c00357{bottom:907.893333pt;}
.y7_c00357{bottom:937.893333pt;}
.y6_c00357{bottom:967.493333pt;}
.y5_c00357{bottom:997.493333pt;}
.y4_c00357{bottom:1026.693333pt;}
.y3_c00357{bottom:1056.293333pt;}
.y2_c00357{bottom:1086.293333pt;}
.y1_c00357{bottom:1115.760000pt;}
.h3_c00357{height:11.733399pt;}
.h4_c00357{height:38.937500pt;}
.h2_c00357{height:108.041667pt;}
.h0_c00357{height:1229.066667pt;}
.h1_c00357{height:1229.333333pt;}
.w2_c00357{width:93.222667pt;}
.w0_c00357{width:767.266667pt;}
.w1_c00357{width:767.333333pt;}
.x0_c00357{left:0.000000pt;}
.x9_c00357{left:47.466667pt;}
.x6_c00357{left:48.666667pt;}
.x7_c00357{left:50.133333pt;}
.x5_c00357{left:52.133333pt;}
.x4_c00357{left:62.666667pt;}
.xc_c00357{left:235.466667pt;}
.xb_c00357{left:237.866667pt;}
.xa_c00357{left:238.800000pt;}
.x2_c00357{left:242.133333pt;}
.x3_c00357{left:243.200000pt;}
.x1_c00357{left:244.533333pt;}
.xe_c00357{left:340.801554pt;}
.x8_c00357{left:359.466667pt;}
.xd_c00357{left:701.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73e9578f179b9712163ee705.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_f325820f830dec454bd85159.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_7910740f94ed80037dfdd2ab.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls2_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:15.564000px;}
.ls1_c00358{letter-spacing:16.380000px;}
.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;}
}
.ws2_c00358{word-spacing:-36.624000px;}
.ws4_c00358{word-spacing:-32.424000px;}
.ws3_c00358{word-spacing:-25.939200px;}
.ws0_c00358{word-spacing:-25.305000px;}
.ws5_c00358{word-spacing:-23.136000px;}
.ws1_c00358{word-spacing:-20.244000px;}
.ws6_c00358{word-spacing:0.000000px;}
._31_c00358{margin-left:-32.421000px;}
._23_c00358{margin-left:-28.704000px;}
._1e_c00358{margin-left:-23.136000px;}
._1d_c00358{margin-left:-19.392000px;}
._3d_c00358{margin-left:-17.952000px;}
._1f_c00358{margin-left:-14.688000px;}
._35_c00358{margin-left:-12.390600px;}
._3a_c00358{margin-left:-10.677000px;}
._9_c00358{margin-left:-9.504000px;}
._33_c00358{margin-left:-8.115000px;}
._8_c00358{margin-left:-6.336000px;}
._e_c00358{margin-left:-4.992000px;}
._5_c00358{margin-left:-3.675000px;}
._6_c00358{margin-left:-1.680000px;}
._2_c00358{width:1.050000px;}
._3_c00358{width:2.310000px;}
._b_c00358{width:3.840000px;}
._10_c00358{width:5.280000px;}
._16_c00358{width:6.330000px;}
._0_c00358{width:7.350000px;}
._13_c00358{width:8.928000px;}
._4_c00358{width:10.605000px;}
._f_c00358{width:11.763000px;}
._1_c00358{width:13.125000px;}
._12_c00358{width:15.072000px;}
._d_c00358{width:16.788000px;}
._44_c00358{width:18.039000px;}
._18_c00358{width:19.242000px;}
._11_c00358{width:21.216000px;}
._43_c00358{width:24.303000px;}
._1c_c00358{width:25.356000px;}
._2a_c00358{width:26.382000px;}
._20_c00358{width:27.936000px;}
._2e_c00358{width:29.157000px;}
._c_c00358{width:30.210000px;}
._7_c00358{width:32.040000px;}
._14_c00358{width:33.837000px;}
._17_c00358{width:35.085000px;}
._24_c00358{width:36.288000px;}
._25_c00358{width:37.845000px;}
._1b_c00358{width:38.946000px;}
._26_c00358{width:39.981000px;}
._27_c00358{width:41.091000px;}
._21_c00358{width:42.738000px;}
._19_c00358{width:45.312000px;}
._2d_c00358{width:47.835000px;}
._a_c00358{width:49.152000px;}
._15_c00358{width:51.453000px;}
._1a_c00358{width:54.138000px;}
._36_c00358{width:56.691000px;}
._49_c00358{width:57.837000px;}
._2f_c00358{width:58.887000px;}
._47_c00358{width:61.710000px;}
._3b_c00358{width:62.868000px;}
._2b_c00358{width:65.262000px;}
._32_c00358{width:67.056000px;}
._4a_c00358{width:72.597600px;}
._34_c00358{width:75.447000px;}
._22_c00358{width:77.127000px;}
._38_c00358{width:87.561000px;}
._48_c00358{width:91.929000px;}
._28_c00358{width:129.222000px;}
._2c_c00358{width:134.298000px;}
._3f_c00358{width:168.507000px;}
._29_c00358{width:172.170000px;}
._30_c00358{width:190.341000px;}
._41_c00358{width:198.816000px;}
._45_c00358{width:219.684000px;}
._37_c00358{width:222.744000px;}
._3e_c00358{width:269.472000px;}
._39_c00358{width:280.815000px;}
._42_c00358{width:310.731000px;}
._46_c00358{width:411.219000px;}
._3c_c00358{width:655.470000px;}
._40_c00358{width:1040.250000px;}
.fc2_c00358{color:transparent;}
.fc1_c00358{color:rgb(128,128,128);}
.fc0_c00358{color:rgb(0,0,0);}
.fs4_c00358{font-size:48.000000px;}
.fs3_c00358{font-size:67.200000px;}
.fs2_c00358{font-size:84.000000px;}
.fs1_c00358{font-size:96.000000px;}
.fs0_c00358{font-size:105.000000px;}
.y0_c00358{bottom:0.000000px;}
.y28_c00358{bottom:3.105000px;}
.y27_c00358{bottom:7.228371px;}
.y26_c00358{bottom:63.165000px;}
.y25_c00358{bottom:94.815000px;}
.y24_c00358{bottom:129.615000px;}
.y23_c00358{bottom:163.815000px;}
.y22_c00358{bottom:196.815000px;}
.y21_c00358{bottom:230.865000px;}
.y20_c00358{bottom:264.615000px;}
.y1f_c00358{bottom:298.065000px;}
.y1e_c00358{bottom:331.515000px;}
.y1d_c00358{bottom:365.565000px;}
.y1c_c00358{bottom:399.015000px;}
.y1b_c00358{bottom:432.465000px;}
.y1a_c00358{bottom:466.065000px;}
.y19_c00358{bottom:499.965000px;}
.y18_c00358{bottom:533.265000px;}
.y17_c00358{bottom:552.465000px;}
.y16_c00358{bottom:567.465000px;}
.y15_c00358{bottom:602.565000px;}
.y14_c00358{bottom:634.815000px;}
.y13_c00358{bottom:668.265000px;}
.y12_c00358{bottom:700.065000px;}
.y11_c00358{bottom:732.765000px;}
.y10_c00358{bottom:767.265000px;}
.yf_c00358{bottom:800.565000px;}
.ye_c00358{bottom:833.415000px;}
.yd_c00358{bottom:866.415000px;}
.yc_c00358{bottom:899.865000px;}
.yb_c00358{bottom:933.315000px;}
.ya_c00358{bottom:966.315000px;}
.y9_c00358{bottom:999.765000px;}
.y8_c00358{bottom:1033.965000px;}
.y7_c00358{bottom:1066.815000px;}
.y6_c00358{bottom:1099.665000px;}
.y5_c00358{bottom:1132.965000px;}
.y4_c00358{bottom:1166.865000px;}
.y3_c00358{bottom:1199.565000px;}
.y2_c00358{bottom:1232.865000px;}
.y1_c00358{bottom:1267.365000px;}
.h4_c00358{height:13.200074px;}
.h5_c00358{height:43.804688px;}
.h3_c00358{height:121.546875px;}
.h2_c00358{height:132.941895px;}
.h0_c00358{height:1360.275000px;}
.h1_c00358{height:1360.500000px;}
.w2_c00358{width:104.875500px;}
.w1_c00358{width:863.250000px;}
.w0_c00358{width:863.475000px;}
.x0_c00358{left:0.000000px;}
.xb_c00358{left:38.100000px;}
.x9_c00358{left:39.150000px;}
.xa_c00358{left:40.200000px;}
.x8_c00358{left:41.400000px;}
.x7_c00358{left:42.450000px;}
.x6_c00358{left:44.550000px;}
.x5_c00358{left:46.200000px;}
.x4_c00358{left:47.250000px;}
.x3_c00358{left:48.300000px;}
.x2_c00358{left:51.000000px;}
.xc_c00358{left:69.300000px;}
.xe_c00358{left:383.551758px;}
.x1_c00358{left:531.000000px;}
.xd_c00358{left:576.900000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls2_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:13.834667pt;}
.ls1_c00358{letter-spacing:14.560000pt;}
.ws2_c00358{word-spacing:-32.554667pt;}
.ws4_c00358{word-spacing:-28.821333pt;}
.ws3_c00358{word-spacing:-23.057067pt;}
.ws0_c00358{word-spacing:-22.493333pt;}
.ws5_c00358{word-spacing:-20.565333pt;}
.ws1_c00358{word-spacing:-17.994667pt;}
.ws6_c00358{word-spacing:0.000000pt;}
._31_c00358{margin-left:-28.818667pt;}
._23_c00358{margin-left:-25.514667pt;}
._1e_c00358{margin-left:-20.565333pt;}
._1d_c00358{margin-left:-17.237333pt;}
._3d_c00358{margin-left:-15.957333pt;}
._1f_c00358{margin-left:-13.056000pt;}
._35_c00358{margin-left:-11.013867pt;}
._3a_c00358{margin-left:-9.490667pt;}
._9_c00358{margin-left:-8.448000pt;}
._33_c00358{margin-left:-7.213333pt;}
._8_c00358{margin-left:-5.632000pt;}
._e_c00358{margin-left:-4.437333pt;}
._5_c00358{margin-left:-3.266667pt;}
._6_c00358{margin-left:-1.493333pt;}
._2_c00358{width:0.933333pt;}
._3_c00358{width:2.053333pt;}
._b_c00358{width:3.413333pt;}
._10_c00358{width:4.693333pt;}
._16_c00358{width:5.626667pt;}
._0_c00358{width:6.533333pt;}
._13_c00358{width:7.936000pt;}
._4_c00358{width:9.426667pt;}
._f_c00358{width:10.456000pt;}
._1_c00358{width:11.666667pt;}
._12_c00358{width:13.397333pt;}
._d_c00358{width:14.922667pt;}
._44_c00358{width:16.034667pt;}
._18_c00358{width:17.104000pt;}
._11_c00358{width:18.858667pt;}
._43_c00358{width:21.602667pt;}
._1c_c00358{width:22.538667pt;}
._2a_c00358{width:23.450667pt;}
._20_c00358{width:24.832000pt;}
._2e_c00358{width:25.917333pt;}
._c_c00358{width:26.853333pt;}
._7_c00358{width:28.480000pt;}
._14_c00358{width:30.077333pt;}
._17_c00358{width:31.186667pt;}
._24_c00358{width:32.256000pt;}
._25_c00358{width:33.640000pt;}
._1b_c00358{width:34.618667pt;}
._26_c00358{width:35.538667pt;}
._27_c00358{width:36.525333pt;}
._21_c00358{width:37.989333pt;}
._19_c00358{width:40.277333pt;}
._2d_c00358{width:42.520000pt;}
._a_c00358{width:43.690667pt;}
._15_c00358{width:45.736000pt;}
._1a_c00358{width:48.122667pt;}
._36_c00358{width:50.392000pt;}
._49_c00358{width:51.410667pt;}
._2f_c00358{width:52.344000pt;}
._47_c00358{width:54.853333pt;}
._3b_c00358{width:55.882667pt;}
._2b_c00358{width:58.010667pt;}
._32_c00358{width:59.605333pt;}
._4a_c00358{width:64.531200pt;}
._34_c00358{width:67.064000pt;}
._22_c00358{width:68.557333pt;}
._38_c00358{width:77.832000pt;}
._48_c00358{width:81.714667pt;}
._28_c00358{width:114.864000pt;}
._2c_c00358{width:119.376000pt;}
._3f_c00358{width:149.784000pt;}
._29_c00358{width:153.040000pt;}
._30_c00358{width:169.192000pt;}
._41_c00358{width:176.725333pt;}
._45_c00358{width:195.274667pt;}
._37_c00358{width:197.994667pt;}
._3e_c00358{width:239.530667pt;}
._39_c00358{width:249.613333pt;}
._42_c00358{width:276.205333pt;}
._46_c00358{width:365.528000pt;}
._3c_c00358{width:582.640000pt;}
._40_c00358{width:924.666667pt;}
.fs4_c00358{font-size:42.666667pt;}
.fs3_c00358{font-size:59.733333pt;}
.fs2_c00358{font-size:74.666667pt;}
.fs1_c00358{font-size:85.333333pt;}
.fs0_c00358{font-size:93.333333pt;}
.y0_c00358{bottom:0.000000pt;}
.y28_c00358{bottom:2.760000pt;}
.y27_c00358{bottom:6.425219pt;}
.y26_c00358{bottom:56.146667pt;}
.y25_c00358{bottom:84.280000pt;}
.y24_c00358{bottom:115.213333pt;}
.y23_c00358{bottom:145.613333pt;}
.y22_c00358{bottom:174.946667pt;}
.y21_c00358{bottom:205.213333pt;}
.y20_c00358{bottom:235.213333pt;}
.y1f_c00358{bottom:264.946667pt;}
.y1e_c00358{bottom:294.680000pt;}
.y1d_c00358{bottom:324.946667pt;}
.y1c_c00358{bottom:354.680000pt;}
.y1b_c00358{bottom:384.413333pt;}
.y1a_c00358{bottom:414.280000pt;}
.y19_c00358{bottom:444.413333pt;}
.y18_c00358{bottom:474.013333pt;}
.y17_c00358{bottom:491.080000pt;}
.y16_c00358{bottom:504.413333pt;}
.y15_c00358{bottom:535.613333pt;}
.y14_c00358{bottom:564.280000pt;}
.y13_c00358{bottom:594.013333pt;}
.y12_c00358{bottom:622.280000pt;}
.y11_c00358{bottom:651.346667pt;}
.y10_c00358{bottom:682.013333pt;}
.yf_c00358{bottom:711.613333pt;}
.ye_c00358{bottom:740.813333pt;}
.yd_c00358{bottom:770.146667pt;}
.yc_c00358{bottom:799.880000pt;}
.yb_c00358{bottom:829.613333pt;}
.ya_c00358{bottom:858.946667pt;}
.y9_c00358{bottom:888.680000pt;}
.y8_c00358{bottom:919.080000pt;}
.y7_c00358{bottom:948.280000pt;}
.y6_c00358{bottom:977.480000pt;}
.y5_c00358{bottom:1007.080000pt;}
.y4_c00358{bottom:1037.213333pt;}
.y3_c00358{bottom:1066.280000pt;}
.y2_c00358{bottom:1095.880000pt;}
.y1_c00358{bottom:1126.546667pt;}
.h4_c00358{height:11.733399pt;}
.h5_c00358{height:38.937500pt;}
.h3_c00358{height:108.041667pt;}
.h2_c00358{height:118.170573pt;}
.h0_c00358{height:1209.133333pt;}
.h1_c00358{height:1209.333333pt;}
.w2_c00358{width:93.222667pt;}
.w1_c00358{width:767.333333pt;}
.w0_c00358{width:767.533333pt;}
.x0_c00358{left:0.000000pt;}
.xb_c00358{left:33.866667pt;}
.x9_c00358{left:34.800000pt;}
.xa_c00358{left:35.733333pt;}
.x8_c00358{left:36.800000pt;}
.x7_c00358{left:37.733333pt;}
.x6_c00358{left:39.600000pt;}
.x5_c00358{left:41.066667pt;}
.x4_c00358{left:42.000000pt;}
.x3_c00358{left:42.933333pt;}
.x2_c00358{left:45.333333pt;}
.xc_c00358{left:61.600000pt;}
.xe_c00358{left:340.934896pt;}
.x1_c00358{left:472.000000pt;}
.xd_c00358{left:512.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_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_93d5dfd944a89f2e6743a5b7.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_f09aef565be2633aa695777c.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_8d479bb743291a3bfe9ac3eb.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.314453;font-style:normal;font-weight:normal;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_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls3_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:11.892000px;}
.ls1_c00359{letter-spacing:23.427000px;}
.ls2_c00359{letter-spacing:29.940000px;}
.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.798000px;}
.ws2_c00359{word-spacing:0.000000px;}
.ws1_c00359{word-spacing:7.860000px;}
._0_c00359{margin-left:-30.396000px;}
._1_c00359{margin-left:-23.664000px;}
._f_c00359{margin-left:-21.372000px;}
._2_c00359{margin-left:-18.564000px;}
._25_c00359{margin-left:-14.352000px;}
._26_c00359{margin-left:-11.328000px;}
._30_c00359{margin-left:-9.729000px;}
._22_c00359{margin-left:-7.395000px;}
._16_c00359{margin-left:-5.928000px;}
._a_c00359{margin-left:-4.524000px;}
._b_c00359{margin-left:-3.042000px;}
._9_c00359{margin-left:-1.794000px;}
._12_c00359{width:1.170000px;}
._11_c00359{width:2.184000px;}
._e_c00359{width:3.276000px;}
._17_c00359{width:4.347000px;}
._d_c00359{width:6.168000px;}
._c_c00359{width:7.170000px;}
._2b_c00359{width:8.520000px;}
._8_c00359{width:9.780000px;}
._4_c00359{width:11.520000px;}
._5_c00359{width:12.600000px;}
._2a_c00359{width:13.728000px;}
._21_c00359{width:15.348000px;}
._7_c00359{width:17.160000px;}
._2f_c00359{width:19.566000px;}
._19_c00359{width:21.294000px;}
._14_c00359{width:23.712000px;}
._10_c00359{width:24.804000px;}
._38_c00359{width:26.214000px;}
._28_c00359{width:27.315000px;}
._29_c00359{width:28.362000px;}
._1b_c00359{width:29.532000px;}
._1a_c00359{width:30.576000px;}
._15_c00359{width:32.604000px;}
._23_c00359{width:34.437000px;}
._37_c00359{width:35.541000px;}
._18_c00359{width:36.543000px;}
._6_c00359{width:37.680000px;}
._3_c00359{width:39.306000px;}
._1d_c00359{width:41.496000px;}
._24_c00359{width:43.746000px;}
._1e_c00359{width:45.474000px;}
._27_c00359{width:47.064000px;}
._2c_c00359{width:49.884000px;}
._36_c00359{width:51.225000px;}
._13_c00359{width:53.976000px;}
._33_c00359{width:56.586000px;}
._1c_c00359{width:57.798000px;}
._35_c00359{width:59.298000px;}
._32_c00359{width:63.189000px;}
._2e_c00359{width:66.990000px;}
._1f_c00359{width:72.930000px;}
._20_c00359{width:86.814000px;}
._31_c00359{width:90.240000px;}
._2d_c00359{width:107.319000px;}
._34_c00359{width:175.056000px;}
._3a_c00359{width:314.412000px;}
._39_c00359{width:1540.965000px;}
.fc2_c00359{color:transparent;}
.fc1_c00359{color:rgb(128,128,128);}
.fc0_c00359{color:rgb(0,0,0);}
.fs7_c00359{font-size:48.000000px;}
.fs6_c00359{font-size:57.000000px;}
.fs1_c00359{font-size:60.000000px;}
.fs2_c00359{font-size:78.000000px;}
.fs4_c00359{font-size:84.000000px;}
.fs3_c00359{font-size:87.000000px;}
.fs5_c00359{font-size:96.000000px;}
.fs0_c00359{font-size:102.000000px;}
.y0_c00359{bottom:0.000000px;}
.y31_c00359{bottom:3.105000px;}
.y30_c00359{bottom:7.228369px;}
.y2f_c00359{bottom:69.120000px;}
.y2e_c00359{bottom:101.520000px;}
.y2d_c00359{bottom:135.570000px;}
.y2c_c00359{bottom:169.470000px;}
.y2b_c00359{bottom:203.520000px;}
.y2a_c00359{bottom:236.970000px;}
.y29_c00359{bottom:271.020000px;}
.y28_c00359{bottom:305.070000px;}
.y27_c00359{bottom:339.420000px;}
.y26_c00359{bottom:373.020000px;}
.y25_c00359{bottom:406.920000px;}
.y24_c00359{bottom:440.820000px;}
.y23_c00359{bottom:474.570000px;}
.y22_c00359{bottom:508.920000px;}
.yb_c00359{bottom:536.970000px;}
.y21_c00359{bottom:542.370000px;}
.ya_c00359{bottom:568.620000px;}
.y20_c00359{bottom:576.120000px;}
.y9_c00359{bottom:598.620000px;}
.y1f_c00359{bottom:609.570000px;}
.y8_c00359{bottom:627.120000px;}
.y1e_c00359{bottom:643.620000px;}
.y7_c00359{bottom:657.720000px;}
.y1d_c00359{bottom:677.370000px;}
.y6_c00359{bottom:686.820000px;}
.y1c_c00359{bottom:711.120000px;}
.y5_c00359{bottom:716.220000px;}
.y1b_c00359{bottom:744.570000px;}
.y4_c00359{bottom:745.920000px;}
.y3_c00359{bottom:776.220000px;}
.y1a_c00359{bottom:778.170000px;}
.y2_c00359{bottom:806.220000px;}
.y19_c00359{bottom:811.620000px;}
.y1_c00359{bottom:834.270000px;}
.y18_c00359{bottom:844.470000px;}
.y17_c00359{bottom:878.220000px;}
.y16_c00359{bottom:911.970000px;}
.y15_c00359{bottom:945.270000px;}
.y14_c00359{bottom:978.420000px;}
.y13_c00359{bottom:1010.520000px;}
.y12_c00359{bottom:1043.820000px;}
.y11_c00359{bottom:1077.270000px;}
.y10_c00359{bottom:1111.320000px;}
.yf_c00359{bottom:1144.620000px;}
.ye_c00359{bottom:1177.770000px;}
.yd_c00359{bottom:1210.920000px;}
.yc_c00359{bottom:1244.070000px;}
.h6_c00359{height:13.200073px;}
.h7_c00359{height:43.804688px;}
.h3_c00359{height:98.756836px;}
.h4_c00359{height:110.151855px;}
.h5_c00359{height:121.546875px;}
.h2_c00359{height:129.143555px;}
.h1_c00359{height:1359.000000px;}
.h0_c00359{height:1359.150000px;}
.w2_c00359{width:104.875500px;}
.w1_c00359{width:848.250000px;}
.w0_c00359{width:848.325000px;}
.x0_c00359{left:0.000000px;}
.x3_c00359{left:35.400000px;}
.x2_c00359{left:36.450000px;}
.x1_c00359{left:63.450000px;}
.x8_c00359{left:259.500000px;}
.x4_c00359{left:260.550000px;}
.x5_c00359{left:262.200000px;}
.x6_c00359{left:264.300000px;}
.x9_c00359{left:276.300000px;}
.x7_c00359{left:312.900000px;}
.xa_c00359{left:375.976730px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls3_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:10.570667pt;}
.ls1_c00359{letter-spacing:20.824000pt;}
.ls2_c00359{letter-spacing:26.613333pt;}
.ws0_c00359{word-spacing:-16.709333pt;}
.ws2_c00359{word-spacing:0.000000pt;}
.ws1_c00359{word-spacing:6.986667pt;}
._0_c00359{margin-left:-27.018667pt;}
._1_c00359{margin-left:-21.034667pt;}
._f_c00359{margin-left:-18.997333pt;}
._2_c00359{margin-left:-16.501333pt;}
._25_c00359{margin-left:-12.757333pt;}
._26_c00359{margin-left:-10.069333pt;}
._30_c00359{margin-left:-8.648000pt;}
._22_c00359{margin-left:-6.573333pt;}
._16_c00359{margin-left:-5.269333pt;}
._a_c00359{margin-left:-4.021333pt;}
._b_c00359{margin-left:-2.704000pt;}
._9_c00359{margin-left:-1.594667pt;}
._12_c00359{width:1.040000pt;}
._11_c00359{width:1.941333pt;}
._e_c00359{width:2.912000pt;}
._17_c00359{width:3.864000pt;}
._d_c00359{width:5.482667pt;}
._c_c00359{width:6.373333pt;}
._2b_c00359{width:7.573333pt;}
._8_c00359{width:8.693333pt;}
._4_c00359{width:10.240000pt;}
._5_c00359{width:11.200000pt;}
._2a_c00359{width:12.202667pt;}
._21_c00359{width:13.642667pt;}
._7_c00359{width:15.253333pt;}
._2f_c00359{width:17.392000pt;}
._19_c00359{width:18.928000pt;}
._14_c00359{width:21.077333pt;}
._10_c00359{width:22.048000pt;}
._38_c00359{width:23.301333pt;}
._28_c00359{width:24.280000pt;}
._29_c00359{width:25.210667pt;}
._1b_c00359{width:26.250667pt;}
._1a_c00359{width:27.178667pt;}
._15_c00359{width:28.981333pt;}
._23_c00359{width:30.610667pt;}
._37_c00359{width:31.592000pt;}
._18_c00359{width:32.482667pt;}
._6_c00359{width:33.493333pt;}
._3_c00359{width:34.938667pt;}
._1d_c00359{width:36.885333pt;}
._24_c00359{width:38.885333pt;}
._1e_c00359{width:40.421333pt;}
._27_c00359{width:41.834667pt;}
._2c_c00359{width:44.341333pt;}
._36_c00359{width:45.533333pt;}
._13_c00359{width:47.978667pt;}
._33_c00359{width:50.298667pt;}
._1c_c00359{width:51.376000pt;}
._35_c00359{width:52.709333pt;}
._32_c00359{width:56.168000pt;}
._2e_c00359{width:59.546667pt;}
._1f_c00359{width:64.826667pt;}
._20_c00359{width:77.168000pt;}
._31_c00359{width:80.213333pt;}
._2d_c00359{width:95.394667pt;}
._34_c00359{width:155.605333pt;}
._3a_c00359{width:279.477333pt;}
._39_c00359{width:1369.746667pt;}
.fs7_c00359{font-size:42.666667pt;}
.fs6_c00359{font-size:50.666667pt;}
.fs1_c00359{font-size:53.333333pt;}
.fs2_c00359{font-size:69.333333pt;}
.fs4_c00359{font-size:74.666667pt;}
.fs3_c00359{font-size:77.333333pt;}
.fs5_c00359{font-size:85.333333pt;}
.fs0_c00359{font-size:90.666667pt;}
.y0_c00359{bottom:0.000000pt;}
.y31_c00359{bottom:2.760000pt;}
.y30_c00359{bottom:6.425217pt;}
.y2f_c00359{bottom:61.440000pt;}
.y2e_c00359{bottom:90.240000pt;}
.y2d_c00359{bottom:120.506667pt;}
.y2c_c00359{bottom:150.640000pt;}
.y2b_c00359{bottom:180.906667pt;}
.y2a_c00359{bottom:210.640000pt;}
.y29_c00359{bottom:240.906667pt;}
.y28_c00359{bottom:271.173333pt;}
.y27_c00359{bottom:301.706667pt;}
.y26_c00359{bottom:331.573333pt;}
.y25_c00359{bottom:361.706667pt;}
.y24_c00359{bottom:391.840000pt;}
.y23_c00359{bottom:421.840000pt;}
.y22_c00359{bottom:452.373333pt;}
.yb_c00359{bottom:477.306667pt;}
.y21_c00359{bottom:482.106667pt;}
.ya_c00359{bottom:505.440000pt;}
.y20_c00359{bottom:512.106667pt;}
.y9_c00359{bottom:532.106667pt;}
.y1f_c00359{bottom:541.840000pt;}
.y8_c00359{bottom:557.440000pt;}
.y1e_c00359{bottom:572.106667pt;}
.y7_c00359{bottom:584.640000pt;}
.y1d_c00359{bottom:602.106667pt;}
.y6_c00359{bottom:610.506667pt;}
.y1c_c00359{bottom:632.106667pt;}
.y5_c00359{bottom:636.640000pt;}
.y1b_c00359{bottom:661.840000pt;}
.y4_c00359{bottom:663.040000pt;}
.y3_c00359{bottom:689.973333pt;}
.y1a_c00359{bottom:691.706667pt;}
.y2_c00359{bottom:716.640000pt;}
.y19_c00359{bottom:721.440000pt;}
.y1_c00359{bottom:741.573333pt;}
.y18_c00359{bottom:750.640000pt;}
.y17_c00359{bottom:780.640000pt;}
.y16_c00359{bottom:810.640000pt;}
.y15_c00359{bottom:840.240000pt;}
.y14_c00359{bottom:869.706667pt;}
.y13_c00359{bottom:898.240000pt;}
.y12_c00359{bottom:927.840000pt;}
.y11_c00359{bottom:957.573333pt;}
.y10_c00359{bottom:987.840000pt;}
.yf_c00359{bottom:1017.440000pt;}
.ye_c00359{bottom:1046.906667pt;}
.yd_c00359{bottom:1076.373333pt;}
.yc_c00359{bottom:1105.840000pt;}
.h6_c00359{height:11.733399pt;}
.h7_c00359{height:38.937500pt;}
.h3_c00359{height:87.783854pt;}
.h4_c00359{height:97.912760pt;}
.h5_c00359{height:108.041667pt;}
.h2_c00359{height:114.794271pt;}
.h1_c00359{height:1208.000000pt;}
.h0_c00359{height:1208.133333pt;}
.w2_c00359{width:93.222667pt;}
.w1_c00359{width:754.000000pt;}
.w0_c00359{width:754.066667pt;}
.x0_c00359{left:0.000000pt;}
.x3_c00359{left:31.466667pt;}
.x2_c00359{left:32.400000pt;}
.x1_c00359{left:56.400000pt;}
.x8_c00359{left:230.666667pt;}
.x4_c00359{left:231.600000pt;}
.x5_c00359{left:233.066667pt;}
.x6_c00359{left:234.933333pt;}
.x9_c00359{left:245.600000pt;}
.x7_c00359{left:278.133333pt;}
.xa_c00359{left:334.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c21fd6bdafa0bda1f01d9a28.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls0_c00360{letter-spacing:0.000000px;}
.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:-23.136000px;}
.ws1_c00360{word-spacing:0.000000px;}
._1a_c00360{margin-left:-37.056000px;}
._38_c00360{margin-left:-26.970000px;}
._26_c00360{margin-left:-22.368000px;}
._5_c00360{margin-left:-20.256000px;}
._35_c00360{margin-left:-18.144000px;}
._6_c00360{margin-left:-14.208000px;}
._2b_c00360{margin-left:-11.328000px;}
._2f_c00360{margin-left:-9.408000px;}
._2e_c00360{margin-left:-7.584000px;}
._2d_c00360{margin-left:-5.568000px;}
._13_c00360{margin-left:-4.128000px;}
._8_c00360{margin-left:-2.304000px;}
._1b_c00360{margin-left:-1.056000px;}
._c_c00360{width:1.728000px;}
._4_c00360{width:3.456000px;}
._3_c00360{width:4.704000px;}
._d_c00360{width:6.144000px;}
._2_c00360{width:8.160000px;}
._16_c00360{width:9.984000px;}
._0_c00360{width:11.136000px;}
._1d_c00360{width:12.480000px;}
._1c_c00360{width:14.112000px;}
._7_c00360{width:15.552000px;}
._18_c00360{width:16.608000px;}
._17_c00360{width:17.952000px;}
._28_c00360{width:20.544000px;}
._1_c00360{width:21.792000px;}
._29_c00360{width:24.960000px;}
._9_c00360{width:26.400000px;}
._11_c00360{width:28.032000px;}
._19_c00360{width:29.856000px;}
._a_c00360{width:31.104000px;}
._1e_c00360{width:32.352000px;}
._12_c00360{width:33.888000px;}
._b_c00360{width:35.424000px;}
._2a_c00360{width:36.576000px;}
._15_c00360{width:38.688000px;}
._20_c00360{width:39.936000px;}
._2c_c00360{width:41.088000px;}
._e_c00360{width:42.816000px;}
._32_c00360{width:44.064000px;}
._f_c00360{width:45.504000px;}
._36_c00360{width:46.560000px;}
._21_c00360{width:47.616000px;}
._10_c00360{width:49.152000px;}
._33_c00360{width:50.688000px;}
._24_c00360{width:51.840000px;}
._30_c00360{width:53.664000px;}
._22_c00360{width:55.104000px;}
._1f_c00360{width:56.160000px;}
._31_c00360{width:58.368000px;}
._25_c00360{width:60.960000px;}
._34_c00360{width:62.016000px;}
._14_c00360{width:64.800000px;}
._27_c00360{width:66.624000px;}
._23_c00360{width:68.640000px;}
._37_c00360{width:769.116000px;}
.fc2_c00360{color:transparent;}
.fc1_c00360{color:rgb(128,128,128);}
.fc0_c00360{color:rgb(0,0,0);}
.fs3_c00360{font-size:48.000000px;}
.fs2_c00360{font-size:60.000000px;}
.fs1_c00360{font-size:87.000000px;}
.fs0_c00360{font-size:96.000000px;}
.y0_c00360{bottom:0.000000px;}
.y28_c00360{bottom:3.105000px;}
.y27_c00360{bottom:7.228369px;}
.y25_c00360{bottom:88.470000px;}
.y24_c00360{bottom:147.870000px;}
.y23_c00360{bottom:163.020000px;}
.y22_c00360{bottom:198.120000px;}
.y21_c00360{bottom:232.170000px;}
.y20_c00360{bottom:266.220000px;}
.y1f_c00360{bottom:299.670000px;}
.y1e_c00360{bottom:332.670000px;}
.y1d_c00360{bottom:367.170000px;}
.y26_c00360{bottom:371.820000px;}
.y1c_c00360{bottom:400.620000px;}
.y1b_c00360{bottom:434.070000px;}
.y1a_c00360{bottom:467.670000px;}
.y19_c00360{bottom:501.420000px;}
.y18_c00360{bottom:534.570000px;}
.y17_c00360{bottom:568.320000px;}
.y16_c00360{bottom:602.370000px;}
.y15_c00360{bottom:635.520000px;}
.y14_c00360{bottom:668.970000px;}
.y13_c00360{bottom:703.020000px;}
.y12_c00360{bottom:735.720000px;}
.y11_c00360{bottom:770.070000px;}
.y10_c00360{bottom:803.520000px;}
.yf_c00360{bottom:836.220000px;}
.ye_c00360{bottom:869.670000px;}
.yd_c00360{bottom:902.520000px;}
.yc_c00360{bottom:936.270000px;}
.yb_c00360{bottom:969.870000px;}
.ya_c00360{bottom:1003.320000px;}
.y9_c00360{bottom:1036.170000px;}
.y8_c00360{bottom:1069.770000px;}
.y7_c00360{bottom:1102.620000px;}
.y6_c00360{bottom:1135.920000px;}
.y5_c00360{bottom:1169.070000px;}
.y4_c00360{bottom:1202.070000px;}
.y3_c00360{bottom:1235.220000px;}
.y2_c00360{bottom:1268.670000px;}
.y1_c00360{bottom:1300.770000px;}
.h4_c00360{height:13.200073px;}
.h5_c00360{height:43.804688px;}
.h3_c00360{height:110.151855px;}
.h2_c00360{height:121.546875px;}
.h0_c00360{height:1383.450000px;}
.h1_c00360{height:1383.750000px;}
.w2_c00360{width:104.875500px;}
.w0_c00360{width:878.025000px;}
.w1_c00360{width:878.250000px;}
.x0_c00360{left:0.000000px;}
.x8_c00360{left:32.700000px;}
.x6_c00360{left:34.350000px;}
.x7_c00360{left:35.400000px;}
.x5_c00360{left:37.050000px;}
.x4_c00360{left:38.700000px;}
.x3_c00360{left:39.750000px;}
.x2_c00360{left:41.850000px;}
.x9_c00360{left:284.100000px;}
.xb_c00360{left:390.826721px;}
.x1_c00360{left:524.700000px;}
.xa_c00360{left:802.950000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws0_c00360{word-spacing:-20.565333pt;}
.ws1_c00360{word-spacing:0.000000pt;}
._1a_c00360{margin-left:-32.938667pt;}
._38_c00360{margin-left:-23.973333pt;}
._26_c00360{margin-left:-19.882667pt;}
._5_c00360{margin-left:-18.005333pt;}
._35_c00360{margin-left:-16.128000pt;}
._6_c00360{margin-left:-12.629333pt;}
._2b_c00360{margin-left:-10.069333pt;}
._2f_c00360{margin-left:-8.362667pt;}
._2e_c00360{margin-left:-6.741333pt;}
._2d_c00360{margin-left:-4.949333pt;}
._13_c00360{margin-left:-3.669333pt;}
._8_c00360{margin-left:-2.048000pt;}
._1b_c00360{margin-left:-0.938667pt;}
._c_c00360{width:1.536000pt;}
._4_c00360{width:3.072000pt;}
._3_c00360{width:4.181333pt;}
._d_c00360{width:5.461333pt;}
._2_c00360{width:7.253333pt;}
._16_c00360{width:8.874667pt;}
._0_c00360{width:9.898667pt;}
._1d_c00360{width:11.093333pt;}
._1c_c00360{width:12.544000pt;}
._7_c00360{width:13.824000pt;}
._18_c00360{width:14.762667pt;}
._17_c00360{width:15.957333pt;}
._28_c00360{width:18.261333pt;}
._1_c00360{width:19.370667pt;}
._29_c00360{width:22.186667pt;}
._9_c00360{width:23.466667pt;}
._11_c00360{width:24.917333pt;}
._19_c00360{width:26.538667pt;}
._a_c00360{width:27.648000pt;}
._1e_c00360{width:28.757333pt;}
._12_c00360{width:30.122667pt;}
._b_c00360{width:31.488000pt;}
._2a_c00360{width:32.512000pt;}
._15_c00360{width:34.389333pt;}
._20_c00360{width:35.498667pt;}
._2c_c00360{width:36.522667pt;}
._e_c00360{width:38.058667pt;}
._32_c00360{width:39.168000pt;}
._f_c00360{width:40.448000pt;}
._36_c00360{width:41.386667pt;}
._21_c00360{width:42.325333pt;}
._10_c00360{width:43.690667pt;}
._33_c00360{width:45.056000pt;}
._24_c00360{width:46.080000pt;}
._30_c00360{width:47.701333pt;}
._22_c00360{width:48.981333pt;}
._1f_c00360{width:49.920000pt;}
._31_c00360{width:51.882667pt;}
._25_c00360{width:54.186667pt;}
._34_c00360{width:55.125333pt;}
._14_c00360{width:57.600000pt;}
._27_c00360{width:59.221333pt;}
._23_c00360{width:61.013333pt;}
._37_c00360{width:683.658667pt;}
.fs3_c00360{font-size:42.666667pt;}
.fs2_c00360{font-size:53.333333pt;}
.fs1_c00360{font-size:77.333333pt;}
.fs0_c00360{font-size:85.333333pt;}
.y0_c00360{bottom:0.000000pt;}
.y28_c00360{bottom:2.760000pt;}
.y27_c00360{bottom:6.425217pt;}
.y25_c00360{bottom:78.640000pt;}
.y24_c00360{bottom:131.440000pt;}
.y23_c00360{bottom:144.906667pt;}
.y22_c00360{bottom:176.106667pt;}
.y21_c00360{bottom:206.373333pt;}
.y20_c00360{bottom:236.640000pt;}
.y1f_c00360{bottom:266.373333pt;}
.y1e_c00360{bottom:295.706667pt;}
.y1d_c00360{bottom:326.373333pt;}
.y26_c00360{bottom:330.506667pt;}
.y1c_c00360{bottom:356.106667pt;}
.y1b_c00360{bottom:385.840000pt;}
.y1a_c00360{bottom:415.706667pt;}
.y19_c00360{bottom:445.706667pt;}
.y18_c00360{bottom:475.173333pt;}
.y17_c00360{bottom:505.173333pt;}
.y16_c00360{bottom:535.440000pt;}
.y15_c00360{bottom:564.906667pt;}
.y14_c00360{bottom:594.640000pt;}
.y13_c00360{bottom:624.906667pt;}
.y12_c00360{bottom:653.973333pt;}
.y11_c00360{bottom:684.506667pt;}
.y10_c00360{bottom:714.240000pt;}
.yf_c00360{bottom:743.306667pt;}
.ye_c00360{bottom:773.040000pt;}
.yd_c00360{bottom:802.240000pt;}
.yc_c00360{bottom:832.240000pt;}
.yb_c00360{bottom:862.106667pt;}
.ya_c00360{bottom:891.840000pt;}
.y9_c00360{bottom:921.040000pt;}
.y8_c00360{bottom:950.906667pt;}
.y7_c00360{bottom:980.106667pt;}
.y6_c00360{bottom:1009.706667pt;}
.y5_c00360{bottom:1039.173333pt;}
.y4_c00360{bottom:1068.506667pt;}
.y3_c00360{bottom:1097.973333pt;}
.y2_c00360{bottom:1127.706667pt;}
.y1_c00360{bottom:1156.240000pt;}
.h4_c00360{height:11.733399pt;}
.h5_c00360{height:38.937500pt;}
.h3_c00360{height:97.912760pt;}
.h2_c00360{height:108.041667pt;}
.h0_c00360{height:1229.733333pt;}
.h1_c00360{height:1230.000000pt;}
.w2_c00360{width:93.222667pt;}
.w0_c00360{width:780.466667pt;}
.w1_c00360{width:780.666667pt;}
.x0_c00360{left:0.000000pt;}
.x8_c00360{left:29.066667pt;}
.x6_c00360{left:30.533333pt;}
.x7_c00360{left:31.466667pt;}
.x5_c00360{left:32.933333pt;}
.x4_c00360{left:34.400000pt;}
.x3_c00360{left:35.333333pt;}
.x2_c00360{left:37.200000pt;}
.x9_c00360{left:252.533333pt;}
.xb_c00360{left:347.401530pt;}
.x1_c00360{left:466.400000pt;}
.xa_c00360{left:713.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35e91f44c6e4d878adc8e988.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_85d87f883a251329caa02b02.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_9b1ff80436fccac64bdefa3f.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls5_c00361{letter-spacing:-3.000000px;}
.ls2_c00361{letter-spacing:0.000000px;}
.ls3_c00361{letter-spacing:3.000000px;}
.ls4_c00361{letter-spacing:6.000000px;}
.ls1_c00361{letter-spacing:10.920000px;}
.ls0_c00361{letter-spacing:226.140000px;}
.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;}
}
.ws2_c00361{word-spacing:-57.000000px;}
.ws0_c00361{word-spacing:-20.244000px;}
.ws1_c00361{word-spacing:-18.075000px;}
.ws3_c00361{word-spacing:-11.460000px;}
.ws4_c00361{word-spacing:-2.340000px;}
.ws6_c00361{word-spacing:0.000000px;}
.ws5_c00361{word-spacing:2.340000px;}
._b_c00361{margin-left:-50.112000px;}
._40_c00361{margin-left:-33.957000px;}
._51_c00361{margin-left:-31.830000px;}
._11_c00361{margin-left:-29.376000px;}
._3f_c00361{margin-left:-27.951000px;}
._3e_c00361{margin-left:-26.484000px;}
._52_c00361{margin-left:-25.320000px;}
._3d_c00361{margin-left:-21.456000px;}
._20_c00361{margin-left:-20.088000px;}
._1e_c00361{margin-left:-16.968000px;}
._1f_c00361{margin-left:-14.868000px;}
._24_c00361{margin-left:-12.768000px;}
._27_c00361{margin-left:-10.368000px;}
._57_c00361{margin-left:-9.225000px;}
._3_c00361{margin-left:-8.148000px;}
._5_c00361{margin-left:-6.216000px;}
._0_c00361{margin-left:-5.208000px;}
._16_c00361{margin-left:-3.948000px;}
._1_c00361{margin-left:-2.940000px;}
._15_c00361{margin-left:-1.008000px;}
._19_c00361{width:1.488000px;}
._7_c00361{width:2.772000px;}
._10_c00361{width:4.248000px;}
._8_c00361{width:5.544000px;}
._3a_c00361{width:6.552000px;}
._f_c00361{width:7.584000px;}
._37_c00361{width:8.757000px;}
._d_c00361{width:9.792000px;}
._1b_c00361{width:11.088000px;}
._12_c00361{width:12.720000px;}
._5a_c00361{width:13.860000px;}
._38_c00361{width:14.904000px;}
._22_c00361{width:16.212000px;}
._4f_c00361{width:17.304000px;}
._18_c00361{width:18.348000px;}
._26_c00361{width:19.380000px;}
._48_c00361{width:20.424000px;}
._2a_c00361{width:21.432000px;}
._4e_c00361{width:22.980000px;}
._33_c00361{width:25.380000px;}
._25_c00361{width:27.084000px;}
._3c_c00361{width:28.464000px;}
._23_c00361{width:29.820000px;}
._e_c00361{width:31.200000px;}
._34_c00361{width:32.652000px;}
._4b_c00361{width:33.798000px;}
._6_c00361{width:34.860000px;}
._2_c00361{width:36.708000px;}
._39_c00361{width:38.004000px;}
._2b_c00361{width:39.012000px;}
._32_c00361{width:40.815000px;}
._14_c00361{width:41.916000px;}
._46_c00361{width:43.779000px;}
._1a_c00361{width:45.672000px;}
._29_c00361{width:47.568000px;}
._3b_c00361{width:49.761000px;}
._36_c00361{width:51.336000px;}
._4_c00361{width:52.584000px;}
._43_c00361{width:54.528000px;}
._45_c00361{width:55.584000px;}
._4d_c00361{width:57.294000px;}
._49_c00361{width:58.812000px;}
._1c_c00361{width:60.060000px;}
._1d_c00361{width:63.000000px;}
._c_c00361{width:64.512000px;}
._2f_c00361{width:67.548000px;}
._42_c00361{width:73.788000px;}
._50_c00361{width:75.789000px;}
._13_c00361{width:78.276000px;}
._2d_c00361{width:79.740000px;}
._4a_c00361{width:85.320000px;}
._a_c00361{width:88.572000px;}
._54_c00361{width:91.554000px;}
._41_c00361{width:92.604000px;}
._53_c00361{width:95.880000px;}
._5b_c00361{width:102.189000px;}
._58_c00361{width:123.669000px;}
._17_c00361{width:133.152000px;}
._55_c00361{width:139.212000px;}
._30_c00361{width:140.820000px;}
._56_c00361{width:182.316000px;}
._2e_c00361{width:239.400000px;}
._2c_c00361{width:265.155000px;}
._9_c00361{width:270.612000px;}
._59_c00361{width:373.740000px;}
._31_c00361{width:390.600000px;}
._47_c00361{width:395.724000px;}
._21_c00361{width:397.440000px;}
._4c_c00361{width:512.292000px;}
._44_c00361{width:628.488000px;}
._35_c00361{width:813.624000px;}
._28_c00361{width:846.684000px;}
._5c_c00361{width:871.818000px;}
.fc2_c00361{color:transparent;}
.fc1_c00361{color:rgb(128,128,128);}
.fc0_c00361{color:rgb(0,0,0);}
.fs6_c00361{font-size:48.000000px;}
.fs3_c00361{font-size:60.000000px;}
.fs2_c00361{font-size:75.000000px;}
.fs0_c00361{font-size:84.000000px;}
.fs1_c00361{font-size:96.000000px;}
.fs4_c00361{font-size:102.000000px;}
.fs5_c00361{font-size:114.000000px;}
.y0_c00361{bottom:0.000000px;}
.y27_c00361{bottom:3.105000px;}
.y26_c00361{bottom:7.228357px;}
.y25_c00361{bottom:82.980000px;}
.y24_c00361{bottom:115.380000px;}
.y23_c00361{bottom:152.880000px;}
.y22_c00361{bottom:184.680000px;}
.y21_c00361{bottom:219.030000px;}
.y20_c00361{bottom:250.380000px;}
.y1f_c00361{bottom:284.580000px;}
.y1e_c00361{bottom:318.930000px;}
.y1d_c00361{bottom:354.030000px;}
.y1c_c00361{bottom:387.480000px;}
.y1b_c00361{bottom:423.630000px;}
.y1a_c00361{bottom:455.730000px;}
.y19_c00361{bottom:489.330000px;}
.y18_c00361{bottom:522.480000px;}
.y17_c00361{bottom:556.830000px;}
.y16_c00361{bottom:590.730000px;}
.y15_c00361{bottom:624.780000px;}
.y14_c00361{bottom:658.230000px;}
.y13_c00361{bottom:691.980000px;}
.y12_c00361{bottom:725.730000px;}
.y11_c00361{bottom:759.330000px;}
.y10_c00361{bottom:792.780000px;}
.yf_c00361{bottom:826.980000px;}
.ye_c00361{bottom:860.730000px;}
.yd_c00361{bottom:894.030000px;}
.yc_c00361{bottom:927.480000px;}
.yb_c00361{bottom:960.930000px;}
.ya_c00361{bottom:994.230000px;}
.y9_c00361{bottom:1026.780000px;}
.y8_c00361{bottom:1060.380000px;}
.y7_c00361{bottom:1093.530000px;}
.y6_c00361{bottom:1123.980000px;}
.y5_c00361{bottom:1144.530000px;}
.y4_c00361{bottom:1161.780000px;}
.y3_c00361{bottom:1198.080000px;}
.y2_c00361{bottom:1229.880000px;}
.y1_c00361{bottom:1261.680000px;}
.h6_c00361{height:13.200074px;}
.h7_c00361{height:43.804688px;}
.h3_c00361{height:87.780762px;}
.h2_c00361{height:121.546875px;}
.h5_c00361{height:129.143555px;}
.h4_c00361{height:144.336914px;}
.h0_c00361{height:1382.700000px;}
.h1_c00361{height:1383.000000px;}
.w2_c00361{width:104.875500px;}
.w0_c00361{width:863.175000px;}
.w1_c00361{width:863.250000px;}
.x0_c00361{left:0.000000px;}
.xb_c00361{left:53.700000px;}
.x3_c00361{left:59.700000px;}
.x2_c00361{left:61.200000px;}
.x9_c00361{left:82.350000px;}
.x1_c00361{left:87.750000px;}
.x8_c00361{left:126.150000px;}
.xa_c00361{left:140.400000px;}
.x7_c00361{left:276.750000px;}
.x6_c00361{left:277.800000px;}
.x5_c00361{left:279.000000px;}
.x4_c00361{left:280.500000px;}
.xd_c00361{left:383.401749px;}
.xc_c00361{left:507.900000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls5_c00361{letter-spacing:-2.666667pt;}
.ls2_c00361{letter-spacing:0.000000pt;}
.ls3_c00361{letter-spacing:2.666667pt;}
.ls4_c00361{letter-spacing:5.333333pt;}
.ls1_c00361{letter-spacing:9.706667pt;}
.ls0_c00361{letter-spacing:201.013333pt;}
.ws2_c00361{word-spacing:-50.666667pt;}
.ws0_c00361{word-spacing:-17.994667pt;}
.ws1_c00361{word-spacing:-16.066667pt;}
.ws3_c00361{word-spacing:-10.186667pt;}
.ws4_c00361{word-spacing:-2.080000pt;}
.ws6_c00361{word-spacing:0.000000pt;}
.ws5_c00361{word-spacing:2.080000pt;}
._b_c00361{margin-left:-44.544000pt;}
._40_c00361{margin-left:-30.184000pt;}
._51_c00361{margin-left:-28.293333pt;}
._11_c00361{margin-left:-26.112000pt;}
._3f_c00361{margin-left:-24.845333pt;}
._3e_c00361{margin-left:-23.541333pt;}
._52_c00361{margin-left:-22.506667pt;}
._3d_c00361{margin-left:-19.072000pt;}
._20_c00361{margin-left:-17.856000pt;}
._1e_c00361{margin-left:-15.082667pt;}
._1f_c00361{margin-left:-13.216000pt;}
._24_c00361{margin-left:-11.349333pt;}
._27_c00361{margin-left:-9.216000pt;}
._57_c00361{margin-left:-8.200000pt;}
._3_c00361{margin-left:-7.242667pt;}
._5_c00361{margin-left:-5.525333pt;}
._0_c00361{margin-left:-4.629333pt;}
._16_c00361{margin-left:-3.509333pt;}
._1_c00361{margin-left:-2.613333pt;}
._15_c00361{margin-left:-0.896000pt;}
._19_c00361{width:1.322667pt;}
._7_c00361{width:2.464000pt;}
._10_c00361{width:3.776000pt;}
._8_c00361{width:4.928000pt;}
._3a_c00361{width:5.824000pt;}
._f_c00361{width:6.741333pt;}
._37_c00361{width:7.784000pt;}
._d_c00361{width:8.704000pt;}
._1b_c00361{width:9.856000pt;}
._12_c00361{width:11.306667pt;}
._5a_c00361{width:12.320000pt;}
._38_c00361{width:13.248000pt;}
._22_c00361{width:14.410667pt;}
._4f_c00361{width:15.381333pt;}
._18_c00361{width:16.309333pt;}
._26_c00361{width:17.226667pt;}
._48_c00361{width:18.154667pt;}
._2a_c00361{width:19.050667pt;}
._4e_c00361{width:20.426667pt;}
._33_c00361{width:22.560000pt;}
._25_c00361{width:24.074667pt;}
._3c_c00361{width:25.301333pt;}
._23_c00361{width:26.506667pt;}
._e_c00361{width:27.733333pt;}
._34_c00361{width:29.024000pt;}
._4b_c00361{width:30.042667pt;}
._6_c00361{width:30.986667pt;}
._2_c00361{width:32.629333pt;}
._39_c00361{width:33.781333pt;}
._2b_c00361{width:34.677333pt;}
._32_c00361{width:36.280000pt;}
._14_c00361{width:37.258667pt;}
._46_c00361{width:38.914667pt;}
._1a_c00361{width:40.597333pt;}
._29_c00361{width:42.282667pt;}
._3b_c00361{width:44.232000pt;}
._36_c00361{width:45.632000pt;}
._4_c00361{width:46.741333pt;}
._43_c00361{width:48.469333pt;}
._45_c00361{width:49.408000pt;}
._4d_c00361{width:50.928000pt;}
._49_c00361{width:52.277333pt;}
._1c_c00361{width:53.386667pt;}
._1d_c00361{width:56.000000pt;}
._c_c00361{width:57.344000pt;}
._2f_c00361{width:60.042667pt;}
._42_c00361{width:65.589333pt;}
._50_c00361{width:67.368000pt;}
._13_c00361{width:69.578667pt;}
._2d_c00361{width:70.880000pt;}
._4a_c00361{width:75.840000pt;}
._a_c00361{width:78.730667pt;}
._54_c00361{width:81.381333pt;}
._41_c00361{width:82.314667pt;}
._53_c00361{width:85.226667pt;}
._5b_c00361{width:90.834667pt;}
._58_c00361{width:109.928000pt;}
._17_c00361{width:118.357333pt;}
._55_c00361{width:123.744000pt;}
._30_c00361{width:125.173333pt;}
._56_c00361{width:162.058667pt;}
._2e_c00361{width:212.800000pt;}
._2c_c00361{width:235.693333pt;}
._9_c00361{width:240.544000pt;}
._59_c00361{width:332.213333pt;}
._31_c00361{width:347.200000pt;}
._47_c00361{width:351.754667pt;}
._21_c00361{width:353.280000pt;}
._4c_c00361{width:455.370667pt;}
._44_c00361{width:558.656000pt;}
._35_c00361{width:723.221333pt;}
._28_c00361{width:752.608000pt;}
._5c_c00361{width:774.949333pt;}
.fs6_c00361{font-size:42.666667pt;}
.fs3_c00361{font-size:53.333333pt;}
.fs2_c00361{font-size:66.666667pt;}
.fs0_c00361{font-size:74.666667pt;}
.fs1_c00361{font-size:85.333333pt;}
.fs4_c00361{font-size:90.666667pt;}
.fs5_c00361{font-size:101.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y27_c00361{bottom:2.760000pt;}
.y26_c00361{bottom:6.425206pt;}
.y25_c00361{bottom:73.760000pt;}
.y24_c00361{bottom:102.560000pt;}
.y23_c00361{bottom:135.893333pt;}
.y22_c00361{bottom:164.160000pt;}
.y21_c00361{bottom:194.693333pt;}
.y20_c00361{bottom:222.560000pt;}
.y1f_c00361{bottom:252.960000pt;}
.y1e_c00361{bottom:283.493333pt;}
.y1d_c00361{bottom:314.693333pt;}
.y1c_c00361{bottom:344.426667pt;}
.y1b_c00361{bottom:376.560000pt;}
.y1a_c00361{bottom:405.093333pt;}
.y19_c00361{bottom:434.960000pt;}
.y18_c00361{bottom:464.426667pt;}
.y17_c00361{bottom:494.960000pt;}
.y16_c00361{bottom:525.093333pt;}
.y15_c00361{bottom:555.360000pt;}
.y14_c00361{bottom:585.093333pt;}
.y13_c00361{bottom:615.093333pt;}
.y12_c00361{bottom:645.093333pt;}
.y11_c00361{bottom:674.960000pt;}
.y10_c00361{bottom:704.693333pt;}
.yf_c00361{bottom:735.093333pt;}
.ye_c00361{bottom:765.093333pt;}
.yd_c00361{bottom:794.693333pt;}
.yc_c00361{bottom:824.426667pt;}
.yb_c00361{bottom:854.160000pt;}
.ya_c00361{bottom:883.760000pt;}
.y9_c00361{bottom:912.693333pt;}
.y8_c00361{bottom:942.560000pt;}
.y7_c00361{bottom:972.026667pt;}
.y6_c00361{bottom:999.093333pt;}
.y5_c00361{bottom:1017.360000pt;}
.y4_c00361{bottom:1032.693333pt;}
.y3_c00361{bottom:1064.960000pt;}
.y2_c00361{bottom:1093.226667pt;}
.y1_c00361{bottom:1121.493333pt;}
.h6_c00361{height:11.733399pt;}
.h7_c00361{height:38.937500pt;}
.h3_c00361{height:78.027344pt;}
.h2_c00361{height:108.041667pt;}
.h5_c00361{height:114.794271pt;}
.h4_c00361{height:128.299479pt;}
.h0_c00361{height:1229.066667pt;}
.h1_c00361{height:1229.333333pt;}
.w2_c00361{width:93.222667pt;}
.w0_c00361{width:767.266667pt;}
.w1_c00361{width:767.333333pt;}
.x0_c00361{left:0.000000pt;}
.xb_c00361{left:47.733333pt;}
.x3_c00361{left:53.066667pt;}
.x2_c00361{left:54.400000pt;}
.x9_c00361{left:73.200000pt;}
.x1_c00361{left:78.000000pt;}
.x8_c00361{left:112.133333pt;}
.xa_c00361{left:124.800000pt;}
.x7_c00361{left:246.000000pt;}
.x6_c00361{left:246.933333pt;}
.x5_c00361{left:248.000000pt;}
.x4_c00361{left:249.333333pt;}
.xd_c00361{left:340.801554pt;}
.xc_c00361{left:451.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0699c6b20c84861941aa6c42.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_08703926fc480f10878d0345.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_c0eeef4f8c84d5f8e2d4d6b7.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_5314103b3d97cdff47155c27.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_8bb7bc3482687ecf514c0c73.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00362;src:url('chunks/assets/font_1a959e6479f1bc21401b8cf7.woff2')format("woff");}.ff6_c00362{font-family:ff6_c00362;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00362;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00362{font-family:ff7_c00362;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls6_c00362{letter-spacing:0.000000px;}
.ls1_c00362{letter-spacing:0.984000px;}
.ls5_c00362{letter-spacing:8.976000px;}
.ls0_c00362{letter-spacing:22.233000px;}
.ls2_c00362{letter-spacing:25.260000px;}
.ls3_c00362{letter-spacing:25.803000px;}
.ls4_c00362{letter-spacing:27.900000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00362{word-spacing:-52.173000px;}
.ws0_c00362{word-spacing:-41.738400px;}
.ws5_c00362{word-spacing:-26.250000px;}
.ws3_c00362{word-spacing:-18.798000px;}
.ws6_c00362{word-spacing:0.000000px;}
.ws2_c00362{word-spacing:3.264000px;}
.ws4_c00362{word-spacing:3.744000px;}
._c_c00362{margin-left:-21.579600px;}
._33_c00362{margin-left:-19.997400px;}
._28_c00362{margin-left:-17.280000px;}
._3c_c00362{margin-left:-15.921000px;}
._34_c00362{margin-left:-14.496000px;}
._1e_c00362{margin-left:-11.540400px;}
._31_c00362{margin-left:-10.080000px;}
._27_c00362{margin-left:-8.671200px;}
._29_c00362{margin-left:-7.272000px;}
._2d_c00362{margin-left:-6.062400px;}
._1d_c00362{margin-left:-4.456800px;}
._b_c00362{margin-left:-2.752800px;}
._17_c00362{margin-left:-1.536000px;}
._4_c00362{width:1.248000px;}
._7_c00362{width:2.400000px;}
._6_c00362{width:3.456000px;}
._3_c00362{width:4.608000px;}
._0_c00362{width:5.664000px;}
._1_c00362{width:7.008000px;}
._2_c00362{width:8.736000px;}
._26_c00362{width:9.888000px;}
._21_c00362{width:11.040000px;}
._20_c00362{width:12.480000px;}
._35_c00362{width:14.184000px;}
._1b_c00362{width:15.264000px;}
._f_c00362{width:17.016000px;}
._37_c00362{width:18.192000px;}
._1a_c00362{width:19.680000px;}
._a_c00362{width:21.576000px;}
._9_c00362{width:23.871000px;}
._8_c00362{width:25.800000px;}
._14_c00362{width:27.616800px;}
._13_c00362{width:29.952000px;}
._18_c00362{width:31.168800px;}
._22_c00362{width:32.568000px;}
._e_c00362{width:33.792000px;}
._25_c00362{width:35.359200px;}
._d_c00362{width:36.768000px;}
._38_c00362{width:37.790400px;}
._19_c00362{width:39.072000px;}
._10_c00362{width:41.568000px;}
._36_c00362{width:42.669600px;}
._16_c00362{width:43.992000px;}
._1f_c00362{width:45.288000px;}
._5_c00362{width:47.136000px;}
._24_c00362{width:49.696800px;}
._15_c00362{width:52.128000px;}
._30_c00362{width:54.192000px;}
._12_c00362{width:56.450400px;}
._32_c00362{width:58.303200px;}
._2f_c00362{width:61.920000px;}
._2b_c00362{width:62.976000px;}
._11_c00362{width:65.184000px;}
._23_c00362{width:66.432000px;}
._2c_c00362{width:68.832000px;}
._3b_c00362{width:70.923000px;}
._2e_c00362{width:75.480000px;}
._2a_c00362{width:80.119200px;}
._3f_c00362{width:82.368000px;}
._3d_c00362{width:89.061000px;}
._3e_c00362{width:112.222800px;}
._1c_c00362{width:116.832000px;}
._3a_c00362{width:134.208000px;}
._40_c00362{width:177.963600px;}
._39_c00362{width:1875.581400px;}
.fc2_c00362{color:transparent;}
.fc1_c00362{color:rgb(128,128,128);}
.fc0_c00362{color:rgb(0,0,0);}
.fs9_c00362{font-size:39.000000px;}
.fsa_c00362{font-size:48.000000px;}
.fs3_c00362{font-size:74.400000px;}
.fs6_c00362{font-size:78.000000px;}
.fs4_c00362{font-size:84.000000px;}
.fs5_c00362{font-size:87.000000px;}
.fs2_c00362{font-size:93.000000px;}
.fs0_c00362{font-size:96.000000px;}
.fs1_c00362{font-size:105.000000px;}
.fs8_c00362{font-size:117.000000px;}
.fs7_c00362{font-size:141.000000px;}
.y0_c00362{bottom:0.000000px;}
.y36_c00362{bottom:3.105000px;}
.y35_c00362{bottom:7.228363px;}
.y24_c00362{bottom:83.400000px;}
.y23_c00362{bottom:115.200000px;}
.y22_c00362{bottom:150.150000px;}
.y21_c00362{bottom:183.900000px;}
.y34_c00362{bottom:216.450000px;}
.y20_c00362{bottom:217.650000px;}
.y1f_c00362{bottom:252.450000px;}
.y33_c00362{bottom:253.800000px;}
.y32_c00362{bottom:283.050000px;}
.y1e_c00362{bottom:285.450000px;}
.y31_c00362{bottom:309.150000px;}
.y1d_c00362{bottom:319.050000px;}
.y30_c00362{bottom:346.650000px;}
.y1c_c00362{bottom:352.650000px;}
.y2f_c00362{bottom:369.300000px;}
.y1b_c00362{bottom:386.100000px;}
.y1a_c00362{bottom:419.850000px;}
.y19_c00362{bottom:453.300000px;}
.y18_c00362{bottom:487.350000px;}
.y17_c00362{bottom:520.200000px;}
.y16_c00362{bottom:553.800000px;}
.y15_c00362{bottom:587.550000px;}
.y2e_c00362{bottom:611.250000px;}
.y14_c00362{bottom:621.300000px;}
.y2d_c00362{bottom:641.550000px;}
.y13_c00362{bottom:654.450000px;}
.y2c_c00362{bottom:670.350000px;}
.y12_c00362{bottom:687.900000px;}
.y2b_c00362{bottom:692.550000px;}
.y11_c00362{bottom:721.650000px;}
.y10_c00362{bottom:755.100000px;}
.yf_c00362{bottom:788.400000px;}
.y2a_c00362{bottom:799.650000px;}
.ye_c00362{bottom:821.550000px;}
.y29_c00362{bottom:829.200000px;}
.y28_c00362{bottom:852.600000px;}
.yd_c00362{bottom:854.250000px;}
.yc_c00362{bottom:887.700000px;}
.yb_c00362{bottom:921.750000px;}
.ya_c00362{bottom:954.750000px;}
.y9_c00362{bottom:988.200000px;}
.y27_c00362{bottom:990.900000px;}
.y26_c00362{bottom:1021.050000px;}
.y8_c00362{bottom:1021.650000px;}
.y25_c00362{bottom:1044.300000px;}
.y7_c00362{bottom:1055.250000px;}
.y6_c00362{bottom:1088.400000px;}
.y5_c00362{bottom:1120.950000px;}
.y4_c00362{bottom:1154.550000px;}
.y3_c00362{bottom:1188.000000px;}
.y2_c00362{bottom:1221.000000px;}
.y1_c00362{bottom:1254.750000px;}
.h9_c00362{height:13.200074px;}
.ha_c00362{height:43.804688px;}
.h4_c00362{height:91.291992px;}
.h5_c00362{height:98.756836px;}
.h7_c00362{height:109.551855px;}
.h8_c00362{height:110.040000px;}
.h3_c00362{height:110.151855px;}
.h2_c00362{height:121.546875px;}
.h6_c00362{height:122.616000px;}
.h1_c00362{height:132.941895px;}
.h0_c00362{height:1363.500000px;}
.w2_c00362{width:104.875500px;}
.w1_c00362{width:864.750000px;}
.w0_c00362{width:865.050000px;}
.x0_c00362{left:0.000000px;}
.x7_c00362{left:32.700000px;}
.x8_c00362{left:33.750000px;}
.x6_c00362{left:35.400000px;}
.x5_c00362{left:36.450000px;}
.x4_c00362{left:37.500000px;}
.x3_c00362{left:39.150000px;}
.x2_c00362{left:40.200000px;}
.x1_c00362{left:42.450000px;}
.x9_c00362{left:43.950000px;}
.x16_c00362{left:384.339249px;}
.xc_c00362{left:626.850000px;}
.xb_c00362{left:629.400000px;}
.x15_c00362{left:630.900000px;}
.x10_c00362{left:635.850000px;}
.x12_c00362{left:643.350000px;}
.xe_c00362{left:654.750000px;}
.x14_c00362{left:665.550000px;}
.x13_c00362{left:678.750000px;}
.xf_c00362{left:683.100000px;}
.xa_c00362{left:706.500000px;}
.xd_c00362{left:707.700000px;}
.x11_c00362{left:709.200000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls6_c00362{letter-spacing:0.000000pt;}
.ls1_c00362{letter-spacing:0.874667pt;}
.ls5_c00362{letter-spacing:7.978667pt;}
.ls0_c00362{letter-spacing:19.762667pt;}
.ls2_c00362{letter-spacing:22.453333pt;}
.ls3_c00362{letter-spacing:22.936000pt;}
.ls4_c00362{letter-spacing:24.800000pt;}
.ws1_c00362{word-spacing:-46.376000pt;}
.ws0_c00362{word-spacing:-37.100800pt;}
.ws5_c00362{word-spacing:-23.333333pt;}
.ws3_c00362{word-spacing:-16.709333pt;}
.ws6_c00362{word-spacing:0.000000pt;}
.ws2_c00362{word-spacing:2.901333pt;}
.ws4_c00362{word-spacing:3.328000pt;}
._c_c00362{margin-left:-19.181867pt;}
._33_c00362{margin-left:-17.775467pt;}
._28_c00362{margin-left:-15.360000pt;}
._3c_c00362{margin-left:-14.152000pt;}
._34_c00362{margin-left:-12.885333pt;}
._1e_c00362{margin-left:-10.258133pt;}
._31_c00362{margin-left:-8.960000pt;}
._27_c00362{margin-left:-7.707733pt;}
._29_c00362{margin-left:-6.464000pt;}
._2d_c00362{margin-left:-5.388800pt;}
._1d_c00362{margin-left:-3.961600pt;}
._b_c00362{margin-left:-2.446933pt;}
._17_c00362{margin-left:-1.365333pt;}
._4_c00362{width:1.109333pt;}
._7_c00362{width:2.133333pt;}
._6_c00362{width:3.072000pt;}
._3_c00362{width:4.096000pt;}
._0_c00362{width:5.034667pt;}
._1_c00362{width:6.229333pt;}
._2_c00362{width:7.765333pt;}
._26_c00362{width:8.789333pt;}
._21_c00362{width:9.813333pt;}
._20_c00362{width:11.093333pt;}
._35_c00362{width:12.608000pt;}
._1b_c00362{width:13.568000pt;}
._f_c00362{width:15.125333pt;}
._37_c00362{width:16.170667pt;}
._1a_c00362{width:17.493333pt;}
._a_c00362{width:19.178667pt;}
._9_c00362{width:21.218667pt;}
._8_c00362{width:22.933333pt;}
._14_c00362{width:24.548267pt;}
._13_c00362{width:26.624000pt;}
._18_c00362{width:27.705600pt;}
._22_c00362{width:28.949333pt;}
._e_c00362{width:30.037333pt;}
._25_c00362{width:31.430400pt;}
._d_c00362{width:32.682667pt;}
._38_c00362{width:33.591467pt;}
._19_c00362{width:34.730667pt;}
._10_c00362{width:36.949333pt;}
._36_c00362{width:37.928533pt;}
._16_c00362{width:39.104000pt;}
._1f_c00362{width:40.256000pt;}
._5_c00362{width:41.898667pt;}
._24_c00362{width:44.174933pt;}
._15_c00362{width:46.336000pt;}
._30_c00362{width:48.170667pt;}
._12_c00362{width:50.178133pt;}
._32_c00362{width:51.825067pt;}
._2f_c00362{width:55.040000pt;}
._2b_c00362{width:55.978667pt;}
._11_c00362{width:57.941333pt;}
._23_c00362{width:59.050667pt;}
._2c_c00362{width:61.184000pt;}
._3b_c00362{width:63.042667pt;}
._2e_c00362{width:67.093333pt;}
._2a_c00362{width:71.217067pt;}
._3f_c00362{width:73.216000pt;}
._3d_c00362{width:79.165333pt;}
._3e_c00362{width:99.753600pt;}
._1c_c00362{width:103.850667pt;}
._3a_c00362{width:119.296000pt;}
._40_c00362{width:158.189867pt;}
._39_c00362{width:1667.183467pt;}
.fs9_c00362{font-size:34.666667pt;}
.fsa_c00362{font-size:42.666667pt;}
.fs3_c00362{font-size:66.133333pt;}
.fs6_c00362{font-size:69.333333pt;}
.fs4_c00362{font-size:74.666667pt;}
.fs5_c00362{font-size:77.333333pt;}
.fs2_c00362{font-size:82.666667pt;}
.fs0_c00362{font-size:85.333333pt;}
.fs1_c00362{font-size:93.333333pt;}
.fs8_c00362{font-size:104.000000pt;}
.fs7_c00362{font-size:125.333333pt;}
.y0_c00362{bottom:0.000000pt;}
.y36_c00362{bottom:2.760000pt;}
.y35_c00362{bottom:6.425212pt;}
.y24_c00362{bottom:74.133333pt;}
.y23_c00362{bottom:102.400000pt;}
.y22_c00362{bottom:133.466667pt;}
.y21_c00362{bottom:163.466667pt;}
.y34_c00362{bottom:192.400000pt;}
.y20_c00362{bottom:193.466667pt;}
.y1f_c00362{bottom:224.400000pt;}
.y33_c00362{bottom:225.600000pt;}
.y32_c00362{bottom:251.600000pt;}
.y1e_c00362{bottom:253.733333pt;}
.y31_c00362{bottom:274.800000pt;}
.y1d_c00362{bottom:283.600000pt;}
.y30_c00362{bottom:308.133333pt;}
.y1c_c00362{bottom:313.466667pt;}
.y2f_c00362{bottom:328.266667pt;}
.y1b_c00362{bottom:343.200000pt;}
.y1a_c00362{bottom:373.200000pt;}
.y19_c00362{bottom:402.933333pt;}
.y18_c00362{bottom:433.200000pt;}
.y17_c00362{bottom:462.400000pt;}
.y16_c00362{bottom:492.266667pt;}
.y15_c00362{bottom:522.266667pt;}
.y2e_c00362{bottom:543.333333pt;}
.y14_c00362{bottom:552.266667pt;}
.y2d_c00362{bottom:570.266667pt;}
.y13_c00362{bottom:581.733333pt;}
.y2c_c00362{bottom:595.866667pt;}
.y12_c00362{bottom:611.466667pt;}
.y2b_c00362{bottom:615.600000pt;}
.y11_c00362{bottom:641.466667pt;}
.y10_c00362{bottom:671.200000pt;}
.yf_c00362{bottom:700.800000pt;}
.y2a_c00362{bottom:710.800000pt;}
.ye_c00362{bottom:730.266667pt;}
.y29_c00362{bottom:737.066667pt;}
.y28_c00362{bottom:757.866667pt;}
.yd_c00362{bottom:759.333333pt;}
.yc_c00362{bottom:789.066667pt;}
.yb_c00362{bottom:819.333333pt;}
.ya_c00362{bottom:848.666667pt;}
.y9_c00362{bottom:878.400000pt;}
.y27_c00362{bottom:880.800000pt;}
.y26_c00362{bottom:907.600000pt;}
.y8_c00362{bottom:908.133333pt;}
.y25_c00362{bottom:928.266667pt;}
.y7_c00362{bottom:938.000000pt;}
.y6_c00362{bottom:967.466667pt;}
.y5_c00362{bottom:996.400000pt;}
.y4_c00362{bottom:1026.266667pt;}
.y3_c00362{bottom:1056.000000pt;}
.y2_c00362{bottom:1085.333333pt;}
.y1_c00362{bottom:1115.333333pt;}
.h9_c00362{height:11.733399pt;}
.ha_c00362{height:38.937500pt;}
.h4_c00362{height:81.148438pt;}
.h5_c00362{height:87.783854pt;}
.h7_c00362{height:97.379427pt;}
.h8_c00362{height:97.813333pt;}
.h3_c00362{height:97.912760pt;}
.h2_c00362{height:108.041667pt;}
.h6_c00362{height:108.992000pt;}
.h1_c00362{height:118.170573pt;}
.h0_c00362{height:1212.000000pt;}
.w2_c00362{width:93.222667pt;}
.w1_c00362{width:768.666667pt;}
.w0_c00362{width:768.933333pt;}
.x0_c00362{left:0.000000pt;}
.x7_c00362{left:29.066667pt;}
.x8_c00362{left:30.000000pt;}
.x6_c00362{left:31.466667pt;}
.x5_c00362{left:32.400000pt;}
.x4_c00362{left:33.333333pt;}
.x3_c00362{left:34.800000pt;}
.x2_c00362{left:35.733333pt;}
.x1_c00362{left:37.733333pt;}
.x9_c00362{left:39.066667pt;}
.x16_c00362{left:341.634888pt;}
.xc_c00362{left:557.200000pt;}
.xb_c00362{left:559.466667pt;}
.x15_c00362{left:560.800000pt;}
.x10_c00362{left:565.200000pt;}
.x12_c00362{left:571.866667pt;}
.xe_c00362{left:582.000000pt;}
.x14_c00362{left:591.600000pt;}
.x13_c00362{left:603.333333pt;}
.xf_c00362{left:607.200000pt;}
.xa_c00362{left:628.000000pt;}
.xd_c00362{left:629.066667pt;}
.x11_c00362{left:630.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_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_46e59d0aeaf989f90883ef7e.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_686b11e589013e465fc34709.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_2f830a9df69599ba494107fa.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00363;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00363{font-family:ff6_c00363;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls6_c00363{letter-spacing:0.000000px;}
.ls7_c00363{letter-spacing:3.000000px;}
.ls1_c00363{letter-spacing:8.520000px;}
.ls4_c00363{letter-spacing:10.164000px;}
.ls5_c00363{letter-spacing:11.340000px;}
.ls3_c00363{letter-spacing:12.600000px;}
.ls0_c00363{letter-spacing:59.892000px;}
.ls2_c00363{letter-spacing:389.064000px;}
.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;}
}
.ws1_c00363{word-spacing:-23.136000px;}
.ws0_c00363{word-spacing:-20.244000px;}
.ws2_c00363{word-spacing:-18.798000px;}
.ws3_c00363{word-spacing:0.000000px;}
._43_c00363{margin-left:-39.264000px;}
._48_c00363{margin-left:-32.256000px;}
._52_c00363{margin-left:-28.128000px;}
._1e_c00363{margin-left:-20.868000px;}
._30_c00363{margin-left:-19.392000px;}
._32_c00363{margin-left:-17.376000px;}
._1f_c00363{margin-left:-15.360000px;}
._3e_c00363{margin-left:-13.164000px;}
._40_c00363{margin-left:-11.448000px;}
._22_c00363{margin-left:-10.176000px;}
._2c_c00363{margin-left:-8.700000px;}
._3f_c00363{margin-left:-7.560000px;}
._15_c00363{margin-left:-6.528000px;}
._14_c00363{margin-left:-5.412000px;}
._13_c00363{margin-left:-3.708000px;}
._2_c00363{margin-left:-1.704000px;}
._8_c00363{width:1.152000px;}
._7_c00363{width:2.688000px;}
._10_c00363{width:3.756000px;}
._b_c00363{width:4.896000px;}
._17_c00363{width:5.964000px;}
._6_c00363{width:7.008000px;}
._e_c00363{width:8.136000px;}
._0_c00363{width:9.576000px;}
._5_c00363{width:10.944000px;}
._1_c00363{width:12.180000px;}
._d_c00363{width:13.248000px;}
._a_c00363{width:15.072000px;}
._4_c00363{width:16.224000px;}
._12_c00363{width:17.940000px;}
._1b_c00363{width:19.200000px;}
._16_c00363{width:20.736000px;}
._f_c00363{width:21.888000px;}
._35_c00363{width:24.420000px;}
._1a_c00363{width:25.524000px;}
._3_c00363{width:27.456000px;}
._26_c00363{width:28.542000px;}
._9_c00363{width:29.856000px;}
._3b_c00363{width:30.924000px;}
._2b_c00363{width:32.664000px;}
._c_c00363{width:34.056000px;}
._18_c00363{width:35.712000px;}
._3d_c00363{width:37.152000px;}
._37_c00363{width:38.424000px;}
._36_c00363{width:39.504000px;}
._1d_c00363{width:41.280000px;}
._24_c00363{width:42.924000px;}
._25_c00363{width:44.640000px;}
._21_c00363{width:45.780000px;}
._19_c00363{width:47.556000px;}
._38_c00363{width:49.284000px;}
._11_c00363{width:51.276000px;}
._1c_c00363{width:52.320000px;}
._20_c00363{width:53.760000px;}
._28_c00363{width:56.664000px;}
._27_c00363{width:58.800000px;}
._42_c00363{width:59.952000px;}
._3a_c00363{width:61.308000px;}
._3c_c00363{width:62.400000px;}
._46_c00363{width:65.088000px;}
._4e_c00363{width:73.824000px;}
._50_c00363{width:74.976000px;}
._4d_c00363{width:78.840000px;}
._29_c00363{width:81.648000px;}
._53_c00363{width:85.728000px;}
._31_c00363{width:98.976000px;}
._44_c00363{width:107.328000px;}
._4c_c00363{width:111.240000px;}
._47_c00363{width:131.808000px;}
._4f_c00363{width:239.532000px;}
._2d_c00363{width:329.076000px;}
._2f_c00363{width:332.064000px;}
._2a_c00363{width:364.320000px;}
._4b_c00363{width:396.180000px;}
._45_c00363{width:405.204000px;}
._41_c00363{width:417.300000px;}
._39_c00363{width:432.012000px;}
._51_c00363{width:484.188000px;}
._2e_c00363{width:522.912000px;}
._49_c00363{width:536.352000px;}
._34_c00363{width:585.252000px;}
._23_c00363{width:662.313000px;}
._4a_c00363{width:789.924000px;}
._33_c00363{width:912.888000px;}
.fc2_c00363{color:transparent;}
.fc1_c00363{color:rgb(128,128,128);}
.fc0_c00363{color:rgb(0,0,0);}
.fs5_c00363{font-size:48.000000px;}
.fs4_c00363{font-size:78.000000px;}
.fs2_c00363{font-size:81.000000px;}
.fs0_c00363{font-size:84.000000px;}
.fs1_c00363{font-size:96.000000px;}
.fs3_c00363{font-size:102.000000px;}
.y0_c00363{bottom:0.000000px;}
.y28_c00363{bottom:3.105000px;}
.y27_c00363{bottom:7.228357px;}
.y25_c00363{bottom:87.180000px;}
.y24_c00363{bottom:120.930000px;}
.y23_c00363{bottom:155.280000px;}
.y26_c00363{bottom:174.780000px;}
.y22_c00363{bottom:188.280000px;}
.y21_c00363{bottom:222.780000px;}
.y20_c00363{bottom:257.580000px;}
.y1f_c00363{bottom:291.930000px;}
.y1e_c00363{bottom:325.980000px;}
.y1d_c00363{bottom:359.730000px;}
.y1c_c00363{bottom:393.630000px;}
.y1b_c00363{bottom:427.380000px;}
.y1a_c00363{bottom:461.130000px;}
.y19_c00363{bottom:494.880000px;}
.y18_c00363{bottom:528.930000px;}
.y17_c00363{bottom:564.930000px;}
.y16_c00363{bottom:598.080000px;}
.y15_c00363{bottom:631.080000px;}
.y14_c00363{bottom:663.180000px;}
.y13_c00363{bottom:693.630000px;}
.y12_c00363{bottom:732.030000px;}
.y11_c00363{bottom:764.730000px;}
.y10_c00363{bottom:798.630000px;}
.yf_c00363{bottom:832.230000px;}
.ye_c00363{bottom:865.980000px;}
.yd_c00363{bottom:899.130000px;}
.yc_c00363{bottom:933.180000px;}
.yb_c00363{bottom:947.130000px;}
.ya_c00363{bottom:969.630000px;}
.y9_c00363{bottom:1001.430000px;}
.y8_c00363{bottom:1033.530000px;}
.y7_c00363{bottom:1065.780000px;}
.y6_c00363{bottom:1098.630000px;}
.y5_c00363{bottom:1132.080000px;}
.y4_c00363{bottom:1165.830000px;}
.y3_c00363{bottom:1198.830000px;}
.y2_c00363{bottom:1232.280000px;}
.y1_c00363{bottom:1265.280000px;}
.h5_c00363{height:13.200074px;}
.h6_c00363{height:43.804688px;}
.h4_c00363{height:91.291992px;}
.h2_c00363{height:121.546875px;}
.h3_c00363{height:129.143555px;}
.h0_c00363{height:1382.700000px;}
.h1_c00363{height:1383.000000px;}
.w2_c00363{width:104.875500px;}
.w0_c00363{width:863.175000px;}
.w1_c00363{width:863.250000px;}
.x0_c00363{left:0.000000px;}
.x19_c00363{left:33.150000px;}
.x14_c00363{left:35.400000px;}
.xf_c00363{left:36.450000px;}
.xe_c00363{left:39.150000px;}
.xd_c00363{left:41.850000px;}
.xc_c00363{left:42.900000px;}
.x7_c00363{left:45.000000px;}
.x8_c00363{left:46.200000px;}
.x5_c00363{left:52.650000px;}
.x16_c00363{left:61.200000px;}
.x15_c00363{left:62.850000px;}
.x6_c00363{left:79.050000px;}
.x9_c00363{left:102.000000px;}
.x13_c00363{left:107.100000px;}
.x12_c00363{left:167.700000px;}
.x11_c00363{left:240.600000px;}
.x17_c00363{left:253.500000px;}
.x10_c00363{left:257.250000px;}
.xb_c00363{left:259.650000px;}
.xa_c00363{left:261.600000px;}
.x1_c00363{left:263.850000px;}
.x4_c00363{left:265.500000px;}
.x2_c00363{left:267.000000px;}
.x3_c00363{left:269.100000px;}
.x1a_c00363{left:383.401749px;}
.x18_c00363{left:788.100000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls6_c00363{letter-spacing:0.000000pt;}
.ls7_c00363{letter-spacing:2.666667pt;}
.ls1_c00363{letter-spacing:7.573333pt;}
.ls4_c00363{letter-spacing:9.034667pt;}
.ls5_c00363{letter-spacing:10.080000pt;}
.ls3_c00363{letter-spacing:11.200000pt;}
.ls0_c00363{letter-spacing:53.237333pt;}
.ls2_c00363{letter-spacing:345.834667pt;}
.ws1_c00363{word-spacing:-20.565333pt;}
.ws0_c00363{word-spacing:-17.994667pt;}
.ws2_c00363{word-spacing:-16.709333pt;}
.ws3_c00363{word-spacing:0.000000pt;}
._43_c00363{margin-left:-34.901333pt;}
._48_c00363{margin-left:-28.672000pt;}
._52_c00363{margin-left:-25.002667pt;}
._1e_c00363{margin-left:-18.549333pt;}
._30_c00363{margin-left:-17.237333pt;}
._32_c00363{margin-left:-15.445333pt;}
._1f_c00363{margin-left:-13.653333pt;}
._3e_c00363{margin-left:-11.701333pt;}
._40_c00363{margin-left:-10.176000pt;}
._22_c00363{margin-left:-9.045333pt;}
._2c_c00363{margin-left:-7.733333pt;}
._3f_c00363{margin-left:-6.720000pt;}
._15_c00363{margin-left:-5.802667pt;}
._14_c00363{margin-left:-4.810667pt;}
._13_c00363{margin-left:-3.296000pt;}
._2_c00363{margin-left:-1.514667pt;}
._8_c00363{width:1.024000pt;}
._7_c00363{width:2.389333pt;}
._10_c00363{width:3.338667pt;}
._b_c00363{width:4.352000pt;}
._17_c00363{width:5.301333pt;}
._6_c00363{width:6.229333pt;}
._e_c00363{width:7.232000pt;}
._0_c00363{width:8.512000pt;}
._5_c00363{width:9.728000pt;}
._1_c00363{width:10.826667pt;}
._d_c00363{width:11.776000pt;}
._a_c00363{width:13.397333pt;}
._4_c00363{width:14.421333pt;}
._12_c00363{width:15.946667pt;}
._1b_c00363{width:17.066667pt;}
._16_c00363{width:18.432000pt;}
._f_c00363{width:19.456000pt;}
._35_c00363{width:21.706667pt;}
._1a_c00363{width:22.688000pt;}
._3_c00363{width:24.405333pt;}
._26_c00363{width:25.370667pt;}
._9_c00363{width:26.538667pt;}
._3b_c00363{width:27.488000pt;}
._2b_c00363{width:29.034667pt;}
._c_c00363{width:30.272000pt;}
._18_c00363{width:31.744000pt;}
._3d_c00363{width:33.024000pt;}
._37_c00363{width:34.154667pt;}
._36_c00363{width:35.114667pt;}
._1d_c00363{width:36.693333pt;}
._24_c00363{width:38.154667pt;}
._25_c00363{width:39.680000pt;}
._21_c00363{width:40.693333pt;}
._19_c00363{width:42.272000pt;}
._38_c00363{width:43.808000pt;}
._11_c00363{width:45.578667pt;}
._1c_c00363{width:46.506667pt;}
._20_c00363{width:47.786667pt;}
._28_c00363{width:50.368000pt;}
._27_c00363{width:52.266667pt;}
._42_c00363{width:53.290667pt;}
._3a_c00363{width:54.496000pt;}
._3c_c00363{width:55.466667pt;}
._46_c00363{width:57.856000pt;}
._4e_c00363{width:65.621333pt;}
._50_c00363{width:66.645333pt;}
._4d_c00363{width:70.080000pt;}
._29_c00363{width:72.576000pt;}
._53_c00363{width:76.202667pt;}
._31_c00363{width:87.978667pt;}
._44_c00363{width:95.402667pt;}
._4c_c00363{width:98.880000pt;}
._47_c00363{width:117.162667pt;}
._4f_c00363{width:212.917333pt;}
._2d_c00363{width:292.512000pt;}
._2f_c00363{width:295.168000pt;}
._2a_c00363{width:323.840000pt;}
._4b_c00363{width:352.160000pt;}
._45_c00363{width:360.181333pt;}
._41_c00363{width:370.933333pt;}
._39_c00363{width:384.010667pt;}
._51_c00363{width:430.389333pt;}
._2e_c00363{width:464.810667pt;}
._49_c00363{width:476.757333pt;}
._34_c00363{width:520.224000pt;}
._23_c00363{width:588.722667pt;}
._4a_c00363{width:702.154667pt;}
._33_c00363{width:811.456000pt;}
.fs5_c00363{font-size:42.666667pt;}
.fs4_c00363{font-size:69.333333pt;}
.fs2_c00363{font-size:72.000000pt;}
.fs0_c00363{font-size:74.666667pt;}
.fs1_c00363{font-size:85.333333pt;}
.fs3_c00363{font-size:90.666667pt;}
.y0_c00363{bottom:0.000000pt;}
.y28_c00363{bottom:2.760000pt;}
.y27_c00363{bottom:6.425206pt;}
.y25_c00363{bottom:77.493333pt;}
.y24_c00363{bottom:107.493333pt;}
.y23_c00363{bottom:138.026667pt;}
.y26_c00363{bottom:155.360000pt;}
.y22_c00363{bottom:167.360000pt;}
.y21_c00363{bottom:198.026667pt;}
.y20_c00363{bottom:228.960000pt;}
.y1f_c00363{bottom:259.493333pt;}
.y1e_c00363{bottom:289.760000pt;}
.y1d_c00363{bottom:319.760000pt;}
.y1c_c00363{bottom:349.893333pt;}
.y1b_c00363{bottom:379.893333pt;}
.y1a_c00363{bottom:409.893333pt;}
.y19_c00363{bottom:439.893333pt;}
.y18_c00363{bottom:470.160000pt;}
.y17_c00363{bottom:502.160000pt;}
.y16_c00363{bottom:531.626667pt;}
.y15_c00363{bottom:560.960000pt;}
.y14_c00363{bottom:589.493333pt;}
.y13_c00363{bottom:616.560000pt;}
.y12_c00363{bottom:650.693333pt;}
.y11_c00363{bottom:679.760000pt;}
.y10_c00363{bottom:709.893333pt;}
.yf_c00363{bottom:739.760000pt;}
.ye_c00363{bottom:769.760000pt;}
.yd_c00363{bottom:799.226667pt;}
.yc_c00363{bottom:829.493333pt;}
.yb_c00363{bottom:841.893333pt;}
.ya_c00363{bottom:861.893333pt;}
.y9_c00363{bottom:890.160000pt;}
.y8_c00363{bottom:918.693333pt;}
.y7_c00363{bottom:947.360000pt;}
.y6_c00363{bottom:976.560000pt;}
.y5_c00363{bottom:1006.293333pt;}
.y4_c00363{bottom:1036.293333pt;}
.y3_c00363{bottom:1065.626667pt;}
.y2_c00363{bottom:1095.360000pt;}
.y1_c00363{bottom:1124.693333pt;}
.h5_c00363{height:11.733399pt;}
.h6_c00363{height:38.937500pt;}
.h4_c00363{height:81.148438pt;}
.h2_c00363{height:108.041667pt;}
.h3_c00363{height:114.794271pt;}
.h0_c00363{height:1229.066667pt;}
.h1_c00363{height:1229.333333pt;}
.w2_c00363{width:93.222667pt;}
.w0_c00363{width:767.266667pt;}
.w1_c00363{width:767.333333pt;}
.x0_c00363{left:0.000000pt;}
.x19_c00363{left:29.466667pt;}
.x14_c00363{left:31.466667pt;}
.xf_c00363{left:32.400000pt;}
.xe_c00363{left:34.800000pt;}
.xd_c00363{left:37.200000pt;}
.xc_c00363{left:38.133333pt;}
.x7_c00363{left:40.000000pt;}
.x8_c00363{left:41.066667pt;}
.x5_c00363{left:46.800000pt;}
.x16_c00363{left:54.400000pt;}
.x15_c00363{left:55.866667pt;}
.x6_c00363{left:70.266667pt;}
.x9_c00363{left:90.666667pt;}
.x13_c00363{left:95.200000pt;}
.x12_c00363{left:149.066667pt;}
.x11_c00363{left:213.866667pt;}
.x17_c00363{left:225.333333pt;}
.x10_c00363{left:228.666667pt;}
.xb_c00363{left:230.800000pt;}
.xa_c00363{left:232.533333pt;}
.x1_c00363{left:234.533333pt;}
.x4_c00363{left:236.000000pt;}
.x2_c00363{left:237.333333pt;}
.x3_c00363{left:239.200000pt;}
.x1a_c00363{left:340.801554pt;}
.x18_c00363{left:700.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_345186368be20ab5bd0da77c.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_7eadbf2c1cd9d5d38b4bed7b.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_1eb1252aedd9b78cb67f0988.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_cffcbf52934c9a0910ea9e12.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00364;src:url('chunks/assets/font_43c76a17f1f341911ae8befb.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00364;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00364{font-family:ff7_c00364;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v2_c00364{vertical-align:-136.200000px;}
.v1_c00364{vertical-align:-59.400000px;}
.v0_c00364{vertical-align:0.000000px;}
.ls5_c00364{letter-spacing:-27.000000px;}
.ls4_c00364{letter-spacing:0.000000px;}
.ls1_c00364{letter-spacing:1.200000px;}
.ls0_c00364{letter-spacing:61.200000px;}
.ls3_c00364{letter-spacing:72.000000px;}
.ls2_c00364{letter-spacing:107.424000px;}
.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:-77.784000px;}
.ws1_c00364{word-spacing:-65.616000px;}
.ws2_c00364{word-spacing:-63.504000px;}
.ws3_c00364{word-spacing:-23.250000px;}
.ws5_c00364{word-spacing:-23.136000px;}
.ws6_c00364{word-spacing:0.000000px;}
.ws4_c00364{word-spacing:191.682000px;}
._41_c00364{margin-left:-189.420000px;}
._3d_c00364{margin-left:-133.980000px;}
._44_c00364{margin-left:-127.680000px;}
._3e_c00364{margin-left:-123.900000px;}
._1_c00364{margin-left:-73.176000px;}
._0_c00364{margin-left:-72.168000px;}
._3_c00364{margin-left:-60.432000px;}
._45_c00364{margin-left:-55.020000px;}
._42_c00364{margin-left:-53.340000px;}
._35_c00364{margin-left:-33.864000px;}
._3a_c00364{margin-left:-30.720000px;}
._43_c00364{margin-left:-29.400000px;}
._3f_c00364{margin-left:-19.821000px;}
._5_c00364{margin-left:-18.432000px;}
._34_c00364{margin-left:-15.336000px;}
._2f_c00364{margin-left:-13.152000px;}
._21_c00364{margin-left:-10.080000px;}
._25_c00364{margin-left:-8.400000px;}
._33_c00364{margin-left:-7.008000px;}
._2_c00364{margin-left:-5.496000px;}
._11_c00364{margin-left:-3.456000px;}
._16_c00364{margin-left:-1.632000px;}
._6_c00364{width:1.440000px;}
._a_c00364{width:2.976000px;}
._9_c00364{width:4.320000px;}
._12_c00364{width:5.472000px;}
._8_c00364{width:6.816000px;}
._f_c00364{width:7.968000px;}
._e_c00364{width:9.888000px;}
._1e_c00364{width:11.520000px;}
._b_c00364{width:13.248000px;}
._19_c00364{width:14.880000px;}
._1a_c00364{width:16.128000px;}
._13_c00364{width:17.664000px;}
._d_c00364{width:18.912000px;}
._14_c00364{width:19.968000px;}
._1b_c00364{width:21.024000px;}
._30_c00364{width:22.080000px;}
._1d_c00364{width:24.960000px;}
._15_c00364{width:26.016000px;}
._1c_c00364{width:28.128000px;}
._c_c00364{width:30.240000px;}
._18_c00364{width:31.584000px;}
._7_c00364{width:33.888000px;}
._27_c00364{width:35.040000px;}
._20_c00364{width:36.384000px;}
._10_c00364{width:38.208000px;}
._2c_c00364{width:40.032000px;}
._22_c00364{width:41.088000px;}
._24_c00364{width:43.392000px;}
._17_c00364{width:44.928000px;}
._32_c00364{width:45.984000px;}
._38_c00364{width:47.232000px;}
._28_c00364{width:48.864000px;}
._36_c00364{width:50.112000px;}
._2a_c00364{width:52.224000px;}
._1f_c00364{width:53.376000px;}
._31_c00364{width:56.448000px;}
._2d_c00364{width:58.080000px;}
._23_c00364{width:60.864000px;}
._2b_c00364{width:62.688000px;}
._2e_c00364{width:64.032000px;}
._39_c00364{width:68.352000px;}
._29_c00364{width:71.040000px;}
._37_c00364{width:73.536000px;}
._40_c00364{width:85.869000px;}
._26_c00364{width:166.944000px;}
._4_c00364{width:314.328000px;}
._3c_c00364{width:821.184000px;}
._3b_c00364{width:890.496000px;}
.fc2_c00364{color:transparent;}
.fc1_c00364{color:rgb(128,128,128);}
.fc0_c00364{color:rgb(0,0,0);}
.fs0_c00364{font-size:24.000000px;}
.fs6_c00364{font-size:48.000000px;}
.fs3_c00364{font-size:84.000000px;}
.fs5_c00364{font-size:93.000000px;}
.fs1_c00364{font-size:96.000000px;}
.fs2_c00364{font-size:102.000000px;}
.fs4_c00364{font-size:420.000000px;}
.y0_c00364{bottom:0.000000px;}
.y2f_c00364{bottom:3.105000px;}
.y2e_c00364{bottom:7.228369px;}
.y25_c00364{bottom:99.570000px;}
.y24_c00364{bottom:134.370000px;}
.y23_c00364{bottom:169.770000px;}
.y22_c00364{bottom:202.770000px;}
.y21_c00364{bottom:237.570000px;}
.y20_c00364{bottom:271.620000px;}
.y1f_c00364{bottom:305.370000px;}
.y1e_c00364{bottom:339.420000px;}
.y1d_c00364{bottom:372.570000px;}
.y1c_c00364{bottom:407.070000px;}
.y1b_c00364{bottom:440.670000px;}
.y1a_c00364{bottom:474.420000px;}
.y19_c00364{bottom:507.870000px;}
.y18_c00364{bottom:541.620000px;}
.y17_c00364{bottom:574.770000px;}
.y16_c00364{bottom:608.820000px;}
.y15_c00364{bottom:641.970000px;}
.y14_c00364{bottom:675.270000px;}
.y2d_c00364{bottom:677.370000px;}
.y2c_c00364{bottom:701.370000px;}
.y13_c00364{bottom:709.020000px;}
.y12_c00364{bottom:742.770000px;}
.y11_c00364{bottom:776.520000px;}
.y10_c00364{bottom:809.670000px;}
.y2b_c00364{bottom:826.770000px;}
.yf_c00364{bottom:842.670000px;}
.y2a_c00364{bottom:854.820000px;}
.ye_c00364{bottom:875.820000px;}
.y29_c00364{bottom:883.920000px;}
.y28_c00364{bottom:907.170000px;}
.yd_c00364{bottom:909.120000px;}
.yc_c00364{bottom:942.570000px;}
.yb_c00364{bottom:975.720000px;}
.y27_c00364{bottom:978.420000px;}
.ya_c00364{bottom:1009.020000px;}
.y26_c00364{bottom:1016.220000px;}
.y9_c00364{bottom:1042.770000px;}
.y8_c00364{bottom:1076.220000px;}
.y7_c00364{bottom:1109.370000px;}
.y6_c00364{bottom:1142.070000px;}
.y5_c00364{bottom:1175.070000px;}
.y4_c00364{bottom:1208.220000px;}
.y3_c00364{bottom:1241.370000px;}
.y2_c00364{bottom:1275.120000px;}
.y1_c00364{bottom:1302.420000px;}
.h7_c00364{height:13.200073px;}
.h2_c00364{height:30.386719px;}
.h8_c00364{height:43.804688px;}
.h5_c00364{height:97.464000px;}
.h3_c00364{height:121.546875px;}
.h4_c00364{height:352.807031px;}
.h6_c00364{height:412.207031px;}
.h0_c00364{height:1383.450000px;}
.h1_c00364{height:1383.750000px;}
.w2_c00364{width:104.875500px;}
.w0_c00364{width:878.025000px;}
.w1_c00364{width:878.250000px;}
.x0_c00364{left:0.000000px;}
.xb_c00364{left:27.750000px;}
.xa_c00364{left:30.000000px;}
.x8_c00364{left:31.050000px;}
.x9_c00364{left:32.100000px;}
.x7_c00364{left:33.150000px;}
.x6_c00364{left:34.200000px;}
.xc_c00364{left:35.850000px;}
.x5_c00364{left:37.500000px;}
.x4_c00364{left:40.200000px;}
.x1_c00364{left:96.900000px;}
.x2_c00364{left:375.600000px;}
.x11_c00364{left:390.826721px;}
.x3_c00364{left:403.650000px;}
.xe_c00364{left:627.750000px;}
.xd_c00364{left:657.150000px;}
.x10_c00364{left:693.600000px;}
.xf_c00364{left:703.350000px;}
@media print{
.v2_c00364{vertical-align:-121.066667pt;}
.v1_c00364{vertical-align:-52.800000pt;}
.v0_c00364{vertical-align:0.000000pt;}
.ls5_c00364{letter-spacing:-24.000000pt;}
.ls4_c00364{letter-spacing:0.000000pt;}
.ls1_c00364{letter-spacing:1.066667pt;}
.ls0_c00364{letter-spacing:54.400000pt;}
.ls3_c00364{letter-spacing:64.000000pt;}
.ls2_c00364{letter-spacing:95.488000pt;}
.ws0_c00364{word-spacing:-69.141333pt;}
.ws1_c00364{word-spacing:-58.325333pt;}
.ws2_c00364{word-spacing:-56.448000pt;}
.ws3_c00364{word-spacing:-20.666667pt;}
.ws5_c00364{word-spacing:-20.565333pt;}
.ws6_c00364{word-spacing:0.000000pt;}
.ws4_c00364{word-spacing:170.384000pt;}
._41_c00364{margin-left:-168.373333pt;}
._3d_c00364{margin-left:-119.093333pt;}
._44_c00364{margin-left:-113.493333pt;}
._3e_c00364{margin-left:-110.133333pt;}
._1_c00364{margin-left:-65.045333pt;}
._0_c00364{margin-left:-64.149333pt;}
._3_c00364{margin-left:-53.717333pt;}
._45_c00364{margin-left:-48.906667pt;}
._42_c00364{margin-left:-47.413333pt;}
._35_c00364{margin-left:-30.101333pt;}
._3a_c00364{margin-left:-27.306667pt;}
._43_c00364{margin-left:-26.133333pt;}
._3f_c00364{margin-left:-17.618667pt;}
._5_c00364{margin-left:-16.384000pt;}
._34_c00364{margin-left:-13.632000pt;}
._2f_c00364{margin-left:-11.690667pt;}
._21_c00364{margin-left:-8.960000pt;}
._25_c00364{margin-left:-7.466667pt;}
._33_c00364{margin-left:-6.229333pt;}
._2_c00364{margin-left:-4.885333pt;}
._11_c00364{margin-left:-3.072000pt;}
._16_c00364{margin-left:-1.450667pt;}
._6_c00364{width:1.280000pt;}
._a_c00364{width:2.645333pt;}
._9_c00364{width:3.840000pt;}
._12_c00364{width:4.864000pt;}
._8_c00364{width:6.058667pt;}
._f_c00364{width:7.082667pt;}
._e_c00364{width:8.789333pt;}
._1e_c00364{width:10.240000pt;}
._b_c00364{width:11.776000pt;}
._19_c00364{width:13.226667pt;}
._1a_c00364{width:14.336000pt;}
._13_c00364{width:15.701333pt;}
._d_c00364{width:16.810667pt;}
._14_c00364{width:17.749333pt;}
._1b_c00364{width:18.688000pt;}
._30_c00364{width:19.626667pt;}
._1d_c00364{width:22.186667pt;}
._15_c00364{width:23.125333pt;}
._1c_c00364{width:25.002667pt;}
._c_c00364{width:26.880000pt;}
._18_c00364{width:28.074667pt;}
._7_c00364{width:30.122667pt;}
._27_c00364{width:31.146667pt;}
._20_c00364{width:32.341333pt;}
._10_c00364{width:33.962667pt;}
._2c_c00364{width:35.584000pt;}
._22_c00364{width:36.522667pt;}
._24_c00364{width:38.570667pt;}
._17_c00364{width:39.936000pt;}
._32_c00364{width:40.874667pt;}
._38_c00364{width:41.984000pt;}
._28_c00364{width:43.434667pt;}
._36_c00364{width:44.544000pt;}
._2a_c00364{width:46.421333pt;}
._1f_c00364{width:47.445333pt;}
._31_c00364{width:50.176000pt;}
._2d_c00364{width:51.626667pt;}
._23_c00364{width:54.101333pt;}
._2b_c00364{width:55.722667pt;}
._2e_c00364{width:56.917333pt;}
._39_c00364{width:60.757333pt;}
._29_c00364{width:63.146667pt;}
._37_c00364{width:65.365333pt;}
._40_c00364{width:76.328000pt;}
._26_c00364{width:148.394667pt;}
._4_c00364{width:279.402667pt;}
._3c_c00364{width:729.941333pt;}
._3b_c00364{width:791.552000pt;}
.fs0_c00364{font-size:21.333333pt;}
.fs6_c00364{font-size:42.666667pt;}
.fs3_c00364{font-size:74.666667pt;}
.fs5_c00364{font-size:82.666667pt;}
.fs1_c00364{font-size:85.333333pt;}
.fs2_c00364{font-size:90.666667pt;}
.fs4_c00364{font-size:373.333333pt;}
.y0_c00364{bottom:0.000000pt;}
.y2f_c00364{bottom:2.760000pt;}
.y2e_c00364{bottom:6.425217pt;}
.y25_c00364{bottom:88.506667pt;}
.y24_c00364{bottom:119.440000pt;}
.y23_c00364{bottom:150.906667pt;}
.y22_c00364{bottom:180.240000pt;}
.y21_c00364{bottom:211.173333pt;}
.y20_c00364{bottom:241.440000pt;}
.y1f_c00364{bottom:271.440000pt;}
.y1e_c00364{bottom:301.706667pt;}
.y1d_c00364{bottom:331.173333pt;}
.y1c_c00364{bottom:361.840000pt;}
.y1b_c00364{bottom:391.706667pt;}
.y1a_c00364{bottom:421.706667pt;}
.y19_c00364{bottom:451.440000pt;}
.y18_c00364{bottom:481.440000pt;}
.y17_c00364{bottom:510.906667pt;}
.y16_c00364{bottom:541.173333pt;}
.y15_c00364{bottom:570.640000pt;}
.y14_c00364{bottom:600.240000pt;}
.y2d_c00364{bottom:602.106667pt;}
.y2c_c00364{bottom:623.440000pt;}
.y13_c00364{bottom:630.240000pt;}
.y12_c00364{bottom:660.240000pt;}
.y11_c00364{bottom:690.240000pt;}
.y10_c00364{bottom:719.706667pt;}
.y2b_c00364{bottom:734.906667pt;}
.yf_c00364{bottom:749.040000pt;}
.y2a_c00364{bottom:759.840000pt;}
.ye_c00364{bottom:778.506667pt;}
.y29_c00364{bottom:785.706667pt;}
.y28_c00364{bottom:806.373333pt;}
.yd_c00364{bottom:808.106667pt;}
.yc_c00364{bottom:837.840000pt;}
.yb_c00364{bottom:867.306667pt;}
.y27_c00364{bottom:869.706667pt;}
.ya_c00364{bottom:896.906667pt;}
.y26_c00364{bottom:903.306667pt;}
.y9_c00364{bottom:926.906667pt;}
.y8_c00364{bottom:956.640000pt;}
.y7_c00364{bottom:986.106667pt;}
.y6_c00364{bottom:1015.173333pt;}
.y5_c00364{bottom:1044.506667pt;}
.y4_c00364{bottom:1073.973333pt;}
.y3_c00364{bottom:1103.440000pt;}
.y2_c00364{bottom:1133.440000pt;}
.y1_c00364{bottom:1157.706667pt;}
.h7_c00364{height:11.733399pt;}
.h2_c00364{height:27.010417pt;}
.h8_c00364{height:38.937500pt;}
.h5_c00364{height:86.634667pt;}
.h3_c00364{height:108.041667pt;}
.h4_c00364{height:313.606250pt;}
.h6_c00364{height:366.406250pt;}
.h0_c00364{height:1229.733333pt;}
.h1_c00364{height:1230.000000pt;}
.w2_c00364{width:93.222667pt;}
.w0_c00364{width:780.466667pt;}
.w1_c00364{width:780.666667pt;}
.x0_c00364{left:0.000000pt;}
.xb_c00364{left:24.666667pt;}
.xa_c00364{left:26.666667pt;}
.x8_c00364{left:27.600000pt;}
.x9_c00364{left:28.533333pt;}
.x7_c00364{left:29.466667pt;}
.x6_c00364{left:30.400000pt;}
.xc_c00364{left:31.866667pt;}
.x5_c00364{left:33.333333pt;}
.x4_c00364{left:35.733333pt;}
.x1_c00364{left:86.133333pt;}
.x2_c00364{left:333.866667pt;}
.x11_c00364{left:347.401530pt;}
.x3_c00364{left:358.800000pt;}
.xe_c00364{left:558.000000pt;}
.xd_c00364{left:584.133333pt;}
.x10_c00364{left:616.533333pt;}
.xf_c00364{left:625.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_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_829c412824200ef41ef6cb35.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_e90203cfdc965b03a199da5e.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls1_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:7.200000px;}
.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:-22.098000px;}
.ws1_c00365{word-spacing:0.000000px;}
._3b_c00365{margin-left:-41.664000px;}
._2e_c00365{margin-left:-34.368000px;}
._3a_c00365{margin-left:-32.640000px;}
._30_c00365{margin-left:-30.528000px;}
._32_c00365{margin-left:-28.896000px;}
._3e_c00365{margin-left:-27.414000px;}
._1d_c00365{margin-left:-21.696000px;}
._3c_c00365{margin-left:-20.256000px;}
._40_c00365{margin-left:-18.432000px;}
._1e_c00365{margin-left:-14.784000px;}
._3f_c00365{margin-left:-13.344000px;}
._3d_c00365{margin-left:-11.904000px;}
._10_c00365{margin-left:-10.752000px;}
._34_c00365{margin-left:-9.615000px;}
._39_c00365{margin-left:-8.448000px;}
._e_c00365{margin-left:-7.296000px;}
._22_c00365{margin-left:-5.856000px;}
._f_c00365{margin-left:-4.608000px;}
._d_c00365{margin-left:-3.552000px;}
._b_c00365{margin-left:-2.496000px;}
._c_c00365{margin-left:-1.440000px;}
._5_c00365{width:1.632000px;}
._8_c00365{width:2.688000px;}
._3_c00365{width:3.744000px;}
._1_c00365{width:4.896000px;}
._0_c00365{width:5.952000px;}
._14_c00365{width:7.008000px;}
._19_c00365{width:8.352000px;}
._23_c00365{width:9.696000px;}
._6_c00365{width:10.848000px;}
._21_c00365{width:12.096000px;}
._7_c00365{width:13.152000px;}
._20_c00365{width:14.784000px;}
._1c_c00365{width:16.704000px;}
._a_c00365{width:17.760000px;}
._4_c00365{width:19.584000px;}
._9_c00365{width:21.312000px;}
._31_c00365{width:24.576000px;}
._15_c00365{width:26.304000px;}
._17_c00365{width:27.840000px;}
._2_c00365{width:29.664000px;}
._38_c00365{width:30.720000px;}
._1b_c00365{width:32.640000px;}
._2d_c00365{width:34.464000px;}
._1f_c00365{width:35.808000px;}
._13_c00365{width:36.960000px;}
._33_c00365{width:38.016000px;}
._18_c00365{width:39.552000px;}
._16_c00365{width:40.992000px;}
._1a_c00365{width:43.104000px;}
._11_c00365{width:45.504000px;}
._2c_c00365{width:47.328000px;}
._12_c00365{width:49.728000px;}
._36_c00365{width:51.456000px;}
._35_c00365{width:53.760000px;}
._37_c00365{width:58.848000px;}
._29_c00365{width:59.904000px;}
._2b_c00365{width:69.504000px;}
._28_c00365{width:71.904000px;}
._25_c00365{width:73.728000px;}
._2f_c00365{width:77.472000px;}
._2a_c00365{width:80.064000px;}
._27_c00365{width:82.080000px;}
._24_c00365{width:84.576000px;}
._41_c00365{width:88.380000px;}
._26_c00365{width:95.136000px;}
._42_c00365{width:926.508000px;}
.fc2_c00365{color:transparent;}
.fc1_c00365{color:rgb(128,128,128);}
.fc0_c00365{color:rgb(0,0,0);}
.fs3_c00365{font-size:36.000000px;}
.fs4_c00365{font-size:48.000000px;}
.fs1_c00365{font-size:87.000000px;}
.fs0_c00365{font-size:96.000000px;}
.fs2_c00365{font-size:102.000000px;}
.y0_c00365{bottom:0.000000px;}
.y26_c00365{bottom:3.105000px;}
.y25_c00365{bottom:7.228371px;}
.y24_c00365{bottom:63.465000px;}
.y23_c00365{bottom:104.715000px;}
.y22_c00365{bottom:139.815000px;}
.y21_c00365{bottom:173.565000px;}
.y20_c00365{bottom:208.215000px;}
.y1f_c00365{bottom:242.415000px;}
.y1e_c00365{bottom:277.065000px;}
.y1d_c00365{bottom:310.965000px;}
.y1c_c00365{bottom:345.015000px;}
.y1b_c00365{bottom:379.065000px;}
.y1a_c00365{bottom:412.515000px;}
.y19_c00365{bottom:446.865000px;}
.y18_c00365{bottom:480.615000px;}
.y17_c00365{bottom:514.365000px;}
.y16_c00365{bottom:548.415000px;}
.y15_c00365{bottom:582.165000px;}
.y14_c00365{bottom:616.065000px;}
.y13_c00365{bottom:649.665000px;}
.y12_c00365{bottom:683.415000px;}
.y11_c00365{bottom:717.315000px;}
.y10_c00365{bottom:750.915000px;}
.yf_c00365{bottom:784.365000px;}
.ye_c00365{bottom:817.515000px;}
.yd_c00365{bottom:851.865000px;}
.yc_c00365{bottom:885.615000px;}
.yb_c00365{bottom:919.065000px;}
.ya_c00365{bottom:952.065000px;}
.y9_c00365{bottom:985.215000px;}
.y8_c00365{bottom:1017.915000px;}
.y7_c00365{bottom:1051.665000px;}
.y6_c00365{bottom:1084.515000px;}
.y5_c00365{bottom:1118.565000px;}
.y4_c00365{bottom:1152.015000px;}
.y3_c00365{bottom:1185.615000px;}
.y2_c00365{bottom:1219.065000px;}
.y1_c00365{bottom:1252.215000px;}
.h3_c00365{height:13.200074px;}
.h4_c00365{height:43.804688px;}
.h2_c00365{height:121.546875px;}
.h0_c00365{height:1354.875000px;}
.h1_c00365{height:1355.250000px;}
.w2_c00365{width:104.875500px;}
.w0_c00365{width:845.625000px;}
.w1_c00365{width:846.000000px;}
.x0_c00365{left:0.000000px;}
.x7_c00365{left:236.250000px;}
.x8_c00365{left:237.900000px;}
.x3_c00365{left:239.400000px;}
.x1_c00365{left:240.600000px;}
.x2_c00365{left:242.250000px;}
.x4_c00365{left:243.300000px;}
.x6_c00365{left:244.350000px;}
.x5_c00365{left:245.400000px;}
.xa_c00365{left:374.626740px;}
.x9_c00365{left:476.400000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:6.400000pt;}
.ws0_c00365{word-spacing:-19.642667pt;}
.ws1_c00365{word-spacing:0.000000pt;}
._3b_c00365{margin-left:-37.034667pt;}
._2e_c00365{margin-left:-30.549333pt;}
._3a_c00365{margin-left:-29.013333pt;}
._30_c00365{margin-left:-27.136000pt;}
._32_c00365{margin-left:-25.685333pt;}
._3e_c00365{margin-left:-24.368000pt;}
._1d_c00365{margin-left:-19.285333pt;}
._3c_c00365{margin-left:-18.005333pt;}
._40_c00365{margin-left:-16.384000pt;}
._1e_c00365{margin-left:-13.141333pt;}
._3f_c00365{margin-left:-11.861333pt;}
._3d_c00365{margin-left:-10.581333pt;}
._10_c00365{margin-left:-9.557333pt;}
._34_c00365{margin-left:-8.546667pt;}
._39_c00365{margin-left:-7.509333pt;}
._e_c00365{margin-left:-6.485333pt;}
._22_c00365{margin-left:-5.205333pt;}
._f_c00365{margin-left:-4.096000pt;}
._d_c00365{margin-left:-3.157333pt;}
._b_c00365{margin-left:-2.218667pt;}
._c_c00365{margin-left:-1.280000pt;}
._5_c00365{width:1.450667pt;}
._8_c00365{width:2.389333pt;}
._3_c00365{width:3.328000pt;}
._1_c00365{width:4.352000pt;}
._0_c00365{width:5.290667pt;}
._14_c00365{width:6.229333pt;}
._19_c00365{width:7.424000pt;}
._23_c00365{width:8.618667pt;}
._6_c00365{width:9.642667pt;}
._21_c00365{width:10.752000pt;}
._7_c00365{width:11.690667pt;}
._20_c00365{width:13.141333pt;}
._1c_c00365{width:14.848000pt;}
._a_c00365{width:15.786667pt;}
._4_c00365{width:17.408000pt;}
._9_c00365{width:18.944000pt;}
._31_c00365{width:21.845333pt;}
._15_c00365{width:23.381333pt;}
._17_c00365{width:24.746667pt;}
._2_c00365{width:26.368000pt;}
._38_c00365{width:27.306667pt;}
._1b_c00365{width:29.013333pt;}
._2d_c00365{width:30.634667pt;}
._1f_c00365{width:31.829333pt;}
._13_c00365{width:32.853333pt;}
._33_c00365{width:33.792000pt;}
._18_c00365{width:35.157333pt;}
._16_c00365{width:36.437333pt;}
._1a_c00365{width:38.314667pt;}
._11_c00365{width:40.448000pt;}
._2c_c00365{width:42.069333pt;}
._12_c00365{width:44.202667pt;}
._36_c00365{width:45.738667pt;}
._35_c00365{width:47.786667pt;}
._37_c00365{width:52.309333pt;}
._29_c00365{width:53.248000pt;}
._2b_c00365{width:61.781333pt;}
._28_c00365{width:63.914667pt;}
._25_c00365{width:65.536000pt;}
._2f_c00365{width:68.864000pt;}
._2a_c00365{width:71.168000pt;}
._27_c00365{width:72.960000pt;}
._24_c00365{width:75.178667pt;}
._41_c00365{width:78.560000pt;}
._26_c00365{width:84.565333pt;}
._42_c00365{width:823.562667pt;}
.fs3_c00365{font-size:32.000000pt;}
.fs4_c00365{font-size:42.666667pt;}
.fs1_c00365{font-size:77.333333pt;}
.fs0_c00365{font-size:85.333333pt;}
.fs2_c00365{font-size:90.666667pt;}
.y0_c00365{bottom:0.000000pt;}
.y26_c00365{bottom:2.760000pt;}
.y25_c00365{bottom:6.425219pt;}
.y24_c00365{bottom:56.413333pt;}
.y23_c00365{bottom:93.080000pt;}
.y22_c00365{bottom:124.280000pt;}
.y21_c00365{bottom:154.280000pt;}
.y20_c00365{bottom:185.080000pt;}
.y1f_c00365{bottom:215.480000pt;}
.y1e_c00365{bottom:246.280000pt;}
.y1d_c00365{bottom:276.413333pt;}
.y1c_c00365{bottom:306.680000pt;}
.y1b_c00365{bottom:336.946667pt;}
.y1a_c00365{bottom:366.680000pt;}
.y19_c00365{bottom:397.213333pt;}
.y18_c00365{bottom:427.213333pt;}
.y17_c00365{bottom:457.213333pt;}
.y16_c00365{bottom:487.480000pt;}
.y15_c00365{bottom:517.480000pt;}
.y14_c00365{bottom:547.613333pt;}
.y13_c00365{bottom:577.480000pt;}
.y12_c00365{bottom:607.480000pt;}
.y11_c00365{bottom:637.613333pt;}
.y10_c00365{bottom:667.480000pt;}
.yf_c00365{bottom:697.213333pt;}
.ye_c00365{bottom:726.680000pt;}
.yd_c00365{bottom:757.213333pt;}
.yc_c00365{bottom:787.213333pt;}
.yb_c00365{bottom:816.946667pt;}
.ya_c00365{bottom:846.280000pt;}
.y9_c00365{bottom:875.746667pt;}
.y8_c00365{bottom:904.813333pt;}
.y7_c00365{bottom:934.813333pt;}
.y6_c00365{bottom:964.013333pt;}
.y5_c00365{bottom:994.280000pt;}
.y4_c00365{bottom:1024.013333pt;}
.y3_c00365{bottom:1053.880000pt;}
.y2_c00365{bottom:1083.613333pt;}
.y1_c00365{bottom:1113.080000pt;}
.h3_c00365{height:11.733399pt;}
.h4_c00365{height:38.937500pt;}
.h2_c00365{height:108.041667pt;}
.h0_c00365{height:1204.333333pt;}
.h1_c00365{height:1204.666667pt;}
.w2_c00365{width:93.222667pt;}
.w0_c00365{width:751.666667pt;}
.w1_c00365{width:752.000000pt;}
.x0_c00365{left:0.000000pt;}
.x7_c00365{left:210.000000pt;}
.x8_c00365{left:211.466667pt;}
.x3_c00365{left:212.800000pt;}
.x1_c00365{left:213.866667pt;}
.x2_c00365{left:215.333333pt;}
.x4_c00365{left:216.266667pt;}
.x6_c00365{left:217.200000pt;}
.x5_c00365{left:218.133333pt;}
.xa_c00365{left:333.001546pt;}
.x9_c00365{left:423.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_806bfb0fc3822c75b5f98fff.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_0d5fa01e23d058e505cd0f5d.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00366{vertical-align:-132.600000px;}
.v0_c00366{vertical-align:0.000000px;}
.ls4_c00366{letter-spacing:-9.000000px;}
.ls2_c00366{letter-spacing:0.000000px;}
.ls1_c00366{letter-spacing:0.600000px;}
.ls3_c00366{letter-spacing:6.000000px;}
.ls0_c00366{letter-spacing:23.433000px;}
.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:-57.000000px;}
.ws5_c00366{word-spacing:-25.305000px;}
.ws3_c00366{word-spacing:-20.244000px;}
.ws1_c00366{word-spacing:-18.798000px;}
.ws2_c00366{word-spacing:-9.798000px;}
.ws6_c00366{word-spacing:0.000000px;}
.ws4_c00366{word-spacing:1.560000px;}
._20_c00366{margin-left:-33.348000px;}
._4d_c00366{margin-left:-30.528000px;}
._b_c00366{margin-left:-24.600000px;}
._3e_c00366{margin-left:-21.855000px;}
._33_c00366{margin-left:-20.616000px;}
._2b_c00366{margin-left:-19.488000px;}
._41_c00366{margin-left:-16.815000px;}
._34_c00366{margin-left:-14.208000px;}
._4c_c00366{margin-left:-12.984000px;}
._22_c00366{margin-left:-11.844000px;}
._27_c00366{margin-left:-10.812000px;}
._9_c00366{margin-left:-8.856000px;}
._13_c00366{margin-left:-6.792000px;}
._a_c00366{margin-left:-4.992000px;}
._23_c00366{margin-left:-3.576000px;}
._14_c00366{margin-left:-2.376000px;}
._1b_c00366{margin-left:-1.014000px;}
._8_c00366{width:1.728000px;}
._c_c00366{width:3.168000px;}
._0_c00366{width:4.536000px;}
._d_c00366{width:5.568000px;}
._11_c00366{width:7.008000px;}
._10_c00366{width:8.640000px;}
._7_c00366{width:9.792000px;}
._32_c00366{width:10.800000px;}
._6_c00366{width:11.952000px;}
._3_c00366{width:13.776000px;}
._f_c00366{width:15.312000px;}
._3c_c00366{width:16.560000px;}
._12_c00366{width:17.712000px;}
._18_c00366{width:19.392000px;}
._3d_c00366{width:20.574000px;}
._2_c00366{width:21.756000px;}
._4_c00366{width:24.600000px;}
._15_c00366{width:25.620000px;}
._4f_c00366{width:27.168000px;}
._21_c00366{width:28.392000px;}
._19_c00366{width:30.336000px;}
._54_c00366{width:31.488000px;}
._16_c00366{width:32.682000px;}
._1d_c00366{width:34.656000px;}
._38_c00366{width:36.150000px;}
._e_c00366{width:37.248000px;}
._2e_c00366{width:38.688000px;}
._1e_c00366{width:41.010000px;}
._2f_c00366{width:42.372000px;}
._53_c00366{width:43.470000px;}
._35_c00366{width:44.694000px;}
._1c_c00366{width:46.776000px;}
._4e_c00366{width:51.120000px;}
._17_c00366{width:52.266000px;}
._3a_c00366{width:53.976000px;}
._51_c00366{width:55.770000px;}
._52_c00366{width:58.752000px;}
._50_c00366{width:63.612000px;}
._1a_c00366{width:66.672000px;}
._46_c00366{width:70.470000px;}
._37_c00366{width:71.802000px;}
._24_c00366{width:76.020000px;}
._44_c00366{width:77.316000px;}
._39_c00366{width:86.034000px;}
._30_c00366{width:92.352000px;}
._36_c00366{width:93.576000px;}
._2a_c00366{width:96.576000px;}
._4b_c00366{width:101.322000px;}
._45_c00366{width:107.154000px;}
._2c_c00366{width:120.576000px;}
._28_c00366{width:142.176000px;}
._1_c00366{width:151.284000px;}
._31_c00366{width:163.356000px;}
._5_c00366{width:168.288000px;}
._25_c00366{width:169.512000px;}
._48_c00366{width:195.735000px;}
._40_c00366{width:197.520000px;}
._1f_c00366{width:200.160000px;}
._47_c00366{width:204.966000px;}
._4a_c00366{width:209.922000px;}
._49_c00366{width:261.180000px;}
._3b_c00366{width:270.366000px;}
._29_c00366{width:278.568000px;}
._55_c00366{width:303.270000px;}
._3f_c00366{width:406.812000px;}
._43_c00366{width:408.693000px;}
._42_c00366{width:434.496000px;}
._2d_c00366{width:488.628000px;}
._26_c00366{width:679.584000px;}
.fc2_c00366{color:transparent;}
.fc1_c00366{color:rgb(128,128,128);}
.fc0_c00366{color:rgb(0,0,0);}
.fs6_c00366{font-size:48.000000px;}
.fs3_c00366{font-size:78.000000px;}
.fs0_c00366{font-size:84.000000px;}
.fs4_c00366{font-size:87.000000px;}
.fs1_c00366{font-size:96.000000px;}
.fs2_c00366{font-size:102.000000px;}
.fs5_c00366{font-size:105.000000px;}
.y0_c00366{bottom:0.000000px;}
.y27_c00366{bottom:3.105000px;}
.y26_c00366{bottom:7.228369px;}
.y25_c00366{bottom:122.820000px;}
.y24_c00366{bottom:157.920000px;}
.y23_c00366{bottom:192.420000px;}
.y22_c00366{bottom:226.470000px;}
.y21_c00366{bottom:260.220000px;}
.y20_c00366{bottom:293.670000px;}
.y1f_c00366{bottom:328.620000px;}
.y1e_c00366{bottom:362.070000px;}
.y1d_c00366{bottom:395.520000px;}
.y1c_c00366{bottom:430.020000px;}
.y1b_c00366{bottom:463.320000px;}
.y1a_c00366{bottom:497.070000px;}
.y19_c00366{bottom:530.820000px;}
.y18_c00366{bottom:564.570000px;}
.y17_c00366{bottom:598.320000px;}
.y16_c00366{bottom:631.470000px;}
.y15_c00366{bottom:665.220000px;}
.y14_c00366{bottom:698.520000px;}
.y13_c00366{bottom:732.270000px;}
.y12_c00366{bottom:766.020000px;}
.y11_c00366{bottom:799.470000px;}
.y10_c00366{bottom:832.320000px;}
.yf_c00366{bottom:864.720000px;}
.ye_c00366{bottom:899.370000px;}
.yd_c00366{bottom:932.220000px;}
.yc_c00366{bottom:948.420000px;}
.yb_c00366{bottom:965.820000px;}
.ya_c00366{bottom:1001.370000px;}
.y9_c00366{bottom:1034.370000px;}
.y8_c00366{bottom:1066.770000px;}
.y7_c00366{bottom:1098.870000px;}
.y6_c00366{bottom:1131.570000px;}
.y5_c00366{bottom:1164.720000px;}
.y4_c00366{bottom:1181.520000px;}
.y3_c00366{bottom:1202.520000px;}
.y2_c00366{bottom:1235.520000px;}
.y1_c00366{bottom:1267.620000px;}
.h4_c00366{height:13.200073px;}
.h5_c00366{height:43.804688px;}
.h3_c00366{height:110.151855px;}
.h2_c00366{height:121.546875px;}
.h0_c00366{height:1383.450000px;}
.h1_c00366{height:1383.750000px;}
.w2_c00366{width:104.875500px;}
.w0_c00366{width:878.025000px;}
.w1_c00366{width:878.250000px;}
.x0_c00366{left:0.000000px;}
.xe_c00366{left:25.650000px;}
.xc_c00366{left:26.700000px;}
.xd_c00366{left:28.800000px;}
.xa_c00366{left:30.450000px;}
.xb_c00366{left:32.100000px;}
.x9_c00366{left:33.150000px;}
.x7_c00366{left:34.350000px;}
.x6_c00366{left:36.450000px;}
.x5_c00366{left:37.500000px;}
.x4_c00366{left:38.550000px;}
.x1_c00366{left:41.250000px;}
.x2_c00366{left:42.300000px;}
.x8_c00366{left:48.900000px;}
.x3_c00366{left:54.750000px;}
.xf_c00366{left:390.826721px;}
@media print{
.v1_c00366{vertical-align:-117.866667pt;}
.v0_c00366{vertical-align:0.000000pt;}
.ls4_c00366{letter-spacing:-8.000000pt;}
.ls2_c00366{letter-spacing:0.000000pt;}
.ls1_c00366{letter-spacing:0.533333pt;}
.ls3_c00366{letter-spacing:5.333333pt;}
.ls0_c00366{letter-spacing:20.829333pt;}
.ws0_c00366{word-spacing:-50.666667pt;}
.ws5_c00366{word-spacing:-22.493333pt;}
.ws3_c00366{word-spacing:-17.994667pt;}
.ws1_c00366{word-spacing:-16.709333pt;}
.ws2_c00366{word-spacing:-8.709333pt;}
.ws6_c00366{word-spacing:0.000000pt;}
.ws4_c00366{word-spacing:1.386667pt;}
._20_c00366{margin-left:-29.642667pt;}
._4d_c00366{margin-left:-27.136000pt;}
._b_c00366{margin-left:-21.866667pt;}
._3e_c00366{margin-left:-19.426667pt;}
._33_c00366{margin-left:-18.325333pt;}
._2b_c00366{margin-left:-17.322667pt;}
._41_c00366{margin-left:-14.946667pt;}
._34_c00366{margin-left:-12.629333pt;}
._4c_c00366{margin-left:-11.541333pt;}
._22_c00366{margin-left:-10.528000pt;}
._27_c00366{margin-left:-9.610667pt;}
._9_c00366{margin-left:-7.872000pt;}
._13_c00366{margin-left:-6.037333pt;}
._a_c00366{margin-left:-4.437333pt;}
._23_c00366{margin-left:-3.178667pt;}
._14_c00366{margin-left:-2.112000pt;}
._1b_c00366{margin-left:-0.901333pt;}
._8_c00366{width:1.536000pt;}
._c_c00366{width:2.816000pt;}
._0_c00366{width:4.032000pt;}
._d_c00366{width:4.949333pt;}
._11_c00366{width:6.229333pt;}
._10_c00366{width:7.680000pt;}
._7_c00366{width:8.704000pt;}
._32_c00366{width:9.600000pt;}
._6_c00366{width:10.624000pt;}
._3_c00366{width:12.245333pt;}
._f_c00366{width:13.610667pt;}
._3c_c00366{width:14.720000pt;}
._12_c00366{width:15.744000pt;}
._18_c00366{width:17.237333pt;}
._3d_c00366{width:18.288000pt;}
._2_c00366{width:19.338667pt;}
._4_c00366{width:21.866667pt;}
._15_c00366{width:22.773333pt;}
._4f_c00366{width:24.149333pt;}
._21_c00366{width:25.237333pt;}
._19_c00366{width:26.965333pt;}
._54_c00366{width:27.989333pt;}
._16_c00366{width:29.050667pt;}
._1d_c00366{width:30.805333pt;}
._38_c00366{width:32.133333pt;}
._e_c00366{width:33.109333pt;}
._2e_c00366{width:34.389333pt;}
._1e_c00366{width:36.453333pt;}
._2f_c00366{width:37.664000pt;}
._53_c00366{width:38.640000pt;}
._35_c00366{width:39.728000pt;}
._1c_c00366{width:41.578667pt;}
._4e_c00366{width:45.440000pt;}
._17_c00366{width:46.458667pt;}
._3a_c00366{width:47.978667pt;}
._51_c00366{width:49.573333pt;}
._52_c00366{width:52.224000pt;}
._50_c00366{width:56.544000pt;}
._1a_c00366{width:59.264000pt;}
._46_c00366{width:62.640000pt;}
._37_c00366{width:63.824000pt;}
._24_c00366{width:67.573333pt;}
._44_c00366{width:68.725333pt;}
._39_c00366{width:76.474667pt;}
._30_c00366{width:82.090667pt;}
._36_c00366{width:83.178667pt;}
._2a_c00366{width:85.845333pt;}
._4b_c00366{width:90.064000pt;}
._45_c00366{width:95.248000pt;}
._2c_c00366{width:107.178667pt;}
._28_c00366{width:126.378667pt;}
._1_c00366{width:134.474667pt;}
._31_c00366{width:145.205333pt;}
._5_c00366{width:149.589333pt;}
._25_c00366{width:150.677333pt;}
._48_c00366{width:173.986667pt;}
._40_c00366{width:175.573333pt;}
._1f_c00366{width:177.920000pt;}
._47_c00366{width:182.192000pt;}
._4a_c00366{width:186.597333pt;}
._49_c00366{width:232.160000pt;}
._3b_c00366{width:240.325333pt;}
._29_c00366{width:247.616000pt;}
._55_c00366{width:269.573333pt;}
._3f_c00366{width:361.610667pt;}
._43_c00366{width:363.282667pt;}
._42_c00366{width:386.218667pt;}
._2d_c00366{width:434.336000pt;}
._26_c00366{width:604.074667pt;}
.fs6_c00366{font-size:42.666667pt;}
.fs3_c00366{font-size:69.333333pt;}
.fs0_c00366{font-size:74.666667pt;}
.fs4_c00366{font-size:77.333333pt;}
.fs1_c00366{font-size:85.333333pt;}
.fs2_c00366{font-size:90.666667pt;}
.fs5_c00366{font-size:93.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y27_c00366{bottom:2.760000pt;}
.y26_c00366{bottom:6.425217pt;}
.y25_c00366{bottom:109.173333pt;}
.y24_c00366{bottom:140.373333pt;}
.y23_c00366{bottom:171.040000pt;}
.y22_c00366{bottom:201.306667pt;}
.y21_c00366{bottom:231.306667pt;}
.y20_c00366{bottom:261.040000pt;}
.y1f_c00366{bottom:292.106667pt;}
.y1e_c00366{bottom:321.840000pt;}
.y1d_c00366{bottom:351.573333pt;}
.y1c_c00366{bottom:382.240000pt;}
.y1b_c00366{bottom:411.840000pt;}
.y1a_c00366{bottom:441.840000pt;}
.y19_c00366{bottom:471.840000pt;}
.y18_c00366{bottom:501.840000pt;}
.y17_c00366{bottom:531.840000pt;}
.y16_c00366{bottom:561.306667pt;}
.y15_c00366{bottom:591.306667pt;}
.y14_c00366{bottom:620.906667pt;}
.y13_c00366{bottom:650.906667pt;}
.y12_c00366{bottom:680.906667pt;}
.y11_c00366{bottom:710.640000pt;}
.y10_c00366{bottom:739.840000pt;}
.yf_c00366{bottom:768.640000pt;}
.ye_c00366{bottom:799.440000pt;}
.yd_c00366{bottom:828.640000pt;}
.yc_c00366{bottom:843.040000pt;}
.yb_c00366{bottom:858.506667pt;}
.ya_c00366{bottom:890.106667pt;}
.y9_c00366{bottom:919.440000pt;}
.y8_c00366{bottom:948.240000pt;}
.y7_c00366{bottom:976.773333pt;}
.y6_c00366{bottom:1005.840000pt;}
.y5_c00366{bottom:1035.306667pt;}
.y4_c00366{bottom:1050.240000pt;}
.y3_c00366{bottom:1068.906667pt;}
.y2_c00366{bottom:1098.240000pt;}
.y1_c00366{bottom:1126.773333pt;}
.h4_c00366{height:11.733399pt;}
.h5_c00366{height:38.937500pt;}
.h3_c00366{height:97.912760pt;}
.h2_c00366{height:108.041667pt;}
.h0_c00366{height:1229.733333pt;}
.h1_c00366{height:1230.000000pt;}
.w2_c00366{width:93.222667pt;}
.w0_c00366{width:780.466667pt;}
.w1_c00366{width:780.666667pt;}
.x0_c00366{left:0.000000pt;}
.xe_c00366{left:22.800000pt;}
.xc_c00366{left:23.733333pt;}
.xd_c00366{left:25.600000pt;}
.xa_c00366{left:27.066667pt;}
.xb_c00366{left:28.533333pt;}
.x9_c00366{left:29.466667pt;}
.x7_c00366{left:30.533333pt;}
.x6_c00366{left:32.400000pt;}
.x5_c00366{left:33.333333pt;}
.x4_c00366{left:34.266667pt;}
.x1_c00366{left:36.666667pt;}
.x2_c00366{left:37.600000pt;}
.x8_c00366{left:43.466667pt;}
.x3_c00366{left:48.666667pt;}
.xf_c00366{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84813efd053c8d70c9bc0ed0.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_47edaca4499ab693d078f4b4.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.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:-63.504000px;}
.ws1_c00367{word-spacing:-25.305000px;}
.ws2_c00367{word-spacing:0.000000px;}
._30_c00367{margin-left:-36.384000px;}
._2c_c00367{margin-left:-20.736000px;}
._34_c00367{margin-left:-17.952000px;}
._18_c00367{margin-left:-14.208000px;}
._20_c00367{margin-left:-11.424000px;}
._24_c00367{margin-left:-10.368000px;}
._35_c00367{margin-left:-8.640000px;}
._25_c00367{margin-left:-6.816000px;}
._29_c00367{margin-left:-4.992000px;}
._1b_c00367{margin-left:-3.936000px;}
._c_c00367{margin-left:-2.112000px;}
._33_c00367{margin-left:-1.056000px;}
._f_c00367{width:1.728000px;}
._b_c00367{width:3.168000px;}
._11_c00367{width:4.320000px;}
._4_c00367{width:5.376000px;}
._3_c00367{width:7.392000px;}
._6_c00367{width:9.216000px;}
._7_c00367{width:10.560000px;}
._1_c00367{width:12.288000px;}
._0_c00367{width:14.016000px;}
._1d_c00367{width:15.456000px;}
._1a_c00367{width:17.376000px;}
._8_c00367{width:18.528000px;}
._17_c00367{width:19.872000px;}
._1e_c00367{width:21.888000px;}
._26_c00367{width:24.864000px;}
._12_c00367{width:26.400000px;}
._2_c00367{width:27.648000px;}
._10_c00367{width:29.952000px;}
._a_c00367{width:31.104000px;}
._16_c00367{width:32.256000px;}
._e_c00367{width:34.272000px;}
._13_c00367{width:36.384000px;}
._9_c00367{width:38.112000px;}
._22_c00367{width:39.936000px;}
._1f_c00367{width:41.088000px;}
._1c_c00367{width:42.624000px;}
._2b_c00367{width:44.256000px;}
._27_c00367{width:45.696000px;}
._19_c00367{width:47.520000px;}
._d_c00367{width:49.536000px;}
._28_c00367{width:51.840000px;}
._5_c00367{width:53.664000px;}
._14_c00367{width:55.200000px;}
._15_c00367{width:56.352000px;}
._32_c00367{width:58.080000px;}
._23_c00367{width:60.864000px;}
._21_c00367{width:64.128000px;}
._2f_c00367{width:71.040000px;}
._2e_c00367{width:74.688000px;}
._31_c00367{width:78.144000px;}
._2a_c00367{width:79.488000px;}
._2d_c00367{width:89.760000px;}
.fc2_c00367{color:transparent;}
.fc1_c00367{color:rgb(128,128,128);}
.fc0_c00367{color:rgb(0,0,0);}
.fs3_c00367{font-size:48.000000px;}
.fs1_c00367{font-size:84.000000px;}
.fs0_c00367{font-size:96.000000px;}
.fs2_c00367{font-size:105.000000px;}
.y0_c00367{bottom:0.000000px;}
.y26_c00367{bottom:3.105000px;}
.y25_c00367{bottom:7.228357px;}
.y24_c00367{bottom:84.480000px;}
.y23_c00367{bottom:114.480000px;}
.y22_c00367{bottom:149.130000px;}
.y21_c00367{bottom:183.330000px;}
.y20_c00367{bottom:217.380000px;}
.y1f_c00367{bottom:251.880000px;}
.y1e_c00367{bottom:285.630000px;}
.y1d_c00367{bottom:319.680000px;}
.y1c_c00367{bottom:353.130000px;}
.y1b_c00367{bottom:387.180000px;}
.y1a_c00367{bottom:421.530000px;}
.y19_c00367{bottom:455.280000px;}
.y18_c00367{bottom:489.330000px;}
.y17_c00367{bottom:522.780000px;}
.y16_c00367{bottom:556.530000px;}
.y15_c00367{bottom:590.580000px;}
.y14_c00367{bottom:624.330000px;}
.y13_c00367{bottom:658.080000px;}
.y12_c00367{bottom:691.830000px;}
.y11_c00367{bottom:725.280000px;}
.y10_c00367{bottom:758.730000px;}
.yf_c00367{bottom:792.180000px;}
.ye_c00367{bottom:825.630000px;}
.yd_c00367{bottom:859.380000px;}
.yc_c00367{bottom:892.680000px;}
.yb_c00367{bottom:926.430000px;}
.ya_c00367{bottom:959.580000px;}
.y9_c00367{bottom:992.880000px;}
.y8_c00367{bottom:1025.730000px;}
.y7_c00367{bottom:1058.730000px;}
.y6_c00367{bottom:1092.480000px;}
.y5_c00367{bottom:1125.630000px;}
.y4_c00367{bottom:1159.080000px;}
.y3_c00367{bottom:1192.680000px;}
.y2_c00367{bottom:1225.830000px;}
.y1_c00367{bottom:1259.580000px;}
.h4_c00367{height:13.200074px;}
.h5_c00367{height:43.804688px;}
.h2_c00367{height:121.546875px;}
.h3_c00367{height:132.941895px;}
.h0_c00367{height:1382.700000px;}
.h1_c00367{height:1383.000000px;}
.w2_c00367{width:104.875500px;}
.w0_c00367{width:863.175000px;}
.w1_c00367{width:863.250000px;}
.x0_c00367{left:0.000000px;}
.x6_c00367{left:237.900000px;}
.x4_c00367{left:243.300000px;}
.x1_c00367{left:244.350000px;}
.x3_c00367{left:245.400000px;}
.x2_c00367{left:247.050000px;}
.x5_c00367{left:248.100000px;}
.x8_c00367{left:383.401749px;}
.x7_c00367{left:762.300000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:-56.448000pt;}
.ws1_c00367{word-spacing:-22.493333pt;}
.ws2_c00367{word-spacing:0.000000pt;}
._30_c00367{margin-left:-32.341333pt;}
._2c_c00367{margin-left:-18.432000pt;}
._34_c00367{margin-left:-15.957333pt;}
._18_c00367{margin-left:-12.629333pt;}
._20_c00367{margin-left:-10.154667pt;}
._24_c00367{margin-left:-9.216000pt;}
._35_c00367{margin-left:-7.680000pt;}
._25_c00367{margin-left:-6.058667pt;}
._29_c00367{margin-left:-4.437333pt;}
._1b_c00367{margin-left:-3.498667pt;}
._c_c00367{margin-left:-1.877333pt;}
._33_c00367{margin-left:-0.938667pt;}
._f_c00367{width:1.536000pt;}
._b_c00367{width:2.816000pt;}
._11_c00367{width:3.840000pt;}
._4_c00367{width:4.778667pt;}
._3_c00367{width:6.570667pt;}
._6_c00367{width:8.192000pt;}
._7_c00367{width:9.386667pt;}
._1_c00367{width:10.922667pt;}
._0_c00367{width:12.458667pt;}
._1d_c00367{width:13.738667pt;}
._1a_c00367{width:15.445333pt;}
._8_c00367{width:16.469333pt;}
._17_c00367{width:17.664000pt;}
._1e_c00367{width:19.456000pt;}
._26_c00367{width:22.101333pt;}
._12_c00367{width:23.466667pt;}
._2_c00367{width:24.576000pt;}
._10_c00367{width:26.624000pt;}
._a_c00367{width:27.648000pt;}
._16_c00367{width:28.672000pt;}
._e_c00367{width:30.464000pt;}
._13_c00367{width:32.341333pt;}
._9_c00367{width:33.877333pt;}
._22_c00367{width:35.498667pt;}
._1f_c00367{width:36.522667pt;}
._1c_c00367{width:37.888000pt;}
._2b_c00367{width:39.338667pt;}
._27_c00367{width:40.618667pt;}
._19_c00367{width:42.240000pt;}
._d_c00367{width:44.032000pt;}
._28_c00367{width:46.080000pt;}
._5_c00367{width:47.701333pt;}
._14_c00367{width:49.066667pt;}
._15_c00367{width:50.090667pt;}
._32_c00367{width:51.626667pt;}
._23_c00367{width:54.101333pt;}
._21_c00367{width:57.002667pt;}
._2f_c00367{width:63.146667pt;}
._2e_c00367{width:66.389333pt;}
._31_c00367{width:69.461333pt;}
._2a_c00367{width:70.656000pt;}
._2d_c00367{width:79.786667pt;}
.fs3_c00367{font-size:42.666667pt;}
.fs1_c00367{font-size:74.666667pt;}
.fs0_c00367{font-size:85.333333pt;}
.fs2_c00367{font-size:93.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y26_c00367{bottom:2.760000pt;}
.y25_c00367{bottom:6.425206pt;}
.y24_c00367{bottom:75.093333pt;}
.y23_c00367{bottom:101.760000pt;}
.y22_c00367{bottom:132.560000pt;}
.y21_c00367{bottom:162.960000pt;}
.y20_c00367{bottom:193.226667pt;}
.y1f_c00367{bottom:223.893333pt;}
.y1e_c00367{bottom:253.893333pt;}
.y1d_c00367{bottom:284.160000pt;}
.y1c_c00367{bottom:313.893333pt;}
.y1b_c00367{bottom:344.160000pt;}
.y1a_c00367{bottom:374.693333pt;}
.y19_c00367{bottom:404.693333pt;}
.y18_c00367{bottom:434.960000pt;}
.y17_c00367{bottom:464.693333pt;}
.y16_c00367{bottom:494.693333pt;}
.y15_c00367{bottom:524.960000pt;}
.y14_c00367{bottom:554.960000pt;}
.y13_c00367{bottom:584.960000pt;}
.y12_c00367{bottom:614.960000pt;}
.y11_c00367{bottom:644.693333pt;}
.y10_c00367{bottom:674.426667pt;}
.yf_c00367{bottom:704.160000pt;}
.ye_c00367{bottom:733.893333pt;}
.yd_c00367{bottom:763.893333pt;}
.yc_c00367{bottom:793.493333pt;}
.yb_c00367{bottom:823.493333pt;}
.ya_c00367{bottom:852.960000pt;}
.y9_c00367{bottom:882.560000pt;}
.y8_c00367{bottom:911.760000pt;}
.y7_c00367{bottom:941.093333pt;}
.y6_c00367{bottom:971.093333pt;}
.y5_c00367{bottom:1000.560000pt;}
.y4_c00367{bottom:1030.293333pt;}
.y3_c00367{bottom:1060.160000pt;}
.y2_c00367{bottom:1089.626667pt;}
.y1_c00367{bottom:1119.626667pt;}
.h4_c00367{height:11.733399pt;}
.h5_c00367{height:38.937500pt;}
.h2_c00367{height:108.041667pt;}
.h3_c00367{height:118.170573pt;}
.h0_c00367{height:1229.066667pt;}
.h1_c00367{height:1229.333333pt;}
.w2_c00367{width:93.222667pt;}
.w0_c00367{width:767.266667pt;}
.w1_c00367{width:767.333333pt;}
.x0_c00367{left:0.000000pt;}
.x6_c00367{left:211.466667pt;}
.x4_c00367{left:216.266667pt;}
.x1_c00367{left:217.200000pt;}
.x3_c00367{left:218.133333pt;}
.x2_c00367{left:219.600000pt;}
.x5_c00367{left:220.533333pt;}
.x8_c00367{left:340.801554pt;}
.x7_c00367{left:677.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_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_7cd883407636d0aea2b4f5ab.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_b63a5859b34f98bf7408f93a.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_ddc268f322a56c8094732921.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_dc9ecb642762fd76acd170cc.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_4b0e7e1466d30d9a1db97d3c.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00368;src:url('chunks/assets/font_a6661bdd1eedc6ca8fd787db.woff2')format("woff");}.ff6_c00368{font-family:ff6_c00368;line-height:1.274414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00368;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00368{font-family:ff7_c00368;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{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_c00368{vertical-align:0.000000px;}
.ls4_c00368{letter-spacing:0.000000px;}
.ls2_c00368{letter-spacing:3.000000px;}
.ls3_c00368{letter-spacing:4.560000px;}
.ls5_c00368{letter-spacing:6.000000px;}
.ls0_c00368{letter-spacing:15.600000px;}
.ls1_c00368{letter-spacing:45.033000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00368{word-spacing:-57.000000px;}
.ws1_c00368{word-spacing:-23.136000px;}
.ws3_c00368{word-spacing:-20.244000px;}
.ws2_c00368{word-spacing:-19.686000px;}
.ws4_c00368{word-spacing:0.000000px;}
._44_c00368{margin-left:-29.376000px;}
._2d_c00368{margin-left:-24.144000px;}
._35_c00368{margin-left:-22.533000px;}
._c_c00368{margin-left:-14.208000px;}
._23_c00368{margin-left:-10.752000px;}
._33_c00368{margin-left:-9.483000px;}
._21_c00368{margin-left:-8.208000px;}
._1b_c00368{margin-left:-5.952000px;}
._20_c00368{margin-left:-4.800000px;}
._1d_c00368{margin-left:-2.976000px;}
._4_c00368{margin-left:-1.920000px;}
._8_c00368{width:1.248000px;}
._2_c00368{width:3.072000px;}
._0_c00368{width:4.992000px;}
._1_c00368{width:6.432000px;}
._6_c00368{width:8.160000px;}
._38_c00368{width:9.216000px;}
._5_c00368{width:10.272000px;}
._28_c00368{width:12.000000px;}
._14_c00368{width:13.152000px;}
._9_c00368{width:15.456000px;}
._e_c00368{width:17.472000px;}
._d_c00368{width:18.528000px;}
._10_c00368{width:19.776000px;}
._1a_c00368{width:21.408000px;}
._3b_c00368{width:22.680000px;}
._25_c00368{width:24.384000px;}
._16_c00368{width:25.536000px;}
._a_c00368{width:26.784000px;}
._7_c00368{width:28.512000px;}
._b_c00368{width:30.048000px;}
._26_c00368{width:31.392000px;}
._18_c00368{width:32.736000px;}
._15_c00368{width:33.792000px;}
._19_c00368{width:34.848000px;}
._13_c00368{width:36.672000px;}
._1c_c00368{width:37.920000px;}
._17_c00368{width:39.360000px;}
._12_c00368{width:40.608000px;}
._24_c00368{width:42.528000px;}
._11_c00368{width:44.064000px;}
._1e_c00368{width:45.504000px;}
._3_c00368{width:47.232000px;}
._2a_c00368{width:48.576000px;}
._f_c00368{width:49.632000px;}
._29_c00368{width:51.744000px;}
._46_c00368{width:53.184000px;}
._2b_c00368{width:54.528000px;}
._2e_c00368{width:58.128000px;}
._3d_c00368{width:60.864000px;}
._45_c00368{width:64.992000px;}
._2f_c00368{width:69.780000px;}
._42_c00368{width:71.208000px;}
._41_c00368{width:72.312000px;}
._3f_c00368{width:76.104000px;}
._40_c00368{width:78.096000px;}
._47_c00368{width:82.848000px;}
._31_c00368{width:114.465000px;}
._3e_c00368{width:192.504000px;}
._2c_c00368{width:209.064000px;}
._37_c00368{width:226.230000px;}
._43_c00368{width:282.624000px;}
._1f_c00368{width:340.032000px;}
._27_c00368{width:348.480000px;}
._34_c00368{width:366.618000px;}
._3c_c00368{width:379.812000px;}
._22_c00368{width:393.696000px;}
._36_c00368{width:479.433000px;}
._30_c00368{width:680.256000px;}
._39_c00368{width:768.120000px;}
._48_c00368{width:782.976000px;}
._32_c00368{width:809.052000px;}
._3a_c00368{width:1326.888000px;}
.fc2_c00368{color:transparent;}
.fc1_c00368{color:rgb(128,128,128);}
.fc0_c00368{color:rgb(0,0,0);}
.fs7_c00368{font-size:48.000000px;}
.fs2_c00368{font-size:78.000000px;}
.fs4_c00368{font-size:81.000000px;}
.fs5_c00368{font-size:84.000000px;}
.fs3_c00368{font-size:87.000000px;}
.fs0_c00368{font-size:96.000000px;}
.fs1_c00368{font-size:102.000000px;}
.fs6_c00368{font-size:120.000000px;}
.y0_c00368{bottom:0.000000px;}
.y27_c00368{bottom:3.105000px;}
.y26_c00368{bottom:7.228369px;}
.y25_c00368{bottom:119.070000px;}
.y24_c00368{bottom:153.120000px;}
.y23_c00368{bottom:187.320000px;}
.y22_c00368{bottom:221.370000px;}
.y21_c00368{bottom:255.120000px;}
.y20_c00368{bottom:288.570000px;}
.y1f_c00368{bottom:322.020000px;}
.y1e_c00368{bottom:356.070000px;}
.y1d_c00368{bottom:389.370000px;}
.y1c_c00368{bottom:422.520000px;}
.y1b_c00368{bottom:456.270000px;}
.y1a_c00368{bottom:491.670000px;}
.y19_c00368{bottom:524.070000px;}
.y18_c00368{bottom:556.470000px;}
.y17_c00368{bottom:587.970000px;}
.y16_c00368{bottom:622.620000px;}
.y15_c00368{bottom:655.470000px;}
.y14_c00368{bottom:689.220000px;}
.y13_c00368{bottom:714.120000px;}
.y12_c00368{bottom:740.070000px;}
.y11_c00368{bottom:757.320000px;}
.y10_c00368{bottom:792.420000px;}
.yf_c00368{bottom:824.220000px;}
.ye_c00368{bottom:856.620000px;}
.yd_c00368{bottom:889.620000px;}
.yc_c00368{bottom:922.320000px;}
.yb_c00368{bottom:955.770000px;}
.ya_c00368{bottom:989.220000px;}
.y9_c00368{bottom:1022.520000px;}
.y8_c00368{bottom:1055.970000px;}
.y7_c00368{bottom:1088.820000px;}
.y6_c00368{bottom:1121.520000px;}
.y5_c00368{bottom:1154.520000px;}
.y4_c00368{bottom:1186.920000px;}
.y3_c00368{bottom:1219.770000px;}
.y2_c00368{bottom:1253.370000px;}
.y1_c00368{bottom:1286.220000px;}
.h4_c00368{height:13.200073px;}
.h5_c00368{height:43.804688px;}
.h2_c00368{height:121.546875px;}
.h3_c00368{height:121.757812px;}
.h0_c00368{height:1383.450000px;}
.h1_c00368{height:1383.750000px;}
.w2_c00368{width:104.875500px;}
.w0_c00368{width:878.025000px;}
.w1_c00368{width:878.250000px;}
.x0_c00368{left:0.000000px;}
.x5_c00368{left:38.700000px;}
.x4_c00368{left:40.200000px;}
.x3_c00368{left:41.850000px;}
.x1_c00368{left:43.500000px;}
.x2_c00368{left:44.550000px;}
.x7_c00368{left:46.800000px;}
.x8_c00368{left:48.300000px;}
.x9_c00368{left:52.650000px;}
.xa_c00368{left:54.900000px;}
.x6_c00368{left:93.750000px;}
.xb_c00368{left:317.250000px;}
.xc_c00368{left:390.826721px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls4_c00368{letter-spacing:0.000000pt;}
.ls2_c00368{letter-spacing:2.666667pt;}
.ls3_c00368{letter-spacing:4.053333pt;}
.ls5_c00368{letter-spacing:5.333333pt;}
.ls0_c00368{letter-spacing:13.866667pt;}
.ls1_c00368{letter-spacing:40.029333pt;}
.ws0_c00368{word-spacing:-50.666667pt;}
.ws1_c00368{word-spacing:-20.565333pt;}
.ws3_c00368{word-spacing:-17.994667pt;}
.ws2_c00368{word-spacing:-17.498667pt;}
.ws4_c00368{word-spacing:0.000000pt;}
._44_c00368{margin-left:-26.112000pt;}
._2d_c00368{margin-left:-21.461333pt;}
._35_c00368{margin-left:-20.029333pt;}
._c_c00368{margin-left:-12.629333pt;}
._23_c00368{margin-left:-9.557333pt;}
._33_c00368{margin-left:-8.429333pt;}
._21_c00368{margin-left:-7.296000pt;}
._1b_c00368{margin-left:-5.290667pt;}
._20_c00368{margin-left:-4.266667pt;}
._1d_c00368{margin-left:-2.645333pt;}
._4_c00368{margin-left:-1.706667pt;}
._8_c00368{width:1.109333pt;}
._2_c00368{width:2.730667pt;}
._0_c00368{width:4.437333pt;}
._1_c00368{width:5.717333pt;}
._6_c00368{width:7.253333pt;}
._38_c00368{width:8.192000pt;}
._5_c00368{width:9.130667pt;}
._28_c00368{width:10.666667pt;}
._14_c00368{width:11.690667pt;}
._9_c00368{width:13.738667pt;}
._e_c00368{width:15.530667pt;}
._d_c00368{width:16.469333pt;}
._10_c00368{width:17.578667pt;}
._1a_c00368{width:19.029333pt;}
._3b_c00368{width:20.160000pt;}
._25_c00368{width:21.674667pt;}
._16_c00368{width:22.698667pt;}
._a_c00368{width:23.808000pt;}
._7_c00368{width:25.344000pt;}
._b_c00368{width:26.709333pt;}
._26_c00368{width:27.904000pt;}
._18_c00368{width:29.098667pt;}
._15_c00368{width:30.037333pt;}
._19_c00368{width:30.976000pt;}
._13_c00368{width:32.597333pt;}
._1c_c00368{width:33.706667pt;}
._17_c00368{width:34.986667pt;}
._12_c00368{width:36.096000pt;}
._24_c00368{width:37.802667pt;}
._11_c00368{width:39.168000pt;}
._1e_c00368{width:40.448000pt;}
._3_c00368{width:41.984000pt;}
._2a_c00368{width:43.178667pt;}
._f_c00368{width:44.117333pt;}
._29_c00368{width:45.994667pt;}
._46_c00368{width:47.274667pt;}
._2b_c00368{width:48.469333pt;}
._2e_c00368{width:51.669333pt;}
._3d_c00368{width:54.101333pt;}
._45_c00368{width:57.770667pt;}
._2f_c00368{width:62.026667pt;}
._42_c00368{width:63.296000pt;}
._41_c00368{width:64.277333pt;}
._3f_c00368{width:67.648000pt;}
._40_c00368{width:69.418667pt;}
._47_c00368{width:73.642667pt;}
._31_c00368{width:101.746667pt;}
._3e_c00368{width:171.114667pt;}
._2c_c00368{width:185.834667pt;}
._37_c00368{width:201.093333pt;}
._43_c00368{width:251.221333pt;}
._1f_c00368{width:302.250667pt;}
._27_c00368{width:309.760000pt;}
._34_c00368{width:325.882667pt;}
._3c_c00368{width:337.610667pt;}
._22_c00368{width:349.952000pt;}
._36_c00368{width:426.162667pt;}
._30_c00368{width:604.672000pt;}
._39_c00368{width:682.773333pt;}
._48_c00368{width:695.978667pt;}
._32_c00368{width:719.157333pt;}
._3a_c00368{width:1179.456000pt;}
.fs7_c00368{font-size:42.666667pt;}
.fs2_c00368{font-size:69.333333pt;}
.fs4_c00368{font-size:72.000000pt;}
.fs5_c00368{font-size:74.666667pt;}
.fs3_c00368{font-size:77.333333pt;}
.fs0_c00368{font-size:85.333333pt;}
.fs1_c00368{font-size:90.666667pt;}
.fs6_c00368{font-size:106.666667pt;}
.y0_c00368{bottom:0.000000pt;}
.y27_c00368{bottom:2.760000pt;}
.y26_c00368{bottom:6.425217pt;}
.y25_c00368{bottom:105.840000pt;}
.y24_c00368{bottom:136.106667pt;}
.y23_c00368{bottom:166.506667pt;}
.y22_c00368{bottom:196.773333pt;}
.y21_c00368{bottom:226.773333pt;}
.y20_c00368{bottom:256.506667pt;}
.y1f_c00368{bottom:286.240000pt;}
.y1e_c00368{bottom:316.506667pt;}
.y1d_c00368{bottom:346.106667pt;}
.y1c_c00368{bottom:375.573333pt;}
.y1b_c00368{bottom:405.573333pt;}
.y1a_c00368{bottom:437.040000pt;}
.y19_c00368{bottom:465.840000pt;}
.y18_c00368{bottom:494.640000pt;}
.y17_c00368{bottom:522.640000pt;}
.y16_c00368{bottom:553.440000pt;}
.y15_c00368{bottom:582.640000pt;}
.y14_c00368{bottom:612.640000pt;}
.y13_c00368{bottom:634.773333pt;}
.y12_c00368{bottom:657.840000pt;}
.y11_c00368{bottom:673.173333pt;}
.y10_c00368{bottom:704.373333pt;}
.yf_c00368{bottom:732.640000pt;}
.ye_c00368{bottom:761.440000pt;}
.yd_c00368{bottom:790.773333pt;}
.yc_c00368{bottom:819.840000pt;}
.yb_c00368{bottom:849.573333pt;}
.ya_c00368{bottom:879.306667pt;}
.y9_c00368{bottom:908.906667pt;}
.y8_c00368{bottom:938.640000pt;}
.y7_c00368{bottom:967.840000pt;}
.y6_c00368{bottom:996.906667pt;}
.y5_c00368{bottom:1026.240000pt;}
.y4_c00368{bottom:1055.040000pt;}
.y3_c00368{bottom:1084.240000pt;}
.y2_c00368{bottom:1114.106667pt;}
.y1_c00368{bottom:1143.306667pt;}
.h4_c00368{height:11.733399pt;}
.h5_c00368{height:38.937500pt;}
.h2_c00368{height:108.041667pt;}
.h3_c00368{height:108.229167pt;}
.h0_c00368{height:1229.733333pt;}
.h1_c00368{height:1230.000000pt;}
.w2_c00368{width:93.222667pt;}
.w0_c00368{width:780.466667pt;}
.w1_c00368{width:780.666667pt;}
.x0_c00368{left:0.000000pt;}
.x5_c00368{left:34.400000pt;}
.x4_c00368{left:35.733333pt;}
.x3_c00368{left:37.200000pt;}
.x1_c00368{left:38.666667pt;}
.x2_c00368{left:39.600000pt;}
.x7_c00368{left:41.600000pt;}
.x8_c00368{left:42.933333pt;}
.x9_c00368{left:46.800000pt;}
.xa_c00368{left:48.800000pt;}
.x6_c00368{left:83.333333pt;}
.xb_c00368{left:282.000000pt;}
.xc_c00368{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_980c8091bc5cf957071f67af.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_ee889bd7e5b106b74757f758.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls2_c00369{letter-spacing:0.000000px;}
.ls1_c00369{letter-spacing:2.052000px;}
.ls0_c00369{letter-spacing:36.456000px;}
.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:-63.504000px;}
.ws1_c00369{word-spacing:-23.136000px;}
.ws2_c00369{word-spacing:0.000000px;}
._2f_c00369{margin-left:-32.928000px;}
._30_c00369{margin-left:-29.568000px;}
._32_c00369{margin-left:-28.512000px;}
._1a_c00369{margin-left:-18.144000px;}
._19_c00369{margin-left:-9.792000px;}
._28_c00369{margin-left:-6.240000px;}
._c_c00369{margin-left:-4.800000px;}
._21_c00369{margin-left:-2.880000px;}
._8_c00369{margin-left:-1.824000px;}
._9_c00369{width:1.152000px;}
._2_c00369{width:2.304000px;}
._0_c00369{width:4.128000px;}
._1_c00369{width:5.280000px;}
._3_c00369{width:6.816000px;}
._14_c00369{width:8.160000px;}
._13_c00369{width:9.216000px;}
._12_c00369{width:10.560000px;}
._20_c00369{width:12.000000px;}
._5_c00369{width:13.920000px;}
._17_c00369{width:15.552000px;}
._6_c00369{width:17.184000px;}
._7_c00369{width:19.296000px;}
._4_c00369{width:21.504000px;}
._29_c00369{width:24.864000px;}
._15_c00369{width:26.016000px;}
._10_c00369{width:27.456000px;}
._11_c00369{width:28.608000px;}
._e_c00369{width:30.240000px;}
._23_c00369{width:31.488000px;}
._f_c00369{width:32.832000px;}
._a_c00369{width:34.848000px;}
._d_c00369{width:36.288000px;}
._18_c00369{width:37.440000px;}
._16_c00369{width:38.880000px;}
._26_c00369{width:40.320000px;}
._22_c00369{width:41.376000px;}
._1c_c00369{width:43.680000px;}
._1f_c00369{width:44.928000px;}
._b_c00369{width:47.424000px;}
._1e_c00369{width:50.016000px;}
._24_c00369{width:51.552000px;}
._2a_c00369{width:52.992000px;}
._25_c00369{width:54.144000px;}
._1d_c00369{width:55.296000px;}
._2e_c00369{width:56.448000px;}
._1b_c00369{width:58.368000px;}
._31_c00369{width:61.248000px;}
._2c_c00369{width:62.496000px;}
._27_c00369{width:65.088000px;}
._2b_c00369{width:67.104000px;}
._2d_c00369{width:368.736000px;}
.fc2_c00369{color:transparent;}
.fc1_c00369{color:rgb(128,128,128);}
.fc0_c00369{color:rgb(0,0,0);}
.fs2_c00369{font-size:48.000000px;}
.fs1_c00369{font-size:84.000000px;}
.fs0_c00369{font-size:96.000000px;}
.y0_c00369{bottom:0.000000px;}
.y25_c00369{bottom:3.105000px;}
.y24_c00369{bottom:7.228357px;}
.y23_c00369{bottom:135.330000px;}
.y22_c00369{bottom:168.780000px;}
.y21_c00369{bottom:202.830000px;}
.y20_c00369{bottom:238.230000px;}
.y1f_c00369{bottom:270.630000px;}
.y1e_c00369{bottom:304.530000px;}
.y1d_c00369{bottom:338.280000px;}
.y1c_c00369{bottom:372.330000px;}
.y1b_c00369{bottom:405.630000px;}
.y1a_c00369{bottom:439.530000px;}
.y19_c00369{bottom:473.130000px;}
.y18_c00369{bottom:506.880000px;}
.y17_c00369{bottom:540.630000px;}
.y16_c00369{bottom:574.080000px;}
.y15_c00369{bottom:607.530000px;}
.y14_c00369{bottom:641.580000px;}
.y13_c00369{bottom:672.030000px;}
.y12_c00369{bottom:709.080000px;}
.y11_c00369{bottom:742.230000px;}
.y10_c00369{bottom:775.530000px;}
.yf_c00369{bottom:808.680000px;}
.ye_c00369{bottom:841.830000px;}
.yd_c00369{bottom:875.130000px;}
.yc_c00369{bottom:908.280000px;}
.yb_c00369{bottom:941.730000px;}
.ya_c00369{bottom:974.730000px;}
.y9_c00369{bottom:1006.980000px;}
.y8_c00369{bottom:1040.130000px;}
.y7_c00369{bottom:1073.280000px;}
.y6_c00369{bottom:1106.430000px;}
.y5_c00369{bottom:1140.030000px;}
.y4_c00369{bottom:1172.880000px;}
.y3_c00369{bottom:1206.330000px;}
.y2_c00369{bottom:1239.630000px;}
.y1_c00369{bottom:1272.030000px;}
.h3_c00369{height:13.200074px;}
.h4_c00369{height:43.804688px;}
.h2_c00369{height:121.546875px;}
.h0_c00369{height:1382.700000px;}
.h1_c00369{height:1383.000000px;}
.w2_c00369{width:104.875500px;}
.w0_c00369{width:863.175000px;}
.w1_c00369{width:863.250000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:258.900000px;}
.x2_c00369{left:259.950000px;}
.x3_c00369{left:261.000000px;}
.x4_c00369{left:262.200000px;}
.x5_c00369{left:263.700000px;}
.x6_c00369{left:265.350000px;}
.x7_c00369{left:266.400000px;}
.x8_c00369{left:314.550000px;}
.x9_c00369{left:383.401749px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls2_c00369{letter-spacing:0.000000pt;}
.ls1_c00369{letter-spacing:1.824000pt;}
.ls0_c00369{letter-spacing:32.405333pt;}
.ws0_c00369{word-spacing:-56.448000pt;}
.ws1_c00369{word-spacing:-20.565333pt;}
.ws2_c00369{word-spacing:0.000000pt;}
._2f_c00369{margin-left:-29.269333pt;}
._30_c00369{margin-left:-26.282667pt;}
._32_c00369{margin-left:-25.344000pt;}
._1a_c00369{margin-left:-16.128000pt;}
._19_c00369{margin-left:-8.704000pt;}
._28_c00369{margin-left:-5.546667pt;}
._c_c00369{margin-left:-4.266667pt;}
._21_c00369{margin-left:-2.560000pt;}
._8_c00369{margin-left:-1.621333pt;}
._9_c00369{width:1.024000pt;}
._2_c00369{width:2.048000pt;}
._0_c00369{width:3.669333pt;}
._1_c00369{width:4.693333pt;}
._3_c00369{width:6.058667pt;}
._14_c00369{width:7.253333pt;}
._13_c00369{width:8.192000pt;}
._12_c00369{width:9.386667pt;}
._20_c00369{width:10.666667pt;}
._5_c00369{width:12.373333pt;}
._17_c00369{width:13.824000pt;}
._6_c00369{width:15.274667pt;}
._7_c00369{width:17.152000pt;}
._4_c00369{width:19.114667pt;}
._29_c00369{width:22.101333pt;}
._15_c00369{width:23.125333pt;}
._10_c00369{width:24.405333pt;}
._11_c00369{width:25.429333pt;}
._e_c00369{width:26.880000pt;}
._23_c00369{width:27.989333pt;}
._f_c00369{width:29.184000pt;}
._a_c00369{width:30.976000pt;}
._d_c00369{width:32.256000pt;}
._18_c00369{width:33.280000pt;}
._16_c00369{width:34.560000pt;}
._26_c00369{width:35.840000pt;}
._22_c00369{width:36.778667pt;}
._1c_c00369{width:38.826667pt;}
._1f_c00369{width:39.936000pt;}
._b_c00369{width:42.154667pt;}
._1e_c00369{width:44.458667pt;}
._24_c00369{width:45.824000pt;}
._2a_c00369{width:47.104000pt;}
._25_c00369{width:48.128000pt;}
._1d_c00369{width:49.152000pt;}
._2e_c00369{width:50.176000pt;}
._1b_c00369{width:51.882667pt;}
._31_c00369{width:54.442667pt;}
._2c_c00369{width:55.552000pt;}
._27_c00369{width:57.856000pt;}
._2b_c00369{width:59.648000pt;}
._2d_c00369{width:327.765333pt;}
.fs2_c00369{font-size:42.666667pt;}
.fs1_c00369{font-size:74.666667pt;}
.fs0_c00369{font-size:85.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.y25_c00369{bottom:2.760000pt;}
.y24_c00369{bottom:6.425206pt;}
.y23_c00369{bottom:120.293333pt;}
.y22_c00369{bottom:150.026667pt;}
.y21_c00369{bottom:180.293333pt;}
.y20_c00369{bottom:211.760000pt;}
.y1f_c00369{bottom:240.560000pt;}
.y1e_c00369{bottom:270.693333pt;}
.y1d_c00369{bottom:300.693333pt;}
.y1c_c00369{bottom:330.960000pt;}
.y1b_c00369{bottom:360.560000pt;}
.y1a_c00369{bottom:390.693333pt;}
.y19_c00369{bottom:420.560000pt;}
.y18_c00369{bottom:450.560000pt;}
.y17_c00369{bottom:480.560000pt;}
.y16_c00369{bottom:510.293333pt;}
.y15_c00369{bottom:540.026667pt;}
.y14_c00369{bottom:570.293333pt;}
.y13_c00369{bottom:597.360000pt;}
.y12_c00369{bottom:630.293333pt;}
.y11_c00369{bottom:659.760000pt;}
.y10_c00369{bottom:689.360000pt;}
.yf_c00369{bottom:718.826667pt;}
.ye_c00369{bottom:748.293333pt;}
.yd_c00369{bottom:777.893333pt;}
.yc_c00369{bottom:807.360000pt;}
.yb_c00369{bottom:837.093333pt;}
.ya_c00369{bottom:866.426667pt;}
.y9_c00369{bottom:895.093333pt;}
.y8_c00369{bottom:924.560000pt;}
.y7_c00369{bottom:954.026667pt;}
.y6_c00369{bottom:983.493333pt;}
.y5_c00369{bottom:1013.360000pt;}
.y4_c00369{bottom:1042.560000pt;}
.y3_c00369{bottom:1072.293333pt;}
.y2_c00369{bottom:1101.893333pt;}
.y1_c00369{bottom:1130.693333pt;}
.h3_c00369{height:11.733399pt;}
.h4_c00369{height:38.937500pt;}
.h2_c00369{height:108.041667pt;}
.h0_c00369{height:1229.066667pt;}
.h1_c00369{height:1229.333333pt;}
.w2_c00369{width:93.222667pt;}
.w0_c00369{width:767.266667pt;}
.w1_c00369{width:767.333333pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:230.133333pt;}
.x2_c00369{left:231.066667pt;}
.x3_c00369{left:232.000000pt;}
.x4_c00369{left:233.066667pt;}
.x5_c00369{left:234.400000pt;}
.x6_c00369{left:235.866667pt;}
.x7_c00369{left:236.800000pt;}
.x8_c00369{left:279.600000pt;}
.x9_c00369{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9fa8ca76143328d8eb129ce4.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_245ecdb82ba53f8558d7b386.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_83d781541d873d5475fb0033.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;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_c00370;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00370{vertical-align:-142.200000px;}
.v0_c00370{vertical-align:0.000000px;}
.ls2_c00370{letter-spacing:0.000000px;}
.ls0_c00370{letter-spacing:0.396000px;}
.ls1_c00370{letter-spacing:5.034000px;}
.ls3_c00370{letter-spacing:6.000000px;}
.ls4_c00370{letter-spacing:18.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00370{word-spacing:-61.044000px;}
.ws3_c00370{word-spacing:-57.000000px;}
.ws4_c00370{word-spacing:-36.798000px;}
.ws6_c00370{word-spacing:-23.136000px;}
.ws2_c00370{word-spacing:-20.244000px;}
.ws5_c00370{word-spacing:-18.798000px;}
.ws7_c00370{word-spacing:0.000000px;}
.ws0_c00370{word-spacing:4.704000px;}
._23_c00370{margin-left:-19.584000px;}
._2b_c00370{margin-left:-18.009000px;}
._2e_c00370{margin-left:-16.704000px;}
._24_c00370{margin-left:-14.688000px;}
._31_c00370{margin-left:-12.042000px;}
._37_c00370{margin-left:-10.179000px;}
._32_c00370{margin-left:-7.542000px;}
._1a_c00370{margin-left:-4.608000px;}
._13_c00370{margin-left:-3.552000px;}
._30_c00370{margin-left:-2.292000px;}
._5_c00370{margin-left:-1.248000px;}
._1_c00370{width:1.440000px;}
._3_c00370{width:2.688000px;}
._0_c00370{width:3.744000px;}
._9_c00370{width:4.992000px;}
._b_c00370{width:6.240000px;}
._11_c00370{width:7.488000px;}
._a_c00370{width:8.640000px;}
._c_c00370{width:9.888000px;}
._47_c00370{width:11.202000px;}
._14_c00370{width:12.384000px;}
._46_c00370{width:13.446000px;}
._17_c00370{width:15.168000px;}
._16_c00370{width:16.608000px;}
._4a_c00370{width:17.982000px;}
._20_c00370{width:19.008000px;}
._12_c00370{width:20.160000px;}
._4_c00370{width:21.984000px;}
._2_c00370{width:24.960000px;}
._18_c00370{width:26.112000px;}
._8_c00370{width:28.224000px;}
._e_c00370{width:29.952000px;}
._6_c00370{width:31.968000px;}
._1e_c00370{width:33.888000px;}
._40_c00370{width:35.040000px;}
._7_c00370{width:36.288000px;}
._f_c00370{width:38.880000px;}
._15_c00370{width:40.512000px;}
._10_c00370{width:41.952000px;}
._1b_c00370{width:43.872000px;}
._d_c00370{width:45.792000px;}
._19_c00370{width:47.136000px;}
._1d_c00370{width:49.440000px;}
._3e_c00370{width:50.877000px;}
._4b_c00370{width:52.419000px;}
._43_c00370{width:53.574000px;}
._48_c00370{width:54.648000px;}
._4c_c00370{width:56.352000px;}
._45_c00370{width:58.536000px;}
._26_c00370{width:59.616000px;}
._1c_c00370{width:62.976000px;}
._3f_c00370{width:64.644000px;}
._49_c00370{width:65.952000px;}
._41_c00370{width:67.008000px;}
._4d_c00370{width:69.498000px;}
._22_c00370{width:72.960000px;}
._3b_c00370{width:77.661000px;}
._44_c00370{width:79.908000px;}
._36_c00370{width:95.424000px;}
._2a_c00370{width:100.455000px;}
._2c_c00370{width:105.357000px;}
._3d_c00370{width:134.643000px;}
._2f_c00370{width:138.003000px;}
._34_c00370{width:148.608000px;}
._42_c00370{width:173.067000px;}
._2d_c00370{width:184.758000px;}
._35_c00370{width:194.463000px;}
._39_c00370{width:215.892000px;}
._3a_c00370{width:244.470000px;}
._3c_c00370{width:270.903000px;}
._4e_c00370{width:281.904000px;}
._27_c00370{width:299.349000px;}
._1f_c00370{width:326.400000px;}
._21_c00370{width:359.856000px;}
._38_c00370{width:424.770000px;}
._33_c00370{width:433.536000px;}
._25_c00370{width:437.088000px;}
._29_c00370{width:453.156000px;}
._28_c00370{width:474.060000px;}
.fc2_c00370{color:transparent;}
.fc1_c00370{color:rgb(128,128,128);}
.fc0_c00370{color:rgb(0,0,0);}
.fs6_c00370{font-size:48.000000px;}
.fs5_c00370{font-size:78.000000px;}
.fs0_c00370{font-size:84.000000px;}
.fs4_c00370{font-size:87.000000px;}
.fs1_c00370{font-size:96.000000px;}
.fs2_c00370{font-size:99.000000px;}
.fs3_c00370{font-size:102.000000px;}
.y0_c00370{bottom:0.000000px;}
.y28_c00370{bottom:3.105000px;}
.y27_c00370{bottom:7.228355px;}
.y26_c00370{bottom:119.835000px;}
.y25_c00370{bottom:155.535000px;}
.y24_c00370{bottom:189.285000px;}
.y23_c00370{bottom:222.735000px;}
.y22_c00370{bottom:256.185000px;}
.y21_c00370{bottom:289.785000px;}
.y20_c00370{bottom:322.935000px;}
.y1f_c00370{bottom:356.985000px;}
.y1e_c00370{bottom:390.135000px;}
.y1d_c00370{bottom:423.135000px;}
.y1c_c00370{bottom:456.585000px;}
.y1b_c00370{bottom:489.735000px;}
.y1a_c00370{bottom:523.035000px;}
.y19_c00370{bottom:556.485000px;}
.y18_c00370{bottom:589.935000px;}
.y17_c00370{bottom:623.385000px;}
.y16_c00370{bottom:656.385000px;}
.y15_c00370{bottom:689.835000px;}
.y14_c00370{bottom:722.535000px;}
.y13_c00370{bottom:755.985000px;}
.y12_c00370{bottom:789.735000px;}
.y11_c00370{bottom:821.385000px;}
.y10_c00370{bottom:853.185000px;}
.yf_c00370{bottom:887.985000px;}
.ye_c00370{bottom:920.985000px;}
.yd_c00370{bottom:935.835000px;}
.yc_c00370{bottom:953.985000px;}
.yb_c00370{bottom:968.985000px;}
.ya_c00370{bottom:987.885000px;}
.y9_c00370{bottom:1020.585000px;}
.y8_c00370{bottom:1053.585000px;}
.y7_c00370{bottom:1086.435000px;}
.y6_c00370{bottom:1119.135000px;}
.y5_c00370{bottom:1152.135000px;}
.y4_c00370{bottom:1184.985000px;}
.y3_c00370{bottom:1217.985000px;}
.y2_c00370{bottom:1251.435000px;}
.y1_c00370{bottom:1285.185000px;}
.h5_c00370{height:13.200074px;}
.h6_c00370{height:43.804688px;}
.h2_c00370{height:98.314453px;}
.h4_c00370{height:110.151855px;}
.h3_c00370{height:121.546875px;}
.h1_c00370{height:1353.000000px;}
.h0_c00370{height:1353.225000px;}
.w2_c00370{width:104.875500px;}
.w0_c00370{width:858.600000px;}
.w1_c00370{width:858.750000px;}
.x0_c00370{left:0.000000px;}
.xb_c00370{left:27.750000px;}
.xa_c00370{left:28.950000px;}
.x9_c00370{left:30.000000px;}
.x8_c00370{left:31.500000px;}
.x6_c00370{left:32.700000px;}
.x5_c00370{left:33.750000px;}
.x4_c00370{left:35.400000px;}
.x2_c00370{left:36.450000px;}
.x3_c00370{left:38.100000px;}
.xc_c00370{left:39.150000px;}
.x7_c00370{left:83.250000px;}
.xd_c00370{left:381.114258px;}
.x1_c00370{left:525.750000px;}
@media print{
.v1_c00370{vertical-align:-126.400000pt;}
.v0_c00370{vertical-align:0.000000pt;}
.ls2_c00370{letter-spacing:0.000000pt;}
.ls0_c00370{letter-spacing:0.352000pt;}
.ls1_c00370{letter-spacing:4.474667pt;}
.ls3_c00370{letter-spacing:5.333333pt;}
.ls4_c00370{letter-spacing:16.000000pt;}
.ws1_c00370{word-spacing:-54.261333pt;}
.ws3_c00370{word-spacing:-50.666667pt;}
.ws4_c00370{word-spacing:-32.709333pt;}
.ws6_c00370{word-spacing:-20.565333pt;}
.ws2_c00370{word-spacing:-17.994667pt;}
.ws5_c00370{word-spacing:-16.709333pt;}
.ws7_c00370{word-spacing:0.000000pt;}
.ws0_c00370{word-spacing:4.181333pt;}
._23_c00370{margin-left:-17.408000pt;}
._2b_c00370{margin-left:-16.008000pt;}
._2e_c00370{margin-left:-14.848000pt;}
._24_c00370{margin-left:-13.056000pt;}
._31_c00370{margin-left:-10.704000pt;}
._37_c00370{margin-left:-9.048000pt;}
._32_c00370{margin-left:-6.704000pt;}
._1a_c00370{margin-left:-4.096000pt;}
._13_c00370{margin-left:-3.157333pt;}
._30_c00370{margin-left:-2.037333pt;}
._5_c00370{margin-left:-1.109333pt;}
._1_c00370{width:1.280000pt;}
._3_c00370{width:2.389333pt;}
._0_c00370{width:3.328000pt;}
._9_c00370{width:4.437333pt;}
._b_c00370{width:5.546667pt;}
._11_c00370{width:6.656000pt;}
._a_c00370{width:7.680000pt;}
._c_c00370{width:8.789333pt;}
._47_c00370{width:9.957333pt;}
._14_c00370{width:11.008000pt;}
._46_c00370{width:11.952000pt;}
._17_c00370{width:13.482667pt;}
._16_c00370{width:14.762667pt;}
._4a_c00370{width:15.984000pt;}
._20_c00370{width:16.896000pt;}
._12_c00370{width:17.920000pt;}
._4_c00370{width:19.541333pt;}
._2_c00370{width:22.186667pt;}
._18_c00370{width:23.210667pt;}
._8_c00370{width:25.088000pt;}
._e_c00370{width:26.624000pt;}
._6_c00370{width:28.416000pt;}
._1e_c00370{width:30.122667pt;}
._40_c00370{width:31.146667pt;}
._7_c00370{width:32.256000pt;}
._f_c00370{width:34.560000pt;}
._15_c00370{width:36.010667pt;}
._10_c00370{width:37.290667pt;}
._1b_c00370{width:38.997333pt;}
._d_c00370{width:40.704000pt;}
._19_c00370{width:41.898667pt;}
._1d_c00370{width:43.946667pt;}
._3e_c00370{width:45.224000pt;}
._4b_c00370{width:46.594667pt;}
._43_c00370{width:47.621333pt;}
._48_c00370{width:48.576000pt;}
._4c_c00370{width:50.090667pt;}
._45_c00370{width:52.032000pt;}
._26_c00370{width:52.992000pt;}
._1c_c00370{width:55.978667pt;}
._3f_c00370{width:57.461333pt;}
._49_c00370{width:58.624000pt;}
._41_c00370{width:59.562667pt;}
._4d_c00370{width:61.776000pt;}
._22_c00370{width:64.853333pt;}
._3b_c00370{width:69.032000pt;}
._44_c00370{width:71.029333pt;}
._36_c00370{width:84.821333pt;}
._2a_c00370{width:89.293333pt;}
._2c_c00370{width:93.650667pt;}
._3d_c00370{width:119.682667pt;}
._2f_c00370{width:122.669333pt;}
._34_c00370{width:132.096000pt;}
._42_c00370{width:153.837333pt;}
._2d_c00370{width:164.229333pt;}
._35_c00370{width:172.856000pt;}
._39_c00370{width:191.904000pt;}
._3a_c00370{width:217.306667pt;}
._3c_c00370{width:240.802667pt;}
._4e_c00370{width:250.581333pt;}
._27_c00370{width:266.088000pt;}
._1f_c00370{width:290.133333pt;}
._21_c00370{width:319.872000pt;}
._38_c00370{width:377.573333pt;}
._33_c00370{width:385.365333pt;}
._25_c00370{width:388.522667pt;}
._29_c00370{width:402.805333pt;}
._28_c00370{width:421.386667pt;}
.fs6_c00370{font-size:42.666667pt;}
.fs5_c00370{font-size:69.333333pt;}
.fs0_c00370{font-size:74.666667pt;}
.fs4_c00370{font-size:77.333333pt;}
.fs1_c00370{font-size:85.333333pt;}
.fs2_c00370{font-size:88.000000pt;}
.fs3_c00370{font-size:90.666667pt;}
.y0_c00370{bottom:0.000000pt;}
.y28_c00370{bottom:2.760000pt;}
.y27_c00370{bottom:6.425204pt;}
.y26_c00370{bottom:106.520000pt;}
.y25_c00370{bottom:138.253333pt;}
.y24_c00370{bottom:168.253333pt;}
.y23_c00370{bottom:197.986667pt;}
.y22_c00370{bottom:227.720000pt;}
.y21_c00370{bottom:257.586667pt;}
.y20_c00370{bottom:287.053333pt;}
.y1f_c00370{bottom:317.320000pt;}
.y1e_c00370{bottom:346.786667pt;}
.y1d_c00370{bottom:376.120000pt;}
.y1c_c00370{bottom:405.853333pt;}
.y1b_c00370{bottom:435.320000pt;}
.y1a_c00370{bottom:464.920000pt;}
.y19_c00370{bottom:494.653333pt;}
.y18_c00370{bottom:524.386667pt;}
.y17_c00370{bottom:554.120000pt;}
.y16_c00370{bottom:583.453333pt;}
.y15_c00370{bottom:613.186667pt;}
.y14_c00370{bottom:642.253333pt;}
.y13_c00370{bottom:671.986667pt;}
.y12_c00370{bottom:701.986667pt;}
.y11_c00370{bottom:730.120000pt;}
.y10_c00370{bottom:758.386667pt;}
.yf_c00370{bottom:789.320000pt;}
.ye_c00370{bottom:818.653333pt;}
.yd_c00370{bottom:831.853333pt;}
.yc_c00370{bottom:847.986667pt;}
.yb_c00370{bottom:861.320000pt;}
.ya_c00370{bottom:878.120000pt;}
.y9_c00370{bottom:907.186667pt;}
.y8_c00370{bottom:936.520000pt;}
.y7_c00370{bottom:965.720000pt;}
.y6_c00370{bottom:994.786667pt;}
.y5_c00370{bottom:1024.120000pt;}
.y4_c00370{bottom:1053.320000pt;}
.y3_c00370{bottom:1082.653333pt;}
.y2_c00370{bottom:1112.386667pt;}
.y1_c00370{bottom:1142.386667pt;}
.h5_c00370{height:11.733399pt;}
.h6_c00370{height:38.937500pt;}
.h2_c00370{height:87.390625pt;}
.h4_c00370{height:97.912760pt;}
.h3_c00370{height:108.041667pt;}
.h1_c00370{height:1202.666667pt;}
.h0_c00370{height:1202.866667pt;}
.w2_c00370{width:93.222667pt;}
.w0_c00370{width:763.200000pt;}
.w1_c00370{width:763.333333pt;}
.x0_c00370{left:0.000000pt;}
.xb_c00370{left:24.666667pt;}
.xa_c00370{left:25.733333pt;}
.x9_c00370{left:26.666667pt;}
.x8_c00370{left:28.000000pt;}
.x6_c00370{left:29.066667pt;}
.x5_c00370{left:30.000000pt;}
.x4_c00370{left:31.466667pt;}
.x2_c00370{left:32.400000pt;}
.x3_c00370{left:33.866667pt;}
.xc_c00370{left:34.800000pt;}
.x7_c00370{left:74.000000pt;}
.xd_c00370{left:338.768229pt;}
.x1_c00370{left:467.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6857219fce9e48dac1dbc0d0.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_71fe883782d13a824f6a4d68.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_015f2e1e8976132e8fab28ef.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_a8d89042c1275efb1aec8f26.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00371;src:url('chunks/assets/font_90fa01d544fd9e711d3e0562.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00371;src:url('chunks/assets/font_7d236fdb29a292e4ed5edad6.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00371;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00371{font-family:ff7_c00371;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls8_c00371{letter-spacing:0.000000px;}
.lsa_c00371{letter-spacing:6.000000px;}
.ls9_c00371{letter-spacing:9.000000px;}
.ls0_c00371{letter-spacing:9.600000px;}
.ls1_c00371{letter-spacing:11.400000px;}
.ls7_c00371{letter-spacing:31.833000px;}
.ls6_c00371{letter-spacing:53.433000px;}
.ls4_c00371{letter-spacing:70.833000px;}
.ls5_c00371{letter-spacing:72.633000px;}
.ls2_c00371{letter-spacing:237.033000px;}
.ls3_c00371{letter-spacing:427.833000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00371{word-spacing:-66.720000px;}
.ws3_c00371{word-spacing:-57.000000px;}
.ws4_c00371{word-spacing:-25.305000px;}
.ws2_c00371{word-spacing:-0.075000px;}
.ws5_c00371{word-spacing:0.000000px;}
.ws0_c00371{word-spacing:16.275000px;}
._3f_c00371{margin-left:-34.944000px;}
._2e_c00371{margin-left:-22.494000px;}
._2d_c00371{margin-left:-20.769000px;}
._21_c00371{margin-left:-18.720000px;}
._2b_c00371{margin-left:-14.760000px;}
._36_c00371{margin-left:-13.518000px;}
._0_c00371{margin-left:-10.368000px;}
._1f_c00371{margin-left:-9.024000px;}
._1e_c00371{margin-left:-7.776000px;}
._42_c00371{margin-left:-6.396000px;}
._1_c00371{margin-left:-4.992000px;}
._43_c00371{margin-left:-3.822000px;}
._c_c00371{margin-left:-2.808000px;}
._10_c00371{margin-left:-1.602000px;}
._e_c00371{width:1.056000px;}
._f_c00371{width:2.208000px;}
._3_c00371{width:3.648000px;}
._a_c00371{width:4.704000px;}
._9_c00371{width:5.952000px;}
._b_c00371{width:7.320000px;}
._1a_c00371{width:8.472000px;}
._d_c00371{width:9.816000px;}
._29_c00371{width:11.130000px;}
._19_c00371{width:12.636000px;}
._2a_c00371{width:13.647000px;}
._7_c00371{width:15.168000px;}
._2_c00371{width:16.800000px;}
._1d_c00371{width:18.876000px;}
._45_c00371{width:20.064000px;}
._22_c00371{width:21.348000px;}
._8_c00371{width:25.632000px;}
._3d_c00371{width:26.688000px;}
._12_c00371{width:27.690000px;}
._6_c00371{width:28.704000px;}
._13_c00371{width:29.796000px;}
._46_c00371{width:31.140000px;}
._14_c00371{width:32.160000px;}
._38_c00371{width:33.516000px;}
._15_c00371{width:34.992000px;}
._3b_c00371{width:36.000000px;}
._16_c00371{width:37.032000px;}
._27_c00371{width:38.412000px;}
._11_c00371{width:40.983000px;}
._1b_c00371{width:42.816000px;}
._39_c00371{width:45.264000px;}
._1c_c00371{width:47.952000px;}
._3a_c00371{width:48.960000px;}
._17_c00371{width:50.028000px;}
._3e_c00371{width:51.048000px;}
._18_c00371{width:52.176000px;}
._3c_c00371{width:54.198000px;}
._25_c00371{width:56.796000px;}
._49_c00371{width:58.320000px;}
._37_c00371{width:59.964000px;}
._28_c00371{width:62.712000px;}
._26_c00371{width:63.936000px;}
._48_c00371{width:68.940000px;}
._44_c00371{width:86.730000px;}
._33_c00371{width:96.324000px;}
._32_c00371{width:103.359000px;}
._23_c00371{width:112.584000px;}
._20_c00371{width:123.048000px;}
._30_c00371{width:130.773000px;}
._2f_c00371{width:162.426000px;}
._5_c00371{width:177.216000px;}
._34_c00371{width:224.241000px;}
._35_c00371{width:240.417000px;}
._47_c00371{width:299.508000px;}
._4_c00371{width:328.320000px;}
._31_c00371{width:370.026000px;}
._2c_c00371{width:421.032000px;}
._24_c00371{width:453.780000px;}
._41_c00371{width:674.400000px;}
._40_c00371{width:864.576000px;}
.fc2_c00371{color:transparent;}
.fc1_c00371{color:rgb(128,128,128);}
.fc0_c00371{color:rgb(0,0,0);}
.fs9_c00371{font-size:48.000000px;}
.fs7_c00371{font-size:69.000000px;}
.fs3_c00371{font-size:75.000000px;}
.fs2_c00371{font-size:78.000000px;}
.fs5_c00371{font-size:84.000000px;}
.fs4_c00371{font-size:87.000000px;}
.fs0_c00371{font-size:96.000000px;}
.fs1_c00371{font-size:102.000000px;}
.fs8_c00371{font-size:105.000000px;}
.fs6_c00371{font-size:120.000000px;}
.y0_c00371{bottom:0.000000px;}
.y27_c00371{bottom:3.105000px;}
.y26_c00371{bottom:7.228357px;}
.y25_c00371{bottom:105.630000px;}
.y24_c00371{bottom:142.530000px;}
.y23_c00371{bottom:178.230000px;}
.y22_c00371{bottom:211.680000px;}
.y21_c00371{bottom:243.780000px;}
.y20_c00371{bottom:276.030000px;}
.y1f_c00371{bottom:307.830000px;}
.y1e_c00371{bottom:346.230000px;}
.y1d_c00371{bottom:378.630000px;}
.y1c_c00371{bottom:412.530000px;}
.y1b_c00371{bottom:446.130000px;}
.y1a_c00371{bottom:479.880000px;}
.y19_c00371{bottom:513.030000px;}
.y18_c00371{bottom:546.780000px;}
.y17_c00371{bottom:579.930000px;}
.y16_c00371{bottom:613.530000px;}
.y15_c00371{bottom:647.280000px;}
.y14_c00371{bottom:680.730000px;}
.y13_c00371{bottom:713.430000px;}
.y12_c00371{bottom:747.330000px;}
.y11_c00371{bottom:780.330000px;}
.y10_c00371{bottom:813.780000px;}
.yf_c00371{bottom:847.080000px;}
.ye_c00371{bottom:880.530000px;}
.yd_c00371{bottom:913.980000px;}
.yc_c00371{bottom:946.980000px;}
.yb_c00371{bottom:979.530000px;}
.ya_c00371{bottom:1012.230000px;}
.y9_c00371{bottom:1044.630000px;}
.y8_c00371{bottom:1077.930000px;}
.y7_c00371{bottom:1090.230000px;}
.y6_c00371{bottom:1110.780000px;}
.y5_c00371{bottom:1144.080000px;}
.y4_c00371{bottom:1177.530000px;}
.y3_c00371{bottom:1213.980000px;}
.y2_c00371{bottom:1244.730000px;}
.y1_c00371{bottom:1276.380000px;}
.h5_c00371{height:13.200074px;}
.h6_c00371{height:43.804688px;}
.h3_c00371{height:117.714844px;}
.h2_c00371{height:121.546875px;}
.h4_c00371{height:132.941895px;}
.h0_c00371{height:1382.700000px;}
.h1_c00371{height:1383.000000px;}
.w2_c00371{width:104.875500px;}
.w0_c00371{width:863.175000px;}
.w1_c00371{width:863.250000px;}
.x0_c00371{left:0.000000px;}
.x9_c00371{left:35.400000px;}
.xd_c00371{left:38.550000px;}
.xc_c00371{left:39.600000px;}
.x6_c00371{left:49.350000px;}
.x3_c00371{left:51.000000px;}
.xb_c00371{left:67.800000px;}
.x2_c00371{left:80.100000px;}
.x5_c00371{left:119.550000px;}
.xa_c00371{left:162.000000px;}
.x1_c00371{left:167.100000px;}
.xe_c00371{left:188.100000px;}
.x8_c00371{left:262.650000px;}
.x4_c00371{left:264.300000px;}
.x7_c00371{left:265.350000px;}
.x10_c00371{left:383.401749px;}
.xf_c00371{left:801.600000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls8_c00371{letter-spacing:0.000000pt;}
.lsa_c00371{letter-spacing:5.333333pt;}
.ls9_c00371{letter-spacing:8.000000pt;}
.ls0_c00371{letter-spacing:8.533333pt;}
.ls1_c00371{letter-spacing:10.133333pt;}
.ls7_c00371{letter-spacing:28.296000pt;}
.ls6_c00371{letter-spacing:47.496000pt;}
.ls4_c00371{letter-spacing:62.962667pt;}
.ls5_c00371{letter-spacing:64.562667pt;}
.ls2_c00371{letter-spacing:210.696000pt;}
.ls3_c00371{letter-spacing:380.296000pt;}
.ws1_c00371{word-spacing:-59.306667pt;}
.ws3_c00371{word-spacing:-50.666667pt;}
.ws4_c00371{word-spacing:-22.493333pt;}
.ws2_c00371{word-spacing:-0.066667pt;}
.ws5_c00371{word-spacing:0.000000pt;}
.ws0_c00371{word-spacing:14.466667pt;}
._3f_c00371{margin-left:-31.061333pt;}
._2e_c00371{margin-left:-19.994667pt;}
._2d_c00371{margin-left:-18.461333pt;}
._21_c00371{margin-left:-16.640000pt;}
._2b_c00371{margin-left:-13.120000pt;}
._36_c00371{margin-left:-12.016000pt;}
._0_c00371{margin-left:-9.216000pt;}
._1f_c00371{margin-left:-8.021333pt;}
._1e_c00371{margin-left:-6.912000pt;}
._42_c00371{margin-left:-5.685333pt;}
._1_c00371{margin-left:-4.437333pt;}
._43_c00371{margin-left:-3.397333pt;}
._c_c00371{margin-left:-2.496000pt;}
._10_c00371{margin-left:-1.424000pt;}
._e_c00371{width:0.938667pt;}
._f_c00371{width:1.962667pt;}
._3_c00371{width:3.242667pt;}
._a_c00371{width:4.181333pt;}
._9_c00371{width:5.290667pt;}
._b_c00371{width:6.506667pt;}
._1a_c00371{width:7.530667pt;}
._d_c00371{width:8.725333pt;}
._29_c00371{width:9.893333pt;}
._19_c00371{width:11.232000pt;}
._2a_c00371{width:12.130667pt;}
._7_c00371{width:13.482667pt;}
._2_c00371{width:14.933333pt;}
._1d_c00371{width:16.778667pt;}
._45_c00371{width:17.834667pt;}
._22_c00371{width:18.976000pt;}
._8_c00371{width:22.784000pt;}
._3d_c00371{width:23.722667pt;}
._12_c00371{width:24.613333pt;}
._6_c00371{width:25.514667pt;}
._13_c00371{width:26.485333pt;}
._46_c00371{width:27.680000pt;}
._14_c00371{width:28.586667pt;}
._38_c00371{width:29.792000pt;}
._15_c00371{width:31.104000pt;}
._3b_c00371{width:32.000000pt;}
._16_c00371{width:32.917333pt;}
._27_c00371{width:34.144000pt;}
._11_c00371{width:36.429333pt;}
._1b_c00371{width:38.058667pt;}
._39_c00371{width:40.234667pt;}
._1c_c00371{width:42.624000pt;}
._3a_c00371{width:43.520000pt;}
._17_c00371{width:44.469333pt;}
._3e_c00371{width:45.376000pt;}
._18_c00371{width:46.378667pt;}
._3c_c00371{width:48.176000pt;}
._25_c00371{width:50.485333pt;}
._49_c00371{width:51.840000pt;}
._37_c00371{width:53.301333pt;}
._28_c00371{width:55.744000pt;}
._26_c00371{width:56.832000pt;}
._48_c00371{width:61.280000pt;}
._44_c00371{width:77.093333pt;}
._33_c00371{width:85.621333pt;}
._32_c00371{width:91.874667pt;}
._23_c00371{width:100.074667pt;}
._20_c00371{width:109.376000pt;}
._30_c00371{width:116.242667pt;}
._2f_c00371{width:144.378667pt;}
._5_c00371{width:157.525333pt;}
._34_c00371{width:199.325333pt;}
._35_c00371{width:213.704000pt;}
._47_c00371{width:266.229333pt;}
._4_c00371{width:291.840000pt;}
._31_c00371{width:328.912000pt;}
._2c_c00371{width:374.250667pt;}
._24_c00371{width:403.360000pt;}
._41_c00371{width:599.466667pt;}
._40_c00371{width:768.512000pt;}
.fs9_c00371{font-size:42.666667pt;}
.fs7_c00371{font-size:61.333333pt;}
.fs3_c00371{font-size:66.666667pt;}
.fs2_c00371{font-size:69.333333pt;}
.fs5_c00371{font-size:74.666667pt;}
.fs4_c00371{font-size:77.333333pt;}
.fs0_c00371{font-size:85.333333pt;}
.fs1_c00371{font-size:90.666667pt;}
.fs8_c00371{font-size:93.333333pt;}
.fs6_c00371{font-size:106.666667pt;}
.y0_c00371{bottom:0.000000pt;}
.y27_c00371{bottom:2.760000pt;}
.y26_c00371{bottom:6.425206pt;}
.y25_c00371{bottom:93.893333pt;}
.y24_c00371{bottom:126.693333pt;}
.y23_c00371{bottom:158.426667pt;}
.y22_c00371{bottom:188.160000pt;}
.y21_c00371{bottom:216.693333pt;}
.y20_c00371{bottom:245.360000pt;}
.y1f_c00371{bottom:273.626667pt;}
.y1e_c00371{bottom:307.760000pt;}
.y1d_c00371{bottom:336.560000pt;}
.y1c_c00371{bottom:366.693333pt;}
.y1b_c00371{bottom:396.560000pt;}
.y1a_c00371{bottom:426.560000pt;}
.y19_c00371{bottom:456.026667pt;}
.y18_c00371{bottom:486.026667pt;}
.y17_c00371{bottom:515.493333pt;}
.y16_c00371{bottom:545.360000pt;}
.y15_c00371{bottom:575.360000pt;}
.y14_c00371{bottom:605.093333pt;}
.y13_c00371{bottom:634.160000pt;}
.y12_c00371{bottom:664.293333pt;}
.y11_c00371{bottom:693.626667pt;}
.y10_c00371{bottom:723.360000pt;}
.yf_c00371{bottom:752.960000pt;}
.ye_c00371{bottom:782.693333pt;}
.yd_c00371{bottom:812.426667pt;}
.yc_c00371{bottom:841.760000pt;}
.yb_c00371{bottom:870.693333pt;}
.ya_c00371{bottom:899.760000pt;}
.y9_c00371{bottom:928.560000pt;}
.y8_c00371{bottom:958.160000pt;}
.y7_c00371{bottom:969.093333pt;}
.y6_c00371{bottom:987.360000pt;}
.y5_c00371{bottom:1016.960000pt;}
.y4_c00371{bottom:1046.693333pt;}
.y3_c00371{bottom:1079.093333pt;}
.y2_c00371{bottom:1106.426667pt;}
.y1_c00371{bottom:1134.560000pt;}
.h5_c00371{height:11.733399pt;}
.h6_c00371{height:38.937500pt;}
.h3_c00371{height:104.635417pt;}
.h2_c00371{height:108.041667pt;}
.h4_c00371{height:118.170573pt;}
.h0_c00371{height:1229.066667pt;}
.h1_c00371{height:1229.333333pt;}
.w2_c00371{width:93.222667pt;}
.w0_c00371{width:767.266667pt;}
.w1_c00371{width:767.333333pt;}
.x0_c00371{left:0.000000pt;}
.x9_c00371{left:31.466667pt;}
.xd_c00371{left:34.266667pt;}
.xc_c00371{left:35.200000pt;}
.x6_c00371{left:43.866667pt;}
.x3_c00371{left:45.333333pt;}
.xb_c00371{left:60.266667pt;}
.x2_c00371{left:71.200000pt;}
.x5_c00371{left:106.266667pt;}
.xa_c00371{left:144.000000pt;}
.x1_c00371{left:148.533333pt;}
.xe_c00371{left:167.200000pt;}
.x8_c00371{left:233.466667pt;}
.x4_c00371{left:234.933333pt;}
.x7_c00371{left:235.866667pt;}
.x10_c00371{left:340.801554pt;}
.xf_c00371{left:712.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c5dcc7bcacd2d5ee8820196b.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_50e9267bdb51785567647be9.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls5_c00372{letter-spacing:0.000000px;}
.ls3_c00372{letter-spacing:4.452000px;}
.ls4_c00372{letter-spacing:6.120000px;}
.ls0_c00372{letter-spacing:9.600000px;}
.ls1_c00372{letter-spacing:15.114000px;}
.ls2_c00372{letter-spacing:40.833000px;}
.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:-20.244000px;}
.ws2_c00372{word-spacing:-18.798000px;}
.ws3_c00372{word-spacing:0.000000px;}
.ws0_c00372{word-spacing:8.820000px;}
._29_c00372{margin-left:-85.248000px;}
._37_c00372{margin-left:-49.548000px;}
._42_c00372{margin-left:-41.088000px;}
._32_c00372{margin-left:-27.648000px;}
._26_c00372{margin-left:-21.696000px;}
._2a_c00372{margin-left:-19.188000px;}
._2f_c00372{margin-left:-16.536000px;}
._14_c00372{margin-left:-13.116000px;}
._15_c00372{margin-left:-11.136000px;}
._16_c00372{margin-left:-10.080000px;}
._2c_c00372{margin-left:-7.116000px;}
._13_c00372{margin-left:-5.988000px;}
._10_c00372{margin-left:-4.200000px;}
._b_c00372{margin-left:-2.424000px;}
._17_c00372{margin-left:-1.344000px;}
._a_c00372{width:1.752000px;}
._7_c00372{width:2.784000px;}
._8_c00372{width:4.512000px;}
._3_c00372{width:5.664000px;}
._1b_c00372{width:6.984000px;}
._4_c00372{width:8.352000px;}
._5_c00372{width:9.888000px;}
._0_c00372{width:11.340000px;}
._d_c00372{width:12.864000px;}
._9_c00372{width:14.496000px;}
._1_c00372{width:15.876000px;}
._e_c00372{width:17.088000px;}
._22_c00372{width:18.420000px;}
._36_c00372{width:19.800000px;}
._6_c00372{width:20.832000px;}
._1e_c00372{width:21.864000px;}
._1d_c00372{width:24.576000px;}
._12_c00372{width:25.800000px;}
._2_c00372{width:28.416000px;}
._24_c00372{width:30.012000px;}
._c_c00372{width:31.104000px;}
._23_c00372{width:32.256000px;}
._3e_c00372{width:33.816000px;}
._1c_c00372{width:35.148000px;}
._1f_c00372{width:36.168000px;}
._27_c00372{width:37.188000px;}
._2b_c00372{width:39.372000px;}
._11_c00372{width:40.416000px;}
._1a_c00372{width:41.472000px;}
._20_c00372{width:42.480000px;}
._33_c00372{width:43.608000px;}
._35_c00372{width:44.688000px;}
._f_c00372{width:45.792000px;}
._34_c00372{width:47.784000px;}
._21_c00372{width:49.620000px;}
._3f_c00372{width:51.108000px;}
._19_c00372{width:52.824000px;}
._2e_c00372{width:54.216000px;}
._31_c00372{width:55.932000px;}
._2d_c00372{width:57.828000px;}
._30_c00372{width:59.592000px;}
._18_c00372{width:60.780000px;}
._41_c00372{width:62.484000px;}
._40_c00372{width:63.804000px;}
._44_c00372{width:65.064000px;}
._28_c00372{width:66.504000px;}
._25_c00372{width:71.640000px;}
._3d_c00372{width:73.740000px;}
._43_c00372{width:107.424000px;}
._3c_c00372{width:194.220000px;}
._3a_c00372{width:211.044000px;}
._3b_c00372{width:243.948000px;}
._38_c00372{width:616.380000px;}
._45_c00372{width:795.336000px;}
._39_c00372{width:1263.168000px;}
.fc2_c00372{color:transparent;}
.fc1_c00372{color:rgb(128,128,128);}
.fc0_c00372{color:rgb(0,0,0);}
.fs5_c00372{font-size:48.000000px;}
.fs3_c00372{font-size:78.000000px;}
.fs0_c00372{font-size:84.000000px;}
.fs4_c00372{font-size:87.000000px;}
.fs1_c00372{font-size:96.000000px;}
.fs2_c00372{font-size:102.000000px;}
.y0_c00372{bottom:0.000000px;}
.y27_c00372{bottom:3.105000px;}
.y26_c00372{bottom:7.228369px;}
.y25_c00372{bottom:88.320000px;}
.y24_c00372{bottom:122.820000px;}
.y23_c00372{bottom:157.920000px;}
.y22_c00372{bottom:191.970000px;}
.y21_c00372{bottom:226.020000px;}
.y20_c00372{bottom:259.920000px;}
.y1f_c00372{bottom:293.970000px;}
.y1e_c00372{bottom:327.720000px;}
.y1d_c00372{bottom:361.170000px;}
.y1c_c00372{bottom:395.220000px;}
.y1b_c00372{bottom:428.670000px;}
.y1a_c00372{bottom:462.420000px;}
.y19_c00372{bottom:497.820000px;}
.y18_c00372{bottom:530.220000px;}
.y17_c00372{bottom:564.270000px;}
.y16_c00372{bottom:597.270000px;}
.y15_c00372{bottom:631.470000px;}
.y14_c00372{bottom:664.770000px;}
.y13_c00372{bottom:697.620000px;}
.y12_c00372{bottom:731.370000px;}
.y11_c00372{bottom:764.670000px;}
.y10_c00372{bottom:798.420000px;}
.yf_c00372{bottom:830.520000px;}
.ye_c00372{bottom:864.270000px;}
.yd_c00372{bottom:897.120000px;}
.yc_c00372{bottom:930.870000px;}
.yb_c00372{bottom:964.470000px;}
.ya_c00372{bottom:997.620000px;}
.y9_c00372{bottom:1031.370000px;}
.y8_c00372{bottom:1064.820000px;}
.y7_c00372{bottom:1097.220000px;}
.y6_c00372{bottom:1130.520000px;}
.y5_c00372{bottom:1164.270000px;}
.y4_c00372{bottom:1196.370000px;}
.y3_c00372{bottom:1230.120000px;}
.y2_c00372{bottom:1262.970000px;}
.y1_c00372{bottom:1295.970000px;}
.h4_c00372{height:13.200073px;}
.h5_c00372{height:43.804688px;}
.h2_c00372{height:98.314453px;}
.h3_c00372{height:121.546875px;}
.h0_c00372{height:1383.450000px;}
.h1_c00372{height:1383.750000px;}
.w2_c00372{width:104.875500px;}
.w0_c00372{width:878.025000px;}
.w1_c00372{width:878.250000px;}
.x0_c00372{left:0.000000px;}
.xc_c00372{left:33.750000px;}
.x9_c00372{left:35.400000px;}
.xa_c00372{left:36.450000px;}
.x8_c00372{left:37.500000px;}
.x7_c00372{left:38.550000px;}
.x6_c00372{left:40.200000px;}
.x5_c00372{left:41.250000px;}
.x4_c00372{left:45.000000px;}
.x3_c00372{left:46.200000px;}
.x2_c00372{left:47.850000px;}
.xb_c00372{left:87.750000px;}
.xd_c00372{left:283.350000px;}
.xe_c00372{left:390.826721px;}
.x1_c00372{left:526.200000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls5_c00372{letter-spacing:0.000000pt;}
.ls3_c00372{letter-spacing:3.957333pt;}
.ls4_c00372{letter-spacing:5.440000pt;}
.ls0_c00372{letter-spacing:8.533333pt;}
.ls1_c00372{letter-spacing:13.434667pt;}
.ls2_c00372{letter-spacing:36.296000pt;}
.ws1_c00372{word-spacing:-17.994667pt;}
.ws2_c00372{word-spacing:-16.709333pt;}
.ws3_c00372{word-spacing:0.000000pt;}
.ws0_c00372{word-spacing:7.840000pt;}
._29_c00372{margin-left:-75.776000pt;}
._37_c00372{margin-left:-44.042667pt;}
._42_c00372{margin-left:-36.522667pt;}
._32_c00372{margin-left:-24.576000pt;}
._26_c00372{margin-left:-19.285333pt;}
._2a_c00372{margin-left:-17.056000pt;}
._2f_c00372{margin-left:-14.698667pt;}
._14_c00372{margin-left:-11.658667pt;}
._15_c00372{margin-left:-9.898667pt;}
._16_c00372{margin-left:-8.960000pt;}
._2c_c00372{margin-left:-6.325333pt;}
._13_c00372{margin-left:-5.322667pt;}
._10_c00372{margin-left:-3.733333pt;}
._b_c00372{margin-left:-2.154667pt;}
._17_c00372{margin-left:-1.194667pt;}
._a_c00372{width:1.557333pt;}
._7_c00372{width:2.474667pt;}
._8_c00372{width:4.010667pt;}
._3_c00372{width:5.034667pt;}
._1b_c00372{width:6.208000pt;}
._4_c00372{width:7.424000pt;}
._5_c00372{width:8.789333pt;}
._0_c00372{width:10.080000pt;}
._d_c00372{width:11.434667pt;}
._9_c00372{width:12.885333pt;}
._1_c00372{width:14.112000pt;}
._e_c00372{width:15.189333pt;}
._22_c00372{width:16.373333pt;}
._36_c00372{width:17.600000pt;}
._6_c00372{width:18.517333pt;}
._1e_c00372{width:19.434667pt;}
._1d_c00372{width:21.845333pt;}
._12_c00372{width:22.933333pt;}
._2_c00372{width:25.258667pt;}
._24_c00372{width:26.677333pt;}
._c_c00372{width:27.648000pt;}
._23_c00372{width:28.672000pt;}
._3e_c00372{width:30.058667pt;}
._1c_c00372{width:31.242667pt;}
._1f_c00372{width:32.149333pt;}
._27_c00372{width:33.056000pt;}
._2b_c00372{width:34.997333pt;}
._11_c00372{width:35.925333pt;}
._1a_c00372{width:36.864000pt;}
._20_c00372{width:37.760000pt;}
._33_c00372{width:38.762667pt;}
._35_c00372{width:39.722667pt;}
._f_c00372{width:40.704000pt;}
._34_c00372{width:42.474667pt;}
._21_c00372{width:44.106667pt;}
._3f_c00372{width:45.429333pt;}
._19_c00372{width:46.954667pt;}
._2e_c00372{width:48.192000pt;}
._31_c00372{width:49.717333pt;}
._2d_c00372{width:51.402667pt;}
._30_c00372{width:52.970667pt;}
._18_c00372{width:54.026667pt;}
._41_c00372{width:55.541333pt;}
._40_c00372{width:56.714667pt;}
._44_c00372{width:57.834667pt;}
._28_c00372{width:59.114667pt;}
._25_c00372{width:63.680000pt;}
._3d_c00372{width:65.546667pt;}
._43_c00372{width:95.488000pt;}
._3c_c00372{width:172.640000pt;}
._3a_c00372{width:187.594667pt;}
._3b_c00372{width:216.842667pt;}
._38_c00372{width:547.893333pt;}
._45_c00372{width:706.965333pt;}
._39_c00372{width:1122.816000pt;}
.fs5_c00372{font-size:42.666667pt;}
.fs3_c00372{font-size:69.333333pt;}
.fs0_c00372{font-size:74.666667pt;}
.fs4_c00372{font-size:77.333333pt;}
.fs1_c00372{font-size:85.333333pt;}
.fs2_c00372{font-size:90.666667pt;}
.y0_c00372{bottom:0.000000pt;}
.y27_c00372{bottom:2.760000pt;}
.y26_c00372{bottom:6.425217pt;}
.y25_c00372{bottom:78.506667pt;}
.y24_c00372{bottom:109.173333pt;}
.y23_c00372{bottom:140.373333pt;}
.y22_c00372{bottom:170.640000pt;}
.y21_c00372{bottom:200.906667pt;}
.y20_c00372{bottom:231.040000pt;}
.y1f_c00372{bottom:261.306667pt;}
.y1e_c00372{bottom:291.306667pt;}
.y1d_c00372{bottom:321.040000pt;}
.y1c_c00372{bottom:351.306667pt;}
.y1b_c00372{bottom:381.040000pt;}
.y1a_c00372{bottom:411.040000pt;}
.y19_c00372{bottom:442.506667pt;}
.y18_c00372{bottom:471.306667pt;}
.y17_c00372{bottom:501.573333pt;}
.y16_c00372{bottom:530.906667pt;}
.y15_c00372{bottom:561.306667pt;}
.y14_c00372{bottom:590.906667pt;}
.y13_c00372{bottom:620.106667pt;}
.y12_c00372{bottom:650.106667pt;}
.y11_c00372{bottom:679.706667pt;}
.y10_c00372{bottom:709.706667pt;}
.yf_c00372{bottom:738.240000pt;}
.ye_c00372{bottom:768.240000pt;}
.yd_c00372{bottom:797.440000pt;}
.yc_c00372{bottom:827.440000pt;}
.yb_c00372{bottom:857.306667pt;}
.ya_c00372{bottom:886.773333pt;}
.y9_c00372{bottom:916.773333pt;}
.y8_c00372{bottom:946.506667pt;}
.y7_c00372{bottom:975.306667pt;}
.y6_c00372{bottom:1004.906667pt;}
.y5_c00372{bottom:1034.906667pt;}
.y4_c00372{bottom:1063.440000pt;}
.y3_c00372{bottom:1093.440000pt;}
.y2_c00372{bottom:1122.640000pt;}
.y1_c00372{bottom:1151.973333pt;}
.h4_c00372{height:11.733399pt;}
.h5_c00372{height:38.937500pt;}
.h2_c00372{height:87.390625pt;}
.h3_c00372{height:108.041667pt;}
.h0_c00372{height:1229.733333pt;}
.h1_c00372{height:1230.000000pt;}
.w2_c00372{width:93.222667pt;}
.w0_c00372{width:780.466667pt;}
.w1_c00372{width:780.666667pt;}
.x0_c00372{left:0.000000pt;}
.xc_c00372{left:30.000000pt;}
.x9_c00372{left:31.466667pt;}
.xa_c00372{left:32.400000pt;}
.x8_c00372{left:33.333333pt;}
.x7_c00372{left:34.266667pt;}
.x6_c00372{left:35.733333pt;}
.x5_c00372{left:36.666667pt;}
.x4_c00372{left:40.000000pt;}
.x3_c00372{left:41.066667pt;}
.x2_c00372{left:42.533333pt;}
.xb_c00372{left:78.000000pt;}
.xd_c00372{left:251.866667pt;}
.xe_c00372{left:347.401530pt;}
.x1_c00372{left:467.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5fb9d3311b0e0d6563f95238.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_66e5c9dc8b81e6c9f2fb5827.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_24131c5f81409c4a4a69d893.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.v2_c00373{vertical-align:4.200000px;}
.v1_c00373{vertical-align:101.400000px;}
.ls5_c00373{letter-spacing:0.000000px;}
.ls4_c00373{letter-spacing:4.320000px;}
.ls6_c00373{letter-spacing:6.000000px;}
.ls1_c00373{letter-spacing:7.200000px;}
.ls3_c00373{letter-spacing:8.652000px;}
.ls2_c00373{letter-spacing:10.500000px;}
.ls0_c00373{letter-spacing:13.800000px;}
.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;}
}
.ws6_c00373{word-spacing:-63.504000px;}
.ws0_c00373{word-spacing:-57.000000px;}
.ws3_c00373{word-spacing:-23.136000px;}
.ws5_c00373{word-spacing:-20.967000px;}
.ws7_c00373{word-spacing:0.000000px;}
.ws2_c00373{word-spacing:7.872000px;}
.ws1_c00373{word-spacing:45.432000px;}
.ws4_c00373{word-spacing:236.064000px;}
._2f_c00373{margin-left:-31.464000px;}
._21_c00373{margin-left:-29.664000px;}
._c_c00373{margin-left:-19.584000px;}
._2e_c00373{margin-left:-17.568000px;}
._0_c00373{margin-left:-13.800000px;}
._12_c00373{margin-left:-11.520000px;}
._1f_c00373{margin-left:-9.432000px;}
._5_c00373{margin-left:-8.352000px;}
._3_c00373{margin-left:-6.816000px;}
._2_c00373{margin-left:-5.760000px;}
._6_c00373{margin-left:-4.524000px;}
._1c_c00373{margin-left:-3.444000px;}
._1_c00373{margin-left:-2.304000px;}
._8_c00373{margin-left:-1.152000px;}
._4_c00373{width:1.248000px;}
._d_c00373{width:3.072000px;}
._a_c00373{width:4.320000px;}
._e_c00373{width:6.336000px;}
._17_c00373{width:7.392000px;}
._13_c00373{width:8.448000px;}
._39_c00373{width:9.600000px;}
._1d_c00373{width:10.656000px;}
._15_c00373{width:12.480000px;}
._b_c00373{width:14.592000px;}
._16_c00373{width:16.224000px;}
._2c_c00373{width:17.280000px;}
._20_c00373{width:18.528000px;}
._9_c00373{width:19.872000px;}
._10_c00373{width:21.600000px;}
._2b_c00373{width:24.480000px;}
._f_c00373{width:26.400000px;}
._14_c00373{width:27.840000px;}
._19_c00373{width:29.184000px;}
._11_c00373{width:30.240000px;}
._2d_c00373{width:31.296000px;}
._1b_c00373{width:32.832000px;}
._2a_c00373{width:34.284000px;}
._26_c00373{width:35.904000px;}
._18_c00373{width:37.920000px;}
._23_c00373{width:38.940000px;}
._7_c00373{width:40.248000px;}
._34_c00373{width:41.760000px;}
._24_c00373{width:43.008000px;}
._38_c00373{width:44.448000px;}
._25_c00373{width:45.708000px;}
._30_c00373{width:47.520000px;}
._1a_c00373{width:49.920000px;}
._35_c00373{width:51.324000px;}
._37_c00373{width:52.896000px;}
._22_c00373{width:54.048000px;}
._33_c00373{width:55.200000px;}
._3b_c00373{width:56.772000px;}
._28_c00373{width:57.888000px;}
._3c_c00373{width:61.536000px;}
._27_c00373{width:63.072000px;}
._1e_c00373{width:65.184000px;}
._32_c00373{width:69.504000px;}
._31_c00373{width:71.508000px;}
._3d_c00373{width:73.188000px;}
._3e_c00373{width:74.784000px;}
._36_c00373{width:76.224000px;}
._29_c00373{width:77.952000px;}
._3a_c00373{width:82.524000px;}
._40_c00373{width:179.232000px;}
._3f_c00373{width:819.528000px;}
._41_c00373{width:850.752000px;}
.fc2_c00373{color:transparent;}
.fc1_c00373{color:rgb(128,128,128);}
.fc0_c00373{color:rgb(0,0,0);}
.fs4_c00373{font-size:48.000000px;}
.fs3_c00373{font-size:84.000000px;}
.fs2_c00373{font-size:87.000000px;}
.fs0_c00373{font-size:96.000000px;}
.fs1_c00373{font-size:102.000000px;}
.y0_c00373{bottom:0.000000px;}
.y2b_c00373{bottom:3.105000px;}
.y2a_c00373{bottom:7.228357px;}
.y29_c00373{bottom:93.780000px;}
.y28_c00373{bottom:126.180000px;}
.y5_c00373{bottom:158.280000px;}
.y27_c00373{bottom:160.980000px;}
.y26_c00373{bottom:194.730000px;}
.y25_c00373{bottom:228.780000px;}
.y24_c00373{bottom:262.980000px;}
.y23_c00373{bottom:297.330000px;}
.y22_c00373{bottom:330.180000px;}
.y21_c00373{bottom:365.580000px;}
.y20_c00373{bottom:399.330000px;}
.y1f_c00373{bottom:433.380000px;}
.y1e_c00373{bottom:467.430000px;}
.y4_c00373{bottom:491.130000px;}
.y1d_c00373{bottom:500.880000px;}
.y1c_c00373{bottom:534.930000px;}
.y1b_c00373{bottom:568.680000px;}
.y1a_c00373{bottom:602.130000px;}
.y19_c00373{bottom:635.880000px;}
.y2_c00373{bottom:661.830000px;}
.y3_c00373{bottom:662.280000px;}
.y18_c00373{bottom:669.630000px;}
.y1_c00373{bottom:685.530000px;}
.y17_c00373{bottom:703.380000px;}
.y16_c00373{bottom:737.130000px;}
.y15_c00373{bottom:771.180000px;}
.y14_c00373{bottom:804.930000px;}
.y13_c00373{bottom:838.380000px;}
.y12_c00373{bottom:871.830000px;}
.y11_c00373{bottom:905.880000px;}
.y10_c00373{bottom:939.030000px;}
.yf_c00373{bottom:972.630000px;}
.ye_c00373{bottom:1005.180000px;}
.yd_c00373{bottom:1038.180000px;}
.yc_c00373{bottom:1071.330000px;}
.yb_c00373{bottom:1105.080000px;}
.ya_c00373{bottom:1138.830000px;}
.y9_c00373{bottom:1171.830000px;}
.y8_c00373{bottom:1204.980000px;}
.y7_c00373{bottom:1238.730000px;}
.y6_c00373{bottom:1271.730000px;}
.h4_c00373{height:13.200074px;}
.h5_c00373{height:43.804688px;}
.h2_c00373{height:121.546875px;}
.h3_c00373{height:222.946875px;}
.h0_c00373{height:1382.700000px;}
.h1_c00373{height:1383.000000px;}
.w2_c00373{width:104.875500px;}
.w0_c00373{width:863.175000px;}
.w1_c00373{width:863.250000px;}
.x0_c00373{left:0.000000px;}
.x2_c00373{left:55.350000px;}
.x4_c00373{left:73.800000px;}
.x1_c00373{left:110.400000px;}
.x3_c00373{left:129.300000px;}
.x5_c00373{left:155.850000px;}
.xe_c00373{left:256.800000px;}
.xc_c00373{left:261.150000px;}
.xb_c00373{left:264.300000px;}
.xd_c00373{left:266.400000px;}
.x9_c00373{left:267.600000px;}
.x7_c00373{left:269.100000px;}
.x8_c00373{left:270.300000px;}
.x6_c00373{left:271.350000px;}
.xa_c00373{left:275.100000px;}
.xf_c00373{left:383.401749px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.v2_c00373{vertical-align:3.733333pt;}
.v1_c00373{vertical-align:90.133333pt;}
.ls5_c00373{letter-spacing:0.000000pt;}
.ls4_c00373{letter-spacing:3.840000pt;}
.ls6_c00373{letter-spacing:5.333333pt;}
.ls1_c00373{letter-spacing:6.400000pt;}
.ls3_c00373{letter-spacing:7.690667pt;}
.ls2_c00373{letter-spacing:9.333333pt;}
.ls0_c00373{letter-spacing:12.266667pt;}
.ws6_c00373{word-spacing:-56.448000pt;}
.ws0_c00373{word-spacing:-50.666667pt;}
.ws3_c00373{word-spacing:-20.565333pt;}
.ws5_c00373{word-spacing:-18.637333pt;}
.ws7_c00373{word-spacing:0.000000pt;}
.ws2_c00373{word-spacing:6.997333pt;}
.ws1_c00373{word-spacing:40.384000pt;}
.ws4_c00373{word-spacing:209.834667pt;}
._2f_c00373{margin-left:-27.968000pt;}
._21_c00373{margin-left:-26.368000pt;}
._c_c00373{margin-left:-17.408000pt;}
._2e_c00373{margin-left:-15.616000pt;}
._0_c00373{margin-left:-12.266667pt;}
._12_c00373{margin-left:-10.240000pt;}
._1f_c00373{margin-left:-8.384000pt;}
._5_c00373{margin-left:-7.424000pt;}
._3_c00373{margin-left:-6.058667pt;}
._2_c00373{margin-left:-5.120000pt;}
._6_c00373{margin-left:-4.021333pt;}
._1c_c00373{margin-left:-3.061333pt;}
._1_c00373{margin-left:-2.048000pt;}
._8_c00373{margin-left:-1.024000pt;}
._4_c00373{width:1.109333pt;}
._d_c00373{width:2.730667pt;}
._a_c00373{width:3.840000pt;}
._e_c00373{width:5.632000pt;}
._17_c00373{width:6.570667pt;}
._13_c00373{width:7.509333pt;}
._39_c00373{width:8.533333pt;}
._1d_c00373{width:9.472000pt;}
._15_c00373{width:11.093333pt;}
._b_c00373{width:12.970667pt;}
._16_c00373{width:14.421333pt;}
._2c_c00373{width:15.360000pt;}
._20_c00373{width:16.469333pt;}
._9_c00373{width:17.664000pt;}
._10_c00373{width:19.200000pt;}
._2b_c00373{width:21.760000pt;}
._f_c00373{width:23.466667pt;}
._14_c00373{width:24.746667pt;}
._19_c00373{width:25.941333pt;}
._11_c00373{width:26.880000pt;}
._2d_c00373{width:27.818667pt;}
._1b_c00373{width:29.184000pt;}
._2a_c00373{width:30.474667pt;}
._26_c00373{width:31.914667pt;}
._18_c00373{width:33.706667pt;}
._23_c00373{width:34.613333pt;}
._7_c00373{width:35.776000pt;}
._34_c00373{width:37.120000pt;}
._24_c00373{width:38.229333pt;}
._38_c00373{width:39.509333pt;}
._25_c00373{width:40.629333pt;}
._30_c00373{width:42.240000pt;}
._1a_c00373{width:44.373333pt;}
._35_c00373{width:45.621333pt;}
._37_c00373{width:47.018667pt;}
._22_c00373{width:48.042667pt;}
._33_c00373{width:49.066667pt;}
._3b_c00373{width:50.464000pt;}
._28_c00373{width:51.456000pt;}
._3c_c00373{width:54.698667pt;}
._27_c00373{width:56.064000pt;}
._1e_c00373{width:57.941333pt;}
._32_c00373{width:61.781333pt;}
._31_c00373{width:63.562667pt;}
._3d_c00373{width:65.056000pt;}
._3e_c00373{width:66.474667pt;}
._36_c00373{width:67.754667pt;}
._29_c00373{width:69.290667pt;}
._3a_c00373{width:73.354667pt;}
._40_c00373{width:159.317333pt;}
._3f_c00373{width:728.469333pt;}
._41_c00373{width:756.224000pt;}
.fs4_c00373{font-size:42.666667pt;}
.fs3_c00373{font-size:74.666667pt;}
.fs2_c00373{font-size:77.333333pt;}
.fs0_c00373{font-size:85.333333pt;}
.fs1_c00373{font-size:90.666667pt;}
.y0_c00373{bottom:0.000000pt;}
.y2b_c00373{bottom:2.760000pt;}
.y2a_c00373{bottom:6.425206pt;}
.y29_c00373{bottom:83.360000pt;}
.y28_c00373{bottom:112.160000pt;}
.y5_c00373{bottom:140.693333pt;}
.y27_c00373{bottom:143.093333pt;}
.y26_c00373{bottom:173.093333pt;}
.y25_c00373{bottom:203.360000pt;}
.y24_c00373{bottom:233.760000pt;}
.y23_c00373{bottom:264.293333pt;}
.y22_c00373{bottom:293.493333pt;}
.y21_c00373{bottom:324.960000pt;}
.y20_c00373{bottom:354.960000pt;}
.y1f_c00373{bottom:385.226667pt;}
.y1e_c00373{bottom:415.493333pt;}
.y4_c00373{bottom:436.560000pt;}
.y1d_c00373{bottom:445.226667pt;}
.y1c_c00373{bottom:475.493333pt;}
.y1b_c00373{bottom:505.493333pt;}
.y1a_c00373{bottom:535.226667pt;}
.y19_c00373{bottom:565.226667pt;}
.y2_c00373{bottom:588.293333pt;}
.y3_c00373{bottom:588.693333pt;}
.y18_c00373{bottom:595.226667pt;}
.y1_c00373{bottom:609.360000pt;}
.y17_c00373{bottom:625.226667pt;}
.y16_c00373{bottom:655.226667pt;}
.y15_c00373{bottom:685.493333pt;}
.y14_c00373{bottom:715.493333pt;}
.y13_c00373{bottom:745.226667pt;}
.y12_c00373{bottom:774.960000pt;}
.y11_c00373{bottom:805.226667pt;}
.y10_c00373{bottom:834.693333pt;}
.yf_c00373{bottom:864.560000pt;}
.ye_c00373{bottom:893.493333pt;}
.yd_c00373{bottom:922.826667pt;}
.yc_c00373{bottom:952.293333pt;}
.yb_c00373{bottom:982.293333pt;}
.ya_c00373{bottom:1012.293333pt;}
.y9_c00373{bottom:1041.626667pt;}
.y8_c00373{bottom:1071.093333pt;}
.y7_c00373{bottom:1101.093333pt;}
.y6_c00373{bottom:1130.426667pt;}
.h4_c00373{height:11.733399pt;}
.h5_c00373{height:38.937500pt;}
.h2_c00373{height:108.041667pt;}
.h3_c00373{height:198.175000pt;}
.h0_c00373{height:1229.066667pt;}
.h1_c00373{height:1229.333333pt;}
.w2_c00373{width:93.222667pt;}
.w0_c00373{width:767.266667pt;}
.w1_c00373{width:767.333333pt;}
.x0_c00373{left:0.000000pt;}
.x2_c00373{left:49.200000pt;}
.x4_c00373{left:65.600000pt;}
.x1_c00373{left:98.133333pt;}
.x3_c00373{left:114.933333pt;}
.x5_c00373{left:138.533333pt;}
.xe_c00373{left:228.266667pt;}
.xc_c00373{left:232.133333pt;}
.xb_c00373{left:234.933333pt;}
.xd_c00373{left:236.800000pt;}
.x9_c00373{left:237.866667pt;}
.x7_c00373{left:239.200000pt;}
.x8_c00373{left:240.266667pt;}
.x6_c00373{left:241.200000pt;}
.xa_c00373{left:244.533333pt;}
.xf_c00373{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f1fa9fc9e64788cb9494141.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_2ab913a740f805045161bbf5.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls1_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:11.400000px;}
.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:-63.504000px;}
.ws1_c00374{word-spacing:-23.136000px;}
.ws2_c00374{word-spacing:0.000000px;}
._39_c00374{margin-left:-27.264000px;}
._1b_c00374{margin-left:-21.888000px;}
._1a_c00374{margin-left:-15.360000px;}
._17_c00374{margin-left:-11.808000px;}
._19_c00374{margin-left:-10.752000px;}
._25_c00374{margin-left:-9.600000px;}
._18_c00374{margin-left:-8.160000px;}
._24_c00374{margin-left:-7.104000px;}
._15_c00374{margin-left:-5.952000px;}
._30_c00374{margin-left:-4.608000px;}
._d_c00374{margin-left:-3.552000px;}
._6_c00374{margin-left:-2.016000px;}
._8_c00374{width:1.728000px;}
._10_c00374{width:2.784000px;}
._3_c00374{width:3.840000px;}
._2_c00374{width:4.992000px;}
._1_c00374{width:6.528000px;}
._b_c00374{width:7.776000px;}
._4_c00374{width:8.928000px;}
._a_c00374{width:11.040000px;}
._23_c00374{width:12.672000px;}
._22_c00374{width:14.016000px;}
._14_c00374{width:15.648000px;}
._c_c00374{width:17.088000px;}
._38_c00374{width:18.624000px;}
._5_c00374{width:19.752000px;}
._33_c00374{width:21.504000px;}
._e_c00374{width:24.192000px;}
._20_c00374{width:25.248000px;}
._16_c00374{width:26.592000px;}
._13_c00374{width:28.224000px;}
._1c_c00374{width:29.472000px;}
._f_c00374{width:30.624000px;}
._26_c00374{width:31.872000px;}
._1d_c00374{width:33.120000px;}
._1e_c00374{width:34.752000px;}
._7_c00374{width:36.288000px;}
._12_c00374{width:38.400000px;}
._35_c00374{width:39.552000px;}
._9_c00374{width:40.896000px;}
._2e_c00374{width:42.336000px;}
._2d_c00374{width:43.488000px;}
._21_c00374{width:44.832000px;}
._2a_c00374{width:46.464000px;}
._3c_c00374{width:47.904000px;}
._1f_c00374{width:49.824000px;}
._2b_c00374{width:50.880000px;}
._32_c00374{width:52.032000px;}
._37_c00374{width:53.184000px;}
._28_c00374{width:54.336000px;}
._0_c00374{width:56.064000px;}
._29_c00374{width:58.464000px;}
._34_c00374{width:62.400000px;}
._3a_c00374{width:64.704000px;}
._27_c00374{width:66.912000px;}
._11_c00374{width:68.640000px;}
._3b_c00374{width:71.712000px;}
._31_c00374{width:74.832000px;}
._2f_c00374{width:77.568000px;}
._36_c00374{width:86.688000px;}
._3d_c00374{width:101.856000px;}
._2c_c00374{width:116.832000px;}
.fc2_c00374{color:transparent;}
.fc1_c00374{color:rgb(128,128,128);}
.fc0_c00374{color:rgb(0,0,0);}
.fs3_c00374{font-size:48.000000px;}
.fs2_c00374{font-size:84.000000px;}
.fs0_c00374{font-size:96.000000px;}
.fs1_c00374{font-size:102.000000px;}
.y0_c00374{bottom:0.000000px;}
.y26_c00374{bottom:3.105000px;}
.y25_c00374{bottom:7.228371px;}
.y24_c00374{bottom:63.765000px;}
.y23_c00374{bottom:98.565000px;}
.y22_c00374{bottom:133.965000px;}
.y21_c00374{bottom:167.415000px;}
.y20_c00374{bottom:201.615000px;}
.y1f_c00374{bottom:235.215000px;}
.y1e_c00374{bottom:269.415000px;}
.y1d_c00374{bottom:303.465000px;}
.y1c_c00374{bottom:336.915000px;}
.y1b_c00374{bottom:370.365000px;}
.y1a_c00374{bottom:404.415000px;}
.y19_c00374{bottom:438.165000px;}
.y18_c00374{bottom:471.465000px;}
.y17_c00374{bottom:505.365000px;}
.y16_c00374{bottom:538.965000px;}
.y15_c00374{bottom:572.715000px;}
.y14_c00374{bottom:605.865000px;}
.y13_c00374{bottom:639.315000px;}
.y12_c00374{bottom:673.065000px;}
.y11_c00374{bottom:706.065000px;}
.y10_c00374{bottom:739.815000px;}
.yf_c00374{bottom:773.265000px;}
.ye_c00374{bottom:807.615000px;}
.yd_c00374{bottom:840.165000px;}
.yc_c00374{bottom:874.215000px;}
.yb_c00374{bottom:907.965000px;}
.ya_c00374{bottom:941.415000px;}
.y9_c00374{bottom:975.015000px;}
.y8_c00374{bottom:1008.165000px;}
.y7_c00374{bottom:1041.615000px;}
.y6_c00374{bottom:1074.615000px;}
.y5_c00374{bottom:1107.765000px;}
.y4_c00374{bottom:1140.765000px;}
.y3_c00374{bottom:1173.615000px;}
.y2_c00374{bottom:1206.915000px;}
.y1_c00374{bottom:1240.965000px;}
.h3_c00374{height:13.200074px;}
.h4_c00374{height:43.804688px;}
.h2_c00374{height:121.546875px;}
.h1_c00374{height:1349.250000px;}
.h0_c00374{height:1349.475000px;}
.w2_c00374{width:104.875500px;}
.w1_c00374{width:855.750000px;}
.w0_c00374{width:855.900000px;}
.x0_c00374{left:0.000000px;}
.xd_c00374{left:26.700000px;}
.xc_c00374{left:27.750000px;}
.xb_c00374{left:29.400000px;}
.xa_c00374{left:30.450000px;}
.x9_c00374{left:31.500000px;}
.x8_c00374{left:33.150000px;}
.x7_c00374{left:34.200000px;}
.x6_c00374{left:35.400000px;}
.x5_c00374{left:36.450000px;}
.x4_c00374{left:37.500000px;}
.x1_c00374{left:39.150000px;}
.x3_c00374{left:40.200000px;}
.x2_c00374{left:41.400000px;}
.xf_c00374{left:379.764221px;}
.xe_c00374{left:554.850000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls1_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:10.133333pt;}
.ws0_c00374{word-spacing:-56.448000pt;}
.ws1_c00374{word-spacing:-20.565333pt;}
.ws2_c00374{word-spacing:0.000000pt;}
._39_c00374{margin-left:-24.234667pt;}
._1b_c00374{margin-left:-19.456000pt;}
._1a_c00374{margin-left:-13.653333pt;}
._17_c00374{margin-left:-10.496000pt;}
._19_c00374{margin-left:-9.557333pt;}
._25_c00374{margin-left:-8.533333pt;}
._18_c00374{margin-left:-7.253333pt;}
._24_c00374{margin-left:-6.314667pt;}
._15_c00374{margin-left:-5.290667pt;}
._30_c00374{margin-left:-4.096000pt;}
._d_c00374{margin-left:-3.157333pt;}
._6_c00374{margin-left:-1.792000pt;}
._8_c00374{width:1.536000pt;}
._10_c00374{width:2.474667pt;}
._3_c00374{width:3.413333pt;}
._2_c00374{width:4.437333pt;}
._1_c00374{width:5.802667pt;}
._b_c00374{width:6.912000pt;}
._4_c00374{width:7.936000pt;}
._a_c00374{width:9.813333pt;}
._23_c00374{width:11.264000pt;}
._22_c00374{width:12.458667pt;}
._14_c00374{width:13.909333pt;}
._c_c00374{width:15.189333pt;}
._38_c00374{width:16.554667pt;}
._5_c00374{width:17.557333pt;}
._33_c00374{width:19.114667pt;}
._e_c00374{width:21.504000pt;}
._20_c00374{width:22.442667pt;}
._16_c00374{width:23.637333pt;}
._13_c00374{width:25.088000pt;}
._1c_c00374{width:26.197333pt;}
._f_c00374{width:27.221333pt;}
._26_c00374{width:28.330667pt;}
._1d_c00374{width:29.440000pt;}
._1e_c00374{width:30.890667pt;}
._7_c00374{width:32.256000pt;}
._12_c00374{width:34.133333pt;}
._35_c00374{width:35.157333pt;}
._9_c00374{width:36.352000pt;}
._2e_c00374{width:37.632000pt;}
._2d_c00374{width:38.656000pt;}
._21_c00374{width:39.850667pt;}
._2a_c00374{width:41.301333pt;}
._3c_c00374{width:42.581333pt;}
._1f_c00374{width:44.288000pt;}
._2b_c00374{width:45.226667pt;}
._32_c00374{width:46.250667pt;}
._37_c00374{width:47.274667pt;}
._28_c00374{width:48.298667pt;}
._0_c00374{width:49.834667pt;}
._29_c00374{width:51.968000pt;}
._34_c00374{width:55.466667pt;}
._3a_c00374{width:57.514667pt;}
._27_c00374{width:59.477333pt;}
._11_c00374{width:61.013333pt;}
._3b_c00374{width:63.744000pt;}
._31_c00374{width:66.517333pt;}
._2f_c00374{width:68.949333pt;}
._36_c00374{width:77.056000pt;}
._3d_c00374{width:90.538667pt;}
._2c_c00374{width:103.850667pt;}
.fs3_c00374{font-size:42.666667pt;}
.fs2_c00374{font-size:74.666667pt;}
.fs0_c00374{font-size:85.333333pt;}
.fs1_c00374{font-size:90.666667pt;}
.y0_c00374{bottom:0.000000pt;}
.y26_c00374{bottom:2.760000pt;}
.y25_c00374{bottom:6.425219pt;}
.y24_c00374{bottom:56.680000pt;}
.y23_c00374{bottom:87.613333pt;}
.y22_c00374{bottom:119.080000pt;}
.y21_c00374{bottom:148.813333pt;}
.y20_c00374{bottom:179.213333pt;}
.y1f_c00374{bottom:209.080000pt;}
.y1e_c00374{bottom:239.480000pt;}
.y1d_c00374{bottom:269.746667pt;}
.y1c_c00374{bottom:299.480000pt;}
.y1b_c00374{bottom:329.213333pt;}
.y1a_c00374{bottom:359.480000pt;}
.y19_c00374{bottom:389.480000pt;}
.y18_c00374{bottom:419.080000pt;}
.y17_c00374{bottom:449.213333pt;}
.y16_c00374{bottom:479.080000pt;}
.y15_c00374{bottom:509.080000pt;}
.y14_c00374{bottom:538.546667pt;}
.y13_c00374{bottom:568.280000pt;}
.y12_c00374{bottom:598.280000pt;}
.y11_c00374{bottom:627.613333pt;}
.y10_c00374{bottom:657.613333pt;}
.yf_c00374{bottom:687.346667pt;}
.ye_c00374{bottom:717.880000pt;}
.yd_c00374{bottom:746.813333pt;}
.yc_c00374{bottom:777.080000pt;}
.yb_c00374{bottom:807.080000pt;}
.ya_c00374{bottom:836.813333pt;}
.y9_c00374{bottom:866.680000pt;}
.y8_c00374{bottom:896.146667pt;}
.y7_c00374{bottom:925.880000pt;}
.y6_c00374{bottom:955.213333pt;}
.y5_c00374{bottom:984.680000pt;}
.y4_c00374{bottom:1014.013333pt;}
.y3_c00374{bottom:1043.213333pt;}
.y2_c00374{bottom:1072.813333pt;}
.y1_c00374{bottom:1103.080000pt;}
.h3_c00374{height:11.733399pt;}
.h4_c00374{height:38.937500pt;}
.h2_c00374{height:108.041667pt;}
.h1_c00374{height:1199.333333pt;}
.h0_c00374{height:1199.533333pt;}
.w2_c00374{width:93.222667pt;}
.w1_c00374{width:760.666667pt;}
.w0_c00374{width:760.800000pt;}
.x0_c00374{left:0.000000pt;}
.xd_c00374{left:23.733333pt;}
.xc_c00374{left:24.666667pt;}
.xb_c00374{left:26.133333pt;}
.xa_c00374{left:27.066667pt;}
.x9_c00374{left:28.000000pt;}
.x8_c00374{left:29.466667pt;}
.x7_c00374{left:30.400000pt;}
.x6_c00374{left:31.466667pt;}
.x5_c00374{left:32.400000pt;}
.x4_c00374{left:33.333333pt;}
.x1_c00374{left:34.800000pt;}
.x3_c00374{left:35.733333pt;}
.x2_c00374{left:36.800000pt;}
.xf_c00374{left:337.568197pt;}
.xe_c00374{left:493.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_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_c375bf9cb8db81f5b2f2cefe.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_6aa5621f44a60b8744a53ee1.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_04a21e0dce422a2585663b3b.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_bc9aaab3ca78dd2c6bac95e0.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;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_c00375;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.ls1_c00375{letter-spacing:6.000000px;}
.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;}
}
.ws3_c00375{word-spacing:-57.000000px;}
.ws0_c00375{word-spacing:-29.784000px;}
.ws4_c00375{word-spacing:-23.136000px;}
.ws2_c00375{word-spacing:-20.244000px;}
.ws5_c00375{word-spacing:0.000000px;}
.ws1_c00375{word-spacing:1.008000px;}
._40_c00375{margin-left:-86.688000px;}
._39_c00375{margin-left:-33.204000px;}
._2e_c00375{margin-left:-30.528000px;}
._3a_c00375{margin-left:-28.794000px;}
._31_c00375{margin-left:-26.592000px;}
._0_c00375{margin-left:-25.092000px;}
._1b_c00375{margin-left:-20.544000px;}
._1e_c00375{margin-left:-17.280000px;}
._2a_c00375{margin-left:-15.738000px;}
._1c_c00375{margin-left:-14.208000px;}
._20_c00375{margin-left:-12.000000px;}
._45_c00375{margin-left:-10.002000px;}
._22_c00375{margin-left:-8.928000px;}
._1_c00375{margin-left:-7.752000px;}
._33_c00375{margin-left:-6.432000px;}
._30_c00375{margin-left:-5.376000px;}
._2_c00375{margin-left:-3.366000px;}
._1a_c00375{margin-left:-1.632000px;}
._3_c00375{width:1.056000px;}
._4_c00375{width:2.208000px;}
._6_c00375{width:3.264000px;}
._b_c00375{width:4.416000px;}
._e_c00375{width:6.336000px;}
._d_c00375{width:7.968000px;}
._15_c00375{width:9.792000px;}
._f_c00375{width:11.232000px;}
._14_c00375{width:13.056000px;}
._1f_c00375{width:15.264000px;}
._8_c00375{width:17.376000px;}
._32_c00375{width:18.438000px;}
._18_c00375{width:19.776000px;}
._12_c00375{width:21.600000px;}
._11_c00375{width:24.288000px;}
._16_c00375{width:26.016000px;}
._9_c00375{width:28.320000px;}
._10_c00375{width:29.952000px;}
._2b_c00375{width:31.872000px;}
._24_c00375{width:33.540000px;}
._c_c00375{width:34.560000px;}
._a_c00375{width:36.192000px;}
._29_c00375{width:37.248000px;}
._19_c00375{width:38.784000px;}
._26_c00375{width:40.320000px;}
._36_c00375{width:41.376000px;}
._13_c00375{width:43.392000px;}
._2f_c00375{width:45.120000px;}
._3f_c00375{width:46.176000px;}
._17_c00375{width:47.328000px;}
._44_c00375{width:49.536000px;}
._37_c00375{width:51.168000px;}
._35_c00375{width:52.182000px;}
._2d_c00375{width:54.432000px;}
._28_c00375{width:56.544000px;}
._2c_c00375{width:57.888000px;}
._1d_c00375{width:64.992000px;}
._5_c00375{width:68.736000px;}
._3c_c00375{width:77.472000px;}
._34_c00375{width:79.968000px;}
._7_c00375{width:133.920000px;}
._3d_c00375{width:157.716000px;}
._27_c00375{width:185.424000px;}
._42_c00375{width:255.264000px;}
._3b_c00375{width:272.568000px;}
._41_c00375{width:350.688000px;}
._3e_c00375{width:360.288000px;}
._43_c00375{width:422.784000px;}
._21_c00375{width:518.976000px;}
._38_c00375{width:571.488000px;}
._23_c00375{width:597.888000px;}
._25_c00375{width:654.912000px;}
._46_c00375{width:1676.736000px;}
.fc2_c00375{color:transparent;}
.fc1_c00375{color:rgb(128,128,128);}
.fc0_c00375{color:rgb(0,0,0);}
.fs3_c00375{font-size:48.000000px;}
.fs2_c00375{font-size:84.000000px;}
.fs1_c00375{font-size:96.000000px;}
.fs0_c00375{font-size:102.000000px;}
.y0_c00375{bottom:0.000000px;}
.y27_c00375{bottom:3.105000px;}
.y26_c00375{bottom:7.228357px;}
.y25_c00375{bottom:92.580000px;}
.y24_c00375{bottom:122.880000px;}
.y23_c00375{bottom:157.230000px;}
.y22_c00375{bottom:190.680000px;}
.y21_c00375{bottom:224.430000px;}
.y20_c00375{bottom:259.230000px;}
.y1f_c00375{bottom:293.280000px;}
.y1e_c00375{bottom:327.030000px;}
.y1d_c00375{bottom:360.480000px;}
.y1c_c00375{bottom:394.980000px;}
.y1b_c00375{bottom:429.330000px;}
.y1a_c00375{bottom:462.780000px;}
.y19_c00375{bottom:496.530000px;}
.y18_c00375{bottom:530.280000px;}
.y17_c00375{bottom:564.330000px;}
.y16_c00375{bottom:597.780000px;}
.y15_c00375{bottom:631.530000px;}
.y14_c00375{bottom:664.980000px;}
.y1_c00375{bottom:674.730000px;}
.y13_c00375{bottom:699.930000px;}
.y12_c00375{bottom:732.480000px;}
.y11_c00375{bottom:765.780000px;}
.y10_c00375{bottom:799.530000px;}
.yf_c00375{bottom:833.280000px;}
.ye_c00375{bottom:866.730000px;}
.yd_c00375{bottom:899.880000px;}
.yc_c00375{bottom:933.480000px;}
.yb_c00375{bottom:967.230000px;}
.ya_c00375{bottom:999.780000px;}
.y9_c00375{bottom:1032.480000px;}
.y8_c00375{bottom:1065.780000px;}
.y7_c00375{bottom:1098.930000px;}
.y6_c00375{bottom:1132.680000px;}
.y5_c00375{bottom:1165.830000px;}
.y4_c00375{bottom:1199.580000px;}
.y3_c00375{bottom:1232.880000px;}
.y2_c00375{bottom:1266.030000px;}
.h4_c00375{height:13.200074px;}
.h5_c00375{height:43.804688px;}
.h2_c00375{height:110.568000px;}
.h3_c00375{height:121.546875px;}
.h0_c00375{height:1382.700000px;}
.h1_c00375{height:1383.000000px;}
.w2_c00375{width:104.875500px;}
.w0_c00375{width:863.175000px;}
.w1_c00375{width:863.250000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:25.200000px;}
.x6_c00375{left:55.950000px;}
.x5_c00375{left:92.100000px;}
.x9_c00375{left:94.200000px;}
.xa_c00375{left:154.500000px;}
.x3_c00375{left:246.450000px;}
.x2_c00375{left:247.650000px;}
.xc_c00375{left:248.700000px;}
.x7_c00375{left:249.750000px;}
.x8_c00375{left:250.800000px;}
.x4_c00375{left:297.300000px;}
.xe_c00375{left:383.401749px;}
.xb_c00375{left:395.100000px;}
.xd_c00375{left:790.200000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ls1_c00375{letter-spacing:5.333333pt;}
.ws3_c00375{word-spacing:-50.666667pt;}
.ws0_c00375{word-spacing:-26.474667pt;}
.ws4_c00375{word-spacing:-20.565333pt;}
.ws2_c00375{word-spacing:-17.994667pt;}
.ws5_c00375{word-spacing:0.000000pt;}
.ws1_c00375{word-spacing:0.896000pt;}
._40_c00375{margin-left:-77.056000pt;}
._39_c00375{margin-left:-29.514667pt;}
._2e_c00375{margin-left:-27.136000pt;}
._3a_c00375{margin-left:-25.594667pt;}
._31_c00375{margin-left:-23.637333pt;}
._0_c00375{margin-left:-22.304000pt;}
._1b_c00375{margin-left:-18.261333pt;}
._1e_c00375{margin-left:-15.360000pt;}
._2a_c00375{margin-left:-13.989333pt;}
._1c_c00375{margin-left:-12.629333pt;}
._20_c00375{margin-left:-10.666667pt;}
._45_c00375{margin-left:-8.890667pt;}
._22_c00375{margin-left:-7.936000pt;}
._1_c00375{margin-left:-6.890667pt;}
._33_c00375{margin-left:-5.717333pt;}
._30_c00375{margin-left:-4.778667pt;}
._2_c00375{margin-left:-2.992000pt;}
._1a_c00375{margin-left:-1.450667pt;}
._3_c00375{width:0.938667pt;}
._4_c00375{width:1.962667pt;}
._6_c00375{width:2.901333pt;}
._b_c00375{width:3.925333pt;}
._e_c00375{width:5.632000pt;}
._d_c00375{width:7.082667pt;}
._15_c00375{width:8.704000pt;}
._f_c00375{width:9.984000pt;}
._14_c00375{width:11.605333pt;}
._1f_c00375{width:13.568000pt;}
._8_c00375{width:15.445333pt;}
._32_c00375{width:16.389333pt;}
._18_c00375{width:17.578667pt;}
._12_c00375{width:19.200000pt;}
._11_c00375{width:21.589333pt;}
._16_c00375{width:23.125333pt;}
._9_c00375{width:25.173333pt;}
._10_c00375{width:26.624000pt;}
._2b_c00375{width:28.330667pt;}
._24_c00375{width:29.813333pt;}
._c_c00375{width:30.720000pt;}
._a_c00375{width:32.170667pt;}
._29_c00375{width:33.109333pt;}
._19_c00375{width:34.474667pt;}
._26_c00375{width:35.840000pt;}
._36_c00375{width:36.778667pt;}
._13_c00375{width:38.570667pt;}
._2f_c00375{width:40.106667pt;}
._3f_c00375{width:41.045333pt;}
._17_c00375{width:42.069333pt;}
._44_c00375{width:44.032000pt;}
._37_c00375{width:45.482667pt;}
._35_c00375{width:46.384000pt;}
._2d_c00375{width:48.384000pt;}
._28_c00375{width:50.261333pt;}
._2c_c00375{width:51.456000pt;}
._1d_c00375{width:57.770667pt;}
._5_c00375{width:61.098667pt;}
._3c_c00375{width:68.864000pt;}
._34_c00375{width:71.082667pt;}
._7_c00375{width:119.040000pt;}
._3d_c00375{width:140.192000pt;}
._27_c00375{width:164.821333pt;}
._42_c00375{width:226.901333pt;}
._3b_c00375{width:242.282667pt;}
._41_c00375{width:311.722667pt;}
._3e_c00375{width:320.256000pt;}
._43_c00375{width:375.808000pt;}
._21_c00375{width:461.312000pt;}
._38_c00375{width:507.989333pt;}
._23_c00375{width:531.456000pt;}
._25_c00375{width:582.144000pt;}
._46_c00375{width:1490.432000pt;}
.fs3_c00375{font-size:42.666667pt;}
.fs2_c00375{font-size:74.666667pt;}
.fs1_c00375{font-size:85.333333pt;}
.fs0_c00375{font-size:90.666667pt;}
.y0_c00375{bottom:0.000000pt;}
.y27_c00375{bottom:2.760000pt;}
.y26_c00375{bottom:6.425206pt;}
.y25_c00375{bottom:82.293333pt;}
.y24_c00375{bottom:109.226667pt;}
.y23_c00375{bottom:139.760000pt;}
.y22_c00375{bottom:169.493333pt;}
.y21_c00375{bottom:199.493333pt;}
.y20_c00375{bottom:230.426667pt;}
.y1f_c00375{bottom:260.693333pt;}
.y1e_c00375{bottom:290.693333pt;}
.y1d_c00375{bottom:320.426667pt;}
.y1c_c00375{bottom:351.093333pt;}
.y1b_c00375{bottom:381.626667pt;}
.y1a_c00375{bottom:411.360000pt;}
.y19_c00375{bottom:441.360000pt;}
.y18_c00375{bottom:471.360000pt;}
.y17_c00375{bottom:501.626667pt;}
.y16_c00375{bottom:531.360000pt;}
.y15_c00375{bottom:561.360000pt;}
.y14_c00375{bottom:591.093333pt;}
.y1_c00375{bottom:599.760000pt;}
.y13_c00375{bottom:622.160000pt;}
.y12_c00375{bottom:651.093333pt;}
.y11_c00375{bottom:680.693333pt;}
.y10_c00375{bottom:710.693333pt;}
.yf_c00375{bottom:740.693333pt;}
.ye_c00375{bottom:770.426667pt;}
.yd_c00375{bottom:799.893333pt;}
.yc_c00375{bottom:829.760000pt;}
.yb_c00375{bottom:859.760000pt;}
.ya_c00375{bottom:888.693333pt;}
.y9_c00375{bottom:917.760000pt;}
.y8_c00375{bottom:947.360000pt;}
.y7_c00375{bottom:976.826667pt;}
.y6_c00375{bottom:1006.826667pt;}
.y5_c00375{bottom:1036.293333pt;}
.y4_c00375{bottom:1066.293333pt;}
.y3_c00375{bottom:1095.893333pt;}
.y2_c00375{bottom:1125.360000pt;}
.h4_c00375{height:11.733399pt;}
.h5_c00375{height:38.937500pt;}
.h2_c00375{height:98.282667pt;}
.h3_c00375{height:108.041667pt;}
.h0_c00375{height:1229.066667pt;}
.h1_c00375{height:1229.333333pt;}
.w2_c00375{width:93.222667pt;}
.w0_c00375{width:767.266667pt;}
.w1_c00375{width:767.333333pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:22.400000pt;}
.x6_c00375{left:49.733333pt;}
.x5_c00375{left:81.866667pt;}
.x9_c00375{left:83.733333pt;}
.xa_c00375{left:137.333333pt;}
.x3_c00375{left:219.066667pt;}
.x2_c00375{left:220.133333pt;}
.xc_c00375{left:221.066667pt;}
.x7_c00375{left:222.000000pt;}
.x8_c00375{left:222.933333pt;}
.x4_c00375{left:264.266667pt;}
.xe_c00375{left:340.801554pt;}
.xb_c00375{left:351.200000pt;}
.xd_c00375{left:702.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_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_9c00c6f98ee5f22c62420053.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_787c1e51bc52a28546d5a796.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_8c87266b1bf6431181506df0.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_5ec20ed137131fb7d92e1f81.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00376;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00376;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00376{font-family:ff6_c00376;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls6_c00376{letter-spacing:-6.000000px;}
.ls5_c00376{letter-spacing:0.000000px;}
.ls3_c00376{letter-spacing:0.300000px;}
.ls0_c00376{letter-spacing:1.800000px;}
.ls2_c00376{letter-spacing:2.388000px;}
.ls4_c00376{letter-spacing:9.000000px;}
.ls1_c00376{letter-spacing:15.300000px;}
.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;}
}
.ws0_c00376{word-spacing:-41.967000px;}
.ws1_c00376{word-spacing:-24.582000px;}
.ws2_c00376{word-spacing:-14.967000px;}
.ws3_c00376{word-spacing:-14.460000px;}
.ws4_c00376{word-spacing:0.000000px;}
._45_c00376{margin-left:-78.891000px;}
._41_c00376{margin-left:-41.568000px;}
._44_c00376{margin-left:-32.352000px;}
._11_c00376{margin-left:-29.280000px;}
._3e_c00376{margin-left:-27.825000px;}
._33_c00376{margin-left:-24.759000px;}
._48_c00376{margin-left:-22.509000px;}
._4a_c00376{margin-left:-21.438000px;}
._21_c00376{margin-left:-18.345000px;}
._3d_c00376{margin-left:-16.047000px;}
._f_c00376{margin-left:-13.920000px;}
._47_c00376{margin-left:-12.702000px;}
._18_c00376{margin-left:-11.160000px;}
._34_c00376{margin-left:-9.519000px;}
._d_c00376{margin-left:-8.352000px;}
._2a_c00376{margin-left:-7.308000px;}
._31_c00376{margin-left:-6.228000px;}
._1f_c00376{margin-left:-5.010000px;}
._29_c00376{margin-left:-3.867000px;}
._8_c00376{margin-left:-1.848000px;}
._2_c00376{width:1.824000px;}
._5_c00376{width:3.495000px;}
._0_c00376{width:4.851000px;}
._1_c00376{width:6.534000px;}
._13_c00376{width:7.698000px;}
._b_c00376{width:8.781000px;}
._2d_c00376{width:10.500000px;}
._1d_c00376{width:11.616000px;}
._16_c00376{width:12.759000px;}
._1b_c00376{width:13.920000px;}
._38_c00376{width:15.144000px;}
._2e_c00376{width:16.314000px;}
._26_c00376{width:17.568000px;}
._20_c00376{width:18.603000px;}
._3b_c00376{width:19.677000px;}
._3_c00376{width:20.928000px;}
._3a_c00376{width:24.168000px;}
._14_c00376{width:25.191000px;}
._39_c00376{width:26.358000px;}
._a_c00376{width:28.395000px;}
._15_c00376{width:29.853000px;}
._4_c00376{width:31.680000px;}
._7_c00376{width:34.368000px;}
._19_c00376{width:36.288000px;}
._2f_c00376{width:38.334000px;}
._9_c00376{width:39.633000px;}
._32_c00376{width:40.806000px;}
._1c_c00376{width:41.952000px;}
._6_c00376{width:43.377000px;}
._3c_c00376{width:44.454000px;}
._1a_c00376{width:45.720000px;}
._12_c00376{width:46.734000px;}
._2c_c00376{width:48.627000px;}
._22_c00376{width:50.406000px;}
._17_c00376{width:51.744000px;}
._24_c00376{width:52.890000px;}
._23_c00376{width:54.465000px;}
._27_c00376{width:55.764000px;}
._30_c00376{width:60.780000px;}
._1e_c00376{width:62.349000px;}
._37_c00376{width:64.356000px;}
._49_c00376{width:65.694000px;}
._e_c00376{width:68.736000px;}
._36_c00376{width:75.072000px;}
._2b_c00376{width:79.128000px;}
._10_c00376{width:88.128000px;}
._c_c00376{width:97.368000px;}
._46_c00376{width:121.539000px;}
._43_c00376{width:123.018000px;}
._42_c00376{width:252.576000px;}
._35_c00376{width:297.750000px;}
._25_c00376{width:353.208000px;}
._28_c00376{width:454.017000px;}
._40_c00376{width:717.054000px;}
._3f_c00376{width:1007.832000px;}
.fc2_c00376{color:transparent;}
.fc1_c00376{color:rgb(128,128,128);}
.fc0_c00376{color:rgb(0,0,0);}
.fs6_c00376{font-size:30.000000px;}
.fs8_c00376{font-size:48.000000px;}
.fs7_c00376{font-size:60.000000px;}
.fs4_c00376{font-size:84.000000px;}
.fs5_c00376{font-size:87.000000px;}
.fs1_c00376{font-size:96.000000px;}
.fs0_c00376{font-size:99.000000px;}
.fs2_c00376{font-size:102.000000px;}
.fs3_c00376{font-size:114.000000px;}
.y0_c00376{bottom:0.000000px;}
.y2c_c00376{bottom:3.105000px;}
.y2b_c00376{bottom:7.228355px;}
.y24_c00376{bottom:106.185000px;}
.y23_c00376{bottom:140.685000px;}
.y22_c00376{bottom:175.185000px;}
.y21_c00376{bottom:209.535000px;}
.y20_c00376{bottom:242.985000px;}
.y1f_c00376{bottom:276.735000px;}
.y1e_c00376{bottom:310.185000px;}
.y1d_c00376{bottom:343.785000px;}
.y1c_c00376{bottom:377.985000px;}
.y1b_c00376{bottom:410.985000px;}
.y1a_c00376{bottom:444.435000px;}
.y19_c00376{bottom:478.485000px;}
.y18_c00376{bottom:511.335000px;}
.y17_c00376{bottom:544.635000px;}
.y2a_c00376{bottom:564.285000px;}
.y16_c00376{bottom:578.835000px;}
.y29_c00376{bottom:595.635000px;}
.y28_c00376{bottom:605.835000px;}
.y15_c00376{bottom:611.835000px;}
.y27_c00376{bottom:624.285000px;}
.y14_c00376{bottom:644.835000px;}
.y26_c00376{bottom:656.685000px;}
.y13_c00376{bottom:678.285000px;}
.y25_c00376{bottom:684.735000px;}
.y12_c00376{bottom:711.435000px;}
.y11_c00376{bottom:745.185000px;}
.y10_c00376{bottom:778.935000px;}
.yf_c00376{bottom:812.385000px;}
.ye_c00376{bottom:845.085000px;}
.yd_c00376{bottom:878.835000px;}
.yc_c00376{bottom:912.135000px;}
.yb_c00376{bottom:945.585000px;}
.ya_c00376{bottom:978.435000px;}
.y9_c00376{bottom:1012.185000px;}
.y8_c00376{bottom:1045.935000px;}
.y7_c00376{bottom:1076.835000px;}
.y6_c00376{bottom:1111.635000px;}
.y5_c00376{bottom:1143.735000px;}
.y4_c00376{bottom:1177.185000px;}
.y3_c00376{bottom:1209.885000px;}
.y2_c00376{bottom:1243.635000px;}
.y1_c00376{bottom:1275.435000px;}
.h9_c00376{height:13.200074px;}
.ha_c00376{height:43.804688px;}
.h8_c00376{height:75.966797px;}
.h7_c00376{height:98.314453px;}
.h2_c00376{height:103.752000px;}
.h6_c00376{height:110.151855px;}
.h4_c00376{height:121.546875px;}
.h5_c00376{height:125.345215px;}
.h3_c00376{height:129.143555px;}
.h1_c00376{height:1353.000000px;}
.h0_c00376{height:1353.225000px;}
.w2_c00376{width:104.875500px;}
.w0_c00376{width:858.600000px;}
.w1_c00376{width:858.750000px;}
.x0_c00376{left:0.000000px;}
.x9_c00376{left:15.900000px;}
.x8_c00376{left:19.200000px;}
.x7_c00376{left:20.850000px;}
.x4_c00376{left:21.900000px;}
.x5_c00376{left:22.950000px;}
.x6_c00376{left:24.000000px;}
.x3_c00376{left:25.050000px;}
.x2_c00376{left:26.700000px;}
.xa_c00376{left:30.600000px;}
.x11_c00376{left:381.114258px;}
.x1_c00376{left:511.650000px;}
.xe_c00376{left:623.700000px;}
.xb_c00376{left:667.200000px;}
.xc_c00376{left:678.750000px;}
.xf_c00376{left:684.750000px;}
.xd_c00376{left:697.200000px;}
.x10_c00376{left:736.200000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls6_c00376{letter-spacing:-5.333333pt;}
.ls5_c00376{letter-spacing:0.000000pt;}
.ls3_c00376{letter-spacing:0.266667pt;}
.ls0_c00376{letter-spacing:1.600000pt;}
.ls2_c00376{letter-spacing:2.122667pt;}
.ls4_c00376{letter-spacing:8.000000pt;}
.ls1_c00376{letter-spacing:13.600000pt;}
.ws0_c00376{word-spacing:-37.304000pt;}
.ws1_c00376{word-spacing:-21.850667pt;}
.ws2_c00376{word-spacing:-13.304000pt;}
.ws3_c00376{word-spacing:-12.853333pt;}
.ws4_c00376{word-spacing:0.000000pt;}
._45_c00376{margin-left:-70.125333pt;}
._41_c00376{margin-left:-36.949333pt;}
._44_c00376{margin-left:-28.757333pt;}
._11_c00376{margin-left:-26.026667pt;}
._3e_c00376{margin-left:-24.733333pt;}
._33_c00376{margin-left:-22.008000pt;}
._48_c00376{margin-left:-20.008000pt;}
._4a_c00376{margin-left:-19.056000pt;}
._21_c00376{margin-left:-16.306667pt;}
._3d_c00376{margin-left:-14.264000pt;}
._f_c00376{margin-left:-12.373333pt;}
._47_c00376{margin-left:-11.290667pt;}
._18_c00376{margin-left:-9.920000pt;}
._34_c00376{margin-left:-8.461333pt;}
._d_c00376{margin-left:-7.424000pt;}
._2a_c00376{margin-left:-6.496000pt;}
._31_c00376{margin-left:-5.536000pt;}
._1f_c00376{margin-left:-4.453333pt;}
._29_c00376{margin-left:-3.437333pt;}
._8_c00376{margin-left:-1.642667pt;}
._2_c00376{width:1.621333pt;}
._5_c00376{width:3.106667pt;}
._0_c00376{width:4.312000pt;}
._1_c00376{width:5.808000pt;}
._13_c00376{width:6.842667pt;}
._b_c00376{width:7.805333pt;}
._2d_c00376{width:9.333333pt;}
._1d_c00376{width:10.325333pt;}
._16_c00376{width:11.341333pt;}
._1b_c00376{width:12.373333pt;}
._38_c00376{width:13.461333pt;}
._2e_c00376{width:14.501333pt;}
._26_c00376{width:15.616000pt;}
._20_c00376{width:16.536000pt;}
._3b_c00376{width:17.490667pt;}
._3_c00376{width:18.602667pt;}
._3a_c00376{width:21.482667pt;}
._14_c00376{width:22.392000pt;}
._39_c00376{width:23.429333pt;}
._a_c00376{width:25.240000pt;}
._15_c00376{width:26.536000pt;}
._4_c00376{width:28.160000pt;}
._7_c00376{width:30.549333pt;}
._19_c00376{width:32.256000pt;}
._2f_c00376{width:34.074667pt;}
._9_c00376{width:35.229333pt;}
._32_c00376{width:36.272000pt;}
._1c_c00376{width:37.290667pt;}
._6_c00376{width:38.557333pt;}
._3c_c00376{width:39.514667pt;}
._1a_c00376{width:40.640000pt;}
._12_c00376{width:41.541333pt;}
._2c_c00376{width:43.224000pt;}
._22_c00376{width:44.805333pt;}
._17_c00376{width:45.994667pt;}
._24_c00376{width:47.013333pt;}
._23_c00376{width:48.413333pt;}
._27_c00376{width:49.568000pt;}
._30_c00376{width:54.026667pt;}
._1e_c00376{width:55.421333pt;}
._37_c00376{width:57.205333pt;}
._49_c00376{width:58.394667pt;}
._e_c00376{width:61.098667pt;}
._36_c00376{width:66.730667pt;}
._2b_c00376{width:70.336000pt;}
._10_c00376{width:78.336000pt;}
._c_c00376{width:86.549333pt;}
._46_c00376{width:108.034667pt;}
._43_c00376{width:109.349333pt;}
._42_c00376{width:224.512000pt;}
._35_c00376{width:264.666667pt;}
._25_c00376{width:313.962667pt;}
._28_c00376{width:403.570667pt;}
._40_c00376{width:637.381333pt;}
._3f_c00376{width:895.850667pt;}
.fs6_c00376{font-size:26.666667pt;}
.fs8_c00376{font-size:42.666667pt;}
.fs7_c00376{font-size:53.333333pt;}
.fs4_c00376{font-size:74.666667pt;}
.fs5_c00376{font-size:77.333333pt;}
.fs1_c00376{font-size:85.333333pt;}
.fs0_c00376{font-size:88.000000pt;}
.fs2_c00376{font-size:90.666667pt;}
.fs3_c00376{font-size:101.333333pt;}
.y0_c00376{bottom:0.000000pt;}
.y2c_c00376{bottom:2.760000pt;}
.y2b_c00376{bottom:6.425204pt;}
.y24_c00376{bottom:94.386667pt;}
.y23_c00376{bottom:125.053333pt;}
.y22_c00376{bottom:155.720000pt;}
.y21_c00376{bottom:186.253333pt;}
.y20_c00376{bottom:215.986667pt;}
.y1f_c00376{bottom:245.986667pt;}
.y1e_c00376{bottom:275.720000pt;}
.y1d_c00376{bottom:305.586667pt;}
.y1c_c00376{bottom:335.986667pt;}
.y1b_c00376{bottom:365.320000pt;}
.y1a_c00376{bottom:395.053333pt;}
.y19_c00376{bottom:425.320000pt;}
.y18_c00376{bottom:454.520000pt;}
.y17_c00376{bottom:484.120000pt;}
.y2a_c00376{bottom:501.586667pt;}
.y16_c00376{bottom:514.520000pt;}
.y29_c00376{bottom:529.453333pt;}
.y28_c00376{bottom:538.520000pt;}
.y15_c00376{bottom:543.853333pt;}
.y27_c00376{bottom:554.920000pt;}
.y14_c00376{bottom:573.186667pt;}
.y26_c00376{bottom:583.720000pt;}
.y13_c00376{bottom:602.920000pt;}
.y25_c00376{bottom:608.653333pt;}
.y12_c00376{bottom:632.386667pt;}
.y11_c00376{bottom:662.386667pt;}
.y10_c00376{bottom:692.386667pt;}
.yf_c00376{bottom:722.120000pt;}
.ye_c00376{bottom:751.186667pt;}
.yd_c00376{bottom:781.186667pt;}
.yc_c00376{bottom:810.786667pt;}
.yb_c00376{bottom:840.520000pt;}
.ya_c00376{bottom:869.720000pt;}
.y9_c00376{bottom:899.720000pt;}
.y8_c00376{bottom:929.720000pt;}
.y7_c00376{bottom:957.186667pt;}
.y6_c00376{bottom:988.120000pt;}
.y5_c00376{bottom:1016.653333pt;}
.y4_c00376{bottom:1046.386667pt;}
.y3_c00376{bottom:1075.453333pt;}
.y2_c00376{bottom:1105.453333pt;}
.y1_c00376{bottom:1133.720000pt;}
.h9_c00376{height:11.733399pt;}
.ha_c00376{height:38.937500pt;}
.h8_c00376{height:67.526042pt;}
.h7_c00376{height:87.390625pt;}
.h2_c00376{height:92.224000pt;}
.h6_c00376{height:97.912760pt;}
.h4_c00376{height:108.041667pt;}
.h5_c00376{height:111.417969pt;}
.h3_c00376{height:114.794271pt;}
.h1_c00376{height:1202.666667pt;}
.h0_c00376{height:1202.866667pt;}
.w2_c00376{width:93.222667pt;}
.w0_c00376{width:763.200000pt;}
.w1_c00376{width:763.333333pt;}
.x0_c00376{left:0.000000pt;}
.x9_c00376{left:14.133333pt;}
.x8_c00376{left:17.066667pt;}
.x7_c00376{left:18.533333pt;}
.x4_c00376{left:19.466667pt;}
.x5_c00376{left:20.400000pt;}
.x6_c00376{left:21.333333pt;}
.x3_c00376{left:22.266667pt;}
.x2_c00376{left:23.733333pt;}
.xa_c00376{left:27.200000pt;}
.x11_c00376{left:338.768229pt;}
.x1_c00376{left:454.800000pt;}
.xe_c00376{left:554.400000pt;}
.xb_c00376{left:593.066667pt;}
.xc_c00376{left:603.333333pt;}
.xf_c00376{left:608.666667pt;}
.xd_c00376{left:619.733333pt;}
.x10_c00376{left:654.400000pt;}
}





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

.ir_c00377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_337d4524ded884d819b71de2.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_568ee3dd0a8f95b6ad5ac9bd.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_f7e6c85586c7f4f5911aab8b.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_6fd696c9b88490a83ca0e84a.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_7353c6af8b5aa0355503bb79.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00377;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00377{font-family:ff6_c00377;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.lsb_c00377{letter-spacing:-15.000000px;}
.lsc_c00377{letter-spacing:-9.000000px;}
.lsa_c00377{letter-spacing:0.000000px;}
.ls7_c00377{letter-spacing:3.000000px;}
.ls6_c00377{letter-spacing:5.964000px;}
.ls9_c00377{letter-spacing:6.000000px;}
.ls8_c00377{letter-spacing:10.920000px;}
.ls3_c00377{letter-spacing:19.248000px;}
.ls2_c00377{letter-spacing:24.387000px;}
.ls0_c00377{letter-spacing:31.968000px;}
.ls1_c00377{letter-spacing:45.618000px;}
.ls4_c00377{letter-spacing:70.833000px;}
.ls5_c00377{letter-spacing:226.233000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00377{word-spacing:-48.831000px;}
.ws1_c00377{word-spacing:-22.413000px;}
.ws4_c00377{word-spacing:-20.244000px;}
.ws0_c00377{word-spacing:-5.112000px;}
.ws5_c00377{word-spacing:0.000000px;}
.ws3_c00377{word-spacing:19.185000px;}
._36_c00377{margin-left:-31.200000px;}
._1b_c00377{margin-left:-29.277000px;}
._45_c00377{margin-left:-27.633000px;}
._1e_c00377{margin-left:-26.133000px;}
._1_c00377{margin-left:-22.950000px;}
._29_c00377{margin-left:-21.873000px;}
._41_c00377{margin-left:-20.484000px;}
._3b_c00377{margin-left:-17.952000px;}
._46_c00377{margin-left:-16.860000px;}
._3c_c00377{margin-left:-15.516000px;}
._25_c00377{margin-left:-14.157000px;}
._2b_c00377{margin-left:-12.555000px;}
._2a_c00377{margin-left:-11.076000px;}
._43_c00377{margin-left:-9.792000px;}
._26_c00377{margin-left:-8.742000px;}
._2f_c00377{margin-left:-6.687000px;}
._27_c00377{margin-left:-5.673000px;}
._13_c00377{margin-left:-4.590000px;}
._14_c00377{margin-left:-2.856000px;}
._22_c00377{margin-left:-1.692000px;}
._d_c00377{width:1.581000px;}
._b_c00377{width:2.802000px;}
._7_c00377{width:3.819000px;}
._a_c00377{width:5.103000px;}
._9_c00377{width:6.324000px;}
._15_c00377{width:7.902000px;}
._4_c00377{width:9.576000px;}
._1a_c00377{width:11.040000px;}
._6_c00377{width:12.648000px;}
._3_c00377{width:14.616000px;}
._31_c00377{width:16.296000px;}
._2d_c00377{width:17.376000px;}
._20_c00377{width:18.423000px;}
._21_c00377{width:19.596000px;}
._5_c00377{width:21.000000px;}
._3a_c00377{width:22.374000px;}
._e_c00377{width:24.075000px;}
._39_c00377{width:25.803000px;}
._1f_c00377{width:27.156000px;}
._16_c00377{width:29.208000px;}
._17_c00377{width:30.981000px;}
._2e_c00377{width:32.394000px;}
._18_c00377{width:33.741000px;}
._24_c00377{width:34.968000px;}
._19_c00377{width:36.735000px;}
._c_c00377{width:39.339000px;}
._11_c00377{width:40.827000px;}
._2c_c00377{width:42.066000px;}
._1d_c00377{width:43.836000px;}
._8_c00377{width:45.663000px;}
._23_c00377{width:47.595000px;}
._33_c00377{width:49.551000px;}
._10_c00377{width:50.964000px;}
._42_c00377{width:51.999000px;}
._f_c00377{width:53.475000px;}
._3d_c00377{width:55.812000px;}
._32_c00377{width:58.809000px;}
._1c_c00377{width:60.810000px;}
._12_c00377{width:63.603000px;}
._30_c00377{width:65.184000px;}
._28_c00377{width:70.035000px;}
._37_c00377{width:71.058000px;}
._40_c00377{width:75.504000px;}
._44_c00377{width:81.681000px;}
._2_c00377{width:102.030000px;}
._3e_c00377{width:121.392000px;}
._3f_c00377{width:165.372000px;}
._35_c00377{width:177.039000px;}
._0_c00377{width:286.212000px;}
._38_c00377{width:793.440000px;}
._34_c00377{width:811.551000px;}
.fc2_c00377{color:transparent;}
.fc1_c00377{color:rgb(128,128,128);}
.fc0_c00377{color:rgb(0,0,0);}
.fs9_c00377{font-size:48.000000px;}
.fs0_c00377{font-size:72.000000px;}
.fs7_c00377{font-size:78.000000px;}
.fs6_c00377{font-size:84.000000px;}
.fs8_c00377{font-size:87.000000px;}
.fs2_c00377{font-size:93.000000px;}
.fs5_c00377{font-size:96.000000px;}
.fs1_c00377{font-size:102.000000px;}
.fs4_c00377{font-size:105.000000px;}
.fs3_c00377{font-size:123.000000px;}
.y0_c00377{bottom:0.000000px;}
.y28_c00377{bottom:3.105000px;}
.y27_c00377{bottom:7.228357px;}
.y26_c00377{bottom:122.580000px;}
.y22_c00377{bottom:151.830000px;}
.y21_c00377{bottom:186.630000px;}
.y20_c00377{bottom:220.380000px;}
.y1f_c00377{bottom:254.430000px;}
.y1e_c00377{bottom:288.630000px;}
.y1d_c00377{bottom:323.280000px;}
.y1c_c00377{bottom:357.030000px;}
.y1b_c00377{bottom:390.180000px;}
.y1a_c00377{bottom:424.530000px;}
.y19_c00377{bottom:458.430000px;}
.y18_c00377{bottom:492.180000px;}
.y17_c00377{bottom:526.230000px;}
.y25_c00377{bottom:552.930000px;}
.y16_c00377{bottom:559.980000px;}
.y24_c00377{bottom:580.530000px;}
.y15_c00377{bottom:593.430000px;}
.y23_c00377{bottom:612.330000px;}
.y14_c00377{bottom:630.480000px;}
.y13_c00377{bottom:664.230000px;}
.y12_c00377{bottom:696.930000px;}
.y11_c00377{bottom:728.430000px;}
.y10_c00377{bottom:760.080000px;}
.yf_c00377{bottom:795.780000px;}
.ye_c00377{bottom:829.530000px;}
.yd_c00377{bottom:864.780000px;}
.yc_c00377{bottom:898.380000px;}
.yb_c00377{bottom:930.780000px;}
.ya_c00377{bottom:963.930000px;}
.y9_c00377{bottom:996.630000px;}
.y8_c00377{bottom:1029.330000px;}
.y7_c00377{bottom:1062.780000px;}
.y6_c00377{bottom:1096.230000px;}
.y5_c00377{bottom:1129.680000px;}
.y4_c00377{bottom:1162.980000px;}
.y3_c00377{bottom:1196.730000px;}
.y2_c00377{bottom:1229.580000px;}
.y1_c00377{bottom:1261.230000px;}
.h9_c00377{height:13.200074px;}
.ha_c00377{height:43.804688px;}
.h7_c00377{height:91.291992px;}
.h8_c00377{height:98.314453px;}
.h6_c00377{height:98.756836px;}
.h3_c00377{height:117.748535px;}
.h5_c00377{height:121.546875px;}
.h2_c00377{height:129.143555px;}
.h4_c00377{height:155.731934px;}
.h0_c00377{height:1362.450000px;}
.h1_c00377{height:1362.750000px;}
.w2_c00377{width:104.875500px;}
.w1_c00377{width:849.750000px;}
.w0_c00377{width:849.975000px;}
.x0_c00377{left:0.000000px;}
.xc_c00377{left:39.150000px;}
.x8_c00377{left:41.400000px;}
.xb_c00377{left:42.450000px;}
.x9_c00377{left:43.500000px;}
.xa_c00377{left:57.000000px;}
.x11_c00377{left:68.850000px;}
.x1_c00377{left:171.450000px;}
.x10_c00377{left:256.800000px;}
.xf_c00377{left:257.850000px;}
.xe_c00377{left:258.900000px;}
.x7_c00377{left:261.150000px;}
.xd_c00377{left:262.800000px;}
.x6_c00377{left:264.300000px;}
.x5_c00377{left:265.500000px;}
.x3_c00377{left:266.550000px;}
.x2_c00377{left:267.600000px;}
.x4_c00377{left:269.250000px;}
.x13_c00377{left:376.801758px;}
.x12_c00377{left:790.800000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.lsb_c00377{letter-spacing:-13.333333pt;}
.lsc_c00377{letter-spacing:-8.000000pt;}
.lsa_c00377{letter-spacing:0.000000pt;}
.ls7_c00377{letter-spacing:2.666667pt;}
.ls6_c00377{letter-spacing:5.301333pt;}
.ls9_c00377{letter-spacing:5.333333pt;}
.ls8_c00377{letter-spacing:9.706667pt;}
.ls3_c00377{letter-spacing:17.109333pt;}
.ls2_c00377{letter-spacing:21.677333pt;}
.ls0_c00377{letter-spacing:28.416000pt;}
.ls1_c00377{letter-spacing:40.549333pt;}
.ls4_c00377{letter-spacing:62.962667pt;}
.ls5_c00377{letter-spacing:201.096000pt;}
.ws2_c00377{word-spacing:-43.405333pt;}
.ws1_c00377{word-spacing:-19.922667pt;}
.ws4_c00377{word-spacing:-17.994667pt;}
.ws0_c00377{word-spacing:-4.544000pt;}
.ws5_c00377{word-spacing:0.000000pt;}
.ws3_c00377{word-spacing:17.053333pt;}
._36_c00377{margin-left:-27.733333pt;}
._1b_c00377{margin-left:-26.024000pt;}
._45_c00377{margin-left:-24.562667pt;}
._1e_c00377{margin-left:-23.229333pt;}
._1_c00377{margin-left:-20.400000pt;}
._29_c00377{margin-left:-19.442667pt;}
._41_c00377{margin-left:-18.208000pt;}
._3b_c00377{margin-left:-15.957333pt;}
._46_c00377{margin-left:-14.986667pt;}
._3c_c00377{margin-left:-13.792000pt;}
._25_c00377{margin-left:-12.584000pt;}
._2b_c00377{margin-left:-11.160000pt;}
._2a_c00377{margin-left:-9.845333pt;}
._43_c00377{margin-left:-8.704000pt;}
._26_c00377{margin-left:-7.770667pt;}
._2f_c00377{margin-left:-5.944000pt;}
._27_c00377{margin-left:-5.042667pt;}
._13_c00377{margin-left:-4.080000pt;}
._14_c00377{margin-left:-2.538667pt;}
._22_c00377{margin-left:-1.504000pt;}
._d_c00377{width:1.405333pt;}
._b_c00377{width:2.490667pt;}
._7_c00377{width:3.394667pt;}
._a_c00377{width:4.536000pt;}
._9_c00377{width:5.621333pt;}
._15_c00377{width:7.024000pt;}
._4_c00377{width:8.512000pt;}
._1a_c00377{width:9.813333pt;}
._6_c00377{width:11.242667pt;}
._3_c00377{width:12.992000pt;}
._31_c00377{width:14.485333pt;}
._2d_c00377{width:15.445333pt;}
._20_c00377{width:16.376000pt;}
._21_c00377{width:17.418667pt;}
._5_c00377{width:18.666667pt;}
._3a_c00377{width:19.888000pt;}
._e_c00377{width:21.400000pt;}
._39_c00377{width:22.936000pt;}
._1f_c00377{width:24.138667pt;}
._16_c00377{width:25.962667pt;}
._17_c00377{width:27.538667pt;}
._2e_c00377{width:28.794667pt;}
._18_c00377{width:29.992000pt;}
._24_c00377{width:31.082667pt;}
._19_c00377{width:32.653333pt;}
._c_c00377{width:34.968000pt;}
._11_c00377{width:36.290667pt;}
._2c_c00377{width:37.392000pt;}
._1d_c00377{width:38.965333pt;}
._8_c00377{width:40.589333pt;}
._23_c00377{width:42.306667pt;}
._33_c00377{width:44.045333pt;}
._10_c00377{width:45.301333pt;}
._42_c00377{width:46.221333pt;}
._f_c00377{width:47.533333pt;}
._3d_c00377{width:49.610667pt;}
._32_c00377{width:52.274667pt;}
._1c_c00377{width:54.053333pt;}
._12_c00377{width:56.536000pt;}
._30_c00377{width:57.941333pt;}
._28_c00377{width:62.253333pt;}
._37_c00377{width:63.162667pt;}
._40_c00377{width:67.114667pt;}
._44_c00377{width:72.605333pt;}
._2_c00377{width:90.693333pt;}
._3e_c00377{width:107.904000pt;}
._3f_c00377{width:146.997333pt;}
._35_c00377{width:157.368000pt;}
._0_c00377{width:254.410667pt;}
._38_c00377{width:705.280000pt;}
._34_c00377{width:721.378667pt;}
.fs9_c00377{font-size:42.666667pt;}
.fs0_c00377{font-size:64.000000pt;}
.fs7_c00377{font-size:69.333333pt;}
.fs6_c00377{font-size:74.666667pt;}
.fs8_c00377{font-size:77.333333pt;}
.fs2_c00377{font-size:82.666667pt;}
.fs5_c00377{font-size:85.333333pt;}
.fs1_c00377{font-size:90.666667pt;}
.fs4_c00377{font-size:93.333333pt;}
.fs3_c00377{font-size:109.333333pt;}
.y0_c00377{bottom:0.000000pt;}
.y28_c00377{bottom:2.760000pt;}
.y27_c00377{bottom:6.425206pt;}
.y26_c00377{bottom:108.960000pt;}
.y22_c00377{bottom:134.960000pt;}
.y21_c00377{bottom:165.893333pt;}
.y20_c00377{bottom:195.893333pt;}
.y1f_c00377{bottom:226.160000pt;}
.y1e_c00377{bottom:256.560000pt;}
.y1d_c00377{bottom:287.360000pt;}
.y1c_c00377{bottom:317.360000pt;}
.y1b_c00377{bottom:346.826667pt;}
.y1a_c00377{bottom:377.360000pt;}
.y19_c00377{bottom:407.493333pt;}
.y18_c00377{bottom:437.493333pt;}
.y17_c00377{bottom:467.760000pt;}
.y25_c00377{bottom:491.493333pt;}
.y16_c00377{bottom:497.760000pt;}
.y24_c00377{bottom:516.026667pt;}
.y15_c00377{bottom:527.493333pt;}
.y23_c00377{bottom:544.293333pt;}
.y14_c00377{bottom:560.426667pt;}
.y13_c00377{bottom:590.426667pt;}
.y12_c00377{bottom:619.493333pt;}
.y11_c00377{bottom:647.493333pt;}
.y10_c00377{bottom:675.626667pt;}
.yf_c00377{bottom:707.360000pt;}
.ye_c00377{bottom:737.360000pt;}
.yd_c00377{bottom:768.693333pt;}
.yc_c00377{bottom:798.560000pt;}
.yb_c00377{bottom:827.360000pt;}
.ya_c00377{bottom:856.826667pt;}
.y9_c00377{bottom:885.893333pt;}
.y8_c00377{bottom:914.960000pt;}
.y7_c00377{bottom:944.693333pt;}
.y6_c00377{bottom:974.426667pt;}
.y5_c00377{bottom:1004.160000pt;}
.y4_c00377{bottom:1033.760000pt;}
.y3_c00377{bottom:1063.760000pt;}
.y2_c00377{bottom:1092.960000pt;}
.y1_c00377{bottom:1121.093333pt;}
.h9_c00377{height:11.733399pt;}
.ha_c00377{height:38.937500pt;}
.h7_c00377{height:81.148438pt;}
.h8_c00377{height:87.390625pt;}
.h6_c00377{height:87.783854pt;}
.h3_c00377{height:104.665365pt;}
.h5_c00377{height:108.041667pt;}
.h2_c00377{height:114.794271pt;}
.h4_c00377{height:138.428385pt;}
.h0_c00377{height:1211.066667pt;}
.h1_c00377{height:1211.333333pt;}
.w2_c00377{width:93.222667pt;}
.w1_c00377{width:755.333333pt;}
.w0_c00377{width:755.533333pt;}
.x0_c00377{left:0.000000pt;}
.xc_c00377{left:34.800000pt;}
.x8_c00377{left:36.800000pt;}
.xb_c00377{left:37.733333pt;}
.x9_c00377{left:38.666667pt;}
.xa_c00377{left:50.666667pt;}
.x11_c00377{left:61.200000pt;}
.x1_c00377{left:152.400000pt;}
.x10_c00377{left:228.266667pt;}
.xf_c00377{left:229.200000pt;}
.xe_c00377{left:230.133333pt;}
.x7_c00377{left:232.133333pt;}
.xd_c00377{left:233.600000pt;}
.x6_c00377{left:234.933333pt;}
.x5_c00377{left:236.000000pt;}
.x3_c00377{left:236.933333pt;}
.x2_c00377{left:237.866667pt;}
.x4_c00377{left:239.333333pt;}
.x13_c00377{left:334.934896pt;}
.x12_c00377{left:702.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5caecec7c7e14b408f10828c.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_cfb855f2f145cf8df2c95d08.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_736f70eb9c5207e6ce293ca0.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00378{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00378{vertical-align:-82.800000px;}
.v0_c00378{vertical-align:0.000000px;}
.ls4_c00378{letter-spacing:0.000000px;}
.ls3_c00378{letter-spacing:7.800000px;}
.ls0_c00378{letter-spacing:9.600000px;}
.ls2_c00378{letter-spacing:13.800000px;}
.ls1_c00378{letter-spacing:15.600000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:-23.136000px;}
.ws1_c00378{word-spacing:-20.244000px;}
.ws2_c00378{word-spacing:0.000000px;}
._40_c00378{margin-left:-40.128000px;}
._39_c00378{margin-left:-30.432000px;}
._48_c00378{margin-left:-28.128000px;}
._4b_c00378{margin-left:-27.024000px;}
._4d_c00378{margin-left:-25.824000px;}
._3a_c00378{margin-left:-23.232000px;}
._10_c00378{margin-left:-21.696000px;}
._34_c00378{margin-left:-19.104000px;}
._28_c00378{margin-left:-16.800000px;}
._33_c00378{margin-left:-14.784000px;}
._20_c00378{margin-left:-13.344000px;}
._1f_c00378{margin-left:-12.192000px;}
._15_c00378{margin-left:-10.176000px;}
._19_c00378{margin-left:-8.832000px;}
._16_c00378{margin-left:-6.816000px;}
._23_c00378{margin-left:-5.544000px;}
._d_c00378{margin-left:-3.936000px;}
._e_c00378{margin-left:-2.880000px;}
._f_c00378{margin-left:-1.536000px;}
._7_c00378{width:1.152000px;}
._8_c00378{width:2.880000px;}
._3_c00378{width:4.416000px;}
._b_c00378{width:5.568000px;}
._2_c00378{width:6.912000px;}
._0_c00378{width:8.448000px;}
._14_c00378{width:9.600000px;}
._1e_c00378{width:10.656000px;}
._3d_c00378{width:12.096000px;}
._5_c00378{width:13.440000px;}
._1b_c00378{width:15.264000px;}
._1_c00378{width:16.320000px;}
._12_c00378{width:17.376000px;}
._18_c00378{width:18.816000px;}
._11_c00378{width:20.544000px;}
._13_c00378{width:21.696000px;}
._1d_c00378{width:25.248000px;}
._17_c00378{width:27.840000px;}
._37_c00378{width:29.184000px;}
._4_c00378{width:30.216000px;}
._1c_c00378{width:31.488000px;}
._1a_c00378{width:32.736000px;}
._31_c00378{width:34.080000px;}
._9_c00378{width:36.384000px;}
._6_c00378{width:38.400000px;}
._c_c00378{width:40.704000px;}
._2f_c00378{width:41.856000px;}
._29_c00378{width:43.344000px;}
._30_c00378{width:44.352000px;}
._43_c00378{width:45.600000px;}
._25_c00378{width:47.424000px;}
._27_c00378{width:50.976000px;}
._a_c00378{width:54.528000px;}
._3f_c00378{width:55.920000px;}
._4e_c00378{width:58.848000px;}
._2d_c00378{width:62.496000px;}
._24_c00378{width:65.568000px;}
._26_c00378{width:67.104000px;}
._35_c00378{width:70.632000px;}
._32_c00378{width:73.152000px;}
._3e_c00378{width:78.360000px;}
._47_c00378{width:81.408000px;}
._2c_c00378{width:87.168000px;}
._41_c00378{width:107.160000px;}
._42_c00378{width:155.112000px;}
._2e_c00378{width:179.040000px;}
._46_c00378{width:183.000000px;}
._49_c00378{width:187.488000px;}
._22_c00378{width:218.904000px;}
._4c_c00378{width:272.544000px;}
._3b_c00378{width:294.552000px;}
._2a_c00378{width:310.644000px;}
._4a_c00378{width:322.800000px;}
._45_c00378{width:344.880000px;}
._38_c00378{width:354.936000px;}
._21_c00378{width:359.856000px;}
._2b_c00378{width:427.008000px;}
._44_c00378{width:539.940000px;}
._3c_c00378{width:784.632000px;}
._36_c00378{width:861.024000px;}
.fc2_c00378{color:transparent;}
.fc1_c00378{color:rgb(128,128,128);}
.fc0_c00378{color:rgb(0,0,0);}
.fs3_c00378{font-size:48.000000px;}
.fs1_c00378{font-size:84.000000px;}
.fs0_c00378{font-size:96.000000px;}
.fs2_c00378{font-size:102.000000px;}
.y0_c00378{bottom:0.000000px;}
.y27_c00378{bottom:3.105000px;}
.y26_c00378{bottom:7.228369px;}
.y25_c00378{bottom:135.570000px;}
.y24_c00378{bottom:169.770000px;}
.y23_c00378{bottom:201.720000px;}
.y22_c00378{bottom:235.470000px;}
.y21_c00378{bottom:269.370000px;}
.y20_c00378{bottom:302.370000px;}
.y1f_c00378{bottom:337.170000px;}
.y1e_c00378{bottom:370.620000px;}
.y1d_c00378{bottom:404.220000px;}
.y1c_c00378{bottom:438.120000px;}
.y1b_c00378{bottom:471.420000px;}
.y1a_c00378{bottom:503.520000px;}
.y19_c00378{bottom:538.920000px;}
.y18_c00378{bottom:571.770000px;}
.y17_c00378{bottom:606.420000px;}
.y16_c00378{bottom:639.270000px;}
.y15_c00378{bottom:673.620000px;}
.y14_c00378{bottom:706.770000px;}
.y13_c00378{bottom:740.370000px;}
.y12_c00378{bottom:775.920000px;}
.y11_c00378{bottom:806.520000px;}
.y10_c00378{bottom:841.320000px;}
.yf_c00378{bottom:874.470000px;}
.ye_c00378{bottom:907.920000px;}
.yd_c00378{bottom:942.570000px;}
.yc_c00378{bottom:974.970000px;}
.yb_c00378{bottom:1008.120000px;}
.ya_c00378{bottom:1041.570000px;}
.y9_c00378{bottom:1075.170000px;}
.y8_c00378{bottom:1088.670000px;}
.y7_c00378{bottom:1108.320000px;}
.y6_c00378{bottom:1142.070000px;}
.y5_c00378{bottom:1174.470000px;}
.y4_c00378{bottom:1207.920000px;}
.y3_c00378{bottom:1240.920000px;}
.y2_c00378{bottom:1274.070000px;}
.y1_c00378{bottom:1307.820000px;}
.h3_c00378{height:13.200073px;}
.h4_c00378{height:43.804688px;}
.h2_c00378{height:121.546875px;}
.h0_c00378{height:1383.450000px;}
.h1_c00378{height:1383.750000px;}
.w2_c00378{width:104.875500px;}
.w0_c00378{width:878.025000px;}
.w1_c00378{width:878.250000px;}
.x0_c00378{left:0.000000px;}
.xc_c00378{left:25.200000px;}
.xb_c00378{left:29.400000px;}
.xd_c00378{left:38.700000px;}
.xa_c00378{left:40.200000px;}
.x9_c00378{left:41.400000px;}
.xe_c00378{left:42.450000px;}
.x8_c00378{left:43.500000px;}
.x5_c00378{left:44.550000px;}
.x4_c00378{left:45.600000px;}
.x3_c00378{left:46.800000px;}
.x2_c00378{left:47.850000px;}
.x7_c00378{left:169.350000px;}
.x6_c00378{left:278.400000px;}
.x10_c00378{left:390.826721px;}
.x1_c00378{left:529.500000px;}
.xf_c00378{left:578.100000px;}
@media print{
.v1_c00378{vertical-align:-73.600000pt;}
.v0_c00378{vertical-align:0.000000pt;}
.ls4_c00378{letter-spacing:0.000000pt;}
.ls3_c00378{letter-spacing:6.933333pt;}
.ls0_c00378{letter-spacing:8.533333pt;}
.ls2_c00378{letter-spacing:12.266667pt;}
.ls1_c00378{letter-spacing:13.866667pt;}
.ws0_c00378{word-spacing:-20.565333pt;}
.ws1_c00378{word-spacing:-17.994667pt;}
.ws2_c00378{word-spacing:0.000000pt;}
._40_c00378{margin-left:-35.669333pt;}
._39_c00378{margin-left:-27.050667pt;}
._48_c00378{margin-left:-25.002667pt;}
._4b_c00378{margin-left:-24.021333pt;}
._4d_c00378{margin-left:-22.954667pt;}
._3a_c00378{margin-left:-20.650667pt;}
._10_c00378{margin-left:-19.285333pt;}
._34_c00378{margin-left:-16.981333pt;}
._28_c00378{margin-left:-14.933333pt;}
._33_c00378{margin-left:-13.141333pt;}
._20_c00378{margin-left:-11.861333pt;}
._1f_c00378{margin-left:-10.837333pt;}
._15_c00378{margin-left:-9.045333pt;}
._19_c00378{margin-left:-7.850667pt;}
._16_c00378{margin-left:-6.058667pt;}
._23_c00378{margin-left:-4.928000pt;}
._d_c00378{margin-left:-3.498667pt;}
._e_c00378{margin-left:-2.560000pt;}
._f_c00378{margin-left:-1.365333pt;}
._7_c00378{width:1.024000pt;}
._8_c00378{width:2.560000pt;}
._3_c00378{width:3.925333pt;}
._b_c00378{width:4.949333pt;}
._2_c00378{width:6.144000pt;}
._0_c00378{width:7.509333pt;}
._14_c00378{width:8.533333pt;}
._1e_c00378{width:9.472000pt;}
._3d_c00378{width:10.752000pt;}
._5_c00378{width:11.946667pt;}
._1b_c00378{width:13.568000pt;}
._1_c00378{width:14.506667pt;}
._12_c00378{width:15.445333pt;}
._18_c00378{width:16.725333pt;}
._11_c00378{width:18.261333pt;}
._13_c00378{width:19.285333pt;}
._1d_c00378{width:22.442667pt;}
._17_c00378{width:24.746667pt;}
._37_c00378{width:25.941333pt;}
._4_c00378{width:26.858667pt;}
._1c_c00378{width:27.989333pt;}
._1a_c00378{width:29.098667pt;}
._31_c00378{width:30.293333pt;}
._9_c00378{width:32.341333pt;}
._6_c00378{width:34.133333pt;}
._c_c00378{width:36.181333pt;}
._2f_c00378{width:37.205333pt;}
._29_c00378{width:38.528000pt;}
._30_c00378{width:39.424000pt;}
._43_c00378{width:40.533333pt;}
._25_c00378{width:42.154667pt;}
._27_c00378{width:45.312000pt;}
._a_c00378{width:48.469333pt;}
._3f_c00378{width:49.706667pt;}
._4e_c00378{width:52.309333pt;}
._2d_c00378{width:55.552000pt;}
._24_c00378{width:58.282667pt;}
._26_c00378{width:59.648000pt;}
._35_c00378{width:62.784000pt;}
._32_c00378{width:65.024000pt;}
._3e_c00378{width:69.653333pt;}
._47_c00378{width:72.362667pt;}
._2c_c00378{width:77.482667pt;}
._41_c00378{width:95.253333pt;}
._42_c00378{width:137.877333pt;}
._2e_c00378{width:159.146667pt;}
._46_c00378{width:162.666667pt;}
._49_c00378{width:166.656000pt;}
._22_c00378{width:194.581333pt;}
._4c_c00378{width:242.261333pt;}
._3b_c00378{width:261.824000pt;}
._2a_c00378{width:276.128000pt;}
._4a_c00378{width:286.933333pt;}
._45_c00378{width:306.560000pt;}
._38_c00378{width:315.498667pt;}
._21_c00378{width:319.872000pt;}
._2b_c00378{width:379.562667pt;}
._44_c00378{width:479.946667pt;}
._3c_c00378{width:697.450667pt;}
._36_c00378{width:765.354667pt;}
.fs3_c00378{font-size:42.666667pt;}
.fs1_c00378{font-size:74.666667pt;}
.fs0_c00378{font-size:85.333333pt;}
.fs2_c00378{font-size:90.666667pt;}
.y0_c00378{bottom:0.000000pt;}
.y27_c00378{bottom:2.760000pt;}
.y26_c00378{bottom:6.425217pt;}
.y25_c00378{bottom:120.506667pt;}
.y24_c00378{bottom:150.906667pt;}
.y23_c00378{bottom:179.306667pt;}
.y22_c00378{bottom:209.306667pt;}
.y21_c00378{bottom:239.440000pt;}
.y20_c00378{bottom:268.773333pt;}
.y1f_c00378{bottom:299.706667pt;}
.y1e_c00378{bottom:329.440000pt;}
.y1d_c00378{bottom:359.306667pt;}
.y1c_c00378{bottom:389.440000pt;}
.y1b_c00378{bottom:419.040000pt;}
.y1a_c00378{bottom:447.573333pt;}
.y19_c00378{bottom:479.040000pt;}
.y18_c00378{bottom:508.240000pt;}
.y17_c00378{bottom:539.040000pt;}
.y16_c00378{bottom:568.240000pt;}
.y15_c00378{bottom:598.773333pt;}
.y14_c00378{bottom:628.240000pt;}
.y13_c00378{bottom:658.106667pt;}
.y12_c00378{bottom:689.706667pt;}
.y11_c00378{bottom:716.906667pt;}
.y10_c00378{bottom:747.840000pt;}
.yf_c00378{bottom:777.306667pt;}
.ye_c00378{bottom:807.040000pt;}
.yd_c00378{bottom:837.840000pt;}
.yc_c00378{bottom:866.640000pt;}
.yb_c00378{bottom:896.106667pt;}
.ya_c00378{bottom:925.840000pt;}
.y9_c00378{bottom:955.706667pt;}
.y8_c00378{bottom:967.706667pt;}
.y7_c00378{bottom:985.173333pt;}
.y6_c00378{bottom:1015.173333pt;}
.y5_c00378{bottom:1043.973333pt;}
.y4_c00378{bottom:1073.706667pt;}
.y3_c00378{bottom:1103.040000pt;}
.y2_c00378{bottom:1132.506667pt;}
.y1_c00378{bottom:1162.506667pt;}
.h3_c00378{height:11.733399pt;}
.h4_c00378{height:38.937500pt;}
.h2_c00378{height:108.041667pt;}
.h0_c00378{height:1229.733333pt;}
.h1_c00378{height:1230.000000pt;}
.w2_c00378{width:93.222667pt;}
.w0_c00378{width:780.466667pt;}
.w1_c00378{width:780.666667pt;}
.x0_c00378{left:0.000000pt;}
.xc_c00378{left:22.400000pt;}
.xb_c00378{left:26.133333pt;}
.xd_c00378{left:34.400000pt;}
.xa_c00378{left:35.733333pt;}
.x9_c00378{left:36.800000pt;}
.xe_c00378{left:37.733333pt;}
.x8_c00378{left:38.666667pt;}
.x5_c00378{left:39.600000pt;}
.x4_c00378{left:40.533333pt;}
.x3_c00378{left:41.600000pt;}
.x2_c00378{left:42.533333pt;}
.x7_c00378{left:150.533333pt;}
.x6_c00378{left:247.466667pt;}
.x10_c00378{left:347.401530pt;}
.x1_c00378{left:470.666667pt;}
.xf_c00378{left:513.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_204ed5f39d82934b1c03d7ef.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_12285ca30140571a71657a66.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_67c344130dae3ac665f9e922.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_736f70eb9c5207e6ce293ca0.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;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_c00379;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls4_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:5.460000px;}
.ls5_c00379{letter-spacing:6.000000px;}
.ls3_c00379{letter-spacing:12.660000px;}
.ls1_c00379{letter-spacing:16.555200px;}
.ls2_c00379{letter-spacing:33.864000px;}
.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;}
}
.ws3_c00379{word-spacing:-57.000000px;}
.ws6_c00379{word-spacing:-23.136000px;}
.ws2_c00379{word-spacing:-20.967000px;}
.ws1_c00379{word-spacing:-20.244000px;}
.ws0_c00379{word-spacing:-18.798000px;}
.ws7_c00379{word-spacing:0.000000px;}
.ws5_c00379{word-spacing:1.596000px;}
.ws4_c00379{word-spacing:10.836000px;}
._31_c00379{margin-left:-30.357000px;}
._28_c00379{margin-left:-28.362000px;}
._12_c00379{margin-left:-19.662000px;}
._16_c00379{margin-left:-10.500000px;}
._17_c00379{margin-left:-8.484000px;}
._c_c00379{margin-left:-6.288000px;}
._3_c00379{margin-left:-4.788000px;}
._7_c00379{margin-left:-3.696000px;}
._26_c00379{margin-left:-2.544000px;}
._a_c00379{margin-left:-1.440000px;}
._1_c00379{width:1.932000px;}
._14_c00379{width:2.940000px;}
._0_c00379{width:4.368000px;}
._4_c00379{width:5.880000px;}
._1b_c00379{width:6.936000px;}
._5_c00379{width:8.232000px;}
._10_c00379{width:9.477000px;}
._19_c00379{width:10.662000px;}
._1a_c00379{width:12.891000px;}
._20_c00379{width:13.926000px;}
._2b_c00379{width:15.072000px;}
._2c_c00379{width:16.365000px;}
._e_c00379{width:17.478000px;}
._1f_c00379{width:19.272000px;}
._22_c00379{width:21.888000px;}
._b_c00379{width:23.478000px;}
._9_c00379{width:25.272000px;}
._2d_c00379{width:26.676000px;}
._1e_c00379{width:27.888000px;}
._11_c00379{width:29.166000px;}
._15_c00379{width:31.080000px;}
._f_c00379{width:32.856000px;}
._2a_c00379{width:33.945000px;}
._21_c00379{width:34.956000px;}
._d_c00379{width:36.114000px;}
._1c_c00379{width:37.215000px;}
._13_c00379{width:38.400000px;}
._23_c00379{width:39.576000px;}
._8_c00379{width:41.244000px;}
._1d_c00379{width:42.432000px;}
._6_c00379{width:45.108000px;}
._2_c00379{width:47.544000px;}
._2e_c00379{width:49.026000px;}
._24_c00379{width:50.064000px;}
._30_c00379{width:51.480000px;}
._18_c00379{width:53.871000px;}
._33_c00379{width:60.147000px;}
._32_c00379{width:64.008000px;}
._25_c00379{width:71.268000px;}
._27_c00379{width:75.168000px;}
._29_c00379{width:163.614000px;}
._35_c00379{width:178.974000px;}
._2f_c00379{width:234.462000px;}
._34_c00379{width:485.988000px;}
.fc2_c00379{color:transparent;}
.fc1_c00379{color:rgb(128,128,128);}
.fc0_c00379{color:rgb(0,0,0);}
.fs6_c00379{font-size:48.000000px;}
.fs3_c00379{font-size:62.400000px;}
.fs2_c00379{font-size:78.000000px;}
.fs0_c00379{font-size:84.000000px;}
.fs4_c00379{font-size:87.000000px;}
.fs1_c00379{font-size:96.000000px;}
.fs5_c00379{font-size:102.000000px;}
.y0_c00379{bottom:0.000000px;}
.y2e_c00379{bottom:3.105000px;}
.y2d_c00379{bottom:7.228357px;}
.y2c_c00379{bottom:116.730000px;}
.y2b_c00379{bottom:146.430000px;}
.y9_c00379{bottom:174.480000px;}
.y2a_c00379{bottom:180.630000px;}
.y8_c00379{bottom:207.930000px;}
.y29_c00379{bottom:214.380000px;}
.y28_c00379{bottom:249.780000px;}
.y27_c00379{bottom:282.180000px;}
.y26_c00379{bottom:316.680000px;}
.y25_c00379{bottom:350.430000px;}
.y24_c00379{bottom:384.180000px;}
.y23_c00379{bottom:418.530000px;}
.y22_c00379{bottom:452.280000px;}
.y21_c00379{bottom:486.330000px;}
.y20_c00379{bottom:519.180000px;}
.y1f_c00379{bottom:553.230000px;}
.y1e_c00379{bottom:586.980000px;}
.y7_c00379{bottom:609.180000px;}
.y1d_c00379{bottom:620.430000px;}
.y1c_c00379{bottom:654.480000px;}
.y1b_c00379{bottom:688.230000px;}
.y1a_c00379{bottom:721.980000px;}
.y6_c00379{bottom:744.630000px;}
.y19_c00379{bottom:755.430000px;}
.y5_c00379{bottom:774.330000px;}
.y18_c00379{bottom:788.730000px;}
.y4_c00379{bottom:804.930000px;}
.y17_c00379{bottom:822.780000px;}
.y3_c00379{bottom:835.080000px;}
.y16_c00379{bottom:856.680000px;}
.y2_c00379{bottom:863.430000px;}
.y15_c00379{bottom:889.380000px;}
.y1_c00379{bottom:892.380000px;}
.y14_c00379{bottom:923.730000px;}
.y13_c00379{bottom:956.880000px;}
.y12_c00379{bottom:989.580000px;}
.y11_c00379{bottom:1021.980000px;}
.y10_c00379{bottom:1055.430000px;}
.yf_c00379{bottom:1088.730000px;}
.ye_c00379{bottom:1122.180000px;}
.yd_c00379{bottom:1155.630000px;}
.yc_c00379{bottom:1188.330000px;}
.yb_c00379{bottom:1222.380000px;}
.ya_c00379{bottom:1254.780000px;}
.h6_c00379{height:13.200074px;}
.h7_c00379{height:43.804688px;}
.h5_c00379{height:98.314453px;}
.h3_c00379{height:98.756836px;}
.h4_c00379{height:110.151855px;}
.h2_c00379{height:121.546875px;}
.h1_c00379{height:1351.500000px;}
.h0_c00379{height:1351.650000px;}
.w2_c00379{width:104.875500px;}
.w0_c00379{width:843.450000px;}
.w1_c00379{width:843.750000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:13.800000px;}
.x4_c00379{left:14.850000px;}
.x3_c00379{left:16.500000px;}
.x7_c00379{left:32.100000px;}
.x2_c00379{left:43.500000px;}
.x6_c00379{left:83.700000px;}
.x5_c00379{left:172.500000px;}
.x9_c00379{left:236.850000px;}
.x8_c00379{left:237.900000px;}
.xa_c00379{left:238.950000px;}
.xc_c00379{left:240.600000px;}
.xd_c00379{left:241.650000px;}
.xe_c00379{left:243.300000px;}
.xf_c00379{left:288.000000px;}
.xb_c00379{left:289.800000px;}
.x11_c00379{left:373.539230px;}
.x10_c00379{left:788.100000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls4_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:4.853333pt;}
.ls5_c00379{letter-spacing:5.333333pt;}
.ls3_c00379{letter-spacing:11.253333pt;}
.ls1_c00379{letter-spacing:14.715733pt;}
.ls2_c00379{letter-spacing:30.101333pt;}
.ws3_c00379{word-spacing:-50.666667pt;}
.ws6_c00379{word-spacing:-20.565333pt;}
.ws2_c00379{word-spacing:-18.637333pt;}
.ws1_c00379{word-spacing:-17.994667pt;}
.ws0_c00379{word-spacing:-16.709333pt;}
.ws7_c00379{word-spacing:0.000000pt;}
.ws5_c00379{word-spacing:1.418667pt;}
.ws4_c00379{word-spacing:9.632000pt;}
._31_c00379{margin-left:-26.984000pt;}
._28_c00379{margin-left:-25.210667pt;}
._12_c00379{margin-left:-17.477333pt;}
._16_c00379{margin-left:-9.333333pt;}
._17_c00379{margin-left:-7.541333pt;}
._c_c00379{margin-left:-5.589333pt;}
._3_c00379{margin-left:-4.256000pt;}
._7_c00379{margin-left:-3.285333pt;}
._26_c00379{margin-left:-2.261333pt;}
._a_c00379{margin-left:-1.280000pt;}
._1_c00379{width:1.717333pt;}
._14_c00379{width:2.613333pt;}
._0_c00379{width:3.882667pt;}
._4_c00379{width:5.226667pt;}
._1b_c00379{width:6.165333pt;}
._5_c00379{width:7.317333pt;}
._10_c00379{width:8.424000pt;}
._19_c00379{width:9.477333pt;}
._1a_c00379{width:11.458667pt;}
._20_c00379{width:12.378667pt;}
._2b_c00379{width:13.397333pt;}
._2c_c00379{width:14.546667pt;}
._e_c00379{width:15.536000pt;}
._1f_c00379{width:17.130667pt;}
._22_c00379{width:19.456000pt;}
._b_c00379{width:20.869333pt;}
._9_c00379{width:22.464000pt;}
._2d_c00379{width:23.712000pt;}
._1e_c00379{width:24.789333pt;}
._11_c00379{width:25.925333pt;}
._15_c00379{width:27.626667pt;}
._f_c00379{width:29.205333pt;}
._2a_c00379{width:30.173333pt;}
._21_c00379{width:31.072000pt;}
._d_c00379{width:32.101333pt;}
._1c_c00379{width:33.080000pt;}
._13_c00379{width:34.133333pt;}
._23_c00379{width:35.178667pt;}
._8_c00379{width:36.661333pt;}
._1d_c00379{width:37.717333pt;}
._6_c00379{width:40.096000pt;}
._2_c00379{width:42.261333pt;}
._2e_c00379{width:43.578667pt;}
._24_c00379{width:44.501333pt;}
._30_c00379{width:45.760000pt;}
._18_c00379{width:47.885333pt;}
._33_c00379{width:53.464000pt;}
._32_c00379{width:56.896000pt;}
._25_c00379{width:63.349333pt;}
._27_c00379{width:66.816000pt;}
._29_c00379{width:145.434667pt;}
._35_c00379{width:159.088000pt;}
._2f_c00379{width:208.410667pt;}
._34_c00379{width:431.989333pt;}
.fs6_c00379{font-size:42.666667pt;}
.fs3_c00379{font-size:55.466667pt;}
.fs2_c00379{font-size:69.333333pt;}
.fs0_c00379{font-size:74.666667pt;}
.fs4_c00379{font-size:77.333333pt;}
.fs1_c00379{font-size:85.333333pt;}
.fs5_c00379{font-size:90.666667pt;}
.y0_c00379{bottom:0.000000pt;}
.y2e_c00379{bottom:2.760000pt;}
.y2d_c00379{bottom:6.425206pt;}
.y2c_c00379{bottom:103.760000pt;}
.y2b_c00379{bottom:130.160000pt;}
.y9_c00379{bottom:155.093333pt;}
.y2a_c00379{bottom:160.560000pt;}
.y8_c00379{bottom:184.826667pt;}
.y29_c00379{bottom:190.560000pt;}
.y28_c00379{bottom:222.026667pt;}
.y27_c00379{bottom:250.826667pt;}
.y26_c00379{bottom:281.493333pt;}
.y25_c00379{bottom:311.493333pt;}
.y24_c00379{bottom:341.493333pt;}
.y23_c00379{bottom:372.026667pt;}
.y22_c00379{bottom:402.026667pt;}
.y21_c00379{bottom:432.293333pt;}
.y20_c00379{bottom:461.493333pt;}
.y1f_c00379{bottom:491.760000pt;}
.y1e_c00379{bottom:521.760000pt;}
.y7_c00379{bottom:541.493333pt;}
.y1d_c00379{bottom:551.493333pt;}
.y1c_c00379{bottom:581.760000pt;}
.y1b_c00379{bottom:611.760000pt;}
.y1a_c00379{bottom:641.760000pt;}
.y6_c00379{bottom:661.893333pt;}
.y19_c00379{bottom:671.493333pt;}
.y5_c00379{bottom:688.293333pt;}
.y18_c00379{bottom:701.093333pt;}
.y4_c00379{bottom:715.493333pt;}
.y17_c00379{bottom:731.360000pt;}
.y3_c00379{bottom:742.293333pt;}
.y16_c00379{bottom:761.493333pt;}
.y2_c00379{bottom:767.493333pt;}
.y15_c00379{bottom:790.560000pt;}
.y1_c00379{bottom:793.226667pt;}
.y14_c00379{bottom:821.093333pt;}
.y13_c00379{bottom:850.560000pt;}
.y12_c00379{bottom:879.626667pt;}
.y11_c00379{bottom:908.426667pt;}
.y10_c00379{bottom:938.160000pt;}
.yf_c00379{bottom:967.760000pt;}
.ye_c00379{bottom:997.493333pt;}
.yd_c00379{bottom:1027.226667pt;}
.yc_c00379{bottom:1056.293333pt;}
.yb_c00379{bottom:1086.560000pt;}
.ya_c00379{bottom:1115.360000pt;}
.h6_c00379{height:11.733399pt;}
.h7_c00379{height:38.937500pt;}
.h5_c00379{height:87.390625pt;}
.h3_c00379{height:87.783854pt;}
.h4_c00379{height:97.912760pt;}
.h2_c00379{height:108.041667pt;}
.h1_c00379{height:1201.333333pt;}
.h0_c00379{height:1201.466667pt;}
.w2_c00379{width:93.222667pt;}
.w0_c00379{width:749.733333pt;}
.w1_c00379{width:750.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:12.266667pt;}
.x4_c00379{left:13.200000pt;}
.x3_c00379{left:14.666667pt;}
.x7_c00379{left:28.533333pt;}
.x2_c00379{left:38.666667pt;}
.x6_c00379{left:74.400000pt;}
.x5_c00379{left:153.333333pt;}
.x9_c00379{left:210.533333pt;}
.x8_c00379{left:211.466667pt;}
.xa_c00379{left:212.400000pt;}
.xc_c00379{left:213.866667pt;}
.xd_c00379{left:214.800000pt;}
.xe_c00379{left:216.266667pt;}
.xf_c00379{left:256.000000pt;}
.xb_c00379{left:257.600000pt;}
.x11_c00379{left:332.034871pt;}
.x10_c00379{left:700.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b3eedd85029059229763d1c.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_fc11db1f8596fa8d870675e9.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_f613f63e0d684c7e0b9985e7.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls3_c00380{letter-spacing:0.000000px;}
.ls1_c00380{letter-spacing:5.400000px;}
.ls4_c00380{letter-spacing:6.000000px;}
.ls2_c00380{letter-spacing:7.200000px;}
.ls0_c00380{letter-spacing:10.464000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00380{word-spacing:-63.504000px;}
.ws0_c00380{word-spacing:-57.000000px;}
.ws2_c00380{word-spacing:0.000000px;}
._1c_c00380{margin-left:-75.264000px;}
._2b_c00380{margin-left:-30.528000px;}
._39_c00380{margin-left:-26.580000px;}
._3d_c00380{margin-left:-17.952000px;}
._12_c00380{margin-left:-15.264000px;}
._27_c00380{margin-left:-14.112000px;}
._28_c00380{margin-left:-11.616000px;}
._2e_c00380{margin-left:-9.735000px;}
._3c_c00380{margin-left:-8.244000px;}
._6_c00380{margin-left:-6.396000px;}
._2_c00380{margin-left:-5.028000px;}
._0_c00380{margin-left:-3.132000px;}
._b_c00380{margin-left:-1.536000px;}
._3_c00380{width:1.536000px;}
._4_c00380{width:2.688000px;}
._26_c00380{width:3.693000px;}
._8_c00380{width:4.704000px;}
._d_c00380{width:5.760000px;}
._a_c00380{width:6.912000px;}
._2c_c00380{width:8.256000px;}
._1f_c00380{width:9.504000px;}
._1b_c00380{width:10.656000px;}
._35_c00380{width:11.703000px;}
._17_c00380{width:12.768000px;}
._34_c00380{width:13.824000px;}
._13_c00380{width:14.976000px;}
._1d_c00380{width:16.656000px;}
._11_c00380{width:18.912000px;}
._33_c00380{width:20.628000px;}
._15_c00380{width:21.792000px;}
._e_c00380{width:25.152000px;}
._2a_c00380{width:26.304000px;}
._16_c00380{width:28.224000px;}
._10_c00380{width:29.436000px;}
._38_c00380{width:30.489000px;}
._f_c00380{width:32.064000px;}
._18_c00380{width:33.600000px;}
._29_c00380{width:34.656000px;}
._5_c00380{width:36.192000px;}
._2d_c00380{width:38.004000px;}
._c_c00380{width:39.072000px;}
._1e_c00380{width:41.052000px;}
._19_c00380{width:42.240000px;}
._2f_c00380{width:43.590000px;}
._1_c00380{width:45.075000px;}
._1a_c00380{width:47.904000px;}
._24_c00380{width:49.440000px;}
._3b_c00380{width:50.787000px;}
._7_c00380{width:52.092000px;}
._25_c00380{width:53.523000px;}
._14_c00380{width:55.941000px;}
._30_c00380{width:57.945000px;}
._9_c00380{width:60.000000px;}
._20_c00380{width:61.344000px;}
._21_c00380{width:64.749000px;}
._31_c00380{width:67.200000px;}
._22_c00380{width:69.504000px;}
._32_c00380{width:71.526000px;}
._23_c00380{width:73.248000px;}
._3a_c00380{width:75.750000px;}
._37_c00380{width:88.371000px;}
._36_c00380{width:198.351000px;}
._3f_c00380{width:697.728000px;}
._3e_c00380{width:956.892000px;}
.fc2_c00380{color:transparent;}
.fc1_c00380{color:rgb(128,128,128);}
.fc0_c00380{color:rgb(0,0,0);}
.fs4_c00380{font-size:48.000000px;}
.fs3_c00380{font-size:84.000000px;}
.fs0_c00380{font-size:87.000000px;}
.fs2_c00380{font-size:96.000000px;}
.fs1_c00380{font-size:102.000000px;}
.y0_c00380{bottom:0.000000px;}
.y27_c00380{bottom:3.105000px;}
.y26_c00380{bottom:7.228369px;}
.y25_c00380{bottom:73.920000px;}
.y24_c00380{bottom:106.920000px;}
.y23_c00380{bottom:141.720000px;}
.y22_c00380{bottom:175.470000px;}
.y21_c00380{bottom:209.220000px;}
.y20_c00380{bottom:242.970000px;}
.y1f_c00380{bottom:277.320000px;}
.y1e_c00380{bottom:310.770000px;}
.y1d_c00380{bottom:344.220000px;}
.y1c_c00380{bottom:377.370000px;}
.y1b_c00380{bottom:411.120000px;}
.y1a_c00380{bottom:444.420000px;}
.y19_c00380{bottom:478.620000px;}
.y18_c00380{bottom:511.620000px;}
.y17_c00380{bottom:544.770000px;}
.y16_c00380{bottom:580.170000px;}
.y15_c00380{bottom:611.520000px;}
.y14_c00380{bottom:645.570000px;}
.y13_c00380{bottom:679.020000px;}
.y12_c00380{bottom:712.020000px;}
.y11_c00380{bottom:745.170000px;}
.y10_c00380{bottom:778.920000px;}
.yf_c00380{bottom:811.920000px;}
.ye_c00380{bottom:844.470000px;}
.yd_c00380{bottom:877.770000px;}
.yc_c00380{bottom:911.970000px;}
.yb_c00380{bottom:944.670000px;}
.ya_c00380{bottom:979.020000px;}
.y9_c00380{bottom:1011.420000px;}
.y8_c00380{bottom:1044.870000px;}
.y7_c00380{bottom:1077.870000px;}
.y6_c00380{bottom:1111.320000px;}
.y5_c00380{bottom:1144.020000px;}
.y4_c00380{bottom:1176.870000px;}
.y3_c00380{bottom:1210.620000px;}
.y2_c00380{bottom:1243.320000px;}
.y1_c00380{bottom:1261.470000px;}
.h3_c00380{height:13.200073px;}
.h4_c00380{height:43.804688px;}
.h2_c00380{height:121.546875px;}
.h0_c00380{height:1334.850000px;}
.h1_c00380{height:1335.000000px;}
.w2_c00380{width:104.875500px;}
.w0_c00380{width:847.275000px;}
.w1_c00380{width:847.500000px;}
.x0_c00380{left:0.000000px;}
.x4_c00380{left:23.550000px;}
.x5_c00380{left:47.850000px;}
.x6_c00380{left:48.900000px;}
.x3_c00380{left:50.550000px;}
.x2_c00380{left:52.200000px;}
.x7_c00380{left:53.700000px;}
.x8_c00380{left:54.900000px;}
.x9_c00380{left:57.000000px;}
.xa_c00380{left:58.050000px;}
.xb_c00380{left:61.800000px;}
.xc_c00380{left:375.451721px;}
.x1_c00380{left:516.000000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls3_c00380{letter-spacing:0.000000pt;}
.ls1_c00380{letter-spacing:4.800000pt;}
.ls4_c00380{letter-spacing:5.333333pt;}
.ls2_c00380{letter-spacing:6.400000pt;}
.ls0_c00380{letter-spacing:9.301333pt;}
.ws1_c00380{word-spacing:-56.448000pt;}
.ws0_c00380{word-spacing:-50.666667pt;}
.ws2_c00380{word-spacing:0.000000pt;}
._1c_c00380{margin-left:-66.901333pt;}
._2b_c00380{margin-left:-27.136000pt;}
._39_c00380{margin-left:-23.626667pt;}
._3d_c00380{margin-left:-15.957333pt;}
._12_c00380{margin-left:-13.568000pt;}
._27_c00380{margin-left:-12.544000pt;}
._28_c00380{margin-left:-10.325333pt;}
._2e_c00380{margin-left:-8.653333pt;}
._3c_c00380{margin-left:-7.328000pt;}
._6_c00380{margin-left:-5.685333pt;}
._2_c00380{margin-left:-4.469333pt;}
._0_c00380{margin-left:-2.784000pt;}
._b_c00380{margin-left:-1.365333pt;}
._3_c00380{width:1.365333pt;}
._4_c00380{width:2.389333pt;}
._26_c00380{width:3.282667pt;}
._8_c00380{width:4.181333pt;}
._d_c00380{width:5.120000pt;}
._a_c00380{width:6.144000pt;}
._2c_c00380{width:7.338667pt;}
._1f_c00380{width:8.448000pt;}
._1b_c00380{width:9.472000pt;}
._35_c00380{width:10.402667pt;}
._17_c00380{width:11.349333pt;}
._34_c00380{width:12.288000pt;}
._13_c00380{width:13.312000pt;}
._1d_c00380{width:14.805333pt;}
._11_c00380{width:16.810667pt;}
._33_c00380{width:18.336000pt;}
._15_c00380{width:19.370667pt;}
._e_c00380{width:22.357333pt;}
._2a_c00380{width:23.381333pt;}
._16_c00380{width:25.088000pt;}
._10_c00380{width:26.165333pt;}
._38_c00380{width:27.101333pt;}
._f_c00380{width:28.501333pt;}
._18_c00380{width:29.866667pt;}
._29_c00380{width:30.805333pt;}
._5_c00380{width:32.170667pt;}
._2d_c00380{width:33.781333pt;}
._c_c00380{width:34.730667pt;}
._1e_c00380{width:36.490667pt;}
._19_c00380{width:37.546667pt;}
._2f_c00380{width:38.746667pt;}
._1_c00380{width:40.066667pt;}
._1a_c00380{width:42.581333pt;}
._24_c00380{width:43.946667pt;}
._3b_c00380{width:45.144000pt;}
._7_c00380{width:46.304000pt;}
._25_c00380{width:47.576000pt;}
._14_c00380{width:49.725333pt;}
._30_c00380{width:51.506667pt;}
._9_c00380{width:53.333333pt;}
._20_c00380{width:54.528000pt;}
._21_c00380{width:57.554667pt;}
._31_c00380{width:59.733333pt;}
._22_c00380{width:61.781333pt;}
._32_c00380{width:63.578667pt;}
._23_c00380{width:65.109333pt;}
._3a_c00380{width:67.333333pt;}
._37_c00380{width:78.552000pt;}
._36_c00380{width:176.312000pt;}
._3f_c00380{width:620.202667pt;}
._3e_c00380{width:850.570667pt;}
.fs4_c00380{font-size:42.666667pt;}
.fs3_c00380{font-size:74.666667pt;}
.fs0_c00380{font-size:77.333333pt;}
.fs2_c00380{font-size:85.333333pt;}
.fs1_c00380{font-size:90.666667pt;}
.y0_c00380{bottom:0.000000pt;}
.y27_c00380{bottom:2.760000pt;}
.y26_c00380{bottom:6.425217pt;}
.y25_c00380{bottom:65.706667pt;}
.y24_c00380{bottom:95.040000pt;}
.y23_c00380{bottom:125.973333pt;}
.y22_c00380{bottom:155.973333pt;}
.y21_c00380{bottom:185.973333pt;}
.y20_c00380{bottom:215.973333pt;}
.y1f_c00380{bottom:246.506667pt;}
.y1e_c00380{bottom:276.240000pt;}
.y1d_c00380{bottom:305.973333pt;}
.y1c_c00380{bottom:335.440000pt;}
.y1b_c00380{bottom:365.440000pt;}
.y1a_c00380{bottom:395.040000pt;}
.y19_c00380{bottom:425.440000pt;}
.y18_c00380{bottom:454.773333pt;}
.y17_c00380{bottom:484.240000pt;}
.y16_c00380{bottom:515.706667pt;}
.y15_c00380{bottom:543.573333pt;}
.y14_c00380{bottom:573.840000pt;}
.y13_c00380{bottom:603.573333pt;}
.y12_c00380{bottom:632.906667pt;}
.y11_c00380{bottom:662.373333pt;}
.y10_c00380{bottom:692.373333pt;}
.yf_c00380{bottom:721.706667pt;}
.ye_c00380{bottom:750.640000pt;}
.yd_c00380{bottom:780.240000pt;}
.yc_c00380{bottom:810.640000pt;}
.yb_c00380{bottom:839.706667pt;}
.ya_c00380{bottom:870.240000pt;}
.y9_c00380{bottom:899.040000pt;}
.y8_c00380{bottom:928.773333pt;}
.y7_c00380{bottom:958.106667pt;}
.y6_c00380{bottom:987.840000pt;}
.y5_c00380{bottom:1016.906667pt;}
.y4_c00380{bottom:1046.106667pt;}
.y3_c00380{bottom:1076.106667pt;}
.y2_c00380{bottom:1105.173333pt;}
.y1_c00380{bottom:1121.306667pt;}
.h3_c00380{height:11.733399pt;}
.h4_c00380{height:38.937500pt;}
.h2_c00380{height:108.041667pt;}
.h0_c00380{height:1186.533333pt;}
.h1_c00380{height:1186.666667pt;}
.w2_c00380{width:93.222667pt;}
.w0_c00380{width:753.133333pt;}
.w1_c00380{width:753.333333pt;}
.x0_c00380{left:0.000000pt;}
.x4_c00380{left:20.933333pt;}
.x5_c00380{left:42.533333pt;}
.x6_c00380{left:43.466667pt;}
.x3_c00380{left:44.933333pt;}
.x2_c00380{left:46.400000pt;}
.x7_c00380{left:47.733333pt;}
.x8_c00380{left:48.800000pt;}
.x9_c00380{left:50.666667pt;}
.xa_c00380{left:51.600000pt;}
.xb_c00380{left:54.933333pt;}
.xc_c00380{left:333.734863pt;}
.x1_c00380{left:458.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_689336a1aa2917cbdd152fe0.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_c45f4d6c363b369089cdb6fe.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_9b6c3a4226588d461b8c01b2.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_5636b0451f384811d644a168.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00381;src:url('chunks/assets/font_926c86d69464ec25d24dcf32.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00381;src:url('chunks/assets/font_c44b19f01c2f4c773aeb8f14.woff2')format("woff");}.ff6_c00381{font-family:ff6_c00381;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00381;src:url('chunks/assets/font_e41ab7605f6b6d04e5bf809a.woff2')format("woff");}.ff7_c00381{font-family:ff7_c00381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00381;src:url('chunks/assets/font_b7c5eda5e8b685dc931b9369.woff2')format("woff");}.ff8_c00381{font-family:ff8_c00381;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00381;src:url('chunks/assets/font_062d0b418b21977906d9c892.woff2')format("woff");}.ff9_c00381{font-family:ff9_c00381;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00381;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffa_c00381{font-family:ffa_c00381;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00381{vertical-align:-128.400000px;}
.v1_c00381{vertical-align:-7.800000px;}
.v0_c00381{vertical-align:0.000000px;}
.v3_c00381{vertical-align:99.600000px;}
.ls3_c00381{letter-spacing:-27.000000px;}
.ls5_c00381{letter-spacing:-6.000000px;}
.ls2_c00381{letter-spacing:0.000000px;}
.ls4_c00381{letter-spacing:6.000000px;}
.ls6_c00381{letter-spacing:9.000000px;}
.ls0_c00381{letter-spacing:16.500000px;}
.ls1_c00381{letter-spacing:158.064000px;}
.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;}
}
.ws2_c00381{word-spacing:-51.708000px;}
.ws5_c00381{word-spacing:-33.360000px;}
.ws4_c00381{word-spacing:-31.500000px;}
.ws0_c00381{word-spacing:-23.136000px;}
.ws1_c00381{word-spacing:-20.244000px;}
.ws6_c00381{word-spacing:0.000000px;}
.ws3_c00381{word-spacing:620.208000px;}
._2b_c00381{margin-left:-200.340000px;}
._35_c00381{margin-left:-195.300000px;}
._31_c00381{margin-left:-154.140000px;}
._2d_c00381{margin-left:-145.320000px;}
._29_c00381{margin-left:-138.600000px;}
._37_c00381{margin-left:-110.460000px;}
._5d_c00381{margin-left:-84.336000px;}
._42_c00381{margin-left:-81.573000px;}
._7a_c00381{margin-left:-75.894000px;}
._62_c00381{margin-left:-74.688000px;}
._61_c00381{margin-left:-69.888000px;}
._84_c00381{margin-left:-68.547000px;}
._33_c00381{margin-left:-67.341000px;}
._27_c00381{margin-left:-65.100000px;}
._2c_c00381{margin-left:-61.740000px;}
._30_c00381{margin-left:-60.480000px;}
._59_c00381{margin-left:-58.953000px;}
._3d_c00381{margin-left:-52.992000px;}
._5f_c00381{margin-left:-51.483000px;}
._4e_c00381{margin-left:-47.616000px;}
._75_c00381{margin-left:-46.299000px;}
._34_c00381{margin-left:-42.780000px;}
._47_c00381{margin-left:-37.323000px;}
._85_c00381{margin-left:-34.923000px;}
._2f_c00381{margin-left:-32.340000px;}
._3a_c00381{margin-left:-29.376000px;}
._19_c00381{margin-left:-27.912000px;}
._60_c00381{margin-left:-25.944000px;}
._3f_c00381{margin-left:-24.708000px;}
._36_c00381{margin-left:-22.680000px;}
._28_c00381{margin-left:-20.580000px;}
._4a_c00381{margin-left:-19.335000px;}
._49_c00381{margin-left:-17.313000px;}
._3b_c00381{margin-left:-15.828000px;}
._32_c00381{margin-left:-13.980000px;}
._10_c00381{margin-left:-12.960000px;}
._43_c00381{margin-left:-11.745000px;}
._45_c00381{margin-left:-10.701000px;}
._11_c00381{margin-left:-9.600000px;}
._76_c00381{margin-left:-8.562000px;}
._12_c00381{margin-left:-7.200000px;}
._6_c00381{margin-left:-5.664000px;}
._71_c00381{margin-left:-4.611000px;}
._7_c00381{margin-left:-3.552000px;}
._20_c00381{margin-left:-2.088000px;}
._b_c00381{margin-left:-1.056000px;}
._8_c00381{width:1.536000px;}
._4_c00381{width:3.168000px;}
._3_c00381{width:4.224000px;}
._2_c00381{width:5.472000px;}
._9_c00381{width:6.552000px;}
._d_c00381{width:7.944000px;}
._1e_c00381{width:8.952000px;}
._1_c00381{width:10.656000px;}
._1f_c00381{width:11.976000px;}
._24_c00381{width:13.464000px;}
._0_c00381{width:15.072000px;}
._25_c00381{width:16.608000px;}
._54_c00381{width:17.673000px;}
._17_c00381{width:18.960000px;}
._13_c00381{width:21.216000px;}
._81_c00381{width:22.254000px;}
._5b_c00381{width:23.328000px;}
._21_c00381{width:26.184000px;}
._e_c00381{width:28.224000px;}
._c_c00381{width:29.952000px;}
._39_c00381{width:31.140000px;}
._1d_c00381{width:32.400000px;}
._15_c00381{width:34.320000px;}
._18_c00381{width:36.936000px;}
._26_c00381{width:38.664000px;}
._7f_c00381{width:39.993000px;}
._16_c00381{width:41.376000px;}
._5_c00381{width:42.624000px;}
._23_c00381{width:44.040000px;}
._f_c00381{width:45.600000px;}
._1c_c00381{width:47.352000px;}
._a_c00381{width:48.816000px;}
._52_c00381{width:50.109000px;}
._22_c00381{width:51.312000px;}
._14_c00381{width:53.280000px;}
._1b_c00381{width:54.336000px;}
._73_c00381{width:59.169000px;}
._8a_c00381{width:60.483000px;}
._1a_c00381{width:62.400000px;}
._46_c00381{width:63.489000px;}
._6e_c00381{width:66.213000px;}
._89_c00381{width:68.664000px;}
._83_c00381{width:70.110000px;}
._88_c00381{width:72.216000px;}
._4b_c00381{width:74.994000px;}
._70_c00381{width:77.409000px;}
._2a_c00381{width:80.640000px;}
._55_c00381{width:86.760000px;}
._44_c00381{width:89.175000px;}
._50_c00381{width:92.088000px;}
._40_c00381{width:95.700000px;}
._3e_c00381{width:96.864000px;}
._68_c00381{width:105.729000px;}
._4c_c00381{width:114.813000px;}
._2e_c00381{width:123.900000px;}
._48_c00381{width:125.715000px;}
._7c_c00381{width:126.864000px;}
._53_c00381{width:132.864000px;}
._56_c00381{width:144.684000px;}
._67_c00381{width:159.969000px;}
._79_c00381{width:164.148000px;}
._6d_c00381{width:167.916000px;}
._6c_c00381{width:179.556000px;}
._7b_c00381{width:180.588000px;}
._66_c00381{width:186.345000px;}
._87_c00381{width:191.571000px;}
._5a_c00381{width:200.496000px;}
._63_c00381{width:201.525000px;}
._6f_c00381{width:211.740000px;}
._4d_c00381{width:213.153000px;}
._65_c00381{width:215.328000px;}
._6a_c00381{width:220.380000px;}
._64_c00381{width:239.910000px;}
._57_c00381{width:257.052000px;}
._3c_c00381{width:259.680000px;}
._86_c00381{width:261.957000px;}
._78_c00381{width:268.164000px;}
._6b_c00381{width:284.904000px;}
._82_c00381{width:291.504000px;}
._7d_c00381{width:322.464000px;}
._5e_c00381{width:353.349000px;}
._80_c00381{width:404.604000px;}
._58_c00381{width:430.140000px;}
._41_c00381{width:442.629000px;}
._38_c00381{width:501.840000px;}
._7e_c00381{width:525.432000px;}
._69_c00381{width:555.771000px;}
._5c_c00381{width:636.012000px;}
._77_c00381{width:712.869000px;}
._74_c00381{width:718.038000px;}
._51_c00381{width:800.541000px;}
._72_c00381{width:837.672000px;}
._4f_c00381{width:1510.176000px;}
.fc2_c00381{color:transparent;}
.fc1_c00381{color:rgb(128,128,128);}
.fc0_c00381{color:rgb(0,0,0);}
.fs5_c00381{font-size:36.000000px;}
.fsa_c00381{font-size:48.000000px;}
.fs2_c00381{font-size:60.000000px;}
.fs9_c00381{font-size:72.000000px;}
.fs8_c00381{font-size:78.000000px;}
.fs1_c00381{font-size:84.000000px;}
.fs6_c00381{font-size:87.000000px;}
.fs4_c00381{font-size:93.000000px;}
.fs0_c00381{font-size:96.000000px;}
.fs7_c00381{font-size:102.000000px;}
.fs3_c00381{font-size:420.000000px;}
.y0_c00381{bottom:0.000000px;}
.y25_c00381{bottom:3.105000px;}
.y24_c00381{bottom:7.228357px;}
.y23_c00381{bottom:78.030000px;}
.y22_c00381{bottom:146.880000px;}
.y21_c00381{bottom:180.630000px;}
.y1f_c00381{bottom:181.530000px;}
.y20_c00381{bottom:227.430000px;}
.y1e_c00381{bottom:280.830000px;}
.y1d_c00381{bottom:319.230000px;}
.y1c_c00381{bottom:331.380000px;}
.y1b_c00381{bottom:392.280000px;}
.y1a_c00381{bottom:416.430000px;}
.y19_c00381{bottom:423.930000px;}
.y18_c00381{bottom:431.730000px;}
.y17_c00381{bottom:452.280000px;}
.y16_c00381{bottom:485.430000px;}
.y15_c00381{bottom:633.180000px;}
.y14_c00381{bottom:652.680000px;}
.y13_c00381{bottom:688.530000px;}
.y12_c00381{bottom:790.080000px;}
.y11_c00381{bottom:820.530000px;}
.y10_c00381{bottom:833.580000px;}
.ye_c00381{bottom:856.230000px;}
.yf_c00381{bottom:857.580000px;}
.yd_c00381{bottom:889.680000px;}
.yc_c00381{bottom:923.130000px;}
.yb_c00381{bottom:957.480000px;}
.ya_c00381{bottom:991.530000px;}
.y9_c00381{bottom:1024.080000px;}
.y8_c00381{bottom:1057.080000px;}
.y7_c00381{bottom:1090.530000px;}
.y6_c00381{bottom:1123.830000px;}
.y5_c00381{bottom:1157.580000px;}
.y4_c00381{bottom:1190.730000px;}
.y3_c00381{bottom:1224.180000px;}
.y2_c00381{bottom:1257.630000px;}
.y1_c00381{bottom:1285.980000px;}
.h8_c00381{height:13.200074px;}
.h9_c00381{height:43.804688px;}
.h6_c00381{height:45.580078px;}
.h5_c00381{height:84.656250px;}
.h7_c00381{height:98.314453px;}
.h4_c00381{height:110.151855px;}
.h2_c00381{height:121.546875px;}
.h3_c00381{height:412.207031px;}
.h0_c00381{height:1382.700000px;}
.h1_c00381{height:1383.000000px;}
.w2_c00381{width:104.875500px;}
.w0_c00381{width:863.175000px;}
.w1_c00381{width:863.250000px;}
.x0_c00381{left:0.000000px;}
.xd_c00381{left:128.250000px;}
.xc_c00381{left:161.700000px;}
.x11_c00381{left:252.150000px;}
.xf_c00381{left:255.600000px;}
.xb_c00381{left:259.500000px;}
.xa_c00381{left:261.000000px;}
.x6_c00381{left:262.950000px;}
.x5_c00381{left:264.900000px;}
.x4_c00381{left:265.950000px;}
.x3_c00381{left:267.000000px;}
.x2_c00381{left:268.200000px;}
.x10_c00381{left:270.900000px;}
.x12_c00381{left:275.700000px;}
.x14_c00381{left:276.750000px;}
.x13_c00381{left:282.150000px;}
.x7_c00381{left:296.550000px;}
.x1_c00381{left:298.350000px;}
.x9_c00381{left:303.750000px;}
.x17_c00381{left:310.200000px;}
.x8_c00381{left:382.800000px;}
.x16_c00381{left:637.500000px;}
.xe_c00381{left:696.300000px;}
.x15_c00381{left:746.250000px;}
.x18_c00381{left:793.050000px;}
@media print{
.v2_c00381{vertical-align:-114.133333pt;}
.v1_c00381{vertical-align:-6.933333pt;}
.v0_c00381{vertical-align:0.000000pt;}
.v3_c00381{vertical-align:88.533333pt;}
.ls3_c00381{letter-spacing:-24.000000pt;}
.ls5_c00381{letter-spacing:-5.333333pt;}
.ls2_c00381{letter-spacing:0.000000pt;}
.ls4_c00381{letter-spacing:5.333333pt;}
.ls6_c00381{letter-spacing:8.000000pt;}
.ls0_c00381{letter-spacing:14.666667pt;}
.ls1_c00381{letter-spacing:140.501333pt;}
.ws2_c00381{word-spacing:-45.962667pt;}
.ws5_c00381{word-spacing:-29.653333pt;}
.ws4_c00381{word-spacing:-28.000000pt;}
.ws0_c00381{word-spacing:-20.565333pt;}
.ws1_c00381{word-spacing:-17.994667pt;}
.ws6_c00381{word-spacing:0.000000pt;}
.ws3_c00381{word-spacing:551.296000pt;}
._2b_c00381{margin-left:-178.080000pt;}
._35_c00381{margin-left:-173.600000pt;}
._31_c00381{margin-left:-137.013333pt;}
._2d_c00381{margin-left:-129.173333pt;}
._29_c00381{margin-left:-123.200000pt;}
._37_c00381{margin-left:-98.186667pt;}
._5d_c00381{margin-left:-74.965333pt;}
._42_c00381{margin-left:-72.509333pt;}
._7a_c00381{margin-left:-67.461333pt;}
._62_c00381{margin-left:-66.389333pt;}
._61_c00381{margin-left:-62.122667pt;}
._84_c00381{margin-left:-60.930667pt;}
._33_c00381{margin-left:-59.858667pt;}
._27_c00381{margin-left:-57.866667pt;}
._2c_c00381{margin-left:-54.880000pt;}
._30_c00381{margin-left:-53.760000pt;}
._59_c00381{margin-left:-52.402667pt;}
._3d_c00381{margin-left:-47.104000pt;}
._5f_c00381{margin-left:-45.762667pt;}
._4e_c00381{margin-left:-42.325333pt;}
._75_c00381{margin-left:-41.154667pt;}
._34_c00381{margin-left:-38.026667pt;}
._47_c00381{margin-left:-33.176000pt;}
._85_c00381{margin-left:-31.042667pt;}
._2f_c00381{margin-left:-28.746667pt;}
._3a_c00381{margin-left:-26.112000pt;}
._19_c00381{margin-left:-24.810667pt;}
._60_c00381{margin-left:-23.061333pt;}
._3f_c00381{margin-left:-21.962667pt;}
._36_c00381{margin-left:-20.160000pt;}
._28_c00381{margin-left:-18.293333pt;}
._4a_c00381{margin-left:-17.186667pt;}
._49_c00381{margin-left:-15.389333pt;}
._3b_c00381{margin-left:-14.069333pt;}
._32_c00381{margin-left:-12.426667pt;}
._10_c00381{margin-left:-11.520000pt;}
._43_c00381{margin-left:-10.440000pt;}
._45_c00381{margin-left:-9.512000pt;}
._11_c00381{margin-left:-8.533333pt;}
._76_c00381{margin-left:-7.610667pt;}
._12_c00381{margin-left:-6.400000pt;}
._6_c00381{margin-left:-5.034667pt;}
._71_c00381{margin-left:-4.098667pt;}
._7_c00381{margin-left:-3.157333pt;}
._20_c00381{margin-left:-1.856000pt;}
._b_c00381{margin-left:-0.938667pt;}
._8_c00381{width:1.365333pt;}
._4_c00381{width:2.816000pt;}
._3_c00381{width:3.754667pt;}
._2_c00381{width:4.864000pt;}
._9_c00381{width:5.824000pt;}
._d_c00381{width:7.061333pt;}
._1e_c00381{width:7.957333pt;}
._1_c00381{width:9.472000pt;}
._1f_c00381{width:10.645333pt;}
._24_c00381{width:11.968000pt;}
._0_c00381{width:13.397333pt;}
._25_c00381{width:14.762667pt;}
._54_c00381{width:15.709333pt;}
._17_c00381{width:16.853333pt;}
._13_c00381{width:18.858667pt;}
._81_c00381{width:19.781333pt;}
._5b_c00381{width:20.736000pt;}
._21_c00381{width:23.274667pt;}
._e_c00381{width:25.088000pt;}
._c_c00381{width:26.624000pt;}
._39_c00381{width:27.680000pt;}
._1d_c00381{width:28.800000pt;}
._15_c00381{width:30.506667pt;}
._18_c00381{width:32.832000pt;}
._26_c00381{width:34.368000pt;}
._7f_c00381{width:35.549333pt;}
._16_c00381{width:36.778667pt;}
._5_c00381{width:37.888000pt;}
._23_c00381{width:39.146667pt;}
._f_c00381{width:40.533333pt;}
._1c_c00381{width:42.090667pt;}
._a_c00381{width:43.392000pt;}
._52_c00381{width:44.541333pt;}
._22_c00381{width:45.610667pt;}
._14_c00381{width:47.360000pt;}
._1b_c00381{width:48.298667pt;}
._73_c00381{width:52.594667pt;}
._8a_c00381{width:53.762667pt;}
._1a_c00381{width:55.466667pt;}
._46_c00381{width:56.434667pt;}
._6e_c00381{width:58.856000pt;}
._89_c00381{width:61.034667pt;}
._83_c00381{width:62.320000pt;}
._88_c00381{width:64.192000pt;}
._4b_c00381{width:66.661333pt;}
._70_c00381{width:68.808000pt;}
._2a_c00381{width:71.680000pt;}
._55_c00381{width:77.120000pt;}
._44_c00381{width:79.266667pt;}
._50_c00381{width:81.856000pt;}
._40_c00381{width:85.066667pt;}
._3e_c00381{width:86.101333pt;}
._68_c00381{width:93.981333pt;}
._4c_c00381{width:102.056000pt;}
._2e_c00381{width:110.133333pt;}
._48_c00381{width:111.746667pt;}
._7c_c00381{width:112.768000pt;}
._53_c00381{width:118.101333pt;}
._56_c00381{width:128.608000pt;}
._67_c00381{width:142.194667pt;}
._79_c00381{width:145.909333pt;}
._6d_c00381{width:149.258667pt;}
._6c_c00381{width:159.605333pt;}
._7b_c00381{width:160.522667pt;}
._66_c00381{width:165.640000pt;}
._87_c00381{width:170.285333pt;}
._5a_c00381{width:178.218667pt;}
._63_c00381{width:179.133333pt;}
._6f_c00381{width:188.213333pt;}
._4d_c00381{width:189.469333pt;}
._65_c00381{width:191.402667pt;}
._6a_c00381{width:195.893333pt;}
._64_c00381{width:213.253333pt;}
._57_c00381{width:228.490667pt;}
._3c_c00381{width:230.826667pt;}
._86_c00381{width:232.850667pt;}
._78_c00381{width:238.368000pt;}
._6b_c00381{width:253.248000pt;}
._82_c00381{width:259.114667pt;}
._7d_c00381{width:286.634667pt;}
._5e_c00381{width:314.088000pt;}
._80_c00381{width:359.648000pt;}
._58_c00381{width:382.346667pt;}
._41_c00381{width:393.448000pt;}
._38_c00381{width:446.080000pt;}
._7e_c00381{width:467.050667pt;}
._69_c00381{width:494.018667pt;}
._5c_c00381{width:565.344000pt;}
._77_c00381{width:633.661333pt;}
._74_c00381{width:638.256000pt;}
._51_c00381{width:711.592000pt;}
._72_c00381{width:744.597333pt;}
._4f_c00381{width:1342.378667pt;}
.fs5_c00381{font-size:32.000000pt;}
.fsa_c00381{font-size:42.666667pt;}
.fs2_c00381{font-size:53.333333pt;}
.fs9_c00381{font-size:64.000000pt;}
.fs8_c00381{font-size:69.333333pt;}
.fs1_c00381{font-size:74.666667pt;}
.fs6_c00381{font-size:77.333333pt;}
.fs4_c00381{font-size:82.666667pt;}
.fs0_c00381{font-size:85.333333pt;}
.fs7_c00381{font-size:90.666667pt;}
.fs3_c00381{font-size:373.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y25_c00381{bottom:2.760000pt;}
.y24_c00381{bottom:6.425206pt;}
.y23_c00381{bottom:69.360000pt;}
.y22_c00381{bottom:130.560000pt;}
.y21_c00381{bottom:160.560000pt;}
.y1f_c00381{bottom:161.360000pt;}
.y20_c00381{bottom:202.160000pt;}
.y1e_c00381{bottom:249.626667pt;}
.y1d_c00381{bottom:283.760000pt;}
.y1c_c00381{bottom:294.560000pt;}
.y1b_c00381{bottom:348.693333pt;}
.y1a_c00381{bottom:370.160000pt;}
.y19_c00381{bottom:376.826667pt;}
.y18_c00381{bottom:383.760000pt;}
.y17_c00381{bottom:402.026667pt;}
.y16_c00381{bottom:431.493333pt;}
.y15_c00381{bottom:562.826667pt;}
.y14_c00381{bottom:580.160000pt;}
.y13_c00381{bottom:612.026667pt;}
.y12_c00381{bottom:702.293333pt;}
.y11_c00381{bottom:729.360000pt;}
.y10_c00381{bottom:740.960000pt;}
.ye_c00381{bottom:761.093333pt;}
.yf_c00381{bottom:762.293333pt;}
.yd_c00381{bottom:790.826667pt;}
.yc_c00381{bottom:820.560000pt;}
.yb_c00381{bottom:851.093333pt;}
.ya_c00381{bottom:881.360000pt;}
.y9_c00381{bottom:910.293333pt;}
.y8_c00381{bottom:939.626667pt;}
.y7_c00381{bottom:969.360000pt;}
.y6_c00381{bottom:998.960000pt;}
.y5_c00381{bottom:1028.960000pt;}
.y4_c00381{bottom:1058.426667pt;}
.y3_c00381{bottom:1088.160000pt;}
.y2_c00381{bottom:1117.893333pt;}
.y1_c00381{bottom:1143.093333pt;}
.h8_c00381{height:11.733399pt;}
.h9_c00381{height:38.937500pt;}
.h6_c00381{height:40.515625pt;}
.h5_c00381{height:75.250000pt;}
.h7_c00381{height:87.390625pt;}
.h4_c00381{height:97.912760pt;}
.h2_c00381{height:108.041667pt;}
.h3_c00381{height:366.406250pt;}
.h0_c00381{height:1229.066667pt;}
.h1_c00381{height:1229.333333pt;}
.w2_c00381{width:93.222667pt;}
.w0_c00381{width:767.266667pt;}
.w1_c00381{width:767.333333pt;}
.x0_c00381{left:0.000000pt;}
.xd_c00381{left:114.000000pt;}
.xc_c00381{left:143.733333pt;}
.x11_c00381{left:224.133333pt;}
.xf_c00381{left:227.200000pt;}
.xb_c00381{left:230.666667pt;}
.xa_c00381{left:232.000000pt;}
.x6_c00381{left:233.733333pt;}
.x5_c00381{left:235.466667pt;}
.x4_c00381{left:236.400000pt;}
.x3_c00381{left:237.333333pt;}
.x2_c00381{left:238.400000pt;}
.x10_c00381{left:240.800000pt;}
.x12_c00381{left:245.066667pt;}
.x14_c00381{left:246.000000pt;}
.x13_c00381{left:250.800000pt;}
.x7_c00381{left:263.600000pt;}
.x1_c00381{left:265.200000pt;}
.x9_c00381{left:270.000000pt;}
.x17_c00381{left:275.733333pt;}
.x8_c00381{left:340.266667pt;}
.x16_c00381{left:566.666667pt;}
.xe_c00381{left:618.933333pt;}
.x15_c00381{left:663.333333pt;}
.x18_c00381{left:704.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7a881eee30b6fed20998de58.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_9457c926b80a8c0d8dcf2e86.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_c563133b5e2d9f8211d10f16.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_c4e1f12fa5c86f08433240ec.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_e547ef3073d68af890cc3f97.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00382;src:url('chunks/assets/font_89e9298c3295f5aaec1e8243.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00382;src:url('chunks/assets/font_2961b0380ebe1a11ec7c338e.woff2')format("woff");}.ff7_c00382{font-family:ff7_c00382;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00382;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00382{font-family:ff8_c00382;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00382{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00382{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.v1_c00382{vertical-align:-155.400000px;}
.v0_c00382{vertical-align:0.000000px;}
.ls9_c00382{letter-spacing:-18.000000px;}
.ls7_c00382{letter-spacing:-12.000000px;}
.ls8_c00382{letter-spacing:-9.000000px;}
.ls5_c00382{letter-spacing:-3.000000px;}
.ls4_c00382{letter-spacing:0.000000px;}
.ls6_c00382{letter-spacing:6.000000px;}
.ls3_c00382{letter-spacing:6.120000px;}
.ls1_c00382{letter-spacing:10.410000px;}
.ls2_c00382{letter-spacing:23.817600px;}
.ls0_c00382{letter-spacing:26.124000px;}
.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;}
}
.ws1_c00382{word-spacing:-31.704000px;}
.ws5_c00382{word-spacing:-20.244000px;}
.ws3_c00382{word-spacing:-8.676000px;}
.ws6_c00382{word-spacing:0.000000px;}
.ws0_c00382{word-spacing:2.784000px;}
.ws2_c00382{word-spacing:11.832000px;}
.ws4_c00382{word-spacing:31.056000px;}
._b_c00382{margin-left:-34.365000px;}
._33_c00382{margin-left:-31.968000px;}
._10_c00382{margin-left:-28.710000px;}
._e_c00382{margin-left:-25.056000px;}
._32_c00382{margin-left:-23.871000px;}
._12_c00382{margin-left:-22.794000px;}
._14_c00382{margin-left:-21.792000px;}
._c_c00382{margin-left:-17.541000px;}
._15_c00382{margin-left:-15.552000px;}
._31_c00382{margin-left:-14.496000px;}
._19_c00382{margin-left:-12.129000px;}
._13_c00382{margin-left:-10.917000px;}
._28_c00382{margin-left:-9.072000px;}
._29_c00382{margin-left:-7.056000px;}
._2a_c00382{margin-left:-6.048000px;}
._18_c00382{margin-left:-4.752000px;}
._11_c00382{margin-left:-3.567000px;}
._27_c00382{margin-left:-2.304000px;}
._24_c00382{margin-left:-1.152000px;}
._1d_c00382{width:1.008000px;}
._1c_c00382{width:2.160000px;}
._34_c00382{width:3.168000px;}
._22_c00382{width:4.176000px;}
._a_c00382{width:5.616000px;}
._21_c00382{width:6.768000px;}
._2_c00382{width:8.064000px;}
._9_c00382{width:9.216000px;}
._8_c00382{width:10.368000px;}
._1_c00382{width:11.952000px;}
._2b_c00382{width:13.791000px;}
._3_c00382{width:15.552000px;}
._5_c00382{width:17.424000px;}
._6_c00382{width:19.152000px;}
._40_c00382{width:20.262000px;}
._d_c00382{width:21.264000px;}
._26_c00382{width:22.440000px;}
._25_c00382{width:24.075000px;}
._36_c00382{width:25.473000px;}
._0_c00382{width:28.512000px;}
._20_c00382{width:30.528000px;}
._37_c00382{width:32.334000px;}
._2f_c00382{width:34.350000px;}
._38_c00382{width:36.762000px;}
._1a_c00382{width:38.421000px;}
._4e_c00382{width:39.723000px;}
._4_c00382{width:40.896000px;}
._44_c00382{width:43.080000px;}
._49_c00382{width:45.234000px;}
._23_c00382{width:47.064000px;}
._4f_c00382{width:49.119000px;}
._35_c00382{width:50.304000px;}
._2d_c00382{width:52.128000px;}
._42_c00382{width:54.264000px;}
._2c_c00382{width:56.736000px;}
._7_c00382{width:58.320000px;}
._50_c00382{width:63.264000px;}
._47_c00382{width:65.280000px;}
._3d_c00382{width:66.456000px;}
._41_c00382{width:69.054000px;}
._1b_c00382{width:70.848000px;}
._2e_c00382{width:77.472000px;}
._4d_c00382{width:79.686000px;}
._45_c00382{width:81.093000px;}
._4a_c00382{width:82.224000px;}
._1e_c00382{width:83.808000px;}
._43_c00382{width:85.476000px;}
._16_c00382{width:94.464000px;}
._39_c00382{width:109.641000px;}
._48_c00382{width:116.472000px;}
._3f_c00382{width:120.522000px;}
._3b_c00382{width:124.308000px;}
._30_c00382{width:130.896000px;}
._1f_c00382{width:187.632000px;}
._3c_c00382{width:202.824000px;}
._46_c00382{width:219.834000px;}
._f_c00382{width:241.512000px;}
._4c_c00382{width:254.784000px;}
._3e_c00382{width:315.459000px;}
._51_c00382{width:326.352000px;}
._4b_c00382{width:352.848000px;}
._17_c00382{width:435.741000px;}
._3a_c00382{width:748.224000px;}
.fc2_c00382{color:transparent;}
.fc1_c00382{color:rgb(128,128,128);}
.fc0_c00382{color:rgb(0,0,0);}
.fs5_c00382{font-size:36.000000px;}
.fsa_c00382{font-size:48.000000px;}
.fs8_c00382{font-size:76.800000px;}
.fs9_c00382{font-size:84.000000px;}
.fs2_c00382{font-size:87.000000px;}
.fs0_c00382{font-size:96.000000px;}
.fs7_c00382{font-size:102.000000px;}
.fs6_c00382{font-size:111.000000px;}
.fs3_c00382{font-size:117.000000px;}
.fs1_c00382{font-size:144.000000px;}
.fs4_c00382{font-size:168.000000px;}
.y0_c00382{bottom:0.000000px;}
.y20_c00382{bottom:3.105000px;}
.y1f_c00382{bottom:7.228369px;}
.y1e_c00382{bottom:80.970000px;}
.y1d_c00382{bottom:111.270000px;}
.y1c_c00382{bottom:147.120000px;}
.y1b_c00382{bottom:180.270000px;}
.y1a_c00382{bottom:215.370000px;}
.y19_c00382{bottom:248.970000px;}
.y18_c00382{bottom:282.870000px;}
.y17_c00382{bottom:315.870000px;}
.y16_c00382{bottom:349.620000px;}
.y15_c00382{bottom:385.320000px;}
.y14_c00382{bottom:417.120000px;}
.y13_c00382{bottom:452.520000px;}
.y12_c00382{bottom:485.670000px;}
.y11_c00382{bottom:516.720000px;}
.y10_c00382{bottom:608.220000px;}
.yf_c00382{bottom:657.720000px;}
.ye_c00382{bottom:696.570000px;}
.yd_c00382{bottom:706.020000px;}
.yc_c00382{bottom:793.170000px;}
.ya_c00382{bottom:893.370000px;}
.yb_c00382{bottom:923.970000px;}
.y9_c00382{bottom:943.320000px;}
.y8_c00382{bottom:993.270000px;}
.y7_c00382{bottom:1043.820000px;}
.y6_c00382{bottom:1094.070000px;}
.y5_c00382{bottom:1144.470000px;}
.y4_c00382{bottom:1193.670000px;}
.y3_c00382{bottom:1230.420000px;}
.y2_c00382{bottom:1244.070000px;}
.y1_c00382{bottom:1288.470000px;}
.h7_c00382{height:13.200073px;}
.h8_c00382{height:43.804688px;}
.h4_c00382{height:45.580078px;}
.h2_c00382{height:121.546875px;}
.h5_c00382{height:124.839000px;}
.h6_c00382{height:129.915527px;}
.h3_c00382{height:182.320312px;}
.h0_c00382{height:1383.450000px;}
.h1_c00382{height:1383.750000px;}
.w2_c00382{width:104.875500px;}
.w0_c00382{width:878.025000px;}
.w1_c00382{width:878.250000px;}
.x0_c00382{left:0.000000px;}
.x9_c00382{left:40.500000px;}
.x11_c00382{left:41.850000px;}
.x5_c00382{left:44.550000px;}
.x4_c00382{left:46.200000px;}
.x2_c00382{left:48.000000px;}
.x12_c00382{left:50.400000px;}
.x13_c00382{left:52.050000px;}
.x14_c00382{left:54.300000px;}
.xa_c00382{left:65.700000px;}
.xb_c00382{left:67.500000px;}
.xd_c00382{left:69.300000px;}
.xf_c00382{left:92.250000px;}
.xc_c00382{left:103.200000px;}
.x10_c00382{left:176.850000px;}
.x6_c00382{left:179.100000px;}
.xe_c00382{left:255.150000px;}
.x3_c00382{left:273.000000px;}
.x8_c00382{left:277.200000px;}
.x16_c00382{left:390.826721px;}
.x7_c00382{left:457.650000px;}
.x15_c00382{left:485.700000px;}
.x1_c00382{left:528.450000px;}
@media print{
.v1_c00382{vertical-align:-138.133333pt;}
.v0_c00382{vertical-align:0.000000pt;}
.ls9_c00382{letter-spacing:-16.000000pt;}
.ls7_c00382{letter-spacing:-10.666667pt;}
.ls8_c00382{letter-spacing:-8.000000pt;}
.ls5_c00382{letter-spacing:-2.666667pt;}
.ls4_c00382{letter-spacing:0.000000pt;}
.ls6_c00382{letter-spacing:5.333333pt;}
.ls3_c00382{letter-spacing:5.440000pt;}
.ls1_c00382{letter-spacing:9.253333pt;}
.ls2_c00382{letter-spacing:21.171200pt;}
.ls0_c00382{letter-spacing:23.221333pt;}
.ws1_c00382{word-spacing:-28.181333pt;}
.ws5_c00382{word-spacing:-17.994667pt;}
.ws3_c00382{word-spacing:-7.712000pt;}
.ws6_c00382{word-spacing:0.000000pt;}
.ws0_c00382{word-spacing:2.474667pt;}
.ws2_c00382{word-spacing:10.517333pt;}
.ws4_c00382{word-spacing:27.605333pt;}
._b_c00382{margin-left:-30.546667pt;}
._33_c00382{margin-left:-28.416000pt;}
._10_c00382{margin-left:-25.520000pt;}
._e_c00382{margin-left:-22.272000pt;}
._32_c00382{margin-left:-21.218667pt;}
._12_c00382{margin-left:-20.261333pt;}
._14_c00382{margin-left:-19.370667pt;}
._c_c00382{margin-left:-15.592000pt;}
._15_c00382{margin-left:-13.824000pt;}
._31_c00382{margin-left:-12.885333pt;}
._19_c00382{margin-left:-10.781333pt;}
._13_c00382{margin-left:-9.704000pt;}
._28_c00382{margin-left:-8.064000pt;}
._29_c00382{margin-left:-6.272000pt;}
._2a_c00382{margin-left:-5.376000pt;}
._18_c00382{margin-left:-4.224000pt;}
._11_c00382{margin-left:-3.170667pt;}
._27_c00382{margin-left:-2.048000pt;}
._24_c00382{margin-left:-1.024000pt;}
._1d_c00382{width:0.896000pt;}
._1c_c00382{width:1.920000pt;}
._34_c00382{width:2.816000pt;}
._22_c00382{width:3.712000pt;}
._a_c00382{width:4.992000pt;}
._21_c00382{width:6.016000pt;}
._2_c00382{width:7.168000pt;}
._9_c00382{width:8.192000pt;}
._8_c00382{width:9.216000pt;}
._1_c00382{width:10.624000pt;}
._2b_c00382{width:12.258667pt;}
._3_c00382{width:13.824000pt;}
._5_c00382{width:15.488000pt;}
._6_c00382{width:17.024000pt;}
._40_c00382{width:18.010667pt;}
._d_c00382{width:18.901333pt;}
._26_c00382{width:19.946667pt;}
._25_c00382{width:21.400000pt;}
._36_c00382{width:22.642667pt;}
._0_c00382{width:25.344000pt;}
._20_c00382{width:27.136000pt;}
._37_c00382{width:28.741333pt;}
._2f_c00382{width:30.533333pt;}
._38_c00382{width:32.677333pt;}
._1a_c00382{width:34.152000pt;}
._4e_c00382{width:35.309333pt;}
._4_c00382{width:36.352000pt;}
._44_c00382{width:38.293333pt;}
._49_c00382{width:40.208000pt;}
._23_c00382{width:41.834667pt;}
._4f_c00382{width:43.661333pt;}
._35_c00382{width:44.714667pt;}
._2d_c00382{width:46.336000pt;}
._42_c00382{width:48.234667pt;}
._2c_c00382{width:50.432000pt;}
._7_c00382{width:51.840000pt;}
._50_c00382{width:56.234667pt;}
._47_c00382{width:58.026667pt;}
._3d_c00382{width:59.072000pt;}
._41_c00382{width:61.381333pt;}
._1b_c00382{width:62.976000pt;}
._2e_c00382{width:68.864000pt;}
._4d_c00382{width:70.832000pt;}
._45_c00382{width:72.082667pt;}
._4a_c00382{width:73.088000pt;}
._1e_c00382{width:74.496000pt;}
._43_c00382{width:75.978667pt;}
._16_c00382{width:83.968000pt;}
._39_c00382{width:97.458667pt;}
._48_c00382{width:103.530667pt;}
._3f_c00382{width:107.130667pt;}
._3b_c00382{width:110.496000pt;}
._30_c00382{width:116.352000pt;}
._1f_c00382{width:166.784000pt;}
._3c_c00382{width:180.288000pt;}
._46_c00382{width:195.408000pt;}
._f_c00382{width:214.677333pt;}
._4c_c00382{width:226.474667pt;}
._3e_c00382{width:280.408000pt;}
._51_c00382{width:290.090667pt;}
._4b_c00382{width:313.642667pt;}
._17_c00382{width:387.325333pt;}
._3a_c00382{width:665.088000pt;}
.fs5_c00382{font-size:32.000000pt;}
.fsa_c00382{font-size:42.666667pt;}
.fs8_c00382{font-size:68.266667pt;}
.fs9_c00382{font-size:74.666667pt;}
.fs2_c00382{font-size:77.333333pt;}
.fs0_c00382{font-size:85.333333pt;}
.fs7_c00382{font-size:90.666667pt;}
.fs6_c00382{font-size:98.666667pt;}
.fs3_c00382{font-size:104.000000pt;}
.fs1_c00382{font-size:128.000000pt;}
.fs4_c00382{font-size:149.333333pt;}
.y0_c00382{bottom:0.000000pt;}
.y20_c00382{bottom:2.760000pt;}
.y1f_c00382{bottom:6.425217pt;}
.y1e_c00382{bottom:71.973333pt;}
.y1d_c00382{bottom:98.906667pt;}
.y1c_c00382{bottom:130.773333pt;}
.y1b_c00382{bottom:160.240000pt;}
.y1a_c00382{bottom:191.440000pt;}
.y19_c00382{bottom:221.306667pt;}
.y18_c00382{bottom:251.440000pt;}
.y17_c00382{bottom:280.773333pt;}
.y16_c00382{bottom:310.773333pt;}
.y15_c00382{bottom:342.506667pt;}
.y14_c00382{bottom:370.773333pt;}
.y13_c00382{bottom:402.240000pt;}
.y12_c00382{bottom:431.706667pt;}
.y11_c00382{bottom:459.306667pt;}
.y10_c00382{bottom:540.640000pt;}
.yf_c00382{bottom:584.640000pt;}
.ye_c00382{bottom:619.173333pt;}
.yd_c00382{bottom:627.573333pt;}
.yc_c00382{bottom:705.040000pt;}
.ya_c00382{bottom:794.106667pt;}
.yb_c00382{bottom:821.306667pt;}
.y9_c00382{bottom:838.506667pt;}
.y8_c00382{bottom:882.906667pt;}
.y7_c00382{bottom:927.840000pt;}
.y6_c00382{bottom:972.506667pt;}
.y5_c00382{bottom:1017.306667pt;}
.y4_c00382{bottom:1061.040000pt;}
.y3_c00382{bottom:1093.706667pt;}
.y2_c00382{bottom:1105.840000pt;}
.y1_c00382{bottom:1145.306667pt;}
.h7_c00382{height:11.733399pt;}
.h8_c00382{height:38.937500pt;}
.h4_c00382{height:40.515625pt;}
.h2_c00382{height:108.041667pt;}
.h5_c00382{height:110.968000pt;}
.h6_c00382{height:115.480469pt;}
.h3_c00382{height:162.062500pt;}
.h0_c00382{height:1229.733333pt;}
.h1_c00382{height:1230.000000pt;}
.w2_c00382{width:93.222667pt;}
.w0_c00382{width:780.466667pt;}
.w1_c00382{width:780.666667pt;}
.x0_c00382{left:0.000000pt;}
.x9_c00382{left:36.000000pt;}
.x11_c00382{left:37.200000pt;}
.x5_c00382{left:39.600000pt;}
.x4_c00382{left:41.066667pt;}
.x2_c00382{left:42.666667pt;}
.x12_c00382{left:44.800000pt;}
.x13_c00382{left:46.266667pt;}
.x14_c00382{left:48.266667pt;}
.xa_c00382{left:58.400000pt;}
.xb_c00382{left:60.000000pt;}
.xd_c00382{left:61.600000pt;}
.xf_c00382{left:82.000000pt;}
.xc_c00382{left:91.733333pt;}
.x10_c00382{left:157.200000pt;}
.x6_c00382{left:159.200000pt;}
.xe_c00382{left:226.800000pt;}
.x3_c00382{left:242.666667pt;}
.x8_c00382{left:246.400000pt;}
.x16_c00382{left:347.401530pt;}
.x7_c00382{left:406.800000pt;}
.x15_c00382{left:431.733333pt;}
.x1_c00382{left:469.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e1e2e5419dba1f02cb62b1bb.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_1cb6612ee2c55edead1ca479.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;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_c00383;src:url('chunks/assets/font_be54493ece849a8880a037c8.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_3d95a52a6bcc38e8dfb69b5a.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00383;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00383;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00383{font-family:ff6_c00383;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls5_c00383{letter-spacing:-6.000000px;}
.ls4_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:1.914000px;}
.ls1_c00383{letter-spacing:5.400000px;}
.ls2_c00383{letter-spacing:13.800000px;}
.ls3_c00383{letter-spacing:21.852000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-76.038000px;}
.ws1_c00383{word-spacing:-38.826000px;}
.ws4_c00383{word-spacing:-23.136000px;}
.ws2_c00383{word-spacing:-20.244000px;}
.ws5_c00383{word-spacing:0.000000px;}
.ws3_c00383{word-spacing:2.856000px;}
._36_c00383{margin-left:-71.988000px;}
._37_c00383{margin-left:-32.970000px;}
._38_c00383{margin-left:-20.160000px;}
._2a_c00383{margin-left:-18.930000px;}
._29_c00383{margin-left:-17.412000px;}
._11_c00383{margin-left:-16.182000px;}
._0_c00383{margin-left:-13.200000px;}
._25_c00383{margin-left:-11.769000px;}
._10_c00383{margin-left:-10.617000px;}
._30_c00383{margin-left:-9.591000px;}
._c_c00383{margin-left:-8.568000px;}
._19_c00383{margin-left:-6.690000px;}
._1_c00383{margin-left:-4.692000px;}
._4_c00383{margin-left:-2.856000px;}
._d_c00383{margin-left:-1.020000px;}
._3_c00383{width:1.632000px;}
._13_c00383{width:3.090000px;}
._7_c00383{width:4.590000px;}
._8_c00383{width:5.916000px;}
._6_c00383{width:7.140000px;}
._9_c00383{width:8.364000px;}
._24_c00383{width:9.540000px;}
._a_c00383{width:10.608000px;}
._1f_c00383{width:11.820000px;}
._2_c00383{width:13.260000px;}
._e_c00383{width:14.892000px;}
._17_c00383{width:16.428000px;}
._1a_c00383{width:17.724000px;}
._1b_c00383{width:19.770000px;}
._15_c00383{width:21.480000px;}
._16_c00383{width:24.150000px;}
._12_c00383{width:26.034000px;}
._3f_c00383{width:27.372000px;}
._14_c00383{width:28.434000px;}
._23_c00383{width:30.006000px;}
._18_c00383{width:31.824000px;}
._f_c00383{width:33.474000px;}
._3d_c00383{width:34.656000px;}
._21_c00383{width:36.090000px;}
._b_c00383{width:37.434000px;}
._34_c00383{width:38.838000px;}
._26_c00383{width:39.978000px;}
._1c_c00383{width:41.070000px;}
._22_c00383{width:42.966000px;}
._3b_c00383{width:44.340000px;}
._5_c00383{width:45.594000px;}
._32_c00383{width:46.722000px;}
._1e_c00383{width:47.910000px;}
._20_c00383{width:49.926000px;}
._3e_c00383{width:51.246000px;}
._2e_c00383{width:52.254000px;}
._1d_c00383{width:54.126000px;}
._27_c00383{width:56.472000px;}
._3c_c00383{width:57.600000px;}
._2d_c00383{width:58.776000px;}
._2f_c00383{width:60.270000px;}
._33_c00383{width:67.620000px;}
._3a_c00383{width:83.856000px;}
._2c_c00383{width:85.830000px;}
._28_c00383{width:172.995000px;}
._39_c00383{width:174.510000px;}
._31_c00383{width:188.025000px;}
._2b_c00383{width:192.291000px;}
._35_c00383{width:432.276000px;}
.fc2_c00383{color:transparent;}
.fc1_c00383{color:rgb(128,128,128);}
.fc0_c00383{color:rgb(0,0,0);}
.fs5_c00383{font-size:48.000000px;}
.fs4_c00383{font-size:84.000000px;}
.fs2_c00383{font-size:93.000000px;}
.fs3_c00383{font-size:96.000000px;}
.fs0_c00383{font-size:102.000000px;}
.fs1_c00383{font-size:114.000000px;}
.y0_c00383{bottom:0.000000px;}
.y26_c00383{bottom:3.105000px;}
.y25_c00383{bottom:7.228369px;}
.y24_c00383{bottom:71.820000px;}
.y23_c00383{bottom:104.220000px;}
.y22_c00383{bottom:139.020000px;}
.y21_c00383{bottom:173.370000px;}
.y20_c00383{bottom:206.670000px;}
.y1f_c00383{bottom:241.020000px;}
.y1e_c00383{bottom:275.370000px;}
.y1d_c00383{bottom:309.420000px;}
.y1c_c00383{bottom:343.170000px;}
.y1b_c00383{bottom:376.620000px;}
.y1a_c00383{bottom:414.120000px;}
.y19_c00383{bottom:444.870000px;}
.y18_c00383{bottom:478.920000px;}
.y17_c00383{bottom:512.970000px;}
.y16_c00383{bottom:545.970000px;}
.y15_c00383{bottom:580.770000px;}
.y14_c00383{bottom:613.620000px;}
.y13_c00383{bottom:647.220000px;}
.y12_c00383{bottom:681.420000px;}
.y11_c00383{bottom:714.420000px;}
.y10_c00383{bottom:748.620000px;}
.yf_c00383{bottom:781.920000px;}
.ye_c00383{bottom:815.370000px;}
.yd_c00383{bottom:849.420000px;}
.yc_c00383{bottom:882.270000px;}
.yb_c00383{bottom:916.020000px;}
.ya_c00383{bottom:949.320000px;}
.y9_c00383{bottom:982.470000px;}
.y8_c00383{bottom:1015.170000px;}
.y7_c00383{bottom:1047.870000px;}
.y6_c00383{bottom:1081.320000px;}
.y5_c00383{bottom:1114.470000px;}
.y4_c00383{bottom:1148.070000px;}
.y3_c00383{bottom:1181.220000px;}
.y2_c00383{bottom:1214.670000px;}
.y1_c00383{bottom:1248.420000px;}
.h4_c00383{height:13.200073px;}
.h5_c00383{height:43.804688px;}
.h3_c00383{height:121.546875px;}
.h2_c00383{height:129.143555px;}
.h0_c00383{height:1369.950000px;}
.h1_c00383{height:1370.250000px;}
.w2_c00383{width:104.875500px;}
.w0_c00383{width:854.850000px;}
.w1_c00383{width:855.000000px;}
.x0_c00383{left:0.000000px;}
.xc_c00383{left:260.550000px;}
.x3_c00383{left:264.300000px;}
.x5_c00383{left:265.950000px;}
.x4_c00383{left:267.000000px;}
.x1_c00383{left:268.200000px;}
.x2_c00383{left:269.250000px;}
.xb_c00383{left:272.400000px;}
.x8_c00383{left:285.900000px;}
.x9_c00383{left:315.600000px;}
.xa_c00383{left:317.250000px;}
.x7_c00383{left:318.300000px;}
.xe_c00383{left:379.239258px;}
.x6_c00383{left:415.500000px;}
.xd_c00383{left:795.600000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls5_c00383{letter-spacing:-5.333333pt;}
.ls4_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:1.701333pt;}
.ls1_c00383{letter-spacing:4.800000pt;}
.ls2_c00383{letter-spacing:12.266667pt;}
.ls3_c00383{letter-spacing:19.424000pt;}
.ws0_c00383{word-spacing:-67.589333pt;}
.ws1_c00383{word-spacing:-34.512000pt;}
.ws4_c00383{word-spacing:-20.565333pt;}
.ws2_c00383{word-spacing:-17.994667pt;}
.ws5_c00383{word-spacing:0.000000pt;}
.ws3_c00383{word-spacing:2.538667pt;}
._36_c00383{margin-left:-63.989333pt;}
._37_c00383{margin-left:-29.306667pt;}
._38_c00383{margin-left:-17.920000pt;}
._2a_c00383{margin-left:-16.826667pt;}
._29_c00383{margin-left:-15.477333pt;}
._11_c00383{margin-left:-14.384000pt;}
._0_c00383{margin-left:-11.733333pt;}
._25_c00383{margin-left:-10.461333pt;}
._10_c00383{margin-left:-9.437333pt;}
._30_c00383{margin-left:-8.525333pt;}
._c_c00383{margin-left:-7.616000pt;}
._19_c00383{margin-left:-5.946667pt;}
._1_c00383{margin-left:-4.170667pt;}
._4_c00383{margin-left:-2.538667pt;}
._d_c00383{margin-left:-0.906667pt;}
._3_c00383{width:1.450667pt;}
._13_c00383{width:2.746667pt;}
._7_c00383{width:4.080000pt;}
._8_c00383{width:5.258667pt;}
._6_c00383{width:6.346667pt;}
._9_c00383{width:7.434667pt;}
._24_c00383{width:8.480000pt;}
._a_c00383{width:9.429333pt;}
._1f_c00383{width:10.506667pt;}
._2_c00383{width:11.786667pt;}
._e_c00383{width:13.237333pt;}
._17_c00383{width:14.602667pt;}
._1a_c00383{width:15.754667pt;}
._1b_c00383{width:17.573333pt;}
._15_c00383{width:19.093333pt;}
._16_c00383{width:21.466667pt;}
._12_c00383{width:23.141333pt;}
._3f_c00383{width:24.330667pt;}
._14_c00383{width:25.274667pt;}
._23_c00383{width:26.672000pt;}
._18_c00383{width:28.288000pt;}
._f_c00383{width:29.754667pt;}
._3d_c00383{width:30.805333pt;}
._21_c00383{width:32.080000pt;}
._b_c00383{width:33.274667pt;}
._34_c00383{width:34.522667pt;}
._26_c00383{width:35.536000pt;}
._1c_c00383{width:36.506667pt;}
._22_c00383{width:38.192000pt;}
._3b_c00383{width:39.413333pt;}
._5_c00383{width:40.528000pt;}
._32_c00383{width:41.530667pt;}
._1e_c00383{width:42.586667pt;}
._20_c00383{width:44.378667pt;}
._3e_c00383{width:45.552000pt;}
._2e_c00383{width:46.448000pt;}
._1d_c00383{width:48.112000pt;}
._27_c00383{width:50.197333pt;}
._3c_c00383{width:51.200000pt;}
._2d_c00383{width:52.245333pt;}
._2f_c00383{width:53.573333pt;}
._33_c00383{width:60.106667pt;}
._3a_c00383{width:74.538667pt;}
._2c_c00383{width:76.293333pt;}
._28_c00383{width:153.773333pt;}
._39_c00383{width:155.120000pt;}
._31_c00383{width:167.133333pt;}
._2b_c00383{width:170.925333pt;}
._35_c00383{width:384.245333pt;}
.fs5_c00383{font-size:42.666667pt;}
.fs4_c00383{font-size:74.666667pt;}
.fs2_c00383{font-size:82.666667pt;}
.fs3_c00383{font-size:85.333333pt;}
.fs0_c00383{font-size:90.666667pt;}
.fs1_c00383{font-size:101.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y26_c00383{bottom:2.760000pt;}
.y25_c00383{bottom:6.425217pt;}
.y24_c00383{bottom:63.840000pt;}
.y23_c00383{bottom:92.640000pt;}
.y22_c00383{bottom:123.573333pt;}
.y21_c00383{bottom:154.106667pt;}
.y20_c00383{bottom:183.706667pt;}
.y1f_c00383{bottom:214.240000pt;}
.y1e_c00383{bottom:244.773333pt;}
.y1d_c00383{bottom:275.040000pt;}
.y1c_c00383{bottom:305.040000pt;}
.y1b_c00383{bottom:334.773333pt;}
.y1a_c00383{bottom:368.106667pt;}
.y19_c00383{bottom:395.440000pt;}
.y18_c00383{bottom:425.706667pt;}
.y17_c00383{bottom:455.973333pt;}
.y16_c00383{bottom:485.306667pt;}
.y15_c00383{bottom:516.240000pt;}
.y14_c00383{bottom:545.440000pt;}
.y13_c00383{bottom:575.306667pt;}
.y12_c00383{bottom:605.706667pt;}
.y11_c00383{bottom:635.040000pt;}
.y10_c00383{bottom:665.440000pt;}
.yf_c00383{bottom:695.040000pt;}
.ye_c00383{bottom:724.773333pt;}
.yd_c00383{bottom:755.040000pt;}
.yc_c00383{bottom:784.240000pt;}
.yb_c00383{bottom:814.240000pt;}
.ya_c00383{bottom:843.840000pt;}
.y9_c00383{bottom:873.306667pt;}
.y8_c00383{bottom:902.373333pt;}
.y7_c00383{bottom:931.440000pt;}
.y6_c00383{bottom:961.173333pt;}
.y5_c00383{bottom:990.640000pt;}
.y4_c00383{bottom:1020.506667pt;}
.y3_c00383{bottom:1049.973333pt;}
.y2_c00383{bottom:1079.706667pt;}
.y1_c00383{bottom:1109.706667pt;}
.h4_c00383{height:11.733399pt;}
.h5_c00383{height:38.937500pt;}
.h3_c00383{height:108.041667pt;}
.h2_c00383{height:114.794271pt;}
.h0_c00383{height:1217.733333pt;}
.h1_c00383{height:1218.000000pt;}
.w2_c00383{width:93.222667pt;}
.w0_c00383{width:759.866667pt;}
.w1_c00383{width:760.000000pt;}
.x0_c00383{left:0.000000pt;}
.xc_c00383{left:231.600000pt;}
.x3_c00383{left:234.933333pt;}
.x5_c00383{left:236.400000pt;}
.x4_c00383{left:237.333333pt;}
.x1_c00383{left:238.400000pt;}
.x2_c00383{left:239.333333pt;}
.xb_c00383{left:242.133333pt;}
.x8_c00383{left:254.133333pt;}
.x9_c00383{left:280.533333pt;}
.xa_c00383{left:282.000000pt;}
.x7_c00383{left:282.933333pt;}
.xe_c00383{left:337.101563pt;}
.x6_c00383{left:369.333333pt;}
.xd_c00383{left:707.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_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_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;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:ff2_c00384;src:url('chunks/assets/font_ab6616f77568c2d041976f8d.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_d961bdd8da9a15f48de1ceb3.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls3_c00384{letter-spacing:0.000000px;}
.ls2_c00384{letter-spacing:10.920000px;}
.ls1_c00384{letter-spacing:13.800000px;}
.ls0_c00384{letter-spacing:15.600000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:-23.136000px;}
.ws1_c00384{word-spacing:-20.244000px;}
.ws2_c00384{word-spacing:0.000000px;}
._27_c00384{margin-left:-21.360000px;}
._e_c00384{margin-left:-15.168000px;}
._8_c00384{margin-left:-5.184000px;}
._16_c00384{margin-left:-3.048000px;}
._3_c00384{margin-left:-1.536000px;}
._a_c00384{width:1.248000px;}
._1_c00384{width:2.400000px;}
._0_c00384{width:3.552000px;}
._6_c00384{width:5.280000px;}
._5_c00384{width:6.912000px;}
._9_c00384{width:8.064000px;}
._2_c00384{width:9.192000px;}
._7_c00384{width:10.848000px;}
._4_c00384{width:11.904000px;}
._1f_c00384{width:12.984000px;}
._1d_c00384{width:13.992000px;}
._f_c00384{width:15.360000px;}
._15_c00384{width:16.800000px;}
._14_c00384{width:17.952000px;}
._c_c00384{width:19.296000px;}
._18_c00384{width:20.544000px;}
._d_c00384{width:21.888000px;}
._2c_c00384{width:22.920000px;}
._1c_c00384{width:24.384000px;}
._1a_c00384{width:25.728000px;}
._17_c00384{width:27.744000px;}
._29_c00384{width:29.148000px;}
._11_c00384{width:30.432000px;}
._19_c00384{width:32.280000px;}
._b_c00384{width:34.464000px;}
._1b_c00384{width:36.576000px;}
._26_c00384{width:37.920000px;}
._12_c00384{width:39.456000px;}
._13_c00384{width:41.280000px;}
._2b_c00384{width:42.336000px;}
._22_c00384{width:43.488000px;}
._20_c00384{width:45.480000px;}
._10_c00384{width:47.424000px;}
._24_c00384{width:49.272000px;}
._28_c00384{width:51.048000px;}
._2a_c00384{width:52.536000px;}
._25_c00384{width:55.548000px;}
._21_c00384{width:58.080000px;}
._23_c00384{width:62.304000px;}
._1e_c00384{width:177.528000px;}
._2d_c00384{width:769.056000px;}
.fc2_c00384{color:transparent;}
.fc1_c00384{color:rgb(128,128,128);}
.fc0_c00384{color:rgb(0,0,0);}
.fs3_c00384{font-size:48.000000px;}
.fs2_c00384{font-size:84.000000px;}
.fs1_c00384{font-size:96.000000px;}
.fs0_c00384{font-size:102.000000px;}
.y0_c00384{bottom:0.000000px;}
.y26_c00384{bottom:3.105000px;}
.y25_c00384{bottom:7.228369px;}
.y24_c00384{bottom:101.970000px;}
.y23_c00384{bottom:134.370000px;}
.y22_c00384{bottom:169.020000px;}
.y21_c00384{bottom:203.070000px;}
.y20_c00384{bottom:236.820000px;}
.y1f_c00384{bottom:270.270000px;}
.y1e_c00384{bottom:304.020000px;}
.y1d_c00384{bottom:337.770000px;}
.y1c_c00384{bottom:370.920000px;}
.y1b_c00384{bottom:404.670000px;}
.y1a_c00384{bottom:437.670000px;}
.y19_c00384{bottom:470.520000px;}
.y18_c00384{bottom:504.570000px;}
.y17_c00384{bottom:537.570000px;}
.y16_c00384{bottom:570.420000px;}
.y15_c00384{bottom:604.470000px;}
.y14_c00384{bottom:637.770000px;}
.y13_c00384{bottom:671.520000px;}
.y12_c00384{bottom:704.970000px;}
.y11_c00384{bottom:737.820000px;}
.y10_c00384{bottom:771.420000px;}
.yf_c00384{bottom:804.570000px;}
.ye_c00384{bottom:837.720000px;}
.yd_c00384{bottom:869.970000px;}
.yc_c00384{bottom:903.120000px;}
.yb_c00384{bottom:936.120000px;}
.ya_c00384{bottom:969.570000px;}
.y9_c00384{bottom:1002.420000px;}
.y8_c00384{bottom:1035.720000px;}
.y7_c00384{bottom:1068.570000px;}
.y6_c00384{bottom:1098.870000px;}
.y5_c00384{bottom:1135.320000px;}
.y4_c00384{bottom:1166.970000px;}
.y3_c00384{bottom:1200.120000px;}
.y2_c00384{bottom:1233.120000px;}
.y1_c00384{bottom:1266.270000px;}
.h3_c00384{height:13.200073px;}
.h4_c00384{height:43.804688px;}
.h2_c00384{height:121.546875px;}
.h0_c00384{height:1383.450000px;}
.h1_c00384{height:1383.750000px;}
.w2_c00384{width:104.875500px;}
.w0_c00384{width:878.025000px;}
.w1_c00384{width:878.250000px;}
.x0_c00384{left:0.000000px;}
.x6_c00384{left:31.050000px;}
.x5_c00384{left:32.700000px;}
.x3_c00384{left:34.350000px;}
.x1_c00384{left:36.000000px;}
.x2_c00384{left:37.050000px;}
.x8_c00384{left:38.700000px;}
.x9_c00384{left:40.200000px;}
.xa_c00384{left:42.450000px;}
.x7_c00384{left:81.300000px;}
.x4_c00384{left:84.600000px;}
.xb_c00384{left:305.700000px;}
.xc_c00384{left:390.826721px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls3_c00384{letter-spacing:0.000000pt;}
.ls2_c00384{letter-spacing:9.706667pt;}
.ls1_c00384{letter-spacing:12.266667pt;}
.ls0_c00384{letter-spacing:13.866667pt;}
.ws0_c00384{word-spacing:-20.565333pt;}
.ws1_c00384{word-spacing:-17.994667pt;}
.ws2_c00384{word-spacing:0.000000pt;}
._27_c00384{margin-left:-18.986667pt;}
._e_c00384{margin-left:-13.482667pt;}
._8_c00384{margin-left:-4.608000pt;}
._16_c00384{margin-left:-2.709333pt;}
._3_c00384{margin-left:-1.365333pt;}
._a_c00384{width:1.109333pt;}
._1_c00384{width:2.133333pt;}
._0_c00384{width:3.157333pt;}
._6_c00384{width:4.693333pt;}
._5_c00384{width:6.144000pt;}
._9_c00384{width:7.168000pt;}
._2_c00384{width:8.170667pt;}
._7_c00384{width:9.642667pt;}
._4_c00384{width:10.581333pt;}
._1f_c00384{width:11.541333pt;}
._1d_c00384{width:12.437333pt;}
._f_c00384{width:13.653333pt;}
._15_c00384{width:14.933333pt;}
._14_c00384{width:15.957333pt;}
._c_c00384{width:17.152000pt;}
._18_c00384{width:18.261333pt;}
._d_c00384{width:19.456000pt;}
._2c_c00384{width:20.373333pt;}
._1c_c00384{width:21.674667pt;}
._1a_c00384{width:22.869333pt;}
._17_c00384{width:24.661333pt;}
._29_c00384{width:25.909333pt;}
._11_c00384{width:27.050667pt;}
._19_c00384{width:28.693333pt;}
._b_c00384{width:30.634667pt;}
._1b_c00384{width:32.512000pt;}
._26_c00384{width:33.706667pt;}
._12_c00384{width:35.072000pt;}
._13_c00384{width:36.693333pt;}
._2b_c00384{width:37.632000pt;}
._22_c00384{width:38.656000pt;}
._20_c00384{width:40.426667pt;}
._10_c00384{width:42.154667pt;}
._24_c00384{width:43.797333pt;}
._28_c00384{width:45.376000pt;}
._2a_c00384{width:46.698667pt;}
._25_c00384{width:49.376000pt;}
._21_c00384{width:51.626667pt;}
._23_c00384{width:55.381333pt;}
._1e_c00384{width:157.802667pt;}
._2d_c00384{width:683.605333pt;}
.fs3_c00384{font-size:42.666667pt;}
.fs2_c00384{font-size:74.666667pt;}
.fs1_c00384{font-size:85.333333pt;}
.fs0_c00384{font-size:90.666667pt;}
.y0_c00384{bottom:0.000000pt;}
.y26_c00384{bottom:2.760000pt;}
.y25_c00384{bottom:6.425217pt;}
.y24_c00384{bottom:90.640000pt;}
.y23_c00384{bottom:119.440000pt;}
.y22_c00384{bottom:150.240000pt;}
.y21_c00384{bottom:180.506667pt;}
.y20_c00384{bottom:210.506667pt;}
.y1f_c00384{bottom:240.240000pt;}
.y1e_c00384{bottom:270.240000pt;}
.y1d_c00384{bottom:300.240000pt;}
.y1c_c00384{bottom:329.706667pt;}
.y1b_c00384{bottom:359.706667pt;}
.y1a_c00384{bottom:389.040000pt;}
.y19_c00384{bottom:418.240000pt;}
.y18_c00384{bottom:448.506667pt;}
.y17_c00384{bottom:477.840000pt;}
.y16_c00384{bottom:507.040000pt;}
.y15_c00384{bottom:537.306667pt;}
.y14_c00384{bottom:566.906667pt;}
.y13_c00384{bottom:596.906667pt;}
.y12_c00384{bottom:626.640000pt;}
.y11_c00384{bottom:655.840000pt;}
.y10_c00384{bottom:685.706667pt;}
.yf_c00384{bottom:715.173333pt;}
.ye_c00384{bottom:744.640000pt;}
.yd_c00384{bottom:773.306667pt;}
.yc_c00384{bottom:802.773333pt;}
.yb_c00384{bottom:832.106667pt;}
.ya_c00384{bottom:861.840000pt;}
.y9_c00384{bottom:891.040000pt;}
.y8_c00384{bottom:920.640000pt;}
.y7_c00384{bottom:949.840000pt;}
.y6_c00384{bottom:976.773333pt;}
.y5_c00384{bottom:1009.173333pt;}
.y4_c00384{bottom:1037.306667pt;}
.y3_c00384{bottom:1066.773333pt;}
.y2_c00384{bottom:1096.106667pt;}
.y1_c00384{bottom:1125.573333pt;}
.h3_c00384{height:11.733399pt;}
.h4_c00384{height:38.937500pt;}
.h2_c00384{height:108.041667pt;}
.h0_c00384{height:1229.733333pt;}
.h1_c00384{height:1230.000000pt;}
.w2_c00384{width:93.222667pt;}
.w0_c00384{width:780.466667pt;}
.w1_c00384{width:780.666667pt;}
.x0_c00384{left:0.000000pt;}
.x6_c00384{left:27.600000pt;}
.x5_c00384{left:29.066667pt;}
.x3_c00384{left:30.533333pt;}
.x1_c00384{left:32.000000pt;}
.x2_c00384{left:32.933333pt;}
.x8_c00384{left:34.400000pt;}
.x9_c00384{left:35.733333pt;}
.xa_c00384{left:37.733333pt;}
.x7_c00384{left:72.266667pt;}
.x4_c00384{left:75.200000pt;}
.xb_c00384{left:271.733333pt;}
.xc_c00384{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00808f42d4b4f2bbd9c8606f.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_02f2d4a013d45a26a8649ae8.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00385{vertical-align:-135.000000px;}
.v0_c00385{vertical-align:0.000000px;}
.ls2_c00385{letter-spacing:0.000000px;}
.ls1_c00385{letter-spacing:0.600000px;}
.ls0_c00385{letter-spacing:22.176000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:-85.680000px;}
.ws1_c00385{word-spacing:-23.136000px;}
.ws2_c00385{word-spacing:0.000000px;}
._1f_c00385{margin-left:-31.584000px;}
._34_c00385{margin-left:-29.664000px;}
._31_c00385{margin-left:-24.480000px;}
._2d_c00385{margin-left:-15.312000px;}
._21_c00385{margin-left:-12.864000px;}
._18_c00385{margin-left:-10.656000px;}
._32_c00385{margin-left:-8.448000px;}
._6_c00385{margin-left:-5.568000px;}
._c_c00385{margin-left:-2.496000px;}
._2a_c00385{margin-left:-1.248000px;}
._9_c00385{width:1.824000px;}
._5_c00385{width:2.880000px;}
._1_c00385{width:3.936000px;}
._0_c00385{width:5.376000px;}
._3_c00385{width:6.624000px;}
._13_c00385{width:8.352000px;}
._24_c00385{width:9.504000px;}
._12_c00385{width:10.656000px;}
._11_c00385{width:12.576000px;}
._26_c00385{width:13.632000px;}
._25_c00385{width:15.360000px;}
._23_c00385{width:16.608000px;}
._4_c00385{width:18.144000px;}
._b_c00385{width:19.680000px;}
._22_c00385{width:21.408000px;}
._f_c00385{width:25.152000px;}
._10_c00385{width:26.304000px;}
._1e_c00385{width:28.320000px;}
._d_c00385{width:29.952000px;}
._16_c00385{width:32.352000px;}
._a_c00385{width:34.656000px;}
._e_c00385{width:36.768000px;}
._8_c00385{width:38.592000px;}
._20_c00385{width:39.648000px;}
._15_c00385{width:41.280000px;}
._2_c00385{width:43.296000px;}
._7_c00385{width:44.928000px;}
._1d_c00385{width:47.328000px;}
._30_c00385{width:48.384000px;}
._14_c00385{width:49.824000px;}
._1b_c00385{width:51.552000px;}
._1c_c00385{width:53.568000px;}
._17_c00385{width:56.544000px;}
._28_c00385{width:57.984000px;}
._19_c00385{width:59.904000px;}
._1a_c00385{width:61.056000px;}
._29_c00385{width:62.592000px;}
._27_c00385{width:65.088000px;}
._2f_c00385{width:68.256000px;}
._33_c00385{width:69.984000px;}
._2b_c00385{width:72.864000px;}
._2c_c00385{width:75.264000px;}
._35_c00385{width:79.488000px;}
._2e_c00385{width:174.792000px;}
._36_c00385{width:847.488000px;}
._37_c00385{width:1068.768000px;}
.fc2_c00385{color:transparent;}
.fc1_c00385{color:rgb(128,128,128);}
.fc0_c00385{color:rgb(0,0,0);}
.fs3_c00385{font-size:48.000000px;}
.fs1_c00385{font-size:84.000000px;}
.fs0_c00385{font-size:96.000000px;}
.fs2_c00385{font-size:102.000000px;}
.y0_c00385{bottom:0.000000px;}
.y25_c00385{bottom:3.105000px;}
.y24_c00385{bottom:7.228357px;}
.y23_c00385{bottom:95.280000px;}
.y22_c00385{bottom:129.030000px;}
.y21_c00385{bottom:163.680000px;}
.y20_c00385{bottom:197.730000px;}
.y1f_c00385{bottom:231.480000px;}
.y1e_c00385{bottom:265.380000px;}
.y1d_c00385{bottom:299.130000px;}
.y1c_c00385{bottom:332.730000px;}
.y1b_c00385{bottom:366.480000px;}
.y1a_c00385{bottom:399.930000px;}
.y19_c00385{bottom:434.430000px;}
.y18_c00385{bottom:467.730000px;}
.y17_c00385{bottom:500.880000px;}
.y16_c00385{bottom:534.030000px;}
.y15_c00385{bottom:567.780000px;}
.y14_c00385{bottom:635.280000px;}
.y13_c00385{bottom:668.580000px;}
.y12_c00385{bottom:702.330000px;}
.y11_c00385{bottom:735.030000px;}
.y10_c00385{bottom:768.480000px;}
.yf_c00385{bottom:801.330000px;}
.ye_c00385{bottom:834.930000px;}
.yd_c00385{bottom:868.380000px;}
.yc_c00385{bottom:902.130000px;}
.yb_c00385{bottom:934.830000px;}
.ya_c00385{bottom:967.980000px;}
.y9_c00385{bottom:1000.980000px;}
.y8_c00385{bottom:1033.080000px;}
.y7_c00385{bottom:1066.230000px;}
.y6_c00385{bottom:1099.680000px;}
.y5_c00385{bottom:1132.680000px;}
.y4_c00385{bottom:1166.130000px;}
.y3_c00385{bottom:1199.430000px;}
.y2_c00385{bottom:1232.280000px;}
.y1_c00385{bottom:1265.580000px;}
.h3_c00385{height:13.200074px;}
.h4_c00385{height:43.804688px;}
.h2_c00385{height:121.546875px;}
.h0_c00385{height:1382.700000px;}
.h1_c00385{height:1383.000000px;}
.w2_c00385{width:104.875500px;}
.w0_c00385{width:863.175000px;}
.w1_c00385{width:863.250000px;}
.x0_c00385{left:0.000000px;}
.xb_c00385{left:249.300000px;}
.xa_c00385{left:250.800000px;}
.x9_c00385{left:252.450000px;}
.x8_c00385{left:254.700000px;}
.x7_c00385{left:255.750000px;}
.x6_c00385{left:256.800000px;}
.x5_c00385{left:257.850000px;}
.x4_c00385{left:260.550000px;}
.x3_c00385{left:262.800000px;}
.x1_c00385{left:263.850000px;}
.x2_c00385{left:264.900000px;}
.xc_c00385{left:383.401749px;}
@media print{
.v1_c00385{vertical-align:-120.000000pt;}
.v0_c00385{vertical-align:0.000000pt;}
.ls2_c00385{letter-spacing:0.000000pt;}
.ls1_c00385{letter-spacing:0.533333pt;}
.ls0_c00385{letter-spacing:19.712000pt;}
.ws0_c00385{word-spacing:-76.160000pt;}
.ws1_c00385{word-spacing:-20.565333pt;}
.ws2_c00385{word-spacing:0.000000pt;}
._1f_c00385{margin-left:-28.074667pt;}
._34_c00385{margin-left:-26.368000pt;}
._31_c00385{margin-left:-21.760000pt;}
._2d_c00385{margin-left:-13.610667pt;}
._21_c00385{margin-left:-11.434667pt;}
._18_c00385{margin-left:-9.472000pt;}
._32_c00385{margin-left:-7.509333pt;}
._6_c00385{margin-left:-4.949333pt;}
._c_c00385{margin-left:-2.218667pt;}
._2a_c00385{margin-left:-1.109333pt;}
._9_c00385{width:1.621333pt;}
._5_c00385{width:2.560000pt;}
._1_c00385{width:3.498667pt;}
._0_c00385{width:4.778667pt;}
._3_c00385{width:5.888000pt;}
._13_c00385{width:7.424000pt;}
._24_c00385{width:8.448000pt;}
._12_c00385{width:9.472000pt;}
._11_c00385{width:11.178667pt;}
._26_c00385{width:12.117333pt;}
._25_c00385{width:13.653333pt;}
._23_c00385{width:14.762667pt;}
._4_c00385{width:16.128000pt;}
._b_c00385{width:17.493333pt;}
._22_c00385{width:19.029333pt;}
._f_c00385{width:22.357333pt;}
._10_c00385{width:23.381333pt;}
._1e_c00385{width:25.173333pt;}
._d_c00385{width:26.624000pt;}
._16_c00385{width:28.757333pt;}
._a_c00385{width:30.805333pt;}
._e_c00385{width:32.682667pt;}
._8_c00385{width:34.304000pt;}
._20_c00385{width:35.242667pt;}
._15_c00385{width:36.693333pt;}
._2_c00385{width:38.485333pt;}
._7_c00385{width:39.936000pt;}
._1d_c00385{width:42.069333pt;}
._30_c00385{width:43.008000pt;}
._14_c00385{width:44.288000pt;}
._1b_c00385{width:45.824000pt;}
._1c_c00385{width:47.616000pt;}
._17_c00385{width:50.261333pt;}
._28_c00385{width:51.541333pt;}
._19_c00385{width:53.248000pt;}
._1a_c00385{width:54.272000pt;}
._29_c00385{width:55.637333pt;}
._27_c00385{width:57.856000pt;}
._2f_c00385{width:60.672000pt;}
._33_c00385{width:62.208000pt;}
._2b_c00385{width:64.768000pt;}
._2c_c00385{width:66.901333pt;}
._35_c00385{width:70.656000pt;}
._2e_c00385{width:155.370667pt;}
._36_c00385{width:753.322667pt;}
._37_c00385{width:950.016000pt;}
.fs3_c00385{font-size:42.666667pt;}
.fs1_c00385{font-size:74.666667pt;}
.fs0_c00385{font-size:85.333333pt;}
.fs2_c00385{font-size:90.666667pt;}
.y0_c00385{bottom:0.000000pt;}
.y25_c00385{bottom:2.760000pt;}
.y24_c00385{bottom:6.425206pt;}
.y23_c00385{bottom:84.693333pt;}
.y22_c00385{bottom:114.693333pt;}
.y21_c00385{bottom:145.493333pt;}
.y20_c00385{bottom:175.760000pt;}
.y1f_c00385{bottom:205.760000pt;}
.y1e_c00385{bottom:235.893333pt;}
.y1d_c00385{bottom:265.893333pt;}
.y1c_c00385{bottom:295.760000pt;}
.y1b_c00385{bottom:325.760000pt;}
.y1a_c00385{bottom:355.493333pt;}
.y19_c00385{bottom:386.160000pt;}
.y18_c00385{bottom:415.760000pt;}
.y17_c00385{bottom:445.226667pt;}
.y16_c00385{bottom:474.693333pt;}
.y15_c00385{bottom:504.693333pt;}
.y14_c00385{bottom:564.693333pt;}
.y13_c00385{bottom:594.293333pt;}
.y12_c00385{bottom:624.293333pt;}
.y11_c00385{bottom:653.360000pt;}
.y10_c00385{bottom:683.093333pt;}
.yf_c00385{bottom:712.293333pt;}
.ye_c00385{bottom:742.160000pt;}
.yd_c00385{bottom:771.893333pt;}
.yc_c00385{bottom:801.893333pt;}
.yb_c00385{bottom:830.960000pt;}
.ya_c00385{bottom:860.426667pt;}
.y9_c00385{bottom:889.760000pt;}
.y8_c00385{bottom:918.293333pt;}
.y7_c00385{bottom:947.760000pt;}
.y6_c00385{bottom:977.493333pt;}
.y5_c00385{bottom:1006.826667pt;}
.y4_c00385{bottom:1036.560000pt;}
.y3_c00385{bottom:1066.160000pt;}
.y2_c00385{bottom:1095.360000pt;}
.y1_c00385{bottom:1124.960000pt;}
.h3_c00385{height:11.733399pt;}
.h4_c00385{height:38.937500pt;}
.h2_c00385{height:108.041667pt;}
.h0_c00385{height:1229.066667pt;}
.h1_c00385{height:1229.333333pt;}
.w2_c00385{width:93.222667pt;}
.w0_c00385{width:767.266667pt;}
.w1_c00385{width:767.333333pt;}
.x0_c00385{left:0.000000pt;}
.xb_c00385{left:221.600000pt;}
.xa_c00385{left:222.933333pt;}
.x9_c00385{left:224.400000pt;}
.x8_c00385{left:226.400000pt;}
.x7_c00385{left:227.333333pt;}
.x6_c00385{left:228.266667pt;}
.x5_c00385{left:229.200000pt;}
.x4_c00385{left:231.600000pt;}
.x3_c00385{left:233.600000pt;}
.x1_c00385{left:234.533333pt;}
.x2_c00385{left:235.466667pt;}
.xc_c00385{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7924bac04f5534236f7de7ae.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_143aa30d62f30ace46a24489.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls2_c00386{letter-spacing:0.000000px;}
.ls1_c00386{letter-spacing:53.664000px;}
.ls0_c00386{letter-spacing:108.564000px;}
.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:-23.136000px;}
.ws1_c00386{word-spacing:0.000000px;}
._28_c00386{margin-left:-16.128000px;}
._38_c00386{margin-left:-14.304000px;}
._27_c00386{margin-left:-12.384000px;}
._26_c00386{margin-left:-10.752000px;}
._a_c00386{margin-left:-9.504000px;}
._c_c00386{margin-left:-8.448000px;}
._b_c00386{margin-left:-6.912000px;}
._d_c00386{margin-left:-5.280000px;}
._31_c00386{margin-left:-3.264000px;}
._1e_c00386{margin-left:-1.920000px;}
._5_c00386{width:1.344000px;}
._4_c00386{width:2.592000px;}
._1_c00386{width:4.320000px;}
._11_c00386{width:5.472000px;}
._3_c00386{width:6.528000px;}
._16_c00386{width:7.776000px;}
._0_c00386{width:9.600000px;}
._25_c00386{width:11.136000px;}
._21_c00386{width:12.288000px;}
._7_c00386{width:13.344000px;}
._2_c00386{width:14.688000px;}
._8_c00386{width:16.032000px;}
._17_c00386{width:17.088000px;}
._1d_c00386{width:19.200000px;}
._e_c00386{width:21.696000px;}
._9_c00386{width:24.768000px;}
._1f_c00386{width:26.112000px;}
._15_c00386{width:27.936000px;}
._10_c00386{width:29.760000px;}
._18_c00386{width:31.296000px;}
._2d_c00386{width:32.448000px;}
._6_c00386{width:33.984000px;}
._22_c00386{width:35.040000px;}
._2c_c00386{width:36.192000px;}
._f_c00386{width:37.248000px;}
._30_c00386{width:38.688000px;}
._13_c00386{width:39.744000px;}
._14_c00386{width:41.568000px;}
._24_c00386{width:42.624000px;}
._37_c00386{width:44.544000px;}
._1b_c00386{width:45.792000px;}
._12_c00386{width:47.136000px;}
._20_c00386{width:50.304000px;}
._2f_c00386{width:51.456000px;}
._1a_c00386{width:52.608000px;}
._34_c00386{width:53.952000px;}
._2e_c00386{width:56.160000px;}
._23_c00386{width:57.504000px;}
._2a_c00386{width:60.000000px;}
._29_c00386{width:61.056000px;}
._1c_c00386{width:62.208000px;}
._2b_c00386{width:63.360000px;}
._19_c00386{width:66.912000px;}
._32_c00386{width:68.544000px;}
._36_c00386{width:75.168000px;}
._33_c00386{width:77.376000px;}
._35_c00386{width:79.296000px;}
._39_c00386{width:176.352000px;}
.fc2_c00386{color:transparent;}
.fc1_c00386{color:rgb(128,128,128);}
.fc0_c00386{color:rgb(0,0,0);}
.fs3_c00386{font-size:48.000000px;}
.fs0_c00386{font-size:84.000000px;}
.fs2_c00386{font-size:87.000000px;}
.fs1_c00386{font-size:96.000000px;}
.y0_c00386{bottom:0.000000px;}
.y27_c00386{bottom:3.105000px;}
.y26_c00386{bottom:7.228355px;}
.y25_c00386{bottom:86.985000px;}
.y24_c00386{bottom:116.085000px;}
.y23_c00386{bottom:151.785000px;}
.y22_c00386{bottom:182.535000px;}
.y21_c00386{bottom:217.335000px;}
.y20_c00386{bottom:251.685000px;}
.y1f_c00386{bottom:284.835000px;}
.y1e_c00386{bottom:318.885000px;}
.y1d_c00386{bottom:352.185000px;}
.y1c_c00386{bottom:385.635000px;}
.y1b_c00386{bottom:419.085000px;}
.y1a_c00386{bottom:452.085000px;}
.y19_c00386{bottom:485.685000px;}
.y18_c00386{bottom:519.285000px;}
.y17_c00386{bottom:552.135000px;}
.y16_c00386{bottom:585.435000px;}
.y15_c00386{bottom:618.585000px;}
.y14_c00386{bottom:652.335000px;}
.y13_c00386{bottom:685.485000px;}
.y12_c00386{bottom:718.485000px;}
.y11_c00386{bottom:751.935000px;}
.y10_c00386{bottom:785.385000px;}
.yf_c00386{bottom:818.085000px;}
.ye_c00386{bottom:850.785000px;}
.yd_c00386{bottom:883.785000px;}
.yc_c00386{bottom:916.935000px;}
.yb_c00386{bottom:950.385000px;}
.ya_c00386{bottom:983.685000px;}
.y9_c00386{bottom:1016.535000px;}
.y8_c00386{bottom:1049.835000px;}
.y7_c00386{bottom:1082.385000px;}
.y6_c00386{bottom:1115.085000px;}
.y5_c00386{bottom:1147.785000px;}
.y4_c00386{bottom:1180.785000px;}
.y3_c00386{bottom:1213.935000px;}
.y2_c00386{bottom:1247.685000px;}
.y1_c00386{bottom:1273.935000px;}
.h3_c00386{height:13.200074px;}
.h4_c00386{height:43.804688px;}
.h2_c00386{height:121.546875px;}
.h1_c00386{height:1353.000000px;}
.h0_c00386{height:1353.225000px;}
.w2_c00386{width:104.875500px;}
.w0_c00386{width:858.600000px;}
.w1_c00386{width:858.750000px;}
.x0_c00386{left:0.000000px;}
.x6_c00386{left:42.900000px;}
.x5_c00386{left:44.100000px;}
.x7_c00386{left:45.150000px;}
.x4_c00386{left:46.200000px;}
.x3_c00386{left:47.250000px;}
.x2_c00386{left:48.300000px;}
.x8_c00386{left:49.950000px;}
.x9_c00386{left:51.600000px;}
.xb_c00386{left:53.250000px;}
.xa_c00386{left:100.800000px;}
.xd_c00386{left:381.114258px;}
.x1_c00386{left:529.500000px;}
.xc_c00386{left:570.600000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls2_c00386{letter-spacing:0.000000pt;}
.ls1_c00386{letter-spacing:47.701333pt;}
.ls0_c00386{letter-spacing:96.501333pt;}
.ws0_c00386{word-spacing:-20.565333pt;}
.ws1_c00386{word-spacing:0.000000pt;}
._28_c00386{margin-left:-14.336000pt;}
._38_c00386{margin-left:-12.714667pt;}
._27_c00386{margin-left:-11.008000pt;}
._26_c00386{margin-left:-9.557333pt;}
._a_c00386{margin-left:-8.448000pt;}
._c_c00386{margin-left:-7.509333pt;}
._b_c00386{margin-left:-6.144000pt;}
._d_c00386{margin-left:-4.693333pt;}
._31_c00386{margin-left:-2.901333pt;}
._1e_c00386{margin-left:-1.706667pt;}
._5_c00386{width:1.194667pt;}
._4_c00386{width:2.304000pt;}
._1_c00386{width:3.840000pt;}
._11_c00386{width:4.864000pt;}
._3_c00386{width:5.802667pt;}
._16_c00386{width:6.912000pt;}
._0_c00386{width:8.533333pt;}
._25_c00386{width:9.898667pt;}
._21_c00386{width:10.922667pt;}
._7_c00386{width:11.861333pt;}
._2_c00386{width:13.056000pt;}
._8_c00386{width:14.250667pt;}
._17_c00386{width:15.189333pt;}
._1d_c00386{width:17.066667pt;}
._e_c00386{width:19.285333pt;}
._9_c00386{width:22.016000pt;}
._1f_c00386{width:23.210667pt;}
._15_c00386{width:24.832000pt;}
._10_c00386{width:26.453333pt;}
._18_c00386{width:27.818667pt;}
._2d_c00386{width:28.842667pt;}
._6_c00386{width:30.208000pt;}
._22_c00386{width:31.146667pt;}
._2c_c00386{width:32.170667pt;}
._f_c00386{width:33.109333pt;}
._30_c00386{width:34.389333pt;}
._13_c00386{width:35.328000pt;}
._14_c00386{width:36.949333pt;}
._24_c00386{width:37.888000pt;}
._37_c00386{width:39.594667pt;}
._1b_c00386{width:40.704000pt;}
._12_c00386{width:41.898667pt;}
._20_c00386{width:44.714667pt;}
._2f_c00386{width:45.738667pt;}
._1a_c00386{width:46.762667pt;}
._34_c00386{width:47.957333pt;}
._2e_c00386{width:49.920000pt;}
._23_c00386{width:51.114667pt;}
._2a_c00386{width:53.333333pt;}
._29_c00386{width:54.272000pt;}
._1c_c00386{width:55.296000pt;}
._2b_c00386{width:56.320000pt;}
._19_c00386{width:59.477333pt;}
._32_c00386{width:60.928000pt;}
._36_c00386{width:66.816000pt;}
._33_c00386{width:68.778667pt;}
._35_c00386{width:70.485333pt;}
._39_c00386{width:156.757333pt;}
.fs3_c00386{font-size:42.666667pt;}
.fs0_c00386{font-size:74.666667pt;}
.fs2_c00386{font-size:77.333333pt;}
.fs1_c00386{font-size:85.333333pt;}
.y0_c00386{bottom:0.000000pt;}
.y27_c00386{bottom:2.760000pt;}
.y26_c00386{bottom:6.425204pt;}
.y25_c00386{bottom:77.320000pt;}
.y24_c00386{bottom:103.186667pt;}
.y23_c00386{bottom:134.920000pt;}
.y22_c00386{bottom:162.253333pt;}
.y21_c00386{bottom:193.186667pt;}
.y20_c00386{bottom:223.720000pt;}
.y1f_c00386{bottom:253.186667pt;}
.y1e_c00386{bottom:283.453333pt;}
.y1d_c00386{bottom:313.053333pt;}
.y1c_c00386{bottom:342.786667pt;}
.y1b_c00386{bottom:372.520000pt;}
.y1a_c00386{bottom:401.853333pt;}
.y19_c00386{bottom:431.720000pt;}
.y18_c00386{bottom:461.586667pt;}
.y17_c00386{bottom:490.786667pt;}
.y16_c00386{bottom:520.386667pt;}
.y15_c00386{bottom:549.853333pt;}
.y14_c00386{bottom:579.853333pt;}
.y13_c00386{bottom:609.320000pt;}
.y12_c00386{bottom:638.653333pt;}
.y11_c00386{bottom:668.386667pt;}
.y10_c00386{bottom:698.120000pt;}
.yf_c00386{bottom:727.186667pt;}
.ye_c00386{bottom:756.253333pt;}
.yd_c00386{bottom:785.586667pt;}
.yc_c00386{bottom:815.053333pt;}
.yb_c00386{bottom:844.786667pt;}
.ya_c00386{bottom:874.386667pt;}
.y9_c00386{bottom:903.586667pt;}
.y8_c00386{bottom:933.186667pt;}
.y7_c00386{bottom:962.120000pt;}
.y6_c00386{bottom:991.186667pt;}
.y5_c00386{bottom:1020.253333pt;}
.y4_c00386{bottom:1049.586667pt;}
.y3_c00386{bottom:1079.053333pt;}
.y2_c00386{bottom:1109.053333pt;}
.y1_c00386{bottom:1132.386667pt;}
.h3_c00386{height:11.733399pt;}
.h4_c00386{height:38.937500pt;}
.h2_c00386{height:108.041667pt;}
.h1_c00386{height:1202.666667pt;}
.h0_c00386{height:1202.866667pt;}
.w2_c00386{width:93.222667pt;}
.w0_c00386{width:763.200000pt;}
.w1_c00386{width:763.333333pt;}
.x0_c00386{left:0.000000pt;}
.x6_c00386{left:38.133333pt;}
.x5_c00386{left:39.200000pt;}
.x7_c00386{left:40.133333pt;}
.x4_c00386{left:41.066667pt;}
.x3_c00386{left:42.000000pt;}
.x2_c00386{left:42.933333pt;}
.x8_c00386{left:44.400000pt;}
.x9_c00386{left:45.866667pt;}
.xb_c00386{left:47.333333pt;}
.xa_c00386{left:89.600000pt;}
.xd_c00386{left:338.768229pt;}
.x1_c00386{left:470.666667pt;}
.xc_c00386{left:507.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_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_18c0dfa5efbda30e7969872d.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_d9de25491ffa66a13ca03534.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00387{word-spacing:-20.244000px;}
.ws1_c00387{word-spacing:0.000000px;}
._2e_c00387{margin-left:-24.960000px;}
._30_c00387{margin-left:-22.752000px;}
._28_c00387{margin-left:-10.896000px;}
._2b_c00387{margin-left:-8.604000px;}
._34_c00387{margin-left:-6.960000px;}
._2c_c00387{margin-left:-5.760000px;}
._2d_c00387{margin-left:-4.704000px;}
._19_c00387{margin-left:-3.072000px;}
._29_c00387{margin-left:-2.064000px;}
._1a_c00387{margin-left:-1.056000px;}
._5_c00387{width:1.536000px;}
._1_c00387{width:3.168000px;}
._22_c00387{width:4.176000px;}
._0_c00387{width:5.184000px;}
._2_c00387{width:6.336000px;}
._c_c00387{width:8.256000px;}
._d_c00387{width:9.312000px;}
._9_c00387{width:10.368000px;}
._21_c00387{width:12.000000px;}
._10_c00387{width:13.104000px;}
._b_c00387{width:14.688000px;}
._18_c00387{width:16.608000px;}
._26_c00387{width:17.688000px;}
._14_c00387{width:19.464000px;}
._17_c00387{width:20.736000px;}
._27_c00387{width:21.888000px;}
._1b_c00387{width:24.960000px;}
._1d_c00387{width:26.688000px;}
._23_c00387{width:27.792000px;}
._15_c00387{width:29.856000px;}
._33_c00387{width:31.440000px;}
._11_c00387{width:32.448000px;}
._1e_c00387{width:33.888000px;}
._e_c00387{width:35.112000px;}
._13_c00387{width:36.768000px;}
._f_c00387{width:38.700000px;}
._12_c00387{width:40.032000px;}
._16_c00387{width:41.472000px;}
._1c_c00387{width:42.720000px;}
._7_c00387{width:44.448000px;}
._24_c00387{width:45.984000px;}
._20_c00387{width:47.136000px;}
._4_c00387{width:49.152000px;}
._3_c00387{width:51.360000px;}
._25_c00387{width:53.424000px;}
._1f_c00387{width:55.392000px;}
._37_c00387{width:56.544000px;}
._8_c00387{width:58.176000px;}
._32_c00387{width:63.792000px;}
._a_c00387{width:67.872000px;}
._31_c00387{width:73.152000px;}
._6_c00387{width:77.088000px;}
._2a_c00387{width:139.440000px;}
._35_c00387{width:169.152000px;}
._2f_c00387{width:183.264000px;}
._36_c00387{width:312.000000px;}
.fc2_c00387{color:transparent;}
.fc1_c00387{color:rgb(128,128,128);}
.fc0_c00387{color:rgb(0,0,0);}
.fs2_c00387{font-size:48.000000px;}
.fs1_c00387{font-size:84.000000px;}
.fs0_c00387{font-size:96.000000px;}
.y0_c00387{bottom:0.000000px;}
.y24_c00387{bottom:3.105000px;}
.y23_c00387{bottom:7.228357px;}
.y22_c00387{bottom:161.730000px;}
.y21_c00387{bottom:195.930000px;}
.y20_c00387{bottom:230.130000px;}
.y1f_c00387{bottom:264.330000px;}
.y1e_c00387{bottom:298.080000px;}
.y1d_c00387{bottom:331.530000px;}
.y1c_c00387{bottom:365.130000px;}
.y1b_c00387{bottom:399.030000px;}
.y1a_c00387{bottom:432.030000px;}
.y19_c00387{bottom:465.780000px;}
.y18_c00387{bottom:499.830000px;}
.y17_c00387{bottom:532.680000px;}
.y16_c00387{bottom:567.030000px;}
.y15_c00387{bottom:600.030000px;}
.y14_c00387{bottom:633.930000px;}
.y13_c00387{bottom:667.530000px;}
.y12_c00387{bottom:700.680000px;}
.y11_c00387{bottom:734.130000px;}
.y10_c00387{bottom:767.430000px;}
.yf_c00387{bottom:800.580000px;}
.ye_c00387{bottom:834.030000px;}
.yd_c00387{bottom:867.480000px;}
.yc_c00387{bottom:900.480000px;}
.yb_c00387{bottom:933.630000px;}
.ya_c00387{bottom:966.930000px;}
.y9_c00387{bottom:999.330000px;}
.y8_c00387{bottom:1031.730000px;}
.y7_c00387{bottom:1064.580000px;}
.y6_c00387{bottom:1097.580000px;}
.y5_c00387{bottom:1131.030000px;}
.y4_c00387{bottom:1164.030000px;}
.y3_c00387{bottom:1196.730000px;}
.y2_c00387{bottom:1229.580000px;}
.y1_c00387{bottom:1262.580000px;}
.h3_c00387{height:13.200074px;}
.h4_c00387{height:43.804688px;}
.h2_c00387{height:121.546875px;}
.h0_c00387{height:1382.700000px;}
.h1_c00387{height:1383.000000px;}
.w2_c00387{width:104.875500px;}
.w0_c00387{width:863.175000px;}
.w1_c00387{width:863.250000px;}
.x0_c00387{left:0.000000px;}
.x9_c00387{left:146.550000px;}
.x6_c00387{left:162.300000px;}
.x5_c00387{left:204.300000px;}
.x1_c00387{left:247.650000px;}
.x2_c00387{left:249.150000px;}
.x4_c00387{left:250.200000px;}
.x8_c00387{left:251.400000px;}
.x7_c00387{left:300.450000px;}
.xa_c00387{left:383.401749px;}
.x3_c00387{left:394.950000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:-17.994667pt;}
.ws1_c00387{word-spacing:0.000000pt;}
._2e_c00387{margin-left:-22.186667pt;}
._30_c00387{margin-left:-20.224000pt;}
._28_c00387{margin-left:-9.685333pt;}
._2b_c00387{margin-left:-7.648000pt;}
._34_c00387{margin-left:-6.186667pt;}
._2c_c00387{margin-left:-5.120000pt;}
._2d_c00387{margin-left:-4.181333pt;}
._19_c00387{margin-left:-2.730667pt;}
._29_c00387{margin-left:-1.834667pt;}
._1a_c00387{margin-left:-0.938667pt;}
._5_c00387{width:1.365333pt;}
._1_c00387{width:2.816000pt;}
._22_c00387{width:3.712000pt;}
._0_c00387{width:4.608000pt;}
._2_c00387{width:5.632000pt;}
._c_c00387{width:7.338667pt;}
._d_c00387{width:8.277333pt;}
._9_c00387{width:9.216000pt;}
._21_c00387{width:10.666667pt;}
._10_c00387{width:11.648000pt;}
._b_c00387{width:13.056000pt;}
._18_c00387{width:14.762667pt;}
._26_c00387{width:15.722667pt;}
._14_c00387{width:17.301333pt;}
._17_c00387{width:18.432000pt;}
._27_c00387{width:19.456000pt;}
._1b_c00387{width:22.186667pt;}
._1d_c00387{width:23.722667pt;}
._23_c00387{width:24.704000pt;}
._15_c00387{width:26.538667pt;}
._33_c00387{width:27.946667pt;}
._11_c00387{width:28.842667pt;}
._1e_c00387{width:30.122667pt;}
._e_c00387{width:31.210667pt;}
._13_c00387{width:32.682667pt;}
._f_c00387{width:34.400000pt;}
._12_c00387{width:35.584000pt;}
._16_c00387{width:36.864000pt;}
._1c_c00387{width:37.973333pt;}
._7_c00387{width:39.509333pt;}
._24_c00387{width:40.874667pt;}
._20_c00387{width:41.898667pt;}
._4_c00387{width:43.690667pt;}
._3_c00387{width:45.653333pt;}
._25_c00387{width:47.488000pt;}
._1f_c00387{width:49.237333pt;}
._37_c00387{width:50.261333pt;}
._8_c00387{width:51.712000pt;}
._32_c00387{width:56.704000pt;}
._a_c00387{width:60.330667pt;}
._31_c00387{width:65.024000pt;}
._6_c00387{width:68.522667pt;}
._2a_c00387{width:123.946667pt;}
._35_c00387{width:150.357333pt;}
._2f_c00387{width:162.901333pt;}
._36_c00387{width:277.333333pt;}
.fs2_c00387{font-size:42.666667pt;}
.fs1_c00387{font-size:74.666667pt;}
.fs0_c00387{font-size:85.333333pt;}
.y0_c00387{bottom:0.000000pt;}
.y24_c00387{bottom:2.760000pt;}
.y23_c00387{bottom:6.425206pt;}
.y22_c00387{bottom:143.760000pt;}
.y21_c00387{bottom:174.160000pt;}
.y20_c00387{bottom:204.560000pt;}
.y1f_c00387{bottom:234.960000pt;}
.y1e_c00387{bottom:264.960000pt;}
.y1d_c00387{bottom:294.693333pt;}
.y1c_c00387{bottom:324.560000pt;}
.y1b_c00387{bottom:354.693333pt;}
.y1a_c00387{bottom:384.026667pt;}
.y19_c00387{bottom:414.026667pt;}
.y18_c00387{bottom:444.293333pt;}
.y17_c00387{bottom:473.493333pt;}
.y16_c00387{bottom:504.026667pt;}
.y15_c00387{bottom:533.360000pt;}
.y14_c00387{bottom:563.493333pt;}
.y13_c00387{bottom:593.360000pt;}
.y12_c00387{bottom:622.826667pt;}
.y11_c00387{bottom:652.560000pt;}
.y10_c00387{bottom:682.160000pt;}
.yf_c00387{bottom:711.626667pt;}
.ye_c00387{bottom:741.360000pt;}
.yd_c00387{bottom:771.093333pt;}
.yc_c00387{bottom:800.426667pt;}
.yb_c00387{bottom:829.893333pt;}
.ya_c00387{bottom:859.493333pt;}
.y9_c00387{bottom:888.293333pt;}
.y8_c00387{bottom:917.093333pt;}
.y7_c00387{bottom:946.293333pt;}
.y6_c00387{bottom:975.626667pt;}
.y5_c00387{bottom:1005.360000pt;}
.y4_c00387{bottom:1034.693333pt;}
.y3_c00387{bottom:1063.760000pt;}
.y2_c00387{bottom:1092.960000pt;}
.y1_c00387{bottom:1122.293333pt;}
.h3_c00387{height:11.733399pt;}
.h4_c00387{height:38.937500pt;}
.h2_c00387{height:108.041667pt;}
.h0_c00387{height:1229.066667pt;}
.h1_c00387{height:1229.333333pt;}
.w2_c00387{width:93.222667pt;}
.w0_c00387{width:767.266667pt;}
.w1_c00387{width:767.333333pt;}
.x0_c00387{left:0.000000pt;}
.x9_c00387{left:130.266667pt;}
.x6_c00387{left:144.266667pt;}
.x5_c00387{left:181.600000pt;}
.x1_c00387{left:220.133333pt;}
.x2_c00387{left:221.466667pt;}
.x4_c00387{left:222.400000pt;}
.x8_c00387{left:223.466667pt;}
.x7_c00387{left:267.066667pt;}
.xa_c00387{left:340.801554pt;}
.x3_c00387{left:351.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b355d50b86acae1514d8c850.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_f2e5946126d2f8058dad2141.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_40660d02bbdb964fafee4a7c.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:1.632000px;}
.ls2_c00388{letter-spacing:6.000000px;}
.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;}
}
.ws1_c00388{word-spacing:-61.044000px;}
.ws2_c00388{word-spacing:-20.244000px;}
.ws0_c00388{word-spacing:-1.092000px;}
.ws3_c00388{word-spacing:0.000000px;}
._41_c00388{margin-left:-70.464000px;}
._42_c00388{margin-left:-33.312000px;}
._38_c00388{margin-left:-30.312000px;}
._f_c00388{margin-left:-24.672000px;}
._30_c00388{margin-left:-18.408000px;}
._3b_c00388{margin-left:-16.512000px;}
._31_c00388{margin-left:-14.736000px;}
._1b_c00388{margin-left:-11.736000px;}
._1c_c00388{margin-left:-10.512000px;}
._0_c00388{margin-left:-8.928000px;}
._10_c00388{margin-left:-7.296000px;}
._1a_c00388{margin-left:-5.748000px;}
._11_c00388{margin-left:-3.648000px;}
._19_c00388{margin-left:-1.860000px;}
._13_c00388{width:1.020000px;}
._a_c00388{width:2.820000px;}
._7_c00388{width:4.128000px;}
._8_c00388{width:5.184000px;}
._5_c00388{width:6.624000px;}
._1d_c00388{width:7.788000px;}
._24_c00388{width:9.048000px;}
._15_c00388{width:10.068000px;}
._b_c00388{width:11.100000px;}
._d_c00388{width:12.672000px;}
._3_c00388{width:13.980000px;}
._16_c00388{width:15.360000px;}
._18_c00388{width:16.776000px;}
._2_c00388{width:18.144000px;}
._23_c00388{width:19.836000px;}
._6_c00388{width:21.312000px;}
._9_c00388{width:25.152000px;}
._25_c00388{width:26.400000px;}
._12_c00388{width:27.636000px;}
._2e_c00388{width:28.944000px;}
._21_c00388{width:30.084000px;}
._26_c00388{width:31.752000px;}
._1f_c00388{width:33.444000px;}
._27_c00388{width:34.452000px;}
._14_c00388{width:35.892000px;}
._17_c00388{width:37.440000px;}
._34_c00388{width:39.264000px;}
._32_c00388{width:40.704000px;}
._20_c00388{width:42.468000px;}
._28_c00388{width:44.724000px;}
._2b_c00388{width:45.804000px;}
._2f_c00388{width:47.028000px;}
._2c_c00388{width:48.048000px;}
._e_c00388{width:50.052000px;}
._2a_c00388{width:52.224000px;}
._1e_c00388{width:53.376000px;}
._35_c00388{width:55.428000px;}
._36_c00388{width:57.552000px;}
._33_c00388{width:62.364000px;}
._2d_c00388{width:64.668000px;}
._c_c00388{width:68.664000px;}
._43_c00388{width:107.616000px;}
._37_c00388{width:123.036000px;}
._1_c00388{width:148.752000px;}
._3d_c00388{width:172.404000px;}
._22_c00388{width:181.452000px;}
._29_c00388{width:185.652000px;}
._4_c00388{width:187.488000px;}
._3f_c00388{width:190.140000px;}
._3a_c00388{width:194.772000px;}
._3e_c00388{width:228.816000px;}
._40_c00388{width:273.996000px;}
._3c_c00388{width:293.376000px;}
._39_c00388{width:508.032000px;}
._45_c00388{width:732.024000px;}
._44_c00388{width:874.944000px;}
.fc2_c00388{color:transparent;}
.fc1_c00388{color:rgb(128,128,128);}
.fc0_c00388{color:rgb(0,0,0);}
.fs3_c00388{font-size:48.000000px;}
.fs1_c00388{font-size:84.000000px;}
.fs0_c00388{font-size:96.000000px;}
.fs2_c00388{font-size:99.000000px;}
.y0_c00388{bottom:0.000000px;}
.y25_c00388{bottom:3.105000px;}
.y24_c00388{bottom:7.228369px;}
.y23_c00388{bottom:126.570000px;}
.y22_c00388{bottom:160.020000px;}
.y21_c00388{bottom:194.970000px;}
.y20_c00388{bottom:228.870000px;}
.y1f_c00388{bottom:262.620000px;}
.y1e_c00388{bottom:296.370000px;}
.y1d_c00388{bottom:330.420000px;}
.y1c_c00388{bottom:363.720000px;}
.y1b_c00388{bottom:397.170000px;}
.y1a_c00388{bottom:430.920000px;}
.y19_c00388{bottom:463.920000px;}
.y18_c00388{bottom:497.370000px;}
.y17_c00388{bottom:530.820000px;}
.y16_c00388{bottom:564.270000px;}
.y15_c00388{bottom:598.020000px;}
.y14_c00388{bottom:631.020000px;}
.y13_c00388{bottom:664.470000px;}
.y12_c00388{bottom:698.670000px;}
.y11_c00388{bottom:731.670000px;}
.y10_c00388{bottom:765.420000px;}
.yf_c00388{bottom:798.870000px;}
.ye_c00388{bottom:831.270000px;}
.yd_c00388{bottom:864.570000px;}
.yc_c00388{bottom:897.720000px;}
.yb_c00388{bottom:931.170000px;}
.ya_c00388{bottom:964.620000px;}
.y9_c00388{bottom:998.220000px;}
.y8_c00388{bottom:1031.670000px;}
.y7_c00388{bottom:1065.120000px;}
.y6_c00388{bottom:1096.920000px;}
.y5_c00388{bottom:1130.520000px;}
.y4_c00388{bottom:1163.370000px;}
.y3_c00388{bottom:1196.820000px;}
.y2_c00388{bottom:1230.120000px;}
.y1_c00388{bottom:1263.570000px;}
.h3_c00388{height:13.200073px;}
.h4_c00388{height:43.804688px;}
.h2_c00388{height:121.546875px;}
.h0_c00388{height:1383.450000px;}
.h1_c00388{height:1383.750000px;}
.w2_c00388{width:104.875500px;}
.w0_c00388{width:878.025000px;}
.w1_c00388{width:878.250000px;}
.x0_c00388{left:0.000000px;}
.xd_c00388{left:47.850000px;}
.xb_c00388{left:49.950000px;}
.xc_c00388{left:51.000000px;}
.xa_c00388{left:52.200000px;}
.x8_c00388{left:53.700000px;}
.x7_c00388{left:54.900000px;}
.x6_c00388{left:57.000000px;}
.x4_c00388{left:58.650000px;}
.x3_c00388{left:59.700000px;}
.x2_c00388{left:63.000000px;}
.x1_c00388{left:66.750000px;}
.x9_c00388{left:105.000000px;}
.x5_c00388{left:108.900000px;}
.xe_c00388{left:390.826721px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:1.450667pt;}
.ls2_c00388{letter-spacing:5.333333pt;}
.ws1_c00388{word-spacing:-54.261333pt;}
.ws2_c00388{word-spacing:-17.994667pt;}
.ws0_c00388{word-spacing:-0.970667pt;}
.ws3_c00388{word-spacing:0.000000pt;}
._41_c00388{margin-left:-62.634667pt;}
._42_c00388{margin-left:-29.610667pt;}
._38_c00388{margin-left:-26.944000pt;}
._f_c00388{margin-left:-21.930667pt;}
._30_c00388{margin-left:-16.362667pt;}
._3b_c00388{margin-left:-14.677333pt;}
._31_c00388{margin-left:-13.098667pt;}
._1b_c00388{margin-left:-10.432000pt;}
._1c_c00388{margin-left:-9.344000pt;}
._0_c00388{margin-left:-7.936000pt;}
._10_c00388{margin-left:-6.485333pt;}
._1a_c00388{margin-left:-5.109333pt;}
._11_c00388{margin-left:-3.242667pt;}
._19_c00388{margin-left:-1.653333pt;}
._13_c00388{width:0.906667pt;}
._a_c00388{width:2.506667pt;}
._7_c00388{width:3.669333pt;}
._8_c00388{width:4.608000pt;}
._5_c00388{width:5.888000pt;}
._1d_c00388{width:6.922667pt;}
._24_c00388{width:8.042667pt;}
._15_c00388{width:8.949333pt;}
._b_c00388{width:9.866667pt;}
._d_c00388{width:11.264000pt;}
._3_c00388{width:12.426667pt;}
._16_c00388{width:13.653333pt;}
._18_c00388{width:14.912000pt;}
._2_c00388{width:16.128000pt;}
._23_c00388{width:17.632000pt;}
._6_c00388{width:18.944000pt;}
._9_c00388{width:22.357333pt;}
._25_c00388{width:23.466667pt;}
._12_c00388{width:24.565333pt;}
._2e_c00388{width:25.728000pt;}
._21_c00388{width:26.741333pt;}
._26_c00388{width:28.224000pt;}
._1f_c00388{width:29.728000pt;}
._27_c00388{width:30.624000pt;}
._14_c00388{width:31.904000pt;}
._17_c00388{width:33.280000pt;}
._34_c00388{width:34.901333pt;}
._32_c00388{width:36.181333pt;}
._20_c00388{width:37.749333pt;}
._28_c00388{width:39.754667pt;}
._2b_c00388{width:40.714667pt;}
._2f_c00388{width:41.802667pt;}
._2c_c00388{width:42.709333pt;}
._e_c00388{width:44.490667pt;}
._2a_c00388{width:46.421333pt;}
._1e_c00388{width:47.445333pt;}
._35_c00388{width:49.269333pt;}
._36_c00388{width:51.157333pt;}
._33_c00388{width:55.434667pt;}
._2d_c00388{width:57.482667pt;}
._c_c00388{width:61.034667pt;}
._43_c00388{width:95.658667pt;}
._37_c00388{width:109.365333pt;}
._1_c00388{width:132.224000pt;}
._3d_c00388{width:153.248000pt;}
._22_c00388{width:161.290667pt;}
._29_c00388{width:165.024000pt;}
._4_c00388{width:166.656000pt;}
._3f_c00388{width:169.013333pt;}
._3a_c00388{width:173.130667pt;}
._3e_c00388{width:203.392000pt;}
._40_c00388{width:243.552000pt;}
._3c_c00388{width:260.778667pt;}
._39_c00388{width:451.584000pt;}
._45_c00388{width:650.688000pt;}
._44_c00388{width:777.728000pt;}
.fs3_c00388{font-size:42.666667pt;}
.fs1_c00388{font-size:74.666667pt;}
.fs0_c00388{font-size:85.333333pt;}
.fs2_c00388{font-size:88.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y25_c00388{bottom:2.760000pt;}
.y24_c00388{bottom:6.425217pt;}
.y23_c00388{bottom:112.506667pt;}
.y22_c00388{bottom:142.240000pt;}
.y21_c00388{bottom:173.306667pt;}
.y20_c00388{bottom:203.440000pt;}
.y1f_c00388{bottom:233.440000pt;}
.y1e_c00388{bottom:263.440000pt;}
.y1d_c00388{bottom:293.706667pt;}
.y1c_c00388{bottom:323.306667pt;}
.y1b_c00388{bottom:353.040000pt;}
.y1a_c00388{bottom:383.040000pt;}
.y19_c00388{bottom:412.373333pt;}
.y18_c00388{bottom:442.106667pt;}
.y17_c00388{bottom:471.840000pt;}
.y16_c00388{bottom:501.573333pt;}
.y15_c00388{bottom:531.573333pt;}
.y14_c00388{bottom:560.906667pt;}
.y13_c00388{bottom:590.640000pt;}
.y12_c00388{bottom:621.040000pt;}
.y11_c00388{bottom:650.373333pt;}
.y10_c00388{bottom:680.373333pt;}
.yf_c00388{bottom:710.106667pt;}
.ye_c00388{bottom:738.906667pt;}
.yd_c00388{bottom:768.506667pt;}
.yc_c00388{bottom:797.973333pt;}
.yb_c00388{bottom:827.706667pt;}
.ya_c00388{bottom:857.440000pt;}
.y9_c00388{bottom:887.306667pt;}
.y8_c00388{bottom:917.040000pt;}
.y7_c00388{bottom:946.773333pt;}
.y6_c00388{bottom:975.040000pt;}
.y5_c00388{bottom:1004.906667pt;}
.y4_c00388{bottom:1034.106667pt;}
.y3_c00388{bottom:1063.840000pt;}
.y2_c00388{bottom:1093.440000pt;}
.y1_c00388{bottom:1123.173333pt;}
.h3_c00388{height:11.733399pt;}
.h4_c00388{height:38.937500pt;}
.h2_c00388{height:108.041667pt;}
.h0_c00388{height:1229.733333pt;}
.h1_c00388{height:1230.000000pt;}
.w2_c00388{width:93.222667pt;}
.w0_c00388{width:780.466667pt;}
.w1_c00388{width:780.666667pt;}
.x0_c00388{left:0.000000pt;}
.xd_c00388{left:42.533333pt;}
.xb_c00388{left:44.400000pt;}
.xc_c00388{left:45.333333pt;}
.xa_c00388{left:46.400000pt;}
.x8_c00388{left:47.733333pt;}
.x7_c00388{left:48.800000pt;}
.x6_c00388{left:50.666667pt;}
.x4_c00388{left:52.133333pt;}
.x3_c00388{left:53.066667pt;}
.x2_c00388{left:56.000000pt;}
.x1_c00388{left:59.333333pt;}
.x9_c00388{left:93.333333pt;}
.x5_c00388{left:96.800000pt;}
.xe_c00388{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aaa2ed64100eb51dc6772ce3.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_49a99fe69527aa1d669a5272.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls1_c00389{letter-spacing:0.000000px;}
.ls0_c00389{letter-spacing:22.452000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:-63.504000px;}
.ws1_c00389{word-spacing:0.000000px;}
._35_c00389{margin-left:-32.448000px;}
._13_c00389{margin-left:-30.528000px;}
._39_c00389{margin-left:-28.320000px;}
._28_c00389{margin-left:-27.264000px;}
._31_c00389{margin-left:-24.768000px;}
._37_c00389{margin-left:-17.472000px;}
._36_c00389{margin-left:-14.784000px;}
._3d_c00389{margin-left:-12.672000px;}
._29_c00389{margin-left:-9.888000px;}
._25_c00389{margin-left:-6.912000px;}
._2b_c00389{margin-left:-5.472000px;}
._0_c00389{margin-left:-4.128000px;}
._34_c00389{margin-left:-3.072000px;}
._19_c00389{margin-left:-2.016000px;}
._27_c00389{width:1.056000px;}
._4_c00389{width:2.112000px;}
._5_c00389{width:3.168000px;}
._3_c00389{width:5.088000px;}
._d_c00389{width:6.432000px;}
._8_c00389{width:7.872000px;}
._1e_c00389{width:8.928000px;}
._7_c00389{width:9.984000px;}
._1b_c00389{width:11.040000px;}
._23_c00389{width:13.056000px;}
._24_c00389{width:14.688000px;}
._12_c00389{width:15.936000px;}
._10_c00389{width:17.472000px;}
._16_c00389{width:18.816000px;}
._2a_c00389{width:19.968000px;}
._2_c00389{width:21.600000px;}
._11_c00389{width:24.192000px;}
._1c_c00389{width:25.344000px;}
._2f_c00389{width:26.400000px;}
._1f_c00389{width:27.552000px;}
._e_c00389{width:29.856000px;}
._22_c00389{width:31.008000px;}
._26_c00389{width:32.736000px;}
._21_c00389{width:34.752000px;}
._c_c00389{width:35.808000px;}
._3a_c00389{width:37.152000px;}
._17_c00389{width:38.496000px;}
._20_c00389{width:39.552000px;}
._b_c00389{width:41.280000px;}
._14_c00389{width:42.816000px;}
._f_c00389{width:45.312000px;}
._15_c00389{width:47.040000px;}
._9_c00389{width:48.576000px;}
._a_c00389{width:49.632000px;}
._33_c00389{width:52.128000px;}
._18_c00389{width:53.760000px;}
._6_c00389{width:55.296000px;}
._1a_c00389{width:56.448000px;}
._38_c00389{width:57.792000px;}
._2c_c00389{width:60.576000px;}
._32_c00389{width:61.704000px;}
._2e_c00389{width:62.976000px;}
._2d_c00389{width:66.720000px;}
._1d_c00389{width:70.080000px;}
._30_c00389{width:75.456000px;}
._3b_c00389{width:104.736000px;}
._1_c00389{width:109.728000px;}
._3c_c00389{width:1854.240000px;}
.fc2_c00389{color:transparent;}
.fc1_c00389{color:rgb(128,128,128);}
.fc0_c00389{color:rgb(0,0,0);}
.fs2_c00389{font-size:48.000000px;}
.fs1_c00389{font-size:84.000000px;}
.fs0_c00389{font-size:96.000000px;}
.y0_c00389{bottom:0.000000px;}
.y25_c00389{bottom:3.105000px;}
.y24_c00389{bottom:7.228355px;}
.y23_c00389{bottom:112.635000px;}
.y22_c00389{bottom:145.485000px;}
.y21_c00389{bottom:179.835000px;}
.y20_c00389{bottom:213.585000px;}
.y1f_c00389{bottom:247.335000px;}
.y1e_c00389{bottom:281.685000px;}
.y1d_c00389{bottom:315.885000px;}
.y1c_c00389{bottom:349.635000px;}
.y1b_c00389{bottom:383.385000px;}
.y1a_c00389{bottom:417.135000px;}
.y19_c00389{bottom:450.885000px;}
.y18_c00389{bottom:482.835000px;}
.y17_c00389{bottom:518.385000px;}
.y16_c00389{bottom:552.135000px;}
.y15_c00389{bottom:585.135000px;}
.y14_c00389{bottom:619.185000px;}
.y13_c00389{bottom:653.085000px;}
.y12_c00389{bottom:686.835000px;}
.y11_c00389{bottom:720.135000px;}
.y10_c00389{bottom:753.885000px;}
.yf_c00389{bottom:786.735000px;}
.ye_c00389{bottom:820.785000px;}
.yd_c00389{bottom:854.235000px;}
.yc_c00389{bottom:887.985000px;}
.yb_c00389{bottom:921.285000px;}
.ya_c00389{bottom:954.135000px;}
.y9_c00389{bottom:987.135000px;}
.y8_c00389{bottom:1020.285000px;}
.y7_c00389{bottom:1053.285000px;}
.y6_c00389{bottom:1087.035000px;}
.y5_c00389{bottom:1120.485000px;}
.y4_c00389{bottom:1153.485000px;}
.y3_c00389{bottom:1187.235000px;}
.y2_c00389{bottom:1220.385000px;}
.y1_c00389{bottom:1254.435000px;}
.h3_c00389{height:13.200074px;}
.h4_c00389{height:43.804688px;}
.h2_c00389{height:121.546875px;}
.h1_c00389{height:1366.500000px;}
.h0_c00389{height:1366.725000px;}
.w2_c00389{width:104.875500px;}
.w0_c00389{width:852.675000px;}
.w1_c00389{width:852.750000px;}
.x0_c00389{left:0.000000px;}
.xa_c00389{left:231.900000px;}
.x8_c00389{left:234.000000px;}
.x7_c00389{left:236.700000px;}
.x6_c00389{left:238.950000px;}
.x9_c00389{left:240.000000px;}
.x2_c00389{left:241.050000px;}
.x4_c00389{left:242.250000px;}
.x3_c00389{left:243.300000px;}
.x5_c00389{left:246.600000px;}
.x1_c00389{left:357.150000px;}
.xb_c00389{left:378.151749px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls1_c00389{letter-spacing:0.000000pt;}
.ls0_c00389{letter-spacing:19.957333pt;}
.ws0_c00389{word-spacing:-56.448000pt;}
.ws1_c00389{word-spacing:0.000000pt;}
._35_c00389{margin-left:-28.842667pt;}
._13_c00389{margin-left:-27.136000pt;}
._39_c00389{margin-left:-25.173333pt;}
._28_c00389{margin-left:-24.234667pt;}
._31_c00389{margin-left:-22.016000pt;}
._37_c00389{margin-left:-15.530667pt;}
._36_c00389{margin-left:-13.141333pt;}
._3d_c00389{margin-left:-11.264000pt;}
._29_c00389{margin-left:-8.789333pt;}
._25_c00389{margin-left:-6.144000pt;}
._2b_c00389{margin-left:-4.864000pt;}
._0_c00389{margin-left:-3.669333pt;}
._34_c00389{margin-left:-2.730667pt;}
._19_c00389{margin-left:-1.792000pt;}
._27_c00389{width:0.938667pt;}
._4_c00389{width:1.877333pt;}
._5_c00389{width:2.816000pt;}
._3_c00389{width:4.522667pt;}
._d_c00389{width:5.717333pt;}
._8_c00389{width:6.997333pt;}
._1e_c00389{width:7.936000pt;}
._7_c00389{width:8.874667pt;}
._1b_c00389{width:9.813333pt;}
._23_c00389{width:11.605333pt;}
._24_c00389{width:13.056000pt;}
._12_c00389{width:14.165333pt;}
._10_c00389{width:15.530667pt;}
._16_c00389{width:16.725333pt;}
._2a_c00389{width:17.749333pt;}
._2_c00389{width:19.200000pt;}
._11_c00389{width:21.504000pt;}
._1c_c00389{width:22.528000pt;}
._2f_c00389{width:23.466667pt;}
._1f_c00389{width:24.490667pt;}
._e_c00389{width:26.538667pt;}
._22_c00389{width:27.562667pt;}
._26_c00389{width:29.098667pt;}
._21_c00389{width:30.890667pt;}
._c_c00389{width:31.829333pt;}
._3a_c00389{width:33.024000pt;}
._17_c00389{width:34.218667pt;}
._20_c00389{width:35.157333pt;}
._b_c00389{width:36.693333pt;}
._14_c00389{width:38.058667pt;}
._f_c00389{width:40.277333pt;}
._15_c00389{width:41.813333pt;}
._9_c00389{width:43.178667pt;}
._a_c00389{width:44.117333pt;}
._33_c00389{width:46.336000pt;}
._18_c00389{width:47.786667pt;}
._6_c00389{width:49.152000pt;}
._1a_c00389{width:50.176000pt;}
._38_c00389{width:51.370667pt;}
._2c_c00389{width:53.845333pt;}
._32_c00389{width:54.848000pt;}
._2e_c00389{width:55.978667pt;}
._2d_c00389{width:59.306667pt;}
._1d_c00389{width:62.293333pt;}
._30_c00389{width:67.072000pt;}
._3b_c00389{width:93.098667pt;}
._1_c00389{width:97.536000pt;}
._3c_c00389{width:1648.213333pt;}
.fs2_c00389{font-size:42.666667pt;}
.fs1_c00389{font-size:74.666667pt;}
.fs0_c00389{font-size:85.333333pt;}
.y0_c00389{bottom:0.000000pt;}
.y25_c00389{bottom:2.760000pt;}
.y24_c00389{bottom:6.425204pt;}
.y23_c00389{bottom:100.120000pt;}
.y22_c00389{bottom:129.320000pt;}
.y21_c00389{bottom:159.853333pt;}
.y20_c00389{bottom:189.853333pt;}
.y1f_c00389{bottom:219.853333pt;}
.y1e_c00389{bottom:250.386667pt;}
.y1d_c00389{bottom:280.786667pt;}
.y1c_c00389{bottom:310.786667pt;}
.y1b_c00389{bottom:340.786667pt;}
.y1a_c00389{bottom:370.786667pt;}
.y19_c00389{bottom:400.786667pt;}
.y18_c00389{bottom:429.186667pt;}
.y17_c00389{bottom:460.786667pt;}
.y16_c00389{bottom:490.786667pt;}
.y15_c00389{bottom:520.120000pt;}
.y14_c00389{bottom:550.386667pt;}
.y13_c00389{bottom:580.520000pt;}
.y12_c00389{bottom:610.520000pt;}
.y11_c00389{bottom:640.120000pt;}
.y10_c00389{bottom:670.120000pt;}
.yf_c00389{bottom:699.320000pt;}
.ye_c00389{bottom:729.586667pt;}
.yd_c00389{bottom:759.320000pt;}
.yc_c00389{bottom:789.320000pt;}
.yb_c00389{bottom:818.920000pt;}
.ya_c00389{bottom:848.120000pt;}
.y9_c00389{bottom:877.453333pt;}
.y8_c00389{bottom:906.920000pt;}
.y7_c00389{bottom:936.253333pt;}
.y6_c00389{bottom:966.253333pt;}
.y5_c00389{bottom:995.986667pt;}
.y4_c00389{bottom:1025.320000pt;}
.y3_c00389{bottom:1055.320000pt;}
.y2_c00389{bottom:1084.786667pt;}
.y1_c00389{bottom:1115.053333pt;}
.h3_c00389{height:11.733399pt;}
.h4_c00389{height:38.937500pt;}
.h2_c00389{height:108.041667pt;}
.h1_c00389{height:1214.666667pt;}
.h0_c00389{height:1214.866667pt;}
.w2_c00389{width:93.222667pt;}
.w0_c00389{width:757.933333pt;}
.w1_c00389{width:758.000000pt;}
.x0_c00389{left:0.000000pt;}
.xa_c00389{left:206.133333pt;}
.x8_c00389{left:208.000000pt;}
.x7_c00389{left:210.400000pt;}
.x6_c00389{left:212.400000pt;}
.x9_c00389{left:213.333333pt;}
.x2_c00389{left:214.266667pt;}
.x4_c00389{left:215.333333pt;}
.x3_c00389{left:216.266667pt;}
.x5_c00389{left:219.200000pt;}
.x1_c00389{left:317.466667pt;}
.xb_c00389{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_264acc186956b1e94a3d9824.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_3e92ff29e26b079b4d585d77.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_93e65b9f8876f5365ebd1c6c.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls2_c00390{letter-spacing:0.000000px;}
.ls3_c00390{letter-spacing:6.000000px;}
.ls0_c00390{letter-spacing:7.800000px;}
.ls1_c00390{letter-spacing:20.400000px;}
.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:-20.244000px;}
.ws1_c00390{word-spacing:0.000000px;}
._34_c00390{margin-left:-30.336000px;}
._1c_c00390{margin-left:-22.020000px;}
._1e_c00390{margin-left:-20.832000px;}
._20_c00390{margin-left:-19.380000px;}
._1f_c00390{margin-left:-17.238000px;}
._21_c00390{margin-left:-15.504000px;}
._39_c00390{margin-left:-14.190000px;}
._24_c00390{margin-left:-12.678000px;}
._9_c00390{margin-left:-10.848000px;}
._a_c00390{margin-left:-8.832000px;}
._b_c00390{margin-left:-6.816000px;}
._4_c00390{margin-left:-4.896000px;}
._5_c00390{margin-left:-2.880000px;}
._3_c00390{margin-left:-1.632000px;}
._0_c00390{width:1.920000px;}
._1_c00390{width:3.552000px;}
._6_c00390{width:5.280000px;}
._f_c00390{width:6.816000px;}
._d_c00390{width:8.544000px;}
._12_c00390{width:9.984000px;}
._15_c00390{width:11.520000px;}
._8_c00390{width:13.248000px;}
._27_c00390{width:14.784000px;}
._16_c00390{width:16.128000px;}
._25_c00390{width:17.262000px;}
._1d_c00390{width:18.744000px;}
._22_c00390{width:20.634000px;}
._1b_c00390{width:21.696000px;}
._2a_c00390{width:23.628000px;}
._18_c00390{width:25.536000px;}
._e_c00390{width:26.688000px;}
._29_c00390{width:27.750000px;}
._2b_c00390{width:28.944000px;}
._7_c00390{width:30.432000px;}
._c_c00390{width:32.448000px;}
._13_c00390{width:34.656000px;}
._10_c00390{width:35.712000px;}
._23_c00390{width:36.864000px;}
._28_c00390{width:38.970000px;}
._2_c00390{width:40.128000px;}
._30_c00390{width:42.480000px;}
._14_c00390{width:43.776000px;}
._19_c00390{width:45.024000px;}
._33_c00390{width:46.080000px;}
._1a_c00390{width:47.232000px;}
._17_c00390{width:48.960000px;}
._38_c00390{width:51.264000px;}
._11_c00390{width:52.512000px;}
._26_c00390{width:54.912000px;}
._2c_c00390{width:60.384000px;}
._31_c00390{width:65.280000px;}
._2e_c00390{width:67.200000px;}
._2f_c00390{width:71.040000px;}
._37_c00390{width:78.618000px;}
._35_c00390{width:100.614000px;}
._32_c00390{width:123.168000px;}
._36_c00390{width:173.988000px;}
._2d_c00390{width:352.302000px;}
._3a_c00390{width:586.176000px;}
._3b_c00390{width:1294.272000px;}
.fc2_c00390{color:transparent;}
.fc1_c00390{color:rgb(128,128,128);}
.fc0_c00390{color:rgb(0,0,0);}
.fs3_c00390{font-size:48.000000px;}
.fs2_c00390{font-size:84.000000px;}
.fs0_c00390{font-size:96.000000px;}
.fs1_c00390{font-size:102.000000px;}
.y0_c00390{bottom:0.000000px;}
.y26_c00390{bottom:3.105000px;}
.y25_c00390{bottom:7.228371px;}
.y24_c00390{bottom:68.565000px;}
.y23_c00390{bottom:101.265000px;}
.y22_c00390{bottom:135.765000px;}
.y21_c00390{bottom:169.065000px;}
.y20_c00390{bottom:202.515000px;}
.y1f_c00390{bottom:236.265000px;}
.y1e_c00390{bottom:270.465000px;}
.y1d_c00390{bottom:303.765000px;}
.y1c_c00390{bottom:337.515000px;}
.y1b_c00390{bottom:371.265000px;}
.y1a_c00390{bottom:403.965000px;}
.y19_c00390{bottom:437.865000px;}
.y18_c00390{bottom:471.165000px;}
.y17_c00390{bottom:505.365000px;}
.y16_c00390{bottom:538.365000px;}
.y15_c00390{bottom:572.115000px;}
.y14_c00390{bottom:605.565000px;}
.y13_c00390{bottom:638.865000px;}
.y12_c00390{bottom:672.615000px;}
.y11_c00390{bottom:706.065000px;}
.y10_c00390{bottom:739.215000px;}
.yf_c00390{bottom:772.515000px;}
.ye_c00390{bottom:805.965000px;}
.yd_c00390{bottom:839.115000px;}
.yc_c00390{bottom:872.415000px;}
.yb_c00390{bottom:906.165000px;}
.ya_c00390{bottom:938.715000px;}
.y9_c00390{bottom:972.015000px;}
.y8_c00390{bottom:1004.715000px;}
.y7_c00390{bottom:1038.465000px;}
.y6_c00390{bottom:1071.915000px;}
.y5_c00390{bottom:1103.715000px;}
.y4_c00390{bottom:1137.015000px;}
.y3_c00390{bottom:1170.465000px;}
.y2_c00390{bottom:1203.615000px;}
.y1_c00390{bottom:1237.365000px;}
.h4_c00390{height:13.200074px;}
.h5_c00390{height:43.804688px;}
.h2_c00390{height:121.546875px;}
.h3_c00390{height:129.143555px;}
.h1_c00390{height:1349.250000px;}
.h0_c00390{height:1349.475000px;}
.w2_c00390{width:104.875500px;}
.w1_c00390{width:855.750000px;}
.w0_c00390{width:855.900000px;}
.x0_c00390{left:0.000000px;}
.x8_c00390{left:22.950000px;}
.x7_c00390{left:24.000000px;}
.x6_c00390{left:25.200000px;}
.x5_c00390{left:26.250000px;}
.x3_c00390{left:27.750000px;}
.x4_c00390{left:28.950000px;}
.x2_c00390{left:30.000000px;}
.xa_c00390{left:31.050000px;}
.x1_c00390{left:32.700000px;}
.xb_c00390{left:34.800000px;}
.x9_c00390{left:74.850000px;}
.xc_c00390{left:379.764221px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls2_c00390{letter-spacing:0.000000pt;}
.ls3_c00390{letter-spacing:5.333333pt;}
.ls0_c00390{letter-spacing:6.933333pt;}
.ls1_c00390{letter-spacing:18.133333pt;}
.ws0_c00390{word-spacing:-17.994667pt;}
.ws1_c00390{word-spacing:0.000000pt;}
._34_c00390{margin-left:-26.965333pt;}
._1c_c00390{margin-left:-19.573333pt;}
._1e_c00390{margin-left:-18.517333pt;}
._20_c00390{margin-left:-17.226667pt;}
._1f_c00390{margin-left:-15.322667pt;}
._21_c00390{margin-left:-13.781333pt;}
._39_c00390{margin-left:-12.613333pt;}
._24_c00390{margin-left:-11.269333pt;}
._9_c00390{margin-left:-9.642667pt;}
._a_c00390{margin-left:-7.850667pt;}
._b_c00390{margin-left:-6.058667pt;}
._4_c00390{margin-left:-4.352000pt;}
._5_c00390{margin-left:-2.560000pt;}
._3_c00390{margin-left:-1.450667pt;}
._0_c00390{width:1.706667pt;}
._1_c00390{width:3.157333pt;}
._6_c00390{width:4.693333pt;}
._f_c00390{width:6.058667pt;}
._d_c00390{width:7.594667pt;}
._12_c00390{width:8.874667pt;}
._15_c00390{width:10.240000pt;}
._8_c00390{width:11.776000pt;}
._27_c00390{width:13.141333pt;}
._16_c00390{width:14.336000pt;}
._25_c00390{width:15.344000pt;}
._1d_c00390{width:16.661333pt;}
._22_c00390{width:18.341333pt;}
._1b_c00390{width:19.285333pt;}
._2a_c00390{width:21.002667pt;}
._18_c00390{width:22.698667pt;}
._e_c00390{width:23.722667pt;}
._29_c00390{width:24.666667pt;}
._2b_c00390{width:25.728000pt;}
._7_c00390{width:27.050667pt;}
._c_c00390{width:28.842667pt;}
._13_c00390{width:30.805333pt;}
._10_c00390{width:31.744000pt;}
._23_c00390{width:32.768000pt;}
._28_c00390{width:34.640000pt;}
._2_c00390{width:35.669333pt;}
._30_c00390{width:37.760000pt;}
._14_c00390{width:38.912000pt;}
._19_c00390{width:40.021333pt;}
._33_c00390{width:40.960000pt;}
._1a_c00390{width:41.984000pt;}
._17_c00390{width:43.520000pt;}
._38_c00390{width:45.568000pt;}
._11_c00390{width:46.677333pt;}
._26_c00390{width:48.810667pt;}
._2c_c00390{width:53.674667pt;}
._31_c00390{width:58.026667pt;}
._2e_c00390{width:59.733333pt;}
._2f_c00390{width:63.146667pt;}
._37_c00390{width:69.882667pt;}
._35_c00390{width:89.434667pt;}
._32_c00390{width:109.482667pt;}
._36_c00390{width:154.656000pt;}
._2d_c00390{width:313.157333pt;}
._3a_c00390{width:521.045333pt;}
._3b_c00390{width:1150.464000pt;}
.fs3_c00390{font-size:42.666667pt;}
.fs2_c00390{font-size:74.666667pt;}
.fs0_c00390{font-size:85.333333pt;}
.fs1_c00390{font-size:90.666667pt;}
.y0_c00390{bottom:0.000000pt;}
.y26_c00390{bottom:2.760000pt;}
.y25_c00390{bottom:6.425219pt;}
.y24_c00390{bottom:60.946667pt;}
.y23_c00390{bottom:90.013333pt;}
.y22_c00390{bottom:120.680000pt;}
.y21_c00390{bottom:150.280000pt;}
.y20_c00390{bottom:180.013333pt;}
.y1f_c00390{bottom:210.013333pt;}
.y1e_c00390{bottom:240.413333pt;}
.y1d_c00390{bottom:270.013333pt;}
.y1c_c00390{bottom:300.013333pt;}
.y1b_c00390{bottom:330.013333pt;}
.y1a_c00390{bottom:359.080000pt;}
.y19_c00390{bottom:389.213333pt;}
.y18_c00390{bottom:418.813333pt;}
.y17_c00390{bottom:449.213333pt;}
.y16_c00390{bottom:478.546667pt;}
.y15_c00390{bottom:508.546667pt;}
.y14_c00390{bottom:538.280000pt;}
.y13_c00390{bottom:567.880000pt;}
.y12_c00390{bottom:597.880000pt;}
.y11_c00390{bottom:627.613333pt;}
.y10_c00390{bottom:657.080000pt;}
.yf_c00390{bottom:686.680000pt;}
.ye_c00390{bottom:716.413333pt;}
.yd_c00390{bottom:745.880000pt;}
.yc_c00390{bottom:775.480000pt;}
.yb_c00390{bottom:805.480000pt;}
.ya_c00390{bottom:834.413333pt;}
.y9_c00390{bottom:864.013333pt;}
.y8_c00390{bottom:893.080000pt;}
.y7_c00390{bottom:923.080000pt;}
.y6_c00390{bottom:952.813333pt;}
.y5_c00390{bottom:981.080000pt;}
.y4_c00390{bottom:1010.680000pt;}
.y3_c00390{bottom:1040.413333pt;}
.y2_c00390{bottom:1069.880000pt;}
.y1_c00390{bottom:1099.880000pt;}
.h4_c00390{height:11.733399pt;}
.h5_c00390{height:38.937500pt;}
.h2_c00390{height:108.041667pt;}
.h3_c00390{height:114.794271pt;}
.h1_c00390{height:1199.333333pt;}
.h0_c00390{height:1199.533333pt;}
.w2_c00390{width:93.222667pt;}
.w1_c00390{width:760.666667pt;}
.w0_c00390{width:760.800000pt;}
.x0_c00390{left:0.000000pt;}
.x8_c00390{left:20.400000pt;}
.x7_c00390{left:21.333333pt;}
.x6_c00390{left:22.400000pt;}
.x5_c00390{left:23.333333pt;}
.x3_c00390{left:24.666667pt;}
.x4_c00390{left:25.733333pt;}
.x2_c00390{left:26.666667pt;}
.xa_c00390{left:27.600000pt;}
.x1_c00390{left:29.066667pt;}
.xb_c00390{left:30.933333pt;}
.x9_c00390{left:66.533333pt;}
.xc_c00390{left:337.568197pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ce673a70b10fc8a599a3f7b.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_fbe64a95d09d6b86e989d7f5.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls2_c00391{letter-spacing:-3.000000px;}
.ls1_c00391{letter-spacing:0.000000px;}
.ls3_c00391{letter-spacing:6.000000px;}
.ls0_c00391{letter-spacing:38.664000px;}
.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:-114.864000px;}
.ws4_c00391{word-spacing:-57.000000px;}
.ws5_c00391{word-spacing:-41.832000px;}
.ws1_c00391{word-spacing:-31.704000px;}
.ws3_c00391{word-spacing:-20.967000px;}
.ws6_c00391{word-spacing:0.000000px;}
.ws2_c00391{word-spacing:0.180000px;}
._31_c00391{margin-left:-43.104000px;}
._1f_c00391{margin-left:-40.320000px;}
._2c_c00391{margin-left:-37.656000px;}
._20_c00391{margin-left:-31.824000px;}
._3d_c00391{margin-left:-28.800000px;}
._22_c00391{margin-left:-27.792000px;}
._39_c00391{margin-left:-22.176000px;}
._25_c00391{margin-left:-20.967000px;}
._21_c00391{margin-left:-18.144000px;}
._27_c00391{margin-left:-16.458000px;}
._23_c00391{margin-left:-14.976000px;}
._24_c00391{margin-left:-12.816000px;}
._2d_c00391{margin-left:-10.944000px;}
._2a_c00391{margin-left:-9.696000px;}
._26_c00391{margin-left:-8.631000px;}
._1d_c00391{margin-left:-7.056000px;}
._1e_c00391{margin-left:-5.616000px;}
._e_c00391{margin-left:-4.224000px;}
._2f_c00391{margin-left:-2.928000px;}
._11_c00391{margin-left:-1.056000px;}
._6_c00391{width:1.440000px;}
._0_c00391{width:2.592000px;}
._43_c00391{width:3.600000px;}
._2_c00391{width:4.608000px;}
._1_c00391{width:5.952000px;}
._9_c00391{width:7.392000px;}
._8_c00391{width:9.024000px;}
._f_c00391{width:10.176000px;}
._13_c00391{width:12.000000px;}
._4f_c00391{width:13.128000px;}
._3_c00391{width:14.208000px;}
._18_c00391{width:15.552000px;}
._17_c00391{width:16.608000px;}
._3e_c00391{width:17.760000px;}
._2e_c00391{width:19.344000px;}
._3f_c00391{width:20.736000px;}
._5_c00391{width:21.792000px;}
._46_c00391{width:24.240000px;}
._40_c00391{width:25.440000px;}
._4_c00391{width:26.496000px;}
._12_c00391{width:27.840000px;}
._49_c00391{width:29.520000px;}
._10_c00391{width:30.624000px;}
._3c_c00391{width:32.160000px;}
._a_c00391{width:33.696000px;}
._14_c00391{width:34.944000px;}
._15_c00391{width:36.480000px;}
._47_c00391{width:38.112000px;}
._7_c00391{width:39.168000px;}
._d_c00391{width:41.088000px;}
._c_c00391{width:43.008000px;}
._16_c00391{width:45.408000px;}
._41_c00391{width:48.000000px;}
._42_c00391{width:49.536000px;}
._44_c00391{width:52.272000px;}
._37_c00391{width:54.192000px;}
._4c_c00391{width:56.112000px;}
._b_c00391{width:58.080000px;}
._3a_c00391{width:59.904000px;}
._4d_c00391{width:62.736000px;}
._45_c00391{width:66.576000px;}
._4a_c00391{width:68.640000px;}
._1c_c00391{width:72.048000px;}
._3b_c00391{width:74.832000px;}
._4b_c00391{width:85.680000px;}
._1a_c00391{width:96.384000px;}
._1b_c00391{width:99.360000px;}
._33_c00391{width:114.624000px;}
._28_c00391{width:128.160000px;}
._19_c00391{width:138.096000px;}
._32_c00391{width:157.920000px;}
._35_c00391{width:169.488000px;}
._2b_c00391{width:209.472000px;}
._48_c00391{width:213.639000px;}
._29_c00391{width:267.312000px;}
._38_c00391{width:271.992000px;}
._4e_c00391{width:310.848000px;}
._36_c00391{width:460.224000px;}
._34_c00391{width:738.336000px;}
._30_c00391{width:1062.144000px;}
.fc2_c00391{color:transparent;}
.fc1_c00391{color:rgb(128,128,128);}
.fc0_c00391{color:rgb(0,0,0);}
.fs3_c00391{font-size:36.000000px;}
.fs6_c00391{font-size:48.000000px;}
.fs5_c00391{font-size:84.000000px;}
.fs2_c00391{font-size:87.000000px;}
.fs0_c00391{font-size:96.000000px;}
.fs4_c00391{font-size:102.000000px;}
.fs1_c00391{font-size:144.000000px;}
.y0_c00391{bottom:0.000000px;}
.y25_c00391{bottom:3.105000px;}
.y24_c00391{bottom:7.228357px;}
.y23_c00391{bottom:115.530000px;}
.y22_c00391{bottom:149.880000px;}
.y21_c00391{bottom:183.630000px;}
.y20_c00391{bottom:216.780000px;}
.y1f_c00391{bottom:251.130000px;}
.y1e_c00391{bottom:284.880000px;}
.y1d_c00391{bottom:318.330000px;}
.y1c_c00391{bottom:352.380000px;}
.y1b_c00391{bottom:386.130000px;}
.y1a_c00391{bottom:419.880000px;}
.y19_c00391{bottom:453.330000px;}
.y18_c00391{bottom:486.780000px;}
.y17_c00391{bottom:520.830000px;}
.y16_c00391{bottom:554.280000px;}
.y15_c00391{bottom:588.030000px;}
.y14_c00391{bottom:621.630000px;}
.y13_c00391{bottom:655.530000px;}
.y12_c00391{bottom:689.280000px;}
.y11_c00391{bottom:722.880000px;}
.y10_c00391{bottom:735.780000px;}
.yf_c00391{bottom:755.730000px;}
.ye_c00391{bottom:823.230000px;}
.yd_c00391{bottom:830.880000px;}
.yb_c00391{bottom:848.130000px;}
.ya_c00391{bottom:888.930000px;}
.y9_c00391{bottom:897.780000px;}
.y8_c00391{bottom:947.730000px;}
.yc_c00391{bottom:980.880000px;}
.y7_c00391{bottom:997.380000px;}
.y6_c00391{bottom:1047.630000px;}
.y5_c00391{bottom:1124.880000px;}
.y4_c00391{bottom:1157.730000px;}
.y3_c00391{bottom:1191.330000px;}
.y2_c00391{bottom:1225.230000px;}
.y1_c00391{bottom:1257.630000px;}
.h5_c00391{height:13.200074px;}
.h6_c00391{height:43.804688px;}
.h4_c00391{height:110.151855px;}
.h2_c00391{height:121.546875px;}
.h3_c00391{height:182.320312px;}
.h0_c00391{height:1382.700000px;}
.h1_c00391{height:1383.000000px;}
.w2_c00391{width:104.875500px;}
.w0_c00391{width:863.175000px;}
.w1_c00391{width:863.250000px;}
.x0_c00391{left:0.000000px;}
.xd_c00391{left:154.800000px;}
.xf_c00391{left:183.900000px;}
.x12_c00391{left:258.450000px;}
.x11_c00391{left:259.500000px;}
.x10_c00391{left:260.550000px;}
.x1_c00391{left:261.600000px;}
.x2_c00391{left:262.800000px;}
.x3_c00391{left:263.850000px;}
.x4_c00391{left:264.900000px;}
.x5_c00391{left:276.300000px;}
.x6_c00391{left:324.300000px;}
.xe_c00391{left:342.450000px;}
.x13_c00391{left:383.401749px;}
.xc_c00391{left:423.150000px;}
.x7_c00391{left:442.050000px;}
.xb_c00391{left:457.650000px;}
.x8_c00391{left:490.650000px;}
.x9_c00391{left:523.500000px;}
.xa_c00391{left:810.900000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls2_c00391{letter-spacing:-2.666667pt;}
.ls1_c00391{letter-spacing:0.000000pt;}
.ls3_c00391{letter-spacing:5.333333pt;}
.ls0_c00391{letter-spacing:34.368000pt;}
.ws0_c00391{word-spacing:-102.101333pt;}
.ws4_c00391{word-spacing:-50.666667pt;}
.ws5_c00391{word-spacing:-37.184000pt;}
.ws1_c00391{word-spacing:-28.181333pt;}
.ws3_c00391{word-spacing:-18.637333pt;}
.ws6_c00391{word-spacing:0.000000pt;}
.ws2_c00391{word-spacing:0.160000pt;}
._31_c00391{margin-left:-38.314667pt;}
._1f_c00391{margin-left:-35.840000pt;}
._2c_c00391{margin-left:-33.472000pt;}
._20_c00391{margin-left:-28.288000pt;}
._3d_c00391{margin-left:-25.600000pt;}
._22_c00391{margin-left:-24.704000pt;}
._39_c00391{margin-left:-19.712000pt;}
._25_c00391{margin-left:-18.637333pt;}
._21_c00391{margin-left:-16.128000pt;}
._27_c00391{margin-left:-14.629333pt;}
._23_c00391{margin-left:-13.312000pt;}
._24_c00391{margin-left:-11.392000pt;}
._2d_c00391{margin-left:-9.728000pt;}
._2a_c00391{margin-left:-8.618667pt;}
._26_c00391{margin-left:-7.672000pt;}
._1d_c00391{margin-left:-6.272000pt;}
._1e_c00391{margin-left:-4.992000pt;}
._e_c00391{margin-left:-3.754667pt;}
._2f_c00391{margin-left:-2.602667pt;}
._11_c00391{margin-left:-0.938667pt;}
._6_c00391{width:1.280000pt;}
._0_c00391{width:2.304000pt;}
._43_c00391{width:3.200000pt;}
._2_c00391{width:4.096000pt;}
._1_c00391{width:5.290667pt;}
._9_c00391{width:6.570667pt;}
._8_c00391{width:8.021333pt;}
._f_c00391{width:9.045333pt;}
._13_c00391{width:10.666667pt;}
._4f_c00391{width:11.669333pt;}
._3_c00391{width:12.629333pt;}
._18_c00391{width:13.824000pt;}
._17_c00391{width:14.762667pt;}
._3e_c00391{width:15.786667pt;}
._2e_c00391{width:17.194667pt;}
._3f_c00391{width:18.432000pt;}
._5_c00391{width:19.370667pt;}
._46_c00391{width:21.546667pt;}
._40_c00391{width:22.613333pt;}
._4_c00391{width:23.552000pt;}
._12_c00391{width:24.746667pt;}
._49_c00391{width:26.240000pt;}
._10_c00391{width:27.221333pt;}
._3c_c00391{width:28.586667pt;}
._a_c00391{width:29.952000pt;}
._14_c00391{width:31.061333pt;}
._15_c00391{width:32.426667pt;}
._47_c00391{width:33.877333pt;}
._7_c00391{width:34.816000pt;}
._d_c00391{width:36.522667pt;}
._c_c00391{width:38.229333pt;}
._16_c00391{width:40.362667pt;}
._41_c00391{width:42.666667pt;}
._42_c00391{width:44.032000pt;}
._44_c00391{width:46.464000pt;}
._37_c00391{width:48.170667pt;}
._4c_c00391{width:49.877333pt;}
._b_c00391{width:51.626667pt;}
._3a_c00391{width:53.248000pt;}
._4d_c00391{width:55.765333pt;}
._45_c00391{width:59.178667pt;}
._4a_c00391{width:61.013333pt;}
._1c_c00391{width:64.042667pt;}
._3b_c00391{width:66.517333pt;}
._4b_c00391{width:76.160000pt;}
._1a_c00391{width:85.674667pt;}
._1b_c00391{width:88.320000pt;}
._33_c00391{width:101.888000pt;}
._28_c00391{width:113.920000pt;}
._19_c00391{width:122.752000pt;}
._32_c00391{width:140.373333pt;}
._35_c00391{width:150.656000pt;}
._2b_c00391{width:186.197333pt;}
._48_c00391{width:189.901333pt;}
._29_c00391{width:237.610667pt;}
._38_c00391{width:241.770667pt;}
._4e_c00391{width:276.309333pt;}
._36_c00391{width:409.088000pt;}
._34_c00391{width:656.298667pt;}
._30_c00391{width:944.128000pt;}
.fs3_c00391{font-size:32.000000pt;}
.fs6_c00391{font-size:42.666667pt;}
.fs5_c00391{font-size:74.666667pt;}
.fs2_c00391{font-size:77.333333pt;}
.fs0_c00391{font-size:85.333333pt;}
.fs4_c00391{font-size:90.666667pt;}
.fs1_c00391{font-size:128.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y25_c00391{bottom:2.760000pt;}
.y24_c00391{bottom:6.425206pt;}
.y23_c00391{bottom:102.693333pt;}
.y22_c00391{bottom:133.226667pt;}
.y21_c00391{bottom:163.226667pt;}
.y20_c00391{bottom:192.693333pt;}
.y1f_c00391{bottom:223.226667pt;}
.y1e_c00391{bottom:253.226667pt;}
.y1d_c00391{bottom:282.960000pt;}
.y1c_c00391{bottom:313.226667pt;}
.y1b_c00391{bottom:343.226667pt;}
.y1a_c00391{bottom:373.226667pt;}
.y19_c00391{bottom:402.960000pt;}
.y18_c00391{bottom:432.693333pt;}
.y17_c00391{bottom:462.960000pt;}
.y16_c00391{bottom:492.693333pt;}
.y15_c00391{bottom:522.693333pt;}
.y14_c00391{bottom:552.560000pt;}
.y13_c00391{bottom:582.693333pt;}
.y12_c00391{bottom:612.693333pt;}
.y11_c00391{bottom:642.560000pt;}
.y10_c00391{bottom:654.026667pt;}
.yf_c00391{bottom:671.760000pt;}
.ye_c00391{bottom:731.760000pt;}
.yd_c00391{bottom:738.560000pt;}
.yb_c00391{bottom:753.893333pt;}
.ya_c00391{bottom:790.160000pt;}
.y9_c00391{bottom:798.026667pt;}
.y8_c00391{bottom:842.426667pt;}
.yc_c00391{bottom:871.893333pt;}
.y7_c00391{bottom:886.560000pt;}
.y6_c00391{bottom:931.226667pt;}
.y5_c00391{bottom:999.893333pt;}
.y4_c00391{bottom:1029.093333pt;}
.y3_c00391{bottom:1058.960000pt;}
.y2_c00391{bottom:1089.093333pt;}
.y1_c00391{bottom:1117.893333pt;}
.h5_c00391{height:11.733399pt;}
.h6_c00391{height:38.937500pt;}
.h4_c00391{height:97.912760pt;}
.h2_c00391{height:108.041667pt;}
.h3_c00391{height:162.062500pt;}
.h0_c00391{height:1229.066667pt;}
.h1_c00391{height:1229.333333pt;}
.w2_c00391{width:93.222667pt;}
.w0_c00391{width:767.266667pt;}
.w1_c00391{width:767.333333pt;}
.x0_c00391{left:0.000000pt;}
.xd_c00391{left:137.600000pt;}
.xf_c00391{left:163.466667pt;}
.x12_c00391{left:229.733333pt;}
.x11_c00391{left:230.666667pt;}
.x10_c00391{left:231.600000pt;}
.x1_c00391{left:232.533333pt;}
.x2_c00391{left:233.600000pt;}
.x3_c00391{left:234.533333pt;}
.x4_c00391{left:235.466667pt;}
.x5_c00391{left:245.600000pt;}
.x6_c00391{left:288.266667pt;}
.xe_c00391{left:304.400000pt;}
.x13_c00391{left:340.801554pt;}
.xc_c00391{left:376.133333pt;}
.x7_c00391{left:392.933333pt;}
.xb_c00391{left:406.800000pt;}
.x8_c00391{left:436.133333pt;}
.x9_c00391{left:465.333333pt;}
.xa_c00391{left:720.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_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_b86b7ce3a42c4e8dc74a6e48.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_7e3227fcdd27ba1276af1952.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_0ae5c1a7a28e11fe6e34914f.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls4_c00392{letter-spacing:0.000000px;}
.ls5_c00392{letter-spacing:3.000000px;}
.ls0_c00392{letter-spacing:5.400000px;}
.ls2_c00392{letter-spacing:6.036000px;}
.ls1_c00392{letter-spacing:6.720000px;}
.ls3_c00392{letter-spacing:22.200000px;}
.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;}
}
.ws0_c00392{word-spacing:-25.305000px;}
.ws1_c00392{word-spacing:0.000000px;}
._30_c00392{margin-left:-83.040000px;}
._4b_c00392{margin-left:-78.015000px;}
._37_c00392{margin-left:-66.912000px;}
._34_c00392{margin-left:-51.216000px;}
._3e_c00392{margin-left:-23.904000px;}
._26_c00392{margin-left:-21.504000px;}
._4_c00392{margin-left:-19.872000px;}
._2e_c00392{margin-left:-17.184000px;}
._16_c00392{margin-left:-15.072000px;}
._33_c00392{margin-left:-13.104000px;}
._2f_c00392{margin-left:-11.328000px;}
._35_c00392{margin-left:-10.176000px;}
._b_c00392{margin-left:-8.976000px;}
._12_c00392{margin-left:-7.584000px;}
._3d_c00392{margin-left:-6.528000px;}
._2b_c00392{margin-left:-5.280000px;}
._1c_c00392{margin-left:-4.032000px;}
._36_c00392{margin-left:-2.976000px;}
._8_c00392{margin-left:-1.776000px;}
._3_c00392{width:1.536000px;}
._1_c00392{width:2.784000px;}
._0_c00392{width:3.936000px;}
._17_c00392{width:4.944000px;}
._2_c00392{width:5.952000px;}
._c_c00392{width:7.008000px;}
._f_c00392{width:8.256000px;}
._25_c00392{width:9.264000px;}
._1d_c00392{width:10.320000px;}
._31_c00392{width:11.376000px;}
._14_c00392{width:12.384000px;}
._3f_c00392{width:13.488000px;}
._23_c00392{width:15.120000px;}
._46_c00392{width:16.200000px;}
._13_c00392{width:17.472000px;}
._5_c00392{width:19.200000px;}
._2c_c00392{width:20.496000px;}
._6_c00392{width:21.504000px;}
._7_c00392{width:24.576000px;}
._42_c00392{width:26.496000px;}
._19_c00392{width:27.888000px;}
._15_c00392{width:29.520000px;}
._24_c00392{width:30.624000px;}
._d_c00392{width:32.064000px;}
._9_c00392{width:34.176000px;}
._21_c00392{width:35.376000px;}
._10_c00392{width:37.152000px;}
._a_c00392{width:38.976000px;}
._38_c00392{width:40.560000px;}
._1a_c00392{width:41.568000px;}
._11_c00392{width:42.720000px;}
._e_c00392{width:44.448000px;}
._32_c00392{width:46.176000px;}
._22_c00392{width:47.184000px;}
._1b_c00392{width:49.632000px;}
._41_c00392{width:51.312000px;}
._45_c00392{width:52.512000px;}
._3c_c00392{width:54.096000px;}
._20_c00392{width:56.016000px;}
._43_c00392{width:58.272000px;}
._29_c00392{width:60.528000px;}
._47_c00392{width:62.592000px;}
._18_c00392{width:66.528000px;}
._1e_c00392{width:68.832000px;}
._40_c00392{width:71.712000px;}
._2d_c00392{width:73.056000px;}
._48_c00392{width:82.608000px;}
._44_c00392{width:86.496000px;}
._39_c00392{width:109.992000px;}
._2a_c00392{width:115.968000px;}
._1f_c00392{width:127.056000px;}
._4c_c00392{width:129.150000px;}
._27_c00392{width:151.200000px;}
._49_c00392{width:155.295000px;}
._3a_c00392{width:179.520000px;}
._3b_c00392{width:361.392000px;}
._4a_c00392{width:579.294000px;}
._28_c00392{width:1551.456000px;}
.fc2_c00392{color:transparent;}
.fc1_c00392{color:rgb(128,128,128);}
.fc0_c00392{color:rgb(0,0,0);}
.fs2_c00392{font-size:36.000000px;}
.fs7_c00392{font-size:48.000000px;}
.fs5_c00392{font-size:60.000000px;}
.fs3_c00392{font-size:78.000000px;}
.fs4_c00392{font-size:84.000000px;}
.fs0_c00392{font-size:96.000000px;}
.fs1_c00392{font-size:102.000000px;}
.fs6_c00392{font-size:105.000000px;}
.y0_c00392{bottom:0.000000px;}
.y27_c00392{bottom:3.105000px;}
.y26_c00392{bottom:7.228371px;}
.y25_c00392{bottom:86.715000px;}
.y24_c00392{bottom:122.265000px;}
.y23_c00392{bottom:156.615000px;}
.y22_c00392{bottom:190.815000px;}
.y21_c00392{bottom:224.865000px;}
.y20_c00392{bottom:259.215000px;}
.y1f_c00392{bottom:292.365000px;}
.y1e_c00392{bottom:325.815000px;}
.y1d_c00392{bottom:359.865000px;}
.y1c_c00392{bottom:393.165000px;}
.y1b_c00392{bottom:427.365000px;}
.y1a_c00392{bottom:459.465000px;}
.y19_c00392{bottom:493.215000px;}
.y18_c00392{bottom:526.965000px;}
.y17_c00392{bottom:561.615000px;}
.y16_c00392{bottom:593.715000px;}
.y15_c00392{bottom:627.765000px;}
.y14_c00392{bottom:660.165000px;}
.y13_c00392{bottom:693.765000px;}
.y12_c00392{bottom:727.065000px;}
.y11_c00392{bottom:760.365000px;}
.y10_c00392{bottom:794.265000px;}
.yf_c00392{bottom:827.565000px;}
.ye_c00392{bottom:859.965000px;}
.yd_c00392{bottom:893.115000px;}
.yc_c00392{bottom:926.115000px;}
.yb_c00392{bottom:951.465000px;}
.ya_c00392{bottom:960.315000px;}
.y9_c00392{bottom:992.715000px;}
.y8_c00392{bottom:1026.465000px;}
.y7_c00392{bottom:1059.465000px;}
.y6_c00392{bottom:1092.615000px;}
.y5_c00392{bottom:1124.865000px;}
.y4_c00392{bottom:1157.415000px;}
.y3_c00392{bottom:1190.715000px;}
.y2_c00392{bottom:1225.215000px;}
.y1_c00392{bottom:1258.215000px;}
.h6_c00392{height:13.200074px;}
.h7_c00392{height:43.804688px;}
.h3_c00392{height:91.291992px;}
.h2_c00392{height:121.546875px;}
.h4_c00392{height:122.146875px;}
.h5_c00392{height:132.941895px;}
.h0_c00392{height:1360.275000px;}
.h1_c00392{height:1360.500000px;}
.w2_c00392{width:104.875500px;}
.w1_c00392{width:863.250000px;}
.w0_c00392{width:863.475000px;}
.x0_c00392{left:0.000000px;}
.x4_c00392{left:30.450000px;}
.x3_c00392{left:32.100000px;}
.x2_c00392{left:33.150000px;}
.x1_c00392{left:34.800000px;}
.x6_c00392{left:36.000000px;}
.x7_c00392{left:37.050000px;}
.x8_c00392{left:39.150000px;}
.x9_c00392{left:41.400000px;}
.xa_c00392{left:42.900000px;}
.xc_c00392{left:79.350000px;}
.xb_c00392{left:110.400000px;}
.x5_c00392{left:132.000000px;}
.xd_c00392{left:247.800000px;}
.xe_c00392{left:383.551758px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls4_c00392{letter-spacing:0.000000pt;}
.ls5_c00392{letter-spacing:2.666667pt;}
.ls0_c00392{letter-spacing:4.800000pt;}
.ls2_c00392{letter-spacing:5.365333pt;}
.ls1_c00392{letter-spacing:5.973333pt;}
.ls3_c00392{letter-spacing:19.733333pt;}
.ws0_c00392{word-spacing:-22.493333pt;}
.ws1_c00392{word-spacing:0.000000pt;}
._30_c00392{margin-left:-73.813333pt;}
._4b_c00392{margin-left:-69.346667pt;}
._37_c00392{margin-left:-59.477333pt;}
._34_c00392{margin-left:-45.525333pt;}
._3e_c00392{margin-left:-21.248000pt;}
._26_c00392{margin-left:-19.114667pt;}
._4_c00392{margin-left:-17.664000pt;}
._2e_c00392{margin-left:-15.274667pt;}
._16_c00392{margin-left:-13.397333pt;}
._33_c00392{margin-left:-11.648000pt;}
._2f_c00392{margin-left:-10.069333pt;}
._35_c00392{margin-left:-9.045333pt;}
._b_c00392{margin-left:-7.978667pt;}
._12_c00392{margin-left:-6.741333pt;}
._3d_c00392{margin-left:-5.802667pt;}
._2b_c00392{margin-left:-4.693333pt;}
._1c_c00392{margin-left:-3.584000pt;}
._36_c00392{margin-left:-2.645333pt;}
._8_c00392{margin-left:-1.578667pt;}
._3_c00392{width:1.365333pt;}
._1_c00392{width:2.474667pt;}
._0_c00392{width:3.498667pt;}
._17_c00392{width:4.394667pt;}
._2_c00392{width:5.290667pt;}
._c_c00392{width:6.229333pt;}
._f_c00392{width:7.338667pt;}
._25_c00392{width:8.234667pt;}
._1d_c00392{width:9.173333pt;}
._31_c00392{width:10.112000pt;}
._14_c00392{width:11.008000pt;}
._3f_c00392{width:11.989333pt;}
._23_c00392{width:13.440000pt;}
._46_c00392{width:14.400000pt;}
._13_c00392{width:15.530667pt;}
._5_c00392{width:17.066667pt;}
._2c_c00392{width:18.218667pt;}
._6_c00392{width:19.114667pt;}
._7_c00392{width:21.845333pt;}
._42_c00392{width:23.552000pt;}
._19_c00392{width:24.789333pt;}
._15_c00392{width:26.240000pt;}
._24_c00392{width:27.221333pt;}
._d_c00392{width:28.501333pt;}
._9_c00392{width:30.378667pt;}
._21_c00392{width:31.445333pt;}
._10_c00392{width:33.024000pt;}
._a_c00392{width:34.645333pt;}
._38_c00392{width:36.053333pt;}
._1a_c00392{width:36.949333pt;}
._11_c00392{width:37.973333pt;}
._e_c00392{width:39.509333pt;}
._32_c00392{width:41.045333pt;}
._22_c00392{width:41.941333pt;}
._1b_c00392{width:44.117333pt;}
._41_c00392{width:45.610667pt;}
._45_c00392{width:46.677333pt;}
._3c_c00392{width:48.085333pt;}
._20_c00392{width:49.792000pt;}
._43_c00392{width:51.797333pt;}
._29_c00392{width:53.802667pt;}
._47_c00392{width:55.637333pt;}
._18_c00392{width:59.136000pt;}
._1e_c00392{width:61.184000pt;}
._40_c00392{width:63.744000pt;}
._2d_c00392{width:64.938667pt;}
._48_c00392{width:73.429333pt;}
._44_c00392{width:76.885333pt;}
._39_c00392{width:97.770667pt;}
._2a_c00392{width:103.082667pt;}
._1f_c00392{width:112.938667pt;}
._4c_c00392{width:114.800000pt;}
._27_c00392{width:134.400000pt;}
._49_c00392{width:138.040000pt;}
._3a_c00392{width:159.573333pt;}
._3b_c00392{width:321.237333pt;}
._4a_c00392{width:514.928000pt;}
._28_c00392{width:1379.072000pt;}
.fs2_c00392{font-size:32.000000pt;}
.fs7_c00392{font-size:42.666667pt;}
.fs5_c00392{font-size:53.333333pt;}
.fs3_c00392{font-size:69.333333pt;}
.fs4_c00392{font-size:74.666667pt;}
.fs0_c00392{font-size:85.333333pt;}
.fs1_c00392{font-size:90.666667pt;}
.fs6_c00392{font-size:93.333333pt;}
.y0_c00392{bottom:0.000000pt;}
.y27_c00392{bottom:2.760000pt;}
.y26_c00392{bottom:6.425219pt;}
.y25_c00392{bottom:77.080000pt;}
.y24_c00392{bottom:108.680000pt;}
.y23_c00392{bottom:139.213333pt;}
.y22_c00392{bottom:169.613333pt;}
.y21_c00392{bottom:199.880000pt;}
.y20_c00392{bottom:230.413333pt;}
.y1f_c00392{bottom:259.880000pt;}
.y1e_c00392{bottom:289.613333pt;}
.y1d_c00392{bottom:319.880000pt;}
.y1c_c00392{bottom:349.480000pt;}
.y1b_c00392{bottom:379.880000pt;}
.y1a_c00392{bottom:408.413333pt;}
.y19_c00392{bottom:438.413333pt;}
.y18_c00392{bottom:468.413333pt;}
.y17_c00392{bottom:499.213333pt;}
.y16_c00392{bottom:527.746667pt;}
.y15_c00392{bottom:558.013333pt;}
.y14_c00392{bottom:586.813333pt;}
.y13_c00392{bottom:616.680000pt;}
.y12_c00392{bottom:646.280000pt;}
.y11_c00392{bottom:675.880000pt;}
.y10_c00392{bottom:706.013333pt;}
.yf_c00392{bottom:735.613333pt;}
.ye_c00392{bottom:764.413333pt;}
.yd_c00392{bottom:793.880000pt;}
.yc_c00392{bottom:823.213333pt;}
.yb_c00392{bottom:845.746667pt;}
.ya_c00392{bottom:853.613333pt;}
.y9_c00392{bottom:882.413333pt;}
.y8_c00392{bottom:912.413333pt;}
.y7_c00392{bottom:941.746667pt;}
.y6_c00392{bottom:971.213333pt;}
.y5_c00392{bottom:999.880000pt;}
.y4_c00392{bottom:1028.813333pt;}
.y3_c00392{bottom:1058.413333pt;}
.y2_c00392{bottom:1089.080000pt;}
.y1_c00392{bottom:1118.413333pt;}
.h6_c00392{height:11.733399pt;}
.h7_c00392{height:38.937500pt;}
.h3_c00392{height:81.148438pt;}
.h2_c00392{height:108.041667pt;}
.h4_c00392{height:108.575000pt;}
.h5_c00392{height:118.170573pt;}
.h0_c00392{height:1209.133333pt;}
.h1_c00392{height:1209.333333pt;}
.w2_c00392{width:93.222667pt;}
.w1_c00392{width:767.333333pt;}
.w0_c00392{width:767.533333pt;}
.x0_c00392{left:0.000000pt;}
.x4_c00392{left:27.066667pt;}
.x3_c00392{left:28.533333pt;}
.x2_c00392{left:29.466667pt;}
.x1_c00392{left:30.933333pt;}
.x6_c00392{left:32.000000pt;}
.x7_c00392{left:32.933333pt;}
.x8_c00392{left:34.800000pt;}
.x9_c00392{left:36.800000pt;}
.xa_c00392{left:38.133333pt;}
.xc_c00392{left:70.533333pt;}
.xb_c00392{left:98.133333pt;}
.x5_c00392{left:117.333333pt;}
.xd_c00392{left:220.266667pt;}
.xe_c00392{left:340.934896pt;}
}





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

.ir_c00393:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00393;src:url('chunks/assets/font_ccebc94fca57cb3e77f95c01.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_3bcec4ad5942c8e76ac000ad.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_5ee612a6fcbcf4db8c7011ce.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls1_c00393{letter-spacing:0.000000px;}
.ls2_c00393{letter-spacing:6.000000px;}
.ls0_c00393{letter-spacing:42.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00393{word-spacing:-63.504000px;}
.ws4_c00393{word-spacing:-57.000000px;}
.ws3_c00393{word-spacing:-44.688000px;}
.ws2_c00393{word-spacing:-23.136000px;}
.ws0_c00393{word-spacing:-20.967000px;}
.ws5_c00393{word-spacing:0.000000px;}
._2_c00393{margin-left:-75.342000px;}
._21_c00393{margin-left:-26.688000px;}
._0_c00393{margin-left:-24.780000px;}
._29_c00393{margin-left:-21.504000px;}
._2a_c00393{margin-left:-19.488000px;}
._18_c00393{margin-left:-16.704000px;}
._33_c00393{margin-left:-15.336000px;}
._17_c00393{margin-left:-14.208000px;}
._34_c00393{margin-left:-13.152000px;}
._1f_c00393{margin-left:-11.712000px;}
._1e_c00393{margin-left:-10.224000px;}
._25_c00393{margin-left:-8.940000px;}
._16_c00393{margin-left:-7.392000px;}
._30_c00393{margin-left:-6.036000px;}
._10_c00393{margin-left:-4.620000px;}
._c_c00393{margin-left:-3.360000px;}
._2f_c00393{margin-left:-2.304000px;}
._d_c00393{margin-left:-1.152000px;}
._8_c00393{width:1.248000px;}
._f_c00393{width:2.400000px;}
._4_c00393{width:3.552000px;}
._3_c00393{width:4.704000px;}
._6_c00393{width:6.144000px;}
._5_c00393{width:8.064000px;}
._13_c00393{width:9.600000px;}
._12_c00393{width:11.712000px;}
._2e_c00393{width:13.056000px;}
._e_c00393{width:14.688000px;}
._2c_c00393{width:15.780000px;}
._a_c00393{width:17.664000px;}
._1d_c00393{width:19.596000px;}
._39_c00393{width:20.784000px;}
._31_c00393{width:22.128000px;}
._38_c00393{width:24.480000px;}
._1_c00393{width:25.740000px;}
._3a_c00393{width:27.432000px;}
._22_c00393{width:28.800000px;}
._14_c00393{width:29.952000px;}
._b_c00393{width:32.064000px;}
._3b_c00393{width:33.408000px;}
._23_c00393{width:34.848000px;}
._20_c00393{width:36.192000px;}
._9_c00393{width:38.784000px;}
._1c_c00393{width:40.536000px;}
._32_c00393{width:41.568000px;}
._19_c00393{width:42.816000px;}
._15_c00393{width:44.544000px;}
._24_c00393{width:47.040000px;}
._1a_c00393{width:48.384000px;}
._35_c00393{width:49.536000px;}
._28_c00393{width:51.744000px;}
._11_c00393{width:53.664000px;}
._27_c00393{width:56.064000px;}
._3e_c00393{width:57.744000px;}
._7_c00393{width:61.920000px;}
._40_c00393{width:68.112000px;}
._26_c00393{width:80.052000px;}
._1b_c00393{width:85.812000px;}
._3d_c00393{width:101.316000px;}
._3f_c00393{width:112.416000px;}
._37_c00393{width:148.800000px;}
._2d_c00393{width:176.640000px;}
._3c_c00393{width:180.420000px;}
._36_c00393{width:199.020000px;}
._2b_c00393{width:316.464000px;}
._42_c00393{width:529.836000px;}
._41_c00393{width:895.872000px;}
.fc2_c00393{color:transparent;}
.fc1_c00393{color:rgb(128,128,128);}
.fc0_c00393{color:rgb(0,0,0);}
.fs5_c00393{font-size:48.000000px;}
.fs0_c00393{font-size:60.000000px;}
.fs4_c00393{font-size:84.000000px;}
.fs1_c00393{font-size:87.000000px;}
.fs2_c00393{font-size:96.000000px;}
.fs3_c00393{font-size:102.000000px;}
.y0_c00393{bottom:0.000000px;}
.y27_c00393{bottom:3.105000px;}
.y26_c00393{bottom:7.228357px;}
.y25_c00393{bottom:94.830000px;}
.y24_c00393{bottom:123.630000px;}
.y23_c00393{bottom:157.230000px;}
.y22_c00393{bottom:191.430000px;}
.y21_c00393{bottom:225.780000px;}
.y20_c00393{bottom:261.630000px;}
.y1f_c00393{bottom:294.330000px;}
.y1e_c00393{bottom:328.830000px;}
.y1d_c00393{bottom:363.180000px;}
.y1c_c00393{bottom:395.280000px;}
.y1b_c00393{bottom:429.930000px;}
.y1a_c00393{bottom:463.680000px;}
.y19_c00393{bottom:497.580000px;}
.y18_c00393{bottom:530.580000px;}
.y17_c00393{bottom:564.630000px;}
.y16_c00393{bottom:598.680000px;}
.y15_c00393{bottom:631.830000px;}
.y14_c00393{bottom:665.280000px;}
.y13_c00393{bottom:699.030000px;}
.y12_c00393{bottom:732.330000px;}
.y11_c00393{bottom:765.780000px;}
.y10_c00393{bottom:799.530000px;}
.yf_c00393{bottom:833.280000px;}
.ye_c00393{bottom:866.130000px;}
.yd_c00393{bottom:899.730000px;}
.yc_c00393{bottom:933.630000px;}
.yb_c00393{bottom:966.330000px;}
.ya_c00393{bottom:997.080000px;}
.y9_c00393{bottom:1031.730000px;}
.y8_c00393{bottom:1065.180000px;}
.y7_c00393{bottom:1098.330000px;}
.y6_c00393{bottom:1132.380000px;}
.y5_c00393{bottom:1165.080000px;}
.y4_c00393{bottom:1197.780000px;}
.y3_c00393{bottom:1231.230000px;}
.y2_c00393{bottom:1265.280000px;}
.y1_c00393{bottom:1293.030000px;}
.h4_c00393{height:13.200074px;}
.h5_c00393{height:43.804688px;}
.h2_c00393{height:110.151855px;}
.h3_c00393{height:121.546875px;}
.h0_c00393{height:1382.700000px;}
.h1_c00393{height:1383.000000px;}
.w2_c00393{width:104.875500px;}
.w0_c00393{width:863.175000px;}
.w1_c00393{width:863.250000px;}
.x0_c00393{left:0.000000px;}
.x9_c00393{left:139.050000px;}
.x6_c00393{left:176.250000px;}
.x2_c00393{left:256.200000px;}
.x4_c00393{left:257.850000px;}
.x3_c00393{left:258.900000px;}
.x5_c00393{left:259.950000px;}
.x8_c00393{left:261.600000px;}
.x7_c00393{left:262.650000px;}
.xb_c00393{left:264.900000px;}
.xc_c00393{left:265.950000px;}
.x1_c00393{left:311.100000px;}
.xa_c00393{left:314.100000px;}
.xe_c00393{left:383.401749px;}
.xd_c00393{left:796.200000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls1_c00393{letter-spacing:0.000000pt;}
.ls2_c00393{letter-spacing:5.333333pt;}
.ls0_c00393{letter-spacing:37.333333pt;}
.ws1_c00393{word-spacing:-56.448000pt;}
.ws4_c00393{word-spacing:-50.666667pt;}
.ws3_c00393{word-spacing:-39.722667pt;}
.ws2_c00393{word-spacing:-20.565333pt;}
.ws0_c00393{word-spacing:-18.637333pt;}
.ws5_c00393{word-spacing:0.000000pt;}
._2_c00393{margin-left:-66.970667pt;}
._21_c00393{margin-left:-23.722667pt;}
._0_c00393{margin-left:-22.026667pt;}
._29_c00393{margin-left:-19.114667pt;}
._2a_c00393{margin-left:-17.322667pt;}
._18_c00393{margin-left:-14.848000pt;}
._33_c00393{margin-left:-13.632000pt;}
._17_c00393{margin-left:-12.629333pt;}
._34_c00393{margin-left:-11.690667pt;}
._1f_c00393{margin-left:-10.410667pt;}
._1e_c00393{margin-left:-9.088000pt;}
._25_c00393{margin-left:-7.946667pt;}
._16_c00393{margin-left:-6.570667pt;}
._30_c00393{margin-left:-5.365333pt;}
._10_c00393{margin-left:-4.106667pt;}
._c_c00393{margin-left:-2.986667pt;}
._2f_c00393{margin-left:-2.048000pt;}
._d_c00393{margin-left:-1.024000pt;}
._8_c00393{width:1.109333pt;}
._f_c00393{width:2.133333pt;}
._4_c00393{width:3.157333pt;}
._3_c00393{width:4.181333pt;}
._6_c00393{width:5.461333pt;}
._5_c00393{width:7.168000pt;}
._13_c00393{width:8.533333pt;}
._12_c00393{width:10.410667pt;}
._2e_c00393{width:11.605333pt;}
._e_c00393{width:13.056000pt;}
._2c_c00393{width:14.026667pt;}
._a_c00393{width:15.701333pt;}
._1d_c00393{width:17.418667pt;}
._39_c00393{width:18.474667pt;}
._31_c00393{width:19.669333pt;}
._38_c00393{width:21.760000pt;}
._1_c00393{width:22.880000pt;}
._3a_c00393{width:24.384000pt;}
._22_c00393{width:25.600000pt;}
._14_c00393{width:26.624000pt;}
._b_c00393{width:28.501333pt;}
._3b_c00393{width:29.696000pt;}
._23_c00393{width:30.976000pt;}
._20_c00393{width:32.170667pt;}
._9_c00393{width:34.474667pt;}
._1c_c00393{width:36.032000pt;}
._32_c00393{width:36.949333pt;}
._19_c00393{width:38.058667pt;}
._15_c00393{width:39.594667pt;}
._24_c00393{width:41.813333pt;}
._1a_c00393{width:43.008000pt;}
._35_c00393{width:44.032000pt;}
._28_c00393{width:45.994667pt;}
._11_c00393{width:47.701333pt;}
._27_c00393{width:49.834667pt;}
._3e_c00393{width:51.328000pt;}
._7_c00393{width:55.040000pt;}
._40_c00393{width:60.544000pt;}
._26_c00393{width:71.157333pt;}
._1b_c00393{width:76.277333pt;}
._3d_c00393{width:90.058667pt;}
._3f_c00393{width:99.925333pt;}
._37_c00393{width:132.266667pt;}
._2d_c00393{width:157.013333pt;}
._3c_c00393{width:160.373333pt;}
._36_c00393{width:176.906667pt;}
._2b_c00393{width:281.301333pt;}
._42_c00393{width:470.965333pt;}
._41_c00393{width:796.330667pt;}
.fs5_c00393{font-size:42.666667pt;}
.fs0_c00393{font-size:53.333333pt;}
.fs4_c00393{font-size:74.666667pt;}
.fs1_c00393{font-size:77.333333pt;}
.fs2_c00393{font-size:85.333333pt;}
.fs3_c00393{font-size:90.666667pt;}
.y0_c00393{bottom:0.000000pt;}
.y27_c00393{bottom:2.760000pt;}
.y26_c00393{bottom:6.425206pt;}
.y25_c00393{bottom:84.293333pt;}
.y24_c00393{bottom:109.893333pt;}
.y23_c00393{bottom:139.760000pt;}
.y22_c00393{bottom:170.160000pt;}
.y21_c00393{bottom:200.693333pt;}
.y20_c00393{bottom:232.560000pt;}
.y1f_c00393{bottom:261.626667pt;}
.y1e_c00393{bottom:292.293333pt;}
.y1d_c00393{bottom:322.826667pt;}
.y1c_c00393{bottom:351.360000pt;}
.y1b_c00393{bottom:382.160000pt;}
.y1a_c00393{bottom:412.160000pt;}
.y19_c00393{bottom:442.293333pt;}
.y18_c00393{bottom:471.626667pt;}
.y17_c00393{bottom:501.893333pt;}
.y16_c00393{bottom:532.160000pt;}
.y15_c00393{bottom:561.626667pt;}
.y14_c00393{bottom:591.360000pt;}
.y13_c00393{bottom:621.360000pt;}
.y12_c00393{bottom:650.960000pt;}
.y11_c00393{bottom:680.693333pt;}
.y10_c00393{bottom:710.693333pt;}
.yf_c00393{bottom:740.693333pt;}
.ye_c00393{bottom:769.893333pt;}
.yd_c00393{bottom:799.760000pt;}
.yc_c00393{bottom:829.893333pt;}
.yb_c00393{bottom:858.960000pt;}
.ya_c00393{bottom:886.293333pt;}
.y9_c00393{bottom:917.093333pt;}
.y8_c00393{bottom:946.826667pt;}
.y7_c00393{bottom:976.293333pt;}
.y6_c00393{bottom:1006.560000pt;}
.y5_c00393{bottom:1035.626667pt;}
.y4_c00393{bottom:1064.693333pt;}
.y3_c00393{bottom:1094.426667pt;}
.y2_c00393{bottom:1124.693333pt;}
.y1_c00393{bottom:1149.360000pt;}
.h4_c00393{height:11.733399pt;}
.h5_c00393{height:38.937500pt;}
.h2_c00393{height:97.912760pt;}
.h3_c00393{height:108.041667pt;}
.h0_c00393{height:1229.066667pt;}
.h1_c00393{height:1229.333333pt;}
.w2_c00393{width:93.222667pt;}
.w0_c00393{width:767.266667pt;}
.w1_c00393{width:767.333333pt;}
.x0_c00393{left:0.000000pt;}
.x9_c00393{left:123.600000pt;}
.x6_c00393{left:156.666667pt;}
.x2_c00393{left:227.733333pt;}
.x4_c00393{left:229.200000pt;}
.x3_c00393{left:230.133333pt;}
.x5_c00393{left:231.066667pt;}
.x8_c00393{left:232.533333pt;}
.x7_c00393{left:233.466667pt;}
.xb_c00393{left:235.466667pt;}
.xc_c00393{left:236.400000pt;}
.x1_c00393{left:276.533333pt;}
.xa_c00393{left:279.200000pt;}
.xe_c00393{left:340.801554pt;}
.xd_c00393{left:707.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d806d209cf3af9c29329cbb.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_b3dfd5ec2b5c57f9bb40cb84.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_538ffd0dd6f631f3a11715cb.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_ba3a9c6bfa73dd53c8b44ec1.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_fce55526465377c0203c8fe8.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00394;src:url('chunks/assets/font_59ee309fe91a57339f1007a6.woff2')format("woff");}.ff6_c00394{font-family:ff6_c00394;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00394;src:url('chunks/assets/font_1a78b76a3c1bb198f24aa9cf.woff2')format("woff");}.ff7_c00394{font-family:ff7_c00394;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00394;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00394{font-family:ff8_c00394;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls4_c00394{letter-spacing:-6.000000px;}
.ls3_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:1.800000px;}
.ls5_c00394{letter-spacing:6.000000px;}
.ls1_c00394{letter-spacing:6.480000px;}
.ls2_c00394{letter-spacing:30.900000px;}
.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;}
}
.ws6_c00394{word-spacing:-57.000000px;}
.ws2_c00394{word-spacing:-53.856000px;}
.ws1_c00394{word-spacing:-43.084800px;}
.ws7_c00394{word-spacing:-23.136000px;}
.ws3_c00394{word-spacing:-20.244000px;}
.ws0_c00394{word-spacing:-10.068000px;}
.ws9_c00394{word-spacing:0.000000px;}
.ws5_c00394{word-spacing:0.084000px;}
.ws8_c00394{word-spacing:2.772000px;}
.ws4_c00394{word-spacing:5.460000px;}
._40_c00394{margin-left:-76.800000px;}
._26_c00394{margin-left:-30.675000px;}
._1e_c00394{margin-left:-26.016000px;}
._15_c00394{margin-left:-20.370000px;}
._49_c00394{margin-left:-19.353000px;}
._18_c00394{margin-left:-17.568000px;}
._13_c00394{margin-left:-16.467000px;}
._16_c00394{margin-left:-15.168000px;}
._17_c00394{margin-left:-13.728000px;}
._14_c00394{margin-left:-12.513000px;}
._1a_c00394{margin-left:-11.040000px;}
._2e_c00394{margin-left:-9.393000px;}
._a_c00394{margin-left:-8.295000px;}
._28_c00394{margin-left:-7.245000px;}
._9_c00394{margin-left:-6.195000px;}
._2f_c00394{margin-left:-5.121000px;}
._3_c00394{margin-left:-4.095000px;}
._2_c00394{margin-left:-2.940000px;}
._0_c00394{margin-left:-1.575000px;}
._5_c00394{width:1.785000px;}
._c_c00394{width:2.922000px;}
._2a_c00394{width:4.140000px;}
._4_c00394{width:5.145000px;}
._f_c00394{width:6.300000px;}
._e_c00394{width:8.295000px;}
._27_c00394{width:9.990000px;}
._33_c00394{width:11.079000px;}
._10_c00394{width:12.093000px;}
._35_c00394{width:13.380000px;}
._6_c00394{width:14.595000px;}
._b_c00394{width:16.740000px;}
._2d_c00394{width:19.551000px;}
._1_c00394{width:21.105000px;}
._d_c00394{width:24.150000px;}
._2b_c00394{width:25.326000px;}
._23_c00394{width:26.688000px;}
._34_c00394{width:28.065000px;}
._36_c00394{width:29.664000px;}
._21_c00394{width:30.678000px;}
._25_c00394{width:31.710000px;}
._11_c00394{width:33.075000px;}
._7_c00394{width:35.070000px;}
._2c_c00394{width:36.417000px;}
._29_c00394{width:39.261000px;}
._12_c00394{width:40.530000px;}
._47_c00394{width:41.694000px;}
._44_c00394{width:43.431000px;}
._1b_c00394{width:45.180000px;}
._30_c00394{width:47.571000px;}
._1d_c00394{width:49.779000px;}
._39_c00394{width:51.744000px;}
._3a_c00394{width:52.800000px;}
._48_c00394{width:53.895000px;}
._37_c00394{width:55.680000px;}
._24_c00394{width:58.170000px;}
._22_c00394{width:61.950000px;}
._45_c00394{width:65.058000px;}
._20_c00394{width:66.312000px;}
._4a_c00394{width:69.465000px;}
._3e_c00394{width:75.660000px;}
._31_c00394{width:77.877000px;}
._46_c00394{width:90.576000px;}
._4d_c00394{width:108.561000px;}
._4e_c00394{width:123.090000px;}
._43_c00394{width:144.609000px;}
._3b_c00394{width:147.726000px;}
._1f_c00394{width:163.680000px;}
._3d_c00394{width:178.644000px;}
._3c_c00394{width:197.127000px;}
._8_c00394{width:198.345000px;}
._32_c00394{width:233.940000px;}
._38_c00394{width:237.510000px;}
._4c_c00394{width:250.791000px;}
._42_c00394{width:265.767000px;}
._3f_c00394{width:278.160000px;}
._4b_c00394{width:383.898000px;}
._19_c00394{width:406.464000px;}
._41_c00394{width:421.728000px;}
._1c_c00394{width:552.768000px;}
._4f_c00394{width:1721.598000px;}
._50_c00394{width:1957.401000px;}
.fc2_c00394{color:transparent;}
.fc1_c00394{color:rgb(128,128,128);}
.fc0_c00394{color:rgb(0,0,0);}
.fs8_c00394{font-size:48.000000px;}
.fs4_c00394{font-size:76.800000px;}
.fs1_c00394{font-size:78.000000px;}
.fs5_c00394{font-size:84.000000px;}
.fs7_c00394{font-size:87.000000px;}
.fs2_c00394{font-size:96.000000px;}
.fs6_c00394{font-size:102.000000px;}
.fs0_c00394{font-size:105.000000px;}
.fs3_c00394{font-size:114.000000px;}
.y0_c00394{bottom:0.000000px;}
.y27_c00394{bottom:3.105000px;}
.y26_c00394{bottom:7.228369px;}
.y25_c00394{bottom:104.220000px;}
.y24_c00394{bottom:123.120000px;}
.y23_c00394{bottom:136.620000px;}
.y22_c00394{bottom:171.120000px;}
.y21_c00394{bottom:205.170000px;}
.y20_c00394{bottom:238.920000px;}
.y1f_c00394{bottom:274.020000px;}
.y1e_c00394{bottom:306.720000px;}
.y1d_c00394{bottom:341.820000px;}
.y1c_c00394{bottom:375.570000px;}
.y1b_c00394{bottom:409.020000px;}
.y1a_c00394{bottom:441.420000px;}
.y19_c00394{bottom:475.770000px;}
.y18_c00394{bottom:509.970000px;}
.y17_c00394{bottom:543.720000px;}
.y16_c00394{bottom:576.420000px;}
.y15_c00394{bottom:610.170000px;}
.y14_c00394{bottom:644.220000px;}
.y13_c00394{bottom:676.620000px;}
.y12_c00394{bottom:709.020000px;}
.y11_c00394{bottom:743.220000px;}
.y10_c00394{bottom:777.570000px;}
.yf_c00394{bottom:811.020000px;}
.ye_c00394{bottom:843.120000px;}
.yd_c00394{bottom:876.120000px;}
.yc_c00394{bottom:909.270000px;}
.yb_c00394{bottom:942.570000px;}
.ya_c00394{bottom:975.270000px;}
.y9_c00394{bottom:1008.720000px;}
.y8_c00394{bottom:1043.220000px;}
.y7_c00394{bottom:1075.620000px;}
.y6_c00394{bottom:1109.070000px;}
.y5_c00394{bottom:1142.070000px;}
.y4_c00394{bottom:1175.220000px;}
.y3_c00394{bottom:1207.920000px;}
.y2_c00394{bottom:1241.370000px;}
.y1_c00394{bottom:1274.970000px;}
.h6_c00394{height:13.200073px;}
.h7_c00394{height:43.804688px;}
.h4_c00394{height:106.353516px;}
.h5_c00394{height:110.151855px;}
.h3_c00394{height:121.546875px;}
.h2_c00394{height:132.941895px;}
.h0_c00394{height:1383.450000px;}
.h1_c00394{height:1383.750000px;}
.w2_c00394{width:104.875500px;}
.w0_c00394{width:878.025000px;}
.w1_c00394{width:878.250000px;}
.x0_c00394{left:0.000000px;}
.xf_c00394{left:32.700000px;}
.xa_c00394{left:36.000000px;}
.xc_c00394{left:37.500000px;}
.x9_c00394{left:38.700000px;}
.x7_c00394{left:39.750000px;}
.x5_c00394{left:40.800000px;}
.x4_c00394{left:41.850000px;}
.x2_c00394{left:43.500000px;}
.x1_c00394{left:46.200000px;}
.x3_c00394{left:51.000000px;}
.x6_c00394{left:77.550000px;}
.x8_c00394{left:84.000000px;}
.xb_c00394{left:86.100000px;}
.x10_c00394{left:139.350000px;}
.xe_c00394{left:155.850000px;}
.xd_c00394{left:180.150000px;}
.x11_c00394{left:390.826721px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls4_c00394{letter-spacing:-5.333333pt;}
.ls3_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:1.600000pt;}
.ls5_c00394{letter-spacing:5.333333pt;}
.ls1_c00394{letter-spacing:5.760000pt;}
.ls2_c00394{letter-spacing:27.466667pt;}
.ws6_c00394{word-spacing:-50.666667pt;}
.ws2_c00394{word-spacing:-47.872000pt;}
.ws1_c00394{word-spacing:-38.297600pt;}
.ws7_c00394{word-spacing:-20.565333pt;}
.ws3_c00394{word-spacing:-17.994667pt;}
.ws0_c00394{word-spacing:-8.949333pt;}
.ws9_c00394{word-spacing:0.000000pt;}
.ws5_c00394{word-spacing:0.074667pt;}
.ws8_c00394{word-spacing:2.464000pt;}
.ws4_c00394{word-spacing:4.853333pt;}
._40_c00394{margin-left:-68.266667pt;}
._26_c00394{margin-left:-27.266667pt;}
._1e_c00394{margin-left:-23.125333pt;}
._15_c00394{margin-left:-18.106667pt;}
._49_c00394{margin-left:-17.202667pt;}
._18_c00394{margin-left:-15.616000pt;}
._13_c00394{margin-left:-14.637333pt;}
._16_c00394{margin-left:-13.482667pt;}
._17_c00394{margin-left:-12.202667pt;}
._14_c00394{margin-left:-11.122667pt;}
._1a_c00394{margin-left:-9.813333pt;}
._2e_c00394{margin-left:-8.349333pt;}
._a_c00394{margin-left:-7.373333pt;}
._28_c00394{margin-left:-6.440000pt;}
._9_c00394{margin-left:-5.506667pt;}
._2f_c00394{margin-left:-4.552000pt;}
._3_c00394{margin-left:-3.640000pt;}
._2_c00394{margin-left:-2.613333pt;}
._0_c00394{margin-left:-1.400000pt;}
._5_c00394{width:1.586667pt;}
._c_c00394{width:2.597333pt;}
._2a_c00394{width:3.680000pt;}
._4_c00394{width:4.573333pt;}
._f_c00394{width:5.600000pt;}
._e_c00394{width:7.373333pt;}
._27_c00394{width:8.880000pt;}
._33_c00394{width:9.848000pt;}
._10_c00394{width:10.749333pt;}
._35_c00394{width:11.893333pt;}
._6_c00394{width:12.973333pt;}
._b_c00394{width:14.880000pt;}
._2d_c00394{width:17.378667pt;}
._1_c00394{width:18.760000pt;}
._d_c00394{width:21.466667pt;}
._2b_c00394{width:22.512000pt;}
._23_c00394{width:23.722667pt;}
._34_c00394{width:24.946667pt;}
._36_c00394{width:26.368000pt;}
._21_c00394{width:27.269333pt;}
._25_c00394{width:28.186667pt;}
._11_c00394{width:29.400000pt;}
._7_c00394{width:31.173333pt;}
._2c_c00394{width:32.370667pt;}
._29_c00394{width:34.898667pt;}
._12_c00394{width:36.026667pt;}
._47_c00394{width:37.061333pt;}
._44_c00394{width:38.605333pt;}
._1b_c00394{width:40.160000pt;}
._30_c00394{width:42.285333pt;}
._1d_c00394{width:44.248000pt;}
._39_c00394{width:45.994667pt;}
._3a_c00394{width:46.933333pt;}
._48_c00394{width:47.906667pt;}
._37_c00394{width:49.493333pt;}
._24_c00394{width:51.706667pt;}
._22_c00394{width:55.066667pt;}
._45_c00394{width:57.829333pt;}
._20_c00394{width:58.944000pt;}
._4a_c00394{width:61.746667pt;}
._3e_c00394{width:67.253333pt;}
._31_c00394{width:69.224000pt;}
._46_c00394{width:80.512000pt;}
._4d_c00394{width:96.498667pt;}
._4e_c00394{width:109.413333pt;}
._43_c00394{width:128.541333pt;}
._3b_c00394{width:131.312000pt;}
._1f_c00394{width:145.493333pt;}
._3d_c00394{width:158.794667pt;}
._3c_c00394{width:175.224000pt;}
._8_c00394{width:176.306667pt;}
._32_c00394{width:207.946667pt;}
._38_c00394{width:211.120000pt;}
._4c_c00394{width:222.925333pt;}
._42_c00394{width:236.237333pt;}
._3f_c00394{width:247.253333pt;}
._4b_c00394{width:341.242667pt;}
._19_c00394{width:361.301333pt;}
._41_c00394{width:374.869333pt;}
._1c_c00394{width:491.349333pt;}
._4f_c00394{width:1530.309333pt;}
._50_c00394{width:1739.912000pt;}
.fs8_c00394{font-size:42.666667pt;}
.fs4_c00394{font-size:68.266667pt;}
.fs1_c00394{font-size:69.333333pt;}
.fs5_c00394{font-size:74.666667pt;}
.fs7_c00394{font-size:77.333333pt;}
.fs2_c00394{font-size:85.333333pt;}
.fs6_c00394{font-size:90.666667pt;}
.fs0_c00394{font-size:93.333333pt;}
.fs3_c00394{font-size:101.333333pt;}
.y0_c00394{bottom:0.000000pt;}
.y27_c00394{bottom:2.760000pt;}
.y26_c00394{bottom:6.425217pt;}
.y25_c00394{bottom:92.640000pt;}
.y24_c00394{bottom:109.440000pt;}
.y23_c00394{bottom:121.440000pt;}
.y22_c00394{bottom:152.106667pt;}
.y21_c00394{bottom:182.373333pt;}
.y20_c00394{bottom:212.373333pt;}
.y1f_c00394{bottom:243.573333pt;}
.y1e_c00394{bottom:272.640000pt;}
.y1d_c00394{bottom:303.840000pt;}
.y1c_c00394{bottom:333.840000pt;}
.y1b_c00394{bottom:363.573333pt;}
.y1a_c00394{bottom:392.373333pt;}
.y19_c00394{bottom:422.906667pt;}
.y18_c00394{bottom:453.306667pt;}
.y17_c00394{bottom:483.306667pt;}
.y16_c00394{bottom:512.373333pt;}
.y15_c00394{bottom:542.373333pt;}
.y14_c00394{bottom:572.640000pt;}
.y13_c00394{bottom:601.440000pt;}
.y12_c00394{bottom:630.240000pt;}
.y11_c00394{bottom:660.640000pt;}
.y10_c00394{bottom:691.173333pt;}
.yf_c00394{bottom:720.906667pt;}
.ye_c00394{bottom:749.440000pt;}
.yd_c00394{bottom:778.773333pt;}
.yc_c00394{bottom:808.240000pt;}
.yb_c00394{bottom:837.840000pt;}
.ya_c00394{bottom:866.906667pt;}
.y9_c00394{bottom:896.640000pt;}
.y8_c00394{bottom:927.306667pt;}
.y7_c00394{bottom:956.106667pt;}
.y6_c00394{bottom:985.840000pt;}
.y5_c00394{bottom:1015.173333pt;}
.y4_c00394{bottom:1044.640000pt;}
.y3_c00394{bottom:1073.706667pt;}
.y2_c00394{bottom:1103.440000pt;}
.y1_c00394{bottom:1133.306667pt;}
.h6_c00394{height:11.733399pt;}
.h7_c00394{height:38.937500pt;}
.h4_c00394{height:94.536458pt;}
.h5_c00394{height:97.912760pt;}
.h3_c00394{height:108.041667pt;}
.h2_c00394{height:118.170573pt;}
.h0_c00394{height:1229.733333pt;}
.h1_c00394{height:1230.000000pt;}
.w2_c00394{width:93.222667pt;}
.w0_c00394{width:780.466667pt;}
.w1_c00394{width:780.666667pt;}
.x0_c00394{left:0.000000pt;}
.xf_c00394{left:29.066667pt;}
.xa_c00394{left:32.000000pt;}
.xc_c00394{left:33.333333pt;}
.x9_c00394{left:34.400000pt;}
.x7_c00394{left:35.333333pt;}
.x5_c00394{left:36.266667pt;}
.x4_c00394{left:37.200000pt;}
.x2_c00394{left:38.666667pt;}
.x1_c00394{left:41.066667pt;}
.x3_c00394{left:45.333333pt;}
.x6_c00394{left:68.933333pt;}
.x8_c00394{left:74.666667pt;}
.xb_c00394{left:76.533333pt;}
.x10_c00394{left:123.866667pt;}
.xe_c00394{left:138.533333pt;}
.xd_c00394{left:160.133333pt;}
.x11_c00394{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f85901b376144e7cf8bdb3f.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;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:ff2_c00395;src:url('chunks/assets/font_117a3191ccb97d9e300550bb.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_89456e7a4a7380773d9551d0.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls1_c00395{letter-spacing:0.000000px;}
.ls2_c00395{letter-spacing:6.000000px;}
.ls0_c00395{letter-spacing:9.600000px;}
.ls3_c00395{letter-spacing:24.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00395{word-spacing:-57.000000px;}
.ws3_c00395{word-spacing:-23.136000px;}
.ws0_c00395{word-spacing:-20.244000px;}
.ws4_c00395{word-spacing:0.000000px;}
.ws2_c00395{word-spacing:312.672000px;}
._4d_c00395{margin-left:-88.056000px;}
._3b_c00395{margin-left:-67.536000px;}
._39_c00395{margin-left:-45.312000px;}
._4c_c00395{margin-left:-33.444000px;}
._43_c00395{margin-left:-28.056000px;}
._41_c00395{margin-left:-25.824000px;}
._44_c00395{margin-left:-24.576000px;}
._42_c00395{margin-left:-22.944000px;}
._33_c00395{margin-left:-21.504000px;}
._40_c00395{margin-left:-19.464000px;}
._14_c00395{margin-left:-16.032000px;}
._24_c00395{margin-left:-14.568000px;}
._36_c00395{margin-left:-13.344000px;}
._20_c00395{margin-left:-11.040000px;}
._21_c00395{margin-left:-9.696000px;}
._22_c00395{margin-left:-8.544000px;}
._23_c00395{margin-left:-7.296000px;}
._18_c00395{margin-left:-6.144000px;}
._10_c00395{margin-left:-4.416000px;}
._4b_c00395{margin-left:-3.384000px;}
._0_c00395{margin-left:-2.304000px;}
._15_c00395{margin-left:-1.152000px;}
._b_c00395{width:1.056000px;}
._4_c00395{width:2.784000px;}
._d_c00395{width:4.512000px;}
._3_c00395{width:6.528000px;}
._9_c00395{width:7.968000px;}
._2_c00395{width:9.312000px;}
._26_c00395{width:10.368000px;}
._5_c00395{width:11.424000px;}
._7_c00395{width:12.936000px;}
._11_c00395{width:14.880000px;}
._2d_c00395{width:16.224000px;}
._3c_c00395{width:17.268000px;}
._a_c00395{width:19.296000px;}
._8_c00395{width:22.116000px;}
._f_c00395{width:25.632000px;}
._12_c00395{width:26.976000px;}
._32_c00395{width:28.356000px;}
._6_c00395{width:29.832000px;}
._2c_c00395{width:31.152000px;}
._1a_c00395{width:32.952000px;}
._19_c00395{width:34.080000px;}
._4a_c00395{width:35.088000px;}
._1_c00395{width:36.288000px;}
._e_c00395{width:38.112000px;}
._1d_c00395{width:39.324000px;}
._1c_c00395{width:40.632000px;}
._2a_c00395{width:42.528000px;}
._46_c00395{width:43.584000px;}
._30_c00395{width:45.168000px;}
._16_c00395{width:47.136000px;}
._13_c00395{width:49.344000px;}
._2b_c00395{width:50.400000px;}
._27_c00395{width:52.128000px;}
._35_c00395{width:53.376000px;}
._37_c00395{width:54.624000px;}
._c_c00395{width:55.776000px;}
._25_c00395{width:59.676000px;}
._3f_c00395{width:61.080000px;}
._1e_c00395{width:62.280000px;}
._17_c00395{width:64.800000px;}
._28_c00395{width:66.528000px;}
._45_c00395{width:69.000000px;}
._1f_c00395{width:71.136000px;}
._29_c00395{width:73.320000px;}
._49_c00395{width:75.540000px;}
._2f_c00395{width:79.008000px;}
._48_c00395{width:83.268000px;}
._3e_c00395{width:85.920000px;}
._3a_c00395{width:97.776000px;}
._47_c00395{width:138.780000px;}
._1b_c00395{width:193.248000px;}
._2e_c00395{width:199.008000px;}
._34_c00395{width:215.424000px;}
._3d_c00395{width:228.264000px;}
._31_c00395{width:365.976000px;}
._38_c00395{width:446.400000px;}
.fc2_c00395{color:transparent;}
.fc1_c00395{color:rgb(128,128,128);}
.fc0_c00395{color:rgb(0,0,0);}
.fs3_c00395{font-size:48.000000px;}
.fs2_c00395{font-size:84.000000px;}
.fs1_c00395{font-size:96.000000px;}
.fs0_c00395{font-size:102.000000px;}
.y0_c00395{bottom:0.000000px;}
.y26_c00395{bottom:3.105000px;}
.y25_c00395{bottom:7.228357px;}
.y24_c00395{bottom:92.130000px;}
.y23_c00395{bottom:124.230000px;}
.y22_c00395{bottom:159.630000px;}
.y21_c00395{bottom:192.780000px;}
.y20_c00395{bottom:226.380000px;}
.y1f_c00395{bottom:260.880000px;}
.y1e_c00395{bottom:295.380000px;}
.y1d_c00395{bottom:329.430000px;}
.y1c_c00395{bottom:362.880000px;}
.y1b_c00395{bottom:396.630000px;}
.y1a_c00395{bottom:430.680000px;}
.y19_c00395{bottom:463.830000px;}
.y18_c00395{bottom:498.180000px;}
.y17_c00395{bottom:531.630000px;}
.y16_c00395{bottom:565.380000px;}
.y15_c00395{bottom:598.830000px;}
.y14_c00395{bottom:632.880000px;}
.y13_c00395{bottom:666.180000px;}
.y12_c00395{bottom:699.930000px;}
.y11_c00395{bottom:733.080000px;}
.y10_c00395{bottom:766.530000px;}
.yf_c00395{bottom:799.530000px;}
.ye_c00395{bottom:834.330000px;}
.yd_c00395{bottom:868.080000px;}
.yc_c00395{bottom:901.080000px;}
.yb_c00395{bottom:934.980000px;}
.ya_c00395{bottom:968.730000px;}
.y9_c00395{bottom:1001.430000px;}
.y8_c00395{bottom:1033.830000px;}
.y7_c00395{bottom:1067.130000px;}
.y6_c00395{bottom:1100.880000px;}
.y5_c00395{bottom:1134.330000px;}
.y4_c00395{bottom:1168.080000px;}
.y3_c00395{bottom:1200.780000px;}
.y2_c00395{bottom:1234.980000px;}
.y1_c00395{bottom:1266.330000px;}
.h3_c00395{height:13.200074px;}
.h4_c00395{height:43.804688px;}
.h2_c00395{height:121.546875px;}
.h0_c00395{height:1382.700000px;}
.h1_c00395{height:1383.000000px;}
.w2_c00395{width:104.875500px;}
.w0_c00395{width:863.175000px;}
.w1_c00395{width:863.250000px;}
.x0_c00395{left:0.000000px;}
.x9_c00395{left:144.900000px;}
.x4_c00395{left:174.150000px;}
.xd_c00395{left:176.850000px;}
.x6_c00395{left:179.550000px;}
.x7_c00395{left:195.750000px;}
.x3_c00395{left:248.100000px;}
.x2_c00395{left:252.450000px;}
.x5_c00395{left:253.500000px;}
.xc_c00395{left:254.550000px;}
.xa_c00395{left:255.600000px;}
.xb_c00395{left:257.250000px;}
.x8_c00395{left:262.650000px;}
.x1_c00395{left:357.750000px;}
.xf_c00395{left:383.401749px;}
.xe_c00395{left:791.400000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls1_c00395{letter-spacing:0.000000pt;}
.ls2_c00395{letter-spacing:5.333333pt;}
.ls0_c00395{letter-spacing:8.533333pt;}
.ls3_c00395{letter-spacing:21.333333pt;}
.ws1_c00395{word-spacing:-50.666667pt;}
.ws3_c00395{word-spacing:-20.565333pt;}
.ws0_c00395{word-spacing:-17.994667pt;}
.ws4_c00395{word-spacing:0.000000pt;}
.ws2_c00395{word-spacing:277.930667pt;}
._4d_c00395{margin-left:-78.272000pt;}
._3b_c00395{margin-left:-60.032000pt;}
._39_c00395{margin-left:-40.277333pt;}
._4c_c00395{margin-left:-29.728000pt;}
._43_c00395{margin-left:-24.938667pt;}
._41_c00395{margin-left:-22.954667pt;}
._44_c00395{margin-left:-21.845333pt;}
._42_c00395{margin-left:-20.394667pt;}
._33_c00395{margin-left:-19.114667pt;}
._40_c00395{margin-left:-17.301333pt;}
._14_c00395{margin-left:-14.250667pt;}
._24_c00395{margin-left:-12.949333pt;}
._36_c00395{margin-left:-11.861333pt;}
._20_c00395{margin-left:-9.813333pt;}
._21_c00395{margin-left:-8.618667pt;}
._22_c00395{margin-left:-7.594667pt;}
._23_c00395{margin-left:-6.485333pt;}
._18_c00395{margin-left:-5.461333pt;}
._10_c00395{margin-left:-3.925333pt;}
._4b_c00395{margin-left:-3.008000pt;}
._0_c00395{margin-left:-2.048000pt;}
._15_c00395{margin-left:-1.024000pt;}
._b_c00395{width:0.938667pt;}
._4_c00395{width:2.474667pt;}
._d_c00395{width:4.010667pt;}
._3_c00395{width:5.802667pt;}
._9_c00395{width:7.082667pt;}
._2_c00395{width:8.277333pt;}
._26_c00395{width:9.216000pt;}
._5_c00395{width:10.154667pt;}
._7_c00395{width:11.498667pt;}
._11_c00395{width:13.226667pt;}
._2d_c00395{width:14.421333pt;}
._3c_c00395{width:15.349333pt;}
._a_c00395{width:17.152000pt;}
._8_c00395{width:19.658667pt;}
._f_c00395{width:22.784000pt;}
._12_c00395{width:23.978667pt;}
._32_c00395{width:25.205333pt;}
._6_c00395{width:26.517333pt;}
._2c_c00395{width:27.690667pt;}
._1a_c00395{width:29.290667pt;}
._19_c00395{width:30.293333pt;}
._4a_c00395{width:31.189333pt;}
._1_c00395{width:32.256000pt;}
._e_c00395{width:33.877333pt;}
._1d_c00395{width:34.954667pt;}
._1c_c00395{width:36.117333pt;}
._2a_c00395{width:37.802667pt;}
._46_c00395{width:38.741333pt;}
._30_c00395{width:40.149333pt;}
._16_c00395{width:41.898667pt;}
._13_c00395{width:43.861333pt;}
._2b_c00395{width:44.800000pt;}
._27_c00395{width:46.336000pt;}
._35_c00395{width:47.445333pt;}
._37_c00395{width:48.554667pt;}
._c_c00395{width:49.578667pt;}
._25_c00395{width:53.045333pt;}
._3f_c00395{width:54.293333pt;}
._1e_c00395{width:55.360000pt;}
._17_c00395{width:57.600000pt;}
._28_c00395{width:59.136000pt;}
._45_c00395{width:61.333333pt;}
._1f_c00395{width:63.232000pt;}
._29_c00395{width:65.173333pt;}
._49_c00395{width:67.146667pt;}
._2f_c00395{width:70.229333pt;}
._48_c00395{width:74.016000pt;}
._3e_c00395{width:76.373333pt;}
._3a_c00395{width:86.912000pt;}
._47_c00395{width:123.360000pt;}
._1b_c00395{width:171.776000pt;}
._2e_c00395{width:176.896000pt;}
._34_c00395{width:191.488000pt;}
._3d_c00395{width:202.901333pt;}
._31_c00395{width:325.312000pt;}
._38_c00395{width:396.800000pt;}
.fs3_c00395{font-size:42.666667pt;}
.fs2_c00395{font-size:74.666667pt;}
.fs1_c00395{font-size:85.333333pt;}
.fs0_c00395{font-size:90.666667pt;}
.y0_c00395{bottom:0.000000pt;}
.y26_c00395{bottom:2.760000pt;}
.y25_c00395{bottom:6.425206pt;}
.y24_c00395{bottom:81.893333pt;}
.y23_c00395{bottom:110.426667pt;}
.y22_c00395{bottom:141.893333pt;}
.y21_c00395{bottom:171.360000pt;}
.y20_c00395{bottom:201.226667pt;}
.y1f_c00395{bottom:231.893333pt;}
.y1e_c00395{bottom:262.560000pt;}
.y1d_c00395{bottom:292.826667pt;}
.y1c_c00395{bottom:322.560000pt;}
.y1b_c00395{bottom:352.560000pt;}
.y1a_c00395{bottom:382.826667pt;}
.y19_c00395{bottom:412.293333pt;}
.y18_c00395{bottom:442.826667pt;}
.y17_c00395{bottom:472.560000pt;}
.y16_c00395{bottom:502.560000pt;}
.y15_c00395{bottom:532.293333pt;}
.y14_c00395{bottom:562.560000pt;}
.y13_c00395{bottom:592.160000pt;}
.y12_c00395{bottom:622.160000pt;}
.y11_c00395{bottom:651.626667pt;}
.y10_c00395{bottom:681.360000pt;}
.yf_c00395{bottom:710.693333pt;}
.ye_c00395{bottom:741.626667pt;}
.yd_c00395{bottom:771.626667pt;}
.yc_c00395{bottom:800.960000pt;}
.yb_c00395{bottom:831.093333pt;}
.ya_c00395{bottom:861.093333pt;}
.y9_c00395{bottom:890.160000pt;}
.y8_c00395{bottom:918.960000pt;}
.y7_c00395{bottom:948.560000pt;}
.y6_c00395{bottom:978.560000pt;}
.y5_c00395{bottom:1008.293333pt;}
.y4_c00395{bottom:1038.293333pt;}
.y3_c00395{bottom:1067.360000pt;}
.y2_c00395{bottom:1097.760000pt;}
.y1_c00395{bottom:1125.626667pt;}
.h3_c00395{height:11.733399pt;}
.h4_c00395{height:38.937500pt;}
.h2_c00395{height:108.041667pt;}
.h0_c00395{height:1229.066667pt;}
.h1_c00395{height:1229.333333pt;}
.w2_c00395{width:93.222667pt;}
.w0_c00395{width:767.266667pt;}
.w1_c00395{width:767.333333pt;}
.x0_c00395{left:0.000000pt;}
.x9_c00395{left:128.800000pt;}
.x4_c00395{left:154.800000pt;}
.xd_c00395{left:157.200000pt;}
.x6_c00395{left:159.600000pt;}
.x7_c00395{left:174.000000pt;}
.x3_c00395{left:220.533333pt;}
.x2_c00395{left:224.400000pt;}
.x5_c00395{left:225.333333pt;}
.xc_c00395{left:226.266667pt;}
.xa_c00395{left:227.200000pt;}
.xb_c00395{left:228.666667pt;}
.x8_c00395{left:233.466667pt;}
.x1_c00395{left:318.000000pt;}
.xf_c00395{left:340.801554pt;}
.xe_c00395{left:703.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f7762156ecd53b17cc06f39.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_fc190ca482e2894ca19182c2.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_9d4567b3a40b1fdb44333d52.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_d9821aa820c2a676cddf030a.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls5_c00396{letter-spacing:-9.000000px;}
.ls3_c00396{letter-spacing:-6.000000px;}
.ls2_c00396{letter-spacing:0.000000px;}
.ls4_c00396{letter-spacing:6.000000px;}
.ls0_c00396{letter-spacing:19.080000px;}
.ls1_c00396{letter-spacing:261.264000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:-61.272000px;}
.ws1_c00396{word-spacing:-20.244000px;}
.ws3_c00396{word-spacing:0.000000px;}
.ws2_c00396{word-spacing:3.360000px;}
._4f_c00396{margin-left:-47.880000px;}
._38_c00396{margin-left:-45.504000px;}
._48_c00396{margin-left:-31.755000px;}
._3b_c00396{margin-left:-26.994000px;}
._4c_c00396{margin-left:-24.192000px;}
._44_c00396{margin-left:-20.010000px;}
._42_c00396{margin-left:-18.720000px;}
._0_c00396{margin-left:-16.695000px;}
._46_c00396{margin-left:-12.441000px;}
._1e_c00396{margin-left:-9.984000px;}
._31_c00396{margin-left:-8.016000px;}
._1d_c00396{margin-left:-6.702000px;}
._34_c00396{margin-left:-5.400000px;}
._2c_c00396{margin-left:-4.374000px;}
._2d_c00396{margin-left:-3.246000px;}
._17_c00396{margin-left:-2.208000px;}
._23_c00396{margin-left:-1.152000px;}
._b_c00396{width:1.536000px;}
._d_c00396{width:2.880000px;}
._6_c00396{width:4.608000px;}
._5_c00396{width:6.528000px;}
._8_c00396{width:7.680000px;}
._7_c00396{width:9.120000px;}
._9_c00396{width:10.272000px;}
._25_c00396{width:12.000000px;}
._3_c00396{width:13.110000px;}
._2b_c00396{width:14.400000px;}
._3e_c00396{width:16.128000px;}
._1c_c00396{width:17.376000px;}
._4_c00396{width:19.320000px;}
._49_c00396{width:20.598000px;}
._2a_c00396{width:22.080000px;}
._51_c00396{width:23.694000px;}
._32_c00396{width:25.440000px;}
._16_c00396{width:27.360000px;}
._20_c00396{width:28.416000px;}
._18_c00396{width:29.664000px;}
._4b_c00396{width:31.068000px;}
._1a_c00396{width:32.448000px;}
._2f_c00396{width:34.176000px;}
._33_c00396{width:35.904000px;}
._1f_c00396{width:37.230000px;}
._21_c00396{width:38.976000px;}
._1b_c00396{width:40.416000px;}
._19_c00396{width:41.760000px;}
._15_c00396{width:43.008000px;}
._e_c00396{width:45.408000px;}
._36_c00396{width:47.616000px;}
._10_c00396{width:49.152000px;}
._30_c00396{width:50.208000px;}
._2e_c00396{width:52.128000px;}
._c_c00396{width:53.664000px;}
._11_c00396{width:56.448000px;}
._14_c00396{width:58.560000px;}
._a_c00396{width:60.576000px;}
._4a_c00396{width:62.112000px;}
._26_c00396{width:63.360000px;}
._f_c00396{width:65.088000px;}
._12_c00396{width:66.912000px;}
._24_c00396{width:69.120000px;}
._35_c00396{width:71.034000px;}
._54_c00396{width:73.716000px;}
._13_c00396{width:77.472000px;}
._22_c00396{width:79.122000px;}
._3d_c00396{width:81.132000px;}
._3f_c00396{width:88.416000px;}
._3c_c00396{width:101.088000px;}
._43_c00396{width:104.400000px;}
._4d_c00396{width:107.664000px;}
._47_c00396{width:110.751000px;}
._4e_c00396{width:120.984000px;}
._3a_c00396{width:131.760000px;}
._29_c00396{width:176.352000px;}
._53_c00396{width:185.880000px;}
._52_c00396{width:205.092000px;}
._28_c00396{width:231.072000px;}
._40_c00396{width:237.066000px;}
._1_c00396{width:263.025000px;}
._45_c00396{width:275.790000px;}
._27_c00396{width:343.128000px;}
._37_c00396{width:359.616000px;}
._39_c00396{width:409.728000px;}
._50_c00396{width:560.016000px;}
._55_c00396{width:754.584000px;}
._2_c00396{width:1104.855000px;}
._41_c00396{width:1669.365000px;}
.fc2_c00396{color:transparent;}
.fc1_c00396{color:rgb(128,128,128);}
.fc0_c00396{color:rgb(0,0,0);}
.fs7_c00396{font-size:48.000000px;}
.fs5_c00396{font-size:72.000000px;}
.fs3_c00396{font-size:84.000000px;}
.fs4_c00396{font-size:87.000000px;}
.fs6_c00396{font-size:93.000000px;}
.fs2_c00396{font-size:96.000000px;}
.fs0_c00396{font-size:105.000000px;}
.fs1_c00396{font-size:138.000000px;}
.y0_c00396{bottom:0.000000px;}
.y26_c00396{bottom:3.105000px;}
.y25_c00396{bottom:7.228369px;}
.y24_c00396{bottom:127.470000px;}
.y23_c00396{bottom:161.970000px;}
.y22_c00396{bottom:196.770000px;}
.y21_c00396{bottom:231.420000px;}
.y20_c00396{bottom:265.170000px;}
.y1f_c00396{bottom:298.920000px;}
.y1e_c00396{bottom:334.470000px;}
.y1d_c00396{bottom:368.220000px;}
.y1c_c00396{bottom:401.970000px;}
.y1b_c00396{bottom:433.920000px;}
.y1a_c00396{bottom:467.820000px;}
.y19_c00396{bottom:501.120000px;}
.y18_c00396{bottom:536.220000px;}
.y17_c00396{bottom:569.070000px;}
.y16_c00396{bottom:604.770000px;}
.y15_c00396{bottom:622.620000px;}
.y14_c00396{bottom:636.420000px;}
.y13_c00396{bottom:669.270000px;}
.y12_c00396{bottom:703.620000px;}
.y11_c00396{bottom:737.070000px;}
.y10_c00396{bottom:769.470000px;}
.yf_c00396{bottom:803.220000px;}
.ye_c00396{bottom:835.620000px;}
.yd_c00396{bottom:868.620000px;}
.yc_c00396{bottom:902.070000px;}
.yb_c00396{bottom:934.920000px;}
.ya_c00396{bottom:968.670000px;}
.y9_c00396{bottom:1002.270000px;}
.y8_c00396{bottom:1068.870000px;}
.y7_c00396{bottom:1102.170000px;}
.y6_c00396{bottom:1135.320000px;}
.y5_c00396{bottom:1168.470000px;}
.y4_c00396{bottom:1201.470000px;}
.y3_c00396{bottom:1234.620000px;}
.y2_c00396{bottom:1268.970000px;}
.y1_c00396{bottom:1295.970000px;}
.h8_c00396{height:13.200073px;}
.h9_c00396{height:43.804688px;}
.h7_c00396{height:84.269531px;}
.h6_c00396{height:98.314453px;}
.h5_c00396{height:108.848145px;}
.h4_c00396{height:110.151855px;}
.h3_c00396{height:121.546875px;}
.h2_c00396{height:135.372070px;}
.h0_c00396{height:1383.450000px;}
.h1_c00396{height:1383.750000px;}
.w2_c00396{width:104.875500px;}
.w0_c00396{width:878.025000px;}
.w1_c00396{width:878.250000px;}
.x0_c00396{left:0.000000px;}
.x8_c00396{left:60.750000px;}
.x6_c00396{left:61.800000px;}
.x5_c00396{left:62.850000px;}
.x4_c00396{left:63.900000px;}
.x3_c00396{left:65.100000px;}
.xa_c00396{left:66.150000px;}
.x2_c00396{left:67.800000px;}
.x9_c00396{left:103.500000px;}
.x7_c00396{left:115.350000px;}
.x1_c00396{left:175.800000px;}
.xb_c00396{left:329.250000px;}
.xc_c00396{left:390.826721px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls5_c00396{letter-spacing:-8.000000pt;}
.ls3_c00396{letter-spacing:-5.333333pt;}
.ls2_c00396{letter-spacing:0.000000pt;}
.ls4_c00396{letter-spacing:5.333333pt;}
.ls0_c00396{letter-spacing:16.960000pt;}
.ls1_c00396{letter-spacing:232.234667pt;}
.ws0_c00396{word-spacing:-54.464000pt;}
.ws1_c00396{word-spacing:-17.994667pt;}
.ws3_c00396{word-spacing:0.000000pt;}
.ws2_c00396{word-spacing:2.986667pt;}
._4f_c00396{margin-left:-42.560000pt;}
._38_c00396{margin-left:-40.448000pt;}
._48_c00396{margin-left:-28.226667pt;}
._3b_c00396{margin-left:-23.994667pt;}
._4c_c00396{margin-left:-21.504000pt;}
._44_c00396{margin-left:-17.786667pt;}
._42_c00396{margin-left:-16.640000pt;}
._0_c00396{margin-left:-14.840000pt;}
._46_c00396{margin-left:-11.058667pt;}
._1e_c00396{margin-left:-8.874667pt;}
._31_c00396{margin-left:-7.125333pt;}
._1d_c00396{margin-left:-5.957333pt;}
._34_c00396{margin-left:-4.800000pt;}
._2c_c00396{margin-left:-3.888000pt;}
._2d_c00396{margin-left:-2.885333pt;}
._17_c00396{margin-left:-1.962667pt;}
._23_c00396{margin-left:-1.024000pt;}
._b_c00396{width:1.365333pt;}
._d_c00396{width:2.560000pt;}
._6_c00396{width:4.096000pt;}
._5_c00396{width:5.802667pt;}
._8_c00396{width:6.826667pt;}
._7_c00396{width:8.106667pt;}
._9_c00396{width:9.130667pt;}
._25_c00396{width:10.666667pt;}
._3_c00396{width:11.653333pt;}
._2b_c00396{width:12.800000pt;}
._3e_c00396{width:14.336000pt;}
._1c_c00396{width:15.445333pt;}
._4_c00396{width:17.173333pt;}
._49_c00396{width:18.309333pt;}
._2a_c00396{width:19.626667pt;}
._51_c00396{width:21.061333pt;}
._32_c00396{width:22.613333pt;}
._16_c00396{width:24.320000pt;}
._20_c00396{width:25.258667pt;}
._18_c00396{width:26.368000pt;}
._4b_c00396{width:27.616000pt;}
._1a_c00396{width:28.842667pt;}
._2f_c00396{width:30.378667pt;}
._33_c00396{width:31.914667pt;}
._1f_c00396{width:33.093333pt;}
._21_c00396{width:34.645333pt;}
._1b_c00396{width:35.925333pt;}
._19_c00396{width:37.120000pt;}
._15_c00396{width:38.229333pt;}
._e_c00396{width:40.362667pt;}
._36_c00396{width:42.325333pt;}
._10_c00396{width:43.690667pt;}
._30_c00396{width:44.629333pt;}
._2e_c00396{width:46.336000pt;}
._c_c00396{width:47.701333pt;}
._11_c00396{width:50.176000pt;}
._14_c00396{width:52.053333pt;}
._a_c00396{width:53.845333pt;}
._4a_c00396{width:55.210667pt;}
._26_c00396{width:56.320000pt;}
._f_c00396{width:57.856000pt;}
._12_c00396{width:59.477333pt;}
._24_c00396{width:61.440000pt;}
._35_c00396{width:63.141333pt;}
._54_c00396{width:65.525333pt;}
._13_c00396{width:68.864000pt;}
._22_c00396{width:70.330667pt;}
._3d_c00396{width:72.117333pt;}
._3f_c00396{width:78.592000pt;}
._3c_c00396{width:89.856000pt;}
._43_c00396{width:92.800000pt;}
._4d_c00396{width:95.701333pt;}
._47_c00396{width:98.445333pt;}
._4e_c00396{width:107.541333pt;}
._3a_c00396{width:117.120000pt;}
._29_c00396{width:156.757333pt;}
._53_c00396{width:165.226667pt;}
._52_c00396{width:182.304000pt;}
._28_c00396{width:205.397333pt;}
._40_c00396{width:210.725333pt;}
._1_c00396{width:233.800000pt;}
._45_c00396{width:245.146667pt;}
._27_c00396{width:305.002667pt;}
._37_c00396{width:319.658667pt;}
._39_c00396{width:364.202667pt;}
._50_c00396{width:497.792000pt;}
._55_c00396{width:670.741333pt;}
._2_c00396{width:982.093333pt;}
._41_c00396{width:1483.880000pt;}
.fs7_c00396{font-size:42.666667pt;}
.fs5_c00396{font-size:64.000000pt;}
.fs3_c00396{font-size:74.666667pt;}
.fs4_c00396{font-size:77.333333pt;}
.fs6_c00396{font-size:82.666667pt;}
.fs2_c00396{font-size:85.333333pt;}
.fs0_c00396{font-size:93.333333pt;}
.fs1_c00396{font-size:122.666667pt;}
.y0_c00396{bottom:0.000000pt;}
.y26_c00396{bottom:2.760000pt;}
.y25_c00396{bottom:6.425217pt;}
.y24_c00396{bottom:113.306667pt;}
.y23_c00396{bottom:143.973333pt;}
.y22_c00396{bottom:174.906667pt;}
.y21_c00396{bottom:205.706667pt;}
.y20_c00396{bottom:235.706667pt;}
.y1f_c00396{bottom:265.706667pt;}
.y1e_c00396{bottom:297.306667pt;}
.y1d_c00396{bottom:327.306667pt;}
.y1c_c00396{bottom:357.306667pt;}
.y1b_c00396{bottom:385.706667pt;}
.y1a_c00396{bottom:415.840000pt;}
.y19_c00396{bottom:445.440000pt;}
.y18_c00396{bottom:476.640000pt;}
.y17_c00396{bottom:505.840000pt;}
.y16_c00396{bottom:537.573333pt;}
.y15_c00396{bottom:553.440000pt;}
.y14_c00396{bottom:565.706667pt;}
.y13_c00396{bottom:594.906667pt;}
.y12_c00396{bottom:625.440000pt;}
.y11_c00396{bottom:655.173333pt;}
.y10_c00396{bottom:683.973333pt;}
.yf_c00396{bottom:713.973333pt;}
.ye_c00396{bottom:742.773333pt;}
.yd_c00396{bottom:772.106667pt;}
.yc_c00396{bottom:801.840000pt;}
.yb_c00396{bottom:831.040000pt;}
.ya_c00396{bottom:861.040000pt;}
.y9_c00396{bottom:890.906667pt;}
.y8_c00396{bottom:950.106667pt;}
.y7_c00396{bottom:979.706667pt;}
.y6_c00396{bottom:1009.173333pt;}
.y5_c00396{bottom:1038.640000pt;}
.y4_c00396{bottom:1067.973333pt;}
.y3_c00396{bottom:1097.440000pt;}
.y2_c00396{bottom:1127.973333pt;}
.y1_c00396{bottom:1151.973333pt;}
.h8_c00396{height:11.733399pt;}
.h9_c00396{height:38.937500pt;}
.h7_c00396{height:74.906250pt;}
.h6_c00396{height:87.390625pt;}
.h5_c00396{height:96.753906pt;}
.h4_c00396{height:97.912760pt;}
.h3_c00396{height:108.041667pt;}
.h2_c00396{height:120.330729pt;}
.h0_c00396{height:1229.733333pt;}
.h1_c00396{height:1230.000000pt;}
.w2_c00396{width:93.222667pt;}
.w0_c00396{width:780.466667pt;}
.w1_c00396{width:780.666667pt;}
.x0_c00396{left:0.000000pt;}
.x8_c00396{left:54.000000pt;}
.x6_c00396{left:54.933333pt;}
.x5_c00396{left:55.866667pt;}
.x4_c00396{left:56.800000pt;}
.x3_c00396{left:57.866667pt;}
.xa_c00396{left:58.800000pt;}
.x2_c00396{left:60.266667pt;}
.x9_c00396{left:92.000000pt;}
.x7_c00396{left:102.533333pt;}
.x1_c00396{left:156.266667pt;}
.xb_c00396{left:292.666667pt;}
.xc_c00396{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00d2d9a10f2ccaa20722094e.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_111ced36250b391942af69d8.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_37331f4888fd1ec19ab76c7f.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_de17be3e792e48dc6c30af96.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_a3abcd72cab5ec741432cfc1.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_6d0c78d50e07e3dd32dcdd7d.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00397;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00397{font-family:ff7_c00397;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls4_c00397{letter-spacing:0.000000px;}
.ls1_c00397{letter-spacing:5.400000px;}
.ls5_c00397{letter-spacing:6.000000px;}
.ls3_c00397{letter-spacing:9.600000px;}
.ls0_c00397{letter-spacing:12.972000px;}
.ls2_c00397{letter-spacing:16.200000px;}
.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;}
}
.ws3_c00397{word-spacing:-61.044000px;}
.ws4_c00397{word-spacing:-57.000000px;}
.ws2_c00397{word-spacing:-25.939200px;}
.ws1_c00397{word-spacing:-24.582000px;}
.ws5_c00397{word-spacing:-23.136000px;}
.ws0_c00397{word-spacing:-20.244000px;}
.ws6_c00397{word-spacing:0.000000px;}
._32_c00397{margin-left:-27.819000px;}
._41_c00397{margin-left:-24.950400px;}
._37_c00397{margin-left:-22.413600px;}
._a_c00397{margin-left:-20.244000px;}
._12_c00397{margin-left:-18.258000px;}
._11_c00397{margin-left:-16.014000px;}
._13_c00397{margin-left:-13.260000px;}
._21_c00397{margin-left:-11.328000px;}
._14_c00397{margin-left:-9.486000px;}
._15_c00397{margin-left:-8.160000px;}
._43_c00397{margin-left:-6.279000px;}
._1b_c00397{margin-left:-4.860000px;}
._1f_c00397{margin-left:-2.916000px;}
._20_c00397{margin-left:-1.632000px;}
._16_c00397{width:1.524000px;}
._1_c00397{width:2.604000px;}
._0_c00397{width:4.200000px;}
._d_c00397{width:5.292000px;}
._b_c00397{width:6.888000px;}
._5_c00397{width:8.244000px;}
._7_c00397{width:9.504000px;}
._3_c00397{width:10.944000px;}
._4_c00397{width:12.960000px;}
._22_c00397{width:14.004000px;}
._18_c00397{width:15.036000px;}
._2c_c00397{width:16.236000px;}
._6_c00397{width:17.280000px;}
._28_c00397{width:18.909000px;}
._33_c00397{width:19.992000px;}
._1a_c00397{width:21.828000px;}
._19_c00397{width:24.072000px;}
._30_c00397{width:25.446000px;}
._17_c00397{width:26.838000px;}
._26_c00397{width:28.284000px;}
._8_c00397{width:29.976000px;}
._36_c00397{width:31.356000px;}
._24_c00397{width:32.946000px;}
._23_c00397{width:34.008000px;}
._f_c00397{width:36.528000px;}
._1c_c00397{width:38.112000px;}
._10_c00397{width:39.504000px;}
._2a_c00397{width:41.016000px;}
._9_c00397{width:42.336000px;}
._2e_c00397{width:43.623000px;}
._25_c00397{width:45.548400px;}
._38_c00397{width:47.232000px;}
._1d_c00397{width:49.044000px;}
._35_c00397{width:50.091600px;}
._2d_c00397{width:51.747000px;}
._2b_c00397{width:54.816000px;}
._e_c00397{width:56.112000px;}
._34_c00397{width:57.492000px;}
._31_c00397{width:60.564000px;}
._2f_c00397{width:62.424000px;}
._42_c00397{width:68.025600px;}
._1e_c00397{width:69.084000px;}
._2_c00397{width:74.640000px;}
._40_c00397{width:81.660000px;}
._3f_c00397{width:106.176000px;}
._3b_c00397{width:109.248000px;}
._29_c00397{width:123.954000px;}
._3c_c00397{width:160.212000px;}
._46_c00397{width:214.272000px;}
._3e_c00397{width:262.116000px;}
._39_c00397{width:278.796000px;}
._44_c00397{width:332.100000px;}
._3d_c00397{width:407.142000px;}
._c_c00397{width:461.052000px;}
._45_c00397{width:649.221000px;}
._47_c00397{width:865.005600px;}
._27_c00397{width:955.824000px;}
._3a_c00397{width:1045.404000px;}
.fc2_c00397{color:transparent;}
.fc1_c00397{color:rgb(128,128,128);}
.fc0_c00397{color:rgb(0,0,0);}
.fs5_c00397{font-size:48.000000px;}
.fs3_c00397{font-size:67.200000px;}
.fs0_c00397{font-size:84.000000px;}
.fs1_c00397{font-size:96.000000px;}
.fs4_c00397{font-size:99.000000px;}
.fs2_c00397{font-size:102.000000px;}
.y0_c00397{bottom:0.000000px;}
.y25_c00397{bottom:3.105000px;}
.y24_c00397{bottom:7.228369px;}
.y23_c00397{bottom:113.670000px;}
.y22_c00397{bottom:148.170000px;}
.y21_c00397{bottom:181.620000px;}
.y20_c00397{bottom:215.970000px;}
.y1f_c00397{bottom:249.720000px;}
.y1e_c00397{bottom:283.470000px;}
.y1d_c00397{bottom:318.570000px;}
.y1c_c00397{bottom:349.920000px;}
.y1b_c00397{bottom:386.370000px;}
.y1a_c00397{bottom:420.570000px;}
.y19_c00397{bottom:452.970000px;}
.y18_c00397{bottom:486.720000px;}
.y17_c00397{bottom:520.770000px;}
.y16_c00397{bottom:554.070000px;}
.y15_c00397{bottom:590.520000px;}
.y14_c00397{bottom:623.370000px;}
.y13_c00397{bottom:659.370000px;}
.y12_c00397{bottom:691.170000px;}
.y11_c00397{bottom:725.220000px;}
.y10_c00397{bottom:757.320000px;}
.yf_c00397{bottom:789.720000px;}
.ye_c00397{bottom:823.170000px;}
.yd_c00397{bottom:858.870000px;}
.yc_c00397{bottom:892.020000px;}
.yb_c00397{bottom:925.320000px;}
.ya_c00397{bottom:959.070000px;}
.y9_c00397{bottom:991.920000px;}
.y8_c00397{bottom:1025.220000px;}
.y7_c00397{bottom:1057.770000px;}
.y6_c00397{bottom:1094.070000px;}
.y5_c00397{bottom:1125.570000px;}
.y4_c00397{bottom:1159.320000px;}
.y3_c00397{bottom:1192.620000px;}
.y2_c00397{bottom:1226.520000px;}
.y1_c00397{bottom:1258.770000px;}
.h5_c00397{height:13.200073px;}
.h6_c00397{height:43.804688px;}
.h4_c00397{height:100.608000px;}
.h3_c00397{height:119.381836px;}
.h2_c00397{height:121.546875px;}
.h0_c00397{height:1329.450000px;}
.h1_c00397{height:1329.750000px;}
.w2_c00397{width:104.875500px;}
.w0_c00397{width:829.425000px;}
.w1_c00397{width:829.500000px;}
.x0_c00397{left:0.000000px;}
.xa_c00397{left:134.700000px;}
.xb_c00397{left:148.200000px;}
.x10_c00397{left:154.200000px;}
.xe_c00397{left:202.800000px;}
.xf_c00397{left:230.850000px;}
.xd_c00397{left:231.900000px;}
.xc_c00397{left:233.550000px;}
.x9_c00397{left:234.600000px;}
.x8_c00397{left:235.800000px;}
.x6_c00397{left:237.300000px;}
.x7_c00397{left:238.500000px;}
.x5_c00397{left:239.550000px;}
.x2_c00397{left:240.600000px;}
.x1_c00397{left:242.100000px;}
.x3_c00397{left:267.000000px;}
.x4_c00397{left:291.900000px;}
.x12_c00397{left:366.526749px;}
.x11_c00397{left:453.000000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls4_c00397{letter-spacing:0.000000pt;}
.ls1_c00397{letter-spacing:4.800000pt;}
.ls5_c00397{letter-spacing:5.333333pt;}
.ls3_c00397{letter-spacing:8.533333pt;}
.ls0_c00397{letter-spacing:11.530667pt;}
.ls2_c00397{letter-spacing:14.400000pt;}
.ws3_c00397{word-spacing:-54.261333pt;}
.ws4_c00397{word-spacing:-50.666667pt;}
.ws2_c00397{word-spacing:-23.057067pt;}
.ws1_c00397{word-spacing:-21.850667pt;}
.ws5_c00397{word-spacing:-20.565333pt;}
.ws0_c00397{word-spacing:-17.994667pt;}
.ws6_c00397{word-spacing:0.000000pt;}
._32_c00397{margin-left:-24.728000pt;}
._41_c00397{margin-left:-22.178133pt;}
._37_c00397{margin-left:-19.923200pt;}
._a_c00397{margin-left:-17.994667pt;}
._12_c00397{margin-left:-16.229333pt;}
._11_c00397{margin-left:-14.234667pt;}
._13_c00397{margin-left:-11.786667pt;}
._21_c00397{margin-left:-10.069333pt;}
._14_c00397{margin-left:-8.432000pt;}
._15_c00397{margin-left:-7.253333pt;}
._43_c00397{margin-left:-5.581333pt;}
._1b_c00397{margin-left:-4.320000pt;}
._1f_c00397{margin-left:-2.592000pt;}
._20_c00397{margin-left:-1.450667pt;}
._16_c00397{width:1.354667pt;}
._1_c00397{width:2.314667pt;}
._0_c00397{width:3.733333pt;}
._d_c00397{width:4.704000pt;}
._b_c00397{width:6.122667pt;}
._5_c00397{width:7.328000pt;}
._7_c00397{width:8.448000pt;}
._3_c00397{width:9.728000pt;}
._4_c00397{width:11.520000pt;}
._22_c00397{width:12.448000pt;}
._18_c00397{width:13.365333pt;}
._2c_c00397{width:14.432000pt;}
._6_c00397{width:15.360000pt;}
._28_c00397{width:16.808000pt;}
._33_c00397{width:17.770667pt;}
._1a_c00397{width:19.402667pt;}
._19_c00397{width:21.397333pt;}
._30_c00397{width:22.618667pt;}
._17_c00397{width:23.856000pt;}
._26_c00397{width:25.141333pt;}
._8_c00397{width:26.645333pt;}
._36_c00397{width:27.872000pt;}
._24_c00397{width:29.285333pt;}
._23_c00397{width:30.229333pt;}
._f_c00397{width:32.469333pt;}
._1c_c00397{width:33.877333pt;}
._10_c00397{width:35.114667pt;}
._2a_c00397{width:36.458667pt;}
._9_c00397{width:37.632000pt;}
._2e_c00397{width:38.776000pt;}
._25_c00397{width:40.487467pt;}
._38_c00397{width:41.984000pt;}
._1d_c00397{width:43.594667pt;}
._35_c00397{width:44.525867pt;}
._2d_c00397{width:45.997333pt;}
._2b_c00397{width:48.725333pt;}
._e_c00397{width:49.877333pt;}
._34_c00397{width:51.104000pt;}
._31_c00397{width:53.834667pt;}
._2f_c00397{width:55.488000pt;}
._42_c00397{width:60.467200pt;}
._1e_c00397{width:61.408000pt;}
._2_c00397{width:66.346667pt;}
._40_c00397{width:72.586667pt;}
._3f_c00397{width:94.378667pt;}
._3b_c00397{width:97.109333pt;}
._29_c00397{width:110.181333pt;}
._3c_c00397{width:142.410667pt;}
._46_c00397{width:190.464000pt;}
._3e_c00397{width:232.992000pt;}
._39_c00397{width:247.818667pt;}
._44_c00397{width:295.200000pt;}
._3d_c00397{width:361.904000pt;}
._c_c00397{width:409.824000pt;}
._45_c00397{width:577.085333pt;}
._47_c00397{width:768.893867pt;}
._27_c00397{width:849.621333pt;}
._3a_c00397{width:929.248000pt;}
.fs5_c00397{font-size:42.666667pt;}
.fs3_c00397{font-size:59.733333pt;}
.fs0_c00397{font-size:74.666667pt;}
.fs1_c00397{font-size:85.333333pt;}
.fs4_c00397{font-size:88.000000pt;}
.fs2_c00397{font-size:90.666667pt;}
.y0_c00397{bottom:0.000000pt;}
.y25_c00397{bottom:2.760000pt;}
.y24_c00397{bottom:6.425217pt;}
.y23_c00397{bottom:101.040000pt;}
.y22_c00397{bottom:131.706667pt;}
.y21_c00397{bottom:161.440000pt;}
.y20_c00397{bottom:191.973333pt;}
.y1f_c00397{bottom:221.973333pt;}
.y1e_c00397{bottom:251.973333pt;}
.y1d_c00397{bottom:283.173333pt;}
.y1c_c00397{bottom:311.040000pt;}
.y1b_c00397{bottom:343.440000pt;}
.y1a_c00397{bottom:373.840000pt;}
.y19_c00397{bottom:402.640000pt;}
.y18_c00397{bottom:432.640000pt;}
.y17_c00397{bottom:462.906667pt;}
.y16_c00397{bottom:492.506667pt;}
.y15_c00397{bottom:524.906667pt;}
.y14_c00397{bottom:554.106667pt;}
.y13_c00397{bottom:586.106667pt;}
.y12_c00397{bottom:614.373333pt;}
.y11_c00397{bottom:644.640000pt;}
.y10_c00397{bottom:673.173333pt;}
.yf_c00397{bottom:701.973333pt;}
.ye_c00397{bottom:731.706667pt;}
.yd_c00397{bottom:763.440000pt;}
.yc_c00397{bottom:792.906667pt;}
.yb_c00397{bottom:822.506667pt;}
.ya_c00397{bottom:852.506667pt;}
.y9_c00397{bottom:881.706667pt;}
.y8_c00397{bottom:911.306667pt;}
.y7_c00397{bottom:940.240000pt;}
.y6_c00397{bottom:972.506667pt;}
.y5_c00397{bottom:1000.506667pt;}
.y4_c00397{bottom:1030.506667pt;}
.y3_c00397{bottom:1060.106667pt;}
.y2_c00397{bottom:1090.240000pt;}
.y1_c00397{bottom:1118.906667pt;}
.h5_c00397{height:11.733399pt;}
.h6_c00397{height:38.937500pt;}
.h4_c00397{height:89.429333pt;}
.h3_c00397{height:106.117188pt;}
.h2_c00397{height:108.041667pt;}
.h0_c00397{height:1181.733333pt;}
.h1_c00397{height:1182.000000pt;}
.w2_c00397{width:93.222667pt;}
.w0_c00397{width:737.266667pt;}
.w1_c00397{width:737.333333pt;}
.x0_c00397{left:0.000000pt;}
.xa_c00397{left:119.733333pt;}
.xb_c00397{left:131.733333pt;}
.x10_c00397{left:137.066667pt;}
.xe_c00397{left:180.266667pt;}
.xf_c00397{left:205.200000pt;}
.xd_c00397{left:206.133333pt;}
.xc_c00397{left:207.600000pt;}
.x9_c00397{left:208.533333pt;}
.x8_c00397{left:209.600000pt;}
.x6_c00397{left:210.933333pt;}
.x7_c00397{left:212.000000pt;}
.x5_c00397{left:212.933333pt;}
.x2_c00397{left:213.866667pt;}
.x1_c00397{left:215.200000pt;}
.x3_c00397{left:237.333333pt;}
.x4_c00397{left:259.466667pt;}
.x12_c00397{left:325.801554pt;}
.x11_c00397{left:402.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d017149d21d3f9533ad943d8.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_9fe6e9f645ef93731821f63b.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{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_c00398{vertical-align:0.000000px;}
.ls3_c00398{letter-spacing:-3.000000px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls2_c00398{letter-spacing:6.000000px;}
.ls0_c00398{letter-spacing:21.252000px;}
.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:-57.000000px;}
.ws4_c00398{word-spacing:-41.496000px;}
.ws0_c00398{word-spacing:-23.136000px;}
.ws1_c00398{word-spacing:-20.244000px;}
.ws5_c00398{word-spacing:0.000000px;}
.ws3_c00398{word-spacing:0.756000px;}
._11_c00398{margin-left:-42.912000px;}
._2a_c00398{margin-left:-27.000000px;}
._32_c00398{margin-left:-22.464000px;}
._26_c00398{margin-left:-20.832000px;}
._4b_c00398{margin-left:-19.380000px;}
._29_c00398{margin-left:-16.932000px;}
._21_c00398{margin-left:-15.876000px;}
._27_c00398{margin-left:-14.496000px;}
._12_c00398{margin-left:-13.200000px;}
._22_c00398{margin-left:-11.340000px;}
._3a_c00398{margin-left:-8.808000px;}
._3f_c00398{margin-left:-7.680000px;}
._23_c00398{margin-left:-6.408000px;}
._24_c00398{margin-left:-4.800000px;}
._13_c00398{margin-left:-3.456000px;}
._d_c00398{margin-left:-1.440000px;}
._2_c00398{width:1.344000px;}
._1_c00398{width:2.784000px;}
._6_c00398{width:4.224000px;}
._8_c00398{width:5.280000px;}
._5_c00398{width:6.624000px;}
._10_c00398{width:8.160000px;}
._0_c00398{width:9.504000px;}
._15_c00398{width:10.560000px;}
._1e_c00398{width:12.096000px;}
._7_c00398{width:13.632000px;}
._e_c00398{width:15.372000px;}
._16_c00398{width:17.184000px;}
._14_c00398{width:18.912000px;}
._2c_c00398{width:20.136000px;}
._19_c00398{width:21.504000px;}
._3_c00398{width:24.192000px;}
._18_c00398{width:25.344000px;}
._2b_c00398{width:26.496000px;}
._a_c00398{width:28.224000px;}
._1a_c00398{width:29.664000px;}
._48_c00398{width:30.888000px;}
._1b_c00398{width:32.256000px;}
._b_c00398{width:34.272000px;}
._f_c00398{width:36.756000px;}
._9_c00398{width:38.688000px;}
._c_c00398{width:40.032000px;}
._4_c00398{width:41.568000px;}
._1f_c00398{width:42.624000px;}
._46_c00398{width:44.352000px;}
._17_c00398{width:45.408000px;}
._1c_c00398{width:46.944000px;}
._30_c00398{width:49.344000px;}
._33_c00398{width:52.128000px;}
._1d_c00398{width:53.472000px;}
._28_c00398{width:55.632000px;}
._3d_c00398{width:58.560000px;}
._25_c00398{width:60.480000px;}
._39_c00398{width:66.336000px;}
._40_c00398{width:68.640000px;}
._4e_c00398{width:78.639000px;}
._4c_c00398{width:81.408000px;}
._35_c00398{width:86.208000px;}
._45_c00398{width:101.088000px;}
._2e_c00398{width:109.668000px;}
._41_c00398{width:120.132000px;}
._42_c00398{width:127.200000px;}
._3c_c00398{width:136.164000px;}
._44_c00398{width:159.264000px;}
._3e_c00398{width:166.272000px;}
._38_c00398{width:170.808000px;}
._4d_c00398{width:227.364000px;}
._4f_c00398{width:243.264000px;}
._49_c00398{width:267.648000px;}
._3b_c00398{width:304.740000px;}
._20_c00398{width:321.996000px;}
._37_c00398{width:369.504000px;}
._43_c00398{width:487.620000px;}
._2d_c00398{width:564.288000px;}
._36_c00398{width:606.216000px;}
._34_c00398{width:614.796000px;}
._2f_c00398{width:617.664000px;}
._31_c00398{width:765.216000px;}
._4a_c00398{width:771.564000px;}
._47_c00398{width:772.776000px;}
.fc2_c00398{color:transparent;}
.fc1_c00398{color:rgb(128,128,128);}
.fc0_c00398{color:rgb(0,0,0);}
.fs4_c00398{font-size:48.000000px;}
.fs3_c00398{font-size:69.000000px;}
.fs1_c00398{font-size:84.000000px;}
.fs0_c00398{font-size:96.000000px;}
.fs2_c00398{font-size:102.000000px;}
.y0_c00398{bottom:0.000000px;}
.y27_c00398{bottom:3.105000px;}
.y26_c00398{bottom:7.228369px;}
.y25_c00398{bottom:97.770000px;}
.y24_c00398{bottom:130.920000px;}
.y23_c00398{bottom:163.920000px;}
.y22_c00398{bottom:196.020000px;}
.y21_c00398{bottom:232.770000px;}
.y20_c00398{bottom:267.870000px;}
.y1f_c00398{bottom:301.620000px;}
.y1e_c00398{bottom:335.070000px;}
.y1d_c00398{bottom:368.820000px;}
.y1c_c00398{bottom:401.970000px;}
.y1b_c00398{bottom:435.420000px;}
.y1a_c00398{bottom:470.520000px;}
.y19_c00398{bottom:501.870000px;}
.y18_c00398{bottom:536.520000px;}
.y17_c00398{bottom:569.970000px;}
.y16_c00398{bottom:603.720000px;}
.y15_c00398{bottom:637.170000px;}
.y14_c00398{bottom:671.220000px;}
.y13_c00398{bottom:703.020000px;}
.y12_c00398{bottom:737.670000px;}
.y11_c00398{bottom:771.120000px;}
.y10_c00398{bottom:804.870000px;}
.yf_c00398{bottom:838.320000px;}
.ye_c00398{bottom:871.020000px;}
.yd_c00398{bottom:904.470000px;}
.yc_c00398{bottom:937.470000px;}
.yb_c00398{bottom:971.220000px;}
.ya_c00398{bottom:1004.970000px;}
.y9_c00398{bottom:1038.420000px;}
.y8_c00398{bottom:1071.870000px;}
.y7_c00398{bottom:1104.270000px;}
.y6_c00398{bottom:1137.420000px;}
.y5_c00398{bottom:1170.420000px;}
.y4_c00398{bottom:1203.870000px;}
.y3_c00398{bottom:1236.870000px;}
.y2_c00398{bottom:1270.920000px;}
.y1_c00398{bottom:1304.070000px;}
.h3_c00398{height:13.200073px;}
.h4_c00398{height:43.804688px;}
.h2_c00398{height:121.546875px;}
.h0_c00398{height:1383.450000px;}
.h1_c00398{height:1383.750000px;}
.w2_c00398{width:104.875500px;}
.w0_c00398{width:878.025000px;}
.w1_c00398{width:878.250000px;}
.x0_c00398{left:0.000000px;}
.x8_c00398{left:25.650000px;}
.x6_c00398{left:26.700000px;}
.x5_c00398{left:27.900000px;}
.x4_c00398{left:29.400000px;}
.x9_c00398{left:31.050000px;}
.x3_c00398{left:32.100000px;}
.x2_c00398{left:33.150000px;}
.x7_c00398{left:73.650000px;}
.xb_c00398{left:390.826721px;}
.x1_c00398{left:517.050000px;}
.xa_c00398{left:543.000000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls3_c00398{letter-spacing:-2.666667pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls2_c00398{letter-spacing:5.333333pt;}
.ls0_c00398{letter-spacing:18.890667pt;}
.ws2_c00398{word-spacing:-50.666667pt;}
.ws4_c00398{word-spacing:-36.885333pt;}
.ws0_c00398{word-spacing:-20.565333pt;}
.ws1_c00398{word-spacing:-17.994667pt;}
.ws5_c00398{word-spacing:0.000000pt;}
.ws3_c00398{word-spacing:0.672000pt;}
._11_c00398{margin-left:-38.144000pt;}
._2a_c00398{margin-left:-24.000000pt;}
._32_c00398{margin-left:-19.968000pt;}
._26_c00398{margin-left:-18.517333pt;}
._4b_c00398{margin-left:-17.226667pt;}
._29_c00398{margin-left:-15.050667pt;}
._21_c00398{margin-left:-14.112000pt;}
._27_c00398{margin-left:-12.885333pt;}
._12_c00398{margin-left:-11.733333pt;}
._22_c00398{margin-left:-10.080000pt;}
._3a_c00398{margin-left:-7.829333pt;}
._3f_c00398{margin-left:-6.826667pt;}
._23_c00398{margin-left:-5.696000pt;}
._24_c00398{margin-left:-4.266667pt;}
._13_c00398{margin-left:-3.072000pt;}
._d_c00398{margin-left:-1.280000pt;}
._2_c00398{width:1.194667pt;}
._1_c00398{width:2.474667pt;}
._6_c00398{width:3.754667pt;}
._8_c00398{width:4.693333pt;}
._5_c00398{width:5.888000pt;}
._10_c00398{width:7.253333pt;}
._0_c00398{width:8.448000pt;}
._15_c00398{width:9.386667pt;}
._1e_c00398{width:10.752000pt;}
._7_c00398{width:12.117333pt;}
._e_c00398{width:13.664000pt;}
._16_c00398{width:15.274667pt;}
._14_c00398{width:16.810667pt;}
._2c_c00398{width:17.898667pt;}
._19_c00398{width:19.114667pt;}
._3_c00398{width:21.504000pt;}
._18_c00398{width:22.528000pt;}
._2b_c00398{width:23.552000pt;}
._a_c00398{width:25.088000pt;}
._1a_c00398{width:26.368000pt;}
._48_c00398{width:27.456000pt;}
._1b_c00398{width:28.672000pt;}
._b_c00398{width:30.464000pt;}
._f_c00398{width:32.672000pt;}
._9_c00398{width:34.389333pt;}
._c_c00398{width:35.584000pt;}
._4_c00398{width:36.949333pt;}
._1f_c00398{width:37.888000pt;}
._46_c00398{width:39.424000pt;}
._17_c00398{width:40.362667pt;}
._1c_c00398{width:41.728000pt;}
._30_c00398{width:43.861333pt;}
._33_c00398{width:46.336000pt;}
._1d_c00398{width:47.530667pt;}
._28_c00398{width:49.450667pt;}
._3d_c00398{width:52.053333pt;}
._25_c00398{width:53.760000pt;}
._39_c00398{width:58.965333pt;}
._40_c00398{width:61.013333pt;}
._4e_c00398{width:69.901333pt;}
._4c_c00398{width:72.362667pt;}
._35_c00398{width:76.629333pt;}
._45_c00398{width:89.856000pt;}
._2e_c00398{width:97.482667pt;}
._41_c00398{width:106.784000pt;}
._42_c00398{width:113.066667pt;}
._3c_c00398{width:121.034667pt;}
._44_c00398{width:141.568000pt;}
._3e_c00398{width:147.797333pt;}
._38_c00398{width:151.829333pt;}
._4d_c00398{width:202.101333pt;}
._4f_c00398{width:216.234667pt;}
._49_c00398{width:237.909333pt;}
._3b_c00398{width:270.880000pt;}
._20_c00398{width:286.218667pt;}
._37_c00398{width:328.448000pt;}
._43_c00398{width:433.440000pt;}
._2d_c00398{width:501.589333pt;}
._36_c00398{width:538.858667pt;}
._34_c00398{width:546.485333pt;}
._2f_c00398{width:549.034667pt;}
._31_c00398{width:680.192000pt;}
._4a_c00398{width:685.834667pt;}
._47_c00398{width:686.912000pt;}
.fs4_c00398{font-size:42.666667pt;}
.fs3_c00398{font-size:61.333333pt;}
.fs1_c00398{font-size:74.666667pt;}
.fs0_c00398{font-size:85.333333pt;}
.fs2_c00398{font-size:90.666667pt;}
.y0_c00398{bottom:0.000000pt;}
.y27_c00398{bottom:2.760000pt;}
.y26_c00398{bottom:6.425217pt;}
.y25_c00398{bottom:86.906667pt;}
.y24_c00398{bottom:116.373333pt;}
.y23_c00398{bottom:145.706667pt;}
.y22_c00398{bottom:174.240000pt;}
.y21_c00398{bottom:206.906667pt;}
.y20_c00398{bottom:238.106667pt;}
.y1f_c00398{bottom:268.106667pt;}
.y1e_c00398{bottom:297.840000pt;}
.y1d_c00398{bottom:327.840000pt;}
.y1c_c00398{bottom:357.306667pt;}
.y1b_c00398{bottom:387.040000pt;}
.y1a_c00398{bottom:418.240000pt;}
.y19_c00398{bottom:446.106667pt;}
.y18_c00398{bottom:476.906667pt;}
.y17_c00398{bottom:506.640000pt;}
.y16_c00398{bottom:536.640000pt;}
.y15_c00398{bottom:566.373333pt;}
.y14_c00398{bottom:596.640000pt;}
.y13_c00398{bottom:624.906667pt;}
.y12_c00398{bottom:655.706667pt;}
.y11_c00398{bottom:685.440000pt;}
.y10_c00398{bottom:715.440000pt;}
.yf_c00398{bottom:745.173333pt;}
.ye_c00398{bottom:774.240000pt;}
.yd_c00398{bottom:803.973333pt;}
.yc_c00398{bottom:833.306667pt;}
.yb_c00398{bottom:863.306667pt;}
.ya_c00398{bottom:893.306667pt;}
.y9_c00398{bottom:923.040000pt;}
.y8_c00398{bottom:952.773333pt;}
.y7_c00398{bottom:981.573333pt;}
.y6_c00398{bottom:1011.040000pt;}
.y5_c00398{bottom:1040.373333pt;}
.y4_c00398{bottom:1070.106667pt;}
.y3_c00398{bottom:1099.440000pt;}
.y2_c00398{bottom:1129.706667pt;}
.y1_c00398{bottom:1159.173333pt;}
.h3_c00398{height:11.733399pt;}
.h4_c00398{height:38.937500pt;}
.h2_c00398{height:108.041667pt;}
.h0_c00398{height:1229.733333pt;}
.h1_c00398{height:1230.000000pt;}
.w2_c00398{width:93.222667pt;}
.w0_c00398{width:780.466667pt;}
.w1_c00398{width:780.666667pt;}
.x0_c00398{left:0.000000pt;}
.x8_c00398{left:22.800000pt;}
.x6_c00398{left:23.733333pt;}
.x5_c00398{left:24.800000pt;}
.x4_c00398{left:26.133333pt;}
.x9_c00398{left:27.600000pt;}
.x3_c00398{left:28.533333pt;}
.x2_c00398{left:29.466667pt;}
.x7_c00398{left:65.466667pt;}
.xb_c00398{left:347.401530pt;}
.x1_c00398{left:459.600000pt;}
.xa_c00398{left:482.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9cbb5f9990b369318de01ed6.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_dae0d4775cb7bd5fcb6fe82e.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_31f326bf6cb521fd3a11292f.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_c028c7be1425437fa86bde31.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00399;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls8_c00399{letter-spacing:-15.000000px;}
.ls6_c00399{letter-spacing:0.000000px;}
.ls7_c00399{letter-spacing:6.000000px;}
.ls0_c00399{letter-spacing:6.234000px;}
.ls4_c00399{letter-spacing:66.033000px;}
.ls3_c00399{letter-spacing:66.633000px;}
.ls1_c00399{letter-spacing:77.433000px;}
.ls2_c00399{letter-spacing:204.633000px;}
.ls5_c00399{letter-spacing:562.233000px;}
.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:-57.000000px;}
.ws3_c00399{word-spacing:-23.136000px;}
.ws0_c00399{word-spacing:-18.798000px;}
.ws4_c00399{word-spacing:0.000000px;}
.ws2_c00399{word-spacing:16.224000px;}
._39_c00399{margin-left:-36.960000px;}
._40_c00399{margin-left:-32.208000px;}
._26_c00399{margin-left:-30.528000px;}
._3a_c00399{margin-left:-21.408000px;}
._27_c00399{margin-left:-20.352000px;}
._2c_c00399{margin-left:-14.400000px;}
._2f_c00399{margin-left:-12.786000px;}
._36_c00399{margin-left:-11.424000px;}
._28_c00399{margin-left:-9.984000px;}
._23_c00399{margin-left:-8.832000px;}
._18_c00399{margin-left:-6.912000px;}
._19_c00399{margin-left:-5.280000px;}
._1e_c00399{margin-left:-3.936000px;}
._0_c00399{margin-left:-2.400000px;}
._1_c00399{margin-left:-1.056000px;}
._7_c00399{width:1.632000px;}
._8_c00399{width:3.456000px;}
._b_c00399{width:4.512000px;}
._3_c00399{width:5.664000px;}
._5_c00399{width:7.200000px;}
._2_c00399{width:9.024000px;}
._6_c00399{width:10.080000px;}
._22_c00399{width:11.136000px;}
._9_c00399{width:12.288000px;}
._4_c00399{width:13.536000px;}
._25_c00399{width:14.784000px;}
._e_c00399{width:16.224000px;}
._d_c00399{width:18.240000px;}
._15_c00399{width:19.680000px;}
._21_c00399{width:20.832000px;}
._1d_c00399{width:21.888000px;}
._47_c00399{width:23.616000px;}
._41_c00399{width:24.672000px;}
._11_c00399{width:26.112000px;}
._12_c00399{width:28.128000px;}
._c_c00399{width:30.336000px;}
._33_c00399{width:31.584000px;}
._17_c00399{width:33.216000px;}
._34_c00399{width:34.464000px;}
._f_c00399{width:36.480000px;}
._32_c00399{width:37.536000px;}
._a_c00399{width:38.784000px;}
._20_c00399{width:40.128000px;}
._24_c00399{width:41.280000px;}
._16_c00399{width:43.008000px;}
._1c_c00399{width:45.312000px;}
._10_c00399{width:46.368000px;}
._2a_c00399{width:47.424000px;}
._38_c00399{width:48.864000px;}
._1f_c00399{width:50.112000px;}
._46_c00399{width:51.834000px;}
._37_c00399{width:53.280000px;}
._14_c00399{width:54.624000px;}
._35_c00399{width:58.272000px;}
._2d_c00399{width:59.358000px;}
._1b_c00399{width:65.568000px;}
._45_c00399{width:69.354000px;}
._3d_c00399{width:75.960000px;}
._30_c00399{width:79.752000px;}
._2e_c00399{width:81.681000px;}
._42_c00399{width:87.936000px;}
._13_c00399{width:107.328000px;}
._3c_c00399{width:108.792000px;}
._44_c00399{width:111.714000px;}
._1a_c00399{width:134.496000px;}
._3e_c00399{width:177.264000px;}
._2b_c00399{width:179.616000px;}
._31_c00399{width:305.640000px;}
._43_c00399{width:358.800000px;}
._29_c00399{width:361.056000px;}
._3b_c00399{width:376.056000px;}
._3f_c00399{width:429.318000px;}
.fc2_c00399{color:transparent;}
.fc1_c00399{color:rgb(128,128,128);}
.fc0_c00399{color:rgb(0,0,0);}
.fs7_c00399{font-size:48.000000px;}
.fs5_c00399{font-size:72.000000px;}
.fs1_c00399{font-size:78.000000px;}
.fs3_c00399{font-size:84.000000px;}
.fs2_c00399{font-size:87.000000px;}
.fs0_c00399{font-size:96.000000px;}
.fs4_c00399{font-size:102.000000px;}
.fs6_c00399{font-size:120.000000px;}
.y0_c00399{bottom:0.000000px;}
.y26_c00399{bottom:3.105000px;}
.y25_c00399{bottom:7.228355px;}
.y24_c00399{bottom:89.085000px;}
.y23_c00399{bottom:121.035000px;}
.y22_c00399{bottom:155.535000px;}
.y21_c00399{bottom:190.335000px;}
.y20_c00399{bottom:223.035000px;}
.y1f_c00399{bottom:255.435000px;}
.y1e_c00399{bottom:288.435000px;}
.y1d_c00399{bottom:323.985000px;}
.y1c_c00399{bottom:358.635000px;}
.y1b_c00399{bottom:392.085000px;}
.y1a_c00399{bottom:426.135000px;}
.y19_c00399{bottom:459.585000px;}
.y18_c00399{bottom:491.685000px;}
.y17_c00399{bottom:527.835000px;}
.y16_c00399{bottom:561.135000px;}
.y15_c00399{bottom:594.585000px;}
.y14_c00399{bottom:628.335000px;}
.y13_c00399{bottom:662.085000px;}
.y12_c00399{bottom:696.135000px;}
.y11_c00399{bottom:731.985000px;}
.y10_c00399{bottom:765.435000px;}
.yf_c00399{bottom:797.385000px;}
.ye_c00399{bottom:829.935000px;}
.yd_c00399{bottom:863.985000px;}
.yc_c00399{bottom:896.685000px;}
.yb_c00399{bottom:930.435000px;}
.ya_c00399{bottom:963.885000px;}
.y9_c00399{bottom:996.885000px;}
.y8_c00399{bottom:1030.035000px;}
.y7_c00399{bottom:1062.135000px;}
.y6_c00399{bottom:1096.485000px;}
.y5_c00399{bottom:1129.935000px;}
.y4_c00399{bottom:1163.385000px;}
.y3_c00399{bottom:1196.385000px;}
.y2_c00399{bottom:1229.835000px;}
.y1_c00399{bottom:1263.885000px;}
.h5_c00399{height:13.200074px;}
.h6_c00399{height:43.804688px;}
.h2_c00399{height:121.546875px;}
.h4_c00399{height:128.040000px;}
.h3_c00399{height:129.143555px;}
.h1_c00399{height:1366.500000px;}
.h0_c00399{height:1366.725000px;}
.w2_c00399{width:104.875500px;}
.w0_c00399{width:852.675000px;}
.w1_c00399{width:852.750000px;}
.x0_c00399{left:0.000000px;}
.x7_c00399{left:36.000000px;}
.xc_c00399{left:37.500000px;}
.x6_c00399{left:38.700000px;}
.x5_c00399{left:65.700000px;}
.xb_c00399{left:66.750000px;}
.x8_c00399{left:110.400000px;}
.x4_c00399{left:112.650000px;}
.xa_c00399{left:117.450000px;}
.x9_c00399{left:255.750000px;}
.x3_c00399{left:257.400000px;}
.x1_c00399{left:258.900000px;}
.x2_c00399{left:260.100000px;}
.xe_c00399{left:378.151749px;}
.xd_c00399{left:801.600000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls8_c00399{letter-spacing:-13.333333pt;}
.ls6_c00399{letter-spacing:0.000000pt;}
.ls7_c00399{letter-spacing:5.333333pt;}
.ls0_c00399{letter-spacing:5.541333pt;}
.ls4_c00399{letter-spacing:58.696000pt;}
.ls3_c00399{letter-spacing:59.229333pt;}
.ls1_c00399{letter-spacing:68.829333pt;}
.ls2_c00399{letter-spacing:181.896000pt;}
.ls5_c00399{letter-spacing:499.762667pt;}
.ws1_c00399{word-spacing:-50.666667pt;}
.ws3_c00399{word-spacing:-20.565333pt;}
.ws0_c00399{word-spacing:-16.709333pt;}
.ws4_c00399{word-spacing:0.000000pt;}
.ws2_c00399{word-spacing:14.421333pt;}
._39_c00399{margin-left:-32.853333pt;}
._40_c00399{margin-left:-28.629333pt;}
._26_c00399{margin-left:-27.136000pt;}
._3a_c00399{margin-left:-19.029333pt;}
._27_c00399{margin-left:-18.090667pt;}
._2c_c00399{margin-left:-12.800000pt;}
._2f_c00399{margin-left:-11.365333pt;}
._36_c00399{margin-left:-10.154667pt;}
._28_c00399{margin-left:-8.874667pt;}
._23_c00399{margin-left:-7.850667pt;}
._18_c00399{margin-left:-6.144000pt;}
._19_c00399{margin-left:-4.693333pt;}
._1e_c00399{margin-left:-3.498667pt;}
._0_c00399{margin-left:-2.133333pt;}
._1_c00399{margin-left:-0.938667pt;}
._7_c00399{width:1.450667pt;}
._8_c00399{width:3.072000pt;}
._b_c00399{width:4.010667pt;}
._3_c00399{width:5.034667pt;}
._5_c00399{width:6.400000pt;}
._2_c00399{width:8.021333pt;}
._6_c00399{width:8.960000pt;}
._22_c00399{width:9.898667pt;}
._9_c00399{width:10.922667pt;}
._4_c00399{width:12.032000pt;}
._25_c00399{width:13.141333pt;}
._e_c00399{width:14.421333pt;}
._d_c00399{width:16.213333pt;}
._15_c00399{width:17.493333pt;}
._21_c00399{width:18.517333pt;}
._1d_c00399{width:19.456000pt;}
._47_c00399{width:20.992000pt;}
._41_c00399{width:21.930667pt;}
._11_c00399{width:23.210667pt;}
._12_c00399{width:25.002667pt;}
._c_c00399{width:26.965333pt;}
._33_c00399{width:28.074667pt;}
._17_c00399{width:29.525333pt;}
._34_c00399{width:30.634667pt;}
._f_c00399{width:32.426667pt;}
._32_c00399{width:33.365333pt;}
._a_c00399{width:34.474667pt;}
._20_c00399{width:35.669333pt;}
._24_c00399{width:36.693333pt;}
._16_c00399{width:38.229333pt;}
._1c_c00399{width:40.277333pt;}
._10_c00399{width:41.216000pt;}
._2a_c00399{width:42.154667pt;}
._38_c00399{width:43.434667pt;}
._1f_c00399{width:44.544000pt;}
._46_c00399{width:46.074667pt;}
._37_c00399{width:47.360000pt;}
._14_c00399{width:48.554667pt;}
._35_c00399{width:51.797333pt;}
._2d_c00399{width:52.762667pt;}
._1b_c00399{width:58.282667pt;}
._45_c00399{width:61.648000pt;}
._3d_c00399{width:67.520000pt;}
._30_c00399{width:70.890667pt;}
._2e_c00399{width:72.605333pt;}
._42_c00399{width:78.165333pt;}
._13_c00399{width:95.402667pt;}
._3c_c00399{width:96.704000pt;}
._44_c00399{width:99.301333pt;}
._1a_c00399{width:119.552000pt;}
._3e_c00399{width:157.568000pt;}
._2b_c00399{width:159.658667pt;}
._31_c00399{width:271.680000pt;}
._43_c00399{width:318.933333pt;}
._29_c00399{width:320.938667pt;}
._3b_c00399{width:334.272000pt;}
._3f_c00399{width:381.616000pt;}
.fs7_c00399{font-size:42.666667pt;}
.fs5_c00399{font-size:64.000000pt;}
.fs1_c00399{font-size:69.333333pt;}
.fs3_c00399{font-size:74.666667pt;}
.fs2_c00399{font-size:77.333333pt;}
.fs0_c00399{font-size:85.333333pt;}
.fs4_c00399{font-size:90.666667pt;}
.fs6_c00399{font-size:106.666667pt;}
.y0_c00399{bottom:0.000000pt;}
.y26_c00399{bottom:2.760000pt;}
.y25_c00399{bottom:6.425204pt;}
.y24_c00399{bottom:79.186667pt;}
.y23_c00399{bottom:107.586667pt;}
.y22_c00399{bottom:138.253333pt;}
.y21_c00399{bottom:169.186667pt;}
.y20_c00399{bottom:198.253333pt;}
.y1f_c00399{bottom:227.053333pt;}
.y1e_c00399{bottom:256.386667pt;}
.y1d_c00399{bottom:287.986667pt;}
.y1c_c00399{bottom:318.786667pt;}
.y1b_c00399{bottom:348.520000pt;}
.y1a_c00399{bottom:378.786667pt;}
.y19_c00399{bottom:408.520000pt;}
.y18_c00399{bottom:437.053333pt;}
.y17_c00399{bottom:469.186667pt;}
.y16_c00399{bottom:498.786667pt;}
.y15_c00399{bottom:528.520000pt;}
.y14_c00399{bottom:558.520000pt;}
.y13_c00399{bottom:588.520000pt;}
.y12_c00399{bottom:618.786667pt;}
.y11_c00399{bottom:650.653333pt;}
.y10_c00399{bottom:680.386667pt;}
.yf_c00399{bottom:708.786667pt;}
.ye_c00399{bottom:737.720000pt;}
.yd_c00399{bottom:767.986667pt;}
.yc_c00399{bottom:797.053333pt;}
.yb_c00399{bottom:827.053333pt;}
.ya_c00399{bottom:856.786667pt;}
.y9_c00399{bottom:886.120000pt;}
.y8_c00399{bottom:915.586667pt;}
.y7_c00399{bottom:944.120000pt;}
.y6_c00399{bottom:974.653333pt;}
.y5_c00399{bottom:1004.386667pt;}
.y4_c00399{bottom:1034.120000pt;}
.y3_c00399{bottom:1063.453333pt;}
.y2_c00399{bottom:1093.186667pt;}
.y1_c00399{bottom:1123.453333pt;}
.h5_c00399{height:11.733399pt;}
.h6_c00399{height:38.937500pt;}
.h2_c00399{height:108.041667pt;}
.h4_c00399{height:113.813333pt;}
.h3_c00399{height:114.794271pt;}
.h1_c00399{height:1214.666667pt;}
.h0_c00399{height:1214.866667pt;}
.w2_c00399{width:93.222667pt;}
.w0_c00399{width:757.933333pt;}
.w1_c00399{width:758.000000pt;}
.x0_c00399{left:0.000000pt;}
.x7_c00399{left:32.000000pt;}
.xc_c00399{left:33.333333pt;}
.x6_c00399{left:34.400000pt;}
.x5_c00399{left:58.400000pt;}
.xb_c00399{left:59.333333pt;}
.x8_c00399{left:98.133333pt;}
.x4_c00399{left:100.133333pt;}
.xa_c00399{left:104.400000pt;}
.x9_c00399{left:227.333333pt;}
.x3_c00399{left:228.800000pt;}
.x1_c00399{left:230.133333pt;}
.x2_c00399{left:231.200000pt;}
.xe_c00399{left:336.134888pt;}
.xd_c00399{left:712.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_98ee2d8247f85102a19ce19f.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_42eac546f2b5b6277e5db935.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_9ee8fe167f9f2c30b89861fa.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_322e5d75f55d28f4bff31737.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00400;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00400{font-family:ff7_c00400;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00400{vertical-align:-155.400000px;}
.v0_c00400{vertical-align:0.000000px;}
.ls7_c00400{letter-spacing:-9.000000px;}
.ls4_c00400{letter-spacing:0.000000px;}
.ls5_c00400{letter-spacing:6.000000px;}
.ls6_c00400{letter-spacing:9.000000px;}
.ls0_c00400{letter-spacing:9.456000px;}
.ls1_c00400{letter-spacing:32.484000px;}
.ls2_c00400{letter-spacing:39.615000px;}
.ls3_c00400{letter-spacing:66.900000px;}
.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;}
}
.ws0_c00400{word-spacing:-23.136000px;}
.ws6_c00400{word-spacing:-18.798000px;}
.ws5_c00400{word-spacing:-9.798000px;}
.ws7_c00400{word-spacing:0.000000px;}
.ws1_c00400{word-spacing:3.840000px;}
.ws2_c00400{word-spacing:10.668000px;}
.ws4_c00400{word-spacing:38.772000px;}
.ws3_c00400{word-spacing:113.436000px;}
._b_c00400{margin-left:-23.808000px;}
._30_c00400{margin-left:-18.720000px;}
._22_c00400{margin-left:-16.992000px;}
._2d_c00400{margin-left:-15.936000px;}
._c_c00400{margin-left:-14.400000px;}
._25_c00400{margin-left:-12.192000px;}
._2c_c00400{margin-left:-10.080000px;}
._3a_c00400{margin-left:-8.847000px;}
._23_c00400{margin-left:-7.776000px;}
._24_c00400{margin-left:-6.720000px;}
._2e_c00400{margin-left:-5.664000px;}
._e_c00400{margin-left:-4.320000px;}
._2_c00400{margin-left:-2.784000px;}
._1_c00400{margin-left:-1.248000px;}
._4_c00400{width:1.632000px;}
._6_c00400{width:2.688000px;}
._9_c00400{width:3.936000px;}
._8_c00400{width:5.472000px;}
._d_c00400{width:6.912000px;}
._1b_c00400{width:8.352000px;}
._15_c00400{width:9.696000px;}
._0_c00400{width:11.616000px;}
._17_c00400{width:12.960000px;}
._13_c00400{width:15.072000px;}
._26_c00400{width:16.512000px;}
._21_c00400{width:17.664000px;}
._14_c00400{width:19.584000px;}
._f_c00400{width:21.216000px;}
._34_c00400{width:23.400000px;}
._10_c00400{width:25.152000px;}
._16_c00400{width:26.304000px;}
._5_c00400{width:27.552000px;}
._29_c00400{width:28.704000px;}
._a_c00400{width:29.952000px;}
._19_c00400{width:31.584000px;}
._1c_c00400{width:32.832000px;}
._3_c00400{width:34.752000px;}
._7_c00400{width:36.096000px;}
._2f_c00400{width:37.248000px;}
._2b_c00400{width:39.264000px;}
._1e_c00400{width:40.512000px;}
._33_c00400{width:41.652000px;}
._18_c00400{width:42.912000px;}
._11_c00400{width:45.600000px;}
._12_c00400{width:47.136000px;}
._20_c00400{width:49.344000px;}
._1d_c00400{width:50.976000px;}
._1f_c00400{width:52.032000px;}
._2a_c00400{width:54.144000px;}
._1a_c00400{width:56.160000px;}
._27_c00400{width:60.480000px;}
._32_c00400{width:61.740000px;}
._35_c00400{width:68.145000px;}
._37_c00400{width:70.056000px;}
._39_c00400{width:76.620000px;}
._36_c00400{width:88.452000px;}
._38_c00400{width:89.778000px;}
._28_c00400{width:101.568000px;}
._31_c00400{width:957.024000px;}
.fc2_c00400{color:transparent;}
.fc1_c00400{color:rgb(128,128,128);}
.fc0_c00400{color:rgb(0,0,0);}
.fs9_c00400{font-size:48.000000px;}
.fs4_c00400{font-size:69.000000px;}
.fs3_c00400{font-size:78.000000px;}
.fs1_c00400{font-size:84.000000px;}
.fs8_c00400{font-size:87.000000px;}
.fs0_c00400{font-size:96.000000px;}
.fs7_c00400{font-size:99.000000px;}
.fs2_c00400{font-size:102.000000px;}
.fs6_c00400{font-size:111.000000px;}
.fs5_c00400{font-size:132.000000px;}
.y0_c00400{bottom:0.000000px;}
.y3b_c00400{bottom:3.105000px;}
.y3a_c00400{bottom:7.228369px;}
.y25_c00400{bottom:105.270000px;}
.y24_c00400{bottom:139.620000px;}
.y39_c00400{bottom:147.870000px;}
.y23_c00400{bottom:173.820000px;}
.y38_c00400{bottom:176.820000px;}
.y37_c00400{bottom:207.870000px;}
.y22_c00400{bottom:208.170000px;}
.y36_c00400{bottom:237.870000px;}
.y21_c00400{bottom:242.220000px;}
.y35_c00400{bottom:267.870000px;}
.y20_c00400{bottom:275.370000px;}
.y34_c00400{bottom:297.720000px;}
.y1f_c00400{bottom:308.820000px;}
.y33_c00400{bottom:327.270000px;}
.y1e_c00400{bottom:343.170000px;}
.y32_c00400{bottom:349.920000px;}
.y1d_c00400{bottom:376.620000px;}
.y1c_c00400{bottom:409.770000px;}
.y1b_c00400{bottom:443.520000px;}
.y1a_c00400{bottom:477.120000px;}
.y31_c00400{bottom:507.870000px;}
.y19_c00400{bottom:511.320000px;}
.y30_c00400{bottom:538.920000px;}
.y18_c00400{bottom:544.020000px;}
.y2f_c00400{bottom:568.320000px;}
.y17_c00400{bottom:577.770000px;}
.y16_c00400{bottom:612.120000px;}
.y2e_c00400{bottom:631.770000px;}
.y15_c00400{bottom:645.870000px;}
.y2d_c00400{bottom:660.870000px;}
.y14_c00400{bottom:678.720000px;}
.y2c_c00400{bottom:690.420000px;}
.y2b_c00400{bottom:712.170000px;}
.y13_c00400{bottom:712.470000px;}
.y12_c00400{bottom:746.520000px;}
.y11_c00400{bottom:779.520000px;}
.y10_c00400{bottom:812.970000px;}
.yf_c00400{bottom:845.370000px;}
.ye_c00400{bottom:878.220000px;}
.yd_c00400{bottom:911.820000px;}
.y2a_c00400{bottom:919.020000px;}
.yc_c00400{bottom:944.970000px;}
.y29_c00400{bottom:949.320000px;}
.yb_c00400{bottom:978.420000px;}
.ya_c00400{bottom:1011.720000px;}
.y9_c00400{bottom:1045.470000px;}
.y28_c00400{bottom:1046.220000px;}
.y27_c00400{bottom:1074.570000px;}
.y8_c00400{bottom:1078.620000px;}
.y26_c00400{bottom:1099.470000px;}
.y7_c00400{bottom:1111.620000px;}
.y6_c00400{bottom:1144.770000px;}
.y5_c00400{bottom:1177.170000px;}
.y4_c00400{bottom:1209.570000px;}
.y3_c00400{bottom:1243.020000px;}
.y2_c00400{bottom:1276.470000px;}
.y1_c00400{bottom:1311.570000px;}
.h7_c00400{height:13.200073px;}
.h8_c00400{height:43.804688px;}
.h4_c00400{height:91.291992px;}
.h5_c00400{height:98.314453px;}
.h3_c00400{height:98.756836px;}
.h6_c00400{height:110.151855px;}
.h2_c00400{height:121.546875px;}
.h0_c00400{height:1383.450000px;}
.h1_c00400{height:1383.750000px;}
.w2_c00400{width:104.875500px;}
.w0_c00400{width:878.025000px;}
.w1_c00400{width:878.250000px;}
.x0_c00400{left:0.000000px;}
.x7_c00400{left:26.700000px;}
.x6_c00400{left:27.750000px;}
.x5_c00400{left:28.800000px;}
.x4_c00400{left:30.600000px;}
.x3_c00400{left:32.700000px;}
.x2_c00400{left:33.750000px;}
.x8_c00400{left:34.800000px;}
.xa_c00400{left:35.850000px;}
.x9_c00400{left:40.200000px;}
.xb_c00400{left:299.100000px;}
.x1b_c00400{left:390.826721px;}
.x1_c00400{left:517.050000px;}
.xe_c00400{left:618.000000px;}
.x10_c00400{left:620.250000px;}
.x13_c00400{left:621.900000px;}
.x14_c00400{left:623.400000px;}
.x16_c00400{left:625.650000px;}
.x18_c00400{left:627.450000px;}
.x19_c00400{left:628.650000px;}
.x1a_c00400{left:630.000000px;}
.xf_c00400{left:644.550000px;}
.xd_c00400{left:647.700000px;}
.x12_c00400{left:651.000000px;}
.x15_c00400{left:653.100000px;}
.x17_c00400{left:660.450000px;}
.x11_c00400{left:696.900000px;}
.xc_c00400{left:697.950000px;}
@media print{
.v1_c00400{vertical-align:-138.133333pt;}
.v0_c00400{vertical-align:0.000000pt;}
.ls7_c00400{letter-spacing:-8.000000pt;}
.ls4_c00400{letter-spacing:0.000000pt;}
.ls5_c00400{letter-spacing:5.333333pt;}
.ls6_c00400{letter-spacing:8.000000pt;}
.ls0_c00400{letter-spacing:8.405333pt;}
.ls1_c00400{letter-spacing:28.874667pt;}
.ls2_c00400{letter-spacing:35.213333pt;}
.ls3_c00400{letter-spacing:59.466667pt;}
.ws0_c00400{word-spacing:-20.565333pt;}
.ws6_c00400{word-spacing:-16.709333pt;}
.ws5_c00400{word-spacing:-8.709333pt;}
.ws7_c00400{word-spacing:0.000000pt;}
.ws1_c00400{word-spacing:3.413333pt;}
.ws2_c00400{word-spacing:9.482667pt;}
.ws4_c00400{word-spacing:34.464000pt;}
.ws3_c00400{word-spacing:100.832000pt;}
._b_c00400{margin-left:-21.162667pt;}
._30_c00400{margin-left:-16.640000pt;}
._22_c00400{margin-left:-15.104000pt;}
._2d_c00400{margin-left:-14.165333pt;}
._c_c00400{margin-left:-12.800000pt;}
._25_c00400{margin-left:-10.837333pt;}
._2c_c00400{margin-left:-8.960000pt;}
._3a_c00400{margin-left:-7.864000pt;}
._23_c00400{margin-left:-6.912000pt;}
._24_c00400{margin-left:-5.973333pt;}
._2e_c00400{margin-left:-5.034667pt;}
._e_c00400{margin-left:-3.840000pt;}
._2_c00400{margin-left:-2.474667pt;}
._1_c00400{margin-left:-1.109333pt;}
._4_c00400{width:1.450667pt;}
._6_c00400{width:2.389333pt;}
._9_c00400{width:3.498667pt;}
._8_c00400{width:4.864000pt;}
._d_c00400{width:6.144000pt;}
._1b_c00400{width:7.424000pt;}
._15_c00400{width:8.618667pt;}
._0_c00400{width:10.325333pt;}
._17_c00400{width:11.520000pt;}
._13_c00400{width:13.397333pt;}
._26_c00400{width:14.677333pt;}
._21_c00400{width:15.701333pt;}
._14_c00400{width:17.408000pt;}
._f_c00400{width:18.858667pt;}
._34_c00400{width:20.800000pt;}
._10_c00400{width:22.357333pt;}
._16_c00400{width:23.381333pt;}
._5_c00400{width:24.490667pt;}
._29_c00400{width:25.514667pt;}
._a_c00400{width:26.624000pt;}
._19_c00400{width:28.074667pt;}
._1c_c00400{width:29.184000pt;}
._3_c00400{width:30.890667pt;}
._7_c00400{width:32.085333pt;}
._2f_c00400{width:33.109333pt;}
._2b_c00400{width:34.901333pt;}
._1e_c00400{width:36.010667pt;}
._33_c00400{width:37.024000pt;}
._18_c00400{width:38.144000pt;}
._11_c00400{width:40.533333pt;}
._12_c00400{width:41.898667pt;}
._20_c00400{width:43.861333pt;}
._1d_c00400{width:45.312000pt;}
._1f_c00400{width:46.250667pt;}
._2a_c00400{width:48.128000pt;}
._1a_c00400{width:49.920000pt;}
._27_c00400{width:53.760000pt;}
._32_c00400{width:54.880000pt;}
._35_c00400{width:60.573333pt;}
._37_c00400{width:62.272000pt;}
._39_c00400{width:68.106667pt;}
._36_c00400{width:78.624000pt;}
._38_c00400{width:79.802667pt;}
._28_c00400{width:90.282667pt;}
._31_c00400{width:850.688000pt;}
.fs9_c00400{font-size:42.666667pt;}
.fs4_c00400{font-size:61.333333pt;}
.fs3_c00400{font-size:69.333333pt;}
.fs1_c00400{font-size:74.666667pt;}
.fs8_c00400{font-size:77.333333pt;}
.fs0_c00400{font-size:85.333333pt;}
.fs7_c00400{font-size:88.000000pt;}
.fs2_c00400{font-size:90.666667pt;}
.fs6_c00400{font-size:98.666667pt;}
.fs5_c00400{font-size:117.333333pt;}
.y0_c00400{bottom:0.000000pt;}
.y3b_c00400{bottom:2.760000pt;}
.y3a_c00400{bottom:6.425217pt;}
.y25_c00400{bottom:93.573333pt;}
.y24_c00400{bottom:124.106667pt;}
.y39_c00400{bottom:131.440000pt;}
.y23_c00400{bottom:154.506667pt;}
.y38_c00400{bottom:157.173333pt;}
.y37_c00400{bottom:184.773333pt;}
.y22_c00400{bottom:185.040000pt;}
.y36_c00400{bottom:211.440000pt;}
.y21_c00400{bottom:215.306667pt;}
.y35_c00400{bottom:238.106667pt;}
.y20_c00400{bottom:244.773333pt;}
.y34_c00400{bottom:264.640000pt;}
.y1f_c00400{bottom:274.506667pt;}
.y33_c00400{bottom:290.906667pt;}
.y1e_c00400{bottom:305.040000pt;}
.y32_c00400{bottom:311.040000pt;}
.y1d_c00400{bottom:334.773333pt;}
.y1c_c00400{bottom:364.240000pt;}
.y1b_c00400{bottom:394.240000pt;}
.y1a_c00400{bottom:424.106667pt;}
.y31_c00400{bottom:451.440000pt;}
.y19_c00400{bottom:454.506667pt;}
.y30_c00400{bottom:479.040000pt;}
.y18_c00400{bottom:483.573333pt;}
.y2f_c00400{bottom:505.173333pt;}
.y17_c00400{bottom:513.573333pt;}
.y16_c00400{bottom:544.106667pt;}
.y2e_c00400{bottom:561.573333pt;}
.y15_c00400{bottom:574.106667pt;}
.y2d_c00400{bottom:587.440000pt;}
.y14_c00400{bottom:603.306667pt;}
.y2c_c00400{bottom:613.706667pt;}
.y2b_c00400{bottom:633.040000pt;}
.y13_c00400{bottom:633.306667pt;}
.y12_c00400{bottom:663.573333pt;}
.y11_c00400{bottom:692.906667pt;}
.y10_c00400{bottom:722.640000pt;}
.yf_c00400{bottom:751.440000pt;}
.ye_c00400{bottom:780.640000pt;}
.yd_c00400{bottom:810.506667pt;}
.y2a_c00400{bottom:816.906667pt;}
.yc_c00400{bottom:839.973333pt;}
.y29_c00400{bottom:843.840000pt;}
.yb_c00400{bottom:869.706667pt;}
.ya_c00400{bottom:899.306667pt;}
.y9_c00400{bottom:929.306667pt;}
.y28_c00400{bottom:929.973333pt;}
.y27_c00400{bottom:955.173333pt;}
.y8_c00400{bottom:958.773333pt;}
.y26_c00400{bottom:977.306667pt;}
.y7_c00400{bottom:988.106667pt;}
.y6_c00400{bottom:1017.573333pt;}
.y5_c00400{bottom:1046.373333pt;}
.y4_c00400{bottom:1075.173333pt;}
.y3_c00400{bottom:1104.906667pt;}
.y2_c00400{bottom:1134.640000pt;}
.y1_c00400{bottom:1165.840000pt;}
.h7_c00400{height:11.733399pt;}
.h8_c00400{height:38.937500pt;}
.h4_c00400{height:81.148438pt;}
.h5_c00400{height:87.390625pt;}
.h3_c00400{height:87.783854pt;}
.h6_c00400{height:97.912760pt;}
.h2_c00400{height:108.041667pt;}
.h0_c00400{height:1229.733333pt;}
.h1_c00400{height:1230.000000pt;}
.w2_c00400{width:93.222667pt;}
.w0_c00400{width:780.466667pt;}
.w1_c00400{width:780.666667pt;}
.x0_c00400{left:0.000000pt;}
.x7_c00400{left:23.733333pt;}
.x6_c00400{left:24.666667pt;}
.x5_c00400{left:25.600000pt;}
.x4_c00400{left:27.200000pt;}
.x3_c00400{left:29.066667pt;}
.x2_c00400{left:30.000000pt;}
.x8_c00400{left:30.933333pt;}
.xa_c00400{left:31.866667pt;}
.x9_c00400{left:35.733333pt;}
.xb_c00400{left:265.866667pt;}
.x1b_c00400{left:347.401530pt;}
.x1_c00400{left:459.600000pt;}
.xe_c00400{left:549.333333pt;}
.x10_c00400{left:551.333333pt;}
.x13_c00400{left:552.800000pt;}
.x14_c00400{left:554.133333pt;}
.x16_c00400{left:556.133333pt;}
.x18_c00400{left:557.733333pt;}
.x19_c00400{left:558.800000pt;}
.x1a_c00400{left:560.000000pt;}
.xf_c00400{left:572.933333pt;}
.xd_c00400{left:575.733333pt;}
.x12_c00400{left:578.666667pt;}
.x15_c00400{left:580.533333pt;}
.x17_c00400{left:587.066667pt;}
.x11_c00400{left:619.466667pt;}
.xc_c00400{left:620.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_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_c9138ce19edd6be72f2b8d81.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;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:ff2_c00401;src:url('chunks/assets/font_f1e1e93dfed3ba588d15e2fe.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_f20424f483c187bf1acded1e.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_03e8c14f81c171f45852b258.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls5_c00401{letter-spacing:0.000000px;}
.ls3_c00401{letter-spacing:1.800000px;}
.ls0_c00401{letter-spacing:5.400000px;}
.ls6_c00401{letter-spacing:6.000000px;}
.ls1_c00401{letter-spacing:8.520000px;}
.ls4_c00401{letter-spacing:13.800000px;}
.ls2_c00401{letter-spacing:28.068000px;}
.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;}
}
.ws0_c00401{word-spacing:-61.044000px;}
.ws1_c00401{word-spacing:-20.244000px;}
.ws3_c00401{word-spacing:0.000000px;}
.ws2_c00401{word-spacing:6.216000px;}
._30_c00401{margin-left:-32.352000px;}
._32_c00401{margin-left:-29.760000px;}
._2d_c00401{margin-left:-22.980000px;}
._17_c00401{margin-left:-12.768000px;}
._31_c00401{margin-left:-11.328000px;}
._18_c00401{margin-left:-9.504000px;}
._2f_c00401{margin-left:-8.112000px;}
._25_c00401{margin-left:-6.912000px;}
._2c_c00401{margin-left:-5.520000px;}
._0_c00401{margin-left:-4.320000px;}
._22_c00401{margin-left:-3.168000px;}
._11_c00401{margin-left:-1.248000px;}
._3_c00401{width:1.920000px;}
._2_c00401{width:3.360000px;}
._5_c00401{width:4.992000px;}
._9_c00401{width:6.240000px;}
._b_c00401{width:7.296000px;}
._a_c00401{width:8.352000px;}
._f_c00401{width:9.696000px;}
._1b_c00401{width:11.520000px;}
._1c_c00401{width:12.768000px;}
._1a_c00401{width:14.112000px;}
._24_c00401{width:15.360000px;}
._6_c00401{width:17.088000px;}
._23_c00401{width:18.816000px;}
._1_c00401{width:21.216000px;}
._28_c00401{width:23.148000px;}
._41_c00401{width:24.192000px;}
._19_c00401{width:25.344000px;}
._20_c00401{width:26.784000px;}
._14_c00401{width:28.032000px;}
._1d_c00401{width:30.336000px;}
._8_c00401{width:31.392000px;}
._34_c00401{width:32.544000px;}
._12_c00401{width:33.888000px;}
._27_c00401{width:35.052000px;}
._7_c00401{width:36.096000px;}
._10_c00401{width:38.016000px;}
._1e_c00401{width:39.312000px;}
._36_c00401{width:40.560000px;}
._1f_c00401{width:41.664000px;}
._e_c00401{width:42.720000px;}
._21_c00401{width:43.872000px;}
._4_c00401{width:45.120000px;}
._33_c00401{width:46.800000px;}
._c_c00401{width:47.808000px;}
._d_c00401{width:50.016000px;}
._13_c00401{width:51.936000px;}
._2a_c00401{width:53.088000px;}
._15_c00401{width:54.336000px;}
._16_c00401{width:55.392000px;}
._40_c00401{width:58.224000px;}
._3e_c00401{width:59.328000px;}
._3f_c00401{width:61.104000px;}
._38_c00401{width:68.832000px;}
._37_c00401{width:69.984000px;}
._2e_c00401{width:71.748000px;}
._2b_c00401{width:75.000000px;}
._42_c00401{width:94.080000px;}
._3d_c00401{width:121.536000px;}
._43_c00401{width:197.952000px;}
._29_c00401{width:259.716000px;}
._39_c00401{width:284.400000px;}
._35_c00401{width:361.536000px;}
._3a_c00401{width:504.960000px;}
._3b_c00401{width:570.120000px;}
._3c_c00401{width:721.608000px;}
._26_c00401{width:750.432000px;}
._44_c00401{width:812.736000px;}
.fc2_c00401{color:transparent;}
.fc1_c00401{color:rgb(128,128,128);}
.fc0_c00401{color:rgb(0,0,0);}
.fs4_c00401{font-size:48.000000px;}
.fs2_c00401{font-size:84.000000px;}
.fs1_c00401{font-size:96.000000px;}
.fs3_c00401{font-size:99.000000px;}
.fs0_c00401{font-size:102.000000px;}
.y0_c00401{bottom:0.000000px;}
.y26_c00401{bottom:3.105000px;}
.y25_c00401{bottom:7.228357px;}
.y24_c00401{bottom:96.180000px;}
.y23_c00401{bottom:128.880000px;}
.y22_c00401{bottom:163.680000px;}
.y21_c00401{bottom:197.430000px;}
.y20_c00401{bottom:231.630000px;}
.y1f_c00401{bottom:264.930000px;}
.y1e_c00401{bottom:299.730000px;}
.y1d_c00401{bottom:333.480000px;}
.y1c_c00401{bottom:366.180000px;}
.y1b_c00401{bottom:397.230000px;}
.y1a_c00401{bottom:438.030000px;}
.y19_c00401{bottom:471.780000px;}
.y18_c00401{bottom:504.630000px;}
.y17_c00401{bottom:535.980000px;}
.y16_c00401{bottom:569.730000px;}
.y15_c00401{bottom:603.780000px;}
.y14_c00401{bottom:637.230000px;}
.y13_c00401{bottom:670.680000px;}
.y12_c00401{bottom:703.680000px;}
.y11_c00401{bottom:736.380000px;}
.y10_c00401{bottom:771.480000px;}
.yf_c00401{bottom:804.630000px;}
.ye_c00401{bottom:838.380000px;}
.yd_c00401{bottom:872.130000px;}
.yc_c00401{bottom:905.580000px;}
.yb_c00401{bottom:938.580000px;}
.ya_c00401{bottom:970.380000px;}
.y9_c00401{bottom:1003.830000px;}
.y8_c00401{bottom:1038.180000px;}
.y7_c00401{bottom:1071.630000px;}
.y6_c00401{bottom:1105.080000px;}
.y5_c00401{bottom:1138.680000px;}
.y4_c00401{bottom:1171.530000px;}
.y3_c00401{bottom:1205.580000px;}
.y2_c00401{bottom:1238.280000px;}
.y1_c00401{bottom:1271.130000px;}
.h3_c00401{height:13.200074px;}
.h4_c00401{height:43.804688px;}
.h2_c00401{height:121.546875px;}
.h0_c00401{height:1382.700000px;}
.h1_c00401{height:1383.000000px;}
.w2_c00401{width:104.875500px;}
.w0_c00401{width:863.175000px;}
.w1_c00401{width:863.250000px;}
.x0_c00401{left:0.000000px;}
.xa_c00401{left:15.900000px;}
.xb_c00401{left:17.100000px;}
.x5_c00401{left:19.650000px;}
.x6_c00401{left:21.300000px;}
.x9_c00401{left:44.550000px;}
.x4_c00401{left:47.250000px;}
.x8_c00401{left:81.300000px;}
.x3_c00401{left:84.000000px;}
.xe_c00401{left:113.100000px;}
.x7_c00401{left:230.400000px;}
.xd_c00401{left:231.900000px;}
.xc_c00401{left:232.950000px;}
.x2_c00401{left:236.250000px;}
.x1_c00401{left:237.300000px;}
.x10_c00401{left:383.401749px;}
.xf_c00401{left:496.800000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls5_c00401{letter-spacing:0.000000pt;}
.ls3_c00401{letter-spacing:1.600000pt;}
.ls0_c00401{letter-spacing:4.800000pt;}
.ls6_c00401{letter-spacing:5.333333pt;}
.ls1_c00401{letter-spacing:7.573333pt;}
.ls4_c00401{letter-spacing:12.266667pt;}
.ls2_c00401{letter-spacing:24.949333pt;}
.ws0_c00401{word-spacing:-54.261333pt;}
.ws1_c00401{word-spacing:-17.994667pt;}
.ws3_c00401{word-spacing:0.000000pt;}
.ws2_c00401{word-spacing:5.525333pt;}
._30_c00401{margin-left:-28.757333pt;}
._32_c00401{margin-left:-26.453333pt;}
._2d_c00401{margin-left:-20.426667pt;}
._17_c00401{margin-left:-11.349333pt;}
._31_c00401{margin-left:-10.069333pt;}
._18_c00401{margin-left:-8.448000pt;}
._2f_c00401{margin-left:-7.210667pt;}
._25_c00401{margin-left:-6.144000pt;}
._2c_c00401{margin-left:-4.906667pt;}
._0_c00401{margin-left:-3.840000pt;}
._22_c00401{margin-left:-2.816000pt;}
._11_c00401{margin-left:-1.109333pt;}
._3_c00401{width:1.706667pt;}
._2_c00401{width:2.986667pt;}
._5_c00401{width:4.437333pt;}
._9_c00401{width:5.546667pt;}
._b_c00401{width:6.485333pt;}
._a_c00401{width:7.424000pt;}
._f_c00401{width:8.618667pt;}
._1b_c00401{width:10.240000pt;}
._1c_c00401{width:11.349333pt;}
._1a_c00401{width:12.544000pt;}
._24_c00401{width:13.653333pt;}
._6_c00401{width:15.189333pt;}
._23_c00401{width:16.725333pt;}
._1_c00401{width:18.858667pt;}
._28_c00401{width:20.576000pt;}
._41_c00401{width:21.504000pt;}
._19_c00401{width:22.528000pt;}
._20_c00401{width:23.808000pt;}
._14_c00401{width:24.917333pt;}
._1d_c00401{width:26.965333pt;}
._8_c00401{width:27.904000pt;}
._34_c00401{width:28.928000pt;}
._12_c00401{width:30.122667pt;}
._27_c00401{width:31.157333pt;}
._7_c00401{width:32.085333pt;}
._10_c00401{width:33.792000pt;}
._1e_c00401{width:34.944000pt;}
._36_c00401{width:36.053333pt;}
._1f_c00401{width:37.034667pt;}
._e_c00401{width:37.973333pt;}
._21_c00401{width:38.997333pt;}
._4_c00401{width:40.106667pt;}
._33_c00401{width:41.600000pt;}
._c_c00401{width:42.496000pt;}
._d_c00401{width:44.458667pt;}
._13_c00401{width:46.165333pt;}
._2a_c00401{width:47.189333pt;}
._15_c00401{width:48.298667pt;}
._16_c00401{width:49.237333pt;}
._40_c00401{width:51.754667pt;}
._3e_c00401{width:52.736000pt;}
._3f_c00401{width:54.314667pt;}
._38_c00401{width:61.184000pt;}
._37_c00401{width:62.208000pt;}
._2e_c00401{width:63.776000pt;}
._2b_c00401{width:66.666667pt;}
._42_c00401{width:83.626667pt;}
._3d_c00401{width:108.032000pt;}
._43_c00401{width:175.957333pt;}
._29_c00401{width:230.858667pt;}
._39_c00401{width:252.800000pt;}
._35_c00401{width:321.365333pt;}
._3a_c00401{width:448.853333pt;}
._3b_c00401{width:506.773333pt;}
._3c_c00401{width:641.429333pt;}
._26_c00401{width:667.050667pt;}
._44_c00401{width:722.432000pt;}
.fs4_c00401{font-size:42.666667pt;}
.fs2_c00401{font-size:74.666667pt;}
.fs1_c00401{font-size:85.333333pt;}
.fs3_c00401{font-size:88.000000pt;}
.fs0_c00401{font-size:90.666667pt;}
.y0_c00401{bottom:0.000000pt;}
.y26_c00401{bottom:2.760000pt;}
.y25_c00401{bottom:6.425206pt;}
.y24_c00401{bottom:85.493333pt;}
.y23_c00401{bottom:114.560000pt;}
.y22_c00401{bottom:145.493333pt;}
.y21_c00401{bottom:175.493333pt;}
.y20_c00401{bottom:205.893333pt;}
.y1f_c00401{bottom:235.493333pt;}
.y1e_c00401{bottom:266.426667pt;}
.y1d_c00401{bottom:296.426667pt;}
.y1c_c00401{bottom:325.493333pt;}
.y1b_c00401{bottom:353.093333pt;}
.y1a_c00401{bottom:389.360000pt;}
.y19_c00401{bottom:419.360000pt;}
.y18_c00401{bottom:448.560000pt;}
.y17_c00401{bottom:476.426667pt;}
.y16_c00401{bottom:506.426667pt;}
.y15_c00401{bottom:536.693333pt;}
.y14_c00401{bottom:566.426667pt;}
.y13_c00401{bottom:596.160000pt;}
.y12_c00401{bottom:625.493333pt;}
.y11_c00401{bottom:654.560000pt;}
.y10_c00401{bottom:685.760000pt;}
.yf_c00401{bottom:715.226667pt;}
.ye_c00401{bottom:745.226667pt;}
.yd_c00401{bottom:775.226667pt;}
.yc_c00401{bottom:804.960000pt;}
.yb_c00401{bottom:834.293333pt;}
.ya_c00401{bottom:862.560000pt;}
.y9_c00401{bottom:892.293333pt;}
.y8_c00401{bottom:922.826667pt;}
.y7_c00401{bottom:952.560000pt;}
.y6_c00401{bottom:982.293333pt;}
.y5_c00401{bottom:1012.160000pt;}
.y4_c00401{bottom:1041.360000pt;}
.y3_c00401{bottom:1071.626667pt;}
.y2_c00401{bottom:1100.693333pt;}
.y1_c00401{bottom:1129.893333pt;}
.h3_c00401{height:11.733399pt;}
.h4_c00401{height:38.937500pt;}
.h2_c00401{height:108.041667pt;}
.h0_c00401{height:1229.066667pt;}
.h1_c00401{height:1229.333333pt;}
.w2_c00401{width:93.222667pt;}
.w0_c00401{width:767.266667pt;}
.w1_c00401{width:767.333333pt;}
.x0_c00401{left:0.000000pt;}
.xa_c00401{left:14.133333pt;}
.xb_c00401{left:15.200000pt;}
.x5_c00401{left:17.466667pt;}
.x6_c00401{left:18.933333pt;}
.x9_c00401{left:39.600000pt;}
.x4_c00401{left:42.000000pt;}
.x8_c00401{left:72.266667pt;}
.x3_c00401{left:74.666667pt;}
.xe_c00401{left:100.533333pt;}
.x7_c00401{left:204.800000pt;}
.xd_c00401{left:206.133333pt;}
.xc_c00401{left:207.066667pt;}
.x2_c00401{left:210.000000pt;}
.x1_c00401{left:210.933333pt;}
.x10_c00401{left:340.801554pt;}
.xf_c00401{left:441.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd3f2a5a3fafa354e7be2480.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_479799d03bc2a27642b56ea9.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_0d50db9c98f0b10252f70368.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_5314103b3d97cdff47155c27.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_9d430715f8fffaa3c4a07fa9.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00402;src:url('chunks/assets/font_fe8aa1807fb1ae590924199c.woff2')format("woff");}.ff6_c00402{font-family:ff6_c00402;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00402;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00402{font-family:ff7_c00402;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:118.800000px;}
.ls3_c00402{letter-spacing:0.000000px;}
.ls1_c00402{letter-spacing:3.396000px;}
.ls5_c00402{letter-spacing:6.000000px;}
.ls0_c00402{letter-spacing:9.600000px;}
.ls2_c00402{letter-spacing:11.454000px;}
.ls6_c00402{letter-spacing:18.000000px;}
.ls4_c00402{letter-spacing:24.000000px;}
.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;}
}
.ws7_c00402{word-spacing:-63.504000px;}
.ws2_c00402{word-spacing:-57.000000px;}
.ws1_c00402{word-spacing:-47.136000px;}
.ws4_c00402{word-spacing:-43.305000px;}
.ws0_c00402{word-spacing:-30.576000px;}
.ws3_c00402{word-spacing:-23.136000px;}
.ws5_c00402{word-spacing:-18.000000px;}
.ws8_c00402{word-spacing:0.000000px;}
.ws6_c00402{word-spacing:295.620000px;}
._3b_c00402{margin-left:-59.472000px;}
._1e_c00402{margin-left:-34.200000px;}
._24_c00402{margin-left:-29.352000px;}
._18_c00402{margin-left:-27.264000px;}
._2c_c00402{margin-left:-18.822000px;}
._19_c00402{margin-left:-16.032000px;}
._26_c00402{margin-left:-14.784000px;}
._27_c00402{margin-left:-9.888000px;}
._28_c00402{margin-left:-8.808000px;}
._22_c00402{margin-left:-7.416000px;}
._20_c00402{margin-left:-5.952000px;}
._1f_c00402{margin-left:-4.296000px;}
._d_c00402{margin-left:-3.168000px;}
._5_c00402{margin-left:-2.016000px;}
._35_c00402{margin-left:-1.008000px;}
._c_c00402{width:1.344000px;}
._3_c00402{width:2.496000px;}
._2_c00402{width:4.128000px;}
._8_c00402{width:5.952000px;}
._1_c00402{width:7.872000px;}
._12_c00402{width:9.240000px;}
._e_c00402{width:10.464000px;}
._7_c00402{width:11.808000px;}
._6_c00402{width:13.152000px;}
._16_c00402{width:14.232000px;}
._29_c00402{width:15.240000px;}
._0_c00402{width:16.296000px;}
._14_c00402{width:17.760000px;}
._23_c00402{width:18.840000px;}
._1a_c00402{width:19.872000px;}
._1b_c00402{width:21.312000px;}
._36_c00402{width:22.776000px;}
._2f_c00402{width:24.408000px;}
._a_c00402{width:26.496000px;}
._13_c00402{width:27.816000px;}
._25_c00402{width:29.376000px;}
._b_c00402{width:30.432000px;}
._1c_c00402{width:32.160000px;}
._2e_c00402{width:33.672000px;}
._15_c00402{width:34.728000px;}
._1d_c00402{width:36.792000px;}
._9_c00402{width:38.688000px;}
._32_c00402{width:39.744000px;}
._11_c00402{width:40.800000px;}
._3a_c00402{width:41.970000px;}
._17_c00402{width:43.176000px;}
._31_c00402{width:44.280000px;}
._10_c00402{width:45.504000px;}
._2d_c00402{width:46.896000px;}
._f_c00402{width:48.000000px;}
._2a_c00402{width:49.992000px;}
._30_c00402{width:51.624000px;}
._4_c00402{width:53.712000px;}
._21_c00402{width:55.896000px;}
._39_c00402{width:69.990000px;}
._3c_c00402{width:74.706000px;}
._33_c00402{width:77.454000px;}
._34_c00402{width:79.458000px;}
._37_c00402{width:81.324000px;}
._38_c00402{width:92.970000px;}
._2b_c00402{width:106.416000px;}
.fc2_c00402{color:transparent;}
.fc1_c00402{color:rgb(128,128,128);}
.fc0_c00402{color:rgb(0,0,0);}
.fs7_c00402{font-size:48.000000px;}
.fs3_c00402{font-size:78.000000px;}
.fs0_c00402{font-size:84.000000px;}
.fs6_c00402{font-size:90.000000px;}
.fs1_c00402{font-size:96.000000px;}
.fs2_c00402{font-size:102.000000px;}
.fs5_c00402{font-size:105.000000px;}
.fs4_c00402{font-size:138.000000px;}
.y0_c00402{bottom:0.000000px;}
.y3c_c00402{bottom:3.105000px;}
.y3b_c00402{bottom:7.228369px;}
.y25_c00402{bottom:93.420000px;}
.y24_c00402{bottom:124.170000px;}
.y3a_c00402{bottom:147.420000px;}
.y23_c00402{bottom:158.520000px;}
.y39_c00402{bottom:178.470000px;}
.y22_c00402{bottom:192.270000px;}
.y38_c00402{bottom:208.170000px;}
.y21_c00402{bottom:226.470000px;}
.y37_c00402{bottom:230.520000px;}
.y20_c00402{bottom:259.920000px;}
.y36_c00402{bottom:270.720000px;}
.y1f_c00402{bottom:293.220000px;}
.y35_c00402{bottom:299.970000px;}
.y1e_c00402{bottom:327.420000px;}
.y34_c00402{bottom:331.320000px;}
.y33_c00402{bottom:360.120000px;}
.y1d_c00402{bottom:361.170000px;}
.y32_c00402{bottom:390.720000px;}
.y1c_c00402{bottom:395.220000px;}
.y31_c00402{bottom:419.820000px;}
.y1b_c00402{bottom:428.520000px;}
.y30_c00402{bottom:450.120000px;}
.y1a_c00402{bottom:461.370000px;}
.y2f_c00402{bottom:473.070000px;}
.y19_c00402{bottom:495.720000px;}
.y18_c00402{bottom:528.420000px;}
.y17_c00402{bottom:562.170000px;}
.y16_c00402{bottom:595.920000px;}
.y15_c00402{bottom:629.370000px;}
.y14_c00402{bottom:663.120000px;}
.y13_c00402{bottom:696.870000px;}
.y12_c00402{bottom:730.320000px;}
.y11_c00402{bottom:763.470000px;}
.y2e_c00402{bottom:779.220000px;}
.y10_c00402{bottom:796.770000px;}
.y2d_c00402{bottom:809.370000px;}
.yf_c00402{bottom:829.170000px;}
.y2c_c00402{bottom:830.970000px;}
.ye_c00402{bottom:862.320000px;}
.yd_c00402{bottom:895.620000px;}
.yc_c00402{bottom:929.520000px;}
.y2b_c00402{bottom:936.570000px;}
.yb_c00402{bottom:962.220000px;}
.y2a_c00402{bottom:967.620000px;}
.ya_c00402{bottom:995.520000px;}
.y29_c00402{bottom:996.570000px;}
.y28_c00402{bottom:1026.270000px;}
.y9_c00402{bottom:1028.670000px;}
.y27_c00402{bottom:1055.970000px;}
.y8_c00402{bottom:1062.120000px;}
.y26_c00402{bottom:1083.720000px;}
.y7_c00402{bottom:1095.420000px;}
.y6_c00402{bottom:1127.970000px;}
.y5_c00402{bottom:1160.970000px;}
.y4_c00402{bottom:1194.120000px;}
.y3_c00402{bottom:1227.120000px;}
.y2_c00402{bottom:1260.270000px;}
.y1_c00402{bottom:1294.920000px;}
.h8_c00402{height:13.200073px;}
.h9_c00402{height:43.804688px;}
.h5_c00402{height:97.560000px;}
.h2_c00402{height:98.314453px;}
.h6_c00402{height:106.353516px;}
.h3_c00402{height:121.546875px;}
.h4_c00402{height:132.941895px;}
.h7_c00402{height:217.114453px;}
.h0_c00402{height:1383.450000px;}
.h1_c00402{height:1383.750000px;}
.w2_c00402{width:104.875500px;}
.w0_c00402{width:878.025000px;}
.w1_c00402{width:878.250000px;}
.x0_c00402{left:0.000000px;}
.x9_c00402{left:31.500000px;}
.x8_c00402{left:32.700000px;}
.x7_c00402{left:33.750000px;}
.x6_c00402{left:34.800000px;}
.x5_c00402{left:36.450000px;}
.x4_c00402{left:38.100000px;}
.x3_c00402{left:39.150000px;}
.xa_c00402{left:40.200000px;}
.x2_c00402{left:43.500000px;}
.x17_c00402{left:390.826721px;}
.x1_c00402{left:520.350000px;}
.xb_c00402{left:554.400000px;}
.xe_c00402{left:618.600000px;}
.x10_c00402{left:620.700000px;}
.x15_c00402{left:623.400000px;}
.x16_c00402{left:624.450000px;}
.xd_c00402{left:648.300000px;}
.x14_c00402{left:651.000000px;}
.x12_c00402{left:657.900000px;}
.xf_c00402{left:660.150000px;}
.xc_c00402{left:691.500000px;}
.x11_c00402{left:692.550000px;}
.x13_c00402{left:695.700000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:105.600000pt;}
.ls3_c00402{letter-spacing:0.000000pt;}
.ls1_c00402{letter-spacing:3.018667pt;}
.ls5_c00402{letter-spacing:5.333333pt;}
.ls0_c00402{letter-spacing:8.533333pt;}
.ls2_c00402{letter-spacing:10.181333pt;}
.ls6_c00402{letter-spacing:16.000000pt;}
.ls4_c00402{letter-spacing:21.333333pt;}
.ws7_c00402{word-spacing:-56.448000pt;}
.ws2_c00402{word-spacing:-50.666667pt;}
.ws1_c00402{word-spacing:-41.898667pt;}
.ws4_c00402{word-spacing:-38.493333pt;}
.ws0_c00402{word-spacing:-27.178667pt;}
.ws3_c00402{word-spacing:-20.565333pt;}
.ws5_c00402{word-spacing:-16.000000pt;}
.ws8_c00402{word-spacing:0.000000pt;}
.ws6_c00402{word-spacing:262.773333pt;}
._3b_c00402{margin-left:-52.864000pt;}
._1e_c00402{margin-left:-30.400000pt;}
._24_c00402{margin-left:-26.090667pt;}
._18_c00402{margin-left:-24.234667pt;}
._2c_c00402{margin-left:-16.730667pt;}
._19_c00402{margin-left:-14.250667pt;}
._26_c00402{margin-left:-13.141333pt;}
._27_c00402{margin-left:-8.789333pt;}
._28_c00402{margin-left:-7.829333pt;}
._22_c00402{margin-left:-6.592000pt;}
._20_c00402{margin-left:-5.290667pt;}
._1f_c00402{margin-left:-3.818667pt;}
._d_c00402{margin-left:-2.816000pt;}
._5_c00402{margin-left:-1.792000pt;}
._35_c00402{margin-left:-0.896000pt;}
._c_c00402{width:1.194667pt;}
._3_c00402{width:2.218667pt;}
._2_c00402{width:3.669333pt;}
._8_c00402{width:5.290667pt;}
._1_c00402{width:6.997333pt;}
._12_c00402{width:8.213333pt;}
._e_c00402{width:9.301333pt;}
._7_c00402{width:10.496000pt;}
._6_c00402{width:11.690667pt;}
._16_c00402{width:12.650667pt;}
._29_c00402{width:13.546667pt;}
._0_c00402{width:14.485333pt;}
._14_c00402{width:15.786667pt;}
._23_c00402{width:16.746667pt;}
._1a_c00402{width:17.664000pt;}
._1b_c00402{width:18.944000pt;}
._36_c00402{width:20.245333pt;}
._2f_c00402{width:21.696000pt;}
._a_c00402{width:23.552000pt;}
._13_c00402{width:24.725333pt;}
._25_c00402{width:26.112000pt;}
._b_c00402{width:27.050667pt;}
._1c_c00402{width:28.586667pt;}
._2e_c00402{width:29.930667pt;}
._15_c00402{width:30.869333pt;}
._1d_c00402{width:32.704000pt;}
._9_c00402{width:34.389333pt;}
._32_c00402{width:35.328000pt;}
._11_c00402{width:36.266667pt;}
._3a_c00402{width:37.306667pt;}
._17_c00402{width:38.378667pt;}
._31_c00402{width:39.360000pt;}
._10_c00402{width:40.448000pt;}
._2d_c00402{width:41.685333pt;}
._f_c00402{width:42.666667pt;}
._2a_c00402{width:44.437333pt;}
._30_c00402{width:45.888000pt;}
._4_c00402{width:47.744000pt;}
._21_c00402{width:49.685333pt;}
._39_c00402{width:62.213333pt;}
._3c_c00402{width:66.405333pt;}
._33_c00402{width:68.848000pt;}
._34_c00402{width:70.629333pt;}
._37_c00402{width:72.288000pt;}
._38_c00402{width:82.640000pt;}
._2b_c00402{width:94.592000pt;}
.fs7_c00402{font-size:42.666667pt;}
.fs3_c00402{font-size:69.333333pt;}
.fs0_c00402{font-size:74.666667pt;}
.fs6_c00402{font-size:80.000000pt;}
.fs1_c00402{font-size:85.333333pt;}
.fs2_c00402{font-size:90.666667pt;}
.fs5_c00402{font-size:93.333333pt;}
.fs4_c00402{font-size:122.666667pt;}
.y0_c00402{bottom:0.000000pt;}
.y3c_c00402{bottom:2.760000pt;}
.y3b_c00402{bottom:6.425217pt;}
.y25_c00402{bottom:83.040000pt;}
.y24_c00402{bottom:110.373333pt;}
.y3a_c00402{bottom:131.040000pt;}
.y23_c00402{bottom:140.906667pt;}
.y39_c00402{bottom:158.640000pt;}
.y22_c00402{bottom:170.906667pt;}
.y38_c00402{bottom:185.040000pt;}
.y21_c00402{bottom:201.306667pt;}
.y37_c00402{bottom:204.906667pt;}
.y20_c00402{bottom:231.040000pt;}
.y36_c00402{bottom:240.640000pt;}
.y1f_c00402{bottom:260.640000pt;}
.y35_c00402{bottom:266.640000pt;}
.y1e_c00402{bottom:291.040000pt;}
.y34_c00402{bottom:294.506667pt;}
.y33_c00402{bottom:320.106667pt;}
.y1d_c00402{bottom:321.040000pt;}
.y32_c00402{bottom:347.306667pt;}
.y1c_c00402{bottom:351.306667pt;}
.y31_c00402{bottom:373.173333pt;}
.y1b_c00402{bottom:380.906667pt;}
.y30_c00402{bottom:400.106667pt;}
.y1a_c00402{bottom:410.106667pt;}
.y2f_c00402{bottom:420.506667pt;}
.y19_c00402{bottom:440.640000pt;}
.y18_c00402{bottom:469.706667pt;}
.y17_c00402{bottom:499.706667pt;}
.y16_c00402{bottom:529.706667pt;}
.y15_c00402{bottom:559.440000pt;}
.y14_c00402{bottom:589.440000pt;}
.y13_c00402{bottom:619.440000pt;}
.y12_c00402{bottom:649.173333pt;}
.y11_c00402{bottom:678.640000pt;}
.y2e_c00402{bottom:692.640000pt;}
.y10_c00402{bottom:708.240000pt;}
.y2d_c00402{bottom:719.440000pt;}
.yf_c00402{bottom:737.040000pt;}
.y2c_c00402{bottom:738.640000pt;}
.ye_c00402{bottom:766.506667pt;}
.yd_c00402{bottom:796.106667pt;}
.yc_c00402{bottom:826.240000pt;}
.y2b_c00402{bottom:832.506667pt;}
.yb_c00402{bottom:855.306667pt;}
.y2a_c00402{bottom:860.106667pt;}
.ya_c00402{bottom:884.906667pt;}
.y29_c00402{bottom:885.840000pt;}
.y28_c00402{bottom:912.240000pt;}
.y9_c00402{bottom:914.373333pt;}
.y27_c00402{bottom:938.640000pt;}
.y8_c00402{bottom:944.106667pt;}
.y26_c00402{bottom:963.306667pt;}
.y7_c00402{bottom:973.706667pt;}
.y6_c00402{bottom:1002.640000pt;}
.y5_c00402{bottom:1031.973333pt;}
.y4_c00402{bottom:1061.440000pt;}
.y3_c00402{bottom:1090.773333pt;}
.y2_c00402{bottom:1120.240000pt;}
.y1_c00402{bottom:1151.040000pt;}
.h8_c00402{height:11.733399pt;}
.h9_c00402{height:38.937500pt;}
.h5_c00402{height:86.720000pt;}
.h2_c00402{height:87.390625pt;}
.h6_c00402{height:94.536458pt;}
.h3_c00402{height:108.041667pt;}
.h4_c00402{height:118.170573pt;}
.h7_c00402{height:192.990625pt;}
.h0_c00402{height:1229.733333pt;}
.h1_c00402{height:1230.000000pt;}
.w2_c00402{width:93.222667pt;}
.w0_c00402{width:780.466667pt;}
.w1_c00402{width:780.666667pt;}
.x0_c00402{left:0.000000pt;}
.x9_c00402{left:28.000000pt;}
.x8_c00402{left:29.066667pt;}
.x7_c00402{left:30.000000pt;}
.x6_c00402{left:30.933333pt;}
.x5_c00402{left:32.400000pt;}
.x4_c00402{left:33.866667pt;}
.x3_c00402{left:34.800000pt;}
.xa_c00402{left:35.733333pt;}
.x2_c00402{left:38.666667pt;}
.x17_c00402{left:347.401530pt;}
.x1_c00402{left:462.533333pt;}
.xb_c00402{left:492.800000pt;}
.xe_c00402{left:549.866667pt;}
.x10_c00402{left:551.733333pt;}
.x15_c00402{left:554.133333pt;}
.x16_c00402{left:555.066667pt;}
.xd_c00402{left:576.266667pt;}
.x14_c00402{left:578.666667pt;}
.x12_c00402{left:584.800000pt;}
.xf_c00402{left:586.800000pt;}
.xc_c00402{left:614.666667pt;}
.x11_c00402{left:615.600000pt;}
.x13_c00402{left:618.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_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_5a721447d3aef711f792ebfa.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_de5e1a1254e1f3739f6d499a.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_4b476ba0635166d17135b9d1.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_8a6bb64b84e6997fccdf6cce.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_6b8fb6c3b0615a866f2e0c39.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00403;src:url('chunks/assets/font_c75745bf9ee9ea5340952134.woff2')format("woff");}.ff6_c00403{font-family:ff6_c00403;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00403;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff7_c00403{font-family:ff7_c00403;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00403;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00403{font-family:ff8_c00403;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls3_c00403{letter-spacing:-9.000000px;}
.ls4_c00403{letter-spacing:-3.000000px;}
.ls2_c00403{letter-spacing:0.000000px;}
.ls5_c00403{letter-spacing:6.000000px;}
.ls1_c00403{letter-spacing:23.256000px;}
.ls0_c00403{letter-spacing:34.428000px;}
.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;}
}
.ws4_c00403{word-spacing:-57.000000px;}
.ws3_c00403{word-spacing:-23.136000px;}
.ws5_c00403{word-spacing:-20.244000px;}
.ws2_c00403{word-spacing:-9.798000px;}
.ws0_c00403{word-spacing:-0.135000px;}
.ws1_c00403{word-spacing:-0.120000px;}
.ws6_c00403{word-spacing:0.000000px;}
._1_c00403{margin-left:-61.464000px;}
._2f_c00403{margin-left:-29.484000px;}
._1b_c00403{margin-left:-21.216000px;}
._17_c00403{margin-left:-19.644000px;}
._2d_c00403{margin-left:-17.892000px;}
._16_c00403{margin-left:-16.620000px;}
._18_c00403{margin-left:-14.784000px;}
._15_c00403{margin-left:-13.776000px;}
._1a_c00403{margin-left:-12.096000px;}
._3b_c00403{margin-left:-11.040000px;}
._19_c00403{margin-left:-9.660000px;}
._f_c00403{margin-left:-8.484000px;}
._e_c00403{margin-left:-7.308000px;}
._13_c00403{margin-left:-6.132000px;}
._11_c00403{margin-left:-4.944000px;}
._32_c00403{margin-left:-3.804000px;}
._0_c00403{margin-left:-2.700000px;}
._a_c00403{margin-left:-1.326000px;}
._30_c00403{width:1.002000px;}
._b_c00403{width:2.028000px;}
._25_c00403{width:3.168000px;}
._6_c00403{width:4.446000px;}
._5_c00403{width:5.616000px;}
._7_c00403{width:6.672000px;}
._4_c00403{width:7.878000px;}
._1d_c00403{width:9.000000px;}
._2a_c00403{width:10.350000px;}
._3_c00403{width:11.544000px;}
._22_c00403{width:12.978000px;}
._1e_c00403{width:14.400000px;}
._2b_c00403{width:15.528000px;}
._28_c00403{width:16.701000px;}
._2c_c00403{width:18.015000px;}
._20_c00403{width:19.080000px;}
._1f_c00403{width:21.093000px;}
._36_c00403{width:22.128000px;}
._26_c00403{width:24.720000px;}
._21_c00403{width:26.460000px;}
._8_c00403{width:27.627000px;}
._12_c00403{width:29.148000px;}
._31_c00403{width:30.666000px;}
._1c_c00403{width:32.832000px;}
._24_c00403{width:33.918000px;}
._10_c00403{width:34.944000px;}
._27_c00403{width:36.114000px;}
._9_c00403{width:37.596000px;}
._2e_c00403{width:38.634000px;}
._29_c00403{width:41.064000px;}
._33_c00403{width:43.221000px;}
._23_c00403{width:44.928000px;}
._3a_c00403{width:46.464000px;}
._14_c00403{width:47.880000px;}
._37_c00403{width:49.086000px;}
._d_c00403{width:50.346000px;}
._38_c00403{width:52.017000px;}
._39_c00403{width:53.922000px;}
._c_c00403{width:55.302000px;}
._35_c00403{width:58.170000px;}
._34_c00403{width:62.706000px;}
._2_c00403{width:87.984000px;}
._3c_c00403{width:1944.399000px;}
.fc2_c00403{color:transparent;}
.fc1_c00403{color:rgb(128,128,128);}
.fc0_c00403{color:rgb(0,0,0);}
.fs6_c00403{font-size:36.000000px;}
.fs9_c00403{font-size:48.000000px;}
.fs7_c00403{font-size:60.000000px;}
.fs3_c00403{font-size:78.000000px;}
.fs1_c00403{font-size:84.000000px;}
.fs4_c00403{font-size:87.000000px;}
.fs5_c00403{font-size:96.000000px;}
.fs8_c00403{font-size:102.000000px;}
.fs2_c00403{font-size:120.000000px;}
.fs0_c00403{font-size:135.000000px;}
.y0_c00403{bottom:0.000000px;}
.y2e_c00403{bottom:3.105000px;}
.y2d_c00403{bottom:7.228357px;}
.y2c_c00403{bottom:84.030000px;}
.y2b_c00403{bottom:115.080000px;}
.y2a_c00403{bottom:149.280000px;}
.y29_c00403{bottom:182.880000px;}
.y28_c00403{bottom:216.330000px;}
.y27_c00403{bottom:251.130000px;}
.y9_c00403{bottom:254.880000px;}
.y8_c00403{bottom:284.880000px;}
.y7_c00403{bottom:301.680000px;}
.y26_c00403{bottom:319.380000px;}
.y25_c00403{bottom:352.680000px;}
.y24_c00403{bottom:386.430000px;}
.y6_c00403{bottom:412.380000px;}
.y23_c00403{bottom:420.180000px;}
.y22_c00403{bottom:454.230000px;}
.y21_c00403{bottom:487.680000px;}
.y20_c00403{bottom:521.730000px;}
.y1f_c00403{bottom:554.880000px;}
.y1e_c00403{bottom:589.230000px;}
.y1d_c00403{bottom:622.680000px;}
.y1c_c00403{bottom:656.730000px;}
.y1b_c00403{bottom:689.280000px;}
.y1a_c00403{bottom:722.880000px;}
.y19_c00403{bottom:756.630000px;}
.y18_c00403{bottom:789.780000px;}
.y17_c00403{bottom:823.530000px;}
.y16_c00403{bottom:856.980000px;}
.y5_c00403{bottom:861.030000px;}
.y15_c00403{bottom:891.330000px;}
.y4_c00403{bottom:895.380000px;}
.y14_c00403{bottom:924.480000px;}
.y3_c00403{bottom:925.530000px;}
.y2_c00403{bottom:955.230000px;}
.y13_c00403{bottom:957.480000px;}
.y1_c00403{bottom:983.130000px;}
.y12_c00403{bottom:991.230000px;}
.y11_c00403{bottom:1024.080000px;}
.y10_c00403{bottom:1056.780000px;}
.yf_c00403{bottom:1089.480000px;}
.ye_c00403{bottom:1123.230000px;}
.yd_c00403{bottom:1157.280000px;}
.yc_c00403{bottom:1190.430000px;}
.yb_c00403{bottom:1223.730000px;}
.ya_c00403{bottom:1257.480000px;}
.h9_c00403{height:13.200074px;}
.ha_c00403{height:43.804688px;}
.h7_c00403{height:45.580078px;}
.h8_c00403{height:70.224609px;}
.h6_c00403{height:98.314453px;}
.h4_c00403{height:98.756836px;}
.h3_c00403{height:110.151855px;}
.h5_c00403{height:121.546875px;}
.h2_c00403{height:134.670410px;}
.h0_c00403{height:1382.700000px;}
.h1_c00403{height:1383.000000px;}
.w2_c00403{width:104.875500px;}
.w0_c00403{width:863.175000px;}
.w1_c00403{width:863.250000px;}
.x0_c00403{left:0.000000px;}
.x4_c00403{left:39.150000px;}
.x3_c00403{left:40.200000px;}
.x8_c00403{left:42.900000px;}
.x2_c00403{left:47.700000px;}
.x7_c00403{left:63.900000px;}
.x6_c00403{left:92.100000px;}
.x1_c00403{left:105.600000px;}
.x5_c00403{left:128.250000px;}
.x9_c00403{left:257.850000px;}
.xa_c00403{left:259.500000px;}
.xc_c00403{left:261.000000px;}
.xb_c00403{left:262.200000px;}
.xe_c00403{left:263.250000px;}
.xd_c00403{left:264.300000px;}
.xf_c00403{left:266.400000px;}
.x10_c00403{left:267.600000px;}
.x11_c00403{left:268.650000px;}
.x12_c00403{left:282.150000px;}
.x13_c00403{left:383.401749px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls3_c00403{letter-spacing:-8.000000pt;}
.ls4_c00403{letter-spacing:-2.666667pt;}
.ls2_c00403{letter-spacing:0.000000pt;}
.ls5_c00403{letter-spacing:5.333333pt;}
.ls1_c00403{letter-spacing:20.672000pt;}
.ls0_c00403{letter-spacing:30.602667pt;}
.ws4_c00403{word-spacing:-50.666667pt;}
.ws3_c00403{word-spacing:-20.565333pt;}
.ws5_c00403{word-spacing:-17.994667pt;}
.ws2_c00403{word-spacing:-8.709333pt;}
.ws0_c00403{word-spacing:-0.120000pt;}
.ws1_c00403{word-spacing:-0.106667pt;}
.ws6_c00403{word-spacing:0.000000pt;}
._1_c00403{margin-left:-54.634667pt;}
._2f_c00403{margin-left:-26.208000pt;}
._1b_c00403{margin-left:-18.858667pt;}
._17_c00403{margin-left:-17.461333pt;}
._2d_c00403{margin-left:-15.904000pt;}
._16_c00403{margin-left:-14.773333pt;}
._18_c00403{margin-left:-13.141333pt;}
._15_c00403{margin-left:-12.245333pt;}
._1a_c00403{margin-left:-10.752000pt;}
._3b_c00403{margin-left:-9.813333pt;}
._19_c00403{margin-left:-8.586667pt;}
._f_c00403{margin-left:-7.541333pt;}
._e_c00403{margin-left:-6.496000pt;}
._13_c00403{margin-left:-5.450667pt;}
._11_c00403{margin-left:-4.394667pt;}
._32_c00403{margin-left:-3.381333pt;}
._0_c00403{margin-left:-2.400000pt;}
._a_c00403{margin-left:-1.178667pt;}
._30_c00403{width:0.890667pt;}
._b_c00403{width:1.802667pt;}
._25_c00403{width:2.816000pt;}
._6_c00403{width:3.952000pt;}
._5_c00403{width:4.992000pt;}
._7_c00403{width:5.930667pt;}
._4_c00403{width:7.002667pt;}
._1d_c00403{width:8.000000pt;}
._2a_c00403{width:9.200000pt;}
._3_c00403{width:10.261333pt;}
._22_c00403{width:11.536000pt;}
._1e_c00403{width:12.800000pt;}
._2b_c00403{width:13.802667pt;}
._28_c00403{width:14.845333pt;}
._2c_c00403{width:16.013333pt;}
._20_c00403{width:16.960000pt;}
._1f_c00403{width:18.749333pt;}
._36_c00403{width:19.669333pt;}
._26_c00403{width:21.973333pt;}
._21_c00403{width:23.520000pt;}
._8_c00403{width:24.557333pt;}
._12_c00403{width:25.909333pt;}
._31_c00403{width:27.258667pt;}
._1c_c00403{width:29.184000pt;}
._24_c00403{width:30.149333pt;}
._10_c00403{width:31.061333pt;}
._27_c00403{width:32.101333pt;}
._9_c00403{width:33.418667pt;}
._2e_c00403{width:34.341333pt;}
._29_c00403{width:36.501333pt;}
._33_c00403{width:38.418667pt;}
._23_c00403{width:39.936000pt;}
._3a_c00403{width:41.301333pt;}
._14_c00403{width:42.560000pt;}
._37_c00403{width:43.632000pt;}
._d_c00403{width:44.752000pt;}
._38_c00403{width:46.237333pt;}
._39_c00403{width:47.930667pt;}
._c_c00403{width:49.157333pt;}
._35_c00403{width:51.706667pt;}
._34_c00403{width:55.738667pt;}
._2_c00403{width:78.208000pt;}
._3c_c00403{width:1728.354667pt;}
.fs6_c00403{font-size:32.000000pt;}
.fs9_c00403{font-size:42.666667pt;}
.fs7_c00403{font-size:53.333333pt;}
.fs3_c00403{font-size:69.333333pt;}
.fs1_c00403{font-size:74.666667pt;}
.fs4_c00403{font-size:77.333333pt;}
.fs5_c00403{font-size:85.333333pt;}
.fs8_c00403{font-size:90.666667pt;}
.fs2_c00403{font-size:106.666667pt;}
.fs0_c00403{font-size:120.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y2e_c00403{bottom:2.760000pt;}
.y2d_c00403{bottom:6.425206pt;}
.y2c_c00403{bottom:74.693333pt;}
.y2b_c00403{bottom:102.293333pt;}
.y2a_c00403{bottom:132.693333pt;}
.y29_c00403{bottom:162.560000pt;}
.y28_c00403{bottom:192.293333pt;}
.y27_c00403{bottom:223.226667pt;}
.y9_c00403{bottom:226.560000pt;}
.y8_c00403{bottom:253.226667pt;}
.y7_c00403{bottom:268.160000pt;}
.y26_c00403{bottom:283.893333pt;}
.y25_c00403{bottom:313.493333pt;}
.y24_c00403{bottom:343.493333pt;}
.y6_c00403{bottom:366.560000pt;}
.y23_c00403{bottom:373.493333pt;}
.y22_c00403{bottom:403.760000pt;}
.y21_c00403{bottom:433.493333pt;}
.y20_c00403{bottom:463.760000pt;}
.y1f_c00403{bottom:493.226667pt;}
.y1e_c00403{bottom:523.760000pt;}
.y1d_c00403{bottom:553.493333pt;}
.y1c_c00403{bottom:583.760000pt;}
.y1b_c00403{bottom:612.693333pt;}
.y1a_c00403{bottom:642.560000pt;}
.y19_c00403{bottom:672.560000pt;}
.y18_c00403{bottom:702.026667pt;}
.y17_c00403{bottom:732.026667pt;}
.y16_c00403{bottom:761.760000pt;}
.y5_c00403{bottom:765.360000pt;}
.y15_c00403{bottom:792.293333pt;}
.y4_c00403{bottom:795.893333pt;}
.y14_c00403{bottom:821.760000pt;}
.y3_c00403{bottom:822.693333pt;}
.y2_c00403{bottom:849.093333pt;}
.y13_c00403{bottom:851.093333pt;}
.y1_c00403{bottom:873.893333pt;}
.y12_c00403{bottom:881.093333pt;}
.y11_c00403{bottom:910.293333pt;}
.y10_c00403{bottom:939.360000pt;}
.yf_c00403{bottom:968.426667pt;}
.ye_c00403{bottom:998.426667pt;}
.yd_c00403{bottom:1028.693333pt;}
.yc_c00403{bottom:1058.160000pt;}
.yb_c00403{bottom:1087.760000pt;}
.ya_c00403{bottom:1117.760000pt;}
.h9_c00403{height:11.733399pt;}
.ha_c00403{height:38.937500pt;}
.h7_c00403{height:40.515625pt;}
.h8_c00403{height:62.421875pt;}
.h6_c00403{height:87.390625pt;}
.h4_c00403{height:87.783854pt;}
.h3_c00403{height:97.912760pt;}
.h5_c00403{height:108.041667pt;}
.h2_c00403{height:119.707031pt;}
.h0_c00403{height:1229.066667pt;}
.h1_c00403{height:1229.333333pt;}
.w2_c00403{width:93.222667pt;}
.w0_c00403{width:767.266667pt;}
.w1_c00403{width:767.333333pt;}
.x0_c00403{left:0.000000pt;}
.x4_c00403{left:34.800000pt;}
.x3_c00403{left:35.733333pt;}
.x8_c00403{left:38.133333pt;}
.x2_c00403{left:42.400000pt;}
.x7_c00403{left:56.800000pt;}
.x6_c00403{left:81.866667pt;}
.x1_c00403{left:93.866667pt;}
.x5_c00403{left:114.000000pt;}
.x9_c00403{left:229.200000pt;}
.xa_c00403{left:230.666667pt;}
.xc_c00403{left:232.000000pt;}
.xb_c00403{left:233.066667pt;}
.xe_c00403{left:234.000000pt;}
.xd_c00403{left:234.933333pt;}
.xf_c00403{left:236.800000pt;}
.x10_c00403{left:237.866667pt;}
.x11_c00403{left:238.800000pt;}
.x12_c00403{left:250.800000pt;}
.x13_c00403{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0696cb191d0052fb35cf43d.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_d29760856d6154ce0c833c2e.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_3f03fc47c14ca5f96cba03b0.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_c3fb60aa34d26d7a7108dfe5.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_a1d9b3342259443d32d81864.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00404;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls3_c00404{letter-spacing:0.000000px;}
.ls2_c00404{letter-spacing:3.228000px;}
.ls0_c00404{letter-spacing:6.720000px;}
.ls1_c00404{letter-spacing:24.000000px;}
.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:-81.000000px;}
.ws3_c00404{word-spacing:-47.136000px;}
.ws1_c00404{word-spacing:-24.086400px;}
.ws2_c00404{word-spacing:-18.798000px;}
.ws4_c00404{word-spacing:0.000000px;}
._2e_c00404{margin-left:-29.760000px;}
._23_c00404{margin-left:-26.880000px;}
._24_c00404{margin-left:-21.312000px;}
._2f_c00404{margin-left:-19.488000px;}
._28_c00404{margin-left:-17.472000px;}
._33_c00404{margin-left:-15.576000px;}
._30_c00404{margin-left:-14.496000px;}
._34_c00404{margin-left:-10.968000px;}
._21_c00404{margin-left:-9.792000px;}
._2d_c00404{margin-left:-8.064000px;}
._20_c00404{margin-left:-6.720000px;}
._1e_c00404{margin-left:-5.568000px;}
._1d_c00404{margin-left:-4.416000px;}
._16_c00404{margin-left:-2.880000px;}
._13_c00404{margin-left:-1.056000px;}
._22_c00404{width:1.056000px;}
._6_c00404{width:2.112000px;}
._0_c00404{width:3.744000px;}
._a_c00404{width:4.800000px;}
._2_c00404{width:6.144000px;}
._3_c00404{width:7.392000px;}
._8_c00404{width:8.448000px;}
._1a_c00404{width:9.504000px;}
._19_c00404{width:10.656000px;}
._4_c00404{width:12.000000px;}
._15_c00404{width:13.536000px;}
._2a_c00404{width:14.688000px;}
._c_c00404{width:15.744000px;}
._18_c00404{width:16.992000px;}
._17_c00404{width:18.528000px;}
._14_c00404{width:20.448000px;}
._f_c00404{width:21.888000px;}
._26_c00404{width:24.288000px;}
._27_c00404{width:25.536000px;}
._1_c00404{width:26.976000px;}
._2b_c00404{width:28.800000px;}
._1b_c00404{width:30.336000px;}
._e_c00404{width:31.488000px;}
._10_c00404{width:33.216000px;}
._7_c00404{width:34.560000px;}
._1c_c00404{width:36.000000px;}
._11_c00404{width:37.248000px;}
._b_c00404{width:38.688000px;}
._25_c00404{width:40.704000px;}
._31_c00404{width:42.336000px;}
._9_c00404{width:43.392000px;}
._12_c00404{width:45.312000px;}
._1f_c00404{width:48.000000px;}
._35_c00404{width:49.794000px;}
._5_c00404{width:51.552000px;}
._d_c00404{width:54.048000px;}
._29_c00404{width:55.104000px;}
._2c_c00404{width:58.656000px;}
._32_c00404{width:733.632000px;}
.fc2_c00404{color:transparent;}
.fc1_c00404{color:rgb(128,128,128);}
.fc0_c00404{color:rgb(0,0,0);}
.fs6_c00404{font-size:48.000000px;}
.fs4_c00404{font-size:62.400000px;}
.fs3_c00404{font-size:78.000000px;}
.fs1_c00404{font-size:84.000000px;}
.fs5_c00404{font-size:87.000000px;}
.fs0_c00404{font-size:96.000000px;}
.fs2_c00404{font-size:114.000000px;}
.y0_c00404{bottom:0.000000px;}
.y33_c00404{bottom:3.105000px;}
.y32_c00404{bottom:7.228369px;}
.y24_c00404{bottom:104.520000px;}
.y23_c00404{bottom:139.020000px;}
.y22_c00404{bottom:173.520000px;}
.y21_c00404{bottom:207.870000px;}
.y31_c00404{bottom:224.670000px;}
.y20_c00404{bottom:241.620000px;}
.y30_c00404{bottom:254.070000px;}
.y1f_c00404{bottom:275.370000px;}
.y2f_c00404{bottom:284.220000px;}
.y1e_c00404{bottom:308.820000px;}
.y2e_c00404{bottom:315.120000px;}
.y1d_c00404{bottom:342.870000px;}
.y2d_c00404{bottom:345.570000px;}
.y1c_c00404{bottom:376.920000px;}
.y1b_c00404{bottom:409.770000px;}
.y1a_c00404{bottom:443.820000px;}
.y19_c00404{bottom:476.520000px;}
.y18_c00404{bottom:510.270000px;}
.y17_c00404{bottom:543.720000px;}
.y16_c00404{bottom:577.170000px;}
.y15_c00404{bottom:610.920000px;}
.y14_c00404{bottom:644.670000px;}
.y13_c00404{bottom:678.420000px;}
.y12_c00404{bottom:711.720000px;}
.y11_c00404{bottom:744.870000px;}
.y10_c00404{bottom:778.620000px;}
.y2c_c00404{bottom:803.220000px;}
.yf_c00404{bottom:811.620000px;}
.y2b_c00404{bottom:832.920000px;}
.ye_c00404{bottom:844.770000px;}
.y2a_c00404{bottom:862.920000px;}
.yd_c00404{bottom:877.770000px;}
.y29_c00404{bottom:885.570000px;}
.yc_c00404{bottom:911.820000px;}
.y28_c00404{bottom:925.470000px;}
.yb_c00404{bottom:944.670000px;}
.y27_c00404{bottom:954.120000px;}
.ya_c00404{bottom:976.770000px;}
.y26_c00404{bottom:984.120000px;}
.y9_c00404{bottom:1011.120000px;}
.y25_c00404{bottom:1014.570000px;}
.y8_c00404{bottom:1044.870000px;}
.y7_c00404{bottom:1078.020000px;}
.y6_c00404{bottom:1110.720000px;}
.y5_c00404{bottom:1143.420000px;}
.y4_c00404{bottom:1176.420000px;}
.y3_c00404{bottom:1209.570000px;}
.y2_c00404{bottom:1242.570000px;}
.y1_c00404{bottom:1276.470000px;}
.h7_c00404{height:13.200073px;}
.h8_c00404{height:43.804688px;}
.h4_c00404{height:91.291992px;}
.h5_c00404{height:98.756836px;}
.h6_c00404{height:110.151855px;}
.h3_c00404{height:119.472000px;}
.h2_c00404{height:121.546875px;}
.h0_c00404{height:1383.450000px;}
.h1_c00404{height:1383.750000px;}
.w2_c00404{width:104.875500px;}
.w0_c00404{width:878.025000px;}
.w1_c00404{width:878.250000px;}
.x0_c00404{left:0.000000px;}
.x6_c00404{left:37.500000px;}
.x7_c00404{left:38.550000px;}
.x4_c00404{left:39.750000px;}
.x5_c00404{left:40.800000px;}
.x3_c00404{left:41.850000px;}
.x2_c00404{left:43.500000px;}
.x1_c00404{left:45.000000px;}
.x8_c00404{left:46.200000px;}
.x9_c00404{left:293.250000px;}
.x14_c00404{left:390.826721px;}
.xd_c00404{left:625.500000px;}
.xc_c00404{left:626.700000px;}
.xf_c00404{left:627.750000px;}
.x12_c00404{left:633.150000px;}
.x13_c00404{left:634.800000px;}
.xb_c00404{left:656.400000px;}
.x11_c00404{left:661.200000px;}
.xe_c00404{left:689.850000px;}
.xa_c00404{left:698.400000px;}
.x10_c00404{left:701.700000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls3_c00404{letter-spacing:0.000000pt;}
.ls2_c00404{letter-spacing:2.869333pt;}
.ls0_c00404{letter-spacing:5.973333pt;}
.ls1_c00404{letter-spacing:21.333333pt;}
.ws0_c00404{word-spacing:-72.000000pt;}
.ws3_c00404{word-spacing:-41.898667pt;}
.ws1_c00404{word-spacing:-21.410133pt;}
.ws2_c00404{word-spacing:-16.709333pt;}
.ws4_c00404{word-spacing:0.000000pt;}
._2e_c00404{margin-left:-26.453333pt;}
._23_c00404{margin-left:-23.893333pt;}
._24_c00404{margin-left:-18.944000pt;}
._2f_c00404{margin-left:-17.322667pt;}
._28_c00404{margin-left:-15.530667pt;}
._33_c00404{margin-left:-13.845333pt;}
._30_c00404{margin-left:-12.885333pt;}
._34_c00404{margin-left:-9.749333pt;}
._21_c00404{margin-left:-8.704000pt;}
._2d_c00404{margin-left:-7.168000pt;}
._20_c00404{margin-left:-5.973333pt;}
._1e_c00404{margin-left:-4.949333pt;}
._1d_c00404{margin-left:-3.925333pt;}
._16_c00404{margin-left:-2.560000pt;}
._13_c00404{margin-left:-0.938667pt;}
._22_c00404{width:0.938667pt;}
._6_c00404{width:1.877333pt;}
._0_c00404{width:3.328000pt;}
._a_c00404{width:4.266667pt;}
._2_c00404{width:5.461333pt;}
._3_c00404{width:6.570667pt;}
._8_c00404{width:7.509333pt;}
._1a_c00404{width:8.448000pt;}
._19_c00404{width:9.472000pt;}
._4_c00404{width:10.666667pt;}
._15_c00404{width:12.032000pt;}
._2a_c00404{width:13.056000pt;}
._c_c00404{width:13.994667pt;}
._18_c00404{width:15.104000pt;}
._17_c00404{width:16.469333pt;}
._14_c00404{width:18.176000pt;}
._f_c00404{width:19.456000pt;}
._26_c00404{width:21.589333pt;}
._27_c00404{width:22.698667pt;}
._1_c00404{width:23.978667pt;}
._2b_c00404{width:25.600000pt;}
._1b_c00404{width:26.965333pt;}
._e_c00404{width:27.989333pt;}
._10_c00404{width:29.525333pt;}
._7_c00404{width:30.720000pt;}
._1c_c00404{width:32.000000pt;}
._11_c00404{width:33.109333pt;}
._b_c00404{width:34.389333pt;}
._25_c00404{width:36.181333pt;}
._31_c00404{width:37.632000pt;}
._9_c00404{width:38.570667pt;}
._12_c00404{width:40.277333pt;}
._1f_c00404{width:42.666667pt;}
._35_c00404{width:44.261333pt;}
._5_c00404{width:45.824000pt;}
._d_c00404{width:48.042667pt;}
._29_c00404{width:48.981333pt;}
._2c_c00404{width:52.138667pt;}
._32_c00404{width:652.117333pt;}
.fs6_c00404{font-size:42.666667pt;}
.fs4_c00404{font-size:55.466667pt;}
.fs3_c00404{font-size:69.333333pt;}
.fs1_c00404{font-size:74.666667pt;}
.fs5_c00404{font-size:77.333333pt;}
.fs0_c00404{font-size:85.333333pt;}
.fs2_c00404{font-size:101.333333pt;}
.y0_c00404{bottom:0.000000pt;}
.y33_c00404{bottom:2.760000pt;}
.y32_c00404{bottom:6.425217pt;}
.y24_c00404{bottom:92.906667pt;}
.y23_c00404{bottom:123.573333pt;}
.y22_c00404{bottom:154.240000pt;}
.y21_c00404{bottom:184.773333pt;}
.y31_c00404{bottom:199.706667pt;}
.y20_c00404{bottom:214.773333pt;}
.y30_c00404{bottom:225.840000pt;}
.y1f_c00404{bottom:244.773333pt;}
.y2f_c00404{bottom:252.640000pt;}
.y1e_c00404{bottom:274.506667pt;}
.y2e_c00404{bottom:280.106667pt;}
.y1d_c00404{bottom:304.773333pt;}
.y2d_c00404{bottom:307.173333pt;}
.y1c_c00404{bottom:335.040000pt;}
.y1b_c00404{bottom:364.240000pt;}
.y1a_c00404{bottom:394.506667pt;}
.y19_c00404{bottom:423.573333pt;}
.y18_c00404{bottom:453.573333pt;}
.y17_c00404{bottom:483.306667pt;}
.y16_c00404{bottom:513.040000pt;}
.y15_c00404{bottom:543.040000pt;}
.y14_c00404{bottom:573.040000pt;}
.y13_c00404{bottom:603.040000pt;}
.y12_c00404{bottom:632.640000pt;}
.y11_c00404{bottom:662.106667pt;}
.y10_c00404{bottom:692.106667pt;}
.y2c_c00404{bottom:713.973333pt;}
.yf_c00404{bottom:721.440000pt;}
.y2b_c00404{bottom:740.373333pt;}
.ye_c00404{bottom:750.906667pt;}
.y2a_c00404{bottom:767.040000pt;}
.yd_c00404{bottom:780.240000pt;}
.y29_c00404{bottom:787.173333pt;}
.yc_c00404{bottom:810.506667pt;}
.y28_c00404{bottom:822.640000pt;}
.yb_c00404{bottom:839.706667pt;}
.y27_c00404{bottom:848.106667pt;}
.ya_c00404{bottom:868.240000pt;}
.y26_c00404{bottom:874.773333pt;}
.y9_c00404{bottom:898.773333pt;}
.y25_c00404{bottom:901.840000pt;}
.y8_c00404{bottom:928.773333pt;}
.y7_c00404{bottom:958.240000pt;}
.y6_c00404{bottom:987.306667pt;}
.y5_c00404{bottom:1016.373333pt;}
.y4_c00404{bottom:1045.706667pt;}
.y3_c00404{bottom:1075.173333pt;}
.y2_c00404{bottom:1104.506667pt;}
.y1_c00404{bottom:1134.640000pt;}
.h7_c00404{height:11.733399pt;}
.h8_c00404{height:38.937500pt;}
.h4_c00404{height:81.148438pt;}
.h5_c00404{height:87.783854pt;}
.h6_c00404{height:97.912760pt;}
.h3_c00404{height:106.197333pt;}
.h2_c00404{height:108.041667pt;}
.h0_c00404{height:1229.733333pt;}
.h1_c00404{height:1230.000000pt;}
.w2_c00404{width:93.222667pt;}
.w0_c00404{width:780.466667pt;}
.w1_c00404{width:780.666667pt;}
.x0_c00404{left:0.000000pt;}
.x6_c00404{left:33.333333pt;}
.x7_c00404{left:34.266667pt;}
.x4_c00404{left:35.333333pt;}
.x5_c00404{left:36.266667pt;}
.x3_c00404{left:37.200000pt;}
.x2_c00404{left:38.666667pt;}
.x1_c00404{left:40.000000pt;}
.x8_c00404{left:41.066667pt;}
.x9_c00404{left:260.666667pt;}
.x14_c00404{left:347.401530pt;}
.xd_c00404{left:556.000000pt;}
.xc_c00404{left:557.066667pt;}
.xf_c00404{left:558.000000pt;}
.x12_c00404{left:562.800000pt;}
.x13_c00404{left:564.266667pt;}
.xb_c00404{left:583.466667pt;}
.x11_c00404{left:587.733333pt;}
.xe_c00404{left:613.200000pt;}
.xa_c00404{left:620.800000pt;}
.x10_c00404{left:623.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8820834603d757e49807d673.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_1d3bdbe0f0c3ade54421dc3b.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_8b710be48a1adda5286380c5.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;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_c00405;src:url('chunks/assets/font_c5e2f63eea53b1bc08bd9968.woff2')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00405;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00405{font-family:ff6_c00405;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls4_c00405{letter-spacing:-3.000000px;}
.ls3_c00405{letter-spacing:0.000000px;}
.ls5_c00405{letter-spacing:6.000000px;}
.ls0_c00405{letter-spacing:6.120000px;}
.ls1_c00405{letter-spacing:8.520000px;}
.ls2_c00405{letter-spacing:24.000000px;}
.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;}
}
.ws3_c00405{word-spacing:-57.000000px;}
.ws0_c00405{word-spacing:-47.136000px;}
.ws5_c00405{word-spacing:-45.441000px;}
.ws4_c00405{word-spacing:-36.352800px;}
.ws6_c00405{word-spacing:-23.136000px;}
.ws2_c00405{word-spacing:-20.244000px;}
.ws1_c00405{word-spacing:-18.798000px;}
.ws7_c00405{word-spacing:0.000000px;}
._2e_c00405{margin-left:-33.024000px;}
._2b_c00405{margin-left:-30.102000px;}
._19_c00405{margin-left:-26.814000px;}
._1a_c00405{margin-left:-22.932000px;}
._e_c00405{margin-left:-20.181000px;}
._13_c00405{margin-left:-18.462000px;}
._12_c00405{margin-left:-16.263000px;}
._f_c00405{margin-left:-12.462000px;}
._2f_c00405{margin-left:-11.133000px;}
._10_c00405{margin-left:-10.044000px;}
._11_c00405{margin-left:-7.626000px;}
._32_c00405{margin-left:-6.234000px;}
._d_c00405{margin-left:-4.914000px;}
._16_c00405{margin-left:-3.198000px;}
._b_c00405{margin-left:-2.028000px;}
._3_c00405{width:1.482000px;}
._8_c00405{width:2.496000px;}
._2_c00405{width:3.510000px;}
._6_c00405{width:5.226000px;}
._7_c00405{width:6.630000px;}
._0_c00405{width:8.448000px;}
._1_c00405{width:9.600000px;}
._20_c00405{width:10.650000px;}
._2a_c00405{width:11.958000px;}
._18_c00405{width:13.026000px;}
._1f_c00405{width:14.442000px;}
._1c_c00405{width:15.462000px;}
._1b_c00405{width:17.112000px;}
._30_c00405{width:18.138000px;}
._25_c00405{width:19.170000px;}
._29_c00405{width:20.352000px;}
._24_c00405{width:21.786000px;}
._1d_c00405{width:24.330000px;}
._26_c00405{width:25.689000px;}
._4_c00405{width:27.066000px;}
._15_c00405{width:28.158000px;}
._c_c00405{width:30.186000px;}
._34_c00405{width:31.296000px;}
._23_c00405{width:32.364000px;}
._2d_c00405{width:33.453000px;}
._a_c00405{width:34.632000px;}
._5_c00405{width:36.816000px;}
._35_c00405{width:38.214000px;}
._14_c00405{width:39.234000px;}
._17_c00405{width:40.638000px;}
._28_c00405{width:42.414000px;}
._21_c00405{width:43.713000px;}
._9_c00405{width:45.546000px;}
._2c_c00405{width:47.040000px;}
._33_c00405{width:48.963000px;}
._22_c00405{width:50.100000px;}
._36_c00405{width:53.688000px;}
._1e_c00405{width:55.950000px;}
._39_c00405{width:59.937000px;}
._27_c00405{width:70.986000px;}
._31_c00405{width:99.708000px;}
._38_c00405{width:131.175000px;}
._37_c00405{width:161.799000px;}
.fc2_c00405{color:transparent;}
.fc1_c00405{color:rgb(128,128,128);}
.fc0_c00405{color:rgb(0,0,0);}
.fs8_c00405{font-size:48.000000px;}
.fs7_c00405{font-size:64.800000px;}
.fs1_c00405{font-size:78.000000px;}
.fs6_c00405{font-size:81.000000px;}
.fs4_c00405{font-size:84.000000px;}
.fs2_c00405{font-size:87.000000px;}
.fs3_c00405{font-size:93.000000px;}
.fs0_c00405{font-size:96.000000px;}
.fs5_c00405{font-size:102.000000px;}
.y0_c00405{bottom:0.000000px;}
.y2d_c00405{bottom:3.105000px;}
.y2c_c00405{bottom:7.228357px;}
.y2b_c00405{bottom:105.030000px;}
.y2a_c00405{bottom:129.330000px;}
.y29_c00405{bottom:164.730000px;}
.y28_c00405{bottom:199.080000px;}
.y27_c00405{bottom:233.280000px;}
.y26_c00405{bottom:268.080000px;}
.y25_c00405{bottom:301.680000px;}
.y24_c00405{bottom:335.430000px;}
.y23_c00405{bottom:369.630000px;}
.y22_c00405{bottom:403.080000px;}
.y21_c00405{bottom:437.130000px;}
.y20_c00405{bottom:471.180000px;}
.y1f_c00405{bottom:504.630000px;}
.y1e_c00405{bottom:537.930000px;}
.y1d_c00405{bottom:572.130000px;}
.y1c_c00405{bottom:606.180000px;}
.y1b_c00405{bottom:639.930000px;}
.y1a_c00405{bottom:672.630000px;}
.y19_c00405{bottom:706.380000px;}
.y18_c00405{bottom:740.130000px;}
.y17_c00405{bottom:773.880000px;}
.y7_c00405{bottom:787.080000px;}
.y16_c00405{bottom:807.630000px;}
.y6_c00405{bottom:819.180000px;}
.y15_c00405{bottom:840.780000px;}
.y5_c00405{bottom:849.780000px;}
.y14_c00405{bottom:874.530000px;}
.y4_c00405{bottom:880.830000px;}
.y13_c00405{bottom:907.830000px;}
.y12_c00405{bottom:941.280000px;}
.y3_c00405{bottom:943.680000px;}
.y2_c00405{bottom:973.980000px;}
.y11_c00405{bottom:975.030000px;}
.y1_c00405{bottom:996.630000px;}
.y10_c00405{bottom:1007.730000px;}
.yf_c00405{bottom:1040.880000px;}
.ye_c00405{bottom:1074.330000px;}
.yd_c00405{bottom:1107.630000px;}
.yc_c00405{bottom:1141.380000px;}
.yb_c00405{bottom:1174.230000px;}
.ya_c00405{bottom:1208.580000px;}
.y9_c00405{bottom:1241.730000px;}
.y8_c00405{bottom:1275.180000px;}
.h9_c00405{height:13.200074px;}
.ha_c00405{height:43.804688px;}
.h6_c00405{height:91.291992px;}
.h7_c00405{height:98.314453px;}
.h3_c00405{height:98.756836px;}
.h8_c00405{height:102.555176px;}
.h4_c00405{height:110.151855px;}
.h5_c00405{height:117.748535px;}
.h2_c00405{height:121.546875px;}
.h0_c00405{height:1382.700000px;}
.h1_c00405{height:1383.000000px;}
.w2_c00405{width:104.875500px;}
.w0_c00405{width:863.175000px;}
.w1_c00405{width:863.250000px;}
.x0_c00405{left:0.000000px;}
.x3_c00405{left:38.550000px;}
.x5_c00405{left:42.450000px;}
.x4_c00405{left:51.900000px;}
.x2_c00405{left:66.150000px;}
.x1_c00405{left:108.300000px;}
.x6_c00405{left:252.450000px;}
.x7_c00405{left:254.700000px;}
.x8_c00405{left:255.750000px;}
.x9_c00405{left:257.250000px;}
.xa_c00405{left:258.300000px;}
.xb_c00405{left:259.500000px;}
.xc_c00405{left:260.550000px;}
.xd_c00405{left:261.600000px;}
.x10_c00405{left:262.650000px;}
.xe_c00405{left:263.850000px;}
.xf_c00405{left:264.900000px;}
.x12_c00405{left:383.401749px;}
.x11_c00405{left:794.100000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls4_c00405{letter-spacing:-2.666667pt;}
.ls3_c00405{letter-spacing:0.000000pt;}
.ls5_c00405{letter-spacing:5.333333pt;}
.ls0_c00405{letter-spacing:5.440000pt;}
.ls1_c00405{letter-spacing:7.573333pt;}
.ls2_c00405{letter-spacing:21.333333pt;}
.ws3_c00405{word-spacing:-50.666667pt;}
.ws0_c00405{word-spacing:-41.898667pt;}
.ws5_c00405{word-spacing:-40.392000pt;}
.ws4_c00405{word-spacing:-32.313600pt;}
.ws6_c00405{word-spacing:-20.565333pt;}
.ws2_c00405{word-spacing:-17.994667pt;}
.ws1_c00405{word-spacing:-16.709333pt;}
.ws7_c00405{word-spacing:0.000000pt;}
._2e_c00405{margin-left:-29.354667pt;}
._2b_c00405{margin-left:-26.757333pt;}
._19_c00405{margin-left:-23.834667pt;}
._1a_c00405{margin-left:-20.384000pt;}
._e_c00405{margin-left:-17.938667pt;}
._13_c00405{margin-left:-16.410667pt;}
._12_c00405{margin-left:-14.456000pt;}
._f_c00405{margin-left:-11.077333pt;}
._2f_c00405{margin-left:-9.896000pt;}
._10_c00405{margin-left:-8.928000pt;}
._11_c00405{margin-left:-6.778667pt;}
._32_c00405{margin-left:-5.541333pt;}
._d_c00405{margin-left:-4.368000pt;}
._16_c00405{margin-left:-2.842667pt;}
._b_c00405{margin-left:-1.802667pt;}
._3_c00405{width:1.317333pt;}
._8_c00405{width:2.218667pt;}
._2_c00405{width:3.120000pt;}
._6_c00405{width:4.645333pt;}
._7_c00405{width:5.893333pt;}
._0_c00405{width:7.509333pt;}
._1_c00405{width:8.533333pt;}
._20_c00405{width:9.466667pt;}
._2a_c00405{width:10.629333pt;}
._18_c00405{width:11.578667pt;}
._1f_c00405{width:12.837333pt;}
._1c_c00405{width:13.744000pt;}
._1b_c00405{width:15.210667pt;}
._30_c00405{width:16.122667pt;}
._25_c00405{width:17.040000pt;}
._29_c00405{width:18.090667pt;}
._24_c00405{width:19.365333pt;}
._1d_c00405{width:21.626667pt;}
._26_c00405{width:22.834667pt;}
._4_c00405{width:24.058667pt;}
._15_c00405{width:25.029333pt;}
._c_c00405{width:26.832000pt;}
._34_c00405{width:27.818667pt;}
._23_c00405{width:28.768000pt;}
._2d_c00405{width:29.736000pt;}
._a_c00405{width:30.784000pt;}
._5_c00405{width:32.725333pt;}
._35_c00405{width:33.968000pt;}
._14_c00405{width:34.874667pt;}
._17_c00405{width:36.122667pt;}
._28_c00405{width:37.701333pt;}
._21_c00405{width:38.856000pt;}
._9_c00405{width:40.485333pt;}
._2c_c00405{width:41.813333pt;}
._33_c00405{width:43.522667pt;}
._22_c00405{width:44.533333pt;}
._36_c00405{width:47.722667pt;}
._1e_c00405{width:49.733333pt;}
._39_c00405{width:53.277333pt;}
._27_c00405{width:63.098667pt;}
._31_c00405{width:88.629333pt;}
._38_c00405{width:116.600000pt;}
._37_c00405{width:143.821333pt;}
.fs8_c00405{font-size:42.666667pt;}
.fs7_c00405{font-size:57.600000pt;}
.fs1_c00405{font-size:69.333333pt;}
.fs6_c00405{font-size:72.000000pt;}
.fs4_c00405{font-size:74.666667pt;}
.fs2_c00405{font-size:77.333333pt;}
.fs3_c00405{font-size:82.666667pt;}
.fs0_c00405{font-size:85.333333pt;}
.fs5_c00405{font-size:90.666667pt;}
.y0_c00405{bottom:0.000000pt;}
.y2d_c00405{bottom:2.760000pt;}
.y2c_c00405{bottom:6.425206pt;}
.y2b_c00405{bottom:93.360000pt;}
.y2a_c00405{bottom:114.960000pt;}
.y29_c00405{bottom:146.426667pt;}
.y28_c00405{bottom:176.960000pt;}
.y27_c00405{bottom:207.360000pt;}
.y26_c00405{bottom:238.293333pt;}
.y25_c00405{bottom:268.160000pt;}
.y24_c00405{bottom:298.160000pt;}
.y23_c00405{bottom:328.560000pt;}
.y22_c00405{bottom:358.293333pt;}
.y21_c00405{bottom:388.560000pt;}
.y20_c00405{bottom:418.826667pt;}
.y1f_c00405{bottom:448.560000pt;}
.y1e_c00405{bottom:478.160000pt;}
.y1d_c00405{bottom:508.560000pt;}
.y1c_c00405{bottom:538.826667pt;}
.y1b_c00405{bottom:568.826667pt;}
.y1a_c00405{bottom:597.893333pt;}
.y19_c00405{bottom:627.893333pt;}
.y18_c00405{bottom:657.893333pt;}
.y17_c00405{bottom:687.893333pt;}
.y7_c00405{bottom:699.626667pt;}
.y16_c00405{bottom:717.893333pt;}
.y6_c00405{bottom:728.160000pt;}
.y15_c00405{bottom:747.360000pt;}
.y5_c00405{bottom:755.360000pt;}
.y14_c00405{bottom:777.360000pt;}
.y4_c00405{bottom:782.960000pt;}
.y13_c00405{bottom:806.960000pt;}
.y12_c00405{bottom:836.693333pt;}
.y3_c00405{bottom:838.826667pt;}
.y2_c00405{bottom:865.760000pt;}
.y11_c00405{bottom:866.693333pt;}
.y1_c00405{bottom:885.893333pt;}
.y10_c00405{bottom:895.760000pt;}
.yf_c00405{bottom:925.226667pt;}
.ye_c00405{bottom:954.960000pt;}
.yd_c00405{bottom:984.560000pt;}
.yc_c00405{bottom:1014.560000pt;}
.yb_c00405{bottom:1043.760000pt;}
.ya_c00405{bottom:1074.293333pt;}
.y9_c00405{bottom:1103.760000pt;}
.y8_c00405{bottom:1133.493333pt;}
.h9_c00405{height:11.733399pt;}
.ha_c00405{height:38.937500pt;}
.h6_c00405{height:81.148438pt;}
.h7_c00405{height:87.390625pt;}
.h3_c00405{height:87.783854pt;}
.h8_c00405{height:91.160156pt;}
.h4_c00405{height:97.912760pt;}
.h5_c00405{height:104.665365pt;}
.h2_c00405{height:108.041667pt;}
.h0_c00405{height:1229.066667pt;}
.h1_c00405{height:1229.333333pt;}
.w2_c00405{width:93.222667pt;}
.w0_c00405{width:767.266667pt;}
.w1_c00405{width:767.333333pt;}
.x0_c00405{left:0.000000pt;}
.x3_c00405{left:34.266667pt;}
.x5_c00405{left:37.733333pt;}
.x4_c00405{left:46.133333pt;}
.x2_c00405{left:58.800000pt;}
.x1_c00405{left:96.266667pt;}
.x6_c00405{left:224.400000pt;}
.x7_c00405{left:226.400000pt;}
.x8_c00405{left:227.333333pt;}
.x9_c00405{left:228.666667pt;}
.xa_c00405{left:229.600000pt;}
.xb_c00405{left:230.666667pt;}
.xc_c00405{left:231.600000pt;}
.xd_c00405{left:232.533333pt;}
.x10_c00405{left:233.466667pt;}
.xe_c00405{left:234.533333pt;}
.xf_c00405{left:235.466667pt;}
.x12_c00405{left:340.801554pt;}
.x11_c00405{left:705.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5175ab5328a57302b8fbff98.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_8501df12622b60ca559d8cca.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_76aff77a48896dd80a4a0aa0.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_8e529ce722de50c0cd70b53b.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls3_c00406{letter-spacing:0.000000px;}
.ls4_c00406{letter-spacing:6.000000px;}
.ls0_c00406{letter-spacing:15.852000px;}
.ls2_c00406{letter-spacing:20.664000px;}
.ls5_c00406{letter-spacing:24.000000px;}
.ls1_c00406{letter-spacing:28.190400px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00406{word-spacing:-57.000000px;}
.ws3_c00406{word-spacing:-47.136000px;}
.ws4_c00406{word-spacing:-40.908000px;}
.ws1_c00406{word-spacing:-20.244000px;}
.ws0_c00406{word-spacing:-0.252000px;}
.ws5_c00406{word-spacing:0.000000px;}
._2_c00406{margin-left:-77.664000px;}
._52_c00406{margin-left:-34.368000px;}
._4f_c00406{margin-left:-32.028000px;}
._4b_c00406{margin-left:-30.444000px;}
._31_c00406{margin-left:-28.896000px;}
._35_c00406{margin-left:-26.208000px;}
._36_c00406{margin-left:-24.576000px;}
._30_c00406{margin-left:-23.136000px;}
._3a_c00406{margin-left:-21.024000px;}
._2a_c00406{margin-left:-19.776000px;}
._33_c00406{margin-left:-17.088000px;}
._f_c00406{margin-left:-15.840000px;}
._3c_c00406{margin-left:-14.436000px;}
._0_c00406{margin-left:-12.096000px;}
._27_c00406{margin-left:-10.752000px;}
._42_c00406{margin-left:-9.024000px;}
._4d_c00406{margin-left:-6.528000px;}
._47_c00406{margin-left:-5.376000px;}
._1d_c00406{margin-left:-4.320000px;}
._48_c00406{margin-left:-3.264000px;}
._18_c00406{margin-left:-2.244000px;}
._17_c00406{margin-left:-1.056000px;}
._1a_c00406{width:1.152000px;}
._8_c00406{width:2.400000px;}
._9_c00406{width:3.936000px;}
._6_c00406{width:4.992000px;}
._a_c00406{width:6.048000px;}
._4a_c00406{width:7.056000px;}
._10_c00406{width:8.064000px;}
._13_c00406{width:9.504000px;}
._14_c00406{width:10.656000px;}
._11_c00406{width:11.712000px;}
._12_c00406{width:13.068000px;}
._38_c00406{width:14.460000px;}
._4_c00406{width:15.924000px;}
._c_c00406{width:17.184000px;}
._15_c00406{width:19.104000px;}
._1e_c00406{width:21.312000px;}
._26_c00406{width:24.288000px;}
._1b_c00406{width:26.016000px;}
._3e_c00406{width:27.072000px;}
._1f_c00406{width:28.272000px;}
._25_c00406{width:29.568000px;}
._7_c00406{width:31.200000px;}
._23_c00406{width:32.724000px;}
._16_c00406{width:34.272000px;}
._19_c00406{width:36.000000px;}
._24_c00406{width:37.236000px;}
._b_c00406{width:38.688000px;}
._1c_c00406{width:39.696000px;}
._22_c00406{width:40.800000px;}
._1_c00406{width:42.528000px;}
._21_c00406{width:43.680000px;}
._d_c00406{width:45.600000px;}
._46_c00406{width:46.608000px;}
._45_c00406{width:47.808000px;}
._20_c00406{width:49.344000px;}
._56_c00406{width:51.216000px;}
._3d_c00406{width:52.296000px;}
._3_c00406{width:53.640000px;}
._2c_c00406{width:55.152000px;}
._2d_c00406{width:57.972000px;}
._2b_c00406{width:59.904000px;}
._e_c00406{width:62.400000px;}
._50_c00406{width:66.732000px;}
._49_c00406{width:69.216000px;}
._44_c00406{width:71.976000px;}
._2f_c00406{width:89.472000px;}
._54_c00406{width:94.764000px;}
._28_c00406{width:102.888000px;}
._29_c00406{width:106.596000px;}
._2e_c00406{width:146.400000px;}
._40_c00406{width:152.928000px;}
._41_c00406{width:175.044000px;}
._5_c00406{width:176.352000px;}
._32_c00406{width:177.792000px;}
._34_c00406{width:211.200000px;}
._53_c00406{width:233.376000px;}
._3b_c00406{width:236.928000px;}
._37_c00406{width:243.264000px;}
._55_c00406{width:275.712000px;}
._51_c00406{width:351.804000px;}
._4c_c00406{width:396.180000px;}
._43_c00406{width:552.576000px;}
._3f_c00406{width:681.792000px;}
._39_c00406{width:736.446000px;}
._4e_c00406{width:1159.488000px;}
.fc2_c00406{color:transparent;}
.fc1_c00406{color:rgb(128,128,128);}
.fc0_c00406{color:rgb(0,0,0);}
.fs4_c00406{font-size:48.000000px;}
.fs3_c00406{font-size:67.200000px;}
.fs1_c00406{font-size:84.000000px;}
.fs0_c00406{font-size:96.000000px;}
.fs2_c00406{font-size:102.000000px;}
.y0_c00406{bottom:0.000000px;}
.y26_c00406{bottom:3.105000px;}
.y25_c00406{bottom:7.228369px;}
.y24_c00406{bottom:145.020000px;}
.y23_c00406{bottom:178.770000px;}
.y22_c00406{bottom:213.870000px;}
.y21_c00406{bottom:247.020000px;}
.y20_c00406{bottom:280.770000px;}
.y1f_c00406{bottom:315.120000px;}
.y1e_c00406{bottom:347.220000px;}
.y1d_c00406{bottom:382.320000px;}
.y1c_c00406{bottom:415.170000px;}
.y1b_c00406{bottom:448.920000px;}
.y1a_c00406{bottom:482.670000px;}
.y19_c00406{bottom:516.420000px;}
.y18_c00406{bottom:550.020000px;}
.y17_c00406{bottom:583.170000px;}
.y16_c00406{bottom:617.220000px;}
.y15_c00406{bottom:651.720000px;}
.y14_c00406{bottom:684.120000px;}
.y13_c00406{bottom:717.570000px;}
.y12_c00406{bottom:749.970000px;}
.y11_c00406{bottom:784.320000px;}
.y10_c00406{bottom:818.070000px;}
.yf_c00406{bottom:850.770000px;}
.ye_c00406{bottom:864.570000px;}
.yd_c00406{bottom:884.220000px;}
.yc_c00406{bottom:917.820000px;}
.yb_c00406{bottom:950.670000px;}
.ya_c00406{bottom:983.520000px;}
.y9_c00406{bottom:1017.270000px;}
.y8_c00406{bottom:1050.270000px;}
.y7_c00406{bottom:1083.420000px;}
.y6_c00406{bottom:1116.720000px;}
.y5_c00406{bottom:1149.420000px;}
.y4_c00406{bottom:1182.270000px;}
.y3_c00406{bottom:1215.570000px;}
.y2_c00406{bottom:1248.420000px;}
.y1_c00406{bottom:1282.470000px;}
.h3_c00406{height:13.200073px;}
.h4_c00406{height:43.804688px;}
.h2_c00406{height:121.546875px;}
.h0_c00406{height:1383.450000px;}
.h1_c00406{height:1383.750000px;}
.w2_c00406{width:104.875500px;}
.w0_c00406{width:878.025000px;}
.w1_c00406{width:878.250000px;}
.x0_c00406{left:0.000000px;}
.xa_c00406{left:34.350000px;}
.x8_c00406{left:35.400000px;}
.x6_c00406{left:36.450000px;}
.x5_c00406{left:37.500000px;}
.x4_c00406{left:38.550000px;}
.x3_c00406{left:39.600000px;}
.x2_c00406{left:40.800000px;}
.x1_c00406{left:49.500000px;}
.x7_c00406{left:82.050000px;}
.x9_c00406{left:86.100000px;}
.xb_c00406{left:390.826721px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls3_c00406{letter-spacing:0.000000pt;}
.ls4_c00406{letter-spacing:5.333333pt;}
.ls0_c00406{letter-spacing:14.090667pt;}
.ls2_c00406{letter-spacing:18.368000pt;}
.ls5_c00406{letter-spacing:21.333333pt;}
.ls1_c00406{letter-spacing:25.058133pt;}
.ws2_c00406{word-spacing:-50.666667pt;}
.ws3_c00406{word-spacing:-41.898667pt;}
.ws4_c00406{word-spacing:-36.362667pt;}
.ws1_c00406{word-spacing:-17.994667pt;}
.ws0_c00406{word-spacing:-0.224000pt;}
.ws5_c00406{word-spacing:0.000000pt;}
._2_c00406{margin-left:-69.034667pt;}
._52_c00406{margin-left:-30.549333pt;}
._4f_c00406{margin-left:-28.469333pt;}
._4b_c00406{margin-left:-27.061333pt;}
._31_c00406{margin-left:-25.685333pt;}
._35_c00406{margin-left:-23.296000pt;}
._36_c00406{margin-left:-21.845333pt;}
._30_c00406{margin-left:-20.565333pt;}
._3a_c00406{margin-left:-18.688000pt;}
._2a_c00406{margin-left:-17.578667pt;}
._33_c00406{margin-left:-15.189333pt;}
._f_c00406{margin-left:-14.080000pt;}
._3c_c00406{margin-left:-12.832000pt;}
._0_c00406{margin-left:-10.752000pt;}
._27_c00406{margin-left:-9.557333pt;}
._42_c00406{margin-left:-8.021333pt;}
._4d_c00406{margin-left:-5.802667pt;}
._47_c00406{margin-left:-4.778667pt;}
._1d_c00406{margin-left:-3.840000pt;}
._48_c00406{margin-left:-2.901333pt;}
._18_c00406{margin-left:-1.994667pt;}
._17_c00406{margin-left:-0.938667pt;}
._1a_c00406{width:1.024000pt;}
._8_c00406{width:2.133333pt;}
._9_c00406{width:3.498667pt;}
._6_c00406{width:4.437333pt;}
._a_c00406{width:5.376000pt;}
._4a_c00406{width:6.272000pt;}
._10_c00406{width:7.168000pt;}
._13_c00406{width:8.448000pt;}
._14_c00406{width:9.472000pt;}
._11_c00406{width:10.410667pt;}
._12_c00406{width:11.616000pt;}
._38_c00406{width:12.853333pt;}
._4_c00406{width:14.154667pt;}
._c_c00406{width:15.274667pt;}
._15_c00406{width:16.981333pt;}
._1e_c00406{width:18.944000pt;}
._26_c00406{width:21.589333pt;}
._1b_c00406{width:23.125333pt;}
._3e_c00406{width:24.064000pt;}
._1f_c00406{width:25.130667pt;}
._25_c00406{width:26.282667pt;}
._7_c00406{width:27.733333pt;}
._23_c00406{width:29.088000pt;}
._16_c00406{width:30.464000pt;}
._19_c00406{width:32.000000pt;}
._24_c00406{width:33.098667pt;}
._b_c00406{width:34.389333pt;}
._1c_c00406{width:35.285333pt;}
._22_c00406{width:36.266667pt;}
._1_c00406{width:37.802667pt;}
._21_c00406{width:38.826667pt;}
._d_c00406{width:40.533333pt;}
._46_c00406{width:41.429333pt;}
._45_c00406{width:42.496000pt;}
._20_c00406{width:43.861333pt;}
._56_c00406{width:45.525333pt;}
._3d_c00406{width:46.485333pt;}
._3_c00406{width:47.680000pt;}
._2c_c00406{width:49.024000pt;}
._2d_c00406{width:51.530667pt;}
._2b_c00406{width:53.248000pt;}
._e_c00406{width:55.466667pt;}
._50_c00406{width:59.317333pt;}
._49_c00406{width:61.525333pt;}
._44_c00406{width:63.978667pt;}
._2f_c00406{width:79.530667pt;}
._54_c00406{width:84.234667pt;}
._28_c00406{width:91.456000pt;}
._29_c00406{width:94.752000pt;}
._2e_c00406{width:130.133333pt;}
._40_c00406{width:135.936000pt;}
._41_c00406{width:155.594667pt;}
._5_c00406{width:156.757333pt;}
._32_c00406{width:158.037333pt;}
._34_c00406{width:187.733333pt;}
._53_c00406{width:207.445333pt;}
._3b_c00406{width:210.602667pt;}
._37_c00406{width:216.234667pt;}
._55_c00406{width:245.077333pt;}
._51_c00406{width:312.714667pt;}
._4c_c00406{width:352.160000pt;}
._43_c00406{width:491.178667pt;}
._3f_c00406{width:606.037333pt;}
._39_c00406{width:654.618667pt;}
._4e_c00406{width:1030.656000pt;}
.fs4_c00406{font-size:42.666667pt;}
.fs3_c00406{font-size:59.733333pt;}
.fs1_c00406{font-size:74.666667pt;}
.fs0_c00406{font-size:85.333333pt;}
.fs2_c00406{font-size:90.666667pt;}
.y0_c00406{bottom:0.000000pt;}
.y26_c00406{bottom:2.760000pt;}
.y25_c00406{bottom:6.425217pt;}
.y24_c00406{bottom:128.906667pt;}
.y23_c00406{bottom:158.906667pt;}
.y22_c00406{bottom:190.106667pt;}
.y21_c00406{bottom:219.573333pt;}
.y20_c00406{bottom:249.573333pt;}
.y1f_c00406{bottom:280.106667pt;}
.y1e_c00406{bottom:308.640000pt;}
.y1d_c00406{bottom:339.840000pt;}
.y1c_c00406{bottom:369.040000pt;}
.y1b_c00406{bottom:399.040000pt;}
.y1a_c00406{bottom:429.040000pt;}
.y19_c00406{bottom:459.040000pt;}
.y18_c00406{bottom:488.906667pt;}
.y17_c00406{bottom:518.373333pt;}
.y16_c00406{bottom:548.640000pt;}
.y15_c00406{bottom:579.306667pt;}
.y14_c00406{bottom:608.106667pt;}
.y13_c00406{bottom:637.840000pt;}
.y12_c00406{bottom:666.640000pt;}
.y11_c00406{bottom:697.173333pt;}
.y10_c00406{bottom:727.173333pt;}
.yf_c00406{bottom:756.240000pt;}
.ye_c00406{bottom:768.506667pt;}
.yd_c00406{bottom:785.973333pt;}
.yc_c00406{bottom:815.840000pt;}
.yb_c00406{bottom:845.040000pt;}
.ya_c00406{bottom:874.240000pt;}
.y9_c00406{bottom:904.240000pt;}
.y8_c00406{bottom:933.573333pt;}
.y7_c00406{bottom:963.040000pt;}
.y6_c00406{bottom:992.640000pt;}
.y5_c00406{bottom:1021.706667pt;}
.y4_c00406{bottom:1050.906667pt;}
.y3_c00406{bottom:1080.506667pt;}
.y2_c00406{bottom:1109.706667pt;}
.y1_c00406{bottom:1139.973333pt;}
.h3_c00406{height:11.733399pt;}
.h4_c00406{height:38.937500pt;}
.h2_c00406{height:108.041667pt;}
.h0_c00406{height:1229.733333pt;}
.h1_c00406{height:1230.000000pt;}
.w2_c00406{width:93.222667pt;}
.w0_c00406{width:780.466667pt;}
.w1_c00406{width:780.666667pt;}
.x0_c00406{left:0.000000pt;}
.xa_c00406{left:30.533333pt;}
.x8_c00406{left:31.466667pt;}
.x6_c00406{left:32.400000pt;}
.x5_c00406{left:33.333333pt;}
.x4_c00406{left:34.266667pt;}
.x3_c00406{left:35.200000pt;}
.x2_c00406{left:36.266667pt;}
.x1_c00406{left:44.000000pt;}
.x7_c00406{left:72.933333pt;}
.x9_c00406{left:76.533333pt;}
.xb_c00406{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e15430445b95a738daf53299.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_9d8b35d3e82e246e13a3f953.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_fd02bfed44c4a478702f1a47.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00407{vertical-align:-119.400000px;}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.ls2_c00407{letter-spacing:3.000000px;}
.ls1_c00407{letter-spacing:6.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:-63.504000px;}
.ws1_c00407{word-spacing:-23.136000px;}
.ws2_c00407{word-spacing:0.000000px;}
._4_c00407{margin-left:-15.552000px;}
._b_c00407{margin-left:-14.016000px;}
._c_c00407{margin-left:-11.808000px;}
._1b_c00407{margin-left:-10.080000px;}
._a_c00407{margin-left:-9.024000px;}
._2_c00407{margin-left:-7.680000px;}
._2d_c00407{margin-left:-6.048000px;}
._0_c00407{margin-left:-4.416000px;}
._16_c00407{margin-left:-2.496000px;}
._20_c00407{margin-left:-1.440000px;}
._e_c00407{width:1.440000px;}
._11_c00407{width:3.360000px;}
._8_c00407{width:4.992000px;}
._12_c00407{width:6.624000px;}
._10_c00407{width:7.680000px;}
._2a_c00407{width:8.832000px;}
._6_c00407{width:10.176000px;}
._7_c00407{width:11.616000px;}
._17_c00407{width:12.768000px;}
._19_c00407{width:14.400000px;}
._13_c00407{width:15.648000px;}
._14_c00407{width:18.048000px;}
._d_c00407{width:19.104000px;}
._1a_c00407{width:20.544000px;}
._f_c00407{width:21.696000px;}
._29_c00407{width:25.152000px;}
._1e_c00407{width:26.688000px;}
._2c_c00407{width:28.128000px;}
._1d_c00407{width:29.184000px;}
._26_c00407{width:30.336000px;}
._18_c00407{width:32.544000px;}
._15_c00407{width:34.656000px;}
._31_c00407{width:35.808000px;}
._25_c00407{width:36.864000px;}
._9_c00407{width:38.400000px;}
._30_c00407{width:39.552000px;}
._1f_c00407{width:40.800000px;}
._34_c00407{width:41.952000px;}
._28_c00407{width:43.200000px;}
._27_c00407{width:44.640000px;}
._23_c00407{width:46.656000px;}
._35_c00407{width:47.904000px;}
._24_c00407{width:49.728000px;}
._1c_c00407{width:51.072000px;}
._32_c00407{width:52.416000px;}
._3_c00407{width:53.664000px;}
._2b_c00407{width:55.872000px;}
._21_c00407{width:57.696000px;}
._22_c00407{width:58.848000px;}
._33_c00407{width:61.824000px;}
._37_c00407{width:83.196000px;}
._5_c00407{width:98.976000px;}
._1_c00407{width:116.064000px;}
._3a_c00407{width:146.208000px;}
._2f_c00407{width:177.132000px;}
._36_c00407{width:286.848000px;}
._38_c00407{width:386.688000px;}
._3b_c00407{width:518.520000px;}
._39_c00407{width:588.768000px;}
._2e_c00407{width:1056.768000px;}
.fc2_c00407{color:transparent;}
.fc1_c00407{color:rgb(128,128,128);}
.fc0_c00407{color:rgb(0,0,0);}
.fs4_c00407{font-size:48.000000px;}
.fs3_c00407{font-size:60.000000px;}
.fs1_c00407{font-size:84.000000px;}
.fs0_c00407{font-size:96.000000px;}
.fs2_c00407{font-size:102.000000px;}
.y0_c00407{bottom:0.000000px;}
.y25_c00407{bottom:3.105000px;}
.y24_c00407{bottom:7.228355px;}
.y23_c00407{bottom:129.285000px;}
.y22_c00407{bottom:164.685000px;}
.y21_c00407{bottom:200.385000px;}
.y20_c00407{bottom:234.135000px;}
.y1f_c00407{bottom:267.285000px;}
.y1e_c00407{bottom:302.085000px;}
.y1d_c00407{bottom:335.835000px;}
.y1c_c00407{bottom:370.185000px;}
.y1b_c00407{bottom:403.935000px;}
.y1a_c00407{bottom:437.685000px;}
.y19_c00407{bottom:471.435000px;}
.y18_c00407{bottom:505.485000px;}
.y17_c00407{bottom:538.635000px;}
.y16_c00407{bottom:572.385000px;}
.y15_c00407{bottom:605.835000px;}
.y14_c00407{bottom:639.435000px;}
.y13_c00407{bottom:672.885000px;}
.y12_c00407{bottom:706.035000px;}
.y11_c00407{bottom:740.835000px;}
.y10_c00407{bottom:773.535000px;}
.yf_c00407{bottom:807.285000px;}
.ye_c00407{bottom:840.585000px;}
.yd_c00407{bottom:874.485000px;}
.yc_c00407{bottom:907.485000px;}
.yb_c00407{bottom:941.235000px;}
.ya_c00407{bottom:974.235000px;}
.y9_c00407{bottom:1006.785000px;}
.y8_c00407{bottom:1040.385000px;}
.y7_c00407{bottom:1073.235000px;}
.y6_c00407{bottom:1106.985000px;}
.y5_c00407{bottom:1140.435000px;}
.y4_c00407{bottom:1173.435000px;}
.y3_c00407{bottom:1206.885000px;}
.y2_c00407{bottom:1240.185000px;}
.y1_c00407{bottom:1273.335000px;}
.h3_c00407{height:13.200074px;}
.h4_c00407{height:43.804688px;}
.h2_c00407{height:121.546875px;}
.h1_c00407{height:1366.500000px;}
.h0_c00407{height:1366.725000px;}
.w2_c00407{width:104.875500px;}
.w0_c00407{width:852.675000px;}
.w1_c00407{width:852.750000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:176.850000px;}
.x9_c00407{left:190.350000px;}
.x8_c00407{left:268.050000px;}
.x6_c00407{left:269.100000px;}
.x4_c00407{left:270.300000px;}
.x5_c00407{left:271.350000px;}
.x2_c00407{left:272.400000px;}
.x3_c00407{left:273.600000px;}
.x7_c00407{left:321.000000px;}
.xa_c00407{left:378.151749px;}
@media print{
.v1_c00407{vertical-align:-106.133333pt;}
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ls2_c00407{letter-spacing:2.666667pt;}
.ls1_c00407{letter-spacing:5.333333pt;}
.ws0_c00407{word-spacing:-56.448000pt;}
.ws1_c00407{word-spacing:-20.565333pt;}
.ws2_c00407{word-spacing:0.000000pt;}
._4_c00407{margin-left:-13.824000pt;}
._b_c00407{margin-left:-12.458667pt;}
._c_c00407{margin-left:-10.496000pt;}
._1b_c00407{margin-left:-8.960000pt;}
._a_c00407{margin-left:-8.021333pt;}
._2_c00407{margin-left:-6.826667pt;}
._2d_c00407{margin-left:-5.376000pt;}
._0_c00407{margin-left:-3.925333pt;}
._16_c00407{margin-left:-2.218667pt;}
._20_c00407{margin-left:-1.280000pt;}
._e_c00407{width:1.280000pt;}
._11_c00407{width:2.986667pt;}
._8_c00407{width:4.437333pt;}
._12_c00407{width:5.888000pt;}
._10_c00407{width:6.826667pt;}
._2a_c00407{width:7.850667pt;}
._6_c00407{width:9.045333pt;}
._7_c00407{width:10.325333pt;}
._17_c00407{width:11.349333pt;}
._19_c00407{width:12.800000pt;}
._13_c00407{width:13.909333pt;}
._14_c00407{width:16.042667pt;}
._d_c00407{width:16.981333pt;}
._1a_c00407{width:18.261333pt;}
._f_c00407{width:19.285333pt;}
._29_c00407{width:22.357333pt;}
._1e_c00407{width:23.722667pt;}
._2c_c00407{width:25.002667pt;}
._1d_c00407{width:25.941333pt;}
._26_c00407{width:26.965333pt;}
._18_c00407{width:28.928000pt;}
._15_c00407{width:30.805333pt;}
._31_c00407{width:31.829333pt;}
._25_c00407{width:32.768000pt;}
._9_c00407{width:34.133333pt;}
._30_c00407{width:35.157333pt;}
._1f_c00407{width:36.266667pt;}
._34_c00407{width:37.290667pt;}
._28_c00407{width:38.400000pt;}
._27_c00407{width:39.680000pt;}
._23_c00407{width:41.472000pt;}
._35_c00407{width:42.581333pt;}
._24_c00407{width:44.202667pt;}
._1c_c00407{width:45.397333pt;}
._32_c00407{width:46.592000pt;}
._3_c00407{width:47.701333pt;}
._2b_c00407{width:49.664000pt;}
._21_c00407{width:51.285333pt;}
._22_c00407{width:52.309333pt;}
._33_c00407{width:54.954667pt;}
._37_c00407{width:73.952000pt;}
._5_c00407{width:87.978667pt;}
._1_c00407{width:103.168000pt;}
._3a_c00407{width:129.962667pt;}
._2f_c00407{width:157.450667pt;}
._36_c00407{width:254.976000pt;}
._38_c00407{width:343.722667pt;}
._3b_c00407{width:460.906667pt;}
._39_c00407{width:523.349333pt;}
._2e_c00407{width:939.349333pt;}
.fs4_c00407{font-size:42.666667pt;}
.fs3_c00407{font-size:53.333333pt;}
.fs1_c00407{font-size:74.666667pt;}
.fs0_c00407{font-size:85.333333pt;}
.fs2_c00407{font-size:90.666667pt;}
.y0_c00407{bottom:0.000000pt;}
.y25_c00407{bottom:2.760000pt;}
.y24_c00407{bottom:6.425204pt;}
.y23_c00407{bottom:114.920000pt;}
.y22_c00407{bottom:146.386667pt;}
.y21_c00407{bottom:178.120000pt;}
.y20_c00407{bottom:208.120000pt;}
.y1f_c00407{bottom:237.586667pt;}
.y1e_c00407{bottom:268.520000pt;}
.y1d_c00407{bottom:298.520000pt;}
.y1c_c00407{bottom:329.053333pt;}
.y1b_c00407{bottom:359.053333pt;}
.y1a_c00407{bottom:389.053333pt;}
.y19_c00407{bottom:419.053333pt;}
.y18_c00407{bottom:449.320000pt;}
.y17_c00407{bottom:478.786667pt;}
.y16_c00407{bottom:508.786667pt;}
.y15_c00407{bottom:538.520000pt;}
.y14_c00407{bottom:568.386667pt;}
.y13_c00407{bottom:598.120000pt;}
.y12_c00407{bottom:627.586667pt;}
.y11_c00407{bottom:658.520000pt;}
.y10_c00407{bottom:687.586667pt;}
.yf_c00407{bottom:717.586667pt;}
.ye_c00407{bottom:747.186667pt;}
.yd_c00407{bottom:777.320000pt;}
.yc_c00407{bottom:806.653333pt;}
.yb_c00407{bottom:836.653333pt;}
.ya_c00407{bottom:865.986667pt;}
.y9_c00407{bottom:894.920000pt;}
.y8_c00407{bottom:924.786667pt;}
.y7_c00407{bottom:953.986667pt;}
.y6_c00407{bottom:983.986667pt;}
.y5_c00407{bottom:1013.720000pt;}
.y4_c00407{bottom:1043.053333pt;}
.y3_c00407{bottom:1072.786667pt;}
.y2_c00407{bottom:1102.386667pt;}
.y1_c00407{bottom:1131.853333pt;}
.h3_c00407{height:11.733399pt;}
.h4_c00407{height:38.937500pt;}
.h2_c00407{height:108.041667pt;}
.h1_c00407{height:1214.666667pt;}
.h0_c00407{height:1214.866667pt;}
.w2_c00407{width:93.222667pt;}
.w0_c00407{width:757.933333pt;}
.w1_c00407{width:758.000000pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:157.200000pt;}
.x9_c00407{left:169.200000pt;}
.x8_c00407{left:238.266667pt;}
.x6_c00407{left:239.200000pt;}
.x4_c00407{left:240.266667pt;}
.x5_c00407{left:241.200000pt;}
.x2_c00407{left:242.133333pt;}
.x3_c00407{left:243.200000pt;}
.x7_c00407{left:285.333333pt;}
.xa_c00407{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_642acbcadc11fb75a857fb00.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_197767f84a8539ab245a89a1.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_736f70eb9c5207e6ce293ca0.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls4_c00408{letter-spacing:-3.000000px;}
.ls2_c00408{letter-spacing:0.000000px;}
.ls3_c00408{letter-spacing:6.000000px;}
.ls0_c00408{letter-spacing:6.720000px;}
.ls1_c00408{letter-spacing:18.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-57.000000px;}
.ws4_c00408{word-spacing:-23.136000px;}
.ws2_c00408{word-spacing:-20.244000px;}
.ws5_c00408{word-spacing:0.000000px;}
.ws3_c00408{word-spacing:0.372000px;}
.ws0_c00408{word-spacing:5.712000px;}
._2f_c00408{margin-left:-43.392000px;}
._3a_c00408{margin-left:-36.000000px;}
._4a_c00408{margin-left:-34.752000px;}
._1e_c00408{margin-left:-24.636000px;}
._4f_c00408{margin-left:-23.604000px;}
._4c_c00408{margin-left:-20.160000px;}
._d_c00408{margin-left:-18.144000px;}
._3e_c00408{margin-left:-17.088000px;}
._11_c00408{margin-left:-15.600000px;}
._e_c00408{margin-left:-14.400000px;}
._38_c00408{margin-left:-13.344000px;}
._29_c00408{margin-left:-12.312000px;}
._10_c00408{margin-left:-10.104000px;}
._45_c00408{margin-left:-8.580000px;}
._47_c00408{margin-left:-6.912000px;}
._46_c00408{margin-left:-5.568000px;}
._2b_c00408{margin-left:-4.080000px;}
._0_c00408{margin-left:-2.592000px;}
._27_c00408{margin-left:-1.152000px;}
._6_c00408{width:1.728000px;}
._7_c00408{width:3.072000px;}
._5_c00408{width:4.128000px;}
._14_c00408{width:5.280000px;}
._1a_c00408{width:6.336000px;}
._b_c00408{width:7.392000px;}
._12_c00408{width:8.832000px;}
._a_c00408{width:10.656000px;}
._19_c00408{width:11.712000px;}
._1b_c00408{width:13.248000px;}
._3_c00408{width:14.280000px;}
._4d_c00408{width:15.756000px;}
._f_c00408{width:16.992000px;}
._37_c00408{width:18.096000px;}
._22_c00408{width:19.680000px;}
._31_c00408{width:21.312000px;}
._3b_c00408{width:23.160000px;}
._24_c00408{width:24.576000px;}
._18_c00408{width:25.728000px;}
._2_c00408{width:27.468000px;}
._39_c00408{width:28.548000px;}
._1_c00408{width:29.616000px;}
._48_c00408{width:30.768000px;}
._1c_c00408{width:31.800000px;}
._2a_c00408{width:33.888000px;}
._2d_c00408{width:35.040000px;}
._25_c00408{width:36.384000px;}
._8_c00408{width:38.004000px;}
._3c_c00408{width:39.048000px;}
._34_c00408{width:40.896000px;}
._35_c00408{width:42.384000px;}
._9_c00408{width:43.488000px;}
._20_c00408{width:44.832000px;}
._21_c00408{width:45.960000px;}
._1f_c00408{width:47.244000px;}
._23_c00408{width:49.344000px;}
._2c_c00408{width:52.032000px;}
._36_c00408{width:53.376000px;}
._26_c00408{width:55.776000px;}
._15_c00408{width:57.888000px;}
._33_c00408{width:58.968000px;}
._1d_c00408{width:60.096000px;}
._42_c00408{width:61.356000px;}
._17_c00408{width:62.496000px;}
._16_c00408{width:69.024000px;}
._51_c00408{width:71.724000px;}
._32_c00408{width:73.464000px;}
._43_c00408{width:75.264000px;}
._4e_c00408{width:79.632000px;}
._c_c00408{width:84.288000px;}
._28_c00408{width:86.100000px;}
._13_c00408{width:89.376000px;}
._2e_c00408{width:97.104000px;}
._41_c00408{width:99.804000px;}
._44_c00408{width:118.368000px;}
._50_c00408{width:138.420000px;}
._3f_c00408{width:149.784000px;}
._4_c00408{width:163.776000px;}
._4b_c00408{width:215.616000px;}
._49_c00408{width:218.172000px;}
._40_c00408{width:229.392000px;}
._30_c00408{width:245.664000px;}
._3d_c00408{width:476.148000px;}
._52_c00408{width:761.616000px;}
.fc2_c00408{color:transparent;}
.fc1_c00408{color:rgb(128,128,128);}
.fc0_c00408{color:rgb(0,0,0);}
.fs4_c00408{font-size:48.000000px;}
.fs1_c00408{font-size:84.000000px;}
.fs0_c00408{font-size:96.000000px;}
.fs2_c00408{font-size:102.000000px;}
.fs3_c00408{font-size:144.000000px;}
.y0_c00408{bottom:0.000000px;}
.y26_c00408{bottom:3.105000px;}
.y25_c00408{bottom:7.228369px;}
.y24_c00408{bottom:99.570000px;}
.y23_c00408{bottom:134.370000px;}
.y22_c00408{bottom:167.670000px;}
.y21_c00408{bottom:201.720000px;}
.y20_c00408{bottom:235.620000px;}
.y1f_c00408{bottom:269.670000px;}
.y1e_c00408{bottom:302.970000px;}
.y1d_c00408{bottom:337.170000px;}
.y1c_c00408{bottom:369.570000px;}
.y1b_c00408{bottom:403.920000px;}
.y1a_c00408{bottom:436.770000px;}
.y19_c00408{bottom:470.370000px;}
.y18_c00408{bottom:503.520000px;}
.y17_c00408{bottom:536.670000px;}
.y16_c00408{bottom:570.270000px;}
.y15_c00408{bottom:604.170000px;}
.y14_c00408{bottom:637.170000px;}
.y13_c00408{bottom:672.270000px;}
.y12_c00408{bottom:704.370000px;}
.y11_c00408{bottom:737.670000px;}
.y10_c00408{bottom:771.570000px;}
.yf_c00408{bottom:804.870000px;}
.ye_c00408{bottom:837.270000px;}
.yd_c00408{bottom:870.420000px;}
.yc_c00408{bottom:903.720000px;}
.yb_c00408{bottom:936.870000px;}
.ya_c00408{bottom:970.620000px;}
.y9_c00408{bottom:1003.320000px;}
.y8_c00408{bottom:1037.070000px;}
.y7_c00408{bottom:1070.220000px;}
.y6_c00408{bottom:1103.520000px;}
.y5_c00408{bottom:1136.670000px;}
.y4_c00408{bottom:1169.070000px;}
.y3_c00408{bottom:1203.120000px;}
.y2_c00408{bottom:1236.570000px;}
.y1_c00408{bottom:1269.570000px;}
.h4_c00408{height:13.200073px;}
.h5_c00408{height:43.804688px;}
.h2_c00408{height:121.546875px;}
.h3_c00408{height:182.320312px;}
.h0_c00408{height:1383.450000px;}
.h1_c00408{height:1383.750000px;}
.w2_c00408{width:104.875500px;}
.w0_c00408{width:878.025000px;}
.w1_c00408{width:878.250000px;}
.x0_c00408{left:0.000000px;}
.x9_c00408{left:39.750000px;}
.x8_c00408{left:40.800000px;}
.x7_c00408{left:42.450000px;}
.x6_c00408{left:43.500000px;}
.x5_c00408{left:44.550000px;}
.xb_c00408{left:46.200000px;}
.x4_c00408{left:47.250000px;}
.x3_c00408{left:48.900000px;}
.x2_c00408{left:51.000000px;}
.x1_c00408{left:80.250000px;}
.xa_c00408{left:92.550000px;}
.xc_c00408{left:281.700000px;}
.xd_c00408{left:390.826721px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls4_c00408{letter-spacing:-2.666667pt;}
.ls2_c00408{letter-spacing:0.000000pt;}
.ls3_c00408{letter-spacing:5.333333pt;}
.ls0_c00408{letter-spacing:5.973333pt;}
.ls1_c00408{letter-spacing:16.000000pt;}
.ws1_c00408{word-spacing:-50.666667pt;}
.ws4_c00408{word-spacing:-20.565333pt;}
.ws2_c00408{word-spacing:-17.994667pt;}
.ws5_c00408{word-spacing:0.000000pt;}
.ws3_c00408{word-spacing:0.330667pt;}
.ws0_c00408{word-spacing:5.077333pt;}
._2f_c00408{margin-left:-38.570667pt;}
._3a_c00408{margin-left:-32.000000pt;}
._4a_c00408{margin-left:-30.890667pt;}
._1e_c00408{margin-left:-21.898667pt;}
._4f_c00408{margin-left:-20.981333pt;}
._4c_c00408{margin-left:-17.920000pt;}
._d_c00408{margin-left:-16.128000pt;}
._3e_c00408{margin-left:-15.189333pt;}
._11_c00408{margin-left:-13.866667pt;}
._e_c00408{margin-left:-12.800000pt;}
._38_c00408{margin-left:-11.861333pt;}
._29_c00408{margin-left:-10.944000pt;}
._10_c00408{margin-left:-8.981333pt;}
._45_c00408{margin-left:-7.626667pt;}
._47_c00408{margin-left:-6.144000pt;}
._46_c00408{margin-left:-4.949333pt;}
._2b_c00408{margin-left:-3.626667pt;}
._0_c00408{margin-left:-2.304000pt;}
._27_c00408{margin-left:-1.024000pt;}
._6_c00408{width:1.536000pt;}
._7_c00408{width:2.730667pt;}
._5_c00408{width:3.669333pt;}
._14_c00408{width:4.693333pt;}
._1a_c00408{width:5.632000pt;}
._b_c00408{width:6.570667pt;}
._12_c00408{width:7.850667pt;}
._a_c00408{width:9.472000pt;}
._19_c00408{width:10.410667pt;}
._1b_c00408{width:11.776000pt;}
._3_c00408{width:12.693333pt;}
._4d_c00408{width:14.005333pt;}
._f_c00408{width:15.104000pt;}
._37_c00408{width:16.085333pt;}
._22_c00408{width:17.493333pt;}
._31_c00408{width:18.944000pt;}
._3b_c00408{width:20.586667pt;}
._24_c00408{width:21.845333pt;}
._18_c00408{width:22.869333pt;}
._2_c00408{width:24.416000pt;}
._39_c00408{width:25.376000pt;}
._1_c00408{width:26.325333pt;}
._48_c00408{width:27.349333pt;}
._1c_c00408{width:28.266667pt;}
._2a_c00408{width:30.122667pt;}
._2d_c00408{width:31.146667pt;}
._25_c00408{width:32.341333pt;}
._8_c00408{width:33.781333pt;}
._3c_c00408{width:34.709333pt;}
._34_c00408{width:36.352000pt;}
._35_c00408{width:37.674667pt;}
._9_c00408{width:38.656000pt;}
._20_c00408{width:39.850667pt;}
._21_c00408{width:40.853333pt;}
._1f_c00408{width:41.994667pt;}
._23_c00408{width:43.861333pt;}
._2c_c00408{width:46.250667pt;}
._36_c00408{width:47.445333pt;}
._26_c00408{width:49.578667pt;}
._15_c00408{width:51.456000pt;}
._33_c00408{width:52.416000pt;}
._1d_c00408{width:53.418667pt;}
._42_c00408{width:54.538667pt;}
._17_c00408{width:55.552000pt;}
._16_c00408{width:61.354667pt;}
._51_c00408{width:63.754667pt;}
._32_c00408{width:65.301333pt;}
._43_c00408{width:66.901333pt;}
._4e_c00408{width:70.784000pt;}
._c_c00408{width:74.922667pt;}
._28_c00408{width:76.533333pt;}
._13_c00408{width:79.445333pt;}
._2e_c00408{width:86.314667pt;}
._41_c00408{width:88.714667pt;}
._44_c00408{width:105.216000pt;}
._50_c00408{width:123.040000pt;}
._3f_c00408{width:133.141333pt;}
._4_c00408{width:145.578667pt;}
._4b_c00408{width:191.658667pt;}
._49_c00408{width:193.930667pt;}
._40_c00408{width:203.904000pt;}
._30_c00408{width:218.368000pt;}
._3d_c00408{width:423.242667pt;}
._52_c00408{width:676.992000pt;}
.fs4_c00408{font-size:42.666667pt;}
.fs1_c00408{font-size:74.666667pt;}
.fs0_c00408{font-size:85.333333pt;}
.fs2_c00408{font-size:90.666667pt;}
.fs3_c00408{font-size:128.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y26_c00408{bottom:2.760000pt;}
.y25_c00408{bottom:6.425217pt;}
.y24_c00408{bottom:88.506667pt;}
.y23_c00408{bottom:119.440000pt;}
.y22_c00408{bottom:149.040000pt;}
.y21_c00408{bottom:179.306667pt;}
.y20_c00408{bottom:209.440000pt;}
.y1f_c00408{bottom:239.706667pt;}
.y1e_c00408{bottom:269.306667pt;}
.y1d_c00408{bottom:299.706667pt;}
.y1c_c00408{bottom:328.506667pt;}
.y1b_c00408{bottom:359.040000pt;}
.y1a_c00408{bottom:388.240000pt;}
.y19_c00408{bottom:418.106667pt;}
.y18_c00408{bottom:447.573333pt;}
.y17_c00408{bottom:477.040000pt;}
.y16_c00408{bottom:506.906667pt;}
.y15_c00408{bottom:537.040000pt;}
.y14_c00408{bottom:566.373333pt;}
.y13_c00408{bottom:597.573333pt;}
.y12_c00408{bottom:626.106667pt;}
.y11_c00408{bottom:655.706667pt;}
.y10_c00408{bottom:685.840000pt;}
.yf_c00408{bottom:715.440000pt;}
.ye_c00408{bottom:744.240000pt;}
.yd_c00408{bottom:773.706667pt;}
.yc_c00408{bottom:803.306667pt;}
.yb_c00408{bottom:832.773333pt;}
.ya_c00408{bottom:862.773333pt;}
.y9_c00408{bottom:891.840000pt;}
.y8_c00408{bottom:921.840000pt;}
.y7_c00408{bottom:951.306667pt;}
.y6_c00408{bottom:980.906667pt;}
.y5_c00408{bottom:1010.373333pt;}
.y4_c00408{bottom:1039.173333pt;}
.y3_c00408{bottom:1069.440000pt;}
.y2_c00408{bottom:1099.173333pt;}
.y1_c00408{bottom:1128.506667pt;}
.h4_c00408{height:11.733399pt;}
.h5_c00408{height:38.937500pt;}
.h2_c00408{height:108.041667pt;}
.h3_c00408{height:162.062500pt;}
.h0_c00408{height:1229.733333pt;}
.h1_c00408{height:1230.000000pt;}
.w2_c00408{width:93.222667pt;}
.w0_c00408{width:780.466667pt;}
.w1_c00408{width:780.666667pt;}
.x0_c00408{left:0.000000pt;}
.x9_c00408{left:35.333333pt;}
.x8_c00408{left:36.266667pt;}
.x7_c00408{left:37.733333pt;}
.x6_c00408{left:38.666667pt;}
.x5_c00408{left:39.600000pt;}
.xb_c00408{left:41.066667pt;}
.x4_c00408{left:42.000000pt;}
.x3_c00408{left:43.466667pt;}
.x2_c00408{left:45.333333pt;}
.x1_c00408{left:71.333333pt;}
.xa_c00408{left:82.266667pt;}
.xc_c00408{left:250.400000pt;}
.xd_c00408{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_622601f9b4c125cd5672de4c.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_5483817ecd9b6e26568ed542.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_a777fd41d7d96453125f80e2.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;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_c00409;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00409{vertical-align:-128.400000px;}
.v0_c00409{vertical-align:0.000000px;}
.ls4_c00409{letter-spacing:-9.000000px;}
.ls3_c00409{letter-spacing:0.000000px;}
.ls1_c00409{letter-spacing:3.834000px;}
.ls5_c00409{letter-spacing:6.000000px;}
.ls0_c00409{letter-spacing:7.434000px;}
.ls2_c00409{letter-spacing:72.633000px;}
.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;}
}
.ws2_c00409{word-spacing:-57.000000px;}
.ws4_c00409{word-spacing:-23.136000px;}
.ws3_c00409{word-spacing:-20.244000px;}
.ws0_c00409{word-spacing:-18.798000px;}
.ws5_c00409{word-spacing:0.000000px;}
.ws1_c00409{word-spacing:18.126000px;}
._34_c00409{margin-left:-37.056000px;}
._39_c00409{margin-left:-30.588000px;}
._38_c00409{margin-left:-15.990000px;}
._10_c00409{margin-left:-14.448000px;}
._22_c00409{margin-left:-12.288000px;}
._35_c00409{margin-left:-11.040000px;}
._26_c00409{margin-left:-9.660000px;}
._0_c00409{margin-left:-8.640000px;}
._13_c00409{margin-left:-7.176000px;}
._e_c00409{margin-left:-5.922000px;}
._1_c00409{margin-left:-4.320000px;}
._b_c00409{margin-left:-3.072000px;}
._5_c00409{margin-left:-1.488000px;}
._3_c00409{width:1.344000px;}
._a_c00409{width:2.556000px;}
._f_c00409{width:4.290000px;}
._8_c00409{width:5.652000px;}
._28_c00409{width:6.756000px;}
._4_c00409{width:7.998000px;}
._1f_c00409{width:9.042000px;}
._12_c00409{width:10.200000px;}
._6_c00409{width:11.718000px;}
._14_c00409{width:13.728000px;}
._7_c00409{width:15.585000px;}
._37_c00409{width:17.202000px;}
._3e_c00409{width:18.558000px;}
._29_c00409{width:19.656000px;}
._15_c00409{width:20.994000px;}
._1e_c00409{width:22.116000px;}
._19_c00409{width:23.286000px;}
._3a_c00409{width:25.614000px;}
._30_c00409{width:26.658000px;}
._2a_c00409{width:27.846000px;}
._9_c00409{width:29.796000px;}
._d_c00409{width:31.794000px;}
._20_c00409{width:32.850000px;}
._c_c00409{width:34.392000px;}
._16_c00409{width:35.634000px;}
._21_c00409{width:36.870000px;}
._11_c00409{width:38.472000px;}
._1a_c00409{width:40.380000px;}
._27_c00409{width:41.628000px;}
._2f_c00409{width:43.488000px;}
._2_c00409{width:45.024000px;}
._42_c00409{width:46.983000px;}
._2b_c00409{width:48.192000px;}
._2c_c00409{width:49.314000px;}
._25_c00409{width:50.784000px;}
._41_c00409{width:52.104000px;}
._2d_c00409{width:53.382000px;}
._2e_c00409{width:54.474000px;}
._3f_c00409{width:55.650000px;}
._40_c00409{width:56.706000px;}
._1c_c00409{width:57.858000px;}
._3b_c00409{width:60.312000px;}
._1d_c00409{width:62.346000px;}
._18_c00409{width:64.104000px;}
._31_c00409{width:67.272000px;}
._23_c00409{width:69.270000px;}
._17_c00409{width:70.560000px;}
._32_c00409{width:72.702000px;}
._1b_c00409{width:75.282000px;}
._24_c00409{width:80.256000px;}
._3c_c00409{width:84.996000px;}
._43_c00409{width:108.330000px;}
._3d_c00409{width:178.608000px;}
._36_c00409{width:183.804000px;}
._33_c00409{width:523.848000px;}
.fc2_c00409{color:transparent;}
.fc1_c00409{color:rgb(128,128,128);}
.fc0_c00409{color:rgb(0,0,0);}
.fs6_c00409{font-size:48.000000px;}
.fs2_c00409{font-size:78.000000px;}
.fs5_c00409{font-size:84.000000px;}
.fs3_c00409{font-size:87.000000px;}
.fs1_c00409{font-size:93.000000px;}
.fs0_c00409{font-size:96.000000px;}
.fs4_c00409{font-size:102.000000px;}
.y0_c00409{bottom:0.000000px;}
.y31_c00409{bottom:3.105000px;}
.y30_c00409{bottom:7.228357px;}
.y2f_c00409{bottom:136.080000px;}
.y2e_c00409{bottom:170.730000px;}
.y2d_c00409{bottom:204.630000px;}
.y2c_c00409{bottom:238.230000px;}
.y2b_c00409{bottom:272.130000px;}
.y2a_c00409{bottom:306.780000px;}
.y29_c00409{bottom:340.980000px;}
.y28_c00409{bottom:375.030000px;}
.yc_c00409{bottom:387.480000px;}
.y27_c00409{bottom:408.480000px;}
.yb_c00409{bottom:419.280000px;}
.y26_c00409{bottom:442.530000px;}
.ya_c00409{bottom:449.280000px;}
.y25_c00409{bottom:476.280000px;}
.y9_c00409{bottom:478.230000px;}
.y8_c00409{bottom:507.630000px;}
.y24_c00409{bottom:510.930000px;}
.y7_c00409{bottom:537.030000px;}
.y23_c00409{bottom:543.330000px;}
.y6_c00409{bottom:566.430000px;}
.y22_c00409{bottom:577.530000px;}
.y5_c00409{bottom:596.130000px;}
.y21_c00409{bottom:610.980000px;}
.y4_c00409{bottom:626.730000px;}
.y20_c00409{bottom:643.980000px;}
.y3_c00409{bottom:654.780000px;}
.y1f_c00409{bottom:678.330000px;}
.y2_c00409{bottom:684.780000px;}
.y1e_c00409{bottom:711.780000px;}
.y1d_c00409{bottom:743.880000px;}
.y1c_c00409{bottom:778.230000px;}
.y1b_c00409{bottom:811.080000px;}
.y1a_c00409{bottom:844.380000px;}
.y19_c00409{bottom:877.830000px;}
.y18_c00409{bottom:911.280000px;}
.y17_c00409{bottom:945.030000px;}
.y16_c00409{bottom:979.080000px;}
.y15_c00409{bottom:1011.780000px;}
.y1_c00409{bottom:1014.630000px;}
.y14_c00409{bottom:1042.980000px;}
.y13_c00409{bottom:1078.380000px;}
.y12_c00409{bottom:1113.480000px;}
.y11_c00409{bottom:1146.180000px;}
.y10_c00409{bottom:1179.630000px;}
.yf_c00409{bottom:1213.230000px;}
.ye_c00409{bottom:1246.380000px;}
.yd_c00409{bottom:1279.530000px;}
.h7_c00409{height:13.200074px;}
.h8_c00409{height:43.804688px;}
.h5_c00409{height:91.291992px;}
.h3_c00409{height:97.464000px;}
.h6_c00409{height:98.756836px;}
.h4_c00409{height:110.151855px;}
.h2_c00409{height:121.546875px;}
.h0_c00409{height:1382.700000px;}
.h1_c00409{height:1383.000000px;}
.w2_c00409{width:104.875500px;}
.w0_c00409{width:863.175000px;}
.w1_c00409{width:863.250000px;}
.x0_c00409{left:0.000000px;}
.x7_c00409{left:37.500000px;}
.x6_c00409{left:38.550000px;}
.x4_c00409{left:40.800000px;}
.x3_c00409{left:41.850000px;}
.x5_c00409{left:42.900000px;}
.x2_c00409{left:68.850000px;}
.x1_c00409{left:157.350000px;}
.xe_c00409{left:260.550000px;}
.x9_c00409{left:261.600000px;}
.xc_c00409{left:262.800000px;}
.x8_c00409{left:264.300000px;}
.xa_c00409{left:265.950000px;}
.xb_c00409{left:310.200000px;}
.xd_c00409{left:312.900000px;}
.xf_c00409{left:383.401749px;}
@media print{
.v1_c00409{vertical-align:-114.133333pt;}
.v0_c00409{vertical-align:0.000000pt;}
.ls4_c00409{letter-spacing:-8.000000pt;}
.ls3_c00409{letter-spacing:0.000000pt;}
.ls1_c00409{letter-spacing:3.408000pt;}
.ls5_c00409{letter-spacing:5.333333pt;}
.ls0_c00409{letter-spacing:6.608000pt;}
.ls2_c00409{letter-spacing:64.562667pt;}
.ws2_c00409{word-spacing:-50.666667pt;}
.ws4_c00409{word-spacing:-20.565333pt;}
.ws3_c00409{word-spacing:-17.994667pt;}
.ws0_c00409{word-spacing:-16.709333pt;}
.ws5_c00409{word-spacing:0.000000pt;}
.ws1_c00409{word-spacing:16.112000pt;}
._34_c00409{margin-left:-32.938667pt;}
._39_c00409{margin-left:-27.189333pt;}
._38_c00409{margin-left:-14.213333pt;}
._10_c00409{margin-left:-12.842667pt;}
._22_c00409{margin-left:-10.922667pt;}
._35_c00409{margin-left:-9.813333pt;}
._26_c00409{margin-left:-8.586667pt;}
._0_c00409{margin-left:-7.680000pt;}
._13_c00409{margin-left:-6.378667pt;}
._e_c00409{margin-left:-5.264000pt;}
._1_c00409{margin-left:-3.840000pt;}
._b_c00409{margin-left:-2.730667pt;}
._5_c00409{margin-left:-1.322667pt;}
._3_c00409{width:1.194667pt;}
._a_c00409{width:2.272000pt;}
._f_c00409{width:3.813333pt;}
._8_c00409{width:5.024000pt;}
._28_c00409{width:6.005333pt;}
._4_c00409{width:7.109333pt;}
._1f_c00409{width:8.037333pt;}
._12_c00409{width:9.066667pt;}
._6_c00409{width:10.416000pt;}
._14_c00409{width:12.202667pt;}
._7_c00409{width:13.853333pt;}
._37_c00409{width:15.290667pt;}
._3e_c00409{width:16.496000pt;}
._29_c00409{width:17.472000pt;}
._15_c00409{width:18.661333pt;}
._1e_c00409{width:19.658667pt;}
._19_c00409{width:20.698667pt;}
._3a_c00409{width:22.768000pt;}
._30_c00409{width:23.696000pt;}
._2a_c00409{width:24.752000pt;}
._9_c00409{width:26.485333pt;}
._d_c00409{width:28.261333pt;}
._20_c00409{width:29.200000pt;}
._c_c00409{width:30.570667pt;}
._16_c00409{width:31.674667pt;}
._21_c00409{width:32.773333pt;}
._11_c00409{width:34.197333pt;}
._1a_c00409{width:35.893333pt;}
._27_c00409{width:37.002667pt;}
._2f_c00409{width:38.656000pt;}
._2_c00409{width:40.021333pt;}
._42_c00409{width:41.762667pt;}
._2b_c00409{width:42.837333pt;}
._2c_c00409{width:43.834667pt;}
._25_c00409{width:45.141333pt;}
._41_c00409{width:46.314667pt;}
._2d_c00409{width:47.450667pt;}
._2e_c00409{width:48.421333pt;}
._3f_c00409{width:49.466667pt;}
._40_c00409{width:50.405333pt;}
._1c_c00409{width:51.429333pt;}
._3b_c00409{width:53.610667pt;}
._1d_c00409{width:55.418667pt;}
._18_c00409{width:56.981333pt;}
._31_c00409{width:59.797333pt;}
._23_c00409{width:61.573333pt;}
._17_c00409{width:62.720000pt;}
._32_c00409{width:64.624000pt;}
._1b_c00409{width:66.917333pt;}
._24_c00409{width:71.338667pt;}
._3c_c00409{width:75.552000pt;}
._43_c00409{width:96.293333pt;}
._3d_c00409{width:158.762667pt;}
._36_c00409{width:163.381333pt;}
._33_c00409{width:465.642667pt;}
.fs6_c00409{font-size:42.666667pt;}
.fs2_c00409{font-size:69.333333pt;}
.fs5_c00409{font-size:74.666667pt;}
.fs3_c00409{font-size:77.333333pt;}
.fs1_c00409{font-size:82.666667pt;}
.fs0_c00409{font-size:85.333333pt;}
.fs4_c00409{font-size:90.666667pt;}
.y0_c00409{bottom:0.000000pt;}
.y31_c00409{bottom:2.760000pt;}
.y30_c00409{bottom:6.425206pt;}
.y2f_c00409{bottom:120.960000pt;}
.y2e_c00409{bottom:151.760000pt;}
.y2d_c00409{bottom:181.893333pt;}
.y2c_c00409{bottom:211.760000pt;}
.y2b_c00409{bottom:241.893333pt;}
.y2a_c00409{bottom:272.693333pt;}
.y29_c00409{bottom:303.093333pt;}
.y28_c00409{bottom:333.360000pt;}
.yc_c00409{bottom:344.426667pt;}
.y27_c00409{bottom:363.093333pt;}
.yb_c00409{bottom:372.693333pt;}
.y26_c00409{bottom:393.360000pt;}
.ya_c00409{bottom:399.360000pt;}
.y25_c00409{bottom:423.360000pt;}
.y9_c00409{bottom:425.093333pt;}
.y8_c00409{bottom:451.226667pt;}
.y24_c00409{bottom:454.160000pt;}
.y7_c00409{bottom:477.360000pt;}
.y23_c00409{bottom:482.960000pt;}
.y6_c00409{bottom:503.493333pt;}
.y22_c00409{bottom:513.360000pt;}
.y5_c00409{bottom:529.893333pt;}
.y21_c00409{bottom:543.093333pt;}
.y4_c00409{bottom:557.093333pt;}
.y20_c00409{bottom:572.426667pt;}
.y3_c00409{bottom:582.026667pt;}
.y1f_c00409{bottom:602.960000pt;}
.y2_c00409{bottom:608.693333pt;}
.y1e_c00409{bottom:632.693333pt;}
.y1d_c00409{bottom:661.226667pt;}
.y1c_c00409{bottom:691.760000pt;}
.y1b_c00409{bottom:720.960000pt;}
.y1a_c00409{bottom:750.560000pt;}
.y19_c00409{bottom:780.293333pt;}
.y18_c00409{bottom:810.026667pt;}
.y17_c00409{bottom:840.026667pt;}
.y16_c00409{bottom:870.293333pt;}
.y15_c00409{bottom:899.360000pt;}
.y1_c00409{bottom:901.893333pt;}
.y14_c00409{bottom:927.093333pt;}
.y13_c00409{bottom:958.560000pt;}
.y12_c00409{bottom:989.760000pt;}
.y11_c00409{bottom:1018.826667pt;}
.y10_c00409{bottom:1048.560000pt;}
.yf_c00409{bottom:1078.426667pt;}
.ye_c00409{bottom:1107.893333pt;}
.yd_c00409{bottom:1137.360000pt;}
.h7_c00409{height:11.733399pt;}
.h8_c00409{height:38.937500pt;}
.h5_c00409{height:81.148438pt;}
.h3_c00409{height:86.634667pt;}
.h6_c00409{height:87.783854pt;}
.h4_c00409{height:97.912760pt;}
.h2_c00409{height:108.041667pt;}
.h0_c00409{height:1229.066667pt;}
.h1_c00409{height:1229.333333pt;}
.w2_c00409{width:93.222667pt;}
.w0_c00409{width:767.266667pt;}
.w1_c00409{width:767.333333pt;}
.x0_c00409{left:0.000000pt;}
.x7_c00409{left:33.333333pt;}
.x6_c00409{left:34.266667pt;}
.x4_c00409{left:36.266667pt;}
.x3_c00409{left:37.200000pt;}
.x5_c00409{left:38.133333pt;}
.x2_c00409{left:61.200000pt;}
.x1_c00409{left:139.866667pt;}
.xe_c00409{left:231.600000pt;}
.x9_c00409{left:232.533333pt;}
.xc_c00409{left:233.600000pt;}
.x8_c00409{left:234.933333pt;}
.xa_c00409{left:236.400000pt;}
.xb_c00409{left:275.733333pt;}
.xd_c00409{left:278.133333pt;}
.xf_c00409{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_89357fdacd77e44ee5766dce.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_255331aff79bef0752e4d2f2.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_03e8c14f81c171f45852b258.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_17eec447c82d052f5c6ab571.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{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_c00410{vertical-align:0.000000px;}
.ls3_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:15.300000px;}
.ls2_c00410{letter-spacing:24.192000px;}
.ls1_c00410{letter-spacing:32.388000px;}
.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;}
}
.ws0_c00410{word-spacing:-43.084800px;}
.ws2_c00410{word-spacing:-25.305000px;}
.ws3_c00410{word-spacing:-23.136000px;}
.ws1_c00410{word-spacing:-20.244000px;}
.ws4_c00410{word-spacing:0.000000px;}
._36_c00410{margin-left:-29.340000px;}
._52_c00410{margin-left:-25.536000px;}
._3f_c00410{margin-left:-21.216000px;}
._43_c00410{margin-left:-19.104000px;}
._2d_c00410{margin-left:-17.280000px;}
._4b_c00410{margin-left:-16.032000px;}
._3e_c00410{margin-left:-13.824000px;}
._16_c00410{margin-left:-11.808000px;}
._3c_c00410{margin-left:-10.452000px;}
._32_c00410{margin-left:-8.448000px;}
._b_c00410{margin-left:-6.048000px;}
._39_c00410{margin-left:-5.004000px;}
._21_c00410{margin-left:-3.840000px;}
._a_c00410{margin-left:-2.016000px;}
._5_c00410{width:2.016000px;}
._6_c00410{width:3.168000px;}
._9_c00410{width:4.416000px;}
._1_c00410{width:6.144000px;}
._d_c00410{width:7.392000px;}
._0_c00410{width:8.544000px;}
._3_c00410{width:9.600000px;}
._4_c00410{width:11.232000px;}
._3a_c00410{width:12.480000px;}
._7_c00410{width:13.536000px;}
._c_c00410{width:14.976000px;}
._1c_c00410{width:16.416000px;}
._2_c00410{width:17.472000px;}
._11_c00410{width:19.008000px;}
._1f_c00410{width:21.024000px;}
._8_c00410{width:22.080000px;}
._10_c00410{width:24.960000px;}
._19_c00410{width:26.016000px;}
._13_c00410{width:27.456000px;}
._e_c00410{width:29.472000px;}
._14_c00410{width:30.528000px;}
._1b_c00410{width:32.352000px;}
._18_c00410{width:33.792000px;}
._12_c00410{width:35.328000px;}
._28_c00410{width:36.480000px;}
._f_c00410{width:38.592000px;}
._26_c00410{width:40.128000px;}
._27_c00410{width:41.472000px;}
._22_c00410{width:42.624000px;}
._4c_c00410{width:44.160000px;}
._20_c00410{width:45.696000px;}
._2a_c00410{width:47.424000px;}
._30_c00410{width:49.536000px;}
._29_c00410{width:51.072000px;}
._2b_c00410{width:53.088000px;}
._37_c00410{width:54.816000px;}
._4d_c00410{width:58.272000px;}
._49_c00410{width:60.096000px;}
._3d_c00410{width:62.004000px;}
._41_c00410{width:64.416000px;}
._38_c00410{width:73.560000px;}
._2e_c00410{width:75.360000px;}
._34_c00410{width:76.608000px;}
._47_c00410{width:78.720000px;}
._31_c00410{width:80.256000px;}
._17_c00410{width:83.904000px;}
._1a_c00410{width:107.640000px;}
._46_c00410{width:109.920000px;}
._44_c00410{width:119.328000px;}
._1e_c00410{width:128.736000px;}
._40_c00410{width:158.064000px;}
._25_c00410{width:164.544000px;}
._24_c00410{width:175.296000px;}
._3b_c00410{width:287.304000px;}
._2c_c00410{width:364.896000px;}
._4f_c00410{width:367.848000px;}
._4a_c00410{width:369.312000px;}
._23_c00410{width:372.192000px;}
._42_c00410{width:397.920000px;}
._51_c00410{width:441.228000px;}
._35_c00410{width:477.792000px;}
._4e_c00410{width:543.096000px;}
._48_c00410{width:584.544000px;}
._15_c00410{width:588.960000px;}
._1d_c00410{width:672.288000px;}
._33_c00410{width:729.480000px;}
._2f_c00410{width:829.632000px;}
._50_c00410{width:845.664000px;}
._45_c00410{width:1927.200000px;}
.fc2_c00410{color:transparent;}
.fc1_c00410{color:rgb(128,128,128);}
.fc0_c00410{color:rgb(0,0,0);}
.fs6_c00410{font-size:48.000000px;}
.fs1_c00410{font-size:76.800000px;}
.fs4_c00410{font-size:78.000000px;}
.fs3_c00410{font-size:84.000000px;}
.fs0_c00410{font-size:96.000000px;}
.fs2_c00410{font-size:99.000000px;}
.fs5_c00410{font-size:105.000000px;}
.y0_c00410{bottom:0.000000px;}
.y26_c00410{bottom:3.105000px;}
.y25_c00410{bottom:7.228369px;}
.y24_c00410{bottom:101.820000px;}
.y23_c00410{bottom:131.520000px;}
.y22_c00410{bottom:166.620000px;}
.y21_c00410{bottom:201.120000px;}
.y20_c00410{bottom:234.270000px;}
.y1f_c00410{bottom:268.920000px;}
.y1e_c00410{bottom:303.720000px;}
.y1d_c00410{bottom:335.070000px;}
.y1c_c00410{bottom:368.820000px;}
.y1b_c00410{bottom:401.520000px;}
.y1a_c00410{bottom:436.620000px;}
.y19_c00410{bottom:471.870000px;}
.y18_c00410{bottom:504.270000px;}
.y17_c00410{bottom:536.220000px;}
.y16_c00410{bottom:569.670000px;}
.y15_c00410{bottom:602.370000px;}
.y14_c00410{bottom:636.120000px;}
.y13_c00410{bottom:671.670000px;}
.y12_c00410{bottom:704.670000px;}
.y11_c00410{bottom:738.120000px;}
.y10_c00410{bottom:770.220000px;}
.yf_c00410{bottom:803.970000px;}
.ye_c00410{bottom:837.570000px;}
.yd_c00410{bottom:870.120000px;}
.yc_c00410{bottom:903.420000px;}
.yb_c00410{bottom:937.170000px;}
.ya_c00410{bottom:969.870000px;}
.y9_c00410{bottom:1003.020000px;}
.y8_c00410{bottom:1036.470000px;}
.y7_c00410{bottom:1070.220000px;}
.y6_c00410{bottom:1103.220000px;}
.y5_c00410{bottom:1135.620000px;}
.y4_c00410{bottom:1168.770000px;}
.y3_c00410{bottom:1202.220000px;}
.y2_c00410{bottom:1235.220000px;}
.y1_c00410{bottom:1268.970000px;}
.h4_c00410{height:13.200073px;}
.h5_c00410{height:43.804688px;}
.h2_c00410{height:121.546875px;}
.h3_c00410{height:132.941895px;}
.h0_c00410{height:1383.450000px;}
.h1_c00410{height:1383.750000px;}
.w2_c00410{width:104.875500px;}
.w0_c00410{width:878.025000px;}
.w1_c00410{width:878.250000px;}
.x0_c00410{left:0.000000px;}
.x6_c00410{left:41.400000px;}
.x7_c00410{left:42.450000px;}
.x5_c00410{left:44.100000px;}
.x4_c00410{left:45.150000px;}
.x3_c00410{left:46.200000px;}
.x2_c00410{left:47.850000px;}
.x1_c00410{left:48.900000px;}
.x9_c00410{left:50.550000px;}
.xa_c00410{left:52.650000px;}
.x8_c00410{left:54.300000px;}
.xc_c00410{left:390.826721px;}
.xb_c00410{left:580.050000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls3_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:13.600000pt;}
.ls2_c00410{letter-spacing:21.504000pt;}
.ls1_c00410{letter-spacing:28.789333pt;}
.ws0_c00410{word-spacing:-38.297600pt;}
.ws2_c00410{word-spacing:-22.493333pt;}
.ws3_c00410{word-spacing:-20.565333pt;}
.ws1_c00410{word-spacing:-17.994667pt;}
.ws4_c00410{word-spacing:0.000000pt;}
._36_c00410{margin-left:-26.080000pt;}
._52_c00410{margin-left:-22.698667pt;}
._3f_c00410{margin-left:-18.858667pt;}
._43_c00410{margin-left:-16.981333pt;}
._2d_c00410{margin-left:-15.360000pt;}
._4b_c00410{margin-left:-14.250667pt;}
._3e_c00410{margin-left:-12.288000pt;}
._16_c00410{margin-left:-10.496000pt;}
._3c_c00410{margin-left:-9.290667pt;}
._32_c00410{margin-left:-7.509333pt;}
._b_c00410{margin-left:-5.376000pt;}
._39_c00410{margin-left:-4.448000pt;}
._21_c00410{margin-left:-3.413333pt;}
._a_c00410{margin-left:-1.792000pt;}
._5_c00410{width:1.792000pt;}
._6_c00410{width:2.816000pt;}
._9_c00410{width:3.925333pt;}
._1_c00410{width:5.461333pt;}
._d_c00410{width:6.570667pt;}
._0_c00410{width:7.594667pt;}
._3_c00410{width:8.533333pt;}
._4_c00410{width:9.984000pt;}
._3a_c00410{width:11.093333pt;}
._7_c00410{width:12.032000pt;}
._c_c00410{width:13.312000pt;}
._1c_c00410{width:14.592000pt;}
._2_c00410{width:15.530667pt;}
._11_c00410{width:16.896000pt;}
._1f_c00410{width:18.688000pt;}
._8_c00410{width:19.626667pt;}
._10_c00410{width:22.186667pt;}
._19_c00410{width:23.125333pt;}
._13_c00410{width:24.405333pt;}
._e_c00410{width:26.197333pt;}
._14_c00410{width:27.136000pt;}
._1b_c00410{width:28.757333pt;}
._18_c00410{width:30.037333pt;}
._12_c00410{width:31.402667pt;}
._28_c00410{width:32.426667pt;}
._f_c00410{width:34.304000pt;}
._26_c00410{width:35.669333pt;}
._27_c00410{width:36.864000pt;}
._22_c00410{width:37.888000pt;}
._4c_c00410{width:39.253333pt;}
._20_c00410{width:40.618667pt;}
._2a_c00410{width:42.154667pt;}
._30_c00410{width:44.032000pt;}
._29_c00410{width:45.397333pt;}
._2b_c00410{width:47.189333pt;}
._37_c00410{width:48.725333pt;}
._4d_c00410{width:51.797333pt;}
._49_c00410{width:53.418667pt;}
._3d_c00410{width:55.114667pt;}
._41_c00410{width:57.258667pt;}
._38_c00410{width:65.386667pt;}
._2e_c00410{width:66.986667pt;}
._34_c00410{width:68.096000pt;}
._47_c00410{width:69.973333pt;}
._31_c00410{width:71.338667pt;}
._17_c00410{width:74.581333pt;}
._1a_c00410{width:95.680000pt;}
._46_c00410{width:97.706667pt;}
._44_c00410{width:106.069333pt;}
._1e_c00410{width:114.432000pt;}
._40_c00410{width:140.501333pt;}
._25_c00410{width:146.261333pt;}
._24_c00410{width:155.818667pt;}
._3b_c00410{width:255.381333pt;}
._2c_c00410{width:324.352000pt;}
._4f_c00410{width:326.976000pt;}
._4a_c00410{width:328.277333pt;}
._23_c00410{width:330.837333pt;}
._42_c00410{width:353.706667pt;}
._51_c00410{width:392.202667pt;}
._35_c00410{width:424.704000pt;}
._4e_c00410{width:482.752000pt;}
._48_c00410{width:519.594667pt;}
._15_c00410{width:523.520000pt;}
._1d_c00410{width:597.589333pt;}
._33_c00410{width:648.426667pt;}
._2f_c00410{width:737.450667pt;}
._50_c00410{width:751.701333pt;}
._45_c00410{width:1713.066667pt;}
.fs6_c00410{font-size:42.666667pt;}
.fs1_c00410{font-size:68.266667pt;}
.fs4_c00410{font-size:69.333333pt;}
.fs3_c00410{font-size:74.666667pt;}
.fs0_c00410{font-size:85.333333pt;}
.fs2_c00410{font-size:88.000000pt;}
.fs5_c00410{font-size:93.333333pt;}
.y0_c00410{bottom:0.000000pt;}
.y26_c00410{bottom:2.760000pt;}
.y25_c00410{bottom:6.425217pt;}
.y24_c00410{bottom:90.506667pt;}
.y23_c00410{bottom:116.906667pt;}
.y22_c00410{bottom:148.106667pt;}
.y21_c00410{bottom:178.773333pt;}
.y20_c00410{bottom:208.240000pt;}
.y1f_c00410{bottom:239.040000pt;}
.y1e_c00410{bottom:269.973333pt;}
.y1d_c00410{bottom:297.840000pt;}
.y1c_c00410{bottom:327.840000pt;}
.y1b_c00410{bottom:356.906667pt;}
.y1a_c00410{bottom:388.106667pt;}
.y19_c00410{bottom:419.440000pt;}
.y18_c00410{bottom:448.240000pt;}
.y17_c00410{bottom:476.640000pt;}
.y16_c00410{bottom:506.373333pt;}
.y15_c00410{bottom:535.440000pt;}
.y14_c00410{bottom:565.440000pt;}
.y13_c00410{bottom:597.040000pt;}
.y12_c00410{bottom:626.373333pt;}
.y11_c00410{bottom:656.106667pt;}
.y10_c00410{bottom:684.640000pt;}
.yf_c00410{bottom:714.640000pt;}
.ye_c00410{bottom:744.506667pt;}
.yd_c00410{bottom:773.440000pt;}
.yc_c00410{bottom:803.040000pt;}
.yb_c00410{bottom:833.040000pt;}
.ya_c00410{bottom:862.106667pt;}
.y9_c00410{bottom:891.573333pt;}
.y8_c00410{bottom:921.306667pt;}
.y7_c00410{bottom:951.306667pt;}
.y6_c00410{bottom:980.640000pt;}
.y5_c00410{bottom:1009.440000pt;}
.y4_c00410{bottom:1038.906667pt;}
.y3_c00410{bottom:1068.640000pt;}
.y2_c00410{bottom:1097.973333pt;}
.y1_c00410{bottom:1127.973333pt;}
.h4_c00410{height:11.733399pt;}
.h5_c00410{height:38.937500pt;}
.h2_c00410{height:108.041667pt;}
.h3_c00410{height:118.170573pt;}
.h0_c00410{height:1229.733333pt;}
.h1_c00410{height:1230.000000pt;}
.w2_c00410{width:93.222667pt;}
.w0_c00410{width:780.466667pt;}
.w1_c00410{width:780.666667pt;}
.x0_c00410{left:0.000000pt;}
.x6_c00410{left:36.800000pt;}
.x7_c00410{left:37.733333pt;}
.x5_c00410{left:39.200000pt;}
.x4_c00410{left:40.133333pt;}
.x3_c00410{left:41.066667pt;}
.x2_c00410{left:42.533333pt;}
.x1_c00410{left:43.466667pt;}
.x9_c00410{left:44.933333pt;}
.xa_c00410{left:46.800000pt;}
.x8_c00410{left:48.266667pt;}
.xc_c00410{left:347.401530pt;}
.xb_c00410{left:515.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_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_58f3d690b460beeeaa4944b9.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_419fb5ccc5ee2592508d56e0.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_73b71130219ff0b54933f676.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00411;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls6_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:7.200000px;}
.ls4_c00411{letter-spacing:18.252000px;}
.ls5_c00411{letter-spacing:36.033000px;}
.ls2_c00411{letter-spacing:60.033000px;}
.ls1_c00411{letter-spacing:174.633000px;}
.ls3_c00411{letter-spacing:352.833000px;}
.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:-23.136000px;}
.ws0_c00411{word-spacing:-20.244000px;}
.ws1_c00411{word-spacing:-18.798000px;}
.ws3_c00411{word-spacing:0.000000px;}
._13_c00411{margin-left:-41.106000px;}
._4c_c00411{margin-left:-39.648000px;}
._53_c00411{margin-left:-32.640000px;}
._48_c00411{margin-left:-30.324000px;}
._49_c00411{margin-left:-22.233000px;}
._65_c00411{margin-left:-21.189000px;}
._3f_c00411{margin-left:-18.783000px;}
._e_c00411{margin-left:-17.661000px;}
._29_c00411{margin-left:-16.320000px;}
._12_c00411{margin-left:-15.132000px;}
._1c_c00411{margin-left:-13.536000px;}
._c_c00411{margin-left:-11.832000px;}
._2b_c00411{margin-left:-10.512000px;}
._44_c00411{margin-left:-8.697000px;}
._43_c00411{margin-left:-7.350000px;}
._1b_c00411{margin-left:-5.640000px;}
._30_c00411{margin-left:-4.395000px;}
._10_c00411{margin-left:-3.045000px;}
._8_c00411{margin-left:-2.016000px;}
._5d_c00411{margin-left:-1.014000px;}
._2a_c00411{width:1.056000px;}
._1_c00411{width:2.112000px;}
._0_c00411{width:3.264000px;}
._3_c00411{width:4.800000px;}
._6_c00411{width:6.336000px;}
._27_c00411{width:7.968000px;}
._9_c00411{width:9.096000px;}
._1f_c00411{width:10.389000px;}
._47_c00411{width:11.409000px;}
._36_c00411{width:12.669000px;}
._1d_c00411{width:13.710000px;}
._19_c00411{width:15.648000px;}
._17_c00411{width:16.704000px;}
._56_c00411{width:17.832000px;}
._2_c00411{width:19.296000px;}
._57_c00411{width:20.568000px;}
._1a_c00411{width:21.696000px;}
._15_c00411{width:23.010000px;}
._2d_c00411{width:24.330000px;}
._35_c00411{width:25.569000px;}
._1e_c00411{width:27.438000px;}
._7_c00411{width:29.304000px;}
._39_c00411{width:30.804000px;}
._18_c00411{width:32.352000px;}
._34_c00411{width:34.542000px;}
._46_c00411{width:35.592000px;}
._4_c00411{width:36.864000px;}
._26_c00411{width:37.944000px;}
._16_c00411{width:39.486000px;}
._a_c00411{width:41.088000px;}
._b_c00411{width:42.720000px;}
._38_c00411{width:44.433000px;}
._5_c00411{width:45.888000px;}
._2e_c00411{width:47.640000px;}
._2f_c00411{width:49.536000px;}
._32_c00411{width:52.056000px;}
._33_c00411{width:53.184000px;}
._37_c00411{width:54.711000px;}
._f_c00411{width:55.767000px;}
._4e_c00411{width:57.642000px;}
._3b_c00411{width:58.656000px;}
._3c_c00411{width:60.384000px;}
._28_c00411{width:63.174000px;}
._31_c00411{width:64.776000px;}
._3a_c00411{width:67.179000px;}
._3d_c00411{width:68.832000px;}
._45_c00411{width:70.152000px;}
._2c_c00411{width:71.643000px;}
._4b_c00411{width:73.395000px;}
._54_c00411{width:75.825000px;}
._5f_c00411{width:79.200000px;}
._3e_c00411{width:80.352000px;}
._40_c00411{width:84.267000px;}
._11_c00411{width:90.015000px;}
._5c_c00411{width:91.407000px;}
._60_c00411{width:97.239000px;}
._22_c00411{width:110.160000px;}
._21_c00411{width:113.412000px;}
._d_c00411{width:116.145000px;}
._23_c00411{width:125.424000px;}
._4a_c00411{width:149.319000px;}
._42_c00411{width:177.240000px;}
._20_c00411{width:183.378000px;}
._25_c00411{width:196.563000px;}
._24_c00411{width:222.381000px;}
._59_c00411{width:237.273000px;}
._41_c00411{width:250.566000px;}
._4d_c00411{width:260.130000px;}
._52_c00411{width:283.056000px;}
._14_c00411{width:344.214000px;}
._5a_c00411{width:346.848000px;}
._58_c00411{width:433.233000px;}
._64_c00411{width:461.016000px;}
._63_c00411{width:516.504000px;}
._61_c00411{width:558.021000px;}
._62_c00411{width:673.467000px;}
._5b_c00411{width:737.268000px;}
._50_c00411{width:919.062000px;}
._4f_c00411{width:929.376000px;}
._55_c00411{width:942.591000px;}
._5e_c00411{width:1301.088000px;}
._51_c00411{width:2343.939000px;}
.fc2_c00411{color:transparent;}
.fc1_c00411{color:rgb(128,128,128);}
.fc0_c00411{color:rgb(0,0,0);}
.fs6_c00411{font-size:48.000000px;}
.fs4_c00411{font-size:62.400000px;}
.fs3_c00411{font-size:78.000000px;}
.fs5_c00411{font-size:84.000000px;}
.fs2_c00411{font-size:87.000000px;}
.fs0_c00411{font-size:96.000000px;}
.fs1_c00411{font-size:102.000000px;}
.y0_c00411{bottom:0.000000px;}
.y29_c00411{bottom:3.105000px;}
.y28_c00411{bottom:7.228357px;}
.y27_c00411{bottom:92.580000px;}
.y26_c00411{bottom:123.180000px;}
.y25_c00411{bottom:144.780000px;}
.y24_c00411{bottom:166.680000px;}
.y23_c00411{bottom:197.130000px;}
.y22_c00411{bottom:227.580000px;}
.y21_c00411{bottom:262.230000px;}
.y20_c00411{bottom:296.730000px;}
.y1f_c00411{bottom:329.430000px;}
.y1e_c00411{bottom:362.130000px;}
.y1d_c00411{bottom:393.180000px;}
.y1c_c00411{bottom:426.330000px;}
.y1b_c00411{bottom:449.580000px;}
.y1a_c00411{bottom:470.130000px;}
.y19_c00411{bottom:500.580000px;}
.y18_c00411{bottom:531.630000px;}
.y17_c00411{bottom:565.080000px;}
.y16_c00411{bottom:599.130000px;}
.y15_c00411{bottom:632.130000px;}
.y14_c00411{bottom:667.530000px;}
.y13_c00411{bottom:699.930000px;}
.y12_c00411{bottom:732.330000px;}
.y11_c00411{bottom:764.880000px;}
.y10_c00411{bottom:796.230000px;}
.yf_c00411{bottom:833.580000px;}
.ye_c00411{bottom:867.480000px;}
.yd_c00411{bottom:901.530000px;}
.yc_c00411{bottom:934.230000px;}
.yb_c00411{bottom:967.680000px;}
.ya_c00411{bottom:1000.380000px;}
.y9_c00411{bottom:1033.380000px;}
.y8_c00411{bottom:1067.130000px;}
.y7_c00411{bottom:1099.230000px;}
.y6_c00411{bottom:1131.030000px;}
.y5_c00411{bottom:1163.730000px;}
.y4_c00411{bottom:1184.580000px;}
.y3_c00411{bottom:1199.880000px;}
.y2_c00411{bottom:1232.880000px;}
.y1_c00411{bottom:1266.630000px;}
.h5_c00411{height:13.200074px;}
.h6_c00411{height:43.804688px;}
.h3_c00411{height:91.291992px;}
.h4_c00411{height:110.151855px;}
.h2_c00411{height:121.546875px;}
.h0_c00411{height:1382.700000px;}
.h1_c00411{height:1383.000000px;}
.w2_c00411{width:104.875500px;}
.w0_c00411{width:863.175000px;}
.w1_c00411{width:863.250000px;}
.x0_c00411{left:0.000000px;}
.x11_c00411{left:43.500000px;}
.xd_c00411{left:44.550000px;}
.xc_c00411{left:46.200000px;}
.xb_c00411{left:47.250000px;}
.x10_c00411{left:48.300000px;}
.x4_c00411{left:51.000000px;}
.x5_c00411{left:52.050000px;}
.x6_c00411{left:53.100000px;}
.x13_c00411{left:72.000000px;}
.xa_c00411{left:75.300000px;}
.x3_c00411{left:80.100000px;}
.x12_c00411{left:102.300000px;}
.x2_c00411{left:119.400000px;}
.xf_c00411{left:135.750000px;}
.x14_c00411{left:214.950000px;}
.xe_c00411{left:262.200000px;}
.x9_c00411{left:263.700000px;}
.x8_c00411{left:264.900000px;}
.x7_c00411{left:265.950000px;}
.x1_c00411{left:268.650000px;}
.x16_c00411{left:383.401749px;}
.x15_c00411{left:783.750000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls6_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:6.400000pt;}
.ls4_c00411{letter-spacing:16.224000pt;}
.ls5_c00411{letter-spacing:32.029333pt;}
.ls2_c00411{letter-spacing:53.362667pt;}
.ls1_c00411{letter-spacing:155.229333pt;}
.ls3_c00411{letter-spacing:313.629333pt;}
.ws2_c00411{word-spacing:-20.565333pt;}
.ws0_c00411{word-spacing:-17.994667pt;}
.ws1_c00411{word-spacing:-16.709333pt;}
.ws3_c00411{word-spacing:0.000000pt;}
._13_c00411{margin-left:-36.538667pt;}
._4c_c00411{margin-left:-35.242667pt;}
._53_c00411{margin-left:-29.013333pt;}
._48_c00411{margin-left:-26.954667pt;}
._49_c00411{margin-left:-19.762667pt;}
._65_c00411{margin-left:-18.834667pt;}
._3f_c00411{margin-left:-16.696000pt;}
._e_c00411{margin-left:-15.698667pt;}
._29_c00411{margin-left:-14.506667pt;}
._12_c00411{margin-left:-13.450667pt;}
._1c_c00411{margin-left:-12.032000pt;}
._c_c00411{margin-left:-10.517333pt;}
._2b_c00411{margin-left:-9.344000pt;}
._44_c00411{margin-left:-7.730667pt;}
._43_c00411{margin-left:-6.533333pt;}
._1b_c00411{margin-left:-5.013333pt;}
._30_c00411{margin-left:-3.906667pt;}
._10_c00411{margin-left:-2.706667pt;}
._8_c00411{margin-left:-1.792000pt;}
._5d_c00411{margin-left:-0.901333pt;}
._2a_c00411{width:0.938667pt;}
._1_c00411{width:1.877333pt;}
._0_c00411{width:2.901333pt;}
._3_c00411{width:4.266667pt;}
._6_c00411{width:5.632000pt;}
._27_c00411{width:7.082667pt;}
._9_c00411{width:8.085333pt;}
._1f_c00411{width:9.234667pt;}
._47_c00411{width:10.141333pt;}
._36_c00411{width:11.261333pt;}
._1d_c00411{width:12.186667pt;}
._19_c00411{width:13.909333pt;}
._17_c00411{width:14.848000pt;}
._56_c00411{width:15.850667pt;}
._2_c00411{width:17.152000pt;}
._57_c00411{width:18.282667pt;}
._1a_c00411{width:19.285333pt;}
._15_c00411{width:20.453333pt;}
._2d_c00411{width:21.626667pt;}
._35_c00411{width:22.728000pt;}
._1e_c00411{width:24.389333pt;}
._7_c00411{width:26.048000pt;}
._39_c00411{width:27.381333pt;}
._18_c00411{width:28.757333pt;}
._34_c00411{width:30.704000pt;}
._46_c00411{width:31.637333pt;}
._4_c00411{width:32.768000pt;}
._26_c00411{width:33.728000pt;}
._16_c00411{width:35.098667pt;}
._a_c00411{width:36.522667pt;}
._b_c00411{width:37.973333pt;}
._38_c00411{width:39.496000pt;}
._5_c00411{width:40.789333pt;}
._2e_c00411{width:42.346667pt;}
._2f_c00411{width:44.032000pt;}
._32_c00411{width:46.272000pt;}
._33_c00411{width:47.274667pt;}
._37_c00411{width:48.632000pt;}
._f_c00411{width:49.570667pt;}
._4e_c00411{width:51.237333pt;}
._3b_c00411{width:52.138667pt;}
._3c_c00411{width:53.674667pt;}
._28_c00411{width:56.154667pt;}
._31_c00411{width:57.578667pt;}
._3a_c00411{width:59.714667pt;}
._3d_c00411{width:61.184000pt;}
._45_c00411{width:62.357333pt;}
._2c_c00411{width:63.682667pt;}
._4b_c00411{width:65.240000pt;}
._54_c00411{width:67.400000pt;}
._5f_c00411{width:70.400000pt;}
._3e_c00411{width:71.424000pt;}
._40_c00411{width:74.904000pt;}
._11_c00411{width:80.013333pt;}
._5c_c00411{width:81.250667pt;}
._60_c00411{width:86.434667pt;}
._22_c00411{width:97.920000pt;}
._21_c00411{width:100.810667pt;}
._d_c00411{width:103.240000pt;}
._23_c00411{width:111.488000pt;}
._4a_c00411{width:132.728000pt;}
._42_c00411{width:157.546667pt;}
._20_c00411{width:163.002667pt;}
._25_c00411{width:174.722667pt;}
._24_c00411{width:197.672000pt;}
._59_c00411{width:210.909333pt;}
._41_c00411{width:222.725333pt;}
._4d_c00411{width:231.226667pt;}
._52_c00411{width:251.605333pt;}
._14_c00411{width:305.968000pt;}
._5a_c00411{width:308.309333pt;}
._58_c00411{width:385.096000pt;}
._64_c00411{width:409.792000pt;}
._63_c00411{width:459.114667pt;}
._61_c00411{width:496.018667pt;}
._62_c00411{width:598.637333pt;}
._5b_c00411{width:655.349333pt;}
._50_c00411{width:816.944000pt;}
._4f_c00411{width:826.112000pt;}
._55_c00411{width:837.858667pt;}
._5e_c00411{width:1156.522667pt;}
._51_c00411{width:2083.501333pt;}
.fs6_c00411{font-size:42.666667pt;}
.fs4_c00411{font-size:55.466667pt;}
.fs3_c00411{font-size:69.333333pt;}
.fs5_c00411{font-size:74.666667pt;}
.fs2_c00411{font-size:77.333333pt;}
.fs0_c00411{font-size:85.333333pt;}
.fs1_c00411{font-size:90.666667pt;}
.y0_c00411{bottom:0.000000pt;}
.y29_c00411{bottom:2.760000pt;}
.y28_c00411{bottom:6.425206pt;}
.y27_c00411{bottom:82.293333pt;}
.y26_c00411{bottom:109.493333pt;}
.y25_c00411{bottom:128.693333pt;}
.y24_c00411{bottom:148.160000pt;}
.y23_c00411{bottom:175.226667pt;}
.y22_c00411{bottom:202.293333pt;}
.y21_c00411{bottom:233.093333pt;}
.y20_c00411{bottom:263.760000pt;}
.y1f_c00411{bottom:292.826667pt;}
.y1e_c00411{bottom:321.893333pt;}
.y1d_c00411{bottom:349.493333pt;}
.y1c_c00411{bottom:378.960000pt;}
.y1b_c00411{bottom:399.626667pt;}
.y1a_c00411{bottom:417.893333pt;}
.y19_c00411{bottom:444.960000pt;}
.y18_c00411{bottom:472.560000pt;}
.y17_c00411{bottom:502.293333pt;}
.y16_c00411{bottom:532.560000pt;}
.y15_c00411{bottom:561.893333pt;}
.y14_c00411{bottom:593.360000pt;}
.y13_c00411{bottom:622.160000pt;}
.y12_c00411{bottom:650.960000pt;}
.y11_c00411{bottom:679.893333pt;}
.y10_c00411{bottom:707.760000pt;}
.yf_c00411{bottom:740.960000pt;}
.ye_c00411{bottom:771.093333pt;}
.yd_c00411{bottom:801.360000pt;}
.yc_c00411{bottom:830.426667pt;}
.yb_c00411{bottom:860.160000pt;}
.ya_c00411{bottom:889.226667pt;}
.y9_c00411{bottom:918.560000pt;}
.y8_c00411{bottom:948.560000pt;}
.y7_c00411{bottom:977.093333pt;}
.y6_c00411{bottom:1005.360000pt;}
.y5_c00411{bottom:1034.426667pt;}
.y4_c00411{bottom:1052.960000pt;}
.y3_c00411{bottom:1066.560000pt;}
.y2_c00411{bottom:1095.893333pt;}
.y1_c00411{bottom:1125.893333pt;}
.h5_c00411{height:11.733399pt;}
.h6_c00411{height:38.937500pt;}
.h3_c00411{height:81.148438pt;}
.h4_c00411{height:97.912760pt;}
.h2_c00411{height:108.041667pt;}
.h0_c00411{height:1229.066667pt;}
.h1_c00411{height:1229.333333pt;}
.w2_c00411{width:93.222667pt;}
.w0_c00411{width:767.266667pt;}
.w1_c00411{width:767.333333pt;}
.x0_c00411{left:0.000000pt;}
.x11_c00411{left:38.666667pt;}
.xd_c00411{left:39.600000pt;}
.xc_c00411{left:41.066667pt;}
.xb_c00411{left:42.000000pt;}
.x10_c00411{left:42.933333pt;}
.x4_c00411{left:45.333333pt;}
.x5_c00411{left:46.266667pt;}
.x6_c00411{left:47.200000pt;}
.x13_c00411{left:64.000000pt;}
.xa_c00411{left:66.933333pt;}
.x3_c00411{left:71.200000pt;}
.x12_c00411{left:90.933333pt;}
.x2_c00411{left:106.133333pt;}
.xf_c00411{left:120.666667pt;}
.x14_c00411{left:191.066667pt;}
.xe_c00411{left:233.066667pt;}
.x9_c00411{left:234.400000pt;}
.x8_c00411{left:235.466667pt;}
.x7_c00411{left:236.400000pt;}
.x1_c00411{left:238.800000pt;}
.x16_c00411{left:340.801554pt;}
.x15_c00411{left:696.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bab17cb75997a2e1ed16f754.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_1377480fb552f99e7fbc214e.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_d68ca77d54a3bcc369ef92ae.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_c3b30a4b889b68f6fe33763a.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.291992;font-style:normal;font-weight:normal;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_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls5_c00412{letter-spacing:0.000000px;}
.ls1_c00412{letter-spacing:1.833000px;}
.ls4_c00412{letter-spacing:3.504000px;}
.ls6_c00412{letter-spacing:6.000000px;}
.ls3_c00412{letter-spacing:12.264000px;}
.ls0_c00412{letter-spacing:13.938000px;}
.ls2_c00412{letter-spacing:23.172000px;}
.ls7_c00412{letter-spacing:147.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00412{word-spacing:-57.000000px;}
.ws1_c00412{word-spacing:-23.136000px;}
.ws0_c00412{word-spacing:-18.798000px;}
.ws3_c00412{word-spacing:-17.352000px;}
.ws4_c00412{word-spacing:0.000000px;}
._4a_c00412{margin-left:-161.568000px;}
._46_c00412{margin-left:-146.322000px;}
._3b_c00412{margin-left:-144.540000px;}
._44_c00412{margin-left:-141.240000px;}
._3d_c00412{margin-left:-137.874000px;}
._3f_c00412{margin-left:-130.482000px;}
._48_c00412{margin-left:-122.562000px;}
._3c_c00412{margin-left:-104.610000px;}
._4b_c00412{margin-left:-76.434000px;}
._47_c00412{margin-left:-70.158000px;}
._45_c00412{margin-left:-55.110000px;}
._5f_c00412{margin-left:-47.205000px;}
._42_c00412{margin-left:-44.220000px;}
._41_c00412{margin-left:-43.098000px;}
._33_c00412{margin-left:-38.328000px;}
._59_c00412{margin-left:-34.716000px;}
._57_c00412{margin-left:-30.396000px;}
._31_c00412{margin-left:-20.160000px;}
._18_c00412{margin-left:-15.660000px;}
._2f_c00412{margin-left:-14.124000px;}
._50_c00412{margin-left:-11.910000px;}
._e_c00412{margin-left:-10.623000px;}
._51_c00412{margin-left:-9.120000px;}
._d_c00412{margin-left:-7.860000px;}
._3a_c00412{margin-left:-6.261000px;}
._1a_c00412{margin-left:-5.133000px;}
._1d_c00412{margin-left:-3.132000px;}
._8_c00412{margin-left:-2.025000px;}
._0_c00412{width:1.440000px;}
._7_c00412{width:2.880000px;}
._11_c00412{width:4.128000px;}
._2_c00412{width:5.280000px;}
._1_c00412{width:6.720000px;}
._9_c00412{width:8.352000px;}
._3_c00412{width:10.272000px;}
._4d_c00412{width:11.430000px;}
._a_c00412{width:12.480000px;}
._6_c00412{width:14.016000px;}
._f_c00412{width:15.072000px;}
._10_c00412{width:16.128000px;}
._26_c00412{width:17.664000px;}
._5_c00412{width:19.296000px;}
._21_c00412{width:20.832000px;}
._17_c00412{width:22.080000px;}
._4f_c00412{width:25.440000px;}
._14_c00412{width:26.793000px;}
._24_c00412{width:28.032000px;}
._13_c00412{width:29.190000px;}
._22_c00412{width:30.240000px;}
._2d_c00412{width:31.350000px;}
._28_c00412{width:33.216000px;}
._29_c00412{width:34.296000px;}
._2b_c00412{width:35.808000px;}
._b_c00412{width:36.867000px;}
._36_c00412{width:38.304000px;}
._4_c00412{width:39.552000px;}
._15_c00412{width:41.088000px;}
._38_c00412{width:42.264000px;}
._27_c00412{width:43.386000px;}
._25_c00412{width:45.033000px;}
._2c_c00412{width:47.196000px;}
._5a_c00412{width:49.440000px;}
._2a_c00412{width:51.168000px;}
._16_c00412{width:52.425000px;}
._37_c00412{width:53.568000px;}
._5b_c00412{width:55.488000px;}
._5d_c00412{width:58.752000px;}
._20_c00412{width:60.372000px;}
._5e_c00412{width:62.487000px;}
._2e_c00412{width:65.487000px;}
._60_c00412{width:68.520000px;}
._4e_c00412{width:70.416000px;}
._3e_c00412{width:74.778000px;}
._4c_c00412{width:76.224000px;}
._52_c00412{width:78.072000px;}
._54_c00412{width:79.815000px;}
._23_c00412{width:84.204000px;}
._1f_c00412{width:85.872000px;}
._53_c00412{width:94.299000px;}
._55_c00412{width:97.527000px;}
._1c_c00412{width:123.309000px;}
._5c_c00412{width:161.469000px;}
._63_c00412{width:165.792000px;}
._40_c00412{width:170.742000px;}
._34_c00412{width:172.680000px;}
._43_c00412{width:187.308000px;}
._56_c00412{width:200.856000px;}
._19_c00412{width:222.024000px;}
._1b_c00412{width:237.336000px;}
._c_c00412{width:247.392000px;}
._49_c00412{width:249.414000px;}
._1e_c00412{width:271.848000px;}
._32_c00412{width:273.888000px;}
._62_c00412{width:469.020000px;}
._39_c00412{width:498.516000px;}
._35_c00412{width:583.965000px;}
._58_c00412{width:605.943000px;}
._61_c00412{width:624.696000px;}
._30_c00412{width:650.976000px;}
._12_c00412{width:798.288000px;}
._64_c00412{width:848.832000px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(128,128,128);}
.fc0_c00412{color:rgb(0,0,0);}
.fs7_c00412{font-size:48.000000px;}
.fs4_c00412{font-size:66.000000px;}
.fs5_c00412{font-size:72.000000px;}
.fs1_c00412{font-size:78.000000px;}
.fs6_c00412{font-size:84.000000px;}
.fs2_c00412{font-size:87.000000px;}
.fs0_c00412{font-size:96.000000px;}
.fs3_c00412{font-size:102.000000px;}
.y0_c00412{bottom:0.000000px;}
.y28_c00412{bottom:3.105000px;}
.y27_c00412{bottom:7.228369px;}
.y26_c00412{bottom:104.520000px;}
.y25_c00412{bottom:139.320000px;}
.y24_c00412{bottom:173.520000px;}
.y23_c00412{bottom:207.570000px;}
.y22_c00412{bottom:241.320000px;}
.y21_c00412{bottom:275.070000px;}
.y20_c00412{bottom:309.420000px;}
.y1f_c00412{bottom:343.470000px;}
.y1e_c00412{bottom:376.320000px;}
.y1d_c00412{bottom:411.120000px;}
.y1c_c00412{bottom:444.420000px;}
.y1b_c00412{bottom:478.170000px;}
.y1a_c00412{bottom:511.920000px;}
.y19_c00412{bottom:545.370000px;}
.y18_c00412{bottom:578.820000px;}
.y17_c00412{bottom:613.920000px;}
.y16_c00412{bottom:647.220000px;}
.y15_c00412{bottom:679.620000px;}
.y14_c00412{bottom:712.170000px;}
.y13_c00412{bottom:744.870000px;}
.y12_c00412{bottom:780.570000px;}
.y11_c00412{bottom:795.870000px;}
.y10_c00412{bottom:813.420000px;}
.yf_c00412{bottom:848.370000px;}
.ye_c00412{bottom:880.170000px;}
.yd_c00412{bottom:912.870000px;}
.yc_c00412{bottom:946.620000px;}
.yb_c00412{bottom:980.670000px;}
.ya_c00412{bottom:1013.820000px;}
.y9_c00412{bottom:1046.970000px;}
.y8_c00412{bottom:1079.970000px;}
.y7_c00412{bottom:1113.720000px;}
.y6_c00412{bottom:1146.120000px;}
.y5_c00412{bottom:1177.470000px;}
.y4_c00412{bottom:1196.820000px;}
.y3_c00412{bottom:1212.870000px;}
.y2_c00412{bottom:1244.670000px;}
.y1_c00412{bottom:1281.420000px;}
.h5_c00412{height:13.200073px;}
.h6_c00412{height:43.804688px;}
.h4_c00412{height:84.269531px;}
.h3_c00412{height:110.151855px;}
.h2_c00412{height:121.546875px;}
.h0_c00412{height:1383.450000px;}
.h1_c00412{height:1383.750000px;}
.w2_c00412{width:104.875500px;}
.w0_c00412{width:878.025000px;}
.w1_c00412{width:878.250000px;}
.x0_c00412{left:0.000000px;}
.x11_c00412{left:21.300000px;}
.x10_c00412{left:22.950000px;}
.xf_c00412{left:24.000000px;}
.xe_c00412{left:25.200000px;}
.xd_c00412{left:26.700000px;}
.xc_c00412{left:27.900000px;}
.xa_c00412{left:28.950000px;}
.x8_c00412{left:30.000000px;}
.x7_c00412{left:31.050000px;}
.x6_c00412{left:33.750000px;}
.x5_c00412{left:35.400000px;}
.x4_c00412{left:36.450000px;}
.x2_c00412{left:37.500000px;}
.x1_c00412{left:38.700000px;}
.x12_c00412{left:46.800000px;}
.x9_c00412{left:81.600000px;}
.xb_c00412{left:138.900000px;}
.x3_c00412{left:365.850000px;}
.x13_c00412{left:390.826721px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls5_c00412{letter-spacing:0.000000pt;}
.ls1_c00412{letter-spacing:1.629333pt;}
.ls4_c00412{letter-spacing:3.114667pt;}
.ls6_c00412{letter-spacing:5.333333pt;}
.ls3_c00412{letter-spacing:10.901333pt;}
.ls0_c00412{letter-spacing:12.389333pt;}
.ls2_c00412{letter-spacing:20.597333pt;}
.ls7_c00412{letter-spacing:130.666667pt;}
.ws2_c00412{word-spacing:-50.666667pt;}
.ws1_c00412{word-spacing:-20.565333pt;}
.ws0_c00412{word-spacing:-16.709333pt;}
.ws3_c00412{word-spacing:-15.424000pt;}
.ws4_c00412{word-spacing:0.000000pt;}
._4a_c00412{margin-left:-143.616000pt;}
._46_c00412{margin-left:-130.064000pt;}
._3b_c00412{margin-left:-128.480000pt;}
._44_c00412{margin-left:-125.546667pt;}
._3d_c00412{margin-left:-122.554667pt;}
._3f_c00412{margin-left:-115.984000pt;}
._48_c00412{margin-left:-108.944000pt;}
._3c_c00412{margin-left:-92.986667pt;}
._4b_c00412{margin-left:-67.941333pt;}
._47_c00412{margin-left:-62.362667pt;}
._45_c00412{margin-left:-48.986667pt;}
._5f_c00412{margin-left:-41.960000pt;}
._42_c00412{margin-left:-39.306667pt;}
._41_c00412{margin-left:-38.309333pt;}
._33_c00412{margin-left:-34.069333pt;}
._59_c00412{margin-left:-30.858667pt;}
._57_c00412{margin-left:-27.018667pt;}
._31_c00412{margin-left:-17.920000pt;}
._18_c00412{margin-left:-13.920000pt;}
._2f_c00412{margin-left:-12.554667pt;}
._50_c00412{margin-left:-10.586667pt;}
._e_c00412{margin-left:-9.442667pt;}
._51_c00412{margin-left:-8.106667pt;}
._d_c00412{margin-left:-6.986667pt;}
._3a_c00412{margin-left:-5.565333pt;}
._1a_c00412{margin-left:-4.562667pt;}
._1d_c00412{margin-left:-2.784000pt;}
._8_c00412{margin-left:-1.800000pt;}
._0_c00412{width:1.280000pt;}
._7_c00412{width:2.560000pt;}
._11_c00412{width:3.669333pt;}
._2_c00412{width:4.693333pt;}
._1_c00412{width:5.973333pt;}
._9_c00412{width:7.424000pt;}
._3_c00412{width:9.130667pt;}
._4d_c00412{width:10.160000pt;}
._a_c00412{width:11.093333pt;}
._6_c00412{width:12.458667pt;}
._f_c00412{width:13.397333pt;}
._10_c00412{width:14.336000pt;}
._26_c00412{width:15.701333pt;}
._5_c00412{width:17.152000pt;}
._21_c00412{width:18.517333pt;}
._17_c00412{width:19.626667pt;}
._4f_c00412{width:22.613333pt;}
._14_c00412{width:23.816000pt;}
._24_c00412{width:24.917333pt;}
._13_c00412{width:25.946667pt;}
._22_c00412{width:26.880000pt;}
._2d_c00412{width:27.866667pt;}
._28_c00412{width:29.525333pt;}
._29_c00412{width:30.485333pt;}
._2b_c00412{width:31.829333pt;}
._b_c00412{width:32.770667pt;}
._36_c00412{width:34.048000pt;}
._4_c00412{width:35.157333pt;}
._15_c00412{width:36.522667pt;}
._38_c00412{width:37.568000pt;}
._27_c00412{width:38.565333pt;}
._25_c00412{width:40.029333pt;}
._2c_c00412{width:41.952000pt;}
._5a_c00412{width:43.946667pt;}
._2a_c00412{width:45.482667pt;}
._16_c00412{width:46.600000pt;}
._37_c00412{width:47.616000pt;}
._5b_c00412{width:49.322667pt;}
._5d_c00412{width:52.224000pt;}
._20_c00412{width:53.664000pt;}
._5e_c00412{width:55.544000pt;}
._2e_c00412{width:58.210667pt;}
._60_c00412{width:60.906667pt;}
._4e_c00412{width:62.592000pt;}
._3e_c00412{width:66.469333pt;}
._4c_c00412{width:67.754667pt;}
._52_c00412{width:69.397333pt;}
._54_c00412{width:70.946667pt;}
._23_c00412{width:74.848000pt;}
._1f_c00412{width:76.330667pt;}
._53_c00412{width:83.821333pt;}
._55_c00412{width:86.690667pt;}
._1c_c00412{width:109.608000pt;}
._5c_c00412{width:143.528000pt;}
._63_c00412{width:147.370667pt;}
._40_c00412{width:151.770667pt;}
._34_c00412{width:153.493333pt;}
._43_c00412{width:166.496000pt;}
._56_c00412{width:178.538667pt;}
._19_c00412{width:197.354667pt;}
._1b_c00412{width:210.965333pt;}
._c_c00412{width:219.904000pt;}
._49_c00412{width:221.701333pt;}
._1e_c00412{width:241.642667pt;}
._32_c00412{width:243.456000pt;}
._62_c00412{width:416.906667pt;}
._39_c00412{width:443.125333pt;}
._35_c00412{width:519.080000pt;}
._58_c00412{width:538.616000pt;}
._61_c00412{width:555.285333pt;}
._30_c00412{width:578.645333pt;}
._12_c00412{width:709.589333pt;}
._64_c00412{width:754.517333pt;}
.fs7_c00412{font-size:42.666667pt;}
.fs4_c00412{font-size:58.666667pt;}
.fs5_c00412{font-size:64.000000pt;}
.fs1_c00412{font-size:69.333333pt;}
.fs6_c00412{font-size:74.666667pt;}
.fs2_c00412{font-size:77.333333pt;}
.fs0_c00412{font-size:85.333333pt;}
.fs3_c00412{font-size:90.666667pt;}
.y0_c00412{bottom:0.000000pt;}
.y28_c00412{bottom:2.760000pt;}
.y27_c00412{bottom:6.425217pt;}
.y26_c00412{bottom:92.906667pt;}
.y25_c00412{bottom:123.840000pt;}
.y24_c00412{bottom:154.240000pt;}
.y23_c00412{bottom:184.506667pt;}
.y22_c00412{bottom:214.506667pt;}
.y21_c00412{bottom:244.506667pt;}
.y20_c00412{bottom:275.040000pt;}
.y1f_c00412{bottom:305.306667pt;}
.y1e_c00412{bottom:334.506667pt;}
.y1d_c00412{bottom:365.440000pt;}
.y1c_c00412{bottom:395.040000pt;}
.y1b_c00412{bottom:425.040000pt;}
.y1a_c00412{bottom:455.040000pt;}
.y19_c00412{bottom:484.773333pt;}
.y18_c00412{bottom:514.506667pt;}
.y17_c00412{bottom:545.706667pt;}
.y16_c00412{bottom:575.306667pt;}
.y15_c00412{bottom:604.106667pt;}
.y14_c00412{bottom:633.040000pt;}
.y13_c00412{bottom:662.106667pt;}
.y12_c00412{bottom:693.840000pt;}
.y11_c00412{bottom:707.440000pt;}
.y10_c00412{bottom:723.040000pt;}
.yf_c00412{bottom:754.106667pt;}
.ye_c00412{bottom:782.373333pt;}
.yd_c00412{bottom:811.440000pt;}
.yc_c00412{bottom:841.440000pt;}
.yb_c00412{bottom:871.706667pt;}
.ya_c00412{bottom:901.173333pt;}
.y9_c00412{bottom:930.640000pt;}
.y8_c00412{bottom:959.973333pt;}
.y7_c00412{bottom:989.973333pt;}
.y6_c00412{bottom:1018.773333pt;}
.y5_c00412{bottom:1046.640000pt;}
.y4_c00412{bottom:1063.840000pt;}
.y3_c00412{bottom:1078.106667pt;}
.y2_c00412{bottom:1106.373333pt;}
.y1_c00412{bottom:1139.040000pt;}
.h5_c00412{height:11.733399pt;}
.h6_c00412{height:38.937500pt;}
.h4_c00412{height:74.906250pt;}
.h3_c00412{height:97.912760pt;}
.h2_c00412{height:108.041667pt;}
.h0_c00412{height:1229.733333pt;}
.h1_c00412{height:1230.000000pt;}
.w2_c00412{width:93.222667pt;}
.w0_c00412{width:780.466667pt;}
.w1_c00412{width:780.666667pt;}
.x0_c00412{left:0.000000pt;}
.x11_c00412{left:18.933333pt;}
.x10_c00412{left:20.400000pt;}
.xf_c00412{left:21.333333pt;}
.xe_c00412{left:22.400000pt;}
.xd_c00412{left:23.733333pt;}
.xc_c00412{left:24.800000pt;}
.xa_c00412{left:25.733333pt;}
.x8_c00412{left:26.666667pt;}
.x7_c00412{left:27.600000pt;}
.x6_c00412{left:30.000000pt;}
.x5_c00412{left:31.466667pt;}
.x4_c00412{left:32.400000pt;}
.x2_c00412{left:33.333333pt;}
.x1_c00412{left:34.400000pt;}
.x12_c00412{left:41.600000pt;}
.x9_c00412{left:72.533333pt;}
.xb_c00412{left:123.466667pt;}
.x3_c00412{left:325.200000pt;}
.x13_c00412{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dad334be51e9c54b013aa2f1.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_c751746497b9bc42cf88dddf.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_81fd382a07d1370bf23a4bd0.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00413{vertical-align:-138.000000px;}
.v0_c00413{vertical-align:0.000000px;}
.lsd_c00413{letter-spacing:-9.000000px;}
.lsc_c00413{letter-spacing:0.000000px;}
.ls6_c00413{letter-spacing:4.134000px;}
.ls0_c00413{letter-spacing:6.720000px;}
.ls5_c00413{letter-spacing:12.633000px;}
.lse_c00413{letter-spacing:18.000000px;}
.lsb_c00413{letter-spacing:30.033000px;}
.ls9_c00413{letter-spacing:64.233000px;}
.ls2_c00413{letter-spacing:70.833000px;}
.ls3_c00413{letter-spacing:73.233000px;}
.lsa_c00413{letter-spacing:75.033000px;}
.ls7_c00413{letter-spacing:77.433000px;}
.ls4_c00413{letter-spacing:256.233000px;}
.ls8_c00413{letter-spacing:261.033000px;}
.ls1_c00413{letter-spacing:665.433000px;}
.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;}
}
.ws6_c00413{word-spacing:-26.208000px;}
.ws0_c00413{word-spacing:-23.136000px;}
.ws4_c00413{word-spacing:-3.336000px;}
.ws1_c00413{word-spacing:-0.252000px;}
.ws7_c00413{word-spacing:0.000000px;}
.ws2_c00413{word-spacing:8.142000px;}
.ws3_c00413{word-spacing:21.738000px;}
.ws5_c00413{word-spacing:373.344000px;}
._38_c00413{margin-left:-62.445000px;}
._37_c00413{margin-left:-18.357000px;}
._3a_c00413{margin-left:-15.546000px;}
._44_c00413{margin-left:-12.558000px;}
._45_c00413{margin-left:-10.944000px;}
._13_c00413{margin-left:-9.792000px;}
._14_c00413{margin-left:-8.640000px;}
._28_c00413{margin-left:-7.008000px;}
._15_c00413{margin-left:-4.992000px;}
._1f_c00413{margin-left:-3.936000px;}
._1b_c00413{margin-left:-2.208000px;}
._1e_c00413{margin-left:-1.008000px;}
._d_c00413{width:1.056000px;}
._3_c00413{width:2.304000px;}
._11_c00413{width:3.360000px;}
._2_c00413{width:4.416000px;}
._0_c00413{width:6.240000px;}
._31_c00413{width:7.242000px;}
._1_c00413{width:8.256000px;}
._8_c00413{width:10.080000px;}
._9_c00413{width:11.136000px;}
._2b_c00413{width:12.288000px;}
._1d_c00413{width:13.536000px;}
._48_c00413{width:14.550000px;}
._16_c00413{width:15.792000px;}
._46_c00413{width:16.800000px;}
._21_c00413{width:18.432000px;}
._20_c00413{width:19.440000px;}
._4b_c00413{width:20.562000px;}
._f_c00413{width:21.888000px;}
._22_c00413{width:24.912000px;}
._24_c00413{width:26.400000px;}
._2a_c00413{width:27.456000px;}
._27_c00413{width:28.704000px;}
._26_c00413{width:29.952000px;}
._23_c00413{width:32.256000px;}
._3f_c00413{width:33.696000px;}
._1a_c00413{width:34.752000px;}
._7_c00413{width:35.904000px;}
._2e_c00413{width:36.936000px;}
._1c_c00413{width:38.880000px;}
._5_c00413{width:40.032000px;}
._25_c00413{width:41.520000px;}
._12_c00413{width:42.816000px;}
._30_c00413{width:43.824000px;}
._19_c00413{width:45.312000px;}
._18_c00413{width:47.424000px;}
._3d_c00413{width:48.528000px;}
._29_c00413{width:50.016000px;}
._e_c00413{width:51.072000px;}
._47_c00413{width:52.908000px;}
._c_c00413{width:54.240000px;}
._40_c00413{width:55.392000px;}
._10_c00413{width:56.448000px;}
._6_c00413{width:57.696000px;}
._2c_c00413{width:58.806000px;}
._b_c00413{width:60.000000px;}
._3c_c00413{width:61.728000px;}
._43_c00413{width:62.880000px;}
._a_c00413{width:64.032000px;}
._4_c00413{width:66.528000px;}
._3b_c00413{width:68.760000px;}
._41_c00413{width:70.902000px;}
._2f_c00413{width:81.060000px;}
._2d_c00413{width:87.282000px;}
._34_c00413{width:93.015000px;}
._35_c00413{width:120.357000px;}
._39_c00413{width:126.933000px;}
._33_c00413{width:158.340000px;}
._42_c00413{width:171.996000px;}
._17_c00413{width:174.240000px;}
._49_c00413{width:285.369000px;}
._3e_c00413{width:438.624000px;}
._32_c00413{width:510.354000px;}
._4a_c00413{width:623.670000px;}
._36_c00413{width:632.871000px;}
.fc2_c00413{color:transparent;}
.fc1_c00413{color:rgb(128,128,128);}
.fc0_c00413{color:rgb(0,0,0);}
.fs4_c00413{font-size:48.000000px;}
.fs2_c00413{font-size:78.000000px;}
.fs1_c00413{font-size:84.000000px;}
.fs3_c00413{font-size:87.000000px;}
.fs0_c00413{font-size:96.000000px;}
.y0_c00413{bottom:0.000000px;}
.y26_c00413{bottom:3.105000px;}
.y25_c00413{bottom:7.228369px;}
.y24_c00413{bottom:98.220000px;}
.y23_c00413{bottom:128.220000px;}
.y22_c00413{bottom:160.920000px;}
.y21_c00413{bottom:230.520000px;}
.y20_c00413{bottom:264.270000px;}
.y1f_c00413{bottom:301.320000px;}
.y1e_c00413{bottom:333.720000px;}
.y1d_c00413{bottom:366.420000px;}
.y1c_c00413{bottom:398.970000px;}
.y1b_c00413{bottom:430.620000px;}
.y1a_c00413{bottom:468.720000px;}
.y19_c00413{bottom:501.870000px;}
.y18_c00413{bottom:535.920000px;}
.y17_c00413{bottom:570.270000px;}
.y16_c00413{bottom:603.120000px;}
.y15_c00413{bottom:635.520000px;}
.y14_c00413{bottom:667.920000px;}
.y13_c00413{bottom:689.070000px;}
.y12_c00413{bottom:702.570000px;}
.y11_c00413{bottom:741.870000px;}
.y10_c00413{bottom:773.520000px;}
.yf_c00413{bottom:806.670000px;}
.ye_c00413{bottom:839.070000px;}
.yd_c00413{bottom:871.020000px;}
.yc_c00413{bottom:905.520000px;}
.yb_c00413{bottom:938.820000px;}
.ya_c00413{bottom:971.970000px;}
.y9_c00413{bottom:1004.670000px;}
.y8_c00413{bottom:1037.820000px;}
.y7_c00413{bottom:1071.270000px;}
.y6_c00413{bottom:1104.570000px;}
.y5_c00413{bottom:1138.620000px;}
.y4_c00413{bottom:1172.070000px;}
.y3_c00413{bottom:1204.770000px;}
.y2_c00413{bottom:1238.670000px;}
.y1_c00413{bottom:1271.970000px;}
.h4_c00413{height:13.200073px;}
.h5_c00413{height:43.804688px;}
.h3_c00413{height:110.151855px;}
.h2_c00413{height:121.546875px;}
.h1_c00413{height:1359.000000px;}
.h0_c00413{height:1359.150000px;}
.w2_c00413{width:104.875500px;}
.w1_c00413{width:848.250000px;}
.w0_c00413{width:848.325000px;}
.x0_c00413{left:0.000000px;}
.xa_c00413{left:25.200000px;}
.x8_c00413{left:26.700000px;}
.x7_c00413{left:28.350000px;}
.x6_c00413{left:30.600000px;}
.xb_c00413{left:53.250000px;}
.x5_c00413{left:57.600000px;}
.x9_c00413{left:106.200000px;}
.xd_c00413{left:241.200000px;}
.xc_c00413{left:244.950000px;}
.x4_c00413{left:246.000000px;}
.x2_c00413{left:247.500000px;}
.x1_c00413{left:249.150000px;}
.x3_c00413{left:298.350000px;}
.xf_c00413{left:375.976730px;}
.xe_c00413{left:778.500000px;}
@media print{
.v1_c00413{vertical-align:-122.666667pt;}
.v0_c00413{vertical-align:0.000000pt;}
.lsd_c00413{letter-spacing:-8.000000pt;}
.lsc_c00413{letter-spacing:0.000000pt;}
.ls6_c00413{letter-spacing:3.674667pt;}
.ls0_c00413{letter-spacing:5.973333pt;}
.ls5_c00413{letter-spacing:11.229333pt;}
.lse_c00413{letter-spacing:16.000000pt;}
.lsb_c00413{letter-spacing:26.696000pt;}
.ls9_c00413{letter-spacing:57.096000pt;}
.ls2_c00413{letter-spacing:62.962667pt;}
.ls3_c00413{letter-spacing:65.096000pt;}
.lsa_c00413{letter-spacing:66.696000pt;}
.ls7_c00413{letter-spacing:68.829333pt;}
.ls4_c00413{letter-spacing:227.762667pt;}
.ls8_c00413{letter-spacing:232.029333pt;}
.ls1_c00413{letter-spacing:591.496000pt;}
.ws6_c00413{word-spacing:-23.296000pt;}
.ws0_c00413{word-spacing:-20.565333pt;}
.ws4_c00413{word-spacing:-2.965333pt;}
.ws1_c00413{word-spacing:-0.224000pt;}
.ws7_c00413{word-spacing:0.000000pt;}
.ws2_c00413{word-spacing:7.237333pt;}
.ws3_c00413{word-spacing:19.322667pt;}
.ws5_c00413{word-spacing:331.861333pt;}
._38_c00413{margin-left:-55.506667pt;}
._37_c00413{margin-left:-16.317333pt;}
._3a_c00413{margin-left:-13.818667pt;}
._44_c00413{margin-left:-11.162667pt;}
._45_c00413{margin-left:-9.728000pt;}
._13_c00413{margin-left:-8.704000pt;}
._14_c00413{margin-left:-7.680000pt;}
._28_c00413{margin-left:-6.229333pt;}
._15_c00413{margin-left:-4.437333pt;}
._1f_c00413{margin-left:-3.498667pt;}
._1b_c00413{margin-left:-1.962667pt;}
._1e_c00413{margin-left:-0.896000pt;}
._d_c00413{width:0.938667pt;}
._3_c00413{width:2.048000pt;}
._11_c00413{width:2.986667pt;}
._2_c00413{width:3.925333pt;}
._0_c00413{width:5.546667pt;}
._31_c00413{width:6.437333pt;}
._1_c00413{width:7.338667pt;}
._8_c00413{width:8.960000pt;}
._9_c00413{width:9.898667pt;}
._2b_c00413{width:10.922667pt;}
._1d_c00413{width:12.032000pt;}
._48_c00413{width:12.933333pt;}
._16_c00413{width:14.037333pt;}
._46_c00413{width:14.933333pt;}
._21_c00413{width:16.384000pt;}
._20_c00413{width:17.280000pt;}
._4b_c00413{width:18.277333pt;}
._f_c00413{width:19.456000pt;}
._22_c00413{width:22.144000pt;}
._24_c00413{width:23.466667pt;}
._2a_c00413{width:24.405333pt;}
._27_c00413{width:25.514667pt;}
._26_c00413{width:26.624000pt;}
._23_c00413{width:28.672000pt;}
._3f_c00413{width:29.952000pt;}
._1a_c00413{width:30.890667pt;}
._7_c00413{width:31.914667pt;}
._2e_c00413{width:32.832000pt;}
._1c_c00413{width:34.560000pt;}
._5_c00413{width:35.584000pt;}
._25_c00413{width:36.906667pt;}
._12_c00413{width:38.058667pt;}
._30_c00413{width:38.954667pt;}
._19_c00413{width:40.277333pt;}
._18_c00413{width:42.154667pt;}
._3d_c00413{width:43.136000pt;}
._29_c00413{width:44.458667pt;}
._e_c00413{width:45.397333pt;}
._47_c00413{width:47.029333pt;}
._c_c00413{width:48.213333pt;}
._40_c00413{width:49.237333pt;}
._10_c00413{width:50.176000pt;}
._6_c00413{width:51.285333pt;}
._2c_c00413{width:52.272000pt;}
._b_c00413{width:53.333333pt;}
._3c_c00413{width:54.869333pt;}
._43_c00413{width:55.893333pt;}
._a_c00413{width:56.917333pt;}
._4_c00413{width:59.136000pt;}
._3b_c00413{width:61.120000pt;}
._41_c00413{width:63.024000pt;}
._2f_c00413{width:72.053333pt;}
._2d_c00413{width:77.584000pt;}
._34_c00413{width:82.680000pt;}
._35_c00413{width:106.984000pt;}
._39_c00413{width:112.829333pt;}
._33_c00413{width:140.746667pt;}
._42_c00413{width:152.885333pt;}
._17_c00413{width:154.880000pt;}
._49_c00413{width:253.661333pt;}
._3e_c00413{width:389.888000pt;}
._32_c00413{width:453.648000pt;}
._4a_c00413{width:554.373333pt;}
._36_c00413{width:562.552000pt;}
.fs4_c00413{font-size:42.666667pt;}
.fs2_c00413{font-size:69.333333pt;}
.fs1_c00413{font-size:74.666667pt;}
.fs3_c00413{font-size:77.333333pt;}
.fs0_c00413{font-size:85.333333pt;}
.y0_c00413{bottom:0.000000pt;}
.y26_c00413{bottom:2.760000pt;}
.y25_c00413{bottom:6.425217pt;}
.y24_c00413{bottom:87.306667pt;}
.y23_c00413{bottom:113.973333pt;}
.y22_c00413{bottom:143.040000pt;}
.y21_c00413{bottom:204.906667pt;}
.y20_c00413{bottom:234.906667pt;}
.y1f_c00413{bottom:267.840000pt;}
.y1e_c00413{bottom:296.640000pt;}
.y1d_c00413{bottom:325.706667pt;}
.y1c_c00413{bottom:354.640000pt;}
.y1b_c00413{bottom:382.773333pt;}
.y1a_c00413{bottom:416.640000pt;}
.y19_c00413{bottom:446.106667pt;}
.y18_c00413{bottom:476.373333pt;}
.y17_c00413{bottom:506.906667pt;}
.y16_c00413{bottom:536.106667pt;}
.y15_c00413{bottom:564.906667pt;}
.y14_c00413{bottom:593.706667pt;}
.y13_c00413{bottom:612.506667pt;}
.y12_c00413{bottom:624.506667pt;}
.y11_c00413{bottom:659.440000pt;}
.y10_c00413{bottom:687.573333pt;}
.yf_c00413{bottom:717.040000pt;}
.ye_c00413{bottom:745.840000pt;}
.yd_c00413{bottom:774.240000pt;}
.yc_c00413{bottom:804.906667pt;}
.yb_c00413{bottom:834.506667pt;}
.ya_c00413{bottom:863.973333pt;}
.y9_c00413{bottom:893.040000pt;}
.y8_c00413{bottom:922.506667pt;}
.y7_c00413{bottom:952.240000pt;}
.y6_c00413{bottom:981.840000pt;}
.y5_c00413{bottom:1012.106667pt;}
.y4_c00413{bottom:1041.840000pt;}
.y3_c00413{bottom:1070.906667pt;}
.y2_c00413{bottom:1101.040000pt;}
.y1_c00413{bottom:1130.640000pt;}
.h4_c00413{height:11.733399pt;}
.h5_c00413{height:38.937500pt;}
.h3_c00413{height:97.912760pt;}
.h2_c00413{height:108.041667pt;}
.h1_c00413{height:1208.000000pt;}
.h0_c00413{height:1208.133333pt;}
.w2_c00413{width:93.222667pt;}
.w1_c00413{width:754.000000pt;}
.w0_c00413{width:754.066667pt;}
.x0_c00413{left:0.000000pt;}
.xa_c00413{left:22.400000pt;}
.x8_c00413{left:23.733333pt;}
.x7_c00413{left:25.200000pt;}
.x6_c00413{left:27.200000pt;}
.xb_c00413{left:47.333333pt;}
.x5_c00413{left:51.200000pt;}
.x9_c00413{left:94.400000pt;}
.xd_c00413{left:214.400000pt;}
.xc_c00413{left:217.733333pt;}
.x4_c00413{left:218.666667pt;}
.x2_c00413{left:220.000000pt;}
.x1_c00413{left:221.466667pt;}
.x3_c00413{left:265.200000pt;}
.xf_c00413{left:334.201538pt;}
.xe_c00413{left:692.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_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_9bafc5b041963446aba4b4d4.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_bb377693eb1821ce0b77f589.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_36cf8311d31889227b9ce133.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_6e0579bbd98c800a58b9b09d.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_d16b19e60aa7aaeb9b42955c.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{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_c00414{vertical-align:0.000000px;}
.ls3_c00414{letter-spacing:-9.000000px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:18.144000px;}
.ls2_c00414{letter-spacing:93.000000px;}
.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:-38.388000px;}
.ws5_c00414{word-spacing:-25.939200px;}
.ws1_c00414{word-spacing:-20.244000px;}
.ws4_c00414{word-spacing:-0.252000px;}
.ws6_c00414{word-spacing:0.000000px;}
.ws2_c00414{word-spacing:0.924000px;}
.ws3_c00414{word-spacing:3.192000px;}
._28_c00414{margin-left:-92.805000px;}
._5d_c00414{margin-left:-91.260000px;}
._21_c00414{margin-left:-89.286000px;}
._27_c00414{margin-left:-83.490000px;}
._23_c00414{margin-left:-71.415000px;}
._24_c00414{margin-left:-70.242000px;}
._5e_c00414{margin-left:-51.798000px;}
._2a_c00414{margin-left:-35.832000px;}
._71_c00414{margin-left:-34.680000px;}
._1e_c00414{margin-left:-32.064000px;}
._62_c00414{margin-left:-27.840000px;}
._1f_c00414{margin-left:-23.424000px;}
._20_c00414{margin-left:-21.504000px;}
._49_c00414{margin-left:-19.584000px;}
._44_c00414{margin-left:-17.568000px;}
._41_c00414{margin-left:-16.200000px;}
._57_c00414{margin-left:-14.520000px;}
._6a_c00414{margin-left:-12.900000px;}
._3c_c00414{margin-left:-11.616000px;}
._25_c00414{margin-left:-10.413000px;}
._4d_c00414{margin-left:-8.904000px;}
._4b_c00414{margin-left:-7.488000px;}
._3f_c00414{margin-left:-6.168000px;}
._b_c00414{margin-left:-4.896000px;}
._0_c00414{margin-left:-3.360000px;}
._1_c00414{margin-left:-2.112000px;}
._42_c00414{margin-left:-1.056000px;}
._6_c00414{width:2.016000px;}
._4_c00414{width:3.072000px;}
._9_c00414{width:4.128000px;}
._3_c00414{width:5.280000px;}
._c_c00414{width:7.104000px;}
._33_c00414{width:8.448000px;}
._16_c00414{width:9.504000px;}
._34_c00414{width:10.656000px;}
._2e_c00414{width:11.712000px;}
._12_c00414{width:13.728000px;}
._1a_c00414{width:14.880000px;}
._2f_c00414{width:16.608000px;}
._2d_c00414{width:17.856000px;}
._59_c00414{width:18.960000px;}
._1b_c00414{width:20.064000px;}
._30_c00414{width:21.600000px;}
._3a_c00414{width:24.156000px;}
._18_c00414{width:25.248000px;}
._6f_c00414{width:26.289000px;}
._17_c00414{width:27.552000px;}
._11_c00414{width:28.704000px;}
._1c_c00414{width:30.528000px;}
._35_c00414{width:32.544000px;}
._5_c00414{width:34.272000px;}
._32_c00414{width:35.448000px;}
._7_c00414{width:36.864000px;}
._54_c00414{width:38.280000px;}
._a_c00414{width:39.360000px;}
._10_c00414{width:40.512000px;}
._5b_c00414{width:42.000000px;}
._3d_c00414{width:43.848000px;}
._2_c00414{width:45.408000px;}
._8_c00414{width:48.192000px;}
._13_c00414{width:49.728000px;}
._36_c00414{width:51.648000px;}
._50_c00414{width:52.884000px;}
._75_c00414{width:54.336000px;}
._37_c00414{width:55.341000px;}
._6d_c00414{width:57.984000px;}
._14_c00414{width:61.056000px;}
._51_c00414{width:62.904000px;}
._40_c00414{width:64.584000px;}
._2c_c00414{width:71.838000px;}
._3b_c00414{width:76.308000px;}
._67_c00414{width:78.240000px;}
._4e_c00414{width:80.220000px;}
._2b_c00414{width:84.234000px;}
._65_c00414{width:86.712000px;}
._4c_c00414{width:92.958000px;}
._55_c00414{width:101.088000px;}
._58_c00414{width:106.428000px;}
._5a_c00414{width:109.824000px;}
._56_c00414{width:112.800000px;}
._e_c00414{width:113.808000px;}
._31_c00414{width:133.440000px;}
._69_c00414{width:140.868000px;}
._60_c00414{width:151.245000px;}
._38_c00414{width:155.136000px;}
._77_c00414{width:157.392000px;}
._f_c00414{width:169.044000px;}
._5f_c00414{width:176.976000px;}
._6b_c00414{width:189.888000px;}
._39_c00414{width:192.624000px;}
._48_c00414{width:194.394000px;}
._70_c00414{width:197.700000px;}
._22_c00414{width:199.341000px;}
._66_c00414{width:226.296000px;}
._29_c00414{width:230.805000px;}
._53_c00414{width:232.632000px;}
._47_c00414{width:250.272000px;}
._63_c00414{width:254.400000px;}
._61_c00414{width:262.944000px;}
._74_c00414{width:298.914000px;}
._72_c00414{width:319.008000px;}
._68_c00414{width:326.052000px;}
._6c_c00414{width:332.640000px;}
._46_c00414{width:351.990000px;}
._4f_c00414{width:363.264000px;}
._73_c00414{width:396.600000px;}
._64_c00414{width:407.328000px;}
._45_c00414{width:444.480000px;}
._3e_c00414{width:448.104000px;}
._4a_c00414{width:449.664000px;}
._26_c00414{width:522.600000px;}
._52_c00414{width:559.488000px;}
._1d_c00414{width:609.792000px;}
._5c_c00414{width:616.728000px;}
._15_c00414{width:618.360000px;}
._19_c00414{width:645.360000px;}
._6e_c00414{width:669.960000px;}
._76_c00414{width:829.608000px;}
._43_c00414{width:1053.216000px;}
._78_c00414{width:2066.898000px;}
._d_c00414{width:2713.920000px;}
.fc2_c00414{color:transparent;}
.fc1_c00414{color:rgb(128,128,128);}
.fc0_c00414{color:rgb(0,0,0);}
.fs6_c00414{font-size:48.000000px;}
.fs4_c00414{font-size:67.200000px;}
.fs2_c00414{font-size:69.000000px;}
.fs3_c00414{font-size:81.000000px;}
.fs1_c00414{font-size:84.000000px;}
.fs0_c00414{font-size:96.000000px;}
.fs5_c00414{font-size:102.000000px;}
.y0_c00414{bottom:0.000000px;}
.y2a_c00414{bottom:3.105000px;}
.y29_c00414{bottom:7.228369px;}
.y28_c00414{bottom:111.720000px;}
.y27_c00414{bottom:147.420000px;}
.y26_c00414{bottom:180.570000px;}
.y25_c00414{bottom:215.670000px;}
.y24_c00414{bottom:249.720000px;}
.y23_c00414{bottom:283.170000px;}
.y22_c00414{bottom:317.520000px;}
.y21_c00414{bottom:350.970000px;}
.y20_c00414{bottom:384.420000px;}
.y1f_c00414{bottom:416.070000px;}
.y1e_c00414{bottom:436.320000px;}
.y1d_c00414{bottom:451.170000px;}
.y1c_c00414{bottom:468.420000px;}
.y1b_c00414{bottom:489.270000px;}
.y1a_c00414{bottom:520.320000px;}
.y19_c00414{bottom:553.770000px;}
.y18_c00414{bottom:586.620000px;}
.y17_c00414{bottom:619.320000px;}
.y16_c00414{bottom:651.720000px;}
.y15_c00414{bottom:685.770000px;}
.y14_c00414{bottom:701.370000px;}
.y13_c00414{bottom:720.870000px;}
.y12_c00414{bottom:753.870000px;}
.y11_c00414{bottom:787.770000px;}
.y10_c00414{bottom:821.370000px;}
.yf_c00414{bottom:857.220000px;}
.ye_c00414{bottom:888.570000px;}
.yd_c00414{bottom:921.270000px;}
.yc_c00414{bottom:953.370000px;}
.yb_c00414{bottom:987.570000px;}
.ya_c00414{bottom:1021.170000px;}
.y9_c00414{bottom:1054.020000px;}
.y8_c00414{bottom:1086.120000px;}
.y7_c00414{bottom:1120.770000px;}
.y6_c00414{bottom:1138.020000px;}
.y5_c00414{bottom:1154.220000px;}
.y4_c00414{bottom:1188.270000px;}
.y3_c00414{bottom:1221.120000px;}
.y2_c00414{bottom:1252.170000px;}
.y1_c00414{bottom:1287.270000px;}
.h5_c00414{height:13.200073px;}
.h6_c00414{height:43.804688px;}
.h3_c00414{height:87.804000px;}
.h2_c00414{height:121.546875px;}
.h4_c00414{height:129.143555px;}
.h0_c00414{height:1383.450000px;}
.h1_c00414{height:1383.750000px;}
.w2_c00414{width:104.875500px;}
.w0_c00414{width:878.025000px;}
.w1_c00414{width:878.250000px;}
.x0_c00414{left:0.000000px;}
.xf_c00414{left:31.500000px;}
.xc_c00414{left:33.300000px;}
.xd_c00414{left:34.350000px;}
.x7_c00414{left:35.400000px;}
.x6_c00414{left:36.450000px;}
.xa_c00414{left:37.500000px;}
.x8_c00414{left:38.700000px;}
.x4_c00414{left:39.750000px;}
.x1_c00414{left:40.800000px;}
.x2_c00414{left:42.300000px;}
.x3_c00414{left:51.600000px;}
.x5_c00414{left:65.100000px;}
.x9_c00414{left:96.750000px;}
.xe_c00414{left:167.700000px;}
.xb_c00414{left:207.450000px;}
.x10_c00414{left:390.826721px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls3_c00414{letter-spacing:-8.000000pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:16.128000pt;}
.ls2_c00414{letter-spacing:82.666667pt;}
.ws0_c00414{word-spacing:-34.122667pt;}
.ws5_c00414{word-spacing:-23.057067pt;}
.ws1_c00414{word-spacing:-17.994667pt;}
.ws4_c00414{word-spacing:-0.224000pt;}
.ws6_c00414{word-spacing:0.000000pt;}
.ws2_c00414{word-spacing:0.821333pt;}
.ws3_c00414{word-spacing:2.837333pt;}
._28_c00414{margin-left:-82.493333pt;}
._5d_c00414{margin-left:-81.120000pt;}
._21_c00414{margin-left:-79.365333pt;}
._27_c00414{margin-left:-74.213333pt;}
._23_c00414{margin-left:-63.480000pt;}
._24_c00414{margin-left:-62.437333pt;}
._5e_c00414{margin-left:-46.042667pt;}
._2a_c00414{margin-left:-31.850667pt;}
._71_c00414{margin-left:-30.826667pt;}
._1e_c00414{margin-left:-28.501333pt;}
._62_c00414{margin-left:-24.746667pt;}
._1f_c00414{margin-left:-20.821333pt;}
._20_c00414{margin-left:-19.114667pt;}
._49_c00414{margin-left:-17.408000pt;}
._44_c00414{margin-left:-15.616000pt;}
._41_c00414{margin-left:-14.400000pt;}
._57_c00414{margin-left:-12.906667pt;}
._6a_c00414{margin-left:-11.466667pt;}
._3c_c00414{margin-left:-10.325333pt;}
._25_c00414{margin-left:-9.256000pt;}
._4d_c00414{margin-left:-7.914667pt;}
._4b_c00414{margin-left:-6.656000pt;}
._3f_c00414{margin-left:-5.482667pt;}
._b_c00414{margin-left:-4.352000pt;}
._0_c00414{margin-left:-2.986667pt;}
._1_c00414{margin-left:-1.877333pt;}
._42_c00414{margin-left:-0.938667pt;}
._6_c00414{width:1.792000pt;}
._4_c00414{width:2.730667pt;}
._9_c00414{width:3.669333pt;}
._3_c00414{width:4.693333pt;}
._c_c00414{width:6.314667pt;}
._33_c00414{width:7.509333pt;}
._16_c00414{width:8.448000pt;}
._34_c00414{width:9.472000pt;}
._2e_c00414{width:10.410667pt;}
._12_c00414{width:12.202667pt;}
._1a_c00414{width:13.226667pt;}
._2f_c00414{width:14.762667pt;}
._2d_c00414{width:15.872000pt;}
._59_c00414{width:16.853333pt;}
._1b_c00414{width:17.834667pt;}
._30_c00414{width:19.200000pt;}
._3a_c00414{width:21.472000pt;}
._18_c00414{width:22.442667pt;}
._6f_c00414{width:23.368000pt;}
._17_c00414{width:24.490667pt;}
._11_c00414{width:25.514667pt;}
._1c_c00414{width:27.136000pt;}
._35_c00414{width:28.928000pt;}
._5_c00414{width:30.464000pt;}
._32_c00414{width:31.509333pt;}
._7_c00414{width:32.768000pt;}
._54_c00414{width:34.026667pt;}
._a_c00414{width:34.986667pt;}
._10_c00414{width:36.010667pt;}
._5b_c00414{width:37.333333pt;}
._3d_c00414{width:38.976000pt;}
._2_c00414{width:40.362667pt;}
._8_c00414{width:42.837333pt;}
._13_c00414{width:44.202667pt;}
._36_c00414{width:45.909333pt;}
._50_c00414{width:47.008000pt;}
._75_c00414{width:48.298667pt;}
._37_c00414{width:49.192000pt;}
._6d_c00414{width:51.541333pt;}
._14_c00414{width:54.272000pt;}
._51_c00414{width:55.914667pt;}
._40_c00414{width:57.408000pt;}
._2c_c00414{width:63.856000pt;}
._3b_c00414{width:67.829333pt;}
._67_c00414{width:69.546667pt;}
._4e_c00414{width:71.306667pt;}
._2b_c00414{width:74.874667pt;}
._65_c00414{width:77.077333pt;}
._4c_c00414{width:82.629333pt;}
._55_c00414{width:89.856000pt;}
._58_c00414{width:94.602667pt;}
._5a_c00414{width:97.621333pt;}
._56_c00414{width:100.266667pt;}
._e_c00414{width:101.162667pt;}
._31_c00414{width:118.613333pt;}
._69_c00414{width:125.216000pt;}
._60_c00414{width:134.440000pt;}
._38_c00414{width:137.898667pt;}
._77_c00414{width:139.904000pt;}
._f_c00414{width:150.261333pt;}
._5f_c00414{width:157.312000pt;}
._6b_c00414{width:168.789333pt;}
._39_c00414{width:171.221333pt;}
._48_c00414{width:172.794667pt;}
._70_c00414{width:175.733333pt;}
._22_c00414{width:177.192000pt;}
._66_c00414{width:201.152000pt;}
._29_c00414{width:205.160000pt;}
._53_c00414{width:206.784000pt;}
._47_c00414{width:222.464000pt;}
._63_c00414{width:226.133333pt;}
._61_c00414{width:233.728000pt;}
._74_c00414{width:265.701333pt;}
._72_c00414{width:283.562667pt;}
._68_c00414{width:289.824000pt;}
._6c_c00414{width:295.680000pt;}
._46_c00414{width:312.880000pt;}
._4f_c00414{width:322.901333pt;}
._73_c00414{width:352.533333pt;}
._64_c00414{width:362.069333pt;}
._45_c00414{width:395.093333pt;}
._3e_c00414{width:398.314667pt;}
._4a_c00414{width:399.701333pt;}
._26_c00414{width:464.533333pt;}
._52_c00414{width:497.322667pt;}
._1d_c00414{width:542.037333pt;}
._5c_c00414{width:548.202667pt;}
._15_c00414{width:549.653333pt;}
._19_c00414{width:573.653333pt;}
._6e_c00414{width:595.520000pt;}
._76_c00414{width:737.429333pt;}
._43_c00414{width:936.192000pt;}
._78_c00414{width:1837.242667pt;}
._d_c00414{width:2412.373333pt;}
.fs6_c00414{font-size:42.666667pt;}
.fs4_c00414{font-size:59.733333pt;}
.fs2_c00414{font-size:61.333333pt;}
.fs3_c00414{font-size:72.000000pt;}
.fs1_c00414{font-size:74.666667pt;}
.fs0_c00414{font-size:85.333333pt;}
.fs5_c00414{font-size:90.666667pt;}
.y0_c00414{bottom:0.000000pt;}
.y2a_c00414{bottom:2.760000pt;}
.y29_c00414{bottom:6.425217pt;}
.y28_c00414{bottom:99.306667pt;}
.y27_c00414{bottom:131.040000pt;}
.y26_c00414{bottom:160.506667pt;}
.y25_c00414{bottom:191.706667pt;}
.y24_c00414{bottom:221.973333pt;}
.y23_c00414{bottom:251.706667pt;}
.y22_c00414{bottom:282.240000pt;}
.y21_c00414{bottom:311.973333pt;}
.y20_c00414{bottom:341.706667pt;}
.y1f_c00414{bottom:369.840000pt;}
.y1e_c00414{bottom:387.840000pt;}
.y1d_c00414{bottom:401.040000pt;}
.y1c_c00414{bottom:416.373333pt;}
.y1b_c00414{bottom:434.906667pt;}
.y1a_c00414{bottom:462.506667pt;}
.y19_c00414{bottom:492.240000pt;}
.y18_c00414{bottom:521.440000pt;}
.y17_c00414{bottom:550.506667pt;}
.y16_c00414{bottom:579.306667pt;}
.y15_c00414{bottom:609.573333pt;}
.y14_c00414{bottom:623.440000pt;}
.y13_c00414{bottom:640.773333pt;}
.y12_c00414{bottom:670.106667pt;}
.y11_c00414{bottom:700.240000pt;}
.y10_c00414{bottom:730.106667pt;}
.yf_c00414{bottom:761.973333pt;}
.ye_c00414{bottom:789.840000pt;}
.yd_c00414{bottom:818.906667pt;}
.yc_c00414{bottom:847.440000pt;}
.yb_c00414{bottom:877.840000pt;}
.ya_c00414{bottom:907.706667pt;}
.y9_c00414{bottom:936.906667pt;}
.y8_c00414{bottom:965.440000pt;}
.y7_c00414{bottom:996.240000pt;}
.y6_c00414{bottom:1011.573333pt;}
.y5_c00414{bottom:1025.973333pt;}
.y4_c00414{bottom:1056.240000pt;}
.y3_c00414{bottom:1085.440000pt;}
.y2_c00414{bottom:1113.040000pt;}
.y1_c00414{bottom:1144.240000pt;}
.h5_c00414{height:11.733399pt;}
.h6_c00414{height:38.937500pt;}
.h3_c00414{height:78.048000pt;}
.h2_c00414{height:108.041667pt;}
.h4_c00414{height:114.794271pt;}
.h0_c00414{height:1229.733333pt;}
.h1_c00414{height:1230.000000pt;}
.w2_c00414{width:93.222667pt;}
.w0_c00414{width:780.466667pt;}
.w1_c00414{width:780.666667pt;}
.x0_c00414{left:0.000000pt;}
.xf_c00414{left:28.000000pt;}
.xc_c00414{left:29.600000pt;}
.xd_c00414{left:30.533333pt;}
.x7_c00414{left:31.466667pt;}
.x6_c00414{left:32.400000pt;}
.xa_c00414{left:33.333333pt;}
.x8_c00414{left:34.400000pt;}
.x4_c00414{left:35.333333pt;}
.x1_c00414{left:36.266667pt;}
.x2_c00414{left:37.600000pt;}
.x3_c00414{left:45.866667pt;}
.x5_c00414{left:57.866667pt;}
.x9_c00414{left:86.000000pt;}
.xe_c00414{left:149.066667pt;}
.xb_c00414{left:184.400000pt;}
.x10_c00414{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e449e64713b123eeee5f25f9.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_fe2d2f23cc90f91a4f6c7e76.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_c07b6e2bd6bd7ee08d3fe15c.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_d3edaa2ef4d563b6e9c5dc4c.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls3_c00415{letter-spacing:-9.000000px;}
.ls4_c00415{letter-spacing:-6.000000px;}
.ls2_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:3.300000px;}
.ls1_c00415{letter-spacing:3.654000px;}
.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;}
}
.ws3_c00415{word-spacing:-23.136000px;}
.ws2_c00415{word-spacing:-20.244000px;}
.ws0_c00415{word-spacing:-18.798000px;}
.ws4_c00415{word-spacing:0.000000px;}
.ws1_c00415{word-spacing:7.908000px;}
._2a_c00415{margin-left:-73.515000px;}
._48_c00415{margin-left:-67.788000px;}
._8_c00415{margin-left:-62.946000px;}
._2f_c00415{margin-left:-41.808000px;}
._46_c00415{margin-left:-28.137000px;}
._2e_c00415{margin-left:-20.445000px;}
._19_c00415{margin-left:-19.032000px;}
._20_c00415{margin-left:-16.536000px;}
._7_c00415{margin-left:-13.494000px;}
._3f_c00415{margin-left:-12.411000px;}
._1b_c00415{margin-left:-9.474000px;}
._10_c00415{margin-left:-7.920000px;}
._1d_c00415{margin-left:-6.516000px;}
._b_c00415{margin-left:-5.148000px;}
._a_c00415{margin-left:-3.822000px;}
._0_c00415{margin-left:-2.496000px;}
._1_c00415{margin-left:-1.482000px;}
._d_c00415{width:1.482000px;}
._17_c00415{width:2.496000px;}
._2_c00415{width:3.666000px;}
._28_c00415{width:4.824000px;}
._15_c00415{width:5.868000px;}
._14_c00415{width:6.942000px;}
._5_c00415{width:8.520000px;}
._45_c00415{width:9.528000px;}
._3_c00415{width:10.530000px;}
._c_c00415{width:12.306000px;}
._35_c00415{width:13.461000px;}
._4_c00415{width:14.664000px;}
._39_c00415{width:15.852000px;}
._3b_c00415{width:17.115000px;}
._31_c00415{width:18.273000px;}
._2d_c00415{width:19.755000px;}
._25_c00415{width:21.024000px;}
._26_c00415{width:22.854000px;}
._43_c00415{width:24.186000px;}
._23_c00415{width:25.224000px;}
._36_c00415{width:26.388000px;}
._3c_c00415{width:28.122000px;}
._40_c00415{width:29.184000px;}
._11_c00415{width:30.186000px;}
._3d_c00415{width:31.254000px;}
._e_c00415{width:32.526000px;}
._f_c00415{width:34.164000px;}
._6_c00415{width:35.646000px;}
._13_c00415{width:37.362000px;}
._16_c00415{width:38.997000px;}
._29_c00415{width:40.014000px;}
._1f_c00415{width:41.244000px;}
._1e_c00415{width:42.573000px;}
._24_c00415{width:44.088000px;}
._1c_c00415{width:45.438000px;}
._3a_c00415{width:47.691000px;}
._9_c00415{width:49.296000px;}
._12_c00415{width:51.090000px;}
._41_c00415{width:52.209000px;}
._34_c00415{width:53.637000px;}
._2c_c00415{width:54.780000px;}
._18_c00415{width:58.188000px;}
._2b_c00415{width:59.421000px;}
._38_c00415{width:60.606000px;}
._32_c00415{width:62.820000px;}
._22_c00415{width:64.818000px;}
._37_c00415{width:66.870000px;}
._42_c00415{width:68.652000px;}
._1a_c00415{width:71.682000px;}
._21_c00415{width:73.008000px;}
._33_c00415{width:81.624000px;}
._47_c00415{width:95.370000px;}
._27_c00415{width:99.357000px;}
._3e_c00415{width:174.570000px;}
._49_c00415{width:204.276000px;}
._44_c00415{width:220.011000px;}
._30_c00415{width:263.175000px;}
.fc2_c00415{color:transparent;}
.fc1_c00415{color:rgb(128,128,128);}
.fc0_c00415{color:rgb(0,0,0);}
.fs5_c00415{font-size:48.000000px;}
.fs4_c00415{font-size:60.000000px;}
.fs0_c00415{font-size:78.000000px;}
.fs3_c00415{font-size:84.000000px;}
.fs1_c00415{font-size:87.000000px;}
.fs2_c00415{font-size:96.000000px;}
.y0_c00415{bottom:0.000000px;}
.y3e_c00415{bottom:3.105000px;}
.y3d_c00415{bottom:7.228357px;}
.y3c_c00415{bottom:135.330000px;}
.y1a_c00415{bottom:147.180000px;}
.y3b_c00415{bottom:169.530000px;}
.y19_c00415{bottom:172.230000px;}
.y18_c00415{bottom:202.530000px;}
.y3a_c00415{bottom:203.280000px;}
.y17_c00415{bottom:232.530000px;}
.y39_c00415{bottom:237.930000px;}
.y16_c00415{bottom:262.230000px;}
.y38_c00415{bottom:272.130000px;}
.y37_c00415{bottom:306.180000px;}
.y36_c00415{bottom:340.230000px;}
.y15_c00415{bottom:358.530000px;}
.y35_c00415{bottom:373.680000px;}
.y14_c00415{bottom:390.480000px;}
.y34_c00415{bottom:407.730000px;}
.y13_c00415{bottom:419.280000px;}
.y33_c00415{bottom:441.480000px;}
.y12_c00415{bottom:448.230000px;}
.y32_c00415{bottom:474.930000px;}
.y11_c00415{bottom:477.930000px;}
.y10_c00415{bottom:508.380000px;}
.y31_c00415{bottom:508.980000px;}
.yf_c00415{bottom:537.630000px;}
.y30_c00415{bottom:542.430000px;}
.ye_c00415{bottom:567.030000px;}
.y2f_c00415{bottom:576.480000px;}
.yd_c00415{bottom:596.730000px;}
.y2e_c00415{bottom:609.630000px;}
.y2d_c00415{bottom:642.630000px;}
.y2c_c00415{bottom:676.680000px;}
.y2b_c00415{bottom:710.880000px;}
.y2a_c00415{bottom:744.180000px;}
.y29_c00415{bottom:777.630000px;}
.yc_c00415{bottom:792.480000px;}
.y28_c00415{bottom:811.080000px;}
.yb_c00415{bottom:823.530000px;}
.y27_c00415{bottom:844.830000px;}
.ya_c00415{bottom:853.230000px;}
.y26_c00415{bottom:878.580000px;}
.y9_c00415{bottom:882.930000px;}
.y25_c00415{bottom:912.030000px;}
.y8_c00415{bottom:912.330000px;}
.y7_c00415{bottom:942.630000px;}
.y24_c00415{bottom:945.330000px;}
.y23_c00415{bottom:979.380000px;}
.y22_c00415{bottom:1011.780000px;}
.y21_c00415{bottom:1045.230000px;}
.y20_c00415{bottom:1078.230000px;}
.y1f_c00415{bottom:1111.680000px;}
.y6_c00415{bottom:1130.730000px;}
.y1e_c00415{bottom:1145.130000px;}
.y5_c00415{bottom:1162.080000px;}
.y1d_c00415{bottom:1178.880000px;}
.y4_c00415{bottom:1190.730000px;}
.y1c_c00415{bottom:1212.330000px;}
.y3_c00415{bottom:1219.830000px;}
.y1b_c00415{bottom:1244.730000px;}
.y2_c00415{bottom:1249.530000px;}
.y1_c00415{bottom:1278.480000px;}
.h6_c00415{height:13.200074px;}
.h7_c00415{height:43.804688px;}
.h2_c00415{height:91.291992px;}
.h4_c00415{height:98.756836px;}
.h3_c00415{height:110.151855px;}
.h5_c00415{height:121.546875px;}
.h0_c00415{height:1382.700000px;}
.h1_c00415{height:1383.000000px;}
.w2_c00415{width:104.875500px;}
.w0_c00415{width:863.175000px;}
.w1_c00415{width:863.250000px;}
.x0_c00415{left:0.000000px;}
.x8_c00415{left:39.150000px;}
.x9_c00415{left:40.200000px;}
.x7_c00415{left:41.400000px;}
.x5_c00415{left:44.550000px;}
.x4_c00415{left:46.200000px;}
.x1_c00415{left:47.850000px;}
.x2_c00415{left:48.900000px;}
.xa_c00415{left:68.400000px;}
.x6_c00415{left:72.150000px;}
.x3_c00415{left:86.100000px;}
.x12_c00415{left:260.100000px;}
.x11_c00415{left:261.600000px;}
.xf_c00415{left:263.850000px;}
.xd_c00415{left:264.900000px;}
.xb_c00415{left:266.550000px;}
.xc_c00415{left:267.600000px;}
.xe_c00415{left:316.800000px;}
.x10_c00415{left:323.250000px;}
.x13_c00415{left:383.401749px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls3_c00415{letter-spacing:-8.000000pt;}
.ls4_c00415{letter-spacing:-5.333333pt;}
.ls2_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:2.933333pt;}
.ls1_c00415{letter-spacing:3.248000pt;}
.ws3_c00415{word-spacing:-20.565333pt;}
.ws2_c00415{word-spacing:-17.994667pt;}
.ws0_c00415{word-spacing:-16.709333pt;}
.ws4_c00415{word-spacing:0.000000pt;}
.ws1_c00415{word-spacing:7.029333pt;}
._2a_c00415{margin-left:-65.346667pt;}
._48_c00415{margin-left:-60.256000pt;}
._8_c00415{margin-left:-55.952000pt;}
._2f_c00415{margin-left:-37.162667pt;}
._46_c00415{margin-left:-25.010667pt;}
._2e_c00415{margin-left:-18.173333pt;}
._19_c00415{margin-left:-16.917333pt;}
._20_c00415{margin-left:-14.698667pt;}
._7_c00415{margin-left:-11.994667pt;}
._3f_c00415{margin-left:-11.032000pt;}
._1b_c00415{margin-left:-8.421333pt;}
._10_c00415{margin-left:-7.040000pt;}
._1d_c00415{margin-left:-5.792000pt;}
._b_c00415{margin-left:-4.576000pt;}
._a_c00415{margin-left:-3.397333pt;}
._0_c00415{margin-left:-2.218667pt;}
._1_c00415{margin-left:-1.317333pt;}
._d_c00415{width:1.317333pt;}
._17_c00415{width:2.218667pt;}
._2_c00415{width:3.258667pt;}
._28_c00415{width:4.288000pt;}
._15_c00415{width:5.216000pt;}
._14_c00415{width:6.170667pt;}
._5_c00415{width:7.573333pt;}
._45_c00415{width:8.469333pt;}
._3_c00415{width:9.360000pt;}
._c_c00415{width:10.938667pt;}
._35_c00415{width:11.965333pt;}
._4_c00415{width:13.034667pt;}
._39_c00415{width:14.090667pt;}
._3b_c00415{width:15.213333pt;}
._31_c00415{width:16.242667pt;}
._2d_c00415{width:17.560000pt;}
._25_c00415{width:18.688000pt;}
._26_c00415{width:20.314667pt;}
._43_c00415{width:21.498667pt;}
._23_c00415{width:22.421333pt;}
._36_c00415{width:23.456000pt;}
._3c_c00415{width:24.997333pt;}
._40_c00415{width:25.941333pt;}
._11_c00415{width:26.832000pt;}
._3d_c00415{width:27.781333pt;}
._e_c00415{width:28.912000pt;}
._f_c00415{width:30.368000pt;}
._6_c00415{width:31.685333pt;}
._13_c00415{width:33.210667pt;}
._16_c00415{width:34.664000pt;}
._29_c00415{width:35.568000pt;}
._1f_c00415{width:36.661333pt;}
._1e_c00415{width:37.842667pt;}
._24_c00415{width:39.189333pt;}
._1c_c00415{width:40.389333pt;}
._3a_c00415{width:42.392000pt;}
._9_c00415{width:43.818667pt;}
._12_c00415{width:45.413333pt;}
._41_c00415{width:46.408000pt;}
._34_c00415{width:47.677333pt;}
._2c_c00415{width:48.693333pt;}
._18_c00415{width:51.722667pt;}
._2b_c00415{width:52.818667pt;}
._38_c00415{width:53.872000pt;}
._32_c00415{width:55.840000pt;}
._22_c00415{width:57.616000pt;}
._37_c00415{width:59.440000pt;}
._42_c00415{width:61.024000pt;}
._1a_c00415{width:63.717333pt;}
._21_c00415{width:64.896000pt;}
._33_c00415{width:72.554667pt;}
._47_c00415{width:84.773333pt;}
._27_c00415{width:88.317333pt;}
._3e_c00415{width:155.173333pt;}
._49_c00415{width:181.578667pt;}
._44_c00415{width:195.565333pt;}
._30_c00415{width:233.933333pt;}
.fs5_c00415{font-size:42.666667pt;}
.fs4_c00415{font-size:53.333333pt;}
.fs0_c00415{font-size:69.333333pt;}
.fs3_c00415{font-size:74.666667pt;}
.fs1_c00415{font-size:77.333333pt;}
.fs2_c00415{font-size:85.333333pt;}
.y0_c00415{bottom:0.000000pt;}
.y3e_c00415{bottom:2.760000pt;}
.y3d_c00415{bottom:6.425206pt;}
.y3c_c00415{bottom:120.293333pt;}
.y1a_c00415{bottom:130.826667pt;}
.y3b_c00415{bottom:150.693333pt;}
.y19_c00415{bottom:153.093333pt;}
.y18_c00415{bottom:180.026667pt;}
.y3a_c00415{bottom:180.693333pt;}
.y17_c00415{bottom:206.693333pt;}
.y39_c00415{bottom:211.493333pt;}
.y16_c00415{bottom:233.093333pt;}
.y38_c00415{bottom:241.893333pt;}
.y37_c00415{bottom:272.160000pt;}
.y36_c00415{bottom:302.426667pt;}
.y15_c00415{bottom:318.693333pt;}
.y35_c00415{bottom:332.160000pt;}
.y14_c00415{bottom:347.093333pt;}
.y34_c00415{bottom:362.426667pt;}
.y13_c00415{bottom:372.693333pt;}
.y33_c00415{bottom:392.426667pt;}
.y12_c00415{bottom:398.426667pt;}
.y32_c00415{bottom:422.160000pt;}
.y11_c00415{bottom:424.826667pt;}
.y10_c00415{bottom:451.893333pt;}
.y31_c00415{bottom:452.426667pt;}
.yf_c00415{bottom:477.893333pt;}
.y30_c00415{bottom:482.160000pt;}
.ye_c00415{bottom:504.026667pt;}
.y2f_c00415{bottom:512.426667pt;}
.yd_c00415{bottom:530.426667pt;}
.y2e_c00415{bottom:541.893333pt;}
.y2d_c00415{bottom:571.226667pt;}
.y2c_c00415{bottom:601.493333pt;}
.y2b_c00415{bottom:631.893333pt;}
.y2a_c00415{bottom:661.493333pt;}
.y29_c00415{bottom:691.226667pt;}
.yc_c00415{bottom:704.426667pt;}
.y28_c00415{bottom:720.960000pt;}
.yb_c00415{bottom:732.026667pt;}
.y27_c00415{bottom:750.960000pt;}
.ya_c00415{bottom:758.426667pt;}
.y26_c00415{bottom:780.960000pt;}
.y9_c00415{bottom:784.826667pt;}
.y25_c00415{bottom:810.693333pt;}
.y8_c00415{bottom:810.960000pt;}
.y7_c00415{bottom:837.893333pt;}
.y24_c00415{bottom:840.293333pt;}
.y23_c00415{bottom:870.560000pt;}
.y22_c00415{bottom:899.360000pt;}
.y21_c00415{bottom:929.093333pt;}
.y20_c00415{bottom:958.426667pt;}
.y1f_c00415{bottom:988.160000pt;}
.y6_c00415{bottom:1005.093333pt;}
.y1e_c00415{bottom:1017.893333pt;}
.y5_c00415{bottom:1032.960000pt;}
.y1d_c00415{bottom:1047.893333pt;}
.y4_c00415{bottom:1058.426667pt;}
.y1c_c00415{bottom:1077.626667pt;}
.y3_c00415{bottom:1084.293333pt;}
.y1b_c00415{bottom:1106.426667pt;}
.y2_c00415{bottom:1110.693333pt;}
.y1_c00415{bottom:1136.426667pt;}
.h6_c00415{height:11.733399pt;}
.h7_c00415{height:38.937500pt;}
.h2_c00415{height:81.148438pt;}
.h4_c00415{height:87.783854pt;}
.h3_c00415{height:97.912760pt;}
.h5_c00415{height:108.041667pt;}
.h0_c00415{height:1229.066667pt;}
.h1_c00415{height:1229.333333pt;}
.w2_c00415{width:93.222667pt;}
.w0_c00415{width:767.266667pt;}
.w1_c00415{width:767.333333pt;}
.x0_c00415{left:0.000000pt;}
.x8_c00415{left:34.800000pt;}
.x9_c00415{left:35.733333pt;}
.x7_c00415{left:36.800000pt;}
.x5_c00415{left:39.600000pt;}
.x4_c00415{left:41.066667pt;}
.x1_c00415{left:42.533333pt;}
.x2_c00415{left:43.466667pt;}
.xa_c00415{left:60.800000pt;}
.x6_c00415{left:64.133333pt;}
.x3_c00415{left:76.533333pt;}
.x12_c00415{left:231.200000pt;}
.x11_c00415{left:232.533333pt;}
.xf_c00415{left:234.533333pt;}
.xd_c00415{left:235.466667pt;}
.xb_c00415{left:236.933333pt;}
.xc_c00415{left:237.866667pt;}
.xe_c00415{left:281.600000pt;}
.x10_c00415{left:287.333333pt;}
.x13_c00415{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_242d0fee1eb47262b87bcda6.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_349cfc2bca6077607d7e6639.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls2_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:51.864000px;}
.ls1_c00416{letter-spacing:70.464000px;}
.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:-20.967000px;}
.ws1_c00416{word-spacing:-20.244000px;}
.ws3_c00416{word-spacing:-18.798000px;}
.ws4_c00416{word-spacing:0.000000px;}
.ws0_c00416{word-spacing:4.284000px;}
._3d_c00416{margin-left:-71.952000px;}
._38_c00416{margin-left:-26.688000px;}
._35_c00416{margin-left:-24.864000px;}
._1b_c00416{margin-left:-20.832000px;}
._16_c00416{margin-left:-19.104000px;}
._19_c00416{margin-left:-17.376000px;}
._2b_c00416{margin-left:-16.320000px;}
._47_c00416{margin-left:-13.344000px;}
._30_c00416{margin-left:-10.752000px;}
._28_c00416{margin-left:-7.584000px;}
._61_c00416{margin-left:-6.480000px;}
._26_c00416{margin-left:-5.472000px;}
._13_c00416{margin-left:-3.828000px;}
._14_c00416{margin-left:-2.760000px;}
._12_c00416{margin-left:-1.344000px;}
._5_c00416{width:1.632000px;}
._1_c00416{width:2.784000px;}
._65_c00416{width:3.786000px;}
._3_c00416{width:4.800000px;}
._f_c00416{width:5.952000px;}
._d_c00416{width:7.008000px;}
._a_c00416{width:8.190000px;}
._9_c00416{width:9.528000px;}
._c_c00416{width:10.818000px;}
._0_c00416{width:12.936000px;}
._2e_c00416{width:14.856000px;}
._23_c00416{width:16.704000px;}
._41_c00416{width:17.790000px;}
._31_c00416{width:19.560000px;}
._2c_c00416{width:21.672000px;}
._5e_c00416{width:23.892000px;}
._1a_c00416{width:25.440000px;}
._4f_c00416{width:26.478000px;}
._4_c00416{width:27.552000px;}
._2d_c00416{width:30.678000px;}
._20_c00416{width:32.544000px;}
._6_c00416{width:34.080000px;}
._36_c00416{width:35.328000px;}
._42_c00416{width:36.408000px;}
._3f_c00416{width:38.784000px;}
._48_c00416{width:40.296000px;}
._b_c00416{width:41.376000px;}
._7_c00416{width:42.528000px;}
._10_c00416{width:44.352000px;}
._21_c00416{width:45.438000px;}
._22_c00416{width:46.944000px;}
._51_c00416{width:48.000000px;}
._32_c00416{width:50.016000px;}
._3a_c00416{width:52.068000px;}
._5f_c00416{width:53.592000px;}
._e_c00416{width:55.776000px;}
._17_c00416{width:57.888000px;}
._52_c00416{width:59.718000px;}
._50_c00416{width:61.644000px;}
._46_c00416{width:62.700000px;}
._62_c00416{width:65.160000px;}
._6b_c00416{width:67.878000px;}
._69_c00416{width:69.396000px;}
._63_c00416{width:71.088000px;}
._44_c00416{width:73.968000px;}
._6a_c00416{width:75.612000px;}
._5b_c00416{width:84.864000px;}
._5a_c00416{width:86.400000px;}
._68_c00416{width:88.638000px;}
._6e_c00416{width:92.694000px;}
._3c_c00416{width:97.026000px;}
._45_c00416{width:100.284000px;}
._43_c00416{width:104.418000px;}
._3b_c00416{width:105.600000px;}
._1d_c00416{width:108.960000px;}
._3e_c00416{width:113.952000px;}
._1c_c00416{width:131.328000px;}
._64_c00416{width:136.416000px;}
._4a_c00416{width:150.966000px;}
._58_c00416{width:159.240000px;}
._4c_c00416{width:162.168000px;}
._66_c00416{width:176.004000px;}
._57_c00416{width:177.336000px;}
._54_c00416{width:187.866000px;}
._8_c00416{width:199.248000px;}
._1e_c00416{width:201.984000px;}
._15_c00416{width:213.672000px;}
._25_c00416{width:224.862000px;}
._6c_c00416{width:228.468000px;}
._18_c00416{width:242.400000px;}
._2a_c00416{width:248.064000px;}
._40_c00416{width:250.224000px;}
._34_c00416{width:253.056000px;}
._11_c00416{width:267.408000px;}
._67_c00416{width:272.424000px;}
._60_c00416{width:283.032000px;}
._59_c00416{width:325.104000px;}
._39_c00416{width:333.240000px;}
._4b_c00416{width:345.588000px;}
._1f_c00416{width:354.576000px;}
._53_c00416{width:424.656000px;}
._4d_c00416{width:448.218000px;}
._27_c00416{width:458.592000px;}
._5d_c00416{width:487.704000px;}
._49_c00416{width:497.544000px;}
._33_c00416{width:510.720000px;}
._2_c00416{width:521.376000px;}
._24_c00416{width:540.306000px;}
._55_c00416{width:560.694000px;}
._2f_c00416{width:705.624000px;}
._6d_c00416{width:724.512000px;}
._5c_c00416{width:818.016000px;}
._29_c00416{width:828.864000px;}
._37_c00416{width:1249.224000px;}
._4e_c00416{width:1636.194000px;}
._56_c00416{width:2365.560000px;}
.fc2_c00416{color:transparent;}
.fc1_c00416{color:rgb(128,128,128);}
.fc0_c00416{color:rgb(0,0,0);}
.fs4_c00416{font-size:48.000000px;}
.fs2_c00416{font-size:78.000000px;}
.fs0_c00416{font-size:84.000000px;}
.fs3_c00416{font-size:87.000000px;}
.fs1_c00416{font-size:96.000000px;}
.y0_c00416{bottom:0.000000px;}
.y2b_c00416{bottom:3.105000px;}
.y2a_c00416{bottom:7.228363px;}
.y29_c00416{bottom:94.500000px;}
.y28_c00416{bottom:128.550000px;}
.y27_c00416{bottom:162.900000px;}
.y26_c00416{bottom:197.700000px;}
.y25_c00416{bottom:232.200000px;}
.y24_c00416{bottom:264.300000px;}
.y23_c00416{bottom:298.350000px;}
.y22_c00416{bottom:331.650000px;}
.y21_c00416{bottom:365.550000px;}
.y20_c00416{bottom:399.150000px;}
.y1f_c00416{bottom:432.000000px;}
.y1e_c00416{bottom:464.400000px;}
.y1d_c00416{bottom:497.100000px;}
.y1c_c00416{bottom:519.000000px;}
.y1b_c00416{bottom:532.950000px;}
.y1a_c00416{bottom:564.000000px;}
.y19_c00416{bottom:600.450000px;}
.y18_c00416{bottom:634.500000px;}
.y17_c00416{bottom:669.900000px;}
.y16_c00416{bottom:702.000000px;}
.y15_c00416{bottom:735.000000px;}
.y14_c00416{bottom:768.750000px;}
.y13_c00416{bottom:801.900000px;}
.y12_c00416{bottom:820.050000px;}
.y11_c00416{bottom:834.600000px;}
.y10_c00416{bottom:869.700000px;}
.yf_c00416{bottom:903.750000px;}
.ye_c00416{bottom:935.850000px;}
.yd_c00416{bottom:967.950000px;}
.yc_c00416{bottom:1000.050000px;}
.yb_c00416{bottom:1032.750000px;}
.ya_c00416{bottom:1066.800000px;}
.y9_c00416{bottom:1101.150000px;}
.y8_c00416{bottom:1134.300000px;}
.y7_c00416{bottom:1167.300000px;}
.y6_c00416{bottom:1185.000000px;}
.y5_c00416{bottom:1200.450000px;}
.y4_c00416{bottom:1214.250000px;}
.y3_c00416{bottom:1236.600000px;}
.y2_c00416{bottom:1268.700000px;}
.y1_c00416{bottom:1300.050000px;}
.h3_c00416{height:13.200074px;}
.h4_c00416{height:43.804688px;}
.h1_c00416{height:98.314453px;}
.h2_c00416{height:121.546875px;}
.h0_c00416{height:1363.500000px;}
.w2_c00416{width:104.875500px;}
.w1_c00416{width:864.750000px;}
.w0_c00416{width:865.050000px;}
.x0_c00416{left:0.000000px;}
.xe_c00416{left:30.450000px;}
.xc_c00416{left:32.100000px;}
.xa_c00416{left:33.750000px;}
.xb_c00416{left:34.800000px;}
.x9_c00416{left:36.000000px;}
.x7_c00416{left:38.100000px;}
.x3_c00416{left:40.800000px;}
.x5_c00416{left:41.850000px;}
.x6_c00416{left:42.900000px;}
.x2_c00416{left:44.100000px;}
.xd_c00416{left:45.150000px;}
.x8_c00416{left:81.750000px;}
.x10_c00416{left:88.800000px;}
.xf_c00416{left:99.900000px;}
.x4_c00416{left:153.900000px;}
.x11_c00416{left:310.800000px;}
.x12_c00416{left:384.339249px;}
.x1_c00416{left:523.500000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls2_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:46.101333pt;}
.ls1_c00416{letter-spacing:62.634667pt;}
.ws2_c00416{word-spacing:-18.637333pt;}
.ws1_c00416{word-spacing:-17.994667pt;}
.ws3_c00416{word-spacing:-16.709333pt;}
.ws4_c00416{word-spacing:0.000000pt;}
.ws0_c00416{word-spacing:3.808000pt;}
._3d_c00416{margin-left:-63.957333pt;}
._38_c00416{margin-left:-23.722667pt;}
._35_c00416{margin-left:-22.101333pt;}
._1b_c00416{margin-left:-18.517333pt;}
._16_c00416{margin-left:-16.981333pt;}
._19_c00416{margin-left:-15.445333pt;}
._2b_c00416{margin-left:-14.506667pt;}
._47_c00416{margin-left:-11.861333pt;}
._30_c00416{margin-left:-9.557333pt;}
._28_c00416{margin-left:-6.741333pt;}
._61_c00416{margin-left:-5.760000pt;}
._26_c00416{margin-left:-4.864000pt;}
._13_c00416{margin-left:-3.402667pt;}
._14_c00416{margin-left:-2.453333pt;}
._12_c00416{margin-left:-1.194667pt;}
._5_c00416{width:1.450667pt;}
._1_c00416{width:2.474667pt;}
._65_c00416{width:3.365333pt;}
._3_c00416{width:4.266667pt;}
._f_c00416{width:5.290667pt;}
._d_c00416{width:6.229333pt;}
._a_c00416{width:7.280000pt;}
._9_c00416{width:8.469333pt;}
._c_c00416{width:9.616000pt;}
._0_c00416{width:11.498667pt;}
._2e_c00416{width:13.205333pt;}
._23_c00416{width:14.848000pt;}
._41_c00416{width:15.813333pt;}
._31_c00416{width:17.386667pt;}
._2c_c00416{width:19.264000pt;}
._5e_c00416{width:21.237333pt;}
._1a_c00416{width:22.613333pt;}
._4f_c00416{width:23.536000pt;}
._4_c00416{width:24.490667pt;}
._2d_c00416{width:27.269333pt;}
._20_c00416{width:28.928000pt;}
._6_c00416{width:30.293333pt;}
._36_c00416{width:31.402667pt;}
._42_c00416{width:32.362667pt;}
._3f_c00416{width:34.474667pt;}
._48_c00416{width:35.818667pt;}
._b_c00416{width:36.778667pt;}
._7_c00416{width:37.802667pt;}
._10_c00416{width:39.424000pt;}
._21_c00416{width:40.389333pt;}
._22_c00416{width:41.728000pt;}
._51_c00416{width:42.666667pt;}
._32_c00416{width:44.458667pt;}
._3a_c00416{width:46.282667pt;}
._5f_c00416{width:47.637333pt;}
._e_c00416{width:49.578667pt;}
._17_c00416{width:51.456000pt;}
._52_c00416{width:53.082667pt;}
._50_c00416{width:54.794667pt;}
._46_c00416{width:55.733333pt;}
._62_c00416{width:57.920000pt;}
._6b_c00416{width:60.336000pt;}
._69_c00416{width:61.685333pt;}
._63_c00416{width:63.189333pt;}
._44_c00416{width:65.749333pt;}
._6a_c00416{width:67.210667pt;}
._5b_c00416{width:75.434667pt;}
._5a_c00416{width:76.800000pt;}
._68_c00416{width:78.789333pt;}
._6e_c00416{width:82.394667pt;}
._3c_c00416{width:86.245333pt;}
._45_c00416{width:89.141333pt;}
._43_c00416{width:92.816000pt;}
._3b_c00416{width:93.866667pt;}
._1d_c00416{width:96.853333pt;}
._3e_c00416{width:101.290667pt;}
._1c_c00416{width:116.736000pt;}
._64_c00416{width:121.258667pt;}
._4a_c00416{width:134.192000pt;}
._58_c00416{width:141.546667pt;}
._4c_c00416{width:144.149333pt;}
._66_c00416{width:156.448000pt;}
._57_c00416{width:157.632000pt;}
._54_c00416{width:166.992000pt;}
._8_c00416{width:177.109333pt;}
._1e_c00416{width:179.541333pt;}
._15_c00416{width:189.930667pt;}
._25_c00416{width:199.877333pt;}
._6c_c00416{width:203.082667pt;}
._18_c00416{width:215.466667pt;}
._2a_c00416{width:220.501333pt;}
._40_c00416{width:222.421333pt;}
._34_c00416{width:224.938667pt;}
._11_c00416{width:237.696000pt;}
._67_c00416{width:242.154667pt;}
._60_c00416{width:251.584000pt;}
._59_c00416{width:288.981333pt;}
._39_c00416{width:296.213333pt;}
._4b_c00416{width:307.189333pt;}
._1f_c00416{width:315.178667pt;}
._53_c00416{width:377.472000pt;}
._4d_c00416{width:398.416000pt;}
._27_c00416{width:407.637333pt;}
._5d_c00416{width:433.514667pt;}
._49_c00416{width:442.261333pt;}
._33_c00416{width:453.973333pt;}
._2_c00416{width:463.445333pt;}
._24_c00416{width:480.272000pt;}
._55_c00416{width:498.394667pt;}
._2f_c00416{width:627.221333pt;}
._6d_c00416{width:644.010667pt;}
._5c_c00416{width:727.125333pt;}
._29_c00416{width:736.768000pt;}
._37_c00416{width:1110.421333pt;}
._4e_c00416{width:1454.394667pt;}
._56_c00416{width:2102.720000pt;}
.fs4_c00416{font-size:42.666667pt;}
.fs2_c00416{font-size:69.333333pt;}
.fs0_c00416{font-size:74.666667pt;}
.fs3_c00416{font-size:77.333333pt;}
.fs1_c00416{font-size:85.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y2b_c00416{bottom:2.760000pt;}
.y2a_c00416{bottom:6.425212pt;}
.y29_c00416{bottom:84.000000pt;}
.y28_c00416{bottom:114.266667pt;}
.y27_c00416{bottom:144.800000pt;}
.y26_c00416{bottom:175.733333pt;}
.y25_c00416{bottom:206.400000pt;}
.y24_c00416{bottom:234.933333pt;}
.y23_c00416{bottom:265.200000pt;}
.y22_c00416{bottom:294.800000pt;}
.y21_c00416{bottom:324.933333pt;}
.y20_c00416{bottom:354.800000pt;}
.y1f_c00416{bottom:384.000000pt;}
.y1e_c00416{bottom:412.800000pt;}
.y1d_c00416{bottom:441.866667pt;}
.y1c_c00416{bottom:461.333333pt;}
.y1b_c00416{bottom:473.733333pt;}
.y1a_c00416{bottom:501.333333pt;}
.y19_c00416{bottom:533.733333pt;}
.y18_c00416{bottom:564.000000pt;}
.y17_c00416{bottom:595.466667pt;}
.y16_c00416{bottom:624.000000pt;}
.y15_c00416{bottom:653.333333pt;}
.y14_c00416{bottom:683.333333pt;}
.y13_c00416{bottom:712.800000pt;}
.y12_c00416{bottom:728.933333pt;}
.y11_c00416{bottom:741.866667pt;}
.y10_c00416{bottom:773.066667pt;}
.yf_c00416{bottom:803.333333pt;}
.ye_c00416{bottom:831.866667pt;}
.yd_c00416{bottom:860.400000pt;}
.yc_c00416{bottom:888.933333pt;}
.yb_c00416{bottom:918.000000pt;}
.ya_c00416{bottom:948.266667pt;}
.y9_c00416{bottom:978.800000pt;}
.y8_c00416{bottom:1008.266667pt;}
.y7_c00416{bottom:1037.600000pt;}
.y6_c00416{bottom:1053.333333pt;}
.y5_c00416{bottom:1067.066667pt;}
.y4_c00416{bottom:1079.333333pt;}
.y3_c00416{bottom:1099.200000pt;}
.y2_c00416{bottom:1127.733333pt;}
.y1_c00416{bottom:1155.600000pt;}
.h3_c00416{height:11.733399pt;}
.h4_c00416{height:38.937500pt;}
.h1_c00416{height:87.390625pt;}
.h2_c00416{height:108.041667pt;}
.h0_c00416{height:1212.000000pt;}
.w2_c00416{width:93.222667pt;}
.w1_c00416{width:768.666667pt;}
.w0_c00416{width:768.933333pt;}
.x0_c00416{left:0.000000pt;}
.xe_c00416{left:27.066667pt;}
.xc_c00416{left:28.533333pt;}
.xa_c00416{left:30.000000pt;}
.xb_c00416{left:30.933333pt;}
.x9_c00416{left:32.000000pt;}
.x7_c00416{left:33.866667pt;}
.x3_c00416{left:36.266667pt;}
.x5_c00416{left:37.200000pt;}
.x6_c00416{left:38.133333pt;}
.x2_c00416{left:39.200000pt;}
.xd_c00416{left:40.133333pt;}
.x8_c00416{left:72.666667pt;}
.x10_c00416{left:78.933333pt;}
.xf_c00416{left:88.800000pt;}
.x4_c00416{left:136.800000pt;}
.x11_c00416{left:276.266667pt;}
.x12_c00416{left:341.634888pt;}
.x1_c00416{left:465.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_247b648052c42b5cedda7f5f.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_f7b6c891a415ffc5a2342e5b.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_55a708b91f65d4c637101438.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_c07b6e2bd6bd7ee08d3fe15c.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00417{vertical-align:-127.200000px;}
.v0_c00417{vertical-align:0.000000px;}
.ls8_c00417{letter-spacing:0.000000px;}
.ls6_c00417{letter-spacing:2.700000px;}
.ls2_c00417{letter-spacing:66.633000px;}
.ls5_c00417{letter-spacing:70.833000px;}
.ls3_c00417{letter-spacing:73.233000px;}
.ls4_c00417{letter-spacing:75.033000px;}
.ls0_c00417{letter-spacing:77.340000px;}
.ls1_c00417{letter-spacing:564.033000px;}
.ls7_c00417{letter-spacing:2311.833000px;}
.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;}
}
.ws3_c00417{word-spacing:-53.856000px;}
.ws2_c00417{word-spacing:-43.084800px;}
.ws5_c00417{word-spacing:-23.136000px;}
.ws1_c00417{word-spacing:-18.798000px;}
.ws0_c00417{word-spacing:-18.075000px;}
.ws6_c00417{word-spacing:0.000000px;}
.ws4_c00417{word-spacing:340.608000px;}
._4f_c00417{margin-left:-81.390000px;}
._31_c00417{margin-left:-37.152000px;}
._33_c00417{margin-left:-21.495000px;}
._42_c00417{margin-left:-20.334000px;}
._3e_c00417{margin-left:-17.352000px;}
._34_c00417{margin-left:-14.784000px;}
._3d_c00417{margin-left:-13.169400px;}
._4c_c00417{margin-left:-11.781000px;}
._2b_c00417{margin-left:-9.696000px;}
._2_c00417{margin-left:-8.640000px;}
._2e_c00417{margin-left:-7.584000px;}
._3a_c00417{margin-left:-6.528000px;}
._23_c00417{margin-left:-5.052000px;}
._20_c00417{margin-left:-3.402000px;}
._0_c00417{margin-left:-2.016000px;}
._21_c00417{margin-left:-1.002000px;}
._7_c00417{width:1.152000px;}
._6_c00417{width:2.496000px;}
._4_c00417{width:4.320000px;}
._d_c00417{width:5.472000px;}
._a_c00417{width:7.008000px;}
._9_c00417{width:8.832000px;}
._1e_c00417{width:9.957000px;}
._18_c00417{width:11.040000px;}
._e_c00417{width:12.576000px;}
._12_c00417{width:14.400000px;}
._3f_c00417{width:15.483000px;}
._8_c00417{width:16.896000px;}
._1d_c00417{width:19.488000px;}
._49_c00417{width:20.964000px;}
._29_c00417{width:22.080000px;}
._50_c00417{width:23.610000px;}
._13_c00417{width:24.864000px;}
._37_c00417{width:26.373000px;}
._22_c00417{width:27.927000px;}
._f_c00417{width:29.376000px;}
._26_c00417{width:31.419000px;}
._1c_c00417{width:32.448000px;}
._5_c00417{width:34.272000px;}
._3c_c00417{width:35.520000px;}
._b_c00417{width:36.768000px;}
._1f_c00417{width:38.418000px;}
._19_c00417{width:39.552000px;}
._14_c00417{width:41.280000px;}
._1_c00417{width:42.528000px;}
._c_c00417{width:43.776000px;}
._11_c00417{width:45.408000px;}
._16_c00417{width:47.616000px;}
._24_c00417{width:49.296000px;}
._17_c00417{width:52.128000px;}
._4b_c00417{width:53.916000px;}
._15_c00417{width:55.104000px;}
._4a_c00417{width:56.421000px;}
._38_c00417{width:57.936000px;}
._10_c00417{width:60.384000px;}
._4e_c00417{width:61.386000px;}
._48_c00417{width:64.617000px;}
._40_c00417{width:66.432000px;}
._44_c00417{width:69.306000px;}
._45_c00417{width:70.890000px;}
._39_c00417{width:72.096000px;}
._41_c00417{width:73.854000px;}
._46_c00417{width:94.395000px;}
._28_c00417{width:131.196000px;}
._2a_c00417{width:170.112000px;}
._1b_c00417{width:178.836000px;}
._30_c00417{width:188.160000px;}
._2c_c00417{width:198.240000px;}
._2f_c00417{width:204.576000px;}
._4d_c00417{width:256.089000px;}
._1a_c00417{width:276.108000px;}
._2d_c00417{width:280.416000px;}
._36_c00417{width:297.888000px;}
._47_c00417{width:305.472000px;}
._3b_c00417{width:325.824000px;}
._3_c00417{width:356.928000px;}
._25_c00417{width:359.670000px;}
._43_c00417{width:395.712000px;}
._32_c00417{width:478.176000px;}
._27_c00417{width:599.691000px;}
._35_c00417{width:601.602000px;}
.fc2_c00417{color:transparent;}
.fc1_c00417{color:rgb(128,128,128);}
.fc0_c00417{color:rgb(0,0,0);}
.fs9_c00417{font-size:48.000000px;}
.fs3_c00417{font-size:60.000000px;}
.fs2_c00417{font-size:75.000000px;}
.fs6_c00417{font-size:76.800000px;}
.fs4_c00417{font-size:78.000000px;}
.fs8_c00417{font-size:81.000000px;}
.fs1_c00417{font-size:84.000000px;}
.fs5_c00417{font-size:87.000000px;}
.fs0_c00417{font-size:96.000000px;}
.fs7_c00417{font-size:105.000000px;}
.y0_c00417{bottom:0.000000px;}
.y26_c00417{bottom:3.105000px;}
.y25_c00417{bottom:7.228357px;}
.y24_c00417{bottom:122.580000px;}
.y23_c00417{bottom:148.230000px;}
.y22_c00417{bottom:180.630000px;}
.y21_c00417{bottom:213.330000px;}
.y20_c00417{bottom:246.330000px;}
.y1f_c00417{bottom:280.080000px;}
.y1e_c00417{bottom:314.880000px;}
.y1d_c00417{bottom:349.080000px;}
.y1c_c00417{bottom:382.830000px;}
.y1b_c00417{bottom:416.880000px;}
.y1a_c00417{bottom:450.630000px;}
.y19_c00417{bottom:484.680000px;}
.y18_c00417{bottom:518.130000px;}
.y17_c00417{bottom:552.480000px;}
.y16_c00417{bottom:585.180000px;}
.y15_c00417{bottom:617.580000px;}
.y14_c00417{bottom:649.680000px;}
.y13_c00417{bottom:718.980000px;}
.y12_c00417{bottom:753.930000px;}
.y11_c00417{bottom:787.680000px;}
.y10_c00417{bottom:821.430000px;}
.yf_c00417{bottom:854.880000px;}
.ye_c00417{bottom:888.630000px;}
.yd_c00417{bottom:921.780000px;}
.yc_c00417{bottom:955.530000px;}
.yb_c00417{bottom:987.180000px;}
.ya_c00417{bottom:1021.680000px;}
.y9_c00417{bottom:1039.530000px;}
.y8_c00417{bottom:1058.430000px;}
.y7_c00417{bottom:1092.180000px;}
.y6_c00417{bottom:1123.830000px;}
.y5_c00417{bottom:1157.280000px;}
.y4_c00417{bottom:1188.630000px;}
.y3_c00417{bottom:1222.080000px;}
.y2_c00417{bottom:1255.530000px;}
.y1_c00417{bottom:1288.680000px;}
.h4_c00417{height:13.200074px;}
.h5_c00417{height:43.804688px;}
.h2_c00417{height:121.546875px;}
.h3_c00417{height:132.941895px;}
.h0_c00417{height:1382.700000px;}
.h1_c00417{height:1383.000000px;}
.w2_c00417{width:104.875500px;}
.w0_c00417{width:863.175000px;}
.w1_c00417{width:863.250000px;}
.x0_c00417{left:0.000000px;}
.x6_c00417{left:32.100000px;}
.x5_c00417{left:33.750000px;}
.x11_c00417{left:35.400000px;}
.x7_c00417{left:43.500000px;}
.x8_c00417{left:45.000000px;}
.xc_c00417{left:60.750000px;}
.x10_c00417{left:63.450000px;}
.xf_c00417{left:96.900000px;}
.x1_c00417{left:129.600000px;}
.xa_c00417{left:132.000000px;}
.x4_c00417{left:150.900000px;}
.x9_c00417{left:168.150000px;}
.x2_c00417{left:249.150000px;}
.x3_c00417{left:250.800000px;}
.xb_c00417{left:252.000000px;}
.xd_c00417{left:253.500000px;}
.xe_c00417{left:254.550000px;}
.x12_c00417{left:383.401749px;}
@media print{
.v1_c00417{vertical-align:-113.066667pt;}
.v0_c00417{vertical-align:0.000000pt;}
.ls8_c00417{letter-spacing:0.000000pt;}
.ls6_c00417{letter-spacing:2.400000pt;}
.ls2_c00417{letter-spacing:59.229333pt;}
.ls5_c00417{letter-spacing:62.962667pt;}
.ls3_c00417{letter-spacing:65.096000pt;}
.ls4_c00417{letter-spacing:66.696000pt;}
.ls0_c00417{letter-spacing:68.746667pt;}
.ls1_c00417{letter-spacing:501.362667pt;}
.ls7_c00417{letter-spacing:2054.962667pt;}
.ws3_c00417{word-spacing:-47.872000pt;}
.ws2_c00417{word-spacing:-38.297600pt;}
.ws5_c00417{word-spacing:-20.565333pt;}
.ws1_c00417{word-spacing:-16.709333pt;}
.ws0_c00417{word-spacing:-16.066667pt;}
.ws6_c00417{word-spacing:0.000000pt;}
.ws4_c00417{word-spacing:302.762667pt;}
._4f_c00417{margin-left:-72.346667pt;}
._31_c00417{margin-left:-33.024000pt;}
._33_c00417{margin-left:-19.106667pt;}
._42_c00417{margin-left:-18.074667pt;}
._3e_c00417{margin-left:-15.424000pt;}
._34_c00417{margin-left:-13.141333pt;}
._3d_c00417{margin-left:-11.706133pt;}
._4c_c00417{margin-left:-10.472000pt;}
._2b_c00417{margin-left:-8.618667pt;}
._2_c00417{margin-left:-7.680000pt;}
._2e_c00417{margin-left:-6.741333pt;}
._3a_c00417{margin-left:-5.802667pt;}
._23_c00417{margin-left:-4.490667pt;}
._20_c00417{margin-left:-3.024000pt;}
._0_c00417{margin-left:-1.792000pt;}
._21_c00417{margin-left:-0.890667pt;}
._7_c00417{width:1.024000pt;}
._6_c00417{width:2.218667pt;}
._4_c00417{width:3.840000pt;}
._d_c00417{width:4.864000pt;}
._a_c00417{width:6.229333pt;}
._9_c00417{width:7.850667pt;}
._1e_c00417{width:8.850667pt;}
._18_c00417{width:9.813333pt;}
._e_c00417{width:11.178667pt;}
._12_c00417{width:12.800000pt;}
._3f_c00417{width:13.762667pt;}
._8_c00417{width:15.018667pt;}
._1d_c00417{width:17.322667pt;}
._49_c00417{width:18.634667pt;}
._29_c00417{width:19.626667pt;}
._50_c00417{width:20.986667pt;}
._13_c00417{width:22.101333pt;}
._37_c00417{width:23.442667pt;}
._22_c00417{width:24.824000pt;}
._f_c00417{width:26.112000pt;}
._26_c00417{width:27.928000pt;}
._1c_c00417{width:28.842667pt;}
._5_c00417{width:30.464000pt;}
._3c_c00417{width:31.573333pt;}
._b_c00417{width:32.682667pt;}
._1f_c00417{width:34.149333pt;}
._19_c00417{width:35.157333pt;}
._14_c00417{width:36.693333pt;}
._1_c00417{width:37.802667pt;}
._c_c00417{width:38.912000pt;}
._11_c00417{width:40.362667pt;}
._16_c00417{width:42.325333pt;}
._24_c00417{width:43.818667pt;}
._17_c00417{width:46.336000pt;}
._4b_c00417{width:47.925333pt;}
._15_c00417{width:48.981333pt;}
._4a_c00417{width:50.152000pt;}
._38_c00417{width:51.498667pt;}
._10_c00417{width:53.674667pt;}
._4e_c00417{width:54.565333pt;}
._48_c00417{width:57.437333pt;}
._40_c00417{width:59.050667pt;}
._44_c00417{width:61.605333pt;}
._45_c00417{width:63.013333pt;}
._39_c00417{width:64.085333pt;}
._41_c00417{width:65.648000pt;}
._46_c00417{width:83.906667pt;}
._28_c00417{width:116.618667pt;}
._2a_c00417{width:151.210667pt;}
._1b_c00417{width:158.965333pt;}
._30_c00417{width:167.253333pt;}
._2c_c00417{width:176.213333pt;}
._2f_c00417{width:181.845333pt;}
._4d_c00417{width:227.634667pt;}
._1a_c00417{width:245.429333pt;}
._2d_c00417{width:249.258667pt;}
._36_c00417{width:264.789333pt;}
._47_c00417{width:271.530667pt;}
._3b_c00417{width:289.621333pt;}
._3_c00417{width:317.269333pt;}
._25_c00417{width:319.706667pt;}
._43_c00417{width:351.744000pt;}
._32_c00417{width:425.045333pt;}
._27_c00417{width:533.058667pt;}
._35_c00417{width:534.757333pt;}
.fs9_c00417{font-size:42.666667pt;}
.fs3_c00417{font-size:53.333333pt;}
.fs2_c00417{font-size:66.666667pt;}
.fs6_c00417{font-size:68.266667pt;}
.fs4_c00417{font-size:69.333333pt;}
.fs8_c00417{font-size:72.000000pt;}
.fs1_c00417{font-size:74.666667pt;}
.fs5_c00417{font-size:77.333333pt;}
.fs0_c00417{font-size:85.333333pt;}
.fs7_c00417{font-size:93.333333pt;}
.y0_c00417{bottom:0.000000pt;}
.y26_c00417{bottom:2.760000pt;}
.y25_c00417{bottom:6.425206pt;}
.y24_c00417{bottom:108.960000pt;}
.y23_c00417{bottom:131.760000pt;}
.y22_c00417{bottom:160.560000pt;}
.y21_c00417{bottom:189.626667pt;}
.y20_c00417{bottom:218.960000pt;}
.y1f_c00417{bottom:248.960000pt;}
.y1e_c00417{bottom:279.893333pt;}
.y1d_c00417{bottom:310.293333pt;}
.y1c_c00417{bottom:340.293333pt;}
.y1b_c00417{bottom:370.560000pt;}
.y1a_c00417{bottom:400.560000pt;}
.y19_c00417{bottom:430.826667pt;}
.y18_c00417{bottom:460.560000pt;}
.y17_c00417{bottom:491.093333pt;}
.y16_c00417{bottom:520.160000pt;}
.y15_c00417{bottom:548.960000pt;}
.y14_c00417{bottom:577.493333pt;}
.y13_c00417{bottom:639.093333pt;}
.y12_c00417{bottom:670.160000pt;}
.y11_c00417{bottom:700.160000pt;}
.y10_c00417{bottom:730.160000pt;}
.yf_c00417{bottom:759.893333pt;}
.ye_c00417{bottom:789.893333pt;}
.yd_c00417{bottom:819.360000pt;}
.yc_c00417{bottom:849.360000pt;}
.yb_c00417{bottom:877.493333pt;}
.ya_c00417{bottom:908.160000pt;}
.y9_c00417{bottom:924.026667pt;}
.y8_c00417{bottom:940.826667pt;}
.y7_c00417{bottom:970.826667pt;}
.y6_c00417{bottom:998.960000pt;}
.y5_c00417{bottom:1028.693333pt;}
.y4_c00417{bottom:1056.560000pt;}
.y3_c00417{bottom:1086.293333pt;}
.y2_c00417{bottom:1116.026667pt;}
.y1_c00417{bottom:1145.493333pt;}
.h4_c00417{height:11.733399pt;}
.h5_c00417{height:38.937500pt;}
.h2_c00417{height:108.041667pt;}
.h3_c00417{height:118.170573pt;}
.h0_c00417{height:1229.066667pt;}
.h1_c00417{height:1229.333333pt;}
.w2_c00417{width:93.222667pt;}
.w0_c00417{width:767.266667pt;}
.w1_c00417{width:767.333333pt;}
.x0_c00417{left:0.000000pt;}
.x6_c00417{left:28.533333pt;}
.x5_c00417{left:30.000000pt;}
.x11_c00417{left:31.466667pt;}
.x7_c00417{left:38.666667pt;}
.x8_c00417{left:40.000000pt;}
.xc_c00417{left:54.000000pt;}
.x10_c00417{left:56.400000pt;}
.xf_c00417{left:86.133333pt;}
.x1_c00417{left:115.200000pt;}
.xa_c00417{left:117.333333pt;}
.x4_c00417{left:134.133333pt;}
.x9_c00417{left:149.466667pt;}
.x2_c00417{left:221.466667pt;}
.x3_c00417{left:222.933333pt;}
.xb_c00417{left:224.000000pt;}
.xd_c00417{left:225.333333pt;}
.xe_c00417{left:226.266667pt;}
.x12_c00417{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3376f1e8f01b494b6b1b2866.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_31db16965b3e2d7b48a66a04.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_2070e1dd2ca50dda82fb6825.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_fed16b6881ddfc9174433e04.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_a2ff0ac77936d4488b043a87.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls4_c00418{letter-spacing:0.000000px;}
.ls1_c00418{letter-spacing:5.034000px;}
.ls3_c00418{letter-spacing:7.434000px;}
.ls2_c00418{letter-spacing:17.100000px;}
.ls0_c00418{letter-spacing:20.940000px;}
.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:-23.136000px;}
.ws2_c00418{word-spacing:-20.244000px;}
.ws3_c00418{word-spacing:-18.798000px;}
.ws1_c00418{word-spacing:-7.929600px;}
.ws5_c00418{word-spacing:0.000000px;}
.ws4_c00418{word-spacing:1.404000px;}
._21_c00418{margin-left:-78.048000px;}
._35_c00418{margin-left:-67.200000px;}
._2f_c00418{margin-left:-26.400000px;}
._49_c00418{margin-left:-24.336000px;}
._30_c00418{margin-left:-22.752000px;}
._26_c00418{margin-left:-21.600000px;}
._24_c00418{margin-left:-20.160000px;}
._34_c00418{margin-left:-14.796000px;}
._4a_c00418{margin-left:-13.596000px;}
._31_c00418{margin-left:-11.616000px;}
._4b_c00418{margin-left:-9.624000px;}
._10_c00418{margin-left:-8.544000px;}
._1a_c00418{margin-left:-5.664000px;}
._17_c00418{margin-left:-4.320000px;}
._6_c00418{margin-left:-3.072000px;}
._16_c00418{margin-left:-2.016000px;}
._46_c00418{margin-left:-1.008000px;}
._9_c00418{width:1.440000px;}
._4_c00418{width:2.496000px;}
._3_c00418{width:4.224000px;}
._0_c00418{width:5.856000px;}
._b_c00418{width:7.392000px;}
._c_c00418{width:9.216000px;}
._1_c00418{width:11.232000px;}
._5_c00418{width:12.768000px;}
._a_c00418{width:14.688000px;}
._11_c00418{width:16.320000px;}
._29_c00418{width:17.568000px;}
._12_c00418{width:18.624000px;}
._3b_c00418{width:19.872000px;}
._18_c00418{width:21.312000px;}
._47_c00418{width:22.614000px;}
._3e_c00418{width:24.288000px;}
._1e_c00418{width:25.632000px;}
._f_c00418{width:26.976000px;}
._d_c00418{width:28.992000px;}
._14_c00418{width:30.048000px;}
._2_c00418{width:31.776000px;}
._15_c00418{width:33.120000px;}
._7_c00418{width:34.176000px;}
._1d_c00418{width:35.712000px;}
._8_c00418{width:36.768000px;}
._19_c00418{width:38.688000px;}
._20_c00418{width:39.936000px;}
._22_c00418{width:41.184000px;}
._28_c00418{width:43.104000px;}
._40_c00418{width:44.352000px;}
._e_c00418{width:45.696000px;}
._1b_c00418{width:47.328000px;}
._1c_c00418{width:49.440000px;}
._1f_c00418{width:51.168000px;}
._2d_c00418{width:53.856000px;}
._2b_c00418{width:55.296000px;}
._2c_c00418{width:56.544000px;}
._48_c00418{width:59.412000px;}
._45_c00418{width:62.826000px;}
._4c_c00418{width:64.884000px;}
._2a_c00418{width:67.584000px;}
._33_c00418{width:71.616000px;}
._39_c00418{width:75.360000px;}
._38_c00418{width:76.608000px;}
._3a_c00418{width:82.176000px;}
._27_c00418{width:94.464000px;}
._3f_c00418{width:119.904000px;}
._36_c00418{width:121.056000px;}
._25_c00418{width:127.008000px;}
._3d_c00418{width:167.404800px;}
._13_c00418{width:180.672000px;}
._32_c00418{width:196.128000px;}
._37_c00418{width:208.608000px;}
._42_c00418{width:326.688000px;}
._43_c00418{width:327.873000px;}
._3c_c00418{width:685.536000px;}
._2e_c00418{width:739.584000px;}
._41_c00418{width:1168.992000px;}
._23_c00418{width:1254.624000px;}
._44_c00418{width:1847.922000px;}
.fc2_c00418{color:transparent;}
.fc1_c00418{color:rgb(128,128,128);}
.fc0_c00418{color:rgb(0,0,0);}
.fs6_c00418{font-size:48.000000px;}
.fs2_c00418{font-size:67.200000px;}
.fs4_c00418{font-size:78.000000px;}
.fs1_c00418{font-size:84.000000px;}
.fs5_c00418{font-size:87.000000px;}
.fs0_c00418{font-size:96.000000px;}
.fs3_c00418{font-size:111.000000px;}
.y0_c00418{bottom:0.000000px;}
.y38_c00418{bottom:3.105000px;}
.y37_c00418{bottom:7.228369px;}
.y24_c00418{bottom:107.970000px;}
.y23_c00418{bottom:143.370000px;}
.y22_c00418{bottom:177.870000px;}
.y21_c00418{bottom:212.220000px;}
.y20_c00418{bottom:246.420000px;}
.y1f_c00418{bottom:280.170000px;}
.y1e_c00418{bottom:314.220000px;}
.y1d_c00418{bottom:347.970000px;}
.y1c_c00418{bottom:381.720000px;}
.y36_c00418{bottom:410.970000px;}
.y1b_c00418{bottom:415.770000px;}
.y35_c00418{bottom:439.770000px;}
.y1a_c00418{bottom:448.920000px;}
.y34_c00418{bottom:470.370000px;}
.y19_c00418{bottom:483.270000px;}
.y18_c00418{bottom:515.970000px;}
.y17_c00418{bottom:548.820000px;}
.y16_c00418{bottom:583.170000px;}
.y15_c00418{bottom:616.620000px;}
.y33_c00418{bottom:633.720000px;}
.y14_c00418{bottom:650.070000px;}
.y32_c00418{bottom:663.570000px;}
.y13_c00418{bottom:683.370000px;}
.y31_c00418{bottom:693.120000px;}
.y12_c00418{bottom:717.120000px;}
.y30_c00418{bottom:722.220000px;}
.y11_c00418{bottom:748.170000px;}
.y10_c00418{bottom:784.320000px;}
.y2f_c00418{bottom:802.920000px;}
.yf_c00418{bottom:817.470000px;}
.y2e_c00418{bottom:830.970000px;}
.ye_c00418{bottom:849.120000px;}
.y2d_c00418{bottom:861.570000px;}
.yd_c00418{bottom:883.920000px;}
.y2c_c00418{bottom:890.970000px;}
.yc_c00418{bottom:917.220000px;}
.y2b_c00418{bottom:919.920000px;}
.yb_c00418{bottom:950.370000px;}
.ya_c00418{bottom:984.270000px;}
.y9_c00418{bottom:1017.570000px;}
.y8_c00418{bottom:1050.870000px;}
.y2a_c00418{bottom:1078.620000px;}
.y7_c00418{bottom:1084.320000px;}
.y29_c00418{bottom:1108.020000px;}
.y6_c00418{bottom:1117.770000px;}
.y28_c00418{bottom:1138.320000px;}
.y5_c00418{bottom:1150.770000px;}
.y27_c00418{bottom:1166.670000px;}
.y4_c00418{bottom:1183.620000px;}
.y26_c00418{bottom:1196.370000px;}
.y3_c00418{bottom:1217.070000px;}
.y25_c00418{bottom:1225.170000px;}
.y2_c00418{bottom:1248.420000px;}
.y1_c00418{bottom:1283.520000px;}
.h7_c00418{height:13.200073px;}
.h8_c00418{height:43.804688px;}
.h6_c00418{height:91.291992px;}
.h4_c00418{height:98.756836px;}
.h3_c00418{height:108.940430px;}
.h5_c00418{height:110.151855px;}
.h2_c00418{height:121.546875px;}
.h0_c00418{height:1383.450000px;}
.h1_c00418{height:1383.750000px;}
.w2_c00418{width:104.875500px;}
.w0_c00418{width:878.025000px;}
.w1_c00418{width:878.250000px;}
.x0_c00418{left:0.000000px;}
.x8_c00418{left:30.000000px;}
.xa_c00418{left:31.650000px;}
.xb_c00418{left:32.700000px;}
.x9_c00418{left:33.750000px;}
.x7_c00418{left:34.800000px;}
.x6_c00418{left:36.450000px;}
.x5_c00418{left:37.500000px;}
.x4_c00418{left:38.550000px;}
.x1_c00418{left:40.200000px;}
.x2_c00418{left:41.400000px;}
.xd_c00418{left:43.500000px;}
.xc_c00418{left:86.700000px;}
.x3_c00418{left:91.500000px;}
.x19_c00418{left:390.826721px;}
.xf_c00418{left:621.750000px;}
.x10_c00418{left:622.800000px;}
.x11_c00418{left:625.500000px;}
.x14_c00418{left:629.400000px;}
.x17_c00418{left:630.450000px;}
.x18_c00418{left:632.100000px;}
.x15_c00418{left:643.950000px;}
.xe_c00418{left:648.300000px;}
.x16_c00418{left:652.050000px;}
.x12_c00418{left:653.700000px;}
.x13_c00418{left:657.000000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls4_c00418{letter-spacing:0.000000pt;}
.ls1_c00418{letter-spacing:4.474667pt;}
.ls3_c00418{letter-spacing:6.608000pt;}
.ls2_c00418{letter-spacing:15.200000pt;}
.ls0_c00418{letter-spacing:18.613333pt;}
.ws0_c00418{word-spacing:-20.565333pt;}
.ws2_c00418{word-spacing:-17.994667pt;}
.ws3_c00418{word-spacing:-16.709333pt;}
.ws1_c00418{word-spacing:-7.048533pt;}
.ws5_c00418{word-spacing:0.000000pt;}
.ws4_c00418{word-spacing:1.248000pt;}
._21_c00418{margin-left:-69.376000pt;}
._35_c00418{margin-left:-59.733333pt;}
._2f_c00418{margin-left:-23.466667pt;}
._49_c00418{margin-left:-21.632000pt;}
._30_c00418{margin-left:-20.224000pt;}
._26_c00418{margin-left:-19.200000pt;}
._24_c00418{margin-left:-17.920000pt;}
._34_c00418{margin-left:-13.152000pt;}
._4a_c00418{margin-left:-12.085333pt;}
._31_c00418{margin-left:-10.325333pt;}
._4b_c00418{margin-left:-8.554667pt;}
._10_c00418{margin-left:-7.594667pt;}
._1a_c00418{margin-left:-5.034667pt;}
._17_c00418{margin-left:-3.840000pt;}
._6_c00418{margin-left:-2.730667pt;}
._16_c00418{margin-left:-1.792000pt;}
._46_c00418{margin-left:-0.896000pt;}
._9_c00418{width:1.280000pt;}
._4_c00418{width:2.218667pt;}
._3_c00418{width:3.754667pt;}
._0_c00418{width:5.205333pt;}
._b_c00418{width:6.570667pt;}
._c_c00418{width:8.192000pt;}
._1_c00418{width:9.984000pt;}
._5_c00418{width:11.349333pt;}
._a_c00418{width:13.056000pt;}
._11_c00418{width:14.506667pt;}
._29_c00418{width:15.616000pt;}
._12_c00418{width:16.554667pt;}
._3b_c00418{width:17.664000pt;}
._18_c00418{width:18.944000pt;}
._47_c00418{width:20.101333pt;}
._3e_c00418{width:21.589333pt;}
._1e_c00418{width:22.784000pt;}
._f_c00418{width:23.978667pt;}
._d_c00418{width:25.770667pt;}
._14_c00418{width:26.709333pt;}
._2_c00418{width:28.245333pt;}
._15_c00418{width:29.440000pt;}
._7_c00418{width:30.378667pt;}
._1d_c00418{width:31.744000pt;}
._8_c00418{width:32.682667pt;}
._19_c00418{width:34.389333pt;}
._20_c00418{width:35.498667pt;}
._22_c00418{width:36.608000pt;}
._28_c00418{width:38.314667pt;}
._40_c00418{width:39.424000pt;}
._e_c00418{width:40.618667pt;}
._1b_c00418{width:42.069333pt;}
._1c_c00418{width:43.946667pt;}
._1f_c00418{width:45.482667pt;}
._2d_c00418{width:47.872000pt;}
._2b_c00418{width:49.152000pt;}
._2c_c00418{width:50.261333pt;}
._48_c00418{width:52.810667pt;}
._45_c00418{width:55.845333pt;}
._4c_c00418{width:57.674667pt;}
._2a_c00418{width:60.074667pt;}
._33_c00418{width:63.658667pt;}
._39_c00418{width:66.986667pt;}
._38_c00418{width:68.096000pt;}
._3a_c00418{width:73.045333pt;}
._27_c00418{width:83.968000pt;}
._3f_c00418{width:106.581333pt;}
._36_c00418{width:107.605333pt;}
._25_c00418{width:112.896000pt;}
._3d_c00418{width:148.804267pt;}
._13_c00418{width:160.597333pt;}
._32_c00418{width:174.336000pt;}
._37_c00418{width:185.429333pt;}
._42_c00418{width:290.389333pt;}
._43_c00418{width:291.442667pt;}
._3c_c00418{width:609.365333pt;}
._2e_c00418{width:657.408000pt;}
._41_c00418{width:1039.104000pt;}
._23_c00418{width:1115.221333pt;}
._44_c00418{width:1642.597333pt;}
.fs6_c00418{font-size:42.666667pt;}
.fs2_c00418{font-size:59.733333pt;}
.fs4_c00418{font-size:69.333333pt;}
.fs1_c00418{font-size:74.666667pt;}
.fs5_c00418{font-size:77.333333pt;}
.fs0_c00418{font-size:85.333333pt;}
.fs3_c00418{font-size:98.666667pt;}
.y0_c00418{bottom:0.000000pt;}
.y38_c00418{bottom:2.760000pt;}
.y37_c00418{bottom:6.425217pt;}
.y24_c00418{bottom:95.973333pt;}
.y23_c00418{bottom:127.440000pt;}
.y22_c00418{bottom:158.106667pt;}
.y21_c00418{bottom:188.640000pt;}
.y20_c00418{bottom:219.040000pt;}
.y1f_c00418{bottom:249.040000pt;}
.y1e_c00418{bottom:279.306667pt;}
.y1d_c00418{bottom:309.306667pt;}
.y1c_c00418{bottom:339.306667pt;}
.y36_c00418{bottom:365.306667pt;}
.y1b_c00418{bottom:369.573333pt;}
.y35_c00418{bottom:390.906667pt;}
.y1a_c00418{bottom:399.040000pt;}
.y34_c00418{bottom:418.106667pt;}
.y19_c00418{bottom:429.573333pt;}
.y18_c00418{bottom:458.640000pt;}
.y17_c00418{bottom:487.840000pt;}
.y16_c00418{bottom:518.373333pt;}
.y15_c00418{bottom:548.106667pt;}
.y33_c00418{bottom:563.306667pt;}
.y14_c00418{bottom:577.840000pt;}
.y32_c00418{bottom:589.840000pt;}
.y13_c00418{bottom:607.440000pt;}
.y31_c00418{bottom:616.106667pt;}
.y12_c00418{bottom:637.440000pt;}
.y30_c00418{bottom:641.973333pt;}
.y11_c00418{bottom:665.040000pt;}
.y10_c00418{bottom:697.173333pt;}
.y2f_c00418{bottom:713.706667pt;}
.yf_c00418{bottom:726.640000pt;}
.y2e_c00418{bottom:738.640000pt;}
.ye_c00418{bottom:754.773333pt;}
.y2d_c00418{bottom:765.840000pt;}
.yd_c00418{bottom:785.706667pt;}
.y2c_c00418{bottom:791.973333pt;}
.yc_c00418{bottom:815.306667pt;}
.y2b_c00418{bottom:817.706667pt;}
.yb_c00418{bottom:844.773333pt;}
.ya_c00418{bottom:874.906667pt;}
.y9_c00418{bottom:904.506667pt;}
.y8_c00418{bottom:934.106667pt;}
.y2a_c00418{bottom:958.773333pt;}
.y7_c00418{bottom:963.840000pt;}
.y29_c00418{bottom:984.906667pt;}
.y6_c00418{bottom:993.573333pt;}
.y28_c00418{bottom:1011.840000pt;}
.y5_c00418{bottom:1022.906667pt;}
.y27_c00418{bottom:1037.040000pt;}
.y4_c00418{bottom:1052.106667pt;}
.y26_c00418{bottom:1063.440000pt;}
.y3_c00418{bottom:1081.840000pt;}
.y25_c00418{bottom:1089.040000pt;}
.y2_c00418{bottom:1109.706667pt;}
.y1_c00418{bottom:1140.906667pt;}
.h7_c00418{height:11.733399pt;}
.h8_c00418{height:38.937500pt;}
.h6_c00418{height:81.148438pt;}
.h4_c00418{height:87.783854pt;}
.h3_c00418{height:96.835938pt;}
.h5_c00418{height:97.912760pt;}
.h2_c00418{height:108.041667pt;}
.h0_c00418{height:1229.733333pt;}
.h1_c00418{height:1230.000000pt;}
.w2_c00418{width:93.222667pt;}
.w0_c00418{width:780.466667pt;}
.w1_c00418{width:780.666667pt;}
.x0_c00418{left:0.000000pt;}
.x8_c00418{left:26.666667pt;}
.xa_c00418{left:28.133333pt;}
.xb_c00418{left:29.066667pt;}
.x9_c00418{left:30.000000pt;}
.x7_c00418{left:30.933333pt;}
.x6_c00418{left:32.400000pt;}
.x5_c00418{left:33.333333pt;}
.x4_c00418{left:34.266667pt;}
.x1_c00418{left:35.733333pt;}
.x2_c00418{left:36.800000pt;}
.xd_c00418{left:38.666667pt;}
.xc_c00418{left:77.066667pt;}
.x3_c00418{left:81.333333pt;}
.x19_c00418{left:347.401530pt;}
.xf_c00418{left:552.666667pt;}
.x10_c00418{left:553.600000pt;}
.x11_c00418{left:556.000000pt;}
.x14_c00418{left:559.466667pt;}
.x17_c00418{left:560.400000pt;}
.x18_c00418{left:561.866667pt;}
.x15_c00418{left:572.400000pt;}
.xe_c00418{left:576.266667pt;}
.x16_c00418{left:579.600000pt;}
.x12_c00418{left:581.066667pt;}
.x13_c00418{left:584.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_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_732720941bc1a81f0d0dc31b.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;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:ff2_c00419;src:url('chunks/assets/font_a78cfec97fa4257bd49bc493.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_2dbe2117641dc92bac02c4c3.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls2_c00419{letter-spacing:0.000000px;}
.ls1_c00419{letter-spacing:6.000000px;}
.ls0_c00419{letter-spacing:172.464000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00419{word-spacing:-63.504000px;}
.ws0_c00419{word-spacing:-57.000000px;}
.ws2_c00419{word-spacing:0.000000px;}
._43_c00419{margin-left:-48.792000px;}
._3f_c00419{margin-left:-38.880000px;}
._41_c00419{margin-left:-26.016000px;}
._2b_c00419{margin-left:-23.904000px;}
._3_c00419{margin-left:-19.680000px;}
._45_c00419{margin-left:-17.568000px;}
._39_c00419{margin-left:-14.352000px;}
._34_c00419{margin-left:-12.552000px;}
._37_c00419{margin-left:-10.836000px;}
._2d_c00419{margin-left:-9.792000px;}
._38_c00419{margin-left:-7.584000px;}
._35_c00419{margin-left:-4.764000px;}
._20_c00419{margin-left:-3.456000px;}
._12_c00419{margin-left:-2.208000px;}
._b_c00419{margin-left:-1.152000px;}
._8_c00419{width:1.920000px;}
._6_c00419{width:3.648000px;}
._5_c00419{width:4.968000px;}
._1_c00419{width:6.936000px;}
._0_c00419{width:8.670000px;}
._2f_c00419{width:9.984000px;}
._d_c00419{width:11.232000px;}
._23_c00419{width:12.588000px;}
._1e_c00419{width:15.048000px;}
._28_c00419{width:16.896000px;}
._33_c00419{width:18.516000px;}
._27_c00419{width:19.752000px;}
._1f_c00419{width:21.624000px;}
._4_c00419{width:25.440000px;}
._24_c00419{width:26.796000px;}
._11_c00419{width:28.464000px;}
._1c_c00419{width:30.240000px;}
._21_c00419{width:31.488000px;}
._15_c00419{width:33.312000px;}
._13_c00419{width:34.560000px;}
._e_c00419{width:36.264000px;}
._a_c00419{width:37.728000px;}
._22_c00419{width:39.384000px;}
._14_c00419{width:41.088000px;}
._10_c00419{width:42.168000px;}
._16_c00419{width:43.608000px;}
._7_c00419{width:45.048000px;}
._9_c00419{width:46.656000px;}
._3d_c00419{width:47.658000px;}
._c_c00419{width:48.672000px;}
._31_c00419{width:50.112000px;}
._f_c00419{width:51.480000px;}
._26_c00419{width:52.572000px;}
._1b_c00419{width:54.624000px;}
._29_c00419{width:55.968000px;}
._36_c00419{width:57.384000px;}
._18_c00419{width:59.832000px;}
._3e_c00419{width:62.040000px;}
._2a_c00419{width:64.008000px;}
._40_c00419{width:65.754000px;}
._42_c00419{width:66.828000px;}
._25_c00419{width:67.872000px;}
._17_c00419{width:69.408000px;}
._1d_c00419{width:71.568000px;}
._32_c00419{width:74.520000px;}
._3a_c00419{width:76.128000px;}
._19_c00419{width:78.048000px;}
._1a_c00419{width:86.592000px;}
._46_c00419{width:92.352000px;}
._3c_c00419{width:171.936000px;}
._30_c00419{width:179.136000px;}
._2_c00419{width:180.876000px;}
._3b_c00419{width:473.280000px;}
._2e_c00419{width:597.600000px;}
._2c_c00419{width:689.664000px;}
._44_c00419{width:1569.090000px;}
.fc2_c00419{color:transparent;}
.fc1_c00419{color:rgb(128,128,128);}
.fc0_c00419{color:rgb(0,0,0);}
.fs3_c00419{font-size:48.000000px;}
.fs2_c00419{font-size:84.000000px;}
.fs1_c00419{font-size:96.000000px;}
.fs0_c00419{font-size:102.000000px;}
.y0_c00419{bottom:0.000000px;}
.y25_c00419{bottom:3.105000px;}
.y24_c00419{bottom:7.228355px;}
.y23_c00419{bottom:115.035000px;}
.y22_c00419{bottom:147.435000px;}
.y21_c00419{bottom:182.235000px;}
.y20_c00419{bottom:216.285000px;}
.y1f_c00419{bottom:250.335000px;}
.y1e_c00419{bottom:285.435000px;}
.y1d_c00419{bottom:318.585000px;}
.y1c_c00419{bottom:351.585000px;}
.y1b_c00419{bottom:389.835000px;}
.y1a_c00419{bottom:420.135000px;}
.y19_c00419{bottom:454.485000px;}
.y18_c00419{bottom:487.935000px;}
.y17_c00419{bottom:521.985000px;}
.y16_c00419{bottom:555.735000px;}
.y15_c00419{bottom:589.185000px;}
.y14_c00419{bottom:622.635000px;}
.y13_c00419{bottom:656.985000px;}
.y12_c00419{bottom:690.735000px;}
.y11_c00419{bottom:724.485000px;}
.y10_c00419{bottom:757.335000px;}
.yf_c00419{bottom:791.085000px;}
.ye_c00419{bottom:824.385000px;}
.yd_c00419{bottom:860.235000px;}
.yc_c00419{bottom:891.885000px;}
.yb_c00419{bottom:925.335000px;}
.ya_c00419{bottom:958.785000px;}
.y9_c00419{bottom:991.335000px;}
.y8_c00419{bottom:1024.635000px;}
.y7_c00419{bottom:1057.935000px;}
.y6_c00419{bottom:1091.835000px;}
.y5_c00419{bottom:1125.135000px;}
.y4_c00419{bottom:1158.885000px;}
.y3_c00419{bottom:1191.735000px;}
.y2_c00419{bottom:1225.335000px;}
.y1_c00419{bottom:1257.885000px;}
.h3_c00419{height:13.200074px;}
.h4_c00419{height:43.804688px;}
.h2_c00419{height:121.546875px;}
.h1_c00419{height:1347.750000px;}
.h0_c00419{height:1347.825000px;}
.w1_c00419{width:104.875500px;}
.w0_c00419{width:840.750000px;}
.x0_c00419{left:0.000000px;}
.x9_c00419{left:237.900000px;}
.x6_c00419{left:241.650000px;}
.x5_c00419{left:249.300000px;}
.x8_c00419{left:250.350000px;}
.x4_c00419{left:251.400000px;}
.x3_c00419{left:252.450000px;}
.x2_c00419{left:253.500000px;}
.x7_c00419{left:301.650000px;}
.x1_c00419{left:303.150000px;}
.xa_c00419{left:372.189240px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls2_c00419{letter-spacing:0.000000pt;}
.ls1_c00419{letter-spacing:5.333333pt;}
.ls0_c00419{letter-spacing:153.301333pt;}
.ws1_c00419{word-spacing:-56.448000pt;}
.ws0_c00419{word-spacing:-50.666667pt;}
.ws2_c00419{word-spacing:0.000000pt;}
._43_c00419{margin-left:-43.370667pt;}
._3f_c00419{margin-left:-34.560000pt;}
._41_c00419{margin-left:-23.125333pt;}
._2b_c00419{margin-left:-21.248000pt;}
._3_c00419{margin-left:-17.493333pt;}
._45_c00419{margin-left:-15.616000pt;}
._39_c00419{margin-left:-12.757333pt;}
._34_c00419{margin-left:-11.157333pt;}
._37_c00419{margin-left:-9.632000pt;}
._2d_c00419{margin-left:-8.704000pt;}
._38_c00419{margin-left:-6.741333pt;}
._35_c00419{margin-left:-4.234667pt;}
._20_c00419{margin-left:-3.072000pt;}
._12_c00419{margin-left:-1.962667pt;}
._b_c00419{margin-left:-1.024000pt;}
._8_c00419{width:1.706667pt;}
._6_c00419{width:3.242667pt;}
._5_c00419{width:4.416000pt;}
._1_c00419{width:6.165333pt;}
._0_c00419{width:7.706667pt;}
._2f_c00419{width:8.874667pt;}
._d_c00419{width:9.984000pt;}
._23_c00419{width:11.189333pt;}
._1e_c00419{width:13.376000pt;}
._28_c00419{width:15.018667pt;}
._33_c00419{width:16.458667pt;}
._27_c00419{width:17.557333pt;}
._1f_c00419{width:19.221333pt;}
._4_c00419{width:22.613333pt;}
._24_c00419{width:23.818667pt;}
._11_c00419{width:25.301333pt;}
._1c_c00419{width:26.880000pt;}
._21_c00419{width:27.989333pt;}
._15_c00419{width:29.610667pt;}
._13_c00419{width:30.720000pt;}
._e_c00419{width:32.234667pt;}
._a_c00419{width:33.536000pt;}
._22_c00419{width:35.008000pt;}
._14_c00419{width:36.522667pt;}
._10_c00419{width:37.482667pt;}
._16_c00419{width:38.762667pt;}
._7_c00419{width:40.042667pt;}
._9_c00419{width:41.472000pt;}
._3d_c00419{width:42.362667pt;}
._c_c00419{width:43.264000pt;}
._31_c00419{width:44.544000pt;}
._f_c00419{width:45.760000pt;}
._26_c00419{width:46.730667pt;}
._1b_c00419{width:48.554667pt;}
._29_c00419{width:49.749333pt;}
._36_c00419{width:51.008000pt;}
._18_c00419{width:53.184000pt;}
._3e_c00419{width:55.146667pt;}
._2a_c00419{width:56.896000pt;}
._40_c00419{width:58.448000pt;}
._42_c00419{width:59.402667pt;}
._25_c00419{width:60.330667pt;}
._17_c00419{width:61.696000pt;}
._1d_c00419{width:63.616000pt;}
._32_c00419{width:66.240000pt;}
._3a_c00419{width:67.669333pt;}
._19_c00419{width:69.376000pt;}
._1a_c00419{width:76.970667pt;}
._46_c00419{width:82.090667pt;}
._3c_c00419{width:152.832000pt;}
._30_c00419{width:159.232000pt;}
._2_c00419{width:160.778667pt;}
._3b_c00419{width:420.693333pt;}
._2e_c00419{width:531.200000pt;}
._2c_c00419{width:613.034667pt;}
._44_c00419{width:1394.746667pt;}
.fs3_c00419{font-size:42.666667pt;}
.fs2_c00419{font-size:74.666667pt;}
.fs1_c00419{font-size:85.333333pt;}
.fs0_c00419{font-size:90.666667pt;}
.y0_c00419{bottom:0.000000pt;}
.y25_c00419{bottom:2.760000pt;}
.y24_c00419{bottom:6.425204pt;}
.y23_c00419{bottom:102.253333pt;}
.y22_c00419{bottom:131.053333pt;}
.y21_c00419{bottom:161.986667pt;}
.y20_c00419{bottom:192.253333pt;}
.y1f_c00419{bottom:222.520000pt;}
.y1e_c00419{bottom:253.720000pt;}
.y1d_c00419{bottom:283.186667pt;}
.y1c_c00419{bottom:312.520000pt;}
.y1b_c00419{bottom:346.520000pt;}
.y1a_c00419{bottom:373.453333pt;}
.y19_c00419{bottom:403.986667pt;}
.y18_c00419{bottom:433.720000pt;}
.y17_c00419{bottom:463.986667pt;}
.y16_c00419{bottom:493.986667pt;}
.y15_c00419{bottom:523.720000pt;}
.y14_c00419{bottom:553.453333pt;}
.y13_c00419{bottom:583.986667pt;}
.y12_c00419{bottom:613.986667pt;}
.y11_c00419{bottom:643.986667pt;}
.y10_c00419{bottom:673.186667pt;}
.yf_c00419{bottom:703.186667pt;}
.ye_c00419{bottom:732.786667pt;}
.yd_c00419{bottom:764.653333pt;}
.yc_c00419{bottom:792.786667pt;}
.yb_c00419{bottom:822.520000pt;}
.ya_c00419{bottom:852.253333pt;}
.y9_c00419{bottom:881.186667pt;}
.y8_c00419{bottom:910.786667pt;}
.y7_c00419{bottom:940.386667pt;}
.y6_c00419{bottom:970.520000pt;}
.y5_c00419{bottom:1000.120000pt;}
.y4_c00419{bottom:1030.120000pt;}
.y3_c00419{bottom:1059.320000pt;}
.y2_c00419{bottom:1089.186667pt;}
.y1_c00419{bottom:1118.120000pt;}
.h3_c00419{height:11.733399pt;}
.h4_c00419{height:38.937500pt;}
.h2_c00419{height:108.041667pt;}
.h1_c00419{height:1198.000000pt;}
.h0_c00419{height:1198.066667pt;}
.w1_c00419{width:93.222667pt;}
.w0_c00419{width:747.333333pt;}
.x0_c00419{left:0.000000pt;}
.x9_c00419{left:211.466667pt;}
.x6_c00419{left:214.800000pt;}
.x5_c00419{left:221.600000pt;}
.x8_c00419{left:222.533333pt;}
.x4_c00419{left:223.466667pt;}
.x3_c00419{left:224.400000pt;}
.x2_c00419{left:225.333333pt;}
.x7_c00419{left:268.133333pt;}
.x1_c00419{left:269.466667pt;}
.xa_c00419{left:330.834880pt;}
}





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

.ir_c00420:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00420;src:url('chunks/assets/font_133c063fb3be701751453c33.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls0_c00420{letter-spacing:0.000000px;}
.ls1_c00420{letter-spacing:6.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00420{word-spacing:0.000000px;}
.ws0_c00420{word-spacing:4.860000px;}
._1f_c00420{margin-left:-47.616000px;}
._33_c00420{margin-left:-29.280000px;}
._1b_c00420{margin-left:-21.984000px;}
._1c_c00420{margin-left:-13.632000px;}
._1d_c00420{margin-left:-12.480000px;}
._7_c00420{margin-left:-11.232000px;}
._24_c00420{margin-left:-10.080000px;}
._16_c00420{margin-left:-8.256000px;}
._8_c00420{margin-left:-6.720000px;}
._13_c00420{margin-left:-4.704000px;}
._3_c00420{margin-left:-3.456000px;}
._11_c00420{margin-left:-1.920000px;}
._c_c00420{width:1.536000px;}
._d_c00420{width:2.688000px;}
._e_c00420{width:3.840000px;}
._f_c00420{width:4.992000px;}
._14_c00420{width:6.624000px;}
._0_c00420{width:8.448000px;}
._26_c00420{width:9.804000px;}
._21_c00420{width:11.328000px;}
._2a_c00420{width:12.576000px;}
._3a_c00420{width:13.632000px;}
._17_c00420{width:14.688000px;}
._4_c00420{width:16.704000px;}
._2_c00420{width:17.952000px;}
._28_c00420{width:19.320000px;}
._15_c00420{width:21.216000px;}
._a_c00420{width:22.680000px;}
._19_c00420{width:25.632000px;}
._12_c00420{width:28.512000px;}
._b_c00420{width:29.940000px;}
._1a_c00420{width:31.872000px;}
._30_c00420{width:33.024000px;}
._9_c00420{width:34.560000px;}
._2b_c00420{width:36.000000px;}
._2f_c00420{width:37.320000px;}
._27_c00420{width:38.484000px;}
._6_c00420{width:40.320000px;}
._10_c00420{width:42.720000px;}
._3f_c00420{width:43.788000px;}
._2e_c00420{width:44.832000px;}
._36_c00420{width:45.984000px;}
._25_c00420{width:47.040000px;}
._2c_c00420{width:48.768000px;}
._3c_c00420{width:50.028000px;}
._35_c00420{width:51.456000px;}
._18_c00420{width:53.664000px;}
._5_c00420{width:55.872000px;}
._41_c00420{width:57.864000px;}
._29_c00420{width:62.688000px;}
._2d_c00420{width:65.268000px;}
._32_c00420{width:66.912000px;}
._40_c00420{width:69.408000px;}
._31_c00420{width:71.040000px;}
._34_c00420{width:73.608000px;}
._23_c00420{width:94.752000px;}
._22_c00420{width:107.616000px;}
._39_c00420{width:113.664000px;}
._20_c00420{width:161.664000px;}
._3e_c00420{width:166.380000px;}
._3d_c00420{width:180.960000px;}
._3b_c00420{width:187.488000px;}
._1e_c00420{width:236.928000px;}
._38_c00420{width:708.288000px;}
._42_c00420{width:771.072000px;}
._37_c00420{width:962.208000px;}
._1_c00420{width:1188.480000px;}
.fc2_c00420{color:transparent;}
.fc1_c00420{color:rgb(128,128,128);}
.fc0_c00420{color:rgb(0,0,0);}
.fs2_c00420{font-size:48.000000px;}
.fs1_c00420{font-size:60.000000px;}
.fs0_c00420{font-size:96.000000px;}
.y0_c00420{bottom:0.000000px;}
.y26_c00420{bottom:3.105000px;}
.y25_c00420{bottom:7.228369px;}
.y24_c00420{bottom:112.020000px;}
.y23_c00420{bottom:146.520000px;}
.y22_c00420{bottom:180.120000px;}
.y21_c00420{bottom:214.620000px;}
.y20_c00420{bottom:248.370000px;}
.y1f_c00420{bottom:281.820000px;}
.y1e_c00420{bottom:315.870000px;}
.y1d_c00420{bottom:349.920000px;}
.y1c_c00420{bottom:381.270000px;}
.y1b_c00420{bottom:416.820000px;}
.y1a_c00420{bottom:450.270000px;}
.y19_c00420{bottom:483.570000px;}
.y18_c00420{bottom:517.770000px;}
.y17_c00420{bottom:551.370000px;}
.y16_c00420{bottom:584.520000px;}
.y15_c00420{bottom:618.570000px;}
.y14_c00420{bottom:652.320000px;}
.y13_c00420{bottom:683.670000px;}
.y12_c00420{bottom:719.820000px;}
.y11_c00420{bottom:753.270000px;}
.y10_c00420{bottom:787.020000px;}
.yf_c00420{bottom:820.770000px;}
.ye_c00420{bottom:852.570000px;}
.yd_c00420{bottom:885.570000px;}
.yc_c00420{bottom:919.620000px;}
.yb_c00420{bottom:951.720000px;}
.ya_c00420{bottom:985.170000px;}
.y9_c00420{bottom:1018.470000px;}
.y8_c00420{bottom:1052.370000px;}
.y7_c00420{bottom:1085.070000px;}
.y6_c00420{bottom:1118.070000px;}
.y5_c00420{bottom:1151.220000px;}
.y4_c00420{bottom:1184.670000px;}
.y3_c00420{bottom:1216.920000px;}
.y2_c00420{bottom:1251.420000px;}
.y1_c00420{bottom:1284.420000px;}
.h3_c00420{height:13.200073px;}
.h4_c00420{height:43.804688px;}
.h2_c00420{height:121.546875px;}
.h0_c00420{height:1383.450000px;}
.h1_c00420{height:1383.750000px;}
.w2_c00420{width:104.875500px;}
.w0_c00420{width:878.025000px;}
.w1_c00420{width:878.250000px;}
.x0_c00420{left:0.000000px;}
.x7_c00420{left:36.000000px;}
.x8_c00420{left:37.050000px;}
.x6_c00420{left:38.700000px;}
.x2_c00420{left:40.200000px;}
.x3_c00420{left:41.400000px;}
.x5_c00420{left:42.450000px;}
.x4_c00420{left:45.600000px;}
.x1_c00420{left:47.850000px;}
.xb_c00420{left:49.500000px;}
.x9_c00420{left:63.000000px;}
.xa_c00420{left:88.800000px;}
.xc_c00420{left:390.826721px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ls1_c00420{letter-spacing:5.333333pt;}
.ws1_c00420{word-spacing:0.000000pt;}
.ws0_c00420{word-spacing:4.320000pt;}
._1f_c00420{margin-left:-42.325333pt;}
._33_c00420{margin-left:-26.026667pt;}
._1b_c00420{margin-left:-19.541333pt;}
._1c_c00420{margin-left:-12.117333pt;}
._1d_c00420{margin-left:-11.093333pt;}
._7_c00420{margin-left:-9.984000pt;}
._24_c00420{margin-left:-8.960000pt;}
._16_c00420{margin-left:-7.338667pt;}
._8_c00420{margin-left:-5.973333pt;}
._13_c00420{margin-left:-4.181333pt;}
._3_c00420{margin-left:-3.072000pt;}
._11_c00420{margin-left:-1.706667pt;}
._c_c00420{width:1.365333pt;}
._d_c00420{width:2.389333pt;}
._e_c00420{width:3.413333pt;}
._f_c00420{width:4.437333pt;}
._14_c00420{width:5.888000pt;}
._0_c00420{width:7.509333pt;}
._26_c00420{width:8.714667pt;}
._21_c00420{width:10.069333pt;}
._2a_c00420{width:11.178667pt;}
._3a_c00420{width:12.117333pt;}
._17_c00420{width:13.056000pt;}
._4_c00420{width:14.848000pt;}
._2_c00420{width:15.957333pt;}
._28_c00420{width:17.173333pt;}
._15_c00420{width:18.858667pt;}
._a_c00420{width:20.160000pt;}
._19_c00420{width:22.784000pt;}
._12_c00420{width:25.344000pt;}
._b_c00420{width:26.613333pt;}
._1a_c00420{width:28.330667pt;}
._30_c00420{width:29.354667pt;}
._9_c00420{width:30.720000pt;}
._2b_c00420{width:32.000000pt;}
._2f_c00420{width:33.173333pt;}
._27_c00420{width:34.208000pt;}
._6_c00420{width:35.840000pt;}
._10_c00420{width:37.973333pt;}
._3f_c00420{width:38.922667pt;}
._2e_c00420{width:39.850667pt;}
._36_c00420{width:40.874667pt;}
._25_c00420{width:41.813333pt;}
._2c_c00420{width:43.349333pt;}
._3c_c00420{width:44.469333pt;}
._35_c00420{width:45.738667pt;}
._18_c00420{width:47.701333pt;}
._5_c00420{width:49.664000pt;}
._41_c00420{width:51.434667pt;}
._29_c00420{width:55.722667pt;}
._2d_c00420{width:58.016000pt;}
._32_c00420{width:59.477333pt;}
._40_c00420{width:61.696000pt;}
._31_c00420{width:63.146667pt;}
._34_c00420{width:65.429333pt;}
._23_c00420{width:84.224000pt;}
._22_c00420{width:95.658667pt;}
._39_c00420{width:101.034667pt;}
._20_c00420{width:143.701333pt;}
._3e_c00420{width:147.893333pt;}
._3d_c00420{width:160.853333pt;}
._3b_c00420{width:166.656000pt;}
._1e_c00420{width:210.602667pt;}
._38_c00420{width:629.589333pt;}
._42_c00420{width:685.397333pt;}
._37_c00420{width:855.296000pt;}
._1_c00420{width:1056.426667pt;}
.fs2_c00420{font-size:42.666667pt;}
.fs1_c00420{font-size:53.333333pt;}
.fs0_c00420{font-size:85.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y26_c00420{bottom:2.760000pt;}
.y25_c00420{bottom:6.425217pt;}
.y24_c00420{bottom:99.573333pt;}
.y23_c00420{bottom:130.240000pt;}
.y22_c00420{bottom:160.106667pt;}
.y21_c00420{bottom:190.773333pt;}
.y20_c00420{bottom:220.773333pt;}
.y1f_c00420{bottom:250.506667pt;}
.y1e_c00420{bottom:280.773333pt;}
.y1d_c00420{bottom:311.040000pt;}
.y1c_c00420{bottom:338.906667pt;}
.y1b_c00420{bottom:370.506667pt;}
.y1a_c00420{bottom:400.240000pt;}
.y19_c00420{bottom:429.840000pt;}
.y18_c00420{bottom:460.240000pt;}
.y17_c00420{bottom:490.106667pt;}
.y16_c00420{bottom:519.573333pt;}
.y15_c00420{bottom:549.840000pt;}
.y14_c00420{bottom:579.840000pt;}
.y13_c00420{bottom:607.706667pt;}
.y12_c00420{bottom:639.840000pt;}
.y11_c00420{bottom:669.573333pt;}
.y10_c00420{bottom:699.573333pt;}
.yf_c00420{bottom:729.573333pt;}
.ye_c00420{bottom:757.840000pt;}
.yd_c00420{bottom:787.173333pt;}
.yc_c00420{bottom:817.440000pt;}
.yb_c00420{bottom:845.973333pt;}
.ya_c00420{bottom:875.706667pt;}
.y9_c00420{bottom:905.306667pt;}
.y8_c00420{bottom:935.440000pt;}
.y7_c00420{bottom:964.506667pt;}
.y6_c00420{bottom:993.840000pt;}
.y5_c00420{bottom:1023.306667pt;}
.y4_c00420{bottom:1053.040000pt;}
.y3_c00420{bottom:1081.706667pt;}
.y2_c00420{bottom:1112.373333pt;}
.y1_c00420{bottom:1141.706667pt;}
.h3_c00420{height:11.733399pt;}
.h4_c00420{height:38.937500pt;}
.h2_c00420{height:108.041667pt;}
.h0_c00420{height:1229.733333pt;}
.h1_c00420{height:1230.000000pt;}
.w2_c00420{width:93.222667pt;}
.w0_c00420{width:780.466667pt;}
.w1_c00420{width:780.666667pt;}
.x0_c00420{left:0.000000pt;}
.x7_c00420{left:32.000000pt;}
.x8_c00420{left:32.933333pt;}
.x6_c00420{left:34.400000pt;}
.x2_c00420{left:35.733333pt;}
.x3_c00420{left:36.800000pt;}
.x5_c00420{left:37.733333pt;}
.x4_c00420{left:40.533333pt;}
.x1_c00420{left:42.533333pt;}
.xb_c00420{left:44.000000pt;}
.x9_c00420{left:56.000000pt;}
.xa_c00420{left:78.933333pt;}
.xc_c00420{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3558e1836c64aac4d75416cd.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_b9d15f460afa8540652c7342.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_e2f1a55b405c91997f725c30.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_46f93173a383d06307691ebc.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.lsb_c00421{letter-spacing:-3.000000px;}
.ls9_c00421{letter-spacing:0.000000px;}
.ls8_c00421{letter-spacing:0.540000px;}
.ls5_c00421{letter-spacing:2.646000px;}
.lsc_c00421{letter-spacing:6.000000px;}
.ls1_c00421{letter-spacing:6.696000px;}
.lsa_c00421{letter-spacing:9.000000px;}
.ls6_c00421{letter-spacing:15.033000px;}
.ls0_c00421{letter-spacing:20.652000px;}
.ls3_c00421{letter-spacing:38.433000px;}
.ls2_c00421{letter-spacing:60.033000px;}
.ls4_c00421{letter-spacing:69.033000px;}
.ls7_c00421{letter-spacing:211.233000px;}
.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;}
}
.ws0_c00421{word-spacing:-20.244000px;}
.ws1_c00421{word-spacing:-18.798000px;}
.ws2_c00421{word-spacing:-18.360000px;}
.ws3_c00421{word-spacing:0.000000px;}
._7_c00421{margin-left:-32.832000px;}
._47_c00421{margin-left:-31.320000px;}
._45_c00421{margin-left:-29.580000px;}
._23_c00421{margin-left:-28.512000px;}
._4_c00421{margin-left:-24.192000px;}
._41_c00421{margin-left:-21.792000px;}
._48_c00421{margin-left:-17.712000px;}
._0_c00421{margin-left:-15.552000px;}
._1f_c00421{margin-left:-14.232000px;}
._30_c00421{margin-left:-11.904000px;}
._39_c00421{margin-left:-10.560000px;}
._2_c00421{margin-left:-8.352000px;}
._35_c00421{margin-left:-7.200000px;}
._34_c00421{margin-left:-6.048000px;}
._11_c00421{margin-left:-4.608000px;}
._e_c00421{margin-left:-3.456000px;}
._43_c00421{margin-left:-2.448000px;}
._5_c00421{margin-left:-1.440000px;}
._9_c00421{width:1.536000px;}
._a_c00421{width:2.976000px;}
._c_c00421{width:4.416000px;}
._b_c00421{width:6.048000px;}
._14_c00421{width:7.680000px;}
._1_c00421{width:9.312000px;}
._8_c00421{width:10.464000px;}
._28_c00421{width:11.616000px;}
._f_c00421{width:12.672000px;}
._d_c00421{width:14.496000px;}
._20_c00421{width:16.512000px;}
._3c_c00421{width:17.568000px;}
._6_c00421{width:18.816000px;}
._3_c00421{width:20.352000px;}
._21_c00421{width:21.888000px;}
._32_c00421{width:24.360000px;}
._17_c00421{width:26.016000px;}
._10_c00421{width:27.936000px;}
._18_c00421{width:29.088000px;}
._12_c00421{width:30.336000px;}
._16_c00421{width:32.160000px;}
._2e_c00421{width:34.176000px;}
._13_c00421{width:36.192000px;}
._15_c00421{width:38.400000px;}
._29_c00421{width:40.032000px;}
._25_c00421{width:41.184000px;}
._36_c00421{width:42.816000px;}
._1a_c00421{width:45.408000px;}
._19_c00421{width:46.968000px;}
._1d_c00421{width:48.000000px;}
._3f_c00421{width:49.248000px;}
._1e_c00421{width:50.784000px;}
._22_c00421{width:52.224000px;}
._3b_c00421{width:54.528000px;}
._4b_c00421{width:55.584000px;}
._2d_c00421{width:56.640000px;}
._24_c00421{width:59.232000px;}
._1c_c00421{width:60.384000px;}
._38_c00421{width:61.920000px;}
._33_c00421{width:62.964000px;}
._2b_c00421{width:64.608000px;}
._3d_c00421{width:67.296000px;}
._42_c00421{width:68.544000px;}
._2c_c00421{width:71.328000px;}
._27_c00421{width:72.960000px;}
._26_c00421{width:75.552000px;}
._3e_c00421{width:79.392000px;}
._37_c00421{width:97.728000px;}
._3a_c00421{width:109.728000px;}
._1b_c00421{width:118.464000px;}
._2f_c00421{width:120.576000px;}
._2a_c00421{width:125.184000px;}
._4d_c00421{width:237.660000px;}
._46_c00421{width:246.294000px;}
._49_c00421{width:271.260000px;}
._44_c00421{width:321.870000px;}
._31_c00421{width:487.584000px;}
._4a_c00421{width:570.954000px;}
._4c_c00421{width:610.032000px;}
._4e_c00421{width:871.716000px;}
._40_c00421{width:899.964000px;}
._4f_c00421{width:965.748000px;}
.fc2_c00421{color:transparent;}
.fc1_c00421{color:rgb(128,128,128);}
.fc0_c00421{color:rgb(0,0,0);}
.fs5_c00421{font-size:30.000000px;}
.fs7_c00421{font-size:48.000000px;}
.fs6_c00421{font-size:60.000000px;}
.fs2_c00421{font-size:69.000000px;}
.fs3_c00421{font-size:78.000000px;}
.fs1_c00421{font-size:84.000000px;}
.fs4_c00421{font-size:87.000000px;}
.fs0_c00421{font-size:96.000000px;}
.y0_c00421{bottom:0.000000px;}
.y28_c00421{bottom:3.105000px;}
.y27_c00421{bottom:7.228355px;}
.y26_c00421{bottom:85.935000px;}
.y25_c00421{bottom:107.235000px;}
.y24_c00421{bottom:117.735000px;}
.y23_c00421{bottom:152.835000px;}
.y22_c00421{bottom:186.885000px;}
.y21_c00421{bottom:221.385000px;}
.y20_c00421{bottom:255.135000px;}
.y1f_c00421{bottom:289.485000px;}
.y1e_c00421{bottom:320.835000px;}
.y1d_c00421{bottom:353.385000px;}
.y1c_c00421{bottom:395.535000px;}
.y1b_c00421{bottom:430.335000px;}
.y1a_c00421{bottom:460.035000px;}
.y19_c00421{bottom:491.985000px;}
.y18_c00421{bottom:525.735000px;}
.y17_c00421{bottom:557.835000px;}
.y16_c00421{bottom:593.685000px;}
.y15_c00421{bottom:626.385000px;}
.y14_c00421{bottom:660.735000px;}
.y13_c00421{bottom:693.435000px;}
.y12_c00421{bottom:727.335000px;}
.y11_c00421{bottom:760.935000px;}
.y10_c00421{bottom:794.685000px;}
.yf_c00421{bottom:827.535000px;}
.ye_c00421{bottom:861.585000px;}
.yd_c00421{bottom:895.635000px;}
.yc_c00421{bottom:928.485000px;}
.yb_c00421{bottom:963.435000px;}
.ya_c00421{bottom:994.935000px;}
.y9_c00421{bottom:1027.635000px;}
.y8_c00421{bottom:1062.135000px;}
.y7_c00421{bottom:1095.435000px;}
.y6_c00421{bottom:1128.285000px;}
.y5_c00421{bottom:1161.585000px;}
.y4_c00421{bottom:1194.435000px;}
.y3_c00421{bottom:1228.035000px;}
.y2_c00421{bottom:1261.785000px;}
.y1_c00421{bottom:1291.485000px;}
.h5_c00421{height:13.200074px;}
.h6_c00421{height:43.804688px;}
.h4_c00421{height:64.020000px;}
.h3_c00421{height:110.151855px;}
.h2_c00421{height:121.546875px;}
.h1_c00421{height:1347.750000px;}
.h0_c00421{height:1347.825000px;}
.w1_c00421{width:104.875500px;}
.w0_c00421{width:840.750000px;}
.x0_c00421{left:0.000000px;}
.x7_c00421{left:29.400000px;}
.x8_c00421{left:31.050000px;}
.xa_c00421{left:32.700000px;}
.x9_c00421{left:44.550000px;}
.x6_c00421{left:55.950000px;}
.x4_c00421{left:241.650000px;}
.x2_c00421{left:243.300000px;}
.x3_c00421{left:244.350000px;}
.xb_c00421{left:245.400000px;}
.xc_c00421{left:246.600000px;}
.x1_c00421{left:281.700000px;}
.x5_c00421{left:292.950000px;}
.x10_c00421{left:372.189240px;}
.xe_c00421{left:480.600000px;}
.xf_c00421{left:556.200000px;}
.xd_c00421{left:580.500000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.lsb_c00421{letter-spacing:-2.666667pt;}
.ls9_c00421{letter-spacing:0.000000pt;}
.ls8_c00421{letter-spacing:0.480000pt;}
.ls5_c00421{letter-spacing:2.352000pt;}
.lsc_c00421{letter-spacing:5.333333pt;}
.ls1_c00421{letter-spacing:5.952000pt;}
.lsa_c00421{letter-spacing:8.000000pt;}
.ls6_c00421{letter-spacing:13.362667pt;}
.ls0_c00421{letter-spacing:18.357333pt;}
.ls3_c00421{letter-spacing:34.162667pt;}
.ls2_c00421{letter-spacing:53.362667pt;}
.ls4_c00421{letter-spacing:61.362667pt;}
.ls7_c00421{letter-spacing:187.762667pt;}
.ws0_c00421{word-spacing:-17.994667pt;}
.ws1_c00421{word-spacing:-16.709333pt;}
.ws2_c00421{word-spacing:-16.320000pt;}
.ws3_c00421{word-spacing:0.000000pt;}
._7_c00421{margin-left:-29.184000pt;}
._47_c00421{margin-left:-27.840000pt;}
._45_c00421{margin-left:-26.293333pt;}
._23_c00421{margin-left:-25.344000pt;}
._4_c00421{margin-left:-21.504000pt;}
._41_c00421{margin-left:-19.370667pt;}
._48_c00421{margin-left:-15.744000pt;}
._0_c00421{margin-left:-13.824000pt;}
._1f_c00421{margin-left:-12.650667pt;}
._30_c00421{margin-left:-10.581333pt;}
._39_c00421{margin-left:-9.386667pt;}
._2_c00421{margin-left:-7.424000pt;}
._35_c00421{margin-left:-6.400000pt;}
._34_c00421{margin-left:-5.376000pt;}
._11_c00421{margin-left:-4.096000pt;}
._e_c00421{margin-left:-3.072000pt;}
._43_c00421{margin-left:-2.176000pt;}
._5_c00421{margin-left:-1.280000pt;}
._9_c00421{width:1.365333pt;}
._a_c00421{width:2.645333pt;}
._c_c00421{width:3.925333pt;}
._b_c00421{width:5.376000pt;}
._14_c00421{width:6.826667pt;}
._1_c00421{width:8.277333pt;}
._8_c00421{width:9.301333pt;}
._28_c00421{width:10.325333pt;}
._f_c00421{width:11.264000pt;}
._d_c00421{width:12.885333pt;}
._20_c00421{width:14.677333pt;}
._3c_c00421{width:15.616000pt;}
._6_c00421{width:16.725333pt;}
._3_c00421{width:18.090667pt;}
._21_c00421{width:19.456000pt;}
._32_c00421{width:21.653333pt;}
._17_c00421{width:23.125333pt;}
._10_c00421{width:24.832000pt;}
._18_c00421{width:25.856000pt;}
._12_c00421{width:26.965333pt;}
._16_c00421{width:28.586667pt;}
._2e_c00421{width:30.378667pt;}
._13_c00421{width:32.170667pt;}
._15_c00421{width:34.133333pt;}
._29_c00421{width:35.584000pt;}
._25_c00421{width:36.608000pt;}
._36_c00421{width:38.058667pt;}
._1a_c00421{width:40.362667pt;}
._19_c00421{width:41.749333pt;}
._1d_c00421{width:42.666667pt;}
._3f_c00421{width:43.776000pt;}
._1e_c00421{width:45.141333pt;}
._22_c00421{width:46.421333pt;}
._3b_c00421{width:48.469333pt;}
._4b_c00421{width:49.408000pt;}
._2d_c00421{width:50.346667pt;}
._24_c00421{width:52.650667pt;}
._1c_c00421{width:53.674667pt;}
._38_c00421{width:55.040000pt;}
._33_c00421{width:55.968000pt;}
._2b_c00421{width:57.429333pt;}
._3d_c00421{width:59.818667pt;}
._42_c00421{width:60.928000pt;}
._2c_c00421{width:63.402667pt;}
._27_c00421{width:64.853333pt;}
._26_c00421{width:67.157333pt;}
._3e_c00421{width:70.570667pt;}
._37_c00421{width:86.869333pt;}
._3a_c00421{width:97.536000pt;}
._1b_c00421{width:105.301333pt;}
._2f_c00421{width:107.178667pt;}
._2a_c00421{width:111.274667pt;}
._4d_c00421{width:211.253333pt;}
._46_c00421{width:218.928000pt;}
._49_c00421{width:241.120000pt;}
._44_c00421{width:286.106667pt;}
._31_c00421{width:433.408000pt;}
._4a_c00421{width:507.514667pt;}
._4c_c00421{width:542.250667pt;}
._4e_c00421{width:774.858667pt;}
._40_c00421{width:799.968000pt;}
._4f_c00421{width:858.442667pt;}
.fs5_c00421{font-size:26.666667pt;}
.fs7_c00421{font-size:42.666667pt;}
.fs6_c00421{font-size:53.333333pt;}
.fs2_c00421{font-size:61.333333pt;}
.fs3_c00421{font-size:69.333333pt;}
.fs1_c00421{font-size:74.666667pt;}
.fs4_c00421{font-size:77.333333pt;}
.fs0_c00421{font-size:85.333333pt;}
.y0_c00421{bottom:0.000000pt;}
.y28_c00421{bottom:2.760000pt;}
.y27_c00421{bottom:6.425204pt;}
.y26_c00421{bottom:76.386667pt;}
.y25_c00421{bottom:95.320000pt;}
.y24_c00421{bottom:104.653333pt;}
.y23_c00421{bottom:135.853333pt;}
.y22_c00421{bottom:166.120000pt;}
.y21_c00421{bottom:196.786667pt;}
.y20_c00421{bottom:226.786667pt;}
.y1f_c00421{bottom:257.320000pt;}
.y1e_c00421{bottom:285.186667pt;}
.y1d_c00421{bottom:314.120000pt;}
.y1c_c00421{bottom:351.586667pt;}
.y1b_c00421{bottom:382.520000pt;}
.y1a_c00421{bottom:408.920000pt;}
.y19_c00421{bottom:437.320000pt;}
.y18_c00421{bottom:467.320000pt;}
.y17_c00421{bottom:495.853333pt;}
.y16_c00421{bottom:527.720000pt;}
.y15_c00421{bottom:556.786667pt;}
.y14_c00421{bottom:587.320000pt;}
.y13_c00421{bottom:616.386667pt;}
.y12_c00421{bottom:646.520000pt;}
.y11_c00421{bottom:676.386667pt;}
.y10_c00421{bottom:706.386667pt;}
.yf_c00421{bottom:735.586667pt;}
.ye_c00421{bottom:765.853333pt;}
.yd_c00421{bottom:796.120000pt;}
.yc_c00421{bottom:825.320000pt;}
.yb_c00421{bottom:856.386667pt;}
.ya_c00421{bottom:884.386667pt;}
.y9_c00421{bottom:913.453333pt;}
.y8_c00421{bottom:944.120000pt;}
.y7_c00421{bottom:973.720000pt;}
.y6_c00421{bottom:1002.920000pt;}
.y5_c00421{bottom:1032.520000pt;}
.y4_c00421{bottom:1061.720000pt;}
.y3_c00421{bottom:1091.586667pt;}
.y2_c00421{bottom:1121.586667pt;}
.y1_c00421{bottom:1147.986667pt;}
.h5_c00421{height:11.733399pt;}
.h6_c00421{height:38.937500pt;}
.h4_c00421{height:56.906667pt;}
.h3_c00421{height:97.912760pt;}
.h2_c00421{height:108.041667pt;}
.h1_c00421{height:1198.000000pt;}
.h0_c00421{height:1198.066667pt;}
.w1_c00421{width:93.222667pt;}
.w0_c00421{width:747.333333pt;}
.x0_c00421{left:0.000000pt;}
.x7_c00421{left:26.133333pt;}
.x8_c00421{left:27.600000pt;}
.xa_c00421{left:29.066667pt;}
.x9_c00421{left:39.600000pt;}
.x6_c00421{left:49.733333pt;}
.x4_c00421{left:214.800000pt;}
.x2_c00421{left:216.266667pt;}
.x3_c00421{left:217.200000pt;}
.xb_c00421{left:218.133333pt;}
.xc_c00421{left:219.200000pt;}
.x1_c00421{left:250.400000pt;}
.x5_c00421{left:260.400000pt;}
.x10_c00421{left:330.834880pt;}
.xe_c00421{left:427.200000pt;}
.xf_c00421{left:494.400000pt;}
.xd_c00421{left:516.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_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_331457ee21c1aa9ae8f517de.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_b40c350ed10c471c7cc0237e.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls2_c00422{letter-spacing:0.000000px;}
.ls3_c00422{letter-spacing:9.000000px;}
.ls1_c00422{letter-spacing:21.852000px;}
.ls0_c00422{letter-spacing:22.440000px;}
.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;}
}
.ws0_c00422{word-spacing:-29.244000px;}
.ws1_c00422{word-spacing:0.000000px;}
._36_c00422{margin-left:-86.112000px;}
._12_c00422{margin-left:-84.288000px;}
._3f_c00422{margin-left:-33.408000px;}
._27_c00422{margin-left:-32.352000px;}
._3d_c00422{margin-left:-30.240000px;}
._30_c00422{margin-left:-28.896000px;}
._2b_c00422{margin-left:-27.456000px;}
._32_c00422{margin-left:-25.824000px;}
._17_c00422{margin-left:-18.240000px;}
._4c_c00422{margin-left:-15.336000px;}
._15_c00422{margin-left:-13.824000px;}
._42_c00422{margin-left:-11.112000px;}
._39_c00422{margin-left:-9.372000px;}
._19_c00422{margin-left:-7.776000px;}
._11_c00422{margin-left:-6.528000px;}
._3e_c00422{margin-left:-5.472000px;}
._1b_c00422{margin-left:-4.320000px;}
._d_c00422{margin-left:-3.264000px;}
._6_c00422{margin-left:-1.824000px;}
._0_c00422{width:1.344000px;}
._1_c00422{width:2.496000px;}
._4_c00422{width:3.744000px;}
._2c_c00422{width:4.800000px;}
._b_c00422{width:5.856000px;}
._a_c00422{width:7.104000px;}
._2e_c00422{width:8.352000px;}
._9_c00422{width:9.600000px;}
._2a_c00422{width:11.136000px;}
._3b_c00422{width:12.384000px;}
._33_c00422{width:13.440000px;}
._24_c00422{width:14.976000px;}
._23_c00422{width:16.896000px;}
._8_c00422{width:18.912000px;}
._2_c00422{width:21.216000px;}
._3c_c00422{width:24.192000px;}
._7_c00422{width:25.440000px;}
._22_c00422{width:27.744000px;}
._1e_c00422{width:28.992000px;}
._5_c00422{width:30.624000px;}
._3_c00422{width:32.832000px;}
._44_c00422{width:34.080000px;}
._26_c00422{width:35.136000px;}
._e_c00422{width:36.384000px;}
._45_c00422{width:37.824000px;}
._25_c00422{width:39.168000px;}
._10_c00422{width:40.512000px;}
._c_c00422{width:43.296000px;}
._2d_c00422{width:45.696000px;}
._1f_c00422{width:47.712000px;}
._31_c00422{width:49.152000px;}
._f_c00422{width:50.208000px;}
._43_c00422{width:51.744000px;}
._40_c00422{width:54.048000px;}
._13_c00422{width:55.200000px;}
._4b_c00422{width:56.256000px;}
._3a_c00422{width:57.888000px;}
._20_c00422{width:59.040000px;}
._28_c00422{width:60.288000px;}
._41_c00422{width:62.784000px;}
._2f_c00422{width:65.376000px;}
._29_c00422{width:66.432000px;}
._21_c00422{width:69.312000px;}
._46_c00422{width:73.824000px;}
._1c_c00422{width:77.088000px;}
._47_c00422{width:80.256000px;}
._4a_c00422{width:81.600000px;}
._37_c00422{width:92.352000px;}
._1d_c00422{width:111.936000px;}
._34_c00422{width:123.456000px;}
._35_c00422{width:126.720000px;}
._49_c00422{width:141.024000px;}
._38_c00422{width:256.800000px;}
._14_c00422{width:282.912000px;}
._16_c00422{width:348.288000px;}
._48_c00422{width:382.752000px;}
._18_c00422{width:470.400000px;}
._1a_c00422{width:569.664000px;}
._4d_c00422{width:2033.760000px;}
.fc2_c00422{color:transparent;}
.fc1_c00422{color:rgb(128,128,128);}
.fc0_c00422{color:rgb(0,0,0);}
.fs2_c00422{font-size:48.000000px;}
.fs1_c00422{font-size:84.000000px;}
.fs0_c00422{font-size:96.000000px;}
.y0_c00422{bottom:0.000000px;}
.y26_c00422{bottom:3.105000px;}
.y25_c00422{bottom:7.228369px;}
.y24_c00422{bottom:109.620000px;}
.y23_c00422{bottom:145.470000px;}
.y22_c00422{bottom:180.120000px;}
.y21_c00422{bottom:214.020000px;}
.y20_c00422{bottom:248.370000px;}
.y1f_c00422{bottom:281.820000px;}
.y1e_c00422{bottom:315.870000px;}
.y1d_c00422{bottom:349.320000px;}
.y1c_c00422{bottom:383.520000px;}
.y1b_c00422{bottom:416.820000px;}
.y1a_c00422{bottom:450.120000px;}
.y19_c00422{bottom:484.020000px;}
.y18_c00422{bottom:517.020000px;}
.y17_c00422{bottom:550.770000px;}
.y16_c00422{bottom:584.820000px;}
.y15_c00422{bottom:618.570000px;}
.y14_c00422{bottom:651.720000px;}
.y13_c00422{bottom:685.770000px;}
.y12_c00422{bottom:718.920000px;}
.y11_c00422{bottom:752.220000px;}
.y10_c00422{bottom:785.970000px;}
.yf_c00422{bottom:819.120000px;}
.ye_c00422{bottom:851.820000px;}
.yd_c00422{bottom:884.820000px;}
.yc_c00422{bottom:917.970000px;}
.yb_c00422{bottom:951.420000px;}
.ya_c00422{bottom:984.870000px;}
.y9_c00422{bottom:1017.870000px;}
.y8_c00422{bottom:1050.870000px;}
.y7_c00422{bottom:1084.320000px;}
.y6_c00422{bottom:1117.020000px;}
.y5_c00422{bottom:1150.770000px;}
.y4_c00422{bottom:1183.320000px;}
.y3_c00422{bottom:1215.270000px;}
.y2_c00422{bottom:1249.770000px;}
.y1_c00422{bottom:1282.770000px;}
.h3_c00422{height:13.200073px;}
.h4_c00422{height:43.804688px;}
.h2_c00422{height:121.546875px;}
.h0_c00422{height:1383.450000px;}
.h1_c00422{height:1383.750000px;}
.w2_c00422{width:104.875500px;}
.w0_c00422{width:878.025000px;}
.w1_c00422{width:878.250000px;}
.x0_c00422{left:0.000000px;}
.x8_c00422{left:30.000000px;}
.x7_c00422{left:31.500000px;}
.x6_c00422{left:33.150000px;}
.x5_c00422{left:34.350000px;}
.x2_c00422{left:35.400000px;}
.x3_c00422{left:37.050000px;}
.xc_c00422{left:38.100000px;}
.xb_c00422{left:39.150000px;}
.xd_c00422{left:40.800000px;}
.x4_c00422{left:43.500000px;}
.x9_c00422{left:80.100000px;}
.xa_c00422{left:81.750000px;}
.x1_c00422{left:124.500000px;}
.xe_c00422{left:390.826721px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls2_c00422{letter-spacing:0.000000pt;}
.ls3_c00422{letter-spacing:8.000000pt;}
.ls1_c00422{letter-spacing:19.424000pt;}
.ls0_c00422{letter-spacing:19.946667pt;}
.ws0_c00422{word-spacing:-25.994667pt;}
.ws1_c00422{word-spacing:0.000000pt;}
._36_c00422{margin-left:-76.544000pt;}
._12_c00422{margin-left:-74.922667pt;}
._3f_c00422{margin-left:-29.696000pt;}
._27_c00422{margin-left:-28.757333pt;}
._3d_c00422{margin-left:-26.880000pt;}
._30_c00422{margin-left:-25.685333pt;}
._2b_c00422{margin-left:-24.405333pt;}
._32_c00422{margin-left:-22.954667pt;}
._17_c00422{margin-left:-16.213333pt;}
._4c_c00422{margin-left:-13.632000pt;}
._15_c00422{margin-left:-12.288000pt;}
._42_c00422{margin-left:-9.877333pt;}
._39_c00422{margin-left:-8.330667pt;}
._19_c00422{margin-left:-6.912000pt;}
._11_c00422{margin-left:-5.802667pt;}
._3e_c00422{margin-left:-4.864000pt;}
._1b_c00422{margin-left:-3.840000pt;}
._d_c00422{margin-left:-2.901333pt;}
._6_c00422{margin-left:-1.621333pt;}
._0_c00422{width:1.194667pt;}
._1_c00422{width:2.218667pt;}
._4_c00422{width:3.328000pt;}
._2c_c00422{width:4.266667pt;}
._b_c00422{width:5.205333pt;}
._a_c00422{width:6.314667pt;}
._2e_c00422{width:7.424000pt;}
._9_c00422{width:8.533333pt;}
._2a_c00422{width:9.898667pt;}
._3b_c00422{width:11.008000pt;}
._33_c00422{width:11.946667pt;}
._24_c00422{width:13.312000pt;}
._23_c00422{width:15.018667pt;}
._8_c00422{width:16.810667pt;}
._2_c00422{width:18.858667pt;}
._3c_c00422{width:21.504000pt;}
._7_c00422{width:22.613333pt;}
._22_c00422{width:24.661333pt;}
._1e_c00422{width:25.770667pt;}
._5_c00422{width:27.221333pt;}
._3_c00422{width:29.184000pt;}
._44_c00422{width:30.293333pt;}
._26_c00422{width:31.232000pt;}
._e_c00422{width:32.341333pt;}
._45_c00422{width:33.621333pt;}
._25_c00422{width:34.816000pt;}
._10_c00422{width:36.010667pt;}
._c_c00422{width:38.485333pt;}
._2d_c00422{width:40.618667pt;}
._1f_c00422{width:42.410667pt;}
._31_c00422{width:43.690667pt;}
._f_c00422{width:44.629333pt;}
._43_c00422{width:45.994667pt;}
._40_c00422{width:48.042667pt;}
._13_c00422{width:49.066667pt;}
._4b_c00422{width:50.005333pt;}
._3a_c00422{width:51.456000pt;}
._20_c00422{width:52.480000pt;}
._28_c00422{width:53.589333pt;}
._41_c00422{width:55.808000pt;}
._2f_c00422{width:58.112000pt;}
._29_c00422{width:59.050667pt;}
._21_c00422{width:61.610667pt;}
._46_c00422{width:65.621333pt;}
._1c_c00422{width:68.522667pt;}
._47_c00422{width:71.338667pt;}
._4a_c00422{width:72.533333pt;}
._37_c00422{width:82.090667pt;}
._1d_c00422{width:99.498667pt;}
._34_c00422{width:109.738667pt;}
._35_c00422{width:112.640000pt;}
._49_c00422{width:125.354667pt;}
._38_c00422{width:228.266667pt;}
._14_c00422{width:251.477333pt;}
._16_c00422{width:309.589333pt;}
._48_c00422{width:340.224000pt;}
._18_c00422{width:418.133333pt;}
._1a_c00422{width:506.368000pt;}
._4d_c00422{width:1807.786667pt;}
.fs2_c00422{font-size:42.666667pt;}
.fs1_c00422{font-size:74.666667pt;}
.fs0_c00422{font-size:85.333333pt;}
.y0_c00422{bottom:0.000000pt;}
.y26_c00422{bottom:2.760000pt;}
.y25_c00422{bottom:6.425217pt;}
.y24_c00422{bottom:97.440000pt;}
.y23_c00422{bottom:129.306667pt;}
.y22_c00422{bottom:160.106667pt;}
.y21_c00422{bottom:190.240000pt;}
.y20_c00422{bottom:220.773333pt;}
.y1f_c00422{bottom:250.506667pt;}
.y1e_c00422{bottom:280.773333pt;}
.y1d_c00422{bottom:310.506667pt;}
.y1c_c00422{bottom:340.906667pt;}
.y1b_c00422{bottom:370.506667pt;}
.y1a_c00422{bottom:400.106667pt;}
.y19_c00422{bottom:430.240000pt;}
.y18_c00422{bottom:459.573333pt;}
.y17_c00422{bottom:489.573333pt;}
.y16_c00422{bottom:519.840000pt;}
.y15_c00422{bottom:549.840000pt;}
.y14_c00422{bottom:579.306667pt;}
.y13_c00422{bottom:609.573333pt;}
.y12_c00422{bottom:639.040000pt;}
.y11_c00422{bottom:668.640000pt;}
.y10_c00422{bottom:698.640000pt;}
.yf_c00422{bottom:728.106667pt;}
.ye_c00422{bottom:757.173333pt;}
.yd_c00422{bottom:786.506667pt;}
.yc_c00422{bottom:815.973333pt;}
.yb_c00422{bottom:845.706667pt;}
.ya_c00422{bottom:875.440000pt;}
.y9_c00422{bottom:904.773333pt;}
.y8_c00422{bottom:934.106667pt;}
.y7_c00422{bottom:963.840000pt;}
.y6_c00422{bottom:992.906667pt;}
.y5_c00422{bottom:1022.906667pt;}
.y4_c00422{bottom:1051.840000pt;}
.y3_c00422{bottom:1080.240000pt;}
.y2_c00422{bottom:1110.906667pt;}
.y1_c00422{bottom:1140.240000pt;}
.h3_c00422{height:11.733399pt;}
.h4_c00422{height:38.937500pt;}
.h2_c00422{height:108.041667pt;}
.h0_c00422{height:1229.733333pt;}
.h1_c00422{height:1230.000000pt;}
.w2_c00422{width:93.222667pt;}
.w0_c00422{width:780.466667pt;}
.w1_c00422{width:780.666667pt;}
.x0_c00422{left:0.000000pt;}
.x8_c00422{left:26.666667pt;}
.x7_c00422{left:28.000000pt;}
.x6_c00422{left:29.466667pt;}
.x5_c00422{left:30.533333pt;}
.x2_c00422{left:31.466667pt;}
.x3_c00422{left:32.933333pt;}
.xc_c00422{left:33.866667pt;}
.xb_c00422{left:34.800000pt;}
.xd_c00422{left:36.266667pt;}
.x4_c00422{left:38.666667pt;}
.x9_c00422{left:71.200000pt;}
.xa_c00422{left:72.666667pt;}
.x1_c00422{left:110.666667pt;}
.xe_c00422{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18ada6b19162334c5a4336a7.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_701aed882700b48c1804a8de.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls4_c00423{letter-spacing:0.000000px;}
.ls3_c00423{letter-spacing:9.000000px;}
.ls0_c00423{letter-spacing:127.233000px;}
.ls1_c00423{letter-spacing:298.833000px;}
.ls2_c00423{letter-spacing:506.433000px;}
.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;}
}
.ws1_c00423{word-spacing:-51.000000px;}
.ws2_c00423{word-spacing:-29.244000px;}
.ws0_c00423{word-spacing:-14.460000px;}
.ws3_c00423{word-spacing:0.000000px;}
._3b_c00423{margin-left:-26.778000px;}
._24_c00423{margin-left:-21.888000px;}
._13_c00423{margin-left:-20.088000px;}
._d_c00423{margin-left:-18.336000px;}
._31_c00423{margin-left:-16.224000px;}
._2e_c00423{margin-left:-15.204000px;}
._22_c00423{margin-left:-13.728000px;}
._3_c00423{margin-left:-11.820000px;}
._12_c00423{margin-left:-10.080000px;}
._1e_c00423{margin-left:-8.832000px;}
._1d_c00423{margin-left:-7.284000px;}
._21_c00423{margin-left:-5.556000px;}
._2c_c00423{margin-left:-3.900000px;}
._1c_c00423{margin-left:-2.664000px;}
._10_c00423{margin-left:-1.404000px;}
._15_c00423{width:1.536000px;}
._f_c00423{width:2.640000px;}
._9_c00423{width:4.440000px;}
._0_c00423{width:6.360000px;}
._5_c00423{width:7.500000px;}
._2_c00423{width:8.640000px;}
._1_c00423{width:10.620000px;}
._7_c00423{width:12.000000px;}
._23_c00423{width:13.704000px;}
._b_c00423{width:14.952000px;}
._19_c00423{width:16.176000px;}
._30_c00423{width:17.448000px;}
._11_c00423{width:18.852000px;}
._44_c00423{width:19.896000px;}
._6_c00423{width:21.240000px;}
._33_c00423{width:24.210000px;}
._a_c00423{width:26.100000px;}
._e_c00423{width:27.780000px;}
._4_c00423{width:29.640000px;}
._28_c00423{width:30.660000px;}
._20_c00423{width:32.340000px;}
._17_c00423{width:33.708000px;}
._26_c00423{width:34.968000px;}
._1f_c00423{width:36.312000px;}
._3d_c00423{width:38.724000px;}
._1b_c00423{width:39.900000px;}
._35_c00423{width:41.394000px;}
._8_c00423{width:42.960000px;}
._25_c00423{width:44.640000px;}
._27_c00423{width:46.584000px;}
._1a_c00423{width:47.640000px;}
._16_c00423{width:49.536000px;}
._32_c00423{width:51.552000px;}
._3a_c00423{width:53.964000px;}
._38_c00423{width:55.416000px;}
._40_c00423{width:56.460000px;}
._34_c00423{width:58.662000px;}
._39_c00423{width:60.456000px;}
._36_c00423{width:62.076000px;}
._3c_c00423{width:66.492000px;}
._46_c00423{width:69.000000px;}
._3e_c00423{width:71.304000px;}
._37_c00423{width:78.096000px;}
._41_c00423{width:83.880000px;}
._2d_c00423{width:90.498000px;}
._2a_c00423{width:96.768000px;}
._2b_c00423{width:100.800000px;}
._c_c00423{width:103.368000px;}
._2f_c00423{width:113.952000px;}
._29_c00423{width:137.880000px;}
._43_c00423{width:141.972000px;}
._18_c00423{width:165.264000px;}
._3f_c00423{width:174.984000px;}
._45_c00423{width:213.432000px;}
._14_c00423{width:306.924000px;}
._42_c00423{width:970.524000px;}
._47_c00423{width:2043.708000px;}
.fc2_c00423{color:transparent;}
.fc1_c00423{color:rgb(128,128,128);}
.fc0_c00423{color:rgb(0,0,0);}
.fs6_c00423{font-size:48.000000px;}
.fs0_c00423{font-size:60.000000px;}
.fs3_c00423{font-size:78.000000px;}
.fs5_c00423{font-size:84.000000px;}
.fs4_c00423{font-size:87.000000px;}
.fs1_c00423{font-size:96.000000px;}
.fs2_c00423{font-size:102.000000px;}
.y0_c00423{bottom:0.000000px;}
.y29_c00423{bottom:3.105000px;}
.y28_c00423{bottom:7.228357px;}
.y27_c00423{bottom:105.630000px;}
.y26_c00423{bottom:140.430000px;}
.y25_c00423{bottom:174.930000px;}
.y24_c00423{bottom:208.680000px;}
.y23_c00423{bottom:243.330000px;}
.y22_c00423{bottom:277.380000px;}
.y21_c00423{bottom:311.280000px;}
.y20_c00423{bottom:345.330000px;}
.y1f_c00423{bottom:378.780000px;}
.y1e_c00423{bottom:412.530000px;}
.y1d_c00423{bottom:446.880000px;}
.y1c_c00423{bottom:479.580000px;}
.y1b_c00423{bottom:513.780000px;}
.y1a_c00423{bottom:547.530000px;}
.y19_c00423{bottom:580.530000px;}
.y18_c00423{bottom:614.880000px;}
.y17_c00423{bottom:647.730000px;}
.y16_c00423{bottom:681.030000px;}
.y15_c00423{bottom:715.230000px;}
.y14_c00423{bottom:748.980000px;}
.y13_c00423{bottom:781.980000px;}
.y12_c00423{bottom:815.730000px;}
.y11_c00423{bottom:848.580000px;}
.y10_c00423{bottom:882.330000px;}
.yf_c00423{bottom:916.080000px;}
.y3_c00423{bottom:937.680000px;}
.ye_c00423{bottom:949.680000px;}
.y2_c00423{bottom:967.980000px;}
.yd_c00423{bottom:982.230000px;}
.y1_c00423{bottom:998.730000px;}
.yc_c00423{bottom:1019.880000px;}
.yb_c00423{bottom:1050.930000px;}
.ya_c00423{bottom:1083.330000px;}
.y9_c00423{bottom:1114.830000px;}
.y8_c00423{bottom:1148.130000px;}
.y7_c00423{bottom:1181.580000px;}
.y6_c00423{bottom:1214.880000px;}
.y5_c00423{bottom:1247.730000px;}
.y4_c00423{bottom:1280.580000px;}
.h5_c00423{height:13.200074px;}
.h6_c00423{height:43.804688px;}
.h3_c00423{height:70.224609px;}
.h2_c00423{height:75.966797px;}
.h4_c00423{height:121.546875px;}
.h0_c00423{height:1382.700000px;}
.h1_c00423{height:1383.000000px;}
.w2_c00423{width:104.875500px;}
.w0_c00423{width:863.175000px;}
.w1_c00423{width:863.250000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:27.300000px;}
.x2_c00423{left:32.100000px;}
.x3_c00423{left:33.750000px;}
.x7_c00423{left:68.250000px;}
.x6_c00423{left:250.800000px;}
.x5_c00423{left:251.850000px;}
.x8_c00423{left:252.900000px;}
.xa_c00423{left:255.150000px;}
.xc_c00423{left:256.200000px;}
.xb_c00423{left:257.250000px;}
.xe_c00423{left:258.300000px;}
.x4_c00423{left:262.650000px;}
.xd_c00423{left:303.750000px;}
.x9_c00423{left:311.250000px;}
.xf_c00423{left:383.401749px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls4_c00423{letter-spacing:0.000000pt;}
.ls3_c00423{letter-spacing:8.000000pt;}
.ls0_c00423{letter-spacing:113.096000pt;}
.ls1_c00423{letter-spacing:265.629333pt;}
.ls2_c00423{letter-spacing:450.162667pt;}
.ws1_c00423{word-spacing:-45.333333pt;}
.ws2_c00423{word-spacing:-25.994667pt;}
.ws0_c00423{word-spacing:-12.853333pt;}
.ws3_c00423{word-spacing:0.000000pt;}
._3b_c00423{margin-left:-23.802667pt;}
._24_c00423{margin-left:-19.456000pt;}
._13_c00423{margin-left:-17.856000pt;}
._d_c00423{margin-left:-16.298667pt;}
._31_c00423{margin-left:-14.421333pt;}
._2e_c00423{margin-left:-13.514667pt;}
._22_c00423{margin-left:-12.202667pt;}
._3_c00423{margin-left:-10.506667pt;}
._12_c00423{margin-left:-8.960000pt;}
._1e_c00423{margin-left:-7.850667pt;}
._1d_c00423{margin-left:-6.474667pt;}
._21_c00423{margin-left:-4.938667pt;}
._2c_c00423{margin-left:-3.466667pt;}
._1c_c00423{margin-left:-2.368000pt;}
._10_c00423{margin-left:-1.248000pt;}
._15_c00423{width:1.365333pt;}
._f_c00423{width:2.346667pt;}
._9_c00423{width:3.946667pt;}
._0_c00423{width:5.653333pt;}
._5_c00423{width:6.666667pt;}
._2_c00423{width:7.680000pt;}
._1_c00423{width:9.440000pt;}
._7_c00423{width:10.666667pt;}
._23_c00423{width:12.181333pt;}
._b_c00423{width:13.290667pt;}
._19_c00423{width:14.378667pt;}
._30_c00423{width:15.509333pt;}
._11_c00423{width:16.757333pt;}
._44_c00423{width:17.685333pt;}
._6_c00423{width:18.880000pt;}
._33_c00423{width:21.520000pt;}
._a_c00423{width:23.200000pt;}
._e_c00423{width:24.693333pt;}
._4_c00423{width:26.346667pt;}
._28_c00423{width:27.253333pt;}
._20_c00423{width:28.746667pt;}
._17_c00423{width:29.962667pt;}
._26_c00423{width:31.082667pt;}
._1f_c00423{width:32.277333pt;}
._3d_c00423{width:34.421333pt;}
._1b_c00423{width:35.466667pt;}
._35_c00423{width:36.794667pt;}
._8_c00423{width:38.186667pt;}
._25_c00423{width:39.680000pt;}
._27_c00423{width:41.408000pt;}
._1a_c00423{width:42.346667pt;}
._16_c00423{width:44.032000pt;}
._32_c00423{width:45.824000pt;}
._3a_c00423{width:47.968000pt;}
._38_c00423{width:49.258667pt;}
._40_c00423{width:50.186667pt;}
._34_c00423{width:52.144000pt;}
._39_c00423{width:53.738667pt;}
._36_c00423{width:55.178667pt;}
._3c_c00423{width:59.104000pt;}
._46_c00423{width:61.333333pt;}
._3e_c00423{width:63.381333pt;}
._37_c00423{width:69.418667pt;}
._41_c00423{width:74.560000pt;}
._2d_c00423{width:80.442667pt;}
._2a_c00423{width:86.016000pt;}
._2b_c00423{width:89.600000pt;}
._c_c00423{width:91.882667pt;}
._2f_c00423{width:101.290667pt;}
._29_c00423{width:122.560000pt;}
._43_c00423{width:126.197333pt;}
._18_c00423{width:146.901333pt;}
._3f_c00423{width:155.541333pt;}
._45_c00423{width:189.717333pt;}
._14_c00423{width:272.821333pt;}
._42_c00423{width:862.688000pt;}
._47_c00423{width:1816.629333pt;}
.fs6_c00423{font-size:42.666667pt;}
.fs0_c00423{font-size:53.333333pt;}
.fs3_c00423{font-size:69.333333pt;}
.fs5_c00423{font-size:74.666667pt;}
.fs4_c00423{font-size:77.333333pt;}
.fs1_c00423{font-size:85.333333pt;}
.fs2_c00423{font-size:90.666667pt;}
.y0_c00423{bottom:0.000000pt;}
.y29_c00423{bottom:2.760000pt;}
.y28_c00423{bottom:6.425206pt;}
.y27_c00423{bottom:93.893333pt;}
.y26_c00423{bottom:124.826667pt;}
.y25_c00423{bottom:155.493333pt;}
.y24_c00423{bottom:185.493333pt;}
.y23_c00423{bottom:216.293333pt;}
.y22_c00423{bottom:246.560000pt;}
.y21_c00423{bottom:276.693333pt;}
.y20_c00423{bottom:306.960000pt;}
.y1f_c00423{bottom:336.693333pt;}
.y1e_c00423{bottom:366.693333pt;}
.y1d_c00423{bottom:397.226667pt;}
.y1c_c00423{bottom:426.293333pt;}
.y1b_c00423{bottom:456.693333pt;}
.y1a_c00423{bottom:486.693333pt;}
.y19_c00423{bottom:516.026667pt;}
.y18_c00423{bottom:546.560000pt;}
.y17_c00423{bottom:575.760000pt;}
.y16_c00423{bottom:605.360000pt;}
.y15_c00423{bottom:635.760000pt;}
.y14_c00423{bottom:665.760000pt;}
.y13_c00423{bottom:695.093333pt;}
.y12_c00423{bottom:725.093333pt;}
.y11_c00423{bottom:754.293333pt;}
.y10_c00423{bottom:784.293333pt;}
.yf_c00423{bottom:814.293333pt;}
.y3_c00423{bottom:833.493333pt;}
.ye_c00423{bottom:844.160000pt;}
.y2_c00423{bottom:860.426667pt;}
.yd_c00423{bottom:873.093333pt;}
.y1_c00423{bottom:887.760000pt;}
.yc_c00423{bottom:906.560000pt;}
.yb_c00423{bottom:934.160000pt;}
.ya_c00423{bottom:962.960000pt;}
.y9_c00423{bottom:990.960000pt;}
.y8_c00423{bottom:1020.560000pt;}
.y7_c00423{bottom:1050.293333pt;}
.y6_c00423{bottom:1079.893333pt;}
.y5_c00423{bottom:1109.093333pt;}
.y4_c00423{bottom:1138.293333pt;}
.h5_c00423{height:11.733399pt;}
.h6_c00423{height:38.937500pt;}
.h3_c00423{height:62.421875pt;}
.h2_c00423{height:67.526042pt;}
.h4_c00423{height:108.041667pt;}
.h0_c00423{height:1229.066667pt;}
.h1_c00423{height:1229.333333pt;}
.w2_c00423{width:93.222667pt;}
.w0_c00423{width:767.266667pt;}
.w1_c00423{width:767.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:24.266667pt;}
.x2_c00423{left:28.533333pt;}
.x3_c00423{left:30.000000pt;}
.x7_c00423{left:60.666667pt;}
.x6_c00423{left:222.933333pt;}
.x5_c00423{left:223.866667pt;}
.x8_c00423{left:224.800000pt;}
.xa_c00423{left:226.800000pt;}
.xc_c00423{left:227.733333pt;}
.xb_c00423{left:228.666667pt;}
.xe_c00423{left:229.600000pt;}
.x4_c00423{left:233.466667pt;}
.xd_c00423{left:270.000000pt;}
.x9_c00423{left:276.666667pt;}
.xf_c00423{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6706faa528d37b0b9929b17.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_66d286a1a6ebeb5b4ab06a7b.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_4430f4eb05c09be5161b5d71.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_93f3d407c53dd30a66af0b43.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls2_c00424{letter-spacing:0.000000px;}
.ls3_c00424{letter-spacing:3.000000px;}
.ls0_c00424{letter-spacing:4.650000px;}
.ls1_c00424{letter-spacing:4.896000px;}
.ls4_c00424{letter-spacing:9.000000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00424{word-spacing:-29.244000px;}
.ws5_c00424{word-spacing:-28.032000px;}
.ws0_c00424{word-spacing:-20.244000px;}
.ws3_c00424{word-spacing:-18.798000px;}
.ws6_c00424{word-spacing:0.000000px;}
.ws4_c00424{word-spacing:3.780000px;}
.ws1_c00424{word-spacing:6.720000px;}
._3e_c00424{margin-left:-85.248000px;}
._49_c00424{margin-left:-39.693000px;}
._13_c00424{margin-left:-16.416000px;}
._37_c00424{margin-left:-14.580000px;}
._28_c00424{margin-left:-11.328000px;}
._38_c00424{margin-left:-10.020000px;}
._2c_c00424{margin-left:-8.436000px;}
._2b_c00424{margin-left:-7.140000px;}
._4a_c00424{margin-left:-6.096000px;}
._23_c00424{margin-left:-5.088000px;}
._11_c00424{margin-left:-3.072000px;}
._e_c00424{margin-left:-1.920000px;}
._6_c00424{width:1.728000px;}
._0_c00424{width:3.552000px;}
._1_c00424{width:4.896000px;}
._2_c00424{width:6.432000px;}
._4_c00424{width:7.680000px;}
._b_c00424{width:9.408000px;}
._25_c00424{width:10.752000px;}
._a_c00424{width:12.096000px;}
._39_c00424{width:13.152000px;}
._1e_c00424{width:14.304000px;}
._26_c00424{width:15.456000px;}
._24_c00424{width:16.704000px;}
._4e_c00424{width:18.165000px;}
._19_c00424{width:19.392000px;}
._10_c00424{width:21.120000px;}
._41_c00424{width:22.500000px;}
._32_c00424{width:24.192000px;}
._f_c00424{width:25.536000px;}
._22_c00424{width:27.840000px;}
._2d_c00424{width:28.992000px;}
._9_c00424{width:30.240000px;}
._17_c00424{width:31.392000px;}
._21_c00424{width:33.216000px;}
._18_c00424{width:34.464000px;}
._14_c00424{width:35.616000px;}
._8_c00424{width:36.960000px;}
._3_c00424{width:38.784000px;}
._c_c00424{width:39.840000px;}
._42_c00424{width:41.376000px;}
._5_c00424{width:42.528000px;}
._4f_c00424{width:43.728000px;}
._20_c00424{width:44.736000px;}
._16_c00424{width:45.792000px;}
._3b_c00424{width:47.136000px;}
._30_c00424{width:48.813000px;}
._d_c00424{width:50.688000px;}
._35_c00424{width:51.744000px;}
._3c_c00424{width:54.144000px;}
._48_c00424{width:55.296000px;}
._31_c00424{width:56.925000px;}
._1a_c00424{width:58.080000px;}
._4b_c00424{width:59.328000px;}
._15_c00424{width:62.496000px;}
._43_c00424{width:67.272000px;}
._1d_c00424{width:69.120000px;}
._54_c00424{width:72.480000px;}
._1f_c00424{width:73.824000px;}
._1b_c00424{width:76.416000px;}
._7_c00424{width:77.664000px;}
._4c_c00424{width:79.056000px;}
._50_c00424{width:105.417000px;}
._3a_c00424{width:113.736000px;}
._46_c00424{width:161.760000px;}
._52_c00424{width:164.328000px;}
._40_c00424{width:172.824000px;}
._36_c00424{width:178.080000px;}
._4d_c00424{width:179.667000px;}
._3f_c00424{width:187.584000px;}
._53_c00424{width:193.824000px;}
._47_c00424{width:214.104000px;}
._33_c00424{width:224.640000px;}
._12_c00424{width:241.152000px;}
._51_c00424{width:343.332000px;}
._2f_c00424{width:414.063000px;}
._45_c00424{width:437.319000px;}
._29_c00424{width:448.224000px;}
._2a_c00424{width:463.896000px;}
._34_c00424{width:485.232000px;}
._44_c00424{width:510.984000px;}
._2e_c00424{width:516.456000px;}
._27_c00424{width:631.104000px;}
._1c_c00424{width:711.168000px;}
._3d_c00424{width:1101.984000px;}
.fc2_c00424{color:transparent;}
.fc1_c00424{color:rgb(128,128,128);}
.fc0_c00424{color:rgb(0,0,0);}
.fs6_c00424{font-size:48.000000px;}
.fs4_c00424{font-size:78.000000px;}
.fs2_c00424{font-size:81.000000px;}
.fs1_c00424{font-size:84.000000px;}
.fs3_c00424{font-size:93.000000px;}
.fs0_c00424{font-size:96.000000px;}
.fs5_c00424{font-size:99.000000px;}
.y0_c00424{bottom:0.000000px;}
.y27_c00424{bottom:3.105000px;}
.y26_c00424{bottom:7.228369px;}
.y25_c00424{bottom:93.870000px;}
.y24_c00424{bottom:129.570000px;}
.y23_c00424{bottom:163.620000px;}
.y22_c00424{bottom:197.820000px;}
.y21_c00424{bottom:231.420000px;}
.y20_c00424{bottom:265.920000px;}
.y1f_c00424{bottom:299.370000px;}
.y1e_c00424{bottom:333.720000px;}
.y1d_c00424{bottom:367.920000px;}
.y1c_c00424{bottom:400.620000px;}
.y1b_c00424{bottom:434.670000px;}
.y1a_c00424{bottom:469.020000px;}
.y19_c00424{bottom:503.220000px;}
.y18_c00424{bottom:535.920000px;}
.y17_c00424{bottom:568.920000px;}
.y16_c00424{bottom:603.120000px;}
.y15_c00424{bottom:636.870000px;}
.y14_c00424{bottom:670.620000px;}
.y13_c00424{bottom:705.270000px;}
.y12_c00424{bottom:738.420000px;}
.y11_c00424{bottom:770.820000px;}
.y10_c00424{bottom:803.820000px;}
.yf_c00424{bottom:836.220000px;}
.ye_c00424{bottom:869.370000px;}
.yd_c00424{bottom:901.770000px;}
.yc_c00424{bottom:934.770000px;}
.yb_c00424{bottom:968.970000px;}
.ya_c00424{bottom:984.120000px;}
.y9_c00424{bottom:1004.370000px;}
.y8_c00424{bottom:1037.820000px;}
.y7_c00424{bottom:1070.820000px;}
.y6_c00424{bottom:1102.920000px;}
.y5_c00424{bottom:1136.070000px;}
.y4_c00424{bottom:1168.470000px;}
.y3_c00424{bottom:1202.070000px;}
.y2_c00424{bottom:1235.220000px;}
.y1_c00424{bottom:1267.920000px;}
.h5_c00424{height:13.200073px;}
.h6_c00424{height:43.804688px;}
.h3_c00424{height:87.804000px;}
.h4_c00424{height:117.748535px;}
.h2_c00424{height:121.546875px;}
.h0_c00424{height:1383.450000px;}
.h1_c00424{height:1383.750000px;}
.w2_c00424{width:104.875500px;}
.w0_c00424{width:878.025000px;}
.w1_c00424{width:878.250000px;}
.x0_c00424{left:0.000000px;}
.xe_c00424{left:34.350000px;}
.xf_c00424{left:35.400000px;}
.xd_c00424{left:37.050000px;}
.xa_c00424{left:38.100000px;}
.xc_c00424{left:39.150000px;}
.x9_c00424{left:40.500000px;}
.x8_c00424{left:41.850000px;}
.x6_c00424{left:43.500000px;}
.x5_c00424{left:45.600000px;}
.x4_c00424{left:47.250000px;}
.x3_c00424{left:48.300000px;}
.x2_c00424{left:49.350000px;}
.x1_c00424{left:51.600000px;}
.x10_c00424{left:63.450000px;}
.x11_c00424{left:76.950000px;}
.xb_c00424{left:86.700000px;}
.x12_c00424{left:319.500000px;}
.x13_c00424{left:390.826721px;}
.x7_c00424{left:490.500000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls2_c00424{letter-spacing:0.000000pt;}
.ls3_c00424{letter-spacing:2.666667pt;}
.ls0_c00424{letter-spacing:4.133333pt;}
.ls1_c00424{letter-spacing:4.352000pt;}
.ls4_c00424{letter-spacing:8.000000pt;}
.ws2_c00424{word-spacing:-25.994667pt;}
.ws5_c00424{word-spacing:-24.917333pt;}
.ws0_c00424{word-spacing:-17.994667pt;}
.ws3_c00424{word-spacing:-16.709333pt;}
.ws6_c00424{word-spacing:0.000000pt;}
.ws4_c00424{word-spacing:3.360000pt;}
.ws1_c00424{word-spacing:5.973333pt;}
._3e_c00424{margin-left:-75.776000pt;}
._49_c00424{margin-left:-35.282667pt;}
._13_c00424{margin-left:-14.592000pt;}
._37_c00424{margin-left:-12.960000pt;}
._28_c00424{margin-left:-10.069333pt;}
._38_c00424{margin-left:-8.906667pt;}
._2c_c00424{margin-left:-7.498667pt;}
._2b_c00424{margin-left:-6.346667pt;}
._4a_c00424{margin-left:-5.418667pt;}
._23_c00424{margin-left:-4.522667pt;}
._11_c00424{margin-left:-2.730667pt;}
._e_c00424{margin-left:-1.706667pt;}
._6_c00424{width:1.536000pt;}
._0_c00424{width:3.157333pt;}
._1_c00424{width:4.352000pt;}
._2_c00424{width:5.717333pt;}
._4_c00424{width:6.826667pt;}
._b_c00424{width:8.362667pt;}
._25_c00424{width:9.557333pt;}
._a_c00424{width:10.752000pt;}
._39_c00424{width:11.690667pt;}
._1e_c00424{width:12.714667pt;}
._26_c00424{width:13.738667pt;}
._24_c00424{width:14.848000pt;}
._4e_c00424{width:16.146667pt;}
._19_c00424{width:17.237333pt;}
._10_c00424{width:18.773333pt;}
._41_c00424{width:20.000000pt;}
._32_c00424{width:21.504000pt;}
._f_c00424{width:22.698667pt;}
._22_c00424{width:24.746667pt;}
._2d_c00424{width:25.770667pt;}
._9_c00424{width:26.880000pt;}
._17_c00424{width:27.904000pt;}
._21_c00424{width:29.525333pt;}
._18_c00424{width:30.634667pt;}
._14_c00424{width:31.658667pt;}
._8_c00424{width:32.853333pt;}
._3_c00424{width:34.474667pt;}
._c_c00424{width:35.413333pt;}
._42_c00424{width:36.778667pt;}
._5_c00424{width:37.802667pt;}
._4f_c00424{width:38.869333pt;}
._20_c00424{width:39.765333pt;}
._16_c00424{width:40.704000pt;}
._3b_c00424{width:41.898667pt;}
._30_c00424{width:43.389333pt;}
._d_c00424{width:45.056000pt;}
._35_c00424{width:45.994667pt;}
._3c_c00424{width:48.128000pt;}
._48_c00424{width:49.152000pt;}
._31_c00424{width:50.600000pt;}
._1a_c00424{width:51.626667pt;}
._4b_c00424{width:52.736000pt;}
._15_c00424{width:55.552000pt;}
._43_c00424{width:59.797333pt;}
._1d_c00424{width:61.440000pt;}
._54_c00424{width:64.426667pt;}
._1f_c00424{width:65.621333pt;}
._1b_c00424{width:67.925333pt;}
._7_c00424{width:69.034667pt;}
._4c_c00424{width:70.272000pt;}
._50_c00424{width:93.704000pt;}
._3a_c00424{width:101.098667pt;}
._46_c00424{width:143.786667pt;}
._52_c00424{width:146.069333pt;}
._40_c00424{width:153.621333pt;}
._36_c00424{width:158.293333pt;}
._4d_c00424{width:159.704000pt;}
._3f_c00424{width:166.741333pt;}
._53_c00424{width:172.288000pt;}
._47_c00424{width:190.314667pt;}
._33_c00424{width:199.680000pt;}
._12_c00424{width:214.357333pt;}
._51_c00424{width:305.184000pt;}
._2f_c00424{width:368.056000pt;}
._45_c00424{width:388.728000pt;}
._29_c00424{width:398.421333pt;}
._2a_c00424{width:412.352000pt;}
._34_c00424{width:431.317333pt;}
._44_c00424{width:454.208000pt;}
._2e_c00424{width:459.072000pt;}
._27_c00424{width:560.981333pt;}
._1c_c00424{width:632.149333pt;}
._3d_c00424{width:979.541333pt;}
.fs6_c00424{font-size:42.666667pt;}
.fs4_c00424{font-size:69.333333pt;}
.fs2_c00424{font-size:72.000000pt;}
.fs1_c00424{font-size:74.666667pt;}
.fs3_c00424{font-size:82.666667pt;}
.fs0_c00424{font-size:85.333333pt;}
.fs5_c00424{font-size:88.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y27_c00424{bottom:2.760000pt;}
.y26_c00424{bottom:6.425217pt;}
.y25_c00424{bottom:83.440000pt;}
.y24_c00424{bottom:115.173333pt;}
.y23_c00424{bottom:145.440000pt;}
.y22_c00424{bottom:175.840000pt;}
.y21_c00424{bottom:205.706667pt;}
.y20_c00424{bottom:236.373333pt;}
.y1f_c00424{bottom:266.106667pt;}
.y1e_c00424{bottom:296.640000pt;}
.y1d_c00424{bottom:327.040000pt;}
.y1c_c00424{bottom:356.106667pt;}
.y1b_c00424{bottom:386.373333pt;}
.y1a_c00424{bottom:416.906667pt;}
.y19_c00424{bottom:447.306667pt;}
.y18_c00424{bottom:476.373333pt;}
.y17_c00424{bottom:505.706667pt;}
.y16_c00424{bottom:536.106667pt;}
.y15_c00424{bottom:566.106667pt;}
.y14_c00424{bottom:596.106667pt;}
.y13_c00424{bottom:626.906667pt;}
.y12_c00424{bottom:656.373333pt;}
.y11_c00424{bottom:685.173333pt;}
.y10_c00424{bottom:714.506667pt;}
.yf_c00424{bottom:743.306667pt;}
.ye_c00424{bottom:772.773333pt;}
.yd_c00424{bottom:801.573333pt;}
.yc_c00424{bottom:830.906667pt;}
.yb_c00424{bottom:861.306667pt;}
.ya_c00424{bottom:874.773333pt;}
.y9_c00424{bottom:892.773333pt;}
.y8_c00424{bottom:922.506667pt;}
.y7_c00424{bottom:951.840000pt;}
.y6_c00424{bottom:980.373333pt;}
.y5_c00424{bottom:1009.840000pt;}
.y4_c00424{bottom:1038.640000pt;}
.y3_c00424{bottom:1068.506667pt;}
.y2_c00424{bottom:1097.973333pt;}
.y1_c00424{bottom:1127.040000pt;}
.h5_c00424{height:11.733399pt;}
.h6_c00424{height:38.937500pt;}
.h3_c00424{height:78.048000pt;}
.h4_c00424{height:104.665365pt;}
.h2_c00424{height:108.041667pt;}
.h0_c00424{height:1229.733333pt;}
.h1_c00424{height:1230.000000pt;}
.w2_c00424{width:93.222667pt;}
.w0_c00424{width:780.466667pt;}
.w1_c00424{width:780.666667pt;}
.x0_c00424{left:0.000000pt;}
.xe_c00424{left:30.533333pt;}
.xf_c00424{left:31.466667pt;}
.xd_c00424{left:32.933333pt;}
.xa_c00424{left:33.866667pt;}
.xc_c00424{left:34.800000pt;}
.x9_c00424{left:36.000000pt;}
.x8_c00424{left:37.200000pt;}
.x6_c00424{left:38.666667pt;}
.x5_c00424{left:40.533333pt;}
.x4_c00424{left:42.000000pt;}
.x3_c00424{left:42.933333pt;}
.x2_c00424{left:43.866667pt;}
.x1_c00424{left:45.866667pt;}
.x10_c00424{left:56.400000pt;}
.x11_c00424{left:68.400000pt;}
.xb_c00424{left:77.066667pt;}
.x12_c00424{left:284.000000pt;}
.x13_c00424{left:347.401530pt;}
.x7_c00424{left:436.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f9e4a4239c10c5b5573e761e.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_31fbc6722361627ab3161e42.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_3c71188e4c44dce27495d2b2.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_d93e6a10f19fec3748f54414.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_2b1c927a90f9080f987802ab.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00425;src:url('chunks/assets/font_e94259b3b9287068a0d70110.woff2')format("woff");}.ff6_c00425{font-family:ff6_c00425;line-height:1.274414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00425;src:url('chunks/assets/font_77fbcba5daecff5ebd8563b6.woff2')format("woff");}.ff7_c00425{font-family:ff7_c00425;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00425;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8_c00425{font-family:ff8_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00425;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00425{font-family:ff9_c00425;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls3_c00425{letter-spacing:0.000000px;}
.ls1_c00425{letter-spacing:1.155000px;}
.ls0_c00425{letter-spacing:3.000000px;}
.ls4_c00425{letter-spacing:6.000000px;}
.ls2_c00425{letter-spacing:8.052000px;}
.ls5_c00425{letter-spacing:9.000000px;}
.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;}
}
.ws4_c00425{word-spacing:-51.000000px;}
.ws3_c00425{word-spacing:-23.136000px;}
.ws1_c00425{word-spacing:-20.244000px;}
.ws0_c00425{word-spacing:-19.686000px;}
.ws2_c00425{word-spacing:-0.120000px;}
.ws6_c00425{word-spacing:0.000000px;}
.ws5_c00425{word-spacing:7.980000px;}
._c_c00425{margin-left:-50.694000px;}
._22_c00425{margin-left:-42.108000px;}
._1b_c00425{margin-left:-28.395000px;}
._18_c00425{margin-left:-25.824000px;}
._1e_c00425{margin-left:-23.712000px;}
._1c_c00425{margin-left:-22.146000px;}
._1a_c00425{margin-left:-19.797000px;}
._3f_c00425{margin-left:-18.396000px;}
._12_c00425{margin-left:-15.957000px;}
._48_c00425{margin-left:-14.844000px;}
._13_c00425{margin-left:-13.689000px;}
._14_c00425{margin-left:-12.555000px;}
._f_c00425{margin-left:-11.421000px;}
._11_c00425{margin-left:-9.801000px;}
._10_c00425{margin-left:-8.667000px;}
._47_c00425{margin-left:-7.440000px;}
._e_c00425{margin-left:-6.399000px;}
._16_c00425{margin-left:-4.860000px;}
._4_c00425{margin-left:-3.744000px;}
._3_c00425{margin-left:-2.418000px;}
._0_c00425{margin-left:-1.014000px;}
._28_c00425{width:1.326000px;}
._17_c00425{width:2.694000px;}
._a_c00425{width:4.236000px;}
._9_c00425{width:5.538000px;}
._8_c00425{width:7.488000px;}
._34_c00425{width:8.586000px;}
._30_c00425{width:9.888000px;}
._26_c00425{width:11.700000px;}
._1d_c00425{width:12.864000px;}
._3c_c00425{width:14.460000px;}
._2c_c00425{width:15.468000px;}
._27_c00425{width:17.460000px;}
._32_c00425{width:19.560000px;}
._1f_c00425{width:20.688000px;}
._2d_c00425{width:21.990000px;}
._37_c00425{width:24.156000px;}
._23_c00425{width:25.776000px;}
._46_c00425{width:26.898000px;}
._24_c00425{width:28.149000px;}
._33_c00425{width:29.184000px;}
._38_c00425{width:30.384000px;}
._35_c00425{width:31.836000px;}
._1_c00425{width:32.838000px;}
._6_c00425{width:34.632000px;}
._31_c00425{width:36.048000px;}
._2e_c00425{width:37.416000px;}
._3b_c00425{width:38.643000px;}
._d_c00425{width:39.804000px;}
._36_c00425{width:41.238000px;}
._5_c00425{width:42.588000px;}
._3d_c00425{width:43.644000px;}
._29_c00425{width:45.240000px;}
._45_c00425{width:46.614000px;}
._44_c00425{width:47.658000px;}
._39_c00425{width:48.942000px;}
._2f_c00425{width:50.181000px;}
._20_c00425{width:52.425000px;}
._25_c00425{width:55.971000px;}
._7_c00425{width:57.486000px;}
._b_c00425{width:59.424000px;}
._43_c00425{width:61.641000px;}
._42_c00425{width:64.398000px;}
._2_c00425{width:74.178000px;}
._21_c00425{width:82.620000px;}
._2a_c00425{width:85.956000px;}
._2b_c00425{width:90.792000px;}
._40_c00425{width:113.952000px;}
._19_c00425{width:158.112000px;}
._15_c00425{width:163.053000px;}
._49_c00425{width:166.680000px;}
._3a_c00425{width:179.490000px;}
._4b_c00425{width:216.525000px;}
._41_c00425{width:482.064000px;}
._3e_c00425{width:516.699000px;}
._4a_c00425{width:740.412000px;}
._4c_c00425{width:960.108000px;}
.fc2_c00425{color:transparent;}
.fc1_c00425{color:rgb(128,128,128);}
.fc0_c00425{color:rgb(0,0,0);}
.fs8_c00425{font-size:48.000000px;}
.fs7_c00425{font-size:60.000000px;}
.fs6_c00425{font-size:75.000000px;}
.fs0_c00425{font-size:78.000000px;}
.fs1_c00425{font-size:81.000000px;}
.fs3_c00425{font-size:84.000000px;}
.fs4_c00425{font-size:96.000000px;}
.fs2_c00425{font-size:102.000000px;}
.fs5_c00425{font-size:120.000000px;}
.y0_c00425{bottom:0.000000px;}
.y33_c00425{bottom:3.105000px;}
.y32_c00425{bottom:7.228357px;}
.y31_c00425{bottom:111.780000px;}
.yd_c00425{bottom:122.280000px;}
.y30_c00425{bottom:143.430000px;}
.y2f_c00425{bottom:177.930000px;}
.y2e_c00425{bottom:211.380000px;}
.y2d_c00425{bottom:244.980000px;}
.y2c_c00425{bottom:280.530000px;}
.y2b_c00425{bottom:314.280000px;}
.y2a_c00425{bottom:348.630000px;}
.y29_c00425{bottom:381.780000px;}
.y28_c00425{bottom:415.830000px;}
.y27_c00425{bottom:449.880000px;}
.y26_c00425{bottom:483.930000px;}
.y25_c00425{bottom:517.380000px;}
.y24_c00425{bottom:551.430000px;}
.y23_c00425{bottom:584.880000px;}
.y22_c00425{bottom:618.330000px;}
.y21_c00425{bottom:651.780000px;}
.y20_c00425{bottom:685.230000px;}
.y1f_c00425{bottom:719.280000px;}
.y1e_c00425{bottom:753.030000px;}
.y1d_c00425{bottom:786.480000px;}
.yc_c00425{bottom:795.930000px;}
.y1c_c00425{bottom:819.780000px;}
.yb_c00425{bottom:826.230000px;}
.y1b_c00425{bottom:853.530000px;}
.ya_c00425{bottom:856.980000px;}
.y9_c00425{bottom:885.330000px;}
.y1a_c00425{bottom:886.980000px;}
.y19_c00425{bottom:920.730000px;}
.y18_c00425{bottom:954.180000px;}
.y17_c00425{bottom:987.180000px;}
.y16_c00425{bottom:1020.330000px;}
.y15_c00425{bottom:1053.630000px;}
.y8_c00425{bottom:1078.680000px;}
.y14_c00425{bottom:1086.780000px;}
.y7_c00425{bottom:1108.980000px;}
.y13_c00425{bottom:1120.230000px;}
.y6_c00425{bottom:1140.480000px;}
.y12_c00425{bottom:1153.530000px;}
.y5_c00425{bottom:1167.180000px;}
.y11_c00425{bottom:1186.980000px;}
.y4_c00425{bottom:1195.830000px;}
.y10_c00425{bottom:1219.830000px;}
.y3_c00425{bottom:1225.830000px;}
.yf_c00425{bottom:1253.430000px;}
.y2_c00425{bottom:1254.930000px;}
.y1_c00425{bottom:1284.480000px;}
.ye_c00425{bottom:1286.280000px;}
.ha_c00425{height:13.200074px;}
.hb_c00425{height:43.804688px;}
.h7_c00425{height:87.780762px;}
.h4_c00425{height:87.804000px;}
.h8_c00425{height:91.291992px;}
.h2_c00425{height:98.756836px;}
.h9_c00425{height:106.353516px;}
.h5_c00425{height:121.546875px;}
.h6_c00425{height:121.757812px;}
.h3_c00425{height:129.143555px;}
.h0_c00425{height:1382.700000px;}
.h1_c00425{height:1383.000000px;}
.w2_c00425{width:104.875500px;}
.w0_c00425{width:863.175000px;}
.w1_c00425{width:863.250000px;}
.x0_c00425{left:0.000000px;}
.x7_c00425{left:31.050000px;}
.x1_c00425{left:37.500000px;}
.x2_c00425{left:38.700000px;}
.x3_c00425{left:40.200000px;}
.x6_c00425{left:42.300000px;}
.x4_c00425{left:54.450000px;}
.x5_c00425{left:68.850000px;}
.x14_c00425{left:250.200000px;}
.x13_c00425{left:252.900000px;}
.x10_c00425{left:254.100000px;}
.x11_c00425{left:255.600000px;}
.x8_c00425{left:256.800000px;}
.x9_c00425{left:257.850000px;}
.xa_c00425{left:258.900000px;}
.xb_c00425{left:259.950000px;}
.xd_c00425{left:261.000000px;}
.xe_c00425{left:262.200000px;}
.x12_c00425{left:305.400000px;}
.xc_c00425{left:309.150000px;}
.xf_c00425{left:322.200000px;}
.x15_c00425{left:383.401749px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls3_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:1.026667pt;}
.ls0_c00425{letter-spacing:2.666667pt;}
.ls4_c00425{letter-spacing:5.333333pt;}
.ls2_c00425{letter-spacing:7.157333pt;}
.ls5_c00425{letter-spacing:8.000000pt;}
.ws4_c00425{word-spacing:-45.333333pt;}
.ws3_c00425{word-spacing:-20.565333pt;}
.ws1_c00425{word-spacing:-17.994667pt;}
.ws0_c00425{word-spacing:-17.498667pt;}
.ws2_c00425{word-spacing:-0.106667pt;}
.ws6_c00425{word-spacing:0.000000pt;}
.ws5_c00425{word-spacing:7.093333pt;}
._c_c00425{margin-left:-45.061333pt;}
._22_c00425{margin-left:-37.429333pt;}
._1b_c00425{margin-left:-25.240000pt;}
._18_c00425{margin-left:-22.954667pt;}
._1e_c00425{margin-left:-21.077333pt;}
._1c_c00425{margin-left:-19.685333pt;}
._1a_c00425{margin-left:-17.597333pt;}
._3f_c00425{margin-left:-16.352000pt;}
._12_c00425{margin-left:-14.184000pt;}
._48_c00425{margin-left:-13.194667pt;}
._13_c00425{margin-left:-12.168000pt;}
._14_c00425{margin-left:-11.160000pt;}
._f_c00425{margin-left:-10.152000pt;}
._11_c00425{margin-left:-8.712000pt;}
._10_c00425{margin-left:-7.704000pt;}
._47_c00425{margin-left:-6.613333pt;}
._e_c00425{margin-left:-5.688000pt;}
._16_c00425{margin-left:-4.320000pt;}
._4_c00425{margin-left:-3.328000pt;}
._3_c00425{margin-left:-2.149333pt;}
._0_c00425{margin-left:-0.901333pt;}
._28_c00425{width:1.178667pt;}
._17_c00425{width:2.394667pt;}
._a_c00425{width:3.765333pt;}
._9_c00425{width:4.922667pt;}
._8_c00425{width:6.656000pt;}
._34_c00425{width:7.632000pt;}
._30_c00425{width:8.789333pt;}
._26_c00425{width:10.400000pt;}
._1d_c00425{width:11.434667pt;}
._3c_c00425{width:12.853333pt;}
._2c_c00425{width:13.749333pt;}
._27_c00425{width:15.520000pt;}
._32_c00425{width:17.386667pt;}
._1f_c00425{width:18.389333pt;}
._2d_c00425{width:19.546667pt;}
._37_c00425{width:21.472000pt;}
._23_c00425{width:22.912000pt;}
._46_c00425{width:23.909333pt;}
._24_c00425{width:25.021333pt;}
._33_c00425{width:25.941333pt;}
._38_c00425{width:27.008000pt;}
._35_c00425{width:28.298667pt;}
._1_c00425{width:29.189333pt;}
._6_c00425{width:30.784000pt;}
._31_c00425{width:32.042667pt;}
._2e_c00425{width:33.258667pt;}
._3b_c00425{width:34.349333pt;}
._d_c00425{width:35.381333pt;}
._36_c00425{width:36.656000pt;}
._5_c00425{width:37.856000pt;}
._3d_c00425{width:38.794667pt;}
._29_c00425{width:40.213333pt;}
._45_c00425{width:41.434667pt;}
._44_c00425{width:42.362667pt;}
._39_c00425{width:43.504000pt;}
._2f_c00425{width:44.605333pt;}
._20_c00425{width:46.600000pt;}
._25_c00425{width:49.752000pt;}
._7_c00425{width:51.098667pt;}
._b_c00425{width:52.821333pt;}
._43_c00425{width:54.792000pt;}
._42_c00425{width:57.242667pt;}
._2_c00425{width:65.936000pt;}
._21_c00425{width:73.440000pt;}
._2a_c00425{width:76.405333pt;}
._2b_c00425{width:80.704000pt;}
._40_c00425{width:101.290667pt;}
._19_c00425{width:140.544000pt;}
._15_c00425{width:144.936000pt;}
._49_c00425{width:148.160000pt;}
._3a_c00425{width:159.546667pt;}
._4b_c00425{width:192.466667pt;}
._41_c00425{width:428.501333pt;}
._3e_c00425{width:459.288000pt;}
._4a_c00425{width:658.144000pt;}
._4c_c00425{width:853.429333pt;}
.fs8_c00425{font-size:42.666667pt;}
.fs7_c00425{font-size:53.333333pt;}
.fs6_c00425{font-size:66.666667pt;}
.fs0_c00425{font-size:69.333333pt;}
.fs1_c00425{font-size:72.000000pt;}
.fs3_c00425{font-size:74.666667pt;}
.fs4_c00425{font-size:85.333333pt;}
.fs2_c00425{font-size:90.666667pt;}
.fs5_c00425{font-size:106.666667pt;}
.y0_c00425{bottom:0.000000pt;}
.y33_c00425{bottom:2.760000pt;}
.y32_c00425{bottom:6.425206pt;}
.y31_c00425{bottom:99.360000pt;}
.yd_c00425{bottom:108.693333pt;}
.y30_c00425{bottom:127.493333pt;}
.y2f_c00425{bottom:158.160000pt;}
.y2e_c00425{bottom:187.893333pt;}
.y2d_c00425{bottom:217.760000pt;}
.y2c_c00425{bottom:249.360000pt;}
.y2b_c00425{bottom:279.360000pt;}
.y2a_c00425{bottom:309.893333pt;}
.y29_c00425{bottom:339.360000pt;}
.y28_c00425{bottom:369.626667pt;}
.y27_c00425{bottom:399.893333pt;}
.y26_c00425{bottom:430.160000pt;}
.y25_c00425{bottom:459.893333pt;}
.y24_c00425{bottom:490.160000pt;}
.y23_c00425{bottom:519.893333pt;}
.y22_c00425{bottom:549.626667pt;}
.y21_c00425{bottom:579.360000pt;}
.y20_c00425{bottom:609.093333pt;}
.y1f_c00425{bottom:639.360000pt;}
.y1e_c00425{bottom:669.360000pt;}
.y1d_c00425{bottom:699.093333pt;}
.yc_c00425{bottom:707.493333pt;}
.y1c_c00425{bottom:728.693333pt;}
.yb_c00425{bottom:734.426667pt;}
.y1b_c00425{bottom:758.693333pt;}
.ya_c00425{bottom:761.760000pt;}
.y9_c00425{bottom:786.960000pt;}
.y1a_c00425{bottom:788.426667pt;}
.y19_c00425{bottom:818.426667pt;}
.y18_c00425{bottom:848.160000pt;}
.y17_c00425{bottom:877.493333pt;}
.y16_c00425{bottom:906.960000pt;}
.y15_c00425{bottom:936.560000pt;}
.y8_c00425{bottom:958.826667pt;}
.y14_c00425{bottom:966.026667pt;}
.y7_c00425{bottom:985.760000pt;}
.y13_c00425{bottom:995.760000pt;}
.y6_c00425{bottom:1013.760000pt;}
.y12_c00425{bottom:1025.360000pt;}
.y5_c00425{bottom:1037.493333pt;}
.y11_c00425{bottom:1055.093333pt;}
.y4_c00425{bottom:1062.960000pt;}
.y10_c00425{bottom:1084.293333pt;}
.y3_c00425{bottom:1089.626667pt;}
.yf_c00425{bottom:1114.160000pt;}
.y2_c00425{bottom:1115.493333pt;}
.y1_c00425{bottom:1141.760000pt;}
.ye_c00425{bottom:1143.360000pt;}
.ha_c00425{height:11.733399pt;}
.hb_c00425{height:38.937500pt;}
.h7_c00425{height:78.027344pt;}
.h4_c00425{height:78.048000pt;}
.h8_c00425{height:81.148438pt;}
.h2_c00425{height:87.783854pt;}
.h9_c00425{height:94.536458pt;}
.h5_c00425{height:108.041667pt;}
.h6_c00425{height:108.229167pt;}
.h3_c00425{height:114.794271pt;}
.h0_c00425{height:1229.066667pt;}
.h1_c00425{height:1229.333333pt;}
.w2_c00425{width:93.222667pt;}
.w0_c00425{width:767.266667pt;}
.w1_c00425{width:767.333333pt;}
.x0_c00425{left:0.000000pt;}
.x7_c00425{left:27.600000pt;}
.x1_c00425{left:33.333333pt;}
.x2_c00425{left:34.400000pt;}
.x3_c00425{left:35.733333pt;}
.x6_c00425{left:37.600000pt;}
.x4_c00425{left:48.400000pt;}
.x5_c00425{left:61.200000pt;}
.x14_c00425{left:222.400000pt;}
.x13_c00425{left:224.800000pt;}
.x10_c00425{left:225.866667pt;}
.x11_c00425{left:227.200000pt;}
.x8_c00425{left:228.266667pt;}
.x9_c00425{left:229.200000pt;}
.xa_c00425{left:230.133333pt;}
.xb_c00425{left:231.066667pt;}
.xd_c00425{left:232.000000pt;}
.xe_c00425{left:233.066667pt;}
.x12_c00425{left:271.466667pt;}
.xc_c00425{left:274.800000pt;}
.xf_c00425{left:286.400000pt;}
.x15_c00425{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c5d5bf1e304501ff4440310.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_f1e23f02e6a0a9112cb374ca.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{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_c00426{vertical-align:0.000000px;}
.ls1_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:5.400000px;}
.ls2_c00426{letter-spacing:6.000000px;}
.ls3_c00426{letter-spacing:9.000000px;}
.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:-20.244000px;}
.ws0_c00426{word-spacing:-18.798000px;}
.ws2_c00426{word-spacing:0.000000px;}
._41_c00426{margin-left:-86.112000px;}
._4d_c00426{margin-left:-83.520000px;}
._6d_c00426{margin-left:-63.891000px;}
._37_c00426{margin-left:-50.016000px;}
._39_c00426{margin-left:-38.880000px;}
._5a_c00426{margin-left:-32.688000px;}
._5e_c00426{margin-left:-31.233000px;}
._52_c00426{margin-left:-28.272000px;}
._62_c00426{margin-left:-27.144000px;}
._3f_c00426{margin-left:-25.344000px;}
._16_c00426{margin-left:-23.616000px;}
._3a_c00426{margin-left:-20.448000px;}
._5d_c00426{margin-left:-19.248000px;}
._56_c00426{margin-left:-18.240000px;}
._17_c00426{margin-left:-16.608000px;}
._6a_c00426{margin-left:-14.913000px;}
._42_c00426{margin-left:-13.824000px;}
._36_c00426{margin-left:-10.560000px;}
._19_c00426{margin-left:-9.216000px;}
._1c_c00426{margin-left:-7.680000px;}
._55_c00426{margin-left:-6.528000px;}
._1a_c00426{margin-left:-5.088000px;}
._51_c00426{margin-left:-3.984000px;}
._a_c00426{margin-left:-2.976000px;}
._9_c00426{margin-left:-1.152000px;}
._4_c00426{width:1.248000px;}
._7_c00426{width:2.976000px;}
._6_c00426{width:4.224000px;}
._13_c00426{width:5.376000px;}
._0_c00426{width:6.432000px;}
._21_c00426{width:7.872000px;}
._2_c00426{width:8.928000px;}
._1_c00426{width:10.944000px;}
._2f_c00426{width:12.096000px;}
._50_c00426{width:13.164000px;}
._e_c00426{width:14.208000px;}
._c_c00426{width:15.456000px;}
._15_c00426{width:16.800000px;}
._20_c00426{width:18.048000px;}
._49_c00426{width:19.872000px;}
._10_c00426{width:21.024000px;}
._4e_c00426{width:25.728000px;}
._b_c00426{width:27.360000px;}
._2a_c00426{width:28.512000px;}
._24_c00426{width:29.760000px;}
._3_c00426{width:30.912000px;}
._25_c00426{width:31.968000px;}
._14_c00426{width:33.984000px;}
._8_c00426{width:35.712000px;}
._3b_c00426{width:36.864000px;}
._11_c00426{width:37.920000px;}
._d_c00426{width:38.976000px;}
._5_c00426{width:40.512000px;}
._12_c00426{width:42.048000px;}
._2c_c00426{width:43.104000px;}
._2b_c00426{width:44.352000px;}
._f_c00426{width:45.888000px;}
._1f_c00426{width:47.712000px;}
._29_c00426{width:50.112000px;}
._33_c00426{width:51.360000px;}
._23_c00426{width:52.512000px;}
._31_c00426{width:53.856000px;}
._3d_c00426{width:55.296000px;}
._4f_c00426{width:56.352000px;}
._47_c00426{width:57.984000px;}
._69_c00426{width:60.498000px;}
._28_c00426{width:63.168000px;}
._2d_c00426{width:65.280000px;}
._32_c00426{width:66.336000px;}
._27_c00426{width:69.024000px;}
._26_c00426{width:72.576000px;}
._59_c00426{width:73.848000px;}
._34_c00426{width:76.608000px;}
._53_c00426{width:77.664000px;}
._35_c00426{width:79.872000px;}
._5b_c00426{width:83.520000px;}
._45_c00426{width:84.576000px;}
._38_c00426{width:86.016000px;}
._18_c00426{width:88.992000px;}
._1e_c00426{width:90.912000px;}
._5f_c00426{width:92.133000px;}
._4a_c00426{width:94.464000px;}
._43_c00426{width:96.864000px;}
._57_c00426{width:108.096000px;}
._48_c00426{width:116.160000px;}
._58_c00426{width:119.502000px;}
._4c_c00426{width:131.424000px;}
._2e_c00426{width:140.736000px;}
._1b_c00426{width:146.400000px;}
._68_c00426{width:153.360000px;}
._65_c00426{width:163.392000px;}
._44_c00426{width:169.152000px;}
._22_c00426{width:172.224000px;}
._1d_c00426{width:174.528000px;}
._30_c00426{width:190.464000px;}
._46_c00426{width:300.288000px;}
._5c_c00426{width:350.616000px;}
._6e_c00426{width:380.463000px;}
._6c_c00426{width:406.017000px;}
._60_c00426{width:410.355000px;}
._40_c00426{width:414.528000px;}
._4b_c00426{width:422.592000px;}
._66_c00426{width:486.816000px;}
._67_c00426{width:596.316000px;}
._54_c00426{width:649.440000px;}
._3e_c00426{width:727.296000px;}
._6b_c00426{width:742.137000px;}
._64_c00426{width:792.336000px;}
._63_c00426{width:882.144000px;}
._3c_c00426{width:1111.584000px;}
._61_c00426{width:1409.949000px;}
.fc2_c00426{color:transparent;}
.fc1_c00426{color:rgb(128,128,128);}
.fc0_c00426{color:rgb(0,0,0);}
.fs7_c00426{font-size:48.000000px;}
.fs1_c00426{font-size:60.000000px;}
.fs4_c00426{font-size:78.000000px;}
.fs3_c00426{font-size:84.000000px;}
.fs2_c00426{font-size:87.000000px;}
.fs6_c00426{font-size:93.000000px;}
.fs0_c00426{font-size:96.000000px;}
.fs5_c00426{font-size:102.000000px;}
.y0_c00426{bottom:0.000000px;}
.y27_c00426{bottom:3.105000px;}
.y26_c00426{bottom:7.228369px;}
.y25_c00426{bottom:109.020000px;}
.y24_c00426{bottom:141.420000px;}
.y23_c00426{bottom:175.770000px;}
.y22_c00426{bottom:209.220000px;}
.y21_c00426{bottom:243.270000px;}
.y20_c00426{bottom:277.020000px;}
.y1f_c00426{bottom:309.720000px;}
.y1e_c00426{bottom:323.970000px;}
.y1d_c00426{bottom:345.870000px;}
.y1c_c00426{bottom:379.920000px;}
.y1b_c00426{bottom:412.470000px;}
.y1a_c00426{bottom:444.720000px;}
.y19_c00426{bottom:477.120000px;}
.y18_c00426{bottom:513.570000px;}
.y17_c00426{bottom:546.420000px;}
.y16_c00426{bottom:580.470000px;}
.y15_c00426{bottom:613.470000px;}
.y14_c00426{bottom:646.920000px;}
.y13_c00426{bottom:680.970000px;}
.y12_c00426{bottom:714.720000px;}
.y11_c00426{bottom:747.270000px;}
.y10_c00426{bottom:783.720000px;}
.yf_c00426{bottom:814.320000px;}
.ye_c00426{bottom:847.470000px;}
.yd_c00426{bottom:880.470000px;}
.yc_c00426{bottom:913.920000px;}
.yb_c00426{bottom:947.070000px;}
.ya_c00426{bottom:980.670000px;}
.y9_c00426{bottom:1014.120000px;}
.y8_c00426{bottom:1047.270000px;}
.y7_c00426{bottom:1079.970000px;}
.y6_c00426{bottom:1111.620000px;}
.y5_c00426{bottom:1146.420000px;}
.y4_c00426{bottom:1179.870000px;}
.y3_c00426{bottom:1211.970000px;}
.y2_c00426{bottom:1246.020000px;}
.y1_c00426{bottom:1279.770000px;}
.h5_c00426{height:13.200073px;}
.h6_c00426{height:43.804688px;}
.h3_c00426{height:110.151855px;}
.h4_c00426{height:117.748535px;}
.h2_c00426{height:121.546875px;}
.h0_c00426{height:1383.450000px;}
.h1_c00426{height:1383.750000px;}
.w2_c00426{width:104.875500px;}
.w0_c00426{width:878.025000px;}
.w1_c00426{width:878.250000px;}
.x0_c00426{left:0.000000px;}
.xc_c00426{left:32.700000px;}
.xb_c00426{left:34.350000px;}
.xa_c00426{left:35.850000px;}
.x8_c00426{left:36.900000px;}
.x7_c00426{left:39.150000px;}
.x6_c00426{left:40.200000px;}
.x4_c00426{left:41.250000px;}
.x5_c00426{left:43.950000px;}
.x2_c00426{left:45.000000px;}
.x1_c00426{left:46.650000px;}
.xd_c00426{left:48.300000px;}
.x9_c00426{left:52.650000px;}
.xe_c00426{left:84.600000px;}
.x3_c00426{left:93.750000px;}
.x10_c00426{left:390.826721px;}
.xf_c00426{left:573.450000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls1_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:4.800000pt;}
.ls2_c00426{letter-spacing:5.333333pt;}
.ls3_c00426{letter-spacing:8.000000pt;}
.ws1_c00426{word-spacing:-17.994667pt;}
.ws0_c00426{word-spacing:-16.709333pt;}
.ws2_c00426{word-spacing:0.000000pt;}
._41_c00426{margin-left:-76.544000pt;}
._4d_c00426{margin-left:-74.240000pt;}
._6d_c00426{margin-left:-56.792000pt;}
._37_c00426{margin-left:-44.458667pt;}
._39_c00426{margin-left:-34.560000pt;}
._5a_c00426{margin-left:-29.056000pt;}
._5e_c00426{margin-left:-27.762667pt;}
._52_c00426{margin-left:-25.130667pt;}
._62_c00426{margin-left:-24.128000pt;}
._3f_c00426{margin-left:-22.528000pt;}
._16_c00426{margin-left:-20.992000pt;}
._3a_c00426{margin-left:-18.176000pt;}
._5d_c00426{margin-left:-17.109333pt;}
._56_c00426{margin-left:-16.213333pt;}
._17_c00426{margin-left:-14.762667pt;}
._6a_c00426{margin-left:-13.256000pt;}
._42_c00426{margin-left:-12.288000pt;}
._36_c00426{margin-left:-9.386667pt;}
._19_c00426{margin-left:-8.192000pt;}
._1c_c00426{margin-left:-6.826667pt;}
._55_c00426{margin-left:-5.802667pt;}
._1a_c00426{margin-left:-4.522667pt;}
._51_c00426{margin-left:-3.541333pt;}
._a_c00426{margin-left:-2.645333pt;}
._9_c00426{margin-left:-1.024000pt;}
._4_c00426{width:1.109333pt;}
._7_c00426{width:2.645333pt;}
._6_c00426{width:3.754667pt;}
._13_c00426{width:4.778667pt;}
._0_c00426{width:5.717333pt;}
._21_c00426{width:6.997333pt;}
._2_c00426{width:7.936000pt;}
._1_c00426{width:9.728000pt;}
._2f_c00426{width:10.752000pt;}
._50_c00426{width:11.701333pt;}
._e_c00426{width:12.629333pt;}
._c_c00426{width:13.738667pt;}
._15_c00426{width:14.933333pt;}
._20_c00426{width:16.042667pt;}
._49_c00426{width:17.664000pt;}
._10_c00426{width:18.688000pt;}
._4e_c00426{width:22.869333pt;}
._b_c00426{width:24.320000pt;}
._2a_c00426{width:25.344000pt;}
._24_c00426{width:26.453333pt;}
._3_c00426{width:27.477333pt;}
._25_c00426{width:28.416000pt;}
._14_c00426{width:30.208000pt;}
._8_c00426{width:31.744000pt;}
._3b_c00426{width:32.768000pt;}
._11_c00426{width:33.706667pt;}
._d_c00426{width:34.645333pt;}
._5_c00426{width:36.010667pt;}
._12_c00426{width:37.376000pt;}
._2c_c00426{width:38.314667pt;}
._2b_c00426{width:39.424000pt;}
._f_c00426{width:40.789333pt;}
._1f_c00426{width:42.410667pt;}
._29_c00426{width:44.544000pt;}
._33_c00426{width:45.653333pt;}
._23_c00426{width:46.677333pt;}
._31_c00426{width:47.872000pt;}
._3d_c00426{width:49.152000pt;}
._4f_c00426{width:50.090667pt;}
._47_c00426{width:51.541333pt;}
._69_c00426{width:53.776000pt;}
._28_c00426{width:56.149333pt;}
._2d_c00426{width:58.026667pt;}
._32_c00426{width:58.965333pt;}
._27_c00426{width:61.354667pt;}
._26_c00426{width:64.512000pt;}
._59_c00426{width:65.642667pt;}
._34_c00426{width:68.096000pt;}
._53_c00426{width:69.034667pt;}
._35_c00426{width:70.997333pt;}
._5b_c00426{width:74.240000pt;}
._45_c00426{width:75.178667pt;}
._38_c00426{width:76.458667pt;}
._18_c00426{width:79.104000pt;}
._1e_c00426{width:80.810667pt;}
._5f_c00426{width:81.896000pt;}
._4a_c00426{width:83.968000pt;}
._43_c00426{width:86.101333pt;}
._57_c00426{width:96.085333pt;}
._48_c00426{width:103.253333pt;}
._58_c00426{width:106.224000pt;}
._4c_c00426{width:116.821333pt;}
._2e_c00426{width:125.098667pt;}
._1b_c00426{width:130.133333pt;}
._68_c00426{width:136.320000pt;}
._65_c00426{width:145.237333pt;}
._44_c00426{width:150.357333pt;}
._22_c00426{width:153.088000pt;}
._1d_c00426{width:155.136000pt;}
._30_c00426{width:169.301333pt;}
._46_c00426{width:266.922667pt;}
._5c_c00426{width:311.658667pt;}
._6e_c00426{width:338.189333pt;}
._6c_c00426{width:360.904000pt;}
._60_c00426{width:364.760000pt;}
._40_c00426{width:368.469333pt;}
._4b_c00426{width:375.637333pt;}
._66_c00426{width:432.725333pt;}
._67_c00426{width:530.058667pt;}
._54_c00426{width:577.280000pt;}
._3e_c00426{width:646.485333pt;}
._6b_c00426{width:659.677333pt;}
._64_c00426{width:704.298667pt;}
._63_c00426{width:784.128000pt;}
._3c_c00426{width:988.074667pt;}
._61_c00426{width:1253.288000pt;}
.fs7_c00426{font-size:42.666667pt;}
.fs1_c00426{font-size:53.333333pt;}
.fs4_c00426{font-size:69.333333pt;}
.fs3_c00426{font-size:74.666667pt;}
.fs2_c00426{font-size:77.333333pt;}
.fs6_c00426{font-size:82.666667pt;}
.fs0_c00426{font-size:85.333333pt;}
.fs5_c00426{font-size:90.666667pt;}
.y0_c00426{bottom:0.000000pt;}
.y27_c00426{bottom:2.760000pt;}
.y26_c00426{bottom:6.425217pt;}
.y25_c00426{bottom:96.906667pt;}
.y24_c00426{bottom:125.706667pt;}
.y23_c00426{bottom:156.240000pt;}
.y22_c00426{bottom:185.973333pt;}
.y21_c00426{bottom:216.240000pt;}
.y20_c00426{bottom:246.240000pt;}
.y1f_c00426{bottom:275.306667pt;}
.y1e_c00426{bottom:287.973333pt;}
.y1d_c00426{bottom:307.440000pt;}
.y1c_c00426{bottom:337.706667pt;}
.y1b_c00426{bottom:366.640000pt;}
.y1a_c00426{bottom:395.306667pt;}
.y19_c00426{bottom:424.106667pt;}
.y18_c00426{bottom:456.506667pt;}
.y17_c00426{bottom:485.706667pt;}
.y16_c00426{bottom:515.973333pt;}
.y15_c00426{bottom:545.306667pt;}
.y14_c00426{bottom:575.040000pt;}
.y13_c00426{bottom:605.306667pt;}
.y12_c00426{bottom:635.306667pt;}
.y11_c00426{bottom:664.240000pt;}
.y10_c00426{bottom:696.640000pt;}
.yf_c00426{bottom:723.840000pt;}
.ye_c00426{bottom:753.306667pt;}
.yd_c00426{bottom:782.640000pt;}
.yc_c00426{bottom:812.373333pt;}
.yb_c00426{bottom:841.840000pt;}
.ya_c00426{bottom:871.706667pt;}
.y9_c00426{bottom:901.440000pt;}
.y8_c00426{bottom:930.906667pt;}
.y7_c00426{bottom:959.973333pt;}
.y6_c00426{bottom:988.106667pt;}
.y5_c00426{bottom:1019.040000pt;}
.y4_c00426{bottom:1048.773333pt;}
.y3_c00426{bottom:1077.306667pt;}
.y2_c00426{bottom:1107.573333pt;}
.y1_c00426{bottom:1137.573333pt;}
.h5_c00426{height:11.733399pt;}
.h6_c00426{height:38.937500pt;}
.h3_c00426{height:97.912760pt;}
.h4_c00426{height:104.665365pt;}
.h2_c00426{height:108.041667pt;}
.h0_c00426{height:1229.733333pt;}
.h1_c00426{height:1230.000000pt;}
.w2_c00426{width:93.222667pt;}
.w0_c00426{width:780.466667pt;}
.w1_c00426{width:780.666667pt;}
.x0_c00426{left:0.000000pt;}
.xc_c00426{left:29.066667pt;}
.xb_c00426{left:30.533333pt;}
.xa_c00426{left:31.866667pt;}
.x8_c00426{left:32.800000pt;}
.x7_c00426{left:34.800000pt;}
.x6_c00426{left:35.733333pt;}
.x4_c00426{left:36.666667pt;}
.x5_c00426{left:39.066667pt;}
.x2_c00426{left:40.000000pt;}
.x1_c00426{left:41.466667pt;}
.xd_c00426{left:42.933333pt;}
.x9_c00426{left:46.800000pt;}
.xe_c00426{left:75.200000pt;}
.x3_c00426{left:83.333333pt;}
.x10_c00426{left:347.401530pt;}
.xf_c00426{left:509.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_62d3572413d862558e0293de.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_2f0465584557696e6413bdc4.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_866b7b79262da224b20a57b4.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_53c12e274b6eb3609b38c747.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_7d41b29b140868b5ef57d3b2.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_56f3a5abcef8dccf0e9ffad7.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00427;src:url('chunks/assets/font_168c64ce7399d1a96b8480ce.woff2')format("woff");}.ff7_c00427{font-family:ff7_c00427;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00427;src:url('chunks/assets/font_9595cdb0a3198a96b8382557.woff2')format("woff");}.ff8_c00427{font-family:ff8_c00427;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:ff9_c00427;src:url('chunks/assets/font_a4a2748f74c1b4373e30de3f.woff2')format("woff");}.ff9_c00427{font-family:ff9_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00427;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffa_c00427{font-family:ffa_c00427;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls13_c00427{letter-spacing:-3.000000px;}
.ls10_c00427{letter-spacing:0.000000px;}
.ls12_c00427{letter-spacing:3.000000px;}
.ls11_c00427{letter-spacing:6.000000px;}
.ls6_c00427{letter-spacing:8.520000px;}
.ls3_c00427{letter-spacing:9.000000px;}
.lsd_c00427{letter-spacing:16.833000px;}
.lsf_c00427{letter-spacing:62.433000px;}
.ls0_c00427{letter-spacing:70.833000px;}
.ls8_c00427{letter-spacing:75.033000px;}
.lsc_c00427{letter-spacing:79.233000px;}
.lsb_c00427{letter-spacing:81.633000px;}
.ls9_c00427{letter-spacing:86.433000px;}
.ls7_c00427{letter-spacing:157.233000px;}
.ls4_c00427{letter-spacing:326.433000px;}
.ls1_c00427{letter-spacing:475.833000px;}
.lsa_c00427{letter-spacing:505.833000px;}
.ls2_c00427{letter-spacing:612.633000px;}
.ls5_c00427{letter-spacing:994.233000px;}
.lse_c00427{letter-spacing:1136.433000px;}
.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;}
}
.ws4_c00427{word-spacing:-67.029000px;}
.ws3_c00427{word-spacing:-51.000000px;}
.ws0_c00427{word-spacing:-23.136000px;}
.ws1_c00427{word-spacing:-18.798000px;}
.ws5_c00427{word-spacing:0.000000px;}
.ws2_c00427{word-spacing:2.418000px;}
._53_c00427{margin-left:-77.688000px;}
._20_c00427{margin-left:-64.515000px;}
._57_c00427{margin-left:-53.970000px;}
._24_c00427{margin-left:-49.665000px;}
._2b_c00427{margin-left:-48.015000px;}
._26_c00427{margin-left:-44.880000px;}
._21_c00427{margin-left:-39.270000px;}
._5b_c00427{margin-left:-36.039000px;}
._22_c00427{margin-left:-31.020000px;}
._46_c00427{margin-left:-29.454000px;}
._2d_c00427{margin-left:-27.870000px;}
._58_c00427{margin-left:-25.536000px;}
._27_c00427{margin-left:-22.734000px;}
._60_c00427{margin-left:-21.726000px;}
._5f_c00427{margin-left:-19.566000px;}
._50_c00427{margin-left:-18.048000px;}
._4d_c00427{margin-left:-16.320000px;}
._5a_c00427{margin-left:-15.270000px;}
._23_c00427{margin-left:-13.035000px;}
._51_c00427{margin-left:-11.172000px;}
._48_c00427{margin-left:-9.948000px;}
._29_c00427{margin-left:-7.872000px;}
._4b_c00427{margin-left:-6.564000px;}
._1d_c00427{margin-left:-5.148000px;}
._15_c00427{margin-left:-4.056000px;}
._f_c00427{margin-left:-2.430000px;}
._8_c00427{margin-left:-1.056000px;}
._3_c00427{width:1.152000px;}
._4_c00427{width:2.304000px;}
._5_c00427{width:3.648000px;}
._c_c00427{width:4.704000px;}
._1c_c00427{width:5.844000px;}
._d_c00427{width:6.912000px;}
._0_c00427{width:8.640000px;}
._1_c00427{width:9.984000px;}
._b_c00427{width:11.520000px;}
._34_c00427{width:13.200000px;}
._39_c00427{width:14.226000px;}
._17_c00427{width:15.468000px;}
._19_c00427{width:16.824000px;}
._31_c00427{width:17.880000px;}
._30_c00427{width:18.930000px;}
._a_c00427{width:20.928000px;}
._40_c00427{width:22.032000px;}
._16_c00427{width:23.622000px;}
._38_c00427{width:25.410000px;}
._13_c00427{width:28.260000px;}
._36_c00427{width:29.628000px;}
._35_c00427{width:30.792000px;}
._1a_c00427{width:32.640000px;}
._9_c00427{width:34.080000px;}
._3c_c00427{width:35.136000px;}
._14_c00427{width:36.252000px;}
._3a_c00427{width:37.854000px;}
._6_c00427{width:39.264000px;}
._18_c00427{width:41.040000px;}
._1b_c00427{width:42.864000px;}
._11_c00427{width:44.628000px;}
._56_c00427{width:45.696000px;}
._1f_c00427{width:47.904000px;}
._1e_c00427{width:49.116000px;}
._7_c00427{width:50.304000px;}
._5d_c00427{width:51.768000px;}
._41_c00427{width:52.830000px;}
._47_c00427{width:55.542000px;}
._3e_c00427{width:58.176000px;}
._37_c00427{width:60.288000px;}
._25_c00427{width:62.700000px;}
._12_c00427{width:66.048000px;}
._2_c00427{width:68.256000px;}
._42_c00427{width:69.606000px;}
._4a_c00427{width:70.800000px;}
._43_c00427{width:73.446000px;}
._3b_c00427{width:75.492000px;}
._3d_c00427{width:77.388000px;}
._e_c00427{width:79.392000px;}
._49_c00427{width:80.424000px;}
._44_c00427{width:84.186000px;}
._59_c00427{width:88.128000px;}
._5e_c00427{width:117.990000px;}
._61_c00427{width:121.206000px;}
._54_c00427{width:122.688000px;}
._28_c00427{width:126.078000px;}
._45_c00427{width:149.136000px;}
._2c_c00427{width:151.305000px;}
._5c_c00427{width:214.038000px;}
._52_c00427{width:221.952000px;}
._2a_c00427{width:240.174000px;}
._4c_c00427{width:254.880000px;}
._2e_c00427{width:265.248000px;}
._4f_c00427{width:269.430000px;}
._3f_c00427{width:282.870000px;}
._33_c00427{width:416.418000px;}
._4e_c00427{width:428.100000px;}
._2f_c00427{width:503.388000px;}
._55_c00427{width:586.896000px;}
._10_c00427{width:652.302000px;}
._62_c00427{width:653.394000px;}
._32_c00427{width:1067.256000px;}
._63_c00427{width:2070.192000px;}
.fc2_c00427{color:transparent;}
.fc1_c00427{color:rgb(128,128,128);}
.fc0_c00427{color:rgb(0,0,0);}
.fs9_c00427{font-size:48.000000px;}
.fs4_c00427{font-size:60.000000px;}
.fs3_c00427{font-size:69.000000px;}
.fs6_c00427{font-size:72.000000px;}
.fs1_c00427{font-size:78.000000px;}
.fs7_c00427{font-size:84.000000px;}
.fs2_c00427{font-size:87.000000px;}
.fs0_c00427{font-size:96.000000px;}
.fs8_c00427{font-size:102.000000px;}
.fs5_c00427{font-size:165.000000px;}
.y0_c00427{bottom:0.000000px;}
.y27_c00427{bottom:3.105000px;}
.y26_c00427{bottom:7.228357px;}
.y25_c00427{bottom:99.630000px;}
.y24_c00427{bottom:129.330000px;}
.y23_c00427{bottom:162.030000px;}
.y22_c00427{bottom:192.780000px;}
.y21_c00427{bottom:219.780000px;}
.y20_c00427{bottom:262.680000px;}
.y1f_c00427{bottom:299.130000px;}
.y1e_c00427{bottom:330.480000px;}
.y1d_c00427{bottom:366.930000px;}
.y1c_c00427{bottom:401.580000px;}
.y1b_c00427{bottom:432.630000px;}
.y1a_c00427{bottom:468.780000px;}
.y19_c00427{bottom:503.580000px;}
.y18_c00427{bottom:534.330000px;}
.y17_c00427{bottom:571.680000px;}
.y16_c00427{bottom:603.480000px;}
.y15_c00427{bottom:637.230000px;}
.y14_c00427{bottom:671.280000px;}
.y13_c00427{bottom:701.730000px;}
.y12_c00427{bottom:743.130000px;}
.y11_c00427{bottom:775.230000px;}
.y10_c00427{bottom:808.380000px;}
.yf_c00427{bottom:839.130000px;}
.ye_c00427{bottom:874.080000px;}
.yd_c00427{bottom:905.880000px;}
.yc_c00427{bottom:939.330000px;}
.yb_c00427{bottom:972.330000px;}
.ya_c00427{bottom:1004.730000px;}
.y9_c00427{bottom:1036.230000px;}
.y8_c00427{bottom:1068.480000px;}
.y7_c00427{bottom:1092.930000px;}
.y6_c00427{bottom:1123.830000px;}
.y5_c00427{bottom:1140.180000px;}
.y4_c00427{bottom:1174.830000px;}
.y3_c00427{bottom:1206.180000px;}
.y2_c00427{bottom:1239.030000px;}
.y1_c00427{bottom:1270.980000px;}
.h6_c00427{height:13.200074px;}
.h7_c00427{height:43.804688px;}
.h4_c00427{height:84.269531px;}
.h5_c00427{height:110.151855px;}
.h2_c00427{height:121.546875px;}
.h3_c00427{height:161.857910px;}
.h0_c00427{height:1382.700000px;}
.h1_c00427{height:1383.000000px;}
.w2_c00427{width:104.875500px;}
.w0_c00427{width:863.175000px;}
.w1_c00427{width:863.250000px;}
.x0_c00427{left:0.000000px;}
.x15_c00427{left:27.300000px;}
.x16_c00427{left:34.350000px;}
.x18_c00427{left:39.150000px;}
.x17_c00427{left:40.200000px;}
.xe_c00427{left:41.400000px;}
.xd_c00427{left:43.500000px;}
.x6_c00427{left:47.850000px;}
.x4_c00427{left:52.650000px;}
.x3_c00427{left:54.300000px;}
.x5_c00427{left:64.050000px;}
.x10_c00427{left:66.750000px;}
.x14_c00427{left:69.450000px;}
.xc_c00427{left:72.150000px;}
.x2_c00427{left:84.000000px;}
.x9_c00427{left:92.700000px;}
.xf_c00427{left:108.300000px;}
.x12_c00427{left:213.600000px;}
.x13_c00427{left:261.150000px;}
.x11_c00427{left:263.250000px;}
.xb_c00427{left:265.500000px;}
.xa_c00427{left:267.000000px;}
.x8_c00427{left:268.200000px;}
.x7_c00427{left:269.250000px;}
.x1_c00427{left:271.350000px;}
.x19_c00427{left:383.401749px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls13_c00427{letter-spacing:-2.666667pt;}
.ls10_c00427{letter-spacing:0.000000pt;}
.ls12_c00427{letter-spacing:2.666667pt;}
.ls11_c00427{letter-spacing:5.333333pt;}
.ls6_c00427{letter-spacing:7.573333pt;}
.ls3_c00427{letter-spacing:8.000000pt;}
.lsd_c00427{letter-spacing:14.962667pt;}
.lsf_c00427{letter-spacing:55.496000pt;}
.ls0_c00427{letter-spacing:62.962667pt;}
.ls8_c00427{letter-spacing:66.696000pt;}
.lsc_c00427{letter-spacing:70.429333pt;}
.lsb_c00427{letter-spacing:72.562667pt;}
.ls9_c00427{letter-spacing:76.829333pt;}
.ls7_c00427{letter-spacing:139.762667pt;}
.ls4_c00427{letter-spacing:290.162667pt;}
.ls1_c00427{letter-spacing:422.962667pt;}
.lsa_c00427{letter-spacing:449.629333pt;}
.ls2_c00427{letter-spacing:544.562667pt;}
.ls5_c00427{letter-spacing:883.762667pt;}
.lse_c00427{letter-spacing:1010.162667pt;}
.ws4_c00427{word-spacing:-59.581333pt;}
.ws3_c00427{word-spacing:-45.333333pt;}
.ws0_c00427{word-spacing:-20.565333pt;}
.ws1_c00427{word-spacing:-16.709333pt;}
.ws5_c00427{word-spacing:0.000000pt;}
.ws2_c00427{word-spacing:2.149333pt;}
._53_c00427{margin-left:-69.056000pt;}
._20_c00427{margin-left:-57.346667pt;}
._57_c00427{margin-left:-47.973333pt;}
._24_c00427{margin-left:-44.146667pt;}
._2b_c00427{margin-left:-42.680000pt;}
._26_c00427{margin-left:-39.893333pt;}
._21_c00427{margin-left:-34.906667pt;}
._5b_c00427{margin-left:-32.034667pt;}
._22_c00427{margin-left:-27.573333pt;}
._46_c00427{margin-left:-26.181333pt;}
._2d_c00427{margin-left:-24.773333pt;}
._58_c00427{margin-left:-22.698667pt;}
._27_c00427{margin-left:-20.208000pt;}
._60_c00427{margin-left:-19.312000pt;}
._5f_c00427{margin-left:-17.392000pt;}
._50_c00427{margin-left:-16.042667pt;}
._4d_c00427{margin-left:-14.506667pt;}
._5a_c00427{margin-left:-13.573333pt;}
._23_c00427{margin-left:-11.586667pt;}
._51_c00427{margin-left:-9.930667pt;}
._48_c00427{margin-left:-8.842667pt;}
._29_c00427{margin-left:-6.997333pt;}
._4b_c00427{margin-left:-5.834667pt;}
._1d_c00427{margin-left:-4.576000pt;}
._15_c00427{margin-left:-3.605333pt;}
._f_c00427{margin-left:-2.160000pt;}
._8_c00427{margin-left:-0.938667pt;}
._3_c00427{width:1.024000pt;}
._4_c00427{width:2.048000pt;}
._5_c00427{width:3.242667pt;}
._c_c00427{width:4.181333pt;}
._1c_c00427{width:5.194667pt;}
._d_c00427{width:6.144000pt;}
._0_c00427{width:7.680000pt;}
._1_c00427{width:8.874667pt;}
._b_c00427{width:10.240000pt;}
._34_c00427{width:11.733333pt;}
._39_c00427{width:12.645333pt;}
._17_c00427{width:13.749333pt;}
._19_c00427{width:14.954667pt;}
._31_c00427{width:15.893333pt;}
._30_c00427{width:16.826667pt;}
._a_c00427{width:18.602667pt;}
._40_c00427{width:19.584000pt;}
._16_c00427{width:20.997333pt;}
._38_c00427{width:22.586667pt;}
._13_c00427{width:25.120000pt;}
._36_c00427{width:26.336000pt;}
._35_c00427{width:27.370667pt;}
._1a_c00427{width:29.013333pt;}
._9_c00427{width:30.293333pt;}
._3c_c00427{width:31.232000pt;}
._14_c00427{width:32.224000pt;}
._3a_c00427{width:33.648000pt;}
._6_c00427{width:34.901333pt;}
._18_c00427{width:36.480000pt;}
._1b_c00427{width:38.101333pt;}
._11_c00427{width:39.669333pt;}
._56_c00427{width:40.618667pt;}
._1f_c00427{width:42.581333pt;}
._1e_c00427{width:43.658667pt;}
._7_c00427{width:44.714667pt;}
._5d_c00427{width:46.016000pt;}
._41_c00427{width:46.960000pt;}
._47_c00427{width:49.370667pt;}
._3e_c00427{width:51.712000pt;}
._37_c00427{width:53.589333pt;}
._25_c00427{width:55.733333pt;}
._12_c00427{width:58.709333pt;}
._2_c00427{width:60.672000pt;}
._42_c00427{width:61.872000pt;}
._4a_c00427{width:62.933333pt;}
._43_c00427{width:65.285333pt;}
._3b_c00427{width:67.104000pt;}
._3d_c00427{width:68.789333pt;}
._e_c00427{width:70.570667pt;}
._49_c00427{width:71.488000pt;}
._44_c00427{width:74.832000pt;}
._59_c00427{width:78.336000pt;}
._5e_c00427{width:104.880000pt;}
._61_c00427{width:107.738667pt;}
._54_c00427{width:109.056000pt;}
._28_c00427{width:112.069333pt;}
._45_c00427{width:132.565333pt;}
._2c_c00427{width:134.493333pt;}
._5c_c00427{width:190.256000pt;}
._52_c00427{width:197.290667pt;}
._2a_c00427{width:213.488000pt;}
._4c_c00427{width:226.560000pt;}
._2e_c00427{width:235.776000pt;}
._4f_c00427{width:239.493333pt;}
._3f_c00427{width:251.440000pt;}
._33_c00427{width:370.149333pt;}
._4e_c00427{width:380.533333pt;}
._2f_c00427{width:447.456000pt;}
._55_c00427{width:521.685333pt;}
._10_c00427{width:579.824000pt;}
._62_c00427{width:580.794667pt;}
._32_c00427{width:948.672000pt;}
._63_c00427{width:1840.170667pt;}
.fs9_c00427{font-size:42.666667pt;}
.fs4_c00427{font-size:53.333333pt;}
.fs3_c00427{font-size:61.333333pt;}
.fs6_c00427{font-size:64.000000pt;}
.fs1_c00427{font-size:69.333333pt;}
.fs7_c00427{font-size:74.666667pt;}
.fs2_c00427{font-size:77.333333pt;}
.fs0_c00427{font-size:85.333333pt;}
.fs8_c00427{font-size:90.666667pt;}
.fs5_c00427{font-size:146.666667pt;}
.y0_c00427{bottom:0.000000pt;}
.y27_c00427{bottom:2.760000pt;}
.y26_c00427{bottom:6.425206pt;}
.y25_c00427{bottom:88.560000pt;}
.y24_c00427{bottom:114.960000pt;}
.y23_c00427{bottom:144.026667pt;}
.y22_c00427{bottom:171.360000pt;}
.y21_c00427{bottom:195.360000pt;}
.y20_c00427{bottom:233.493333pt;}
.y1f_c00427{bottom:265.893333pt;}
.y1e_c00427{bottom:293.760000pt;}
.y1d_c00427{bottom:326.160000pt;}
.y1c_c00427{bottom:356.960000pt;}
.y1b_c00427{bottom:384.560000pt;}
.y1a_c00427{bottom:416.693333pt;}
.y19_c00427{bottom:447.626667pt;}
.y18_c00427{bottom:474.960000pt;}
.y17_c00427{bottom:508.160000pt;}
.y16_c00427{bottom:536.426667pt;}
.y15_c00427{bottom:566.426667pt;}
.y14_c00427{bottom:596.693333pt;}
.y13_c00427{bottom:623.760000pt;}
.y12_c00427{bottom:660.560000pt;}
.y11_c00427{bottom:689.093333pt;}
.y10_c00427{bottom:718.560000pt;}
.yf_c00427{bottom:745.893333pt;}
.ye_c00427{bottom:776.960000pt;}
.yd_c00427{bottom:805.226667pt;}
.yc_c00427{bottom:834.960000pt;}
.yb_c00427{bottom:864.293333pt;}
.ya_c00427{bottom:893.093333pt;}
.y9_c00427{bottom:921.093333pt;}
.y8_c00427{bottom:949.760000pt;}
.y7_c00427{bottom:971.493333pt;}
.y6_c00427{bottom:998.960000pt;}
.y5_c00427{bottom:1013.493333pt;}
.y4_c00427{bottom:1044.293333pt;}
.y3_c00427{bottom:1072.160000pt;}
.y2_c00427{bottom:1101.360000pt;}
.y1_c00427{bottom:1129.760000pt;}
.h6_c00427{height:11.733399pt;}
.h7_c00427{height:38.937500pt;}
.h4_c00427{height:74.906250pt;}
.h5_c00427{height:97.912760pt;}
.h2_c00427{height:108.041667pt;}
.h3_c00427{height:143.873698pt;}
.h0_c00427{height:1229.066667pt;}
.h1_c00427{height:1229.333333pt;}
.w2_c00427{width:93.222667pt;}
.w0_c00427{width:767.266667pt;}
.w1_c00427{width:767.333333pt;}
.x0_c00427{left:0.000000pt;}
.x15_c00427{left:24.266667pt;}
.x16_c00427{left:30.533333pt;}
.x18_c00427{left:34.800000pt;}
.x17_c00427{left:35.733333pt;}
.xe_c00427{left:36.800000pt;}
.xd_c00427{left:38.666667pt;}
.x6_c00427{left:42.533333pt;}
.x4_c00427{left:46.800000pt;}
.x3_c00427{left:48.266667pt;}
.x5_c00427{left:56.933333pt;}
.x10_c00427{left:59.333333pt;}
.x14_c00427{left:61.733333pt;}
.xc_c00427{left:64.133333pt;}
.x2_c00427{left:74.666667pt;}
.x9_c00427{left:82.400000pt;}
.xf_c00427{left:96.266667pt;}
.x12_c00427{left:189.866667pt;}
.x13_c00427{left:232.133333pt;}
.x11_c00427{left:234.000000pt;}
.xb_c00427{left:236.000000pt;}
.xa_c00427{left:237.333333pt;}
.x8_c00427{left:238.400000pt;}
.x7_c00427{left:239.333333pt;}
.x1_c00427{left:241.200000pt;}
.x19_c00427{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1492ffe9d35258c2de6de30.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_4beca4e0bf509b26274eae8c.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_5019e8b7f2acc96d5b671093.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_efe765eea93024572ea9d266.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_560a758105de5fa97a573148.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_eb223b97bf376345a44274f5.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00428;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00428{font-family:ff7_c00428;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls4_c00428{letter-spacing:-9.000000px;}
.ls3_c00428{letter-spacing:-3.000000px;}
.ls2_c00428{letter-spacing:0.000000px;}
.ls5_c00428{letter-spacing:9.000000px;}
.ls0_c00428{letter-spacing:11.472000px;}
.ls1_c00428{letter-spacing:40.500000px;}
.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;}
}
.ws0_c00428{word-spacing:-51.000000px;}
.ws2_c00428{word-spacing:-45.540000px;}
.ws1_c00428{word-spacing:-23.136000px;}
.ws3_c00428{word-spacing:-18.798000px;}
.ws4_c00428{word-spacing:0.000000px;}
._1_c00428{margin-left:-43.416000px;}
._42_c00428{margin-left:-18.270000px;}
._43_c00428{margin-left:-15.504000px;}
._44_c00428{margin-left:-13.158000px;}
._34_c00428{margin-left:-11.040000px;}
._f_c00428{margin-left:-9.504000px;}
._32_c00428{margin-left:-8.064000px;}
._3f_c00428{margin-left:-7.002000px;}
._2a_c00428{margin-left:-5.904000px;}
._0_c00428{margin-left:-4.488000px;}
._3a_c00428{margin-left:-3.360000px;}
._1c_c00428{margin-left:-2.208000px;}
._5_c00428{margin-left:-1.056000px;}
._3_c00428{width:1.344000px;}
._37_c00428{width:2.352000px;}
._9_c00428{width:3.360000px;}
._d_c00428{width:4.608000px;}
._a_c00428{width:5.952000px;}
._b_c00428{width:7.680000px;}
._7_c00428{width:9.504000px;}
._c_c00428{width:11.424000px;}
._14_c00428{width:12.480000px;}
._36_c00428{width:13.536000px;}
._6_c00428{width:14.688000px;}
._8_c00428{width:16.032000px;}
._2f_c00428{width:17.280000px;}
._29_c00428{width:18.432000px;}
._10_c00428{width:19.776000px;}
._11_c00428{width:21.120000px;}
._1f_c00428{width:24.864000px;}
._13_c00428{width:26.208000px;}
._e_c00428{width:27.552000px;}
._2_c00428{width:29.328000px;}
._21_c00428{width:30.840000px;}
._4_c00428{width:32.064000px;}
._20_c00428{width:34.176000px;}
._1d_c00428{width:35.952000px;}
._27_c00428{width:37.248000px;}
._1e_c00428{width:38.496000px;}
._30_c00428{width:39.840000px;}
._12_c00428{width:41.376000px;}
._19_c00428{width:43.296000px;}
._25_c00428{width:45.024000px;}
._28_c00428{width:47.712000px;}
._38_c00428{width:49.248000px;}
._1b_c00428{width:50.304000px;}
._2b_c00428{width:52.032000px;}
._23_c00428{width:53.760000px;}
._24_c00428{width:54.816000px;}
._26_c00428{width:56.160000px;}
._17_c00428{width:57.216000px;}
._1a_c00428{width:58.752000px;}
._22_c00428{width:60.168000px;}
._16_c00428{width:63.552000px;}
._18_c00428{width:68.160000px;}
._39_c00428{width:69.264000px;}
._41_c00428{width:81.066000px;}
._40_c00428{width:84.810000px;}
._31_c00428{width:89.208000px;}
._3e_c00428{width:92.694000px;}
._2d_c00428{width:99.072000px;}
._33_c00428{width:118.464000px;}
._3b_c00428{width:141.984000px;}
._35_c00428{width:169.248000px;}
._15_c00428{width:177.408000px;}
._2e_c00428{width:181.536000px;}
._3c_c00428{width:707.040000px;}
._3d_c00428{width:835.824000px;}
._2c_c00428{width:1357.344000px;}
.fc2_c00428{color:transparent;}
.fc1_c00428{color:rgb(128,128,128);}
.fc0_c00428{color:rgb(0,0,0);}
.fs7_c00428{font-size:48.000000px;}
.fs3_c00428{font-size:78.000000px;}
.fs6_c00428{font-size:84.000000px;}
.fs2_c00428{font-size:87.000000px;}
.fs4_c00428{font-size:90.000000px;}
.fs5_c00428{font-size:93.000000px;}
.fs0_c00428{font-size:96.000000px;}
.fs1_c00428{font-size:102.000000px;}
.y0_c00428{bottom:0.000000px;}
.y37_c00428{bottom:3.105000px;}
.y36_c00428{bottom:7.228371px;}
.y25_c00428{bottom:80.115000px;}
.y24_c00428{bottom:117.165000px;}
.y35_c00428{bottom:130.365000px;}
.y23_c00428{bottom:151.665000px;}
.y34_c00428{bottom:161.415000px;}
.y22_c00428{bottom:185.715000px;}
.y33_c00428{bottom:192.015000px;}
.y21_c00428{bottom:219.465000px;}
.y32_c00428{bottom:221.865000px;}
.y31_c00428{bottom:252.165000px;}
.y20_c00428{bottom:253.215000px;}
.y30_c00428{bottom:281.565000px;}
.y1f_c00428{bottom:287.565000px;}
.y1e_c00428{bottom:319.665000px;}
.y1d_c00428{bottom:354.765000px;}
.y1c_c00428{bottom:387.915000px;}
.y1b_c00428{bottom:421.215000px;}
.y1a_c00428{bottom:454.965000px;}
.y19_c00428{bottom:488.415000px;}
.y18_c00428{bottom:522.165000px;}
.y17_c00428{bottom:555.615000px;}
.y16_c00428{bottom:589.065000px;}
.y15_c00428{bottom:622.665000px;}
.y2f_c00428{bottom:643.065000px;}
.y14_c00428{bottom:656.415000px;}
.y2e_c00428{bottom:673.665000px;}
.y13_c00428{bottom:689.865000px;}
.y2d_c00428{bottom:704.715000px;}
.y12_c00428{bottom:723.315000px;}
.y2c_c00428{bottom:735.165000px;}
.y11_c00428{bottom:757.365000px;}
.y2b_c00428{bottom:765.165000px;}
.y10_c00428{bottom:790.515000px;}
.y2a_c00428{bottom:793.215000px;}
.yf_c00428{bottom:823.215000px;}
.ye_c00428{bottom:857.715000px;}
.yd_c00428{bottom:891.015000px;}
.yc_c00428{bottom:925.065000px;}
.yb_c00428{bottom:958.215000px;}
.ya_c00428{bottom:991.665000px;}
.y9_c00428{bottom:1024.665000px;}
.y8_c00428{bottom:1057.815000px;}
.y29_c00428{bottom:1073.265000px;}
.y7_c00428{bottom:1090.815000px;}
.y28_c00428{bottom:1103.415000px;}
.y6_c00428{bottom:1123.515000px;}
.y27_c00428{bottom:1132.965000px;}
.y5_c00428{bottom:1156.665000px;}
.y26_c00428{bottom:1162.065000px;}
.y4_c00428{bottom:1188.465000px;}
.y3_c00428{bottom:1222.515000px;}
.y2_c00428{bottom:1255.965000px;}
.y1_c00428{bottom:1281.915000px;}
.h9_c00428{height:13.200074px;}
.ha_c00428{height:43.804688px;}
.h3_c00428{height:91.291992px;}
.h4_c00428{height:97.560000px;}
.h5_c00428{height:98.756836px;}
.h7_c00428{height:106.353516px;}
.h8_c00428{height:110.151855px;}
.h2_c00428{height:121.546875px;}
.h6_c00428{height:129.143555px;}
.h0_c00428{height:1360.275000px;}
.h1_c00428{height:1360.500000px;}
.w2_c00428{width:104.875500px;}
.w1_c00428{width:863.250000px;}
.w0_c00428{width:863.475000px;}
.x0_c00428{left:0.000000px;}
.xc_c00428{left:21.300000px;}
.xe_c00428{left:22.500000px;}
.xa_c00428{left:23.550000px;}
.x9_c00428{left:24.600000px;}
.x8_c00428{left:26.250000px;}
.x7_c00428{left:27.900000px;}
.x6_c00428{left:28.950000px;}
.x5_c00428{left:30.000000px;}
.x3_c00428{left:31.650000px;}
.x2_c00428{left:34.350000px;}
.xb_c00428{left:69.450000px;}
.xd_c00428{left:74.250000px;}
.xf_c00428{left:76.500000px;}
.x4_c00428{left:77.550000px;}
.x1b_c00428{left:383.551758px;}
.x1_c00428{left:512.250000px;}
.x16_c00428{left:611.850000px;}
.x14_c00428{left:613.500000px;}
.x15_c00428{left:615.900000px;}
.x11_c00428{left:618.000000px;}
.x19_c00428{left:620.700000px;}
.x17_c00428{left:630.450000px;}
.x12_c00428{left:632.700000px;}
.x1a_c00428{left:634.800000px;}
.x10_c00428{left:646.650000px;}
.x18_c00428{left:647.700000px;}
.x13_c00428{left:651.750000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls4_c00428{letter-spacing:-8.000000pt;}
.ls3_c00428{letter-spacing:-2.666667pt;}
.ls2_c00428{letter-spacing:0.000000pt;}
.ls5_c00428{letter-spacing:8.000000pt;}
.ls0_c00428{letter-spacing:10.197333pt;}
.ls1_c00428{letter-spacing:36.000000pt;}
.ws0_c00428{word-spacing:-45.333333pt;}
.ws2_c00428{word-spacing:-40.480000pt;}
.ws1_c00428{word-spacing:-20.565333pt;}
.ws3_c00428{word-spacing:-16.709333pt;}
.ws4_c00428{word-spacing:0.000000pt;}
._1_c00428{margin-left:-38.592000pt;}
._42_c00428{margin-left:-16.240000pt;}
._43_c00428{margin-left:-13.781333pt;}
._44_c00428{margin-left:-11.696000pt;}
._34_c00428{margin-left:-9.813333pt;}
._f_c00428{margin-left:-8.448000pt;}
._32_c00428{margin-left:-7.168000pt;}
._3f_c00428{margin-left:-6.224000pt;}
._2a_c00428{margin-left:-5.248000pt;}
._0_c00428{margin-left:-3.989333pt;}
._3a_c00428{margin-left:-2.986667pt;}
._1c_c00428{margin-left:-1.962667pt;}
._5_c00428{margin-left:-0.938667pt;}
._3_c00428{width:1.194667pt;}
._37_c00428{width:2.090667pt;}
._9_c00428{width:2.986667pt;}
._d_c00428{width:4.096000pt;}
._a_c00428{width:5.290667pt;}
._b_c00428{width:6.826667pt;}
._7_c00428{width:8.448000pt;}
._c_c00428{width:10.154667pt;}
._14_c00428{width:11.093333pt;}
._36_c00428{width:12.032000pt;}
._6_c00428{width:13.056000pt;}
._8_c00428{width:14.250667pt;}
._2f_c00428{width:15.360000pt;}
._29_c00428{width:16.384000pt;}
._10_c00428{width:17.578667pt;}
._11_c00428{width:18.773333pt;}
._1f_c00428{width:22.101333pt;}
._13_c00428{width:23.296000pt;}
._e_c00428{width:24.490667pt;}
._2_c00428{width:26.069333pt;}
._21_c00428{width:27.413333pt;}
._4_c00428{width:28.501333pt;}
._20_c00428{width:30.378667pt;}
._1d_c00428{width:31.957333pt;}
._27_c00428{width:33.109333pt;}
._1e_c00428{width:34.218667pt;}
._30_c00428{width:35.413333pt;}
._12_c00428{width:36.778667pt;}
._19_c00428{width:38.485333pt;}
._25_c00428{width:40.021333pt;}
._28_c00428{width:42.410667pt;}
._38_c00428{width:43.776000pt;}
._1b_c00428{width:44.714667pt;}
._2b_c00428{width:46.250667pt;}
._23_c00428{width:47.786667pt;}
._24_c00428{width:48.725333pt;}
._26_c00428{width:49.920000pt;}
._17_c00428{width:50.858667pt;}
._1a_c00428{width:52.224000pt;}
._22_c00428{width:53.482667pt;}
._16_c00428{width:56.490667pt;}
._18_c00428{width:60.586667pt;}
._39_c00428{width:61.568000pt;}
._41_c00428{width:72.058667pt;}
._40_c00428{width:75.386667pt;}
._31_c00428{width:79.296000pt;}
._3e_c00428{width:82.394667pt;}
._2d_c00428{width:88.064000pt;}
._33_c00428{width:105.301333pt;}
._3b_c00428{width:126.208000pt;}
._35_c00428{width:150.442667pt;}
._15_c00428{width:157.696000pt;}
._2e_c00428{width:161.365333pt;}
._3c_c00428{width:628.480000pt;}
._3d_c00428{width:742.954667pt;}
._2c_c00428{width:1206.528000pt;}
.fs7_c00428{font-size:42.666667pt;}
.fs3_c00428{font-size:69.333333pt;}
.fs6_c00428{font-size:74.666667pt;}
.fs2_c00428{font-size:77.333333pt;}
.fs4_c00428{font-size:80.000000pt;}
.fs5_c00428{font-size:82.666667pt;}
.fs0_c00428{font-size:85.333333pt;}
.fs1_c00428{font-size:90.666667pt;}
.y0_c00428{bottom:0.000000pt;}
.y37_c00428{bottom:2.760000pt;}
.y36_c00428{bottom:6.425219pt;}
.y25_c00428{bottom:71.213333pt;}
.y24_c00428{bottom:104.146667pt;}
.y35_c00428{bottom:115.880000pt;}
.y23_c00428{bottom:134.813333pt;}
.y34_c00428{bottom:143.480000pt;}
.y22_c00428{bottom:165.080000pt;}
.y33_c00428{bottom:170.680000pt;}
.y21_c00428{bottom:195.080000pt;}
.y32_c00428{bottom:197.213333pt;}
.y31_c00428{bottom:224.146667pt;}
.y20_c00428{bottom:225.080000pt;}
.y30_c00428{bottom:250.280000pt;}
.y1f_c00428{bottom:255.613333pt;}
.y1e_c00428{bottom:284.146667pt;}
.y1d_c00428{bottom:315.346667pt;}
.y1c_c00428{bottom:344.813333pt;}
.y1b_c00428{bottom:374.413333pt;}
.y1a_c00428{bottom:404.413333pt;}
.y19_c00428{bottom:434.146667pt;}
.y18_c00428{bottom:464.146667pt;}
.y17_c00428{bottom:493.880000pt;}
.y16_c00428{bottom:523.613333pt;}
.y15_c00428{bottom:553.480000pt;}
.y2f_c00428{bottom:571.613333pt;}
.y14_c00428{bottom:583.480000pt;}
.y2e_c00428{bottom:598.813333pt;}
.y13_c00428{bottom:613.213333pt;}
.y2d_c00428{bottom:626.413333pt;}
.y12_c00428{bottom:642.946667pt;}
.y2c_c00428{bottom:653.480000pt;}
.y11_c00428{bottom:673.213333pt;}
.y2b_c00428{bottom:680.146667pt;}
.y10_c00428{bottom:702.680000pt;}
.y2a_c00428{bottom:705.080000pt;}
.yf_c00428{bottom:731.746667pt;}
.ye_c00428{bottom:762.413333pt;}
.yd_c00428{bottom:792.013333pt;}
.yc_c00428{bottom:822.280000pt;}
.yb_c00428{bottom:851.746667pt;}
.ya_c00428{bottom:881.480000pt;}
.y9_c00428{bottom:910.813333pt;}
.y8_c00428{bottom:940.280000pt;}
.y29_c00428{bottom:954.013333pt;}
.y7_c00428{bottom:969.613333pt;}
.y28_c00428{bottom:980.813333pt;}
.y6_c00428{bottom:998.680000pt;}
.y27_c00428{bottom:1007.080000pt;}
.y5_c00428{bottom:1028.146667pt;}
.y26_c00428{bottom:1032.946667pt;}
.y4_c00428{bottom:1056.413333pt;}
.y3_c00428{bottom:1086.680000pt;}
.y2_c00428{bottom:1116.413333pt;}
.y1_c00428{bottom:1139.480000pt;}
.h9_c00428{height:11.733399pt;}
.ha_c00428{height:38.937500pt;}
.h3_c00428{height:81.148438pt;}
.h4_c00428{height:86.720000pt;}
.h5_c00428{height:87.783854pt;}
.h7_c00428{height:94.536458pt;}
.h8_c00428{height:97.912760pt;}
.h2_c00428{height:108.041667pt;}
.h6_c00428{height:114.794271pt;}
.h0_c00428{height:1209.133333pt;}
.h1_c00428{height:1209.333333pt;}
.w2_c00428{width:93.222667pt;}
.w1_c00428{width:767.333333pt;}
.w0_c00428{width:767.533333pt;}
.x0_c00428{left:0.000000pt;}
.xc_c00428{left:18.933333pt;}
.xe_c00428{left:20.000000pt;}
.xa_c00428{left:20.933333pt;}
.x9_c00428{left:21.866667pt;}
.x8_c00428{left:23.333333pt;}
.x7_c00428{left:24.800000pt;}
.x6_c00428{left:25.733333pt;}
.x5_c00428{left:26.666667pt;}
.x3_c00428{left:28.133333pt;}
.x2_c00428{left:30.533333pt;}
.xb_c00428{left:61.733333pt;}
.xd_c00428{left:66.000000pt;}
.xf_c00428{left:68.000000pt;}
.x4_c00428{left:68.933333pt;}
.x1b_c00428{left:340.934896pt;}
.x1_c00428{left:455.333333pt;}
.x16_c00428{left:543.866667pt;}
.x14_c00428{left:545.333333pt;}
.x15_c00428{left:547.466667pt;}
.x11_c00428{left:549.333333pt;}
.x19_c00428{left:551.733333pt;}
.x17_c00428{left:560.400000pt;}
.x12_c00428{left:562.400000pt;}
.x1a_c00428{left:564.266667pt;}
.x10_c00428{left:574.800000pt;}
.x18_c00428{left:575.733333pt;}
.x13_c00428{left:579.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_651db89d698ce94bada64b3f.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_354c62da1e67b7e5a410e957.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.v1_c00429{vertical-align:2.400000px;}
.ls2_c00429{letter-spacing:-9.000000px;}
.ls0_c00429{letter-spacing:-3.000000px;}
.ls1_c00429{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00429{word-spacing:-65.037000px;}
.ws0_c00429{word-spacing:-23.136000px;}
.ws3_c00429{word-spacing:0.000000px;}
.ws1_c00429{word-spacing:1893.555000px;}
._3_c00429{margin-left:-80.388000px;}
._a_c00429{margin-left:-42.804000px;}
._1_c00429{margin-left:-34.278000px;}
._40_c00429{margin-left:-32.538000px;}
._5_c00429{margin-left:-28.971000px;}
._b_c00429{margin-left:-25.143000px;}
._0_c00429{margin-left:-19.662000px;}
._7_c00429{margin-left:-14.703000px;}
._2_c00429{margin-left:-13.311000px;}
._6_c00429{margin-left:-12.267000px;}
._34_c00429{margin-left:-11.139000px;}
._21_c00429{margin-left:-9.696000px;}
._37_c00429{margin-left:-8.412000px;}
._1f_c00429{margin-left:-7.392000px;}
._32_c00429{margin-left:-5.508000px;}
._19_c00429{margin-left:-4.170000px;}
._8_c00429{margin-left:-2.958000px;}
._16_c00429{margin-left:-1.680000px;}
._f_c00429{width:1.344000px;}
._13_c00429{width:3.114000px;}
._d_c00429{width:4.128000px;}
._15_c00429{width:5.292000px;}
._2b_c00429{width:6.294000px;}
._c_c00429{width:7.296000px;}
._12_c00429{width:9.120000px;}
._9_c00429{width:10.875000px;}
._17_c00429{width:12.480000px;}
._1d_c00429{width:13.986000px;}
._26_c00429{width:15.108000px;}
._11_c00429{width:16.512000px;}
._27_c00429{width:17.556000px;}
._20_c00429{width:19.239000px;}
._14_c00429{width:21.312000px;}
._2a_c00429{width:24.426000px;}
._18_c00429{width:25.668000px;}
._33_c00429{width:26.925000px;}
._1c_c00429{width:28.506000px;}
._1a_c00429{width:30.480000px;}
._25_c00429{width:32.670000px;}
._e_c00429{width:34.176000px;}
._24_c00429{width:36.597000px;}
._30_c00429{width:37.974000px;}
._4_c00429{width:39.324000px;}
._1b_c00429{width:41.472000px;}
._10_c00429{width:43.104000px;}
._22_c00429{width:44.118000px;}
._23_c00429{width:47.094000px;}
._36_c00429{width:48.126000px;}
._35_c00429{width:49.269000px;}
._2e_c00429{width:51.666000px;}
._1e_c00429{width:52.701000px;}
._39_c00429{width:55.350000px;}
._2d_c00429{width:58.809000px;}
._38_c00429{width:60.750000px;}
._3a_c00429{width:62.940000px;}
._2c_c00429{width:64.524000px;}
._3f_c00429{width:65.988000px;}
._3b_c00429{width:69.708000px;}
._3c_c00429{width:70.950000px;}
._31_c00429{width:77.268000px;}
._3e_c00429{width:88.512000px;}
._3d_c00429{width:101.730000px;}
._28_c00429{width:151.200000px;}
._29_c00429{width:184.896000px;}
._2f_c00429{width:384.318000px;}
.fc2_c00429{color:transparent;}
.fc1_c00429{color:rgb(128,128,128);}
.fc0_c00429{color:rgb(0,0,0);}
.fs3_c00429{font-size:48.000000px;}
.fs0_c00429{font-size:87.000000px;}
.fs1_c00429{font-size:96.000000px;}
.fs2_c00429{font-size:111.000000px;}
.y0_c00429{bottom:0.000000px;}
.y1d_c00429{bottom:3.105000px;}
.y1c_c00429{bottom:7.228357px;}
.y1b_c00429{bottom:71.280000px;}
.y1_c00429{bottom:196.080000px;}
.y1a_c00429{bottom:453.030000px;}
.y19_c00429{bottom:485.730000px;}
.y18_c00429{bottom:520.080000px;}
.y17_c00429{bottom:553.830000px;}
.y16_c00429{bottom:586.980000px;}
.y15_c00429{bottom:620.730000px;}
.y14_c00429{bottom:654.180000px;}
.y13_c00429{bottom:687.780000px;}
.y12_c00429{bottom:721.230000px;}
.y11_c00429{bottom:754.680000px;}
.y10_c00429{bottom:789.480000px;}
.yf_c00429{bottom:821.580000px;}
.ye_c00429{bottom:855.630000px;}
.yd_c00429{bottom:888.630000px;}
.yc_c00429{bottom:922.680000px;}
.yb_c00429{bottom:955.830000px;}
.ya_c00429{bottom:986.580000px;}
.y9_c00429{bottom:1023.330000px;}
.y8_c00429{bottom:1056.030000px;}
.y7_c00429{bottom:1090.080000px;}
.y6_c00429{bottom:1123.230000px;}
.y5_c00429{bottom:1156.680000px;}
.y4_c00429{bottom:1189.980000px;}
.y3_c00429{bottom:1222.830000px;}
.y2_c00429{bottom:1256.280000px;}
.h5_c00429{height:13.200074px;}
.h6_c00429{height:43.804688px;}
.h2_c00429{height:110.151855px;}
.h4_c00429{height:111.340430px;}
.h3_c00429{height:121.546875px;}
.h0_c00429{height:1362.450000px;}
.h1_c00429{height:1362.750000px;}
.w2_c00429{width:104.875500px;}
.w1_c00429{width:849.750000px;}
.w0_c00429{width:849.975000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:38.850000px;}
.x4_c00429{left:244.800000px;}
.x5_c00429{left:246.000000px;}
.x7_c00429{left:247.050000px;}
.x3_c00429{left:248.100000px;}
.x2_c00429{left:249.300000px;}
.x8_c00429{left:268.350000px;}
.x6_c00429{left:299.400000px;}
.x9_c00429{left:376.801758px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.v1_c00429{vertical-align:2.133333pt;}
.ls2_c00429{letter-spacing:-8.000000pt;}
.ls0_c00429{letter-spacing:-2.666667pt;}
.ls1_c00429{letter-spacing:0.000000pt;}
.ws2_c00429{word-spacing:-57.810667pt;}
.ws0_c00429{word-spacing:-20.565333pt;}
.ws3_c00429{word-spacing:0.000000pt;}
.ws1_c00429{word-spacing:1683.160000pt;}
._3_c00429{margin-left:-71.456000pt;}
._a_c00429{margin-left:-38.048000pt;}
._1_c00429{margin-left:-30.469333pt;}
._40_c00429{margin-left:-28.922667pt;}
._5_c00429{margin-left:-25.752000pt;}
._b_c00429{margin-left:-22.349333pt;}
._0_c00429{margin-left:-17.477333pt;}
._7_c00429{margin-left:-13.069333pt;}
._2_c00429{margin-left:-11.832000pt;}
._6_c00429{margin-left:-10.904000pt;}
._34_c00429{margin-left:-9.901333pt;}
._21_c00429{margin-left:-8.618667pt;}
._37_c00429{margin-left:-7.477333pt;}
._1f_c00429{margin-left:-6.570667pt;}
._32_c00429{margin-left:-4.896000pt;}
._19_c00429{margin-left:-3.706667pt;}
._8_c00429{margin-left:-2.629333pt;}
._16_c00429{margin-left:-1.493333pt;}
._f_c00429{width:1.194667pt;}
._13_c00429{width:2.768000pt;}
._d_c00429{width:3.669333pt;}
._15_c00429{width:4.704000pt;}
._2b_c00429{width:5.594667pt;}
._c_c00429{width:6.485333pt;}
._12_c00429{width:8.106667pt;}
._9_c00429{width:9.666667pt;}
._17_c00429{width:11.093333pt;}
._1d_c00429{width:12.432000pt;}
._26_c00429{width:13.429333pt;}
._11_c00429{width:14.677333pt;}
._27_c00429{width:15.605333pt;}
._20_c00429{width:17.101333pt;}
._14_c00429{width:18.944000pt;}
._2a_c00429{width:21.712000pt;}
._18_c00429{width:22.816000pt;}
._33_c00429{width:23.933333pt;}
._1c_c00429{width:25.338667pt;}
._1a_c00429{width:27.093333pt;}
._25_c00429{width:29.040000pt;}
._e_c00429{width:30.378667pt;}
._24_c00429{width:32.530667pt;}
._30_c00429{width:33.754667pt;}
._4_c00429{width:34.954667pt;}
._1b_c00429{width:36.864000pt;}
._10_c00429{width:38.314667pt;}
._22_c00429{width:39.216000pt;}
._23_c00429{width:41.861333pt;}
._36_c00429{width:42.778667pt;}
._35_c00429{width:43.794667pt;}
._2e_c00429{width:45.925333pt;}
._1e_c00429{width:46.845333pt;}
._39_c00429{width:49.200000pt;}
._2d_c00429{width:52.274667pt;}
._38_c00429{width:54.000000pt;}
._3a_c00429{width:55.946667pt;}
._2c_c00429{width:57.354667pt;}
._3f_c00429{width:58.656000pt;}
._3b_c00429{width:61.962667pt;}
._3c_c00429{width:63.066667pt;}
._31_c00429{width:68.682667pt;}
._3e_c00429{width:78.677333pt;}
._3d_c00429{width:90.426667pt;}
._28_c00429{width:134.400000pt;}
._29_c00429{width:164.352000pt;}
._2f_c00429{width:341.616000pt;}
.fs3_c00429{font-size:42.666667pt;}
.fs0_c00429{font-size:77.333333pt;}
.fs1_c00429{font-size:85.333333pt;}
.fs2_c00429{font-size:98.666667pt;}
.y0_c00429{bottom:0.000000pt;}
.y1d_c00429{bottom:2.760000pt;}
.y1c_c00429{bottom:6.425206pt;}
.y1b_c00429{bottom:63.360000pt;}
.y1_c00429{bottom:174.293333pt;}
.y1a_c00429{bottom:402.693333pt;}
.y19_c00429{bottom:431.760000pt;}
.y18_c00429{bottom:462.293333pt;}
.y17_c00429{bottom:492.293333pt;}
.y16_c00429{bottom:521.760000pt;}
.y15_c00429{bottom:551.760000pt;}
.y14_c00429{bottom:581.493333pt;}
.y13_c00429{bottom:611.360000pt;}
.y12_c00429{bottom:641.093333pt;}
.y11_c00429{bottom:670.826667pt;}
.y10_c00429{bottom:701.760000pt;}
.yf_c00429{bottom:730.293333pt;}
.ye_c00429{bottom:760.560000pt;}
.yd_c00429{bottom:789.893333pt;}
.yc_c00429{bottom:820.160000pt;}
.yb_c00429{bottom:849.626667pt;}
.ya_c00429{bottom:876.960000pt;}
.y9_c00429{bottom:909.626667pt;}
.y8_c00429{bottom:938.693333pt;}
.y7_c00429{bottom:968.960000pt;}
.y6_c00429{bottom:998.426667pt;}
.y5_c00429{bottom:1028.160000pt;}
.y4_c00429{bottom:1057.760000pt;}
.y3_c00429{bottom:1086.960000pt;}
.y2_c00429{bottom:1116.693333pt;}
.h5_c00429{height:11.733399pt;}
.h6_c00429{height:38.937500pt;}
.h2_c00429{height:97.912760pt;}
.h4_c00429{height:98.969271pt;}
.h3_c00429{height:108.041667pt;}
.h0_c00429{height:1211.066667pt;}
.h1_c00429{height:1211.333333pt;}
.w2_c00429{width:93.222667pt;}
.w1_c00429{width:755.333333pt;}
.w0_c00429{width:755.533333pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:34.533333pt;}
.x4_c00429{left:217.600000pt;}
.x5_c00429{left:218.666667pt;}
.x7_c00429{left:219.600000pt;}
.x3_c00429{left:220.533333pt;}
.x2_c00429{left:221.600000pt;}
.x8_c00429{left:238.533333pt;}
.x6_c00429{left:266.133333pt;}
.x9_c00429{left:334.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc1c82763bdde0185e9e4504.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_17c029ebb2e10587c09fe031.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_0275544d54184a4ec7147585.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_d64223988c1402e5404fdcb1.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_3ccd77667299a12f64cedfd3.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00430;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00430{vertical-align:-133.800000px;}
.v0_c00430{vertical-align:0.000000px;}
.ls4_c00430{letter-spacing:-3.000000px;}
.ls2_c00430{letter-spacing:0.000000px;}
.ls3_c00430{letter-spacing:6.000000px;}
.ls1_c00430{letter-spacing:18.060000px;}
.ls0_c00430{letter-spacing:703.464000px;}
.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;}
}
.ws3_c00430{word-spacing:-23.136000px;}
.ws0_c00430{word-spacing:-21.984000px;}
.ws1_c00430{word-spacing:-20.244000px;}
.ws4_c00430{word-spacing:0.000000px;}
.ws2_c00430{word-spacing:3.948000px;}
._1_c00430{margin-left:-116.640000px;}
._19_c00430{margin-left:-51.591000px;}
._0_c00430{margin-left:-36.720000px;}
._46_c00430{margin-left:-28.368000px;}
._3c_c00430{margin-left:-19.440000px;}
._39_c00430{margin-left:-12.960000px;}
._1b_c00430{margin-left:-11.457000px;}
._3a_c00430{margin-left:-9.984000px;}
._45_c00430{margin-left:-8.826000px;}
._1a_c00430{margin-left:-7.407000px;}
._17_c00430{margin-left:-5.904000px;}
._3b_c00430{margin-left:-4.608000px;}
._13_c00430{margin-left:-3.600000px;}
._14_c00430{margin-left:-2.592000px;}
._15_c00430{margin-left:-1.584000px;}
._12_c00430{width:1.296000px;}
._d_c00430{width:2.304000px;}
._e_c00430{width:3.744000px;}
._10_c00430{width:5.040000px;}
._8_c00430{width:6.768000px;}
._3_c00430{width:8.496000px;}
._5_c00430{width:10.080000px;}
._7_c00430{width:11.088000px;}
._6_c00430{width:12.240000px;}
._4_c00430{width:13.248000px;}
._b_c00430{width:14.400000px;}
._a_c00430{width:15.552000px;}
._41_c00430{width:16.608000px;}
._26_c00430{width:17.856000px;}
._44_c00430{width:19.104000px;}
._2_c00430{width:20.160000px;}
._2e_c00430{width:21.456000px;}
._32_c00430{width:24.240000px;}
._1f_c00430{width:26.064000px;}
._40_c00430{width:27.216000px;}
._2f_c00430{width:28.224000px;}
._36_c00430{width:29.328000px;}
._3f_c00430{width:30.336000px;}
._2d_c00430{width:32.400000px;}
._1d_c00430{width:34.128000px;}
._31_c00430{width:36.048000px;}
._30_c00430{width:38.496000px;}
._2c_c00430{width:39.552000px;}
._27_c00430{width:40.848000px;}
._3e_c00430{width:42.384000px;}
._16_c00430{width:44.352000px;}
._21_c00430{width:45.984000px;}
._33_c00430{width:47.856000px;}
._f_c00430{width:50.544000px;}
._1e_c00430{width:51.840000px;}
._18_c00430{width:53.712000px;}
._11_c00430{width:55.008000px;}
._20_c00430{width:56.592000px;}
._35_c00430{width:59.664000px;}
._2a_c00430{width:62.784000px;}
._28_c00430{width:65.664000px;}
._34_c00430{width:66.672000px;}
._29_c00430{width:69.264000px;}
._2b_c00430{width:71.088000px;}
._3d_c00430{width:77.277000px;}
._9_c00430{width:85.824000px;}
._c_c00430{width:89.424000px;}
._23_c00430{width:93.072000px;}
._22_c00430{width:111.840000px;}
._42_c00430{width:177.312000px;}
._43_c00430{width:229.032000px;}
._37_c00430{width:272.160000px;}
._24_c00430{width:316.944000px;}
._38_c00430{width:443.967000px;}
._1c_c00430{width:479.184000px;}
._25_c00430{width:583.056000px;}
.fc2_c00430{color:transparent;}
.fc1_c00430{color:rgb(128,128,128);}
.fc0_c00430{color:rgb(0,0,0);}
.fs3_c00430{font-size:24.000000px;}
.fs1_c00430{font-size:36.000000px;}
.fs7_c00430{font-size:48.000000px;}
.fs5_c00430{font-size:84.000000px;}
.fs2_c00430{font-size:87.000000px;}
.fs4_c00430{font-size:96.000000px;}
.fs6_c00430{font-size:114.000000px;}
.fs0_c00430{font-size:144.000000px;}
.y0_c00430{bottom:0.000000px;}
.y24_c00430{bottom:3.105000px;}
.y23_c00430{bottom:7.228369px;}
.y22_c00430{bottom:97.170000px;}
.y21_c00430{bottom:136.920000px;}
.y20_c00430{bottom:171.720000px;}
.y1f_c00430{bottom:205.470000px;}
.y1e_c00430{bottom:239.520000px;}
.y1d_c00430{bottom:273.270000px;}
.y1c_c00430{bottom:307.470000px;}
.y1b_c00430{bottom:342.870000px;}
.y1a_c00430{bottom:373.620000px;}
.y19_c00430{bottom:408.420000px;}
.y18_c00430{bottom:442.770000px;}
.y17_c00430{bottom:476.220000px;}
.y16_c00430{bottom:509.520000px;}
.y15_c00430{bottom:543.270000px;}
.y14_c00430{bottom:575.820000px;}
.y13_c00430{bottom:609.870000px;}
.y12_c00430{bottom:643.320000px;}
.y11_c00430{bottom:676.920000px;}
.y10_c00430{bottom:710.670000px;}
.yf_c00430{bottom:744.120000px;}
.ye_c00430{bottom:777.570000px;}
.yd_c00430{bottom:811.020000px;}
.yc_c00430{bottom:843.720000px;}
.yb_c00430{bottom:876.720000px;}
.ya_c00430{bottom:910.170000px;}
.y9_c00430{bottom:943.320000px;}
.y8_c00430{bottom:975.420000px;}
.y7_c00430{bottom:1008.120000px;}
.y6_c00430{bottom:1042.170000px;}
.y5_c00430{bottom:1149.120000px;}
.y4_c00430{bottom:1165.620000px;}
.y3_c00430{bottom:1206.870000px;}
.y2_c00430{bottom:1215.270000px;}
.y1_c00430{bottom:1264.920000px;}
.h6_c00430{height:13.200073px;}
.h3_c00430{height:35.314453px;}
.h7_c00430{height:43.804688px;}
.h4_c00430{height:110.151855px;}
.h5_c00430{height:121.546875px;}
.h2_c00430{height:182.320312px;}
.h0_c00430{height:1383.450000px;}
.h1_c00430{height:1383.750000px;}
.w2_c00430{width:104.875500px;}
.w0_c00430{width:878.025000px;}
.w1_c00430{width:878.250000px;}
.x0_c00430{left:0.000000px;}
.xa_c00430{left:41.250000px;}
.x8_c00430{left:42.900000px;}
.x9_c00430{left:43.950000px;}
.xb_c00430{left:45.000000px;}
.xd_c00430{left:46.200000px;}
.x5_c00430{left:47.700000px;}
.xe_c00430{left:49.350000px;}
.x1_c00430{left:51.300000px;}
.x10_c00430{left:52.650000px;}
.x11_c00430{left:53.700000px;}
.xc_c00430{left:95.850000px;}
.x6_c00430{left:96.900000px;}
.xf_c00430{left:100.200000px;}
.x2_c00430{left:129.150000px;}
.x7_c00430{left:194.700000px;}
.x4_c00430{left:201.150000px;}
.x13_c00430{left:390.826721px;}
.x3_c00430{left:525.150000px;}
.x12_c00430{left:583.950000px;}
@media print{
.v1_c00430{vertical-align:-118.933333pt;}
.v0_c00430{vertical-align:0.000000pt;}
.ls4_c00430{letter-spacing:-2.666667pt;}
.ls2_c00430{letter-spacing:0.000000pt;}
.ls3_c00430{letter-spacing:5.333333pt;}
.ls1_c00430{letter-spacing:16.053333pt;}
.ls0_c00430{letter-spacing:625.301333pt;}
.ws3_c00430{word-spacing:-20.565333pt;}
.ws0_c00430{word-spacing:-19.541333pt;}
.ws1_c00430{word-spacing:-17.994667pt;}
.ws4_c00430{word-spacing:0.000000pt;}
.ws2_c00430{word-spacing:3.509333pt;}
._1_c00430{margin-left:-103.680000pt;}
._19_c00430{margin-left:-45.858667pt;}
._0_c00430{margin-left:-32.640000pt;}
._46_c00430{margin-left:-25.216000pt;}
._3c_c00430{margin-left:-17.280000pt;}
._39_c00430{margin-left:-11.520000pt;}
._1b_c00430{margin-left:-10.184000pt;}
._3a_c00430{margin-left:-8.874667pt;}
._45_c00430{margin-left:-7.845333pt;}
._1a_c00430{margin-left:-6.584000pt;}
._17_c00430{margin-left:-5.248000pt;}
._3b_c00430{margin-left:-4.096000pt;}
._13_c00430{margin-left:-3.200000pt;}
._14_c00430{margin-left:-2.304000pt;}
._15_c00430{margin-left:-1.408000pt;}
._12_c00430{width:1.152000pt;}
._d_c00430{width:2.048000pt;}
._e_c00430{width:3.328000pt;}
._10_c00430{width:4.480000pt;}
._8_c00430{width:6.016000pt;}
._3_c00430{width:7.552000pt;}
._5_c00430{width:8.960000pt;}
._7_c00430{width:9.856000pt;}
._6_c00430{width:10.880000pt;}
._4_c00430{width:11.776000pt;}
._b_c00430{width:12.800000pt;}
._a_c00430{width:13.824000pt;}
._41_c00430{width:14.762667pt;}
._26_c00430{width:15.872000pt;}
._44_c00430{width:16.981333pt;}
._2_c00430{width:17.920000pt;}
._2e_c00430{width:19.072000pt;}
._32_c00430{width:21.546667pt;}
._1f_c00430{width:23.168000pt;}
._40_c00430{width:24.192000pt;}
._2f_c00430{width:25.088000pt;}
._36_c00430{width:26.069333pt;}
._3f_c00430{width:26.965333pt;}
._2d_c00430{width:28.800000pt;}
._1d_c00430{width:30.336000pt;}
._31_c00430{width:32.042667pt;}
._30_c00430{width:34.218667pt;}
._2c_c00430{width:35.157333pt;}
._27_c00430{width:36.309333pt;}
._3e_c00430{width:37.674667pt;}
._16_c00430{width:39.424000pt;}
._21_c00430{width:40.874667pt;}
._33_c00430{width:42.538667pt;}
._f_c00430{width:44.928000pt;}
._1e_c00430{width:46.080000pt;}
._18_c00430{width:47.744000pt;}
._11_c00430{width:48.896000pt;}
._20_c00430{width:50.304000pt;}
._35_c00430{width:53.034667pt;}
._2a_c00430{width:55.808000pt;}
._28_c00430{width:58.368000pt;}
._34_c00430{width:59.264000pt;}
._29_c00430{width:61.568000pt;}
._2b_c00430{width:63.189333pt;}
._3d_c00430{width:68.690667pt;}
._9_c00430{width:76.288000pt;}
._c_c00430{width:79.488000pt;}
._23_c00430{width:82.730667pt;}
._22_c00430{width:99.413333pt;}
._42_c00430{width:157.610667pt;}
._43_c00430{width:203.584000pt;}
._37_c00430{width:241.920000pt;}
._24_c00430{width:281.728000pt;}
._38_c00430{width:394.637333pt;}
._1c_c00430{width:425.941333pt;}
._25_c00430{width:518.272000pt;}
.fs3_c00430{font-size:21.333333pt;}
.fs1_c00430{font-size:32.000000pt;}
.fs7_c00430{font-size:42.666667pt;}
.fs5_c00430{font-size:74.666667pt;}
.fs2_c00430{font-size:77.333333pt;}
.fs4_c00430{font-size:85.333333pt;}
.fs6_c00430{font-size:101.333333pt;}
.fs0_c00430{font-size:128.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y24_c00430{bottom:2.760000pt;}
.y23_c00430{bottom:6.425217pt;}
.y22_c00430{bottom:86.373333pt;}
.y21_c00430{bottom:121.706667pt;}
.y20_c00430{bottom:152.640000pt;}
.y1f_c00430{bottom:182.640000pt;}
.y1e_c00430{bottom:212.906667pt;}
.y1d_c00430{bottom:242.906667pt;}
.y1c_c00430{bottom:273.306667pt;}
.y1b_c00430{bottom:304.773333pt;}
.y1a_c00430{bottom:332.106667pt;}
.y19_c00430{bottom:363.040000pt;}
.y18_c00430{bottom:393.573333pt;}
.y17_c00430{bottom:423.306667pt;}
.y16_c00430{bottom:452.906667pt;}
.y15_c00430{bottom:482.906667pt;}
.y14_c00430{bottom:511.840000pt;}
.y13_c00430{bottom:542.106667pt;}
.y12_c00430{bottom:571.840000pt;}
.y11_c00430{bottom:601.706667pt;}
.y10_c00430{bottom:631.706667pt;}
.yf_c00430{bottom:661.440000pt;}
.ye_c00430{bottom:691.173333pt;}
.yd_c00430{bottom:720.906667pt;}
.yc_c00430{bottom:749.973333pt;}
.yb_c00430{bottom:779.306667pt;}
.ya_c00430{bottom:809.040000pt;}
.y9_c00430{bottom:838.506667pt;}
.y8_c00430{bottom:867.040000pt;}
.y7_c00430{bottom:896.106667pt;}
.y6_c00430{bottom:926.373333pt;}
.y5_c00430{bottom:1021.440000pt;}
.y4_c00430{bottom:1036.106667pt;}
.y3_c00430{bottom:1072.773333pt;}
.y2_c00430{bottom:1080.240000pt;}
.y1_c00430{bottom:1124.373333pt;}
.h6_c00430{height:11.733399pt;}
.h3_c00430{height:31.390625pt;}
.h7_c00430{height:38.937500pt;}
.h4_c00430{height:97.912760pt;}
.h5_c00430{height:108.041667pt;}
.h2_c00430{height:162.062500pt;}
.h0_c00430{height:1229.733333pt;}
.h1_c00430{height:1230.000000pt;}
.w2_c00430{width:93.222667pt;}
.w0_c00430{width:780.466667pt;}
.w1_c00430{width:780.666667pt;}
.x0_c00430{left:0.000000pt;}
.xa_c00430{left:36.666667pt;}
.x8_c00430{left:38.133333pt;}
.x9_c00430{left:39.066667pt;}
.xb_c00430{left:40.000000pt;}
.xd_c00430{left:41.066667pt;}
.x5_c00430{left:42.400000pt;}
.xe_c00430{left:43.866667pt;}
.x1_c00430{left:45.600000pt;}
.x10_c00430{left:46.800000pt;}
.x11_c00430{left:47.733333pt;}
.xc_c00430{left:85.200000pt;}
.x6_c00430{left:86.133333pt;}
.xf_c00430{left:89.066667pt;}
.x2_c00430{left:114.800000pt;}
.x7_c00430{left:173.066667pt;}
.x4_c00430{left:178.800000pt;}
.x13_c00430{left:347.401530pt;}
.x3_c00430{left:466.800000pt;}
.x12_c00430{left:519.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a9d92375b1530d86756ee69e.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_4385e8944230689f088cfc5c.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:-63.504000px;}
.ws1_c00431{word-spacing:-51.000000px;}
.ws2_c00431{word-spacing:-23.136000px;}
.ws3_c00431{word-spacing:0.000000px;}
._2d_c00431{margin-left:-27.648000px;}
._24_c00431{margin-left:-25.704000px;}
._0_c00431{margin-left:-23.136000px;}
._1e_c00431{margin-left:-21.060000px;}
._1c_c00431{margin-left:-16.896000px;}
._1b_c00431{margin-left:-15.324000px;}
._12_c00431{margin-left:-12.660000px;}
._28_c00431{margin-left:-9.168000px;}
._1f_c00431{margin-left:-6.960000px;}
._1_c00431{margin-left:-4.512000px;}
._d_c00431{margin-left:-2.376000px;}
._13_c00431{margin-left:-1.152000px;}
._4_c00431{width:1.344000px;}
._3_c00431{width:2.496000px;}
._6_c00431{width:3.936000px;}
._9_c00431{width:5.508000px;}
._b_c00431{width:6.648000px;}
._18_c00431{width:8.256000px;}
._17_c00431{width:9.672000px;}
._8_c00431{width:11.088000px;}
._29_c00431{width:12.156000px;}
._19_c00431{width:13.668000px;}
._22_c00431{width:15.360000px;}
._1a_c00431{width:17.088000px;}
._31_c00431{width:18.792000px;}
._e_c00431{width:19.872000px;}
._16_c00431{width:21.792000px;}
._32_c00431{width:24.192000px;}
._5_c00431{width:25.536000px;}
._f_c00431{width:27.552000px;}
._34_c00431{width:28.800000px;}
._a_c00431{width:29.856000px;}
._c_c00431{width:31.740000px;}
._20_c00431{width:33.012000px;}
._7_c00431{width:34.656000px;}
._10_c00431{width:36.768000px;}
._2f_c00431{width:37.848000px;}
._1d_c00431{width:39.360000px;}
._25_c00431{width:40.800000px;}
._14_c00431{width:42.696000px;}
._23_c00431{width:43.944000px;}
._2_c00431{width:45.024000px;}
._2c_c00431{width:46.104000px;}
._21_c00431{width:47.208000px;}
._11_c00431{width:49.920000px;}
._26_c00431{width:51.360000px;}
._27_c00431{width:53.772000px;}
._2e_c00431{width:55.524000px;}
._2a_c00431{width:57.468000px;}
._30_c00431{width:60.936000px;}
._33_c00431{width:62.508000px;}
._2b_c00431{width:63.948000px;}
._15_c00431{width:270.336000px;}
.fc2_c00431{color:transparent;}
.fc1_c00431{color:rgb(128,128,128);}
.fc0_c00431{color:rgb(0,0,0);}
.fs3_c00431{font-size:48.000000px;}
.fs1_c00431{font-size:84.000000px;}
.fs0_c00431{font-size:96.000000px;}
.fs2_c00431{font-size:102.000000px;}
.y0_c00431{bottom:0.000000px;}
.y27_c00431{bottom:3.105000px;}
.y26_c00431{bottom:7.228357px;}
.y25_c00431{bottom:100.230000px;}
.y24_c00431{bottom:132.630000px;}
.y23_c00431{bottom:168.030000px;}
.y22_c00431{bottom:202.230000px;}
.y21_c00431{bottom:235.980000px;}
.y20_c00431{bottom:270.330000px;}
.y1f_c00431{bottom:303.780000px;}
.y1e_c00431{bottom:338.280000px;}
.y1d_c00431{bottom:372.030000px;}
.y1c_c00431{bottom:405.780000px;}
.y1b_c00431{bottom:439.530000px;}
.y1a_c00431{bottom:473.580000px;}
.y19_c00431{bottom:507.330000px;}
.y18_c00431{bottom:540.630000px;}
.y1_c00431{bottom:567.780000px;}
.y17_c00431{bottom:574.530000px;}
.y16_c00431{bottom:607.830000px;}
.y15_c00431{bottom:640.980000px;}
.y14_c00431{bottom:675.030000px;}
.y13_c00431{bottom:708.480000px;}
.y12_c00431{bottom:742.230000px;}
.y11_c00431{bottom:775.230000px;}
.y10_c00431{bottom:809.730000px;}
.yf_c00431{bottom:842.730000px;}
.ye_c00431{bottom:876.480000px;}
.yd_c00431{bottom:909.930000px;}
.yc_c00431{bottom:943.080000px;}
.yb_c00431{bottom:976.830000px;}
.ya_c00431{bottom:1009.530000px;}
.y9_c00431{bottom:1041.930000px;}
.y8_c00431{bottom:1075.530000px;}
.y7_c00431{bottom:1108.680000px;}
.y6_c00431{bottom:1141.830000px;}
.y5_c00431{bottom:1175.280000px;}
.y4_c00431{bottom:1207.230000px;}
.y3_c00431{bottom:1242.330000px;}
.y2_c00431{bottom:1273.830000px;}
.h3_c00431{height:13.200074px;}
.h4_c00431{height:43.804688px;}
.h2_c00431{height:121.546875px;}
.h0_c00431{height:1382.700000px;}
.h1_c00431{height:1383.000000px;}
.w2_c00431{width:104.875500px;}
.w0_c00431{width:863.175000px;}
.w1_c00431{width:863.250000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:160.200000px;}
.x9_c00431{left:244.800000px;}
.x7_c00431{left:246.600000px;}
.x2_c00431{left:248.700000px;}
.x6_c00431{left:249.750000px;}
.x3_c00431{left:250.800000px;}
.x5_c00431{left:251.850000px;}
.x4_c00431{left:252.900000px;}
.xa_c00431{left:254.550000px;}
.x8_c00431{left:296.250000px;}
.xc_c00431{left:383.401749px;}
.xb_c00431{left:778.500000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:-56.448000pt;}
.ws1_c00431{word-spacing:-45.333333pt;}
.ws2_c00431{word-spacing:-20.565333pt;}
.ws3_c00431{word-spacing:0.000000pt;}
._2d_c00431{margin-left:-24.576000pt;}
._24_c00431{margin-left:-22.848000pt;}
._0_c00431{margin-left:-20.565333pt;}
._1e_c00431{margin-left:-18.720000pt;}
._1c_c00431{margin-left:-15.018667pt;}
._1b_c00431{margin-left:-13.621333pt;}
._12_c00431{margin-left:-11.253333pt;}
._28_c00431{margin-left:-8.149333pt;}
._1f_c00431{margin-left:-6.186667pt;}
._1_c00431{margin-left:-4.010667pt;}
._d_c00431{margin-left:-2.112000pt;}
._13_c00431{margin-left:-1.024000pt;}
._4_c00431{width:1.194667pt;}
._3_c00431{width:2.218667pt;}
._6_c00431{width:3.498667pt;}
._9_c00431{width:4.896000pt;}
._b_c00431{width:5.909333pt;}
._18_c00431{width:7.338667pt;}
._17_c00431{width:8.597333pt;}
._8_c00431{width:9.856000pt;}
._29_c00431{width:10.805333pt;}
._19_c00431{width:12.149333pt;}
._22_c00431{width:13.653333pt;}
._1a_c00431{width:15.189333pt;}
._31_c00431{width:16.704000pt;}
._e_c00431{width:17.664000pt;}
._16_c00431{width:19.370667pt;}
._32_c00431{width:21.504000pt;}
._5_c00431{width:22.698667pt;}
._f_c00431{width:24.490667pt;}
._34_c00431{width:25.600000pt;}
._a_c00431{width:26.538667pt;}
._c_c00431{width:28.213333pt;}
._20_c00431{width:29.344000pt;}
._7_c00431{width:30.805333pt;}
._10_c00431{width:32.682667pt;}
._2f_c00431{width:33.642667pt;}
._1d_c00431{width:34.986667pt;}
._25_c00431{width:36.266667pt;}
._14_c00431{width:37.952000pt;}
._23_c00431{width:39.061333pt;}
._2_c00431{width:40.021333pt;}
._2c_c00431{width:40.981333pt;}
._21_c00431{width:41.962667pt;}
._11_c00431{width:44.373333pt;}
._26_c00431{width:45.653333pt;}
._27_c00431{width:47.797333pt;}
._2e_c00431{width:49.354667pt;}
._2a_c00431{width:51.082667pt;}
._30_c00431{width:54.165333pt;}
._33_c00431{width:55.562667pt;}
._2b_c00431{width:56.842667pt;}
._15_c00431{width:240.298667pt;}
.fs3_c00431{font-size:42.666667pt;}
.fs1_c00431{font-size:74.666667pt;}
.fs0_c00431{font-size:85.333333pt;}
.fs2_c00431{font-size:90.666667pt;}
.y0_c00431{bottom:0.000000pt;}
.y27_c00431{bottom:2.760000pt;}
.y26_c00431{bottom:6.425206pt;}
.y25_c00431{bottom:89.093333pt;}
.y24_c00431{bottom:117.893333pt;}
.y23_c00431{bottom:149.360000pt;}
.y22_c00431{bottom:179.760000pt;}
.y21_c00431{bottom:209.760000pt;}
.y20_c00431{bottom:240.293333pt;}
.y1f_c00431{bottom:270.026667pt;}
.y1e_c00431{bottom:300.693333pt;}
.y1d_c00431{bottom:330.693333pt;}
.y1c_c00431{bottom:360.693333pt;}
.y1b_c00431{bottom:390.693333pt;}
.y1a_c00431{bottom:420.960000pt;}
.y19_c00431{bottom:450.960000pt;}
.y18_c00431{bottom:480.560000pt;}
.y1_c00431{bottom:504.693333pt;}
.y17_c00431{bottom:510.693333pt;}
.y16_c00431{bottom:540.293333pt;}
.y15_c00431{bottom:569.760000pt;}
.y14_c00431{bottom:600.026667pt;}
.y13_c00431{bottom:629.760000pt;}
.y12_c00431{bottom:659.760000pt;}
.y11_c00431{bottom:689.093333pt;}
.y10_c00431{bottom:719.760000pt;}
.yf_c00431{bottom:749.093333pt;}
.ye_c00431{bottom:779.093333pt;}
.yd_c00431{bottom:808.826667pt;}
.yc_c00431{bottom:838.293333pt;}
.yb_c00431{bottom:868.293333pt;}
.ya_c00431{bottom:897.360000pt;}
.y9_c00431{bottom:926.160000pt;}
.y8_c00431{bottom:956.026667pt;}
.y7_c00431{bottom:985.493333pt;}
.y6_c00431{bottom:1014.960000pt;}
.y5_c00431{bottom:1044.693333pt;}
.y4_c00431{bottom:1073.093333pt;}
.y3_c00431{bottom:1104.293333pt;}
.y2_c00431{bottom:1132.293333pt;}
.h3_c00431{height:11.733399pt;}
.h4_c00431{height:38.937500pt;}
.h2_c00431{height:108.041667pt;}
.h0_c00431{height:1229.066667pt;}
.h1_c00431{height:1229.333333pt;}
.w2_c00431{width:93.222667pt;}
.w0_c00431{width:767.266667pt;}
.w1_c00431{width:767.333333pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:142.400000pt;}
.x9_c00431{left:217.600000pt;}
.x7_c00431{left:219.200000pt;}
.x2_c00431{left:221.066667pt;}
.x6_c00431{left:222.000000pt;}
.x3_c00431{left:222.933333pt;}
.x5_c00431{left:223.866667pt;}
.x4_c00431{left:224.800000pt;}
.xa_c00431{left:226.266667pt;}
.x8_c00431{left:263.333333pt;}
.xc_c00431{left:340.801554pt;}
.xb_c00431{left:692.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_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_a9366c5cb195357c13a84173.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_393e66a4b80c5f4ad7d63646.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_f1907de0c0ee5182c93ce5af.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_498dc8a44d7ea53ee46b1e98.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_d813d8342e5dd95898fbb448.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00432;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls2_c00432{letter-spacing:0.000000px;}
.ls1_c00432{letter-spacing:4.080000px;}
.ls0_c00432{letter-spacing:7.200000px;}
.ls3_c00432{letter-spacing:9.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00432{word-spacing:-69.000000px;}
.ws3_c00432{word-spacing:-53.856000px;}
.ws4_c00432{word-spacing:-43.084800px;}
.ws0_c00432{word-spacing:-29.244000px;}
.ws5_c00432{word-spacing:0.000000px;}
.ws1_c00432{word-spacing:0.084000px;}
._35_c00432{margin-left:-78.624000px;}
._3a_c00432{margin-left:-66.912000px;}
._31_c00432{margin-left:-26.304000px;}
._39_c00432{margin-left:-25.152000px;}
._25_c00432{margin-left:-23.136000px;}
._3c_c00432{margin-left:-15.360000px;}
._2a_c00432{margin-left:-13.356000px;}
._2c_c00432{margin-left:-11.520000px;}
._43_c00432{margin-left:-9.480000px;}
._29_c00432{margin-left:-7.680000px;}
._1c_c00432{margin-left:-5.424000px;}
._4_c00432{margin-left:-4.032000px;}
._1d_c00432{margin-left:-2.592000px;}
._1b_c00432{margin-left:-1.152000px;}
._9_c00432{width:1.128000px;}
._0_c00432{width:2.592000px;}
._1_c00432{width:4.128000px;}
._2_c00432{width:5.568000px;}
._7_c00432{width:6.816000px;}
._6_c00432{width:8.352000px;}
._17_c00432{width:9.696000px;}
._27_c00432{width:11.328000px;}
._19_c00432{width:12.480000px;}
._21_c00432{width:13.728000px;}
._2e_c00432{width:14.736000px;}
._18_c00432{width:16.104000px;}
._1a_c00432{width:17.184000px;}
._f_c00432{width:19.800000px;}
._34_c00432{width:22.008000px;}
._36_c00432{width:24.168000px;}
._2b_c00432{width:25.380000px;}
._2d_c00432{width:26.424000px;}
._b_c00432{width:27.648000px;}
._14_c00432{width:29.760000px;}
._e_c00432{width:31.392000px;}
._8_c00432{width:32.640000px;}
._5_c00432{width:34.080000px;}
._2f_c00432{width:35.088000px;}
._a_c00432{width:36.600000px;}
._c_c00432{width:37.896000px;}
._3_c00432{width:38.904000px;}
._d_c00432{width:40.320000px;}
._11_c00432{width:41.952000px;}
._16_c00432{width:43.224000px;}
._13_c00432{width:45.384000px;}
._1e_c00432{width:46.944000px;}
._20_c00432{width:48.840000px;}
._12_c00432{width:50.592000px;}
._1f_c00432{width:51.816000px;}
._10_c00432{width:53.688000px;}
._23_c00432{width:55.608000px;}
._22_c00432{width:57.504000px;}
._3f_c00432{width:58.608000px;}
._42_c00432{width:59.904000px;}
._15_c00432{width:62.208000px;}
._40_c00432{width:70.608000px;}
._46_c00432{width:73.106400px;}
._33_c00432{width:75.120000px;}
._26_c00432{width:77.688000px;}
._3b_c00432{width:79.488000px;}
._45_c00432{width:81.360000px;}
._28_c00432{width:95.352000px;}
._3d_c00432{width:109.824000px;}
._38_c00432{width:147.264000px;}
._3e_c00432{width:159.864000px;}
._44_c00432{width:177.048000px;}
._41_c00432{width:281.880000px;}
._37_c00432{width:291.012000px;}
._30_c00432{width:316.824000px;}
._32_c00432{width:571.200000px;}
._47_c00432{width:706.368000px;}
._24_c00432{width:1359.648000px;}
.fc2_c00432{color:transparent;}
.fc1_c00432{color:rgb(128,128,128);}
.fc0_c00432{color:rgb(0,0,0);}
.fs6_c00432{font-size:48.000000px;}
.fs4_c00432{font-size:72.000000px;}
.fs5_c00432{font-size:76.800000px;}
.fs2_c00432{font-size:84.000000px;}
.fs0_c00432{font-size:96.000000px;}
.fs1_c00432{font-size:102.000000px;}
.fs3_c00432{font-size:138.000000px;}
.y0_c00432{bottom:0.000000px;}
.y26_c00432{bottom:3.105000px;}
.y25_c00432{bottom:7.228369px;}
.y24_c00432{bottom:88.020000px;}
.y23_c00432{bottom:121.770000px;}
.y22_c00432{bottom:156.270000px;}
.y21_c00432{bottom:188.370000px;}
.y20_c00432{bottom:224.370000px;}
.y1f_c00432{bottom:257.520000px;}
.y1e_c00432{bottom:292.320000px;}
.y1d_c00432{bottom:326.070000px;}
.y1c_c00432{bottom:359.070000px;}
.y1b_c00432{bottom:392.820000px;}
.y1a_c00432{bottom:425.520000px;}
.y19_c00432{bottom:458.670000px;}
.y18_c00432{bottom:492.720000px;}
.y17_c00432{bottom:525.120000px;}
.y16_c00432{bottom:561.570000px;}
.y15_c00432{bottom:595.920000px;}
.y14_c00432{bottom:629.820000px;}
.y13_c00432{bottom:663.120000px;}
.y12_c00432{bottom:695.970000px;}
.y11_c00432{bottom:728.670000px;}
.y10_c00432{bottom:762.420000px;}
.yf_c00432{bottom:795.870000px;}
.ye_c00432{bottom:828.120000px;}
.yd_c00432{bottom:861.270000px;}
.yc_c00432{bottom:895.620000px;}
.yb_c00432{bottom:929.070000px;}
.ya_c00432{bottom:961.920000px;}
.y9_c00432{bottom:995.520000px;}
.y8_c00432{bottom:1028.670000px;}
.y7_c00432{bottom:1061.670000px;}
.y6_c00432{bottom:1095.120000px;}
.y5_c00432{bottom:1127.820000px;}
.y4_c00432{bottom:1160.670000px;}
.y3_c00432{bottom:1193.970000px;}
.y2_c00432{bottom:1227.420000px;}
.y1_c00432{bottom:1260.870000px;}
.h5_c00432{height:13.200073px;}
.h6_c00432{height:43.804688px;}
.h3_c00432{height:106.353516px;}
.h2_c00432{height:121.546875px;}
.h4_c00432{height:144.624000px;}
.h0_c00432{height:1356.450000px;}
.h1_c00432{height:1356.750000px;}
.w2_c00432{width:104.875500px;}
.w0_c00432{width:860.775000px;}
.w1_c00432{width:861.000000px;}
.x0_c00432{left:0.000000px;}
.x9_c00432{left:26.700000px;}
.x8_c00432{left:27.750000px;}
.x7_c00432{left:29.400000px;}
.x6_c00432{left:30.450000px;}
.x5_c00432{left:31.500000px;}
.x4_c00432{left:32.700000px;}
.x3_c00432{left:34.800000px;}
.x2_c00432{left:37.050000px;}
.x1_c00432{left:38.700000px;}
.xa_c00432{left:331.350000px;}
.xb_c00432{left:382.201721px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls2_c00432{letter-spacing:0.000000pt;}
.ls1_c00432{letter-spacing:3.626667pt;}
.ls0_c00432{letter-spacing:6.400000pt;}
.ls3_c00432{letter-spacing:8.000000pt;}
.ws2_c00432{word-spacing:-61.333333pt;}
.ws3_c00432{word-spacing:-47.872000pt;}
.ws4_c00432{word-spacing:-38.297600pt;}
.ws0_c00432{word-spacing:-25.994667pt;}
.ws5_c00432{word-spacing:0.000000pt;}
.ws1_c00432{word-spacing:0.074667pt;}
._35_c00432{margin-left:-69.888000pt;}
._3a_c00432{margin-left:-59.477333pt;}
._31_c00432{margin-left:-23.381333pt;}
._39_c00432{margin-left:-22.357333pt;}
._25_c00432{margin-left:-20.565333pt;}
._3c_c00432{margin-left:-13.653333pt;}
._2a_c00432{margin-left:-11.872000pt;}
._2c_c00432{margin-left:-10.240000pt;}
._43_c00432{margin-left:-8.426667pt;}
._29_c00432{margin-left:-6.826667pt;}
._1c_c00432{margin-left:-4.821333pt;}
._4_c00432{margin-left:-3.584000pt;}
._1d_c00432{margin-left:-2.304000pt;}
._1b_c00432{margin-left:-1.024000pt;}
._9_c00432{width:1.002667pt;}
._0_c00432{width:2.304000pt;}
._1_c00432{width:3.669333pt;}
._2_c00432{width:4.949333pt;}
._7_c00432{width:6.058667pt;}
._6_c00432{width:7.424000pt;}
._17_c00432{width:8.618667pt;}
._27_c00432{width:10.069333pt;}
._19_c00432{width:11.093333pt;}
._21_c00432{width:12.202667pt;}
._2e_c00432{width:13.098667pt;}
._18_c00432{width:14.314667pt;}
._1a_c00432{width:15.274667pt;}
._f_c00432{width:17.600000pt;}
._34_c00432{width:19.562667pt;}
._36_c00432{width:21.482667pt;}
._2b_c00432{width:22.560000pt;}
._2d_c00432{width:23.488000pt;}
._b_c00432{width:24.576000pt;}
._14_c00432{width:26.453333pt;}
._e_c00432{width:27.904000pt;}
._8_c00432{width:29.013333pt;}
._5_c00432{width:30.293333pt;}
._2f_c00432{width:31.189333pt;}
._a_c00432{width:32.533333pt;}
._c_c00432{width:33.685333pt;}
._3_c00432{width:34.581333pt;}
._d_c00432{width:35.840000pt;}
._11_c00432{width:37.290667pt;}
._16_c00432{width:38.421333pt;}
._13_c00432{width:40.341333pt;}
._1e_c00432{width:41.728000pt;}
._20_c00432{width:43.413333pt;}
._12_c00432{width:44.970667pt;}
._1f_c00432{width:46.058667pt;}
._10_c00432{width:47.722667pt;}
._23_c00432{width:49.429333pt;}
._22_c00432{width:51.114667pt;}
._3f_c00432{width:52.096000pt;}
._42_c00432{width:53.248000pt;}
._15_c00432{width:55.296000pt;}
._40_c00432{width:62.762667pt;}
._46_c00432{width:64.983467pt;}
._33_c00432{width:66.773333pt;}
._26_c00432{width:69.056000pt;}
._3b_c00432{width:70.656000pt;}
._45_c00432{width:72.320000pt;}
._28_c00432{width:84.757333pt;}
._3d_c00432{width:97.621333pt;}
._38_c00432{width:130.901333pt;}
._3e_c00432{width:142.101333pt;}
._44_c00432{width:157.376000pt;}
._41_c00432{width:250.560000pt;}
._37_c00432{width:258.677333pt;}
._30_c00432{width:281.621333pt;}
._32_c00432{width:507.733333pt;}
._47_c00432{width:627.882667pt;}
._24_c00432{width:1208.576000pt;}
.fs6_c00432{font-size:42.666667pt;}
.fs4_c00432{font-size:64.000000pt;}
.fs5_c00432{font-size:68.266667pt;}
.fs2_c00432{font-size:74.666667pt;}
.fs0_c00432{font-size:85.333333pt;}
.fs1_c00432{font-size:90.666667pt;}
.fs3_c00432{font-size:122.666667pt;}
.y0_c00432{bottom:0.000000pt;}
.y26_c00432{bottom:2.760000pt;}
.y25_c00432{bottom:6.425217pt;}
.y24_c00432{bottom:78.240000pt;}
.y23_c00432{bottom:108.240000pt;}
.y22_c00432{bottom:138.906667pt;}
.y21_c00432{bottom:167.440000pt;}
.y20_c00432{bottom:199.440000pt;}
.y1f_c00432{bottom:228.906667pt;}
.y1e_c00432{bottom:259.840000pt;}
.y1d_c00432{bottom:289.840000pt;}
.y1c_c00432{bottom:319.173333pt;}
.y1b_c00432{bottom:349.173333pt;}
.y1a_c00432{bottom:378.240000pt;}
.y19_c00432{bottom:407.706667pt;}
.y18_c00432{bottom:437.973333pt;}
.y17_c00432{bottom:466.773333pt;}
.y16_c00432{bottom:499.173333pt;}
.y15_c00432{bottom:529.706667pt;}
.y14_c00432{bottom:559.840000pt;}
.y13_c00432{bottom:589.440000pt;}
.y12_c00432{bottom:618.640000pt;}
.y11_c00432{bottom:647.706667pt;}
.y10_c00432{bottom:677.706667pt;}
.yf_c00432{bottom:707.440000pt;}
.ye_c00432{bottom:736.106667pt;}
.yd_c00432{bottom:765.573333pt;}
.yc_c00432{bottom:796.106667pt;}
.yb_c00432{bottom:825.840000pt;}
.ya_c00432{bottom:855.040000pt;}
.y9_c00432{bottom:884.906667pt;}
.y8_c00432{bottom:914.373333pt;}
.y7_c00432{bottom:943.706667pt;}
.y6_c00432{bottom:973.440000pt;}
.y5_c00432{bottom:1002.506667pt;}
.y4_c00432{bottom:1031.706667pt;}
.y3_c00432{bottom:1061.306667pt;}
.y2_c00432{bottom:1091.040000pt;}
.y1_c00432{bottom:1120.773333pt;}
.h5_c00432{height:11.733399pt;}
.h6_c00432{height:38.937500pt;}
.h3_c00432{height:94.536458pt;}
.h2_c00432{height:108.041667pt;}
.h4_c00432{height:128.554667pt;}
.h0_c00432{height:1205.733333pt;}
.h1_c00432{height:1206.000000pt;}
.w2_c00432{width:93.222667pt;}
.w0_c00432{width:765.133333pt;}
.w1_c00432{width:765.333333pt;}
.x0_c00432{left:0.000000pt;}
.x9_c00432{left:23.733333pt;}
.x8_c00432{left:24.666667pt;}
.x7_c00432{left:26.133333pt;}
.x6_c00432{left:27.066667pt;}
.x5_c00432{left:28.000000pt;}
.x4_c00432{left:29.066667pt;}
.x3_c00432{left:30.933333pt;}
.x2_c00432{left:32.933333pt;}
.x1_c00432{left:34.400000pt;}
.xa_c00432{left:294.533333pt;}
.xb_c00432{left:339.734863pt;}
}





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

.ir_c00433:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00433;src:url('chunks/assets/font_b72b10357172692c2373b27b.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_06461b95cab926cc5f3d0bc6.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00433{vertical-align:-112.200000px;}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.ls1_c00433{letter-spacing:6.000000px;}
.ls2_c00433{letter-spacing:9.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:-51.000000px;}
.ws1_c00433{word-spacing:-30.582000px;}
.ws2_c00433{word-spacing:-23.136000px;}
.ws3_c00433{word-spacing:0.000000px;}
._34_c00433{margin-left:-87.552000px;}
._42_c00433{margin-left:-45.504000px;}
._3c_c00433{margin-left:-40.800000px;}
._39_c00433{margin-left:-31.200000px;}
._3e_c00433{margin-left:-25.920000px;}
._3d_c00433{margin-left:-22.368000px;}
._25_c00433{margin-left:-21.120000px;}
._44_c00433{margin-left:-18.576000px;}
._1d_c00433{margin-left:-15.312000px;}
._38_c00433{margin-left:-12.864000px;}
._3a_c00433{margin-left:-11.136000px;}
._1a_c00433{margin-left:-9.600000px;}
._1_c00433{margin-left:-7.776000px;}
._33_c00433{margin-left:-6.720000px;}
._1e_c00433{margin-left:-5.472000px;}
._2_c00433{margin-left:-4.320000px;}
._0_c00433{margin-left:-2.784000px;}
._a_c00433{margin-left:-1.056000px;}
._d_c00433{width:1.056000px;}
._6_c00433{width:2.592000px;}
._5_c00433{width:4.416000px;}
._14_c00433{width:5.664000px;}
._8_c00433{width:6.720000px;}
._4_c00433{width:8.160000px;}
._23_c00433{width:9.216000px;}
._10_c00433{width:10.464000px;}
._21_c00433{width:11.808000px;}
._7_c00433{width:13.440000px;}
._41_c00433{width:14.688000px;}
._16_c00433{width:15.744000px;}
._12_c00433{width:17.760000px;}
._17_c00433{width:19.680000px;}
._18_c00433{width:21.024000px;}
._3f_c00433{width:22.068000px;}
._3b_c00433{width:24.192000px;}
._20_c00433{width:26.112000px;}
._1b_c00433{width:27.840000px;}
._11_c00433{width:29.280000px;}
._31_c00433{width:30.528000px;}
._13_c00433{width:32.640000px;}
._1c_c00433{width:33.792000px;}
._e_c00433{width:34.944000px;}
._c_c00433{width:36.384000px;}
._b_c00433{width:38.400000px;}
._19_c00433{width:39.552000px;}
._15_c00433{width:41.088000px;}
._1f_c00433{width:42.816000px;}
._3_c00433{width:45.024000px;}
._32_c00433{width:46.080000px;}
._f_c00433{width:47.808000px;}
._2f_c00433{width:48.960000px;}
._24_c00433{width:50.016000px;}
._9_c00433{width:53.472000px;}
._26_c00433{width:56.304000px;}
._28_c00433{width:57.312000px;}
._27_c00433{width:58.848000px;}
._29_c00433{width:62.832000px;}
._36_c00433{width:65.760000px;}
._30_c00433{width:68.064000px;}
._2c_c00433{width:69.120000px;}
._37_c00433{width:98.784000px;}
._43_c00433{width:128.928000px;}
._40_c00433{width:169.044000px;}
._2e_c00433{width:175.140000px;}
._22_c00433{width:183.552000px;}
._2b_c00433{width:271.776000px;}
._2d_c00433{width:283.344000px;}
._45_c00433{width:390.864000px;}
._35_c00433{width:415.488000px;}
._2a_c00433{width:1521.600000px;}
.fc2_c00433{color:transparent;}
.fc1_c00433{color:rgb(128,128,128);}
.fc0_c00433{color:rgb(0,0,0);}
.fs3_c00433{font-size:48.000000px;}
.fs2_c00433{font-size:84.000000px;}
.fs0_c00433{font-size:96.000000px;}
.fs1_c00433{font-size:102.000000px;}
.y0_c00433{bottom:0.000000px;}
.y25_c00433{bottom:3.105000px;}
.y24_c00433{bottom:7.228369px;}
.y23_c00433{bottom:116.070000px;}
.y22_c00433{bottom:152.220000px;}
.y21_c00433{bottom:187.620000px;}
.y20_c00433{bottom:222.420000px;}
.y1f_c00433{bottom:255.870000px;}
.y1e_c00433{bottom:290.220000px;}
.y1d_c00433{bottom:323.970000px;}
.y1c_c00433{bottom:358.770000px;}
.y1b_c00433{bottom:391.770000px;}
.y1a_c00433{bottom:423.870000px;}
.y19_c00433{bottom:459.570000px;}
.y18_c00433{bottom:493.020000px;}
.y17_c00433{bottom:526.770000px;}
.y16_c00433{bottom:559.620000px;}
.y15_c00433{bottom:595.320000px;}
.y14_c00433{bottom:627.720000px;}
.y13_c00433{bottom:660.870000px;}
.y12_c00433{bottom:694.620000px;}
.y11_c00433{bottom:728.220000px;}
.y10_c00433{bottom:761.670000px;}
.yf_c00433{bottom:795.420000px;}
.ye_c00433{bottom:829.470000px;}
.yd_c00433{bottom:862.920000px;}
.yc_c00433{bottom:896.970000px;}
.yb_c00433{bottom:930.420000px;}
.ya_c00433{bottom:963.270000px;}
.y9_c00433{bottom:996.570000px;}
.y8_c00433{bottom:1028.670000px;}
.y7_c00433{bottom:1063.470000px;}
.y6_c00433{bottom:1097.220000px;}
.y5_c00433{bottom:1130.520000px;}
.y4_c00433{bottom:1163.970000px;}
.y3_c00433{bottom:1197.420000px;}
.y2_c00433{bottom:1230.570000px;}
.y1_c00433{bottom:1264.320000px;}
.h4_c00433{height:13.200073px;}
.h5_c00433{height:43.804688px;}
.h2_c00433{height:121.546875px;}
.h3_c00433{height:129.143555px;}
.h1_c00433{height:1359.000000px;}
.h0_c00433{height:1359.150000px;}
.w2_c00433{width:104.875500px;}
.w1_c00433{width:848.250000px;}
.w0_c00433{width:848.325000px;}
.x0_c00433{left:0.000000px;}
.x6_c00433{left:177.300000px;}
.xe_c00433{left:200.100000px;}
.x7_c00433{left:230.250000px;}
.x1_c00433{left:240.000000px;}
.xd_c00433{left:244.350000px;}
.xa_c00433{left:245.400000px;}
.xb_c00433{left:246.600000px;}
.x9_c00433{left:247.650000px;}
.x2_c00433{left:248.700000px;}
.x3_c00433{left:250.350000px;}
.x5_c00433{left:251.400000px;}
.x8_c00433{left:252.450000px;}
.xc_c00433{left:282.600000px;}
.x4_c00433{left:302.100000px;}
.xf_c00433{left:375.976730px;}
@media print{
.v1_c00433{vertical-align:-99.733333pt;}
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ls1_c00433{letter-spacing:5.333333pt;}
.ls2_c00433{letter-spacing:8.000000pt;}
.ws0_c00433{word-spacing:-45.333333pt;}
.ws1_c00433{word-spacing:-27.184000pt;}
.ws2_c00433{word-spacing:-20.565333pt;}
.ws3_c00433{word-spacing:0.000000pt;}
._34_c00433{margin-left:-77.824000pt;}
._42_c00433{margin-left:-40.448000pt;}
._3c_c00433{margin-left:-36.266667pt;}
._39_c00433{margin-left:-27.733333pt;}
._3e_c00433{margin-left:-23.040000pt;}
._3d_c00433{margin-left:-19.882667pt;}
._25_c00433{margin-left:-18.773333pt;}
._44_c00433{margin-left:-16.512000pt;}
._1d_c00433{margin-left:-13.610667pt;}
._38_c00433{margin-left:-11.434667pt;}
._3a_c00433{margin-left:-9.898667pt;}
._1a_c00433{margin-left:-8.533333pt;}
._1_c00433{margin-left:-6.912000pt;}
._33_c00433{margin-left:-5.973333pt;}
._1e_c00433{margin-left:-4.864000pt;}
._2_c00433{margin-left:-3.840000pt;}
._0_c00433{margin-left:-2.474667pt;}
._a_c00433{margin-left:-0.938667pt;}
._d_c00433{width:0.938667pt;}
._6_c00433{width:2.304000pt;}
._5_c00433{width:3.925333pt;}
._14_c00433{width:5.034667pt;}
._8_c00433{width:5.973333pt;}
._4_c00433{width:7.253333pt;}
._23_c00433{width:8.192000pt;}
._10_c00433{width:9.301333pt;}
._21_c00433{width:10.496000pt;}
._7_c00433{width:11.946667pt;}
._41_c00433{width:13.056000pt;}
._16_c00433{width:13.994667pt;}
._12_c00433{width:15.786667pt;}
._17_c00433{width:17.493333pt;}
._18_c00433{width:18.688000pt;}
._3f_c00433{width:19.616000pt;}
._3b_c00433{width:21.504000pt;}
._20_c00433{width:23.210667pt;}
._1b_c00433{width:24.746667pt;}
._11_c00433{width:26.026667pt;}
._31_c00433{width:27.136000pt;}
._13_c00433{width:29.013333pt;}
._1c_c00433{width:30.037333pt;}
._e_c00433{width:31.061333pt;}
._c_c00433{width:32.341333pt;}
._b_c00433{width:34.133333pt;}
._19_c00433{width:35.157333pt;}
._15_c00433{width:36.522667pt;}
._1f_c00433{width:38.058667pt;}
._3_c00433{width:40.021333pt;}
._32_c00433{width:40.960000pt;}
._f_c00433{width:42.496000pt;}
._2f_c00433{width:43.520000pt;}
._24_c00433{width:44.458667pt;}
._9_c00433{width:47.530667pt;}
._26_c00433{width:50.048000pt;}
._28_c00433{width:50.944000pt;}
._27_c00433{width:52.309333pt;}
._29_c00433{width:55.850667pt;}
._36_c00433{width:58.453333pt;}
._30_c00433{width:60.501333pt;}
._2c_c00433{width:61.440000pt;}
._37_c00433{width:87.808000pt;}
._43_c00433{width:114.602667pt;}
._40_c00433{width:150.261333pt;}
._2e_c00433{width:155.680000pt;}
._22_c00433{width:163.157333pt;}
._2b_c00433{width:241.578667pt;}
._2d_c00433{width:251.861333pt;}
._45_c00433{width:347.434667pt;}
._35_c00433{width:369.322667pt;}
._2a_c00433{width:1352.533333pt;}
.fs3_c00433{font-size:42.666667pt;}
.fs2_c00433{font-size:74.666667pt;}
.fs0_c00433{font-size:85.333333pt;}
.fs1_c00433{font-size:90.666667pt;}
.y0_c00433{bottom:0.000000pt;}
.y25_c00433{bottom:2.760000pt;}
.y24_c00433{bottom:6.425217pt;}
.y23_c00433{bottom:103.173333pt;}
.y22_c00433{bottom:135.306667pt;}
.y21_c00433{bottom:166.773333pt;}
.y20_c00433{bottom:197.706667pt;}
.y1f_c00433{bottom:227.440000pt;}
.y1e_c00433{bottom:257.973333pt;}
.y1d_c00433{bottom:287.973333pt;}
.y1c_c00433{bottom:318.906667pt;}
.y1b_c00433{bottom:348.240000pt;}
.y1a_c00433{bottom:376.773333pt;}
.y19_c00433{bottom:408.506667pt;}
.y18_c00433{bottom:438.240000pt;}
.y17_c00433{bottom:468.240000pt;}
.y16_c00433{bottom:497.440000pt;}
.y15_c00433{bottom:529.173333pt;}
.y14_c00433{bottom:557.973333pt;}
.y13_c00433{bottom:587.440000pt;}
.y12_c00433{bottom:617.440000pt;}
.y11_c00433{bottom:647.306667pt;}
.y10_c00433{bottom:677.040000pt;}
.yf_c00433{bottom:707.040000pt;}
.ye_c00433{bottom:737.306667pt;}
.yd_c00433{bottom:767.040000pt;}
.yc_c00433{bottom:797.306667pt;}
.yb_c00433{bottom:827.040000pt;}
.ya_c00433{bottom:856.240000pt;}
.y9_c00433{bottom:885.840000pt;}
.y8_c00433{bottom:914.373333pt;}
.y7_c00433{bottom:945.306667pt;}
.y6_c00433{bottom:975.306667pt;}
.y5_c00433{bottom:1004.906667pt;}
.y4_c00433{bottom:1034.640000pt;}
.y3_c00433{bottom:1064.373333pt;}
.y2_c00433{bottom:1093.840000pt;}
.y1_c00433{bottom:1123.840000pt;}
.h4_c00433{height:11.733399pt;}
.h5_c00433{height:38.937500pt;}
.h2_c00433{height:108.041667pt;}
.h3_c00433{height:114.794271pt;}
.h1_c00433{height:1208.000000pt;}
.h0_c00433{height:1208.133333pt;}
.w2_c00433{width:93.222667pt;}
.w1_c00433{width:754.000000pt;}
.w0_c00433{width:754.066667pt;}
.x0_c00433{left:0.000000pt;}
.x6_c00433{left:157.600000pt;}
.xe_c00433{left:177.866667pt;}
.x7_c00433{left:204.666667pt;}
.x1_c00433{left:213.333333pt;}
.xd_c00433{left:217.200000pt;}
.xa_c00433{left:218.133333pt;}
.xb_c00433{left:219.200000pt;}
.x9_c00433{left:220.133333pt;}
.x2_c00433{left:221.066667pt;}
.x3_c00433{left:222.533333pt;}
.x5_c00433{left:223.466667pt;}
.x8_c00433{left:224.400000pt;}
.xc_c00433{left:251.200000pt;}
.x4_c00433{left:268.533333pt;}
.xf_c00433{left:334.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f95a6af16318d29ad39fa009.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_d25fce5b182189b065dbfb58.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls7_c00434{letter-spacing:-3.000000px;}
.ls5_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:6.120000px;}
.ls4_c00434{letter-spacing:8.520000px;}
.ls6_c00434{letter-spacing:9.000000px;}
.ls1_c00434{letter-spacing:9.120000px;}
.ls3_c00434{letter-spacing:18.492000px;}
.ls0_c00434{letter-spacing:21.252000px;}
.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:-29.244000px;}
.ws0_c00434{word-spacing:-23.136000px;}
.ws2_c00434{word-spacing:-20.244000px;}
.ws3_c00434{word-spacing:0.000000px;}
._3c_c00434{margin-left:-79.779000px;}
._36_c00434{margin-left:-65.856000px;}
._34_c00434{margin-left:-36.900000px;}
._32_c00434{margin-left:-19.296000px;}
._37_c00434{margin-left:-17.856000px;}
._3a_c00434{margin-left:-14.964000px;}
._f_c00434{margin-left:-11.424000px;}
._10_c00434{margin-left:-8.352000px;}
._e_c00434{margin-left:-7.008000px;}
._3_c00434{margin-left:-5.184000px;}
._12_c00434{margin-left:-4.032000px;}
._b_c00434{margin-left:-2.016000px;}
._28_c00434{margin-left:-1.008000px;}
._9_c00434{width:1.056000px;}
._1_c00434{width:2.304000px;}
._0_c00434{width:3.840000px;}
._c_c00434{width:5.280000px;}
._a_c00434{width:6.336000px;}
._22_c00434{width:7.416000px;}
._11_c00434{width:8.544000px;}
._2f_c00434{width:9.645000px;}
._21_c00434{width:10.944000px;}
._17_c00434{width:12.192000px;}
._19_c00434{width:13.248000px;}
._2_c00434{width:15.264000px;}
._24_c00434{width:16.428000px;}
._27_c00434{width:17.616000px;}
._1e_c00434{width:18.720000px;}
._1c_c00434{width:20.064000px;}
._2b_c00434{width:21.216000px;}
._1f_c00434{width:24.192000px;}
._d_c00434{width:25.440000px;}
._18_c00434{width:26.976000px;}
._1b_c00434{width:28.608000px;}
._38_c00434{width:29.667000px;}
._2c_c00434{width:30.696000px;}
._13_c00434{width:31.776000px;}
._6_c00434{width:33.696000px;}
._8_c00434{width:35.328000px;}
._1a_c00434{width:36.384000px;}
._39_c00434{width:37.728000px;}
._1d_c00434{width:38.880000px;}
._7_c00434{width:40.032000px;}
._25_c00434{width:41.052000px;}
._5_c00434{width:43.296000px;}
._14_c00434{width:45.408000px;}
._29_c00434{width:47.040000px;}
._26_c00434{width:48.672000px;}
._2a_c00434{width:49.824000px;}
._2e_c00434{width:52.308000px;}
._31_c00434{width:53.736000px;}
._33_c00434{width:56.616000px;}
._4_c00434{width:57.888000px;}
._15_c00434{width:58.944000px;}
._20_c00434{width:62.784000px;}
._30_c00434{width:63.840000px;}
._23_c00434{width:67.476000px;}
._16_c00434{width:71.040000px;}
._3f_c00434{width:110.592000px;}
._2d_c00434{width:154.656000px;}
._3e_c00434{width:180.900000px;}
._35_c00434{width:200.763000px;}
._3d_c00434{width:323.379000px;}
._40_c00434{width:661.728000px;}
._3b_c00434{width:717.315000px;}
._41_c00434{width:1281.504000px;}
.fc2_c00434{color:transparent;}
.fc1_c00434{color:rgb(128,128,128);}
.fc0_c00434{color:rgb(0,0,0);}
.fs4_c00434{font-size:48.000000px;}
.fs2_c00434{font-size:69.000000px;}
.fs1_c00434{font-size:84.000000px;}
.fs3_c00434{font-size:87.000000px;}
.fs0_c00434{font-size:96.000000px;}
.y0_c00434{bottom:0.000000px;}
.y27_c00434{bottom:3.105000px;}
.y26_c00434{bottom:7.228369px;}
.y25_c00434{bottom:112.020000px;}
.y24_c00434{bottom:143.070000px;}
.y23_c00434{bottom:178.470000px;}
.y22_c00434{bottom:212.520000px;}
.y21_c00434{bottom:245.670000px;}
.y20_c00434{bottom:268.620000px;}
.y1f_c00434{bottom:279.420000px;}
.y1e_c00434{bottom:313.470000px;}
.y1d_c00434{bottom:347.520000px;}
.y1c_c00434{bottom:380.370000px;}
.y1b_c00434{bottom:414.120000px;}
.y1a_c00434{bottom:447.420000px;}
.y19_c00434{bottom:481.170000px;}
.y18_c00434{bottom:514.920000px;}
.y17_c00434{bottom:548.370000px;}
.y16_c00434{bottom:582.120000px;}
.y15_c00434{bottom:615.570000px;}
.y14_c00434{bottom:649.320000px;}
.y13_c00434{bottom:683.070000px;}
.y12_c00434{bottom:716.520000px;}
.y11_c00434{bottom:749.520000px;}
.y10_c00434{bottom:782.970000px;}
.yf_c00434{bottom:816.120000px;}
.ye_c00434{bottom:849.120000px;}
.yd_c00434{bottom:882.120000px;}
.yc_c00434{bottom:915.270000px;}
.yb_c00434{bottom:948.720000px;}
.ya_c00434{bottom:981.720000px;}
.y9_c00434{bottom:1015.170000px;}
.y8_c00434{bottom:1048.620000px;}
.y7_c00434{bottom:1082.070000px;}
.y6_c00434{bottom:1115.370000px;}
.y5_c00434{bottom:1148.220000px;}
.y4_c00434{bottom:1181.520000px;}
.y3_c00434{bottom:1214.370000px;}
.y2_c00434{bottom:1247.970000px;}
.y1_c00434{bottom:1280.820000px;}
.h5_c00434{height:13.200073px;}
.h6_c00434{height:43.804688px;}
.h3_c00434{height:98.314453px;}
.h4_c00434{height:110.151855px;}
.h2_c00434{height:121.546875px;}
.h0_c00434{height:1383.450000px;}
.h1_c00434{height:1383.750000px;}
.w2_c00434{width:104.875500px;}
.w0_c00434{width:878.025000px;}
.w1_c00434{width:878.250000px;}
.x0_c00434{left:0.000000px;}
.xa_c00434{left:27.300000px;}
.x9_c00434{left:28.800000px;}
.xb_c00434{left:30.000000px;}
.x8_c00434{left:31.050000px;}
.x7_c00434{left:32.700000px;}
.x6_c00434{left:34.200000px;}
.x5_c00434{left:36.000000px;}
.x4_c00434{left:37.050000px;}
.x3_c00434{left:38.100000px;}
.xc_c00434{left:39.150000px;}
.x1_c00434{left:40.200000px;}
.x2_c00434{left:41.400000px;}
.xd_c00434{left:253.500000px;}
.xe_c00434{left:390.826721px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls7_c00434{letter-spacing:-2.666667pt;}
.ls5_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:5.440000pt;}
.ls4_c00434{letter-spacing:7.573333pt;}
.ls6_c00434{letter-spacing:8.000000pt;}
.ls1_c00434{letter-spacing:8.106667pt;}
.ls3_c00434{letter-spacing:16.437333pt;}
.ls0_c00434{letter-spacing:18.890667pt;}
.ws1_c00434{word-spacing:-25.994667pt;}
.ws0_c00434{word-spacing:-20.565333pt;}
.ws2_c00434{word-spacing:-17.994667pt;}
.ws3_c00434{word-spacing:0.000000pt;}
._3c_c00434{margin-left:-70.914667pt;}
._36_c00434{margin-left:-58.538667pt;}
._34_c00434{margin-left:-32.800000pt;}
._32_c00434{margin-left:-17.152000pt;}
._37_c00434{margin-left:-15.872000pt;}
._3a_c00434{margin-left:-13.301333pt;}
._f_c00434{margin-left:-10.154667pt;}
._10_c00434{margin-left:-7.424000pt;}
._e_c00434{margin-left:-6.229333pt;}
._3_c00434{margin-left:-4.608000pt;}
._12_c00434{margin-left:-3.584000pt;}
._b_c00434{margin-left:-1.792000pt;}
._28_c00434{margin-left:-0.896000pt;}
._9_c00434{width:0.938667pt;}
._1_c00434{width:2.048000pt;}
._0_c00434{width:3.413333pt;}
._c_c00434{width:4.693333pt;}
._a_c00434{width:5.632000pt;}
._22_c00434{width:6.592000pt;}
._11_c00434{width:7.594667pt;}
._2f_c00434{width:8.573333pt;}
._21_c00434{width:9.728000pt;}
._17_c00434{width:10.837333pt;}
._19_c00434{width:11.776000pt;}
._2_c00434{width:13.568000pt;}
._24_c00434{width:14.602667pt;}
._27_c00434{width:15.658667pt;}
._1e_c00434{width:16.640000pt;}
._1c_c00434{width:17.834667pt;}
._2b_c00434{width:18.858667pt;}
._1f_c00434{width:21.504000pt;}
._d_c00434{width:22.613333pt;}
._18_c00434{width:23.978667pt;}
._1b_c00434{width:25.429333pt;}
._38_c00434{width:26.370667pt;}
._2c_c00434{width:27.285333pt;}
._13_c00434{width:28.245333pt;}
._6_c00434{width:29.952000pt;}
._8_c00434{width:31.402667pt;}
._1a_c00434{width:32.341333pt;}
._39_c00434{width:33.536000pt;}
._1d_c00434{width:34.560000pt;}
._7_c00434{width:35.584000pt;}
._25_c00434{width:36.490667pt;}
._5_c00434{width:38.485333pt;}
._14_c00434{width:40.362667pt;}
._29_c00434{width:41.813333pt;}
._26_c00434{width:43.264000pt;}
._2a_c00434{width:44.288000pt;}
._2e_c00434{width:46.496000pt;}
._31_c00434{width:47.765333pt;}
._33_c00434{width:50.325333pt;}
._4_c00434{width:51.456000pt;}
._15_c00434{width:52.394667pt;}
._20_c00434{width:55.808000pt;}
._30_c00434{width:56.746667pt;}
._23_c00434{width:59.978667pt;}
._16_c00434{width:63.146667pt;}
._3f_c00434{width:98.304000pt;}
._2d_c00434{width:137.472000pt;}
._3e_c00434{width:160.800000pt;}
._35_c00434{width:178.456000pt;}
._3d_c00434{width:287.448000pt;}
._40_c00434{width:588.202667pt;}
._3b_c00434{width:637.613333pt;}
._41_c00434{width:1139.114667pt;}
.fs4_c00434{font-size:42.666667pt;}
.fs2_c00434{font-size:61.333333pt;}
.fs1_c00434{font-size:74.666667pt;}
.fs3_c00434{font-size:77.333333pt;}
.fs0_c00434{font-size:85.333333pt;}
.y0_c00434{bottom:0.000000pt;}
.y27_c00434{bottom:2.760000pt;}
.y26_c00434{bottom:6.425217pt;}
.y25_c00434{bottom:99.573333pt;}
.y24_c00434{bottom:127.173333pt;}
.y23_c00434{bottom:158.640000pt;}
.y22_c00434{bottom:188.906667pt;}
.y21_c00434{bottom:218.373333pt;}
.y20_c00434{bottom:238.773333pt;}
.y1f_c00434{bottom:248.373333pt;}
.y1e_c00434{bottom:278.640000pt;}
.y1d_c00434{bottom:308.906667pt;}
.y1c_c00434{bottom:338.106667pt;}
.y1b_c00434{bottom:368.106667pt;}
.y1a_c00434{bottom:397.706667pt;}
.y19_c00434{bottom:427.706667pt;}
.y18_c00434{bottom:457.706667pt;}
.y17_c00434{bottom:487.440000pt;}
.y16_c00434{bottom:517.440000pt;}
.y15_c00434{bottom:547.173333pt;}
.y14_c00434{bottom:577.173333pt;}
.y13_c00434{bottom:607.173333pt;}
.y12_c00434{bottom:636.906667pt;}
.y11_c00434{bottom:666.240000pt;}
.y10_c00434{bottom:695.973333pt;}
.yf_c00434{bottom:725.440000pt;}
.ye_c00434{bottom:754.773333pt;}
.yd_c00434{bottom:784.106667pt;}
.yc_c00434{bottom:813.573333pt;}
.yb_c00434{bottom:843.306667pt;}
.ya_c00434{bottom:872.640000pt;}
.y9_c00434{bottom:902.373333pt;}
.y8_c00434{bottom:932.106667pt;}
.y7_c00434{bottom:961.840000pt;}
.y6_c00434{bottom:991.440000pt;}
.y5_c00434{bottom:1020.640000pt;}
.y4_c00434{bottom:1050.240000pt;}
.y3_c00434{bottom:1079.440000pt;}
.y2_c00434{bottom:1109.306667pt;}
.y1_c00434{bottom:1138.506667pt;}
.h5_c00434{height:11.733399pt;}
.h6_c00434{height:38.937500pt;}
.h3_c00434{height:87.390625pt;}
.h4_c00434{height:97.912760pt;}
.h2_c00434{height:108.041667pt;}
.h0_c00434{height:1229.733333pt;}
.h1_c00434{height:1230.000000pt;}
.w2_c00434{width:93.222667pt;}
.w0_c00434{width:780.466667pt;}
.w1_c00434{width:780.666667pt;}
.x0_c00434{left:0.000000pt;}
.xa_c00434{left:24.266667pt;}
.x9_c00434{left:25.600000pt;}
.xb_c00434{left:26.666667pt;}
.x8_c00434{left:27.600000pt;}
.x7_c00434{left:29.066667pt;}
.x6_c00434{left:30.400000pt;}
.x5_c00434{left:32.000000pt;}
.x4_c00434{left:32.933333pt;}
.x3_c00434{left:33.866667pt;}
.xc_c00434{left:34.800000pt;}
.x1_c00434{left:35.733333pt;}
.x2_c00434{left:36.800000pt;}
.xd_c00434{left:225.333333pt;}
.xe_c00434{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_921681e2cfdba8925037d89f.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_fc66a70a12c54f2d30cce544.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00435{word-spacing:-63.504000px;}
.ws1_c00435{word-spacing:-23.136000px;}
.ws2_c00435{word-spacing:0.000000px;}
._36_c00435{margin-left:-19.584000px;}
._37_c00435{margin-left:-14.496000px;}
._a_c00435{margin-left:-12.396000px;}
._3d_c00435{margin-left:-8.532000px;}
._15_c00435{margin-left:-7.488000px;}
._17_c00435{margin-left:-5.844000px;}
._18_c00435{margin-left:-4.800000px;}
._25_c00435{margin-left:-3.456000px;}
._12_c00435{margin-left:-1.440000px;}
._e_c00435{width:1.728000px;}
._3_c00435{width:2.784000px;}
._0_c00435{width:4.416000px;}
._1_c00435{width:5.856000px;}
._6_c00435{width:7.200000px;}
._8_c00435{width:8.928000px;}
._24_c00435{width:9.984000px;}
._22_c00435{width:11.232000px;}
._1f_c00435{width:13.248000px;}
._2c_c00435{width:14.400000px;}
._2a_c00435{width:15.552000px;}
._9_c00435{width:16.896000px;}
._20_c00435{width:18.432000px;}
._27_c00435{width:20.160000px;}
._b_c00435{width:21.312000px;}
._19_c00435{width:24.384000px;}
._14_c00435{width:26.400000px;}
._2f_c00435{width:27.648000px;}
._23_c00435{width:28.704000px;}
._7_c00435{width:30.048000px;}
._11_c00435{width:31.776000px;}
._4_c00435{width:32.832000px;}
._2_c00435{width:35.040000px;}
._f_c00435{width:36.288000px;}
._31_c00435{width:37.440000px;}
._5_c00435{width:38.496000px;}
._13_c00435{width:39.936000px;}
._2b_c00435{width:40.992000px;}
._1e_c00435{width:42.048000px;}
._35_c00435{width:43.296000px;}
._d_c00435{width:44.544000px;}
._2d_c00435{width:45.984000px;}
._c_c00435{width:47.328000px;}
._1a_c00435{width:48.480000px;}
._32_c00435{width:49.536000px;}
._39_c00435{width:50.976000px;}
._10_c00435{width:52.032000px;}
._29_c00435{width:53.076000px;}
._33_c00435{width:56.544000px;}
._1c_c00435{width:58.080000px;}
._16_c00435{width:59.904000px;}
._28_c00435{width:62.016000px;}
._38_c00435{width:63.840000px;}
._1b_c00435{width:69.120000px;}
._30_c00435{width:70.272000px;}
._34_c00435{width:72.672000px;}
._1d_c00435{width:75.840000px;}
._3c_c00435{width:81.312000px;}
._3b_c00435{width:86.496000px;}
._3a_c00435{width:164.448000px;}
._2e_c00435{width:178.752000px;}
._26_c00435{width:192.480000px;}
._21_c00435{width:353.376000px;}
.fc2_c00435{color:transparent;}
.fc1_c00435{color:rgb(128,128,128);}
.fc0_c00435{color:rgb(0,0,0);}
.fs2_c00435{font-size:48.000000px;}
.fs1_c00435{font-size:84.000000px;}
.fs0_c00435{font-size:96.000000px;}
.y0_c00435{bottom:0.000000px;}
.y24_c00435{bottom:3.105000px;}
.y23_c00435{bottom:7.228369px;}
.y22_c00435{bottom:90.720000px;}
.y21_c00435{bottom:122.220000px;}
.y20_c00435{bottom:157.170000px;}
.y1f_c00435{bottom:191.370000px;}
.y1e_c00435{bottom:224.820000px;}
.y1d_c00435{bottom:258.870000px;}
.y1c_c00435{bottom:292.620000px;}
.y1b_c00435{bottom:326.670000px;}
.y1a_c00435{bottom:360.420000px;}
.y19_c00435{bottom:394.170000px;}
.y18_c00435{bottom:427.920000px;}
.y17_c00435{bottom:461.670000px;}
.y16_c00435{bottom:494.370000px;}
.y15_c00435{bottom:528.870000px;}
.y14_c00435{bottom:562.320000px;}
.y13_c00435{bottom:596.370000px;}
.y12_c00435{bottom:629.370000px;}
.y11_c00435{bottom:663.120000px;}
.y10_c00435{bottom:696.270000px;}
.yf_c00435{bottom:730.470000px;}
.ye_c00435{bottom:763.770000px;}
.yd_c00435{bottom:797.070000px;}
.yc_c00435{bottom:830.520000px;}
.yb_c00435{bottom:864.270000px;}
.ya_c00435{bottom:930.870000px;}
.y9_c00435{bottom:996.570000px;}
.y8_c00435{bottom:1030.770000px;}
.y7_c00435{bottom:1064.520000px;}
.y6_c00435{bottom:1098.120000px;}
.y5_c00435{bottom:1131.270000px;}
.y4_c00435{bottom:1164.870000px;}
.y3_c00435{bottom:1198.020000px;}
.y2_c00435{bottom:1231.170000px;}
.y1_c00435{bottom:1264.170000px;}
.h3_c00435{height:13.200073px;}
.h4_c00435{height:43.804688px;}
.h2_c00435{height:121.546875px;}
.h1_c00435{height:1359.000000px;}
.h0_c00435{height:1359.150000px;}
.w2_c00435{width:104.875500px;}
.w1_c00435{width:848.250000px;}
.w0_c00435{width:848.325000px;}
.x0_c00435{left:0.000000px;}
.x9_c00435{left:236.850000px;}
.xb_c00435{left:237.900000px;}
.x1_c00435{left:240.600000px;}
.x2_c00435{left:241.650000px;}
.x3_c00435{left:242.700000px;}
.x7_c00435{left:244.350000px;}
.xc_c00435{left:245.400000px;}
.xa_c00435{left:283.200000px;}
.x5_c00435{left:292.500000px;}
.x8_c00435{left:294.000000px;}
.xe_c00435{left:375.976730px;}
.x4_c00435{left:423.600000px;}
.x6_c00435{left:468.450000px;}
.xd_c00435{left:772.950000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:-56.448000pt;}
.ws1_c00435{word-spacing:-20.565333pt;}
.ws2_c00435{word-spacing:0.000000pt;}
._36_c00435{margin-left:-17.408000pt;}
._37_c00435{margin-left:-12.885333pt;}
._a_c00435{margin-left:-11.018667pt;}
._3d_c00435{margin-left:-7.584000pt;}
._15_c00435{margin-left:-6.656000pt;}
._17_c00435{margin-left:-5.194667pt;}
._18_c00435{margin-left:-4.266667pt;}
._25_c00435{margin-left:-3.072000pt;}
._12_c00435{margin-left:-1.280000pt;}
._e_c00435{width:1.536000pt;}
._3_c00435{width:2.474667pt;}
._0_c00435{width:3.925333pt;}
._1_c00435{width:5.205333pt;}
._6_c00435{width:6.400000pt;}
._8_c00435{width:7.936000pt;}
._24_c00435{width:8.874667pt;}
._22_c00435{width:9.984000pt;}
._1f_c00435{width:11.776000pt;}
._2c_c00435{width:12.800000pt;}
._2a_c00435{width:13.824000pt;}
._9_c00435{width:15.018667pt;}
._20_c00435{width:16.384000pt;}
._27_c00435{width:17.920000pt;}
._b_c00435{width:18.944000pt;}
._19_c00435{width:21.674667pt;}
._14_c00435{width:23.466667pt;}
._2f_c00435{width:24.576000pt;}
._23_c00435{width:25.514667pt;}
._7_c00435{width:26.709333pt;}
._11_c00435{width:28.245333pt;}
._4_c00435{width:29.184000pt;}
._2_c00435{width:31.146667pt;}
._f_c00435{width:32.256000pt;}
._31_c00435{width:33.280000pt;}
._5_c00435{width:34.218667pt;}
._13_c00435{width:35.498667pt;}
._2b_c00435{width:36.437333pt;}
._1e_c00435{width:37.376000pt;}
._35_c00435{width:38.485333pt;}
._d_c00435{width:39.594667pt;}
._2d_c00435{width:40.874667pt;}
._c_c00435{width:42.069333pt;}
._1a_c00435{width:43.093333pt;}
._32_c00435{width:44.032000pt;}
._39_c00435{width:45.312000pt;}
._10_c00435{width:46.250667pt;}
._29_c00435{width:47.178667pt;}
._33_c00435{width:50.261333pt;}
._1c_c00435{width:51.626667pt;}
._16_c00435{width:53.248000pt;}
._28_c00435{width:55.125333pt;}
._38_c00435{width:56.746667pt;}
._1b_c00435{width:61.440000pt;}
._30_c00435{width:62.464000pt;}
._34_c00435{width:64.597333pt;}
._1d_c00435{width:67.413333pt;}
._3c_c00435{width:72.277333pt;}
._3b_c00435{width:76.885333pt;}
._3a_c00435{width:146.176000pt;}
._2e_c00435{width:158.890667pt;}
._26_c00435{width:171.093333pt;}
._21_c00435{width:314.112000pt;}
.fs2_c00435{font-size:42.666667pt;}
.fs1_c00435{font-size:74.666667pt;}
.fs0_c00435{font-size:85.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y24_c00435{bottom:2.760000pt;}
.y23_c00435{bottom:6.425217pt;}
.y22_c00435{bottom:80.640000pt;}
.y21_c00435{bottom:108.640000pt;}
.y20_c00435{bottom:139.706667pt;}
.y1f_c00435{bottom:170.106667pt;}
.y1e_c00435{bottom:199.840000pt;}
.y1d_c00435{bottom:230.106667pt;}
.y1c_c00435{bottom:260.106667pt;}
.y1b_c00435{bottom:290.373333pt;}
.y1a_c00435{bottom:320.373333pt;}
.y19_c00435{bottom:350.373333pt;}
.y18_c00435{bottom:380.373333pt;}
.y17_c00435{bottom:410.373333pt;}
.y16_c00435{bottom:439.440000pt;}
.y15_c00435{bottom:470.106667pt;}
.y14_c00435{bottom:499.840000pt;}
.y13_c00435{bottom:530.106667pt;}
.y12_c00435{bottom:559.440000pt;}
.y11_c00435{bottom:589.440000pt;}
.y10_c00435{bottom:618.906667pt;}
.yf_c00435{bottom:649.306667pt;}
.ye_c00435{bottom:678.906667pt;}
.yd_c00435{bottom:708.506667pt;}
.yc_c00435{bottom:738.240000pt;}
.yb_c00435{bottom:768.240000pt;}
.ya_c00435{bottom:827.440000pt;}
.y9_c00435{bottom:885.840000pt;}
.y8_c00435{bottom:916.240000pt;}
.y7_c00435{bottom:946.240000pt;}
.y6_c00435{bottom:976.106667pt;}
.y5_c00435{bottom:1005.573333pt;}
.y4_c00435{bottom:1035.440000pt;}
.y3_c00435{bottom:1064.906667pt;}
.y2_c00435{bottom:1094.373333pt;}
.y1_c00435{bottom:1123.706667pt;}
.h3_c00435{height:11.733399pt;}
.h4_c00435{height:38.937500pt;}
.h2_c00435{height:108.041667pt;}
.h1_c00435{height:1208.000000pt;}
.h0_c00435{height:1208.133333pt;}
.w2_c00435{width:93.222667pt;}
.w1_c00435{width:754.000000pt;}
.w0_c00435{width:754.066667pt;}
.x0_c00435{left:0.000000pt;}
.x9_c00435{left:210.533333pt;}
.xb_c00435{left:211.466667pt;}
.x1_c00435{left:213.866667pt;}
.x2_c00435{left:214.800000pt;}
.x3_c00435{left:215.733333pt;}
.x7_c00435{left:217.200000pt;}
.xc_c00435{left:218.133333pt;}
.xa_c00435{left:251.733333pt;}
.x5_c00435{left:260.000000pt;}
.x8_c00435{left:261.333333pt;}
.xe_c00435{left:334.201538pt;}
.x4_c00435{left:376.533333pt;}
.x6_c00435{left:416.400000pt;}
.xd_c00435{left:687.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce89b3f866f7c11520f08fbe.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_2e83dfeaf91e4979dcbc4f59.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:6.720000px;}
.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;}
}
.ws0_c00436{word-spacing:-20.244000px;}
.ws1_c00436{word-spacing:0.000000px;}
._28_c00436{margin-left:-40.416000px;}
._26_c00436{margin-left:-18.816000px;}
._39_c00436{margin-left:-17.280000px;}
._27_c00436{margin-left:-13.920000px;}
._2f_c00436{margin-left:-12.480000px;}
._37_c00436{margin-left:-11.232000px;}
._2b_c00436{margin-left:-8.832000px;}
._3b_c00436{margin-left:-7.350000px;}
._24_c00436{margin-left:-4.992000px;}
._1a_c00436{margin-left:-3.072000px;}
._5_c00436{margin-left:-1.824000px;}
._3_c00436{width:1.728000px;}
._4_c00436{width:2.880000px;}
._0_c00436{width:4.032000px;}
._6_c00436{width:5.280000px;}
._16_c00436{width:6.624000px;}
._1_c00436{width:8.256000px;}
._20_c00436{width:9.408000px;}
._2_c00436{width:10.464000px;}
._23_c00436{width:11.508000px;}
._1d_c00436{width:12.576000px;}
._7_c00436{width:14.304000px;}
._22_c00436{width:15.456000px;}
._1c_c00436{width:16.800000px;}
._19_c00436{width:19.104000px;}
._f_c00436{width:21.216000px;}
._d_c00436{width:24.864000px;}
._2a_c00436{width:26.304000px;}
._c_c00436{width:27.936000px;}
._18_c00436{width:30.528000px;}
._b_c00436{width:32.448000px;}
._1b_c00436{width:34.368000px;}
._11_c00436{width:36.192000px;}
._1e_c00436{width:37.248000px;}
._a_c00436{width:38.688000px;}
._17_c00436{width:39.840000px;}
._8_c00436{width:41.088000px;}
._10_c00436{width:43.104000px;}
._e_c00436{width:44.928000px;}
._25_c00436{width:47.136000px;}
._9_c00436{width:48.192000px;}
._15_c00436{width:49.440000px;}
._1f_c00436{width:50.976000px;}
._12_c00436{width:52.128000px;}
._34_c00436{width:53.472000px;}
._29_c00436{width:54.624000px;}
._36_c00436{width:56.640000px;}
._35_c00436{width:58.752000px;}
._14_c00436{width:60.480000px;}
._13_c00436{width:62.976000px;}
._30_c00436{width:64.128000px;}
._32_c00436{width:68.448000px;}
._2e_c00436{width:93.024000px;}
._31_c00436{width:109.344000px;}
._2c_c00436{width:122.688000px;}
._2d_c00436{width:147.072000px;}
._33_c00436{width:176.772000px;}
._38_c00436{width:192.936000px;}
._21_c00436{width:245.664000px;}
._3a_c00436{width:318.945000px;}
._3c_c00436{width:747.723000px;}
.fc2_c00436{color:transparent;}
.fc1_c00436{color:rgb(128,128,128);}
.fc0_c00436{color:rgb(0,0,0);}
.fs3_c00436{font-size:48.000000px;}
.fs1_c00436{font-size:84.000000px;}
.fs0_c00436{font-size:96.000000px;}
.fs2_c00436{font-size:105.000000px;}
.y0_c00436{bottom:0.000000px;}
.y25_c00436{bottom:3.105000px;}
.y24_c00436{bottom:7.228369px;}
.y23_c00436{bottom:130.170000px;}
.y22_c00436{bottom:164.070000px;}
.y21_c00436{bottom:199.170000px;}
.y20_c00436{bottom:233.220000px;}
.y1f_c00436{bottom:267.270000px;}
.y1e_c00436{bottom:301.020000px;}
.y1d_c00436{bottom:334.770000px;}
.y1c_c00436{bottom:368.820000px;}
.y1b_c00436{bottom:402.870000px;}
.y1a_c00436{bottom:435.420000px;}
.y19_c00436{bottom:468.720000px;}
.y18_c00436{bottom:502.770000px;}
.y17_c00436{bottom:536.520000px;}
.y16_c00436{bottom:569.970000px;}
.y15_c00436{bottom:603.420000px;}
.y14_c00436{bottom:636.870000px;}
.y13_c00436{bottom:670.620000px;}
.y12_c00436{bottom:703.320000px;}
.y11_c00436{bottom:736.770000px;}
.y10_c00436{bottom:770.820000px;}
.yf_c00436{bottom:804.270000px;}
.ye_c00436{bottom:836.670000px;}
.yd_c00436{bottom:870.720000px;}
.yc_c00436{bottom:903.720000px;}
.yb_c00436{bottom:937.170000px;}
.ya_c00436{bottom:970.620000px;}
.y9_c00436{bottom:1003.920000px;}
.y8_c00436{bottom:1037.370000px;}
.y7_c00436{bottom:1070.820000px;}
.y6_c00436{bottom:1103.670000px;}
.y5_c00436{bottom:1136.970000px;}
.y4_c00436{bottom:1169.670000px;}
.y3_c00436{bottom:1202.520000px;}
.y2_c00436{bottom:1236.270000px;}
.y1_c00436{bottom:1268.670000px;}
.h4_c00436{height:13.200073px;}
.h5_c00436{height:43.804688px;}
.h2_c00436{height:121.546875px;}
.h3_c00436{height:132.941895px;}
.h0_c00436{height:1375.350000px;}
.h1_c00436{height:1375.500000px;}
.w2_c00436{width:104.875500px;}
.w0_c00436{width:872.625000px;}
.w1_c00436{width:873.000000px;}
.x0_c00436{left:0.000000px;}
.x7_c00436{left:25.050000px;}
.x6_c00436{left:26.100000px;}
.x5_c00436{left:27.300000px;}
.x3_c00436{left:28.800000px;}
.x1_c00436{left:30.000000px;}
.x2_c00436{left:31.500000px;}
.xa_c00436{left:33.300000px;}
.xb_c00436{left:34.350000px;}
.xc_c00436{left:36.000000px;}
.xd_c00436{left:37.500000px;}
.xe_c00436{left:39.600000px;}
.x4_c00436{left:63.900000px;}
.x8_c00436{left:73.200000px;}
.x9_c00436{left:78.000000px;}
.xf_c00436{left:224.550000px;}
.x10_c00436{left:388.126740px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:5.973333pt;}
.ws0_c00436{word-spacing:-17.994667pt;}
.ws1_c00436{word-spacing:0.000000pt;}
._28_c00436{margin-left:-35.925333pt;}
._26_c00436{margin-left:-16.725333pt;}
._39_c00436{margin-left:-15.360000pt;}
._27_c00436{margin-left:-12.373333pt;}
._2f_c00436{margin-left:-11.093333pt;}
._37_c00436{margin-left:-9.984000pt;}
._2b_c00436{margin-left:-7.850667pt;}
._3b_c00436{margin-left:-6.533333pt;}
._24_c00436{margin-left:-4.437333pt;}
._1a_c00436{margin-left:-2.730667pt;}
._5_c00436{margin-left:-1.621333pt;}
._3_c00436{width:1.536000pt;}
._4_c00436{width:2.560000pt;}
._0_c00436{width:3.584000pt;}
._6_c00436{width:4.693333pt;}
._16_c00436{width:5.888000pt;}
._1_c00436{width:7.338667pt;}
._20_c00436{width:8.362667pt;}
._2_c00436{width:9.301333pt;}
._23_c00436{width:10.229333pt;}
._1d_c00436{width:11.178667pt;}
._7_c00436{width:12.714667pt;}
._22_c00436{width:13.738667pt;}
._1c_c00436{width:14.933333pt;}
._19_c00436{width:16.981333pt;}
._f_c00436{width:18.858667pt;}
._d_c00436{width:22.101333pt;}
._2a_c00436{width:23.381333pt;}
._c_c00436{width:24.832000pt;}
._18_c00436{width:27.136000pt;}
._b_c00436{width:28.842667pt;}
._1b_c00436{width:30.549333pt;}
._11_c00436{width:32.170667pt;}
._1e_c00436{width:33.109333pt;}
._a_c00436{width:34.389333pt;}
._17_c00436{width:35.413333pt;}
._8_c00436{width:36.522667pt;}
._10_c00436{width:38.314667pt;}
._e_c00436{width:39.936000pt;}
._25_c00436{width:41.898667pt;}
._9_c00436{width:42.837333pt;}
._15_c00436{width:43.946667pt;}
._1f_c00436{width:45.312000pt;}
._12_c00436{width:46.336000pt;}
._34_c00436{width:47.530667pt;}
._29_c00436{width:48.554667pt;}
._36_c00436{width:50.346667pt;}
._35_c00436{width:52.224000pt;}
._14_c00436{width:53.760000pt;}
._13_c00436{width:55.978667pt;}
._30_c00436{width:57.002667pt;}
._32_c00436{width:60.842667pt;}
._2e_c00436{width:82.688000pt;}
._31_c00436{width:97.194667pt;}
._2c_c00436{width:109.056000pt;}
._2d_c00436{width:130.730667pt;}
._33_c00436{width:157.130667pt;}
._38_c00436{width:171.498667pt;}
._21_c00436{width:218.368000pt;}
._3a_c00436{width:283.506667pt;}
._3c_c00436{width:664.642667pt;}
.fs3_c00436{font-size:42.666667pt;}
.fs1_c00436{font-size:74.666667pt;}
.fs0_c00436{font-size:85.333333pt;}
.fs2_c00436{font-size:93.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y25_c00436{bottom:2.760000pt;}
.y24_c00436{bottom:6.425217pt;}
.y23_c00436{bottom:115.706667pt;}
.y22_c00436{bottom:145.840000pt;}
.y21_c00436{bottom:177.040000pt;}
.y20_c00436{bottom:207.306667pt;}
.y1f_c00436{bottom:237.573333pt;}
.y1e_c00436{bottom:267.573333pt;}
.y1d_c00436{bottom:297.573333pt;}
.y1c_c00436{bottom:327.840000pt;}
.y1b_c00436{bottom:358.106667pt;}
.y1a_c00436{bottom:387.040000pt;}
.y19_c00436{bottom:416.640000pt;}
.y18_c00436{bottom:446.906667pt;}
.y17_c00436{bottom:476.906667pt;}
.y16_c00436{bottom:506.640000pt;}
.y15_c00436{bottom:536.373333pt;}
.y14_c00436{bottom:566.106667pt;}
.y13_c00436{bottom:596.106667pt;}
.y12_c00436{bottom:625.173333pt;}
.y11_c00436{bottom:654.906667pt;}
.y10_c00436{bottom:685.173333pt;}
.yf_c00436{bottom:714.906667pt;}
.ye_c00436{bottom:743.706667pt;}
.yd_c00436{bottom:773.973333pt;}
.yc_c00436{bottom:803.306667pt;}
.yb_c00436{bottom:833.040000pt;}
.ya_c00436{bottom:862.773333pt;}
.y9_c00436{bottom:892.373333pt;}
.y8_c00436{bottom:922.106667pt;}
.y7_c00436{bottom:951.840000pt;}
.y6_c00436{bottom:981.040000pt;}
.y5_c00436{bottom:1010.640000pt;}
.y4_c00436{bottom:1039.706667pt;}
.y3_c00436{bottom:1068.906667pt;}
.y2_c00436{bottom:1098.906667pt;}
.y1_c00436{bottom:1127.706667pt;}
.h4_c00436{height:11.733399pt;}
.h5_c00436{height:38.937500pt;}
.h2_c00436{height:108.041667pt;}
.h3_c00436{height:118.170573pt;}
.h0_c00436{height:1222.533333pt;}
.h1_c00436{height:1222.666667pt;}
.w2_c00436{width:93.222667pt;}
.w0_c00436{width:775.666667pt;}
.w1_c00436{width:776.000000pt;}
.x0_c00436{left:0.000000pt;}
.x7_c00436{left:22.266667pt;}
.x6_c00436{left:23.200000pt;}
.x5_c00436{left:24.266667pt;}
.x3_c00436{left:25.600000pt;}
.x1_c00436{left:26.666667pt;}
.x2_c00436{left:28.000000pt;}
.xa_c00436{left:29.600000pt;}
.xb_c00436{left:30.533333pt;}
.xc_c00436{left:32.000000pt;}
.xd_c00436{left:33.333333pt;}
.xe_c00436{left:35.200000pt;}
.x4_c00436{left:56.800000pt;}
.x8_c00436{left:65.066667pt;}
.x9_c00436{left:69.333333pt;}
.xf_c00436{left:199.600000pt;}
.x10_c00436{left:345.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e3f19f1e276205e33c2a9a3.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_f59de9763cd658bb9b0f4ad9.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls3_c00437{letter-spacing:3.000000px;}
.ls2_c00437{letter-spacing:9.000000px;}
.ls0_c00437{letter-spacing:14.292000px;}
.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;}
}
.ws0_c00437{word-spacing:-29.244000px;}
.ws1_c00437{word-spacing:-23.136000px;}
.ws2_c00437{word-spacing:0.000000px;}
._33_c00437{margin-left:-40.452000px;}
._34_c00437{margin-left:-17.280000px;}
._16_c00437{margin-left:-12.096000px;}
._37_c00437{margin-left:-10.752000px;}
._1f_c00437{margin-left:-9.660000px;}
._32_c00437{margin-left:-7.338000px;}
._2e_c00437{margin-left:-6.000000px;}
._21_c00437{margin-left:-4.404000px;}
._5_c00437{margin-left:-2.496000px;}
._e_c00437{margin-left:-1.152000px;}
._1_c00437{width:1.248000px;}
._0_c00437{width:2.496000px;}
._3_c00437{width:4.416000px;}
._9_c00437{width:5.568000px;}
._d_c00437{width:7.584000px;}
._1b_c00437{width:8.952000px;}
._1a_c00437{width:9.996000px;}
._b_c00437{width:11.136000px;}
._20_c00437{width:12.204000px;}
._15_c00437{width:13.356000px;}
._14_c00437{width:14.448000px;}
._13_c00437{width:15.528000px;}
._1e_c00437{width:17.220000px;}
._12_c00437{width:18.480000px;}
._38_c00437{width:19.812000px;}
._a_c00437{width:20.928000px;}
._17_c00437{width:22.092000px;}
._25_c00437{width:24.444000px;}
._27_c00437{width:25.860000px;}
._3d_c00437{width:26.916000px;}
._2_c00437{width:28.320000px;}
._1c_c00437{width:30.216000px;}
._8_c00437{width:31.968000px;}
._18_c00437{width:33.228000px;}
._1d_c00437{width:35.244000px;}
._6_c00437{width:36.480000px;}
._22_c00437{width:37.800000px;}
._19_c00437{width:39.252000px;}
._c_c00437{width:41.088000px;}
._26_c00437{width:42.456000px;}
._4_c00437{width:43.872000px;}
._f_c00437{width:45.888000px;}
._2a_c00437{width:48.288000px;}
._24_c00437{width:49.308000px;}
._31_c00437{width:51.156000px;}
._7_c00437{width:52.512000px;}
._23_c00437{width:54.780000px;}
._35_c00437{width:56.580000px;}
._2f_c00437{width:58.452000px;}
._3b_c00437{width:59.556000px;}
._10_c00437{width:60.624000px;}
._2d_c00437{width:62.856000px;}
._2c_c00437{width:66.924000px;}
._28_c00437{width:70.020000px;}
._3a_c00437{width:71.928000px;}
._36_c00437{width:76.212000px;}
._39_c00437{width:81.888000px;}
._29_c00437{width:95.892000px;}
._30_c00437{width:142.404000px;}
._11_c00437{width:173.148000px;}
._3c_c00437{width:360.153000px;}
._2b_c00437{width:744.528000px;}
.fc2_c00437{color:transparent;}
.fc1_c00437{color:rgb(128,128,128);}
.fc0_c00437{color:rgb(0,0,0);}
.fs4_c00437{font-size:48.000000px;}
.fs3_c00437{font-size:81.000000px;}
.fs1_c00437{font-size:84.000000px;}
.fs2_c00437{font-size:93.000000px;}
.fs0_c00437{font-size:96.000000px;}
.y0_c00437{bottom:0.000000px;}
.y25_c00437{bottom:3.105000px;}
.y24_c00437{bottom:7.228357px;}
.y23_c00437{bottom:133.680000px;}
.y22_c00437{bottom:161.730000px;}
.y21_c00437{bottom:195.780000px;}
.y20_c00437{bottom:229.830000px;}
.y1f_c00437{bottom:265.380000px;}
.y1e_c00437{bottom:298.080000px;}
.y1d_c00437{bottom:332.730000px;}
.y1c_c00437{bottom:366.180000px;}
.y1b_c00437{bottom:400.230000px;}
.y1a_c00437{bottom:434.430000px;}
.y19_c00437{bottom:467.880000px;}
.y18_c00437{bottom:501.930000px;}
.y17_c00437{bottom:535.380000px;}
.y16_c00437{bottom:569.430000px;}
.y15_c00437{bottom:602.880000px;}
.y14_c00437{bottom:636.630000px;}
.y13_c00437{bottom:670.680000px;}
.y12_c00437{bottom:703.980000px;}
.y11_c00437{bottom:738.480000px;}
.y10_c00437{bottom:770.880000px;}
.yf_c00437{bottom:804.930000px;}
.ye_c00437{bottom:840.480000px;}
.yd_c00437{bottom:868.680000px;}
.yc_c00437{bottom:905.580000px;}
.yb_c00437{bottom:939.930000px;}
.ya_c00437{bottom:973.380000px;}
.y9_c00437{bottom:1005.480000px;}
.y8_c00437{bottom:1038.780000px;}
.y7_c00437{bottom:1072.230000px;}
.y6_c00437{bottom:1105.980000px;}
.y5_c00437{bottom:1139.430000px;}
.y4_c00437{bottom:1172.880000px;}
.y3_c00437{bottom:1206.330000px;}
.y2_c00437{bottom:1239.030000px;}
.y1_c00437{bottom:1273.680000px;}
.h5_c00437{height:13.200074px;}
.h6_c00437{height:43.804688px;}
.h4_c00437{height:98.314453px;}
.h3_c00437{height:106.353516px;}
.h2_c00437{height:121.546875px;}
.h0_c00437{height:1382.700000px;}
.h1_c00437{height:1383.000000px;}
.w2_c00437{width:104.875500px;}
.w0_c00437{width:863.175000px;}
.w1_c00437{width:863.250000px;}
.x0_c00437{left:0.000000px;}
.x2_c00437{left:255.600000px;}
.x1_c00437{left:256.800000px;}
.x4_c00437{left:257.850000px;}
.x5_c00437{left:260.100000px;}
.x7_c00437{left:262.200000px;}
.x3_c00437{left:263.250000px;}
.x8_c00437{left:264.900000px;}
.x9_c00437{left:265.950000px;}
.xa_c00437{left:267.000000px;}
.xb_c00437{left:300.600000px;}
.xd_c00437{left:383.401749px;}
.x6_c00437{left:408.600000px;}
.xc_c00437{left:793.050000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls3_c00437{letter-spacing:2.666667pt;}
.ls2_c00437{letter-spacing:8.000000pt;}
.ls0_c00437{letter-spacing:12.704000pt;}
.ws0_c00437{word-spacing:-25.994667pt;}
.ws1_c00437{word-spacing:-20.565333pt;}
.ws2_c00437{word-spacing:0.000000pt;}
._33_c00437{margin-left:-35.957333pt;}
._34_c00437{margin-left:-15.360000pt;}
._16_c00437{margin-left:-10.752000pt;}
._37_c00437{margin-left:-9.557333pt;}
._1f_c00437{margin-left:-8.586667pt;}
._32_c00437{margin-left:-6.522667pt;}
._2e_c00437{margin-left:-5.333333pt;}
._21_c00437{margin-left:-3.914667pt;}
._5_c00437{margin-left:-2.218667pt;}
._e_c00437{margin-left:-1.024000pt;}
._1_c00437{width:1.109333pt;}
._0_c00437{width:2.218667pt;}
._3_c00437{width:3.925333pt;}
._9_c00437{width:4.949333pt;}
._d_c00437{width:6.741333pt;}
._1b_c00437{width:7.957333pt;}
._1a_c00437{width:8.885333pt;}
._b_c00437{width:9.898667pt;}
._20_c00437{width:10.848000pt;}
._15_c00437{width:11.872000pt;}
._14_c00437{width:12.842667pt;}
._13_c00437{width:13.802667pt;}
._1e_c00437{width:15.306667pt;}
._12_c00437{width:16.426667pt;}
._38_c00437{width:17.610667pt;}
._a_c00437{width:18.602667pt;}
._17_c00437{width:19.637333pt;}
._25_c00437{width:21.728000pt;}
._27_c00437{width:22.986667pt;}
._3d_c00437{width:23.925333pt;}
._2_c00437{width:25.173333pt;}
._1c_c00437{width:26.858667pt;}
._8_c00437{width:28.416000pt;}
._18_c00437{width:29.536000pt;}
._1d_c00437{width:31.328000pt;}
._6_c00437{width:32.426667pt;}
._22_c00437{width:33.600000pt;}
._19_c00437{width:34.890667pt;}
._c_c00437{width:36.522667pt;}
._26_c00437{width:37.738667pt;}
._4_c00437{width:38.997333pt;}
._f_c00437{width:40.789333pt;}
._2a_c00437{width:42.922667pt;}
._24_c00437{width:43.829333pt;}
._31_c00437{width:45.472000pt;}
._7_c00437{width:46.677333pt;}
._23_c00437{width:48.693333pt;}
._35_c00437{width:50.293333pt;}
._2f_c00437{width:51.957333pt;}
._3b_c00437{width:52.938667pt;}
._10_c00437{width:53.888000pt;}
._2d_c00437{width:55.872000pt;}
._2c_c00437{width:59.488000pt;}
._28_c00437{width:62.240000pt;}
._3a_c00437{width:63.936000pt;}
._36_c00437{width:67.744000pt;}
._39_c00437{width:72.789333pt;}
._29_c00437{width:85.237333pt;}
._30_c00437{width:126.581333pt;}
._11_c00437{width:153.909333pt;}
._3c_c00437{width:320.136000pt;}
._2b_c00437{width:661.802667pt;}
.fs4_c00437{font-size:42.666667pt;}
.fs3_c00437{font-size:72.000000pt;}
.fs1_c00437{font-size:74.666667pt;}
.fs2_c00437{font-size:82.666667pt;}
.fs0_c00437{font-size:85.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y25_c00437{bottom:2.760000pt;}
.y24_c00437{bottom:6.425206pt;}
.y23_c00437{bottom:118.826667pt;}
.y22_c00437{bottom:143.760000pt;}
.y21_c00437{bottom:174.026667pt;}
.y20_c00437{bottom:204.293333pt;}
.y1f_c00437{bottom:235.893333pt;}
.y1e_c00437{bottom:264.960000pt;}
.y1d_c00437{bottom:295.760000pt;}
.y1c_c00437{bottom:325.493333pt;}
.y1b_c00437{bottom:355.760000pt;}
.y1a_c00437{bottom:386.160000pt;}
.y19_c00437{bottom:415.893333pt;}
.y18_c00437{bottom:446.160000pt;}
.y17_c00437{bottom:475.893333pt;}
.y16_c00437{bottom:506.160000pt;}
.y15_c00437{bottom:535.893333pt;}
.y14_c00437{bottom:565.893333pt;}
.y13_c00437{bottom:596.160000pt;}
.y12_c00437{bottom:625.760000pt;}
.y11_c00437{bottom:656.426667pt;}
.y10_c00437{bottom:685.226667pt;}
.yf_c00437{bottom:715.493333pt;}
.ye_c00437{bottom:747.093333pt;}
.yd_c00437{bottom:772.160000pt;}
.yc_c00437{bottom:804.960000pt;}
.yb_c00437{bottom:835.493333pt;}
.ya_c00437{bottom:865.226667pt;}
.y9_c00437{bottom:893.760000pt;}
.y8_c00437{bottom:923.360000pt;}
.y7_c00437{bottom:953.093333pt;}
.y6_c00437{bottom:983.093333pt;}
.y5_c00437{bottom:1012.826667pt;}
.y4_c00437{bottom:1042.560000pt;}
.y3_c00437{bottom:1072.293333pt;}
.y2_c00437{bottom:1101.360000pt;}
.y1_c00437{bottom:1132.160000pt;}
.h5_c00437{height:11.733399pt;}
.h6_c00437{height:38.937500pt;}
.h4_c00437{height:87.390625pt;}
.h3_c00437{height:94.536458pt;}
.h2_c00437{height:108.041667pt;}
.h0_c00437{height:1229.066667pt;}
.h1_c00437{height:1229.333333pt;}
.w2_c00437{width:93.222667pt;}
.w0_c00437{width:767.266667pt;}
.w1_c00437{width:767.333333pt;}
.x0_c00437{left:0.000000pt;}
.x2_c00437{left:227.200000pt;}
.x1_c00437{left:228.266667pt;}
.x4_c00437{left:229.200000pt;}
.x5_c00437{left:231.200000pt;}
.x7_c00437{left:233.066667pt;}
.x3_c00437{left:234.000000pt;}
.x8_c00437{left:235.466667pt;}
.x9_c00437{left:236.400000pt;}
.xa_c00437{left:237.333333pt;}
.xb_c00437{left:267.200000pt;}
.xd_c00437{left:340.801554pt;}
.x6_c00437{left:363.200000pt;}
.xc_c00437{left:704.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a7bc376641d7fe9fb3b8f5df.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_58064647c4a84aeb1b9cd16a.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls0_c00438{letter-spacing:0.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:-20.244000px;}
.ws1_c00438{word-spacing:0.000000px;}
._42_c00438{margin-left:-84.120000px;}
._36_c00438{margin-left:-73.332000px;}
._35_c00438{margin-left:-71.988000px;}
._10_c00438{margin-left:-70.176000px;}
._f_c00438{margin-left:-45.312000px;}
._3d_c00438{margin-left:-37.536000px;}
._40_c00438{margin-left:-32.544000px;}
._33_c00438{margin-left:-30.912000px;}
._37_c00438{margin-left:-26.148000px;}
._29_c00438{margin-left:-19.908000px;}
._24_c00438{margin-left:-18.624000px;}
._45_c00438{margin-left:-17.472000px;}
._39_c00438{margin-left:-16.224000px;}
._23_c00438{margin-left:-13.824000px;}
._31_c00438{margin-left:-11.616000px;}
._2c_c00438{margin-left:-10.500000px;}
._15_c00438{margin-left:-8.448000px;}
._0_c00438{margin-left:-7.104000px;}
._14_c00438{margin-left:-5.280000px;}
._1_c00438{margin-left:-3.840000px;}
._18_c00438{margin-left:-2.688000px;}
._3_c00438{margin-left:-1.632000px;}
._a_c00438{width:1.152000px;}
._7_c00438{width:2.304000px;}
._5_c00438{width:3.840000px;}
._6_c00438{width:4.992000px;}
._2_c00438{width:7.008000px;}
._8_c00438{width:8.928000px;}
._12_c00438{width:10.272000px;}
._1c_c00438{width:11.424000px;}
._1f_c00438{width:13.152000px;}
._16_c00438{width:14.784000px;}
._e_c00438{width:16.704000px;}
._27_c00438{width:18.252000px;}
._3f_c00438{width:19.656000px;}
._17_c00438{width:21.696000px;}
._2b_c00438{width:23.076000px;}
._1d_c00438{width:24.672000px;}
._2a_c00438{width:25.920000px;}
._4_c00438{width:27.552000px;}
._1a_c00438{width:28.608000px;}
._9_c00438{width:30.624000px;}
._13_c00438{width:32.256000px;}
._47_c00438{width:33.804000px;}
._21_c00438{width:35.040000px;}
._b_c00438{width:37.056000px;}
._11_c00438{width:38.400000px;}
._20_c00438{width:40.800000px;}
._19_c00438{width:42.912000px;}
._2e_c00438{width:44.724000px;}
._25_c00438{width:45.888000px;}
._30_c00438{width:46.944000px;}
._1b_c00438{width:48.192000px;}
._26_c00438{width:49.692000px;}
._3e_c00438{width:51.552000px;}
._22_c00438{width:52.704000px;}
._28_c00438{width:54.492000px;}
._2f_c00438{width:56.088000px;}
._1e_c00438{width:58.656000px;}
._49_c00438{width:63.204000px;}
._44_c00438{width:65.664000px;}
._3b_c00438{width:67.116000px;}
._c_c00438{width:68.928000px;}
._2d_c00438{width:71.460000px;}
._48_c00438{width:73.512000px;}
._d_c00438{width:93.312000px;}
._4a_c00438{width:105.024000px;}
._41_c00438{width:109.956000px;}
._34_c00438{width:125.544000px;}
._38_c00438{width:131.712000px;}
._3c_c00438{width:138.144000px;}
._46_c00438{width:181.152000px;}
._32_c00438{width:354.732000px;}
._43_c00438{width:390.432000px;}
._3a_c00438{width:454.464000px;}
._4b_c00438{width:1966.296000px;}
.fc2_c00438{color:transparent;}
.fc1_c00438{color:rgb(128,128,128);}
.fc0_c00438{color:rgb(0,0,0);}
.fs2_c00438{font-size:48.000000px;}
.fs1_c00438{font-size:84.000000px;}
.fs0_c00438{font-size:96.000000px;}
.y0_c00438{bottom:0.000000px;}
.y26_c00438{bottom:3.105000px;}
.y25_c00438{bottom:7.228369px;}
.y24_c00438{bottom:105.270000px;}
.y23_c00438{bottom:139.320000px;}
.y22_c00438{bottom:173.970000px;}
.y21_c00438{bottom:208.170000px;}
.y20_c00438{bottom:242.370000px;}
.y1f_c00438{bottom:275.970000px;}
.y1e_c00438{bottom:309.870000px;}
.y1d_c00438{bottom:343.620000px;}
.y1c_c00438{bottom:377.370000px;}
.y1b_c00438{bottom:410.670000px;}
.y1a_c00438{bottom:444.120000px;}
.y19_c00438{bottom:477.570000px;}
.y18_c00438{bottom:511.620000px;}
.y17_c00438{bottom:545.670000px;}
.y16_c00438{bottom:580.170000px;}
.y15_c00438{bottom:613.170000px;}
.y14_c00438{bottom:646.320000px;}
.y13_c00438{bottom:680.370000px;}
.y12_c00438{bottom:712.470000px;}
.y11_c00438{bottom:746.820000px;}
.y10_c00438{bottom:780.870000px;}
.yf_c00438{bottom:814.020000px;}
.ye_c00438{bottom:847.170000px;}
.yd_c00438{bottom:878.220000px;}
.yc_c00438{bottom:913.320000px;}
.yb_c00438{bottom:946.920000px;}
.ya_c00438{bottom:980.070000px;}
.y9_c00438{bottom:1012.770000px;}
.y8_c00438{bottom:1046.820000px;}
.y7_c00438{bottom:1080.570000px;}
.y6_c00438{bottom:1112.970000px;}
.y5_c00438{bottom:1146.420000px;}
.y4_c00438{bottom:1178.820000px;}
.y3_c00438{bottom:1212.570000px;}
.y2_c00438{bottom:1245.720000px;}
.y1_c00438{bottom:1279.170000px;}
.h4_c00438{height:13.200073px;}
.h5_c00438{height:43.804688px;}
.h3_c00438{height:106.353516px;}
.h2_c00438{height:121.546875px;}
.h0_c00438{height:1383.450000px;}
.h1_c00438{height:1383.750000px;}
.w2_c00438{width:104.875500px;}
.w0_c00438{width:878.025000px;}
.w1_c00438{width:878.250000px;}
.x0_c00438{left:0.000000px;}
.xa_c00438{left:42.300000px;}
.x9_c00438{left:45.000000px;}
.x8_c00438{left:46.200000px;}
.x7_c00438{left:47.700000px;}
.x6_c00438{left:48.900000px;}
.x5_c00438{left:49.950000px;}
.x4_c00438{left:51.000000px;}
.x3_c00438{left:52.650000px;}
.x2_c00438{left:54.300000px;}
.x1_c00438{left:56.400000px;}
.xb_c00438{left:390.826721px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws0_c00438{word-spacing:-17.994667pt;}
.ws1_c00438{word-spacing:0.000000pt;}
._42_c00438{margin-left:-74.773333pt;}
._36_c00438{margin-left:-65.184000pt;}
._35_c00438{margin-left:-63.989333pt;}
._10_c00438{margin-left:-62.378667pt;}
._f_c00438{margin-left:-40.277333pt;}
._3d_c00438{margin-left:-33.365333pt;}
._40_c00438{margin-left:-28.928000pt;}
._33_c00438{margin-left:-27.477333pt;}
._37_c00438{margin-left:-23.242667pt;}
._29_c00438{margin-left:-17.696000pt;}
._24_c00438{margin-left:-16.554667pt;}
._45_c00438{margin-left:-15.530667pt;}
._39_c00438{margin-left:-14.421333pt;}
._23_c00438{margin-left:-12.288000pt;}
._31_c00438{margin-left:-10.325333pt;}
._2c_c00438{margin-left:-9.333333pt;}
._15_c00438{margin-left:-7.509333pt;}
._0_c00438{margin-left:-6.314667pt;}
._14_c00438{margin-left:-4.693333pt;}
._1_c00438{margin-left:-3.413333pt;}
._18_c00438{margin-left:-2.389333pt;}
._3_c00438{margin-left:-1.450667pt;}
._a_c00438{width:1.024000pt;}
._7_c00438{width:2.048000pt;}
._5_c00438{width:3.413333pt;}
._6_c00438{width:4.437333pt;}
._2_c00438{width:6.229333pt;}
._8_c00438{width:7.936000pt;}
._12_c00438{width:9.130667pt;}
._1c_c00438{width:10.154667pt;}
._1f_c00438{width:11.690667pt;}
._16_c00438{width:13.141333pt;}
._e_c00438{width:14.848000pt;}
._27_c00438{width:16.224000pt;}
._3f_c00438{width:17.472000pt;}
._17_c00438{width:19.285333pt;}
._2b_c00438{width:20.512000pt;}
._1d_c00438{width:21.930667pt;}
._2a_c00438{width:23.040000pt;}
._4_c00438{width:24.490667pt;}
._1a_c00438{width:25.429333pt;}
._9_c00438{width:27.221333pt;}
._13_c00438{width:28.672000pt;}
._47_c00438{width:30.048000pt;}
._21_c00438{width:31.146667pt;}
._b_c00438{width:32.938667pt;}
._11_c00438{width:34.133333pt;}
._20_c00438{width:36.266667pt;}
._19_c00438{width:38.144000pt;}
._2e_c00438{width:39.754667pt;}
._25_c00438{width:40.789333pt;}
._30_c00438{width:41.728000pt;}
._1b_c00438{width:42.837333pt;}
._26_c00438{width:44.170667pt;}
._3e_c00438{width:45.824000pt;}
._22_c00438{width:46.848000pt;}
._28_c00438{width:48.437333pt;}
._2f_c00438{width:49.856000pt;}
._1e_c00438{width:52.138667pt;}
._49_c00438{width:56.181333pt;}
._44_c00438{width:58.368000pt;}
._3b_c00438{width:59.658667pt;}
._c_c00438{width:61.269333pt;}
._2d_c00438{width:63.520000pt;}
._48_c00438{width:65.344000pt;}
._d_c00438{width:82.944000pt;}
._4a_c00438{width:93.354667pt;}
._41_c00438{width:97.738667pt;}
._34_c00438{width:111.594667pt;}
._38_c00438{width:117.077333pt;}
._3c_c00438{width:122.794667pt;}
._46_c00438{width:161.024000pt;}
._32_c00438{width:315.317333pt;}
._43_c00438{width:347.050667pt;}
._3a_c00438{width:403.968000pt;}
._4b_c00438{width:1747.818667pt;}
.fs2_c00438{font-size:42.666667pt;}
.fs1_c00438{font-size:74.666667pt;}
.fs0_c00438{font-size:85.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y26_c00438{bottom:2.760000pt;}
.y25_c00438{bottom:6.425217pt;}
.y24_c00438{bottom:93.573333pt;}
.y23_c00438{bottom:123.840000pt;}
.y22_c00438{bottom:154.640000pt;}
.y21_c00438{bottom:185.040000pt;}
.y20_c00438{bottom:215.440000pt;}
.y1f_c00438{bottom:245.306667pt;}
.y1e_c00438{bottom:275.440000pt;}
.y1d_c00438{bottom:305.440000pt;}
.y1c_c00438{bottom:335.440000pt;}
.y1b_c00438{bottom:365.040000pt;}
.y1a_c00438{bottom:394.773333pt;}
.y19_c00438{bottom:424.506667pt;}
.y18_c00438{bottom:454.773333pt;}
.y17_c00438{bottom:485.040000pt;}
.y16_c00438{bottom:515.706667pt;}
.y15_c00438{bottom:545.040000pt;}
.y14_c00438{bottom:574.506667pt;}
.y13_c00438{bottom:604.773333pt;}
.y12_c00438{bottom:633.306667pt;}
.y11_c00438{bottom:663.840000pt;}
.y10_c00438{bottom:694.106667pt;}
.yf_c00438{bottom:723.573333pt;}
.ye_c00438{bottom:753.040000pt;}
.yd_c00438{bottom:780.640000pt;}
.yc_c00438{bottom:811.840000pt;}
.yb_c00438{bottom:841.706667pt;}
.ya_c00438{bottom:871.173333pt;}
.y9_c00438{bottom:900.240000pt;}
.y8_c00438{bottom:930.506667pt;}
.y7_c00438{bottom:960.506667pt;}
.y6_c00438{bottom:989.306667pt;}
.y5_c00438{bottom:1019.040000pt;}
.y4_c00438{bottom:1047.840000pt;}
.y3_c00438{bottom:1077.840000pt;}
.y2_c00438{bottom:1107.306667pt;}
.y1_c00438{bottom:1137.040000pt;}
.h4_c00438{height:11.733399pt;}
.h5_c00438{height:38.937500pt;}
.h3_c00438{height:94.536458pt;}
.h2_c00438{height:108.041667pt;}
.h0_c00438{height:1229.733333pt;}
.h1_c00438{height:1230.000000pt;}
.w2_c00438{width:93.222667pt;}
.w0_c00438{width:780.466667pt;}
.w1_c00438{width:780.666667pt;}
.x0_c00438{left:0.000000pt;}
.xa_c00438{left:37.600000pt;}
.x9_c00438{left:40.000000pt;}
.x8_c00438{left:41.066667pt;}
.x7_c00438{left:42.400000pt;}
.x6_c00438{left:43.466667pt;}
.x5_c00438{left:44.400000pt;}
.x4_c00438{left:45.333333pt;}
.x3_c00438{left:46.800000pt;}
.x2_c00438{left:48.266667pt;}
.x1_c00438{left:50.133333pt;}
.xb_c00438{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22f8f1a5de8acbd94abf09b9.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_a24315310bf97c2fe0b892a6.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_b228625c08be5ae1fea0b284.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;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_c00439;src:url('chunks/assets/font_03e8c14f81c171f45852b258.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00439;src:url('chunks/assets/font_4aabad7768ecfb33f7a8ec90.woff2')format("woff");}.ff6_c00439{font-family:ff6_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00439;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00439{font-family:ff7_c00439;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00439{vertical-align:-46.800000px;}
.v0_c00439{vertical-align:0.000000px;}
.ls3_c00439{letter-spacing:-18.000000px;}
.ls4_c00439{letter-spacing:-3.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.ls1_c00439{letter-spacing:6.000000px;}
.ls2_c00439{letter-spacing:9.000000px;}
.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;}
}
.ws2_c00439{word-spacing:-61.044000px;}
.ws4_c00439{word-spacing:-29.244000px;}
.ws0_c00439{word-spacing:-20.244000px;}
.ws6_c00439{word-spacing:-17.967000px;}
.ws7_c00439{word-spacing:0.000000px;}
.ws3_c00439{word-spacing:5.460000px;}
.ws1_c00439{word-spacing:9.672000px;}
.ws5_c00439{word-spacing:24.120000px;}
._40_c00439{margin-left:-180.408000px;}
._42_c00439{margin-left:-107.940000px;}
._2f_c00439{margin-left:-68.928000px;}
._41_c00439{margin-left:-63.420000px;}
._31_c00439{margin-left:-32.988000px;}
._1e_c00439{margin-left:-29.568000px;}
._33_c00439{margin-left:-17.952000px;}
._39_c00439{margin-left:-16.800000px;}
._0_c00439{margin-left:-15.456000px;}
._43_c00439{margin-left:-13.485000px;}
._38_c00439{margin-left:-11.712000px;}
._16_c00439{margin-left:-10.080000px;}
._1_c00439{margin-left:-8.544000px;}
._17_c00439{margin-left:-6.912000px;}
._36_c00439{margin-left:-5.760000px;}
._28_c00439{margin-left:-3.552000px;}
._20_c00439{margin-left:-2.496000px;}
._22_c00439{margin-left:-1.344000px;}
._3_c00439{width:1.536000px;}
._5_c00439{width:3.360000px;}
._8_c00439{width:4.800000px;}
._6_c00439{width:5.952000px;}
._10_c00439{width:7.104000px;}
._1a_c00439{width:8.352000px;}
._18_c00439{width:9.600000px;}
._c_c00439{width:11.520000px;}
._e_c00439{width:13.152000px;}
._9_c00439{width:14.592000px;}
._b_c00439{width:15.840000px;}
._a_c00439{width:17.568000px;}
._7_c00439{width:18.912000px;}
._d_c00439{width:20.832000px;}
._2b_c00439{width:21.888000px;}
._24_c00439{width:24.576000px;}
._12_c00439{width:26.208000px;}
._1f_c00439{width:27.552000px;}
._25_c00439{width:30.048000px;}
._23_c00439{width:32.064000px;}
._4_c00439{width:34.560000px;}
._2_c00439{width:36.288000px;}
._1d_c00439{width:37.920000px;}
._19_c00439{width:39.264000px;}
._11_c00439{width:40.512000px;}
._29_c00439{width:42.168000px;}
._3d_c00439{width:43.392000px;}
._13_c00439{width:45.504000px;}
._2d_c00439{width:47.520000px;}
._21_c00439{width:50.400000px;}
._15_c00439{width:51.648000px;}
._1b_c00439{width:53.472000px;}
._26_c00439{width:56.448000px;}
._f_c00439{width:57.696000px;}
._2a_c00439{width:60.672000px;}
._14_c00439{width:65.856000px;}
._37_c00439{width:67.104000px;}
._27_c00439{width:75.168000px;}
._2c_c00439{width:76.320000px;}
._3e_c00439{width:79.680000px;}
._32_c00439{width:97.152000px;}
._34_c00439{width:100.872000px;}
._3b_c00439{width:106.080000px;}
._35_c00439{width:120.888000px;}
._1c_c00439{width:128.664000px;}
._30_c00439{width:143.928000px;}
._3a_c00439{width:146.832000px;}
._3f_c00439{width:254.784000px;}
._3c_c00439{width:329.664000px;}
._2e_c00439{width:353.088000px;}
.fc2_c00439{color:transparent;}
.fc1_c00439{color:rgb(128,128,128);}
.fc0_c00439{color:rgb(0,0,0);}
.fs8_c00439{font-size:48.000000px;}
.fs5_c00439{font-size:60.000000px;}
.fs1_c00439{font-size:78.000000px;}
.fs2_c00439{font-size:84.000000px;}
.fs7_c00439{font-size:87.000000px;}
.fs0_c00439{font-size:96.000000px;}
.fs4_c00439{font-size:99.000000px;}
.fs3_c00439{font-size:102.000000px;}
.fs6_c00439{font-size:420.000000px;}
.y0_c00439{bottom:0.000000px;}
.y1f_c00439{bottom:3.105000px;}
.y1e_c00439{bottom:7.228357px;}
.y1d_c00439{bottom:330.180000px;}
.y1c_c00439{bottom:352.680000px;}
.y1b_c00439{bottom:407.430000px;}
.y1a_c00439{bottom:442.530000px;}
.y19_c00439{bottom:476.580000px;}
.y18_c00439{bottom:511.680000px;}
.y17_c00439{bottom:544.080000px;}
.y16_c00439{bottom:577.830000px;}
.y15_c00439{bottom:611.580000px;}
.y14_c00439{bottom:644.730000px;}
.y13_c00439{bottom:678.330000px;}
.y12_c00439{bottom:710.730000px;}
.y11_c00439{bottom:745.230000px;}
.y10_c00439{bottom:778.230000px;}
.yf_c00439{bottom:813.480000px;}
.ye_c00439{bottom:847.230000px;}
.yd_c00439{bottom:879.630000px;}
.yc_c00439{bottom:912.030000px;}
.yb_c00439{bottom:946.680000px;}
.ya_c00439{bottom:979.830000px;}
.y9_c00439{bottom:1013.130000px;}
.y8_c00439{bottom:1046.280000px;}
.y7_c00439{bottom:1080.030000px;}
.y6_c00439{bottom:1113.180000px;}
.y5_c00439{bottom:1146.180000px;}
.y4_c00439{bottom:1180.530000px;}
.y3_c00439{bottom:1212.330000px;}
.y2_c00439{bottom:1245.780000px;}
.y1_c00439{bottom:1279.080000px;}
.h5_c00439{height:13.200074px;}
.h6_c00439{height:43.804688px;}
.h4_c00439{height:110.151855px;}
.h2_c00439{height:121.546875px;}
.h3_c00439{height:365.407031px;}
.h0_c00439{height:1382.700000px;}
.h1_c00439{height:1383.000000px;}
.w2_c00439{width:104.875500px;}
.w0_c00439{width:863.175000px;}
.w1_c00439{width:863.250000px;}
.x0_c00439{left:0.000000px;}
.x4_c00439{left:62.400000px;}
.x6_c00439{left:98.550000px;}
.x3_c00439{left:148.500000px;}
.x1_c00439{left:242.700000px;}
.x2_c00439{left:244.350000px;}
.x7_c00439{left:247.050000px;}
.x9_c00439{left:248.700000px;}
.x5_c00439{left:292.350000px;}
.x8_c00439{left:298.800000px;}
.xc_c00439{left:383.401749px;}
.xa_c00439{left:423.900000px;}
.xb_c00439{left:456.300000px;}
@media print{
.v1_c00439{vertical-align:-41.600000pt;}
.v0_c00439{vertical-align:0.000000pt;}
.ls3_c00439{letter-spacing:-16.000000pt;}
.ls4_c00439{letter-spacing:-2.666667pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ls1_c00439{letter-spacing:5.333333pt;}
.ls2_c00439{letter-spacing:8.000000pt;}
.ws2_c00439{word-spacing:-54.261333pt;}
.ws4_c00439{word-spacing:-25.994667pt;}
.ws0_c00439{word-spacing:-17.994667pt;}
.ws6_c00439{word-spacing:-15.970667pt;}
.ws7_c00439{word-spacing:0.000000pt;}
.ws3_c00439{word-spacing:4.853333pt;}
.ws1_c00439{word-spacing:8.597333pt;}
.ws5_c00439{word-spacing:21.440000pt;}
._40_c00439{margin-left:-160.362667pt;}
._42_c00439{margin-left:-95.946667pt;}
._2f_c00439{margin-left:-61.269333pt;}
._41_c00439{margin-left:-56.373333pt;}
._31_c00439{margin-left:-29.322667pt;}
._1e_c00439{margin-left:-26.282667pt;}
._33_c00439{margin-left:-15.957333pt;}
._39_c00439{margin-left:-14.933333pt;}
._0_c00439{margin-left:-13.738667pt;}
._43_c00439{margin-left:-11.986667pt;}
._38_c00439{margin-left:-10.410667pt;}
._16_c00439{margin-left:-8.960000pt;}
._1_c00439{margin-left:-7.594667pt;}
._17_c00439{margin-left:-6.144000pt;}
._36_c00439{margin-left:-5.120000pt;}
._28_c00439{margin-left:-3.157333pt;}
._20_c00439{margin-left:-2.218667pt;}
._22_c00439{margin-left:-1.194667pt;}
._3_c00439{width:1.365333pt;}
._5_c00439{width:2.986667pt;}
._8_c00439{width:4.266667pt;}
._6_c00439{width:5.290667pt;}
._10_c00439{width:6.314667pt;}
._1a_c00439{width:7.424000pt;}
._18_c00439{width:8.533333pt;}
._c_c00439{width:10.240000pt;}
._e_c00439{width:11.690667pt;}
._9_c00439{width:12.970667pt;}
._b_c00439{width:14.080000pt;}
._a_c00439{width:15.616000pt;}
._7_c00439{width:16.810667pt;}
._d_c00439{width:18.517333pt;}
._2b_c00439{width:19.456000pt;}
._24_c00439{width:21.845333pt;}
._12_c00439{width:23.296000pt;}
._1f_c00439{width:24.490667pt;}
._25_c00439{width:26.709333pt;}
._23_c00439{width:28.501333pt;}
._4_c00439{width:30.720000pt;}
._2_c00439{width:32.256000pt;}
._1d_c00439{width:33.706667pt;}
._19_c00439{width:34.901333pt;}
._11_c00439{width:36.010667pt;}
._29_c00439{width:37.482667pt;}
._3d_c00439{width:38.570667pt;}
._13_c00439{width:40.448000pt;}
._2d_c00439{width:42.240000pt;}
._21_c00439{width:44.800000pt;}
._15_c00439{width:45.909333pt;}
._1b_c00439{width:47.530667pt;}
._26_c00439{width:50.176000pt;}
._f_c00439{width:51.285333pt;}
._2a_c00439{width:53.930667pt;}
._14_c00439{width:58.538667pt;}
._37_c00439{width:59.648000pt;}
._27_c00439{width:66.816000pt;}
._2c_c00439{width:67.840000pt;}
._3e_c00439{width:70.826667pt;}
._32_c00439{width:86.357333pt;}
._34_c00439{width:89.664000pt;}
._3b_c00439{width:94.293333pt;}
._35_c00439{width:107.456000pt;}
._1c_c00439{width:114.368000pt;}
._30_c00439{width:127.936000pt;}
._3a_c00439{width:130.517333pt;}
._3f_c00439{width:226.474667pt;}
._3c_c00439{width:293.034667pt;}
._2e_c00439{width:313.856000pt;}
.fs8_c00439{font-size:42.666667pt;}
.fs5_c00439{font-size:53.333333pt;}
.fs1_c00439{font-size:69.333333pt;}
.fs2_c00439{font-size:74.666667pt;}
.fs7_c00439{font-size:77.333333pt;}
.fs0_c00439{font-size:85.333333pt;}
.fs4_c00439{font-size:88.000000pt;}
.fs3_c00439{font-size:90.666667pt;}
.fs6_c00439{font-size:373.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y1f_c00439{bottom:2.760000pt;}
.y1e_c00439{bottom:6.425206pt;}
.y1d_c00439{bottom:293.493333pt;}
.y1c_c00439{bottom:313.493333pt;}
.y1b_c00439{bottom:362.160000pt;}
.y1a_c00439{bottom:393.360000pt;}
.y19_c00439{bottom:423.626667pt;}
.y18_c00439{bottom:454.826667pt;}
.y17_c00439{bottom:483.626667pt;}
.y16_c00439{bottom:513.626667pt;}
.y15_c00439{bottom:543.626667pt;}
.y14_c00439{bottom:573.093333pt;}
.y13_c00439{bottom:602.960000pt;}
.y12_c00439{bottom:631.760000pt;}
.y11_c00439{bottom:662.426667pt;}
.y10_c00439{bottom:691.760000pt;}
.yf_c00439{bottom:723.093333pt;}
.ye_c00439{bottom:753.093333pt;}
.yd_c00439{bottom:781.893333pt;}
.yc_c00439{bottom:810.693333pt;}
.yb_c00439{bottom:841.493333pt;}
.ya_c00439{bottom:870.960000pt;}
.y9_c00439{bottom:900.560000pt;}
.y8_c00439{bottom:930.026667pt;}
.y7_c00439{bottom:960.026667pt;}
.y6_c00439{bottom:989.493333pt;}
.y5_c00439{bottom:1018.826667pt;}
.y4_c00439{bottom:1049.360000pt;}
.y3_c00439{bottom:1077.626667pt;}
.y2_c00439{bottom:1107.360000pt;}
.y1_c00439{bottom:1136.960000pt;}
.h5_c00439{height:11.733399pt;}
.h6_c00439{height:38.937500pt;}
.h4_c00439{height:97.912760pt;}
.h2_c00439{height:108.041667pt;}
.h3_c00439{height:324.806250pt;}
.h0_c00439{height:1229.066667pt;}
.h1_c00439{height:1229.333333pt;}
.w2_c00439{width:93.222667pt;}
.w0_c00439{width:767.266667pt;}
.w1_c00439{width:767.333333pt;}
.x0_c00439{left:0.000000pt;}
.x4_c00439{left:55.466667pt;}
.x6_c00439{left:87.600000pt;}
.x3_c00439{left:132.000000pt;}
.x1_c00439{left:215.733333pt;}
.x2_c00439{left:217.200000pt;}
.x7_c00439{left:219.600000pt;}
.x9_c00439{left:221.066667pt;}
.x5_c00439{left:259.866667pt;}
.x8_c00439{left:265.600000pt;}
.xc_c00439{left:340.801554pt;}
.xa_c00439{left:376.800000pt;}
.xb_c00439{left:405.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56d7b68f4a8d74afe8167f7a.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_bb61ea2df022f71b646e8737.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_b8dba28e833fbd11ac5e4aa2.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_03e8c14f81c171f45852b258.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls1_c00440{letter-spacing:-6.000000px;}
.ls2_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:0.300000px;}
.ls3_c00440{letter-spacing:9.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00440{word-spacing:-34.014000px;}
.ws4_c00440{word-spacing:-29.244000px;}
.ws0_c00440{word-spacing:-23.136000px;}
.ws2_c00440{word-spacing:-20.244000px;}
.ws3_c00440{word-spacing:-9.084000px;}
.ws5_c00440{word-spacing:0.000000px;}
._39_c00440{margin-left:-26.097000px;}
._13_c00440{margin-left:-20.544000px;}
._37_c00440{margin-left:-16.044000px;}
._30_c00440{margin-left:-13.530000px;}
._32_c00440{margin-left:-7.074000px;}
._25_c00440{margin-left:-5.727000px;}
._14_c00440{margin-left:-3.744000px;}
._c_c00440{margin-left:-2.457000px;}
._b_c00440{margin-left:-1.170000px;}
._1b_c00440{width:1.572000px;}
._a_c00440{width:2.691000px;}
._e_c00440{width:4.563000px;}
._d_c00440{width:5.883000px;}
._12_c00440{width:7.605000px;}
._1a_c00440{width:9.120000px;}
._11_c00440{width:10.296000px;}
._33_c00440{width:11.361000px;}
._6_c00440{width:12.402000px;}
._17_c00440{width:13.806000px;}
._10_c00440{width:15.327000px;}
._20_c00440{width:16.572000px;}
._7_c00440{width:17.901000px;}
._1_c00440{width:20.007000px;}
._2_c00440{width:21.411000px;}
._0_c00440{width:22.464000px;}
._3_c00440{width:23.985000px;}
._1c_c00440{width:26.121000px;}
._2b_c00440{width:27.552000px;}
._22_c00440{width:30.153000px;}
._29_c00440{width:32.223000px;}
._21_c00440{width:33.912000px;}
._8_c00440{width:35.517000px;}
._23_c00440{width:36.768000px;}
._2a_c00440{width:38.076000px;}
._27_c00440{width:39.279000px;}
._26_c00440{width:40.644000px;}
._5_c00440{width:41.652000px;}
._2d_c00440{width:43.326000px;}
._16_c00440{width:44.694000px;}
._1e_c00440{width:46.809000px;}
._38_c00440{width:47.952000px;}
._1f_c00440{width:49.650000px;}
._f_c00440{width:51.129000px;}
._2f_c00440{width:52.383000px;}
._2e_c00440{width:53.940000px;}
._31_c00440{width:55.296000px;}
._2c_c00440{width:56.424000px;}
._36_c00440{width:57.510000px;}
._35_c00440{width:59.808000px;}
._19_c00440{width:61.554000px;}
._28_c00440{width:63.093000px;}
._15_c00440{width:68.445000px;}
._24_c00440{width:71.670000px;}
._4_c00440{width:116.064000px;}
._9_c00440{width:120.510000px;}
._34_c00440{width:123.351000px;}
._1d_c00440{width:173.664000px;}
._18_c00440{width:261.489000px;}
._3b_c00440{width:811.263000px;}
._3a_c00440{width:955.101000px;}
.fc2_c00440{color:transparent;}
.fc1_c00440{color:rgb(128,128,128);}
.fc0_c00440{color:rgb(0,0,0);}
.fs4_c00440{font-size:48.000000px;}
.fs2_c00440{font-size:84.000000px;}
.fs1_c00440{font-size:96.000000px;}
.fs3_c00440{font-size:99.000000px;}
.fs0_c00440{font-size:117.000000px;}
.y0_c00440{bottom:0.000000px;}
.y24_c00440{bottom:3.105000px;}
.y23_c00440{bottom:7.228369px;}
.y22_c00440{bottom:86.370000px;}
.y21_c00440{bottom:119.070000px;}
.y20_c00440{bottom:154.620000px;}
.y1f_c00440{bottom:189.270000px;}
.y1e_c00440{bottom:222.720000px;}
.y1d_c00440{bottom:256.770000px;}
.y1c_c00440{bottom:290.520000px;}
.y1b_c00440{bottom:324.270000px;}
.y1a_c00440{bottom:358.020000px;}
.y19_c00440{bottom:392.220000px;}
.y18_c00440{bottom:425.520000px;}
.y17_c00440{bottom:459.270000px;}
.y16_c00440{bottom:493.320000px;}
.y15_c00440{bottom:526.770000px;}
.y14_c00440{bottom:560.220000px;}
.y13_c00440{bottom:593.670000px;}
.y12_c00440{bottom:627.420000px;}
.y11_c00440{bottom:661.170000px;}
.y10_c00440{bottom:694.920000px;}
.yf_c00440{bottom:728.220000px;}
.ye_c00440{bottom:761.970000px;}
.yd_c00440{bottom:795.120000px;}
.yc_c00440{bottom:828.270000px;}
.yb_c00440{bottom:860.970000px;}
.ya_c00440{bottom:894.420000px;}
.y9_c00440{bottom:928.470000px;}
.y8_c00440{bottom:961.170000px;}
.y7_c00440{bottom:994.920000px;}
.y6_c00440{bottom:1028.370000px;}
.y5_c00440{bottom:1101.570000px;}
.y4_c00440{bottom:1151.520000px;}
.y3_c00440{bottom:1190.070000px;}
.y2_c00440{bottom:1202.520000px;}
.y1_c00440{bottom:1252.770000px;}
.h4_c00440{height:13.200073px;}
.h5_c00440{height:43.804688px;}
.h3_c00440{height:121.546875px;}
.h2_c00440{height:124.839000px;}
.h0_c00440{height:1383.450000px;}
.h1_c00440{height:1383.750000px;}
.w2_c00440{width:104.875500px;}
.w0_c00440{width:878.025000px;}
.w1_c00440{width:878.250000px;}
.x0_c00440{left:0.000000px;}
.xc_c00440{left:25.650000px;}
.xa_c00440{left:26.700000px;}
.x9_c00440{left:27.900000px;}
.x8_c00440{left:28.950000px;}
.xb_c00440{left:30.600000px;}
.x1_c00440{left:33.000000px;}
.xd_c00440{left:39.150000px;}
.x5_c00440{left:79.650000px;}
.xe_c00440{left:107.700000px;}
.x2_c00440{left:158.250000px;}
.x4_c00440{left:208.200000px;}
.x7_c00440{left:257.850000px;}
.x6_c00440{left:259.500000px;}
.x3_c00440{left:274.350000px;}
.xf_c00440{left:390.826721px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls1_c00440{letter-spacing:-5.333333pt;}
.ls2_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:0.266667pt;}
.ls3_c00440{letter-spacing:8.000000pt;}
.ws1_c00440{word-spacing:-30.234667pt;}
.ws4_c00440{word-spacing:-25.994667pt;}
.ws0_c00440{word-spacing:-20.565333pt;}
.ws2_c00440{word-spacing:-17.994667pt;}
.ws3_c00440{word-spacing:-8.074667pt;}
.ws5_c00440{word-spacing:0.000000pt;}
._39_c00440{margin-left:-23.197333pt;}
._13_c00440{margin-left:-18.261333pt;}
._37_c00440{margin-left:-14.261333pt;}
._30_c00440{margin-left:-12.026667pt;}
._32_c00440{margin-left:-6.288000pt;}
._25_c00440{margin-left:-5.090667pt;}
._14_c00440{margin-left:-3.328000pt;}
._c_c00440{margin-left:-2.184000pt;}
._b_c00440{margin-left:-1.040000pt;}
._1b_c00440{width:1.397333pt;}
._a_c00440{width:2.392000pt;}
._e_c00440{width:4.056000pt;}
._d_c00440{width:5.229333pt;}
._12_c00440{width:6.760000pt;}
._1a_c00440{width:8.106667pt;}
._11_c00440{width:9.152000pt;}
._33_c00440{width:10.098667pt;}
._6_c00440{width:11.024000pt;}
._17_c00440{width:12.272000pt;}
._10_c00440{width:13.624000pt;}
._20_c00440{width:14.730667pt;}
._7_c00440{width:15.912000pt;}
._1_c00440{width:17.784000pt;}
._2_c00440{width:19.032000pt;}
._0_c00440{width:19.968000pt;}
._3_c00440{width:21.320000pt;}
._1c_c00440{width:23.218667pt;}
._2b_c00440{width:24.490667pt;}
._22_c00440{width:26.802667pt;}
._29_c00440{width:28.642667pt;}
._21_c00440{width:30.144000pt;}
._8_c00440{width:31.570667pt;}
._23_c00440{width:32.682667pt;}
._2a_c00440{width:33.845333pt;}
._27_c00440{width:34.914667pt;}
._26_c00440{width:36.128000pt;}
._5_c00440{width:37.024000pt;}
._2d_c00440{width:38.512000pt;}
._16_c00440{width:39.728000pt;}
._1e_c00440{width:41.608000pt;}
._38_c00440{width:42.624000pt;}
._1f_c00440{width:44.133333pt;}
._f_c00440{width:45.448000pt;}
._2f_c00440{width:46.562667pt;}
._2e_c00440{width:47.946667pt;}
._31_c00440{width:49.152000pt;}
._2c_c00440{width:50.154667pt;}
._36_c00440{width:51.120000pt;}
._35_c00440{width:53.162667pt;}
._19_c00440{width:54.714667pt;}
._28_c00440{width:56.082667pt;}
._15_c00440{width:60.840000pt;}
._24_c00440{width:63.706667pt;}
._4_c00440{width:103.168000pt;}
._9_c00440{width:107.120000pt;}
._34_c00440{width:109.645333pt;}
._1d_c00440{width:154.368000pt;}
._18_c00440{width:232.434667pt;}
._3b_c00440{width:721.122667pt;}
._3a_c00440{width:848.978667pt;}
.fs4_c00440{font-size:42.666667pt;}
.fs2_c00440{font-size:74.666667pt;}
.fs1_c00440{font-size:85.333333pt;}
.fs3_c00440{font-size:88.000000pt;}
.fs0_c00440{font-size:104.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y24_c00440{bottom:2.760000pt;}
.y23_c00440{bottom:6.425217pt;}
.y22_c00440{bottom:76.773333pt;}
.y21_c00440{bottom:105.840000pt;}
.y20_c00440{bottom:137.440000pt;}
.y1f_c00440{bottom:168.240000pt;}
.y1e_c00440{bottom:197.973333pt;}
.y1d_c00440{bottom:228.240000pt;}
.y1c_c00440{bottom:258.240000pt;}
.y1b_c00440{bottom:288.240000pt;}
.y1a_c00440{bottom:318.240000pt;}
.y19_c00440{bottom:348.640000pt;}
.y18_c00440{bottom:378.240000pt;}
.y17_c00440{bottom:408.240000pt;}
.y16_c00440{bottom:438.506667pt;}
.y15_c00440{bottom:468.240000pt;}
.y14_c00440{bottom:497.973333pt;}
.y13_c00440{bottom:527.706667pt;}
.y12_c00440{bottom:557.706667pt;}
.y11_c00440{bottom:587.706667pt;}
.y10_c00440{bottom:617.706667pt;}
.yf_c00440{bottom:647.306667pt;}
.ye_c00440{bottom:677.306667pt;}
.yd_c00440{bottom:706.773333pt;}
.yc_c00440{bottom:736.240000pt;}
.yb_c00440{bottom:765.306667pt;}
.ya_c00440{bottom:795.040000pt;}
.y9_c00440{bottom:825.306667pt;}
.y8_c00440{bottom:854.373333pt;}
.y7_c00440{bottom:884.373333pt;}
.y6_c00440{bottom:914.106667pt;}
.y5_c00440{bottom:979.173333pt;}
.y4_c00440{bottom:1023.573333pt;}
.y3_c00440{bottom:1057.840000pt;}
.y2_c00440{bottom:1068.906667pt;}
.y1_c00440{bottom:1113.573333pt;}
.h4_c00440{height:11.733399pt;}
.h5_c00440{height:38.937500pt;}
.h3_c00440{height:108.041667pt;}
.h2_c00440{height:110.968000pt;}
.h0_c00440{height:1229.733333pt;}
.h1_c00440{height:1230.000000pt;}
.w2_c00440{width:93.222667pt;}
.w0_c00440{width:780.466667pt;}
.w1_c00440{width:780.666667pt;}
.x0_c00440{left:0.000000pt;}
.xc_c00440{left:22.800000pt;}
.xa_c00440{left:23.733333pt;}
.x9_c00440{left:24.800000pt;}
.x8_c00440{left:25.733333pt;}
.xb_c00440{left:27.200000pt;}
.x1_c00440{left:29.333333pt;}
.xd_c00440{left:34.800000pt;}
.x5_c00440{left:70.800000pt;}
.xe_c00440{left:95.733333pt;}
.x2_c00440{left:140.666667pt;}
.x4_c00440{left:185.066667pt;}
.x7_c00440{left:229.200000pt;}
.x6_c00440{left:230.666667pt;}
.x3_c00440{left:243.866667pt;}
.xf_c00440{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce6ff39eac0abc72f558be40.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_405942fe3b0ffb5e9aee4928.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls3_c00441{letter-spacing:0.000000px;}
.ls1_c00441{letter-spacing:8.520000px;}
.ls4_c00441{letter-spacing:9.000000px;}
.ls2_c00441{letter-spacing:12.720000px;}
.ls0_c00441{letter-spacing:15.600000px;}
.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;}
}
.ws0_c00441{word-spacing:-72.504000px;}
.ws1_c00441{word-spacing:-63.504000px;}
.ws2_c00441{word-spacing:-23.136000px;}
.ws3_c00441{word-spacing:0.000000px;}
._42_c00441{margin-left:-54.381000px;}
._41_c00441{margin-left:-35.409000px;}
._44_c00441{margin-left:-26.361000px;}
._40_c00441{margin-left:-23.664000px;}
._25_c00441{margin-left:-20.832000px;}
._30_c00441{margin-left:-18.912000px;}
._1e_c00441{margin-left:-16.032000px;}
._26_c00441{margin-left:-14.208000px;}
._43_c00441{margin-left:-12.876000px;}
._3c_c00441{margin-left:-8.928000px;}
._33_c00441{margin-left:-7.776000px;}
._38_c00441{margin-left:-6.432000px;}
._37_c00441{margin-left:-5.184000px;}
._29_c00441{margin-left:-3.648000px;}
._1d_c00441{margin-left:-2.496000px;}
._f_c00441{margin-left:-1.056000px;}
._13_c00441{width:1.056000px;}
._6_c00441{width:2.496000px;}
._2_c00441{width:4.512000px;}
._1_c00441{width:6.048000px;}
._0_c00441{width:7.776000px;}
._4_c00441{width:9.792000px;}
._b_c00441{width:10.848000px;}
._35_c00441{width:12.384000px;}
._32_c00441{width:13.440000px;}
._1f_c00441{width:14.688000px;}
._2a_c00441{width:15.744000px;}
._8_c00441{width:17.280000px;}
._a_c00441{width:18.528000px;}
._2c_c00441{width:19.968000px;}
._1c_c00441{width:22.080000px;}
._2d_c00441{width:24.672000px;}
._3_c00441{width:25.728000px;}
._16_c00441{width:27.072000px;}
._3f_c00441{width:29.184000px;}
._1b_c00441{width:30.240000px;}
._c_c00441{width:31.488000px;}
._28_c00441{width:32.736000px;}
._15_c00441{width:34.176000px;}
._36_c00441{width:36.000000px;}
._e_c00441{width:37.056000px;}
._5_c00441{width:38.400000px;}
._2b_c00441{width:40.416000px;}
._d_c00441{width:41.472000px;}
._22_c00441{width:43.104000px;}
._3d_c00441{width:44.448000px;}
._12_c00441{width:45.504000px;}
._2f_c00441{width:46.896000px;}
._1a_c00441{width:48.000000px;}
._7_c00441{width:49.440000px;}
._14_c00441{width:51.744000px;}
._27_c00441{width:53.664000px;}
._10_c00441{width:55.680000px;}
._2e_c00441{width:58.464000px;}
._18_c00441{width:59.520000px;}
._39_c00441{width:60.864000px;}
._19_c00441{width:64.896000px;}
._23_c00441{width:67.008000px;}
._20_c00441{width:68.640000px;}
._31_c00441{width:71.328000px;}
._9_c00441{width:74.976000px;}
._17_c00441{width:76.992000px;}
._21_c00441{width:78.336000px;}
._3e_c00441{width:79.584000px;}
._24_c00441{width:80.640000px;}
._11_c00441{width:84.288000px;}
._3a_c00441{width:87.480000px;}
._45_c00441{width:122.496000px;}
._34_c00441{width:268.380000px;}
._46_c00441{width:807.921000px;}
._3b_c00441{width:979.872000px;}
._47_c00441{width:1105.074000px;}
.fc2_c00441{color:transparent;}
.fc1_c00441{color:rgb(128,128,128);}
.fc0_c00441{color:rgb(0,0,0);}
.fs4_c00441{font-size:48.000000px;}
.fs1_c00441{font-size:84.000000px;}
.fs3_c00441{font-size:87.000000px;}
.fs0_c00441{font-size:96.000000px;}
.fs2_c00441{font-size:102.000000px;}
.y0_c00441{bottom:0.000000px;}
.y27_c00441{bottom:3.105000px;}
.y26_c00441{bottom:7.228357px;}
.y25_c00441{bottom:88.830000px;}
.y24_c00441{bottom:107.730000px;}
.y23_c00441{bottom:121.230000px;}
.y22_c00441{bottom:156.930000px;}
.y21_c00441{bottom:191.730000px;}
.y20_c00441{bottom:227.130000px;}
.y1f_c00441{bottom:259.830000px;}
.y1e_c00441{bottom:294.330000px;}
.y1d_c00441{bottom:328.680000px;}
.y1c_c00441{bottom:362.430000px;}
.y1b_c00441{bottom:396.630000px;}
.y1a_c00441{bottom:430.680000px;}
.y19_c00441{bottom:464.430000px;}
.y18_c00441{bottom:498.780000px;}
.y17_c00441{bottom:531.930000px;}
.y16_c00441{bottom:566.430000px;}
.y15_c00441{bottom:600.030000px;}
.y14_c00441{bottom:633.780000px;}
.y13_c00441{bottom:667.980000px;}
.y12_c00441{bottom:701.430000px;}
.y11_c00441{bottom:735.030000px;}
.y10_c00441{bottom:768.930000px;}
.yf_c00441{bottom:802.680000px;}
.ye_c00441{bottom:836.730000px;}
.yd_c00441{bottom:870.480000px;}
.yc_c00441{bottom:904.230000px;}
.yb_c00441{bottom:937.530000px;}
.ya_c00441{bottom:971.280000px;}
.y9_c00441{bottom:1004.430000px;}
.y8_c00441{bottom:1037.430000px;}
.y7_c00441{bottom:1071.180000px;}
.y6_c00441{bottom:1104.630000px;}
.y5_c00441{bottom:1137.780000px;}
.y4_c00441{bottom:1171.830000px;}
.y3_c00441{bottom:1205.580000px;}
.y2_c00441{bottom:1238.580000px;}
.y1_c00441{bottom:1272.030000px;}
.h4_c00441{height:13.200074px;}
.h5_c00441{height:43.804688px;}
.h3_c00441{height:110.151855px;}
.h2_c00441{height:121.546875px;}
.h0_c00441{height:1382.700000px;}
.h1_c00441{height:1383.000000px;}
.w2_c00441{width:104.875500px;}
.w0_c00441{width:863.175000px;}
.w1_c00441{width:863.250000px;}
.x0_c00441{left:0.000000px;}
.xb_c00441{left:269.700000px;}
.xa_c00441{left:270.750000px;}
.x6_c00441{left:271.800000px;}
.x7_c00441{left:273.000000px;}
.x5_c00441{left:274.050000px;}
.x3_c00441{left:275.100000px;}
.x4_c00441{left:276.150000px;}
.x2_c00441{left:277.350000px;}
.x9_c00441{left:278.400000px;}
.x1_c00441{left:327.600000px;}
.xd_c00441{left:383.401749px;}
.x8_c00441{left:502.950000px;}
.xc_c00441{left:813.450000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls3_c00441{letter-spacing:0.000000pt;}
.ls1_c00441{letter-spacing:7.573333pt;}
.ls4_c00441{letter-spacing:8.000000pt;}
.ls2_c00441{letter-spacing:11.306667pt;}
.ls0_c00441{letter-spacing:13.866667pt;}
.ws0_c00441{word-spacing:-64.448000pt;}
.ws1_c00441{word-spacing:-56.448000pt;}
.ws2_c00441{word-spacing:-20.565333pt;}
.ws3_c00441{word-spacing:0.000000pt;}
._42_c00441{margin-left:-48.338667pt;}
._41_c00441{margin-left:-31.474667pt;}
._44_c00441{margin-left:-23.432000pt;}
._40_c00441{margin-left:-21.034667pt;}
._25_c00441{margin-left:-18.517333pt;}
._30_c00441{margin-left:-16.810667pt;}
._1e_c00441{margin-left:-14.250667pt;}
._26_c00441{margin-left:-12.629333pt;}
._43_c00441{margin-left:-11.445333pt;}
._3c_c00441{margin-left:-7.936000pt;}
._33_c00441{margin-left:-6.912000pt;}
._38_c00441{margin-left:-5.717333pt;}
._37_c00441{margin-left:-4.608000pt;}
._29_c00441{margin-left:-3.242667pt;}
._1d_c00441{margin-left:-2.218667pt;}
._f_c00441{margin-left:-0.938667pt;}
._13_c00441{width:0.938667pt;}
._6_c00441{width:2.218667pt;}
._2_c00441{width:4.010667pt;}
._1_c00441{width:5.376000pt;}
._0_c00441{width:6.912000pt;}
._4_c00441{width:8.704000pt;}
._b_c00441{width:9.642667pt;}
._35_c00441{width:11.008000pt;}
._32_c00441{width:11.946667pt;}
._1f_c00441{width:13.056000pt;}
._2a_c00441{width:13.994667pt;}
._8_c00441{width:15.360000pt;}
._a_c00441{width:16.469333pt;}
._2c_c00441{width:17.749333pt;}
._1c_c00441{width:19.626667pt;}
._2d_c00441{width:21.930667pt;}
._3_c00441{width:22.869333pt;}
._16_c00441{width:24.064000pt;}
._3f_c00441{width:25.941333pt;}
._1b_c00441{width:26.880000pt;}
._c_c00441{width:27.989333pt;}
._28_c00441{width:29.098667pt;}
._15_c00441{width:30.378667pt;}
._36_c00441{width:32.000000pt;}
._e_c00441{width:32.938667pt;}
._5_c00441{width:34.133333pt;}
._2b_c00441{width:35.925333pt;}
._d_c00441{width:36.864000pt;}
._22_c00441{width:38.314667pt;}
._3d_c00441{width:39.509333pt;}
._12_c00441{width:40.448000pt;}
._2f_c00441{width:41.685333pt;}
._1a_c00441{width:42.666667pt;}
._7_c00441{width:43.946667pt;}
._14_c00441{width:45.994667pt;}
._27_c00441{width:47.701333pt;}
._10_c00441{width:49.493333pt;}
._2e_c00441{width:51.968000pt;}
._18_c00441{width:52.906667pt;}
._39_c00441{width:54.101333pt;}
._19_c00441{width:57.685333pt;}
._23_c00441{width:59.562667pt;}
._20_c00441{width:61.013333pt;}
._31_c00441{width:63.402667pt;}
._9_c00441{width:66.645333pt;}
._17_c00441{width:68.437333pt;}
._21_c00441{width:69.632000pt;}
._3e_c00441{width:70.741333pt;}
._24_c00441{width:71.680000pt;}
._11_c00441{width:74.922667pt;}
._3a_c00441{width:77.760000pt;}
._45_c00441{width:108.885333pt;}
._34_c00441{width:238.560000pt;}
._46_c00441{width:718.152000pt;}
._3b_c00441{width:870.997333pt;}
._47_c00441{width:982.288000pt;}
.fs4_c00441{font-size:42.666667pt;}
.fs1_c00441{font-size:74.666667pt;}
.fs3_c00441{font-size:77.333333pt;}
.fs0_c00441{font-size:85.333333pt;}
.fs2_c00441{font-size:90.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.y27_c00441{bottom:2.760000pt;}
.y26_c00441{bottom:6.425206pt;}
.y25_c00441{bottom:78.960000pt;}
.y24_c00441{bottom:95.760000pt;}
.y23_c00441{bottom:107.760000pt;}
.y22_c00441{bottom:139.493333pt;}
.y21_c00441{bottom:170.426667pt;}
.y20_c00441{bottom:201.893333pt;}
.y1f_c00441{bottom:230.960000pt;}
.y1e_c00441{bottom:261.626667pt;}
.y1d_c00441{bottom:292.160000pt;}
.y1c_c00441{bottom:322.160000pt;}
.y1b_c00441{bottom:352.560000pt;}
.y1a_c00441{bottom:382.826667pt;}
.y19_c00441{bottom:412.826667pt;}
.y18_c00441{bottom:443.360000pt;}
.y17_c00441{bottom:472.826667pt;}
.y16_c00441{bottom:503.493333pt;}
.y15_c00441{bottom:533.360000pt;}
.y14_c00441{bottom:563.360000pt;}
.y13_c00441{bottom:593.760000pt;}
.y12_c00441{bottom:623.493333pt;}
.y11_c00441{bottom:653.360000pt;}
.y10_c00441{bottom:683.493333pt;}
.yf_c00441{bottom:713.493333pt;}
.ye_c00441{bottom:743.760000pt;}
.yd_c00441{bottom:773.760000pt;}
.yc_c00441{bottom:803.760000pt;}
.yb_c00441{bottom:833.360000pt;}
.ya_c00441{bottom:863.360000pt;}
.y9_c00441{bottom:892.826667pt;}
.y8_c00441{bottom:922.160000pt;}
.y7_c00441{bottom:952.160000pt;}
.y6_c00441{bottom:981.893333pt;}
.y5_c00441{bottom:1011.360000pt;}
.y4_c00441{bottom:1041.626667pt;}
.y3_c00441{bottom:1071.626667pt;}
.y2_c00441{bottom:1100.960000pt;}
.y1_c00441{bottom:1130.693333pt;}
.h4_c00441{height:11.733399pt;}
.h5_c00441{height:38.937500pt;}
.h3_c00441{height:97.912760pt;}
.h2_c00441{height:108.041667pt;}
.h0_c00441{height:1229.066667pt;}
.h1_c00441{height:1229.333333pt;}
.w2_c00441{width:93.222667pt;}
.w0_c00441{width:767.266667pt;}
.w1_c00441{width:767.333333pt;}
.x0_c00441{left:0.000000pt;}
.xb_c00441{left:239.733333pt;}
.xa_c00441{left:240.666667pt;}
.x6_c00441{left:241.600000pt;}
.x7_c00441{left:242.666667pt;}
.x5_c00441{left:243.600000pt;}
.x3_c00441{left:244.533333pt;}
.x4_c00441{left:245.466667pt;}
.x2_c00441{left:246.533333pt;}
.x9_c00441{left:247.466667pt;}
.x1_c00441{left:291.200000pt;}
.xd_c00441{left:340.801554pt;}
.x8_c00441{left:447.066667pt;}
.xc_c00441{left:723.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_887625c486fa662529ee7285.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_b8de7531cb229eade6db367c.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_17752601a17d752576a2abc7.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00442;src:url('chunks/assets/font_07257152e4fb5d2ab1a1b9aa.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{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_c00442{vertical-align:0.000000px;}
.ls3_c00442{letter-spacing:-3.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.ls1_c00442{letter-spacing:9.000000px;}
.ls2_c00442{letter-spacing:18.000000px;}
.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:-51.000000px;}
.ws2_c00442{word-spacing:-31.839000px;}
.ws3_c00442{word-spacing:-23.136000px;}
.ws0_c00442{word-spacing:-20.244000px;}
.ws4_c00442{word-spacing:0.000000px;}
._4f_c00442{margin-left:-59.160000px;}
._41_c00442{margin-left:-54.201000px;}
._36_c00442{margin-left:-46.371000px;}
._3f_c00442{margin-left:-39.237000px;}
._3e_c00442{margin-left:-37.671000px;}
._50_c00442{margin-left:-33.408000px;}
._3c_c00442{margin-left:-27.927000px;}
._38_c00442{margin-left:-24.882000px;}
._43_c00442{margin-left:-23.577000px;}
._39_c00442{margin-left:-17.454000px;}
._d_c00442{margin-left:-16.032000px;}
._24_c00442{margin-left:-13.770000px;}
._2f_c00442{margin-left:-12.096000px;}
._e_c00442{margin-left:-8.928000px;}
._30_c00442{margin-left:-7.872000px;}
._4c_c00442{margin-left:-6.360000px;}
._31_c00442{margin-left:-4.896000px;}
._45_c00442{margin-left:-3.486000px;}
._16_c00442{margin-left:-1.920000px;}
._9_c00442{width:1.056000px;}
._1_c00442{width:2.400000px;}
._0_c00442{width:4.320000px;}
._4_c00442{width:5.376000px;}
._5_c00442{width:6.432000px;}
._21_c00442{width:7.680000px;}
._c_c00442{width:8.736000px;}
._6_c00442{width:10.272000px;}
._1f_c00442{width:12.096000px;}
._1d_c00442{width:13.152000px;}
._17_c00442{width:15.552000px;}
._8_c00442{width:17.472000px;}
._29_c00442{width:18.600000px;}
._b_c00442{width:19.680000px;}
._27_c00442{width:21.216000px;}
._2c_c00442{width:24.576000px;}
._3_c00442{width:26.208000px;}
._12_c00442{width:27.264000px;}
._2_c00442{width:28.512000px;}
._34_c00442{width:29.664000px;}
._25_c00442{width:30.720000px;}
._a_c00442{width:32.640000px;}
._22_c00442{width:33.984000px;}
._18_c00442{width:35.040000px;}
._7_c00442{width:36.288000px;}
._23_c00442{width:38.316000px;}
._15_c00442{width:39.360000px;}
._35_c00442{width:40.572000px;}
._26_c00442{width:41.664000px;}
._28_c00442{width:43.296000px;}
._1a_c00442{width:44.736000px;}
._11_c00442{width:46.656000px;}
._13_c00442{width:47.712000px;}
._19_c00442{width:49.152000px;}
._1b_c00442{width:51.216000px;}
._32_c00442{width:53.280000px;}
._2d_c00442{width:56.064000px;}
._1c_c00442{width:58.500000px;}
._f_c00442{width:59.976000px;}
._1e_c00442{width:62.208000px;}
._20_c00442{width:65.088000px;}
._10_c00442{width:66.780000px;}
._2b_c00442{width:67.968000px;}
._40_c00442{width:71.427000px;}
._14_c00442{width:73.344000px;}
._2a_c00442{width:78.144000px;}
._33_c00442{width:87.264000px;}
._51_c00442{width:88.827000px;}
._2e_c00442{width:90.420000px;}
._3a_c00442{width:100.833000px;}
._4b_c00442{width:110.640000px;}
._3d_c00442{width:129.630000px;}
._42_c00442{width:137.460000px;}
._4e_c00442{width:190.206000px;}
._47_c00442{width:220.536000px;}
._4d_c00442{width:227.070000px;}
._3b_c00442{width:252.651000px;}
._52_c00442{width:398.838000px;}
._49_c00442{width:410.241000px;}
._4a_c00442{width:430.821000px;}
._46_c00442{width:473.028000px;}
._48_c00442{width:483.168000px;}
._44_c00442{width:549.057000px;}
._37_c00442{width:682.863000px;}
.fc2_c00442{color:transparent;}
.fc1_c00442{color:rgb(128,128,128);}
.fc0_c00442{color:rgb(0,0,0);}
.fs4_c00442{font-size:42.000000px;}
.fs5_c00442{font-size:45.000000px;}
.fs7_c00442{font-size:48.000000px;}
.fs6_c00442{font-size:63.000000px;}
.fs1_c00442{font-size:84.000000px;}
.fs3_c00442{font-size:87.000000px;}
.fs0_c00442{font-size:96.000000px;}
.fs2_c00442{font-size:102.000000px;}
.y0_c00442{bottom:0.000000px;}
.y25_c00442{bottom:3.105000px;}
.y24_c00442{bottom:7.228369px;}
.y23_c00442{bottom:85.320000px;}
.y22_c00442{bottom:135.720000px;}
.y21_c00442{bottom:145.470000px;}
.y20_c00442{bottom:163.920000px;}
.y1f_c00442{bottom:177.120000px;}
.y1e_c00442{bottom:211.920000px;}
.y1d_c00442{bottom:329.670000px;}
.y1c_c00442{bottom:364.620000px;}
.y1b_c00442{bottom:397.920000px;}
.y1a_c00442{bottom:431.220000px;}
.y19_c00442{bottom:464.670000px;}
.y18_c00442{bottom:498.420000px;}
.y17_c00442{bottom:532.470000px;}
.y16_c00442{bottom:566.370000px;}
.y15_c00442{bottom:599.970000px;}
.y14_c00442{bottom:633.720000px;}
.y13_c00442{bottom:667.170000px;}
.y12_c00442{bottom:700.920000px;}
.y11_c00442{bottom:734.070000px;}
.y10_c00442{bottom:767.070000px;}
.yf_c00442{bottom:800.820000px;}
.ye_c00442{bottom:834.270000px;}
.yd_c00442{bottom:867.420000px;}
.yc_c00442{bottom:900.720000px;}
.yb_c00442{bottom:934.470000px;}
.ya_c00442{bottom:967.170000px;}
.y9_c00442{bottom:1001.070000px;}
.y8_c00442{bottom:1034.670000px;}
.y7_c00442{bottom:1067.820000px;}
.y6_c00442{bottom:1101.870000px;}
.y5_c00442{bottom:1134.570000px;}
.y4_c00442{bottom:1168.470000px;}
.y3_c00442{bottom:1201.170000px;}
.y2_c00442{bottom:1234.470000px;}
.y1_c00442{bottom:1268.220000px;}
.h6_c00442{height:13.200073px;}
.h7_c00442{height:43.804688px;}
.h4_c00442{height:53.176758px;}
.h5_c00442{height:56.975098px;}
.h3_c00442{height:110.151855px;}
.h2_c00442{height:121.546875px;}
.h0_c00442{height:1383.450000px;}
.h1_c00442{height:1383.750000px;}
.w2_c00442{width:104.875500px;}
.w0_c00442{width:878.025000px;}
.w1_c00442{width:878.250000px;}
.x0_c00442{left:0.000000px;}
.x7_c00442{left:31.500000px;}
.x6_c00442{left:33.150000px;}
.x5_c00442{left:34.800000px;}
.x4_c00442{left:35.850000px;}
.x3_c00442{left:39.600000px;}
.x2_c00442{left:40.800000px;}
.x1_c00442{left:42.900000px;}
.x9_c00442{left:209.250000px;}
.x8_c00442{left:220.500000px;}
.xa_c00442{left:229.950000px;}
.xb_c00442{left:259.200000px;}
.xd_c00442{left:390.826721px;}
.xc_c00442{left:552.450000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls3_c00442{letter-spacing:-2.666667pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ls1_c00442{letter-spacing:8.000000pt;}
.ls2_c00442{letter-spacing:16.000000pt;}
.ws1_c00442{word-spacing:-45.333333pt;}
.ws2_c00442{word-spacing:-28.301333pt;}
.ws3_c00442{word-spacing:-20.565333pt;}
.ws0_c00442{word-spacing:-17.994667pt;}
.ws4_c00442{word-spacing:0.000000pt;}
._4f_c00442{margin-left:-52.586667pt;}
._41_c00442{margin-left:-48.178667pt;}
._36_c00442{margin-left:-41.218667pt;}
._3f_c00442{margin-left:-34.877333pt;}
._3e_c00442{margin-left:-33.485333pt;}
._50_c00442{margin-left:-29.696000pt;}
._3c_c00442{margin-left:-24.824000pt;}
._38_c00442{margin-left:-22.117333pt;}
._43_c00442{margin-left:-20.957333pt;}
._39_c00442{margin-left:-15.514667pt;}
._d_c00442{margin-left:-14.250667pt;}
._24_c00442{margin-left:-12.240000pt;}
._2f_c00442{margin-left:-10.752000pt;}
._e_c00442{margin-left:-7.936000pt;}
._30_c00442{margin-left:-6.997333pt;}
._4c_c00442{margin-left:-5.653333pt;}
._31_c00442{margin-left:-4.352000pt;}
._45_c00442{margin-left:-3.098667pt;}
._16_c00442{margin-left:-1.706667pt;}
._9_c00442{width:0.938667pt;}
._1_c00442{width:2.133333pt;}
._0_c00442{width:3.840000pt;}
._4_c00442{width:4.778667pt;}
._5_c00442{width:5.717333pt;}
._21_c00442{width:6.826667pt;}
._c_c00442{width:7.765333pt;}
._6_c00442{width:9.130667pt;}
._1f_c00442{width:10.752000pt;}
._1d_c00442{width:11.690667pt;}
._17_c00442{width:13.824000pt;}
._8_c00442{width:15.530667pt;}
._29_c00442{width:16.533333pt;}
._b_c00442{width:17.493333pt;}
._27_c00442{width:18.858667pt;}
._2c_c00442{width:21.845333pt;}
._3_c00442{width:23.296000pt;}
._12_c00442{width:24.234667pt;}
._2_c00442{width:25.344000pt;}
._34_c00442{width:26.368000pt;}
._25_c00442{width:27.306667pt;}
._a_c00442{width:29.013333pt;}
._22_c00442{width:30.208000pt;}
._18_c00442{width:31.146667pt;}
._7_c00442{width:32.256000pt;}
._23_c00442{width:34.058667pt;}
._15_c00442{width:34.986667pt;}
._35_c00442{width:36.064000pt;}
._26_c00442{width:37.034667pt;}
._28_c00442{width:38.485333pt;}
._1a_c00442{width:39.765333pt;}
._11_c00442{width:41.472000pt;}
._13_c00442{width:42.410667pt;}
._19_c00442{width:43.690667pt;}
._1b_c00442{width:45.525333pt;}
._32_c00442{width:47.360000pt;}
._2d_c00442{width:49.834667pt;}
._1c_c00442{width:52.000000pt;}
._f_c00442{width:53.312000pt;}
._1e_c00442{width:55.296000pt;}
._20_c00442{width:57.856000pt;}
._10_c00442{width:59.360000pt;}
._2b_c00442{width:60.416000pt;}
._40_c00442{width:63.490667pt;}
._14_c00442{width:65.194667pt;}
._2a_c00442{width:69.461333pt;}
._33_c00442{width:77.568000pt;}
._51_c00442{width:78.957333pt;}
._2e_c00442{width:80.373333pt;}
._3a_c00442{width:89.629333pt;}
._4b_c00442{width:98.346667pt;}
._3d_c00442{width:115.226667pt;}
._42_c00442{width:122.186667pt;}
._4e_c00442{width:169.072000pt;}
._47_c00442{width:196.032000pt;}
._4d_c00442{width:201.840000pt;}
._3b_c00442{width:224.578667pt;}
._52_c00442{width:354.522667pt;}
._49_c00442{width:364.658667pt;}
._4a_c00442{width:382.952000pt;}
._46_c00442{width:420.469333pt;}
._48_c00442{width:429.482667pt;}
._44_c00442{width:488.050667pt;}
._37_c00442{width:606.989333pt;}
.fs4_c00442{font-size:37.333333pt;}
.fs5_c00442{font-size:40.000000pt;}
.fs7_c00442{font-size:42.666667pt;}
.fs6_c00442{font-size:56.000000pt;}
.fs1_c00442{font-size:74.666667pt;}
.fs3_c00442{font-size:77.333333pt;}
.fs0_c00442{font-size:85.333333pt;}
.fs2_c00442{font-size:90.666667pt;}
.y0_c00442{bottom:0.000000pt;}
.y25_c00442{bottom:2.760000pt;}
.y24_c00442{bottom:6.425217pt;}
.y23_c00442{bottom:75.840000pt;}
.y22_c00442{bottom:120.640000pt;}
.y21_c00442{bottom:129.306667pt;}
.y20_c00442{bottom:145.706667pt;}
.y1f_c00442{bottom:157.440000pt;}
.y1e_c00442{bottom:188.373333pt;}
.y1d_c00442{bottom:293.040000pt;}
.y1c_c00442{bottom:324.106667pt;}
.y1b_c00442{bottom:353.706667pt;}
.y1a_c00442{bottom:383.306667pt;}
.y19_c00442{bottom:413.040000pt;}
.y18_c00442{bottom:443.040000pt;}
.y17_c00442{bottom:473.306667pt;}
.y16_c00442{bottom:503.440000pt;}
.y15_c00442{bottom:533.306667pt;}
.y14_c00442{bottom:563.306667pt;}
.y13_c00442{bottom:593.040000pt;}
.y12_c00442{bottom:623.040000pt;}
.y11_c00442{bottom:652.506667pt;}
.y10_c00442{bottom:681.840000pt;}
.yf_c00442{bottom:711.840000pt;}
.ye_c00442{bottom:741.573333pt;}
.yd_c00442{bottom:771.040000pt;}
.yc_c00442{bottom:800.640000pt;}
.yb_c00442{bottom:830.640000pt;}
.ya_c00442{bottom:859.706667pt;}
.y9_c00442{bottom:889.840000pt;}
.y8_c00442{bottom:919.706667pt;}
.y7_c00442{bottom:949.173333pt;}
.y6_c00442{bottom:979.440000pt;}
.y5_c00442{bottom:1008.506667pt;}
.y4_c00442{bottom:1038.640000pt;}
.y3_c00442{bottom:1067.706667pt;}
.y2_c00442{bottom:1097.306667pt;}
.y1_c00442{bottom:1127.306667pt;}
.h6_c00442{height:11.733399pt;}
.h7_c00442{height:38.937500pt;}
.h4_c00442{height:47.268229pt;}
.h5_c00442{height:50.644531pt;}
.h3_c00442{height:97.912760pt;}
.h2_c00442{height:108.041667pt;}
.h0_c00442{height:1229.733333pt;}
.h1_c00442{height:1230.000000pt;}
.w2_c00442{width:93.222667pt;}
.w0_c00442{width:780.466667pt;}
.w1_c00442{width:780.666667pt;}
.x0_c00442{left:0.000000pt;}
.x7_c00442{left:28.000000pt;}
.x6_c00442{left:29.466667pt;}
.x5_c00442{left:30.933333pt;}
.x4_c00442{left:31.866667pt;}
.x3_c00442{left:35.200000pt;}
.x2_c00442{left:36.266667pt;}
.x1_c00442{left:38.133333pt;}
.x9_c00442{left:186.000000pt;}
.x8_c00442{left:196.000000pt;}
.xa_c00442{left:204.400000pt;}
.xb_c00442{left:230.400000pt;}
.xd_c00442{left:347.401530pt;}
.xc_c00442{left:491.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f17cd9a31879b514a683b7dc.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_45ff8d5ebfc564f5f1fe0ac5.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_5b11c992f5d7615c819b653a.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls1_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:0.672000px;}
.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:-51.000000px;}
.ws0_c00443{word-spacing:-34.704000px;}
.ws3_c00443{word-spacing:-23.136000px;}
.ws1_c00443{word-spacing:-20.244000px;}
.ws4_c00443{word-spacing:0.000000px;}
._30_c00443{margin-left:-46.584000px;}
._11_c00443{margin-left:-38.448000px;}
._28_c00443{margin-left:-15.024000px;}
._1e_c00443{margin-left:-10.944000px;}
._19_c00443{margin-left:-9.696000px;}
._a_c00443{margin-left:-8.064000px;}
._c_c00443{margin-left:-6.480000px;}
._9_c00443{margin-left:-5.328000px;}
._b_c00443{margin-left:-4.032000px;}
._12_c00443{margin-left:-2.928000px;}
._2c_c00443{margin-left:-1.152000px;}
._10_c00443{width:1.344000px;}
._e_c00443{width:2.592000px;}
._f_c00443{width:3.648000px;}
._23_c00443{width:4.704000px;}
._20_c00443{width:6.048000px;}
._3_c00443{width:7.776000px;}
._0_c00443{width:9.648000px;}
._2_c00443{width:10.656000px;}
._4_c00443{width:11.952000px;}
._5_c00443{width:13.248000px;}
._1_c00443{width:14.256000px;}
._21_c00443{width:15.600000px;}
._2d_c00443{width:16.800000px;}
._8_c00443{width:17.856000px;}
._2e_c00443{width:19.200000px;}
._24_c00443{width:20.928000px;}
._40_c00443{width:25.056000px;}
._22_c00443{width:26.304000px;}
._2f_c00443{width:27.840000px;}
._6_c00443{width:29.232000px;}
._36_c00443{width:31.104000px;}
._1b_c00443{width:32.448000px;}
._2b_c00443{width:33.600000px;}
._2a_c00443{width:34.656000px;}
._1c_c00443{width:36.384000px;}
._d_c00443{width:38.304000px;}
._3b_c00443{width:39.456000px;}
._29_c00443{width:40.656000px;}
._38_c00443{width:42.384000px;}
._3d_c00443{width:43.584000px;}
._3a_c00443{width:44.880000px;}
._7_c00443{width:46.080000px;}
._15_c00443{width:47.808000px;}
._34_c00443{width:49.008000px;}
._39_c00443{width:52.032000px;}
._31_c00443{width:53.664000px;}
._33_c00443{width:55.968000px;}
._3c_c00443{width:58.488000px;}
._18_c00443{width:60.264000px;}
._27_c00443{width:62.424000px;}
._35_c00443{width:65.064000px;}
._16_c00443{width:67.008000px;}
._26_c00443{width:68.400000px;}
._25_c00443{width:71.040000px;}
._3f_c00443{width:77.736000px;}
._17_c00443{width:79.680000px;}
._41_c00443{width:82.032000px;}
._32_c00443{width:84.384000px;}
._3e_c00443{width:128.112000px;}
._42_c00443{width:187.440000px;}
._37_c00443{width:193.920000px;}
._13_c00443{width:275.904000px;}
._1d_c00443{width:390.528000px;}
._1a_c00443{width:413.376000px;}
._14_c00443{width:521.520000px;}
._1f_c00443{width:783.552000px;}
.fc2_c00443{color:transparent;}
.fc1_c00443{color:rgb(128,128,128);}
.fc0_c00443{color:rgb(0,0,0);}
.fs4_c00443{font-size:48.000000px;}
.fs2_c00443{font-size:84.000000px;}
.fs1_c00443{font-size:96.000000px;}
.fs3_c00443{font-size:102.000000px;}
.fs0_c00443{font-size:144.000000px;}
.y0_c00443{bottom:0.000000px;}
.y24_c00443{bottom:3.105000px;}
.y23_c00443{bottom:7.228357px;}
.y22_c00443{bottom:78.630000px;}
.y21_c00443{bottom:112.680000px;}
.y20_c00443{bottom:145.830000px;}
.y1f_c00443{bottom:180.030000px;}
.y1e_c00443{bottom:214.080000px;}
.y1d_c00443{bottom:248.130000px;}
.y1c_c00443{bottom:281.880000px;}
.y1b_c00443{bottom:315.930000px;}
.y1a_c00443{bottom:349.080000px;}
.y19_c00443{bottom:383.130000px;}
.y18_c00443{bottom:417.480000px;}
.y17_c00443{bottom:451.680000px;}
.y16_c00443{bottom:484.980000px;}
.y15_c00443{bottom:518.730000px;}
.y14_c00443{bottom:552.480000px;}
.y13_c00443{bottom:586.530000px;}
.y12_c00443{bottom:620.430000px;}
.y11_c00443{bottom:654.180000px;}
.y10_c00443{bottom:687.930000px;}
.yf_c00443{bottom:721.680000px;}
.ye_c00443{bottom:755.430000px;}
.yd_c00443{bottom:788.130000px;}
.yc_c00443{bottom:823.530000px;}
.yb_c00443{bottom:856.230000px;}
.ya_c00443{bottom:889.980000px;}
.y9_c00443{bottom:923.430000px;}
.y8_c00443{bottom:956.430000px;}
.y7_c00443{bottom:989.280000px;}
.y6_c00443{bottom:1022.280000px;}
.y5_c00443{bottom:1055.430000px;}
.y4_c00443{bottom:1084.080000px;}
.y3_c00443{bottom:1124.280000px;}
.y2_c00443{bottom:1195.830000px;}
.y1_c00443{bottom:1246.680000px;}
.h4_c00443{height:13.200074px;}
.h5_c00443{height:43.804688px;}
.h3_c00443{height:121.546875px;}
.h2_c00443{height:182.320312px;}
.h0_c00443{height:1382.700000px;}
.h1_c00443{height:1383.000000px;}
.w2_c00443{width:104.875500px;}
.w0_c00443{width:863.175000px;}
.w1_c00443{width:863.250000px;}
.x0_c00443{left:0.000000px;}
.x3_c00443{left:59.700000px;}
.x6_c00443{left:231.300000px;}
.x7_c00443{left:232.500000px;}
.x9_c00443{left:233.550000px;}
.x8_c00443{left:234.600000px;}
.xb_c00443{left:236.850000px;}
.xe_c00443{left:246.600000px;}
.x1_c00443{left:259.650000px;}
.x4_c00443{left:278.400000px;}
.xd_c00443{left:280.500000px;}
.xa_c00443{left:282.750000px;}
.xc_c00443{left:286.500000px;}
.x10_c00443{left:383.401749px;}
.x2_c00443{left:446.550000px;}
.x5_c00443{left:468.900000px;}
.xf_c00443{left:751.500000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls1_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:0.597333pt;}
.ws2_c00443{word-spacing:-45.333333pt;}
.ws0_c00443{word-spacing:-30.848000pt;}
.ws3_c00443{word-spacing:-20.565333pt;}
.ws1_c00443{word-spacing:-17.994667pt;}
.ws4_c00443{word-spacing:0.000000pt;}
._30_c00443{margin-left:-41.408000pt;}
._11_c00443{margin-left:-34.176000pt;}
._28_c00443{margin-left:-13.354667pt;}
._1e_c00443{margin-left:-9.728000pt;}
._19_c00443{margin-left:-8.618667pt;}
._a_c00443{margin-left:-7.168000pt;}
._c_c00443{margin-left:-5.760000pt;}
._9_c00443{margin-left:-4.736000pt;}
._b_c00443{margin-left:-3.584000pt;}
._12_c00443{margin-left:-2.602667pt;}
._2c_c00443{margin-left:-1.024000pt;}
._10_c00443{width:1.194667pt;}
._e_c00443{width:2.304000pt;}
._f_c00443{width:3.242667pt;}
._23_c00443{width:4.181333pt;}
._20_c00443{width:5.376000pt;}
._3_c00443{width:6.912000pt;}
._0_c00443{width:8.576000pt;}
._2_c00443{width:9.472000pt;}
._4_c00443{width:10.624000pt;}
._5_c00443{width:11.776000pt;}
._1_c00443{width:12.672000pt;}
._21_c00443{width:13.866667pt;}
._2d_c00443{width:14.933333pt;}
._8_c00443{width:15.872000pt;}
._2e_c00443{width:17.066667pt;}
._24_c00443{width:18.602667pt;}
._40_c00443{width:22.272000pt;}
._22_c00443{width:23.381333pt;}
._2f_c00443{width:24.746667pt;}
._6_c00443{width:25.984000pt;}
._36_c00443{width:27.648000pt;}
._1b_c00443{width:28.842667pt;}
._2b_c00443{width:29.866667pt;}
._2a_c00443{width:30.805333pt;}
._1c_c00443{width:32.341333pt;}
._d_c00443{width:34.048000pt;}
._3b_c00443{width:35.072000pt;}
._29_c00443{width:36.138667pt;}
._38_c00443{width:37.674667pt;}
._3d_c00443{width:38.741333pt;}
._3a_c00443{width:39.893333pt;}
._7_c00443{width:40.960000pt;}
._15_c00443{width:42.496000pt;}
._34_c00443{width:43.562667pt;}
._39_c00443{width:46.250667pt;}
._31_c00443{width:47.701333pt;}
._33_c00443{width:49.749333pt;}
._3c_c00443{width:51.989333pt;}
._18_c00443{width:53.568000pt;}
._27_c00443{width:55.488000pt;}
._35_c00443{width:57.834667pt;}
._16_c00443{width:59.562667pt;}
._26_c00443{width:60.800000pt;}
._25_c00443{width:63.146667pt;}
._3f_c00443{width:69.098667pt;}
._17_c00443{width:70.826667pt;}
._41_c00443{width:72.917333pt;}
._32_c00443{width:75.008000pt;}
._3e_c00443{width:113.877333pt;}
._42_c00443{width:166.613333pt;}
._37_c00443{width:172.373333pt;}
._13_c00443{width:245.248000pt;}
._1d_c00443{width:347.136000pt;}
._1a_c00443{width:367.445333pt;}
._14_c00443{width:463.573333pt;}
._1f_c00443{width:696.490667pt;}
.fs4_c00443{font-size:42.666667pt;}
.fs2_c00443{font-size:74.666667pt;}
.fs1_c00443{font-size:85.333333pt;}
.fs3_c00443{font-size:90.666667pt;}
.fs0_c00443{font-size:128.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y24_c00443{bottom:2.760000pt;}
.y23_c00443{bottom:6.425206pt;}
.y22_c00443{bottom:69.893333pt;}
.y21_c00443{bottom:100.160000pt;}
.y20_c00443{bottom:129.626667pt;}
.y1f_c00443{bottom:160.026667pt;}
.y1e_c00443{bottom:190.293333pt;}
.y1d_c00443{bottom:220.560000pt;}
.y1c_c00443{bottom:250.560000pt;}
.y1b_c00443{bottom:280.826667pt;}
.y1a_c00443{bottom:310.293333pt;}
.y19_c00443{bottom:340.560000pt;}
.y18_c00443{bottom:371.093333pt;}
.y17_c00443{bottom:401.493333pt;}
.y16_c00443{bottom:431.093333pt;}
.y15_c00443{bottom:461.093333pt;}
.y14_c00443{bottom:491.093333pt;}
.y13_c00443{bottom:521.360000pt;}
.y12_c00443{bottom:551.493333pt;}
.y11_c00443{bottom:581.493333pt;}
.y10_c00443{bottom:611.493333pt;}
.yf_c00443{bottom:641.493333pt;}
.ye_c00443{bottom:671.493333pt;}
.yd_c00443{bottom:700.560000pt;}
.yc_c00443{bottom:732.026667pt;}
.yb_c00443{bottom:761.093333pt;}
.ya_c00443{bottom:791.093333pt;}
.y9_c00443{bottom:820.826667pt;}
.y8_c00443{bottom:850.160000pt;}
.y7_c00443{bottom:879.360000pt;}
.y6_c00443{bottom:908.693333pt;}
.y5_c00443{bottom:938.160000pt;}
.y4_c00443{bottom:963.626667pt;}
.y3_c00443{bottom:999.360000pt;}
.y2_c00443{bottom:1062.960000pt;}
.y1_c00443{bottom:1108.160000pt;}
.h4_c00443{height:11.733399pt;}
.h5_c00443{height:38.937500pt;}
.h3_c00443{height:108.041667pt;}
.h2_c00443{height:162.062500pt;}
.h0_c00443{height:1229.066667pt;}
.h1_c00443{height:1229.333333pt;}
.w2_c00443{width:93.222667pt;}
.w0_c00443{width:767.266667pt;}
.w1_c00443{width:767.333333pt;}
.x0_c00443{left:0.000000pt;}
.x3_c00443{left:53.066667pt;}
.x6_c00443{left:205.600000pt;}
.x7_c00443{left:206.666667pt;}
.x9_c00443{left:207.600000pt;}
.x8_c00443{left:208.533333pt;}
.xb_c00443{left:210.533333pt;}
.xe_c00443{left:219.200000pt;}
.x1_c00443{left:230.800000pt;}
.x4_c00443{left:247.466667pt;}
.xd_c00443{left:249.333333pt;}
.xa_c00443{left:251.333333pt;}
.xc_c00443{left:254.666667pt;}
.x10_c00443{left:340.801554pt;}
.x2_c00443{left:396.933333pt;}
.x5_c00443{left:416.800000pt;}
.xf_c00443{left:668.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_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_0169828a5aad9a64277ccdbc.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_e9c6b8858fd04a527fb10a78.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_75301adbd400f4d89dd059da.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_6ee1e36fbe418cb6179acb59.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00444{vertical-align:-30.600000px;}
.v0_c00444{vertical-align:0.000000px;}
.ls2_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:2.352000px;}
.ls3_c00444{letter-spacing:3.000000px;}
.ls1_c00444{letter-spacing:11.490000px;}
.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;}
}
.ws1_c00444{word-spacing:-22.596000px;}
.ws0_c00444{word-spacing:-20.244000px;}
.ws2_c00444{word-spacing:0.000000px;}
._3c_c00444{margin-left:-41.832000px;}
._31_c00444{margin-left:-37.080000px;}
._26_c00444{margin-left:-30.720000px;}
._13_c00444{margin-left:-28.992000px;}
._38_c00444{margin-left:-26.592000px;}
._32_c00444{margin-left:-24.612000px;}
._3b_c00444{margin-left:-21.600000px;}
._37_c00444{margin-left:-19.932000px;}
._3d_c00444{margin-left:-17.748000px;}
._21_c00444{margin-left:-15.744000px;}
._27_c00444{margin-left:-13.056000px;}
._28_c00444{margin-left:-10.368000px;}
._14_c00444{margin-left:-9.312000px;}
._24_c00444{margin-left:-7.968000px;}
._20_c00444{margin-left:-6.912000px;}
._22_c00444{margin-left:-4.800000px;}
._b_c00444{margin-left:-3.264000px;}
._a_c00444{margin-left:-2.208000px;}
._12_c00444{margin-left:-1.056000px;}
._6_c00444{width:1.344000px;}
._c_c00444{width:2.400000px;}
._1_c00444{width:3.456000px;}
._16_c00444{width:4.608000px;}
._0_c00444{width:5.664000px;}
._2_c00444{width:6.816000px;}
._3_c00444{width:8.256000px;}
._5_c00444{width:9.408000px;}
._4_c00444{width:10.464000px;}
._2d_c00444{width:11.616000px;}
._15_c00444{width:12.672000px;}
._f_c00444{width:14.784000px;}
._19_c00444{width:15.876000px;}
._18_c00444{width:17.556000px;}
._9_c00444{width:19.008000px;}
._2c_c00444{width:20.064000px;}
._2b_c00444{width:21.792000px;}
._2e_c00444{width:24.180000px;}
._23_c00444{width:25.632000px;}
._1e_c00444{width:27.936000px;}
._1d_c00444{width:29.760000px;}
._30_c00444{width:31.200000px;}
._1b_c00444{width:33.024000px;}
._8_c00444{width:34.368000px;}
._7_c00444{width:36.288000px;}
._e_c00444{width:37.344000px;}
._11_c00444{width:39.168000px;}
._10_c00444{width:40.800000px;}
._1c_c00444{width:42.816000px;}
._d_c00444{width:45.120000px;}
._25_c00444{width:47.904000px;}
._2a_c00444{width:49.248000px;}
._2f_c00444{width:51.984000px;}
._29_c00444{width:53.952000px;}
._1f_c00444{width:55.200000px;}
._35_c00444{width:58.656000px;}
._33_c00444{width:60.384000px;}
._3a_c00444{width:67.704000px;}
._17_c00444{width:69.312000px;}
._34_c00444{width:71.136000px;}
._39_c00444{width:91.380000px;}
._1a_c00444{width:300.384000px;}
._36_c00444{width:794.016000px;}
.fc2_c00444{color:transparent;}
.fc1_c00444{color:rgb(128,128,128);}
.fc0_c00444{color:rgb(0,0,0);}
.fs2_c00444{font-size:30.000000px;}
.fs4_c00444{font-size:48.000000px;}
.fs1_c00444{font-size:84.000000px;}
.fs3_c00444{font-size:87.000000px;}
.fs0_c00444{font-size:96.000000px;}
.y0_c00444{bottom:0.000000px;}
.y28_c00444{bottom:3.105000px;}
.y27_c00444{bottom:7.228369px;}
.y24_c00444{bottom:108.270000px;}
.y23_c00444{bottom:142.770000px;}
.y22_c00444{bottom:178.470000px;}
.y21_c00444{bottom:211.920000px;}
.y20_c00444{bottom:246.420000px;}
.y1f_c00444{bottom:280.170000px;}
.y1e_c00444{bottom:314.520000px;}
.y1d_c00444{bottom:347.670000px;}
.y1c_c00444{bottom:381.720000px;}
.y1b_c00444{bottom:415.470000px;}
.y1a_c00444{bottom:448.920000px;}
.y19_c00444{bottom:482.670000px;}
.y18_c00444{bottom:515.970000px;}
.y17_c00444{bottom:549.720000px;}
.y16_c00444{bottom:582.870000px;}
.y15_c00444{bottom:617.220000px;}
.y14_c00444{bottom:650.670000px;}
.y13_c00444{bottom:684.720000px;}
.y25_c00444{bottom:694.470000px;}
.y26_c00444{bottom:702.570000px;}
.y12_c00444{bottom:717.570000px;}
.y11_c00444{bottom:751.320000px;}
.y10_c00444{bottom:785.070000px;}
.yf_c00444{bottom:818.070000px;}
.ye_c00444{bottom:850.770000px;}
.yd_c00444{bottom:884.220000px;}
.yc_c00444{bottom:917.670000px;}
.yb_c00444{bottom:951.120000px;}
.ya_c00444{bottom:984.720000px;}
.y9_c00444{bottom:1018.170000px;}
.y8_c00444{bottom:1051.020000px;}
.y7_c00444{bottom:1084.770000px;}
.y6_c00444{bottom:1118.070000px;}
.y5_c00444{bottom:1150.770000px;}
.y4_c00444{bottom:1183.920000px;}
.y3_c00444{bottom:1217.370000px;}
.y2_c00444{bottom:1250.820000px;}
.y1_c00444{bottom:1283.820000px;}
.h4_c00444{height:13.200073px;}
.h5_c00444{height:43.804688px;}
.h3_c00444{height:71.225684px;}
.h2_c00444{height:121.546875px;}
.h0_c00444{height:1375.350000px;}
.h1_c00444{height:1375.500000px;}
.w2_c00444{width:104.875500px;}
.w0_c00444{width:872.625000px;}
.w1_c00444{width:873.000000px;}
.x0_c00444{left:0.000000px;}
.x6_c00444{left:35.400000px;}
.x5_c00444{left:36.450000px;}
.x4_c00444{left:38.100000px;}
.x3_c00444{left:39.150000px;}
.x2_c00444{left:40.200000px;}
.x1_c00444{left:41.850000px;}
.x7_c00444{left:294.600000px;}
.xa_c00444{left:388.126740px;}
.x8_c00444{left:660.150000px;}
.x9_c00444{left:681.300000px;}
@media print{
.v1_c00444{vertical-align:-27.200000pt;}
.v0_c00444{vertical-align:0.000000pt;}
.ls2_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:2.090667pt;}
.ls3_c00444{letter-spacing:2.666667pt;}
.ls1_c00444{letter-spacing:10.213333pt;}
.ws1_c00444{word-spacing:-20.085333pt;}
.ws0_c00444{word-spacing:-17.994667pt;}
.ws2_c00444{word-spacing:0.000000pt;}
._3c_c00444{margin-left:-37.184000pt;}
._31_c00444{margin-left:-32.960000pt;}
._26_c00444{margin-left:-27.306667pt;}
._13_c00444{margin-left:-25.770667pt;}
._38_c00444{margin-left:-23.637333pt;}
._32_c00444{margin-left:-21.877333pt;}
._3b_c00444{margin-left:-19.200000pt;}
._37_c00444{margin-left:-17.717333pt;}
._3d_c00444{margin-left:-15.776000pt;}
._21_c00444{margin-left:-13.994667pt;}
._27_c00444{margin-left:-11.605333pt;}
._28_c00444{margin-left:-9.216000pt;}
._14_c00444{margin-left:-8.277333pt;}
._24_c00444{margin-left:-7.082667pt;}
._20_c00444{margin-left:-6.144000pt;}
._22_c00444{margin-left:-4.266667pt;}
._b_c00444{margin-left:-2.901333pt;}
._a_c00444{margin-left:-1.962667pt;}
._12_c00444{margin-left:-0.938667pt;}
._6_c00444{width:1.194667pt;}
._c_c00444{width:2.133333pt;}
._1_c00444{width:3.072000pt;}
._16_c00444{width:4.096000pt;}
._0_c00444{width:5.034667pt;}
._2_c00444{width:6.058667pt;}
._3_c00444{width:7.338667pt;}
._5_c00444{width:8.362667pt;}
._4_c00444{width:9.301333pt;}
._2d_c00444{width:10.325333pt;}
._15_c00444{width:11.264000pt;}
._f_c00444{width:13.141333pt;}
._19_c00444{width:14.112000pt;}
._18_c00444{width:15.605333pt;}
._9_c00444{width:16.896000pt;}
._2c_c00444{width:17.834667pt;}
._2b_c00444{width:19.370667pt;}
._2e_c00444{width:21.493333pt;}
._23_c00444{width:22.784000pt;}
._1e_c00444{width:24.832000pt;}
._1d_c00444{width:26.453333pt;}
._30_c00444{width:27.733333pt;}
._1b_c00444{width:29.354667pt;}
._8_c00444{width:30.549333pt;}
._7_c00444{width:32.256000pt;}
._e_c00444{width:33.194667pt;}
._11_c00444{width:34.816000pt;}
._10_c00444{width:36.266667pt;}
._1c_c00444{width:38.058667pt;}
._d_c00444{width:40.106667pt;}
._25_c00444{width:42.581333pt;}
._2a_c00444{width:43.776000pt;}
._2f_c00444{width:46.208000pt;}
._29_c00444{width:47.957333pt;}
._1f_c00444{width:49.066667pt;}
._35_c00444{width:52.138667pt;}
._33_c00444{width:53.674667pt;}
._3a_c00444{width:60.181333pt;}
._17_c00444{width:61.610667pt;}
._34_c00444{width:63.232000pt;}
._39_c00444{width:81.226667pt;}
._1a_c00444{width:267.008000pt;}
._36_c00444{width:705.792000pt;}
.fs2_c00444{font-size:26.666667pt;}
.fs4_c00444{font-size:42.666667pt;}
.fs1_c00444{font-size:74.666667pt;}
.fs3_c00444{font-size:77.333333pt;}
.fs0_c00444{font-size:85.333333pt;}
.y0_c00444{bottom:0.000000pt;}
.y28_c00444{bottom:2.760000pt;}
.y27_c00444{bottom:6.425217pt;}
.y24_c00444{bottom:96.240000pt;}
.y23_c00444{bottom:126.906667pt;}
.y22_c00444{bottom:158.640000pt;}
.y21_c00444{bottom:188.373333pt;}
.y20_c00444{bottom:219.040000pt;}
.y1f_c00444{bottom:249.040000pt;}
.y1e_c00444{bottom:279.573333pt;}
.y1d_c00444{bottom:309.040000pt;}
.y1c_c00444{bottom:339.306667pt;}
.y1b_c00444{bottom:369.306667pt;}
.y1a_c00444{bottom:399.040000pt;}
.y19_c00444{bottom:429.040000pt;}
.y18_c00444{bottom:458.640000pt;}
.y17_c00444{bottom:488.640000pt;}
.y16_c00444{bottom:518.106667pt;}
.y15_c00444{bottom:548.640000pt;}
.y14_c00444{bottom:578.373333pt;}
.y13_c00444{bottom:608.640000pt;}
.y25_c00444{bottom:617.306667pt;}
.y26_c00444{bottom:624.506667pt;}
.y12_c00444{bottom:637.840000pt;}
.y11_c00444{bottom:667.840000pt;}
.y10_c00444{bottom:697.840000pt;}
.yf_c00444{bottom:727.173333pt;}
.ye_c00444{bottom:756.240000pt;}
.yd_c00444{bottom:785.973333pt;}
.yc_c00444{bottom:815.706667pt;}
.yb_c00444{bottom:845.440000pt;}
.ya_c00444{bottom:875.306667pt;}
.y9_c00444{bottom:905.040000pt;}
.y8_c00444{bottom:934.240000pt;}
.y7_c00444{bottom:964.240000pt;}
.y6_c00444{bottom:993.840000pt;}
.y5_c00444{bottom:1022.906667pt;}
.y4_c00444{bottom:1052.373333pt;}
.y3_c00444{bottom:1082.106667pt;}
.y2_c00444{bottom:1111.840000pt;}
.y1_c00444{bottom:1141.173333pt;}
.h4_c00444{height:11.733399pt;}
.h5_c00444{height:38.937500pt;}
.h3_c00444{height:63.311719pt;}
.h2_c00444{height:108.041667pt;}
.h0_c00444{height:1222.533333pt;}
.h1_c00444{height:1222.666667pt;}
.w2_c00444{width:93.222667pt;}
.w0_c00444{width:775.666667pt;}
.w1_c00444{width:776.000000pt;}
.x0_c00444{left:0.000000pt;}
.x6_c00444{left:31.466667pt;}
.x5_c00444{left:32.400000pt;}
.x4_c00444{left:33.866667pt;}
.x3_c00444{left:34.800000pt;}
.x2_c00444{left:35.733333pt;}
.x1_c00444{left:37.200000pt;}
.x7_c00444{left:261.866667pt;}
.xa_c00444{left:345.001546pt;}
.x8_c00444{left:586.800000pt;}
.x9_c00444{left:605.600000pt;}
}





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

.ir_c00445:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00445;src:url('chunks/assets/font_fe403488c6985cfcf2a68dc6.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_543d520bae5d5510ca6e7779.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_03e8c14f81c171f45852b258.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;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_c00445;src:url('chunks/assets/font_875df131f9a9ba131d07c1fc.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00445;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.ls1_c00445{letter-spacing:6.000000px;}
.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;}
}
.ws0_c00445{word-spacing:-63.504000px;}
.ws2_c00445{word-spacing:-61.044000px;}
.ws4_c00445{word-spacing:-51.000000px;}
.ws3_c00445{word-spacing:-36.960000px;}
.ws1_c00445{word-spacing:-34.704000px;}
.ws5_c00445{word-spacing:0.000000px;}
._45_c00445{margin-left:-92.796000px;}
._48_c00445{margin-left:-36.366000px;}
._34_c00445{margin-left:-34.752000px;}
._3c_c00445{margin-left:-30.408000px;}
._28_c00445{margin-left:-26.016000px;}
._2b_c00445{margin-left:-22.560000px;}
._38_c00445{margin-left:-18.684000px;}
._1e_c00445{margin-left:-15.552000px;}
._1c_c00445{margin-left:-14.400000px;}
._1b_c00445{margin-left:-12.684000px;}
._32_c00445{margin-left:-10.500000px;}
._1d_c00445{margin-left:-9.216000px;}
._39_c00445{margin-left:-8.076000px;}
._2c_c00445{margin-left:-7.020000px;}
._20_c00445{margin-left:-5.484000px;}
._24_c00445{margin-left:-4.272000px;}
._f_c00445{margin-left:-2.400000px;}
._c_c00445{margin-left:-1.152000px;}
._16_c00445{width:1.164000px;}
._7_c00445{width:2.304000px;}
._3_c00445{width:3.456000px;}
._1_c00445{width:4.896000px;}
._4_c00445{width:6.816000px;}
._0_c00445{width:7.968000px;}
._5_c00445{width:9.120000px;}
._2_c00445{width:10.560000px;}
._8_c00445{width:12.192000px;}
._14_c00445{width:13.248000px;}
._19_c00445{width:15.168000px;}
._1a_c00445{width:16.320000px;}
._18_c00445{width:17.568000px;}
._a_c00445{width:19.008000px;}
._17_c00445{width:20.064000px;}
._e_c00445{width:21.888000px;}
._26_c00445{width:24.768000px;}
._9_c00445{width:26.208000px;}
._11_c00445{width:27.648000px;}
._42_c00445{width:28.800000px;}
._1f_c00445{width:30.336000px;}
._b_c00445{width:31.392000px;}
._41_c00445{width:33.024000px;}
._6_c00445{width:34.080000px;}
._3b_c00445{width:36.192000px;}
._3d_c00445{width:37.404000px;}
._21_c00445{width:39.024000px;}
._2a_c00445{width:40.224000px;}
._3e_c00445{width:41.364000px;}
._29_c00445{width:42.912000px;}
._10_c00445{width:44.736000px;}
._15_c00445{width:46.680000px;}
._d_c00445{width:49.152000px;}
._23_c00445{width:51.168000px;}
._40_c00445{width:52.512000px;}
._13_c00445{width:53.664000px;}
._44_c00445{width:54.882000px;}
._43_c00445{width:57.024000px;}
._3f_c00445{width:58.848000px;}
._3a_c00445{width:64.548000px;}
._47_c00445{width:66.906000px;}
._31_c00445{width:69.600000px;}
._35_c00445{width:70.752000px;}
._2e_c00445{width:96.672000px;}
._46_c00445{width:108.072000px;}
._22_c00445{width:119.760000px;}
._2d_c00445{width:120.792000px;}
._37_c00445{width:144.768000px;}
._30_c00445{width:168.288000px;}
._27_c00445{width:179.136000px;}
._25_c00445{width:396.684000px;}
._2f_c00445{width:428.736000px;}
._33_c00445{width:432.804000px;}
._12_c00445{width:542.844000px;}
._36_c00445{width:671.712000px;}
._49_c00445{width:802.560000px;}
.fc2_c00445{color:transparent;}
.fc1_c00445{color:rgb(128,128,128);}
.fc0_c00445{color:rgb(0,0,0);}
.fs6_c00445{font-size:48.000000px;}
.fs1_c00445{font-size:84.000000px;}
.fs0_c00445{font-size:96.000000px;}
.fs3_c00445{font-size:99.000000px;}
.fs4_c00445{font-size:102.000000px;}
.fs5_c00445{font-size:114.000000px;}
.fs2_c00445{font-size:144.000000px;}
.y0_c00445{bottom:0.000000px;}
.y21_c00445{bottom:3.105000px;}
.y20_c00445{bottom:7.228357px;}
.y1f_c00445{bottom:111.780000px;}
.y1e_c00445{bottom:143.130000px;}
.y1d_c00445{bottom:177.480000px;}
.y1c_c00445{bottom:211.680000px;}
.y1b_c00445{bottom:244.980000px;}
.y1a_c00445{bottom:279.480000px;}
.y19_c00445{bottom:312.930000px;}
.y18_c00445{bottom:347.730000px;}
.y17_c00445{bottom:381.030000px;}
.y16_c00445{bottom:415.080000px;}
.y15_c00445{bottom:448.830000px;}
.y14_c00445{bottom:482.730000px;}
.y13_c00445{bottom:516.480000px;}
.y12_c00445{bottom:550.830000px;}
.y11_c00445{bottom:584.580000px;}
.y10_c00445{bottom:617.730000px;}
.yf_c00445{bottom:652.080000px;}
.ye_c00445{bottom:688.830000px;}
.yd_c00445{bottom:719.880000px;}
.yc_c00445{bottom:810.330000px;}
.yb_c00445{bottom:860.580000px;}
.ya_c00445{bottom:912.330000px;}
.y9_c00445{bottom:1022.730000px;}
.y8_c00445{bottom:1056.480000px;}
.y7_c00445{bottom:1090.080000px;}
.y6_c00445{bottom:1123.530000px;}
.y5_c00445{bottom:1156.980000px;}
.y4_c00445{bottom:1189.680000px;}
.y3_c00445{bottom:1224.180000px;}
.y2_c00445{bottom:1257.180000px;}
.y1_c00445{bottom:1290.630000px;}
.h5_c00445{height:13.200074px;}
.h6_c00445{height:43.804688px;}
.h4_c00445{height:120.067383px;}
.h2_c00445{height:121.546875px;}
.h3_c00445{height:182.320312px;}
.h0_c00445{height:1382.700000px;}
.h1_c00445{height:1383.000000px;}
.w2_c00445{width:104.875500px;}
.w0_c00445{width:863.175000px;}
.w1_c00445{width:863.250000px;}
.x0_c00445{left:0.000000px;}
.xa_c00445{left:37.500000px;}
.xb_c00445{left:105.900000px;}
.x2_c00445{left:243.750000px;}
.x1_c00445{left:244.950000px;}
.x3_c00445{left:246.000000px;}
.x4_c00445{left:247.050000px;}
.x5_c00445{left:248.700000px;}
.x6_c00445{left:252.150000px;}
.xe_c00445{left:253.500000px;}
.xd_c00445{left:254.550000px;}
.xc_c00445{left:255.750000px;}
.xf_c00445{left:257.850000px;}
.x9_c00445{left:303.150000px;}
.x11_c00445{left:383.401749px;}
.x7_c00445{left:402.300000px;}
.x8_c00445{left:479.250000px;}
.x10_c00445{left:490.200000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ls1_c00445{letter-spacing:5.333333pt;}
.ws0_c00445{word-spacing:-56.448000pt;}
.ws2_c00445{word-spacing:-54.261333pt;}
.ws4_c00445{word-spacing:-45.333333pt;}
.ws3_c00445{word-spacing:-32.853333pt;}
.ws1_c00445{word-spacing:-30.848000pt;}
.ws5_c00445{word-spacing:0.000000pt;}
._45_c00445{margin-left:-82.485333pt;}
._48_c00445{margin-left:-32.325333pt;}
._34_c00445{margin-left:-30.890667pt;}
._3c_c00445{margin-left:-27.029333pt;}
._28_c00445{margin-left:-23.125333pt;}
._2b_c00445{margin-left:-20.053333pt;}
._38_c00445{margin-left:-16.608000pt;}
._1e_c00445{margin-left:-13.824000pt;}
._1c_c00445{margin-left:-12.800000pt;}
._1b_c00445{margin-left:-11.274667pt;}
._32_c00445{margin-left:-9.333333pt;}
._1d_c00445{margin-left:-8.192000pt;}
._39_c00445{margin-left:-7.178667pt;}
._2c_c00445{margin-left:-6.240000pt;}
._20_c00445{margin-left:-4.874667pt;}
._24_c00445{margin-left:-3.797333pt;}
._f_c00445{margin-left:-2.133333pt;}
._c_c00445{margin-left:-1.024000pt;}
._16_c00445{width:1.034667pt;}
._7_c00445{width:2.048000pt;}
._3_c00445{width:3.072000pt;}
._1_c00445{width:4.352000pt;}
._4_c00445{width:6.058667pt;}
._0_c00445{width:7.082667pt;}
._5_c00445{width:8.106667pt;}
._2_c00445{width:9.386667pt;}
._8_c00445{width:10.837333pt;}
._14_c00445{width:11.776000pt;}
._19_c00445{width:13.482667pt;}
._1a_c00445{width:14.506667pt;}
._18_c00445{width:15.616000pt;}
._a_c00445{width:16.896000pt;}
._17_c00445{width:17.834667pt;}
._e_c00445{width:19.456000pt;}
._26_c00445{width:22.016000pt;}
._9_c00445{width:23.296000pt;}
._11_c00445{width:24.576000pt;}
._42_c00445{width:25.600000pt;}
._1f_c00445{width:26.965333pt;}
._b_c00445{width:27.904000pt;}
._41_c00445{width:29.354667pt;}
._6_c00445{width:30.293333pt;}
._3b_c00445{width:32.170667pt;}
._3d_c00445{width:33.248000pt;}
._21_c00445{width:34.688000pt;}
._2a_c00445{width:35.754667pt;}
._3e_c00445{width:36.768000pt;}
._29_c00445{width:38.144000pt;}
._10_c00445{width:39.765333pt;}
._15_c00445{width:41.493333pt;}
._d_c00445{width:43.690667pt;}
._23_c00445{width:45.482667pt;}
._40_c00445{width:46.677333pt;}
._13_c00445{width:47.701333pt;}
._44_c00445{width:48.784000pt;}
._43_c00445{width:50.688000pt;}
._3f_c00445{width:52.309333pt;}
._3a_c00445{width:57.376000pt;}
._47_c00445{width:59.472000pt;}
._31_c00445{width:61.866667pt;}
._35_c00445{width:62.890667pt;}
._2e_c00445{width:85.930667pt;}
._46_c00445{width:96.064000pt;}
._22_c00445{width:106.453333pt;}
._2d_c00445{width:107.370667pt;}
._37_c00445{width:128.682667pt;}
._30_c00445{width:149.589333pt;}
._27_c00445{width:159.232000pt;}
._25_c00445{width:352.608000pt;}
._2f_c00445{width:381.098667pt;}
._33_c00445{width:384.714667pt;}
._12_c00445{width:482.528000pt;}
._36_c00445{width:597.077333pt;}
._49_c00445{width:713.386667pt;}
.fs6_c00445{font-size:42.666667pt;}
.fs1_c00445{font-size:74.666667pt;}
.fs0_c00445{font-size:85.333333pt;}
.fs3_c00445{font-size:88.000000pt;}
.fs4_c00445{font-size:90.666667pt;}
.fs5_c00445{font-size:101.333333pt;}
.fs2_c00445{font-size:128.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y21_c00445{bottom:2.760000pt;}
.y20_c00445{bottom:6.425206pt;}
.y1f_c00445{bottom:99.360000pt;}
.y1e_c00445{bottom:127.226667pt;}
.y1d_c00445{bottom:157.760000pt;}
.y1c_c00445{bottom:188.160000pt;}
.y1b_c00445{bottom:217.760000pt;}
.y1a_c00445{bottom:248.426667pt;}
.y19_c00445{bottom:278.160000pt;}
.y18_c00445{bottom:309.093333pt;}
.y17_c00445{bottom:338.693333pt;}
.y16_c00445{bottom:368.960000pt;}
.y15_c00445{bottom:398.960000pt;}
.y14_c00445{bottom:429.093333pt;}
.y13_c00445{bottom:459.093333pt;}
.y12_c00445{bottom:489.626667pt;}
.y11_c00445{bottom:519.626667pt;}
.y10_c00445{bottom:549.093333pt;}
.yf_c00445{bottom:579.626667pt;}
.ye_c00445{bottom:612.293333pt;}
.yd_c00445{bottom:639.893333pt;}
.yc_c00445{bottom:720.293333pt;}
.yb_c00445{bottom:764.960000pt;}
.ya_c00445{bottom:810.960000pt;}
.y9_c00445{bottom:909.093333pt;}
.y8_c00445{bottom:939.093333pt;}
.y7_c00445{bottom:968.960000pt;}
.y6_c00445{bottom:998.693333pt;}
.y5_c00445{bottom:1028.426667pt;}
.y4_c00445{bottom:1057.493333pt;}
.y3_c00445{bottom:1088.160000pt;}
.y2_c00445{bottom:1117.493333pt;}
.y1_c00445{bottom:1147.226667pt;}
.h5_c00445{height:11.733399pt;}
.h6_c00445{height:38.937500pt;}
.h4_c00445{height:106.726562pt;}
.h2_c00445{height:108.041667pt;}
.h3_c00445{height:162.062500pt;}
.h0_c00445{height:1229.066667pt;}
.h1_c00445{height:1229.333333pt;}
.w2_c00445{width:93.222667pt;}
.w0_c00445{width:767.266667pt;}
.w1_c00445{width:767.333333pt;}
.x0_c00445{left:0.000000pt;}
.xa_c00445{left:33.333333pt;}
.xb_c00445{left:94.133333pt;}
.x2_c00445{left:216.666667pt;}
.x1_c00445{left:217.733333pt;}
.x3_c00445{left:218.666667pt;}
.x4_c00445{left:219.600000pt;}
.x5_c00445{left:221.066667pt;}
.x6_c00445{left:224.133333pt;}
.xe_c00445{left:225.333333pt;}
.xd_c00445{left:226.266667pt;}
.xc_c00445{left:227.333333pt;}
.xf_c00445{left:229.200000pt;}
.x9_c00445{left:269.466667pt;}
.x11_c00445{left:340.801554pt;}
.x7_c00445{left:357.600000pt;}
.x8_c00445{left:426.000000pt;}
.x10_c00445{left:435.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_efeebfaa1cb15a99d4c6f251.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_6a4c0731dc3e0a045e721362.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_e60fc9f4af50804f35c49ce5.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls2_c00446{letter-spacing:6.000000px;}
.ls0_c00446{letter-spacing:19.452000px;}
.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:-63.504000px;}
.ws2_c00446{word-spacing:-51.000000px;}
.ws3_c00446{word-spacing:-27.474000px;}
.ws4_c00446{word-spacing:0.000000px;}
.ws1_c00446{word-spacing:3.060000px;}
._2d_c00446{margin-left:-19.488000px;}
._2c_c00446{margin-left:-17.376000px;}
._2b_c00446{margin-left:-14.400000px;}
._25_c00446{margin-left:-12.096000px;}
._24_c00446{margin-left:-10.080000px;}
._2f_c00446{margin-left:-8.832000px;}
._29_c00446{margin-left:-7.680000px;}
._2a_c00446{margin-left:-5.952000px;}
._19_c00446{margin-left:-4.800000px;}
._18_c00446{margin-left:-3.072000px;}
._14_c00446{margin-left:-1.344000px;}
._11_c00446{width:1.248000px;}
._9_c00446{width:2.304000px;}
._4_c00446{width:3.648000px;}
._2_c00446{width:4.800000px;}
._1_c00446{width:6.816000px;}
._17_c00446{width:8.352000px;}
._0_c00446{width:10.080000px;}
._23_c00446{width:11.136000px;}
._3_c00446{width:12.576000px;}
._31_c00446{width:13.824000px;}
._1e_c00446{width:14.880000px;}
._1d_c00446{width:16.800000px;}
._27_c00446{width:18.432000px;}
._1b_c00446{width:19.584000px;}
._c_c00446{width:21.312000px;}
._d_c00446{width:24.288000px;}
._21_c00446{width:26.400000px;}
._10_c00446{width:27.936000px;}
._8_c00446{width:29.472000px;}
._5_c00446{width:30.624000px;}
._20_c00446{width:31.680000px;}
._1f_c00446{width:33.216000px;}
._6_c00446{width:34.272000px;}
._1c_c00446{width:36.192000px;}
._e_c00446{width:38.208000px;}
._b_c00446{width:39.840000px;}
._16_c00446{width:41.184000px;}
._a_c00446{width:42.720000px;}
._1a_c00446{width:44.736000px;}
._12_c00446{width:47.232000px;}
._15_c00446{width:49.056000px;}
._7_c00446{width:50.208000px;}
._22_c00446{width:51.552000px;}
._33_c00446{width:52.596000px;}
._f_c00446{width:54.432000px;}
._28_c00446{width:55.776000px;}
._32_c00446{width:58.464000px;}
._13_c00446{width:65.088000px;}
._30_c00446{width:66.384000px;}
._26_c00446{width:71.712000px;}
._2e_c00446{width:166.272000px;}
.fc2_c00446{color:transparent;}
.fc1_c00446{color:rgb(128,128,128);}
.fc0_c00446{color:rgb(0,0,0);}
.fs5_c00446{font-size:48.000000px;}
.fs2_c00446{font-size:60.000000px;}
.fs1_c00446{font-size:84.000000px;}
.fs0_c00446{font-size:96.000000px;}
.fs3_c00446{font-size:102.000000px;}
.fs4_c00446{font-size:114.000000px;}
.y0_c00446{bottom:0.000000px;}
.y26_c00446{bottom:3.105000px;}
.y25_c00446{bottom:7.228369px;}
.y24_c00446{bottom:113.370000px;}
.y23_c00446{bottom:145.170000px;}
.y22_c00446{bottom:180.570000px;}
.y21_c00446{bottom:214.320000px;}
.y20_c00446{bottom:248.970000px;}
.y1f_c00446{bottom:282.720000px;}
.y1e_c00446{bottom:316.470000px;}
.y1d_c00446{bottom:351.720000px;}
.y1c_c00446{bottom:384.120000px;}
.y1b_c00446{bottom:417.870000px;}
.y1a_c00446{bottom:450.870000px;}
.y19_c00446{bottom:484.620000px;}
.y18_c00446{bottom:519.120000px;}
.y17_c00446{bottom:552.420000px;}
.y16_c00446{bottom:586.620000px;}
.y15_c00446{bottom:620.970000px;}
.y14_c00446{bottom:653.670000px;}
.y13_c00446{bottom:687.720000px;}
.y12_c00446{bottom:721.170000px;}
.y11_c00446{bottom:753.870000px;}
.y10_c00446{bottom:787.320000px;}
.yf_c00446{bottom:820.170000px;}
.ye_c00446{bottom:852.570000px;}
.yd_c00446{bottom:888.270000px;}
.yc_c00446{bottom:920.370000px;}
.yb_c00446{bottom:953.070000px;}
.ya_c00446{bottom:986.220000px;}
.y9_c00446{bottom:1019.970000px;}
.y8_c00446{bottom:1053.570000px;}
.y7_c00446{bottom:1086.720000px;}
.y6_c00446{bottom:1119.870000px;}
.y5_c00446{bottom:1152.870000px;}
.y4_c00446{bottom:1186.620000px;}
.y3_c00446{bottom:1219.620000px;}
.y2_c00446{bottom:1252.770000px;}
.y1_c00446{bottom:1286.820000px;}
.h4_c00446{height:13.200073px;}
.h5_c00446{height:43.804688px;}
.h2_c00446{height:121.546875px;}
.h3_c00446{height:144.336914px;}
.h0_c00446{height:1383.450000px;}
.h1_c00446{height:1383.750000px;}
.w2_c00446{width:104.875500px;}
.w0_c00446{width:878.025000px;}
.w1_c00446{width:878.250000px;}
.x0_c00446{left:0.000000px;}
.x4_c00446{left:32.700000px;}
.x2_c00446{left:34.350000px;}
.x3_c00446{left:35.400000px;}
.x1_c00446{left:36.450000px;}
.x5_c00446{left:37.500000px;}
.x6_c00446{left:40.200000px;}
.x7_c00446{left:43.500000px;}
.x9_c00446{left:46.200000px;}
.x8_c00446{left:48.300000px;}
.xb_c00446{left:390.826721px;}
.xa_c00446{left:573.750000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls2_c00446{letter-spacing:5.333333pt;}
.ls0_c00446{letter-spacing:17.290667pt;}
.ws0_c00446{word-spacing:-56.448000pt;}
.ws2_c00446{word-spacing:-45.333333pt;}
.ws3_c00446{word-spacing:-24.421333pt;}
.ws4_c00446{word-spacing:0.000000pt;}
.ws1_c00446{word-spacing:2.720000pt;}
._2d_c00446{margin-left:-17.322667pt;}
._2c_c00446{margin-left:-15.445333pt;}
._2b_c00446{margin-left:-12.800000pt;}
._25_c00446{margin-left:-10.752000pt;}
._24_c00446{margin-left:-8.960000pt;}
._2f_c00446{margin-left:-7.850667pt;}
._29_c00446{margin-left:-6.826667pt;}
._2a_c00446{margin-left:-5.290667pt;}
._19_c00446{margin-left:-4.266667pt;}
._18_c00446{margin-left:-2.730667pt;}
._14_c00446{margin-left:-1.194667pt;}
._11_c00446{width:1.109333pt;}
._9_c00446{width:2.048000pt;}
._4_c00446{width:3.242667pt;}
._2_c00446{width:4.266667pt;}
._1_c00446{width:6.058667pt;}
._17_c00446{width:7.424000pt;}
._0_c00446{width:8.960000pt;}
._23_c00446{width:9.898667pt;}
._3_c00446{width:11.178667pt;}
._31_c00446{width:12.288000pt;}
._1e_c00446{width:13.226667pt;}
._1d_c00446{width:14.933333pt;}
._27_c00446{width:16.384000pt;}
._1b_c00446{width:17.408000pt;}
._c_c00446{width:18.944000pt;}
._d_c00446{width:21.589333pt;}
._21_c00446{width:23.466667pt;}
._10_c00446{width:24.832000pt;}
._8_c00446{width:26.197333pt;}
._5_c00446{width:27.221333pt;}
._20_c00446{width:28.160000pt;}
._1f_c00446{width:29.525333pt;}
._6_c00446{width:30.464000pt;}
._1c_c00446{width:32.170667pt;}
._e_c00446{width:33.962667pt;}
._b_c00446{width:35.413333pt;}
._16_c00446{width:36.608000pt;}
._a_c00446{width:37.973333pt;}
._1a_c00446{width:39.765333pt;}
._12_c00446{width:41.984000pt;}
._15_c00446{width:43.605333pt;}
._7_c00446{width:44.629333pt;}
._22_c00446{width:45.824000pt;}
._33_c00446{width:46.752000pt;}
._f_c00446{width:48.384000pt;}
._28_c00446{width:49.578667pt;}
._32_c00446{width:51.968000pt;}
._13_c00446{width:57.856000pt;}
._30_c00446{width:59.008000pt;}
._26_c00446{width:63.744000pt;}
._2e_c00446{width:147.797333pt;}
.fs5_c00446{font-size:42.666667pt;}
.fs2_c00446{font-size:53.333333pt;}
.fs1_c00446{font-size:74.666667pt;}
.fs0_c00446{font-size:85.333333pt;}
.fs3_c00446{font-size:90.666667pt;}
.fs4_c00446{font-size:101.333333pt;}
.y0_c00446{bottom:0.000000pt;}
.y26_c00446{bottom:2.760000pt;}
.y25_c00446{bottom:6.425217pt;}
.y24_c00446{bottom:100.773333pt;}
.y23_c00446{bottom:129.040000pt;}
.y22_c00446{bottom:160.506667pt;}
.y21_c00446{bottom:190.506667pt;}
.y20_c00446{bottom:221.306667pt;}
.y1f_c00446{bottom:251.306667pt;}
.y1e_c00446{bottom:281.306667pt;}
.y1d_c00446{bottom:312.640000pt;}
.y1c_c00446{bottom:341.440000pt;}
.y1b_c00446{bottom:371.440000pt;}
.y1a_c00446{bottom:400.773333pt;}
.y19_c00446{bottom:430.773333pt;}
.y18_c00446{bottom:461.440000pt;}
.y17_c00446{bottom:491.040000pt;}
.y16_c00446{bottom:521.440000pt;}
.y15_c00446{bottom:551.973333pt;}
.y14_c00446{bottom:581.040000pt;}
.y13_c00446{bottom:611.306667pt;}
.y12_c00446{bottom:641.040000pt;}
.y11_c00446{bottom:670.106667pt;}
.y10_c00446{bottom:699.840000pt;}
.yf_c00446{bottom:729.040000pt;}
.ye_c00446{bottom:757.840000pt;}
.yd_c00446{bottom:789.573333pt;}
.yc_c00446{bottom:818.106667pt;}
.yb_c00446{bottom:847.173333pt;}
.ya_c00446{bottom:876.640000pt;}
.y9_c00446{bottom:906.640000pt;}
.y8_c00446{bottom:936.506667pt;}
.y7_c00446{bottom:965.973333pt;}
.y6_c00446{bottom:995.440000pt;}
.y5_c00446{bottom:1024.773333pt;}
.y4_c00446{bottom:1054.773333pt;}
.y3_c00446{bottom:1084.106667pt;}
.y2_c00446{bottom:1113.573333pt;}
.y1_c00446{bottom:1143.840000pt;}
.h4_c00446{height:11.733399pt;}
.h5_c00446{height:38.937500pt;}
.h2_c00446{height:108.041667pt;}
.h3_c00446{height:128.299479pt;}
.h0_c00446{height:1229.733333pt;}
.h1_c00446{height:1230.000000pt;}
.w2_c00446{width:93.222667pt;}
.w0_c00446{width:780.466667pt;}
.w1_c00446{width:780.666667pt;}
.x0_c00446{left:0.000000pt;}
.x4_c00446{left:29.066667pt;}
.x2_c00446{left:30.533333pt;}
.x3_c00446{left:31.466667pt;}
.x1_c00446{left:32.400000pt;}
.x5_c00446{left:33.333333pt;}
.x6_c00446{left:35.733333pt;}
.x7_c00446{left:38.666667pt;}
.x9_c00446{left:41.066667pt;}
.x8_c00446{left:42.933333pt;}
.xb_c00446{left:347.401530pt;}
.xa_c00446{left:510.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_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_e6db445ec0fa0dc6ff6bd7e2.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_7f20c04b34b7d87759c73932.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00447;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.ls1_c00447{letter-spacing:9.000000px;}
.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;}
}
.ws0_c00447{word-spacing:-72.504000px;}
.ws1_c00447{word-spacing:-63.504000px;}
.ws2_c00447{word-spacing:-51.000000px;}
.ws4_c00447{word-spacing:-23.136000px;}
.ws5_c00447{word-spacing:0.000000px;}
.ws3_c00447{word-spacing:1.794000px;}
._38_c00447{margin-left:-28.716000px;}
._2b_c00447{margin-left:-20.304000px;}
._3e_c00447{margin-left:-17.472000px;}
._31_c00447{margin-left:-15.936000px;}
._14_c00447{margin-left:-13.728000px;}
._39_c00447{margin-left:-10.944000px;}
._19_c00447{margin-left:-8.928000px;}
._16_c00447{margin-left:-7.584000px;}
._a_c00447{margin-left:-6.432000px;}
._9_c00447{margin-left:-4.896000px;}
._f_c00447{margin-left:-3.168000px;}
._e_c00447{margin-left:-2.112000px;}
._36_c00447{margin-left:-1.056000px;}
._35_c00447{width:1.008000px;}
._7_c00447{width:2.016000px;}
._6_c00447{width:3.360000px;}
._10_c00447{width:4.512000px;}
._4_c00447{width:5.568000px;}
._1_c00447{width:7.296000px;}
._23_c00447{width:9.024000px;}
._2_c00447{width:10.368000px;}
._0_c00447{width:11.712000px;}
._3_c00447{width:12.960000px;}
._1d_c00447{width:14.592000px;}
._1f_c00447{width:15.936000px;}
._27_c00447{width:17.424000px;}
._b_c00447{width:19.104000px;}
._2c_c00447{width:20.784000px;}
._26_c00447{width:21.792000px;}
._32_c00447{width:24.288000px;}
._20_c00447{width:25.920000px;}
._12_c00447{width:27.168000px;}
._28_c00447{width:28.320000px;}
._21_c00447{width:29.760000px;}
._29_c00447{width:31.296000px;}
._18_c00447{width:32.352000px;}
._c_c00447{width:34.176000px;}
._d_c00447{width:36.000000px;}
._2d_c00447{width:37.152000px;}
._24_c00447{width:38.496000px;}
._34_c00447{width:39.744000px;}
._25_c00447{width:40.956000px;}
._2e_c00447{width:42.144000px;}
._3b_c00447{width:43.296000px;}
._2a_c00447{width:45.348000px;}
._8_c00447{width:47.040000px;}
._5_c00447{width:49.152000px;}
._33_c00447{width:51.264000px;}
._22_c00447{width:53.664000px;}
._2f_c00447{width:55.104000px;}
._30_c00447{width:57.276000px;}
._3a_c00447{width:61.200000px;}
._1a_c00447{width:63.456000px;}
._11_c00447{width:68.640000px;}
._13_c00447{width:101.088000px;}
._1b_c00447{width:114.432000px;}
._1e_c00447{width:115.872000px;}
._1c_c00447{width:138.720000px;}
._3d_c00447{width:176.112000px;}
._3c_c00447{width:223.248000px;}
._17_c00447{width:269.376000px;}
._15_c00447{width:299.904000px;}
._3f_c00447{width:747.696000px;}
._37_c00447{width:829.824000px;}
._40_c00447{width:992.928000px;}
.fc2_c00447{color:transparent;}
.fc1_c00447{color:rgb(128,128,128);}
.fc0_c00447{color:rgb(0,0,0);}
.fs4_c00447{font-size:48.000000px;}
.fs3_c00447{font-size:78.000000px;}
.fs1_c00447{font-size:84.000000px;}
.fs0_c00447{font-size:96.000000px;}
.fs2_c00447{font-size:102.000000px;}
.y0_c00447{bottom:0.000000px;}
.y26_c00447{bottom:3.105000px;}
.y25_c00447{bottom:7.228357px;}
.y24_c00447{bottom:119.430000px;}
.y23_c00447{bottom:151.980000px;}
.y22_c00447{bottom:184.230000px;}
.y21_c00447{bottom:218.730000px;}
.y20_c00447{bottom:253.080000px;}
.y1f_c00447{bottom:285.930000px;}
.y1e_c00447{bottom:321.030000px;}
.y1d_c00447{bottom:354.480000px;}
.y1c_c00447{bottom:388.230000px;}
.y1b_c00447{bottom:422.580000px;}
.y1a_c00447{bottom:456.030000px;}
.y19_c00447{bottom:489.780000px;}
.y18_c00447{bottom:523.230000px;}
.y17_c00447{bottom:556.830000px;}
.y16_c00447{bottom:590.730000px;}
.y15_c00447{bottom:624.330000px;}
.y14_c00447{bottom:658.080000px;}
.y13_c00447{bottom:692.280000px;}
.y12_c00447{bottom:725.580000px;}
.y11_c00447{bottom:759.030000px;}
.y10_c00447{bottom:792.780000px;}
.yf_c00447{bottom:826.530000px;}
.ye_c00447{bottom:859.980000px;}
.yd_c00447{bottom:893.130000px;}
.yc_c00447{bottom:926.730000px;}
.yb_c00447{bottom:959.880000px;}
.ya_c00447{bottom:992.880000px;}
.y9_c00447{bottom:1025.730000px;}
.y8_c00447{bottom:1058.730000px;}
.y7_c00447{bottom:1092.180000px;}
.y6_c00447{bottom:1125.330000px;}
.y5_c00447{bottom:1158.930000px;}
.y4_c00447{bottom:1193.430000px;}
.y3_c00447{bottom:1224.480000px;}
.y2_c00447{bottom:1256.880000px;}
.y1_c00447{bottom:1292.730000px;}
.h3_c00447{height:13.200074px;}
.h4_c00447{height:43.804688px;}
.h2_c00447{height:121.546875px;}
.h0_c00447{height:1382.700000px;}
.h1_c00447{height:1383.000000px;}
.w2_c00447{width:104.875500px;}
.w0_c00447{width:863.175000px;}
.w1_c00447{width:863.250000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:18.600000px;}
.x9_c00447{left:26.700000px;}
.xc_c00447{left:196.800000px;}
.x1_c00447{left:237.300000px;}
.x3_c00447{left:238.500000px;}
.x4_c00447{left:240.000000px;}
.x5_c00447{left:241.050000px;}
.x6_c00447{left:243.300000px;}
.x7_c00447{left:244.800000px;}
.x8_c00447{left:246.000000px;}
.xa_c00447{left:247.050000px;}
.xb_c00447{left:249.300000px;}
.xd_c00447{left:383.401749px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ls1_c00447{letter-spacing:8.000000pt;}
.ws0_c00447{word-spacing:-64.448000pt;}
.ws1_c00447{word-spacing:-56.448000pt;}
.ws2_c00447{word-spacing:-45.333333pt;}
.ws4_c00447{word-spacing:-20.565333pt;}
.ws5_c00447{word-spacing:0.000000pt;}
.ws3_c00447{word-spacing:1.594667pt;}
._38_c00447{margin-left:-25.525333pt;}
._2b_c00447{margin-left:-18.048000pt;}
._3e_c00447{margin-left:-15.530667pt;}
._31_c00447{margin-left:-14.165333pt;}
._14_c00447{margin-left:-12.202667pt;}
._39_c00447{margin-left:-9.728000pt;}
._19_c00447{margin-left:-7.936000pt;}
._16_c00447{margin-left:-6.741333pt;}
._a_c00447{margin-left:-5.717333pt;}
._9_c00447{margin-left:-4.352000pt;}
._f_c00447{margin-left:-2.816000pt;}
._e_c00447{margin-left:-1.877333pt;}
._36_c00447{margin-left:-0.938667pt;}
._35_c00447{width:0.896000pt;}
._7_c00447{width:1.792000pt;}
._6_c00447{width:2.986667pt;}
._10_c00447{width:4.010667pt;}
._4_c00447{width:4.949333pt;}
._1_c00447{width:6.485333pt;}
._23_c00447{width:8.021333pt;}
._2_c00447{width:9.216000pt;}
._0_c00447{width:10.410667pt;}
._3_c00447{width:11.520000pt;}
._1d_c00447{width:12.970667pt;}
._1f_c00447{width:14.165333pt;}
._27_c00447{width:15.488000pt;}
._b_c00447{width:16.981333pt;}
._2c_c00447{width:18.474667pt;}
._26_c00447{width:19.370667pt;}
._32_c00447{width:21.589333pt;}
._20_c00447{width:23.040000pt;}
._12_c00447{width:24.149333pt;}
._28_c00447{width:25.173333pt;}
._21_c00447{width:26.453333pt;}
._29_c00447{width:27.818667pt;}
._18_c00447{width:28.757333pt;}
._c_c00447{width:30.378667pt;}
._d_c00447{width:32.000000pt;}
._2d_c00447{width:33.024000pt;}
._24_c00447{width:34.218667pt;}
._34_c00447{width:35.328000pt;}
._25_c00447{width:36.405333pt;}
._2e_c00447{width:37.461333pt;}
._3b_c00447{width:38.485333pt;}
._2a_c00447{width:40.309333pt;}
._8_c00447{width:41.813333pt;}
._5_c00447{width:43.690667pt;}
._33_c00447{width:45.568000pt;}
._22_c00447{width:47.701333pt;}
._2f_c00447{width:48.981333pt;}
._30_c00447{width:50.912000pt;}
._3a_c00447{width:54.400000pt;}
._1a_c00447{width:56.405333pt;}
._11_c00447{width:61.013333pt;}
._13_c00447{width:89.856000pt;}
._1b_c00447{width:101.717333pt;}
._1e_c00447{width:102.997333pt;}
._1c_c00447{width:123.306667pt;}
._3d_c00447{width:156.544000pt;}
._3c_c00447{width:198.442667pt;}
._17_c00447{width:239.445333pt;}
._15_c00447{width:266.581333pt;}
._3f_c00447{width:664.618667pt;}
._37_c00447{width:737.621333pt;}
._40_c00447{width:882.602667pt;}
.fs4_c00447{font-size:42.666667pt;}
.fs3_c00447{font-size:69.333333pt;}
.fs1_c00447{font-size:74.666667pt;}
.fs0_c00447{font-size:85.333333pt;}
.fs2_c00447{font-size:90.666667pt;}
.y0_c00447{bottom:0.000000pt;}
.y26_c00447{bottom:2.760000pt;}
.y25_c00447{bottom:6.425206pt;}
.y24_c00447{bottom:106.160000pt;}
.y23_c00447{bottom:135.093333pt;}
.y22_c00447{bottom:163.760000pt;}
.y21_c00447{bottom:194.426667pt;}
.y20_c00447{bottom:224.960000pt;}
.y1f_c00447{bottom:254.160000pt;}
.y1e_c00447{bottom:285.360000pt;}
.y1d_c00447{bottom:315.093333pt;}
.y1c_c00447{bottom:345.093333pt;}
.y1b_c00447{bottom:375.626667pt;}
.y1a_c00447{bottom:405.360000pt;}
.y19_c00447{bottom:435.360000pt;}
.y18_c00447{bottom:465.093333pt;}
.y17_c00447{bottom:494.960000pt;}
.y16_c00447{bottom:525.093333pt;}
.y15_c00447{bottom:554.960000pt;}
.y14_c00447{bottom:584.960000pt;}
.y13_c00447{bottom:615.360000pt;}
.y12_c00447{bottom:644.960000pt;}
.y11_c00447{bottom:674.693333pt;}
.y10_c00447{bottom:704.693333pt;}
.yf_c00447{bottom:734.693333pt;}
.ye_c00447{bottom:764.426667pt;}
.yd_c00447{bottom:793.893333pt;}
.yc_c00447{bottom:823.760000pt;}
.yb_c00447{bottom:853.226667pt;}
.ya_c00447{bottom:882.560000pt;}
.y9_c00447{bottom:911.760000pt;}
.y8_c00447{bottom:941.093333pt;}
.y7_c00447{bottom:970.826667pt;}
.y6_c00447{bottom:1000.293333pt;}
.y5_c00447{bottom:1030.160000pt;}
.y4_c00447{bottom:1060.826667pt;}
.y3_c00447{bottom:1088.426667pt;}
.y2_c00447{bottom:1117.226667pt;}
.y1_c00447{bottom:1149.093333pt;}
.h3_c00447{height:11.733399pt;}
.h4_c00447{height:38.937500pt;}
.h2_c00447{height:108.041667pt;}
.h0_c00447{height:1229.066667pt;}
.h1_c00447{height:1229.333333pt;}
.w2_c00447{width:93.222667pt;}
.w0_c00447{width:767.266667pt;}
.w1_c00447{width:767.333333pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:16.533333pt;}
.x9_c00447{left:23.733333pt;}
.xc_c00447{left:174.933333pt;}
.x1_c00447{left:210.933333pt;}
.x3_c00447{left:212.000000pt;}
.x4_c00447{left:213.333333pt;}
.x5_c00447{left:214.266667pt;}
.x6_c00447{left:216.266667pt;}
.x7_c00447{left:217.600000pt;}
.x8_c00447{left:218.666667pt;}
.xa_c00447{left:219.600000pt;}
.xb_c00447{left:221.600000pt;}
.xd_c00447{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b1447045cd6b5417378bedb.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_129b39e5a7b88983cf604a4c.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_e7b2cf8f4abfc833d5c256ef.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;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_c00448;src:url('chunks/assets/font_7c9b0bd5dfb53515c1bee4d6.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00448;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00448{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls2_c00448{letter-spacing:0.000000px;}
.ls1_c00448{letter-spacing:3.000000px;}
.ls3_c00448{letter-spacing:6.000000px;}
.ls0_c00448{letter-spacing:66.987000px;}
.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:-63.504000px;}
.ws1_c00448{word-spacing:-61.044000px;}
.ws2_c00448{word-spacing:0.000000px;}
._36_c00448{margin-left:-67.488000px;}
._19_c00448{margin-left:-38.112000px;}
._3a_c00448{margin-left:-25.440000px;}
._38_c00448{margin-left:-23.616000px;}
._34_c00448{margin-left:-20.640000px;}
._3e_c00448{margin-left:-18.432000px;}
._22_c00448{margin-left:-12.576000px;}
._39_c00448{margin-left:-10.944000px;}
._3f_c00448{margin-left:-9.696000px;}
._3b_c00448{margin-left:-8.640000px;}
._30_c00448{margin-left:-6.720000px;}
._37_c00448{margin-left:-5.568000px;}
._9_c00448{margin-left:-4.128000px;}
._b_c00448{margin-left:-2.112000px;}
._27_c00448{margin-left:-1.056000px;}
._c_c00448{width:1.152000px;}
._1_c00448{width:2.208000px;}
._0_c00448{width:3.552000px;}
._8_c00448{width:4.896000px;}
._3_c00448{width:6.912000px;}
._6_c00448{width:8.544000px;}
._5_c00448{width:10.272000px;}
._25_c00448{width:11.424000px;}
._7_c00448{width:12.576000px;}
._a_c00448{width:14.496000px;}
._23_c00448{width:15.936000px;}
._24_c00448{width:17.664000px;}
._17_c00448{width:18.912000px;}
._28_c00448{width:20.352000px;}
._26_c00448{width:21.696000px;}
._1d_c00448{width:24.480000px;}
._4_c00448{width:26.208000px;}
._21_c00448{width:27.456000px;}
._1a_c00448{width:29.376000px;}
._35_c00448{width:30.624000px;}
._2_c00448{width:31.776000px;}
._f_c00448{width:32.928000px;}
._1b_c00448{width:33.984000px;}
._29_c00448{width:35.136000px;}
._1c_c00448{width:37.248000px;}
._12_c00448{width:38.880000px;}
._d_c00448{width:40.800000px;}
._e_c00448{width:42.624000px;}
._2d_c00448{width:43.680000px;}
._14_c00448{width:44.736000px;}
._13_c00448{width:45.888000px;}
._11_c00448{width:47.712000px;}
._16_c00448{width:49.152000px;}
._1f_c00448{width:51.360000px;}
._10_c00448{width:54.336000px;}
._20_c00448{width:55.680000px;}
._2a_c00448{width:58.272000px;}
._15_c00448{width:61.824000px;}
._2c_c00448{width:64.320000px;}
._2b_c00448{width:66.432000px;}
._1e_c00448{width:71.424000px;}
._2f_c00448{width:83.712000px;}
._33_c00448{width:86.208000px;}
._3c_c00448{width:90.624000px;}
._3d_c00448{width:168.528000px;}
._2e_c00448{width:170.208000px;}
._32_c00448{width:287.808000px;}
._31_c00448{width:343.800000px;}
._18_c00448{width:441.984000px;}
._40_c00448{width:783.360000px;}
.fc2_c00448{color:transparent;}
.fc1_c00448{color:rgb(128,128,128);}
.fc0_c00448{color:rgb(0,0,0);}
.fs6_c00448{font-size:48.000000px;}
.fs1_c00448{font-size:84.000000px;}
.fs2_c00448{font-size:90.000000px;}
.fs3_c00448{font-size:93.000000px;}
.fs0_c00448{font-size:96.000000px;}
.fs5_c00448{font-size:99.000000px;}
.fs4_c00448{font-size:102.000000px;}
.y0_c00448{bottom:0.000000px;}
.y25_c00448{bottom:3.105000px;}
.y24_c00448{bottom:7.228369px;}
.y23_c00448{bottom:138.420000px;}
.y22_c00448{bottom:173.820000px;}
.y21_c00448{bottom:207.570000px;}
.y20_c00448{bottom:242.670000px;}
.y1f_c00448{bottom:275.970000px;}
.y1e_c00448{bottom:310.170000px;}
.y1d_c00448{bottom:343.920000px;}
.y1c_c00448{bottom:377.670000px;}
.y1b_c00448{bottom:411.420000px;}
.y1a_c00448{bottom:445.170000px;}
.y19_c00448{bottom:478.920000px;}
.y18_c00448{bottom:512.670000px;}
.y17_c00448{bottom:545.970000px;}
.y16_c00448{bottom:579.720000px;}
.y15_c00448{bottom:613.620000px;}
.y14_c00448{bottom:647.370000px;}
.y13_c00448{bottom:680.970000px;}
.y12_c00448{bottom:715.470000px;}
.y11_c00448{bottom:748.470000px;}
.y10_c00448{bottom:782.220000px;}
.yf_c00448{bottom:815.070000px;}
.ye_c00448{bottom:848.370000px;}
.yd_c00448{bottom:880.920000px;}
.yc_c00448{bottom:914.520000px;}
.yb_c00448{bottom:948.270000px;}
.ya_c00448{bottom:982.020000px;}
.y9_c00448{bottom:1015.170000px;}
.y8_c00448{bottom:1048.920000px;}
.y7_c00448{bottom:1081.920000px;}
.y6_c00448{bottom:1114.770000px;}
.y5_c00448{bottom:1148.220000px;}
.y4_c00448{bottom:1180.920000px;}
.y3_c00448{bottom:1213.920000px;}
.y2_c00448{bottom:1247.970000px;}
.y1_c00448{bottom:1281.420000px;}
.h4_c00448{height:13.200073px;}
.h5_c00448{height:43.804688px;}
.h3_c00448{height:94.320000px;}
.h2_c00448{height:121.546875px;}
.h0_c00448{height:1383.450000px;}
.h1_c00448{height:1383.750000px;}
.w2_c00448{width:104.875500px;}
.w0_c00448{width:878.025000px;}
.w1_c00448{width:878.250000px;}
.x0_c00448{left:0.000000px;}
.x7_c00448{left:27.750000px;}
.x6_c00448{left:28.800000px;}
.x5_c00448{left:30.000000px;}
.x4_c00448{left:31.500000px;}
.x3_c00448{left:32.700000px;}
.x9_c00448{left:33.750000px;}
.x2_c00448{left:34.800000px;}
.x1_c00448{left:36.450000px;}
.xa_c00448{left:68.850000px;}
.x8_c00448{left:78.600000px;}
.xb_c00448{left:157.350000px;}
.xc_c00448{left:160.950000px;}
.xd_c00448{left:291.300000px;}
.xe_c00448{left:390.826721px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls2_c00448{letter-spacing:0.000000pt;}
.ls1_c00448{letter-spacing:2.666667pt;}
.ls3_c00448{letter-spacing:5.333333pt;}
.ls0_c00448{letter-spacing:59.544000pt;}
.ws0_c00448{word-spacing:-56.448000pt;}
.ws1_c00448{word-spacing:-54.261333pt;}
.ws2_c00448{word-spacing:0.000000pt;}
._36_c00448{margin-left:-59.989333pt;}
._19_c00448{margin-left:-33.877333pt;}
._3a_c00448{margin-left:-22.613333pt;}
._38_c00448{margin-left:-20.992000pt;}
._34_c00448{margin-left:-18.346667pt;}
._3e_c00448{margin-left:-16.384000pt;}
._22_c00448{margin-left:-11.178667pt;}
._39_c00448{margin-left:-9.728000pt;}
._3f_c00448{margin-left:-8.618667pt;}
._3b_c00448{margin-left:-7.680000pt;}
._30_c00448{margin-left:-5.973333pt;}
._37_c00448{margin-left:-4.949333pt;}
._9_c00448{margin-left:-3.669333pt;}
._b_c00448{margin-left:-1.877333pt;}
._27_c00448{margin-left:-0.938667pt;}
._c_c00448{width:1.024000pt;}
._1_c00448{width:1.962667pt;}
._0_c00448{width:3.157333pt;}
._8_c00448{width:4.352000pt;}
._3_c00448{width:6.144000pt;}
._6_c00448{width:7.594667pt;}
._5_c00448{width:9.130667pt;}
._25_c00448{width:10.154667pt;}
._7_c00448{width:11.178667pt;}
._a_c00448{width:12.885333pt;}
._23_c00448{width:14.165333pt;}
._24_c00448{width:15.701333pt;}
._17_c00448{width:16.810667pt;}
._28_c00448{width:18.090667pt;}
._26_c00448{width:19.285333pt;}
._1d_c00448{width:21.760000pt;}
._4_c00448{width:23.296000pt;}
._21_c00448{width:24.405333pt;}
._1a_c00448{width:26.112000pt;}
._35_c00448{width:27.221333pt;}
._2_c00448{width:28.245333pt;}
._f_c00448{width:29.269333pt;}
._1b_c00448{width:30.208000pt;}
._29_c00448{width:31.232000pt;}
._1c_c00448{width:33.109333pt;}
._12_c00448{width:34.560000pt;}
._d_c00448{width:36.266667pt;}
._e_c00448{width:37.888000pt;}
._2d_c00448{width:38.826667pt;}
._14_c00448{width:39.765333pt;}
._13_c00448{width:40.789333pt;}
._11_c00448{width:42.410667pt;}
._16_c00448{width:43.690667pt;}
._1f_c00448{width:45.653333pt;}
._10_c00448{width:48.298667pt;}
._20_c00448{width:49.493333pt;}
._2a_c00448{width:51.797333pt;}
._15_c00448{width:54.954667pt;}
._2c_c00448{width:57.173333pt;}
._2b_c00448{width:59.050667pt;}
._1e_c00448{width:63.488000pt;}
._2f_c00448{width:74.410667pt;}
._33_c00448{width:76.629333pt;}
._3c_c00448{width:80.554667pt;}
._3d_c00448{width:149.802667pt;}
._2e_c00448{width:151.296000pt;}
._32_c00448{width:255.829333pt;}
._31_c00448{width:305.600000pt;}
._18_c00448{width:392.874667pt;}
._40_c00448{width:696.320000pt;}
.fs6_c00448{font-size:42.666667pt;}
.fs1_c00448{font-size:74.666667pt;}
.fs2_c00448{font-size:80.000000pt;}
.fs3_c00448{font-size:82.666667pt;}
.fs0_c00448{font-size:85.333333pt;}
.fs5_c00448{font-size:88.000000pt;}
.fs4_c00448{font-size:90.666667pt;}
.y0_c00448{bottom:0.000000pt;}
.y25_c00448{bottom:2.760000pt;}
.y24_c00448{bottom:6.425217pt;}
.y23_c00448{bottom:123.040000pt;}
.y22_c00448{bottom:154.506667pt;}
.y21_c00448{bottom:184.506667pt;}
.y20_c00448{bottom:215.706667pt;}
.y1f_c00448{bottom:245.306667pt;}
.y1e_c00448{bottom:275.706667pt;}
.y1d_c00448{bottom:305.706667pt;}
.y1c_c00448{bottom:335.706667pt;}
.y1b_c00448{bottom:365.706667pt;}
.y1a_c00448{bottom:395.706667pt;}
.y19_c00448{bottom:425.706667pt;}
.y18_c00448{bottom:455.706667pt;}
.y17_c00448{bottom:485.306667pt;}
.y16_c00448{bottom:515.306667pt;}
.y15_c00448{bottom:545.440000pt;}
.y14_c00448{bottom:575.440000pt;}
.y13_c00448{bottom:605.306667pt;}
.y12_c00448{bottom:635.973333pt;}
.y11_c00448{bottom:665.306667pt;}
.y10_c00448{bottom:695.306667pt;}
.yf_c00448{bottom:724.506667pt;}
.ye_c00448{bottom:754.106667pt;}
.yd_c00448{bottom:783.040000pt;}
.yc_c00448{bottom:812.906667pt;}
.yb_c00448{bottom:842.906667pt;}
.ya_c00448{bottom:872.906667pt;}
.y9_c00448{bottom:902.373333pt;}
.y8_c00448{bottom:932.373333pt;}
.y7_c00448{bottom:961.706667pt;}
.y6_c00448{bottom:990.906667pt;}
.y5_c00448{bottom:1020.640000pt;}
.y4_c00448{bottom:1049.706667pt;}
.y3_c00448{bottom:1079.040000pt;}
.y2_c00448{bottom:1109.306667pt;}
.y1_c00448{bottom:1139.040000pt;}
.h4_c00448{height:11.733399pt;}
.h5_c00448{height:38.937500pt;}
.h3_c00448{height:83.840000pt;}
.h2_c00448{height:108.041667pt;}
.h0_c00448{height:1229.733333pt;}
.h1_c00448{height:1230.000000pt;}
.w2_c00448{width:93.222667pt;}
.w0_c00448{width:780.466667pt;}
.w1_c00448{width:780.666667pt;}
.x0_c00448{left:0.000000pt;}
.x7_c00448{left:24.666667pt;}
.x6_c00448{left:25.600000pt;}
.x5_c00448{left:26.666667pt;}
.x4_c00448{left:28.000000pt;}
.x3_c00448{left:29.066667pt;}
.x9_c00448{left:30.000000pt;}
.x2_c00448{left:30.933333pt;}
.x1_c00448{left:32.400000pt;}
.xa_c00448{left:61.200000pt;}
.x8_c00448{left:69.866667pt;}
.xb_c00448{left:139.866667pt;}
.xc_c00448{left:143.066667pt;}
.xd_c00448{left:258.933333pt;}
.xe_c00448{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d9dbfa0b8642318cf63aeea.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_c52ce091b6763baa2ed3f497.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_e3d3bac994aaac9421015995.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;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_c00449;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00449;src:url('chunks/assets/font_fd3296afa7769f4fadc40d9b.woff2')format("woff");}.ff6_c00449{font-family:ff6_c00449;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00449;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00449{font-family:ff7_c00449;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls4_c00449{letter-spacing:-15.000000px;}
.ls3_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:6.720000px;}
.ls2_c00449{letter-spacing:21.852000px;}
.ls1_c00449{letter-spacing:22.260000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:-51.000000px;}
.ws1_c00449{word-spacing:-20.244000px;}
.ws2_c00449{word-spacing:0.000000px;}
._3a_c00449{margin-left:-29.688000px;}
._3d_c00449{margin-left:-23.904000px;}
._42_c00449{margin-left:-21.216000px;}
._47_c00449{margin-left:-18.372000px;}
._28_c00449{margin-left:-15.936000px;}
._45_c00449{margin-left:-12.384000px;}
._35_c00449{margin-left:-11.232000px;}
._27_c00449{margin-left:-9.600000px;}
._2c_c00449{margin-left:-8.352000px;}
._f_c00449{margin-left:-7.200000px;}
._e_c00449{margin-left:-5.856000px;}
._2d_c00449{margin-left:-4.128000px;}
._17_c00449{margin-left:-2.880000px;}
._25_c00449{margin-left:-1.056000px;}
._6_c00449{width:1.728000px;}
._0_c00449{width:2.880000px;}
._1_c00449{width:4.128000px;}
._4_c00449{width:5.760000px;}
._2_c00449{width:6.912000px;}
._c_c00449{width:8.736000px;}
._11_c00449{width:9.792000px;}
._9_c00449{width:11.424000px;}
._12_c00449{width:12.864000px;}
._7_c00449{width:14.688000px;}
._44_c00449{width:15.816000px;}
._8_c00449{width:17.472000px;}
._2e_c00449{width:18.720000px;}
._b_c00449{width:20.160000px;}
._a_c00449{width:21.312000px;}
._32_c00449{width:24.288000px;}
._16_c00449{width:25.344000px;}
._19_c00449{width:26.976000px;}
._39_c00449{width:28.512000px;}
._24_c00449{width:30.048000px;}
._2f_c00449{width:31.488000px;}
._5_c00449{width:32.640000px;}
._2a_c00449{width:33.984000px;}
._26_c00449{width:35.136000px;}
._3_c00449{width:36.768000px;}
._31_c00449{width:38.304000px;}
._14_c00449{width:39.360000px;}
._1f_c00449{width:40.992000px;}
._1e_c00449{width:42.528000px;}
._33_c00449{width:43.680000px;}
._2b_c00449{width:45.240000px;}
._1b_c00449{width:47.328000px;}
._18_c00449{width:49.152000px;}
._1c_c00449{width:51.840000px;}
._20_c00449{width:53.664000px;}
._15_c00449{width:55.680000px;}
._38_c00449{width:57.120000px;}
._36_c00449{width:58.272000px;}
._d_c00449{width:60.840000px;}
._29_c00449{width:62.784000px;}
._23_c00449{width:64.128000px;}
._1d_c00449{width:66.720000px;}
._22_c00449{width:69.024000px;}
._1a_c00449{width:70.848000px;}
._34_c00449{width:73.320000px;}
._30_c00449{width:88.896000px;}
._37_c00449{width:95.040000px;}
._41_c00449{width:114.528000px;}
._40_c00449{width:116.832000px;}
._21_c00449{width:127.488000px;}
._3f_c00449{width:150.240000px;}
._13_c00449{width:165.792000px;}
._3e_c00449{width:202.464000px;}
._3c_c00449{width:259.776000px;}
._46_c00449{width:302.952000px;}
._10_c00449{width:315.552000px;}
._43_c00449{width:332.928000px;}
._3b_c00449{width:557.856000px;}
._48_c00449{width:1113.654000px;}
.fc2_c00449{color:transparent;}
.fc1_c00449{color:rgb(128,128,128);}
.fc0_c00449{color:rgb(0,0,0);}
.fs5_c00449{font-size:48.000000px;}
.fs4_c00449{font-size:66.000000px;}
.fs2_c00449{font-size:84.000000px;}
.fs0_c00449{font-size:96.000000px;}
.fs3_c00449{font-size:102.000000px;}
.fs1_c00449{font-size:120.000000px;}
.y0_c00449{bottom:0.000000px;}
.y25_c00449{bottom:3.105000px;}
.y24_c00449{bottom:7.228357px;}
.y23_c00449{bottom:121.830000px;}
.y22_c00449{bottom:152.880000px;}
.y21_c00449{bottom:187.080000px;}
.y20_c00449{bottom:222.180000px;}
.y1f_c00449{bottom:255.180000px;}
.y1e_c00449{bottom:289.680000px;}
.y1d_c00449{bottom:323.730000px;}
.y1c_c00449{bottom:356.730000px;}
.y1b_c00449{bottom:390.930000px;}
.y1a_c00449{bottom:424.530000px;}
.y19_c00449{bottom:458.430000px;}
.y18_c00449{bottom:493.530000px;}
.y17_c00449{bottom:526.530000px;}
.y16_c00449{bottom:561.630000px;}
.y15_c00449{bottom:594.930000px;}
.y14_c00449{bottom:628.080000px;}
.y13_c00449{bottom:661.230000px;}
.y12_c00449{bottom:694.980000px;}
.y11_c00449{bottom:729.030000px;}
.y10_c00449{bottom:762.480000px;}
.yf_c00449{bottom:796.530000px;}
.ye_c00449{bottom:829.530000px;}
.yd_c00449{bottom:863.430000px;}
.yc_c00449{bottom:897.030000px;}
.yb_c00449{bottom:929.880000px;}
.ya_c00449{bottom:963.630000px;}
.y9_c00449{bottom:996.930000px;}
.y8_c00449{bottom:1029.630000px;}
.y7_c00449{bottom:1063.230000px;}
.y6_c00449{bottom:1096.830000px;}
.y5_c00449{bottom:1130.280000px;}
.y4_c00449{bottom:1163.430000px;}
.y3_c00449{bottom:1196.430000px;}
.y2_c00449{bottom:1230.180000px;}
.y1_c00449{bottom:1263.630000px;}
.h5_c00449{height:13.200074px;}
.h6_c00449{height:43.804688px;}
.h4_c00449{height:83.563477px;}
.h2_c00449{height:121.546875px;}
.h3_c00449{height:128.040000px;}
.h0_c00449{height:1382.700000px;}
.h1_c00449{height:1383.000000px;}
.w2_c00449{width:104.875500px;}
.w0_c00449{width:863.175000px;}
.w1_c00449{width:863.250000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:141.750000px;}
.x5_c00449{left:153.150000px;}
.x6_c00449{left:156.300000px;}
.xa_c00449{left:214.650000px;}
.x9_c00449{left:261.150000px;}
.x8_c00449{left:263.250000px;}
.x4_c00449{left:264.900000px;}
.x3_c00449{left:265.950000px;}
.x1_c00449{left:267.600000px;}
.xb_c00449{left:312.450000px;}
.x7_c00449{left:328.650000px;}
.xd_c00449{left:383.401749px;}
.xc_c00449{left:488.550000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:-13.333333pt;}
.ls3_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:5.973333pt;}
.ls2_c00449{letter-spacing:19.424000pt;}
.ls1_c00449{letter-spacing:19.786667pt;}
.ws0_c00449{word-spacing:-45.333333pt;}
.ws1_c00449{word-spacing:-17.994667pt;}
.ws2_c00449{word-spacing:0.000000pt;}
._3a_c00449{margin-left:-26.389333pt;}
._3d_c00449{margin-left:-21.248000pt;}
._42_c00449{margin-left:-18.858667pt;}
._47_c00449{margin-left:-16.330667pt;}
._28_c00449{margin-left:-14.165333pt;}
._45_c00449{margin-left:-11.008000pt;}
._35_c00449{margin-left:-9.984000pt;}
._27_c00449{margin-left:-8.533333pt;}
._2c_c00449{margin-left:-7.424000pt;}
._f_c00449{margin-left:-6.400000pt;}
._e_c00449{margin-left:-5.205333pt;}
._2d_c00449{margin-left:-3.669333pt;}
._17_c00449{margin-left:-2.560000pt;}
._25_c00449{margin-left:-0.938667pt;}
._6_c00449{width:1.536000pt;}
._0_c00449{width:2.560000pt;}
._1_c00449{width:3.669333pt;}
._4_c00449{width:5.120000pt;}
._2_c00449{width:6.144000pt;}
._c_c00449{width:7.765333pt;}
._11_c00449{width:8.704000pt;}
._9_c00449{width:10.154667pt;}
._12_c00449{width:11.434667pt;}
._7_c00449{width:13.056000pt;}
._44_c00449{width:14.058667pt;}
._8_c00449{width:15.530667pt;}
._2e_c00449{width:16.640000pt;}
._b_c00449{width:17.920000pt;}
._a_c00449{width:18.944000pt;}
._32_c00449{width:21.589333pt;}
._16_c00449{width:22.528000pt;}
._19_c00449{width:23.978667pt;}
._39_c00449{width:25.344000pt;}
._24_c00449{width:26.709333pt;}
._2f_c00449{width:27.989333pt;}
._5_c00449{width:29.013333pt;}
._2a_c00449{width:30.208000pt;}
._26_c00449{width:31.232000pt;}
._3_c00449{width:32.682667pt;}
._31_c00449{width:34.048000pt;}
._14_c00449{width:34.986667pt;}
._1f_c00449{width:36.437333pt;}
._1e_c00449{width:37.802667pt;}
._33_c00449{width:38.826667pt;}
._2b_c00449{width:40.213333pt;}
._1b_c00449{width:42.069333pt;}
._18_c00449{width:43.690667pt;}
._1c_c00449{width:46.080000pt;}
._20_c00449{width:47.701333pt;}
._15_c00449{width:49.493333pt;}
._38_c00449{width:50.773333pt;}
._36_c00449{width:51.797333pt;}
._d_c00449{width:54.080000pt;}
._29_c00449{width:55.808000pt;}
._23_c00449{width:57.002667pt;}
._1d_c00449{width:59.306667pt;}
._22_c00449{width:61.354667pt;}
._1a_c00449{width:62.976000pt;}
._34_c00449{width:65.173333pt;}
._30_c00449{width:79.018667pt;}
._37_c00449{width:84.480000pt;}
._41_c00449{width:101.802667pt;}
._40_c00449{width:103.850667pt;}
._21_c00449{width:113.322667pt;}
._3f_c00449{width:133.546667pt;}
._13_c00449{width:147.370667pt;}
._3e_c00449{width:179.968000pt;}
._3c_c00449{width:230.912000pt;}
._46_c00449{width:269.290667pt;}
._10_c00449{width:280.490667pt;}
._43_c00449{width:295.936000pt;}
._3b_c00449{width:495.872000pt;}
._48_c00449{width:989.914667pt;}
.fs5_c00449{font-size:42.666667pt;}
.fs4_c00449{font-size:58.666667pt;}
.fs2_c00449{font-size:74.666667pt;}
.fs0_c00449{font-size:85.333333pt;}
.fs3_c00449{font-size:90.666667pt;}
.fs1_c00449{font-size:106.666667pt;}
.y0_c00449{bottom:0.000000pt;}
.y25_c00449{bottom:2.760000pt;}
.y24_c00449{bottom:6.425206pt;}
.y23_c00449{bottom:108.293333pt;}
.y22_c00449{bottom:135.893333pt;}
.y21_c00449{bottom:166.293333pt;}
.y20_c00449{bottom:197.493333pt;}
.y1f_c00449{bottom:226.826667pt;}
.y1e_c00449{bottom:257.493333pt;}
.y1d_c00449{bottom:287.760000pt;}
.y1c_c00449{bottom:317.093333pt;}
.y1b_c00449{bottom:347.493333pt;}
.y1a_c00449{bottom:377.360000pt;}
.y19_c00449{bottom:407.493333pt;}
.y18_c00449{bottom:438.693333pt;}
.y17_c00449{bottom:468.026667pt;}
.y16_c00449{bottom:499.226667pt;}
.y15_c00449{bottom:528.826667pt;}
.y14_c00449{bottom:558.293333pt;}
.y13_c00449{bottom:587.760000pt;}
.y12_c00449{bottom:617.760000pt;}
.y11_c00449{bottom:648.026667pt;}
.y10_c00449{bottom:677.760000pt;}
.yf_c00449{bottom:708.026667pt;}
.ye_c00449{bottom:737.360000pt;}
.yd_c00449{bottom:767.493333pt;}
.yc_c00449{bottom:797.360000pt;}
.yb_c00449{bottom:826.560000pt;}
.ya_c00449{bottom:856.560000pt;}
.y9_c00449{bottom:886.160000pt;}
.y8_c00449{bottom:915.226667pt;}
.y7_c00449{bottom:945.093333pt;}
.y6_c00449{bottom:974.960000pt;}
.y5_c00449{bottom:1004.693333pt;}
.y4_c00449{bottom:1034.160000pt;}
.y3_c00449{bottom:1063.493333pt;}
.y2_c00449{bottom:1093.493333pt;}
.y1_c00449{bottom:1123.226667pt;}
.h5_c00449{height:11.733399pt;}
.h6_c00449{height:38.937500pt;}
.h4_c00449{height:74.278646pt;}
.h2_c00449{height:108.041667pt;}
.h3_c00449{height:113.813333pt;}
.h0_c00449{height:1229.066667pt;}
.h1_c00449{height:1229.333333pt;}
.w2_c00449{width:93.222667pt;}
.w0_c00449{width:767.266667pt;}
.w1_c00449{width:767.333333pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:126.000000pt;}
.x5_c00449{left:136.133333pt;}
.x6_c00449{left:138.933333pt;}
.xa_c00449{left:190.800000pt;}
.x9_c00449{left:232.133333pt;}
.x8_c00449{left:234.000000pt;}
.x4_c00449{left:235.466667pt;}
.x3_c00449{left:236.400000pt;}
.x1_c00449{left:237.866667pt;}
.xb_c00449{left:277.733333pt;}
.x7_c00449{left:292.133333pt;}
.xd_c00449{left:340.801554pt;}
.xc_c00449{left:434.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_485d4798b5ef44b77a25b884.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_db6630607b98fd5971229281.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_a158cd722f134f2601746a7b.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls3_c00450{letter-spacing:0.000000px;}
.ls1_c00450{letter-spacing:0.840000px;}
.ls4_c00450{letter-spacing:3.000000px;}
.ls0_c00450{letter-spacing:6.720000px;}
.ls2_c00450{letter-spacing:7.200000px;}
.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;}
}
.ws0_c00450{word-spacing:-51.000000px;}
.ws2_c00450{word-spacing:-23.136000px;}
.ws1_c00450{word-spacing:-20.244000px;}
.ws3_c00450{word-spacing:0.000000px;}
._34_c00450{margin-left:-20.928000px;}
._32_c00450{margin-left:-18.624000px;}
._41_c00450{margin-left:-16.992000px;}
._31_c00450{margin-left:-13.824000px;}
._33_c00450{margin-left:-12.288000px;}
._24_c00450{margin-left:-11.232000px;}
._23_c00450{margin-left:-9.888000px;}
._3c_c00450{margin-left:-7.812000px;}
._8_c00450{margin-left:-5.952000px;}
._17_c00450{margin-left:-4.608000px;}
._9_c00450{margin-left:-3.456000px;}
._39_c00450{margin-left:-2.400000px;}
._f_c00450{margin-left:-1.248000px;}
._3_c00450{width:1.824000px;}
._1_c00450{width:3.552000px;}
._5_c00450{width:4.704000px;}
._a_c00450{width:6.528000px;}
._1f_c00450{width:7.680000px;}
._b_c00450{width:9.120000px;}
._2f_c00450{width:10.140000px;}
._1c_c00450{width:11.232000px;}
._2_c00450{width:12.576000px;}
._2a_c00450{width:13.824000px;}
._4_c00450{width:15.240000px;}
._15_c00450{width:16.608000px;}
._2e_c00450{width:17.664000px;}
._10_c00450{width:18.912000px;}
._44_c00450{width:20.316000px;}
._2b_c00450{width:21.408000px;}
._6_c00450{width:24.192000px;}
._38_c00450{width:25.332000px;}
._0_c00450{width:26.400000px;}
._e_c00450{width:27.648000px;}
._7_c00450{width:29.952000px;}
._36_c00450{width:31.044000px;}
._16_c00450{width:32.064000px;}
._35_c00450{width:33.204000px;}
._22_c00450{width:34.392000px;}
._1a_c00450{width:35.520000px;}
._1b_c00450{width:37.080000px;}
._18_c00450{width:38.112000px;}
._d_c00450{width:39.840000px;}
._14_c00450{width:41.088000px;}
._13_c00450{width:42.624000px;}
._25_c00450{width:43.968000px;}
._c_c00450{width:45.504000px;}
._2d_c00450{width:46.560000px;}
._37_c00450{width:48.024000px;}
._19_c00450{width:50.016000px;}
._1d_c00450{width:51.744000px;}
._21_c00450{width:53.568000px;}
._1e_c00450{width:55.776000px;}
._11_c00450{width:58.080000px;}
._30_c00450{width:59.940000px;}
._29_c00450{width:61.728000px;}
._43_c00450{width:62.880000px;}
._3a_c00450{width:64.320000px;}
._27_c00450{width:67.296000px;}
._20_c00450{width:68.640000px;}
._3b_c00450{width:80.160000px;}
._40_c00450{width:81.924000px;}
._12_c00450{width:84.000000px;}
._42_c00450{width:102.912000px;}
._45_c00450{width:160.836000px;}
._28_c00450{width:187.488000px;}
._3f_c00450{width:237.444000px;}
._3e_c00450{width:263.316000px;}
._3d_c00450{width:492.648000px;}
._26_c00450{width:547.296000px;}
._2c_c00450{width:555.936000px;}
.fc2_c00450{color:transparent;}
.fc1_c00450{color:rgb(128,128,128);}
.fc0_c00450{color:rgb(0,0,0);}
.fs4_c00450{font-size:48.000000px;}
.fs3_c00450{font-size:60.000000px;}
.fs1_c00450{font-size:84.000000px;}
.fs0_c00450{font-size:96.000000px;}
.fs2_c00450{font-size:102.000000px;}
.y0_c00450{bottom:0.000000px;}
.y27_c00450{bottom:3.105000px;}
.y26_c00450{bottom:7.228369px;}
.y24_c00450{bottom:95.520000px;}
.y23_c00450{bottom:130.170000px;}
.y22_c00450{bottom:165.270000px;}
.y21_c00450{bottom:198.720000px;}
.y20_c00450{bottom:232.920000px;}
.y1f_c00450{bottom:266.220000px;}
.y1e_c00450{bottom:300.720000px;}
.y1d_c00450{bottom:336.120000px;}
.y1c_c00450{bottom:369.270000px;}
.y1b_c00450{bottom:403.320000px;}
.y1a_c00450{bottom:436.770000px;}
.y19_c00450{bottom:470.820000px;}
.y18_c00450{bottom:504.870000px;}
.y17_c00450{bottom:538.020000px;}
.y16_c00450{bottom:571.620000px;}
.y15_c00450{bottom:605.370000px;}
.y14_c00450{bottom:638.820000px;}
.y13_c00450{bottom:672.870000px;}
.y25_c00450{bottom:693.870000px;}
.y12_c00450{bottom:706.320000px;}
.y11_c00450{bottom:739.770000px;}
.y10_c00450{bottom:773.220000px;}
.yf_c00450{bottom:806.520000px;}
.ye_c00450{bottom:839.370000px;}
.yd_c00450{bottom:872.670000px;}
.yc_c00450{bottom:906.120000px;}
.yb_c00450{bottom:939.870000px;}
.ya_c00450{bottom:973.320000px;}
.y9_c00450{bottom:1006.320000px;}
.y8_c00450{bottom:1040.070000px;}
.y7_c00450{bottom:1072.920000px;}
.y6_c00450{bottom:1106.370000px;}
.y5_c00450{bottom:1139.070000px;}
.y4_c00450{bottom:1172.520000px;}
.y3_c00450{bottom:1205.520000px;}
.y2_c00450{bottom:1239.570000px;}
.y1_c00450{bottom:1272.720000px;}
.h4_c00450{height:13.200073px;}
.h5_c00450{height:43.804688px;}
.h3_c00450{height:75.966797px;}
.h2_c00450{height:121.546875px;}
.h0_c00450{height:1383.450000px;}
.h1_c00450{height:1383.750000px;}
.w2_c00450{width:104.875500px;}
.w0_c00450{width:878.025000px;}
.w1_c00450{width:878.250000px;}
.x0_c00450{left:0.000000px;}
.xe_c00450{left:35.400000px;}
.xc_c00450{left:38.100000px;}
.xb_c00450{left:40.200000px;}
.xa_c00450{left:41.850000px;}
.x9_c00450{left:42.900000px;}
.x8_c00450{left:45.000000px;}
.x7_c00450{left:47.250000px;}
.x6_c00450{left:49.350000px;}
.x5_c00450{left:51.000000px;}
.x4_c00450{left:53.700000px;}
.x3_c00450{left:55.350000px;}
.x2_c00450{left:56.400000px;}
.x1_c00450{left:57.450000px;}
.xd_c00450{left:96.450000px;}
.x11_c00450{left:390.826721px;}
.xf_c00450{left:562.500000px;}
.x10_c00450{left:653.700000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls3_c00450{letter-spacing:0.000000pt;}
.ls1_c00450{letter-spacing:0.746667pt;}
.ls4_c00450{letter-spacing:2.666667pt;}
.ls0_c00450{letter-spacing:5.973333pt;}
.ls2_c00450{letter-spacing:6.400000pt;}
.ws0_c00450{word-spacing:-45.333333pt;}
.ws2_c00450{word-spacing:-20.565333pt;}
.ws1_c00450{word-spacing:-17.994667pt;}
.ws3_c00450{word-spacing:0.000000pt;}
._34_c00450{margin-left:-18.602667pt;}
._32_c00450{margin-left:-16.554667pt;}
._41_c00450{margin-left:-15.104000pt;}
._31_c00450{margin-left:-12.288000pt;}
._33_c00450{margin-left:-10.922667pt;}
._24_c00450{margin-left:-9.984000pt;}
._23_c00450{margin-left:-8.789333pt;}
._3c_c00450{margin-left:-6.944000pt;}
._8_c00450{margin-left:-5.290667pt;}
._17_c00450{margin-left:-4.096000pt;}
._9_c00450{margin-left:-3.072000pt;}
._39_c00450{margin-left:-2.133333pt;}
._f_c00450{margin-left:-1.109333pt;}
._3_c00450{width:1.621333pt;}
._1_c00450{width:3.157333pt;}
._5_c00450{width:4.181333pt;}
._a_c00450{width:5.802667pt;}
._1f_c00450{width:6.826667pt;}
._b_c00450{width:8.106667pt;}
._2f_c00450{width:9.013333pt;}
._1c_c00450{width:9.984000pt;}
._2_c00450{width:11.178667pt;}
._2a_c00450{width:12.288000pt;}
._4_c00450{width:13.546667pt;}
._15_c00450{width:14.762667pt;}
._2e_c00450{width:15.701333pt;}
._10_c00450{width:16.810667pt;}
._44_c00450{width:18.058667pt;}
._2b_c00450{width:19.029333pt;}
._6_c00450{width:21.504000pt;}
._38_c00450{width:22.517333pt;}
._0_c00450{width:23.466667pt;}
._e_c00450{width:24.576000pt;}
._7_c00450{width:26.624000pt;}
._36_c00450{width:27.594667pt;}
._16_c00450{width:28.501333pt;}
._35_c00450{width:29.514667pt;}
._22_c00450{width:30.570667pt;}
._1a_c00450{width:31.573333pt;}
._1b_c00450{width:32.960000pt;}
._18_c00450{width:33.877333pt;}
._d_c00450{width:35.413333pt;}
._14_c00450{width:36.522667pt;}
._13_c00450{width:37.888000pt;}
._25_c00450{width:39.082667pt;}
._c_c00450{width:40.448000pt;}
._2d_c00450{width:41.386667pt;}
._37_c00450{width:42.688000pt;}
._19_c00450{width:44.458667pt;}
._1d_c00450{width:45.994667pt;}
._21_c00450{width:47.616000pt;}
._1e_c00450{width:49.578667pt;}
._11_c00450{width:51.626667pt;}
._30_c00450{width:53.280000pt;}
._29_c00450{width:54.869333pt;}
._43_c00450{width:55.893333pt;}
._3a_c00450{width:57.173333pt;}
._27_c00450{width:59.818667pt;}
._20_c00450{width:61.013333pt;}
._3b_c00450{width:71.253333pt;}
._40_c00450{width:72.821333pt;}
._12_c00450{width:74.666667pt;}
._42_c00450{width:91.477333pt;}
._45_c00450{width:142.965333pt;}
._28_c00450{width:166.656000pt;}
._3f_c00450{width:211.061333pt;}
._3e_c00450{width:234.058667pt;}
._3d_c00450{width:437.909333pt;}
._26_c00450{width:486.485333pt;}
._2c_c00450{width:494.165333pt;}
.fs4_c00450{font-size:42.666667pt;}
.fs3_c00450{font-size:53.333333pt;}
.fs1_c00450{font-size:74.666667pt;}
.fs0_c00450{font-size:85.333333pt;}
.fs2_c00450{font-size:90.666667pt;}
.y0_c00450{bottom:0.000000pt;}
.y27_c00450{bottom:2.760000pt;}
.y26_c00450{bottom:6.425217pt;}
.y24_c00450{bottom:84.906667pt;}
.y23_c00450{bottom:115.706667pt;}
.y22_c00450{bottom:146.906667pt;}
.y21_c00450{bottom:176.640000pt;}
.y20_c00450{bottom:207.040000pt;}
.y1f_c00450{bottom:236.640000pt;}
.y1e_c00450{bottom:267.306667pt;}
.y1d_c00450{bottom:298.773333pt;}
.y1c_c00450{bottom:328.240000pt;}
.y1b_c00450{bottom:358.506667pt;}
.y1a_c00450{bottom:388.240000pt;}
.y19_c00450{bottom:418.506667pt;}
.y18_c00450{bottom:448.773333pt;}
.y17_c00450{bottom:478.240000pt;}
.y16_c00450{bottom:508.106667pt;}
.y15_c00450{bottom:538.106667pt;}
.y14_c00450{bottom:567.840000pt;}
.y13_c00450{bottom:598.106667pt;}
.y25_c00450{bottom:616.773333pt;}
.y12_c00450{bottom:627.840000pt;}
.y11_c00450{bottom:657.573333pt;}
.y10_c00450{bottom:687.306667pt;}
.yf_c00450{bottom:716.906667pt;}
.ye_c00450{bottom:746.106667pt;}
.yd_c00450{bottom:775.706667pt;}
.yc_c00450{bottom:805.440000pt;}
.yb_c00450{bottom:835.440000pt;}
.ya_c00450{bottom:865.173333pt;}
.y9_c00450{bottom:894.506667pt;}
.y8_c00450{bottom:924.506667pt;}
.y7_c00450{bottom:953.706667pt;}
.y6_c00450{bottom:983.440000pt;}
.y5_c00450{bottom:1012.506667pt;}
.y4_c00450{bottom:1042.240000pt;}
.y3_c00450{bottom:1071.573333pt;}
.y2_c00450{bottom:1101.840000pt;}
.y1_c00450{bottom:1131.306667pt;}
.h4_c00450{height:11.733399pt;}
.h5_c00450{height:38.937500pt;}
.h3_c00450{height:67.526042pt;}
.h2_c00450{height:108.041667pt;}
.h0_c00450{height:1229.733333pt;}
.h1_c00450{height:1230.000000pt;}
.w2_c00450{width:93.222667pt;}
.w0_c00450{width:780.466667pt;}
.w1_c00450{width:780.666667pt;}
.x0_c00450{left:0.000000pt;}
.xe_c00450{left:31.466667pt;}
.xc_c00450{left:33.866667pt;}
.xb_c00450{left:35.733333pt;}
.xa_c00450{left:37.200000pt;}
.x9_c00450{left:38.133333pt;}
.x8_c00450{left:40.000000pt;}
.x7_c00450{left:42.000000pt;}
.x6_c00450{left:43.866667pt;}
.x5_c00450{left:45.333333pt;}
.x4_c00450{left:47.733333pt;}
.x3_c00450{left:49.200000pt;}
.x2_c00450{left:50.133333pt;}
.x1_c00450{left:51.066667pt;}
.xd_c00450{left:85.733333pt;}
.x11_c00450{left:347.401530pt;}
.xf_c00450{left:500.000000pt;}
.x10_c00450{left:581.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_980bd3352217b15291dd1c0d.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_166121bc18f556c9411e5d33.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_49b425044ab2001e815272eb.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_f7667679a4e748c42bfed138.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;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_c00451;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls6_c00451{letter-spacing:-3.000000px;}
.ls5_c00451{letter-spacing:0.000000px;}
.ls4_c00451{letter-spacing:12.720000px;}
.ls0_c00451{letter-spacing:28.344000px;}
.ls3_c00451{letter-spacing:42.960000px;}
.ls2_c00451{letter-spacing:73.200000px;}
.ls1_c00451{letter-spacing:90.600000px;}
.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;}
}
.ws0_c00451{word-spacing:-105.864000px;}
.ws2_c00451{word-spacing:-51.000000px;}
.ws1_c00451{word-spacing:-43.896000px;}
.ws3_c00451{word-spacing:-38.640000px;}
.ws4_c00451{word-spacing:0.000000px;}
._21_c00451{margin-left:-134.064000px;}
._46_c00451{margin-left:-34.464000px;}
._47_c00451{margin-left:-26.496000px;}
._32_c00451{margin-left:-23.616000px;}
._42_c00451{margin-left:-20.364000px;}
._23_c00451{margin-left:-19.008000px;}
._c_c00451{margin-left:-16.608000px;}
._24_c00451{margin-left:-14.880000px;}
._25_c00451{margin-left:-13.056000px;}
._3_c00451{margin-left:-11.424000px;}
._12_c00451{margin-left:-9.984000px;}
._14_c00451{margin-left:-8.160000px;}
._15_c00451{margin-left:-6.528000px;}
._13_c00451{margin-left:-4.992000px;}
._1c_c00451{margin-left:-2.736000px;}
._1d_c00451{margin-left:-1.728000px;}
._1_c00451{width:1.728000px;}
._5_c00451{width:3.264000px;}
._0_c00451{width:4.608000px;}
._e_c00451{width:5.664000px;}
._7_c00451{width:7.008000px;}
._a_c00451{width:8.352000px;}
._9_c00451{width:10.368000px;}
._6_c00451{width:11.520000px;}
._18_c00451{width:12.576000px;}
._3e_c00451{width:13.920000px;}
._2e_c00451{width:15.552000px;}
._10_c00451{width:16.608000px;}
._2_c00451{width:18.624000px;}
._2f_c00451{width:20.256000px;}
._16_c00451{width:21.408000px;}
._28_c00451{width:24.276000px;}
._11_c00451{width:26.112000px;}
._30_c00451{width:27.552000px;}
._8_c00451{width:29.952000px;}
._b_c00451{width:32.064000px;}
._4_c00451{width:33.888000px;}
._3d_c00451{width:34.944000px;}
._36_c00451{width:36.960000px;}
._45_c00451{width:38.016000px;}
._17_c00451{width:39.456000px;}
._31_c00451{width:41.388000px;}
._2d_c00451{width:43.104000px;}
._d_c00451{width:44.928000px;}
._3f_c00451{width:47.616000px;}
._f_c00451{width:49.920000px;}
._39_c00451{width:51.168000px;}
._44_c00451{width:53.952000px;}
._2b_c00451{width:55.608000px;}
._37_c00451{width:57.600000px;}
._43_c00451{width:61.248000px;}
._2c_c00451{width:62.784000px;}
._4a_c00451{width:65.184000px;}
._3b_c00451{width:67.680000px;}
._3a_c00451{width:71.328000px;}
._35_c00451{width:73.344000px;}
._1f_c00451{width:74.592000px;}
._40_c00451{width:75.936000px;}
._38_c00451{width:81.120000px;}
._3c_c00451{width:84.084000px;}
._1e_c00451{width:86.400000px;}
._48_c00451{width:89.376000px;}
._41_c00451{width:92.544000px;}
._1b_c00451{width:94.704000px;}
._1a_c00451{width:99.072000px;}
._26_c00451{width:106.560000px;}
._50_c00451{width:108.288000px;}
._22_c00451{width:130.320000px;}
._2a_c00451{width:185.754000px;}
._4b_c00451{width:194.160000px;}
._49_c00451{width:211.584000px;}
._4c_c00451{width:253.104000px;}
._4e_c00451{width:264.768000px;}
._20_c00451{width:273.312000px;}
._52_c00451{width:296.064000px;}
._33_c00451{width:330.048000px;}
._4d_c00451{width:340.416000px;}
._29_c00451{width:409.248000px;}
._4f_c00451{width:547.104000px;}
._27_c00451{width:696.624000px;}
._34_c00451{width:962.658000px;}
._19_c00451{width:1328.928000px;}
._51_c00451{width:1577.568000px;}
.fc2_c00451{color:transparent;}
.fc1_c00451{color:rgb(128,128,128);}
.fc0_c00451{color:rgb(0,0,0);}
.fs5_c00451{font-size:48.000000px;}
.fs2_c00451{font-size:60.000000px;}
.fs3_c00451{font-size:84.000000px;}
.fs0_c00451{font-size:96.000000px;}
.fs4_c00451{font-size:102.000000px;}
.fs1_c00451{font-size:144.000000px;}
.y0_c00451{bottom:0.000000px;}
.y22_c00451{bottom:3.105000px;}
.y21_c00451{bottom:7.228369px;}
.y20_c00451{bottom:90.420000px;}
.y1f_c00451{bottom:123.570000px;}
.y1e_c00451{bottom:155.970000px;}
.y1d_c00451{bottom:191.070000px;}
.y1c_c00451{bottom:224.070000px;}
.y1b_c00451{bottom:258.420000px;}
.y1a_c00451{bottom:292.320000px;}
.y19_c00451{bottom:326.670000px;}
.y18_c00451{bottom:359.820000px;}
.y17_c00451{bottom:393.870000px;}
.y16_c00451{bottom:427.620000px;}
.y15_c00451{bottom:461.670000px;}
.y14_c00451{bottom:494.820000px;}
.y13_c00451{bottom:528.420000px;}
.y12_c00451{bottom:562.170000px;}
.y11_c00451{bottom:596.370000px;}
.y10_c00451{bottom:630.120000px;}
.yf_c00451{bottom:663.570000px;}
.ye_c00451{bottom:692.520000px;}
.yd_c00451{bottom:731.670000px;}
.yc_c00451{bottom:764.370000px;}
.yb_c00451{bottom:798.420000px;}
.ya_c00451{bottom:831.570000px;}
.y9_c00451{bottom:863.970000px;}
.y8_c00451{bottom:896.970000px;}
.y7_c00451{bottom:972.570000px;}
.y6_c00451{bottom:1021.320000px;}
.y5_c00451{bottom:1071.870000px;}
.y4_c00451{bottom:1123.920000px;}
.y3_c00451{bottom:1202.520000px;}
.y2_c00451{bottom:1235.520000px;}
.y1_c00451{bottom:1268.670000px;}
.h5_c00451{height:13.200073px;}
.h6_c00451{height:43.804688px;}
.h2_c00451{height:121.546875px;}
.h4_c00451{height:129.143555px;}
.h3_c00451{height:182.320312px;}
.h1_c00451{height:1359.000000px;}
.h0_c00451{height:1359.150000px;}
.w2_c00451{width:104.875500px;}
.w1_c00451{width:848.250000px;}
.w0_c00451{width:848.325000px;}
.x0_c00451{left:0.000000px;}
.x7_c00451{left:111.450000px;}
.xa_c00451{left:115.800000px;}
.xb_c00451{left:179.550000px;}
.xc_c00451{left:227.100000px;}
.x9_c00451{left:230.250000px;}
.x2_c00451{left:231.300000px;}
.x1_c00451{left:232.500000px;}
.x3_c00451{left:252.450000px;}
.x4_c00451{left:359.850000px;}
.xd_c00451{left:375.976730px;}
.x5_c00451{left:421.950000px;}
.x6_c00451{left:453.300000px;}
.x8_c00451{left:485.700000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls6_c00451{letter-spacing:-2.666667pt;}
.ls5_c00451{letter-spacing:0.000000pt;}
.ls4_c00451{letter-spacing:11.306667pt;}
.ls0_c00451{letter-spacing:25.194667pt;}
.ls3_c00451{letter-spacing:38.186667pt;}
.ls2_c00451{letter-spacing:65.066667pt;}
.ls1_c00451{letter-spacing:80.533333pt;}
.ws0_c00451{word-spacing:-94.101333pt;}
.ws2_c00451{word-spacing:-45.333333pt;}
.ws1_c00451{word-spacing:-39.018667pt;}
.ws3_c00451{word-spacing:-34.346667pt;}
.ws4_c00451{word-spacing:0.000000pt;}
._21_c00451{margin-left:-119.168000pt;}
._46_c00451{margin-left:-30.634667pt;}
._47_c00451{margin-left:-23.552000pt;}
._32_c00451{margin-left:-20.992000pt;}
._42_c00451{margin-left:-18.101333pt;}
._23_c00451{margin-left:-16.896000pt;}
._c_c00451{margin-left:-14.762667pt;}
._24_c00451{margin-left:-13.226667pt;}
._25_c00451{margin-left:-11.605333pt;}
._3_c00451{margin-left:-10.154667pt;}
._12_c00451{margin-left:-8.874667pt;}
._14_c00451{margin-left:-7.253333pt;}
._15_c00451{margin-left:-5.802667pt;}
._13_c00451{margin-left:-4.437333pt;}
._1c_c00451{margin-left:-2.432000pt;}
._1d_c00451{margin-left:-1.536000pt;}
._1_c00451{width:1.536000pt;}
._5_c00451{width:2.901333pt;}
._0_c00451{width:4.096000pt;}
._e_c00451{width:5.034667pt;}
._7_c00451{width:6.229333pt;}
._a_c00451{width:7.424000pt;}
._9_c00451{width:9.216000pt;}
._6_c00451{width:10.240000pt;}
._18_c00451{width:11.178667pt;}
._3e_c00451{width:12.373333pt;}
._2e_c00451{width:13.824000pt;}
._10_c00451{width:14.762667pt;}
._2_c00451{width:16.554667pt;}
._2f_c00451{width:18.005333pt;}
._16_c00451{width:19.029333pt;}
._28_c00451{width:21.578667pt;}
._11_c00451{width:23.210667pt;}
._30_c00451{width:24.490667pt;}
._8_c00451{width:26.624000pt;}
._b_c00451{width:28.501333pt;}
._4_c00451{width:30.122667pt;}
._3d_c00451{width:31.061333pt;}
._36_c00451{width:32.853333pt;}
._45_c00451{width:33.792000pt;}
._17_c00451{width:35.072000pt;}
._31_c00451{width:36.789333pt;}
._2d_c00451{width:38.314667pt;}
._d_c00451{width:39.936000pt;}
._3f_c00451{width:42.325333pt;}
._f_c00451{width:44.373333pt;}
._39_c00451{width:45.482667pt;}
._44_c00451{width:47.957333pt;}
._2b_c00451{width:49.429333pt;}
._37_c00451{width:51.200000pt;}
._43_c00451{width:54.442667pt;}
._2c_c00451{width:55.808000pt;}
._4a_c00451{width:57.941333pt;}
._3b_c00451{width:60.160000pt;}
._3a_c00451{width:63.402667pt;}
._35_c00451{width:65.194667pt;}
._1f_c00451{width:66.304000pt;}
._40_c00451{width:67.498667pt;}
._38_c00451{width:72.106667pt;}
._3c_c00451{width:74.741333pt;}
._1e_c00451{width:76.800000pt;}
._48_c00451{width:79.445333pt;}
._41_c00451{width:82.261333pt;}
._1b_c00451{width:84.181333pt;}
._1a_c00451{width:88.064000pt;}
._26_c00451{width:94.720000pt;}
._50_c00451{width:96.256000pt;}
._22_c00451{width:115.840000pt;}
._2a_c00451{width:165.114667pt;}
._4b_c00451{width:172.586667pt;}
._49_c00451{width:188.074667pt;}
._4c_c00451{width:224.981333pt;}
._4e_c00451{width:235.349333pt;}
._20_c00451{width:242.944000pt;}
._52_c00451{width:263.168000pt;}
._33_c00451{width:293.376000pt;}
._4d_c00451{width:302.592000pt;}
._29_c00451{width:363.776000pt;}
._4f_c00451{width:486.314667pt;}
._27_c00451{width:619.221333pt;}
._34_c00451{width:855.696000pt;}
._19_c00451{width:1181.269333pt;}
._51_c00451{width:1402.282667pt;}
.fs5_c00451{font-size:42.666667pt;}
.fs2_c00451{font-size:53.333333pt;}
.fs3_c00451{font-size:74.666667pt;}
.fs0_c00451{font-size:85.333333pt;}
.fs4_c00451{font-size:90.666667pt;}
.fs1_c00451{font-size:128.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y22_c00451{bottom:2.760000pt;}
.y21_c00451{bottom:6.425217pt;}
.y20_c00451{bottom:80.373333pt;}
.y1f_c00451{bottom:109.840000pt;}
.y1e_c00451{bottom:138.640000pt;}
.y1d_c00451{bottom:169.840000pt;}
.y1c_c00451{bottom:199.173333pt;}
.y1b_c00451{bottom:229.706667pt;}
.y1a_c00451{bottom:259.840000pt;}
.y19_c00451{bottom:290.373333pt;}
.y18_c00451{bottom:319.840000pt;}
.y17_c00451{bottom:350.106667pt;}
.y16_c00451{bottom:380.106667pt;}
.y15_c00451{bottom:410.373333pt;}
.y14_c00451{bottom:439.840000pt;}
.y13_c00451{bottom:469.706667pt;}
.y12_c00451{bottom:499.706667pt;}
.y11_c00451{bottom:530.106667pt;}
.y10_c00451{bottom:560.106667pt;}
.yf_c00451{bottom:589.840000pt;}
.ye_c00451{bottom:615.573333pt;}
.yd_c00451{bottom:650.373333pt;}
.yc_c00451{bottom:679.440000pt;}
.yb_c00451{bottom:709.706667pt;}
.ya_c00451{bottom:739.173333pt;}
.y9_c00451{bottom:767.973333pt;}
.y8_c00451{bottom:797.306667pt;}
.y7_c00451{bottom:864.506667pt;}
.y6_c00451{bottom:907.840000pt;}
.y5_c00451{bottom:952.773333pt;}
.y4_c00451{bottom:999.040000pt;}
.y3_c00451{bottom:1068.906667pt;}
.y2_c00451{bottom:1098.240000pt;}
.y1_c00451{bottom:1127.706667pt;}
.h5_c00451{height:11.733399pt;}
.h6_c00451{height:38.937500pt;}
.h2_c00451{height:108.041667pt;}
.h4_c00451{height:114.794271pt;}
.h3_c00451{height:162.062500pt;}
.h1_c00451{height:1208.000000pt;}
.h0_c00451{height:1208.133333pt;}
.w2_c00451{width:93.222667pt;}
.w1_c00451{width:754.000000pt;}
.w0_c00451{width:754.066667pt;}
.x0_c00451{left:0.000000pt;}
.x7_c00451{left:99.066667pt;}
.xa_c00451{left:102.933333pt;}
.xb_c00451{left:159.600000pt;}
.xc_c00451{left:201.866667pt;}
.x9_c00451{left:204.666667pt;}
.x2_c00451{left:205.600000pt;}
.x1_c00451{left:206.666667pt;}
.x3_c00451{left:224.400000pt;}
.x4_c00451{left:319.866667pt;}
.xd_c00451{left:334.201538pt;}
.x5_c00451{left:375.066667pt;}
.x6_c00451{left:402.933333pt;}
.x8_c00451{left:431.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d9c65793b9f5b1fb3da38ac.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_b097cf9c816b60f1392f29f1.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_2a9cab73fa4136874d12efa8.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls3_c00452{letter-spacing:0.000000px;}
.ls1_c00452{letter-spacing:3.000000px;}
.ls2_c00452{letter-spacing:4.356000px;}
.ls4_c00452{letter-spacing:6.000000px;}
.ls0_c00452{letter-spacing:6.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:-63.504000px;}
.ws2_c00452{word-spacing:-43.084800px;}
.ws1_c00452{word-spacing:-28.413000px;}
.ws3_c00452{word-spacing:0.000000px;}
._27_c00452{margin-left:-34.752000px;}
._44_c00452{margin-left:-26.838000px;}
._29_c00452{margin-left:-24.576000px;}
._36_c00452{margin-left:-20.448000px;}
._46_c00452{margin-left:-17.793000px;}
._3c_c00452{margin-left:-16.416000px;}
._38_c00452{margin-left:-13.536000px;}
._23_c00452{margin-left:-11.904000px;}
._41_c00452{margin-left:-10.485000px;}
._13_c00452{margin-left:-8.928000px;}
._43_c00452{margin-left:-7.659000px;}
._15_c00452{margin-left:-6.432000px;}
._42_c00452{margin-left:-5.409000px;}
._14_c00452{margin-left:-4.320000px;}
._2b_c00452{margin-left:-3.285000px;}
._1e_c00452{margin-left:-2.283000px;}
._10_c00452{margin-left:-1.152000px;}
._6_c00452{width:1.440000px;}
._5_c00452{width:2.496000px;}
._0_c00452{width:3.648000px;}
._1_c00452{width:5.280000px;}
._4_c00452{width:6.816000px;}
._e_c00452{width:8.256000px;}
._8_c00452{width:9.504000px;}
._1a_c00452{width:11.520000px;}
._21_c00452{width:13.440000px;}
._18_c00452{width:15.336000px;}
._3a_c00452{width:17.088000px;}
._24_c00452{width:18.360000px;}
._30_c00452{width:19.392000px;}
._16_c00452{width:21.312000px;}
._39_c00452{width:24.387000px;}
._19_c00452{width:25.440000px;}
._7_c00452{width:27.840000px;}
._25_c00452{width:28.950000px;}
._2a_c00452{width:30.048000px;}
._1c_c00452{width:31.392000px;}
._1d_c00452{width:32.640000px;}
._2_c00452{width:34.176000px;}
._c_c00452{width:35.400000px;}
._22_c00452{width:36.528000px;}
._3_c00452{width:38.016000px;}
._33_c00452{width:39.096000px;}
._34_c00452{width:40.500000px;}
._2d_c00452{width:41.760000px;}
._2e_c00452{width:43.008000px;}
._28_c00452{width:44.640000px;}
._12_c00452{width:45.792000px;}
._a_c00452{width:47.232000px;}
._f_c00452{width:49.440000px;}
._d_c00452{width:52.272000px;}
._b_c00452{width:53.952000px;}
._1b_c00452{width:55.776000px;}
._17_c00452{width:56.832000px;}
._2c_c00452{width:58.752000px;}
._2f_c00452{width:60.768000px;}
._31_c00452{width:62.736000px;}
._26_c00452{width:66.432000px;}
._11_c00452{width:68.640000px;}
._40_c00452{width:69.696000px;}
._9_c00452{width:70.848000px;}
._3e_c00452{width:73.803000px;}
._32_c00452{width:74.832000px;}
._1f_c00452{width:124.320000px;}
._35_c00452{width:126.810000px;}
._3d_c00452{width:151.392000px;}
._37_c00452{width:161.664000px;}
._20_c00452{width:179.136000px;}
._45_c00452{width:266.094000px;}
._3b_c00452{width:313.755000px;}
._3f_c00452{width:380.640000px;}
._47_c00452{width:672.768000px;}
.fc2_c00452{color:transparent;}
.fc1_c00452{color:rgb(128,128,128);}
.fc0_c00452{color:rgb(0,0,0);}
.fs5_c00452{font-size:48.000000px;}
.fs4_c00452{font-size:76.800000px;}
.fs1_c00452{font-size:84.000000px;}
.fs2_c00452{font-size:93.000000px;}
.fs0_c00452{font-size:96.000000px;}
.fs3_c00452{font-size:102.000000px;}
.y0_c00452{bottom:0.000000px;}
.y26_c00452{bottom:3.105000px;}
.y25_c00452{bottom:7.228369px;}
.y24_c00452{bottom:101.520000px;}
.y23_c00452{bottom:135.720000px;}
.y22_c00452{bottom:169.320000px;}
.y21_c00452{bottom:203.070000px;}
.y20_c00452{bottom:237.270000px;}
.y1f_c00452{bottom:270.570000px;}
.y1e_c00452{bottom:304.770000px;}
.y1d_c00452{bottom:338.520000px;}
.y1c_c00452{bottom:372.570000px;}
.y1b_c00452{bottom:405.720000px;}
.y1a_c00452{bottom:439.470000px;}
.y19_c00452{bottom:471.420000px;}
.y18_c00452{bottom:506.820000px;}
.y17_c00452{bottom:541.020000px;}
.y16_c00452{bottom:574.470000px;}
.y15_c00452{bottom:608.220000px;}
.y14_c00452{bottom:641.820000px;}
.y13_c00452{bottom:675.270000px;}
.y12_c00452{bottom:708.420000px;}
.y11_c00452{bottom:742.170000px;}
.y10_c00452{bottom:775.170000px;}
.yf_c00452{bottom:808.620000px;}
.ye_c00452{bottom:841.020000px;}
.yd_c00452{bottom:874.770000px;}
.yc_c00452{bottom:908.220000px;}
.yb_c00452{bottom:941.520000px;}
.ya_c00452{bottom:974.670000px;}
.y9_c00452{bottom:1008.420000px;}
.y8_c00452{bottom:1041.420000px;}
.y7_c00452{bottom:1074.570000px;}
.y6_c00452{bottom:1108.620000px;}
.y5_c00452{bottom:1141.470000px;}
.y4_c00452{bottom:1173.870000px;}
.y3_c00452{bottom:1207.470000px;}
.y2_c00452{bottom:1240.320000px;}
.y1_c00452{bottom:1273.320000px;}
.h4_c00452{height:13.200073px;}
.h5_c00452{height:43.804688px;}
.h3_c00452{height:117.748535px;}
.h2_c00452{height:121.546875px;}
.h0_c00452{height:1383.450000px;}
.h1_c00452{height:1383.750000px;}
.w2_c00452{width:104.875500px;}
.w0_c00452{width:878.025000px;}
.w1_c00452{width:878.250000px;}
.x0_c00452{left:0.000000px;}
.x9_c00452{left:23.550000px;}
.x8_c00452{left:24.600000px;}
.x7_c00452{left:26.250000px;}
.x6_c00452{left:27.300000px;}
.x5_c00452{left:28.350000px;}
.x3_c00452{left:31.050000px;}
.x2_c00452{left:32.700000px;}
.x1_c00452{left:34.350000px;}
.x4_c00452{left:37.500000px;}
.xa_c00452{left:288.600000px;}
.xb_c00452{left:390.826721px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls3_c00452{letter-spacing:0.000000pt;}
.ls1_c00452{letter-spacing:2.666667pt;}
.ls2_c00452{letter-spacing:3.872000pt;}
.ls4_c00452{letter-spacing:5.333333pt;}
.ls0_c00452{letter-spacing:5.440000pt;}
.ws0_c00452{word-spacing:-56.448000pt;}
.ws2_c00452{word-spacing:-38.297600pt;}
.ws1_c00452{word-spacing:-25.256000pt;}
.ws3_c00452{word-spacing:0.000000pt;}
._27_c00452{margin-left:-30.890667pt;}
._44_c00452{margin-left:-23.856000pt;}
._29_c00452{margin-left:-21.845333pt;}
._36_c00452{margin-left:-18.176000pt;}
._46_c00452{margin-left:-15.816000pt;}
._3c_c00452{margin-left:-14.592000pt;}
._38_c00452{margin-left:-12.032000pt;}
._23_c00452{margin-left:-10.581333pt;}
._41_c00452{margin-left:-9.320000pt;}
._13_c00452{margin-left:-7.936000pt;}
._43_c00452{margin-left:-6.808000pt;}
._15_c00452{margin-left:-5.717333pt;}
._42_c00452{margin-left:-4.808000pt;}
._14_c00452{margin-left:-3.840000pt;}
._2b_c00452{margin-left:-2.920000pt;}
._1e_c00452{margin-left:-2.029333pt;}
._10_c00452{margin-left:-1.024000pt;}
._6_c00452{width:1.280000pt;}
._5_c00452{width:2.218667pt;}
._0_c00452{width:3.242667pt;}
._1_c00452{width:4.693333pt;}
._4_c00452{width:6.058667pt;}
._e_c00452{width:7.338667pt;}
._8_c00452{width:8.448000pt;}
._1a_c00452{width:10.240000pt;}
._21_c00452{width:11.946667pt;}
._18_c00452{width:13.632000pt;}
._3a_c00452{width:15.189333pt;}
._24_c00452{width:16.320000pt;}
._30_c00452{width:17.237333pt;}
._16_c00452{width:18.944000pt;}
._39_c00452{width:21.677333pt;}
._19_c00452{width:22.613333pt;}
._7_c00452{width:24.746667pt;}
._25_c00452{width:25.733333pt;}
._2a_c00452{width:26.709333pt;}
._1c_c00452{width:27.904000pt;}
._1d_c00452{width:29.013333pt;}
._2_c00452{width:30.378667pt;}
._c_c00452{width:31.466667pt;}
._22_c00452{width:32.469333pt;}
._3_c00452{width:33.792000pt;}
._33_c00452{width:34.752000pt;}
._34_c00452{width:36.000000pt;}
._2d_c00452{width:37.120000pt;}
._2e_c00452{width:38.229333pt;}
._28_c00452{width:39.680000pt;}
._12_c00452{width:40.704000pt;}
._a_c00452{width:41.984000pt;}
._f_c00452{width:43.946667pt;}
._d_c00452{width:46.464000pt;}
._b_c00452{width:47.957333pt;}
._1b_c00452{width:49.578667pt;}
._17_c00452{width:50.517333pt;}
._2c_c00452{width:52.224000pt;}
._2f_c00452{width:54.016000pt;}
._31_c00452{width:55.765333pt;}
._26_c00452{width:59.050667pt;}
._11_c00452{width:61.013333pt;}
._40_c00452{width:61.952000pt;}
._9_c00452{width:62.976000pt;}
._3e_c00452{width:65.602667pt;}
._32_c00452{width:66.517333pt;}
._1f_c00452{width:110.506667pt;}
._35_c00452{width:112.720000pt;}
._3d_c00452{width:134.570667pt;}
._37_c00452{width:143.701333pt;}
._20_c00452{width:159.232000pt;}
._45_c00452{width:236.528000pt;}
._3b_c00452{width:278.893333pt;}
._3f_c00452{width:338.346667pt;}
._47_c00452{width:598.016000pt;}
.fs5_c00452{font-size:42.666667pt;}
.fs4_c00452{font-size:68.266667pt;}
.fs1_c00452{font-size:74.666667pt;}
.fs2_c00452{font-size:82.666667pt;}
.fs0_c00452{font-size:85.333333pt;}
.fs3_c00452{font-size:90.666667pt;}
.y0_c00452{bottom:0.000000pt;}
.y26_c00452{bottom:2.760000pt;}
.y25_c00452{bottom:6.425217pt;}
.y24_c00452{bottom:90.240000pt;}
.y23_c00452{bottom:120.640000pt;}
.y22_c00452{bottom:150.506667pt;}
.y21_c00452{bottom:180.506667pt;}
.y20_c00452{bottom:210.906667pt;}
.y1f_c00452{bottom:240.506667pt;}
.y1e_c00452{bottom:270.906667pt;}
.y1d_c00452{bottom:300.906667pt;}
.y1c_c00452{bottom:331.173333pt;}
.y1b_c00452{bottom:360.640000pt;}
.y1a_c00452{bottom:390.640000pt;}
.y19_c00452{bottom:419.040000pt;}
.y18_c00452{bottom:450.506667pt;}
.y17_c00452{bottom:480.906667pt;}
.y16_c00452{bottom:510.640000pt;}
.y15_c00452{bottom:540.640000pt;}
.y14_c00452{bottom:570.506667pt;}
.y13_c00452{bottom:600.240000pt;}
.y12_c00452{bottom:629.706667pt;}
.y11_c00452{bottom:659.706667pt;}
.y10_c00452{bottom:689.040000pt;}
.yf_c00452{bottom:718.773333pt;}
.ye_c00452{bottom:747.573333pt;}
.yd_c00452{bottom:777.573333pt;}
.yc_c00452{bottom:807.306667pt;}
.yb_c00452{bottom:836.906667pt;}
.ya_c00452{bottom:866.373333pt;}
.y9_c00452{bottom:896.373333pt;}
.y8_c00452{bottom:925.706667pt;}
.y7_c00452{bottom:955.173333pt;}
.y6_c00452{bottom:985.440000pt;}
.y5_c00452{bottom:1014.640000pt;}
.y4_c00452{bottom:1043.440000pt;}
.y3_c00452{bottom:1073.306667pt;}
.y2_c00452{bottom:1102.506667pt;}
.y1_c00452{bottom:1131.840000pt;}
.h4_c00452{height:11.733399pt;}
.h5_c00452{height:38.937500pt;}
.h3_c00452{height:104.665365pt;}
.h2_c00452{height:108.041667pt;}
.h0_c00452{height:1229.733333pt;}
.h1_c00452{height:1230.000000pt;}
.w2_c00452{width:93.222667pt;}
.w0_c00452{width:780.466667pt;}
.w1_c00452{width:780.666667pt;}
.x0_c00452{left:0.000000pt;}
.x9_c00452{left:20.933333pt;}
.x8_c00452{left:21.866667pt;}
.x7_c00452{left:23.333333pt;}
.x6_c00452{left:24.266667pt;}
.x5_c00452{left:25.200000pt;}
.x3_c00452{left:27.600000pt;}
.x2_c00452{left:29.066667pt;}
.x1_c00452{left:30.533333pt;}
.x4_c00452{left:33.333333pt;}
.xa_c00452{left:256.533333pt;}
.xb_c00452{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0c0e40174d89c19153c23a8.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_f292eae9f8e9e2bf43c8d6e8.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_8da0b1f784cf999a3a62dca9.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_a24926c4b51255d72ed52201.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_2281aa9a62b4174a87703939.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00453;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls2_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:6.120000px;}
.ls1_c00453{letter-spacing:6.255000px;}
.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;}
}
.ws2_c00453{word-spacing:-51.000000px;}
.ws1_c00453{word-spacing:-23.136000px;}
.ws0_c00453{word-spacing:-20.244000px;}
.ws4_c00453{word-spacing:0.000000px;}
.ws3_c00453{word-spacing:1.008000px;}
._42_c00453{margin-left:-73.800000px;}
._41_c00453{margin-left:-71.436000px;}
._44_c00453{margin-left:-49.380000px;}
._40_c00453{margin-left:-21.408000px;}
._2a_c00453{margin-left:-19.392000px;}
._2c_c00453{margin-left:-18.240000px;}
._2b_c00453{margin-left:-16.224000px;}
._3f_c00453{margin-left:-15.168000px;}
._24_c00453{margin-left:-13.056000px;}
._1f_c00453{margin-left:-11.040000px;}
._2_c00453{margin-left:-9.312000px;}
._2d_c00453{margin-left:-8.112000px;}
._15_c00453{margin-left:-7.104000px;}
._3b_c00453{margin-left:-6.000000px;}
._1a_c00453{margin-left:-4.800000px;}
._3a_c00453{margin-left:-3.456000px;}
._13_c00453{margin-left:-2.208000px;}
._0_c00453{margin-left:-1.152000px;}
._4_c00453{width:1.728000px;}
._16_c00453{width:2.784000px;}
._b_c00453{width:4.128000px;}
._8_c00453{width:5.568000px;}
._d_c00453{width:6.816000px;}
._7_c00453{width:7.872000px;}
._2e_c00453{width:9.120000px;}
._a_c00453{width:10.656000px;}
._26_c00453{width:11.712000px;}
._10_c00453{width:13.440000px;}
._e_c00453{width:14.664000px;}
._9_c00453{width:17.184000px;}
._48_c00453{width:18.816000px;}
._1b_c00453{width:19.872000px;}
._4b_c00453{width:21.012000px;}
._11_c00453{width:22.092000px;}
._f_c00453{width:23.520000px;}
._12_c00453{width:24.552000px;}
._1e_c00453{width:26.016000px;}
._c_c00453{width:27.552000px;}
._1_c00453{width:29.664000px;}
._29_c00453{width:30.912000px;}
._6_c00453{width:32.640000px;}
._28_c00453{width:33.696000px;}
._23_c00453{width:35.040000px;}
._3_c00453{width:36.192000px;}
._5_c00453{width:37.728000px;}
._21_c00453{width:39.360000px;}
._19_c00453{width:41.184000px;}
._33_c00453{width:42.612000px;}
._1d_c00453{width:43.680000px;}
._1c_c00453{width:45.408000px;}
._18_c00453{width:46.944000px;}
._34_c00453{width:48.936000px;}
._20_c00453{width:50.016000px;}
._38_c00453{width:52.056000px;}
._2f_c00453{width:53.856000px;}
._14_c00453{width:55.296000px;}
._39_c00453{width:58.272000px;}
._4a_c00453{width:60.228000px;}
._32_c00453{width:61.452000px;}
._31_c00453{width:65.280000px;}
._17_c00453{width:67.188000px;}
._30_c00453{width:81.696000px;}
._45_c00453{width:88.128000px;}
._27_c00453{width:131.328000px;}
._43_c00453{width:148.512000px;}
._47_c00453{width:170.208000px;}
._37_c00453{width:173.952000px;}
._4d_c00453{width:187.872000px;}
._25_c00453{width:214.488000px;}
._46_c00453{width:248.532000px;}
._3e_c00453{width:271.776000px;}
._4c_c00453{width:278.976000px;}
._36_c00453{width:284.544000px;}
._49_c00453{width:421.896000px;}
._3c_c00453{width:555.840000px;}
._22_c00453{width:756.192000px;}
._3d_c00453{width:825.156000px;}
._35_c00453{width:1014.432000px;}
.fc2_c00453{color:transparent;}
.fc1_c00453{color:rgb(128,128,128);}
.fc0_c00453{color:rgb(0,0,0);}
.fs4_c00453{font-size:48.000000px;}
.fs1_c00453{font-size:84.000000px;}
.fs0_c00453{font-size:96.000000px;}
.fs2_c00453{font-size:102.000000px;}
.fs3_c00453{font-size:105.000000px;}
.y0_c00453{bottom:0.000000px;}
.y26_c00453{bottom:3.105000px;}
.y25_c00453{bottom:7.228355px;}
.y24_c00453{bottom:111.735000px;}
.y23_c00453{bottom:142.785000px;}
.y22_c00453{bottom:176.535000px;}
.y21_c00453{bottom:211.635000px;}
.y20_c00453{bottom:245.385000px;}
.y1f_c00453{bottom:278.685000px;}
.y1e_c00453{bottom:312.735000px;}
.y1d_c00453{bottom:347.235000px;}
.y1c_c00453{bottom:380.685000px;}
.y1b_c00453{bottom:414.735000px;}
.y1a_c00453{bottom:448.485000px;}
.y19_c00453{bottom:482.835000px;}
.y18_c00453{bottom:515.385000px;}
.y17_c00453{bottom:550.035000px;}
.y16_c00453{bottom:583.785000px;}
.y15_c00453{bottom:617.835000px;}
.y14_c00453{bottom:650.685000px;}
.y13_c00453{bottom:684.435000px;}
.y12_c00453{bottom:719.535000px;}
.y11_c00453{bottom:751.635000px;}
.y10_c00453{bottom:784.935000px;}
.yf_c00453{bottom:818.685000px;}
.ye_c00453{bottom:853.185000px;}
.yd_c00453{bottom:886.185000px;}
.yc_c00453{bottom:919.335000px;}
.yb_c00453{bottom:952.635000px;}
.ya_c00453{bottom:985.785000px;}
.y9_c00453{bottom:1018.935000px;}
.y8_c00453{bottom:1052.235000px;}
.y7_c00453{bottom:1085.385000px;}
.y6_c00453{bottom:1119.135000px;}
.y5_c00453{bottom:1152.435000px;}
.y4_c00453{bottom:1186.185000px;}
.y3_c00453{bottom:1219.935000px;}
.y2_c00453{bottom:1252.785000px;}
.y1_c00453{bottom:1285.785000px;}
.h3_c00453{height:13.200074px;}
.h4_c00453{height:43.804688px;}
.h2_c00453{height:121.546875px;}
.h1_c00453{height:1366.500000px;}
.h0_c00453{height:1366.725000px;}
.w2_c00453{width:104.875500px;}
.w0_c00453{width:852.675000px;}
.w1_c00453{width:852.750000px;}
.x0_c00453{left:0.000000px;}
.xa_c00453{left:134.700000px;}
.x2_c00453{left:159.600000px;}
.x8_c00453{left:162.300000px;}
.xb_c00453{left:180.600000px;}
.x6_c00453{left:196.800000px;}
.x5_c00453{left:235.200000px;}
.x1_c00453{left:253.500000px;}
.x4_c00453{left:254.550000px;}
.x3_c00453{left:255.750000px;}
.x9_c00453{left:257.400000px;}
.xc_c00453{left:258.900000px;}
.xd_c00453{left:260.100000px;}
.x7_c00453{left:329.700000px;}
.xf_c00453{left:378.151749px;}
.xe_c00453{left:789.300000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls2_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:5.440000pt;}
.ls1_c00453{letter-spacing:5.560000pt;}
.ws2_c00453{word-spacing:-45.333333pt;}
.ws1_c00453{word-spacing:-20.565333pt;}
.ws0_c00453{word-spacing:-17.994667pt;}
.ws4_c00453{word-spacing:0.000000pt;}
.ws3_c00453{word-spacing:0.896000pt;}
._42_c00453{margin-left:-65.600000pt;}
._41_c00453{margin-left:-63.498667pt;}
._44_c00453{margin-left:-43.893333pt;}
._40_c00453{margin-left:-19.029333pt;}
._2a_c00453{margin-left:-17.237333pt;}
._2c_c00453{margin-left:-16.213333pt;}
._2b_c00453{margin-left:-14.421333pt;}
._3f_c00453{margin-left:-13.482667pt;}
._24_c00453{margin-left:-11.605333pt;}
._1f_c00453{margin-left:-9.813333pt;}
._2_c00453{margin-left:-8.277333pt;}
._2d_c00453{margin-left:-7.210667pt;}
._15_c00453{margin-left:-6.314667pt;}
._3b_c00453{margin-left:-5.333333pt;}
._1a_c00453{margin-left:-4.266667pt;}
._3a_c00453{margin-left:-3.072000pt;}
._13_c00453{margin-left:-1.962667pt;}
._0_c00453{margin-left:-1.024000pt;}
._4_c00453{width:1.536000pt;}
._16_c00453{width:2.474667pt;}
._b_c00453{width:3.669333pt;}
._8_c00453{width:4.949333pt;}
._d_c00453{width:6.058667pt;}
._7_c00453{width:6.997333pt;}
._2e_c00453{width:8.106667pt;}
._a_c00453{width:9.472000pt;}
._26_c00453{width:10.410667pt;}
._10_c00453{width:11.946667pt;}
._e_c00453{width:13.034667pt;}
._9_c00453{width:15.274667pt;}
._48_c00453{width:16.725333pt;}
._1b_c00453{width:17.664000pt;}
._4b_c00453{width:18.677333pt;}
._11_c00453{width:19.637333pt;}
._f_c00453{width:20.906667pt;}
._12_c00453{width:21.824000pt;}
._1e_c00453{width:23.125333pt;}
._c_c00453{width:24.490667pt;}
._1_c00453{width:26.368000pt;}
._29_c00453{width:27.477333pt;}
._6_c00453{width:29.013333pt;}
._28_c00453{width:29.952000pt;}
._23_c00453{width:31.146667pt;}
._3_c00453{width:32.170667pt;}
._5_c00453{width:33.536000pt;}
._21_c00453{width:34.986667pt;}
._19_c00453{width:36.608000pt;}
._33_c00453{width:37.877333pt;}
._1d_c00453{width:38.826667pt;}
._1c_c00453{width:40.362667pt;}
._18_c00453{width:41.728000pt;}
._34_c00453{width:43.498667pt;}
._20_c00453{width:44.458667pt;}
._38_c00453{width:46.272000pt;}
._2f_c00453{width:47.872000pt;}
._14_c00453{width:49.152000pt;}
._39_c00453{width:51.797333pt;}
._4a_c00453{width:53.536000pt;}
._32_c00453{width:54.624000pt;}
._31_c00453{width:58.026667pt;}
._17_c00453{width:59.722667pt;}
._30_c00453{width:72.618667pt;}
._45_c00453{width:78.336000pt;}
._27_c00453{width:116.736000pt;}
._43_c00453{width:132.010667pt;}
._47_c00453{width:151.296000pt;}
._37_c00453{width:154.624000pt;}
._4d_c00453{width:166.997333pt;}
._25_c00453{width:190.656000pt;}
._46_c00453{width:220.917333pt;}
._3e_c00453{width:241.578667pt;}
._4c_c00453{width:247.978667pt;}
._36_c00453{width:252.928000pt;}
._49_c00453{width:375.018667pt;}
._3c_c00453{width:494.080000pt;}
._22_c00453{width:672.170667pt;}
._3d_c00453{width:733.472000pt;}
._35_c00453{width:901.717333pt;}
.fs4_c00453{font-size:42.666667pt;}
.fs1_c00453{font-size:74.666667pt;}
.fs0_c00453{font-size:85.333333pt;}
.fs2_c00453{font-size:90.666667pt;}
.fs3_c00453{font-size:93.333333pt;}
.y0_c00453{bottom:0.000000pt;}
.y26_c00453{bottom:2.760000pt;}
.y25_c00453{bottom:6.425204pt;}
.y24_c00453{bottom:99.320000pt;}
.y23_c00453{bottom:126.920000pt;}
.y22_c00453{bottom:156.920000pt;}
.y21_c00453{bottom:188.120000pt;}
.y20_c00453{bottom:218.120000pt;}
.y1f_c00453{bottom:247.720000pt;}
.y1e_c00453{bottom:277.986667pt;}
.y1d_c00453{bottom:308.653333pt;}
.y1c_c00453{bottom:338.386667pt;}
.y1b_c00453{bottom:368.653333pt;}
.y1a_c00453{bottom:398.653333pt;}
.y19_c00453{bottom:429.186667pt;}
.y18_c00453{bottom:458.120000pt;}
.y17_c00453{bottom:488.920000pt;}
.y16_c00453{bottom:518.920000pt;}
.y15_c00453{bottom:549.186667pt;}
.y14_c00453{bottom:578.386667pt;}
.y13_c00453{bottom:608.386667pt;}
.y12_c00453{bottom:639.586667pt;}
.y11_c00453{bottom:668.120000pt;}
.y10_c00453{bottom:697.720000pt;}
.yf_c00453{bottom:727.720000pt;}
.ye_c00453{bottom:758.386667pt;}
.yd_c00453{bottom:787.720000pt;}
.yc_c00453{bottom:817.186667pt;}
.yb_c00453{bottom:846.786667pt;}
.ya_c00453{bottom:876.253333pt;}
.y9_c00453{bottom:905.720000pt;}
.y8_c00453{bottom:935.320000pt;}
.y7_c00453{bottom:964.786667pt;}
.y6_c00453{bottom:994.786667pt;}
.y5_c00453{bottom:1024.386667pt;}
.y4_c00453{bottom:1054.386667pt;}
.y3_c00453{bottom:1084.386667pt;}
.y2_c00453{bottom:1113.586667pt;}
.y1_c00453{bottom:1142.920000pt;}
.h3_c00453{height:11.733399pt;}
.h4_c00453{height:38.937500pt;}
.h2_c00453{height:108.041667pt;}
.h1_c00453{height:1214.666667pt;}
.h0_c00453{height:1214.866667pt;}
.w2_c00453{width:93.222667pt;}
.w0_c00453{width:757.933333pt;}
.w1_c00453{width:758.000000pt;}
.x0_c00453{left:0.000000pt;}
.xa_c00453{left:119.733333pt;}
.x2_c00453{left:141.866667pt;}
.x8_c00453{left:144.266667pt;}
.xb_c00453{left:160.533333pt;}
.x6_c00453{left:174.933333pt;}
.x5_c00453{left:209.066667pt;}
.x1_c00453{left:225.333333pt;}
.x4_c00453{left:226.266667pt;}
.x3_c00453{left:227.333333pt;}
.x9_c00453{left:228.800000pt;}
.xc_c00453{left:230.133333pt;}
.xd_c00453{left:231.200000pt;}
.x7_c00453{left:293.066667pt;}
.xf_c00453{left:336.134888pt;}
.xe_c00453{left:701.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_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_b60368fd52afc93a898f63ef.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_6016398b7ea561228fb8ffd0.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_f5d7e4f7c967b0c84e7ead2e.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_875c4f036817eb2d74735a4e.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_0617946ed5756b1ee1dc59e6.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00454;src:url('chunks/assets/font_000ac1c8a4da4e5a7d8ff146.woff2')format("woff");}.ff6_c00454{font-family:ff6_c00454;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00454;src:url('chunks/assets/font_8bda6caec6128e261866499c.woff2')format("woff");}.ff7_c00454{font-family:ff7_c00454;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00454;src:url('chunks/assets/font_ad3eaac140d96792cef20e29.woff2')format("woff");}.ff8_c00454{font-family:ff8_c00454;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00454;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00454{font-family:ff9_c00454;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00454{vertical-align:-33.600000px;}
.v0_c00454{vertical-align:0.000000px;}
.ls6_c00454{letter-spacing:-18.000000px;}
.ls8_c00454{letter-spacing:-3.000000px;}
.ls4_c00454{letter-spacing:0.000000px;}
.ls1_c00454{letter-spacing:0.672000px;}
.ls3_c00454{letter-spacing:3.000000px;}
.ls5_c00454{letter-spacing:9.000000px;}
.ls0_c00454{letter-spacing:10.920000px;}
.ls7_c00454{letter-spacing:12.000000px;}
.ls2_c00454{letter-spacing:16.200000px;}
.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;}
}
.ws2_c00454{word-spacing:-51.000000px;}
.ws3_c00454{word-spacing:-45.180000px;}
.ws6_c00454{word-spacing:-31.839000px;}
.ws1_c00454{word-spacing:-29.244000px;}
.ws5_c00454{word-spacing:-23.967000px;}
.ws7_c00454{word-spacing:-23.136000px;}
.ws0_c00454{word-spacing:-20.244000px;}
.ws4_c00454{word-spacing:-17.967000px;}
.ws8_c00454{word-spacing:-0.091200px;}
.ws9_c00454{word-spacing:0.000000px;}
._41_c00454{margin-left:-211.680000px;}
._44_c00454{margin-left:-195.300000px;}
._49_c00454{margin-left:-177.240000px;}
._4e_c00454{margin-left:-146.580000px;}
._42_c00454{margin-left:-142.800000px;}
._47_c00454{margin-left:-133.140000px;}
._45_c00454{margin-left:-125.160000px;}
._94_c00454{margin-left:-92.742000px;}
._40_c00454{margin-left:-90.300000px;}
._50_c00454{margin-left:-86.520000px;}
._53_c00454{margin-left:-83.580000px;}
._98_c00454{margin-left:-80.457000px;}
._8f_c00454{margin-left:-78.075000px;}
._4c_c00454{margin-left:-76.476000px;}
._43_c00454{margin-left:-73.500000px;}
._4b_c00454{margin-left:-71.820000px;}
._7f_c00454{margin-left:-70.080000px;}
._46_c00454{margin-left:-64.680000px;}
._7d_c00454{margin-left:-62.877000px;}
._52_c00454{margin-left:-59.220000px;}
._77_c00454{margin-left:-56.700000px;}
._54_c00454{margin-left:-54.900000px;}
._89_c00454{margin-left:-50.565000px;}
._8a_c00454{margin-left:-48.810000px;}
._74_c00454{margin-left:-46.656000px;}
._96_c00454{margin-left:-42.978000px;}
._86_c00454{margin-left:-41.430000px;}
._8c_c00454{margin-left:-40.272000px;}
._55_c00454{margin-left:-37.992000px;}
._5b_c00454{margin-left:-35.496000px;}
._6a_c00454{margin-left:-33.978000px;}
._4a_c00454{margin-left:-31.920000px;}
._9b_c00454{margin-left:-30.522000px;}
._2c_c00454{margin-left:-29.088000px;}
._71_c00454{margin-left:-27.492000px;}
._32_c00454{margin-left:-25.728000px;}
._2e_c00454{margin-left:-23.904000px;}
._65_c00454{margin-left:-22.656000px;}
._51_c00454{margin-left:-21.420000px;}
._6b_c00454{margin-left:-20.271000px;}
._2b_c00454{margin-left:-18.108000px;}
._6d_c00454{margin-left:-16.779000px;}
._5c_c00454{margin-left:-14.880000px;}
._59_c00454{margin-left:-13.824000px;}
._69_c00454{margin-left:-12.792000px;}
._66_c00454{margin-left:-11.616000px;}
._38_c00454{margin-left:-10.452000px;}
._7c_c00454{margin-left:-9.231000px;}
._37_c00454{margin-left:-7.788000px;}
._0_c00454{margin-left:-6.624000px;}
._9c_c00454{margin-left:-5.525400px;}
._1_c00454{margin-left:-4.512000px;}
._3_c00454{margin-left:-2.784000px;}
._2_c00454{margin-left:-1.632000px;}
._d_c00454{width:1.344000px;}
._e_c00454{width:2.592000px;}
._f_c00454{width:3.840000px;}
._6_c00454{width:5.088000px;}
._16_c00454{width:6.240000px;}
._15_c00454{width:7.488000px;}
._1e_c00454{width:8.556000px;}
._5_c00454{width:9.600000px;}
._1c_c00454{width:11.232000px;}
._31_c00454{width:12.756000px;}
._8_c00454{width:13.920000px;}
._39_c00454{width:15.576000px;}
._7_c00454{width:16.800000px;}
._9_c00454{width:18.240000px;}
._21_c00454{width:20.448000px;}
._28_c00454{width:21.600000px;}
._79_c00454{width:22.857000px;}
._22_c00454{width:24.384000px;}
._a_c00454{width:26.592000px;}
._1a_c00454{width:27.936000px;}
._2a_c00454{width:29.172000px;}
._23_c00454{width:30.648000px;}
._29_c00454{width:32.460000px;}
._9e_c00454{width:33.612000px;}
._18_c00454{width:34.944000px;}
._36_c00454{width:37.740000px;}
._4_c00454{width:39.168000px;}
._17_c00454{width:40.512000px;}
._20_c00454{width:42.720000px;}
._b_c00454{width:44.928000px;}
._25_c00454{width:45.948000px;}
._12_c00454{width:47.232000px;}
._26_c00454{width:49.812000px;}
._c_c00454{width:51.264000px;}
._24_c00454{width:52.320000px;}
._14_c00454{width:53.760000px;}
._8b_c00454{width:56.184000px;}
._2f_c00454{width:57.312000px;}
._30_c00454{width:58.656000px;}
._35_c00454{width:60.552000px;}
._3c_c00454{width:61.920000px;}
._13_c00454{width:62.976000px;}
._27_c00454{width:65.280000px;}
._11_c00454{width:67.296000px;}
._19_c00454{width:69.600000px;}
._1b_c00454{width:70.872000px;}
._3f_c00454{width:73.824000px;}
._10_c00454{width:74.976000px;}
._3a_c00454{width:76.020000px;}
._5e_c00454{width:78.210000px;}
._33_c00454{width:79.860000px;}
._3b_c00454{width:81.696000px;}
._97_c00454{width:83.508000px;}
._34_c00454{width:84.576000px;}
._99_c00454{width:85.782000px;}
._72_c00454{width:89.694000px;}
._5f_c00454{width:93.948000px;}
._8e_c00454{width:103.650000px;}
._3e_c00454{width:109.512000px;}
._64_c00454{width:125.424000px;}
._2d_c00454{width:129.312000px;}
._7e_c00454{width:139.548000px;}
._84_c00454{width:142.908000px;}
._57_c00454{width:146.376000px;}
._73_c00454{width:153.744000px;}
._6c_c00454{width:155.394000px;}
._1f_c00454{width:164.004000px;}
._80_c00454{width:176.436000px;}
._90_c00454{width:181.536000px;}
._91_c00454{width:191.778000px;}
._63_c00454{width:193.500000px;}
._58_c00454{width:198.144000px;}
._62_c00454{width:206.730000px;}
._88_c00454{width:217.605000px;}
._85_c00454{width:219.378000px;}
._87_c00454{width:224.373000px;}
._3d_c00454{width:226.356000px;}
._68_c00454{width:229.668000px;}
._95_c00454{width:237.888000px;}
._93_c00454{width:259.881000px;}
._78_c00454{width:276.468000px;}
._6f_c00454{width:281.985000px;}
._9a_c00454{width:283.125000px;}
._82_c00454{width:287.232000px;}
._70_c00454{width:291.846000px;}
._61_c00454{width:295.992000px;}
._92_c00454{width:318.015000px;}
._83_c00454{width:322.593000px;}
._4d_c00454{width:324.660000px;}
._5a_c00454{width:346.488000px;}
._48_c00454{width:348.180000px;}
._8d_c00454{width:368.070000px;}
._6e_c00454{width:370.944000px;}
._4f_c00454{width:373.800000px;}
._7a_c00454{width:439.167000px;}
._60_c00454{width:491.010000px;}
._7b_c00454{width:515.112000px;}
._76_c00454{width:538.272000px;}
._75_c00454{width:564.576000px;}
._9d_c00454{width:649.641000px;}
._81_c00454{width:692.796000px;}
._1d_c00454{width:870.432000px;}
._56_c00454{width:957.504000px;}
._5d_c00454{width:1079.148000px;}
._67_c00454{width:1301.376000px;}
.fc2_c00454{color:transparent;}
.fc1_c00454{color:rgb(128,128,128);}
.fc0_c00454{color:rgb(0,0,0);}
.fs6_c00454{font-size:30.000000px;}
.fsb_c00454{font-size:48.000000px;}
.fs4_c00454{font-size:60.000000px;}
.fs8_c00454{font-size:63.000000px;}
.fs7_c00454{font-size:78.000000px;}
.fs1_c00454{font-size:84.000000px;}
.fs5_c00454{font-size:87.000000px;}
.fsa_c00454{font-size:91.200000px;}
.fs0_c00454{font-size:96.000000px;}
.fs2_c00454{font-size:102.000000px;}
.fs9_c00454{font-size:114.000000px;}
.fs3_c00454{font-size:420.000000px;}
.y0_c00454{bottom:0.000000px;}
.y29_c00454{bottom:3.105000px;}
.y28_c00454{bottom:7.228369px;}
.y27_c00454{bottom:99.270000px;}
.y26_c00454{bottom:171.420000px;}
.y25_c00454{bottom:204.870000px;}
.y24_c00454{bottom:240.270000px;}
.y23_c00454{bottom:257.820000px;}
.y22_c00454{bottom:274.020000px;}
.y21_c00454{bottom:288.570000px;}
.y20_c00454{bottom:316.620000px;}
.y1f_c00454{bottom:340.770000px;}
.y1e_c00454{bottom:347.520000px;}
.y1d_c00454{bottom:357.120000px;}
.y1c_c00454{bottom:374.670000px;}
.y1b_c00454{bottom:407.670000px;}
.y1a_c00454{bottom:440.670000px;}
.y19_c00454{bottom:447.570000px;}
.y18_c00454{bottom:474.870000px;}
.y17_c00454{bottom:506.220000px;}
.y16_c00454{bottom:578.370000px;}
.y15_c00454{bottom:592.020000px;}
.y14_c00454{bottom:625.320000px;}
.y13_c00454{bottom:642.870000px;}
.y12_c00454{bottom:717.570000px;}
.y11_c00454{bottom:740.820000px;}
.y10_c00454{bottom:774.570000px;}
.yf_c00454{bottom:808.620000px;}
.ye_c00454{bottom:841.620000px;}
.yd_c00454{bottom:874.470000px;}
.yc_c00454{bottom:907.920000px;}
.yb_c00454{bottom:941.520000px;}
.ya_c00454{bottom:971.970000px;}
.y9_c00454{bottom:999.570000px;}
.y8_c00454{bottom:1041.420000px;}
.y7_c00454{bottom:1074.270000px;}
.y6_c00454{bottom:1107.570000px;}
.y5_c00454{bottom:1140.120000px;}
.y4_c00454{bottom:1175.520000px;}
.y3_c00454{bottom:1206.270000px;}
.y2_c00454{bottom:1239.270000px;}
.y1_c00454{bottom:1273.770000px;}
.h9_c00454{height:13.200073px;}
.h5_c00454{height:37.983398px;}
.ha_c00454{height:43.804688px;}
.h7_c00454{height:76.551855px;}
.h4_c00454{height:110.151855px;}
.h6_c00454{height:111.884766px;}
.h8_c00454{height:120.067383px;}
.h2_c00454{height:121.546875px;}
.h3_c00454{height:412.207031px;}
.h0_c00454{height:1383.450000px;}
.h1_c00454{height:1383.750000px;}
.w2_c00454{width:104.875500px;}
.w0_c00454{width:878.025000px;}
.w1_c00454{width:878.250000px;}
.x0_c00454{left:0.000000px;}
.x7_c00454{left:33.150000px;}
.x8_c00454{left:46.200000px;}
.x6_c00454{left:47.250000px;}
.x1_c00454{left:48.900000px;}
.x4_c00454{left:50.400000px;}
.x2_c00454{left:51.600000px;}
.x5_c00454{left:54.750000px;}
.x3_c00454{left:101.250000px;}
.xf_c00454{left:108.900000px;}
.xd_c00454{left:187.950000px;}
.x9_c00454{left:195.150000px;}
.xc_c00454{left:215.550000px;}
.x19_c00454{left:261.900000px;}
.x1a_c00454{left:264.900000px;}
.xb_c00454{left:271.050000px;}
.x14_c00454{left:281.700000px;}
.x13_c00454{left:289.200000px;}
.x12_c00454{left:301.950000px;}
.x10_c00454{left:323.700000px;}
.xe_c00454{left:339.750000px;}
.x18_c00454{left:348.600000px;}
.x15_c00454{left:382.950000px;}
.x1c_c00454{left:390.826721px;}
.x17_c00454{left:397.200000px;}
.xa_c00454{left:414.750000px;}
.x11_c00454{left:441.450000px;}
.x16_c00454{left:464.700000px;}
.x1b_c00454{left:539.550000px;}
@media print{
.v1_c00454{vertical-align:-29.866667pt;}
.v0_c00454{vertical-align:0.000000pt;}
.ls6_c00454{letter-spacing:-16.000000pt;}
.ls8_c00454{letter-spacing:-2.666667pt;}
.ls4_c00454{letter-spacing:0.000000pt;}
.ls1_c00454{letter-spacing:0.597333pt;}
.ls3_c00454{letter-spacing:2.666667pt;}
.ls5_c00454{letter-spacing:8.000000pt;}
.ls0_c00454{letter-spacing:9.706667pt;}
.ls7_c00454{letter-spacing:10.666667pt;}
.ls2_c00454{letter-spacing:14.400000pt;}
.ws2_c00454{word-spacing:-45.333333pt;}
.ws3_c00454{word-spacing:-40.160000pt;}
.ws6_c00454{word-spacing:-28.301333pt;}
.ws1_c00454{word-spacing:-25.994667pt;}
.ws5_c00454{word-spacing:-21.304000pt;}
.ws7_c00454{word-spacing:-20.565333pt;}
.ws0_c00454{word-spacing:-17.994667pt;}
.ws4_c00454{word-spacing:-15.970667pt;}
.ws8_c00454{word-spacing:-0.081067pt;}
.ws9_c00454{word-spacing:0.000000pt;}
._41_c00454{margin-left:-188.160000pt;}
._44_c00454{margin-left:-173.600000pt;}
._49_c00454{margin-left:-157.546667pt;}
._4e_c00454{margin-left:-130.293333pt;}
._42_c00454{margin-left:-126.933333pt;}
._47_c00454{margin-left:-118.346667pt;}
._45_c00454{margin-left:-111.253333pt;}
._94_c00454{margin-left:-82.437333pt;}
._40_c00454{margin-left:-80.266667pt;}
._50_c00454{margin-left:-76.906667pt;}
._53_c00454{margin-left:-74.293333pt;}
._98_c00454{margin-left:-71.517333pt;}
._8f_c00454{margin-left:-69.400000pt;}
._4c_c00454{margin-left:-67.978667pt;}
._43_c00454{margin-left:-65.333333pt;}
._4b_c00454{margin-left:-63.840000pt;}
._7f_c00454{margin-left:-62.293333pt;}
._46_c00454{margin-left:-57.493333pt;}
._7d_c00454{margin-left:-55.890667pt;}
._52_c00454{margin-left:-52.640000pt;}
._77_c00454{margin-left:-50.400000pt;}
._54_c00454{margin-left:-48.800000pt;}
._89_c00454{margin-left:-44.946667pt;}
._8a_c00454{margin-left:-43.386667pt;}
._74_c00454{margin-left:-41.472000pt;}
._96_c00454{margin-left:-38.202667pt;}
._86_c00454{margin-left:-36.826667pt;}
._8c_c00454{margin-left:-35.797333pt;}
._55_c00454{margin-left:-33.770667pt;}
._5b_c00454{margin-left:-31.552000pt;}
._6a_c00454{margin-left:-30.202667pt;}
._4a_c00454{margin-left:-28.373333pt;}
._9b_c00454{margin-left:-27.130667pt;}
._2c_c00454{margin-left:-25.856000pt;}
._71_c00454{margin-left:-24.437333pt;}
._32_c00454{margin-left:-22.869333pt;}
._2e_c00454{margin-left:-21.248000pt;}
._65_c00454{margin-left:-20.138667pt;}
._51_c00454{margin-left:-19.040000pt;}
._6b_c00454{margin-left:-18.018667pt;}
._2b_c00454{margin-left:-16.096000pt;}
._6d_c00454{margin-left:-14.914667pt;}
._5c_c00454{margin-left:-13.226667pt;}
._59_c00454{margin-left:-12.288000pt;}
._69_c00454{margin-left:-11.370667pt;}
._66_c00454{margin-left:-10.325333pt;}
._38_c00454{margin-left:-9.290667pt;}
._7c_c00454{margin-left:-8.205333pt;}
._37_c00454{margin-left:-6.922667pt;}
._0_c00454{margin-left:-5.888000pt;}
._9c_c00454{margin-left:-4.911467pt;}
._1_c00454{margin-left:-4.010667pt;}
._3_c00454{margin-left:-2.474667pt;}
._2_c00454{margin-left:-1.450667pt;}
._d_c00454{width:1.194667pt;}
._e_c00454{width:2.304000pt;}
._f_c00454{width:3.413333pt;}
._6_c00454{width:4.522667pt;}
._16_c00454{width:5.546667pt;}
._15_c00454{width:6.656000pt;}
._1e_c00454{width:7.605333pt;}
._5_c00454{width:8.533333pt;}
._1c_c00454{width:9.984000pt;}
._31_c00454{width:11.338667pt;}
._8_c00454{width:12.373333pt;}
._39_c00454{width:13.845333pt;}
._7_c00454{width:14.933333pt;}
._9_c00454{width:16.213333pt;}
._21_c00454{width:18.176000pt;}
._28_c00454{width:19.200000pt;}
._79_c00454{width:20.317333pt;}
._22_c00454{width:21.674667pt;}
._a_c00454{width:23.637333pt;}
._1a_c00454{width:24.832000pt;}
._2a_c00454{width:25.930667pt;}
._23_c00454{width:27.242667pt;}
._29_c00454{width:28.853333pt;}
._9e_c00454{width:29.877333pt;}
._18_c00454{width:31.061333pt;}
._36_c00454{width:33.546667pt;}
._4_c00454{width:34.816000pt;}
._17_c00454{width:36.010667pt;}
._20_c00454{width:37.973333pt;}
._b_c00454{width:39.936000pt;}
._25_c00454{width:40.842667pt;}
._12_c00454{width:41.984000pt;}
._26_c00454{width:44.277333pt;}
._c_c00454{width:45.568000pt;}
._24_c00454{width:46.506667pt;}
._14_c00454{width:47.786667pt;}
._8b_c00454{width:49.941333pt;}
._2f_c00454{width:50.944000pt;}
._30_c00454{width:52.138667pt;}
._35_c00454{width:53.824000pt;}
._3c_c00454{width:55.040000pt;}
._13_c00454{width:55.978667pt;}
._27_c00454{width:58.026667pt;}
._11_c00454{width:59.818667pt;}
._19_c00454{width:61.866667pt;}
._1b_c00454{width:62.997333pt;}
._3f_c00454{width:65.621333pt;}
._10_c00454{width:66.645333pt;}
._3a_c00454{width:67.573333pt;}
._5e_c00454{width:69.520000pt;}
._33_c00454{width:70.986667pt;}
._3b_c00454{width:72.618667pt;}
._97_c00454{width:74.229333pt;}
._34_c00454{width:75.178667pt;}
._99_c00454{width:76.250667pt;}
._72_c00454{width:79.728000pt;}
._5f_c00454{width:83.509333pt;}
._8e_c00454{width:92.133333pt;}
._3e_c00454{width:97.344000pt;}
._64_c00454{width:111.488000pt;}
._2d_c00454{width:114.944000pt;}
._7e_c00454{width:124.042667pt;}
._84_c00454{width:127.029333pt;}
._57_c00454{width:130.112000pt;}
._73_c00454{width:136.661333pt;}
._6c_c00454{width:138.128000pt;}
._1f_c00454{width:145.781333pt;}
._80_c00454{width:156.832000pt;}
._90_c00454{width:161.365333pt;}
._91_c00454{width:170.469333pt;}
._63_c00454{width:172.000000pt;}
._58_c00454{width:176.128000pt;}
._62_c00454{width:183.760000pt;}
._88_c00454{width:193.426667pt;}
._85_c00454{width:195.002667pt;}
._87_c00454{width:199.442667pt;}
._3d_c00454{width:201.205333pt;}
._68_c00454{width:204.149333pt;}
._95_c00454{width:211.456000pt;}
._93_c00454{width:231.005333pt;}
._78_c00454{width:245.749333pt;}
._6f_c00454{width:250.653333pt;}
._9a_c00454{width:251.666667pt;}
._82_c00454{width:255.317333pt;}
._70_c00454{width:259.418667pt;}
._61_c00454{width:263.104000pt;}
._92_c00454{width:282.680000pt;}
._83_c00454{width:286.749333pt;}
._4d_c00454{width:288.586667pt;}
._5a_c00454{width:307.989333pt;}
._48_c00454{width:309.493333pt;}
._8d_c00454{width:327.173333pt;}
._6e_c00454{width:329.728000pt;}
._4f_c00454{width:332.266667pt;}
._7a_c00454{width:390.370667pt;}
._60_c00454{width:436.453333pt;}
._7b_c00454{width:457.877333pt;}
._76_c00454{width:478.464000pt;}
._75_c00454{width:501.845333pt;}
._9d_c00454{width:577.458667pt;}
._81_c00454{width:615.818667pt;}
._1d_c00454{width:773.717333pt;}
._56_c00454{width:851.114667pt;}
._5d_c00454{width:959.242667pt;}
._67_c00454{width:1156.778667pt;}
.fs6_c00454{font-size:26.666667pt;}
.fsb_c00454{font-size:42.666667pt;}
.fs4_c00454{font-size:53.333333pt;}
.fs8_c00454{font-size:56.000000pt;}
.fs7_c00454{font-size:69.333333pt;}
.fs1_c00454{font-size:74.666667pt;}
.fs5_c00454{font-size:77.333333pt;}
.fsa_c00454{font-size:81.066667pt;}
.fs0_c00454{font-size:85.333333pt;}
.fs2_c00454{font-size:90.666667pt;}
.fs9_c00454{font-size:101.333333pt;}
.fs3_c00454{font-size:373.333333pt;}
.y0_c00454{bottom:0.000000pt;}
.y29_c00454{bottom:2.760000pt;}
.y28_c00454{bottom:6.425217pt;}
.y27_c00454{bottom:88.240000pt;}
.y26_c00454{bottom:152.373333pt;}
.y25_c00454{bottom:182.106667pt;}
.y24_c00454{bottom:213.573333pt;}
.y23_c00454{bottom:229.173333pt;}
.y22_c00454{bottom:243.573333pt;}
.y21_c00454{bottom:256.506667pt;}
.y20_c00454{bottom:281.440000pt;}
.y1f_c00454{bottom:302.906667pt;}
.y1e_c00454{bottom:308.906667pt;}
.y1d_c00454{bottom:317.440000pt;}
.y1c_c00454{bottom:333.040000pt;}
.y1b_c00454{bottom:362.373333pt;}
.y1a_c00454{bottom:391.706667pt;}
.y19_c00454{bottom:397.840000pt;}
.y18_c00454{bottom:422.106667pt;}
.y17_c00454{bottom:449.973333pt;}
.y16_c00454{bottom:514.106667pt;}
.y15_c00454{bottom:526.240000pt;}
.y14_c00454{bottom:555.840000pt;}
.y13_c00454{bottom:571.440000pt;}
.y12_c00454{bottom:637.840000pt;}
.y11_c00454{bottom:658.506667pt;}
.y10_c00454{bottom:688.506667pt;}
.yf_c00454{bottom:718.773333pt;}
.ye_c00454{bottom:748.106667pt;}
.yd_c00454{bottom:777.306667pt;}
.yc_c00454{bottom:807.040000pt;}
.yb_c00454{bottom:836.906667pt;}
.ya_c00454{bottom:863.973333pt;}
.y9_c00454{bottom:888.506667pt;}
.y8_c00454{bottom:925.706667pt;}
.y7_c00454{bottom:954.906667pt;}
.y6_c00454{bottom:984.506667pt;}
.y5_c00454{bottom:1013.440000pt;}
.y4_c00454{bottom:1044.906667pt;}
.y3_c00454{bottom:1072.240000pt;}
.y2_c00454{bottom:1101.573333pt;}
.y1_c00454{bottom:1132.240000pt;}
.h9_c00454{height:11.733399pt;}
.h5_c00454{height:33.763021pt;}
.ha_c00454{height:38.937500pt;}
.h7_c00454{height:68.046094pt;}
.h4_c00454{height:97.912760pt;}
.h6_c00454{height:99.453125pt;}
.h8_c00454{height:106.726562pt;}
.h2_c00454{height:108.041667pt;}
.h3_c00454{height:366.406250pt;}
.h0_c00454{height:1229.733333pt;}
.h1_c00454{height:1230.000000pt;}
.w2_c00454{width:93.222667pt;}
.w0_c00454{width:780.466667pt;}
.w1_c00454{width:780.666667pt;}
.x0_c00454{left:0.000000pt;}
.x7_c00454{left:29.466667pt;}
.x8_c00454{left:41.066667pt;}
.x6_c00454{left:42.000000pt;}
.x1_c00454{left:43.466667pt;}
.x4_c00454{left:44.800000pt;}
.x2_c00454{left:45.866667pt;}
.x5_c00454{left:48.666667pt;}
.x3_c00454{left:90.000000pt;}
.xf_c00454{left:96.800000pt;}
.xd_c00454{left:167.066667pt;}
.x9_c00454{left:173.466667pt;}
.xc_c00454{left:191.600000pt;}
.x19_c00454{left:232.800000pt;}
.x1a_c00454{left:235.466667pt;}
.xb_c00454{left:240.933333pt;}
.x14_c00454{left:250.400000pt;}
.x13_c00454{left:257.066667pt;}
.x12_c00454{left:268.400000pt;}
.x10_c00454{left:287.733333pt;}
.xe_c00454{left:302.000000pt;}
.x18_c00454{left:309.866667pt;}
.x15_c00454{left:340.400000pt;}
.x1c_c00454{left:347.401530pt;}
.x17_c00454{left:353.066667pt;}
.xa_c00454{left:368.666667pt;}
.x11_c00454{left:392.400000pt;}
.x16_c00454{left:413.066667pt;}
.x1b_c00454{left:479.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_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_27f03beabe9b598aac7c2363.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_692a08c5a804efd6a2503775.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_3b902c48b01518379ab45163.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;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_c00455;src:url('chunks/assets/font_8c120c9c131315b8e73f294a.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.v1_c00455{vertical-align:60.600000px;}
.ls3_c00455{letter-spacing:-6.000000px;}
.ls2_c00455{letter-spacing:-3.000000px;}
.ls1_c00455{letter-spacing:0.000000px;}
.ls4_c00455{letter-spacing:6.000000px;}
.ls0_c00455{letter-spacing:9.000000px;}
.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:-58.026000px;}
.ws3_c00455{word-spacing:-29.244000px;}
.ws2_c00455{word-spacing:-20.244000px;}
.ws4_c00455{word-spacing:0.000000px;}
.ws0_c00455{word-spacing:824.346000px;}
._5_c00455{margin-left:-70.128000px;}
._1a_c00455{margin-left:-45.414000px;}
._24_c00455{margin-left:-33.411000px;}
._40_c00455{margin-left:-28.191000px;}
._33_c00455{margin-left:-26.016000px;}
._c_c00455{margin-left:-24.480000px;}
._3a_c00455{margin-left:-23.040000px;}
._14_c00455{margin-left:-18.531000px;}
._18_c00455{margin-left:-16.965000px;}
._25_c00455{margin-left:-14.976000px;}
._3_c00455{margin-left:-13.968000px;}
._4a_c00455{margin-left:-12.960000px;}
._17_c00455{margin-left:-11.832000px;}
._49_c00455{margin-left:-10.368000px;}
._10_c00455{margin-left:-9.360000px;}
._1b_c00455{margin-left:-7.776000px;}
._2e_c00455{margin-left:-6.543000px;}
._11_c00455{margin-left:-5.472000px;}
._1f_c00455{margin-left:-4.032000px;}
._6_c00455{margin-left:-2.160000px;}
._4_c00455{margin-left:-1.008000px;}
._45_c00455{width:1.056000px;}
._1_c00455{width:2.160000px;}
._35_c00455{width:3.312000px;}
._0_c00455{width:4.320000px;}
._8_c00455{width:5.616000px;}
._a_c00455{width:6.624000px;}
._9_c00455{width:7.776000px;}
._b_c00455{width:9.072000px;}
._26_c00455{width:10.131000px;}
._32_c00455{width:11.136000px;}
._21_c00455{width:12.240000px;}
._38_c00455{width:13.248000px;}
._28_c00455{width:14.520000px;}
._29_c00455{width:15.600000px;}
._2b_c00455{width:16.920000px;}
._39_c00455{width:18.696000px;}
._46_c00455{width:19.731000px;}
._22_c00455{width:21.168000px;}
._19_c00455{width:23.142000px;}
._23_c00455{width:24.768000px;}
._2c_c00455{width:27.288000px;}
._2_c00455{width:29.088000px;}
._27_c00455{width:30.525000px;}
._1c_c00455{width:32.112000px;}
._3b_c00455{width:34.176000px;}
._37_c00455{width:35.832000px;}
._30_c00455{width:37.080000px;}
._31_c00455{width:38.640000px;}
._41_c00455{width:40.056000px;}
._2d_c00455{width:41.103000px;}
._f_c00455{width:42.192000px;}
._16_c00455{width:43.446000px;}
._36_c00455{width:45.600000px;}
._1d_c00455{width:47.808000px;}
._1e_c00455{width:50.544000px;}
._3c_c00455{width:51.888000px;}
._43_c00455{width:54.000000px;}
._13_c00455{width:55.584000px;}
._42_c00455{width:56.592000px;}
._47_c00455{width:58.272000px;}
._44_c00455{width:61.152000px;}
._e_c00455{width:63.360000px;}
._3e_c00455{width:65.088000px;}
._3f_c00455{width:69.504000px;}
._12_c00455{width:72.144000px;}
._3d_c00455{width:74.208000px;}
._7_c00455{width:89.568000px;}
._2a_c00455{width:178.848000px;}
._15_c00455{width:202.188000px;}
._d_c00455{width:223.344000px;}
._2f_c00455{width:369.477000px;}
._34_c00455{width:380.640000px;}
._20_c00455{width:384.768000px;}
._48_c00455{width:1740.426000px;}
.fc2_c00455{color:transparent;}
.fc1_c00455{color:rgb(128,128,128);}
.fc0_c00455{color:rgb(0,0,0);}
.fs6_c00455{font-size:48.000000px;}
.fs3_c00455{font-size:78.000000px;}
.fs5_c00455{font-size:84.000000px;}
.fs1_c00455{font-size:87.000000px;}
.fs4_c00455{font-size:96.000000px;}
.fs2_c00455{font-size:117.000000px;}
.fs0_c00455{font-size:144.000000px;}
.y0_c00455{bottom:0.000000px;}
.y23_c00455{bottom:3.105000px;}
.y22_c00455{bottom:7.228357px;}
.y21_c00455{bottom:98.580000px;}
.y20_c00455{bottom:133.380000px;}
.y1f_c00455{bottom:167.130000px;}
.y1e_c00455{bottom:201.180000px;}
.y1d_c00455{bottom:235.230000px;}
.y1c_c00455{bottom:268.980000px;}
.y1b_c00455{bottom:302.730000px;}
.y1a_c00455{bottom:336.780000px;}
.y19_c00455{bottom:370.380000px;}
.y18_c00455{bottom:404.280000px;}
.y17_c00455{bottom:438.180000px;}
.y16_c00455{bottom:471.780000px;}
.y15_c00455{bottom:505.230000px;}
.y14_c00455{bottom:538.980000px;}
.y13_c00455{bottom:572.130000px;}
.y12_c00455{bottom:605.580000px;}
.y11_c00455{bottom:639.180000px;}
.y10_c00455{bottom:672.630000px;}
.yf_c00455{bottom:705.930000px;}
.ye_c00455{bottom:739.080000px;}
.yd_c00455{bottom:772.230000px;}
.yc_c00455{bottom:806.580000px;}
.yb_c00455{bottom:839.430000px;}
.ya_c00455{bottom:872.730000px;}
.y9_c00455{bottom:905.280000px;}
.y8_c00455{bottom:937.680000px;}
.y7_c00455{bottom:972.780000px;}
.y6_c00455{bottom:1063.530000px;}
.y5_c00455{bottom:1113.780000px;}
.y4_c00455{bottom:1164.030000px;}
.y3_c00455{bottom:1205.280000px;}
.y2_c00455{bottom:1215.330000px;}
.y1_c00455{bottom:1264.680000px;}
.h7_c00455{height:13.200074px;}
.h8_c00455{height:43.804688px;}
.h3_c00455{height:110.151855px;}
.h5_c00455{height:121.546875px;}
.h6_c00455{height:122.146875px;}
.h4_c00455{height:137.152734px;}
.h2_c00455{height:182.320312px;}
.h0_c00455{height:1382.700000px;}
.h1_c00455{height:1383.000000px;}
.w2_c00455{width:104.875500px;}
.w0_c00455{width:863.175000px;}
.w1_c00455{width:863.250000px;}
.x0_c00455{left:0.000000px;}
.x7_c00455{left:89.400000px;}
.xd_c00455{left:232.950000px;}
.xc_c00455{left:234.000000px;}
.xb_c00455{left:235.650000px;}
.xa_c00455{left:236.700000px;}
.xe_c00455{left:238.350000px;}
.xf_c00455{left:239.400000px;}
.x10_c00455{left:241.050000px;}
.x1_c00455{left:242.400000px;}
.x2_c00455{left:264.000000px;}
.x9_c00455{left:271.800000px;}
.x3_c00455{left:299.700000px;}
.x8_c00455{left:366.900000px;}
.x4_c00455{left:375.600000px;}
.x11_c00455{left:383.401749px;}
.x5_c00455{left:407.400000px;}
.x6_c00455{left:473.250000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.v1_c00455{vertical-align:53.866667pt;}
.ls3_c00455{letter-spacing:-5.333333pt;}
.ls2_c00455{letter-spacing:-2.666667pt;}
.ls1_c00455{letter-spacing:0.000000pt;}
.ls4_c00455{letter-spacing:5.333333pt;}
.ls0_c00455{letter-spacing:8.000000pt;}
.ws1_c00455{word-spacing:-51.578667pt;}
.ws3_c00455{word-spacing:-25.994667pt;}
.ws2_c00455{word-spacing:-17.994667pt;}
.ws4_c00455{word-spacing:0.000000pt;}
.ws0_c00455{word-spacing:732.752000pt;}
._5_c00455{margin-left:-62.336000pt;}
._1a_c00455{margin-left:-40.368000pt;}
._24_c00455{margin-left:-29.698667pt;}
._40_c00455{margin-left:-25.058667pt;}
._33_c00455{margin-left:-23.125333pt;}
._c_c00455{margin-left:-21.760000pt;}
._3a_c00455{margin-left:-20.480000pt;}
._14_c00455{margin-left:-16.472000pt;}
._18_c00455{margin-left:-15.080000pt;}
._25_c00455{margin-left:-13.312000pt;}
._3_c00455{margin-left:-12.416000pt;}
._4a_c00455{margin-left:-11.520000pt;}
._17_c00455{margin-left:-10.517333pt;}
._49_c00455{margin-left:-9.216000pt;}
._10_c00455{margin-left:-8.320000pt;}
._1b_c00455{margin-left:-6.912000pt;}
._2e_c00455{margin-left:-5.816000pt;}
._11_c00455{margin-left:-4.864000pt;}
._1f_c00455{margin-left:-3.584000pt;}
._6_c00455{margin-left:-1.920000pt;}
._4_c00455{margin-left:-0.896000pt;}
._45_c00455{width:0.938667pt;}
._1_c00455{width:1.920000pt;}
._35_c00455{width:2.944000pt;}
._0_c00455{width:3.840000pt;}
._8_c00455{width:4.992000pt;}
._a_c00455{width:5.888000pt;}
._9_c00455{width:6.912000pt;}
._b_c00455{width:8.064000pt;}
._26_c00455{width:9.005333pt;}
._32_c00455{width:9.898667pt;}
._21_c00455{width:10.880000pt;}
._38_c00455{width:11.776000pt;}
._28_c00455{width:12.906667pt;}
._29_c00455{width:13.866667pt;}
._2b_c00455{width:15.040000pt;}
._39_c00455{width:16.618667pt;}
._46_c00455{width:17.538667pt;}
._22_c00455{width:18.816000pt;}
._19_c00455{width:20.570667pt;}
._23_c00455{width:22.016000pt;}
._2c_c00455{width:24.256000pt;}
._2_c00455{width:25.856000pt;}
._27_c00455{width:27.133333pt;}
._1c_c00455{width:28.544000pt;}
._3b_c00455{width:30.378667pt;}
._37_c00455{width:31.850667pt;}
._30_c00455{width:32.960000pt;}
._31_c00455{width:34.346667pt;}
._41_c00455{width:35.605333pt;}
._2d_c00455{width:36.536000pt;}
._f_c00455{width:37.504000pt;}
._16_c00455{width:38.618667pt;}
._36_c00455{width:40.533333pt;}
._1d_c00455{width:42.496000pt;}
._1e_c00455{width:44.928000pt;}
._3c_c00455{width:46.122667pt;}
._43_c00455{width:48.000000pt;}
._13_c00455{width:49.408000pt;}
._42_c00455{width:50.304000pt;}
._47_c00455{width:51.797333pt;}
._44_c00455{width:54.357333pt;}
._e_c00455{width:56.320000pt;}
._3e_c00455{width:57.856000pt;}
._3f_c00455{width:61.781333pt;}
._12_c00455{width:64.128000pt;}
._3d_c00455{width:65.962667pt;}
._7_c00455{width:79.616000pt;}
._2a_c00455{width:158.976000pt;}
._15_c00455{width:179.722667pt;}
._d_c00455{width:198.528000pt;}
._2f_c00455{width:328.424000pt;}
._34_c00455{width:338.346667pt;}
._20_c00455{width:342.016000pt;}
._48_c00455{width:1547.045333pt;}
.fs6_c00455{font-size:42.666667pt;}
.fs3_c00455{font-size:69.333333pt;}
.fs5_c00455{font-size:74.666667pt;}
.fs1_c00455{font-size:77.333333pt;}
.fs4_c00455{font-size:85.333333pt;}
.fs2_c00455{font-size:104.000000pt;}
.fs0_c00455{font-size:128.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y23_c00455{bottom:2.760000pt;}
.y22_c00455{bottom:6.425206pt;}
.y21_c00455{bottom:87.626667pt;}
.y20_c00455{bottom:118.560000pt;}
.y1f_c00455{bottom:148.560000pt;}
.y1e_c00455{bottom:178.826667pt;}
.y1d_c00455{bottom:209.093333pt;}
.y1c_c00455{bottom:239.093333pt;}
.y1b_c00455{bottom:269.093333pt;}
.y1a_c00455{bottom:299.360000pt;}
.y19_c00455{bottom:329.226667pt;}
.y18_c00455{bottom:359.360000pt;}
.y17_c00455{bottom:389.493333pt;}
.y16_c00455{bottom:419.360000pt;}
.y15_c00455{bottom:449.093333pt;}
.y14_c00455{bottom:479.093333pt;}
.y13_c00455{bottom:508.560000pt;}
.y12_c00455{bottom:538.293333pt;}
.y11_c00455{bottom:568.160000pt;}
.y10_c00455{bottom:597.893333pt;}
.yf_c00455{bottom:627.493333pt;}
.ye_c00455{bottom:656.960000pt;}
.yd_c00455{bottom:686.426667pt;}
.yc_c00455{bottom:716.960000pt;}
.yb_c00455{bottom:746.160000pt;}
.ya_c00455{bottom:775.760000pt;}
.y9_c00455{bottom:804.693333pt;}
.y8_c00455{bottom:833.493333pt;}
.y7_c00455{bottom:864.693333pt;}
.y6_c00455{bottom:945.360000pt;}
.y5_c00455{bottom:990.026667pt;}
.y4_c00455{bottom:1034.693333pt;}
.y3_c00455{bottom:1071.360000pt;}
.y2_c00455{bottom:1080.293333pt;}
.y1_c00455{bottom:1124.160000pt;}
.h7_c00455{height:11.733399pt;}
.h8_c00455{height:38.937500pt;}
.h3_c00455{height:97.912760pt;}
.h5_c00455{height:108.041667pt;}
.h6_c00455{height:108.575000pt;}
.h4_c00455{height:121.913542pt;}
.h2_c00455{height:162.062500pt;}
.h0_c00455{height:1229.066667pt;}
.h1_c00455{height:1229.333333pt;}
.w2_c00455{width:93.222667pt;}
.w0_c00455{width:767.266667pt;}
.w1_c00455{width:767.333333pt;}
.x0_c00455{left:0.000000pt;}
.x7_c00455{left:79.466667pt;}
.xd_c00455{left:207.066667pt;}
.xc_c00455{left:208.000000pt;}
.xb_c00455{left:209.466667pt;}
.xa_c00455{left:210.400000pt;}
.xe_c00455{left:211.866667pt;}
.xf_c00455{left:212.800000pt;}
.x10_c00455{left:214.266667pt;}
.x1_c00455{left:215.466667pt;}
.x2_c00455{left:234.666667pt;}
.x9_c00455{left:241.600000pt;}
.x3_c00455{left:266.400000pt;}
.x8_c00455{left:326.133333pt;}
.x4_c00455{left:333.866667pt;}
.x11_c00455{left:340.801554pt;}
.x5_c00455{left:362.133333pt;}
.x6_c00455{left:420.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8181b3a51c84a6f9c0e4d52a.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_00e80da79b675bd0b5fae34a.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00456{word-spacing:-20.244000px;}
.ws1_c00456{word-spacing:0.000000px;}
._c_c00456{margin-left:-48.480000px;}
._38_c00456{margin-left:-21.408000px;}
._18_c00456{margin-left:-16.416000px;}
._2a_c00456{margin-left:-13.056000px;}
._31_c00456{margin-left:-10.680000px;}
._33_c00456{margin-left:-9.516000px;}
._27_c00456{margin-left:-8.448000px;}
._20_c00456{margin-left:-7.296000px;}
._b_c00456{margin-left:-5.664000px;}
._21_c00456{margin-left:-4.608000px;}
._12_c00456{margin-left:-3.264000px;}
._14_c00456{margin-left:-1.344000px;}
._0_c00456{width:1.056000px;}
._1_c00456{width:2.592000px;}
._4_c00456{width:4.512000px;}
._3_c00456{width:5.856000px;}
._9_c00456{width:7.008000px;}
._5_c00456{width:8.640000px;}
._10_c00456{width:9.696000px;}
._19_c00456{width:10.752000px;}
._15_c00456{width:11.904000px;}
._37_c00456{width:13.032000px;}
._22_c00456{width:14.400000px;}
._7_c00456{width:15.936000px;}
._2b_c00456{width:17.280000px;}
._17_c00456{width:19.200000px;}
._f_c00456{width:21.312000px;}
._8_c00456{width:25.344000px;}
._16_c00456{width:27.648000px;}
._a_c00456{width:29.664000px;}
._2f_c00456{width:30.912000px;}
._1d_c00456{width:32.160000px;}
._1f_c00456{width:33.984000px;}
._1c_c00456{width:36.288000px;}
._36_c00456{width:37.440000px;}
._13_c00456{width:38.496000px;}
._24_c00456{width:40.224000px;}
._2_c00456{width:41.472000px;}
._11_c00456{width:42.624000px;}
._29_c00456{width:43.776000px;}
._1a_c00456{width:45.600000px;}
._26_c00456{width:47.820000px;}
._1b_c00456{width:48.960000px;}
._23_c00456{width:50.016000px;}
._30_c00456{width:51.936000px;}
._6_c00456{width:53.376000px;}
._d_c00456{width:54.528000px;}
._e_c00456{width:56.064000px;}
._28_c00456{width:57.984000px;}
._2e_c00456{width:60.480000px;}
._32_c00456{width:62.016000px;}
._2d_c00456{width:64.704000px;}
._34_c00456{width:66.528000px;}
._2c_c00456{width:69.216000px;}
._35_c00456{width:73.344000px;}
._25_c00456{width:237.540000px;}
._1e_c00456{width:277.728000px;}
._3a_c00456{width:730.080000px;}
._39_c00456{width:886.464000px;}
.fc2_c00456{color:transparent;}
.fc1_c00456{color:rgb(128,128,128);}
.fc0_c00456{color:rgb(0,0,0);}
.fs3_c00456{font-size:48.000000px;}
.fs1_c00456{font-size:84.000000px;}
.fs0_c00456{font-size:96.000000px;}
.fs2_c00456{font-size:102.000000px;}
.y0_c00456{bottom:0.000000px;}
.y26_c00456{bottom:3.105000px;}
.y25_c00456{bottom:7.228369px;}
.y24_c00456{bottom:108.720000px;}
.y23_c00456{bottom:144.120000px;}
.y22_c00456{bottom:178.770000px;}
.y21_c00456{bottom:213.270000px;}
.y20_c00456{bottom:246.420000px;}
.y1f_c00456{bottom:280.770000px;}
.y1e_c00456{bottom:315.120000px;}
.y1d_c00456{bottom:348.870000px;}
.y1c_c00456{bottom:382.620000px;}
.y1b_c00456{bottom:416.520000px;}
.y1a_c00456{bottom:449.820000px;}
.y19_c00456{bottom:484.020000px;}
.y18_c00456{bottom:517.320000px;}
.y17_c00456{bottom:551.070000px;}
.y16_c00456{bottom:584.520000px;}
.y15_c00456{bottom:618.270000px;}
.y14_c00456{bottom:651.720000px;}
.y13_c00456{bottom:685.470000px;}
.y12_c00456{bottom:718.470000px;}
.y11_c00456{bottom:752.220000px;}
.y10_c00456{bottom:785.070000px;}
.yf_c00456{bottom:818.670000px;}
.ye_c00456{bottom:851.520000px;}
.yd_c00456{bottom:884.970000px;}
.yc_c00456{bottom:917.970000px;}
.yb_c00456{bottom:951.420000px;}
.ya_c00456{bottom:984.120000px;}
.y9_c00456{bottom:1017.270000px;}
.y8_c00456{bottom:1051.320000px;}
.y7_c00456{bottom:1084.620000px;}
.y6_c00456{bottom:1117.770000px;}
.y5_c00456{bottom:1150.470000px;}
.y4_c00456{bottom:1183.620000px;}
.y3_c00456{bottom:1217.070000px;}
.y2_c00456{bottom:1250.070000px;}
.y1_c00456{bottom:1283.220000px;}
.h4_c00456{height:13.200073px;}
.h5_c00456{height:43.804688px;}
.h2_c00456{height:121.546875px;}
.h3_c00456{height:129.143555px;}
.h0_c00456{height:1383.450000px;}
.h1_c00456{height:1383.750000px;}
.w2_c00456{width:104.875500px;}
.w0_c00456{width:878.025000px;}
.w1_c00456{width:878.250000px;}
.x0_c00456{left:0.000000px;}
.x5_c00456{left:33.150000px;}
.x4_c00456{left:34.350000px;}
.x2_c00456{left:35.400000px;}
.x3_c00456{left:36.450000px;}
.x1_c00456{left:38.100000px;}
.x6_c00456{left:39.750000px;}
.x7_c00456{left:41.400000px;}
.x8_c00456{left:43.500000px;}
.x9_c00456{left:390.826721px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:-17.994667pt;}
.ws1_c00456{word-spacing:0.000000pt;}
._c_c00456{margin-left:-43.093333pt;}
._38_c00456{margin-left:-19.029333pt;}
._18_c00456{margin-left:-14.592000pt;}
._2a_c00456{margin-left:-11.605333pt;}
._31_c00456{margin-left:-9.493333pt;}
._33_c00456{margin-left:-8.458667pt;}
._27_c00456{margin-left:-7.509333pt;}
._20_c00456{margin-left:-6.485333pt;}
._b_c00456{margin-left:-5.034667pt;}
._21_c00456{margin-left:-4.096000pt;}
._12_c00456{margin-left:-2.901333pt;}
._14_c00456{margin-left:-1.194667pt;}
._0_c00456{width:0.938667pt;}
._1_c00456{width:2.304000pt;}
._4_c00456{width:4.010667pt;}
._3_c00456{width:5.205333pt;}
._9_c00456{width:6.229333pt;}
._5_c00456{width:7.680000pt;}
._10_c00456{width:8.618667pt;}
._19_c00456{width:9.557333pt;}
._15_c00456{width:10.581333pt;}
._37_c00456{width:11.584000pt;}
._22_c00456{width:12.800000pt;}
._7_c00456{width:14.165333pt;}
._2b_c00456{width:15.360000pt;}
._17_c00456{width:17.066667pt;}
._f_c00456{width:18.944000pt;}
._8_c00456{width:22.528000pt;}
._16_c00456{width:24.576000pt;}
._a_c00456{width:26.368000pt;}
._2f_c00456{width:27.477333pt;}
._1d_c00456{width:28.586667pt;}
._1f_c00456{width:30.208000pt;}
._1c_c00456{width:32.256000pt;}
._36_c00456{width:33.280000pt;}
._13_c00456{width:34.218667pt;}
._24_c00456{width:35.754667pt;}
._2_c00456{width:36.864000pt;}
._11_c00456{width:37.888000pt;}
._29_c00456{width:38.912000pt;}
._1a_c00456{width:40.533333pt;}
._26_c00456{width:42.506667pt;}
._1b_c00456{width:43.520000pt;}
._23_c00456{width:44.458667pt;}
._30_c00456{width:46.165333pt;}
._6_c00456{width:47.445333pt;}
._d_c00456{width:48.469333pt;}
._e_c00456{width:49.834667pt;}
._28_c00456{width:51.541333pt;}
._2e_c00456{width:53.760000pt;}
._32_c00456{width:55.125333pt;}
._2d_c00456{width:57.514667pt;}
._34_c00456{width:59.136000pt;}
._2c_c00456{width:61.525333pt;}
._35_c00456{width:65.194667pt;}
._25_c00456{width:211.146667pt;}
._1e_c00456{width:246.869333pt;}
._3a_c00456{width:648.960000pt;}
._39_c00456{width:787.968000pt;}
.fs3_c00456{font-size:42.666667pt;}
.fs1_c00456{font-size:74.666667pt;}
.fs0_c00456{font-size:85.333333pt;}
.fs2_c00456{font-size:90.666667pt;}
.y0_c00456{bottom:0.000000pt;}
.y26_c00456{bottom:2.760000pt;}
.y25_c00456{bottom:6.425217pt;}
.y24_c00456{bottom:96.640000pt;}
.y23_c00456{bottom:128.106667pt;}
.y22_c00456{bottom:158.906667pt;}
.y21_c00456{bottom:189.573333pt;}
.y20_c00456{bottom:219.040000pt;}
.y1f_c00456{bottom:249.573333pt;}
.y1e_c00456{bottom:280.106667pt;}
.y1d_c00456{bottom:310.106667pt;}
.y1c_c00456{bottom:340.106667pt;}
.y1b_c00456{bottom:370.240000pt;}
.y1a_c00456{bottom:399.840000pt;}
.y19_c00456{bottom:430.240000pt;}
.y18_c00456{bottom:459.840000pt;}
.y17_c00456{bottom:489.840000pt;}
.y16_c00456{bottom:519.573333pt;}
.y15_c00456{bottom:549.573333pt;}
.y14_c00456{bottom:579.306667pt;}
.y13_c00456{bottom:609.306667pt;}
.y12_c00456{bottom:638.640000pt;}
.y11_c00456{bottom:668.640000pt;}
.y10_c00456{bottom:697.840000pt;}
.yf_c00456{bottom:727.706667pt;}
.ye_c00456{bottom:756.906667pt;}
.yd_c00456{bottom:786.640000pt;}
.yc_c00456{bottom:815.973333pt;}
.yb_c00456{bottom:845.706667pt;}
.ya_c00456{bottom:874.773333pt;}
.y9_c00456{bottom:904.240000pt;}
.y8_c00456{bottom:934.506667pt;}
.y7_c00456{bottom:964.106667pt;}
.y6_c00456{bottom:993.573333pt;}
.y5_c00456{bottom:1022.640000pt;}
.y4_c00456{bottom:1052.106667pt;}
.y3_c00456{bottom:1081.840000pt;}
.y2_c00456{bottom:1111.173333pt;}
.y1_c00456{bottom:1140.640000pt;}
.h4_c00456{height:11.733399pt;}
.h5_c00456{height:38.937500pt;}
.h2_c00456{height:108.041667pt;}
.h3_c00456{height:114.794271pt;}
.h0_c00456{height:1229.733333pt;}
.h1_c00456{height:1230.000000pt;}
.w2_c00456{width:93.222667pt;}
.w0_c00456{width:780.466667pt;}
.w1_c00456{width:780.666667pt;}
.x0_c00456{left:0.000000pt;}
.x5_c00456{left:29.466667pt;}
.x4_c00456{left:30.533333pt;}
.x2_c00456{left:31.466667pt;}
.x3_c00456{left:32.400000pt;}
.x1_c00456{left:33.866667pt;}
.x6_c00456{left:35.333333pt;}
.x7_c00456{left:36.800000pt;}
.x8_c00456{left:38.666667pt;}
.x9_c00456{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4d3b9c3b3062d27c5a48048.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_a95be9801495ad0a0cdb2ed6.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls0_c00457{letter-spacing:0.000000px;}
.ls1_c00457{letter-spacing:6.000000px;}
.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;}
}
.ws1_c00457{word-spacing:-28.413000px;}
.ws0_c00457{word-spacing:-20.244000px;}
.ws2_c00457{word-spacing:0.000000px;}
._19_c00457{margin-left:-34.944000px;}
._33_c00457{margin-left:-31.776000px;}
._1c_c00457{margin-left:-21.024000px;}
._2e_c00457{margin-left:-19.488000px;}
._20_c00457{margin-left:-17.568000px;}
._1d_c00457{margin-left:-14.784000px;}
._15_c00457{margin-left:-12.960000px;}
._1e_c00457{margin-left:-11.232000px;}
._1f_c00457{margin-left:-8.544000px;}
._2f_c00457{margin-left:-7.008000px;}
._21_c00457{margin-left:-5.952000px;}
._a_c00457{margin-left:-4.128000px;}
._c_c00457{margin-left:-2.016000px;}
._0_c00457{width:1.440000px;}
._4_c00457{width:3.360000px;}
._f_c00457{width:4.704000px;}
._3_c00457{width:5.952000px;}
._2_c00457{width:7.872000px;}
._14_c00457{width:8.928000px;}
._6_c00457{width:10.464000px;}
._e_c00457{width:12.192000px;}
._28_c00457{width:13.536000px;}
._d_c00457{width:14.784000px;}
._13_c00457{width:15.936000px;}
._11_c00457{width:17.280000px;}
._1a_c00457{width:18.912000px;}
._8_c00457{width:20.544000px;}
._12_c00457{width:21.792000px;}
._30_c00457{width:23.400000px;}
._10_c00457{width:24.672000px;}
._1b_c00457{width:26.016000px;}
._b_c00457{width:27.744000px;}
._7_c00457{width:28.800000px;}
._2c_c00457{width:30.240000px;}
._17_c00457{width:31.680000px;}
._32_c00457{width:33.024000px;}
._5_c00457{width:34.176000px;}
._2d_c00457{width:35.616000px;}
._29_c00457{width:37.056000px;}
._26_c00457{width:38.592000px;}
._9_c00457{width:40.224000px;}
._16_c00457{width:41.568000px;}
._23_c00457{width:42.624000px;}
._1_c00457{width:44.640000px;}
._35_c00457{width:46.464000px;}
._2a_c00457{width:47.616000px;}
._18_c00457{width:49.728000px;}
._31_c00457{width:51.264000px;}
._22_c00457{width:52.896000px;}
._34_c00457{width:54.048000px;}
._25_c00457{width:55.296000px;}
._24_c00457{width:58.080000px;}
._27_c00457{width:61.152000px;}
._2b_c00457{width:79.200000px;}
.fc2_c00457{color:transparent;}
.fc1_c00457{color:rgb(128,128,128);}
.fc0_c00457{color:rgb(0,0,0);}
.fs3_c00457{font-size:48.000000px;}
.fs1_c00457{font-size:84.000000px;}
.fs2_c00457{font-size:93.000000px;}
.fs0_c00457{font-size:96.000000px;}
.y0_c00457{bottom:0.000000px;}
.y26_c00457{bottom:3.105000px;}
.y25_c00457{bottom:7.228371px;}
.y24_c00457{bottom:98.265000px;}
.y23_c00457{bottom:131.265000px;}
.y22_c00457{bottom:165.765000px;}
.y21_c00457{bottom:200.565000px;}
.y20_c00457{bottom:234.915000px;}
.y1f_c00457{bottom:268.665000px;}
.y1e_c00457{bottom:303.165000px;}
.y1d_c00457{bottom:337.515000px;}
.y1c_c00457{bottom:370.965000px;}
.y1b_c00457{bottom:405.015000px;}
.y1a_c00457{bottom:438.765000px;}
.y19_c00457{bottom:472.815000px;}
.y18_c00457{bottom:506.565000px;}
.y17_c00457{bottom:540.465000px;}
.y16_c00457{bottom:574.215000px;}
.y15_c00457{bottom:607.215000px;}
.y14_c00457{bottom:642.015000px;}
.y13_c00457{bottom:674.415000px;}
.y12_c00457{bottom:708.465000px;}
.y11_c00457{bottom:741.615000px;}
.y10_c00457{bottom:775.365000px;}
.yf_c00457{bottom:808.065000px;}
.ye_c00457{bottom:842.115000px;}
.yd_c00457{bottom:875.565000px;}
.yc_c00457{bottom:909.015000px;}
.yb_c00457{bottom:942.615000px;}
.ya_c00457{bottom:975.765000px;}
.y9_c00457{bottom:1008.915000px;}
.y8_c00457{bottom:1041.915000px;}
.y7_c00457{bottom:1075.365000px;}
.y6_c00457{bottom:1108.665000px;}
.y5_c00457{bottom:1142.115000px;}
.y4_c00457{bottom:1175.565000px;}
.y3_c00457{bottom:1209.015000px;}
.y2_c00457{bottom:1242.315000px;}
.y1_c00457{bottom:1275.765000px;}
.h4_c00457{height:13.200074px;}
.h5_c00457{height:43.804688px;}
.h3_c00457{height:117.748535px;}
.h2_c00457{height:121.546875px;}
.h0_c00457{height:1354.875000px;}
.h1_c00457{height:1355.250000px;}
.w2_c00457{width:104.875500px;}
.w0_c00457{width:845.625000px;}
.w1_c00457{width:846.000000px;}
.x0_c00457{left:0.000000px;}
.x6_c00457{left:236.700000px;}
.x4_c00457{left:237.900000px;}
.x3_c00457{left:238.950000px;}
.x2_c00457{left:240.600000px;}
.x1_c00457{left:241.650000px;}
.x5_c00457{left:270.750000px;}
.x8_c00457{left:374.626740px;}
.x7_c00457{left:769.200000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ls1_c00457{letter-spacing:5.333333pt;}
.ws1_c00457{word-spacing:-25.256000pt;}
.ws0_c00457{word-spacing:-17.994667pt;}
.ws2_c00457{word-spacing:0.000000pt;}
._19_c00457{margin-left:-31.061333pt;}
._33_c00457{margin-left:-28.245333pt;}
._1c_c00457{margin-left:-18.688000pt;}
._2e_c00457{margin-left:-17.322667pt;}
._20_c00457{margin-left:-15.616000pt;}
._1d_c00457{margin-left:-13.141333pt;}
._15_c00457{margin-left:-11.520000pt;}
._1e_c00457{margin-left:-9.984000pt;}
._1f_c00457{margin-left:-7.594667pt;}
._2f_c00457{margin-left:-6.229333pt;}
._21_c00457{margin-left:-5.290667pt;}
._a_c00457{margin-left:-3.669333pt;}
._c_c00457{margin-left:-1.792000pt;}
._0_c00457{width:1.280000pt;}
._4_c00457{width:2.986667pt;}
._f_c00457{width:4.181333pt;}
._3_c00457{width:5.290667pt;}
._2_c00457{width:6.997333pt;}
._14_c00457{width:7.936000pt;}
._6_c00457{width:9.301333pt;}
._e_c00457{width:10.837333pt;}
._28_c00457{width:12.032000pt;}
._d_c00457{width:13.141333pt;}
._13_c00457{width:14.165333pt;}
._11_c00457{width:15.360000pt;}
._1a_c00457{width:16.810667pt;}
._8_c00457{width:18.261333pt;}
._12_c00457{width:19.370667pt;}
._30_c00457{width:20.800000pt;}
._10_c00457{width:21.930667pt;}
._1b_c00457{width:23.125333pt;}
._b_c00457{width:24.661333pt;}
._7_c00457{width:25.600000pt;}
._2c_c00457{width:26.880000pt;}
._17_c00457{width:28.160000pt;}
._32_c00457{width:29.354667pt;}
._5_c00457{width:30.378667pt;}
._2d_c00457{width:31.658667pt;}
._29_c00457{width:32.938667pt;}
._26_c00457{width:34.304000pt;}
._9_c00457{width:35.754667pt;}
._16_c00457{width:36.949333pt;}
._23_c00457{width:37.888000pt;}
._1_c00457{width:39.680000pt;}
._35_c00457{width:41.301333pt;}
._2a_c00457{width:42.325333pt;}
._18_c00457{width:44.202667pt;}
._31_c00457{width:45.568000pt;}
._22_c00457{width:47.018667pt;}
._34_c00457{width:48.042667pt;}
._25_c00457{width:49.152000pt;}
._24_c00457{width:51.626667pt;}
._27_c00457{width:54.357333pt;}
._2b_c00457{width:70.400000pt;}
.fs3_c00457{font-size:42.666667pt;}
.fs1_c00457{font-size:74.666667pt;}
.fs2_c00457{font-size:82.666667pt;}
.fs0_c00457{font-size:85.333333pt;}
.y0_c00457{bottom:0.000000pt;}
.y26_c00457{bottom:2.760000pt;}
.y25_c00457{bottom:6.425219pt;}
.y24_c00457{bottom:87.346667pt;}
.y23_c00457{bottom:116.680000pt;}
.y22_c00457{bottom:147.346667pt;}
.y21_c00457{bottom:178.280000pt;}
.y20_c00457{bottom:208.813333pt;}
.y1f_c00457{bottom:238.813333pt;}
.y1e_c00457{bottom:269.480000pt;}
.y1d_c00457{bottom:300.013333pt;}
.y1c_c00457{bottom:329.746667pt;}
.y1b_c00457{bottom:360.013333pt;}
.y1a_c00457{bottom:390.013333pt;}
.y19_c00457{bottom:420.280000pt;}
.y18_c00457{bottom:450.280000pt;}
.y17_c00457{bottom:480.413333pt;}
.y16_c00457{bottom:510.413333pt;}
.y15_c00457{bottom:539.746667pt;}
.y14_c00457{bottom:570.680000pt;}
.y13_c00457{bottom:599.480000pt;}
.y12_c00457{bottom:629.746667pt;}
.y11_c00457{bottom:659.213333pt;}
.y10_c00457{bottom:689.213333pt;}
.yf_c00457{bottom:718.280000pt;}
.ye_c00457{bottom:748.546667pt;}
.yd_c00457{bottom:778.280000pt;}
.yc_c00457{bottom:808.013333pt;}
.yb_c00457{bottom:837.880000pt;}
.ya_c00457{bottom:867.346667pt;}
.y9_c00457{bottom:896.813333pt;}
.y8_c00457{bottom:926.146667pt;}
.y7_c00457{bottom:955.880000pt;}
.y6_c00457{bottom:985.480000pt;}
.y5_c00457{bottom:1015.213333pt;}
.y4_c00457{bottom:1044.946667pt;}
.y3_c00457{bottom:1074.680000pt;}
.y2_c00457{bottom:1104.280000pt;}
.y1_c00457{bottom:1134.013333pt;}
.h4_c00457{height:11.733399pt;}
.h5_c00457{height:38.937500pt;}
.h3_c00457{height:104.665365pt;}
.h2_c00457{height:108.041667pt;}
.h0_c00457{height:1204.333333pt;}
.h1_c00457{height:1204.666667pt;}
.w2_c00457{width:93.222667pt;}
.w0_c00457{width:751.666667pt;}
.w1_c00457{width:752.000000pt;}
.x0_c00457{left:0.000000pt;}
.x6_c00457{left:210.400000pt;}
.x4_c00457{left:211.466667pt;}
.x3_c00457{left:212.400000pt;}
.x2_c00457{left:213.866667pt;}
.x1_c00457{left:214.800000pt;}
.x5_c00457{left:240.666667pt;}
.x8_c00457{left:333.001546pt;}
.x7_c00457{left:683.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd34373be5d10cf1790a4bf2.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_c695f8546a5653730999683e.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_ae1baee7bb272a70ec15bc9d.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_fd923429f2f536cbc8cee6d1.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00458;src:url('chunks/assets/font_a5f701dcdb240ce234bf455c.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00458;src:url('chunks/assets/font_941ff422ef8cc203da9b14ab.woff2')format("woff");}.ff6_c00458{font-family:ff6_c00458;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00458;src:url('chunks/assets/font_a6ab5e0ee80bb04e6370260a.woff2')format("woff");}.ff7_c00458{font-family:ff7_c00458;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00458;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c00458{font-family:ff8_c00458;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00458{vertical-align:-127.200000px;}
.v0_c00458{vertical-align:0.000000px;}
.ls6_c00458{letter-spacing:-3.000000px;}
.ls4_c00458{letter-spacing:0.000000px;}
.ls1_c00458{letter-spacing:0.540000px;}
.ls0_c00458{letter-spacing:0.600000px;}
.ls3_c00458{letter-spacing:3.000000px;}
.ls5_c00458{letter-spacing:6.000000px;}
.ls7_c00458{letter-spacing:9.000000px;}
.ls2_c00458{letter-spacing:12.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00458{word-spacing:-61.044000px;}
.ws2_c00458{word-spacing:-51.000000px;}
.ws7_c00458{word-spacing:-29.967000px;}
.ws1_c00458{word-spacing:-23.136000px;}
.ws0_c00458{word-spacing:-20.244000px;}
.ws6_c00458{word-spacing:-17.967000px;}
.ws3_c00458{word-spacing:-1.008000px;}
.ws8_c00458{word-spacing:0.000000px;}
.ws5_c00458{word-spacing:2.016000px;}
._1a_c00458{margin-left:-74.136000px;}
._40_c00458{margin-left:-55.968000px;}
._2a_c00458{margin-left:-30.924000px;}
._29_c00458{margin-left:-27.588000px;}
._24_c00458{margin-left:-25.200000px;}
._34_c00458{margin-left:-24.192000px;}
._26_c00458{margin-left:-20.184000px;}
._4_c00458{margin-left:-16.992000px;}
._3d_c00458{margin-left:-15.360000px;}
._5_c00458{margin-left:-13.536000px;}
._30_c00458{margin-left:-11.616000px;}
._2f_c00458{margin-left:-9.624000px;}
._0_c00458{margin-left:-7.968000px;}
._27_c00458{margin-left:-6.528000px;}
._3_c00458{margin-left:-4.992000px;}
._1_c00458{margin-left:-3.456000px;}
._b_c00458{margin-left:-2.376000px;}
._c_c00458{margin-left:-1.248000px;}
._15_c00458{width:1.008000px;}
._9_c00458{width:2.520000px;}
._7_c00458{width:4.368000px;}
._8_c00458{width:5.880000px;}
._a_c00458{width:7.296000px;}
._22_c00458{width:8.544000px;}
._25_c00458{width:9.636000px;}
._17_c00458{width:10.752000px;}
._18_c00458{width:12.348000px;}
._38_c00458{width:13.464000px;}
._2_c00458{width:14.688000px;}
._2b_c00458{width:16.272000px;}
._21_c00458{width:18.024000px;}
._1c_c00458{width:19.248000px;}
._6_c00458{width:20.976000px;}
._19_c00458{width:22.104000px;}
._20_c00458{width:24.552000px;}
._2d_c00458{width:25.968000px;}
._13_c00458{width:28.032000px;}
._1e_c00458{width:29.760000px;}
._23_c00458{width:31.560000px;}
._31_c00458{width:32.952000px;}
._e_c00458{width:34.080000px;}
._1f_c00458{width:36.000000px;}
._d_c00458{width:37.920000px;}
._2c_c00458{width:39.264000px;}
._12_c00458{width:40.464000px;}
._1d_c00458{width:42.864000px;}
._10_c00458{width:45.000000px;}
._11_c00458{width:48.456000px;}
._f_c00458{width:52.152000px;}
._14_c00458{width:53.952000px;}
._28_c00458{width:56.448000px;}
._16_c00458{width:58.248000px;}
._3f_c00458{width:64.839000px;}
._36_c00458{width:67.968000px;}
._3a_c00458{width:69.300000px;}
._39_c00458{width:81.420000px;}
._35_c00458{width:114.000000px;}
._1b_c00458{width:126.912000px;}
._32_c00458{width:146.712000px;}
._3c_c00458{width:156.012000px;}
._37_c00458{width:242.592000px;}
._2e_c00458{width:461.688000px;}
._33_c00458{width:468.936000px;}
._3b_c00458{width:954.228000px;}
._3e_c00458{width:1286.064000px;}
.fc2_c00458{color:transparent;}
.fc1_c00458{color:rgb(128,128,128);}
.fc0_c00458{color:rgb(0,0,0);}
.fs6_c00458{font-size:30.000000px;}
.fs5_c00458{font-size:48.000000px;}
.fs7_c00458{font-size:60.000000px;}
.fs8_c00458{font-size:75.000000px;}
.fs1_c00458{font-size:84.000000px;}
.fs4_c00458{font-size:87.000000px;}
.fs0_c00458{font-size:96.000000px;}
.fs3_c00458{font-size:99.000000px;}
.fs2_c00458{font-size:102.000000px;}
.y0_c00458{bottom:0.000000px;}
.y27_c00458{bottom:3.105000px;}
.y26_c00458{bottom:7.228371px;}
.y25_c00458{bottom:77.265000px;}
.y21_c00458{bottom:118.815000px;}
.y24_c00458{bottom:147.165000px;}
.y20_c00458{bottom:176.265000px;}
.y23_c00458{bottom:217.065000px;}
.y22_c00458{bottom:249.465000px;}
.y1d_c00458{bottom:369.915000px;}
.y1c_c00458{bottom:381.165000px;}
.y1b_c00458{bottom:416.865000px;}
.y1a_c00458{bottom:451.215000px;}
.y19_c00458{bottom:483.615000px;}
.y18_c00458{bottom:518.115000px;}
.y17_c00458{bottom:551.565000px;}
.y16_c00458{bottom:585.615000px;}
.y15_c00458{bottom:619.065000px;}
.y14_c00458{bottom:652.365000px;}
.y1e_c00458{bottom:659.265000px;}
.y13_c00458{bottom:684.765000px;}
.y12_c00458{bottom:718.965000px;}
.y11_c00458{bottom:752.265000px;}
.y1f_c00458{bottom:759.765000px;}
.y10_c00458{bottom:785.415000px;}
.yf_c00458{bottom:818.115000px;}
.ye_c00458{bottom:851.565000px;}
.yd_c00458{bottom:885.015000px;}
.yc_c00458{bottom:918.465000px;}
.yb_c00458{bottom:951.465000px;}
.ya_c00458{bottom:985.215000px;}
.y9_c00458{bottom:1018.215000px;}
.y8_c00458{bottom:1051.365000px;}
.y7_c00458{bottom:1085.115000px;}
.y2_c00458{bottom:1096.515000px;}
.y6_c00458{bottom:1117.815000px;}
.y1_c00458{bottom:1158.615000px;}
.y5_c00458{bottom:1183.065000px;}
.y4_c00458{bottom:1217.115000px;}
.y3_c00458{bottom:1249.815000px;}
.h7_c00458{height:13.200074px;}
.h5_c00458{height:37.983398px;}
.h3_c00458{height:41.348438px;}
.h8_c00458{height:43.804688px;}
.h6_c00458{height:78.600000px;}
.h4_c00458{height:110.151855px;}
.h2_c00458{height:121.546875px;}
.h1_c00458{height:1349.250000px;}
.h0_c00458{height:1349.475000px;}
.w2_c00458{width:104.875500px;}
.w1_c00458{width:855.750000px;}
.w0_c00458{width:855.900000px;}
.x0_c00458{left:0.000000px;}
.x8_c00458{left:31.650000px;}
.x9_c00458{left:32.700000px;}
.x7_c00458{left:34.350000px;}
.x6_c00458{left:35.400000px;}
.x5_c00458{left:36.450000px;}
.x4_c00458{left:38.700000px;}
.x2_c00458{left:40.200000px;}
.x3_c00458{left:41.400000px;}
.xa_c00458{left:42.450000px;}
.xb_c00458{left:81.900000px;}
.xd_c00458{left:111.600000px;}
.x10_c00458{left:272.700000px;}
.x12_c00458{left:379.764221px;}
.xe_c00458{left:446.850000px;}
.xf_c00458{left:448.500000px;}
.x11_c00458{left:549.450000px;}
.x1_c00458{left:624.600000px;}
.xc_c00458{left:800.250000px;}
@media print{
.v1_c00458{vertical-align:-113.066667pt;}
.v0_c00458{vertical-align:0.000000pt;}
.ls6_c00458{letter-spacing:-2.666667pt;}
.ls4_c00458{letter-spacing:0.000000pt;}
.ls1_c00458{letter-spacing:0.480000pt;}
.ls0_c00458{letter-spacing:0.533333pt;}
.ls3_c00458{letter-spacing:2.666667pt;}
.ls5_c00458{letter-spacing:5.333333pt;}
.ls7_c00458{letter-spacing:8.000000pt;}
.ls2_c00458{letter-spacing:10.666667pt;}
.ws4_c00458{word-spacing:-54.261333pt;}
.ws2_c00458{word-spacing:-45.333333pt;}
.ws7_c00458{word-spacing:-26.637333pt;}
.ws1_c00458{word-spacing:-20.565333pt;}
.ws0_c00458{word-spacing:-17.994667pt;}
.ws6_c00458{word-spacing:-15.970667pt;}
.ws3_c00458{word-spacing:-0.896000pt;}
.ws8_c00458{word-spacing:0.000000pt;}
.ws5_c00458{word-spacing:1.792000pt;}
._1a_c00458{margin-left:-65.898667pt;}
._40_c00458{margin-left:-49.749333pt;}
._2a_c00458{margin-left:-27.488000pt;}
._29_c00458{margin-left:-24.522667pt;}
._24_c00458{margin-left:-22.400000pt;}
._34_c00458{margin-left:-21.504000pt;}
._26_c00458{margin-left:-17.941333pt;}
._4_c00458{margin-left:-15.104000pt;}
._3d_c00458{margin-left:-13.653333pt;}
._5_c00458{margin-left:-12.032000pt;}
._30_c00458{margin-left:-10.325333pt;}
._2f_c00458{margin-left:-8.554667pt;}
._0_c00458{margin-left:-7.082667pt;}
._27_c00458{margin-left:-5.802667pt;}
._3_c00458{margin-left:-4.437333pt;}
._1_c00458{margin-left:-3.072000pt;}
._b_c00458{margin-left:-2.112000pt;}
._c_c00458{margin-left:-1.109333pt;}
._15_c00458{width:0.896000pt;}
._9_c00458{width:2.240000pt;}
._7_c00458{width:3.882667pt;}
._8_c00458{width:5.226667pt;}
._a_c00458{width:6.485333pt;}
._22_c00458{width:7.594667pt;}
._25_c00458{width:8.565333pt;}
._17_c00458{width:9.557333pt;}
._18_c00458{width:10.976000pt;}
._38_c00458{width:11.968000pt;}
._2_c00458{width:13.056000pt;}
._2b_c00458{width:14.464000pt;}
._21_c00458{width:16.021333pt;}
._1c_c00458{width:17.109333pt;}
._6_c00458{width:18.645333pt;}
._19_c00458{width:19.648000pt;}
._20_c00458{width:21.824000pt;}
._2d_c00458{width:23.082667pt;}
._13_c00458{width:24.917333pt;}
._1e_c00458{width:26.453333pt;}
._23_c00458{width:28.053333pt;}
._31_c00458{width:29.290667pt;}
._e_c00458{width:30.293333pt;}
._1f_c00458{width:32.000000pt;}
._d_c00458{width:33.706667pt;}
._2c_c00458{width:34.901333pt;}
._12_c00458{width:35.968000pt;}
._1d_c00458{width:38.101333pt;}
._10_c00458{width:40.000000pt;}
._11_c00458{width:43.072000pt;}
._f_c00458{width:46.357333pt;}
._14_c00458{width:47.957333pt;}
._28_c00458{width:50.176000pt;}
._16_c00458{width:51.776000pt;}
._3f_c00458{width:57.634667pt;}
._36_c00458{width:60.416000pt;}
._3a_c00458{width:61.600000pt;}
._39_c00458{width:72.373333pt;}
._35_c00458{width:101.333333pt;}
._1b_c00458{width:112.810667pt;}
._32_c00458{width:130.410667pt;}
._3c_c00458{width:138.677333pt;}
._37_c00458{width:215.637333pt;}
._2e_c00458{width:410.389333pt;}
._33_c00458{width:416.832000pt;}
._3b_c00458{width:848.202667pt;}
._3e_c00458{width:1143.168000pt;}
.fs6_c00458{font-size:26.666667pt;}
.fs5_c00458{font-size:42.666667pt;}
.fs7_c00458{font-size:53.333333pt;}
.fs8_c00458{font-size:66.666667pt;}
.fs1_c00458{font-size:74.666667pt;}
.fs4_c00458{font-size:77.333333pt;}
.fs0_c00458{font-size:85.333333pt;}
.fs3_c00458{font-size:88.000000pt;}
.fs2_c00458{font-size:90.666667pt;}
.y0_c00458{bottom:0.000000pt;}
.y27_c00458{bottom:2.760000pt;}
.y26_c00458{bottom:6.425219pt;}
.y25_c00458{bottom:68.680000pt;}
.y21_c00458{bottom:105.613333pt;}
.y24_c00458{bottom:130.813333pt;}
.y20_c00458{bottom:156.680000pt;}
.y23_c00458{bottom:192.946667pt;}
.y22_c00458{bottom:221.746667pt;}
.y1d_c00458{bottom:328.813333pt;}
.y1c_c00458{bottom:338.813333pt;}
.y1b_c00458{bottom:370.546667pt;}
.y1a_c00458{bottom:401.080000pt;}
.y19_c00458{bottom:429.880000pt;}
.y18_c00458{bottom:460.546667pt;}
.y17_c00458{bottom:490.280000pt;}
.y16_c00458{bottom:520.546667pt;}
.y15_c00458{bottom:550.280000pt;}
.y14_c00458{bottom:579.880000pt;}
.y1e_c00458{bottom:586.013333pt;}
.y13_c00458{bottom:608.680000pt;}
.y12_c00458{bottom:639.080000pt;}
.y11_c00458{bottom:668.680000pt;}
.y1f_c00458{bottom:675.346667pt;}
.y10_c00458{bottom:698.146667pt;}
.yf_c00458{bottom:727.213333pt;}
.ye_c00458{bottom:756.946667pt;}
.yd_c00458{bottom:786.680000pt;}
.yc_c00458{bottom:816.413333pt;}
.yb_c00458{bottom:845.746667pt;}
.ya_c00458{bottom:875.746667pt;}
.y9_c00458{bottom:905.080000pt;}
.y8_c00458{bottom:934.546667pt;}
.y7_c00458{bottom:964.546667pt;}
.y2_c00458{bottom:974.680000pt;}
.y6_c00458{bottom:993.613333pt;}
.y1_c00458{bottom:1029.880000pt;}
.y5_c00458{bottom:1051.613333pt;}
.y4_c00458{bottom:1081.880000pt;}
.y3_c00458{bottom:1110.946667pt;}
.h7_c00458{height:11.733399pt;}
.h5_c00458{height:33.763021pt;}
.h3_c00458{height:36.754167pt;}
.h8_c00458{height:38.937500pt;}
.h6_c00458{height:69.866667pt;}
.h4_c00458{height:97.912760pt;}
.h2_c00458{height:108.041667pt;}
.h1_c00458{height:1199.333333pt;}
.h0_c00458{height:1199.533333pt;}
.w2_c00458{width:93.222667pt;}
.w1_c00458{width:760.666667pt;}
.w0_c00458{width:760.800000pt;}
.x0_c00458{left:0.000000pt;}
.x8_c00458{left:28.133333pt;}
.x9_c00458{left:29.066667pt;}
.x7_c00458{left:30.533333pt;}
.x6_c00458{left:31.466667pt;}
.x5_c00458{left:32.400000pt;}
.x4_c00458{left:34.400000pt;}
.x2_c00458{left:35.733333pt;}
.x3_c00458{left:36.800000pt;}
.xa_c00458{left:37.733333pt;}
.xb_c00458{left:72.800000pt;}
.xd_c00458{left:99.200000pt;}
.x10_c00458{left:242.400000pt;}
.x12_c00458{left:337.568197pt;}
.xe_c00458{left:397.200000pt;}
.xf_c00458{left:398.666667pt;}
.x11_c00458{left:488.400000pt;}
.x1_c00458{left:555.200000pt;}
.xc_c00458{left:711.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_846faac9fbf593ff9aa296de.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_df3a25da03745e85bdc54a8c.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_1c67edd4447016bb0fee2508.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.ls1_c00459{letter-spacing:9.000000px;}
.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;}
}
.ws1_c00459{word-spacing:-23.136000px;}
.ws2_c00459{word-spacing:-20.244000px;}
.ws0_c00459{word-spacing:-18.798000px;}
.ws3_c00459{word-spacing:0.000000px;}
._2c_c00459{margin-left:-79.776000px;}
._41_c00459{margin-left:-43.554000px;}
._1e_c00459{margin-left:-29.058000px;}
._39_c00459{margin-left:-27.708000px;}
._1a_c00459{margin-left:-25.884000px;}
._29_c00459{margin-left:-19.458000px;}
._3f_c00459{margin-left:-17.760000px;}
._28_c00459{margin-left:-16.128000px;}
._38_c00459{margin-left:-14.358000px;}
._1f_c00459{margin-left:-12.963000px;}
._10_c00459{margin-left:-11.778000px;}
._15_c00459{margin-left:-10.494000px;}
._25_c00459{margin-left:-9.351000px;}
._11_c00459{margin-left:-8.112000px;}
._8_c00459{margin-left:-6.603000px;}
._b_c00459{margin-left:-5.358000px;}
._a_c00459{margin-left:-4.212000px;}
._3_c00459{margin-left:-2.418000px;}
._2_c00459{margin-left:-1.170000px;}
._d_c00459{width:1.530000px;}
._9_c00459{width:3.312000px;}
._7_c00459{width:4.836000px;}
._19_c00459{width:5.928000px;}
._6_c00459{width:7.566000px;}
._32_c00459{width:8.640000px;}
._17_c00459{width:9.672000px;}
._0_c00459{width:11.700000px;}
._33_c00459{width:13.074000px;}
._1c_c00459{width:14.118000px;}
._12_c00459{width:15.210000px;}
._18_c00459{width:16.812000px;}
._22_c00459{width:17.874000px;}
._23_c00459{width:19.254000px;}
._34_c00459{width:20.898000px;}
._1b_c00459{width:22.830000px;}
._31_c00459{width:24.702000px;}
._3b_c00459{width:25.980000px;}
._35_c00459{width:28.236000px;}
._26_c00459{width:29.952000px;}
._e_c00459{width:31.398000px;}
._44_c00459{width:32.604000px;}
._14_c00459{width:34.242000px;}
._36_c00459{width:36.324000px;}
._13_c00459{width:37.986000px;}
._4_c00459{width:40.248000px;}
._45_c00459{width:41.808000px;}
._30_c00459{width:43.230000px;}
._48_c00459{width:44.562000px;}
._20_c00459{width:45.942000px;}
._5_c00459{width:47.034000px;}
._2a_c00459{width:49.086000px;}
._47_c00459{width:50.088000px;}
._2d_c00459{width:51.264000px;}
._2f_c00459{width:53.184000px;}
._f_c00459{width:56.238000px;}
._1_c00459{width:58.266000px;}
._43_c00459{width:59.964000px;}
._1d_c00459{width:61.539000px;}
._42_c00459{width:63.636000px;}
._3d_c00459{width:64.806000px;}
._49_c00459{width:66.444000px;}
._c_c00459{width:68.562000px;}
._46_c00459{width:70.677000px;}
._3a_c00459{width:72.822000px;}
._21_c00459{width:75.645000px;}
._16_c00459{width:77.922000px;}
._3c_c00459{width:81.912000px;}
._4a_c00459{width:88.212000px;}
._3e_c00459{width:97.101000px;}
._24_c00459{width:98.208000px;}
._2e_c00459{width:140.166000px;}
._40_c00459{width:193.728000px;}
._4b_c00459{width:279.606000px;}
._37_c00459{width:363.858000px;}
._27_c00459{width:417.984000px;}
._2b_c00459{width:528.513000px;}
.fc2_c00459{color:transparent;}
.fc1_c00459{color:rgb(128,128,128);}
.fc0_c00459{color:rgb(0,0,0);}
.fs4_c00459{font-size:30.000000px;}
.fs6_c00459{font-size:48.000000px;}
.fs0_c00459{font-size:78.000000px;}
.fs5_c00459{font-size:84.000000px;}
.fs1_c00459{font-size:87.000000px;}
.fs2_c00459{font-size:96.000000px;}
.fs3_c00459{font-size:144.000000px;}
.y0_c00459{bottom:0.000000px;}
.y2e_c00459{bottom:3.105000px;}
.y2d_c00459{bottom:7.228357px;}
.y2c_c00459{bottom:117.480000px;}
.y2b_c00459{bottom:151.530000px;}
.y2a_c00459{bottom:186.930000px;}
.y29_c00459{bottom:220.680000px;}
.y28_c00459{bottom:254.580000px;}
.y27_c00459{bottom:288.930000px;}
.y26_c00459{bottom:322.980000px;}
.y25_c00459{bottom:356.730000px;}
.y24_c00459{bottom:390.480000px;}
.y23_c00459{bottom:424.530000px;}
.y22_c00459{bottom:458.280000px;}
.y21_c00459{bottom:492.030000px;}
.y20_c00459{bottom:525.780000px;}
.y1f_c00459{bottom:559.530000px;}
.y1e_c00459{bottom:592.680000px;}
.y1d_c00459{bottom:626.130000px;}
.y1c_c00459{bottom:659.430000px;}
.y1b_c00459{bottom:693.480000px;}
.y1a_c00459{bottom:727.080000px;}
.y19_c00459{bottom:760.680000px;}
.y18_c00459{bottom:793.830000px;}
.y17_c00459{bottom:827.580000px;}
.y16_c00459{bottom:861.030000px;}
.y15_c00459{bottom:894.780000px;}
.y9_c00459{bottom:927.480000px;}
.y14_c00459{bottom:928.080000px;}
.y8_c00459{bottom:958.830000px;}
.y13_c00459{bottom:961.830000px;}
.y7_c00459{bottom:987.930000px;}
.y12_c00459{bottom:994.380000px;}
.y6_c00459{bottom:1017.180000px;}
.y11_c00459{bottom:1027.380000px;}
.y5_c00459{bottom:1047.330000px;}
.y10_c00459{bottom:1060.380000px;}
.y4_c00459{bottom:1073.280000px;}
.yf_c00459{bottom:1092.930000px;}
.y3_c00459{bottom:1104.930000px;}
.ye_c00459{bottom:1126.680000px;}
.y2_c00459{bottom:1134.330000px;}
.yd_c00459{bottom:1158.930000px;}
.y1_c00459{bottom:1162.680000px;}
.yc_c00459{bottom:1191.780000px;}
.yb_c00459{bottom:1232.580000px;}
.ya_c00459{bottom:1283.280000px;}
.h8_c00459{height:13.200074px;}
.h6_c00459{height:37.983398px;}
.h9_c00459{height:43.804688px;}
.h7_c00459{height:98.314453px;}
.h2_c00459{height:98.756836px;}
.h3_c00459{height:110.151855px;}
.h4_c00459{height:121.546875px;}
.h5_c00459{height:182.320312px;}
.h0_c00459{height:1382.700000px;}
.h1_c00459{height:1383.000000px;}
.w2_c00459{width:104.875500px;}
.w0_c00459{width:863.175000px;}
.w1_c00459{width:863.250000px;}
.x0_c00459{left:0.000000px;}
.x4_c00459{left:36.750000px;}
.x2_c00459{left:38.850000px;}
.x6_c00459{left:40.050000px;}
.x1_c00459{left:67.500000px;}
.x3_c00459{left:72.300000px;}
.x5_c00459{left:107.100000px;}
.xf_c00459{left:253.500000px;}
.xe_c00459{left:255.150000px;}
.xd_c00459{left:256.200000px;}
.xc_c00459{left:257.400000px;}
.xa_c00459{left:265.950000px;}
.x7_c00459{left:288.900000px;}
.x10_c00459{left:306.450000px;}
.x12_c00459{left:383.401749px;}
.x8_c00459{left:407.700000px;}
.xb_c00459{left:442.050000px;}
.x9_c00459{left:574.350000px;}
.x11_c00459{left:796.200000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ls1_c00459{letter-spacing:8.000000pt;}
.ws1_c00459{word-spacing:-20.565333pt;}
.ws2_c00459{word-spacing:-17.994667pt;}
.ws0_c00459{word-spacing:-16.709333pt;}
.ws3_c00459{word-spacing:0.000000pt;}
._2c_c00459{margin-left:-70.912000pt;}
._41_c00459{margin-left:-38.714667pt;}
._1e_c00459{margin-left:-25.829333pt;}
._39_c00459{margin-left:-24.629333pt;}
._1a_c00459{margin-left:-23.008000pt;}
._29_c00459{margin-left:-17.296000pt;}
._3f_c00459{margin-left:-15.786667pt;}
._28_c00459{margin-left:-14.336000pt;}
._38_c00459{margin-left:-12.762667pt;}
._1f_c00459{margin-left:-11.522667pt;}
._10_c00459{margin-left:-10.469333pt;}
._15_c00459{margin-left:-9.328000pt;}
._25_c00459{margin-left:-8.312000pt;}
._11_c00459{margin-left:-7.210667pt;}
._8_c00459{margin-left:-5.869333pt;}
._b_c00459{margin-left:-4.762667pt;}
._a_c00459{margin-left:-3.744000pt;}
._3_c00459{margin-left:-2.149333pt;}
._2_c00459{margin-left:-1.040000pt;}
._d_c00459{width:1.360000pt;}
._9_c00459{width:2.944000pt;}
._7_c00459{width:4.298667pt;}
._19_c00459{width:5.269333pt;}
._6_c00459{width:6.725333pt;}
._32_c00459{width:7.680000pt;}
._17_c00459{width:8.597333pt;}
._0_c00459{width:10.400000pt;}
._33_c00459{width:11.621333pt;}
._1c_c00459{width:12.549333pt;}
._12_c00459{width:13.520000pt;}
._18_c00459{width:14.944000pt;}
._22_c00459{width:15.888000pt;}
._23_c00459{width:17.114667pt;}
._34_c00459{width:18.576000pt;}
._1b_c00459{width:20.293333pt;}
._31_c00459{width:21.957333pt;}
._3b_c00459{width:23.093333pt;}
._35_c00459{width:25.098667pt;}
._26_c00459{width:26.624000pt;}
._e_c00459{width:27.909333pt;}
._44_c00459{width:28.981333pt;}
._14_c00459{width:30.437333pt;}
._36_c00459{width:32.288000pt;}
._13_c00459{width:33.765333pt;}
._4_c00459{width:35.776000pt;}
._45_c00459{width:37.162667pt;}
._30_c00459{width:38.426667pt;}
._48_c00459{width:39.610667pt;}
._20_c00459{width:40.837333pt;}
._5_c00459{width:41.808000pt;}
._2a_c00459{width:43.632000pt;}
._47_c00459{width:44.522667pt;}
._2d_c00459{width:45.568000pt;}
._2f_c00459{width:47.274667pt;}
._f_c00459{width:49.989333pt;}
._1_c00459{width:51.792000pt;}
._43_c00459{width:53.301333pt;}
._1d_c00459{width:54.701333pt;}
._42_c00459{width:56.565333pt;}
._3d_c00459{width:57.605333pt;}
._49_c00459{width:59.061333pt;}
._c_c00459{width:60.944000pt;}
._46_c00459{width:62.824000pt;}
._3a_c00459{width:64.730667pt;}
._21_c00459{width:67.240000pt;}
._16_c00459{width:69.264000pt;}
._3c_c00459{width:72.810667pt;}
._4a_c00459{width:78.410667pt;}
._3e_c00459{width:86.312000pt;}
._24_c00459{width:87.296000pt;}
._2e_c00459{width:124.592000pt;}
._40_c00459{width:172.202667pt;}
._4b_c00459{width:248.538667pt;}
._37_c00459{width:323.429333pt;}
._27_c00459{width:371.541333pt;}
._2b_c00459{width:469.789333pt;}
.fs4_c00459{font-size:26.666667pt;}
.fs6_c00459{font-size:42.666667pt;}
.fs0_c00459{font-size:69.333333pt;}
.fs5_c00459{font-size:74.666667pt;}
.fs1_c00459{font-size:77.333333pt;}
.fs2_c00459{font-size:85.333333pt;}
.fs3_c00459{font-size:128.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y2e_c00459{bottom:2.760000pt;}
.y2d_c00459{bottom:6.425206pt;}
.y2c_c00459{bottom:104.426667pt;}
.y2b_c00459{bottom:134.693333pt;}
.y2a_c00459{bottom:166.160000pt;}
.y29_c00459{bottom:196.160000pt;}
.y28_c00459{bottom:226.293333pt;}
.y27_c00459{bottom:256.826667pt;}
.y26_c00459{bottom:287.093333pt;}
.y25_c00459{bottom:317.093333pt;}
.y24_c00459{bottom:347.093333pt;}
.y23_c00459{bottom:377.360000pt;}
.y22_c00459{bottom:407.360000pt;}
.y21_c00459{bottom:437.360000pt;}
.y20_c00459{bottom:467.360000pt;}
.y1f_c00459{bottom:497.360000pt;}
.y1e_c00459{bottom:526.826667pt;}
.y1d_c00459{bottom:556.560000pt;}
.y1c_c00459{bottom:586.160000pt;}
.y1b_c00459{bottom:616.426667pt;}
.y1a_c00459{bottom:646.293333pt;}
.y19_c00459{bottom:676.160000pt;}
.y18_c00459{bottom:705.626667pt;}
.y17_c00459{bottom:735.626667pt;}
.y16_c00459{bottom:765.360000pt;}
.y15_c00459{bottom:795.360000pt;}
.y9_c00459{bottom:824.426667pt;}
.y14_c00459{bottom:824.960000pt;}
.y8_c00459{bottom:852.293333pt;}
.y13_c00459{bottom:854.960000pt;}
.y7_c00459{bottom:878.160000pt;}
.y12_c00459{bottom:883.893333pt;}
.y6_c00459{bottom:904.160000pt;}
.y11_c00459{bottom:913.226667pt;}
.y5_c00459{bottom:930.960000pt;}
.y10_c00459{bottom:942.560000pt;}
.y4_c00459{bottom:954.026667pt;}
.yf_c00459{bottom:971.493333pt;}
.y3_c00459{bottom:982.160000pt;}
.ye_c00459{bottom:1001.493333pt;}
.y2_c00459{bottom:1008.293333pt;}
.yd_c00459{bottom:1030.160000pt;}
.y1_c00459{bottom:1033.493333pt;}
.yc_c00459{bottom:1059.360000pt;}
.yb_c00459{bottom:1095.626667pt;}
.ya_c00459{bottom:1140.693333pt;}
.h8_c00459{height:11.733399pt;}
.h6_c00459{height:33.763021pt;}
.h9_c00459{height:38.937500pt;}
.h7_c00459{height:87.390625pt;}
.h2_c00459{height:87.783854pt;}
.h3_c00459{height:97.912760pt;}
.h4_c00459{height:108.041667pt;}
.h5_c00459{height:162.062500pt;}
.h0_c00459{height:1229.066667pt;}
.h1_c00459{height:1229.333333pt;}
.w2_c00459{width:93.222667pt;}
.w0_c00459{width:767.266667pt;}
.w1_c00459{width:767.333333pt;}
.x0_c00459{left:0.000000pt;}
.x4_c00459{left:32.666667pt;}
.x2_c00459{left:34.533333pt;}
.x6_c00459{left:35.600000pt;}
.x1_c00459{left:60.000000pt;}
.x3_c00459{left:64.266667pt;}
.x5_c00459{left:95.200000pt;}
.xf_c00459{left:225.333333pt;}
.xe_c00459{left:226.800000pt;}
.xd_c00459{left:227.733333pt;}
.xc_c00459{left:228.800000pt;}
.xa_c00459{left:236.400000pt;}
.x7_c00459{left:256.800000pt;}
.x10_c00459{left:272.400000pt;}
.x12_c00459{left:340.801554pt;}
.x8_c00459{left:362.400000pt;}
.xb_c00459{left:392.933333pt;}
.x9_c00459{left:510.533333pt;}
.x11_c00459{left:707.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a363d3fcd53a5bddf5b9a2a6.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_92b78b45d9eb8dc9d6db0577.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_de17be3e792e48dc6c30af96.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_557f6b45c34bef44739d0743.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;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_c00460;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls8_c00460{letter-spacing:-3.000000px;}
.ls6_c00460{letter-spacing:0.000000px;}
.ls1_c00460{letter-spacing:4.500000px;}
.ls7_c00460{letter-spacing:6.000000px;}
.ls2_c00460{letter-spacing:7.800000px;}
.ls5_c00460{letter-spacing:9.000000px;}
.ls4_c00460{letter-spacing:9.600000px;}
.ls0_c00460{letter-spacing:13.500000px;}
.ls3_c00460{letter-spacing:17.652000px;}
.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;}
}
.ws1_c00460{word-spacing:-61.044000px;}
.ws3_c00460{word-spacing:-51.000000px;}
.ws0_c00460{word-spacing:-29.244000px;}
.ws4_c00460{word-spacing:-23.136000px;}
.ws2_c00460{word-spacing:-20.244000px;}
.ws5_c00460{word-spacing:0.000000px;}
._2e_c00460{margin-left:-86.391000px;}
._2b_c00460{margin-left:-83.085000px;}
._2c_c00460{margin-left:-43.500000px;}
._12_c00460{margin-left:-31.680000px;}
._3a_c00460{margin-left:-30.588000px;}
._41_c00460{margin-left:-28.956000px;}
._23_c00460{margin-left:-27.168000px;}
._13_c00460{margin-left:-25.500000px;}
._29_c00460{margin-left:-19.944000px;}
._47_c00460{margin-left:-18.864000px;}
._1a_c00460{margin-left:-17.448000px;}
._31_c00460{margin-left:-15.900000px;}
._1d_c00460{margin-left:-14.292000px;}
._2a_c00460{margin-left:-13.152000px;}
._22_c00460{margin-left:-12.000000px;}
._27_c00460{margin-left:-10.272000px;}
._28_c00460{margin-left:-9.240000px;}
._18_c00460{margin-left:-8.028000px;}
._10_c00460{margin-left:-6.384000px;}
._11_c00460{margin-left:-5.376000px;}
._8_c00460{margin-left:-3.780000px;}
._7_c00460{margin-left:-2.268000px;}
._15_c00460{margin-left:-1.116000px;}
._2_c00460{width:1.680000px;}
._0_c00460{width:2.940000px;}
._5_c00460{width:4.872000px;}
._f_c00460{width:6.048000px;}
._4_c00460{width:7.476000px;}
._a_c00460{width:8.904000px;}
._37_c00460{width:10.068000px;}
._42_c00460{width:11.112000px;}
._3b_c00460{width:12.540000px;}
._3_c00460{width:13.776000px;}
._36_c00460{width:15.072000px;}
._46_c00460{width:16.236000px;}
._9_c00460{width:17.556000px;}
._34_c00460{width:19.236000px;}
._32_c00460{width:21.600000px;}
._48_c00460{width:24.216000px;}
._1c_c00460{width:25.332000px;}
._c_c00460{width:26.460000px;}
._20_c00460{width:27.744000px;}
._14_c00460{width:29.400000px;}
._b_c00460{width:30.492000px;}
._1e_c00460{width:31.776000px;}
._1_c00460{width:33.432000px;}
._3c_c00460{width:34.920000px;}
._19_c00460{width:36.396000px;}
._4d_c00460{width:37.572000px;}
._1f_c00460{width:38.964000px;}
._25_c00460{width:40.728000px;}
._d_c00460{width:41.916000px;}
._e_c00460{width:43.692000px;}
._1b_c00460{width:44.928000px;}
._35_c00460{width:46.596000px;}
._4c_c00460{width:48.504000px;}
._21_c00460{width:49.656000px;}
._39_c00460{width:51.684000px;}
._26_c00460{width:52.908000px;}
._4f_c00460{width:55.008000px;}
._16_c00460{width:56.772000px;}
._4e_c00460{width:58.776000px;}
._24_c00460{width:60.216000px;}
._4a_c00460{width:65.424000px;}
._38_c00460{width:67.056000px;}
._17_c00460{width:72.780000px;}
._44_c00460{width:127.632000px;}
._6_c00460{width:152.628000px;}
._45_c00460{width:157.392000px;}
._40_c00460{width:179.301000px;}
._4b_c00460{width:185.016000px;}
._33_c00460{width:195.552000px;}
._49_c00460{width:221.820000px;}
._2d_c00460{width:264.915000px;}
._3d_c00460{width:357.942000px;}
._3f_c00460{width:381.897000px;}
._2f_c00460{width:448.572000px;}
._3e_c00460{width:508.548000px;}
._30_c00460{width:610.482000px;}
._50_c00460{width:653.532000px;}
._43_c00460{width:1802.268000px;}
.fc2_c00460{color:transparent;}
.fc1_c00460{color:rgb(128,128,128);}
.fc0_c00460{color:rgb(0,0,0);}
.fs7_c00460{font-size:48.000000px;}
.fs4_c00460{font-size:78.000000px;}
.fs0_c00460{font-size:84.000000px;}
.fs3_c00460{font-size:87.000000px;}
.fs2_c00460{font-size:96.000000px;}
.fs1_c00460{font-size:99.000000px;}
.fs5_c00460{font-size:102.000000px;}
.fs6_c00460{font-size:114.000000px;}
.y0_c00460{bottom:0.000000px;}
.y26_c00460{bottom:3.105000px;}
.y25_c00460{bottom:7.228371px;}
.y24_c00460{bottom:83.115000px;}
.y23_c00460{bottom:116.865000px;}
.y22_c00460{bottom:151.215000px;}
.y21_c00460{bottom:186.315000px;}
.y20_c00460{bottom:223.215000px;}
.y1f_c00460{bottom:252.765000px;}
.y1e_c00460{bottom:287.265000px;}
.y1d_c00460{bottom:320.265000px;}
.y1c_c00460{bottom:354.765000px;}
.y1b_c00460{bottom:387.165000px;}
.y1a_c00460{bottom:421.515000px;}
.y19_c00460{bottom:453.915000px;}
.y18_c00460{bottom:487.665000px;}
.y17_c00460{bottom:518.115000px;}
.y16_c00460{bottom:555.165000px;}
.y15_c00460{bottom:588.915000px;}
.y14_c00460{bottom:622.365000px;}
.y13_c00460{bottom:704.715000px;}
.y12_c00460{bottom:722.565000px;}
.y11_c00460{bottom:755.415000px;}
.y10_c00460{bottom:788.715000px;}
.yf_c00460{bottom:821.265000px;}
.ye_c00460{bottom:853.965000px;}
.yd_c00460{bottom:887.715000px;}
.yc_c00460{bottom:920.715000px;}
.yb_c00460{bottom:954.165000px;}
.ya_c00460{bottom:974.715000px;}
.y9_c00460{bottom:986.865000px;}
.y8_c00460{bottom:1020.315000px;}
.y7_c00460{bottom:1052.715000px;}
.y6_c00460{bottom:1086.465000px;}
.y5_c00460{bottom:1118.265000px;}
.y4_c00460{bottom:1152.315000px;}
.y3_c00460{bottom:1184.715000px;}
.y2_c00460{bottom:1218.165000px;}
.y1_c00460{bottom:1251.165000px;}
.h6_c00460{height:13.200074px;}
.h7_c00460{height:43.804688px;}
.h2_c00460{height:106.353516px;}
.h4_c00460{height:110.151855px;}
.h3_c00460{height:121.546875px;}
.h5_c00460{height:144.336914px;}
.h1_c00460{height:1371.000000px;}
.h0_c00460{height:1371.075000px;}
.w2_c00460{width:104.875500px;}
.w0_c00460{width:869.925000px;}
.w1_c00460{width:870.000000px;}
.x0_c00460{left:0.000000px;}
.xa_c00460{left:9.900000px;}
.x9_c00460{left:11.100000px;}
.x8_c00460{left:12.150000px;}
.x5_c00460{left:13.800000px;}
.x6_c00460{left:14.850000px;}
.x4_c00460{left:15.900000px;}
.x2_c00460{left:18.000000px;}
.x1_c00460{left:19.200000px;}
.xd_c00460{left:20.250000px;}
.xc_c00460{left:22.500000px;}
.xf_c00460{left:24.600000px;}
.x3_c00460{left:46.200000px;}
.xe_c00460{left:48.900000px;}
.xb_c00460{left:51.300000px;}
.x7_c00460{left:55.350000px;}
.x10_c00460{left:283.200000px;}
.x11_c00460{left:386.776749px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls8_c00460{letter-spacing:-2.666667pt;}
.ls6_c00460{letter-spacing:0.000000pt;}
.ls1_c00460{letter-spacing:4.000000pt;}
.ls7_c00460{letter-spacing:5.333333pt;}
.ls2_c00460{letter-spacing:6.933333pt;}
.ls5_c00460{letter-spacing:8.000000pt;}
.ls4_c00460{letter-spacing:8.533333pt;}
.ls0_c00460{letter-spacing:12.000000pt;}
.ls3_c00460{letter-spacing:15.690667pt;}
.ws1_c00460{word-spacing:-54.261333pt;}
.ws3_c00460{word-spacing:-45.333333pt;}
.ws0_c00460{word-spacing:-25.994667pt;}
.ws4_c00460{word-spacing:-20.565333pt;}
.ws2_c00460{word-spacing:-17.994667pt;}
.ws5_c00460{word-spacing:0.000000pt;}
._2e_c00460{margin-left:-76.792000pt;}
._2b_c00460{margin-left:-73.853333pt;}
._2c_c00460{margin-left:-38.666667pt;}
._12_c00460{margin-left:-28.160000pt;}
._3a_c00460{margin-left:-27.189333pt;}
._41_c00460{margin-left:-25.738667pt;}
._23_c00460{margin-left:-24.149333pt;}
._13_c00460{margin-left:-22.666667pt;}
._29_c00460{margin-left:-17.728000pt;}
._47_c00460{margin-left:-16.768000pt;}
._1a_c00460{margin-left:-15.509333pt;}
._31_c00460{margin-left:-14.133333pt;}
._1d_c00460{margin-left:-12.704000pt;}
._2a_c00460{margin-left:-11.690667pt;}
._22_c00460{margin-left:-10.666667pt;}
._27_c00460{margin-left:-9.130667pt;}
._28_c00460{margin-left:-8.213333pt;}
._18_c00460{margin-left:-7.136000pt;}
._10_c00460{margin-left:-5.674667pt;}
._11_c00460{margin-left:-4.778667pt;}
._8_c00460{margin-left:-3.360000pt;}
._7_c00460{margin-left:-2.016000pt;}
._15_c00460{margin-left:-0.992000pt;}
._2_c00460{width:1.493333pt;}
._0_c00460{width:2.613333pt;}
._5_c00460{width:4.330667pt;}
._f_c00460{width:5.376000pt;}
._4_c00460{width:6.645333pt;}
._a_c00460{width:7.914667pt;}
._37_c00460{width:8.949333pt;}
._42_c00460{width:9.877333pt;}
._3b_c00460{width:11.146667pt;}
._3_c00460{width:12.245333pt;}
._36_c00460{width:13.397333pt;}
._46_c00460{width:14.432000pt;}
._9_c00460{width:15.605333pt;}
._34_c00460{width:17.098667pt;}
._32_c00460{width:19.200000pt;}
._48_c00460{width:21.525333pt;}
._1c_c00460{width:22.517333pt;}
._c_c00460{width:23.520000pt;}
._20_c00460{width:24.661333pt;}
._14_c00460{width:26.133333pt;}
._b_c00460{width:27.104000pt;}
._1e_c00460{width:28.245333pt;}
._1_c00460{width:29.717333pt;}
._3c_c00460{width:31.040000pt;}
._19_c00460{width:32.352000pt;}
._4d_c00460{width:33.397333pt;}
._1f_c00460{width:34.634667pt;}
._25_c00460{width:36.202667pt;}
._d_c00460{width:37.258667pt;}
._e_c00460{width:38.837333pt;}
._1b_c00460{width:39.936000pt;}
._35_c00460{width:41.418667pt;}
._4c_c00460{width:43.114667pt;}
._21_c00460{width:44.138667pt;}
._39_c00460{width:45.941333pt;}
._26_c00460{width:47.029333pt;}
._4f_c00460{width:48.896000pt;}
._16_c00460{width:50.464000pt;}
._4e_c00460{width:52.245333pt;}
._24_c00460{width:53.525333pt;}
._4a_c00460{width:58.154667pt;}
._38_c00460{width:59.605333pt;}
._17_c00460{width:64.693333pt;}
._44_c00460{width:113.450667pt;}
._6_c00460{width:135.669333pt;}
._45_c00460{width:139.904000pt;}
._40_c00460{width:159.378667pt;}
._4b_c00460{width:164.458667pt;}
._33_c00460{width:173.824000pt;}
._49_c00460{width:197.173333pt;}
._2d_c00460{width:235.480000pt;}
._3d_c00460{width:318.170667pt;}
._3f_c00460{width:339.464000pt;}
._2f_c00460{width:398.730667pt;}
._3e_c00460{width:452.042667pt;}
._30_c00460{width:542.650667pt;}
._50_c00460{width:580.917333pt;}
._43_c00460{width:1602.016000pt;}
.fs7_c00460{font-size:42.666667pt;}
.fs4_c00460{font-size:69.333333pt;}
.fs0_c00460{font-size:74.666667pt;}
.fs3_c00460{font-size:77.333333pt;}
.fs2_c00460{font-size:85.333333pt;}
.fs1_c00460{font-size:88.000000pt;}
.fs5_c00460{font-size:90.666667pt;}
.fs6_c00460{font-size:101.333333pt;}
.y0_c00460{bottom:0.000000pt;}
.y26_c00460{bottom:2.760000pt;}
.y25_c00460{bottom:6.425219pt;}
.y24_c00460{bottom:73.880000pt;}
.y23_c00460{bottom:103.880000pt;}
.y22_c00460{bottom:134.413333pt;}
.y21_c00460{bottom:165.613333pt;}
.y20_c00460{bottom:198.413333pt;}
.y1f_c00460{bottom:224.680000pt;}
.y1e_c00460{bottom:255.346667pt;}
.y1d_c00460{bottom:284.680000pt;}
.y1c_c00460{bottom:315.346667pt;}
.y1b_c00460{bottom:344.146667pt;}
.y1a_c00460{bottom:374.680000pt;}
.y19_c00460{bottom:403.480000pt;}
.y18_c00460{bottom:433.480000pt;}
.y17_c00460{bottom:460.546667pt;}
.y16_c00460{bottom:493.480000pt;}
.y15_c00460{bottom:523.480000pt;}
.y14_c00460{bottom:553.213333pt;}
.y13_c00460{bottom:626.413333pt;}
.y12_c00460{bottom:642.280000pt;}
.y11_c00460{bottom:671.480000pt;}
.y10_c00460{bottom:701.080000pt;}
.yf_c00460{bottom:730.013333pt;}
.ye_c00460{bottom:759.080000pt;}
.yd_c00460{bottom:789.080000pt;}
.yc_c00460{bottom:818.413333pt;}
.yb_c00460{bottom:848.146667pt;}
.ya_c00460{bottom:866.413333pt;}
.y9_c00460{bottom:877.213333pt;}
.y8_c00460{bottom:906.946667pt;}
.y7_c00460{bottom:935.746667pt;}
.y6_c00460{bottom:965.746667pt;}
.y5_c00460{bottom:994.013333pt;}
.y4_c00460{bottom:1024.280000pt;}
.y3_c00460{bottom:1053.080000pt;}
.y2_c00460{bottom:1082.813333pt;}
.y1_c00460{bottom:1112.146667pt;}
.h6_c00460{height:11.733399pt;}
.h7_c00460{height:38.937500pt;}
.h2_c00460{height:94.536458pt;}
.h4_c00460{height:97.912760pt;}
.h3_c00460{height:108.041667pt;}
.h5_c00460{height:128.299479pt;}
.h1_c00460{height:1218.666667pt;}
.h0_c00460{height:1218.733333pt;}
.w2_c00460{width:93.222667pt;}
.w0_c00460{width:773.266667pt;}
.w1_c00460{width:773.333333pt;}
.x0_c00460{left:0.000000pt;}
.xa_c00460{left:8.800000pt;}
.x9_c00460{left:9.866667pt;}
.x8_c00460{left:10.800000pt;}
.x5_c00460{left:12.266667pt;}
.x6_c00460{left:13.200000pt;}
.x4_c00460{left:14.133333pt;}
.x2_c00460{left:16.000000pt;}
.x1_c00460{left:17.066667pt;}
.xd_c00460{left:18.000000pt;}
.xc_c00460{left:20.000000pt;}
.xf_c00460{left:21.866667pt;}
.x3_c00460{left:41.066667pt;}
.xe_c00460{left:43.466667pt;}
.xb_c00460{left:45.600000pt;}
.x7_c00460{left:49.200000pt;}
.x10_c00460{left:251.733333pt;}
.x11_c00460{left:343.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc0fcd0d53efe14414dc6e5c.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_47d8bcb675354d03c1e26aba.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_57f10a6bbb70f301f8f5bd5b.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00461;src:url('chunks/assets/font_a5dfb00a11818597ab60668f.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00461;src:url('chunks/assets/font_32aa83d74d423d87876f618b.woff2')format("woff");}.ff5_c00461{font-family:ff5_c00461;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00461;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00461{font-family:ff6_c00461;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.lsa_c00461{letter-spacing:-3.000000px;}
.ls9_c00461{letter-spacing:0.000000px;}
.ls6_c00461{letter-spacing:3.000000px;}
.ls1_c00461{letter-spacing:7.200000px;}
.ls2_c00461{letter-spacing:7.800000px;}
.ls8_c00461{letter-spacing:9.600000px;}
.ls5_c00461{letter-spacing:12.000000px;}
.ls7_c00461{letter-spacing:13.800000px;}
.ls3_c00461{letter-spacing:21.000000px;}
.ls0_c00461{letter-spacing:22.800000px;}
.ls4_c00461{letter-spacing:27.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00461{word-spacing:-76.038000px;}
.ws2_c00461{word-spacing:-63.504000px;}
.ws1_c00461{word-spacing:-51.000000px;}
.ws0_c00461{word-spacing:-23.136000px;}
.ws5_c00461{word-spacing:0.000000px;}
.ws4_c00461{word-spacing:33.930000px;}
._24_c00461{margin-left:-81.984000px;}
._18_c00461{margin-left:-31.104000px;}
._13_c00461{margin-left:-25.896000px;}
._27_c00461{margin-left:-24.720000px;}
._2a_c00461{margin-left:-21.792000px;}
._33_c00461{margin-left:-16.392000px;}
._34_c00461{margin-left:-14.472000px;}
._10_c00461{margin-left:-13.344000px;}
._12_c00461{margin-left:-11.976000px;}
._30_c00461{margin-left:-10.776000px;}
._f_c00461{margin-left:-9.048000px;}
._11_c00461{margin-left:-7.968000px;}
._1c_c00461{margin-left:-6.336000px;}
._15_c00461{margin-left:-4.896000px;}
._9_c00461{margin-left:-2.880000px;}
._8_c00461{margin-left:-1.440000px;}
._6_c00461{width:1.440000px;}
._5_c00461{width:2.496000px;}
._2_c00461{width:3.552000px;}
._25_c00461{width:4.560000px;}
._1_c00461{width:5.568000px;}
._0_c00461{width:7.104000px;}
._1a_c00461{width:8.352000px;}
._d_c00461{width:9.864000px;}
._37_c00461{width:10.896000px;}
._1e_c00461{width:12.120000px;}
._14_c00461{width:14.016000px;}
._3a_c00461{width:15.264000px;}
._e_c00461{width:17.184000px;}
._2d_c00461{width:19.608000px;}
._19_c00461{width:21.408000px;}
._2e_c00461{width:24.240000px;}
._28_c00461{width:25.464000px;}
._a_c00461{width:27.456000px;}
._c_c00461{width:29.280000px;}
._36_c00461{width:30.576000px;}
._16_c00461{width:31.968000px;}
._3c_c00461{width:32.976000px;}
._b_c00461{width:35.136000px;}
._26_c00461{width:36.456000px;}
._3b_c00461{width:38.040000px;}
._17_c00461{width:39.264000px;}
._21_c00461{width:40.704000px;}
._22_c00461{width:43.008000px;}
._3_c00461{width:44.544000px;}
._32_c00461{width:45.696000px;}
._2f_c00461{width:47.712000px;}
._39_c00461{width:50.136000px;}
._1b_c00461{width:51.360000px;}
._23_c00461{width:54.336000px;}
._1d_c00461{width:58.080000px;}
._38_c00461{width:60.312000px;}
._4_c00461{width:64.512000px;}
._2b_c00461{width:68.640000px;}
._35_c00461{width:70.872000px;}
._20_c00461{width:73.632000px;}
._1f_c00461{width:75.840000px;}
._3d_c00461{width:105.288000px;}
._31_c00461{width:211.512000px;}
._3e_c00461{width:214.536000px;}
._29_c00461{width:250.128000px;}
._7_c00461{width:289.248000px;}
._2c_c00461{width:413.664000px;}
.fc2_c00461{color:transparent;}
.fc1_c00461{color:rgb(128,128,128);}
.fc0_c00461{color:rgb(0,0,0);}
.fs4_c00461{font-size:30.000000px;}
.fs5_c00461{font-size:48.000000px;}
.fs2_c00461{font-size:84.000000px;}
.fs0_c00461{font-size:96.000000px;}
.fs1_c00461{font-size:102.000000px;}
.fs3_c00461{font-size:114.000000px;}
.y0_c00461{bottom:0.000000px;}
.y26_c00461{bottom:3.105000px;}
.y25_c00461{bottom:7.228357px;}
.y24_c00461{bottom:88.830000px;}
.y23_c00461{bottom:120.480000px;}
.y22_c00461{bottom:153.930000px;}
.y21_c00461{bottom:188.730000px;}
.y20_c00461{bottom:223.830000px;}
.y1f_c00461{bottom:258.180000px;}
.y1e_c00461{bottom:290.880000px;}
.y1d_c00461{bottom:324.030000px;}
.y1c_c00461{bottom:358.830000px;}
.y1b_c00461{bottom:390.780000px;}
.y1a_c00461{bottom:426.630000px;}
.y19_c00461{bottom:459.630000px;}
.y18_c00461{bottom:492.030000px;}
.y17_c00461{bottom:526.230000px;}
.y16_c00461{bottom:559.680000px;}
.y15_c00461{bottom:593.430000px;}
.y14_c00461{bottom:625.680000px;}
.y13_c00461{bottom:659.880000px;}
.y12_c00461{bottom:692.580000px;}
.y11_c00461{bottom:726.630000px;}
.y10_c00461{bottom:760.080000px;}
.yf_c00461{bottom:793.230000px;}
.ye_c00461{bottom:827.280000px;}
.yd_c00461{bottom:860.580000px;}
.yc_c00461{bottom:893.730000px;}
.yb_c00461{bottom:928.230000px;}
.ya_c00461{bottom:961.230000px;}
.y9_c00461{bottom:993.630000px;}
.y8_c00461{bottom:1026.330000px;}
.y7_c00461{bottom:1059.030000px;}
.y6_c00461{bottom:1092.480000px;}
.y5_c00461{bottom:1126.530000px;}
.y4_c00461{bottom:1159.080000px;}
.y3_c00461{bottom:1189.980000px;}
.y2_c00461{bottom:1223.730000px;}
.y1_c00461{bottom:1258.830000px;}
.h5_c00461{height:13.200074px;}
.h4_c00461{height:25.842773px;}
.h6_c00461{height:43.804688px;}
.h2_c00461{height:121.546875px;}
.h3_c00461{height:129.143555px;}
.h0_c00461{height:1382.700000px;}
.h1_c00461{height:1383.000000px;}
.w2_c00461{width:104.875500px;}
.w0_c00461{width:863.175000px;}
.w1_c00461{width:863.250000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:267.000000px;}
.x3_c00461{left:268.200000px;}
.x6_c00461{left:269.250000px;}
.xa_c00461{left:270.300000px;}
.x7_c00461{left:271.350000px;}
.x9_c00461{left:273.000000px;}
.x8_c00461{left:274.500000px;}
.xc_c00461{left:383.401749px;}
.x5_c00461{left:426.300000px;}
.x4_c00461{left:545.700000px;}
.x1_c00461{left:576.900000px;}
.xb_c00461{left:799.500000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.lsa_c00461{letter-spacing:-2.666667pt;}
.ls9_c00461{letter-spacing:0.000000pt;}
.ls6_c00461{letter-spacing:2.666667pt;}
.ls1_c00461{letter-spacing:6.400000pt;}
.ls2_c00461{letter-spacing:6.933333pt;}
.ls8_c00461{letter-spacing:8.533333pt;}
.ls5_c00461{letter-spacing:10.666667pt;}
.ls7_c00461{letter-spacing:12.266667pt;}
.ls3_c00461{letter-spacing:18.666667pt;}
.ls0_c00461{letter-spacing:20.266667pt;}
.ls4_c00461{letter-spacing:24.000000pt;}
.ws3_c00461{word-spacing:-67.589333pt;}
.ws2_c00461{word-spacing:-56.448000pt;}
.ws1_c00461{word-spacing:-45.333333pt;}
.ws0_c00461{word-spacing:-20.565333pt;}
.ws5_c00461{word-spacing:0.000000pt;}
.ws4_c00461{word-spacing:30.160000pt;}
._24_c00461{margin-left:-72.874667pt;}
._18_c00461{margin-left:-27.648000pt;}
._13_c00461{margin-left:-23.018667pt;}
._27_c00461{margin-left:-21.973333pt;}
._2a_c00461{margin-left:-19.370667pt;}
._33_c00461{margin-left:-14.570667pt;}
._34_c00461{margin-left:-12.864000pt;}
._10_c00461{margin-left:-11.861333pt;}
._12_c00461{margin-left:-10.645333pt;}
._30_c00461{margin-left:-9.578667pt;}
._f_c00461{margin-left:-8.042667pt;}
._11_c00461{margin-left:-7.082667pt;}
._1c_c00461{margin-left:-5.632000pt;}
._15_c00461{margin-left:-4.352000pt;}
._9_c00461{margin-left:-2.560000pt;}
._8_c00461{margin-left:-1.280000pt;}
._6_c00461{width:1.280000pt;}
._5_c00461{width:2.218667pt;}
._2_c00461{width:3.157333pt;}
._25_c00461{width:4.053333pt;}
._1_c00461{width:4.949333pt;}
._0_c00461{width:6.314667pt;}
._1a_c00461{width:7.424000pt;}
._d_c00461{width:8.768000pt;}
._37_c00461{width:9.685333pt;}
._1e_c00461{width:10.773333pt;}
._14_c00461{width:12.458667pt;}
._3a_c00461{width:13.568000pt;}
._e_c00461{width:15.274667pt;}
._2d_c00461{width:17.429333pt;}
._19_c00461{width:19.029333pt;}
._2e_c00461{width:21.546667pt;}
._28_c00461{width:22.634667pt;}
._a_c00461{width:24.405333pt;}
._c_c00461{width:26.026667pt;}
._36_c00461{width:27.178667pt;}
._16_c00461{width:28.416000pt;}
._3c_c00461{width:29.312000pt;}
._b_c00461{width:31.232000pt;}
._26_c00461{width:32.405333pt;}
._3b_c00461{width:33.813333pt;}
._17_c00461{width:34.901333pt;}
._21_c00461{width:36.181333pt;}
._22_c00461{width:38.229333pt;}
._3_c00461{width:39.594667pt;}
._32_c00461{width:40.618667pt;}
._2f_c00461{width:42.410667pt;}
._39_c00461{width:44.565333pt;}
._1b_c00461{width:45.653333pt;}
._23_c00461{width:48.298667pt;}
._1d_c00461{width:51.626667pt;}
._38_c00461{width:53.610667pt;}
._4_c00461{width:57.344000pt;}
._2b_c00461{width:61.013333pt;}
._35_c00461{width:62.997333pt;}
._20_c00461{width:65.450667pt;}
._1f_c00461{width:67.413333pt;}
._3d_c00461{width:93.589333pt;}
._31_c00461{width:188.010667pt;}
._3e_c00461{width:190.698667pt;}
._29_c00461{width:222.336000pt;}
._7_c00461{width:257.109333pt;}
._2c_c00461{width:367.701333pt;}
.fs4_c00461{font-size:26.666667pt;}
.fs5_c00461{font-size:42.666667pt;}
.fs2_c00461{font-size:74.666667pt;}
.fs0_c00461{font-size:85.333333pt;}
.fs1_c00461{font-size:90.666667pt;}
.fs3_c00461{font-size:101.333333pt;}
.y0_c00461{bottom:0.000000pt;}
.y26_c00461{bottom:2.760000pt;}
.y25_c00461{bottom:6.425206pt;}
.y24_c00461{bottom:78.960000pt;}
.y23_c00461{bottom:107.093333pt;}
.y22_c00461{bottom:136.826667pt;}
.y21_c00461{bottom:167.760000pt;}
.y20_c00461{bottom:198.960000pt;}
.y1f_c00461{bottom:229.493333pt;}
.y1e_c00461{bottom:258.560000pt;}
.y1d_c00461{bottom:288.026667pt;}
.y1c_c00461{bottom:318.960000pt;}
.y1b_c00461{bottom:347.360000pt;}
.y1a_c00461{bottom:379.226667pt;}
.y19_c00461{bottom:408.560000pt;}
.y18_c00461{bottom:437.360000pt;}
.y17_c00461{bottom:467.760000pt;}
.y16_c00461{bottom:497.493333pt;}
.y15_c00461{bottom:527.493333pt;}
.y14_c00461{bottom:556.160000pt;}
.y13_c00461{bottom:586.560000pt;}
.y12_c00461{bottom:615.626667pt;}
.y11_c00461{bottom:645.893333pt;}
.y10_c00461{bottom:675.626667pt;}
.yf_c00461{bottom:705.093333pt;}
.ye_c00461{bottom:735.360000pt;}
.yd_c00461{bottom:764.960000pt;}
.yc_c00461{bottom:794.426667pt;}
.yb_c00461{bottom:825.093333pt;}
.ya_c00461{bottom:854.426667pt;}
.y9_c00461{bottom:883.226667pt;}
.y8_c00461{bottom:912.293333pt;}
.y7_c00461{bottom:941.360000pt;}
.y6_c00461{bottom:971.093333pt;}
.y5_c00461{bottom:1001.360000pt;}
.y4_c00461{bottom:1030.293333pt;}
.y3_c00461{bottom:1057.760000pt;}
.y2_c00461{bottom:1087.760000pt;}
.y1_c00461{bottom:1118.960000pt;}
.h5_c00461{height:11.733399pt;}
.h4_c00461{height:22.971354pt;}
.h6_c00461{height:38.937500pt;}
.h2_c00461{height:108.041667pt;}
.h3_c00461{height:114.794271pt;}
.h0_c00461{height:1229.066667pt;}
.h1_c00461{height:1229.333333pt;}
.w2_c00461{width:93.222667pt;}
.w0_c00461{width:767.266667pt;}
.w1_c00461{width:767.333333pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:237.333333pt;}
.x3_c00461{left:238.400000pt;}
.x6_c00461{left:239.333333pt;}
.xa_c00461{left:240.266667pt;}
.x7_c00461{left:241.200000pt;}
.x9_c00461{left:242.666667pt;}
.x8_c00461{left:244.000000pt;}
.xc_c00461{left:340.801554pt;}
.x5_c00461{left:378.933333pt;}
.x4_c00461{left:485.066667pt;}
.x1_c00461{left:512.800000pt;}
.xb_c00461{left:710.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4fca806e62d3151cd3809b47.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;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:ff2_c00462;src:url('chunks/assets/font_c087c90bfb93bf1a8796cc7a.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_a5df4c7d5659c3d61a9320ef.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_b51f42693230a7946e12d650.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls1_c00462{letter-spacing:-3.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.ls2_c00462{letter-spacing:3.000000px;}
.ls3_c00462{letter-spacing:6.000000px;}
.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;}
}
.ws0_c00462{word-spacing:-51.000000px;}
.ws2_c00462{word-spacing:-33.360000px;}
.ws1_c00462{word-spacing:-23.967000px;}
.ws3_c00462{word-spacing:-23.136000px;}
.ws4_c00462{word-spacing:0.000000px;}
._1c_c00462{margin-left:-81.600000px;}
._3_c00462{margin-left:-37.341000px;}
._6_c00462{margin-left:-35.235000px;}
._1_c00462{margin-left:-29.580000px;}
._40_c00462{margin-left:-28.068000px;}
._3e_c00462{margin-left:-23.277000px;}
._33_c00462{margin-left:-20.544000px;}
._c_c00462{margin-left:-19.386000px;}
._a_c00462{margin-left:-18.000000px;}
._18_c00462{margin-left:-16.392000px;}
._32_c00462{margin-left:-13.698000px;}
._3a_c00462{margin-left:-12.612000px;}
._7_c00462{margin-left:-11.484000px;}
._39_c00462{margin-left:-10.329000px;}
._5_c00462{margin-left:-8.439000px;}
._27_c00462{margin-left:-6.537000px;}
._1d_c00462{margin-left:-4.896000px;}
._1e_c00462{margin-left:-3.168000px;}
._f_c00462{margin-left:-1.536000px;}
._11_c00462{width:1.536000px;}
._15_c00462{width:3.360000px;}
._14_c00462{width:4.512000px;}
._13_c00462{width:6.240000px;}
._12_c00462{width:7.440000px;}
._0_c00462{width:8.976000px;}
._1b_c00462{width:10.896000px;}
._16_c00462{width:12.384000px;}
._2d_c00462{width:13.440000px;}
._20_c00462{width:15.003000px;}
._25_c00462{width:16.320000px;}
._2b_c00462{width:17.904000px;}
._30_c00462{width:19.776000px;}
._28_c00462{width:21.312000px;}
._23_c00462{width:24.690000px;}
._3d_c00462{width:26.070000px;}
._19_c00462{width:27.840000px;}
._24_c00462{width:29.088000px;}
._1f_c00462{width:30.432000px;}
._34_c00462{width:32.112000px;}
._2f_c00462{width:33.360000px;}
._17_c00462{width:34.365000px;}
._9_c00462{width:36.015000px;}
._2c_c00462{width:37.344000px;}
._2a_c00462{width:39.045000px;}
._1a_c00462{width:40.128000px;}
._31_c00462{width:42.147000px;}
._48_c00462{width:43.182000px;}
._10_c00462{width:44.352000px;}
._3f_c00462{width:45.888000px;}
._21_c00462{width:47.136000px;}
._e_c00462{width:48.720000px;}
._37_c00462{width:49.776000px;}
._2e_c00462{width:51.774000px;}
._35_c00462{width:53.934000px;}
._47_c00462{width:58.080000px;}
._43_c00462{width:60.939000px;}
._44_c00462{width:62.547000px;}
._38_c00462{width:65.280000px;}
._42_c00462{width:66.387000px;}
._8_c00462{width:70.848000px;}
._41_c00462{width:96.981000px;}
._45_c00462{width:110.496000px;}
._b_c00462{width:112.230000px;}
._4_c00462{width:129.891000px;}
._2_c00462{width:156.960000px;}
._36_c00462{width:164.640000px;}
._29_c00462{width:172.128000px;}
._46_c00462{width:179.424000px;}
._d_c00462{width:293.451000px;}
._3c_c00462{width:335.553000px;}
._26_c00462{width:366.528000px;}
._3b_c00462{width:615.393000px;}
._22_c00462{width:830.022000px;}
.fc2_c00462{color:transparent;}
.fc1_c00462{color:rgb(128,128,128);}
.fc0_c00462{color:rgb(0,0,0);}
.fs4_c00462{font-size:36.000000px;}
.fs5_c00462{font-size:48.000000px;}
.fs2_c00462{font-size:60.000000px;}
.fs1_c00462{font-size:87.000000px;}
.fs3_c00462{font-size:96.000000px;}
.fs0_c00462{font-size:102.000000px;}
.y0_c00462{bottom:0.000000px;}
.y29_c00462{bottom:3.105000px;}
.y28_c00462{bottom:7.228357px;}
.y27_c00462{bottom:75.630000px;}
.y26_c00462{bottom:104.730000px;}
.y25_c00462{bottom:140.130000px;}
.y24_c00462{bottom:172.830000px;}
.y23_c00462{bottom:207.930000px;}
.y22_c00462{bottom:238.980000px;}
.y21_c00462{bottom:274.830000px;}
.y20_c00462{bottom:308.130000px;}
.y1f_c00462{bottom:342.180000px;}
.y1e_c00462{bottom:375.330000px;}
.y1d_c00462{bottom:409.080000px;}
.y1c_c00462{bottom:442.230000px;}
.y1b_c00462{bottom:476.580000px;}
.y1a_c00462{bottom:509.280000px;}
.y19_c00462{bottom:543.030000px;}
.y18_c00462{bottom:576.480000px;}
.y17_c00462{bottom:609.630000px;}
.y16_c00462{bottom:644.730000px;}
.y15_c00462{bottom:669.030000px;}
.y14_c00462{bottom:676.980000px;}
.y13_c00462{bottom:709.380000px;}
.y12_c00462{bottom:743.280000px;}
.y11_c00462{bottom:776.580000px;}
.y10_c00462{bottom:809.430000px;}
.yf_c00462{bottom:841.830000px;}
.ye_c00462{bottom:875.430000px;}
.yd_c00462{bottom:908.880000px;}
.yc_c00462{bottom:941.730000px;}
.yb_c00462{bottom:973.980000px;}
.ya_c00462{bottom:1009.080000px;}
.y9_c00462{bottom:1041.480000px;}
.y8_c00462{bottom:1074.030000px;}
.y7_c00462{bottom:1106.430000px;}
.y6_c00462{bottom:1139.730000px;}
.y5_c00462{bottom:1172.430000px;}
.y4_c00462{bottom:1205.280000px;}
.y3_c00462{bottom:1239.030000px;}
.y2_c00462{bottom:1259.880000px;}
.y1_c00462{bottom:1272.330000px;}
.h6_c00462{height:13.200074px;}
.h7_c00462{height:43.804688px;}
.h5_c00462{height:45.580078px;}
.h2_c00462{height:102.796875px;}
.h3_c00462{height:110.151855px;}
.h4_c00462{height:121.546875px;}
.h1_c00462{height:1338.000000px;}
.h0_c00462{height:1338.150000px;}
.w2_c00462{width:104.875500px;}
.w0_c00462{width:848.850000px;}
.w1_c00462{width:849.000000px;}
.x0_c00462{left:0.000000px;}
.x8_c00462{left:17.100000px;}
.xa_c00462{left:18.150000px;}
.x7_c00462{left:19.200000px;}
.x5_c00462{left:20.850000px;}
.x4_c00462{left:21.900000px;}
.x3_c00462{left:22.950000px;}
.xb_c00462{left:24.000000px;}
.xd_c00462{left:25.650000px;}
.xe_c00462{left:26.700000px;}
.x6_c00462{left:71.550000px;}
.xc_c00462{left:77.550000px;}
.x2_c00462{left:289.200000px;}
.x9_c00462{left:298.050000px;}
.x10_c00462{left:376.239258px;}
.x1_c00462{left:505.950000px;}
.xf_c00462{left:573.750000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls1_c00462{letter-spacing:-2.666667pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ls2_c00462{letter-spacing:2.666667pt;}
.ls3_c00462{letter-spacing:5.333333pt;}
.ws0_c00462{word-spacing:-45.333333pt;}
.ws2_c00462{word-spacing:-29.653333pt;}
.ws1_c00462{word-spacing:-21.304000pt;}
.ws3_c00462{word-spacing:-20.565333pt;}
.ws4_c00462{word-spacing:0.000000pt;}
._1c_c00462{margin-left:-72.533333pt;}
._3_c00462{margin-left:-33.192000pt;}
._6_c00462{margin-left:-31.320000pt;}
._1_c00462{margin-left:-26.293333pt;}
._40_c00462{margin-left:-24.949333pt;}
._3e_c00462{margin-left:-20.690667pt;}
._33_c00462{margin-left:-18.261333pt;}
._c_c00462{margin-left:-17.232000pt;}
._a_c00462{margin-left:-16.000000pt;}
._18_c00462{margin-left:-14.570667pt;}
._32_c00462{margin-left:-12.176000pt;}
._3a_c00462{margin-left:-11.210667pt;}
._7_c00462{margin-left:-10.208000pt;}
._39_c00462{margin-left:-9.181333pt;}
._5_c00462{margin-left:-7.501333pt;}
._27_c00462{margin-left:-5.810667pt;}
._1d_c00462{margin-left:-4.352000pt;}
._1e_c00462{margin-left:-2.816000pt;}
._f_c00462{margin-left:-1.365333pt;}
._11_c00462{width:1.365333pt;}
._15_c00462{width:2.986667pt;}
._14_c00462{width:4.010667pt;}
._13_c00462{width:5.546667pt;}
._12_c00462{width:6.613333pt;}
._0_c00462{width:7.978667pt;}
._1b_c00462{width:9.685333pt;}
._16_c00462{width:11.008000pt;}
._2d_c00462{width:11.946667pt;}
._20_c00462{width:13.336000pt;}
._25_c00462{width:14.506667pt;}
._2b_c00462{width:15.914667pt;}
._30_c00462{width:17.578667pt;}
._28_c00462{width:18.944000pt;}
._23_c00462{width:21.946667pt;}
._3d_c00462{width:23.173333pt;}
._19_c00462{width:24.746667pt;}
._24_c00462{width:25.856000pt;}
._1f_c00462{width:27.050667pt;}
._34_c00462{width:28.544000pt;}
._2f_c00462{width:29.653333pt;}
._17_c00462{width:30.546667pt;}
._9_c00462{width:32.013333pt;}
._2c_c00462{width:33.194667pt;}
._2a_c00462{width:34.706667pt;}
._1a_c00462{width:35.669333pt;}
._31_c00462{width:37.464000pt;}
._48_c00462{width:38.384000pt;}
._10_c00462{width:39.424000pt;}
._3f_c00462{width:40.789333pt;}
._21_c00462{width:41.898667pt;}
._e_c00462{width:43.306667pt;}
._37_c00462{width:44.245333pt;}
._2e_c00462{width:46.021333pt;}
._35_c00462{width:47.941333pt;}
._47_c00462{width:51.626667pt;}
._43_c00462{width:54.168000pt;}
._44_c00462{width:55.597333pt;}
._38_c00462{width:58.026667pt;}
._42_c00462{width:59.010667pt;}
._8_c00462{width:62.976000pt;}
._41_c00462{width:86.205333pt;}
._45_c00462{width:98.218667pt;}
._b_c00462{width:99.760000pt;}
._4_c00462{width:115.458667pt;}
._2_c00462{width:139.520000pt;}
._36_c00462{width:146.346667pt;}
._29_c00462{width:153.002667pt;}
._46_c00462{width:159.488000pt;}
._d_c00462{width:260.845333pt;}
._3c_c00462{width:298.269333pt;}
._26_c00462{width:325.802667pt;}
._3b_c00462{width:547.016000pt;}
._22_c00462{width:737.797333pt;}
.fs4_c00462{font-size:32.000000pt;}
.fs5_c00462{font-size:42.666667pt;}
.fs2_c00462{font-size:53.333333pt;}
.fs1_c00462{font-size:77.333333pt;}
.fs3_c00462{font-size:85.333333pt;}
.fs0_c00462{font-size:90.666667pt;}
.y0_c00462{bottom:0.000000pt;}
.y29_c00462{bottom:2.760000pt;}
.y28_c00462{bottom:6.425206pt;}
.y27_c00462{bottom:67.226667pt;}
.y26_c00462{bottom:93.093333pt;}
.y25_c00462{bottom:124.560000pt;}
.y24_c00462{bottom:153.626667pt;}
.y23_c00462{bottom:184.826667pt;}
.y22_c00462{bottom:212.426667pt;}
.y21_c00462{bottom:244.293333pt;}
.y20_c00462{bottom:273.893333pt;}
.y1f_c00462{bottom:304.160000pt;}
.y1e_c00462{bottom:333.626667pt;}
.y1d_c00462{bottom:363.626667pt;}
.y1c_c00462{bottom:393.093333pt;}
.y1b_c00462{bottom:423.626667pt;}
.y1a_c00462{bottom:452.693333pt;}
.y19_c00462{bottom:482.693333pt;}
.y18_c00462{bottom:512.426667pt;}
.y17_c00462{bottom:541.893333pt;}
.y16_c00462{bottom:573.093333pt;}
.y15_c00462{bottom:594.693333pt;}
.y14_c00462{bottom:601.760000pt;}
.y13_c00462{bottom:630.560000pt;}
.y12_c00462{bottom:660.693333pt;}
.y11_c00462{bottom:690.293333pt;}
.y10_c00462{bottom:719.493333pt;}
.yf_c00462{bottom:748.293333pt;}
.ye_c00462{bottom:778.160000pt;}
.yd_c00462{bottom:807.893333pt;}
.yc_c00462{bottom:837.093333pt;}
.yb_c00462{bottom:865.760000pt;}
.ya_c00462{bottom:896.960000pt;}
.y9_c00462{bottom:925.760000pt;}
.y8_c00462{bottom:954.693333pt;}
.y7_c00462{bottom:983.493333pt;}
.y6_c00462{bottom:1013.093333pt;}
.y5_c00462{bottom:1042.160000pt;}
.y4_c00462{bottom:1071.360000pt;}
.y3_c00462{bottom:1101.360000pt;}
.y2_c00462{bottom:1119.893333pt;}
.y1_c00462{bottom:1130.960000pt;}
.h6_c00462{height:11.733399pt;}
.h7_c00462{height:38.937500pt;}
.h5_c00462{height:40.515625pt;}
.h2_c00462{height:91.375000pt;}
.h3_c00462{height:97.912760pt;}
.h4_c00462{height:108.041667pt;}
.h1_c00462{height:1189.333333pt;}
.h0_c00462{height:1189.466667pt;}
.w2_c00462{width:93.222667pt;}
.w0_c00462{width:754.533333pt;}
.w1_c00462{width:754.666667pt;}
.x0_c00462{left:0.000000pt;}
.x8_c00462{left:15.200000pt;}
.xa_c00462{left:16.133333pt;}
.x7_c00462{left:17.066667pt;}
.x5_c00462{left:18.533333pt;}
.x4_c00462{left:19.466667pt;}
.x3_c00462{left:20.400000pt;}
.xb_c00462{left:21.333333pt;}
.xd_c00462{left:22.800000pt;}
.xe_c00462{left:23.733333pt;}
.x6_c00462{left:63.600000pt;}
.xc_c00462{left:68.933333pt;}
.x2_c00462{left:257.066667pt;}
.x9_c00462{left:264.933333pt;}
.x10_c00462{left:334.434896pt;}
.x1_c00462{left:449.733333pt;}
.xf_c00462{left:510.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_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_3a0ffda842d73f9ac761d3f3.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_1c432ef9308ae868255826ac.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_58a43f623a81740ab45a58ad.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_60c4ca628dab443739f2cc9e.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00463;src:url('chunks/assets/font_1b8f9e300442892044ef716a.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00463;src:url('chunks/assets/font_cc9891976c98544b662d9578.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00463;src:url('chunks/assets/font_a48b5bc5a8b5d576263bb7c0.woff2')format("woff");}.ff7_c00463{font-family:ff7_c00463;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00463;src:url('chunks/assets/font_7a818996ab1dc21e79c76aa4.woff2')format("woff");}.ff8_c00463{font-family:ff8_c00463;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00463;src:url('chunks/assets/font_57d6a8cad4e3fd14aecc65fa.woff2')format("woff");}.ff9_c00463{font-family:ff9_c00463;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00463;src:url('chunks/assets/font_fdb9dd6c33ecec8215768f82.woff2')format("woff");}.ffa_c00463{font-family:ffa_c00463;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00463;src:url('chunks/assets/font_cb0842c557352824b55f64c5.woff2')format("woff");}.ffb_c00463{font-family:ffb_c00463;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00463;src:url('chunks/assets/font_91767ee910d379da82a4000a.woff2')format("woff");}.ffc_c00463{font-family:ffc_c00463;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00463;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ffd_c00463{font-family:ffd_c00463;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00463;src:url('chunks/assets/font_932b8f3ee54e2fcda557c587.woff2')format("woff");}.ffe_c00463{font-family:ffe_c00463;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00463;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.fff_c00463{font-family:fff_c00463;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{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_c00463{vertical-align:0.000000px;}
.ls6_c00463{letter-spacing:-3.000000px;}
.ls3_c00463{letter-spacing:0.000000px;}
.ls7_c00463{letter-spacing:3.000000px;}
.ls5_c00463{letter-spacing:6.000000px;}
.ls8_c00463{letter-spacing:9.000000px;}
.ls0_c00463{letter-spacing:9.048000px;}
.ls4_c00463{letter-spacing:12.000000px;}
.ls1_c00463{letter-spacing:31.790400px;}
.ls2_c00463{letter-spacing:37.800000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00463{word-spacing:-63.504000px;}
.ws8_c00463{word-spacing:-37.560000px;}
.ws2_c00463{word-spacing:-33.360000px;}
.ws6_c00463{word-spacing:-32.424000px;}
.ws1_c00463{word-spacing:-31.908000px;}
.ws5_c00463{word-spacing:-29.967000px;}
.ws0_c00463{word-spacing:-26.726400px;}
.ws3_c00463{word-spacing:-23.136000px;}
.ws4_c00463{word-spacing:-18.508800px;}
.ws9_c00463{word-spacing:-10.668000px;}
.wsa_c00463{word-spacing:0.000000px;}
._74_c00463{margin-left:-78.669000px;}
._58_c00463{margin-left:-73.167000px;}
._29_c00463{margin-left:-67.956000px;}
._78_c00463{margin-left:-62.988000px;}
._76_c00463{margin-left:-55.185000px;}
._43_c00463{margin-left:-44.259000px;}
._24_c00463{margin-left:-42.147000px;}
._4_c00463{margin-left:-40.032000px;}
._2_c00463{margin-left:-38.304000px;}
._79_c00463{margin-left:-37.263000px;}
._26_c00463{margin-left:-35.877000px;}
._3d_c00463{margin-left:-34.833600px;}
._5a_c00463{margin-left:-33.495000px;}
._14_c00463{margin-left:-31.059000px;}
._b_c00463{margin-left:-28.944000px;}
._2a_c00463{margin-left:-27.753000px;}
._37_c00463{margin-left:-26.394000px;}
._7e_c00463{margin-left:-25.200000px;}
._8_c00463{margin-left:-24.192000px;}
._38_c00463{margin-left:-23.148000px;}
._66_c00463{margin-left:-22.104000px;}
._6_c00463{margin-left:-20.592000px;}
._63_c00463{margin-left:-19.287000px;}
._2d_c00463{margin-left:-18.249000px;}
._64_c00463{margin-left:-16.878000px;}
._9_c00463{margin-left:-15.840000px;}
._0_c00463{margin-left:-13.968000px;}
._16_c00463{margin-left:-12.474000px;}
._39_c00463{margin-left:-10.947000px;}
._13_c00463{margin-left:-9.792000px;}
._17_c00463{margin-left:-8.064000px;}
._18_c00463{margin-left:-6.426000px;}
._1a_c00463{margin-left:-5.343000px;}
._2c_c00463{margin-left:-3.936000px;}
._22_c00463{margin-left:-2.268000px;}
._d_c00463{margin-left:-1.008000px;}
._7_c00463{width:1.008000px;}
._71_c00463{width:2.022000px;}
._10_c00463{width:3.024000px;}
._6b_c00463{width:4.032000px;}
._f_c00463{width:5.184000px;}
._1e_c00463{width:7.014000px;}
._1f_c00463{width:8.568000px;}
._30_c00463{width:9.885000px;}
._25_c00463{width:10.962000px;}
._19_c00463{width:12.348000px;}
._33_c00463{width:13.968000px;}
._15_c00463{width:16.065000px;}
._2e_c00463{width:17.088000px;}
._6a_c00463{width:18.291000px;}
._e_c00463{width:19.296000px;}
._28_c00463{width:21.894000px;}
._41_c00463{width:23.889000px;}
._5f_c00463{width:25.767000px;}
._a_c00463{width:26.928000px;}
._27_c00463{width:28.266000px;}
._34_c00463{width:29.985000px;}
._2f_c00463{width:31.104000px;}
._6e_c00463{width:32.169000px;}
._69_c00463{width:33.348000px;}
._31_c00463{width:34.947000px;}
._5b_c00463{width:36.105000px;}
._3c_c00463{width:38.126400px;}
._11_c00463{width:40.608000px;}
._50_c00463{width:41.709000px;}
._6c_c00463{width:43.056000px;}
._5_c00463{width:44.208000px;}
._70_c00463{width:45.747000px;}
._6f_c00463{width:47.856000px;}
._23_c00463{width:50.148000px;}
._67_c00463{width:51.954000px;}
._53_c00463{width:54.708000px;}
._5c_c00463{width:58.524000px;}
._6d_c00463{width:60.624000px;}
._1b_c00463{width:62.790000px;}
._3_c00463{width:65.808000px;}
._1c_c00463{width:68.136000px;}
._62_c00463{width:69.564000px;}
._68_c00463{width:72.168000px;}
._45_c00463{width:73.842000px;}
._35_c00463{width:75.024000px;}
._4a_c00463{width:77.562000px;}
._3f_c00463{width:82.620000px;}
._7d_c00463{width:89.430600px;}
._73_c00463{width:94.855200px;}
._40_c00463{width:97.344000px;}
._12_c00463{width:100.800000px;}
._4d_c00463{width:103.920000px;}
._3e_c00463{width:105.294000px;}
._48_c00463{width:107.916000px;}
._1_c00463{width:109.008000px;}
._46_c00463{width:114.708000px;}
._7b_c00463{width:118.542000px;}
._55_c00463{width:121.947000px;}
._36_c00463{width:123.816000px;}
._75_c00463{width:131.196000px;}
._65_c00463{width:136.014000px;}
._60_c00463{width:150.456000px;}
._49_c00463{width:172.218000px;}
._c_c00463{width:177.984000px;}
._57_c00463{width:186.114000px;}
._32_c00463{width:192.312000px;}
._44_c00463{width:195.714000px;}
._2b_c00463{width:197.754000px;}
._21_c00463{width:210.396000px;}
._42_c00463{width:214.662000px;}
._7a_c00463{width:216.369000px;}
._72_c00463{width:226.521600px;}
._56_c00463{width:247.353600px;}
._54_c00463{width:253.104000px;}
._51_c00463{width:260.904000px;}
._47_c00463{width:263.448000px;}
._4e_c00463{width:278.760000px;}
._3a_c00463{width:282.252000px;}
._77_c00463{width:286.878000px;}
._20_c00463{width:289.842000px;}
._5d_c00463{width:301.200000px;}
._4b_c00463{width:315.636000px;}
._3b_c00463{width:345.129000px;}
._7c_c00463{width:358.419000px;}
._52_c00463{width:400.209000px;}
._1d_c00463{width:467.244000px;}
._4f_c00463{width:485.007000px;}
._59_c00463{width:497.688000px;}
._61_c00463{width:533.535000px;}
._4c_c00463{width:706.851000px;}
._5e_c00463{width:727.488000px;}
.fc2_c00463{color:transparent;}
.fc1_c00463{color:rgb(128,128,128);}
.fc0_c00463{color:rgb(0,0,0);}
.fs8_c00463{font-size:30.000000px;}
.fsd_c00463{font-size:36.000000px;}
.fs2_c00463{font-size:42.000000px;}
.fs10_c00463{font-size:48.000000px;}
.fs9_c00463{font-size:60.000000px;}
.fs1_c00463{font-size:63.000000px;}
.fse_c00463{font-size:67.200000px;}
.fsc_c00463{font-size:76.800000px;}
.fsb_c00463{font-size:81.000000px;}
.fs6_c00463{font-size:81.600000px;}
.fsf_c00463{font-size:84.000000px;}
.fs3_c00463{font-size:87.000000px;}
.fs4_c00463{font-size:96.000000px;}
.fs5_c00463{font-size:102.000000px;}
.fsa_c00463{font-size:114.000000px;}
.fs0_c00463{font-size:144.000000px;}
.fs7_c00463{font-size:180.000000px;}
.y0_c00463{bottom:0.000000px;}
.y2c_c00463{bottom:3.105000px;}
.y2b_c00463{bottom:7.228357px;}
.y2a_c00463{bottom:83.430000px;}
.y29_c00463{bottom:117.480000px;}
.y28_c00463{bottom:123.630000px;}
.y27_c00463{bottom:150.930000px;}
.y26_c00463{bottom:186.630000px;}
.y25_c00463{bottom:222.180000px;}
.y24_c00463{bottom:255.180000px;}
.y23_c00463{bottom:289.530000px;}
.y22_c00463{bottom:323.430000px;}
.y21_c00463{bottom:356.730000px;}
.y20_c00463{bottom:390.480000px;}
.y1f_c00463{bottom:424.530000px;}
.y1e_c00463{bottom:457.380000px;}
.y1d_c00463{bottom:489.480000px;}
.y1c_c00463{bottom:524.880000px;}
.y1b_c00463{bottom:558.180000px;}
.y1a_c00463{bottom:591.330000px;}
.y19_c00463{bottom:625.080000px;}
.y18_c00463{bottom:658.530000px;}
.y17_c00463{bottom:693.330000px;}
.y16_c00463{bottom:725.280000px;}
.y15_c00463{bottom:758.430000px;}
.y14_c00463{bottom:789.480000px;}
.y13_c00463{bottom:825.630000px;}
.y12_c00463{bottom:858.930000px;}
.y11_c00463{bottom:863.430000px;}
.y10_c00463{bottom:872.430000px;}
.yf_c00463{bottom:891.630000px;}
.ye_c00463{bottom:903.930000px;}
.yd_c00463{bottom:920.130000px;}
.y2_c00463{bottom:957.780000px;}
.yc_c00463{bottom:957.930000px;}
.yb_c00463{bottom:966.630000px;}
.y1_c00463{bottom:967.230000px;}
.ya_c00463{bottom:1014.480000px;}
.y9_c00463{bottom:1065.780000px;}
.y8_c00463{bottom:1115.130000px;}
.y7_c00463{bottom:1157.580000px;}
.y6_c00463{bottom:1193.130000px;}
.y5_c00463{bottom:1225.080000px;}
.y4_c00463{bottom:1260.180000px;}
.y3_c00463{bottom:1294.980000px;}
.hc_c00463{height:13.200074px;}
.hd_c00463{height:43.804688px;}
.ha_c00463{height:45.580078px;}
.hb_c00463{height:53.176758px;}
.h8_c00463{height:62.880000px;}
.h9_c00463{height:64.020000px;}
.h3_c00463{height:73.735840px;}
.h4_c00463{height:110.151855px;}
.h5_c00463{height:121.546875px;}
.h6_c00463{height:129.143555px;}
.h2_c00463{height:182.320312px;}
.h7_c00463{height:192.060000px;}
.h0_c00463{height:1382.700000px;}
.h1_c00463{height:1383.000000px;}
.w2_c00463{width:104.875500px;}
.w0_c00463{width:863.175000px;}
.w1_c00463{width:863.250000px;}
.x0_c00463{left:0.000000px;}
.xf_c00463{left:111.450000px;}
.x9_c00463{left:257.850000px;}
.x1_c00463{left:258.900000px;}
.xa_c00463{left:261.600000px;}
.x3_c00463{left:264.300000px;}
.x4_c00463{left:266.400000px;}
.x12_c00463{left:267.600000px;}
.x13_c00463{left:271.350000px;}
.xd_c00463{left:274.800000px;}
.x11_c00463{left:276.750000px;}
.xe_c00463{left:286.650000px;}
.x2_c00463{left:304.050000px;}
.xc_c00463{left:323.100000px;}
.x5_c00463{left:336.900000px;}
.x10_c00463{left:343.650000px;}
.x6_c00463{left:354.600000px;}
.x17_c00463{left:383.401749px;}
.x15_c00463{left:423.150000px;}
.x14_c00463{left:442.800000px;}
.x7_c00463{left:456.000000px;}
.x8_c00463{left:470.100000px;}
.xb_c00463{left:681.450000px;}
.x16_c00463{left:790.800000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls6_c00463{letter-spacing:-2.666667pt;}
.ls3_c00463{letter-spacing:0.000000pt;}
.ls7_c00463{letter-spacing:2.666667pt;}
.ls5_c00463{letter-spacing:5.333333pt;}
.ls8_c00463{letter-spacing:8.000000pt;}
.ls0_c00463{letter-spacing:8.042667pt;}
.ls4_c00463{letter-spacing:10.666667pt;}
.ls1_c00463{letter-spacing:28.258133pt;}
.ls2_c00463{letter-spacing:33.600000pt;}
.ws7_c00463{word-spacing:-56.448000pt;}
.ws8_c00463{word-spacing:-33.386667pt;}
.ws2_c00463{word-spacing:-29.653333pt;}
.ws6_c00463{word-spacing:-28.821333pt;}
.ws1_c00463{word-spacing:-28.362667pt;}
.ws5_c00463{word-spacing:-26.637333pt;}
.ws0_c00463{word-spacing:-23.756800pt;}
.ws3_c00463{word-spacing:-20.565333pt;}
.ws4_c00463{word-spacing:-16.452267pt;}
.ws9_c00463{word-spacing:-9.482667pt;}
.wsa_c00463{word-spacing:0.000000pt;}
._74_c00463{margin-left:-69.928000pt;}
._58_c00463{margin-left:-65.037333pt;}
._29_c00463{margin-left:-60.405333pt;}
._78_c00463{margin-left:-55.989333pt;}
._76_c00463{margin-left:-49.053333pt;}
._43_c00463{margin-left:-39.341333pt;}
._24_c00463{margin-left:-37.464000pt;}
._4_c00463{margin-left:-35.584000pt;}
._2_c00463{margin-left:-34.048000pt;}
._79_c00463{margin-left:-33.122667pt;}
._26_c00463{margin-left:-31.890667pt;}
._3d_c00463{margin-left:-30.963200pt;}
._5a_c00463{margin-left:-29.773333pt;}
._14_c00463{margin-left:-27.608000pt;}
._b_c00463{margin-left:-25.728000pt;}
._2a_c00463{margin-left:-24.669333pt;}
._37_c00463{margin-left:-23.461333pt;}
._7e_c00463{margin-left:-22.400000pt;}
._8_c00463{margin-left:-21.504000pt;}
._38_c00463{margin-left:-20.576000pt;}
._66_c00463{margin-left:-19.648000pt;}
._6_c00463{margin-left:-18.304000pt;}
._63_c00463{margin-left:-17.144000pt;}
._2d_c00463{margin-left:-16.221333pt;}
._64_c00463{margin-left:-15.002667pt;}
._9_c00463{margin-left:-14.080000pt;}
._0_c00463{margin-left:-12.416000pt;}
._16_c00463{margin-left:-11.088000pt;}
._39_c00463{margin-left:-9.730667pt;}
._13_c00463{margin-left:-8.704000pt;}
._17_c00463{margin-left:-7.168000pt;}
._18_c00463{margin-left:-5.712000pt;}
._1a_c00463{margin-left:-4.749333pt;}
._2c_c00463{margin-left:-3.498667pt;}
._22_c00463{margin-left:-2.016000pt;}
._d_c00463{margin-left:-0.896000pt;}
._7_c00463{width:0.896000pt;}
._71_c00463{width:1.797333pt;}
._10_c00463{width:2.688000pt;}
._6b_c00463{width:3.584000pt;}
._f_c00463{width:4.608000pt;}
._1e_c00463{width:6.234667pt;}
._1f_c00463{width:7.616000pt;}
._30_c00463{width:8.786667pt;}
._25_c00463{width:9.744000pt;}
._19_c00463{width:10.976000pt;}
._33_c00463{width:12.416000pt;}
._15_c00463{width:14.280000pt;}
._2e_c00463{width:15.189333pt;}
._6a_c00463{width:16.258667pt;}
._e_c00463{width:17.152000pt;}
._28_c00463{width:19.461333pt;}
._41_c00463{width:21.234667pt;}
._5f_c00463{width:22.904000pt;}
._a_c00463{width:23.936000pt;}
._27_c00463{width:25.125333pt;}
._34_c00463{width:26.653333pt;}
._2f_c00463{width:27.648000pt;}
._6e_c00463{width:28.594667pt;}
._69_c00463{width:29.642667pt;}
._31_c00463{width:31.064000pt;}
._5b_c00463{width:32.093333pt;}
._3c_c00463{width:33.890133pt;}
._11_c00463{width:36.096000pt;}
._50_c00463{width:37.074667pt;}
._6c_c00463{width:38.272000pt;}
._5_c00463{width:39.296000pt;}
._70_c00463{width:40.664000pt;}
._6f_c00463{width:42.538667pt;}
._23_c00463{width:44.576000pt;}
._67_c00463{width:46.181333pt;}
._53_c00463{width:48.629333pt;}
._5c_c00463{width:52.021333pt;}
._6d_c00463{width:53.888000pt;}
._1b_c00463{width:55.813333pt;}
._3_c00463{width:58.496000pt;}
._1c_c00463{width:60.565333pt;}
._62_c00463{width:61.834667pt;}
._68_c00463{width:64.149333pt;}
._45_c00463{width:65.637333pt;}
._35_c00463{width:66.688000pt;}
._4a_c00463{width:68.944000pt;}
._3f_c00463{width:73.440000pt;}
._7d_c00463{width:79.493867pt;}
._73_c00463{width:84.315733pt;}
._40_c00463{width:86.528000pt;}
._12_c00463{width:89.600000pt;}
._4d_c00463{width:92.373333pt;}
._3e_c00463{width:93.594667pt;}
._48_c00463{width:95.925333pt;}
._1_c00463{width:96.896000pt;}
._46_c00463{width:101.962667pt;}
._7b_c00463{width:105.370667pt;}
._55_c00463{width:108.397333pt;}
._36_c00463{width:110.058667pt;}
._75_c00463{width:116.618667pt;}
._65_c00463{width:120.901333pt;}
._60_c00463{width:133.738667pt;}
._49_c00463{width:153.082667pt;}
._c_c00463{width:158.208000pt;}
._57_c00463{width:165.434667pt;}
._32_c00463{width:170.944000pt;}
._44_c00463{width:173.968000pt;}
._2b_c00463{width:175.781333pt;}
._21_c00463{width:187.018667pt;}
._42_c00463{width:190.810667pt;}
._7a_c00463{width:192.328000pt;}
._72_c00463{width:201.352533pt;}
._56_c00463{width:219.869867pt;}
._54_c00463{width:224.981333pt;}
._51_c00463{width:231.914667pt;}
._47_c00463{width:234.176000pt;}
._4e_c00463{width:247.786667pt;}
._3a_c00463{width:250.890667pt;}
._77_c00463{width:255.002667pt;}
._20_c00463{width:257.637333pt;}
._5d_c00463{width:267.733333pt;}
._4b_c00463{width:280.565333pt;}
._3b_c00463{width:306.781333pt;}
._7c_c00463{width:318.594667pt;}
._52_c00463{width:355.741333pt;}
._1d_c00463{width:415.328000pt;}
._4f_c00463{width:431.117333pt;}
._59_c00463{width:442.389333pt;}
._61_c00463{width:474.253333pt;}
._4c_c00463{width:628.312000pt;}
._5e_c00463{width:646.656000pt;}
.fs8_c00463{font-size:26.666667pt;}
.fsd_c00463{font-size:32.000000pt;}
.fs2_c00463{font-size:37.333333pt;}
.fs10_c00463{font-size:42.666667pt;}
.fs9_c00463{font-size:53.333333pt;}
.fs1_c00463{font-size:56.000000pt;}
.fse_c00463{font-size:59.733333pt;}
.fsc_c00463{font-size:68.266667pt;}
.fsb_c00463{font-size:72.000000pt;}
.fs6_c00463{font-size:72.533333pt;}
.fsf_c00463{font-size:74.666667pt;}
.fs3_c00463{font-size:77.333333pt;}
.fs4_c00463{font-size:85.333333pt;}
.fs5_c00463{font-size:90.666667pt;}
.fsa_c00463{font-size:101.333333pt;}
.fs0_c00463{font-size:128.000000pt;}
.fs7_c00463{font-size:160.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y2c_c00463{bottom:2.760000pt;}
.y2b_c00463{bottom:6.425206pt;}
.y2a_c00463{bottom:74.160000pt;}
.y29_c00463{bottom:104.426667pt;}
.y28_c00463{bottom:109.893333pt;}
.y27_c00463{bottom:134.160000pt;}
.y26_c00463{bottom:165.893333pt;}
.y25_c00463{bottom:197.493333pt;}
.y24_c00463{bottom:226.826667pt;}
.y23_c00463{bottom:257.360000pt;}
.y22_c00463{bottom:287.493333pt;}
.y21_c00463{bottom:317.093333pt;}
.y20_c00463{bottom:347.093333pt;}
.y1f_c00463{bottom:377.360000pt;}
.y1e_c00463{bottom:406.560000pt;}
.y1d_c00463{bottom:435.093333pt;}
.y1c_c00463{bottom:466.560000pt;}
.y1b_c00463{bottom:496.160000pt;}
.y1a_c00463{bottom:525.626667pt;}
.y19_c00463{bottom:555.626667pt;}
.y18_c00463{bottom:585.360000pt;}
.y17_c00463{bottom:616.293333pt;}
.y16_c00463{bottom:644.693333pt;}
.y15_c00463{bottom:674.160000pt;}
.y14_c00463{bottom:701.760000pt;}
.y13_c00463{bottom:733.893333pt;}
.y12_c00463{bottom:763.493333pt;}
.y11_c00463{bottom:767.493333pt;}
.y10_c00463{bottom:775.493333pt;}
.yf_c00463{bottom:792.560000pt;}
.ye_c00463{bottom:803.493333pt;}
.yd_c00463{bottom:817.893333pt;}
.y2_c00463{bottom:851.360000pt;}
.yc_c00463{bottom:851.493333pt;}
.yb_c00463{bottom:859.226667pt;}
.y1_c00463{bottom:859.760000pt;}
.ya_c00463{bottom:901.760000pt;}
.y9_c00463{bottom:947.360000pt;}
.y8_c00463{bottom:991.226667pt;}
.y7_c00463{bottom:1028.960000pt;}
.y6_c00463{bottom:1060.560000pt;}
.y5_c00463{bottom:1088.960000pt;}
.y4_c00463{bottom:1120.160000pt;}
.y3_c00463{bottom:1151.093333pt;}
.hc_c00463{height:11.733399pt;}
.hd_c00463{height:38.937500pt;}
.ha_c00463{height:40.515625pt;}
.hb_c00463{height:47.268229pt;}
.h8_c00463{height:55.893333pt;}
.h9_c00463{height:56.906667pt;}
.h3_c00463{height:65.542969pt;}
.h4_c00463{height:97.912760pt;}
.h5_c00463{height:108.041667pt;}
.h6_c00463{height:114.794271pt;}
.h2_c00463{height:162.062500pt;}
.h7_c00463{height:170.720000pt;}
.h0_c00463{height:1229.066667pt;}
.h1_c00463{height:1229.333333pt;}
.w2_c00463{width:93.222667pt;}
.w0_c00463{width:767.266667pt;}
.w1_c00463{width:767.333333pt;}
.x0_c00463{left:0.000000pt;}
.xf_c00463{left:99.066667pt;}
.x9_c00463{left:229.200000pt;}
.x1_c00463{left:230.133333pt;}
.xa_c00463{left:232.533333pt;}
.x3_c00463{left:234.933333pt;}
.x4_c00463{left:236.800000pt;}
.x12_c00463{left:237.866667pt;}
.x13_c00463{left:241.200000pt;}
.xd_c00463{left:244.266667pt;}
.x11_c00463{left:246.000000pt;}
.xe_c00463{left:254.800000pt;}
.x2_c00463{left:270.266667pt;}
.xc_c00463{left:287.200000pt;}
.x5_c00463{left:299.466667pt;}
.x10_c00463{left:305.466667pt;}
.x6_c00463{left:315.200000pt;}
.x17_c00463{left:340.801554pt;}
.x15_c00463{left:376.133333pt;}
.x14_c00463{left:393.600000pt;}
.x7_c00463{left:405.333333pt;}
.x8_c00463{left:417.866667pt;}
.xb_c00463{left:605.733333pt;}
.x16_c00463{left:702.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ae74d599bf74a0cd1eed910.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_1e7a660bec8a4409f05a3e15.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_e2fecb9e068d089a80bd089e.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;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_c00464;src:url('chunks/assets/font_fe0939ee03dd8afeca6a8de4.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.314453;font-style:normal;font-weight:normal;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_b904d5f91a9bf6ea0b595f22.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00464;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00464{font-family:ff7_c00464;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00464{vertical-align:-11.400000px;}
.v0_c00464{vertical-align:0.000000px;}
.ls2_c00464{letter-spacing:0.000000px;}
.ls5_c00464{letter-spacing:6.000000px;}
.ls0_c00464{letter-spacing:8.064000px;}
.ls4_c00464{letter-spacing:9.000000px;}
.ls1_c00464{letter-spacing:27.000000px;}
.ls3_c00464{letter-spacing:33.000000px;}
.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:-20.244000px;}
.ws1_c00464{word-spacing:-6.102000px;}
.ws2_c00464{word-spacing:0.000000px;}
._24_c00464{margin-left:-63.840000px;}
._2e_c00464{margin-left:-38.592000px;}
._31_c00464{margin-left:-36.288000px;}
._30_c00464{margin-left:-34.656000px;}
._2f_c00464{margin-left:-26.592000px;}
._40_c00464{margin-left:-23.571000px;}
._25_c00464{margin-left:-20.160000px;}
._35_c00464{margin-left:-18.804000px;}
._3d_c00464{margin-left:-17.208000px;}
._37_c00464{margin-left:-14.424000px;}
._34_c00464{margin-left:-10.248000px;}
._f_c00464{margin-left:-9.072000px;}
._12_c00464{margin-left:-7.776000px;}
._11_c00464{margin-left:-6.048000px;}
._e_c00464{margin-left:-4.464000px;}
._c_c00464{margin-left:-3.312000px;}
._b_c00464{margin-left:-2.304000px;}
._26_c00464{margin-left:-1.056000px;}
._17_c00464{width:1.776000px;}
._0_c00464{width:3.168000px;}
._1_c00464{width:4.464000px;}
._14_c00464{width:6.432000px;}
._a_c00464{width:7.776000px;}
._27_c00464{width:9.216000px;}
._2b_c00464{width:10.752000px;}
._1b_c00464{width:12.144000px;}
._21_c00464{width:13.920000px;}
._6_c00464{width:15.840000px;}
._8_c00464{width:16.848000px;}
._7_c00464{width:18.576000px;}
._9_c00464{width:19.584000px;}
._3_c00464{width:21.888000px;}
._4_c00464{width:24.624000px;}
._19_c00464{width:26.100000px;}
._23_c00464{width:28.476000px;}
._18_c00464{width:30.504000px;}
._32_c00464{width:32.352000px;}
._d_c00464{width:33.408000px;}
._28_c00464{width:35.160000px;}
._22_c00464{width:36.336000px;}
._2a_c00464{width:37.764000px;}
._38_c00464{width:38.976000px;}
._10_c00464{width:40.032000px;}
._13_c00464{width:42.480000px;}
._39_c00464{width:43.488000px;}
._36_c00464{width:44.772000px;}
._1a_c00464{width:45.840000px;}
._15_c00464{width:47.760000px;}
._1f_c00464{width:49.824000px;}
._2c_c00464{width:51.120000px;}
._20_c00464{width:53.712000px;}
._1e_c00464{width:55.488000px;}
._1c_c00464{width:56.544000px;}
._33_c00464{width:60.384000px;}
._3a_c00464{width:62.304000px;}
._1d_c00464{width:65.088000px;}
._3e_c00464{width:77.616000px;}
._29_c00464{width:82.416000px;}
._3b_c00464{width:86.640000px;}
._3c_c00464{width:89.040000px;}
._2_c00464{width:93.456000px;}
._5_c00464{width:98.208000px;}
._2d_c00464{width:140.172000px;}
._16_c00464{width:399.096000px;}
._3f_c00464{width:567.456000px;}
.fc2_c00464{color:transparent;}
.fc1_c00464{color:rgb(128,128,128);}
.fc0_c00464{color:rgb(0,0,0);}
.fs8_c00464{font-size:48.000000px;}
.fs3_c00464{font-size:66.000000px;}
.fs1_c00464{font-size:78.000000px;}
.fs4_c00464{font-size:84.000000px;}
.fs6_c00464{font-size:87.000000px;}
.fs2_c00464{font-size:96.000000px;}
.fs5_c00464{font-size:102.000000px;}
.fs0_c00464{font-size:144.000000px;}
.fs7_c00464{font-size:291.000000px;}
.y0_c00464{bottom:0.000000px;}
.y2b_c00464{bottom:3.105000px;}
.y2a_c00464{bottom:7.228369px;}
.y21_c00464{bottom:110.070000px;}
.y20_c00464{bottom:144.120000px;}
.y1f_c00464{bottom:178.470000px;}
.y1e_c00464{bottom:213.270000px;}
.y1d_c00464{bottom:247.620000px;}
.y1c_c00464{bottom:280.470000px;}
.y1b_c00464{bottom:314.520000px;}
.y1a_c00464{bottom:349.020000px;}
.y19_c00464{bottom:381.420000px;}
.y18_c00464{bottom:415.770000px;}
.y17_c00464{bottom:449.220000px;}
.y16_c00464{bottom:482.970000px;}
.y15_c00464{bottom:517.320000px;}
.y14_c00464{bottom:550.770000px;}
.y13_c00464{bottom:584.520000px;}
.y12_c00464{bottom:618.270000px;}
.y11_c00464{bottom:652.020000px;}
.y10_c00464{bottom:684.720000px;}
.yf_c00464{bottom:718.920000px;}
.ye_c00464{bottom:751.620000px;}
.yd_c00464{bottom:785.970000px;}
.yc_c00464{bottom:818.820000px;}
.yb_c00464{bottom:851.820000px;}
.y29_c00464{bottom:884.520000px;}
.ya_c00464{bottom:885.570000px;}
.y28_c00464{bottom:914.520000px;}
.y9_c00464{bottom:918.270000px;}
.y27_c00464{bottom:944.670000px;}
.y8_c00464{bottom:952.020000px;}
.y26_c00464{bottom:974.370000px;}
.y7_c00464{bottom:985.170000px;}
.y25_c00464{bottom:1003.620000px;}
.y6_c00464{bottom:1018.170000px;}
.y24_c00464{bottom:1033.020000px;}
.y5_c00464{bottom:1051.320000px;}
.y23_c00464{bottom:1063.020000px;}
.y4_c00464{bottom:1087.470000px;}
.y22_c00464{bottom:1089.120000px;}
.y3_c00464{bottom:1126.920000px;}
.y2_c00464{bottom:1225.020000px;}
.y1_c00464{bottom:1275.120000px;}
.h9_c00464{height:13.200073px;}
.ha_c00464{height:43.804688px;}
.h3_c00464{height:91.291992px;}
.h7_c00464{height:98.756836px;}
.h5_c00464{height:106.353516px;}
.h6_c00464{height:110.151855px;}
.h4_c00464{height:121.546875px;}
.h2_c00464{height:182.320312px;}
.h8_c00464{height:310.497000px;}
.h0_c00464{height:1383.450000px;}
.h1_c00464{height:1383.750000px;}
.w2_c00464{width:104.875500px;}
.w0_c00464{width:878.025000px;}
.w1_c00464{width:878.250000px;}
.x0_c00464{left:0.000000px;}
.xb_c00464{left:23.400000px;}
.xa_c00464{left:25.050000px;}
.x9_c00464{left:26.100000px;}
.xc_c00464{left:27.300000px;}
.x8_c00464{left:28.800000px;}
.x7_c00464{left:30.000000px;}
.x1_c00464{left:58.050000px;}
.x4_c00464{left:87.750000px;}
.x2_c00464{left:138.000000px;}
.x3_c00464{left:165.300000px;}
.xd_c00464{left:286.200000px;}
.x5_c00464{left:291.300000px;}
.x6_c00464{left:292.950000px;}
.x13_c00464{left:390.826721px;}
.xe_c00464{left:620.700000px;}
.x11_c00464{left:621.750000px;}
.x10_c00464{left:635.850000px;}
.xf_c00464{left:648.300000px;}
.x12_c00464{left:655.200000px;}
@media print{
.v1_c00464{vertical-align:-10.133333pt;}
.v0_c00464{vertical-align:0.000000pt;}
.ls2_c00464{letter-spacing:0.000000pt;}
.ls5_c00464{letter-spacing:5.333333pt;}
.ls0_c00464{letter-spacing:7.168000pt;}
.ls4_c00464{letter-spacing:8.000000pt;}
.ls1_c00464{letter-spacing:24.000000pt;}
.ls3_c00464{letter-spacing:29.333333pt;}
.ws0_c00464{word-spacing:-17.994667pt;}
.ws1_c00464{word-spacing:-5.424000pt;}
.ws2_c00464{word-spacing:0.000000pt;}
._24_c00464{margin-left:-56.746667pt;}
._2e_c00464{margin-left:-34.304000pt;}
._31_c00464{margin-left:-32.256000pt;}
._30_c00464{margin-left:-30.805333pt;}
._2f_c00464{margin-left:-23.637333pt;}
._40_c00464{margin-left:-20.952000pt;}
._25_c00464{margin-left:-17.920000pt;}
._35_c00464{margin-left:-16.714667pt;}
._3d_c00464{margin-left:-15.296000pt;}
._37_c00464{margin-left:-12.821333pt;}
._34_c00464{margin-left:-9.109333pt;}
._f_c00464{margin-left:-8.064000pt;}
._12_c00464{margin-left:-6.912000pt;}
._11_c00464{margin-left:-5.376000pt;}
._e_c00464{margin-left:-3.968000pt;}
._c_c00464{margin-left:-2.944000pt;}
._b_c00464{margin-left:-2.048000pt;}
._26_c00464{margin-left:-0.938667pt;}
._17_c00464{width:1.578667pt;}
._0_c00464{width:2.816000pt;}
._1_c00464{width:3.968000pt;}
._14_c00464{width:5.717333pt;}
._a_c00464{width:6.912000pt;}
._27_c00464{width:8.192000pt;}
._2b_c00464{width:9.557333pt;}
._1b_c00464{width:10.794667pt;}
._21_c00464{width:12.373333pt;}
._6_c00464{width:14.080000pt;}
._8_c00464{width:14.976000pt;}
._7_c00464{width:16.512000pt;}
._9_c00464{width:17.408000pt;}
._3_c00464{width:19.456000pt;}
._4_c00464{width:21.888000pt;}
._19_c00464{width:23.200000pt;}
._23_c00464{width:25.312000pt;}
._18_c00464{width:27.114667pt;}
._32_c00464{width:28.757333pt;}
._d_c00464{width:29.696000pt;}
._28_c00464{width:31.253333pt;}
._22_c00464{width:32.298667pt;}
._2a_c00464{width:33.568000pt;}
._38_c00464{width:34.645333pt;}
._10_c00464{width:35.584000pt;}
._13_c00464{width:37.760000pt;}
._39_c00464{width:38.656000pt;}
._36_c00464{width:39.797333pt;}
._1a_c00464{width:40.746667pt;}
._15_c00464{width:42.453333pt;}
._1f_c00464{width:44.288000pt;}
._2c_c00464{width:45.440000pt;}
._20_c00464{width:47.744000pt;}
._1e_c00464{width:49.322667pt;}
._1c_c00464{width:50.261333pt;}
._33_c00464{width:53.674667pt;}
._3a_c00464{width:55.381333pt;}
._1d_c00464{width:57.856000pt;}
._3e_c00464{width:68.992000pt;}
._29_c00464{width:73.258667pt;}
._3b_c00464{width:77.013333pt;}
._3c_c00464{width:79.146667pt;}
._2_c00464{width:83.072000pt;}
._5_c00464{width:87.296000pt;}
._2d_c00464{width:124.597333pt;}
._16_c00464{width:354.752000pt;}
._3f_c00464{width:504.405333pt;}
.fs8_c00464{font-size:42.666667pt;}
.fs3_c00464{font-size:58.666667pt;}
.fs1_c00464{font-size:69.333333pt;}
.fs4_c00464{font-size:74.666667pt;}
.fs6_c00464{font-size:77.333333pt;}
.fs2_c00464{font-size:85.333333pt;}
.fs5_c00464{font-size:90.666667pt;}
.fs0_c00464{font-size:128.000000pt;}
.fs7_c00464{font-size:258.666667pt;}
.y0_c00464{bottom:0.000000pt;}
.y2b_c00464{bottom:2.760000pt;}
.y2a_c00464{bottom:6.425217pt;}
.y21_c00464{bottom:97.840000pt;}
.y20_c00464{bottom:128.106667pt;}
.y1f_c00464{bottom:158.640000pt;}
.y1e_c00464{bottom:189.573333pt;}
.y1d_c00464{bottom:220.106667pt;}
.y1c_c00464{bottom:249.306667pt;}
.y1b_c00464{bottom:279.573333pt;}
.y1a_c00464{bottom:310.240000pt;}
.y19_c00464{bottom:339.040000pt;}
.y18_c00464{bottom:369.573333pt;}
.y17_c00464{bottom:399.306667pt;}
.y16_c00464{bottom:429.306667pt;}
.y15_c00464{bottom:459.840000pt;}
.y14_c00464{bottom:489.573333pt;}
.y13_c00464{bottom:519.573333pt;}
.y12_c00464{bottom:549.573333pt;}
.y11_c00464{bottom:579.573333pt;}
.y10_c00464{bottom:608.640000pt;}
.yf_c00464{bottom:639.040000pt;}
.ye_c00464{bottom:668.106667pt;}
.yd_c00464{bottom:698.640000pt;}
.yc_c00464{bottom:727.840000pt;}
.yb_c00464{bottom:757.173333pt;}
.y29_c00464{bottom:786.240000pt;}
.ya_c00464{bottom:787.173333pt;}
.y28_c00464{bottom:812.906667pt;}
.y9_c00464{bottom:816.240000pt;}
.y27_c00464{bottom:839.706667pt;}
.y8_c00464{bottom:846.240000pt;}
.y26_c00464{bottom:866.106667pt;}
.y7_c00464{bottom:875.706667pt;}
.y25_c00464{bottom:892.106667pt;}
.y6_c00464{bottom:905.040000pt;}
.y24_c00464{bottom:918.240000pt;}
.y5_c00464{bottom:934.506667pt;}
.y23_c00464{bottom:944.906667pt;}
.y4_c00464{bottom:966.640000pt;}
.y22_c00464{bottom:968.106667pt;}
.y3_c00464{bottom:1001.706667pt;}
.y2_c00464{bottom:1088.906667pt;}
.y1_c00464{bottom:1133.440000pt;}
.h9_c00464{height:11.733399pt;}
.ha_c00464{height:38.937500pt;}
.h3_c00464{height:81.148438pt;}
.h7_c00464{height:87.783854pt;}
.h5_c00464{height:94.536458pt;}
.h6_c00464{height:97.912760pt;}
.h4_c00464{height:108.041667pt;}
.h2_c00464{height:162.062500pt;}
.h8_c00464{height:275.997333pt;}
.h0_c00464{height:1229.733333pt;}
.h1_c00464{height:1230.000000pt;}
.w2_c00464{width:93.222667pt;}
.w0_c00464{width:780.466667pt;}
.w1_c00464{width:780.666667pt;}
.x0_c00464{left:0.000000pt;}
.xb_c00464{left:20.800000pt;}
.xa_c00464{left:22.266667pt;}
.x9_c00464{left:23.200000pt;}
.xc_c00464{left:24.266667pt;}
.x8_c00464{left:25.600000pt;}
.x7_c00464{left:26.666667pt;}
.x1_c00464{left:51.600000pt;}
.x4_c00464{left:78.000000pt;}
.x2_c00464{left:122.666667pt;}
.x3_c00464{left:146.933333pt;}
.xd_c00464{left:254.400000pt;}
.x5_c00464{left:258.933333pt;}
.x6_c00464{left:260.400000pt;}
.x13_c00464{left:347.401530pt;}
.xe_c00464{left:551.733333pt;}
.x11_c00464{left:552.666667pt;}
.x10_c00464{left:565.200000pt;}
.xf_c00464{left:576.266667pt;}
.x12_c00464{left:582.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_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_023b6021495ac06b6ca0a524.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_f50a83eec6ac4dbde82a8fbd.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00465{word-spacing:-63.504000px;}
.ws2_c00465{word-spacing:-27.474000px;}
.ws0_c00465{word-spacing:-23.136000px;}
.ws3_c00465{word-spacing:0.000000px;}
._31_c00465{margin-left:-41.280000px;}
._22_c00465{margin-left:-33.984000px;}
._2_c00465{margin-left:-13.824000px;}
._37_c00465{margin-left:-12.192000px;}
._28_c00465{margin-left:-10.944000px;}
._2a_c00465{margin-left:-9.696000px;}
._29_c00465{margin-left:-7.968000px;}
._2c_c00465{margin-left:-6.624000px;}
._c_c00465{margin-left:-4.800000px;}
._13_c00465{margin-left:-2.496000px;}
._0_c00465{margin-left:-1.440000px;}
._a_c00465{width:1.728000px;}
._8_c00465{width:3.456000px;}
._19_c00465{width:4.896000px;}
._6_c00465{width:5.952000px;}
._10_c00465{width:7.104000px;}
._f_c00465{width:8.544000px;}
._5_c00465{width:10.368000px;}
._4_c00465{width:11.616000px;}
._d_c00465{width:13.344000px;}
._b_c00465{width:14.880000px;}
._16_c00465{width:16.416000px;}
._27_c00465{width:18.336000px;}
._1c_c00465{width:19.392000px;}
._2f_c00465{width:21.120000px;}
._2e_c00465{width:24.288000px;}
._18_c00465{width:25.440000px;}
._1_c00465{width:27.552000px;}
._17_c00465{width:29.280000px;}
._1b_c00465{width:31.296000px;}
._1e_c00465{width:32.640000px;}
._9_c00465{width:33.984000px;}
._20_c00465{width:35.040000px;}
._3_c00465{width:36.288000px;}
._21_c00465{width:38.496000px;}
._7_c00465{width:40.512000px;}
._1a_c00465{width:42.624000px;}
._2d_c00465{width:43.680000px;}
._11_c00465{width:44.928000px;}
._12_c00465{width:47.520000px;}
._24_c00465{width:49.728000px;}
._15_c00465{width:52.224000px;}
._1f_c00465{width:53.664000px;}
._2b_c00465{width:55.488000px;}
._23_c00465{width:56.640000px;}
._38_c00465{width:58.176000px;}
._14_c00465{width:60.192000px;}
._34_c00465{width:62.112000px;}
._33_c00465{width:64.608000px;}
._39_c00465{width:66.720000px;}
._25_c00465{width:68.064000px;}
._30_c00465{width:69.600000px;}
._35_c00465{width:74.784000px;}
._36_c00465{width:76.128000px;}
._26_c00465{width:79.104000px;}
._e_c00465{width:84.576000px;}
._32_c00465{width:105.600000px;}
._1d_c00465{width:176.256000px;}
.fc2_c00465{color:transparent;}
.fc1_c00465{color:rgb(128,128,128);}
.fc0_c00465{color:rgb(0,0,0);}
.fs3_c00465{font-size:48.000000px;}
.fs1_c00465{font-size:84.000000px;}
.fs0_c00465{font-size:96.000000px;}
.fs2_c00465{font-size:114.000000px;}
.y0_c00465{bottom:0.000000px;}
.y26_c00465{bottom:3.105000px;}
.y25_c00465{bottom:7.228357px;}
.y24_c00465{bottom:108.780000px;}
.y23_c00465{bottom:143.880000px;}
.y22_c00465{bottom:178.230000px;}
.y21_c00465{bottom:212.580000px;}
.y20_c00465{bottom:246.480000px;}
.y1f_c00465{bottom:279.780000px;}
.y1e_c00465{bottom:314.880000px;}
.y1d_c00465{bottom:348.630000px;}
.y1c_c00465{bottom:381.780000px;}
.y1b_c00465{bottom:415.530000px;}
.y1a_c00465{bottom:452.280000px;}
.y19_c00465{bottom:482.730000px;}
.y18_c00465{bottom:517.680000px;}
.y17_c00465{bottom:551.880000px;}
.y16_c00465{bottom:585.330000px;}
.y15_c00465{bottom:619.530000px;}
.y14_c00465{bottom:652.980000px;}
.y13_c00465{bottom:686.430000px;}
.y12_c00465{bottom:719.880000px;}
.y11_c00465{bottom:753.330000px;}
.y10_c00465{bottom:786.330000px;}
.yf_c00465{bottom:820.230000px;}
.ye_c00465{bottom:853.980000px;}
.yd_c00465{bottom:887.280000px;}
.yc_c00465{bottom:921.480000px;}
.yb_c00465{bottom:954.780000px;}
.ya_c00465{bottom:988.530000px;}
.y9_c00465{bottom:1021.380000px;}
.y8_c00465{bottom:1054.680000px;}
.y7_c00465{bottom:1087.830000px;}
.y6_c00465{bottom:1121.280000px;}
.y5_c00465{bottom:1155.330000px;}
.y4_c00465{bottom:1188.330000px;}
.y3_c00465{bottom:1222.530000px;}
.y2_c00465{bottom:1255.530000px;}
.y1_c00465{bottom:1288.680000px;}
.h4_c00465{height:13.200074px;}
.h5_c00465{height:43.804688px;}
.h2_c00465{height:121.546875px;}
.h3_c00465{height:144.336914px;}
.h0_c00465{height:1382.700000px;}
.h1_c00465{height:1383.000000px;}
.w2_c00465{width:104.875500px;}
.w0_c00465{width:863.175000px;}
.w1_c00465{width:863.250000px;}
.x0_c00465{left:0.000000px;}
.xc_c00465{left:252.900000px;}
.xa_c00465{left:254.100000px;}
.xb_c00465{left:255.150000px;}
.x9_c00465{left:256.200000px;}
.x8_c00465{left:257.250000px;}
.x7_c00465{left:258.900000px;}
.x6_c00465{left:259.950000px;}
.x5_c00465{left:261.000000px;}
.x4_c00465{left:262.800000px;}
.x1_c00465{left:263.850000px;}
.x2_c00465{left:264.900000px;}
.x3_c00465{left:316.200000px;}
.xe_c00465{left:383.401749px;}
.xd_c00465{left:776.250000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws1_c00465{word-spacing:-56.448000pt;}
.ws2_c00465{word-spacing:-24.421333pt;}
.ws0_c00465{word-spacing:-20.565333pt;}
.ws3_c00465{word-spacing:0.000000pt;}
._31_c00465{margin-left:-36.693333pt;}
._22_c00465{margin-left:-30.208000pt;}
._2_c00465{margin-left:-12.288000pt;}
._37_c00465{margin-left:-10.837333pt;}
._28_c00465{margin-left:-9.728000pt;}
._2a_c00465{margin-left:-8.618667pt;}
._29_c00465{margin-left:-7.082667pt;}
._2c_c00465{margin-left:-5.888000pt;}
._c_c00465{margin-left:-4.266667pt;}
._13_c00465{margin-left:-2.218667pt;}
._0_c00465{margin-left:-1.280000pt;}
._a_c00465{width:1.536000pt;}
._8_c00465{width:3.072000pt;}
._19_c00465{width:4.352000pt;}
._6_c00465{width:5.290667pt;}
._10_c00465{width:6.314667pt;}
._f_c00465{width:7.594667pt;}
._5_c00465{width:9.216000pt;}
._4_c00465{width:10.325333pt;}
._d_c00465{width:11.861333pt;}
._b_c00465{width:13.226667pt;}
._16_c00465{width:14.592000pt;}
._27_c00465{width:16.298667pt;}
._1c_c00465{width:17.237333pt;}
._2f_c00465{width:18.773333pt;}
._2e_c00465{width:21.589333pt;}
._18_c00465{width:22.613333pt;}
._1_c00465{width:24.490667pt;}
._17_c00465{width:26.026667pt;}
._1b_c00465{width:27.818667pt;}
._1e_c00465{width:29.013333pt;}
._9_c00465{width:30.208000pt;}
._20_c00465{width:31.146667pt;}
._3_c00465{width:32.256000pt;}
._21_c00465{width:34.218667pt;}
._7_c00465{width:36.010667pt;}
._1a_c00465{width:37.888000pt;}
._2d_c00465{width:38.826667pt;}
._11_c00465{width:39.936000pt;}
._12_c00465{width:42.240000pt;}
._24_c00465{width:44.202667pt;}
._15_c00465{width:46.421333pt;}
._1f_c00465{width:47.701333pt;}
._2b_c00465{width:49.322667pt;}
._23_c00465{width:50.346667pt;}
._38_c00465{width:51.712000pt;}
._14_c00465{width:53.504000pt;}
._34_c00465{width:55.210667pt;}
._33_c00465{width:57.429333pt;}
._39_c00465{width:59.306667pt;}
._25_c00465{width:60.501333pt;}
._30_c00465{width:61.866667pt;}
._35_c00465{width:66.474667pt;}
._36_c00465{width:67.669333pt;}
._26_c00465{width:70.314667pt;}
._e_c00465{width:75.178667pt;}
._32_c00465{width:93.866667pt;}
._1d_c00465{width:156.672000pt;}
.fs3_c00465{font-size:42.666667pt;}
.fs1_c00465{font-size:74.666667pt;}
.fs0_c00465{font-size:85.333333pt;}
.fs2_c00465{font-size:101.333333pt;}
.y0_c00465{bottom:0.000000pt;}
.y26_c00465{bottom:2.760000pt;}
.y25_c00465{bottom:6.425206pt;}
.y24_c00465{bottom:96.693333pt;}
.y23_c00465{bottom:127.893333pt;}
.y22_c00465{bottom:158.426667pt;}
.y21_c00465{bottom:188.960000pt;}
.y20_c00465{bottom:219.093333pt;}
.y1f_c00465{bottom:248.693333pt;}
.y1e_c00465{bottom:279.893333pt;}
.y1d_c00465{bottom:309.893333pt;}
.y1c_c00465{bottom:339.360000pt;}
.y1b_c00465{bottom:369.360000pt;}
.y1a_c00465{bottom:402.026667pt;}
.y19_c00465{bottom:429.093333pt;}
.y18_c00465{bottom:460.160000pt;}
.y17_c00465{bottom:490.560000pt;}
.y16_c00465{bottom:520.293333pt;}
.y15_c00465{bottom:550.693333pt;}
.y14_c00465{bottom:580.426667pt;}
.y13_c00465{bottom:610.160000pt;}
.y12_c00465{bottom:639.893333pt;}
.y11_c00465{bottom:669.626667pt;}
.y10_c00465{bottom:698.960000pt;}
.yf_c00465{bottom:729.093333pt;}
.ye_c00465{bottom:759.093333pt;}
.yd_c00465{bottom:788.693333pt;}
.yc_c00465{bottom:819.093333pt;}
.yb_c00465{bottom:848.693333pt;}
.ya_c00465{bottom:878.693333pt;}
.y9_c00465{bottom:907.893333pt;}
.y8_c00465{bottom:937.493333pt;}
.y7_c00465{bottom:966.960000pt;}
.y6_c00465{bottom:996.693333pt;}
.y5_c00465{bottom:1026.960000pt;}
.y4_c00465{bottom:1056.293333pt;}
.y3_c00465{bottom:1086.693333pt;}
.y2_c00465{bottom:1116.026667pt;}
.y1_c00465{bottom:1145.493333pt;}
.h4_c00465{height:11.733399pt;}
.h5_c00465{height:38.937500pt;}
.h2_c00465{height:108.041667pt;}
.h3_c00465{height:128.299479pt;}
.h0_c00465{height:1229.066667pt;}
.h1_c00465{height:1229.333333pt;}
.w2_c00465{width:93.222667pt;}
.w0_c00465{width:767.266667pt;}
.w1_c00465{width:767.333333pt;}
.x0_c00465{left:0.000000pt;}
.xc_c00465{left:224.800000pt;}
.xa_c00465{left:225.866667pt;}
.xb_c00465{left:226.800000pt;}
.x9_c00465{left:227.733333pt;}
.x8_c00465{left:228.666667pt;}
.x7_c00465{left:230.133333pt;}
.x6_c00465{left:231.066667pt;}
.x5_c00465{left:232.000000pt;}
.x4_c00465{left:233.600000pt;}
.x1_c00465{left:234.533333pt;}
.x2_c00465{left:235.466667pt;}
.x3_c00465{left:281.066667pt;}
.xe_c00465{left:340.801554pt;}
.xd_c00465{left:690.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_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_a14e3765c2557f5d01029eb6.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_bdbe7adb4762ca3bc4a3a3d8.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_40dba581ef19d68819630ee2.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_355134953a3a6e7b2a0a77a1.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls3_c00466{letter-spacing:0.000000px;}
.ls6_c00466{letter-spacing:3.000000px;}
.ls5_c00466{letter-spacing:9.000000px;}
.ls2_c00466{letter-spacing:13.320000px;}
.ls4_c00466{letter-spacing:18.000000px;}
.ls1_c00466{letter-spacing:62.100000px;}
.ls0_c00466{letter-spacing:97.896000px;}
.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:-52.704000px;}
.ws2_c00466{word-spacing:-29.967000px;}
.ws4_c00466{word-spacing:-27.798000px;}
.ws3_c00466{word-spacing:-23.136000px;}
.ws0_c00466{word-spacing:-20.244000px;}
.ws5_c00466{word-spacing:-18.798000px;}
.ws6_c00466{word-spacing:0.000000px;}
._32_c00466{margin-left:-46.752000px;}
._35_c00466{margin-left:-42.816000px;}
._3a_c00466{margin-left:-36.288000px;}
._36_c00466{margin-left:-33.312000px;}
._2a_c00466{margin-left:-28.896000px;}
._29_c00466{margin-left:-27.648000px;}
._4a_c00466{margin-left:-25.056000px;}
._47_c00466{margin-left:-23.232000px;}
._38_c00466{margin-left:-19.872000px;}
._39_c00466{margin-left:-17.856000px;}
._31_c00466{margin-left:-16.791000px;}
._4c_c00466{margin-left:-14.181000px;}
._27_c00466{margin-left:-11.712000px;}
._21_c00466{margin-left:-10.272000px;}
._17_c00466{margin-left:-9.204000px;}
._54_c00466{margin-left:-7.968000px;}
._41_c00466{margin-left:-6.924000px;}
._42_c00466{margin-left:-4.992000px;}
._11_c00466{margin-left:-3.492000px;}
._c_c00466{margin-left:-2.208000px;}
._40_c00466{margin-left:-1.086000px;}
._1_c00466{width:1.632000px;}
._8_c00466{width:2.688000px;}
._0_c00466{width:3.840000px;}
._6_c00466{width:5.568000px;}
._4_c00466{width:7.488000px;}
._d_c00466{width:9.024000px;}
._5_c00466{width:10.176000px;}
._10_c00466{width:11.316000px;}
._16_c00466{width:13.248000px;}
._15_c00466{width:15.072000px;}
._2f_c00466{width:16.128000px;}
._14_c00466{width:17.568000px;}
._a_c00466{width:19.968000px;}
._2b_c00466{width:21.600000px;}
._2c_c00466{width:24.576000px;}
._20_c00466{width:25.632000px;}
._18_c00466{width:27.744000px;}
._1c_c00466{width:29.088000px;}
._13_c00466{width:30.432000px;}
._b_c00466{width:31.584000px;}
._55_c00466{width:32.748000px;}
._22_c00466{width:34.176000px;}
._3_c00466{width:35.424000px;}
._9_c00466{width:36.864000px;}
._2_c00466{width:38.592000px;}
._3f_c00466{width:39.636000px;}
._1b_c00466{width:40.704000px;}
._1d_c00466{width:42.432000px;}
._1f_c00466{width:43.584000px;}
._1e_c00466{width:45.024000px;}
._7_c00466{width:46.176000px;}
._19_c00466{width:47.712000px;}
._e_c00466{width:49.248000px;}
._1a_c00466{width:50.496000px;}
._12_c00466{width:52.224000px;}
._f_c00466{width:54.072000px;}
._3c_c00466{width:55.680000px;}
._23_c00466{width:58.080000px;}
._25_c00466{width:60.384000px;}
._24_c00466{width:61.824000px;}
._28_c00466{width:63.516000px;}
._26_c00466{width:64.620000px;}
._46_c00466{width:66.432000px;}
._51_c00466{width:67.476000px;}
._43_c00466{width:71.706000px;}
._34_c00466{width:75.744000px;}
._45_c00466{width:79.392000px;}
._44_c00466{width:81.504000px;}
._30_c00466{width:98.832000px;}
._2e_c00466{width:107.772000px;}
._49_c00466{width:124.464000px;}
._4f_c00466{width:148.752000px;}
._2d_c00466{width:165.888000px;}
._37_c00466{width:169.152000px;}
._4d_c00466{width:171.912000px;}
._3b_c00466{width:180.384000px;}
._53_c00466{width:192.192000px;}
._33_c00466{width:197.088000px;}
._52_c00466{width:199.032000px;}
._4e_c00466{width:275.358000px;}
._50_c00466{width:302.334000px;}
._3e_c00466{width:392.904000px;}
._56_c00466{width:672.357000px;}
._48_c00466{width:825.984000px;}
._4b_c00466{width:935.772000px;}
._3d_c00466{width:940.452000px;}
._57_c00466{width:1132.224000px;}
.fc2_c00466{color:transparent;}
.fc1_c00466{color:rgb(128,128,128);}
.fc0_c00466{color:rgb(0,0,0);}
.fs3_c00466{font-size:36.000000px;}
.fs7_c00466{font-size:48.000000px;}
.fs6_c00466{font-size:60.000000px;}
.fs5_c00466{font-size:78.000000px;}
.fs1_c00466{font-size:84.000000px;}
.fs4_c00466{font-size:87.000000px;}
.fs0_c00466{font-size:96.000000px;}
.fs2_c00466{font-size:144.000000px;}
.y0_c00466{bottom:0.000000px;}
.y27_c00466{bottom:3.105000px;}
.y26_c00466{bottom:7.228363px;}
.y25_c00466{bottom:84.600000px;}
.y24_c00466{bottom:118.050000px;}
.y23_c00466{bottom:153.900000px;}
.y22_c00466{bottom:186.900000px;}
.y21_c00466{bottom:220.650000px;}
.y20_c00466{bottom:253.350000px;}
.y1f_c00466{bottom:288.600000px;}
.y1e_c00466{bottom:306.150000px;}
.y1d_c00466{bottom:322.650000px;}
.y1c_c00466{bottom:359.700000px;}
.y1b_c00466{bottom:392.550000px;}
.y1a_c00466{bottom:425.850000px;}
.y19_c00466{bottom:457.350000px;}
.y18_c00466{bottom:490.650000px;}
.y17_c00466{bottom:550.050000px;}
.y16_c00466{bottom:574.650000px;}
.y13_c00466{bottom:615.150000px;}
.y15_c00466{bottom:637.800000px;}
.y14_c00466{bottom:675.300000px;}
.y12_c00466{bottom:693.450000px;}
.y11_c00466{bottom:727.200000px;}
.y10_c00466{bottom:760.350000px;}
.yf_c00466{bottom:794.100000px;}
.ye_c00466{bottom:826.650000px;}
.yd_c00466{bottom:859.650000px;}
.yc_c00466{bottom:893.250000px;}
.yb_c00466{bottom:926.700000px;}
.ya_c00466{bottom:960.150000px;}
.y9_c00466{bottom:993.600000px;}
.y8_c00466{bottom:1026.450000px;}
.y7_c00466{bottom:1060.050000px;}
.y6_c00466{bottom:1092.900000px;}
.y5_c00466{bottom:1126.350000px;}
.y4_c00466{bottom:1159.650000px;}
.y3_c00466{bottom:1192.350000px;}
.y2_c00466{bottom:1225.800000px;}
.y1_c00466{bottom:1258.950000px;}
.h6_c00466{height:13.200074px;}
.h7_c00466{height:43.804688px;}
.h4_c00466{height:45.580078px;}
.h5_c00466{height:110.151855px;}
.h2_c00466{height:121.546875px;}
.h3_c00466{height:182.320312px;}
.h1_c00466{height:1341.750000px;}
.h0_c00466{height:1341.900000px;}
.w2_c00466{width:104.875500px;}
.w1_c00466{width:851.250000px;}
.w0_c00466{width:851.550000px;}
.x0_c00466{left:0.000000px;}
.x8_c00466{left:5.100000px;}
.x9_c00466{left:17.850000px;}
.x6_c00466{left:19.200000px;}
.x7_c00466{left:20.250000px;}
.x5_c00466{left:21.900000px;}
.x3_c00466{left:22.950000px;}
.x4_c00466{left:24.600000px;}
.x2_c00466{left:26.250000px;}
.x1_c00466{left:27.300000px;}
.xd_c00466{left:58.050000px;}
.xe_c00466{left:377.589249px;}
.xc_c00466{left:609.750000px;}
.xa_c00466{left:704.250000px;}
.xb_c00466{left:706.500000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls3_c00466{letter-spacing:0.000000pt;}
.ls6_c00466{letter-spacing:2.666667pt;}
.ls5_c00466{letter-spacing:8.000000pt;}
.ls2_c00466{letter-spacing:11.840000pt;}
.ls4_c00466{letter-spacing:16.000000pt;}
.ls1_c00466{letter-spacing:55.200000pt;}
.ls0_c00466{letter-spacing:87.018667pt;}
.ws1_c00466{word-spacing:-46.848000pt;}
.ws2_c00466{word-spacing:-26.637333pt;}
.ws4_c00466{word-spacing:-24.709333pt;}
.ws3_c00466{word-spacing:-20.565333pt;}
.ws0_c00466{word-spacing:-17.994667pt;}
.ws5_c00466{word-spacing:-16.709333pt;}
.ws6_c00466{word-spacing:0.000000pt;}
._32_c00466{margin-left:-41.557333pt;}
._35_c00466{margin-left:-38.058667pt;}
._3a_c00466{margin-left:-32.256000pt;}
._36_c00466{margin-left:-29.610667pt;}
._2a_c00466{margin-left:-25.685333pt;}
._29_c00466{margin-left:-24.576000pt;}
._4a_c00466{margin-left:-22.272000pt;}
._47_c00466{margin-left:-20.650667pt;}
._38_c00466{margin-left:-17.664000pt;}
._39_c00466{margin-left:-15.872000pt;}
._31_c00466{margin-left:-14.925333pt;}
._4c_c00466{margin-left:-12.605333pt;}
._27_c00466{margin-left:-10.410667pt;}
._21_c00466{margin-left:-9.130667pt;}
._17_c00466{margin-left:-8.181333pt;}
._54_c00466{margin-left:-7.082667pt;}
._41_c00466{margin-left:-6.154667pt;}
._42_c00466{margin-left:-4.437333pt;}
._11_c00466{margin-left:-3.104000pt;}
._c_c00466{margin-left:-1.962667pt;}
._40_c00466{margin-left:-0.965333pt;}
._1_c00466{width:1.450667pt;}
._8_c00466{width:2.389333pt;}
._0_c00466{width:3.413333pt;}
._6_c00466{width:4.949333pt;}
._4_c00466{width:6.656000pt;}
._d_c00466{width:8.021333pt;}
._5_c00466{width:9.045333pt;}
._10_c00466{width:10.058667pt;}
._16_c00466{width:11.776000pt;}
._15_c00466{width:13.397333pt;}
._2f_c00466{width:14.336000pt;}
._14_c00466{width:15.616000pt;}
._a_c00466{width:17.749333pt;}
._2b_c00466{width:19.200000pt;}
._2c_c00466{width:21.845333pt;}
._20_c00466{width:22.784000pt;}
._18_c00466{width:24.661333pt;}
._1c_c00466{width:25.856000pt;}
._13_c00466{width:27.050667pt;}
._b_c00466{width:28.074667pt;}
._55_c00466{width:29.109333pt;}
._22_c00466{width:30.378667pt;}
._3_c00466{width:31.488000pt;}
._9_c00466{width:32.768000pt;}
._2_c00466{width:34.304000pt;}
._3f_c00466{width:35.232000pt;}
._1b_c00466{width:36.181333pt;}
._1d_c00466{width:37.717333pt;}
._1f_c00466{width:38.741333pt;}
._1e_c00466{width:40.021333pt;}
._7_c00466{width:41.045333pt;}
._19_c00466{width:42.410667pt;}
._e_c00466{width:43.776000pt;}
._1a_c00466{width:44.885333pt;}
._12_c00466{width:46.421333pt;}
._f_c00466{width:48.064000pt;}
._3c_c00466{width:49.493333pt;}
._23_c00466{width:51.626667pt;}
._25_c00466{width:53.674667pt;}
._24_c00466{width:54.954667pt;}
._28_c00466{width:56.458667pt;}
._26_c00466{width:57.440000pt;}
._46_c00466{width:59.050667pt;}
._51_c00466{width:59.978667pt;}
._43_c00466{width:63.738667pt;}
._34_c00466{width:67.328000pt;}
._45_c00466{width:70.570667pt;}
._44_c00466{width:72.448000pt;}
._30_c00466{width:87.850667pt;}
._2e_c00466{width:95.797333pt;}
._49_c00466{width:110.634667pt;}
._4f_c00466{width:132.224000pt;}
._2d_c00466{width:147.456000pt;}
._37_c00466{width:150.357333pt;}
._4d_c00466{width:152.810667pt;}
._3b_c00466{width:160.341333pt;}
._53_c00466{width:170.837333pt;}
._33_c00466{width:175.189333pt;}
._52_c00466{width:176.917333pt;}
._4e_c00466{width:244.762667pt;}
._50_c00466{width:268.741333pt;}
._3e_c00466{width:349.248000pt;}
._56_c00466{width:597.650667pt;}
._48_c00466{width:734.208000pt;}
._4b_c00466{width:831.797333pt;}
._3d_c00466{width:835.957333pt;}
._57_c00466{width:1006.421333pt;}
.fs3_c00466{font-size:32.000000pt;}
.fs7_c00466{font-size:42.666667pt;}
.fs6_c00466{font-size:53.333333pt;}
.fs5_c00466{font-size:69.333333pt;}
.fs1_c00466{font-size:74.666667pt;}
.fs4_c00466{font-size:77.333333pt;}
.fs0_c00466{font-size:85.333333pt;}
.fs2_c00466{font-size:128.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y27_c00466{bottom:2.760000pt;}
.y26_c00466{bottom:6.425212pt;}
.y25_c00466{bottom:75.200000pt;}
.y24_c00466{bottom:104.933333pt;}
.y23_c00466{bottom:136.800000pt;}
.y22_c00466{bottom:166.133333pt;}
.y21_c00466{bottom:196.133333pt;}
.y20_c00466{bottom:225.200000pt;}
.y1f_c00466{bottom:256.533333pt;}
.y1e_c00466{bottom:272.133333pt;}
.y1d_c00466{bottom:286.800000pt;}
.y1c_c00466{bottom:319.733333pt;}
.y1b_c00466{bottom:348.933333pt;}
.y1a_c00466{bottom:378.533333pt;}
.y19_c00466{bottom:406.533333pt;}
.y18_c00466{bottom:436.133333pt;}
.y17_c00466{bottom:488.933333pt;}
.y16_c00466{bottom:510.800000pt;}
.y13_c00466{bottom:546.800000pt;}
.y15_c00466{bottom:566.933333pt;}
.y14_c00466{bottom:600.266667pt;}
.y12_c00466{bottom:616.400000pt;}
.y11_c00466{bottom:646.400000pt;}
.y10_c00466{bottom:675.866667pt;}
.yf_c00466{bottom:705.866667pt;}
.ye_c00466{bottom:734.800000pt;}
.yd_c00466{bottom:764.133333pt;}
.yc_c00466{bottom:794.000000pt;}
.yb_c00466{bottom:823.733333pt;}
.ya_c00466{bottom:853.466667pt;}
.y9_c00466{bottom:883.200000pt;}
.y8_c00466{bottom:912.400000pt;}
.y7_c00466{bottom:942.266667pt;}
.y6_c00466{bottom:971.466667pt;}
.y5_c00466{bottom:1001.200000pt;}
.y4_c00466{bottom:1030.800000pt;}
.y3_c00466{bottom:1059.866667pt;}
.y2_c00466{bottom:1089.600000pt;}
.y1_c00466{bottom:1119.066667pt;}
.h6_c00466{height:11.733399pt;}
.h7_c00466{height:38.937500pt;}
.h4_c00466{height:40.515625pt;}
.h5_c00466{height:97.912760pt;}
.h2_c00466{height:108.041667pt;}
.h3_c00466{height:162.062500pt;}
.h1_c00466{height:1192.666667pt;}
.h0_c00466{height:1192.800000pt;}
.w2_c00466{width:93.222667pt;}
.w1_c00466{width:756.666667pt;}
.w0_c00466{width:756.933333pt;}
.x0_c00466{left:0.000000pt;}
.x8_c00466{left:4.533333pt;}
.x9_c00466{left:15.866667pt;}
.x6_c00466{left:17.066667pt;}
.x7_c00466{left:18.000000pt;}
.x5_c00466{left:19.466667pt;}
.x3_c00466{left:20.400000pt;}
.x4_c00466{left:21.866667pt;}
.x2_c00466{left:23.333333pt;}
.x1_c00466{left:24.266667pt;}
.xd_c00466{left:51.600000pt;}
.xe_c00466{left:335.634888pt;}
.xc_c00466{left:542.000000pt;}
.xa_c00466{left:626.000000pt;}
.xb_c00466{left:628.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_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_e96ad8c4422eb908277b1d4e.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_985faa3a59e443cae218e956.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_51facb1fa13ddaba73db5dc8.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls2_c00467{letter-spacing:9.000000px;}
.ls0_c00467{letter-spacing:739.233000px;}
.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;}
}
.ws3_c00467{word-spacing:-29.967000px;}
.ws1_c00467{word-spacing:-29.244000px;}
.ws4_c00467{word-spacing:-23.136000px;}
.ws0_c00467{word-spacing:-20.244000px;}
.ws2_c00467{word-spacing:-18.798000px;}
.ws5_c00467{word-spacing:0.000000px;}
._4b_c00467{margin-left:-80.916000px;}
._5a_c00467{margin-left:-43.584000px;}
._21_c00467{margin-left:-41.760000px;}
._50_c00467{margin-left:-37.920000px;}
._4d_c00467{margin-left:-30.432000px;}
._3b_c00467{margin-left:-24.882000px;}
._52_c00467{margin-left:-23.616000px;}
._58_c00467{margin-left:-21.600000px;}
._4_c00467{margin-left:-20.256000px;}
._4e_c00467{margin-left:-18.720000px;}
._49_c00467{margin-left:-17.568000px;}
._47_c00467{margin-left:-15.840000px;}
._5_c00467{margin-left:-14.208000px;}
._23_c00467{margin-left:-12.480000px;}
._36_c00467{margin-left:-10.092000px;}
._20_c00467{margin-left:-8.448000px;}
._1f_c00467{margin-left:-7.104000px;}
._24_c00467{margin-left:-5.280000px;}
._0_c00467{margin-left:-3.552000px;}
._2_c00467{margin-left:-2.496000px;}
._1_c00467{margin-left:-1.248000px;}
._e_c00467{width:1.728000px;}
._a_c00467{width:2.784000px;}
._5c_c00467{width:3.792000px;}
._8_c00467{width:4.800000px;}
._10_c00467{width:5.856000px;}
._18_c00467{width:7.104000px;}
._15_c00467{width:8.640000px;}
._11_c00467{width:10.560000px;}
._1d_c00467{width:12.384000px;}
._1e_c00467{width:13.536000px;}
._6_c00467{width:14.592000px;}
._1a_c00467{width:15.840000px;}
._38_c00467{width:16.896000px;}
._26_c00467{width:18.240000px;}
._31_c00467{width:19.344000px;}
._9_c00467{width:20.832000px;}
._5d_c00467{width:21.864000px;}
._4a_c00467{width:24.192000px;}
._3_c00467{width:25.632000px;}
._17_c00467{width:27.552000px;}
._22_c00467{width:28.992000px;}
._1b_c00467{width:30.624000px;}
._13_c00467{width:32.544000px;}
._32_c00467{width:33.624000px;}
._25_c00467{width:35.616000px;}
._f_c00467{width:36.768000px;}
._7_c00467{width:38.592000px;}
._c_c00467{width:40.128000px;}
._1c_c00467{width:41.568000px;}
._b_c00467{width:43.104000px;}
._14_c00467{width:44.256000px;}
._54_c00467{width:45.708000px;}
._12_c00467{width:47.040000px;}
._39_c00467{width:48.072000px;}
._33_c00467{width:49.596000px;}
._2e_c00467{width:50.784000px;}
._16_c00467{width:51.936000px;}
._35_c00467{width:52.992000px;}
._27_c00467{width:54.432000px;}
._46_c00467{width:56.160000px;}
._34_c00467{width:57.324000px;}
._d_c00467{width:58.752000px;}
._43_c00467{width:60.576000px;}
._28_c00467{width:62.784000px;}
._29_c00467{width:64.608000px;}
._2b_c00467{width:66.240000px;}
._5b_c00467{width:67.284000px;}
._2a_c00467{width:68.544000px;}
._41_c00467{width:69.636000px;}
._2d_c00467{width:71.904000px;}
._42_c00467{width:73.536000px;}
._40_c00467{width:76.320000px;}
._4f_c00467{width:77.376000px;}
._2c_c00467{width:79.296000px;}
._55_c00467{width:81.120000px;}
._19_c00467{width:82.728000px;}
._2f_c00467{width:90.720000px;}
._57_c00467{width:100.608000px;}
._3c_c00467{width:115.797000px;}
._56_c00467{width:141.984000px;}
._45_c00467{width:234.528000px;}
._3d_c00467{width:257.985000px;}
._3f_c00467{width:269.178000px;}
._37_c00467{width:272.640000px;}
._44_c00467{width:318.780000px;}
._59_c00467{width:335.712000px;}
._3e_c00467{width:435.609000px;}
._3a_c00467{width:437.136000px;}
._51_c00467{width:464.736000px;}
._4c_c00467{width:471.360000px;}
._53_c00467{width:519.744000px;}
._48_c00467{width:655.524000px;}
._30_c00467{width:974.304000px;}
.fc2_c00467{color:transparent;}
.fc1_c00467{color:rgb(128,128,128);}
.fc0_c00467{color:rgb(0,0,0);}
.fs6_c00467{font-size:48.000000px;}
.fs5_c00467{font-size:63.000000px;}
.fs2_c00467{font-size:69.000000px;}
.fs3_c00467{font-size:78.000000px;}
.fs1_c00467{font-size:84.000000px;}
.fs4_c00467{font-size:87.000000px;}
.fs0_c00467{font-size:96.000000px;}
.y0_c00467{bottom:0.000000px;}
.y26_c00467{bottom:3.105000px;}
.y25_c00467{bottom:7.228357px;}
.y24_c00467{bottom:130.380000px;}
.y23_c00467{bottom:165.030000px;}
.y22_c00467{bottom:198.480000px;}
.y21_c00467{bottom:232.230000px;}
.y20_c00467{bottom:266.280000px;}
.y1f_c00467{bottom:300.030000px;}
.y1e_c00467{bottom:334.830000px;}
.y1d_c00467{bottom:368.280000px;}
.y1c_c00467{bottom:404.430000px;}
.y1b_c00467{bottom:436.380000px;}
.y1a_c00467{bottom:468.780000px;}
.y19_c00467{bottom:502.830000px;}
.y18_c00467{bottom:534.030000px;}
.y17_c00467{bottom:554.130000px;}
.y16_c00467{bottom:576.180000px;}
.y15_c00467{bottom:608.880000px;}
.y14_c00467{bottom:640.680000px;}
.y13_c00467{bottom:672.630000px;}
.y12_c00467{bottom:704.430000px;}
.y11_c00467{bottom:736.830000px;}
.y10_c00467{bottom:769.830000px;}
.yf_c00467{bottom:803.280000px;}
.ye_c00467{bottom:838.980000px;}
.yd_c00467{bottom:873.480000px;}
.yc_c00467{bottom:907.830000px;}
.yb_c00467{bottom:940.980000px;}
.ya_c00467{bottom:973.680000px;}
.y9_c00467{bottom:1006.830000px;}
.y8_c00467{bottom:1039.530000px;}
.y7_c00467{bottom:1072.980000px;}
.y6_c00467{bottom:1106.430000px;}
.y5_c00467{bottom:1140.480000px;}
.y4_c00467{bottom:1173.780000px;}
.y3_c00467{bottom:1206.630000px;}
.y2_c00467{bottom:1239.630000px;}
.y1_c00467{bottom:1273.080000px;}
.h4_c00467{height:13.200074px;}
.h5_c00467{height:43.804688px;}
.h3_c00467{height:110.151855px;}
.h2_c00467{height:121.546875px;}
.h0_c00467{height:1382.700000px;}
.h1_c00467{height:1383.000000px;}
.w2_c00467{width:104.875500px;}
.w0_c00467{width:863.175000px;}
.w1_c00467{width:863.250000px;}
.x0_c00467{left:0.000000px;}
.x7_c00467{left:26.700000px;}
.x8_c00467{left:28.350000px;}
.x9_c00467{left:30.000000px;}
.xc_c00467{left:31.050000px;}
.xf_c00467{left:35.400000px;}
.xd_c00467{left:38.550000px;}
.xe_c00467{left:40.200000px;}
.xb_c00467{left:51.000000px;}
.x6_c00467{left:63.450000px;}
.xa_c00467{left:76.350000px;}
.x10_c00467{left:138.000000px;}
.x5_c00467{left:143.700000px;}
.x11_c00467{left:197.850000px;}
.x2_c00467{left:244.350000px;}
.x1_c00467{left:245.400000px;}
.x3_c00467{left:246.450000px;}
.x4_c00467{left:248.700000px;}
.x12_c00467{left:383.401749px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls2_c00467{letter-spacing:8.000000pt;}
.ls0_c00467{letter-spacing:657.096000pt;}
.ws3_c00467{word-spacing:-26.637333pt;}
.ws1_c00467{word-spacing:-25.994667pt;}
.ws4_c00467{word-spacing:-20.565333pt;}
.ws0_c00467{word-spacing:-17.994667pt;}
.ws2_c00467{word-spacing:-16.709333pt;}
.ws5_c00467{word-spacing:0.000000pt;}
._4b_c00467{margin-left:-71.925333pt;}
._5a_c00467{margin-left:-38.741333pt;}
._21_c00467{margin-left:-37.120000pt;}
._50_c00467{margin-left:-33.706667pt;}
._4d_c00467{margin-left:-27.050667pt;}
._3b_c00467{margin-left:-22.117333pt;}
._52_c00467{margin-left:-20.992000pt;}
._58_c00467{margin-left:-19.200000pt;}
._4_c00467{margin-left:-18.005333pt;}
._4e_c00467{margin-left:-16.640000pt;}
._49_c00467{margin-left:-15.616000pt;}
._47_c00467{margin-left:-14.080000pt;}
._5_c00467{margin-left:-12.629333pt;}
._23_c00467{margin-left:-11.093333pt;}
._36_c00467{margin-left:-8.970667pt;}
._20_c00467{margin-left:-7.509333pt;}
._1f_c00467{margin-left:-6.314667pt;}
._24_c00467{margin-left:-4.693333pt;}
._0_c00467{margin-left:-3.157333pt;}
._2_c00467{margin-left:-2.218667pt;}
._1_c00467{margin-left:-1.109333pt;}
._e_c00467{width:1.536000pt;}
._a_c00467{width:2.474667pt;}
._5c_c00467{width:3.370667pt;}
._8_c00467{width:4.266667pt;}
._10_c00467{width:5.205333pt;}
._18_c00467{width:6.314667pt;}
._15_c00467{width:7.680000pt;}
._11_c00467{width:9.386667pt;}
._1d_c00467{width:11.008000pt;}
._1e_c00467{width:12.032000pt;}
._6_c00467{width:12.970667pt;}
._1a_c00467{width:14.080000pt;}
._38_c00467{width:15.018667pt;}
._26_c00467{width:16.213333pt;}
._31_c00467{width:17.194667pt;}
._9_c00467{width:18.517333pt;}
._5d_c00467{width:19.434667pt;}
._4a_c00467{width:21.504000pt;}
._3_c00467{width:22.784000pt;}
._17_c00467{width:24.490667pt;}
._22_c00467{width:25.770667pt;}
._1b_c00467{width:27.221333pt;}
._13_c00467{width:28.928000pt;}
._32_c00467{width:29.888000pt;}
._25_c00467{width:31.658667pt;}
._f_c00467{width:32.682667pt;}
._7_c00467{width:34.304000pt;}
._c_c00467{width:35.669333pt;}
._1c_c00467{width:36.949333pt;}
._b_c00467{width:38.314667pt;}
._14_c00467{width:39.338667pt;}
._54_c00467{width:40.629333pt;}
._12_c00467{width:41.813333pt;}
._39_c00467{width:42.730667pt;}
._33_c00467{width:44.085333pt;}
._2e_c00467{width:45.141333pt;}
._16_c00467{width:46.165333pt;}
._35_c00467{width:47.104000pt;}
._27_c00467{width:48.384000pt;}
._46_c00467{width:49.920000pt;}
._34_c00467{width:50.954667pt;}
._d_c00467{width:52.224000pt;}
._43_c00467{width:53.845333pt;}
._28_c00467{width:55.808000pt;}
._29_c00467{width:57.429333pt;}
._2b_c00467{width:58.880000pt;}
._5b_c00467{width:59.808000pt;}
._2a_c00467{width:60.928000pt;}
._41_c00467{width:61.898667pt;}
._2d_c00467{width:63.914667pt;}
._42_c00467{width:65.365333pt;}
._40_c00467{width:67.840000pt;}
._4f_c00467{width:68.778667pt;}
._2c_c00467{width:70.485333pt;}
._55_c00467{width:72.106667pt;}
._19_c00467{width:73.536000pt;}
._2f_c00467{width:80.640000pt;}
._57_c00467{width:89.429333pt;}
._3c_c00467{width:102.930667pt;}
._56_c00467{width:126.208000pt;}
._45_c00467{width:208.469333pt;}
._3d_c00467{width:229.320000pt;}
._3f_c00467{width:239.269333pt;}
._37_c00467{width:242.346667pt;}
._44_c00467{width:283.360000pt;}
._59_c00467{width:298.410667pt;}
._3e_c00467{width:387.208000pt;}
._3a_c00467{width:388.565333pt;}
._51_c00467{width:413.098667pt;}
._4c_c00467{width:418.986667pt;}
._53_c00467{width:461.994667pt;}
._48_c00467{width:582.688000pt;}
._30_c00467{width:866.048000pt;}
.fs6_c00467{font-size:42.666667pt;}
.fs5_c00467{font-size:56.000000pt;}
.fs2_c00467{font-size:61.333333pt;}
.fs3_c00467{font-size:69.333333pt;}
.fs1_c00467{font-size:74.666667pt;}
.fs4_c00467{font-size:77.333333pt;}
.fs0_c00467{font-size:85.333333pt;}
.y0_c00467{bottom:0.000000pt;}
.y26_c00467{bottom:2.760000pt;}
.y25_c00467{bottom:6.425206pt;}
.y24_c00467{bottom:115.893333pt;}
.y23_c00467{bottom:146.693333pt;}
.y22_c00467{bottom:176.426667pt;}
.y21_c00467{bottom:206.426667pt;}
.y20_c00467{bottom:236.693333pt;}
.y1f_c00467{bottom:266.693333pt;}
.y1e_c00467{bottom:297.626667pt;}
.y1d_c00467{bottom:327.360000pt;}
.y1c_c00467{bottom:359.493333pt;}
.y1b_c00467{bottom:387.893333pt;}
.y1a_c00467{bottom:416.693333pt;}
.y19_c00467{bottom:446.960000pt;}
.y18_c00467{bottom:474.693333pt;}
.y17_c00467{bottom:492.560000pt;}
.y16_c00467{bottom:512.160000pt;}
.y15_c00467{bottom:541.226667pt;}
.y14_c00467{bottom:569.493333pt;}
.y13_c00467{bottom:597.893333pt;}
.y12_c00467{bottom:626.160000pt;}
.y11_c00467{bottom:654.960000pt;}
.y10_c00467{bottom:684.293333pt;}
.yf_c00467{bottom:714.026667pt;}
.ye_c00467{bottom:745.760000pt;}
.yd_c00467{bottom:776.426667pt;}
.yc_c00467{bottom:806.960000pt;}
.yb_c00467{bottom:836.426667pt;}
.ya_c00467{bottom:865.493333pt;}
.y9_c00467{bottom:894.960000pt;}
.y8_c00467{bottom:924.026667pt;}
.y7_c00467{bottom:953.760000pt;}
.y6_c00467{bottom:983.493333pt;}
.y5_c00467{bottom:1013.760000pt;}
.y4_c00467{bottom:1043.360000pt;}
.y3_c00467{bottom:1072.560000pt;}
.y2_c00467{bottom:1101.893333pt;}
.y1_c00467{bottom:1131.626667pt;}
.h4_c00467{height:11.733399pt;}
.h5_c00467{height:38.937500pt;}
.h3_c00467{height:97.912760pt;}
.h2_c00467{height:108.041667pt;}
.h0_c00467{height:1229.066667pt;}
.h1_c00467{height:1229.333333pt;}
.w2_c00467{width:93.222667pt;}
.w0_c00467{width:767.266667pt;}
.w1_c00467{width:767.333333pt;}
.x0_c00467{left:0.000000pt;}
.x7_c00467{left:23.733333pt;}
.x8_c00467{left:25.200000pt;}
.x9_c00467{left:26.666667pt;}
.xc_c00467{left:27.600000pt;}
.xf_c00467{left:31.466667pt;}
.xd_c00467{left:34.266667pt;}
.xe_c00467{left:35.733333pt;}
.xb_c00467{left:45.333333pt;}
.x6_c00467{left:56.400000pt;}
.xa_c00467{left:67.866667pt;}
.x10_c00467{left:122.666667pt;}
.x5_c00467{left:127.733333pt;}
.x11_c00467{left:175.866667pt;}
.x2_c00467{left:217.200000pt;}
.x1_c00467{left:218.133333pt;}
.x3_c00467{left:219.066667pt;}
.x4_c00467{left:221.066667pt;}
.x12_c00467{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a15c92045dd9c9be39d4395.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_2cdbebc6b659692f82ad4fa4.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.ls1_c00468{letter-spacing:9.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:-72.504000px;}
.ws1_c00468{word-spacing:0.000000px;}
._33_c00468{margin-left:-69.600000px;}
._40_c00468{margin-left:-21.504000px;}
._32_c00468{margin-left:-18.720000px;}
._15_c00468{margin-left:-17.088000px;}
._14_c00468{margin-left:-14.688000px;}
._39_c00468{margin-left:-12.336000px;}
._2f_c00468{margin-left:-10.752000px;}
._35_c00468{margin-left:-9.600000px;}
._3f_c00468{margin-left:-7.824000px;}
._2b_c00468{margin-left:-6.624000px;}
._11_c00468{margin-left:-5.472000px;}
._12_c00468{margin-left:-4.032000px;}
._6_c00468{margin-left:-2.016000px;}
._8_c00468{width:1.056000px;}
._2_c00468{width:2.208000px;}
._0_c00468{width:3.840000px;}
._1_c00468{width:5.376000px;}
._1b_c00468{width:6.396000px;}
._7_c00468{width:7.488000px;}
._a_c00468{width:9.120000px;}
._c_c00468{width:10.464000px;}
._10_c00468{width:11.712000px;}
._2c_c00468{width:13.284000px;}
._9_c00468{width:14.976000px;}
._1a_c00468{width:16.032000px;}
._d_c00468{width:17.280000px;}
._4_c00468{width:18.432000px;}
._3b_c00468{width:19.680000px;}
._16_c00468{width:20.832000px;}
._25_c00468{width:21.888000px;}
._26_c00468{width:24.168000px;}
._3d_c00468{width:26.376000px;}
._13_c00468{width:27.648000px;}
._e_c00468{width:28.896000px;}
._24_c00468{width:30.912000px;}
._27_c00468{width:31.968000px;}
._3_c00468{width:33.696000px;}
._23_c00468{width:34.752000px;}
._5_c00468{width:37.152000px;}
._b_c00468{width:38.688000px;}
._3a_c00468{width:40.032000px;}
._17_c00468{width:41.280000px;}
._f_c00468{width:43.008000px;}
._29_c00468{width:44.964000px;}
._1c_c00468{width:47.292000px;}
._1d_c00468{width:49.728000px;}
._34_c00468{width:51.264000px;}
._18_c00468{width:52.512000px;}
._38_c00468{width:54.432000px;}
._22_c00468{width:56.724000px;}
._1e_c00468{width:58.368000px;}
._2e_c00468{width:60.768000px;}
._2a_c00468{width:63.264000px;}
._19_c00468{width:64.992000px;}
._3e_c00468{width:67.056000px;}
._3c_c00468{width:69.216000px;}
._21_c00468{width:71.232000px;}
._28_c00468{width:74.976000px;}
._30_c00468{width:79.488000px;}
._1f_c00468{width:82.212000px;}
._20_c00468{width:85.320000px;}
._36_c00468{width:139.776000px;}
._37_c00468{width:181.344000px;}
._2d_c00468{width:334.176000px;}
._42_c00468{width:680.268000px;}
._31_c00468{width:853.824000px;}
._41_c00468{width:963.264000px;}
.fc2_c00468{color:transparent;}
.fc1_c00468{color:rgb(128,128,128);}
.fc0_c00468{color:rgb(0,0,0);}
.fs2_c00468{font-size:48.000000px;}
.fs1_c00468{font-size:84.000000px;}
.fs0_c00468{font-size:96.000000px;}
.y0_c00468{bottom:0.000000px;}
.y26_c00468{bottom:3.105000px;}
.y25_c00468{bottom:7.228357px;}
.y24_c00468{bottom:92.130000px;}
.y23_c00468{bottom:126.630000px;}
.y22_c00468{bottom:161.730000px;}
.y21_c00468{bottom:195.480000px;}
.y20_c00468{bottom:230.130000px;}
.y1f_c00468{bottom:263.880000px;}
.y1e_c00468{bottom:297.330000px;}
.y1d_c00468{bottom:331.080000px;}
.y1c_c00468{bottom:364.830000px;}
.y1b_c00468{bottom:398.580000px;}
.y1a_c00468{bottom:432.030000px;}
.y19_c00468{bottom:465.480000px;}
.y18_c00468{bottom:499.530000px;}
.y17_c00468{bottom:532.980000px;}
.y16_c00468{bottom:566.430000px;}
.y15_c00468{bottom:600.180000px;}
.y14_c00468{bottom:633.780000px;}
.y13_c00468{bottom:667.680000px;}
.y12_c00468{bottom:700.380000px;}
.y11_c00468{bottom:734.430000px;}
.y10_c00468{bottom:770.130000px;}
.yf_c00468{bottom:802.230000px;}
.ye_c00468{bottom:834.930000px;}
.yd_c00468{bottom:868.380000px;}
.yc_c00468{bottom:901.530000px;}
.yb_c00468{bottom:934.830000px;}
.ya_c00468{bottom:967.680000px;}
.y9_c00468{bottom:1001.130000px;}
.y8_c00468{bottom:1034.730000px;}
.y7_c00468{bottom:1067.880000px;}
.y6_c00468{bottom:1100.280000px;}
.y5_c00468{bottom:1134.030000px;}
.y4_c00468{bottom:1167.480000px;}
.y3_c00468{bottom:1199.580000px;}
.y2_c00468{bottom:1233.330000px;}
.y1_c00468{bottom:1266.630000px;}
.h3_c00468{height:13.200074px;}
.h4_c00468{height:43.804688px;}
.h2_c00468{height:121.546875px;}
.h0_c00468{height:1367.850000px;}
.h1_c00468{height:1368.000000px;}
.w1_c00468{width:104.875500px;}
.w0_c00468{width:867.750000px;}
.x0_c00468{left:0.000000px;}
.x4_c00468{left:13.800000px;}
.x3_c00468{left:14.850000px;}
.x1_c00468{left:16.500000px;}
.x2_c00468{left:17.550000px;}
.x5_c00468{left:18.600000px;}
.x6_c00468{left:19.800000px;}
.x7_c00468{left:20.850000px;}
.x8_c00468{left:385.689240px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ls1_c00468{letter-spacing:8.000000pt;}
.ws0_c00468{word-spacing:-64.448000pt;}
.ws1_c00468{word-spacing:0.000000pt;}
._33_c00468{margin-left:-61.866667pt;}
._40_c00468{margin-left:-19.114667pt;}
._32_c00468{margin-left:-16.640000pt;}
._15_c00468{margin-left:-15.189333pt;}
._14_c00468{margin-left:-13.056000pt;}
._39_c00468{margin-left:-10.965333pt;}
._2f_c00468{margin-left:-9.557333pt;}
._35_c00468{margin-left:-8.533333pt;}
._3f_c00468{margin-left:-6.954667pt;}
._2b_c00468{margin-left:-5.888000pt;}
._11_c00468{margin-left:-4.864000pt;}
._12_c00468{margin-left:-3.584000pt;}
._6_c00468{margin-left:-1.792000pt;}
._8_c00468{width:0.938667pt;}
._2_c00468{width:1.962667pt;}
._0_c00468{width:3.413333pt;}
._1_c00468{width:4.778667pt;}
._1b_c00468{width:5.685333pt;}
._7_c00468{width:6.656000pt;}
._a_c00468{width:8.106667pt;}
._c_c00468{width:9.301333pt;}
._10_c00468{width:10.410667pt;}
._2c_c00468{width:11.808000pt;}
._9_c00468{width:13.312000pt;}
._1a_c00468{width:14.250667pt;}
._d_c00468{width:15.360000pt;}
._4_c00468{width:16.384000pt;}
._3b_c00468{width:17.493333pt;}
._16_c00468{width:18.517333pt;}
._25_c00468{width:19.456000pt;}
._26_c00468{width:21.482667pt;}
._3d_c00468{width:23.445333pt;}
._13_c00468{width:24.576000pt;}
._e_c00468{width:25.685333pt;}
._24_c00468{width:27.477333pt;}
._27_c00468{width:28.416000pt;}
._3_c00468{width:29.952000pt;}
._23_c00468{width:30.890667pt;}
._5_c00468{width:33.024000pt;}
._b_c00468{width:34.389333pt;}
._3a_c00468{width:35.584000pt;}
._17_c00468{width:36.693333pt;}
._f_c00468{width:38.229333pt;}
._29_c00468{width:39.968000pt;}
._1c_c00468{width:42.037333pt;}
._1d_c00468{width:44.202667pt;}
._34_c00468{width:45.568000pt;}
._18_c00468{width:46.677333pt;}
._38_c00468{width:48.384000pt;}
._22_c00468{width:50.421333pt;}
._1e_c00468{width:51.882667pt;}
._2e_c00468{width:54.016000pt;}
._2a_c00468{width:56.234667pt;}
._19_c00468{width:57.770667pt;}
._3e_c00468{width:59.605333pt;}
._3c_c00468{width:61.525333pt;}
._21_c00468{width:63.317333pt;}
._28_c00468{width:66.645333pt;}
._30_c00468{width:70.656000pt;}
._1f_c00468{width:73.077333pt;}
._20_c00468{width:75.840000pt;}
._36_c00468{width:124.245333pt;}
._37_c00468{width:161.194667pt;}
._2d_c00468{width:297.045333pt;}
._42_c00468{width:604.682667pt;}
._31_c00468{width:758.954667pt;}
._41_c00468{width:856.234667pt;}
.fs2_c00468{font-size:42.666667pt;}
.fs1_c00468{font-size:74.666667pt;}
.fs0_c00468{font-size:85.333333pt;}
.y0_c00468{bottom:0.000000pt;}
.y26_c00468{bottom:2.760000pt;}
.y25_c00468{bottom:6.425206pt;}
.y24_c00468{bottom:81.893333pt;}
.y23_c00468{bottom:112.560000pt;}
.y22_c00468{bottom:143.760000pt;}
.y21_c00468{bottom:173.760000pt;}
.y20_c00468{bottom:204.560000pt;}
.y1f_c00468{bottom:234.560000pt;}
.y1e_c00468{bottom:264.293333pt;}
.y1d_c00468{bottom:294.293333pt;}
.y1c_c00468{bottom:324.293333pt;}
.y1b_c00468{bottom:354.293333pt;}
.y1a_c00468{bottom:384.026667pt;}
.y19_c00468{bottom:413.760000pt;}
.y18_c00468{bottom:444.026667pt;}
.y17_c00468{bottom:473.760000pt;}
.y16_c00468{bottom:503.493333pt;}
.y15_c00468{bottom:533.493333pt;}
.y14_c00468{bottom:563.360000pt;}
.y13_c00468{bottom:593.493333pt;}
.y12_c00468{bottom:622.560000pt;}
.y11_c00468{bottom:652.826667pt;}
.y10_c00468{bottom:684.560000pt;}
.yf_c00468{bottom:713.093333pt;}
.ye_c00468{bottom:742.160000pt;}
.yd_c00468{bottom:771.893333pt;}
.yc_c00468{bottom:801.360000pt;}
.yb_c00468{bottom:830.960000pt;}
.ya_c00468{bottom:860.160000pt;}
.y9_c00468{bottom:889.893333pt;}
.y8_c00468{bottom:919.760000pt;}
.y7_c00468{bottom:949.226667pt;}
.y6_c00468{bottom:978.026667pt;}
.y5_c00468{bottom:1008.026667pt;}
.y4_c00468{bottom:1037.760000pt;}
.y3_c00468{bottom:1066.293333pt;}
.y2_c00468{bottom:1096.293333pt;}
.y1_c00468{bottom:1125.893333pt;}
.h3_c00468{height:11.733399pt;}
.h4_c00468{height:38.937500pt;}
.h2_c00468{height:108.041667pt;}
.h0_c00468{height:1215.866667pt;}
.h1_c00468{height:1216.000000pt;}
.w1_c00468{width:93.222667pt;}
.w0_c00468{width:771.333333pt;}
.x0_c00468{left:0.000000pt;}
.x4_c00468{left:12.266667pt;}
.x3_c00468{left:13.200000pt;}
.x1_c00468{left:14.666667pt;}
.x2_c00468{left:15.600000pt;}
.x5_c00468{left:16.533333pt;}
.x6_c00468{left:17.600000pt;}
.x7_c00468{left:18.533333pt;}
.x8_c00468{left:342.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57adb3e4f266c96c97f88b0e.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_2cada31081a72d49f7237c2e.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls1_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:6.720000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:-63.504000px;}
.ws1_c00469{word-spacing:-43.848000px;}
.ws2_c00469{word-spacing:0.000000px;}
._28_c00469{margin-left:-25.200000px;}
._2e_c00469{margin-left:-23.904000px;}
._35_c00469{margin-left:-15.744000px;}
._24_c00469{margin-left:-7.776000px;}
._c_c00469{margin-left:-6.336000px;}
._18_c00469{margin-left:-4.992000px;}
._d_c00469{margin-left:-3.168000px;}
._5_c00469{margin-left:-1.824000px;}
._6_c00469{width:1.056000px;}
._0_c00469{width:2.208000px;}
._22_c00469{width:3.216000px;}
._1_c00469{width:4.224000px;}
._2_c00469{width:5.952000px;}
._8_c00469{width:7.776000px;}
._4_c00469{width:9.024000px;}
._a_c00469{width:10.656000px;}
._1c_c00469{width:12.000000px;}
._1a_c00469{width:13.392000px;}
._7_c00469{width:15.072000px;}
._17_c00469{width:16.608000px;}
._16_c00469{width:17.616000px;}
._3_c00469{width:19.488000px;}
._1d_c00469{width:20.784000px;}
._2f_c00469{width:21.888000px;}
._1e_c00469{width:25.008000px;}
._25_c00469{width:26.304000px;}
._26_c00469{width:27.312000px;}
._e_c00469{width:28.320000px;}
._12_c00469{width:29.568000px;}
._10_c00469{width:31.728000px;}
._2c_c00469{width:32.832000px;}
._21_c00469{width:34.176000px;}
._23_c00469{width:36.288000px;}
._11_c00469{width:38.976000px;}
._f_c00469{width:40.416000px;}
._b_c00469{width:41.952000px;}
._20_c00469{width:43.776000px;}
._1b_c00469{width:45.120000px;}
._14_c00469{width:46.848000px;}
._2d_c00469{width:49.920000px;}
._2b_c00469{width:51.216000px;}
._2a_c00469{width:54.144000px;}
._29_c00469{width:56.544000px;}
._9_c00469{width:58.560000px;}
._1f_c00469{width:60.384000px;}
._36_c00469{width:62.400000px;}
._31_c00469{width:63.696000px;}
._33_c00469{width:65.280000px;}
._27_c00469{width:67.248000px;}
._32_c00469{width:75.264000px;}
._34_c00469{width:77.472000px;}
._30_c00469{width:78.672000px;}
._37_c00469{width:88.704000px;}
._19_c00469{width:93.072000px;}
._15_c00469{width:182.688000px;}
._13_c00469{width:209.952000px;}
._38_c00469{width:239.712000px;}
._39_c00469{width:1620.960000px;}
.fc2_c00469{color:transparent;}
.fc1_c00469{color:rgb(128,128,128);}
.fc0_c00469{color:rgb(0,0,0);}
.fs2_c00469{font-size:48.000000px;}
.fs1_c00469{font-size:84.000000px;}
.fs0_c00469{font-size:96.000000px;}
.y0_c00469{bottom:0.000000px;}
.y26_c00469{bottom:3.105000px;}
.y25_c00469{bottom:7.228357px;}
.y24_c00469{bottom:83.430000px;}
.y23_c00469{bottom:122.280000px;}
.y22_c00469{bottom:156.030000px;}
.y21_c00469{bottom:190.080000px;}
.y20_c00469{bottom:224.880000px;}
.y1f_c00469{bottom:258.480000px;}
.y1e_c00469{bottom:292.680000px;}
.y1d_c00469{bottom:326.730000px;}
.y1c_c00469{bottom:359.880000px;}
.y1b_c00469{bottom:393.930000px;}
.y1a_c00469{bottom:428.580000px;}
.y19_c00469{bottom:462.030000px;}
.y18_c00469{bottom:495.780000px;}
.y17_c00469{bottom:529.230000px;}
.y16_c00469{bottom:562.980000px;}
.y15_c00469{bottom:596.730000px;}
.y14_c00469{bottom:629.880000px;}
.y13_c00469{bottom:663.630000px;}
.y12_c00469{bottom:696.930000px;}
.y11_c00469{bottom:730.980000px;}
.y10_c00469{bottom:764.130000px;}
.yf_c00469{bottom:797.280000px;}
.ye_c00469{bottom:830.880000px;}
.yd_c00469{bottom:863.730000px;}
.yc_c00469{bottom:898.080000px;}
.yb_c00469{bottom:931.230000px;}
.ya_c00469{bottom:963.930000px;}
.y9_c00469{bottom:997.380000px;}
.y8_c00469{bottom:1030.380000px;}
.y7_c00469{bottom:1063.830000px;}
.y6_c00469{bottom:1096.980000px;}
.y5_c00469{bottom:1130.580000px;}
.y4_c00469{bottom:1163.430000px;}
.y3_c00469{bottom:1197.180000px;}
.y2_c00469{bottom:1229.880000px;}
.y1_c00469{bottom:1262.880000px;}
.h3_c00469{height:13.200074px;}
.h4_c00469{height:43.804688px;}
.h2_c00469{height:121.546875px;}
.h0_c00469{height:1382.700000px;}
.h1_c00469{height:1383.000000px;}
.w2_c00469{width:104.875500px;}
.w0_c00469{width:863.175000px;}
.w1_c00469{width:863.250000px;}
.x0_c00469{left:0.000000px;}
.x7_c00469{left:251.400000px;}
.xb_c00469{left:262.950000px;}
.x9_c00469{left:265.350000px;}
.x1_c00469{left:266.400000px;}
.x2_c00469{left:267.600000px;}
.x4_c00469{left:268.650000px;}
.x5_c00469{left:269.700000px;}
.x6_c00469{left:270.750000px;}
.xa_c00469{left:272.400000px;}
.x3_c00469{left:318.300000px;}
.xc_c00469{left:383.401749px;}
.x8_c00469{left:401.400000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls1_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:5.973333pt;}
.ws0_c00469{word-spacing:-56.448000pt;}
.ws1_c00469{word-spacing:-38.976000pt;}
.ws2_c00469{word-spacing:0.000000pt;}
._28_c00469{margin-left:-22.400000pt;}
._2e_c00469{margin-left:-21.248000pt;}
._35_c00469{margin-left:-13.994667pt;}
._24_c00469{margin-left:-6.912000pt;}
._c_c00469{margin-left:-5.632000pt;}
._18_c00469{margin-left:-4.437333pt;}
._d_c00469{margin-left:-2.816000pt;}
._5_c00469{margin-left:-1.621333pt;}
._6_c00469{width:0.938667pt;}
._0_c00469{width:1.962667pt;}
._22_c00469{width:2.858667pt;}
._1_c00469{width:3.754667pt;}
._2_c00469{width:5.290667pt;}
._8_c00469{width:6.912000pt;}
._4_c00469{width:8.021333pt;}
._a_c00469{width:9.472000pt;}
._1c_c00469{width:10.666667pt;}
._1a_c00469{width:11.904000pt;}
._7_c00469{width:13.397333pt;}
._17_c00469{width:14.762667pt;}
._16_c00469{width:15.658667pt;}
._3_c00469{width:17.322667pt;}
._1d_c00469{width:18.474667pt;}
._2f_c00469{width:19.456000pt;}
._1e_c00469{width:22.229333pt;}
._25_c00469{width:23.381333pt;}
._26_c00469{width:24.277333pt;}
._e_c00469{width:25.173333pt;}
._12_c00469{width:26.282667pt;}
._10_c00469{width:28.202667pt;}
._2c_c00469{width:29.184000pt;}
._21_c00469{width:30.378667pt;}
._23_c00469{width:32.256000pt;}
._11_c00469{width:34.645333pt;}
._f_c00469{width:35.925333pt;}
._b_c00469{width:37.290667pt;}
._20_c00469{width:38.912000pt;}
._1b_c00469{width:40.106667pt;}
._14_c00469{width:41.642667pt;}
._2d_c00469{width:44.373333pt;}
._2b_c00469{width:45.525333pt;}
._2a_c00469{width:48.128000pt;}
._29_c00469{width:50.261333pt;}
._9_c00469{width:52.053333pt;}
._1f_c00469{width:53.674667pt;}
._36_c00469{width:55.466667pt;}
._31_c00469{width:56.618667pt;}
._33_c00469{width:58.026667pt;}
._27_c00469{width:59.776000pt;}
._32_c00469{width:66.901333pt;}
._34_c00469{width:68.864000pt;}
._30_c00469{width:69.930667pt;}
._37_c00469{width:78.848000pt;}
._19_c00469{width:82.730667pt;}
._15_c00469{width:162.389333pt;}
._13_c00469{width:186.624000pt;}
._38_c00469{width:213.077333pt;}
._39_c00469{width:1440.853333pt;}
.fs2_c00469{font-size:42.666667pt;}
.fs1_c00469{font-size:74.666667pt;}
.fs0_c00469{font-size:85.333333pt;}
.y0_c00469{bottom:0.000000pt;}
.y26_c00469{bottom:2.760000pt;}
.y25_c00469{bottom:6.425206pt;}
.y24_c00469{bottom:74.160000pt;}
.y23_c00469{bottom:108.693333pt;}
.y22_c00469{bottom:138.693333pt;}
.y21_c00469{bottom:168.960000pt;}
.y20_c00469{bottom:199.893333pt;}
.y1f_c00469{bottom:229.760000pt;}
.y1e_c00469{bottom:260.160000pt;}
.y1d_c00469{bottom:290.426667pt;}
.y1c_c00469{bottom:319.893333pt;}
.y1b_c00469{bottom:350.160000pt;}
.y1a_c00469{bottom:380.960000pt;}
.y19_c00469{bottom:410.693333pt;}
.y18_c00469{bottom:440.693333pt;}
.y17_c00469{bottom:470.426667pt;}
.y16_c00469{bottom:500.426667pt;}
.y15_c00469{bottom:530.426667pt;}
.y14_c00469{bottom:559.893333pt;}
.y13_c00469{bottom:589.893333pt;}
.y12_c00469{bottom:619.493333pt;}
.y11_c00469{bottom:649.760000pt;}
.y10_c00469{bottom:679.226667pt;}
.yf_c00469{bottom:708.693333pt;}
.ye_c00469{bottom:738.560000pt;}
.yd_c00469{bottom:767.760000pt;}
.yc_c00469{bottom:798.293333pt;}
.yb_c00469{bottom:827.760000pt;}
.ya_c00469{bottom:856.826667pt;}
.y9_c00469{bottom:886.560000pt;}
.y8_c00469{bottom:915.893333pt;}
.y7_c00469{bottom:945.626667pt;}
.y6_c00469{bottom:975.093333pt;}
.y5_c00469{bottom:1004.960000pt;}
.y4_c00469{bottom:1034.160000pt;}
.y3_c00469{bottom:1064.160000pt;}
.y2_c00469{bottom:1093.226667pt;}
.y1_c00469{bottom:1122.560000pt;}
.h3_c00469{height:11.733399pt;}
.h4_c00469{height:38.937500pt;}
.h2_c00469{height:108.041667pt;}
.h0_c00469{height:1229.066667pt;}
.h1_c00469{height:1229.333333pt;}
.w2_c00469{width:93.222667pt;}
.w0_c00469{width:767.266667pt;}
.w1_c00469{width:767.333333pt;}
.x0_c00469{left:0.000000pt;}
.x7_c00469{left:223.466667pt;}
.xb_c00469{left:233.733333pt;}
.x9_c00469{left:235.866667pt;}
.x1_c00469{left:236.800000pt;}
.x2_c00469{left:237.866667pt;}
.x4_c00469{left:238.800000pt;}
.x5_c00469{left:239.733333pt;}
.x6_c00469{left:240.666667pt;}
.xa_c00469{left:242.133333pt;}
.x3_c00469{left:282.933333pt;}
.xc_c00469{left:340.801554pt;}
.x8_c00469{left:356.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2fa0a419ec655880c46b0b.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_539087a1692f9d4cbddc836c.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_6615429358e2b193f570e2d5.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_db8a169253c089aa73a0d9fc.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_80c4685ee9550f779b20b395.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00470;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00470;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00470{font-family:ff7_c00470;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{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_c00470{vertical-align:0.000000px;}
.ls5_c00470{letter-spacing:-3.000000px;}
.ls4_c00470{letter-spacing:0.000000px;}
.ls6_c00470{letter-spacing:3.000000px;}
.ls1_c00470{letter-spacing:4.452000px;}
.ls3_c00470{letter-spacing:9.000000px;}
.ls0_c00470{letter-spacing:16.221000px;}
.ls2_c00470{letter-spacing:18.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00470{word-spacing:-74.250000px;}
.ws0_c00470{word-spacing:-67.029000px;}
.ws4_c00470{word-spacing:-24.000000px;}
.ws1_c00470{word-spacing:-20.244000px;}
.ws5_c00470{word-spacing:-17.967000px;}
.ws6_c00470{word-spacing:0.000000px;}
.ws3_c00470{word-spacing:6.048000px;}
._57_c00470{margin-left:-85.782000px;}
._52_c00470{margin-left:-81.162000px;}
._43_c00470{margin-left:-47.040000px;}
._1f_c00470{margin-left:-29.691000px;}
._1_c00470{margin-left:-24.642000px;}
._4c_c00470{margin-left:-20.307000px;}
._48_c00470{margin-left:-18.831000px;}
._40_c00470{margin-left:-17.358000px;}
._55_c00470{margin-left:-15.801000px;}
._1b_c00470{margin-left:-14.703000px;}
._2_c00470{margin-left:-12.963000px;}
._16_c00470{margin-left:-11.904000px;}
._44_c00470{margin-left:-10.176000px;}
._4_c00470{margin-left:-8.352000px;}
._2a_c00470{margin-left:-6.528000px;}
._28_c00470{margin-left:-4.896000px;}
._19_c00470{margin-left:-3.456000px;}
._1d_c00470{margin-left:-2.304000px;}
._13_c00470{margin-left:-1.260000px;}
._9_c00470{width:1.536000px;}
._7_c00470{width:2.688000px;}
._a_c00470{width:3.936000px;}
._b_c00470{width:5.346000px;}
._25_c00470{width:6.597000px;}
._e_c00470{width:8.064000px;}
._38_c00470{width:9.096000px;}
._22_c00470{width:10.101000px;}
._35_c00470{width:11.136000px;}
._0_c00470{width:12.267000px;}
._54_c00470{width:13.332000px;}
._3a_c00470{width:14.721000px;}
._21_c00470{width:15.936000px;}
._18_c00470{width:17.004000px;}
._14_c00470{width:18.624000px;}
._50_c00470{width:19.644000px;}
._5_c00470{width:21.054000px;}
._6_c00470{width:23.925000px;}
._41_c00470{width:24.960000px;}
._27_c00470{width:26.301000px;}
._33_c00470{width:27.600000px;}
._24_c00470{width:28.719000px;}
._30_c00470{width:30.240000px;}
._d_c00470{width:32.160000px;}
._8_c00470{width:33.408000px;}
._10_c00470{width:34.878000px;}
._f_c00470{width:35.904000px;}
._49_c00470{width:36.960000px;}
._2c_c00470{width:38.688000px;}
._36_c00470{width:39.723000px;}
._11_c00470{width:41.244000px;}
._2d_c00470{width:42.528000px;}
._47_c00470{width:44.352000px;}
._c_c00470{width:45.438000px;}
._31_c00470{width:47.244000px;}
._3b_c00470{width:48.756000px;}
._32_c00470{width:50.607000px;}
._20_c00470{width:51.840000px;}
._46_c00470{width:54.624000px;}
._3d_c00470{width:55.650000px;}
._4a_c00470{width:56.772000px;}
._39_c00470{width:59.124000px;}
._15_c00470{width:62.496000px;}
._34_c00470{width:63.786000px;}
._45_c00470{width:65.931000px;}
._2f_c00470{width:67.200000px;}
._37_c00470{width:69.021000px;}
._4b_c00470{width:73.389000px;}
._42_c00470{width:77.247000px;}
._17_c00470{width:84.000000px;}
._3e_c00470{width:90.540000px;}
._23_c00470{width:107.424000px;}
._29_c00470{width:122.592000px;}
._3f_c00470{width:150.192000px;}
._4d_c00470{width:155.808000px;}
._4e_c00470{width:182.850000px;}
._4f_c00470{width:183.909000px;}
._1e_c00470{width:220.128000px;}
._1c_c00470{width:366.297000px;}
._53_c00470{width:414.345000px;}
._3_c00470{width:473.193000px;}
._3c_c00470{width:518.049000px;}
._2e_c00470{width:538.785000px;}
._1a_c00470{width:577.200000px;}
._12_c00470{width:597.840000px;}
._51_c00470{width:609.408000px;}
._2b_c00470{width:670.176000px;}
._26_c00470{width:764.850000px;}
._56_c00470{width:1533.600000px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(128,128,128);}
.fc0_c00470{color:rgb(0,0,0);}
.fs4_c00470{font-size:48.000000px;}
.fs2_c00470{font-size:84.000000px;}
.fs0_c00470{font-size:87.000000px;}
.fs1_c00470{font-size:96.000000px;}
.fs3_c00470{font-size:102.000000px;}
.y0_c00470{bottom:0.000000px;}
.y2a_c00470{bottom:3.105000px;}
.y29_c00470{bottom:7.228355px;}
.y25_c00470{bottom:81.885000px;}
.y24_c00470{bottom:113.085000px;}
.y23_c00470{bottom:149.835000px;}
.y22_c00470{bottom:181.935000px;}
.y21_c00470{bottom:215.685000px;}
.y20_c00470{bottom:249.735000px;}
.y1f_c00470{bottom:284.385000px;}
.y1e_c00470{bottom:317.235000px;}
.y1d_c00470{bottom:351.285000px;}
.y1c_c00470{bottom:384.435000px;}
.y1b_c00470{bottom:418.185000px;}
.y1a_c00470{bottom:452.835000px;}
.y19_c00470{bottom:486.285000px;}
.y18_c00470{bottom:519.285000px;}
.y17_c00470{bottom:553.785000px;}
.y16_c00470{bottom:585.435000px;}
.y15_c00470{bottom:620.985000px;}
.y14_c00470{bottom:653.085000px;}
.y13_c00470{bottom:687.435000px;}
.y28_c00470{bottom:698.835000px;}
.y27_c00470{bottom:705.735000px;}
.y26_c00470{bottom:712.335000px;}
.y12_c00470{bottom:720.885000px;}
.y11_c00470{bottom:754.185000px;}
.y10_c00470{bottom:787.335000px;}
.yf_c00470{bottom:820.335000px;}
.ye_c00470{bottom:852.435000px;}
.yd_c00470{bottom:886.185000px;}
.yc_c00470{bottom:918.885000px;}
.yb_c00470{bottom:952.335000px;}
.ya_c00470{bottom:985.035000px;}
.y9_c00470{bottom:1019.235000px;}
.y8_c00470{bottom:1052.535000px;}
.y7_c00470{bottom:1085.385000px;}
.y6_c00470{bottom:1118.685000px;}
.y5_c00470{bottom:1151.235000px;}
.y4_c00470{bottom:1183.935000px;}
.y3_c00470{bottom:1215.885000px;}
.y2_c00470{bottom:1251.435000px;}
.y1_c00470{bottom:1280.835000px;}
.h6_c00470{height:13.200074px;}
.h7_c00470{height:43.804688px;}
.h4_c00470{height:98.314453px;}
.h5_c00470{height:101.825684px;}
.h2_c00470{height:110.151855px;}
.h3_c00470{height:121.546875px;}
.h1_c00470{height:1353.000000px;}
.h0_c00470{height:1353.225000px;}
.w2_c00470{width:104.875500px;}
.w0_c00470{width:858.600000px;}
.w1_c00470{width:858.750000px;}
.x0_c00470{left:0.000000px;}
.x7_c00470{left:18.150000px;}
.x6_c00470{left:19.800000px;}
.x5_c00470{left:20.850000px;}
.x4_c00470{left:22.500000px;}
.x2_c00470{left:24.600000px;}
.x8_c00470{left:27.300000px;}
.xb_c00470{left:28.350000px;}
.x3_c00470{left:29.400000px;}
.xc_c00470{left:134.250000px;}
.xf_c00470{left:381.114258px;}
.x1_c00470{left:510.000000px;}
.x9_c00470{left:616.500000px;}
.xa_c00470{left:641.850000px;}
.xd_c00470{left:657.450000px;}
.xe_c00470{left:668.850000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls5_c00470{letter-spacing:-2.666667pt;}
.ls4_c00470{letter-spacing:0.000000pt;}
.ls6_c00470{letter-spacing:2.666667pt;}
.ls1_c00470{letter-spacing:3.957333pt;}
.ls3_c00470{letter-spacing:8.000000pt;}
.ls0_c00470{letter-spacing:14.418667pt;}
.ls2_c00470{letter-spacing:16.000000pt;}
.ws2_c00470{word-spacing:-66.000000pt;}
.ws0_c00470{word-spacing:-59.581333pt;}
.ws4_c00470{word-spacing:-21.333333pt;}
.ws1_c00470{word-spacing:-17.994667pt;}
.ws5_c00470{word-spacing:-15.970667pt;}
.ws6_c00470{word-spacing:0.000000pt;}
.ws3_c00470{word-spacing:5.376000pt;}
._57_c00470{margin-left:-76.250667pt;}
._52_c00470{margin-left:-72.144000pt;}
._43_c00470{margin-left:-41.813333pt;}
._1f_c00470{margin-left:-26.392000pt;}
._1_c00470{margin-left:-21.904000pt;}
._4c_c00470{margin-left:-18.050667pt;}
._48_c00470{margin-left:-16.738667pt;}
._40_c00470{margin-left:-15.429333pt;}
._55_c00470{margin-left:-14.045333pt;}
._1b_c00470{margin-left:-13.069333pt;}
._2_c00470{margin-left:-11.522667pt;}
._16_c00470{margin-left:-10.581333pt;}
._44_c00470{margin-left:-9.045333pt;}
._4_c00470{margin-left:-7.424000pt;}
._2a_c00470{margin-left:-5.802667pt;}
._28_c00470{margin-left:-4.352000pt;}
._19_c00470{margin-left:-3.072000pt;}
._1d_c00470{margin-left:-2.048000pt;}
._13_c00470{margin-left:-1.120000pt;}
._9_c00470{width:1.365333pt;}
._7_c00470{width:2.389333pt;}
._a_c00470{width:3.498667pt;}
._b_c00470{width:4.752000pt;}
._25_c00470{width:5.864000pt;}
._e_c00470{width:7.168000pt;}
._38_c00470{width:8.085333pt;}
._22_c00470{width:8.978667pt;}
._35_c00470{width:9.898667pt;}
._0_c00470{width:10.904000pt;}
._54_c00470{width:11.850667pt;}
._3a_c00470{width:13.085333pt;}
._21_c00470{width:14.165333pt;}
._18_c00470{width:15.114667pt;}
._14_c00470{width:16.554667pt;}
._50_c00470{width:17.461333pt;}
._5_c00470{width:18.714667pt;}
._6_c00470{width:21.266667pt;}
._41_c00470{width:22.186667pt;}
._27_c00470{width:23.378667pt;}
._33_c00470{width:24.533333pt;}
._24_c00470{width:25.528000pt;}
._30_c00470{width:26.880000pt;}
._d_c00470{width:28.586667pt;}
._8_c00470{width:29.696000pt;}
._10_c00470{width:31.002667pt;}
._f_c00470{width:31.914667pt;}
._49_c00470{width:32.853333pt;}
._2c_c00470{width:34.389333pt;}
._36_c00470{width:35.309333pt;}
._11_c00470{width:36.661333pt;}
._2d_c00470{width:37.802667pt;}
._47_c00470{width:39.424000pt;}
._c_c00470{width:40.389333pt;}
._31_c00470{width:41.994667pt;}
._3b_c00470{width:43.338667pt;}
._32_c00470{width:44.984000pt;}
._20_c00470{width:46.080000pt;}
._46_c00470{width:48.554667pt;}
._3d_c00470{width:49.466667pt;}
._4a_c00470{width:50.464000pt;}
._39_c00470{width:52.554667pt;}
._15_c00470{width:55.552000pt;}
._34_c00470{width:56.698667pt;}
._45_c00470{width:58.605333pt;}
._2f_c00470{width:59.733333pt;}
._37_c00470{width:61.352000pt;}
._4b_c00470{width:65.234667pt;}
._42_c00470{width:68.664000pt;}
._17_c00470{width:74.666667pt;}
._3e_c00470{width:80.480000pt;}
._23_c00470{width:95.488000pt;}
._29_c00470{width:108.970667pt;}
._3f_c00470{width:133.504000pt;}
._4d_c00470{width:138.496000pt;}
._4e_c00470{width:162.533333pt;}
._4f_c00470{width:163.474667pt;}
._1e_c00470{width:195.669333pt;}
._1c_c00470{width:325.597333pt;}
._53_c00470{width:368.306667pt;}
._3_c00470{width:420.616000pt;}
._3c_c00470{width:460.488000pt;}
._2e_c00470{width:478.920000pt;}
._1a_c00470{width:513.066667pt;}
._12_c00470{width:531.413333pt;}
._51_c00470{width:541.696000pt;}
._2b_c00470{width:595.712000pt;}
._26_c00470{width:679.866667pt;}
._56_c00470{width:1363.200000pt;}
.fs4_c00470{font-size:42.666667pt;}
.fs2_c00470{font-size:74.666667pt;}
.fs0_c00470{font-size:77.333333pt;}
.fs1_c00470{font-size:85.333333pt;}
.fs3_c00470{font-size:90.666667pt;}
.y0_c00470{bottom:0.000000pt;}
.y2a_c00470{bottom:2.760000pt;}
.y29_c00470{bottom:6.425204pt;}
.y25_c00470{bottom:72.786667pt;}
.y24_c00470{bottom:100.520000pt;}
.y23_c00470{bottom:133.186667pt;}
.y22_c00470{bottom:161.720000pt;}
.y21_c00470{bottom:191.720000pt;}
.y20_c00470{bottom:221.986667pt;}
.y1f_c00470{bottom:252.786667pt;}
.y1e_c00470{bottom:281.986667pt;}
.y1d_c00470{bottom:312.253333pt;}
.y1c_c00470{bottom:341.720000pt;}
.y1b_c00470{bottom:371.720000pt;}
.y1a_c00470{bottom:402.520000pt;}
.y19_c00470{bottom:432.253333pt;}
.y18_c00470{bottom:461.586667pt;}
.y17_c00470{bottom:492.253333pt;}
.y16_c00470{bottom:520.386667pt;}
.y15_c00470{bottom:551.986667pt;}
.y14_c00470{bottom:580.520000pt;}
.y13_c00470{bottom:611.053333pt;}
.y28_c00470{bottom:621.186667pt;}
.y27_c00470{bottom:627.320000pt;}
.y26_c00470{bottom:633.186667pt;}
.y12_c00470{bottom:640.786667pt;}
.y11_c00470{bottom:670.386667pt;}
.y10_c00470{bottom:699.853333pt;}
.yf_c00470{bottom:729.186667pt;}
.ye_c00470{bottom:757.720000pt;}
.yd_c00470{bottom:787.720000pt;}
.yc_c00470{bottom:816.786667pt;}
.yb_c00470{bottom:846.520000pt;}
.ya_c00470{bottom:875.586667pt;}
.y9_c00470{bottom:905.986667pt;}
.y8_c00470{bottom:935.586667pt;}
.y7_c00470{bottom:964.786667pt;}
.y6_c00470{bottom:994.386667pt;}
.y5_c00470{bottom:1023.320000pt;}
.y4_c00470{bottom:1052.386667pt;}
.y3_c00470{bottom:1080.786667pt;}
.y2_c00470{bottom:1112.386667pt;}
.y1_c00470{bottom:1138.520000pt;}
.h6_c00470{height:11.733399pt;}
.h7_c00470{height:38.937500pt;}
.h4_c00470{height:87.390625pt;}
.h5_c00470{height:90.511719pt;}
.h2_c00470{height:97.912760pt;}
.h3_c00470{height:108.041667pt;}
.h1_c00470{height:1202.666667pt;}
.h0_c00470{height:1202.866667pt;}
.w2_c00470{width:93.222667pt;}
.w0_c00470{width:763.200000pt;}
.w1_c00470{width:763.333333pt;}
.x0_c00470{left:0.000000pt;}
.x7_c00470{left:16.133333pt;}
.x6_c00470{left:17.600000pt;}
.x5_c00470{left:18.533333pt;}
.x4_c00470{left:20.000000pt;}
.x2_c00470{left:21.866667pt;}
.x8_c00470{left:24.266667pt;}
.xb_c00470{left:25.200000pt;}
.x3_c00470{left:26.133333pt;}
.xc_c00470{left:119.333333pt;}
.xf_c00470{left:338.768229pt;}
.x1_c00470{left:453.333333pt;}
.x9_c00470{left:548.000000pt;}
.xa_c00470{left:570.533333pt;}
.xd_c00470{left:584.400000pt;}
.xe_c00470{left:594.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_006cdd3ef9003ef85164268d.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_0aa3ab46001400cc9f2e5d69.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_8639829a4106c15b139c6e7b.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls2_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:1.260000px;}
.ls3_c00471{letter-spacing:6.000000px;}
.ls4_c00471{letter-spacing:9.000000px;}
.ls1_c00471{letter-spacing:40.233000px;}
.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;}
}
.ws5_c00471{word-spacing:-29.967000px;}
.ws2_c00471{word-spacing:-23.136000px;}
.ws1_c00471{word-spacing:-20.244000px;}
.ws4_c00471{word-spacing:-18.798000px;}
.ws0_c00471{word-spacing:-14.460000px;}
.ws6_c00471{word-spacing:0.000000px;}
.ws3_c00471{word-spacing:0.576000px;}
._38_c00471{margin-left:-32.172000px;}
._31_c00471{margin-left:-30.948000px;}
._4b_c00471{margin-left:-25.152000px;}
._49_c00471{margin-left:-23.838000px;}
._1_c00471{margin-left:-22.338000px;}
._27_c00471{margin-left:-20.148000px;}
._48_c00471{margin-left:-18.444000px;}
._0_c00471{margin-left:-16.932000px;}
._2d_c00471{margin-left:-13.974000px;}
._22_c00471{margin-left:-12.708000px;}
._21_c00471{margin-left:-11.220000px;}
._2_c00471{margin-left:-9.894000px;}
._26_c00471{margin-left:-8.106000px;}
._d_c00471{margin-left:-7.068000px;}
._e_c00471{margin-left:-4.836000px;}
._1b_c00471{margin-left:-3.774000px;}
._f_c00471{margin-left:-2.448000px;}
._b_c00471{margin-left:-1.392000px;}
._4_c00471{width:1.152000px;}
._18_c00471{width:2.226000px;}
._6_c00471{width:3.264000px;}
._c_c00471{width:5.136000px;}
._12_c00471{width:7.038000px;}
._15_c00471{width:8.802000px;}
._11_c00471{width:9.822000px;}
._9_c00471{width:11.808000px;}
._1f_c00471{width:13.116000px;}
._23_c00471{width:14.136000px;}
._16_c00471{width:16.308000px;}
._1d_c00471{width:17.640000px;}
._7_c00471{width:19.722000px;}
._2e_c00471{width:21.264000px;}
._a_c00471{width:22.464000px;}
._37_c00471{width:25.122000px;}
._2c_c00471{width:26.142000px;}
._8_c00471{width:27.576000px;}
._28_c00471{width:29.400000px;}
._2b_c00471{width:30.702000px;}
._13_c00471{width:32.052000px;}
._29_c00471{width:33.066000px;}
._1e_c00471{width:34.740000px;}
._45_c00471{width:35.820000px;}
._2f_c00471{width:36.972000px;}
._40_c00471{width:38.142000px;}
._36_c00471{width:39.264000px;}
._35_c00471{width:40.704000px;}
._4c_c00471{width:42.219000px;}
._32_c00471{width:43.302000px;}
._19_c00471{width:44.484000px;}
._34_c00471{width:45.582000px;}
._10_c00471{width:47.490000px;}
._30_c00471{width:50.124000px;}
._4a_c00471{width:51.297000px;}
._3_c00471{width:52.560000px;}
._3c_c00471{width:53.904000px;}
._47_c00471{width:55.038000px;}
._14_c00471{width:56.100000px;}
._3a_c00471{width:58.602000px;}
._3e_c00471{width:60.696000px;}
._44_c00471{width:62.760000px;}
._1c_c00471{width:64.026000px;}
._46_c00471{width:65.376000px;}
._41_c00471{width:66.648000px;}
._1a_c00471{width:68.952000px;}
._20_c00471{width:70.356000px;}
._33_c00471{width:71.388000px;}
._42_c00471{width:73.362000px;}
._17_c00471{width:74.448000px;}
._25_c00471{width:75.534000px;}
._3b_c00471{width:76.692000px;}
._43_c00471{width:84.270000px;}
._4d_c00471{width:93.096000px;}
._3d_c00471{width:112.128000px;}
._3f_c00471{width:118.272000px;}
._39_c00471{width:138.468000px;}
._24_c00471{width:268.128000px;}
._2a_c00471{width:361.596000px;}
._5_c00471{width:589.392000px;}
.fc2_c00471{color:transparent;}
.fc1_c00471{color:rgb(128,128,128);}
.fc0_c00471{color:rgb(0,0,0);}
.fs7_c00471{font-size:48.000000px;}
.fs2_c00471{font-size:60.000000px;}
.fs1_c00471{font-size:72.000000px;}
.fs6_c00471{font-size:78.000000px;}
.fs4_c00471{font-size:84.000000px;}
.fs5_c00471{font-size:87.000000px;}
.fs3_c00471{font-size:96.000000px;}
.fs0_c00471{font-size:102.000000px;}
.y0_c00471{bottom:0.000000px;}
.y2e_c00471{bottom:3.105000px;}
.y2d_c00471{bottom:7.228369px;}
.y24_c00471{bottom:84.720000px;}
.y23_c00471{bottom:117.120000px;}
.y2c_c00471{bottom:133.920000px;}
.y22_c00471{bottom:151.470000px;}
.y21_c00471{bottom:185.670000px;}
.y20_c00471{bottom:220.620000px;}
.y1f_c00471{bottom:254.520000px;}
.y1e_c00471{bottom:287.820000px;}
.y1d_c00471{bottom:321.870000px;}
.y1c_c00471{bottom:355.620000px;}
.y1b_c00471{bottom:389.820000px;}
.y1a_c00471{bottom:423.570000px;}
.y19_c00471{bottom:457.620000px;}
.y2b_c00471{bottom:464.970000px;}
.y18_c00471{bottom:491.070000px;}
.y17_c00471{bottom:525.420000px;}
.y16_c00471{bottom:558.870000px;}
.y15_c00471{bottom:592.020000px;}
.y14_c00471{bottom:626.370000px;}
.y13_c00471{bottom:659.820000px;}
.y2a_c00471{bottom:674.370000px;}
.y12_c00471{bottom:693.270000px;}
.y29_c00471{bottom:708.720000px;}
.y11_c00471{bottom:726.270000px;}
.y28_c00471{bottom:735.420000px;}
.y10_c00471{bottom:760.020000px;}
.y27_c00471{bottom:766.470000px;}
.yf_c00471{bottom:793.470000px;}
.y26_c00471{bottom:797.520000px;}
.y25_c00471{bottom:821.370000px;}
.ye_c00471{bottom:826.470000px;}
.yd_c00471{bottom:860.520000px;}
.yc_c00471{bottom:894.420000px;}
.yb_c00471{bottom:927.720000px;}
.ya_c00471{bottom:960.870000px;}
.y9_c00471{bottom:993.570000px;}
.y8_c00471{bottom:1027.170000px;}
.y7_c00471{bottom:1060.020000px;}
.y6_c00471{bottom:1092.870000px;}
.y5_c00471{bottom:1129.920000px;}
.y4_c00471{bottom:1161.720000px;}
.y3_c00471{bottom:1195.020000px;}
.y2_c00471{bottom:1227.720000px;}
.y1_c00471{bottom:1260.270000px;}
.h6_c00471{height:13.200073px;}
.h7_c00471{height:43.804688px;}
.h5_c00471{height:91.291992px;}
.h4_c00471{height:110.151855px;}
.h3_c00471{height:121.546875px;}
.h2_c00471{height:129.143555px;}
.h0_c00471{height:1369.950000px;}
.h1_c00471{height:1370.250000px;}
.w2_c00471{width:104.875500px;}
.w0_c00471{width:854.850000px;}
.w1_c00471{width:855.000000px;}
.x0_c00471{left:0.000000px;}
.xb_c00471{left:45.600000px;}
.xc_c00471{left:46.800000px;}
.x3_c00471{left:49.350000px;}
.x1_c00471{left:51.000000px;}
.xd_c00471{left:72.150000px;}
.x2_c00471{left:75.900000px;}
.xa_c00471{left:127.200000px;}
.xe_c00471{left:188.250000px;}
.x8_c00471{left:262.200000px;}
.x5_c00471{left:264.300000px;}
.x4_c00471{left:266.550000px;}
.x6_c00471{left:267.600000px;}
.x7_c00471{left:268.650000px;}
.xf_c00471{left:379.239258px;}
.x9_c00471{left:783.900000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls2_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:1.120000pt;}
.ls3_c00471{letter-spacing:5.333333pt;}
.ls4_c00471{letter-spacing:8.000000pt;}
.ls1_c00471{letter-spacing:35.762667pt;}
.ws5_c00471{word-spacing:-26.637333pt;}
.ws2_c00471{word-spacing:-20.565333pt;}
.ws1_c00471{word-spacing:-17.994667pt;}
.ws4_c00471{word-spacing:-16.709333pt;}
.ws0_c00471{word-spacing:-12.853333pt;}
.ws6_c00471{word-spacing:0.000000pt;}
.ws3_c00471{word-spacing:0.512000pt;}
._38_c00471{margin-left:-28.597333pt;}
._31_c00471{margin-left:-27.509333pt;}
._4b_c00471{margin-left:-22.357333pt;}
._49_c00471{margin-left:-21.189333pt;}
._1_c00471{margin-left:-19.856000pt;}
._27_c00471{margin-left:-17.909333pt;}
._48_c00471{margin-left:-16.394667pt;}
._0_c00471{margin-left:-15.050667pt;}
._2d_c00471{margin-left:-12.421333pt;}
._22_c00471{margin-left:-11.296000pt;}
._21_c00471{margin-left:-9.973333pt;}
._2_c00471{margin-left:-8.794667pt;}
._26_c00471{margin-left:-7.205333pt;}
._d_c00471{margin-left:-6.282667pt;}
._e_c00471{margin-left:-4.298667pt;}
._1b_c00471{margin-left:-3.354667pt;}
._f_c00471{margin-left:-2.176000pt;}
._b_c00471{margin-left:-1.237333pt;}
._4_c00471{width:1.024000pt;}
._18_c00471{width:1.978667pt;}
._6_c00471{width:2.901333pt;}
._c_c00471{width:4.565333pt;}
._12_c00471{width:6.256000pt;}
._15_c00471{width:7.824000pt;}
._11_c00471{width:8.730667pt;}
._9_c00471{width:10.496000pt;}
._1f_c00471{width:11.658667pt;}
._23_c00471{width:12.565333pt;}
._16_c00471{width:14.496000pt;}
._1d_c00471{width:15.680000pt;}
._7_c00471{width:17.530667pt;}
._2e_c00471{width:18.901333pt;}
._a_c00471{width:19.968000pt;}
._37_c00471{width:22.330667pt;}
._2c_c00471{width:23.237333pt;}
._8_c00471{width:24.512000pt;}
._28_c00471{width:26.133333pt;}
._2b_c00471{width:27.290667pt;}
._13_c00471{width:28.490667pt;}
._29_c00471{width:29.392000pt;}
._1e_c00471{width:30.880000pt;}
._45_c00471{width:31.840000pt;}
._2f_c00471{width:32.864000pt;}
._40_c00471{width:33.904000pt;}
._36_c00471{width:34.901333pt;}
._35_c00471{width:36.181333pt;}
._4c_c00471{width:37.528000pt;}
._32_c00471{width:38.490667pt;}
._19_c00471{width:39.541333pt;}
._34_c00471{width:40.517333pt;}
._10_c00471{width:42.213333pt;}
._30_c00471{width:44.554667pt;}
._4a_c00471{width:45.597333pt;}
._3_c00471{width:46.720000pt;}
._3c_c00471{width:47.914667pt;}
._47_c00471{width:48.922667pt;}
._14_c00471{width:49.866667pt;}
._3a_c00471{width:52.090667pt;}
._3e_c00471{width:53.952000pt;}
._44_c00471{width:55.786667pt;}
._1c_c00471{width:56.912000pt;}
._46_c00471{width:58.112000pt;}
._41_c00471{width:59.242667pt;}
._1a_c00471{width:61.290667pt;}
._20_c00471{width:62.538667pt;}
._33_c00471{width:63.456000pt;}
._42_c00471{width:65.210667pt;}
._17_c00471{width:66.176000pt;}
._25_c00471{width:67.141333pt;}
._3b_c00471{width:68.170667pt;}
._43_c00471{width:74.906667pt;}
._4d_c00471{width:82.752000pt;}
._3d_c00471{width:99.669333pt;}
._3f_c00471{width:105.130667pt;}
._39_c00471{width:123.082667pt;}
._24_c00471{width:238.336000pt;}
._2a_c00471{width:321.418667pt;}
._5_c00471{width:523.904000pt;}
.fs7_c00471{font-size:42.666667pt;}
.fs2_c00471{font-size:53.333333pt;}
.fs1_c00471{font-size:64.000000pt;}
.fs6_c00471{font-size:69.333333pt;}
.fs4_c00471{font-size:74.666667pt;}
.fs5_c00471{font-size:77.333333pt;}
.fs3_c00471{font-size:85.333333pt;}
.fs0_c00471{font-size:90.666667pt;}
.y0_c00471{bottom:0.000000pt;}
.y2e_c00471{bottom:2.760000pt;}
.y2d_c00471{bottom:6.425217pt;}
.y24_c00471{bottom:75.306667pt;}
.y23_c00471{bottom:104.106667pt;}
.y2c_c00471{bottom:119.040000pt;}
.y22_c00471{bottom:134.640000pt;}
.y21_c00471{bottom:165.040000pt;}
.y20_c00471{bottom:196.106667pt;}
.y1f_c00471{bottom:226.240000pt;}
.y1e_c00471{bottom:255.840000pt;}
.y1d_c00471{bottom:286.106667pt;}
.y1c_c00471{bottom:316.106667pt;}
.y1b_c00471{bottom:346.506667pt;}
.y1a_c00471{bottom:376.506667pt;}
.y19_c00471{bottom:406.773333pt;}
.y2b_c00471{bottom:413.306667pt;}
.y18_c00471{bottom:436.506667pt;}
.y17_c00471{bottom:467.040000pt;}
.y16_c00471{bottom:496.773333pt;}
.y15_c00471{bottom:526.240000pt;}
.y14_c00471{bottom:556.773333pt;}
.y13_c00471{bottom:586.506667pt;}
.y2a_c00471{bottom:599.440000pt;}
.y12_c00471{bottom:616.240000pt;}
.y29_c00471{bottom:629.973333pt;}
.y11_c00471{bottom:645.573333pt;}
.y28_c00471{bottom:653.706667pt;}
.y10_c00471{bottom:675.573333pt;}
.y27_c00471{bottom:681.306667pt;}
.yf_c00471{bottom:705.306667pt;}
.y26_c00471{bottom:708.906667pt;}
.y25_c00471{bottom:730.106667pt;}
.ye_c00471{bottom:734.640000pt;}
.yd_c00471{bottom:764.906667pt;}
.yc_c00471{bottom:795.040000pt;}
.yb_c00471{bottom:824.640000pt;}
.ya_c00471{bottom:854.106667pt;}
.y9_c00471{bottom:883.173333pt;}
.y8_c00471{bottom:913.040000pt;}
.y7_c00471{bottom:942.240000pt;}
.y6_c00471{bottom:971.440000pt;}
.y5_c00471{bottom:1004.373333pt;}
.y4_c00471{bottom:1032.640000pt;}
.y3_c00471{bottom:1062.240000pt;}
.y2_c00471{bottom:1091.306667pt;}
.y1_c00471{bottom:1120.240000pt;}
.h6_c00471{height:11.733399pt;}
.h7_c00471{height:38.937500pt;}
.h5_c00471{height:81.148438pt;}
.h4_c00471{height:97.912760pt;}
.h3_c00471{height:108.041667pt;}
.h2_c00471{height:114.794271pt;}
.h0_c00471{height:1217.733333pt;}
.h1_c00471{height:1218.000000pt;}
.w2_c00471{width:93.222667pt;}
.w0_c00471{width:759.866667pt;}
.w1_c00471{width:760.000000pt;}
.x0_c00471{left:0.000000pt;}
.xb_c00471{left:40.533333pt;}
.xc_c00471{left:41.600000pt;}
.x3_c00471{left:43.866667pt;}
.x1_c00471{left:45.333333pt;}
.xd_c00471{left:64.133333pt;}
.x2_c00471{left:67.466667pt;}
.xa_c00471{left:113.066667pt;}
.xe_c00471{left:167.333333pt;}
.x8_c00471{left:233.066667pt;}
.x5_c00471{left:234.933333pt;}
.x4_c00471{left:236.933333pt;}
.x6_c00471{left:237.866667pt;}
.x7_c00471{left:238.800000pt;}
.xf_c00471{left:337.101563pt;}
.x9_c00471{left:696.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_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_1080bd97bb0dce747d7351cc.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_6140b12a2f85559130d1c2ff.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls3_c00472{letter-spacing:0.000000px;}
.ls1_c00472{letter-spacing:8.520000px;}
.ls0_c00472{letter-spacing:10.920000px;}
.ls2_c00472{letter-spacing:36.033000px;}
.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;}
}
.ws0_c00472{word-spacing:-23.136000px;}
.ws1_c00472{word-spacing:-20.967000px;}
.ws2_c00472{word-spacing:0.000000px;}
._41_c00472{margin-left:-75.552000px;}
._2f_c00472{margin-left:-72.288000px;}
._39_c00472{margin-left:-22.920000px;}
._3e_c00472{margin-left:-21.504000px;}
._30_c00472{margin-left:-19.584000px;}
._28_c00472{margin-left:-16.992000px;}
._37_c00472{margin-left:-14.304000px;}
._34_c00472{margin-left:-12.096000px;}
._36_c00472{margin-left:-9.960000px;}
._43_c00472{margin-left:-8.136000px;}
._3d_c00472{margin-left:-6.432000px;}
._8_c00472{margin-left:-5.376000px;}
._44_c00472{margin-left:-4.296000px;}
._a_c00472{margin-left:-3.264000px;}
._15_c00472{margin-left:-2.112000px;}
._1c_c00472{margin-left:-1.056000px;}
._6_c00472{width:1.344000px;}
._0_c00472{width:2.592000px;}
._2_c00472{width:3.840000px;}
._3_c00472{width:4.896000px;}
._12_c00472{width:6.144000px;}
._17_c00472{width:7.392000px;}
._11_c00472{width:9.024000px;}
._23_c00472{width:10.464000px;}
._5_c00472{width:12.864000px;}
._13_c00472{width:14.880000px;}
._1_c00472{width:16.512000px;}
._4_c00472{width:18.432000px;}
._33_c00472{width:19.584000px;}
._18_c00472{width:21.792000px;}
._46_c00472{width:23.766000px;}
._9_c00472{width:25.440000px;}
._b_c00472{width:27.552000px;}
._f_c00472{width:29.472000px;}
._3a_c00472{width:30.528000px;}
._e_c00472{width:31.968000px;}
._7_c00472{width:34.272000px;}
._2e_c00472{width:36.096000px;}
._10_c00472{width:37.248000px;}
._21_c00472{width:38.496000px;}
._19_c00472{width:39.648000px;}
._d_c00472{width:40.992000px;}
._1d_c00472{width:42.048000px;}
._2b_c00472{width:43.104000px;}
._35_c00472{width:45.096000px;}
._3b_c00472{width:46.656000px;}
._c_c00472{width:47.712000px;}
._1b_c00472{width:49.632000px;}
._14_c00472{width:52.128000px;}
._2c_c00472{width:53.376000px;}
._2d_c00472{width:56.064000px;}
._40_c00472{width:58.872000px;}
._26_c00472{width:60.192000px;}
._1f_c00472{width:62.976000px;}
._1a_c00472{width:65.088000px;}
._16_c00472{width:67.392000px;}
._3f_c00472{width:69.120000px;}
._25_c00472{width:71.616000px;}
._22_c00472{width:73.248000px;}
._1e_c00472{width:75.360000px;}
._32_c00472{width:77.856000px;}
._31_c00472{width:79.776000px;}
._20_c00472{width:82.080000px;}
._38_c00472{width:83.136000px;}
._24_c00472{width:86.016000px;}
._45_c00472{width:137.268000px;}
._3c_c00472{width:144.192000px;}
._27_c00472{width:330.432000px;}
._2a_c00472{width:387.936000px;}
._42_c00472{width:715.776000px;}
._29_c00472{width:1316.064000px;}
.fc2_c00472{color:transparent;}
.fc1_c00472{color:rgb(128,128,128);}
.fc0_c00472{color:rgb(0,0,0);}
.fs4_c00472{font-size:48.000000px;}
.fs2_c00472{font-size:78.000000px;}
.fs1_c00472{font-size:84.000000px;}
.fs3_c00472{font-size:87.000000px;}
.fs0_c00472{font-size:96.000000px;}
.y0_c00472{bottom:0.000000px;}
.y2b_c00472{bottom:3.105000px;}
.y2a_c00472{bottom:7.228369px;}
.y24_c00472{bottom:116.070000px;}
.y23_c00472{bottom:150.420000px;}
.y22_c00472{bottom:185.670000px;}
.y21_c00472{bottom:220.020000px;}
.y20_c00472{bottom:253.770000px;}
.y1f_c00472{bottom:287.220000px;}
.y1e_c00472{bottom:320.670000px;}
.y1d_c00472{bottom:355.320000px;}
.y1c_c00472{bottom:388.470000px;}
.y1b_c00472{bottom:422.220000px;}
.y1a_c00472{bottom:455.220000px;}
.y19_c00472{bottom:489.420000px;}
.y18_c00472{bottom:523.170000px;}
.y17_c00472{bottom:556.920000px;}
.y16_c00472{bottom:590.520000px;}
.y15_c00472{bottom:624.720000px;}
.y14_c00472{bottom:658.020000px;}
.y13_c00472{bottom:691.920000px;}
.y12_c00472{bottom:725.220000px;}
.y11_c00472{bottom:758.970000px;}
.y29_c00472{bottom:782.670000px;}
.y10_c00472{bottom:793.020000px;}
.y28_c00472{bottom:813.270000px;}
.yf_c00472{bottom:826.170000px;}
.y27_c00472{bottom:842.670000px;}
.ye_c00472{bottom:858.270000px;}
.y26_c00472{bottom:871.020000px;}
.yd_c00472{bottom:891.570000px;}
.y25_c00472{bottom:900.120000px;}
.yc_c00472{bottom:924.420000px;}
.yb_c00472{bottom:959.820000px;}
.ya_c00472{bottom:992.970000px;}
.y9_c00472{bottom:1026.570000px;}
.y8_c00472{bottom:1059.720000px;}
.y7_c00472{bottom:1093.170000px;}
.y6_c00472{bottom:1125.570000px;}
.y5_c00472{bottom:1158.870000px;}
.y4_c00472{bottom:1192.320000px;}
.y3_c00472{bottom:1225.470000px;}
.y2_c00472{bottom:1258.770000px;}
.y1_c00472{bottom:1292.520000px;}
.h6_c00472{height:13.200073px;}
.h7_c00472{height:43.804688px;}
.h5_c00472{height:91.291992px;}
.h4_c00472{height:98.314453px;}
.h3_c00472{height:110.151855px;}
.h2_c00472{height:121.546875px;}
.h0_c00472{height:1383.450000px;}
.h1_c00472{height:1383.750000px;}
.w2_c00472{width:104.875500px;}
.w0_c00472{width:878.025000px;}
.w1_c00472{width:878.250000px;}
.x0_c00472{left:0.000000px;}
.xb_c00472{left:27.300000px;}
.x9_c00472{left:28.350000px;}
.xa_c00472{left:30.000000px;}
.x7_c00472{left:31.050000px;}
.x6_c00472{left:32.100000px;}
.x5_c00472{left:33.150000px;}
.x4_c00472{left:34.200000px;}
.x2_c00472{left:35.400000px;}
.x3_c00472{left:36.450000px;}
.x1_c00472{left:37.500000px;}
.x8_c00472{left:81.300000px;}
.xc_c00472{left:291.600000px;}
.x11_c00472{left:390.826721px;}
.x10_c00472{left:621.750000px;}
.xf_c00472{left:622.800000px;}
.xd_c00472{left:652.050000px;}
.xe_c00472{left:705.000000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls3_c00472{letter-spacing:0.000000pt;}
.ls1_c00472{letter-spacing:7.573333pt;}
.ls0_c00472{letter-spacing:9.706667pt;}
.ls2_c00472{letter-spacing:32.029333pt;}
.ws0_c00472{word-spacing:-20.565333pt;}
.ws1_c00472{word-spacing:-18.637333pt;}
.ws2_c00472{word-spacing:0.000000pt;}
._41_c00472{margin-left:-67.157333pt;}
._2f_c00472{margin-left:-64.256000pt;}
._39_c00472{margin-left:-20.373333pt;}
._3e_c00472{margin-left:-19.114667pt;}
._30_c00472{margin-left:-17.408000pt;}
._28_c00472{margin-left:-15.104000pt;}
._37_c00472{margin-left:-12.714667pt;}
._34_c00472{margin-left:-10.752000pt;}
._36_c00472{margin-left:-8.853333pt;}
._43_c00472{margin-left:-7.232000pt;}
._3d_c00472{margin-left:-5.717333pt;}
._8_c00472{margin-left:-4.778667pt;}
._44_c00472{margin-left:-3.818667pt;}
._a_c00472{margin-left:-2.901333pt;}
._15_c00472{margin-left:-1.877333pt;}
._1c_c00472{margin-left:-0.938667pt;}
._6_c00472{width:1.194667pt;}
._0_c00472{width:2.304000pt;}
._2_c00472{width:3.413333pt;}
._3_c00472{width:4.352000pt;}
._12_c00472{width:5.461333pt;}
._17_c00472{width:6.570667pt;}
._11_c00472{width:8.021333pt;}
._23_c00472{width:9.301333pt;}
._5_c00472{width:11.434667pt;}
._13_c00472{width:13.226667pt;}
._1_c00472{width:14.677333pt;}
._4_c00472{width:16.384000pt;}
._33_c00472{width:17.408000pt;}
._18_c00472{width:19.370667pt;}
._46_c00472{width:21.125333pt;}
._9_c00472{width:22.613333pt;}
._b_c00472{width:24.490667pt;}
._f_c00472{width:26.197333pt;}
._3a_c00472{width:27.136000pt;}
._e_c00472{width:28.416000pt;}
._7_c00472{width:30.464000pt;}
._2e_c00472{width:32.085333pt;}
._10_c00472{width:33.109333pt;}
._21_c00472{width:34.218667pt;}
._19_c00472{width:35.242667pt;}
._d_c00472{width:36.437333pt;}
._1d_c00472{width:37.376000pt;}
._2b_c00472{width:38.314667pt;}
._35_c00472{width:40.085333pt;}
._3b_c00472{width:41.472000pt;}
._c_c00472{width:42.410667pt;}
._1b_c00472{width:44.117333pt;}
._14_c00472{width:46.336000pt;}
._2c_c00472{width:47.445333pt;}
._2d_c00472{width:49.834667pt;}
._40_c00472{width:52.330667pt;}
._26_c00472{width:53.504000pt;}
._1f_c00472{width:55.978667pt;}
._1a_c00472{width:57.856000pt;}
._16_c00472{width:59.904000pt;}
._3f_c00472{width:61.440000pt;}
._25_c00472{width:63.658667pt;}
._22_c00472{width:65.109333pt;}
._1e_c00472{width:66.986667pt;}
._32_c00472{width:69.205333pt;}
._31_c00472{width:70.912000pt;}
._20_c00472{width:72.960000pt;}
._38_c00472{width:73.898667pt;}
._24_c00472{width:76.458667pt;}
._45_c00472{width:122.016000pt;}
._3c_c00472{width:128.170667pt;}
._27_c00472{width:293.717333pt;}
._2a_c00472{width:344.832000pt;}
._42_c00472{width:636.245333pt;}
._29_c00472{width:1169.834667pt;}
.fs4_c00472{font-size:42.666667pt;}
.fs2_c00472{font-size:69.333333pt;}
.fs1_c00472{font-size:74.666667pt;}
.fs3_c00472{font-size:77.333333pt;}
.fs0_c00472{font-size:85.333333pt;}
.y0_c00472{bottom:0.000000pt;}
.y2b_c00472{bottom:2.760000pt;}
.y2a_c00472{bottom:6.425217pt;}
.y24_c00472{bottom:103.173333pt;}
.y23_c00472{bottom:133.706667pt;}
.y22_c00472{bottom:165.040000pt;}
.y21_c00472{bottom:195.573333pt;}
.y20_c00472{bottom:225.573333pt;}
.y1f_c00472{bottom:255.306667pt;}
.y1e_c00472{bottom:285.040000pt;}
.y1d_c00472{bottom:315.840000pt;}
.y1c_c00472{bottom:345.306667pt;}
.y1b_c00472{bottom:375.306667pt;}
.y1a_c00472{bottom:404.640000pt;}
.y19_c00472{bottom:435.040000pt;}
.y18_c00472{bottom:465.040000pt;}
.y17_c00472{bottom:495.040000pt;}
.y16_c00472{bottom:524.906667pt;}
.y15_c00472{bottom:555.306667pt;}
.y14_c00472{bottom:584.906667pt;}
.y13_c00472{bottom:615.040000pt;}
.y12_c00472{bottom:644.640000pt;}
.y11_c00472{bottom:674.640000pt;}
.y29_c00472{bottom:695.706667pt;}
.y10_c00472{bottom:704.906667pt;}
.y28_c00472{bottom:722.906667pt;}
.yf_c00472{bottom:734.373333pt;}
.y27_c00472{bottom:749.040000pt;}
.ye_c00472{bottom:762.906667pt;}
.y26_c00472{bottom:774.240000pt;}
.yd_c00472{bottom:792.506667pt;}
.y25_c00472{bottom:800.106667pt;}
.yc_c00472{bottom:821.706667pt;}
.yb_c00472{bottom:853.173333pt;}
.ya_c00472{bottom:882.640000pt;}
.y9_c00472{bottom:912.506667pt;}
.y8_c00472{bottom:941.973333pt;}
.y7_c00472{bottom:971.706667pt;}
.y6_c00472{bottom:1000.506667pt;}
.y5_c00472{bottom:1030.106667pt;}
.y4_c00472{bottom:1059.840000pt;}
.y3_c00472{bottom:1089.306667pt;}
.y2_c00472{bottom:1118.906667pt;}
.y1_c00472{bottom:1148.906667pt;}
.h6_c00472{height:11.733399pt;}
.h7_c00472{height:38.937500pt;}
.h5_c00472{height:81.148438pt;}
.h4_c00472{height:87.390625pt;}
.h3_c00472{height:97.912760pt;}
.h2_c00472{height:108.041667pt;}
.h0_c00472{height:1229.733333pt;}
.h1_c00472{height:1230.000000pt;}
.w2_c00472{width:93.222667pt;}
.w0_c00472{width:780.466667pt;}
.w1_c00472{width:780.666667pt;}
.x0_c00472{left:0.000000pt;}
.xb_c00472{left:24.266667pt;}
.x9_c00472{left:25.200000pt;}
.xa_c00472{left:26.666667pt;}
.x7_c00472{left:27.600000pt;}
.x6_c00472{left:28.533333pt;}
.x5_c00472{left:29.466667pt;}
.x4_c00472{left:30.400000pt;}
.x2_c00472{left:31.466667pt;}
.x3_c00472{left:32.400000pt;}
.x1_c00472{left:33.333333pt;}
.x8_c00472{left:72.266667pt;}
.xc_c00472{left:259.200000pt;}
.x11_c00472{left:347.401530pt;}
.x10_c00472{left:552.666667pt;}
.xf_c00472{left:553.600000pt;}
.xd_c00472{left:579.600000pt;}
.xe_c00472{left:626.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ae628763dd082539b541a47.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_b9bdc4f91bbc9fabb8be84ad.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00473{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.ls1_c00473{letter-spacing:9.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:-29.244000px;}
.ws1_c00473{word-spacing:-27.474000px;}
.ws2_c00473{word-spacing:0.000000px;}
._1f_c00473{margin-left:-34.752000px;}
._21_c00473{margin-left:-20.352000px;}
._40_c00473{margin-left:-17.952000px;}
._38_c00473{margin-left:-15.552000px;}
._22_c00473{margin-left:-14.208000px;}
._37_c00473{margin-left:-12.816000px;}
._25_c00473{margin-left:-11.520000px;}
._2f_c00473{margin-left:-6.624000px;}
._3f_c00473{margin-left:-5.376000px;}
._2e_c00473{margin-left:-4.224000px;}
._3_c00473{margin-left:-3.072000px;}
._f_c00473{margin-left:-1.440000px;}
._5_c00473{width:1.152000px;}
._6_c00473{width:2.400000px;}
._9_c00473{width:4.032000px;}
._2_c00473{width:5.184000px;}
._1c_c00473{width:7.008000px;}
._0_c00473{width:8.256000px;}
._2a_c00473{width:10.272000px;}
._35_c00473{width:12.000000px;}
._1_c00473{width:13.056000px;}
._18_c00473{width:14.400000px;}
._1b_c00473{width:15.552000px;}
._1a_c00473{width:16.704000px;}
._26_c00473{width:17.856000px;}
._4_c00473{width:18.912000px;}
._1e_c00473{width:20.928000px;}
._8_c00473{width:24.288000px;}
._b_c00473{width:25.632000px;}
._2d_c00473{width:27.552000px;}
._24_c00473{width:28.896000px;}
._3b_c00473{width:30.336000px;}
._15_c00473{width:31.584000px;}
._12_c00473{width:32.640000px;}
._23_c00473{width:34.464000px;}
._36_c00473{width:36.192000px;}
._19_c00473{width:37.248000px;}
._7_c00473{width:38.400000px;}
._a_c00473{width:40.512000px;}
._39_c00473{width:42.528000px;}
._1d_c00473{width:43.680000px;}
._14_c00473{width:44.832000px;}
._3d_c00473{width:45.888000px;}
._13_c00473{width:47.136000px;}
._27_c00473{width:48.960000px;}
._2b_c00473{width:50.688000px;}
._20_c00473{width:51.744000px;}
._17_c00473{width:53.952000px;}
._3c_c00473{width:55.104000px;}
._11_c00473{width:56.448000px;}
._3e_c00473{width:57.600000px;}
._16_c00473{width:60.096000px;}
._3a_c00473{width:62.592000px;}
._29_c00473{width:64.224000px;}
._34_c00473{width:65.376000px;}
._10_c00473{width:66.624000px;}
._c_c00473{width:68.640000px;}
._2c_c00473{width:70.656000px;}
._33_c00473{width:73.536000px;}
._e_c00473{width:75.168000px;}
._28_c00473{width:77.760000px;}
._d_c00473{width:80.352000px;}
._32_c00473{width:86.784000px;}
._30_c00473{width:182.400000px;}
._31_c00473{width:386.880000px;}
.fc2_c00473{color:transparent;}
.fc1_c00473{color:rgb(128,128,128);}
.fc0_c00473{color:rgb(0,0,0);}
.fs3_c00473{font-size:48.000000px;}
.fs1_c00473{font-size:84.000000px;}
.fs0_c00473{font-size:96.000000px;}
.fs2_c00473{font-size:114.000000px;}
.y0_c00473{bottom:0.000000px;}
.y26_c00473{bottom:3.105000px;}
.y25_c00473{bottom:7.228357px;}
.y24_c00473{bottom:101.880000px;}
.y23_c00473{bottom:134.430000px;}
.y22_c00473{bottom:168.780000px;}
.y21_c00473{bottom:202.830000px;}
.y20_c00473{bottom:237.030000px;}
.y1f_c00473{bottom:271.080000px;}
.y1e_c00473{bottom:304.530000px;}
.y1d_c00473{bottom:338.580000px;}
.y1c_c00473{bottom:372.330000px;}
.y1b_c00473{bottom:406.380000px;}
.y1a_c00473{bottom:440.430000px;}
.y19_c00473{bottom:473.880000px;}
.y18_c00473{bottom:507.930000px;}
.y17_c00473{bottom:541.980000px;}
.y16_c00473{bottom:574.830000px;}
.y15_c00473{bottom:608.880000px;}
.y14_c00473{bottom:642.630000px;}
.y13_c00473{bottom:675.780000px;}
.y12_c00473{bottom:709.530000px;}
.y11_c00473{bottom:743.580000px;}
.y10_c00473{bottom:776.880000px;}
.yf_c00473{bottom:809.730000px;}
.ye_c00473{bottom:845.430000px;}
.yd_c00473{bottom:877.830000px;}
.yc_c00473{bottom:910.980000px;}
.yb_c00473{bottom:944.430000px;}
.ya_c00473{bottom:978.180000px;}
.y9_c00473{bottom:1011.180000px;}
.y8_c00473{bottom:1043.880000px;}
.y7_c00473{bottom:1077.330000px;}
.y6_c00473{bottom:1108.980000px;}
.y5_c00473{bottom:1144.080000px;}
.y4_c00473{bottom:1177.980000px;}
.y3_c00473{bottom:1211.280000px;}
.y2_c00473{bottom:1244.130000px;}
.y1_c00473{bottom:1277.430000px;}
.h4_c00473{height:13.200074px;}
.h5_c00473{height:43.804688px;}
.h2_c00473{height:121.546875px;}
.h3_c00473{height:144.336914px;}
.h0_c00473{height:1382.700000px;}
.h1_c00473{height:1383.000000px;}
.w2_c00473{width:104.875500px;}
.w0_c00473{width:863.175000px;}
.w1_c00473{width:863.250000px;}
.x0_c00473{left:0.000000px;}
.x7_c00473{left:47.700000px;}
.x6_c00473{left:96.900000px;}
.xb_c00473{left:256.800000px;}
.xc_c00473{left:257.850000px;}
.xa_c00473{left:260.550000px;}
.x9_c00473{left:261.600000px;}
.x8_c00473{left:263.700000px;}
.x5_c00473{left:264.900000px;}
.x4_c00473{left:265.950000px;}
.x3_c00473{left:267.000000px;}
.x2_c00473{left:268.050000px;}
.x1_c00473{left:269.700000px;}
.x10_c00473{left:383.401749px;}
.xd_c00473{left:748.650000px;}
.xe_c00473{left:750.750000px;}
.xf_c00473{left:807.000000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ls1_c00473{letter-spacing:8.000000pt;}
.ws0_c00473{word-spacing:-25.994667pt;}
.ws1_c00473{word-spacing:-24.421333pt;}
.ws2_c00473{word-spacing:0.000000pt;}
._1f_c00473{margin-left:-30.890667pt;}
._21_c00473{margin-left:-18.090667pt;}
._40_c00473{margin-left:-15.957333pt;}
._38_c00473{margin-left:-13.824000pt;}
._22_c00473{margin-left:-12.629333pt;}
._37_c00473{margin-left:-11.392000pt;}
._25_c00473{margin-left:-10.240000pt;}
._2f_c00473{margin-left:-5.888000pt;}
._3f_c00473{margin-left:-4.778667pt;}
._2e_c00473{margin-left:-3.754667pt;}
._3_c00473{margin-left:-2.730667pt;}
._f_c00473{margin-left:-1.280000pt;}
._5_c00473{width:1.024000pt;}
._6_c00473{width:2.133333pt;}
._9_c00473{width:3.584000pt;}
._2_c00473{width:4.608000pt;}
._1c_c00473{width:6.229333pt;}
._0_c00473{width:7.338667pt;}
._2a_c00473{width:9.130667pt;}
._35_c00473{width:10.666667pt;}
._1_c00473{width:11.605333pt;}
._18_c00473{width:12.800000pt;}
._1b_c00473{width:13.824000pt;}
._1a_c00473{width:14.848000pt;}
._26_c00473{width:15.872000pt;}
._4_c00473{width:16.810667pt;}
._1e_c00473{width:18.602667pt;}
._8_c00473{width:21.589333pt;}
._b_c00473{width:22.784000pt;}
._2d_c00473{width:24.490667pt;}
._24_c00473{width:25.685333pt;}
._3b_c00473{width:26.965333pt;}
._15_c00473{width:28.074667pt;}
._12_c00473{width:29.013333pt;}
._23_c00473{width:30.634667pt;}
._36_c00473{width:32.170667pt;}
._19_c00473{width:33.109333pt;}
._7_c00473{width:34.133333pt;}
._a_c00473{width:36.010667pt;}
._39_c00473{width:37.802667pt;}
._1d_c00473{width:38.826667pt;}
._14_c00473{width:39.850667pt;}
._3d_c00473{width:40.789333pt;}
._13_c00473{width:41.898667pt;}
._27_c00473{width:43.520000pt;}
._2b_c00473{width:45.056000pt;}
._20_c00473{width:45.994667pt;}
._17_c00473{width:47.957333pt;}
._3c_c00473{width:48.981333pt;}
._11_c00473{width:50.176000pt;}
._3e_c00473{width:51.200000pt;}
._16_c00473{width:53.418667pt;}
._3a_c00473{width:55.637333pt;}
._29_c00473{width:57.088000pt;}
._34_c00473{width:58.112000pt;}
._10_c00473{width:59.221333pt;}
._c_c00473{width:61.013333pt;}
._2c_c00473{width:62.805333pt;}
._33_c00473{width:65.365333pt;}
._e_c00473{width:66.816000pt;}
._28_c00473{width:69.120000pt;}
._d_c00473{width:71.424000pt;}
._32_c00473{width:77.141333pt;}
._30_c00473{width:162.133333pt;}
._31_c00473{width:343.893333pt;}
.fs3_c00473{font-size:42.666667pt;}
.fs1_c00473{font-size:74.666667pt;}
.fs0_c00473{font-size:85.333333pt;}
.fs2_c00473{font-size:101.333333pt;}
.y0_c00473{bottom:0.000000pt;}
.y26_c00473{bottom:2.760000pt;}
.y25_c00473{bottom:6.425206pt;}
.y24_c00473{bottom:90.560000pt;}
.y23_c00473{bottom:119.493333pt;}
.y22_c00473{bottom:150.026667pt;}
.y21_c00473{bottom:180.293333pt;}
.y20_c00473{bottom:210.693333pt;}
.y1f_c00473{bottom:240.960000pt;}
.y1e_c00473{bottom:270.693333pt;}
.y1d_c00473{bottom:300.960000pt;}
.y1c_c00473{bottom:330.960000pt;}
.y1b_c00473{bottom:361.226667pt;}
.y1a_c00473{bottom:391.493333pt;}
.y19_c00473{bottom:421.226667pt;}
.y18_c00473{bottom:451.493333pt;}
.y17_c00473{bottom:481.760000pt;}
.y16_c00473{bottom:510.960000pt;}
.y15_c00473{bottom:541.226667pt;}
.y14_c00473{bottom:571.226667pt;}
.y13_c00473{bottom:600.693333pt;}
.y12_c00473{bottom:630.693333pt;}
.y11_c00473{bottom:660.960000pt;}
.y10_c00473{bottom:690.560000pt;}
.yf_c00473{bottom:719.760000pt;}
.ye_c00473{bottom:751.493333pt;}
.yd_c00473{bottom:780.293333pt;}
.yc_c00473{bottom:809.760000pt;}
.yb_c00473{bottom:839.493333pt;}
.ya_c00473{bottom:869.493333pt;}
.y9_c00473{bottom:898.826667pt;}
.y8_c00473{bottom:927.893333pt;}
.y7_c00473{bottom:957.626667pt;}
.y6_c00473{bottom:985.760000pt;}
.y5_c00473{bottom:1016.960000pt;}
.y4_c00473{bottom:1047.093333pt;}
.y3_c00473{bottom:1076.693333pt;}
.y2_c00473{bottom:1105.893333pt;}
.y1_c00473{bottom:1135.493333pt;}
.h4_c00473{height:11.733399pt;}
.h5_c00473{height:38.937500pt;}
.h2_c00473{height:108.041667pt;}
.h3_c00473{height:128.299479pt;}
.h0_c00473{height:1229.066667pt;}
.h1_c00473{height:1229.333333pt;}
.w2_c00473{width:93.222667pt;}
.w0_c00473{width:767.266667pt;}
.w1_c00473{width:767.333333pt;}
.x0_c00473{left:0.000000pt;}
.x7_c00473{left:42.400000pt;}
.x6_c00473{left:86.133333pt;}
.xb_c00473{left:228.266667pt;}
.xc_c00473{left:229.200000pt;}
.xa_c00473{left:231.600000pt;}
.x9_c00473{left:232.533333pt;}
.x8_c00473{left:234.400000pt;}
.x5_c00473{left:235.466667pt;}
.x4_c00473{left:236.400000pt;}
.x3_c00473{left:237.333333pt;}
.x2_c00473{left:238.266667pt;}
.x1_c00473{left:239.733333pt;}
.x10_c00473{left:340.801554pt;}
.xd_c00473{left:665.466667pt;}
.xe_c00473{left:667.333333pt;}
.xf_c00473{left:717.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d23f604661f83f384cb83fc.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_d6aa0bee5a752d692f2120ae.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_04f704999a1ca29c9240b6c3.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00474{word-spacing:-51.000000px;}
.ws0_c00474{word-spacing:-23.136000px;}
.ws1_c00474{word-spacing:-20.244000px;}
.ws3_c00474{word-spacing:0.000000px;}
._35_c00474{margin-left:-43.728000px;}
._28_c00474{margin-left:-37.152000px;}
._30_c00474{margin-left:-29.568000px;}
._2a_c00474{margin-left:-20.880000px;}
._2d_c00474{margin-left:-18.024000px;}
._12_c00474{margin-left:-11.232000px;}
._d_c00474{margin-left:-9.888000px;}
._b_c00474{margin-left:-8.160000px;}
._3a_c00474{margin-left:-6.720000px;}
._c_c00474{margin-left:-4.704000px;}
._25_c00474{margin-left:-3.360000px;}
._23_c00474{margin-left:-2.352000px;}
._24_c00474{margin-left:-1.176000px;}
._a_c00474{width:1.056000px;}
._0_c00474{width:2.304000px;}
._1_c00474{width:3.360000px;}
._3_c00474{width:5.184000px;}
._5_c00474{width:6.912000px;}
._2_c00474{width:8.640000px;}
._14_c00474{width:10.272000px;}
._1b_c00474{width:11.904000px;}
._1c_c00474{width:13.344000px;}
._9_c00474{width:14.688000px;}
._18_c00474{width:16.320000px;}
._17_c00474{width:17.664000px;}
._29_c00474{width:18.768000px;}
._1f_c00474{width:21.408000px;}
._13_c00474{width:25.248000px;}
._21_c00474{width:26.592000px;}
._7_c00474{width:28.128000px;}
._27_c00474{width:29.664000px;}
._e_c00474{width:30.720000px;}
._2c_c00474{width:31.896000px;}
._4_c00474{width:34.080000px;}
._8_c00474{width:35.712000px;}
._10_c00474{width:37.056000px;}
._20_c00474{width:38.976000px;}
._f_c00474{width:40.320000px;}
._26_c00474{width:41.568000px;}
._11_c00474{width:42.624000px;}
._36_c00474{width:43.632000px;}
._6_c00474{width:44.832000px;}
._2b_c00474{width:46.224000px;}
._1e_c00474{width:47.520000px;}
._37_c00474{width:48.768000px;}
._16_c00474{width:49.824000px;}
._38_c00474{width:51.816000px;}
._32_c00474{width:54.144000px;}
._15_c00474{width:56.064000px;}
._19_c00474{width:57.888000px;}
._1a_c00474{width:64.224000px;}
._31_c00474{width:76.392000px;}
._34_c00474{width:138.540000px;}
._2f_c00474{width:167.904000px;}
._33_c00474{width:179.568000px;}
._1d_c00474{width:180.864000px;}
._22_c00474{width:184.008000px;}
._39_c00474{width:196.104000px;}
._2e_c00474{width:1793.760000px;}
.fc2_c00474{color:transparent;}
.fc1_c00474{color:rgb(128,128,128);}
.fc0_c00474{color:rgb(0,0,0);}
.fs3_c00474{font-size:48.000000px;}
.fs1_c00474{font-size:84.000000px;}
.fs0_c00474{font-size:96.000000px;}
.fs2_c00474{font-size:102.000000px;}
.y0_c00474{bottom:0.000000px;}
.y26_c00474{bottom:3.105000px;}
.y25_c00474{bottom:7.228369px;}
.y24_c00474{bottom:111.720000px;}
.y23_c00474{bottom:150.870000px;}
.y22_c00474{bottom:185.520000px;}
.y21_c00474{bottom:220.320000px;}
.y20_c00474{bottom:254.070000px;}
.y1f_c00474{bottom:287.520000px;}
.y1e_c00474{bottom:321.270000px;}
.y1d_c00474{bottom:355.320000px;}
.y1c_c00474{bottom:389.370000px;}
.y1b_c00474{bottom:423.120000px;}
.y1a_c00474{bottom:456.570000px;}
.y19_c00474{bottom:489.720000px;}
.y18_c00474{bottom:523.170000px;}
.y17_c00474{bottom:558.120000px;}
.y16_c00474{bottom:591.270000px;}
.y15_c00474{bottom:624.720000px;}
.y14_c00474{bottom:658.770000px;}
.y13_c00474{bottom:693.120000px;}
.y12_c00474{bottom:727.020000px;}
.y11_c00474{bottom:758.970000px;}
.y10_c00474{bottom:793.470000px;}
.yf_c00474{bottom:824.220000px;}
.ye_c00474{bottom:858.870000px;}
.yd_c00474{bottom:892.320000px;}
.yc_c00474{bottom:925.020000px;}
.yb_c00474{bottom:959.070000px;}
.ya_c00474{bottom:992.520000px;}
.y9_c00474{bottom:1026.570000px;}
.y8_c00474{bottom:1059.720000px;}
.y7_c00474{bottom:1092.420000px;}
.y6_c00474{bottom:1127.220000px;}
.y5_c00474{bottom:1157.670000px;}
.y4_c00474{bottom:1190.970000px;}
.y3_c00474{bottom:1224.120000px;}
.y2_c00474{bottom:1258.470000px;}
.y1_c00474{bottom:1291.620000px;}
.h3_c00474{height:13.200073px;}
.h4_c00474{height:43.804688px;}
.h2_c00474{height:121.546875px;}
.h0_c00474{height:1383.450000px;}
.h1_c00474{height:1383.750000px;}
.w2_c00474{width:104.875500px;}
.w0_c00474{width:878.025000px;}
.w1_c00474{width:878.250000px;}
.x0_c00474{left:0.000000px;}
.x8_c00474{left:31.050000px;}
.x5_c00474{left:32.700000px;}
.x7_c00474{left:33.750000px;}
.x4_c00474{left:35.400000px;}
.x2_c00474{left:36.450000px;}
.x1_c00474{left:38.100000px;}
.xa_c00474{left:39.150000px;}
.x9_c00474{left:40.200000px;}
.xb_c00474{left:44.100000px;}
.x6_c00474{left:85.050000px;}
.x3_c00474{left:87.300000px;}
.xd_c00474{left:390.826721px;}
.xc_c00474{left:585.600000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws2_c00474{word-spacing:-45.333333pt;}
.ws0_c00474{word-spacing:-20.565333pt;}
.ws1_c00474{word-spacing:-17.994667pt;}
.ws3_c00474{word-spacing:0.000000pt;}
._35_c00474{margin-left:-38.869333pt;}
._28_c00474{margin-left:-33.024000pt;}
._30_c00474{margin-left:-26.282667pt;}
._2a_c00474{margin-left:-18.560000pt;}
._2d_c00474{margin-left:-16.021333pt;}
._12_c00474{margin-left:-9.984000pt;}
._d_c00474{margin-left:-8.789333pt;}
._b_c00474{margin-left:-7.253333pt;}
._3a_c00474{margin-left:-5.973333pt;}
._c_c00474{margin-left:-4.181333pt;}
._25_c00474{margin-left:-2.986667pt;}
._23_c00474{margin-left:-2.090667pt;}
._24_c00474{margin-left:-1.045333pt;}
._a_c00474{width:0.938667pt;}
._0_c00474{width:2.048000pt;}
._1_c00474{width:2.986667pt;}
._3_c00474{width:4.608000pt;}
._5_c00474{width:6.144000pt;}
._2_c00474{width:7.680000pt;}
._14_c00474{width:9.130667pt;}
._1b_c00474{width:10.581333pt;}
._1c_c00474{width:11.861333pt;}
._9_c00474{width:13.056000pt;}
._18_c00474{width:14.506667pt;}
._17_c00474{width:15.701333pt;}
._29_c00474{width:16.682667pt;}
._1f_c00474{width:19.029333pt;}
._13_c00474{width:22.442667pt;}
._21_c00474{width:23.637333pt;}
._7_c00474{width:25.002667pt;}
._27_c00474{width:26.368000pt;}
._e_c00474{width:27.306667pt;}
._2c_c00474{width:28.352000pt;}
._4_c00474{width:30.293333pt;}
._8_c00474{width:31.744000pt;}
._10_c00474{width:32.938667pt;}
._20_c00474{width:34.645333pt;}
._f_c00474{width:35.840000pt;}
._26_c00474{width:36.949333pt;}
._11_c00474{width:37.888000pt;}
._36_c00474{width:38.784000pt;}
._6_c00474{width:39.850667pt;}
._2b_c00474{width:41.088000pt;}
._1e_c00474{width:42.240000pt;}
._37_c00474{width:43.349333pt;}
._16_c00474{width:44.288000pt;}
._38_c00474{width:46.058667pt;}
._32_c00474{width:48.128000pt;}
._15_c00474{width:49.834667pt;}
._19_c00474{width:51.456000pt;}
._1a_c00474{width:57.088000pt;}
._31_c00474{width:67.904000pt;}
._34_c00474{width:123.146667pt;}
._2f_c00474{width:149.248000pt;}
._33_c00474{width:159.616000pt;}
._1d_c00474{width:160.768000pt;}
._22_c00474{width:163.562667pt;}
._39_c00474{width:174.314667pt;}
._2e_c00474{width:1594.453333pt;}
.fs3_c00474{font-size:42.666667pt;}
.fs1_c00474{font-size:74.666667pt;}
.fs0_c00474{font-size:85.333333pt;}
.fs2_c00474{font-size:90.666667pt;}
.y0_c00474{bottom:0.000000pt;}
.y26_c00474{bottom:2.760000pt;}
.y25_c00474{bottom:6.425217pt;}
.y24_c00474{bottom:99.306667pt;}
.y23_c00474{bottom:134.106667pt;}
.y22_c00474{bottom:164.906667pt;}
.y21_c00474{bottom:195.840000pt;}
.y20_c00474{bottom:225.840000pt;}
.y1f_c00474{bottom:255.573333pt;}
.y1e_c00474{bottom:285.573333pt;}
.y1d_c00474{bottom:315.840000pt;}
.y1c_c00474{bottom:346.106667pt;}
.y1b_c00474{bottom:376.106667pt;}
.y1a_c00474{bottom:405.840000pt;}
.y19_c00474{bottom:435.306667pt;}
.y18_c00474{bottom:465.040000pt;}
.y17_c00474{bottom:496.106667pt;}
.y16_c00474{bottom:525.573333pt;}
.y15_c00474{bottom:555.306667pt;}
.y14_c00474{bottom:585.573333pt;}
.y13_c00474{bottom:616.106667pt;}
.y12_c00474{bottom:646.240000pt;}
.y11_c00474{bottom:674.640000pt;}
.y10_c00474{bottom:705.306667pt;}
.yf_c00474{bottom:732.640000pt;}
.ye_c00474{bottom:763.440000pt;}
.yd_c00474{bottom:793.173333pt;}
.yc_c00474{bottom:822.240000pt;}
.yb_c00474{bottom:852.506667pt;}
.ya_c00474{bottom:882.240000pt;}
.y9_c00474{bottom:912.506667pt;}
.y8_c00474{bottom:941.973333pt;}
.y7_c00474{bottom:971.040000pt;}
.y6_c00474{bottom:1001.973333pt;}
.y5_c00474{bottom:1029.040000pt;}
.y4_c00474{bottom:1058.640000pt;}
.y3_c00474{bottom:1088.106667pt;}
.y2_c00474{bottom:1118.640000pt;}
.y1_c00474{bottom:1148.106667pt;}
.h3_c00474{height:11.733399pt;}
.h4_c00474{height:38.937500pt;}
.h2_c00474{height:108.041667pt;}
.h0_c00474{height:1229.733333pt;}
.h1_c00474{height:1230.000000pt;}
.w2_c00474{width:93.222667pt;}
.w0_c00474{width:780.466667pt;}
.w1_c00474{width:780.666667pt;}
.x0_c00474{left:0.000000pt;}
.x8_c00474{left:27.600000pt;}
.x5_c00474{left:29.066667pt;}
.x7_c00474{left:30.000000pt;}
.x4_c00474{left:31.466667pt;}
.x2_c00474{left:32.400000pt;}
.x1_c00474{left:33.866667pt;}
.xa_c00474{left:34.800000pt;}
.x9_c00474{left:35.733333pt;}
.xb_c00474{left:39.200000pt;}
.x6_c00474{left:75.600000pt;}
.x3_c00474{left:77.600000pt;}
.xd_c00474{left:347.401530pt;}
.xc_c00474{left:520.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_36584d3e99acca297113bf52.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_a3ac238e8cabf5aafeaa31c7.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls2_c00475{letter-spacing:0.000000px;}
.ls1_c00475{letter-spacing:0.468000px;}
.ls0_c00475{letter-spacing:1.164000px;}
.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:-63.504000px;}
.ws1_c00475{word-spacing:-23.136000px;}
.ws2_c00475{word-spacing:0.000000px;}
._32_c00475{margin-left:-25.440000px;}
._29_c00475{margin-left:-16.896000px;}
._2a_c00475{margin-left:-13.632000px;}
._25_c00475{margin-left:-11.712000px;}
._16_c00475{margin-left:-10.560000px;}
._2d_c00475{margin-left:-8.724000px;}
._15_c00475{margin-left:-6.240000px;}
._2e_c00475{margin-left:-4.608000px;}
._e_c00475{margin-left:-2.976000px;}
._7_c00475{margin-left:-1.728000px;}
._a_c00475{width:1.440000px;}
._1_c00475{width:3.072000px;}
._0_c00475{width:4.800000px;}
._2_c00475{width:6.624000px;}
._12_c00475{width:7.680000px;}
._13_c00475{width:8.832000px;}
._17_c00475{width:10.272000px;}
._2f_c00475{width:11.424000px;}
._24_c00475{width:12.480000px;}
._1b_c00475{width:14.400000px;}
._2b_c00475{width:15.456000px;}
._3_c00475{width:17.472000px;}
._1a_c00475{width:18.912000px;}
._18_c00475{width:20.544000px;}
._26_c00475{width:21.984000px;}
._c_c00475{width:24.864000px;}
._34_c00475{width:26.112000px;}
._30_c00475{width:27.264000px;}
._11_c00475{width:28.320000px;}
._28_c00475{width:30.240000px;}
._19_c00475{width:32.544000px;}
._10_c00475{width:34.272000px;}
._8_c00475{width:35.904000px;}
._27_c00475{width:36.960000px;}
._f_c00475{width:38.400000px;}
._9_c00475{width:39.552000px;}
._1d_c00475{width:41.280000px;}
._6_c00475{width:42.912000px;}
._1c_c00475{width:44.448000px;}
._d_c00475{width:46.080000px;}
._20_c00475{width:47.712000px;}
._4_c00475{width:49.632000px;}
._14_c00475{width:52.704000px;}
._33_c00475{width:54.048000px;}
._2c_c00475{width:56.256000px;}
._22_c00475{width:57.312000px;}
._1f_c00475{width:59.616000px;}
._b_c00475{width:60.864000px;}
._31_c00475{width:62.688000px;}
._1e_c00475{width:64.032000px;}
._23_c00475{width:66.720000px;}
._5_c00475{width:68.448000px;}
._21_c00475{width:71.136000px;}
.fc2_c00475{color:transparent;}
.fc1_c00475{color:rgb(128,128,128);}
.fc0_c00475{color:rgb(0,0,0);}
.fs2_c00475{font-size:48.000000px;}
.fs1_c00475{font-size:84.000000px;}
.fs0_c00475{font-size:96.000000px;}
.y0_c00475{bottom:0.000000px;}
.y26_c00475{bottom:3.105000px;}
.y25_c00475{bottom:7.228355px;}
.y24_c00475{bottom:91.335000px;}
.y23_c00475{bottom:126.135000px;}
.y22_c00475{bottom:159.885000px;}
.y21_c00475{bottom:194.085000px;}
.y20_c00475{bottom:229.185000px;}
.y1f_c00475{bottom:263.235000px;}
.y1e_c00475{bottom:297.885000px;}
.y1d_c00475{bottom:331.785000px;}
.y1c_c00475{bottom:365.385000px;}
.y1b_c00475{bottom:400.185000px;}
.y1a_c00475{bottom:433.035000px;}
.y19_c00475{bottom:467.385000px;}
.y18_c00475{bottom:501.135000px;}
.y17_c00475{bottom:535.485000px;}
.y16_c00475{bottom:568.335000px;}
.y15_c00475{bottom:602.085000px;}
.y14_c00475{bottom:636.135000px;}
.y13_c00475{bottom:669.585000px;}
.y12_c00475{bottom:703.035000px;}
.y11_c00475{bottom:736.785000px;}
.y10_c00475{bottom:770.385000px;}
.yf_c00475{bottom:804.135000px;}
.ye_c00475{bottom:837.585000px;}
.yd_c00475{bottom:871.335000px;}
.yc_c00475{bottom:904.785000px;}
.yb_c00475{bottom:937.935000px;}
.ya_c00475{bottom:971.235000px;}
.y9_c00475{bottom:1003.935000px;}
.y8_c00475{bottom:1037.085000px;}
.y7_c00475{bottom:1070.835000px;}
.y6_c00475{bottom:1104.285000px;}
.y5_c00475{bottom:1137.735000px;}
.y4_c00475{bottom:1171.035000px;}
.y3_c00475{bottom:1204.485000px;}
.y2_c00475{bottom:1237.635000px;}
.y1_c00475{bottom:1270.935000px;}
.h3_c00475{height:13.200074px;}
.h4_c00475{height:43.804688px;}
.h2_c00475{height:121.546875px;}
.h1_c00475{height:1366.500000px;}
.h0_c00475{height:1366.725000px;}
.w2_c00475{width:104.875500px;}
.w0_c00475{width:852.675000px;}
.w1_c00475{width:852.750000px;}
.x0_c00475{left:0.000000px;}
.x8_c00475{left:246.450000px;}
.x7_c00475{left:247.500000px;}
.x4_c00475{left:250.200000px;}
.x3_c00475{left:251.400000px;}
.x1_c00475{left:252.450000px;}
.x2_c00475{left:253.500000px;}
.x5_c00475{left:255.150000px;}
.x6_c00475{left:256.800000px;}
.xa_c00475{left:378.151749px;}
.x9_c00475{left:789.150000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls2_c00475{letter-spacing:0.000000pt;}
.ls1_c00475{letter-spacing:0.416000pt;}
.ls0_c00475{letter-spacing:1.034667pt;}
.ws0_c00475{word-spacing:-56.448000pt;}
.ws1_c00475{word-spacing:-20.565333pt;}
.ws2_c00475{word-spacing:0.000000pt;}
._32_c00475{margin-left:-22.613333pt;}
._29_c00475{margin-left:-15.018667pt;}
._2a_c00475{margin-left:-12.117333pt;}
._25_c00475{margin-left:-10.410667pt;}
._16_c00475{margin-left:-9.386667pt;}
._2d_c00475{margin-left:-7.754667pt;}
._15_c00475{margin-left:-5.546667pt;}
._2e_c00475{margin-left:-4.096000pt;}
._e_c00475{margin-left:-2.645333pt;}
._7_c00475{margin-left:-1.536000pt;}
._a_c00475{width:1.280000pt;}
._1_c00475{width:2.730667pt;}
._0_c00475{width:4.266667pt;}
._2_c00475{width:5.888000pt;}
._12_c00475{width:6.826667pt;}
._13_c00475{width:7.850667pt;}
._17_c00475{width:9.130667pt;}
._2f_c00475{width:10.154667pt;}
._24_c00475{width:11.093333pt;}
._1b_c00475{width:12.800000pt;}
._2b_c00475{width:13.738667pt;}
._3_c00475{width:15.530667pt;}
._1a_c00475{width:16.810667pt;}
._18_c00475{width:18.261333pt;}
._26_c00475{width:19.541333pt;}
._c_c00475{width:22.101333pt;}
._34_c00475{width:23.210667pt;}
._30_c00475{width:24.234667pt;}
._11_c00475{width:25.173333pt;}
._28_c00475{width:26.880000pt;}
._19_c00475{width:28.928000pt;}
._10_c00475{width:30.464000pt;}
._8_c00475{width:31.914667pt;}
._27_c00475{width:32.853333pt;}
._f_c00475{width:34.133333pt;}
._9_c00475{width:35.157333pt;}
._1d_c00475{width:36.693333pt;}
._6_c00475{width:38.144000pt;}
._1c_c00475{width:39.509333pt;}
._d_c00475{width:40.960000pt;}
._20_c00475{width:42.410667pt;}
._4_c00475{width:44.117333pt;}
._14_c00475{width:46.848000pt;}
._33_c00475{width:48.042667pt;}
._2c_c00475{width:50.005333pt;}
._22_c00475{width:50.944000pt;}
._1f_c00475{width:52.992000pt;}
._b_c00475{width:54.101333pt;}
._31_c00475{width:55.722667pt;}
._1e_c00475{width:56.917333pt;}
._23_c00475{width:59.306667pt;}
._5_c00475{width:60.842667pt;}
._21_c00475{width:63.232000pt;}
.fs2_c00475{font-size:42.666667pt;}
.fs1_c00475{font-size:74.666667pt;}
.fs0_c00475{font-size:85.333333pt;}
.y0_c00475{bottom:0.000000pt;}
.y26_c00475{bottom:2.760000pt;}
.y25_c00475{bottom:6.425204pt;}
.y24_c00475{bottom:81.186667pt;}
.y23_c00475{bottom:112.120000pt;}
.y22_c00475{bottom:142.120000pt;}
.y21_c00475{bottom:172.520000pt;}
.y20_c00475{bottom:203.720000pt;}
.y1f_c00475{bottom:233.986667pt;}
.y1e_c00475{bottom:264.786667pt;}
.y1d_c00475{bottom:294.920000pt;}
.y1c_c00475{bottom:324.786667pt;}
.y1b_c00475{bottom:355.720000pt;}
.y1a_c00475{bottom:384.920000pt;}
.y19_c00475{bottom:415.453333pt;}
.y18_c00475{bottom:445.453333pt;}
.y17_c00475{bottom:475.986667pt;}
.y16_c00475{bottom:505.186667pt;}
.y15_c00475{bottom:535.186667pt;}
.y14_c00475{bottom:565.453333pt;}
.y13_c00475{bottom:595.186667pt;}
.y12_c00475{bottom:624.920000pt;}
.y11_c00475{bottom:654.920000pt;}
.y10_c00475{bottom:684.786667pt;}
.yf_c00475{bottom:714.786667pt;}
.ye_c00475{bottom:744.520000pt;}
.yd_c00475{bottom:774.520000pt;}
.yc_c00475{bottom:804.253333pt;}
.yb_c00475{bottom:833.720000pt;}
.ya_c00475{bottom:863.320000pt;}
.y9_c00475{bottom:892.386667pt;}
.y8_c00475{bottom:921.853333pt;}
.y7_c00475{bottom:951.853333pt;}
.y6_c00475{bottom:981.586667pt;}
.y5_c00475{bottom:1011.320000pt;}
.y4_c00475{bottom:1040.920000pt;}
.y3_c00475{bottom:1070.653333pt;}
.y2_c00475{bottom:1100.120000pt;}
.y1_c00475{bottom:1129.720000pt;}
.h3_c00475{height:11.733399pt;}
.h4_c00475{height:38.937500pt;}
.h2_c00475{height:108.041667pt;}
.h1_c00475{height:1214.666667pt;}
.h0_c00475{height:1214.866667pt;}
.w2_c00475{width:93.222667pt;}
.w0_c00475{width:757.933333pt;}
.w1_c00475{width:758.000000pt;}
.x0_c00475{left:0.000000pt;}
.x8_c00475{left:219.066667pt;}
.x7_c00475{left:220.000000pt;}
.x4_c00475{left:222.400000pt;}
.x3_c00475{left:223.466667pt;}
.x1_c00475{left:224.400000pt;}
.x2_c00475{left:225.333333pt;}
.x5_c00475{left:226.800000pt;}
.x6_c00475{left:228.266667pt;}
.xa_c00475{left:336.134888pt;}
.x9_c00475{left:701.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bcbc58595ba093cdca74f673.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_809deb7c4af76e90b51bd53c.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_2b143422d2ad461a25d17272.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_a2ff0ac77936d4488b043a87.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00476{vertical-align:-115.800000px;}
.v0_c00476{vertical-align:0.000000px;}
.ls6_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:1.248000px;}
.ls7_c00476{letter-spacing:9.000000px;}
.ls2_c00476{letter-spacing:10.233000px;}
.ls1_c00476{letter-spacing:10.464000px;}
.ls5_c00476{letter-spacing:18.900000px;}
.ls3_c00476{letter-spacing:22.200000px;}
.ls4_c00476{letter-spacing:42.000000px;}
.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;}
}
.ws1_c00476{word-spacing:-51.000000px;}
.ws0_c00476{word-spacing:-23.136000px;}
.ws2_c00476{word-spacing:-20.244000px;}
.ws4_c00476{word-spacing:-0.702000px;}
.ws5_c00476{word-spacing:0.000000px;}
.ws3_c00476{word-spacing:6.048000px;}
._2f_c00476{margin-left:-41.556000px;}
._33_c00476{margin-left:-20.169000px;}
._34_c00476{margin-left:-16.800000px;}
._35_c00476{margin-left:-14.280000px;}
._23_c00476{margin-left:-13.152000px;}
._13_c00476{margin-left:-11.136000px;}
._36_c00476{margin-left:-8.526000px;}
._12_c00476{margin-left:-7.008000px;}
._11_c00476{margin-left:-5.472000px;}
._2b_c00476{margin-left:-4.224000px;}
._d_c00476{margin-left:-2.976000px;}
._8_c00476{margin-left:-1.824000px;}
._4_c00476{width:1.248000px;}
._a_c00476{width:2.592000px;}
._2_c00476{width:3.648000px;}
._0_c00476{width:5.664000px;}
._1_c00476{width:7.488000px;}
._21_c00476{width:8.640000px;}
._1e_c00476{width:9.696000px;}
._22_c00476{width:11.040000px;}
._16_c00476{width:12.384000px;}
._17_c00476{width:14.016000px;}
._25_c00476{width:15.360000px;}
._15_c00476{width:17.184000px;}
._f_c00476{width:18.720000px;}
._20_c00476{width:20.544000px;}
._24_c00476{width:21.600000px;}
._2e_c00476{width:23.430000px;}
._28_c00476{width:25.632000px;}
._7_c00476{width:26.784000px;}
._b_c00476{width:28.896000px;}
._1f_c00476{width:30.528000px;}
._9_c00476{width:31.776000px;}
._26_c00476{width:32.832000px;}
._2d_c00476{width:33.888000px;}
._1a_c00476{width:35.232000px;}
._e_c00476{width:36.960000px;}
._18_c00476{width:38.208000px;}
._6_c00476{width:39.552000px;}
._1c_c00476{width:40.704000px;}
._3_c00476{width:41.856000px;}
._10_c00476{width:43.680000px;}
._14_c00476{width:45.024000px;}
._5_c00476{width:47.040000px;}
._c_c00476{width:49.344000px;}
._1b_c00476{width:51.552000px;}
._2a_c00476{width:52.992000px;}
._1d_c00476{width:55.680000px;}
._29_c00476{width:58.272000px;}
._31_c00476{width:59.520000px;}
._30_c00476{width:63.168000px;}
._19_c00476{width:64.704000px;}
._27_c00476{width:72.384000px;}
._2c_c00476{width:373.152000px;}
._32_c00476{width:781.440000px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(128,128,128);}
.fc0_c00476{color:rgb(0,0,0);}
.fs5_c00476{font-size:48.000000px;}
.fs2_c00476{font-size:78.000000px;}
.fs1_c00476{font-size:84.000000px;}
.fs4_c00476{font-size:87.000000px;}
.fs0_c00476{font-size:96.000000px;}
.fs3_c00476{font-size:102.000000px;}
.y0_c00476{bottom:0.000000px;}
.y30_c00476{bottom:3.105000px;}
.y2f_c00476{bottom:7.228369px;}
.y24_c00476{bottom:100.470000px;}
.y23_c00476{bottom:133.320000px;}
.y22_c00476{bottom:169.770000px;}
.y21_c00476{bottom:202.770000px;}
.y20_c00476{bottom:236.520000px;}
.y1f_c00476{bottom:270.270000px;}
.y1e_c00476{bottom:303.720000px;}
.y1d_c00476{bottom:338.070000px;}
.y1c_c00476{bottom:371.820000px;}
.y2e_c00476{bottom:398.520000px;}
.y1b_c00476{bottom:405.270000px;}
.y1a_c00476{bottom:439.470000px;}
.y2d_c00476{bottom:457.920000px;}
.y19_c00476{bottom:472.470000px;}
.y2c_c00476{bottom:488.670000px;}
.y18_c00476{bottom:506.220000px;}
.y2b_c00476{bottom:518.070000px;}
.y17_c00476{bottom:540.270000px;}
.y2a_c00476{bottom:547.770000px;}
.y16_c00476{bottom:571.020000px;}
.y15_c00476{bottom:608.070000px;}
.y14_c00476{bottom:641.820000px;}
.y13_c00476{bottom:675.270000px;}
.y12_c00476{bottom:708.420000px;}
.y29_c00476{bottom:725.670000px;}
.y11_c00476{bottom:741.870000px;}
.y28_c00476{bottom:755.970000px;}
.y10_c00476{bottom:775.620000px;}
.y27_c00476{bottom:778.170000px;}
.yf_c00476{bottom:809.220000px;}
.ye_c00476{bottom:841.620000px;}
.yd_c00476{bottom:874.470000px;}
.yc_c00476{bottom:907.770000px;}
.yb_c00476{bottom:941.520000px;}
.y26_c00476{bottom:948.420000px;}
.y25_c00476{bottom:973.620000px;}
.ya_c00476{bottom:974.670000px;}
.y9_c00476{bottom:1007.820000px;}
.y8_c00476{bottom:1041.570000px;}
.y7_c00476{bottom:1075.170000px;}
.y6_c00476{bottom:1106.670000px;}
.y5_c00476{bottom:1139.670000px;}
.y4_c00476{bottom:1172.820000px;}
.y3_c00476{bottom:1205.520000px;}
.y2_c00476{bottom:1238.520000px;}
.y1_c00476{bottom:1271.670000px;}
.h7_c00476{height:13.200073px;}
.h8_c00476{height:43.804688px;}
.h3_c00476{height:91.291992px;}
.h6_c00476{height:98.314453px;}
.h5_c00476{height:98.756836px;}
.h4_c00476{height:110.151855px;}
.h2_c00476{height:121.546875px;}
.h0_c00476{height:1383.450000px;}
.h1_c00476{height:1383.750000px;}
.w2_c00476{width:104.875500px;}
.w0_c00476{width:878.025000px;}
.w1_c00476{width:878.250000px;}
.x0_c00476{left:0.000000px;}
.x5_c00476{left:19.200000px;}
.x4_c00476{left:20.250000px;}
.x3_c00476{left:21.900000px;}
.x2_c00476{left:22.950000px;}
.x1_c00476{left:24.000000px;}
.x7_c00476{left:25.050000px;}
.xb_c00476{left:26.100000px;}
.x8_c00476{left:27.750000px;}
.x9_c00476{left:31.050000px;}
.xa_c00476{left:32.100000px;}
.xc_c00476{left:34.800000px;}
.x6_c00476{left:73.800000px;}
.xd_c00476{left:290.400000px;}
.x16_c00476{left:390.826721px;}
.x12_c00476{left:608.850000px;}
.x13_c00476{left:609.900000px;}
.x15_c00476{left:610.950000px;}
.xf_c00476{left:635.850000px;}
.x14_c00476{left:640.650000px;}
.x11_c00476{left:641.700000px;}
.xe_c00476{left:682.350000px;}
.x10_c00476{left:683.400000px;}
@media print{
.v1_c00476{vertical-align:-102.933333pt;}
.v0_c00476{vertical-align:0.000000pt;}
.ls6_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:1.109333pt;}
.ls7_c00476{letter-spacing:8.000000pt;}
.ls2_c00476{letter-spacing:9.096000pt;}
.ls1_c00476{letter-spacing:9.301333pt;}
.ls5_c00476{letter-spacing:16.800000pt;}
.ls3_c00476{letter-spacing:19.733333pt;}
.ls4_c00476{letter-spacing:37.333333pt;}
.ws1_c00476{word-spacing:-45.333333pt;}
.ws0_c00476{word-spacing:-20.565333pt;}
.ws2_c00476{word-spacing:-17.994667pt;}
.ws4_c00476{word-spacing:-0.624000pt;}
.ws5_c00476{word-spacing:0.000000pt;}
.ws3_c00476{word-spacing:5.376000pt;}
._2f_c00476{margin-left:-36.938667pt;}
._33_c00476{margin-left:-17.928000pt;}
._34_c00476{margin-left:-14.933333pt;}
._35_c00476{margin-left:-12.693333pt;}
._23_c00476{margin-left:-11.690667pt;}
._13_c00476{margin-left:-9.898667pt;}
._36_c00476{margin-left:-7.578667pt;}
._12_c00476{margin-left:-6.229333pt;}
._11_c00476{margin-left:-4.864000pt;}
._2b_c00476{margin-left:-3.754667pt;}
._d_c00476{margin-left:-2.645333pt;}
._8_c00476{margin-left:-1.621333pt;}
._4_c00476{width:1.109333pt;}
._a_c00476{width:2.304000pt;}
._2_c00476{width:3.242667pt;}
._0_c00476{width:5.034667pt;}
._1_c00476{width:6.656000pt;}
._21_c00476{width:7.680000pt;}
._1e_c00476{width:8.618667pt;}
._22_c00476{width:9.813333pt;}
._16_c00476{width:11.008000pt;}
._17_c00476{width:12.458667pt;}
._25_c00476{width:13.653333pt;}
._15_c00476{width:15.274667pt;}
._f_c00476{width:16.640000pt;}
._20_c00476{width:18.261333pt;}
._24_c00476{width:19.200000pt;}
._2e_c00476{width:20.826667pt;}
._28_c00476{width:22.784000pt;}
._7_c00476{width:23.808000pt;}
._b_c00476{width:25.685333pt;}
._1f_c00476{width:27.136000pt;}
._9_c00476{width:28.245333pt;}
._26_c00476{width:29.184000pt;}
._2d_c00476{width:30.122667pt;}
._1a_c00476{width:31.317333pt;}
._e_c00476{width:32.853333pt;}
._18_c00476{width:33.962667pt;}
._6_c00476{width:35.157333pt;}
._1c_c00476{width:36.181333pt;}
._3_c00476{width:37.205333pt;}
._10_c00476{width:38.826667pt;}
._14_c00476{width:40.021333pt;}
._5_c00476{width:41.813333pt;}
._c_c00476{width:43.861333pt;}
._1b_c00476{width:45.824000pt;}
._2a_c00476{width:47.104000pt;}
._1d_c00476{width:49.493333pt;}
._29_c00476{width:51.797333pt;}
._31_c00476{width:52.906667pt;}
._30_c00476{width:56.149333pt;}
._19_c00476{width:57.514667pt;}
._27_c00476{width:64.341333pt;}
._2c_c00476{width:331.690667pt;}
._32_c00476{width:694.613333pt;}
.fs5_c00476{font-size:42.666667pt;}
.fs2_c00476{font-size:69.333333pt;}
.fs1_c00476{font-size:74.666667pt;}
.fs4_c00476{font-size:77.333333pt;}
.fs0_c00476{font-size:85.333333pt;}
.fs3_c00476{font-size:90.666667pt;}
.y0_c00476{bottom:0.000000pt;}
.y30_c00476{bottom:2.760000pt;}
.y2f_c00476{bottom:6.425217pt;}
.y24_c00476{bottom:89.306667pt;}
.y23_c00476{bottom:118.506667pt;}
.y22_c00476{bottom:150.906667pt;}
.y21_c00476{bottom:180.240000pt;}
.y20_c00476{bottom:210.240000pt;}
.y1f_c00476{bottom:240.240000pt;}
.y1e_c00476{bottom:269.973333pt;}
.y1d_c00476{bottom:300.506667pt;}
.y1c_c00476{bottom:330.506667pt;}
.y2e_c00476{bottom:354.240000pt;}
.y1b_c00476{bottom:360.240000pt;}
.y1a_c00476{bottom:390.640000pt;}
.y2d_c00476{bottom:407.040000pt;}
.y19_c00476{bottom:419.973333pt;}
.y2c_c00476{bottom:434.373333pt;}
.y18_c00476{bottom:449.973333pt;}
.y2b_c00476{bottom:460.506667pt;}
.y17_c00476{bottom:480.240000pt;}
.y2a_c00476{bottom:486.906667pt;}
.y16_c00476{bottom:507.573333pt;}
.y15_c00476{bottom:540.506667pt;}
.y14_c00476{bottom:570.506667pt;}
.y13_c00476{bottom:600.240000pt;}
.y12_c00476{bottom:629.706667pt;}
.y29_c00476{bottom:645.040000pt;}
.y11_c00476{bottom:659.440000pt;}
.y28_c00476{bottom:671.973333pt;}
.y10_c00476{bottom:689.440000pt;}
.y27_c00476{bottom:691.706667pt;}
.yf_c00476{bottom:719.306667pt;}
.ye_c00476{bottom:748.106667pt;}
.yd_c00476{bottom:777.306667pt;}
.yc_c00476{bottom:806.906667pt;}
.yb_c00476{bottom:836.906667pt;}
.y26_c00476{bottom:843.040000pt;}
.y25_c00476{bottom:865.440000pt;}
.ya_c00476{bottom:866.373333pt;}
.y9_c00476{bottom:895.840000pt;}
.y8_c00476{bottom:925.840000pt;}
.y7_c00476{bottom:955.706667pt;}
.y6_c00476{bottom:983.706667pt;}
.y5_c00476{bottom:1013.040000pt;}
.y4_c00476{bottom:1042.506667pt;}
.y3_c00476{bottom:1071.573333pt;}
.y2_c00476{bottom:1100.906667pt;}
.y1_c00476{bottom:1130.373333pt;}
.h7_c00476{height:11.733399pt;}
.h8_c00476{height:38.937500pt;}
.h3_c00476{height:81.148438pt;}
.h6_c00476{height:87.390625pt;}
.h5_c00476{height:87.783854pt;}
.h4_c00476{height:97.912760pt;}
.h2_c00476{height:108.041667pt;}
.h0_c00476{height:1229.733333pt;}
.h1_c00476{height:1230.000000pt;}
.w2_c00476{width:93.222667pt;}
.w0_c00476{width:780.466667pt;}
.w1_c00476{width:780.666667pt;}
.x0_c00476{left:0.000000pt;}
.x5_c00476{left:17.066667pt;}
.x4_c00476{left:18.000000pt;}
.x3_c00476{left:19.466667pt;}
.x2_c00476{left:20.400000pt;}
.x1_c00476{left:21.333333pt;}
.x7_c00476{left:22.266667pt;}
.xb_c00476{left:23.200000pt;}
.x8_c00476{left:24.666667pt;}
.x9_c00476{left:27.600000pt;}
.xa_c00476{left:28.533333pt;}
.xc_c00476{left:30.933333pt;}
.x6_c00476{left:65.600000pt;}
.xd_c00476{left:258.133333pt;}
.x16_c00476{left:347.401530pt;}
.x12_c00476{left:541.200000pt;}
.x13_c00476{left:542.133333pt;}
.x15_c00476{left:543.066667pt;}
.xf_c00476{left:565.200000pt;}
.x14_c00476{left:569.466667pt;}
.x11_c00476{left:570.400000pt;}
.xe_c00476{left:606.533333pt;}
.x10_c00476{left:607.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f9374d3ff933af0fbabc5ca.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_5a2f12e1af42e6476d66ab3a.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls2_c00477{letter-spacing:0.000000px;}
.ls1_c00477{letter-spacing:3.460800px;}
.ls0_c00477{letter-spacing:4.272000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
._39_c00477{margin-left:-32.640000px;}
._30_c00477{margin-left:-30.144000px;}
._22_c00477{margin-left:-17.664000px;}
._1f_c00477{margin-left:-14.976000px;}
._20_c00477{margin-left:-13.344000px;}
._8_c00477{margin-left:-11.904000px;}
._21_c00477{margin-left:-10.080000px;}
._11_c00477{margin-left:-6.144000px;}
._13_c00477{margin-left:-4.896000px;}
._12_c00477{margin-left:-3.552000px;}
._10_c00477{margin-left:-2.304000px;}
._35_c00477{margin-left:-1.056000px;}
._1_c00477{width:1.536000px;}
._0_c00477{width:2.688000px;}
._6_c00477{width:3.744000px;}
._3_c00477{width:4.896000px;}
._5_c00477{width:6.240000px;}
._c_c00477{width:7.584000px;}
._b_c00477{width:9.312000px;}
._f_c00477{width:11.040000px;}
._1d_c00477{width:12.960000px;}
._15_c00477{width:14.112000px;}
._25_c00477{width:15.264000px;}
._1e_c00477{width:16.512000px;}
._2f_c00477{width:17.952000px;}
._16_c00477{width:19.296000px;}
._9_c00477{width:21.312000px;}
._e_c00477{width:26.112000px;}
._23_c00477{width:27.936000px;}
._37_c00477{width:29.376000px;}
._1c_c00477{width:30.432000px;}
._18_c00477{width:32.352000px;}
._2_c00477{width:34.080000px;}
._17_c00477{width:36.576000px;}
._7_c00477{width:38.016000px;}
._19_c00477{width:39.072000px;}
._29_c00477{width:40.608000px;}
._1a_c00477{width:43.392000px;}
._14_c00477{width:45.120000px;}
._28_c00477{width:48.096000px;}
._26_c00477{width:49.152000px;}
._31_c00477{width:50.304000px;}
._27_c00477{width:51.840000px;}
._4_c00477{width:53.376000px;}
._24_c00477{width:55.968000px;}
._1b_c00477{width:58.080000px;}
._d_c00477{width:60.384000px;}
._2c_c00477{width:62.784000px;}
._2a_c00477{width:65.376000px;}
._36_c00477{width:67.104000px;}
._2d_c00477{width:69.312000px;}
._32_c00477{width:70.848000px;}
._2b_c00477{width:74.304000px;}
._34_c00477{width:75.552000px;}
._33_c00477{width:79.392000px;}
._2e_c00477{width:96.288000px;}
._38_c00477{width:170.496000px;}
._a_c00477{width:395.520000px;}
._3a_c00477{width:938.112000px;}
.fc2_c00477{color:transparent;}
.fc1_c00477{color:rgb(128,128,128);}
.fc0_c00477{color:rgb(0,0,0);}
.fs2_c00477{font-size:48.000000px;}
.fs1_c00477{font-size:76.800000px;}
.fs0_c00477{font-size:96.000000px;}
.y0_c00477{bottom:0.000000px;}
.y26_c00477{bottom:3.105000px;}
.y25_c00477{bottom:7.228355px;}
.y24_c00477{bottom:78.885000px;}
.y23_c00477{bottom:109.635000px;}
.y22_c00477{bottom:144.435000px;}
.y21_c00477{bottom:177.885000px;}
.y20_c00477{bottom:211.935000px;}
.y1f_c00477{bottom:246.285000px;}
.y1e_c00477{bottom:279.735000px;}
.y1d_c00477{bottom:314.085000px;}
.y1c_c00477{bottom:347.835000px;}
.y1b_c00477{bottom:381.585000px;}
.y1a_c00477{bottom:415.485000px;}
.y19_c00477{bottom:449.085000px;}
.y18_c00477{bottom:482.985000px;}
.y17_c00477{bottom:516.285000px;}
.y16_c00477{bottom:550.035000px;}
.y15_c00477{bottom:583.785000px;}
.y14_c00477{bottom:617.535000px;}
.y13_c00477{bottom:650.685000px;}
.y12_c00477{bottom:684.435000px;}
.y11_c00477{bottom:717.885000px;}
.y10_c00477{bottom:751.635000px;}
.yf_c00477{bottom:785.385000px;}
.ye_c00477{bottom:818.385000px;}
.yd_c00477{bottom:852.135000px;}
.yc_c00477{bottom:885.585000px;}
.yb_c00477{bottom:918.885000px;}
.ya_c00477{bottom:952.335000px;}
.y2_c00477{bottom:967.635000px;}
.y9_c00477{bottom:985.035000px;}
.y8_c00477{bottom:1018.185000px;}
.y7_c00477{bottom:1051.335000px;}
.y6_c00477{bottom:1084.635000px;}
.y5_c00477{bottom:1118.085000px;}
.y4_c00477{bottom:1151.235000px;}
.y3_c00477{bottom:1184.535000px;}
.y1_c00477{bottom:1251.435000px;}
.h3_c00477{height:13.200074px;}
.h4_c00477{height:43.804688px;}
.h2_c00477{height:121.546875px;}
.h1_c00477{height:1366.500000px;}
.h0_c00477{height:1366.725000px;}
.w2_c00477{width:104.875500px;}
.w0_c00477{width:852.675000px;}
.w1_c00477{width:852.750000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:130.950000px;}
.x4_c00477{left:253.050000px;}
.x1_c00477{left:254.100000px;}
.x5_c00477{left:255.150000px;}
.x7_c00477{left:256.200000px;}
.x6_c00477{left:257.400000px;}
.x8_c00477{left:258.450000px;}
.x9_c00477{left:259.500000px;}
.x3_c00477{left:308.700000px;}
.xb_c00477{left:378.151749px;}
.xa_c00477{left:551.250000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls2_c00477{letter-spacing:0.000000pt;}
.ls1_c00477{letter-spacing:3.076267pt;}
.ls0_c00477{letter-spacing:3.797333pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._39_c00477{margin-left:-29.013333pt;}
._30_c00477{margin-left:-26.794667pt;}
._22_c00477{margin-left:-15.701333pt;}
._1f_c00477{margin-left:-13.312000pt;}
._20_c00477{margin-left:-11.861333pt;}
._8_c00477{margin-left:-10.581333pt;}
._21_c00477{margin-left:-8.960000pt;}
._11_c00477{margin-left:-5.461333pt;}
._13_c00477{margin-left:-4.352000pt;}
._12_c00477{margin-left:-3.157333pt;}
._10_c00477{margin-left:-2.048000pt;}
._35_c00477{margin-left:-0.938667pt;}
._1_c00477{width:1.365333pt;}
._0_c00477{width:2.389333pt;}
._6_c00477{width:3.328000pt;}
._3_c00477{width:4.352000pt;}
._5_c00477{width:5.546667pt;}
._c_c00477{width:6.741333pt;}
._b_c00477{width:8.277333pt;}
._f_c00477{width:9.813333pt;}
._1d_c00477{width:11.520000pt;}
._15_c00477{width:12.544000pt;}
._25_c00477{width:13.568000pt;}
._1e_c00477{width:14.677333pt;}
._2f_c00477{width:15.957333pt;}
._16_c00477{width:17.152000pt;}
._9_c00477{width:18.944000pt;}
._e_c00477{width:23.210667pt;}
._23_c00477{width:24.832000pt;}
._37_c00477{width:26.112000pt;}
._1c_c00477{width:27.050667pt;}
._18_c00477{width:28.757333pt;}
._2_c00477{width:30.293333pt;}
._17_c00477{width:32.512000pt;}
._7_c00477{width:33.792000pt;}
._19_c00477{width:34.730667pt;}
._29_c00477{width:36.096000pt;}
._1a_c00477{width:38.570667pt;}
._14_c00477{width:40.106667pt;}
._28_c00477{width:42.752000pt;}
._26_c00477{width:43.690667pt;}
._31_c00477{width:44.714667pt;}
._27_c00477{width:46.080000pt;}
._4_c00477{width:47.445333pt;}
._24_c00477{width:49.749333pt;}
._1b_c00477{width:51.626667pt;}
._d_c00477{width:53.674667pt;}
._2c_c00477{width:55.808000pt;}
._2a_c00477{width:58.112000pt;}
._36_c00477{width:59.648000pt;}
._2d_c00477{width:61.610667pt;}
._32_c00477{width:62.976000pt;}
._2b_c00477{width:66.048000pt;}
._34_c00477{width:67.157333pt;}
._33_c00477{width:70.570667pt;}
._2e_c00477{width:85.589333pt;}
._38_c00477{width:151.552000pt;}
._a_c00477{width:351.573333pt;}
._3a_c00477{width:833.877333pt;}
.fs2_c00477{font-size:42.666667pt;}
.fs1_c00477{font-size:68.266667pt;}
.fs0_c00477{font-size:85.333333pt;}
.y0_c00477{bottom:0.000000pt;}
.y26_c00477{bottom:2.760000pt;}
.y25_c00477{bottom:6.425204pt;}
.y24_c00477{bottom:70.120000pt;}
.y23_c00477{bottom:97.453333pt;}
.y22_c00477{bottom:128.386667pt;}
.y21_c00477{bottom:158.120000pt;}
.y20_c00477{bottom:188.386667pt;}
.y1f_c00477{bottom:218.920000pt;}
.y1e_c00477{bottom:248.653333pt;}
.y1d_c00477{bottom:279.186667pt;}
.y1c_c00477{bottom:309.186667pt;}
.y1b_c00477{bottom:339.186667pt;}
.y1a_c00477{bottom:369.320000pt;}
.y19_c00477{bottom:399.186667pt;}
.y18_c00477{bottom:429.320000pt;}
.y17_c00477{bottom:458.920000pt;}
.y16_c00477{bottom:488.920000pt;}
.y15_c00477{bottom:518.920000pt;}
.y14_c00477{bottom:548.920000pt;}
.y13_c00477{bottom:578.386667pt;}
.y12_c00477{bottom:608.386667pt;}
.y11_c00477{bottom:638.120000pt;}
.y10_c00477{bottom:668.120000pt;}
.yf_c00477{bottom:698.120000pt;}
.ye_c00477{bottom:727.453333pt;}
.yd_c00477{bottom:757.453333pt;}
.yc_c00477{bottom:787.186667pt;}
.yb_c00477{bottom:816.786667pt;}
.ya_c00477{bottom:846.520000pt;}
.y2_c00477{bottom:860.120000pt;}
.y9_c00477{bottom:875.586667pt;}
.y8_c00477{bottom:905.053333pt;}
.y7_c00477{bottom:934.520000pt;}
.y6_c00477{bottom:964.120000pt;}
.y5_c00477{bottom:993.853333pt;}
.y4_c00477{bottom:1023.320000pt;}
.y3_c00477{bottom:1052.920000pt;}
.y1_c00477{bottom:1112.386667pt;}
.h3_c00477{height:11.733399pt;}
.h4_c00477{height:38.937500pt;}
.h2_c00477{height:108.041667pt;}
.h1_c00477{height:1214.666667pt;}
.h0_c00477{height:1214.866667pt;}
.w2_c00477{width:93.222667pt;}
.w0_c00477{width:757.933333pt;}
.w1_c00477{width:758.000000pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:116.400000pt;}
.x4_c00477{left:224.933333pt;}
.x1_c00477{left:225.866667pt;}
.x5_c00477{left:226.800000pt;}
.x7_c00477{left:227.733333pt;}
.x6_c00477{left:228.800000pt;}
.x8_c00477{left:229.733333pt;}
.x9_c00477{left:230.666667pt;}
.x3_c00477{left:274.400000pt;}
.xb_c00477{left:336.134888pt;}
.xa_c00477{left:490.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_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_7dee6340148d87b61faff765.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_ad1d4bfbbabccd88ecec3da2.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls3_c00478{letter-spacing:-3.000000px;}
.ls1_c00478{letter-spacing:0.000000px;}
.ls2_c00478{letter-spacing:3.000000px;}
.ls0_c00478{letter-spacing:19.452000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:-68.772000px;}
.ws1_c00478{word-spacing:-23.136000px;}
.ws2_c00478{word-spacing:0.000000px;}
._27_c00478{margin-left:-77.373000px;}
._29_c00478{margin-left:-42.846000px;}
._3d_c00478{margin-left:-33.312000px;}
._2a_c00478{margin-left:-29.250000px;}
._2e_c00478{margin-left:-27.144000px;}
._30_c00478{margin-left:-25.374000px;}
._2c_c00478{margin-left:-21.837000px;}
._24_c00478{margin-left:-19.791000px;}
._28_c00478{margin-left:-17.730000px;}
._26_c00478{margin-left:-15.834000px;}
._32_c00478{margin-left:-13.746000px;}
._1c_c00478{margin-left:-11.808000px;}
._37_c00478{margin-left:-9.696000px;}
._40_c00478{margin-left:-7.104000px;}
._b_c00478{margin-left:-6.048000px;}
._6_c00478{margin-left:-4.416000px;}
._c_c00478{margin-left:-2.784000px;}
._16_c00478{margin-left:-1.728000px;}
._4_c00478{width:1.344000px;}
._3_c00478{width:2.592000px;}
._0_c00478{width:4.416000px;}
._1_c00478{width:5.568000px;}
._e_c00478{width:7.392000px;}
._5_c00478{width:8.832000px;}
._14_c00478{width:10.368000px;}
._3c_c00478{width:11.424000px;}
._12_c00478{width:12.480000px;}
._21_c00478{width:13.632000px;}
._22_c00478{width:14.784000px;}
._2_c00478{width:15.936000px;}
._17_c00478{width:17.088000px;}
._18_c00478{width:18.624000px;}
._10_c00478{width:20.736000px;}
._15_c00478{width:21.888000px;}
._1b_c00478{width:24.288000px;}
._7_c00478{width:26.016000px;}
._3f_c00478{width:27.072000px;}
._13_c00478{width:28.224000px;}
._f_c00478{width:30.048000px;}
._d_c00478{width:32.352000px;}
._33_c00478{width:34.176000px;}
._8_c00478{width:35.616000px;}
._19_c00478{width:37.152000px;}
._9_c00478{width:38.400000px;}
._11_c00478{width:40.416000px;}
._38_c00478{width:41.568000px;}
._23_c00478{width:43.008000px;}
._1a_c00478{width:44.064000px;}
._35_c00478{width:46.560000px;}
._20_c00478{width:47.712000px;}
._39_c00478{width:49.344000px;}
._43_c00478{width:50.496000px;}
._1d_c00478{width:51.744000px;}
._41_c00478{width:53.088000px;}
._1e_c00478{width:54.816000px;}
._3e_c00478{width:56.160000px;}
._a_c00478{width:58.272000px;}
._3a_c00478{width:60.096000px;}
._3b_c00478{width:62.208000px;}
._42_c00478{width:64.896000px;}
._31_c00478{width:67.251000px;}
._36_c00478{width:68.832000px;}
._34_c00478{width:70.944000px;}
._1f_c00478{width:73.920000px;}
._44_c00478{width:75.744000px;}
._2d_c00478{width:127.803000px;}
._2f_c00478{width:265.263000px;}
._2b_c00478{width:270.378000px;}
._25_c00478{width:494.160000px;}
.fc2_c00478{color:transparent;}
.fc1_c00478{color:rgb(128,128,128);}
.fc0_c00478{color:rgb(0,0,0);}
.fs3_c00478{font-size:48.000000px;}
.fs2_c00478{font-size:84.000000px;}
.fs1_c00478{font-size:87.000000px;}
.fs0_c00478{font-size:96.000000px;}
.y0_c00478{bottom:0.000000px;}
.y27_c00478{bottom:3.105000px;}
.y26_c00478{bottom:7.228371px;}
.y25_c00478{bottom:90.165000px;}
.y24_c00478{bottom:123.915000px;}
.y23_c00478{bottom:159.015000px;}
.y22_c00478{bottom:193.515000px;}
.y21_c00478{bottom:227.115000px;}
.y20_c00478{bottom:261.315000px;}
.y1f_c00478{bottom:294.765000px;}
.y1e_c00478{bottom:328.515000px;}
.y1d_c00478{bottom:362.565000px;}
.y1c_c00478{bottom:396.615000px;}
.y1b_c00478{bottom:429.765000px;}
.y1a_c00478{bottom:463.365000px;}
.y19_c00478{bottom:497.115000px;}
.y18_c00478{bottom:530.565000px;}
.y17_c00478{bottom:564.315000px;}
.y16_c00478{bottom:597.765000px;}
.y15_c00478{bottom:631.215000px;}
.y14_c00478{bottom:664.965000px;}
.y13_c00478{bottom:698.415000px;}
.y12_c00478{bottom:731.415000px;}
.y11_c00478{bottom:764.865000px;}
.y10_c00478{bottom:797.865000px;}
.yf_c00478{bottom:831.015000px;}
.ye_c00478{bottom:864.315000px;}
.yd_c00478{bottom:897.465000px;}
.yc_c00478{bottom:930.465000px;}
.yb_c00478{bottom:963.915000px;}
.ya_c00478{bottom:997.065000px;}
.y9_c00478{bottom:1013.865000px;}
.y8_c00478{bottom:1030.365000px;}
.y7_c00478{bottom:1063.515000px;}
.y6_c00478{bottom:1095.915000px;}
.y5_c00478{bottom:1129.665000px;}
.y4_c00478{bottom:1162.815000px;}
.y3_c00478{bottom:1195.515000px;}
.y2_c00478{bottom:1228.815000px;}
.y1_c00478{bottom:1261.965000px;}
.h4_c00478{height:13.200074px;}
.h5_c00478{height:43.804688px;}
.h3_c00478{height:110.151855px;}
.h2_c00478{height:121.546875px;}
.h0_c00478{height:1360.275000px;}
.h1_c00478{height:1360.500000px;}
.w2_c00478{width:104.875500px;}
.w1_c00478{width:863.250000px;}
.w0_c00478{width:863.475000px;}
.x0_c00478{left:0.000000px;}
.x8_c00478{left:20.250000px;}
.x9_c00478{left:30.600000px;}
.x7_c00478{left:32.100000px;}
.x6_c00478{left:34.200000px;}
.x5_c00478{left:35.850000px;}
.x3_c00478{left:37.500000px;}
.x2_c00478{left:38.550000px;}
.x1_c00478{left:39.750000px;}
.xa_c00478{left:41.850000px;}
.xb_c00478{left:42.900000px;}
.x4_c00478{left:130.350000px;}
.xd_c00478{left:383.551758px;}
.xc_c00478{left:573.750000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls3_c00478{letter-spacing:-2.666667pt;}
.ls1_c00478{letter-spacing:0.000000pt;}
.ls2_c00478{letter-spacing:2.666667pt;}
.ls0_c00478{letter-spacing:17.290667pt;}
.ws0_c00478{word-spacing:-61.130667pt;}
.ws1_c00478{word-spacing:-20.565333pt;}
.ws2_c00478{word-spacing:0.000000pt;}
._27_c00478{margin-left:-68.776000pt;}
._29_c00478{margin-left:-38.085333pt;}
._3d_c00478{margin-left:-29.610667pt;}
._2a_c00478{margin-left:-26.000000pt;}
._2e_c00478{margin-left:-24.128000pt;}
._30_c00478{margin-left:-22.554667pt;}
._2c_c00478{margin-left:-19.410667pt;}
._24_c00478{margin-left:-17.592000pt;}
._28_c00478{margin-left:-15.760000pt;}
._26_c00478{margin-left:-14.074667pt;}
._32_c00478{margin-left:-12.218667pt;}
._1c_c00478{margin-left:-10.496000pt;}
._37_c00478{margin-left:-8.618667pt;}
._40_c00478{margin-left:-6.314667pt;}
._b_c00478{margin-left:-5.376000pt;}
._6_c00478{margin-left:-3.925333pt;}
._c_c00478{margin-left:-2.474667pt;}
._16_c00478{margin-left:-1.536000pt;}
._4_c00478{width:1.194667pt;}
._3_c00478{width:2.304000pt;}
._0_c00478{width:3.925333pt;}
._1_c00478{width:4.949333pt;}
._e_c00478{width:6.570667pt;}
._5_c00478{width:7.850667pt;}
._14_c00478{width:9.216000pt;}
._3c_c00478{width:10.154667pt;}
._12_c00478{width:11.093333pt;}
._21_c00478{width:12.117333pt;}
._22_c00478{width:13.141333pt;}
._2_c00478{width:14.165333pt;}
._17_c00478{width:15.189333pt;}
._18_c00478{width:16.554667pt;}
._10_c00478{width:18.432000pt;}
._15_c00478{width:19.456000pt;}
._1b_c00478{width:21.589333pt;}
._7_c00478{width:23.125333pt;}
._3f_c00478{width:24.064000pt;}
._13_c00478{width:25.088000pt;}
._f_c00478{width:26.709333pt;}
._d_c00478{width:28.757333pt;}
._33_c00478{width:30.378667pt;}
._8_c00478{width:31.658667pt;}
._19_c00478{width:33.024000pt;}
._9_c00478{width:34.133333pt;}
._11_c00478{width:35.925333pt;}
._38_c00478{width:36.949333pt;}
._23_c00478{width:38.229333pt;}
._1a_c00478{width:39.168000pt;}
._35_c00478{width:41.386667pt;}
._20_c00478{width:42.410667pt;}
._39_c00478{width:43.861333pt;}
._43_c00478{width:44.885333pt;}
._1d_c00478{width:45.994667pt;}
._41_c00478{width:47.189333pt;}
._1e_c00478{width:48.725333pt;}
._3e_c00478{width:49.920000pt;}
._a_c00478{width:51.797333pt;}
._3a_c00478{width:53.418667pt;}
._3b_c00478{width:55.296000pt;}
._42_c00478{width:57.685333pt;}
._31_c00478{width:59.778667pt;}
._36_c00478{width:61.184000pt;}
._34_c00478{width:63.061333pt;}
._1f_c00478{width:65.706667pt;}
._44_c00478{width:67.328000pt;}
._2d_c00478{width:113.602667pt;}
._2f_c00478{width:235.789333pt;}
._2b_c00478{width:240.336000pt;}
._25_c00478{width:439.253333pt;}
.fs3_c00478{font-size:42.666667pt;}
.fs2_c00478{font-size:74.666667pt;}
.fs1_c00478{font-size:77.333333pt;}
.fs0_c00478{font-size:85.333333pt;}
.y0_c00478{bottom:0.000000pt;}
.y27_c00478{bottom:2.760000pt;}
.y26_c00478{bottom:6.425219pt;}
.y25_c00478{bottom:80.146667pt;}
.y24_c00478{bottom:110.146667pt;}
.y23_c00478{bottom:141.346667pt;}
.y22_c00478{bottom:172.013333pt;}
.y21_c00478{bottom:201.880000pt;}
.y20_c00478{bottom:232.280000pt;}
.y1f_c00478{bottom:262.013333pt;}
.y1e_c00478{bottom:292.013333pt;}
.y1d_c00478{bottom:322.280000pt;}
.y1c_c00478{bottom:352.546667pt;}
.y1b_c00478{bottom:382.013333pt;}
.y1a_c00478{bottom:411.880000pt;}
.y19_c00478{bottom:441.880000pt;}
.y18_c00478{bottom:471.613333pt;}
.y17_c00478{bottom:501.613333pt;}
.y16_c00478{bottom:531.346667pt;}
.y15_c00478{bottom:561.080000pt;}
.y14_c00478{bottom:591.080000pt;}
.y13_c00478{bottom:620.813333pt;}
.y12_c00478{bottom:650.146667pt;}
.y11_c00478{bottom:679.880000pt;}
.y10_c00478{bottom:709.213333pt;}
.yf_c00478{bottom:738.680000pt;}
.ye_c00478{bottom:768.280000pt;}
.yd_c00478{bottom:797.746667pt;}
.yc_c00478{bottom:827.080000pt;}
.yb_c00478{bottom:856.813333pt;}
.ya_c00478{bottom:886.280000pt;}
.y9_c00478{bottom:901.213333pt;}
.y8_c00478{bottom:915.880000pt;}
.y7_c00478{bottom:945.346667pt;}
.y6_c00478{bottom:974.146667pt;}
.y5_c00478{bottom:1004.146667pt;}
.y4_c00478{bottom:1033.613333pt;}
.y3_c00478{bottom:1062.680000pt;}
.y2_c00478{bottom:1092.280000pt;}
.y1_c00478{bottom:1121.746667pt;}
.h4_c00478{height:11.733399pt;}
.h5_c00478{height:38.937500pt;}
.h3_c00478{height:97.912760pt;}
.h2_c00478{height:108.041667pt;}
.h0_c00478{height:1209.133333pt;}
.h1_c00478{height:1209.333333pt;}
.w2_c00478{width:93.222667pt;}
.w1_c00478{width:767.333333pt;}
.w0_c00478{width:767.533333pt;}
.x0_c00478{left:0.000000pt;}
.x8_c00478{left:18.000000pt;}
.x9_c00478{left:27.200000pt;}
.x7_c00478{left:28.533333pt;}
.x6_c00478{left:30.400000pt;}
.x5_c00478{left:31.866667pt;}
.x3_c00478{left:33.333333pt;}
.x2_c00478{left:34.266667pt;}
.x1_c00478{left:35.333333pt;}
.xa_c00478{left:37.200000pt;}
.xb_c00478{left:38.133333pt;}
.x4_c00478{left:115.866667pt;}
.xd_c00478{left:340.934896pt;}
.xc_c00478{left:510.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_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_ff389d45156478df770a5492.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_d371e02cf7fb572e4bb762bb.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-63.504000px;}
.ws1_c00479{word-spacing:-23.136000px;}
.ws2_c00479{word-spacing:0.000000px;}
._2f_c00479{margin-left:-11.328000px;}
._2c_c00479{margin-left:-9.792000px;}
._1e_c00479{margin-left:-7.680000px;}
._1b_c00479{margin-left:-5.472000px;}
._27_c00479{margin-left:-4.224000px;}
._23_c00479{margin-left:-2.208000px;}
._11_c00479{margin-left:-1.152000px;}
._a_c00479{width:1.728000px;}
._7_c00479{width:2.784000px;}
._1_c00479{width:4.224000px;}
._3_c00479{width:5.376000px;}
._4_c00479{width:7.008000px;}
._c_c00479{width:8.160000px;}
._0_c00479{width:9.408000px;}
._32_c00479{width:10.464000px;}
._d_c00479{width:11.616000px;}
._17_c00479{width:13.536000px;}
._33_c00479{width:14.688000px;}
._13_c00479{width:16.128000px;}
._16_c00479{width:17.568000px;}
._15_c00479{width:19.104000px;}
._18_c00479{width:21.408000px;}
._25_c00479{width:24.192000px;}
._34_c00479{width:25.824000px;}
._24_c00479{width:27.168000px;}
._22_c00479{width:28.416000px;}
._1a_c00479{width:29.664000px;}
._37_c00479{width:31.296000px;}
._19_c00479{width:32.448000px;}
._8_c00479{width:34.080000px;}
._10_c00479{width:36.480000px;}
._e_c00479{width:38.208000px;}
._1c_c00479{width:39.264000px;}
._2b_c00479{width:40.992000px;}
._2_c00479{width:42.816000px;}
._6_c00479{width:44.064000px;}
._31_c00479{width:45.504000px;}
._20_c00479{width:47.232000px;}
._1d_c00479{width:48.576000px;}
._9_c00479{width:50.304000px;}
._1f_c00479{width:52.608000px;}
._12_c00479{width:53.664000px;}
._21_c00479{width:56.352000px;}
._2d_c00479{width:58.752000px;}
._2a_c00479{width:60.576000px;}
._38_c00479{width:62.208000px;}
._5_c00479{width:64.128000px;}
._30_c00479{width:65.376000px;}
._28_c00479{width:66.528000px;}
._29_c00479{width:68.736000px;}
._36_c00479{width:70.272000px;}
._14_c00479{width:71.520000px;}
._35_c00479{width:73.920000px;}
._2e_c00479{width:75.168000px;}
._f_c00479{width:79.584000px;}
._39_c00479{width:84.288000px;}
._b_c00479{width:86.880000px;}
._26_c00479{width:88.704000px;}
.fc2_c00479{color:transparent;}
.fc1_c00479{color:rgb(128,128,128);}
.fc0_c00479{color:rgb(0,0,0);}
.fs2_c00479{font-size:48.000000px;}
.fs1_c00479{font-size:84.000000px;}
.fs0_c00479{font-size:96.000000px;}
.y0_c00479{bottom:0.000000px;}
.y26_c00479{bottom:3.105000px;}
.y25_c00479{bottom:7.228357px;}
.y24_c00479{bottom:103.980000px;}
.y23_c00479{bottom:136.380000px;}
.y22_c00479{bottom:170.880000px;}
.y21_c00479{bottom:205.230000px;}
.y20_c00479{bottom:238.980000px;}
.y1f_c00479{bottom:273.330000px;}
.y1e_c00479{bottom:307.080000px;}
.y1d_c00479{bottom:340.980000px;}
.y1c_c00479{bottom:374.580000px;}
.y1b_c00479{bottom:408.330000px;}
.y1a_c00479{bottom:441.780000px;}
.y19_c00479{bottom:475.830000px;}
.y18_c00479{bottom:509.280000px;}
.y17_c00479{bottom:543.030000px;}
.y16_c00479{bottom:576.180000px;}
.y15_c00479{bottom:610.230000px;}
.y14_c00479{bottom:643.230000px;}
.y13_c00479{bottom:676.980000px;}
.y12_c00479{bottom:710.430000px;}
.y11_c00479{bottom:743.580000px;}
.y10_c00479{bottom:777.030000px;}
.yf_c00479{bottom:810.330000px;}
.ye_c00479{bottom:844.080000px;}
.yd_c00479{bottom:877.530000px;}
.yc_c00479{bottom:910.680000px;}
.yb_c00479{bottom:943.680000px;}
.ya_c00479{bottom:976.830000px;}
.y9_c00479{bottom:1010.130000px;}
.y8_c00479{bottom:1042.980000px;}
.y7_c00479{bottom:1075.680000px;}
.y6_c00479{bottom:1109.730000px;}
.y5_c00479{bottom:1142.430000px;}
.y4_c00479{bottom:1175.580000px;}
.y3_c00479{bottom:1208.880000px;}
.y2_c00479{bottom:1241.730000px;}
.y1_c00479{bottom:1275.030000px;}
.h3_c00479{height:13.200074px;}
.h4_c00479{height:43.804688px;}
.h2_c00479{height:121.546875px;}
.h0_c00479{height:1382.700000px;}
.h1_c00479{height:1383.000000px;}
.w2_c00479{width:104.875500px;}
.w0_c00479{width:863.175000px;}
.w1_c00479{width:863.250000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:251.400000px;}
.x2_c00479{left:252.450000px;}
.x4_c00479{left:253.500000px;}
.x3_c00479{left:254.550000px;}
.x5_c00479{left:256.200000px;}
.x6_c00479{left:259.500000px;}
.x8_c00479{left:383.401749px;}
.x7_c00479{left:771.450000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:-56.448000pt;}
.ws1_c00479{word-spacing:-20.565333pt;}
.ws2_c00479{word-spacing:0.000000pt;}
._2f_c00479{margin-left:-10.069333pt;}
._2c_c00479{margin-left:-8.704000pt;}
._1e_c00479{margin-left:-6.826667pt;}
._1b_c00479{margin-left:-4.864000pt;}
._27_c00479{margin-left:-3.754667pt;}
._23_c00479{margin-left:-1.962667pt;}
._11_c00479{margin-left:-1.024000pt;}
._a_c00479{width:1.536000pt;}
._7_c00479{width:2.474667pt;}
._1_c00479{width:3.754667pt;}
._3_c00479{width:4.778667pt;}
._4_c00479{width:6.229333pt;}
._c_c00479{width:7.253333pt;}
._0_c00479{width:8.362667pt;}
._32_c00479{width:9.301333pt;}
._d_c00479{width:10.325333pt;}
._17_c00479{width:12.032000pt;}
._33_c00479{width:13.056000pt;}
._13_c00479{width:14.336000pt;}
._16_c00479{width:15.616000pt;}
._15_c00479{width:16.981333pt;}
._18_c00479{width:19.029333pt;}
._25_c00479{width:21.504000pt;}
._34_c00479{width:22.954667pt;}
._24_c00479{width:24.149333pt;}
._22_c00479{width:25.258667pt;}
._1a_c00479{width:26.368000pt;}
._37_c00479{width:27.818667pt;}
._19_c00479{width:28.842667pt;}
._8_c00479{width:30.293333pt;}
._10_c00479{width:32.426667pt;}
._e_c00479{width:33.962667pt;}
._1c_c00479{width:34.901333pt;}
._2b_c00479{width:36.437333pt;}
._2_c00479{width:38.058667pt;}
._6_c00479{width:39.168000pt;}
._31_c00479{width:40.448000pt;}
._20_c00479{width:41.984000pt;}
._1d_c00479{width:43.178667pt;}
._9_c00479{width:44.714667pt;}
._1f_c00479{width:46.762667pt;}
._12_c00479{width:47.701333pt;}
._21_c00479{width:50.090667pt;}
._2d_c00479{width:52.224000pt;}
._2a_c00479{width:53.845333pt;}
._38_c00479{width:55.296000pt;}
._5_c00479{width:57.002667pt;}
._30_c00479{width:58.112000pt;}
._28_c00479{width:59.136000pt;}
._29_c00479{width:61.098667pt;}
._36_c00479{width:62.464000pt;}
._14_c00479{width:63.573333pt;}
._35_c00479{width:65.706667pt;}
._2e_c00479{width:66.816000pt;}
._f_c00479{width:70.741333pt;}
._39_c00479{width:74.922667pt;}
._b_c00479{width:77.226667pt;}
._26_c00479{width:78.848000pt;}
.fs2_c00479{font-size:42.666667pt;}
.fs1_c00479{font-size:74.666667pt;}
.fs0_c00479{font-size:85.333333pt;}
.y0_c00479{bottom:0.000000pt;}
.y26_c00479{bottom:2.760000pt;}
.y25_c00479{bottom:6.425206pt;}
.y24_c00479{bottom:92.426667pt;}
.y23_c00479{bottom:121.226667pt;}
.y22_c00479{bottom:151.893333pt;}
.y21_c00479{bottom:182.426667pt;}
.y20_c00479{bottom:212.426667pt;}
.y1f_c00479{bottom:242.960000pt;}
.y1e_c00479{bottom:272.960000pt;}
.y1d_c00479{bottom:303.093333pt;}
.y1c_c00479{bottom:332.960000pt;}
.y1b_c00479{bottom:362.960000pt;}
.y1a_c00479{bottom:392.693333pt;}
.y19_c00479{bottom:422.960000pt;}
.y18_c00479{bottom:452.693333pt;}
.y17_c00479{bottom:482.693333pt;}
.y16_c00479{bottom:512.160000pt;}
.y15_c00479{bottom:542.426667pt;}
.y14_c00479{bottom:571.760000pt;}
.y13_c00479{bottom:601.760000pt;}
.y12_c00479{bottom:631.493333pt;}
.y11_c00479{bottom:660.960000pt;}
.y10_c00479{bottom:690.693333pt;}
.yf_c00479{bottom:720.293333pt;}
.ye_c00479{bottom:750.293333pt;}
.yd_c00479{bottom:780.026667pt;}
.yc_c00479{bottom:809.493333pt;}
.yb_c00479{bottom:838.826667pt;}
.ya_c00479{bottom:868.293333pt;}
.y9_c00479{bottom:897.893333pt;}
.y8_c00479{bottom:927.093333pt;}
.y7_c00479{bottom:956.160000pt;}
.y6_c00479{bottom:986.426667pt;}
.y5_c00479{bottom:1015.493333pt;}
.y4_c00479{bottom:1044.960000pt;}
.y3_c00479{bottom:1074.560000pt;}
.y2_c00479{bottom:1103.760000pt;}
.y1_c00479{bottom:1133.360000pt;}
.h3_c00479{height:11.733399pt;}
.h4_c00479{height:38.937500pt;}
.h2_c00479{height:108.041667pt;}
.h0_c00479{height:1229.066667pt;}
.h1_c00479{height:1229.333333pt;}
.w2_c00479{width:93.222667pt;}
.w0_c00479{width:767.266667pt;}
.w1_c00479{width:767.333333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:223.466667pt;}
.x2_c00479{left:224.400000pt;}
.x4_c00479{left:225.333333pt;}
.x3_c00479{left:226.266667pt;}
.x5_c00479{left:227.733333pt;}
.x6_c00479{left:230.666667pt;}
.x8_c00479{left:340.801554pt;}
.x7_c00479{left:685.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_20ff613b60847d66bc6e12aa.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_d5a333f8d232f06e38df8d10.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_4b696f80fdfea7ceaa7b18ee.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00480;src:url('chunks/assets/font_26e19366d97444300272f8b2.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00480;src:url('chunks/assets/font_6a28d4701f0df184b1146ac2.woff2')format("woff");}.ff6_c00480{font-family:ff6_c00480;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00480;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c00480{font-family:ff7_c00480;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls4_c00480{letter-spacing:-3.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.ls1_c00480{letter-spacing:3.000000px;}
.ls3_c00480{letter-spacing:24.000000px;}
.ls2_c00480{letter-spacing:48.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00480{word-spacing:-71.136000px;}
.ws2_c00480{word-spacing:-54.000000px;}
.ws1_c00480{word-spacing:-23.136000px;}
.ws0_c00480{word-spacing:-20.244000px;}
.ws4_c00480{word-spacing:-18.798000px;}
.ws5_c00480{word-spacing:0.000000px;}
._4f_c00480{margin-left:-63.984000px;}
._4e_c00480{margin-left:-62.700000px;}
._47_c00480{margin-left:-42.816000px;}
._4d_c00480{margin-left:-41.415000px;}
._50_c00480{margin-left:-40.296000px;}
._51_c00480{margin-left:-38.391000px;}
._36_c00480{margin-left:-34.560000px;}
._49_c00480{margin-left:-32.736000px;}
._53_c00480{margin-left:-30.636000px;}
._39_c00480{margin-left:-29.256000px;}
._38_c00480{margin-left:-26.400000px;}
._3d_c00480{margin-left:-24.864000px;}
._28_c00480{margin-left:-23.400000px;}
._37_c00480{margin-left:-21.528000px;}
._52_c00480{margin-left:-20.460000px;}
._27_c00480{margin-left:-19.056000px;}
._23_c00480{margin-left:-14.616000px;}
._42_c00480{margin-left:-11.904000px;}
._24_c00480{margin-left:-10.680000px;}
._41_c00480{margin-left:-9.600000px;}
._32_c00480{margin-left:-7.296000px;}
._33_c00480{margin-left:-4.800000px;}
._31_c00480{margin-left:-3.552000px;}
._d_c00480{margin-left:-2.400000px;}
._8_c00480{margin-left:-1.152000px;}
._6_c00480{width:1.152000px;}
._a_c00480{width:3.072000px;}
._11_c00480{width:4.416000px;}
._15_c00480{width:5.472000px;}
._2_c00480{width:6.624000px;}
._5_c00480{width:7.680000px;}
._3_c00480{width:9.216000px;}
._4_c00480{width:11.232000px;}
._1_c00480{width:12.480000px;}
._29_c00480{width:14.688000px;}
._2b_c00480{width:15.744000px;}
._0_c00480{width:17.280000px;}
._2a_c00480{width:19.104000px;}
._7_c00480{width:20.928000px;}
._2c_c00480{width:25.248000px;}
._1a_c00480{width:27.456000px;}
._2e_c00480{width:28.896000px;}
._b_c00480{width:30.240000px;}
._13_c00480{width:31.296000px;}
._9_c00480{width:33.024000px;}
._14_c00480{width:34.560000px;}
._1d_c00480{width:35.616000px;}
._12_c00480{width:36.672000px;}
._1b_c00480{width:38.880000px;}
._e_c00480{width:40.416000px;}
._20_c00480{width:42.144000px;}
._c_c00480{width:43.584000px;}
._1e_c00480{width:44.640000px;}
._1f_c00480{width:45.792000px;}
._f_c00480{width:47.712000px;}
._1c_c00480{width:49.152000px;}
._3a_c00480{width:50.640000px;}
._19_c00480{width:51.840000px;}
._35_c00480{width:53.520000px;}
._22_c00480{width:54.552000px;}
._26_c00480{width:56.544000px;}
._2d_c00480{width:58.272000px;}
._18_c00480{width:59.520000px;}
._16_c00480{width:61.440000px;}
._25_c00480{width:64.800000px;}
._30_c00480{width:67.200000px;}
._21_c00480{width:69.504000px;}
._34_c00480{width:71.040000px;}
._10_c00480{width:73.536000px;}
._17_c00480{width:75.936000px;}
._2f_c00480{width:77.568000px;}
._48_c00480{width:80.808000px;}
._4c_c00480{width:101.076000px;}
._44_c00480{width:118.176000px;}
._3c_c00480{width:159.744000px;}
._4a_c00480{width:183.648000px;}
._3e_c00480{width:189.984000px;}
._56_c00480{width:221.184000px;}
._54_c00480{width:229.128000px;}
._3f_c00480{width:242.232000px;}
._55_c00480{width:297.960000px;}
._57_c00480{width:328.224000px;}
._45_c00480{width:420.576000px;}
._46_c00480{width:430.560000px;}
._43_c00480{width:487.104000px;}
._4b_c00480{width:525.192000px;}
._40_c00480{width:546.642000px;}
._58_c00480{width:802.080000px;}
._3b_c00480{width:1734.912000px;}
.fc2_c00480{color:transparent;}
.fc1_c00480{color:rgb(128,128,128);}
.fc0_c00480{color:rgb(0,0,0);}
.fs7_c00480{font-size:48.000000px;}
.fs4_c00480{font-size:78.000000px;}
.fs1_c00480{font-size:84.000000px;}
.fs3_c00480{font-size:87.000000px;}
.fs6_c00480{font-size:90.000000px;}
.fs0_c00480{font-size:96.000000px;}
.fs2_c00480{font-size:102.000000px;}
.fs5_c00480{font-size:165.000000px;}
.y0_c00480{bottom:0.000000px;}
.y28_c00480{bottom:3.105000px;}
.y27_c00480{bottom:7.228357px;}
.y26_c00480{bottom:104.730000px;}
.y25_c00480{bottom:138.480000px;}
.y24_c00480{bottom:173.580000px;}
.y23_c00480{bottom:207.630000px;}
.y22_c00480{bottom:241.080000px;}
.y21_c00480{bottom:273.780000px;}
.y20_c00480{bottom:294.330000px;}
.y1f_c00480{bottom:309.780000px;}
.y1e_c00480{bottom:326.730000px;}
.y1d_c00480{bottom:346.680000px;}
.y1c_c00480{bottom:373.680000px;}
.y1b_c00480{bottom:411.030000px;}
.y1a_c00480{bottom:444.180000px;}
.y19_c00480{bottom:477.930000px;}
.y18_c00480{bottom:511.380000px;}
.y17_c00480{bottom:545.130000px;}
.y16_c00480{bottom:579.180000px;}
.y15_c00480{bottom:612.630000px;}
.y14_c00480{bottom:646.380000px;}
.y13_c00480{bottom:679.680000px;}
.y12_c00480{bottom:713.130000px;}
.y11_c00480{bottom:746.580000px;}
.y10_c00480{bottom:779.730000px;}
.yf_c00480{bottom:813.330000px;}
.ye_c00480{bottom:845.730000px;}
.yd_c00480{bottom:879.180000px;}
.yc_c00480{bottom:912.630000px;}
.yb_c00480{bottom:946.080000px;}
.ya_c00480{bottom:979.380000px;}
.y9_c00480{bottom:1012.530000px;}
.y8_c00480{bottom:1045.680000px;}
.y7_c00480{bottom:1079.280000px;}
.y6_c00480{bottom:1111.680000px;}
.y5_c00480{bottom:1144.230000px;}
.y4_c00480{bottom:1177.830000px;}
.y3_c00480{bottom:1210.830000px;}
.y2_c00480{bottom:1243.680000px;}
.y1_c00480{bottom:1276.530000px;}
.h5_c00480{height:13.200074px;}
.h6_c00480{height:43.804688px;}
.h3_c00480{height:110.151855px;}
.h2_c00480{height:121.546875px;}
.h4_c00480{height:161.857910px;}
.h1_c00480{height:1378.500000px;}
.h0_c00480{height:1378.650000px;}
.w2_c00480{width:104.875500px;}
.w1_c00480{width:874.500000px;}
.w0_c00480{width:874.800000px;}
.x0_c00480{left:0.000000px;}
.x6_c00480{left:15.900000px;}
.x4_c00480{left:17.100000px;}
.x5_c00480{left:18.150000px;}
.x3_c00480{left:19.200000px;}
.x2_c00480{left:20.250000px;}
.x1_c00480{left:21.900000px;}
.x9_c00480{left:22.950000px;}
.xa_c00480{left:24.600000px;}
.x7_c00480{left:72.150000px;}
.xb_c00480{left:297.450000px;}
.xc_c00480{left:389.214249px;}
.x8_c00480{left:433.350000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls4_c00480{letter-spacing:-2.666667pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ls1_c00480{letter-spacing:2.666667pt;}
.ls3_c00480{letter-spacing:21.333333pt;}
.ls2_c00480{letter-spacing:42.666667pt;}
.ws3_c00480{word-spacing:-63.232000pt;}
.ws2_c00480{word-spacing:-48.000000pt;}
.ws1_c00480{word-spacing:-20.565333pt;}
.ws0_c00480{word-spacing:-17.994667pt;}
.ws4_c00480{word-spacing:-16.709333pt;}
.ws5_c00480{word-spacing:0.000000pt;}
._4f_c00480{margin-left:-56.874667pt;}
._4e_c00480{margin-left:-55.733333pt;}
._47_c00480{margin-left:-38.058667pt;}
._4d_c00480{margin-left:-36.813333pt;}
._50_c00480{margin-left:-35.818667pt;}
._51_c00480{margin-left:-34.125333pt;}
._36_c00480{margin-left:-30.720000pt;}
._49_c00480{margin-left:-29.098667pt;}
._53_c00480{margin-left:-27.232000pt;}
._39_c00480{margin-left:-26.005333pt;}
._38_c00480{margin-left:-23.466667pt;}
._3d_c00480{margin-left:-22.101333pt;}
._28_c00480{margin-left:-20.800000pt;}
._37_c00480{margin-left:-19.136000pt;}
._52_c00480{margin-left:-18.186667pt;}
._27_c00480{margin-left:-16.938667pt;}
._23_c00480{margin-left:-12.992000pt;}
._42_c00480{margin-left:-10.581333pt;}
._24_c00480{margin-left:-9.493333pt;}
._41_c00480{margin-left:-8.533333pt;}
._32_c00480{margin-left:-6.485333pt;}
._33_c00480{margin-left:-4.266667pt;}
._31_c00480{margin-left:-3.157333pt;}
._d_c00480{margin-left:-2.133333pt;}
._8_c00480{margin-left:-1.024000pt;}
._6_c00480{width:1.024000pt;}
._a_c00480{width:2.730667pt;}
._11_c00480{width:3.925333pt;}
._15_c00480{width:4.864000pt;}
._2_c00480{width:5.888000pt;}
._5_c00480{width:6.826667pt;}
._3_c00480{width:8.192000pt;}
._4_c00480{width:9.984000pt;}
._1_c00480{width:11.093333pt;}
._29_c00480{width:13.056000pt;}
._2b_c00480{width:13.994667pt;}
._0_c00480{width:15.360000pt;}
._2a_c00480{width:16.981333pt;}
._7_c00480{width:18.602667pt;}
._2c_c00480{width:22.442667pt;}
._1a_c00480{width:24.405333pt;}
._2e_c00480{width:25.685333pt;}
._b_c00480{width:26.880000pt;}
._13_c00480{width:27.818667pt;}
._9_c00480{width:29.354667pt;}
._14_c00480{width:30.720000pt;}
._1d_c00480{width:31.658667pt;}
._12_c00480{width:32.597333pt;}
._1b_c00480{width:34.560000pt;}
._e_c00480{width:35.925333pt;}
._20_c00480{width:37.461333pt;}
._c_c00480{width:38.741333pt;}
._1e_c00480{width:39.680000pt;}
._1f_c00480{width:40.704000pt;}
._f_c00480{width:42.410667pt;}
._1c_c00480{width:43.690667pt;}
._3a_c00480{width:45.013333pt;}
._19_c00480{width:46.080000pt;}
._35_c00480{width:47.573333pt;}
._22_c00480{width:48.490667pt;}
._26_c00480{width:50.261333pt;}
._2d_c00480{width:51.797333pt;}
._18_c00480{width:52.906667pt;}
._16_c00480{width:54.613333pt;}
._25_c00480{width:57.600000pt;}
._30_c00480{width:59.733333pt;}
._21_c00480{width:61.781333pt;}
._34_c00480{width:63.146667pt;}
._10_c00480{width:65.365333pt;}
._17_c00480{width:67.498667pt;}
._2f_c00480{width:68.949333pt;}
._48_c00480{width:71.829333pt;}
._4c_c00480{width:89.845333pt;}
._44_c00480{width:105.045333pt;}
._3c_c00480{width:141.994667pt;}
._4a_c00480{width:163.242667pt;}
._3e_c00480{width:168.874667pt;}
._56_c00480{width:196.608000pt;}
._54_c00480{width:203.669333pt;}
._3f_c00480{width:215.317333pt;}
._55_c00480{width:264.853333pt;}
._57_c00480{width:291.754667pt;}
._45_c00480{width:373.845333pt;}
._46_c00480{width:382.720000pt;}
._43_c00480{width:432.981333pt;}
._4b_c00480{width:466.837333pt;}
._40_c00480{width:485.904000pt;}
._58_c00480{width:712.960000pt;}
._3b_c00480{width:1542.144000pt;}
.fs7_c00480{font-size:42.666667pt;}
.fs4_c00480{font-size:69.333333pt;}
.fs1_c00480{font-size:74.666667pt;}
.fs3_c00480{font-size:77.333333pt;}
.fs6_c00480{font-size:80.000000pt;}
.fs0_c00480{font-size:85.333333pt;}
.fs2_c00480{font-size:90.666667pt;}
.fs5_c00480{font-size:146.666667pt;}
.y0_c00480{bottom:0.000000pt;}
.y28_c00480{bottom:2.760000pt;}
.y27_c00480{bottom:6.425206pt;}
.y26_c00480{bottom:93.093333pt;}
.y25_c00480{bottom:123.093333pt;}
.y24_c00480{bottom:154.293333pt;}
.y23_c00480{bottom:184.560000pt;}
.y22_c00480{bottom:214.293333pt;}
.y21_c00480{bottom:243.360000pt;}
.y20_c00480{bottom:261.626667pt;}
.y1f_c00480{bottom:275.360000pt;}
.y1e_c00480{bottom:290.426667pt;}
.y1d_c00480{bottom:308.160000pt;}
.y1c_c00480{bottom:332.160000pt;}
.y1b_c00480{bottom:365.360000pt;}
.y1a_c00480{bottom:394.826667pt;}
.y19_c00480{bottom:424.826667pt;}
.y18_c00480{bottom:454.560000pt;}
.y17_c00480{bottom:484.560000pt;}
.y16_c00480{bottom:514.826667pt;}
.y15_c00480{bottom:544.560000pt;}
.y14_c00480{bottom:574.560000pt;}
.y13_c00480{bottom:604.160000pt;}
.y12_c00480{bottom:633.893333pt;}
.y11_c00480{bottom:663.626667pt;}
.y10_c00480{bottom:693.093333pt;}
.yf_c00480{bottom:722.960000pt;}
.ye_c00480{bottom:751.760000pt;}
.yd_c00480{bottom:781.493333pt;}
.yc_c00480{bottom:811.226667pt;}
.yb_c00480{bottom:840.960000pt;}
.ya_c00480{bottom:870.560000pt;}
.y9_c00480{bottom:900.026667pt;}
.y8_c00480{bottom:929.493333pt;}
.y7_c00480{bottom:959.360000pt;}
.y6_c00480{bottom:988.160000pt;}
.y5_c00480{bottom:1017.093333pt;}
.y4_c00480{bottom:1046.960000pt;}
.y3_c00480{bottom:1076.293333pt;}
.y2_c00480{bottom:1105.493333pt;}
.y1_c00480{bottom:1134.693333pt;}
.h5_c00480{height:11.733399pt;}
.h6_c00480{height:38.937500pt;}
.h3_c00480{height:97.912760pt;}
.h2_c00480{height:108.041667pt;}
.h4_c00480{height:143.873698pt;}
.h1_c00480{height:1225.333333pt;}
.h0_c00480{height:1225.466667pt;}
.w2_c00480{width:93.222667pt;}
.w1_c00480{width:777.333333pt;}
.w0_c00480{width:777.600000pt;}
.x0_c00480{left:0.000000pt;}
.x6_c00480{left:14.133333pt;}
.x4_c00480{left:15.200000pt;}
.x5_c00480{left:16.133333pt;}
.x3_c00480{left:17.066667pt;}
.x2_c00480{left:18.000000pt;}
.x1_c00480{left:19.466667pt;}
.x9_c00480{left:20.400000pt;}
.xa_c00480{left:21.866667pt;}
.x7_c00480{left:64.133333pt;}
.xb_c00480{left:264.400000pt;}
.xc_c00480{left:345.968221pt;}
.x8_c00480{left:385.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_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_6a372606229e1c1f2d077eb3.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_ed57554def4ce1b99b13f76d.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_15cfe975e425277ebfa2add3.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00481;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00481{font-family:ff5_c00481;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls2_c00481{letter-spacing:-6.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.ls1_c00481{letter-spacing:3.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00481{word-spacing:-80.040000px;}
.ws0_c00481{word-spacing:-54.000000px;}
.ws2_c00481{word-spacing:-16.413000px;}
.ws3_c00481{word-spacing:0.000000px;}
._3a_c00481{margin-left:-23.091000px;}
._32_c00481{margin-left:-16.848000px;}
._2b_c00481{margin-left:-13.920000px;}
._9_c00481{margin-left:-12.768000px;}
._16_c00481{margin-left:-11.136000px;}
._27_c00481{margin-left:-9.120000px;}
._2a_c00481{margin-left:-7.200000px;}
._1c_c00481{margin-left:-5.184000px;}
._b_c00481{margin-left:-3.264000px;}
._e_c00481{margin-left:-1.536000px;}
._0_c00481{width:1.440000px;}
._6_c00481{width:3.360000px;}
._5_c00481{width:4.896000px;}
._7_c00481{width:6.240000px;}
._4_c00481{width:7.680000px;}
._11_c00481{width:9.312000px;}
._26_c00481{width:10.944000px;}
._f_c00481{width:12.864000px;}
._18_c00481{width:14.592000px;}
._34_c00481{width:15.720000px;}
._12_c00481{width:16.896000px;}
._24_c00481{width:18.048000px;}
._15_c00481{width:19.296000px;}
._a_c00481{width:21.312000px;}
._35_c00481{width:22.791000px;}
._2_c00481{width:25.824000px;}
._39_c00481{width:27.303000px;}
._1d_c00481{width:28.320000px;}
._d_c00481{width:29.376000px;}
._14_c00481{width:30.720000px;}
._10_c00481{width:32.544000px;}
._20_c00481{width:34.368000px;}
._3_c00481{width:35.616000px;}
._1f_c00481{width:36.768000px;}
._c_c00481{width:38.400000px;}
._19_c00481{width:40.608000px;}
._13_c00481{width:41.664000px;}
._1_c00481{width:43.680000px;}
._1b_c00481{width:45.504000px;}
._1a_c00481{width:47.232000px;}
._17_c00481{width:49.344000px;}
._36_c00481{width:50.766000px;}
._22_c00481{width:52.032000px;}
._8_c00481{width:53.664000px;}
._2f_c00481{width:55.584000px;}
._25_c00481{width:57.888000px;}
._31_c00481{width:60.288000px;}
._1e_c00481{width:61.536000px;}
._23_c00481{width:63.264000px;}
._28_c00481{width:65.184000px;}
._29_c00481{width:66.624000px;}
._37_c00481{width:73.110000px;}
._21_c00481{width:75.168000px;}
._2e_c00481{width:76.896000px;}
._2d_c00481{width:79.392000px;}
._2c_c00481{width:82.272000px;}
._30_c00481{width:86.592000px;}
._38_c00481{width:121.092000px;}
._33_c00481{width:174.315000px;}
.fc2_c00481{color:transparent;}
.fc1_c00481{color:rgb(128,128,128);}
.fc0_c00481{color:rgb(0,0,0);}
.fs5_c00481{font-size:48.000000px;}
.fs3_c00481{font-size:72.000000px;}
.fs2_c00481{font-size:93.000000px;}
.fs0_c00481{font-size:96.000000px;}
.fs1_c00481{font-size:102.000000px;}
.fs4_c00481{font-size:120.000000px;}
.y0_c00481{bottom:0.000000px;}
.y26_c00481{bottom:3.105000px;}
.y25_c00481{bottom:7.228357px;}
.y24_c00481{bottom:96.930000px;}
.y23_c00481{bottom:128.280000px;}
.y22_c00481{bottom:163.080000px;}
.y21_c00481{bottom:196.380000px;}
.y20_c00481{bottom:230.880000px;}
.y1f_c00481{bottom:264.930000px;}
.y1e_c00481{bottom:298.080000px;}
.y1d_c00481{bottom:332.430000px;}
.y1c_c00481{bottom:365.880000px;}
.y1b_c00481{bottom:399.930000px;}
.y1a_c00481{bottom:433.380000px;}
.y19_c00481{bottom:467.130000px;}
.y18_c00481{bottom:502.530000px;}
.y17_c00481{bottom:534.630000px;}
.y16_c00481{bottom:568.680000px;}
.y15_c00481{bottom:602.730000px;}
.y14_c00481{bottom:635.880000px;}
.y13_c00481{bottom:669.630000px;}
.y12_c00481{bottom:702.780000px;}
.y11_c00481{bottom:736.530000px;}
.y10_c00481{bottom:769.530000px;}
.yf_c00481{bottom:803.880000px;}
.ye_c00481{bottom:837.030000px;}
.yd_c00481{bottom:870.780000px;}
.yc_c00481{bottom:904.230000px;}
.yb_c00481{bottom:937.530000px;}
.ya_c00481{bottom:971.280000px;}
.y9_c00481{bottom:1003.680000px;}
.y8_c00481{bottom:1036.830000px;}
.y7_c00481{bottom:1069.830000px;}
.y6_c00481{bottom:1103.580000px;}
.y5_c00481{bottom:1137.030000px;}
.y4_c00481{bottom:1170.180000px;}
.y3_c00481{bottom:1203.180000px;}
.y2_c00481{bottom:1236.630000px;}
.y1_c00481{bottom:1269.630000px;}
.h5_c00481{height:13.200074px;}
.h6_c00481{height:43.804688px;}
.h3_c00481{height:117.748535px;}
.h4_c00481{height:117.773438px;}
.h2_c00481{height:121.546875px;}
.h0_c00481{height:1382.700000px;}
.h1_c00481{height:1383.000000px;}
.w2_c00481{width:104.875500px;}
.w0_c00481{width:863.175000px;}
.w1_c00481{width:863.250000px;}
.x0_c00481{left:0.000000px;}
.x6_c00481{left:244.350000px;}
.x1_c00481{left:256.800000px;}
.x2_c00481{left:257.850000px;}
.x3_c00481{left:258.900000px;}
.x5_c00481{left:260.100000px;}
.x4_c00481{left:261.150000px;}
.x7_c00481{left:262.200000px;}
.x8_c00481{left:312.900000px;}
.xa_c00481{left:383.401749px;}
.x9_c00481{left:799.500000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls2_c00481{letter-spacing:-5.333333pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ls1_c00481{letter-spacing:2.666667pt;}
.ws1_c00481{word-spacing:-71.146667pt;}
.ws0_c00481{word-spacing:-48.000000pt;}
.ws2_c00481{word-spacing:-14.589333pt;}
.ws3_c00481{word-spacing:0.000000pt;}
._3a_c00481{margin-left:-20.525333pt;}
._32_c00481{margin-left:-14.976000pt;}
._2b_c00481{margin-left:-12.373333pt;}
._9_c00481{margin-left:-11.349333pt;}
._16_c00481{margin-left:-9.898667pt;}
._27_c00481{margin-left:-8.106667pt;}
._2a_c00481{margin-left:-6.400000pt;}
._1c_c00481{margin-left:-4.608000pt;}
._b_c00481{margin-left:-2.901333pt;}
._e_c00481{margin-left:-1.365333pt;}
._0_c00481{width:1.280000pt;}
._6_c00481{width:2.986667pt;}
._5_c00481{width:4.352000pt;}
._7_c00481{width:5.546667pt;}
._4_c00481{width:6.826667pt;}
._11_c00481{width:8.277333pt;}
._26_c00481{width:9.728000pt;}
._f_c00481{width:11.434667pt;}
._18_c00481{width:12.970667pt;}
._34_c00481{width:13.973333pt;}
._12_c00481{width:15.018667pt;}
._24_c00481{width:16.042667pt;}
._15_c00481{width:17.152000pt;}
._a_c00481{width:18.944000pt;}
._35_c00481{width:20.258667pt;}
._2_c00481{width:22.954667pt;}
._39_c00481{width:24.269333pt;}
._1d_c00481{width:25.173333pt;}
._d_c00481{width:26.112000pt;}
._14_c00481{width:27.306667pt;}
._10_c00481{width:28.928000pt;}
._20_c00481{width:30.549333pt;}
._3_c00481{width:31.658667pt;}
._1f_c00481{width:32.682667pt;}
._c_c00481{width:34.133333pt;}
._19_c00481{width:36.096000pt;}
._13_c00481{width:37.034667pt;}
._1_c00481{width:38.826667pt;}
._1b_c00481{width:40.448000pt;}
._1a_c00481{width:41.984000pt;}
._17_c00481{width:43.861333pt;}
._36_c00481{width:45.125333pt;}
._22_c00481{width:46.250667pt;}
._8_c00481{width:47.701333pt;}
._2f_c00481{width:49.408000pt;}
._25_c00481{width:51.456000pt;}
._31_c00481{width:53.589333pt;}
._1e_c00481{width:54.698667pt;}
._23_c00481{width:56.234667pt;}
._28_c00481{width:57.941333pt;}
._29_c00481{width:59.221333pt;}
._37_c00481{width:64.986667pt;}
._21_c00481{width:66.816000pt;}
._2e_c00481{width:68.352000pt;}
._2d_c00481{width:70.570667pt;}
._2c_c00481{width:73.130667pt;}
._30_c00481{width:76.970667pt;}
._38_c00481{width:107.637333pt;}
._33_c00481{width:154.946667pt;}
.fs5_c00481{font-size:42.666667pt;}
.fs3_c00481{font-size:64.000000pt;}
.fs2_c00481{font-size:82.666667pt;}
.fs0_c00481{font-size:85.333333pt;}
.fs1_c00481{font-size:90.666667pt;}
.fs4_c00481{font-size:106.666667pt;}
.y0_c00481{bottom:0.000000pt;}
.y26_c00481{bottom:2.760000pt;}
.y25_c00481{bottom:6.425206pt;}
.y24_c00481{bottom:86.160000pt;}
.y23_c00481{bottom:114.026667pt;}
.y22_c00481{bottom:144.960000pt;}
.y21_c00481{bottom:174.560000pt;}
.y20_c00481{bottom:205.226667pt;}
.y1f_c00481{bottom:235.493333pt;}
.y1e_c00481{bottom:264.960000pt;}
.y1d_c00481{bottom:295.493333pt;}
.y1c_c00481{bottom:325.226667pt;}
.y1b_c00481{bottom:355.493333pt;}
.y1a_c00481{bottom:385.226667pt;}
.y19_c00481{bottom:415.226667pt;}
.y18_c00481{bottom:446.693333pt;}
.y17_c00481{bottom:475.226667pt;}
.y16_c00481{bottom:505.493333pt;}
.y15_c00481{bottom:535.760000pt;}
.y14_c00481{bottom:565.226667pt;}
.y13_c00481{bottom:595.226667pt;}
.y12_c00481{bottom:624.693333pt;}
.y11_c00481{bottom:654.693333pt;}
.y10_c00481{bottom:684.026667pt;}
.yf_c00481{bottom:714.560000pt;}
.ye_c00481{bottom:744.026667pt;}
.yd_c00481{bottom:774.026667pt;}
.yc_c00481{bottom:803.760000pt;}
.yb_c00481{bottom:833.360000pt;}
.ya_c00481{bottom:863.360000pt;}
.y9_c00481{bottom:892.160000pt;}
.y8_c00481{bottom:921.626667pt;}
.y7_c00481{bottom:950.960000pt;}
.y6_c00481{bottom:980.960000pt;}
.y5_c00481{bottom:1010.693333pt;}
.y4_c00481{bottom:1040.160000pt;}
.y3_c00481{bottom:1069.493333pt;}
.y2_c00481{bottom:1099.226667pt;}
.y1_c00481{bottom:1128.560000pt;}
.h5_c00481{height:11.733399pt;}
.h6_c00481{height:38.937500pt;}
.h3_c00481{height:104.665365pt;}
.h4_c00481{height:104.687500pt;}
.h2_c00481{height:108.041667pt;}
.h0_c00481{height:1229.066667pt;}
.h1_c00481{height:1229.333333pt;}
.w2_c00481{width:93.222667pt;}
.w0_c00481{width:767.266667pt;}
.w1_c00481{width:767.333333pt;}
.x0_c00481{left:0.000000pt;}
.x6_c00481{left:217.200000pt;}
.x1_c00481{left:228.266667pt;}
.x2_c00481{left:229.200000pt;}
.x3_c00481{left:230.133333pt;}
.x5_c00481{left:231.200000pt;}
.x4_c00481{left:232.133333pt;}
.x7_c00481{left:233.066667pt;}
.x8_c00481{left:278.133333pt;}
.xa_c00481{left:340.801554pt;}
.x9_c00481{left:710.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e3dc83e44c8e4720f30e6702.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_97f1f704c77b5aff2a7fd6cc.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_33026bb4500f8252fc5811be.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls3_c00482{letter-spacing:0.000000px;}
.ls1_c00482{letter-spacing:0.600000px;}
.ls4_c00482{letter-spacing:3.000000px;}
.ls2_c00482{letter-spacing:7.200000px;}
.ls0_c00482{letter-spacing:42.036000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:-63.504000px;}
.ws1_c00482{word-spacing:-54.000000px;}
.ws2_c00482{word-spacing:-23.136000px;}
.ws3_c00482{word-spacing:0.000000px;}
._28_c00482{margin-left:-79.584000px;}
._3a_c00482{margin-left:-40.440000px;}
._9_c00482{margin-left:-30.528000px;}
._34_c00482{margin-left:-27.744000px;}
._3b_c00482{margin-left:-19.464000px;}
._f_c00482{margin-left:-15.360000px;}
._1_c00482{margin-left:-14.016000px;}
._2_c00482{margin-left:-12.384000px;}
._1b_c00482{margin-left:-11.328000px;}
._36_c00482{margin-left:-10.272000px;}
._33_c00482{margin-left:-9.024000px;}
._0_c00482{margin-left:-7.968000px;}
._31_c00482{margin-left:-6.168000px;}
._2b_c00482{margin-left:-3.360000px;}
._4_c00482{margin-left:-2.112000px;}
._2e_c00482{margin-left:-1.056000px;}
._19_c00482{width:1.632000px;}
._6_c00482{width:2.784000px;}
._b_c00482{width:3.936000px;}
._7_c00482{width:5.088000px;}
._d_c00482{width:6.528000px;}
._a_c00482{width:8.064000px;}
._12_c00482{width:9.504000px;}
._13_c00482{width:10.560000px;}
._11_c00482{width:11.808000px;}
._17_c00482{width:13.344000px;}
._e_c00482{width:14.592000px;}
._15_c00482{width:15.648000px;}
._25_c00482{width:16.704000px;}
._8_c00482{width:19.296000px;}
._1d_c00482{width:21.312000px;}
._2a_c00482{width:24.192000px;}
._1a_c00482{width:25.824000px;}
._1c_c00482{width:27.744000px;}
._21_c00482{width:30.528000px;}
._c_c00482{width:32.160000px;}
._22_c00482{width:34.176000px;}
._30_c00482{width:35.712000px;}
._20_c00482{width:36.768000px;}
._14_c00482{width:38.304000px;}
._18_c00482{width:41.088000px;}
._23_c00482{width:43.104000px;}
._10_c00482{width:44.832000px;}
._39_c00482{width:45.852000px;}
._2c_c00482{width:46.872000px;}
._16_c00482{width:47.904000px;}
._24_c00482{width:49.056000px;}
._5_c00482{width:50.592000px;}
._1e_c00482{width:51.648000px;}
._32_c00482{width:53.472000px;}
._1f_c00482{width:54.624000px;}
._27_c00482{width:56.064000px;}
._3_c00482{width:57.888000px;}
._35_c00482{width:60.384000px;}
._26_c00482{width:65.952000px;}
._2f_c00482{width:67.272000px;}
._2d_c00482{width:69.120000px;}
._29_c00482{width:72.960000px;}
._37_c00482{width:106.464000px;}
._38_c00482{width:402.240000px;}
.fc2_c00482{color:transparent;}
.fc1_c00482{color:rgb(128,128,128);}
.fc0_c00482{color:rgb(0,0,0);}
.fs3_c00482{font-size:48.000000px;}
.fs1_c00482{font-size:84.000000px;}
.fs0_c00482{font-size:96.000000px;}
.fs2_c00482{font-size:102.000000px;}
.y0_c00482{bottom:0.000000px;}
.y26_c00482{bottom:3.105000px;}
.y25_c00482{bottom:7.228369px;}
.y24_c00482{bottom:107.370000px;}
.y23_c00482{bottom:137.670000px;}
.y22_c00482{bottom:173.070000px;}
.y21_c00482{bottom:207.270000px;}
.y20_c00482{bottom:240.870000px;}
.y1f_c00482{bottom:274.770000px;}
.y1e_c00482{bottom:308.520000px;}
.y1d_c00482{bottom:342.270000px;}
.y1c_c00482{bottom:376.920000px;}
.y1b_c00482{bottom:409.770000px;}
.y1a_c00482{bottom:443.070000px;}
.y19_c00482{bottom:476.520000px;}
.y18_c00482{bottom:510.570000px;}
.y17_c00482{bottom:544.020000px;}
.y16_c00482{bottom:577.770000px;}
.y15_c00482{bottom:611.220000px;}
.y14_c00482{bottom:645.570000px;}
.y13_c00482{bottom:678.720000px;}
.y12_c00482{bottom:712.770000px;}
.y11_c00482{bottom:744.870000px;}
.y10_c00482{bottom:779.220000px;}
.yf_c00482{bottom:812.670000px;}
.ye_c00482{bottom:845.370000px;}
.yd_c00482{bottom:879.120000px;}
.yc_c00482{bottom:911.820000px;}
.yb_c00482{bottom:945.720000px;}
.ya_c00482{bottom:979.320000px;}
.y9_c00482{bottom:1012.470000px;}
.y8_c00482{bottom:1045.920000px;}
.y7_c00482{bottom:1078.620000px;}
.y6_c00482{bottom:1111.770000px;}
.y5_c00482{bottom:1145.070000px;}
.y4_c00482{bottom:1178.220000px;}
.y3_c00482{bottom:1210.620000px;}
.y2_c00482{bottom:1244.370000px;}
.y1_c00482{bottom:1279.020000px;}
.h3_c00482{height:13.200073px;}
.h4_c00482{height:43.804688px;}
.h2_c00482{height:121.546875px;}
.h0_c00482{height:1383.450000px;}
.h1_c00482{height:1383.750000px;}
.w2_c00482{width:104.875500px;}
.w0_c00482{width:878.025000px;}
.w1_c00482{width:878.250000px;}
.x0_c00482{left:0.000000px;}
.x3_c00482{left:33.750000px;}
.x2_c00482{left:34.800000px;}
.x1_c00482{left:36.450000px;}
.x4_c00482{left:37.500000px;}
.x8_c00482{left:38.550000px;}
.x6_c00482{left:39.600000px;}
.x7_c00482{left:40.800000px;}
.x9_c00482{left:45.000000px;}
.xa_c00482{left:46.650000px;}
.x5_c00482{left:92.100000px;}
.xc_c00482{left:390.826721px;}
.xb_c00482{left:572.100000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls3_c00482{letter-spacing:0.000000pt;}
.ls1_c00482{letter-spacing:0.533333pt;}
.ls4_c00482{letter-spacing:2.666667pt;}
.ls2_c00482{letter-spacing:6.400000pt;}
.ls0_c00482{letter-spacing:37.365333pt;}
.ws0_c00482{word-spacing:-56.448000pt;}
.ws1_c00482{word-spacing:-48.000000pt;}
.ws2_c00482{word-spacing:-20.565333pt;}
.ws3_c00482{word-spacing:0.000000pt;}
._28_c00482{margin-left:-70.741333pt;}
._3a_c00482{margin-left:-35.946667pt;}
._9_c00482{margin-left:-27.136000pt;}
._34_c00482{margin-left:-24.661333pt;}
._3b_c00482{margin-left:-17.301333pt;}
._f_c00482{margin-left:-13.653333pt;}
._1_c00482{margin-left:-12.458667pt;}
._2_c00482{margin-left:-11.008000pt;}
._1b_c00482{margin-left:-10.069333pt;}
._36_c00482{margin-left:-9.130667pt;}
._33_c00482{margin-left:-8.021333pt;}
._0_c00482{margin-left:-7.082667pt;}
._31_c00482{margin-left:-5.482667pt;}
._2b_c00482{margin-left:-2.986667pt;}
._4_c00482{margin-left:-1.877333pt;}
._2e_c00482{margin-left:-0.938667pt;}
._19_c00482{width:1.450667pt;}
._6_c00482{width:2.474667pt;}
._b_c00482{width:3.498667pt;}
._7_c00482{width:4.522667pt;}
._d_c00482{width:5.802667pt;}
._a_c00482{width:7.168000pt;}
._12_c00482{width:8.448000pt;}
._13_c00482{width:9.386667pt;}
._11_c00482{width:10.496000pt;}
._17_c00482{width:11.861333pt;}
._e_c00482{width:12.970667pt;}
._15_c00482{width:13.909333pt;}
._25_c00482{width:14.848000pt;}
._8_c00482{width:17.152000pt;}
._1d_c00482{width:18.944000pt;}
._2a_c00482{width:21.504000pt;}
._1a_c00482{width:22.954667pt;}
._1c_c00482{width:24.661333pt;}
._21_c00482{width:27.136000pt;}
._c_c00482{width:28.586667pt;}
._22_c00482{width:30.378667pt;}
._30_c00482{width:31.744000pt;}
._20_c00482{width:32.682667pt;}
._14_c00482{width:34.048000pt;}
._18_c00482{width:36.522667pt;}
._23_c00482{width:38.314667pt;}
._10_c00482{width:39.850667pt;}
._39_c00482{width:40.757333pt;}
._2c_c00482{width:41.664000pt;}
._16_c00482{width:42.581333pt;}
._24_c00482{width:43.605333pt;}
._5_c00482{width:44.970667pt;}
._1e_c00482{width:45.909333pt;}
._32_c00482{width:47.530667pt;}
._1f_c00482{width:48.554667pt;}
._27_c00482{width:49.834667pt;}
._3_c00482{width:51.456000pt;}
._35_c00482{width:53.674667pt;}
._26_c00482{width:58.624000pt;}
._2f_c00482{width:59.797333pt;}
._2d_c00482{width:61.440000pt;}
._29_c00482{width:64.853333pt;}
._37_c00482{width:94.634667pt;}
._38_c00482{width:357.546667pt;}
.fs3_c00482{font-size:42.666667pt;}
.fs1_c00482{font-size:74.666667pt;}
.fs0_c00482{font-size:85.333333pt;}
.fs2_c00482{font-size:90.666667pt;}
.y0_c00482{bottom:0.000000pt;}
.y26_c00482{bottom:2.760000pt;}
.y25_c00482{bottom:6.425217pt;}
.y24_c00482{bottom:95.440000pt;}
.y23_c00482{bottom:122.373333pt;}
.y22_c00482{bottom:153.840000pt;}
.y21_c00482{bottom:184.240000pt;}
.y20_c00482{bottom:214.106667pt;}
.y1f_c00482{bottom:244.240000pt;}
.y1e_c00482{bottom:274.240000pt;}
.y1d_c00482{bottom:304.240000pt;}
.y1c_c00482{bottom:335.040000pt;}
.y1b_c00482{bottom:364.240000pt;}
.y1a_c00482{bottom:393.840000pt;}
.y19_c00482{bottom:423.573333pt;}
.y18_c00482{bottom:453.840000pt;}
.y17_c00482{bottom:483.573333pt;}
.y16_c00482{bottom:513.573333pt;}
.y15_c00482{bottom:543.306667pt;}
.y14_c00482{bottom:573.840000pt;}
.y13_c00482{bottom:603.306667pt;}
.y12_c00482{bottom:633.573333pt;}
.y11_c00482{bottom:662.106667pt;}
.y10_c00482{bottom:692.640000pt;}
.yf_c00482{bottom:722.373333pt;}
.ye_c00482{bottom:751.440000pt;}
.yd_c00482{bottom:781.440000pt;}
.yc_c00482{bottom:810.506667pt;}
.yb_c00482{bottom:840.640000pt;}
.ya_c00482{bottom:870.506667pt;}
.y9_c00482{bottom:899.973333pt;}
.y8_c00482{bottom:929.706667pt;}
.y7_c00482{bottom:958.773333pt;}
.y6_c00482{bottom:988.240000pt;}
.y5_c00482{bottom:1017.840000pt;}
.y4_c00482{bottom:1047.306667pt;}
.y3_c00482{bottom:1076.106667pt;}
.y2_c00482{bottom:1106.106667pt;}
.y1_c00482{bottom:1136.906667pt;}
.h3_c00482{height:11.733399pt;}
.h4_c00482{height:38.937500pt;}
.h2_c00482{height:108.041667pt;}
.h0_c00482{height:1229.733333pt;}
.h1_c00482{height:1230.000000pt;}
.w2_c00482{width:93.222667pt;}
.w0_c00482{width:780.466667pt;}
.w1_c00482{width:780.666667pt;}
.x0_c00482{left:0.000000pt;}
.x3_c00482{left:30.000000pt;}
.x2_c00482{left:30.933333pt;}
.x1_c00482{left:32.400000pt;}
.x4_c00482{left:33.333333pt;}
.x8_c00482{left:34.266667pt;}
.x6_c00482{left:35.200000pt;}
.x7_c00482{left:36.266667pt;}
.x9_c00482{left:40.000000pt;}
.xa_c00482{left:41.466667pt;}
.x5_c00482{left:81.866667pt;}
.xc_c00482{left:347.401530pt;}
.xb_c00482{left:508.533333pt;}
}





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

.ir_c00483:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00483;src:url('chunks/assets/font_b8e31607819c065282bc9855.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_ea0345790493c1c82a2b8cbe.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00483{vertical-align:-130.200000px;}
.v0_c00483{vertical-align:0.000000px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls0_c00483{letter-spacing:6.120000px;}
.ls1_c00483{letter-spacing:18.252000px;}
.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;}
}
.ws1_c00483{word-spacing:-63.504000px;}
.ws2_c00483{word-spacing:-23.136000px;}
.ws3_c00483{word-spacing:0.000000px;}
.ws0_c00483{word-spacing:68.496000px;}
._2f_c00483{margin-left:-17.544000px;}
._20_c00483{margin-left:-12.768000px;}
._28_c00483{margin-left:-9.660000px;}
._32_c00483{margin-left:-8.160000px;}
._25_c00483{margin-left:-4.704000px;}
._f_c00483{margin-left:-2.976000px;}
._1b_c00483{margin-left:-1.824000px;}
._14_c00483{width:1.056000px;}
._11_c00483{width:2.688000px;}
._5_c00483{width:3.744000px;}
._13_c00483{width:4.896000px;}
._6_c00483{width:5.952000px;}
._8_c00483{width:7.488000px;}
._b_c00483{width:9.408000px;}
._c_c00483{width:10.560000px;}
._0_c00483{width:11.616000px;}
._26_c00483{width:12.672000px;}
._23_c00483{width:14.208000px;}
._d_c00483{width:15.360000px;}
._2_c00483{width:16.512000px;}
._1a_c00483{width:17.568000px;}
._1c_c00483{width:18.816000px;}
._1_c00483{width:20.064000px;}
._16_c00483{width:25.344000px;}
._2b_c00483{width:26.400000px;}
._18_c00483{width:27.744000px;}
._34_c00483{width:29.280000px;}
._22_c00483{width:30.624000px;}
._21_c00483{width:32.256000px;}
._35_c00483{width:33.840000px;}
._1f_c00483{width:35.136000px;}
._e_c00483{width:36.480000px;}
._17_c00483{width:39.264000px;}
._7_c00483{width:40.416000px;}
._19_c00483{width:41.472000px;}
._a_c00483{width:43.680000px;}
._10_c00483{width:45.216000px;}
._12_c00483{width:47.136000px;}
._1e_c00483{width:50.016000px;}
._2d_c00483{width:51.264000px;}
._27_c00483{width:52.320000px;}
._1d_c00483{width:53.664000px;}
._29_c00483{width:55.776000px;}
._2e_c00483{width:58.656000px;}
._30_c00483{width:59.664000px;}
._15_c00483{width:60.672000px;}
._3_c00483{width:62.304000px;}
._31_c00483{width:64.800000px;}
._36_c00483{width:67.488000px;}
._2a_c00483{width:69.120000px;}
._33_c00483{width:70.272000px;}
._4_c00483{width:76.128000px;}
._9_c00483{width:82.848000px;}
._2c_c00483{width:158.784000px;}
._37_c00483{width:248.832000px;}
._24_c00483{width:390.048000px;}
.fc2_c00483{color:transparent;}
.fc1_c00483{color:rgb(128,128,128);}
.fc0_c00483{color:rgb(0,0,0);}
.fs2_c00483{font-size:48.000000px;}
.fs1_c00483{font-size:84.000000px;}
.fs0_c00483{font-size:96.000000px;}
.y0_c00483{bottom:0.000000px;}
.y25_c00483{bottom:3.105000px;}
.y24_c00483{bottom:7.228357px;}
.y23_c00483{bottom:85.380000px;}
.y22_c00483{bottom:118.080000px;}
.y21_c00483{bottom:152.280000px;}
.y20_c00483{bottom:186.630000px;}
.y1f_c00483{bottom:220.380000px;}
.y1e_c00483{bottom:254.580000px;}
.y1d_c00483{bottom:288.330000px;}
.y1c_c00483{bottom:322.380000px;}
.y1b_c00483{bottom:355.830000px;}
.y1a_c00483{bottom:389.430000px;}
.y19_c00483{bottom:423.630000px;}
.y18_c00483{bottom:457.380000px;}
.y17_c00483{bottom:491.430000px;}
.y16_c00483{bottom:525.180000px;}
.y15_c00483{bottom:558.930000px;}
.y14_c00483{bottom:592.380000px;}
.y13_c00483{bottom:625.680000px;}
.y12_c00483{bottom:659.430000px;}
.y11_c00483{bottom:693.330000px;}
.y10_c00483{bottom:726.930000px;}
.yf_c00483{bottom:760.080000px;}
.ye_c00483{bottom:793.830000px;}
.yd_c00483{bottom:826.980000px;}
.yc_c00483{bottom:860.730000px;}
.yb_c00483{bottom:894.030000px;}
.ya_c00483{bottom:927.480000px;}
.y9_c00483{bottom:993.030000px;}
.y8_c00483{bottom:1027.980000px;}
.y7_c00483{bottom:1061.730000px;}
.y6_c00483{bottom:1094.880000px;}
.y5_c00483{bottom:1128.330000px;}
.y4_c00483{bottom:1161.630000px;}
.y3_c00483{bottom:1195.380000px;}
.y2_c00483{bottom:1227.930000px;}
.y1_c00483{bottom:1261.230000px;}
.h3_c00483{height:13.200074px;}
.h4_c00483{height:43.804688px;}
.h2_c00483{height:121.546875px;}
.h1_c00483{height:1351.500000px;}
.h0_c00483{height:1351.650000px;}
.w2_c00483{width:104.875500px;}
.w0_c00483{width:843.450000px;}
.w1_c00483{width:843.750000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:224.400000px;}
.x2_c00483{left:225.900000px;}
.x6_c00483{left:227.100000px;}
.x3_c00483{left:228.150000px;}
.x4_c00483{left:229.200000px;}
.x5_c00483{left:230.850000px;}
.x8_c00483{left:373.539230px;}
.x7_c00483{left:777.300000px;}
@media print{
.v1_c00483{vertical-align:-115.733333pt;}
.v0_c00483{vertical-align:0.000000pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls0_c00483{letter-spacing:5.440000pt;}
.ls1_c00483{letter-spacing:16.224000pt;}
.ws1_c00483{word-spacing:-56.448000pt;}
.ws2_c00483{word-spacing:-20.565333pt;}
.ws3_c00483{word-spacing:0.000000pt;}
.ws0_c00483{word-spacing:60.885333pt;}
._2f_c00483{margin-left:-15.594667pt;}
._20_c00483{margin-left:-11.349333pt;}
._28_c00483{margin-left:-8.586667pt;}
._32_c00483{margin-left:-7.253333pt;}
._25_c00483{margin-left:-4.181333pt;}
._f_c00483{margin-left:-2.645333pt;}
._1b_c00483{margin-left:-1.621333pt;}
._14_c00483{width:0.938667pt;}
._11_c00483{width:2.389333pt;}
._5_c00483{width:3.328000pt;}
._13_c00483{width:4.352000pt;}
._6_c00483{width:5.290667pt;}
._8_c00483{width:6.656000pt;}
._b_c00483{width:8.362667pt;}
._c_c00483{width:9.386667pt;}
._0_c00483{width:10.325333pt;}
._26_c00483{width:11.264000pt;}
._23_c00483{width:12.629333pt;}
._d_c00483{width:13.653333pt;}
._2_c00483{width:14.677333pt;}
._1a_c00483{width:15.616000pt;}
._1c_c00483{width:16.725333pt;}
._1_c00483{width:17.834667pt;}
._16_c00483{width:22.528000pt;}
._2b_c00483{width:23.466667pt;}
._18_c00483{width:24.661333pt;}
._34_c00483{width:26.026667pt;}
._22_c00483{width:27.221333pt;}
._21_c00483{width:28.672000pt;}
._35_c00483{width:30.080000pt;}
._1f_c00483{width:31.232000pt;}
._e_c00483{width:32.426667pt;}
._17_c00483{width:34.901333pt;}
._7_c00483{width:35.925333pt;}
._19_c00483{width:36.864000pt;}
._a_c00483{width:38.826667pt;}
._10_c00483{width:40.192000pt;}
._12_c00483{width:41.898667pt;}
._1e_c00483{width:44.458667pt;}
._2d_c00483{width:45.568000pt;}
._27_c00483{width:46.506667pt;}
._1d_c00483{width:47.701333pt;}
._29_c00483{width:49.578667pt;}
._2e_c00483{width:52.138667pt;}
._30_c00483{width:53.034667pt;}
._15_c00483{width:53.930667pt;}
._3_c00483{width:55.381333pt;}
._31_c00483{width:57.600000pt;}
._36_c00483{width:59.989333pt;}
._2a_c00483{width:61.440000pt;}
._33_c00483{width:62.464000pt;}
._4_c00483{width:67.669333pt;}
._9_c00483{width:73.642667pt;}
._2c_c00483{width:141.141333pt;}
._37_c00483{width:221.184000pt;}
._24_c00483{width:346.709333pt;}
.fs2_c00483{font-size:42.666667pt;}
.fs1_c00483{font-size:74.666667pt;}
.fs0_c00483{font-size:85.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y25_c00483{bottom:2.760000pt;}
.y24_c00483{bottom:6.425206pt;}
.y23_c00483{bottom:75.893333pt;}
.y22_c00483{bottom:104.960000pt;}
.y21_c00483{bottom:135.360000pt;}
.y20_c00483{bottom:165.893333pt;}
.y1f_c00483{bottom:195.893333pt;}
.y1e_c00483{bottom:226.293333pt;}
.y1d_c00483{bottom:256.293333pt;}
.y1c_c00483{bottom:286.560000pt;}
.y1b_c00483{bottom:316.293333pt;}
.y1a_c00483{bottom:346.160000pt;}
.y19_c00483{bottom:376.560000pt;}
.y18_c00483{bottom:406.560000pt;}
.y17_c00483{bottom:436.826667pt;}
.y16_c00483{bottom:466.826667pt;}
.y15_c00483{bottom:496.826667pt;}
.y14_c00483{bottom:526.560000pt;}
.y13_c00483{bottom:556.160000pt;}
.y12_c00483{bottom:586.160000pt;}
.y11_c00483{bottom:616.293333pt;}
.y10_c00483{bottom:646.160000pt;}
.yf_c00483{bottom:675.626667pt;}
.ye_c00483{bottom:705.626667pt;}
.yd_c00483{bottom:735.093333pt;}
.yc_c00483{bottom:765.093333pt;}
.yb_c00483{bottom:794.693333pt;}
.ya_c00483{bottom:824.426667pt;}
.y9_c00483{bottom:882.693333pt;}
.y8_c00483{bottom:913.760000pt;}
.y7_c00483{bottom:943.760000pt;}
.y6_c00483{bottom:973.226667pt;}
.y5_c00483{bottom:1002.960000pt;}
.y4_c00483{bottom:1032.560000pt;}
.y3_c00483{bottom:1062.560000pt;}
.y2_c00483{bottom:1091.493333pt;}
.y1_c00483{bottom:1121.093333pt;}
.h3_c00483{height:11.733399pt;}
.h4_c00483{height:38.937500pt;}
.h2_c00483{height:108.041667pt;}
.h1_c00483{height:1201.333333pt;}
.h0_c00483{height:1201.466667pt;}
.w2_c00483{width:93.222667pt;}
.w0_c00483{width:749.733333pt;}
.w1_c00483{width:750.000000pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:199.466667pt;}
.x2_c00483{left:200.800000pt;}
.x6_c00483{left:201.866667pt;}
.x3_c00483{left:202.800000pt;}
.x4_c00483{left:203.733333pt;}
.x5_c00483{left:205.200000pt;}
.x8_c00483{left:332.034871pt;}
.x7_c00483{left:690.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e8cd08d465bbf2d29e8214d.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_10c2418f322b14c96508c4db.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00484{word-spacing:-63.504000px;}
.ws2_c00484{word-spacing:-42.084000px;}
.ws0_c00484{word-spacing:-34.440000px;}
.ws3_c00484{word-spacing:0.000000px;}
._31_c00484{margin-left:-26.688000px;}
._30_c00484{margin-left:-19.968000px;}
._2a_c00484{margin-left:-16.032000px;}
._26_c00484{margin-left:-10.080000px;}
._33_c00484{margin-left:-9.024000px;}
._32_c00484{margin-left:-7.968000px;}
._a_c00484{margin-left:-6.912000px;}
._b_c00484{margin-left:-5.472000px;}
._c_c00484{margin-left:-3.744000px;}
._d_c00484{margin-left:-2.304000px;}
._11_c00484{margin-left:-1.056000px;}
._f_c00484{width:1.440000px;}
._2_c00484{width:2.688000px;}
._4_c00484{width:4.416000px;}
._6_c00484{width:5.568000px;}
._8_c00484{width:7.488000px;}
._1e_c00484{width:9.120000px;}
._0_c00484{width:10.272000px;}
._27_c00484{width:11.328000px;}
._13_c00484{width:12.480000px;}
._22_c00484{width:14.496000px;}
._25_c00484{width:15.552000px;}
._20_c00484{width:16.896000px;}
._1_c00484{width:19.200000px;}
._9_c00484{width:20.832000px;}
._10_c00484{width:24.672000px;}
._15_c00484{width:25.824000px;}
._e_c00484{width:27.648000px;}
._18_c00484{width:28.704000px;}
._1b_c00484{width:30.528000px;}
._7_c00484{width:32.160000px;}
._2f_c00484{width:33.171000px;}
._3_c00484{width:34.656000px;}
._16_c00484{width:35.808000px;}
._5_c00484{width:36.864000px;}
._29_c00484{width:37.920000px;}
._19_c00484{width:39.456000px;}
._17_c00484{width:41.664000px;}
._12_c00484{width:43.776000px;}
._23_c00484{width:44.928000px;}
._1c_c00484{width:45.984000px;}
._14_c00484{width:47.232000px;}
._1f_c00484{width:49.152000px;}
._1d_c00484{width:50.592000px;}
._21_c00484{width:51.744000px;}
._1a_c00484{width:53.760000px;}
._2e_c00484{width:55.200000px;}
._24_c00484{width:61.728000px;}
._2b_c00484{width:68.736000px;}
._2d_c00484{width:73.128000px;}
._2c_c00484{width:74.880000px;}
._28_c00484{width:179.712000px;}
._34_c00484{width:640.608000px;}
.fc2_c00484{color:transparent;}
.fc1_c00484{color:rgb(128,128,128);}
.fc0_c00484{color:rgb(0,0,0);}
.fs3_c00484{font-size:48.000000px;}
.fs1_c00484{font-size:84.000000px;}
.fs2_c00484{font-size:87.000000px;}
.fs0_c00484{font-size:96.000000px;}
.y0_c00484{bottom:0.000000px;}
.y26_c00484{bottom:3.105000px;}
.y25_c00484{bottom:7.228369px;}
.y24_c00484{bottom:108.570000px;}
.y23_c00484{bottom:149.220000px;}
.y22_c00484{bottom:182.820000px;}
.y21_c00484{bottom:218.070000px;}
.y20_c00484{bottom:251.820000px;}
.y1f_c00484{bottom:285.570000px;}
.y1e_c00484{bottom:319.320000px;}
.y1d_c00484{bottom:353.070000px;}
.y1c_c00484{bottom:387.120000px;}
.y1b_c00484{bottom:420.570000px;}
.y1a_c00484{bottom:453.870000px;}
.y19_c00484{bottom:487.620000px;}
.y18_c00484{bottom:521.820000px;}
.y17_c00484{bottom:555.120000px;}
.y16_c00484{bottom:589.170000px;}
.y15_c00484{bottom:622.620000px;}
.y14_c00484{bottom:656.370000px;}
.y13_c00484{bottom:690.120000px;}
.y12_c00484{bottom:724.170000px;}
.y11_c00484{bottom:757.920000px;}
.y10_c00484{bottom:792.120000px;}
.yf_c00484{bottom:824.820000px;}
.ye_c00484{bottom:857.220000px;}
.yd_c00484{bottom:890.970000px;}
.yc_c00484{bottom:924.720000px;}
.yb_c00484{bottom:957.420000px;}
.ya_c00484{bottom:991.620000px;}
.y9_c00484{bottom:1025.220000px;}
.y8_c00484{bottom:1058.370000px;}
.y7_c00484{bottom:1091.370000px;}
.y6_c00484{bottom:1123.920000px;}
.y5_c00484{bottom:1157.220000px;}
.y4_c00484{bottom:1190.370000px;}
.y3_c00484{bottom:1223.370000px;}
.y2_c00484{bottom:1256.070000px;}
.y1_c00484{bottom:1289.970000px;}
.h3_c00484{height:13.200073px;}
.h4_c00484{height:43.804688px;}
.h2_c00484{height:121.546875px;}
.h0_c00484{height:1383.450000px;}
.h1_c00484{height:1383.750000px;}
.w2_c00484{width:104.875500px;}
.w0_c00484{width:878.025000px;}
.w1_c00484{width:878.250000px;}
.x0_c00484{left:0.000000px;}
.x6_c00484{left:12.150000px;}
.x5_c00484{left:13.200000px;}
.x4_c00484{left:14.850000px;}
.x3_c00484{left:15.900000px;}
.x2_c00484{left:16.950000px;}
.x1_c00484{left:18.150000px;}
.x8_c00484{left:19.200000px;}
.x9_c00484{left:21.900000px;}
.x7_c00484{left:62.400000px;}
.xa_c00484{left:286.200000px;}
.xb_c00484{left:390.826721px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws1_c00484{word-spacing:-56.448000pt;}
.ws2_c00484{word-spacing:-37.408000pt;}
.ws0_c00484{word-spacing:-30.613333pt;}
.ws3_c00484{word-spacing:0.000000pt;}
._31_c00484{margin-left:-23.722667pt;}
._30_c00484{margin-left:-17.749333pt;}
._2a_c00484{margin-left:-14.250667pt;}
._26_c00484{margin-left:-8.960000pt;}
._33_c00484{margin-left:-8.021333pt;}
._32_c00484{margin-left:-7.082667pt;}
._a_c00484{margin-left:-6.144000pt;}
._b_c00484{margin-left:-4.864000pt;}
._c_c00484{margin-left:-3.328000pt;}
._d_c00484{margin-left:-2.048000pt;}
._11_c00484{margin-left:-0.938667pt;}
._f_c00484{width:1.280000pt;}
._2_c00484{width:2.389333pt;}
._4_c00484{width:3.925333pt;}
._6_c00484{width:4.949333pt;}
._8_c00484{width:6.656000pt;}
._1e_c00484{width:8.106667pt;}
._0_c00484{width:9.130667pt;}
._27_c00484{width:10.069333pt;}
._13_c00484{width:11.093333pt;}
._22_c00484{width:12.885333pt;}
._25_c00484{width:13.824000pt;}
._20_c00484{width:15.018667pt;}
._1_c00484{width:17.066667pt;}
._9_c00484{width:18.517333pt;}
._10_c00484{width:21.930667pt;}
._15_c00484{width:22.954667pt;}
._e_c00484{width:24.576000pt;}
._18_c00484{width:25.514667pt;}
._1b_c00484{width:27.136000pt;}
._7_c00484{width:28.586667pt;}
._2f_c00484{width:29.485333pt;}
._3_c00484{width:30.805333pt;}
._16_c00484{width:31.829333pt;}
._5_c00484{width:32.768000pt;}
._29_c00484{width:33.706667pt;}
._19_c00484{width:35.072000pt;}
._17_c00484{width:37.034667pt;}
._12_c00484{width:38.912000pt;}
._23_c00484{width:39.936000pt;}
._1c_c00484{width:40.874667pt;}
._14_c00484{width:41.984000pt;}
._1f_c00484{width:43.690667pt;}
._1d_c00484{width:44.970667pt;}
._21_c00484{width:45.994667pt;}
._1a_c00484{width:47.786667pt;}
._2e_c00484{width:49.066667pt;}
._24_c00484{width:54.869333pt;}
._2b_c00484{width:61.098667pt;}
._2d_c00484{width:65.002667pt;}
._2c_c00484{width:66.560000pt;}
._28_c00484{width:159.744000pt;}
._34_c00484{width:569.429333pt;}
.fs3_c00484{font-size:42.666667pt;}
.fs1_c00484{font-size:74.666667pt;}
.fs2_c00484{font-size:77.333333pt;}
.fs0_c00484{font-size:85.333333pt;}
.y0_c00484{bottom:0.000000pt;}
.y26_c00484{bottom:2.760000pt;}
.y25_c00484{bottom:6.425217pt;}
.y24_c00484{bottom:96.506667pt;}
.y23_c00484{bottom:132.640000pt;}
.y22_c00484{bottom:162.506667pt;}
.y21_c00484{bottom:193.840000pt;}
.y20_c00484{bottom:223.840000pt;}
.y1f_c00484{bottom:253.840000pt;}
.y1e_c00484{bottom:283.840000pt;}
.y1d_c00484{bottom:313.840000pt;}
.y1c_c00484{bottom:344.106667pt;}
.y1b_c00484{bottom:373.840000pt;}
.y1a_c00484{bottom:403.440000pt;}
.y19_c00484{bottom:433.440000pt;}
.y18_c00484{bottom:463.840000pt;}
.y17_c00484{bottom:493.440000pt;}
.y16_c00484{bottom:523.706667pt;}
.y15_c00484{bottom:553.440000pt;}
.y14_c00484{bottom:583.440000pt;}
.y13_c00484{bottom:613.440000pt;}
.y12_c00484{bottom:643.706667pt;}
.y11_c00484{bottom:673.706667pt;}
.y10_c00484{bottom:704.106667pt;}
.yf_c00484{bottom:733.173333pt;}
.ye_c00484{bottom:761.973333pt;}
.yd_c00484{bottom:791.973333pt;}
.yc_c00484{bottom:821.973333pt;}
.yb_c00484{bottom:851.040000pt;}
.ya_c00484{bottom:881.440000pt;}
.y9_c00484{bottom:911.306667pt;}
.y8_c00484{bottom:940.773333pt;}
.y7_c00484{bottom:970.106667pt;}
.y6_c00484{bottom:999.040000pt;}
.y5_c00484{bottom:1028.640000pt;}
.y4_c00484{bottom:1058.106667pt;}
.y3_c00484{bottom:1087.440000pt;}
.y2_c00484{bottom:1116.506667pt;}
.y1_c00484{bottom:1146.640000pt;}
.h3_c00484{height:11.733399pt;}
.h4_c00484{height:38.937500pt;}
.h2_c00484{height:108.041667pt;}
.h0_c00484{height:1229.733333pt;}
.h1_c00484{height:1230.000000pt;}
.w2_c00484{width:93.222667pt;}
.w0_c00484{width:780.466667pt;}
.w1_c00484{width:780.666667pt;}
.x0_c00484{left:0.000000pt;}
.x6_c00484{left:10.800000pt;}
.x5_c00484{left:11.733333pt;}
.x4_c00484{left:13.200000pt;}
.x3_c00484{left:14.133333pt;}
.x2_c00484{left:15.066667pt;}
.x1_c00484{left:16.133333pt;}
.x8_c00484{left:17.066667pt;}
.x9_c00484{left:19.466667pt;}
.x7_c00484{left:55.466667pt;}
.xa_c00484{left:254.400000pt;}
.xb_c00484{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e585f446671b8b31727c02d5.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_60bebb10ebfbe5b3766ee2ff.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_1e8d74d7c9fca7c6f964fde1.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00485;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls3_c00485{letter-spacing:0.000000px;}
.ls5_c00485{letter-spacing:3.000000px;}
.ls4_c00485{letter-spacing:6.000000px;}
.ls2_c00485{letter-spacing:36.264000px;}
.ls1_c00485{letter-spacing:341.664000px;}
.ls0_c00485{letter-spacing:521.064000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:-20.244000px;}
.ws3_c00485{word-spacing:0.000000px;}
.ws1_c00485{word-spacing:4.824000px;}
.ws2_c00485{word-spacing:11.088000px;}
._40_c00485{margin-left:-55.500000px;}
._38_c00485{margin-left:-31.812000px;}
._33_c00485{margin-left:-29.568000px;}
._10_c00485{margin-left:-27.936000px;}
._44_c00485{margin-left:-26.418000px;}
._47_c00485{margin-left:-20.034000px;}
._1a_c00485{margin-left:-16.416000px;}
._36_c00485{margin-left:-15.072000px;}
._2e_c00485{margin-left:-13.728000px;}
._19_c00485{margin-left:-11.328000px;}
._13_c00485{margin-left:-9.024000px;}
._14_c00485{margin-left:-7.584000px;}
._9_c00485{margin-left:-5.952000px;}
._e_c00485{margin-left:-4.608000px;}
._1_c00485{margin-left:-2.688000px;}
._21_c00485{margin-left:-1.440000px;}
._4_c00485{width:1.536000px;}
._0_c00485{width:2.592000px;}
._2_c00485{width:3.744000px;}
._3_c00485{width:4.992000px;}
._5_c00485{width:6.048000px;}
._7_c00485{width:7.584000px;}
._d_c00485{width:8.640000px;}
._6_c00485{width:9.696000px;}
._22_c00485{width:11.520000px;}
._12_c00485{width:12.672000px;}
._1e_c00485{width:13.728000px;}
._2c_c00485{width:14.976000px;}
._8_c00485{width:17.280000px;}
._2f_c00485{width:19.200000px;}
._1c_c00485{width:21.408000px;}
._45_c00485{width:24.039000px;}
._3b_c00485{width:25.248000px;}
._20_c00485{width:26.400000px;}
._2a_c00485{width:27.840000px;}
._3d_c00485{width:29.112000px;}
._11_c00485{width:30.528000px;}
._15_c00485{width:31.776000px;}
._42_c00485{width:33.129000px;}
._b_c00485{width:34.560000px;}
._2b_c00485{width:35.616000px;}
._2d_c00485{width:36.864000px;}
._1f_c00485{width:39.264000px;}
._23_c00485{width:40.512000px;}
._34_c00485{width:41.664000px;}
._1b_c00485{width:42.912000px;}
._27_c00485{width:44.640000px;}
._1d_c00485{width:46.176000px;}
._17_c00485{width:47.904000px;}
._26_c00485{width:49.824000px;}
._46_c00485{width:51.303000px;}
._24_c00485{width:52.416000px;}
._c_c00485{width:53.568000px;}
._25_c00485{width:54.624000px;}
._18_c00485{width:56.544000px;}
._32_c00485{width:58.752000px;}
._31_c00485{width:59.904000px;}
._16_c00485{width:62.496000px;}
._30_c00485{width:64.896000px;}
._29_c00485{width:66.816000px;}
._a_c00485{width:68.736000px;}
._f_c00485{width:72.864000px;}
._28_c00485{width:81.504000px;}
._3c_c00485{width:89.376000px;}
._3a_c00485{width:111.936000px;}
._39_c00485{width:146.688000px;}
._43_c00485{width:189.543000px;}
._37_c00485{width:432.552000px;}
._3f_c00485{width:488.688000px;}
._35_c00485{width:536.544000px;}
._41_c00485{width:553.554000px;}
._48_c00485{width:876.351000px;}
._3e_c00485{width:1401.144000px;}
.fc2_c00485{color:transparent;}
.fc1_c00485{color:rgb(128,128,128);}
.fc0_c00485{color:rgb(0,0,0);}
.fs6_c00485{font-size:48.000000px;}
.fs2_c00485{font-size:60.000000px;}
.fs1_c00485{font-size:84.000000px;}
.fs5_c00485{font-size:87.000000px;}
.fs4_c00485{font-size:93.000000px;}
.fs0_c00485{font-size:96.000000px;}
.fs3_c00485{font-size:102.000000px;}
.y0_c00485{bottom:0.000000px;}
.y26_c00485{bottom:3.105000px;}
.y25_c00485{bottom:7.228357px;}
.y24_c00485{bottom:94.530000px;}
.y23_c00485{bottom:127.230000px;}
.y22_c00485{bottom:161.730000px;}
.y21_c00485{bottom:195.030000px;}
.y20_c00485{bottom:228.780000px;}
.y1f_c00485{bottom:262.980000px;}
.y1e_c00485{bottom:298.080000px;}
.y1d_c00485{bottom:330.780000px;}
.y1c_c00485{bottom:362.130000px;}
.y1b_c00485{bottom:396.180000px;}
.y1a_c00485{bottom:426.030000px;}
.y19_c00485{bottom:469.530000px;}
.y18_c00485{bottom:501.180000px;}
.y17_c00485{bottom:534.330000px;}
.y16_c00485{bottom:567.630000px;}
.y15_c00485{bottom:601.080000px;}
.y14_c00485{bottom:634.530000px;}
.y13_c00485{bottom:667.980000px;}
.y12_c00485{bottom:701.430000px;}
.y11_c00485{bottom:735.030000px;}
.y10_c00485{bottom:768.930000px;}
.yf_c00485{bottom:802.530000px;}
.ye_c00485{bottom:835.980000px;}
.yd_c00485{bottom:870.030000px;}
.yc_c00485{bottom:903.180000px;}
.yb_c00485{bottom:936.630000px;}
.ya_c00485{bottom:969.330000px;}
.y9_c00485{bottom:1002.480000px;}
.y8_c00485{bottom:1035.780000px;}
.y7_c00485{bottom:1069.230000px;}
.y6_c00485{bottom:1102.680000px;}
.y5_c00485{bottom:1136.130000px;}
.y4_c00485{bottom:1169.730000px;}
.y3_c00485{bottom:1203.180000px;}
.y2_c00485{bottom:1236.330000px;}
.y1_c00485{bottom:1269.630000px;}
.h6_c00485{height:13.200074px;}
.h7_c00485{height:43.804688px;}
.h5_c00485{height:110.151855px;}
.h4_c00485{height:117.748535px;}
.h2_c00485{height:121.546875px;}
.h3_c00485{height:129.143555px;}
.h0_c00485{height:1382.700000px;}
.h1_c00485{height:1383.000000px;}
.w2_c00485{width:104.875500px;}
.w0_c00485{width:863.175000px;}
.w1_c00485{width:863.250000px;}
.x0_c00485{left:0.000000px;}
.xa_c00485{left:34.800000px;}
.x6_c00485{left:35.850000px;}
.x8_c00485{left:36.900000px;}
.x9_c00485{left:63.900000px;}
.x7_c00485{left:77.400000px;}
.x2_c00485{left:255.750000px;}
.x1_c00485{left:256.800000px;}
.x3_c00485{left:257.850000px;}
.x4_c00485{left:258.900000px;}
.x5_c00485{left:259.950000px;}
.xc_c00485{left:383.401749px;}
.xb_c00485{left:501.600000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls3_c00485{letter-spacing:0.000000pt;}
.ls5_c00485{letter-spacing:2.666667pt;}
.ls4_c00485{letter-spacing:5.333333pt;}
.ls2_c00485{letter-spacing:32.234667pt;}
.ls1_c00485{letter-spacing:303.701333pt;}
.ls0_c00485{letter-spacing:463.168000pt;}
.ws0_c00485{word-spacing:-17.994667pt;}
.ws3_c00485{word-spacing:0.000000pt;}
.ws1_c00485{word-spacing:4.288000pt;}
.ws2_c00485{word-spacing:9.856000pt;}
._40_c00485{margin-left:-49.333333pt;}
._38_c00485{margin-left:-28.277333pt;}
._33_c00485{margin-left:-26.282667pt;}
._10_c00485{margin-left:-24.832000pt;}
._44_c00485{margin-left:-23.482667pt;}
._47_c00485{margin-left:-17.808000pt;}
._1a_c00485{margin-left:-14.592000pt;}
._36_c00485{margin-left:-13.397333pt;}
._2e_c00485{margin-left:-12.202667pt;}
._19_c00485{margin-left:-10.069333pt;}
._13_c00485{margin-left:-8.021333pt;}
._14_c00485{margin-left:-6.741333pt;}
._9_c00485{margin-left:-5.290667pt;}
._e_c00485{margin-left:-4.096000pt;}
._1_c00485{margin-left:-2.389333pt;}
._21_c00485{margin-left:-1.280000pt;}
._4_c00485{width:1.365333pt;}
._0_c00485{width:2.304000pt;}
._2_c00485{width:3.328000pt;}
._3_c00485{width:4.437333pt;}
._5_c00485{width:5.376000pt;}
._7_c00485{width:6.741333pt;}
._d_c00485{width:7.680000pt;}
._6_c00485{width:8.618667pt;}
._22_c00485{width:10.240000pt;}
._12_c00485{width:11.264000pt;}
._1e_c00485{width:12.202667pt;}
._2c_c00485{width:13.312000pt;}
._8_c00485{width:15.360000pt;}
._2f_c00485{width:17.066667pt;}
._1c_c00485{width:19.029333pt;}
._45_c00485{width:21.368000pt;}
._3b_c00485{width:22.442667pt;}
._20_c00485{width:23.466667pt;}
._2a_c00485{width:24.746667pt;}
._3d_c00485{width:25.877333pt;}
._11_c00485{width:27.136000pt;}
._15_c00485{width:28.245333pt;}
._42_c00485{width:29.448000pt;}
._b_c00485{width:30.720000pt;}
._2b_c00485{width:31.658667pt;}
._2d_c00485{width:32.768000pt;}
._1f_c00485{width:34.901333pt;}
._23_c00485{width:36.010667pt;}
._34_c00485{width:37.034667pt;}
._1b_c00485{width:38.144000pt;}
._27_c00485{width:39.680000pt;}
._1d_c00485{width:41.045333pt;}
._17_c00485{width:42.581333pt;}
._26_c00485{width:44.288000pt;}
._46_c00485{width:45.602667pt;}
._24_c00485{width:46.592000pt;}
._c_c00485{width:47.616000pt;}
._25_c00485{width:48.554667pt;}
._18_c00485{width:50.261333pt;}
._32_c00485{width:52.224000pt;}
._31_c00485{width:53.248000pt;}
._16_c00485{width:55.552000pt;}
._30_c00485{width:57.685333pt;}
._29_c00485{width:59.392000pt;}
._a_c00485{width:61.098667pt;}
._f_c00485{width:64.768000pt;}
._28_c00485{width:72.448000pt;}
._3c_c00485{width:79.445333pt;}
._3a_c00485{width:99.498667pt;}
._39_c00485{width:130.389333pt;}
._43_c00485{width:168.482667pt;}
._37_c00485{width:384.490667pt;}
._3f_c00485{width:434.389333pt;}
._35_c00485{width:476.928000pt;}
._41_c00485{width:492.048000pt;}
._48_c00485{width:778.978667pt;}
._3e_c00485{width:1245.461333pt;}
.fs6_c00485{font-size:42.666667pt;}
.fs2_c00485{font-size:53.333333pt;}
.fs1_c00485{font-size:74.666667pt;}
.fs5_c00485{font-size:77.333333pt;}
.fs4_c00485{font-size:82.666667pt;}
.fs0_c00485{font-size:85.333333pt;}
.fs3_c00485{font-size:90.666667pt;}
.y0_c00485{bottom:0.000000pt;}
.y26_c00485{bottom:2.760000pt;}
.y25_c00485{bottom:6.425206pt;}
.y24_c00485{bottom:84.026667pt;}
.y23_c00485{bottom:113.093333pt;}
.y22_c00485{bottom:143.760000pt;}
.y21_c00485{bottom:173.360000pt;}
.y20_c00485{bottom:203.360000pt;}
.y1f_c00485{bottom:233.760000pt;}
.y1e_c00485{bottom:264.960000pt;}
.y1d_c00485{bottom:294.026667pt;}
.y1c_c00485{bottom:321.893333pt;}
.y1b_c00485{bottom:352.160000pt;}
.y1a_c00485{bottom:378.693333pt;}
.y19_c00485{bottom:417.360000pt;}
.y18_c00485{bottom:445.493333pt;}
.y17_c00485{bottom:474.960000pt;}
.y16_c00485{bottom:504.560000pt;}
.y15_c00485{bottom:534.293333pt;}
.y14_c00485{bottom:564.026667pt;}
.y13_c00485{bottom:593.760000pt;}
.y12_c00485{bottom:623.493333pt;}
.y11_c00485{bottom:653.360000pt;}
.y10_c00485{bottom:683.493333pt;}
.yf_c00485{bottom:713.360000pt;}
.ye_c00485{bottom:743.093333pt;}
.yd_c00485{bottom:773.360000pt;}
.yc_c00485{bottom:802.826667pt;}
.yb_c00485{bottom:832.560000pt;}
.ya_c00485{bottom:861.626667pt;}
.y9_c00485{bottom:891.093333pt;}
.y8_c00485{bottom:920.693333pt;}
.y7_c00485{bottom:950.426667pt;}
.y6_c00485{bottom:980.160000pt;}
.y5_c00485{bottom:1009.893333pt;}
.y4_c00485{bottom:1039.760000pt;}
.y3_c00485{bottom:1069.493333pt;}
.y2_c00485{bottom:1098.960000pt;}
.y1_c00485{bottom:1128.560000pt;}
.h6_c00485{height:11.733399pt;}
.h7_c00485{height:38.937500pt;}
.h5_c00485{height:97.912760pt;}
.h4_c00485{height:104.665365pt;}
.h2_c00485{height:108.041667pt;}
.h3_c00485{height:114.794271pt;}
.h0_c00485{height:1229.066667pt;}
.h1_c00485{height:1229.333333pt;}
.w2_c00485{width:93.222667pt;}
.w0_c00485{width:767.266667pt;}
.w1_c00485{width:767.333333pt;}
.x0_c00485{left:0.000000pt;}
.xa_c00485{left:30.933333pt;}
.x6_c00485{left:31.866667pt;}
.x8_c00485{left:32.800000pt;}
.x9_c00485{left:56.800000pt;}
.x7_c00485{left:68.800000pt;}
.x2_c00485{left:227.333333pt;}
.x1_c00485{left:228.266667pt;}
.x3_c00485{left:229.200000pt;}
.x4_c00485{left:230.133333pt;}
.x5_c00485{left:231.066667pt;}
.xc_c00485{left:340.801554pt;}
.xb_c00485{left:445.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0fbe37aae8dc5cd2c3d7adfa.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_38f7d9ac00749d0bf330841e.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls2_c00486{letter-spacing:3.000000px;}
.ls0_c00486{letter-spacing:15.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-54.000000px;}
.ws1_c00486{word-spacing:-23.136000px;}
.ws2_c00486{word-spacing:0.000000px;}
._2_c00486{margin-left:-39.552000px;}
._46_c00486{margin-left:-28.704000px;}
._2d_c00486{margin-left:-24.768000px;}
._22_c00486{margin-left:-23.328000px;}
._24_c00486{margin-left:-21.024000px;}
._0_c00486{margin-left:-19.923000px;}
._3b_c00486{margin-left:-18.768000px;}
._36_c00486{margin-left:-17.226000px;}
._23_c00486{margin-left:-15.648000px;}
._33_c00486{margin-left:-14.058000px;}
._28_c00486{margin-left:-12.630000px;}
._2e_c00486{margin-left:-11.040000px;}
._35_c00486{margin-left:-9.312000px;}
._20_c00486{margin-left:-8.124000px;}
._2f_c00486{margin-left:-6.990000px;}
._b_c00486{margin-left:-5.184000px;}
._11_c00486{margin-left:-3.228000px;}
._a_c00486{margin-left:-1.440000px;}
._6_c00486{width:1.824000px;}
._7_c00486{width:3.552000px;}
._c_c00486{width:5.088000px;}
._5_c00486{width:6.834000px;}
._4_c00486{width:8.262000px;}
._e_c00486{width:9.504000px;}
._9_c00486{width:11.328000px;}
._10_c00486{width:12.810000px;}
._3_c00486{width:14.688000px;}
._14_c00486{width:15.744000px;}
._13_c00486{width:17.280000px;}
._18_c00486{width:18.780000px;}
._41_c00486{width:20.412000px;}
._1a_c00486{width:22.044000px;}
._37_c00486{width:25.098000px;}
._8_c00486{width:26.112000px;}
._25_c00486{width:27.264000px;}
._17_c00486{width:28.416000px;}
._21_c00486{width:29.490000px;}
._1d_c00486{width:31.452000px;}
._1c_c00486{width:32.628000px;}
._19_c00486{width:33.828000px;}
._2c_c00486{width:34.884000px;}
._29_c00486{width:35.982000px;}
._12_c00486{width:37.902000px;}
._1f_c00486{width:39.072000px;}
._1e_c00486{width:40.128000px;}
._30_c00486{width:41.550000px;}
._2a_c00486{width:42.636000px;}
._2b_c00486{width:44.448000px;}
._26_c00486{width:45.894000px;}
._3c_c00486{width:47.364000px;}
._16_c00486{width:48.648000px;}
._f_c00486{width:49.878000px;}
._1b_c00486{width:52.128000px;}
._27_c00486{width:53.208000px;}
._3f_c00486{width:54.552000px;}
._47_c00486{width:56.274000px;}
._3a_c00486{width:58.308000px;}
._31_c00486{width:59.904000px;}
._d_c00486{width:62.400000px;}
._42_c00486{width:63.876000px;}
._44_c00486{width:69.042000px;}
._3d_c00486{width:70.368000px;}
._43_c00486{width:71.985000px;}
._40_c00486{width:74.976000px;}
._3e_c00486{width:77.022000px;}
._1_c00486{width:101.466000px;}
._15_c00486{width:103.932000px;}
._34_c00486{width:131.790000px;}
._38_c00486{width:137.814000px;}
._39_c00486{width:180.924000px;}
._45_c00486{width:302.112000px;}
._32_c00486{width:711.936000px;}
.fc2_c00486{color:transparent;}
.fc1_c00486{color:rgb(128,128,128);}
.fc0_c00486{color:rgb(0,0,0);}
.fs3_c00486{font-size:48.000000px;}
.fs0_c00486{font-size:87.000000px;}
.fs1_c00486{font-size:96.000000px;}
.fs2_c00486{font-size:102.000000px;}
.y0_c00486{bottom:0.000000px;}
.y27_c00486{bottom:3.105000px;}
.y26_c00486{bottom:7.228369px;}
.y25_c00486{bottom:107.970000px;}
.y24_c00486{bottom:141.720000px;}
.y23_c00486{bottom:176.520000px;}
.y22_c00486{bottom:210.270000px;}
.y21_c00486{bottom:244.620000px;}
.y20_c00486{bottom:278.370000px;}
.y1f_c00486{bottom:312.120000px;}
.y1e_c00486{bottom:346.170000px;}
.y1d_c00486{bottom:379.020000px;}
.y1c_c00486{bottom:413.370000px;}
.y1b_c00486{bottom:447.120000px;}
.y1a_c00486{bottom:480.870000px;}
.y19_c00486{bottom:515.070000px;}
.y18_c00486{bottom:548.670000px;}
.y17_c00486{bottom:581.820000px;}
.y16_c00486{bottom:616.620000px;}
.y15_c00486{bottom:649.320000px;}
.y14_c00486{bottom:683.370000px;}
.y13_c00486{bottom:716.820000px;}
.y12_c00486{bottom:749.820000px;}
.y11_c00486{bottom:785.970000px;}
.y10_c00486{bottom:818.070000px;}
.yf_c00486{bottom:849.720000px;}
.ye_c00486{bottom:883.620000px;}
.yd_c00486{bottom:916.920000px;}
.yc_c00486{bottom:950.670000px;}
.yb_c00486{bottom:984.120000px;}
.ya_c00486{bottom:1017.570000px;}
.y9_c00486{bottom:1050.870000px;}
.y8_c00486{bottom:1083.720000px;}
.y7_c00486{bottom:1116.120000px;}
.y6_c00486{bottom:1148.070000px;}
.y5_c00486{bottom:1181.970000px;}
.y4_c00486{bottom:1214.670000px;}
.y3_c00486{bottom:1248.720000px;}
.y2_c00486{bottom:1281.870000px;}
.y1_c00486{bottom:1304.820000px;}
.h3_c00486{height:13.200073px;}
.h4_c00486{height:43.804688px;}
.h2_c00486{height:121.546875px;}
.h0_c00486{height:1383.450000px;}
.h1_c00486{height:1383.750000px;}
.w2_c00486{width:104.875500px;}
.w0_c00486{width:878.025000px;}
.w1_c00486{width:878.250000px;}
.x0_c00486{left:0.000000px;}
.x7_c00486{left:33.300000px;}
.x6_c00486{left:34.350000px;}
.x5_c00486{left:35.400000px;}
.x8_c00486{left:36.450000px;}
.x4_c00486{left:37.500000px;}
.x3_c00486{left:38.700000px;}
.x2_c00486{left:40.200000px;}
.xa_c00486{left:390.826721px;}
.x1_c00486{left:472.200000px;}
.x9_c00486{left:549.450000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls2_c00486{letter-spacing:2.666667pt;}
.ls0_c00486{letter-spacing:13.333333pt;}
.ws0_c00486{word-spacing:-48.000000pt;}
.ws1_c00486{word-spacing:-20.565333pt;}
.ws2_c00486{word-spacing:0.000000pt;}
._2_c00486{margin-left:-35.157333pt;}
._46_c00486{margin-left:-25.514667pt;}
._2d_c00486{margin-left:-22.016000pt;}
._22_c00486{margin-left:-20.736000pt;}
._24_c00486{margin-left:-18.688000pt;}
._0_c00486{margin-left:-17.709333pt;}
._3b_c00486{margin-left:-16.682667pt;}
._36_c00486{margin-left:-15.312000pt;}
._23_c00486{margin-left:-13.909333pt;}
._33_c00486{margin-left:-12.496000pt;}
._28_c00486{margin-left:-11.226667pt;}
._2e_c00486{margin-left:-9.813333pt;}
._35_c00486{margin-left:-8.277333pt;}
._20_c00486{margin-left:-7.221333pt;}
._2f_c00486{margin-left:-6.213333pt;}
._b_c00486{margin-left:-4.608000pt;}
._11_c00486{margin-left:-2.869333pt;}
._a_c00486{margin-left:-1.280000pt;}
._6_c00486{width:1.621333pt;}
._7_c00486{width:3.157333pt;}
._c_c00486{width:4.522667pt;}
._5_c00486{width:6.074667pt;}
._4_c00486{width:7.344000pt;}
._e_c00486{width:8.448000pt;}
._9_c00486{width:10.069333pt;}
._10_c00486{width:11.386667pt;}
._3_c00486{width:13.056000pt;}
._14_c00486{width:13.994667pt;}
._13_c00486{width:15.360000pt;}
._18_c00486{width:16.693333pt;}
._41_c00486{width:18.144000pt;}
._1a_c00486{width:19.594667pt;}
._37_c00486{width:22.309333pt;}
._8_c00486{width:23.210667pt;}
._25_c00486{width:24.234667pt;}
._17_c00486{width:25.258667pt;}
._21_c00486{width:26.213333pt;}
._1d_c00486{width:27.957333pt;}
._1c_c00486{width:29.002667pt;}
._19_c00486{width:30.069333pt;}
._2c_c00486{width:31.008000pt;}
._29_c00486{width:31.984000pt;}
._12_c00486{width:33.690667pt;}
._1f_c00486{width:34.730667pt;}
._1e_c00486{width:35.669333pt;}
._30_c00486{width:36.933333pt;}
._2a_c00486{width:37.898667pt;}
._2b_c00486{width:39.509333pt;}
._26_c00486{width:40.794667pt;}
._3c_c00486{width:42.101333pt;}
._16_c00486{width:43.242667pt;}
._f_c00486{width:44.336000pt;}
._1b_c00486{width:46.336000pt;}
._27_c00486{width:47.296000pt;}
._3f_c00486{width:48.490667pt;}
._47_c00486{width:50.021333pt;}
._3a_c00486{width:51.829333pt;}
._31_c00486{width:53.248000pt;}
._d_c00486{width:55.466667pt;}
._42_c00486{width:56.778667pt;}
._44_c00486{width:61.370667pt;}
._3d_c00486{width:62.549333pt;}
._43_c00486{width:63.986667pt;}
._40_c00486{width:66.645333pt;}
._3e_c00486{width:68.464000pt;}
._1_c00486{width:90.192000pt;}
._15_c00486{width:92.384000pt;}
._34_c00486{width:117.146667pt;}
._38_c00486{width:122.501333pt;}
._39_c00486{width:160.821333pt;}
._45_c00486{width:268.544000pt;}
._32_c00486{width:632.832000pt;}
.fs3_c00486{font-size:42.666667pt;}
.fs0_c00486{font-size:77.333333pt;}
.fs1_c00486{font-size:85.333333pt;}
.fs2_c00486{font-size:90.666667pt;}
.y0_c00486{bottom:0.000000pt;}
.y27_c00486{bottom:2.760000pt;}
.y26_c00486{bottom:6.425217pt;}
.y25_c00486{bottom:95.973333pt;}
.y24_c00486{bottom:125.973333pt;}
.y23_c00486{bottom:156.906667pt;}
.y22_c00486{bottom:186.906667pt;}
.y21_c00486{bottom:217.440000pt;}
.y20_c00486{bottom:247.440000pt;}
.y1f_c00486{bottom:277.440000pt;}
.y1e_c00486{bottom:307.706667pt;}
.y1d_c00486{bottom:336.906667pt;}
.y1c_c00486{bottom:367.440000pt;}
.y1b_c00486{bottom:397.440000pt;}
.y1a_c00486{bottom:427.440000pt;}
.y19_c00486{bottom:457.840000pt;}
.y18_c00486{bottom:487.706667pt;}
.y17_c00486{bottom:517.173333pt;}
.y16_c00486{bottom:548.106667pt;}
.y15_c00486{bottom:577.173333pt;}
.y14_c00486{bottom:607.440000pt;}
.y13_c00486{bottom:637.173333pt;}
.y12_c00486{bottom:666.506667pt;}
.y11_c00486{bottom:698.640000pt;}
.y10_c00486{bottom:727.173333pt;}
.yf_c00486{bottom:755.306667pt;}
.ye_c00486{bottom:785.440000pt;}
.yd_c00486{bottom:815.040000pt;}
.yc_c00486{bottom:845.040000pt;}
.yb_c00486{bottom:874.773333pt;}
.ya_c00486{bottom:904.506667pt;}
.y9_c00486{bottom:934.106667pt;}
.y8_c00486{bottom:963.306667pt;}
.y7_c00486{bottom:992.106667pt;}
.y6_c00486{bottom:1020.506667pt;}
.y5_c00486{bottom:1050.640000pt;}
.y4_c00486{bottom:1079.706667pt;}
.y3_c00486{bottom:1109.973333pt;}
.y2_c00486{bottom:1139.440000pt;}
.y1_c00486{bottom:1159.840000pt;}
.h3_c00486{height:11.733399pt;}
.h4_c00486{height:38.937500pt;}
.h2_c00486{height:108.041667pt;}
.h0_c00486{height:1229.733333pt;}
.h1_c00486{height:1230.000000pt;}
.w2_c00486{width:93.222667pt;}
.w0_c00486{width:780.466667pt;}
.w1_c00486{width:780.666667pt;}
.x0_c00486{left:0.000000pt;}
.x7_c00486{left:29.600000pt;}
.x6_c00486{left:30.533333pt;}
.x5_c00486{left:31.466667pt;}
.x8_c00486{left:32.400000pt;}
.x4_c00486{left:33.333333pt;}
.x3_c00486{left:34.400000pt;}
.x2_c00486{left:35.733333pt;}
.xa_c00486{left:347.401530pt;}
.x1_c00486{left:419.733333pt;}
.x9_c00486{left:488.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_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_2b025adfd54552a9236d0fd6.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_f357529dbed3e22cba99ac8b.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00487;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00487;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls2_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:3.000000px;}
.ls1_c00487{letter-spacing:8.520000px;}
.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:-54.000000px;}
.ws3_c00487{word-spacing:-23.136000px;}
.ws1_c00487{word-spacing:-20.244000px;}
.ws2_c00487{word-spacing:-1.008000px;}
.ws4_c00487{word-spacing:0.000000px;}
._32_c00487{margin-left:-43.392000px;}
._21_c00487{margin-left:-28.032000px;}
._16_c00487{margin-left:-26.112000px;}
._3d_c00487{margin-left:-21.732000px;}
._29_c00487{margin-left:-18.336000px;}
._2b_c00487{margin-left:-17.280000px;}
._2f_c00487{margin-left:-14.784000px;}
._d_c00487{margin-left:-12.000000px;}
._2e_c00487{margin-left:-10.428000px;}
._4_c00487{margin-left:-8.544000px;}
._e_c00487{margin-left:-6.912000px;}
._c_c00487{margin-left:-5.280000px;}
._12_c00487{margin-left:-3.552000px;}
._6_c00487{margin-left:-1.536000px;}
._3_c00487{width:1.824000px;}
._1_c00487{width:3.072000px;}
._9_c00487{width:4.224000px;}
._0_c00487{width:5.760000px;}
._17_c00487{width:7.008000px;}
._10_c00487{width:8.352000px;}
._18_c00487{width:10.560000px;}
._7_c00487{width:11.808000px;}
._1c_c00487{width:13.632000px;}
._1b_c00487{width:14.976000px;}
._23_c00487{width:16.032000px;}
._15_c00487{width:17.568000px;}
._1d_c00487{width:18.816000px;}
._a_c00487{width:21.120000px;}
._22_c00487{width:24.192000px;}
._b_c00487{width:25.920000px;}
._8_c00487{width:27.648000px;}
._1a_c00487{width:29.280000px;}
._3c_c00487{width:30.624000px;}
._1f_c00487{width:32.160000px;}
._14_c00487{width:33.888000px;}
._2_c00487{width:36.096000px;}
._2a_c00487{width:37.344000px;}
._5_c00487{width:38.880000px;}
._25_c00487{width:40.224000px;}
._1e_c00487{width:41.856000px;}
._13_c00487{width:42.912000px;}
._f_c00487{width:45.408000px;}
._20_c00487{width:47.136000px;}
._38_c00487{width:48.357000px;}
._27_c00487{width:50.016000px;}
._11_c00487{width:51.552000px;}
._19_c00487{width:54.048000px;}
._3a_c00487{width:55.488000px;}
._24_c00487{width:56.928000px;}
._28_c00487{width:58.560000px;}
._35_c00487{width:62.820000px;}
._2c_c00487{width:64.608000px;}
._39_c00487{width:67.836000px;}
._2d_c00487{width:70.848000px;}
._26_c00487{width:73.344000px;}
._31_c00487{width:77.280000px;}
._30_c00487{width:81.024000px;}
._3b_c00487{width:170.940000px;}
._36_c00487{width:201.456000px;}
._34_c00487{width:397.572000px;}
._33_c00487{width:549.216000px;}
._37_c00487{width:677.016000px;}
.fc2_c00487{color:transparent;}
.fc1_c00487{color:rgb(128,128,128);}
.fc0_c00487{color:rgb(0,0,0);}
.fs4_c00487{font-size:48.000000px;}
.fs2_c00487{font-size:84.000000px;}
.fs3_c00487{font-size:87.000000px;}
.fs0_c00487{font-size:96.000000px;}
.fs1_c00487{font-size:102.000000px;}
.y0_c00487{bottom:0.000000px;}
.y26_c00487{bottom:3.105000px;}
.y25_c00487{bottom:7.228357px;}
.y24_c00487{bottom:102.330000px;}
.y23_c00487{bottom:132.030000px;}
.y22_c00487{bottom:167.430000px;}
.y21_c00487{bottom:201.780000px;}
.y20_c00487{bottom:235.530000px;}
.y1f_c00487{bottom:269.430000px;}
.y1e_c00487{bottom:304.830000px;}
.y1d_c00487{bottom:336.930000px;}
.y1c_c00487{bottom:369.930000px;}
.y1b_c00487{bottom:402.330000px;}
.y1a_c00487{bottom:435.780000px;}
.y19_c00487{bottom:471.780000px;}
.y18_c00487{bottom:506.580000px;}
.y17_c00487{bottom:540.030000px;}
.y16_c00487{bottom:573.780000px;}
.y15_c00487{bottom:608.580000px;}
.y14_c00487{bottom:640.530000px;}
.y13_c00487{bottom:675.030000px;}
.y12_c00487{bottom:708.180000px;}
.y11_c00487{bottom:741.180000px;}
.y10_c00487{bottom:776.580000px;}
.yf_c00487{bottom:811.080000px;}
.ye_c00487{bottom:843.180000px;}
.yd_c00487{bottom:876.780000px;}
.yc_c00487{bottom:910.530000px;}
.yb_c00487{bottom:944.280000px;}
.ya_c00487{bottom:977.430000px;}
.y9_c00487{bottom:1009.830000px;}
.y8_c00487{bottom:1041.630000px;}
.y7_c00487{bottom:1075.680000px;}
.y6_c00487{bottom:1109.430000px;}
.y5_c00487{bottom:1143.480000px;}
.y4_c00487{bottom:1175.880000px;}
.y3_c00487{bottom:1209.630000px;}
.y2_c00487{bottom:1242.630000px;}
.y1_c00487{bottom:1275.480000px;}
.h3_c00487{height:13.200074px;}
.h4_c00487{height:43.804688px;}
.h2_c00487{height:121.546875px;}
.h0_c00487{height:1382.700000px;}
.h1_c00487{height:1383.000000px;}
.w2_c00487{width:104.875500px;}
.w0_c00487{width:863.175000px;}
.w1_c00487{width:863.250000px;}
.x0_c00487{left:0.000000px;}
.x9_c00487{left:14.850000px;}
.xa_c00487{left:27.300000px;}
.x8_c00487{left:45.150000px;}
.x7_c00487{left:128.250000px;}
.x5_c00487{left:227.100000px;}
.xb_c00487{left:231.300000px;}
.x6_c00487{left:232.500000px;}
.x4_c00487{left:233.550000px;}
.x3_c00487{left:234.600000px;}
.x2_c00487{left:235.650000px;}
.x1_c00487{left:236.850000px;}
.xd_c00487{left:383.401749px;}
.xc_c00487{left:765.450000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls2_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:2.666667pt;}
.ls1_c00487{letter-spacing:7.573333pt;}
.ws0_c00487{word-spacing:-48.000000pt;}
.ws3_c00487{word-spacing:-20.565333pt;}
.ws1_c00487{word-spacing:-17.994667pt;}
.ws2_c00487{word-spacing:-0.896000pt;}
.ws4_c00487{word-spacing:0.000000pt;}
._32_c00487{margin-left:-38.570667pt;}
._21_c00487{margin-left:-24.917333pt;}
._16_c00487{margin-left:-23.210667pt;}
._3d_c00487{margin-left:-19.317333pt;}
._29_c00487{margin-left:-16.298667pt;}
._2b_c00487{margin-left:-15.360000pt;}
._2f_c00487{margin-left:-13.141333pt;}
._d_c00487{margin-left:-10.666667pt;}
._2e_c00487{margin-left:-9.269333pt;}
._4_c00487{margin-left:-7.594667pt;}
._e_c00487{margin-left:-6.144000pt;}
._c_c00487{margin-left:-4.693333pt;}
._12_c00487{margin-left:-3.157333pt;}
._6_c00487{margin-left:-1.365333pt;}
._3_c00487{width:1.621333pt;}
._1_c00487{width:2.730667pt;}
._9_c00487{width:3.754667pt;}
._0_c00487{width:5.120000pt;}
._17_c00487{width:6.229333pt;}
._10_c00487{width:7.424000pt;}
._18_c00487{width:9.386667pt;}
._7_c00487{width:10.496000pt;}
._1c_c00487{width:12.117333pt;}
._1b_c00487{width:13.312000pt;}
._23_c00487{width:14.250667pt;}
._15_c00487{width:15.616000pt;}
._1d_c00487{width:16.725333pt;}
._a_c00487{width:18.773333pt;}
._22_c00487{width:21.504000pt;}
._b_c00487{width:23.040000pt;}
._8_c00487{width:24.576000pt;}
._1a_c00487{width:26.026667pt;}
._3c_c00487{width:27.221333pt;}
._1f_c00487{width:28.586667pt;}
._14_c00487{width:30.122667pt;}
._2_c00487{width:32.085333pt;}
._2a_c00487{width:33.194667pt;}
._5_c00487{width:34.560000pt;}
._25_c00487{width:35.754667pt;}
._1e_c00487{width:37.205333pt;}
._13_c00487{width:38.144000pt;}
._f_c00487{width:40.362667pt;}
._20_c00487{width:41.898667pt;}
._38_c00487{width:42.984000pt;}
._27_c00487{width:44.458667pt;}
._11_c00487{width:45.824000pt;}
._19_c00487{width:48.042667pt;}
._3a_c00487{width:49.322667pt;}
._24_c00487{width:50.602667pt;}
._28_c00487{width:52.053333pt;}
._35_c00487{width:55.840000pt;}
._2c_c00487{width:57.429333pt;}
._39_c00487{width:60.298667pt;}
._2d_c00487{width:62.976000pt;}
._26_c00487{width:65.194667pt;}
._31_c00487{width:68.693333pt;}
._30_c00487{width:72.021333pt;}
._3b_c00487{width:151.946667pt;}
._36_c00487{width:179.072000pt;}
._34_c00487{width:353.397333pt;}
._33_c00487{width:488.192000pt;}
._37_c00487{width:601.792000pt;}
.fs4_c00487{font-size:42.666667pt;}
.fs2_c00487{font-size:74.666667pt;}
.fs3_c00487{font-size:77.333333pt;}
.fs0_c00487{font-size:85.333333pt;}
.fs1_c00487{font-size:90.666667pt;}
.y0_c00487{bottom:0.000000pt;}
.y26_c00487{bottom:2.760000pt;}
.y25_c00487{bottom:6.425206pt;}
.y24_c00487{bottom:90.960000pt;}
.y23_c00487{bottom:117.360000pt;}
.y22_c00487{bottom:148.826667pt;}
.y21_c00487{bottom:179.360000pt;}
.y20_c00487{bottom:209.360000pt;}
.y1f_c00487{bottom:239.493333pt;}
.y1e_c00487{bottom:270.960000pt;}
.y1d_c00487{bottom:299.493333pt;}
.y1c_c00487{bottom:328.826667pt;}
.y1b_c00487{bottom:357.626667pt;}
.y1a_c00487{bottom:387.360000pt;}
.y19_c00487{bottom:419.360000pt;}
.y18_c00487{bottom:450.293333pt;}
.y17_c00487{bottom:480.026667pt;}
.y16_c00487{bottom:510.026667pt;}
.y15_c00487{bottom:540.960000pt;}
.y14_c00487{bottom:569.360000pt;}
.y13_c00487{bottom:600.026667pt;}
.y12_c00487{bottom:629.493333pt;}
.y11_c00487{bottom:658.826667pt;}
.y10_c00487{bottom:690.293333pt;}
.yf_c00487{bottom:720.960000pt;}
.ye_c00487{bottom:749.493333pt;}
.yd_c00487{bottom:779.360000pt;}
.yc_c00487{bottom:809.360000pt;}
.yb_c00487{bottom:839.360000pt;}
.ya_c00487{bottom:868.826667pt;}
.y9_c00487{bottom:897.626667pt;}
.y8_c00487{bottom:925.893333pt;}
.y7_c00487{bottom:956.160000pt;}
.y6_c00487{bottom:986.160000pt;}
.y5_c00487{bottom:1016.426667pt;}
.y4_c00487{bottom:1045.226667pt;}
.y3_c00487{bottom:1075.226667pt;}
.y2_c00487{bottom:1104.560000pt;}
.y1_c00487{bottom:1133.760000pt;}
.h3_c00487{height:11.733399pt;}
.h4_c00487{height:38.937500pt;}
.h2_c00487{height:108.041667pt;}
.h0_c00487{height:1229.066667pt;}
.h1_c00487{height:1229.333333pt;}
.w2_c00487{width:93.222667pt;}
.w0_c00487{width:767.266667pt;}
.w1_c00487{width:767.333333pt;}
.x0_c00487{left:0.000000pt;}
.x9_c00487{left:13.200000pt;}
.xa_c00487{left:24.266667pt;}
.x8_c00487{left:40.133333pt;}
.x7_c00487{left:114.000000pt;}
.x5_c00487{left:201.866667pt;}
.xb_c00487{left:205.600000pt;}
.x6_c00487{left:206.666667pt;}
.x4_c00487{left:207.600000pt;}
.x3_c00487{left:208.533333pt;}
.x2_c00487{left:209.466667pt;}
.x1_c00487{left:210.533333pt;}
.xd_c00487{left:340.801554pt;}
.xc_c00487{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_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_1bd970f8fe474cafc316d717.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_75dadb711d8807a9913c5339.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls2_c00488{letter-spacing:0.000000px;}
.ls1_c00488{letter-spacing:4.176000px;}
.ls0_c00488{letter-spacing:7.200000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:-63.504000px;}
.ws1_c00488{word-spacing:0.000000px;}
._35_c00488{margin-left:-37.440000px;}
._3c_c00488{margin-left:-29.472000px;}
._30_c00488{margin-left:-25.632000px;}
._24_c00488{margin-left:-23.424000px;}
._33_c00488{margin-left:-19.968000px;}
._1f_c00488{margin-left:-16.320000px;}
._26_c00488{margin-left:-14.112000px;}
._25_c00488{margin-left:-12.864000px;}
._34_c00488{margin-left:-11.616000px;}
._3_c00488{margin-left:-10.176000px;}
._4_c00488{margin-left:-8.640000px;}
._5_c00488{margin-left:-7.008000px;}
._23_c00488{margin-left:-5.760000px;}
._16_c00488{margin-left:-3.840000px;}
._b_c00488{margin-left:-2.208000px;}
._18_c00488{margin-left:-1.152000px;}
._8_c00488{width:1.344000px;}
._0_c00488{width:2.496000px;}
._1_c00488{width:3.648000px;}
._19_c00488{width:4.704000px;}
._a_c00488{width:5.856000px;}
._1d_c00488{width:7.200000px;}
._d_c00488{width:8.544000px;}
._c_c00488{width:10.176000px;}
._21_c00488{width:12.000000px;}
._1e_c00488{width:13.344000px;}
._3b_c00488{width:14.592000px;}
._20_c00488{width:15.648000px;}
._17_c00488{width:17.472000px;}
._14_c00488{width:19.488000px;}
._1c_c00488{width:21.600000px;}
._7_c00488{width:24.480000px;}
._1a_c00488{width:25.632000px;}
._10_c00488{width:27.744000px;}
._13_c00488{width:29.952000px;}
._22_c00488{width:31.776000px;}
._15_c00488{width:32.928000px;}
._2_c00488{width:34.272000px;}
._11_c00488{width:36.000000px;}
._27_c00488{width:37.152000px;}
._9_c00488{width:38.880000px;}
._12_c00488{width:40.800000px;}
._1b_c00488{width:42.912000px;}
._2c_c00488{width:44.052000px;}
._32_c00488{width:45.312000px;}
._29_c00488{width:47.520000px;}
._f_c00488{width:49.848000px;}
._37_c00488{width:51.648000px;}
._3f_c00488{width:54.048000px;}
._e_c00488{width:55.104000px;}
._2a_c00488{width:56.640000px;}
._2b_c00488{width:58.752000px;}
._28_c00488{width:60.384000px;}
._6_c00488{width:62.592000px;}
._3d_c00488{width:64.704000px;}
._40_c00488{width:67.200000px;}
._39_c00488{width:69.216000px;}
._2e_c00488{width:70.464000px;}
._2f_c00488{width:73.728000px;}
._2d_c00488{width:75.936000px;}
._3e_c00488{width:78.144000px;}
._31_c00488{width:79.488000px;}
._38_c00488{width:81.888000px;}
._3a_c00488{width:86.112000px;}
._36_c00488{width:93.120000px;}
._42_c00488{width:717.600000px;}
._41_c00488{width:856.032000px;}
.fc2_c00488{color:transparent;}
.fc1_c00488{color:rgb(128,128,128);}
.fc0_c00488{color:rgb(0,0,0);}
.fs3_c00488{font-size:48.000000px;}
.fs1_c00488{font-size:84.000000px;}
.fs0_c00488{font-size:96.000000px;}
.fs2_c00488{font-size:102.000000px;}
.y0_c00488{bottom:0.000000px;}
.y26_c00488{bottom:3.105000px;}
.y25_c00488{bottom:7.228369px;}
.y24_c00488{bottom:117.720000px;}
.y23_c00488{bottom:151.470000px;}
.y22_c00488{bottom:185.970000px;}
.y21_c00488{bottom:219.420000px;}
.y20_c00488{bottom:254.070000px;}
.y1f_c00488{bottom:287.520000px;}
.y1e_c00488{bottom:320.970000px;}
.y1d_c00488{bottom:354.720000px;}
.y1c_c00488{bottom:388.470000px;}
.y1b_c00488{bottom:422.220000px;}
.y1a_c00488{bottom:455.520000px;}
.y19_c00488{bottom:488.670000px;}
.y18_c00488{bottom:523.020000px;}
.y17_c00488{bottom:555.870000px;}
.y16_c00488{bottom:589.320000px;}
.y15_c00488{bottom:623.670000px;}
.y14_c00488{bottom:657.120000px;}
.y13_c00488{bottom:690.420000px;}
.y12_c00488{bottom:724.920000px;}
.y11_c00488{bottom:757.020000px;}
.y10_c00488{bottom:790.770000px;}
.yf_c00488{bottom:823.770000px;}
.ye_c00488{bottom:856.470000px;}
.yd_c00488{bottom:890.220000px;}
.yc_c00488{bottom:923.370000px;}
.yb_c00488{bottom:956.820000px;}
.ya_c00488{bottom:989.820000px;}
.y9_c00488{bottom:1023.270000px;}
.y8_c00488{bottom:1056.420000px;}
.y7_c00488{bottom:1089.420000px;}
.y6_c00488{bottom:1122.120000px;}
.y5_c00488{bottom:1154.970000px;}
.y4_c00488{bottom:1187.970000px;}
.y3_c00488{bottom:1220.370000px;}
.y2_c00488{bottom:1253.520000px;}
.y1_c00488{bottom:1286.820000px;}
.h3_c00488{height:13.200073px;}
.h4_c00488{height:43.804688px;}
.h2_c00488{height:121.546875px;}
.h0_c00488{height:1383.450000px;}
.h1_c00488{height:1383.750000px;}
.w2_c00488{width:104.875500px;}
.w0_c00488{width:878.025000px;}
.w1_c00488{width:878.250000px;}
.x0_c00488{left:0.000000px;}
.x6_c00488{left:19.800000px;}
.x5_c00488{left:21.900000px;}
.x4_c00488{left:22.950000px;}
.x3_c00488{left:24.000000px;}
.x2_c00488{left:25.200000px;}
.x1_c00488{left:26.700000px;}
.x8_c00488{left:27.900000px;}
.x7_c00488{left:28.950000px;}
.x9_c00488{left:390.826721px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls2_c00488{letter-spacing:0.000000pt;}
.ls1_c00488{letter-spacing:3.712000pt;}
.ls0_c00488{letter-spacing:6.400000pt;}
.ws0_c00488{word-spacing:-56.448000pt;}
.ws1_c00488{word-spacing:0.000000pt;}
._35_c00488{margin-left:-33.280000pt;}
._3c_c00488{margin-left:-26.197333pt;}
._30_c00488{margin-left:-22.784000pt;}
._24_c00488{margin-left:-20.821333pt;}
._33_c00488{margin-left:-17.749333pt;}
._1f_c00488{margin-left:-14.506667pt;}
._26_c00488{margin-left:-12.544000pt;}
._25_c00488{margin-left:-11.434667pt;}
._34_c00488{margin-left:-10.325333pt;}
._3_c00488{margin-left:-9.045333pt;}
._4_c00488{margin-left:-7.680000pt;}
._5_c00488{margin-left:-6.229333pt;}
._23_c00488{margin-left:-5.120000pt;}
._16_c00488{margin-left:-3.413333pt;}
._b_c00488{margin-left:-1.962667pt;}
._18_c00488{margin-left:-1.024000pt;}
._8_c00488{width:1.194667pt;}
._0_c00488{width:2.218667pt;}
._1_c00488{width:3.242667pt;}
._19_c00488{width:4.181333pt;}
._a_c00488{width:5.205333pt;}
._1d_c00488{width:6.400000pt;}
._d_c00488{width:7.594667pt;}
._c_c00488{width:9.045333pt;}
._21_c00488{width:10.666667pt;}
._1e_c00488{width:11.861333pt;}
._3b_c00488{width:12.970667pt;}
._20_c00488{width:13.909333pt;}
._17_c00488{width:15.530667pt;}
._14_c00488{width:17.322667pt;}
._1c_c00488{width:19.200000pt;}
._7_c00488{width:21.760000pt;}
._1a_c00488{width:22.784000pt;}
._10_c00488{width:24.661333pt;}
._13_c00488{width:26.624000pt;}
._22_c00488{width:28.245333pt;}
._15_c00488{width:29.269333pt;}
._2_c00488{width:30.464000pt;}
._11_c00488{width:32.000000pt;}
._27_c00488{width:33.024000pt;}
._9_c00488{width:34.560000pt;}
._12_c00488{width:36.266667pt;}
._1b_c00488{width:38.144000pt;}
._2c_c00488{width:39.157333pt;}
._32_c00488{width:40.277333pt;}
._29_c00488{width:42.240000pt;}
._f_c00488{width:44.309333pt;}
._37_c00488{width:45.909333pt;}
._3f_c00488{width:48.042667pt;}
._e_c00488{width:48.981333pt;}
._2a_c00488{width:50.346667pt;}
._2b_c00488{width:52.224000pt;}
._28_c00488{width:53.674667pt;}
._6_c00488{width:55.637333pt;}
._3d_c00488{width:57.514667pt;}
._40_c00488{width:59.733333pt;}
._39_c00488{width:61.525333pt;}
._2e_c00488{width:62.634667pt;}
._2f_c00488{width:65.536000pt;}
._2d_c00488{width:67.498667pt;}
._3e_c00488{width:69.461333pt;}
._31_c00488{width:70.656000pt;}
._38_c00488{width:72.789333pt;}
._3a_c00488{width:76.544000pt;}
._36_c00488{width:82.773333pt;}
._42_c00488{width:637.866667pt;}
._41_c00488{width:760.917333pt;}
.fs3_c00488{font-size:42.666667pt;}
.fs1_c00488{font-size:74.666667pt;}
.fs0_c00488{font-size:85.333333pt;}
.fs2_c00488{font-size:90.666667pt;}
.y0_c00488{bottom:0.000000pt;}
.y26_c00488{bottom:2.760000pt;}
.y25_c00488{bottom:6.425217pt;}
.y24_c00488{bottom:104.640000pt;}
.y23_c00488{bottom:134.640000pt;}
.y22_c00488{bottom:165.306667pt;}
.y21_c00488{bottom:195.040000pt;}
.y20_c00488{bottom:225.840000pt;}
.y1f_c00488{bottom:255.573333pt;}
.y1e_c00488{bottom:285.306667pt;}
.y1d_c00488{bottom:315.306667pt;}
.y1c_c00488{bottom:345.306667pt;}
.y1b_c00488{bottom:375.306667pt;}
.y1a_c00488{bottom:404.906667pt;}
.y19_c00488{bottom:434.373333pt;}
.y18_c00488{bottom:464.906667pt;}
.y17_c00488{bottom:494.106667pt;}
.y16_c00488{bottom:523.840000pt;}
.y15_c00488{bottom:554.373333pt;}
.y14_c00488{bottom:584.106667pt;}
.y13_c00488{bottom:613.706667pt;}
.y12_c00488{bottom:644.373333pt;}
.y11_c00488{bottom:672.906667pt;}
.y10_c00488{bottom:702.906667pt;}
.yf_c00488{bottom:732.240000pt;}
.ye_c00488{bottom:761.306667pt;}
.yd_c00488{bottom:791.306667pt;}
.yc_c00488{bottom:820.773333pt;}
.yb_c00488{bottom:850.506667pt;}
.ya_c00488{bottom:879.840000pt;}
.y9_c00488{bottom:909.573333pt;}
.y8_c00488{bottom:939.040000pt;}
.y7_c00488{bottom:968.373333pt;}
.y6_c00488{bottom:997.440000pt;}
.y5_c00488{bottom:1026.640000pt;}
.y4_c00488{bottom:1055.973333pt;}
.y3_c00488{bottom:1084.773333pt;}
.y2_c00488{bottom:1114.240000pt;}
.y1_c00488{bottom:1143.840000pt;}
.h3_c00488{height:11.733399pt;}
.h4_c00488{height:38.937500pt;}
.h2_c00488{height:108.041667pt;}
.h0_c00488{height:1229.733333pt;}
.h1_c00488{height:1230.000000pt;}
.w2_c00488{width:93.222667pt;}
.w0_c00488{width:780.466667pt;}
.w1_c00488{width:780.666667pt;}
.x0_c00488{left:0.000000pt;}
.x6_c00488{left:17.600000pt;}
.x5_c00488{left:19.466667pt;}
.x4_c00488{left:20.400000pt;}
.x3_c00488{left:21.333333pt;}
.x2_c00488{left:22.400000pt;}
.x1_c00488{left:23.733333pt;}
.x8_c00488{left:24.800000pt;}
.x7_c00488{left:25.733333pt;}
.x9_c00488{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af7745d1f40c716e9e51b7fa.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_dc6cdb9cf2d11b969db2a6b9.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_8c983b534a78864b92dcbbc3.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00489;src:url('chunks/assets/font_2000c6437ddbb7e846392bdd.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00489;src:url('chunks/assets/font_390d3fa57628f5b5e584cc83.woff2')format("woff");}.ff5_c00489{font-family:ff5_c00489;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00489;src:url('chunks/assets/font_c07b6e2bd6bd7ee08d3fe15c.woff2')format("woff");}.ff6_c00489{font-family:ff6_c00489;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00489;src:url('chunks/assets/font_07c6d31f28584e96ca99c7ec.woff2')format("woff");}.ff7_c00489{font-family:ff7_c00489;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00489;src:url('chunks/assets/font_9c836c2d47f68f6e7c44f0d5.woff2')format("woff");}.ff8_c00489{font-family:ff8_c00489;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00489;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c00489{font-family:ff9_c00489;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls5_c00489{letter-spacing:-3.000000px;}
.ls4_c00489{letter-spacing:0.000000px;}
.ls3_c00489{letter-spacing:3.000000px;}
.ls6_c00489{letter-spacing:15.000000px;}
.ls0_c00489{letter-spacing:36.756000px;}
.ls1_c00489{letter-spacing:236.292000px;}
.ls2_c00489{letter-spacing:599.340000px;}
.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;}
}
.ws2_c00489{word-spacing:-70.044000px;}
.ws0_c00489{word-spacing:-54.000000px;}
.ws4_c00489{word-spacing:-24.750000px;}
.ws7_c00489{word-spacing:-22.908000px;}
.ws5_c00489{word-spacing:-20.244000px;}
.ws1_c00489{word-spacing:-17.967000px;}
.ws3_c00489{word-spacing:-16.686000px;}
.ws8_c00489{word-spacing:0.000000px;}
.ws6_c00489{word-spacing:2.184000px;}
._13_c00489{margin-left:-81.984000px;}
._37_c00489{margin-left:-54.591000px;}
._34_c00489{margin-left:-48.732000px;}
._31_c00489{margin-left:-42.408000px;}
._1e_c00489{margin-left:-39.900000px;}
._14_c00489{margin-left:-37.212000px;}
._16_c00489{margin-left:-33.777000px;}
._41_c00489{margin-left:-30.660000px;}
._2d_c00489{margin-left:-28.503000px;}
._36_c00489{margin-left:-26.877000px;}
._4e_c00489{margin-left:-25.110000px;}
._e_c00489{margin-left:-23.712000px;}
._2e_c00489{margin-left:-19.845000px;}
._1c_c00489{margin-left:-17.886000px;}
._2f_c00489{margin-left:-13.860000px;}
._22_c00489{margin-left:-12.636000px;}
._2b_c00489{margin-left:-11.562000px;}
._21_c00489{margin-left:-9.984000px;}
._1f_c00489{margin-left:-8.394000px;}
._20_c00489{margin-left:-6.372000px;}
._d_c00489{margin-left:-4.416000px;}
._9_c00489{margin-left:-3.360000px;}
._8_c00489{margin-left:-1.632000px;}
._4_c00489{width:1.824000px;}
._f_c00489{width:2.880000px;}
._6_c00489{width:3.936000px;}
._b_c00489{width:5.856000px;}
._3b_c00489{width:7.176000px;}
._0_c00489{width:8.190000px;}
._19_c00489{width:9.462000px;}
._4f_c00489{width:10.890000px;}
._1_c00489{width:12.012000px;}
._2_c00489{width:13.572000px;}
._24_c00489{width:15.732000px;}
._2c_c00489{width:16.803000px;}
._55_c00489{width:17.952000px;}
._28_c00489{width:19.008000px;}
._27_c00489{width:20.328000px;}
._4c_c00489{width:21.858000px;}
._29_c00489{width:24.807000px;}
._c_c00489{width:26.016000px;}
._3_c00489{width:27.384000px;}
._11_c00489{width:28.704000px;}
._42_c00489{width:29.952000px;}
._23_c00489{width:31.116000px;}
._52_c00489{width:32.184000px;}
._a_c00489{width:33.792000px;}
._46_c00489{width:35.136000px;}
._1d_c00489{width:36.390000px;}
._3f_c00489{width:37.440000px;}
._5_c00489{width:39.264000px;}
._26_c00489{width:41.088000px;}
._56_c00489{width:42.222000px;}
._3c_c00489{width:43.683000px;}
._18_c00489{width:45.024000px;}
._50_c00489{width:46.152000px;}
._49_c00489{width:47.202000px;}
._48_c00489{width:48.792000px;}
._10_c00489{width:50.016000px;}
._40_c00489{width:51.744000px;}
._3d_c00489{width:53.550000px;}
._3a_c00489{width:55.725000px;}
._51_c00489{width:56.745000px;}
._54_c00489{width:58.155000px;}
._4a_c00489{width:60.342000px;}
._4b_c00489{width:61.632000px;}
._30_c00489{width:65.931000px;}
._53_c00489{width:71.424000px;}
._3e_c00489{width:73.626000px;}
._45_c00489{width:75.996000px;}
._57_c00489{width:77.289000px;}
._4d_c00489{width:78.312000px;}
._44_c00489{width:80.328000px;}
._58_c00489{width:90.939000px;}
._2a_c00489{width:126.912000px;}
._39_c00489{width:169.257000px;}
._1b_c00489{width:176.793000px;}
._33_c00489{width:211.911000px;}
._12_c00489{width:217.728000px;}
._1a_c00489{width:255.399000px;}
._32_c00489{width:267.381000px;}
._38_c00489{width:273.699000px;}
._25_c00489{width:299.916000px;}
._15_c00489{width:365.664000px;}
._7_c00489{width:428.928000px;}
._47_c00489{width:539.088000px;}
._43_c00489{width:577.464000px;}
._17_c00489{width:607.869000px;}
._59_c00489{width:851.424000px;}
._35_c00489{width:981.429000px;}
.fc2_c00489{color:transparent;}
.fc1_c00489{color:rgb(128,128,128);}
.fc0_c00489{color:rgb(0,0,0);}
.fsa_c00489{font-size:48.000000px;}
.fs8_c00489{font-size:60.000000px;}
.fs7_c00489{font-size:75.000000px;}
.fs0_c00489{font-size:78.000000px;}
.fs4_c00489{font-size:81.000000px;}
.fs6_c00489{font-size:84.000000px;}
.fs3_c00489{font-size:87.000000px;}
.fs9_c00489{font-size:93.000000px;}
.fs1_c00489{font-size:96.000000px;}
.fs5_c00489{font-size:99.000000px;}
.fs2_c00489{font-size:102.000000px;}
.y0_c00489{bottom:0.000000px;}
.y28_c00489{bottom:3.105000px;}
.y27_c00489{bottom:7.228357px;}
.y26_c00489{bottom:114.480000px;}
.y25_c00489{bottom:146.880000px;}
.y24_c00489{bottom:180.630000px;}
.y23_c00489{bottom:214.080000px;}
.y22_c00489{bottom:248.430000px;}
.y21_c00489{bottom:282.180000px;}
.y20_c00489{bottom:316.530000px;}
.y1f_c00489{bottom:350.280000px;}
.y1e_c00489{bottom:383.730000px;}
.y1d_c00489{bottom:417.780000px;}
.y1c_c00489{bottom:450.930000px;}
.y1b_c00489{bottom:485.280000px;}
.y1a_c00489{bottom:518.730000px;}
.y19_c00489{bottom:552.180000px;}
.y18_c00489{bottom:586.230000px;}
.y17_c00489{bottom:619.680000px;}
.y16_c00489{bottom:652.830000px;}
.y15_c00489{bottom:686.580000px;}
.y14_c00489{bottom:720.180000px;}
.y13_c00489{bottom:753.930000px;}
.y12_c00489{bottom:787.680000px;}
.y11_c00489{bottom:820.530000px;}
.y10_c00489{bottom:854.580000px;}
.yf_c00489{bottom:888.330000px;}
.ye_c00489{bottom:920.730000px;}
.yd_c00489{bottom:954.780000px;}
.yc_c00489{bottom:988.530000px;}
.yb_c00489{bottom:1019.880000px;}
.ya_c00489{bottom:1051.680000px;}
.y9_c00489{bottom:1083.480000px;}
.y8_c00489{bottom:1104.030000px;}
.y7_c00489{bottom:1126.680000px;}
.y6_c00489{bottom:1156.980000px;}
.y5_c00489{bottom:1188.630000px;}
.y4_c00489{bottom:1221.180000px;}
.y3_c00489{bottom:1241.730000px;}
.y2_c00489{bottom:1252.230000px;}
.y1_c00489{bottom:1286.580000px;}
.h6_c00489{height:13.200074px;}
.h7_c00489{height:43.804688px;}
.h3_c00489{height:110.151855px;}
.h5_c00489{height:117.748535px;}
.h2_c00489{height:121.546875px;}
.h4_c00489{height:129.143555px;}
.h0_c00489{height:1382.700000px;}
.h1_c00489{height:1383.000000px;}
.w2_c00489{width:104.875500px;}
.w0_c00489{width:863.175000px;}
.w1_c00489{width:863.250000px;}
.x0_c00489{left:0.000000px;}
.x6_c00489{left:18.600000px;}
.x7_c00489{left:21.900000px;}
.x8_c00489{left:22.950000px;}
.x9_c00489{left:24.000000px;}
.x5_c00489{left:50.400000px;}
.xa_c00489{left:51.600000px;}
.x4_c00489{left:139.050000px;}
.x1_c00489{left:237.600000px;}
.x2_c00489{left:241.650000px;}
.xc_c00489{left:243.750000px;}
.xb_c00489{left:244.800000px;}
.xd_c00489{left:246.000000px;}
.xe_c00489{left:247.500000px;}
.xf_c00489{left:249.150000px;}
.x10_c00489{left:250.200000px;}
.x3_c00489{left:336.900000px;}
.x12_c00489{left:383.401749px;}
.x11_c00489{left:463.200000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls5_c00489{letter-spacing:-2.666667pt;}
.ls4_c00489{letter-spacing:0.000000pt;}
.ls3_c00489{letter-spacing:2.666667pt;}
.ls6_c00489{letter-spacing:13.333333pt;}
.ls0_c00489{letter-spacing:32.672000pt;}
.ls1_c00489{letter-spacing:210.037333pt;}
.ls2_c00489{letter-spacing:532.746667pt;}
.ws2_c00489{word-spacing:-62.261333pt;}
.ws0_c00489{word-spacing:-48.000000pt;}
.ws4_c00489{word-spacing:-22.000000pt;}
.ws7_c00489{word-spacing:-20.362667pt;}
.ws5_c00489{word-spacing:-17.994667pt;}
.ws1_c00489{word-spacing:-15.970667pt;}
.ws3_c00489{word-spacing:-14.832000pt;}
.ws8_c00489{word-spacing:0.000000pt;}
.ws6_c00489{word-spacing:1.941333pt;}
._13_c00489{margin-left:-72.874667pt;}
._37_c00489{margin-left:-48.525333pt;}
._34_c00489{margin-left:-43.317333pt;}
._31_c00489{margin-left:-37.696000pt;}
._1e_c00489{margin-left:-35.466667pt;}
._14_c00489{margin-left:-33.077333pt;}
._16_c00489{margin-left:-30.024000pt;}
._41_c00489{margin-left:-27.253333pt;}
._2d_c00489{margin-left:-25.336000pt;}
._36_c00489{margin-left:-23.890667pt;}
._4e_c00489{margin-left:-22.320000pt;}
._e_c00489{margin-left:-21.077333pt;}
._2e_c00489{margin-left:-17.640000pt;}
._1c_c00489{margin-left:-15.898667pt;}
._2f_c00489{margin-left:-12.320000pt;}
._22_c00489{margin-left:-11.232000pt;}
._2b_c00489{margin-left:-10.277333pt;}
._21_c00489{margin-left:-8.874667pt;}
._1f_c00489{margin-left:-7.461333pt;}
._20_c00489{margin-left:-5.664000pt;}
._d_c00489{margin-left:-3.925333pt;}
._9_c00489{margin-left:-2.986667pt;}
._8_c00489{margin-left:-1.450667pt;}
._4_c00489{width:1.621333pt;}
._f_c00489{width:2.560000pt;}
._6_c00489{width:3.498667pt;}
._b_c00489{width:5.205333pt;}
._3b_c00489{width:6.378667pt;}
._0_c00489{width:7.280000pt;}
._19_c00489{width:8.410667pt;}
._4f_c00489{width:9.680000pt;}
._1_c00489{width:10.677333pt;}
._2_c00489{width:12.064000pt;}
._24_c00489{width:13.984000pt;}
._2c_c00489{width:14.936000pt;}
._55_c00489{width:15.957333pt;}
._28_c00489{width:16.896000pt;}
._27_c00489{width:18.069333pt;}
._4c_c00489{width:19.429333pt;}
._29_c00489{width:22.050667pt;}
._c_c00489{width:23.125333pt;}
._3_c00489{width:24.341333pt;}
._11_c00489{width:25.514667pt;}
._42_c00489{width:26.624000pt;}
._23_c00489{width:27.658667pt;}
._52_c00489{width:28.608000pt;}
._a_c00489{width:30.037333pt;}
._46_c00489{width:31.232000pt;}
._1d_c00489{width:32.346667pt;}
._3f_c00489{width:33.280000pt;}
._5_c00489{width:34.901333pt;}
._26_c00489{width:36.522667pt;}
._56_c00489{width:37.530667pt;}
._3c_c00489{width:38.829333pt;}
._18_c00489{width:40.021333pt;}
._50_c00489{width:41.024000pt;}
._49_c00489{width:41.957333pt;}
._48_c00489{width:43.370667pt;}
._10_c00489{width:44.458667pt;}
._40_c00489{width:45.994667pt;}
._3d_c00489{width:47.600000pt;}
._3a_c00489{width:49.533333pt;}
._51_c00489{width:50.440000pt;}
._54_c00489{width:51.693333pt;}
._4a_c00489{width:53.637333pt;}
._4b_c00489{width:54.784000pt;}
._30_c00489{width:58.605333pt;}
._53_c00489{width:63.488000pt;}
._3e_c00489{width:65.445333pt;}
._45_c00489{width:67.552000pt;}
._57_c00489{width:68.701333pt;}
._4d_c00489{width:69.610667pt;}
._44_c00489{width:71.402667pt;}
._58_c00489{width:80.834667pt;}
._2a_c00489{width:112.810667pt;}
._39_c00489{width:150.450667pt;}
._1b_c00489{width:157.149333pt;}
._33_c00489{width:188.365333pt;}
._12_c00489{width:193.536000pt;}
._1a_c00489{width:227.021333pt;}
._32_c00489{width:237.672000pt;}
._38_c00489{width:243.288000pt;}
._25_c00489{width:266.592000pt;}
._15_c00489{width:325.034667pt;}
._7_c00489{width:381.269333pt;}
._47_c00489{width:479.189333pt;}
._43_c00489{width:513.301333pt;}
._17_c00489{width:540.328000pt;}
._59_c00489{width:756.821333pt;}
._35_c00489{width:872.381333pt;}
.fsa_c00489{font-size:42.666667pt;}
.fs8_c00489{font-size:53.333333pt;}
.fs7_c00489{font-size:66.666667pt;}
.fs0_c00489{font-size:69.333333pt;}
.fs4_c00489{font-size:72.000000pt;}
.fs6_c00489{font-size:74.666667pt;}
.fs3_c00489{font-size:77.333333pt;}
.fs9_c00489{font-size:82.666667pt;}
.fs1_c00489{font-size:85.333333pt;}
.fs5_c00489{font-size:88.000000pt;}
.fs2_c00489{font-size:90.666667pt;}
.y0_c00489{bottom:0.000000pt;}
.y28_c00489{bottom:2.760000pt;}
.y27_c00489{bottom:6.425206pt;}
.y26_c00489{bottom:101.760000pt;}
.y25_c00489{bottom:130.560000pt;}
.y24_c00489{bottom:160.560000pt;}
.y23_c00489{bottom:190.293333pt;}
.y22_c00489{bottom:220.826667pt;}
.y21_c00489{bottom:250.826667pt;}
.y20_c00489{bottom:281.360000pt;}
.y1f_c00489{bottom:311.360000pt;}
.y1e_c00489{bottom:341.093333pt;}
.y1d_c00489{bottom:371.360000pt;}
.y1c_c00489{bottom:400.826667pt;}
.y1b_c00489{bottom:431.360000pt;}
.y1a_c00489{bottom:461.093333pt;}
.y19_c00489{bottom:490.826667pt;}
.y18_c00489{bottom:521.093333pt;}
.y17_c00489{bottom:550.826667pt;}
.y16_c00489{bottom:580.293333pt;}
.y15_c00489{bottom:610.293333pt;}
.y14_c00489{bottom:640.160000pt;}
.y13_c00489{bottom:670.160000pt;}
.y12_c00489{bottom:700.160000pt;}
.y11_c00489{bottom:729.360000pt;}
.y10_c00489{bottom:759.626667pt;}
.yf_c00489{bottom:789.626667pt;}
.ye_c00489{bottom:818.426667pt;}
.yd_c00489{bottom:848.693333pt;}
.yc_c00489{bottom:878.693333pt;}
.yb_c00489{bottom:906.560000pt;}
.ya_c00489{bottom:934.826667pt;}
.y9_c00489{bottom:963.093333pt;}
.y8_c00489{bottom:981.360000pt;}
.y7_c00489{bottom:1001.493333pt;}
.y6_c00489{bottom:1028.426667pt;}
.y5_c00489{bottom:1056.560000pt;}
.y4_c00489{bottom:1085.493333pt;}
.y3_c00489{bottom:1103.760000pt;}
.y2_c00489{bottom:1113.093333pt;}
.y1_c00489{bottom:1143.626667pt;}
.h6_c00489{height:11.733399pt;}
.h7_c00489{height:38.937500pt;}
.h3_c00489{height:97.912760pt;}
.h5_c00489{height:104.665365pt;}
.h2_c00489{height:108.041667pt;}
.h4_c00489{height:114.794271pt;}
.h0_c00489{height:1229.066667pt;}
.h1_c00489{height:1229.333333pt;}
.w2_c00489{width:93.222667pt;}
.w0_c00489{width:767.266667pt;}
.w1_c00489{width:767.333333pt;}
.x0_c00489{left:0.000000pt;}
.x6_c00489{left:16.533333pt;}
.x7_c00489{left:19.466667pt;}
.x8_c00489{left:20.400000pt;}
.x9_c00489{left:21.333333pt;}
.x5_c00489{left:44.800000pt;}
.xa_c00489{left:45.866667pt;}
.x4_c00489{left:123.600000pt;}
.x1_c00489{left:211.200000pt;}
.x2_c00489{left:214.800000pt;}
.xc_c00489{left:216.666667pt;}
.xb_c00489{left:217.600000pt;}
.xd_c00489{left:218.666667pt;}
.xe_c00489{left:220.000000pt;}
.xf_c00489{left:221.466667pt;}
.x10_c00489{left:222.400000pt;}
.x3_c00489{left:299.466667pt;}
.x12_c00489{left:340.801554pt;}
.x11_c00489{left:411.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8648f8ffb0c6fe20adc6f803.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_b53349a401a218aa3dbf9acc.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_e19232b0cf10724ceb302bdf.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_0b916b496b8c15a452a6ec30.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00490;src:url('chunks/assets/font_04f44eda4cb947f7358dd36e.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00490;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c00490{font-family:ff6_c00490;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls4_c00490{letter-spacing:0.000000px;}
.ls6_c00490{letter-spacing:3.000000px;}
.ls7_c00490{letter-spacing:6.000000px;}
.ls2_c00490{letter-spacing:6.720000px;}
.ls3_c00490{letter-spacing:7.800000px;}
.ls1_c00490{letter-spacing:31.500000px;}
.ls5_c00490{letter-spacing:87.000000px;}
.ls0_c00490{letter-spacing:180.864000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-110.136000px;}
.ws2_c00490{word-spacing:-54.000000px;}
.ws1_c00490{word-spacing:-20.244000px;}
.ws3_c00490{word-spacing:0.000000px;}
._4a_c00490{margin-left:-88.230000px;}
._48_c00490{margin-left:-84.018000px;}
._43_c00490{margin-left:-45.504000px;}
._40_c00490{margin-left:-36.144000px;}
._36_c00490{margin-left:-31.773000px;}
._20_c00490{margin-left:-30.528000px;}
._4e_c00490{margin-left:-28.368000px;}
._3a_c00490{margin-left:-24.114000px;}
._37_c00490{margin-left:-22.056000px;}
._2f_c00490{margin-left:-20.376000px;}
._26_c00490{margin-left:-18.528000px;}
._1e_c00490{margin-left:-17.088000px;}
._1d_c00490{margin-left:-15.609000px;}
._1c_c00490{margin-left:-12.807000px;}
._13_c00490{margin-left:-9.792000px;}
._25_c00490{margin-left:-8.391000px;}
._28_c00490{margin-left:-7.161000px;}
._29_c00490{margin-left:-6.105000px;}
._34_c00490{margin-left:-4.704000px;}
._11_c00490{margin-left:-3.504000px;}
._9_c00490{margin-left:-2.496000px;}
._8_c00490{margin-left:-1.344000px;}
._3_c00490{width:1.824000px;}
._1_c00490{width:3.552000px;}
._2_c00490{width:4.704000px;}
._4f_c00490{width:5.712000px;}
._0_c00490{width:6.720000px;}
._16_c00490{width:7.968000px;}
._6_c00490{width:9.408000px;}
._14_c00490{width:11.424000px;}
._17_c00490{width:12.480000px;}
._1a_c00490{width:14.784000px;}
._2d_c00490{width:16.032000px;}
._1f_c00490{width:17.712000px;}
._f_c00490{width:19.095000px;}
._38_c00490{width:21.138000px;}
._41_c00490{width:24.288000px;}
._24_c00490{width:25.728000px;}
._b_c00490{width:27.021000px;}
._27_c00490{width:28.512000px;}
._2c_c00490{width:30.624000px;}
._c_c00490{width:32.256000px;}
._5_c00490{width:33.792000px;}
._3f_c00490{width:35.367000px;}
._7_c00490{width:37.008000px;}
._1b_c00490{width:38.400000px;}
._18_c00490{width:39.456000px;}
._a_c00490{width:41.328000px;}
._3e_c00490{width:42.480000px;}
._19_c00490{width:43.488000px;}
._3b_c00490{width:44.928000px;}
._15_c00490{width:46.080000px;}
._39_c00490{width:48.000000px;}
._30_c00490{width:49.344000px;}
._2e_c00490{width:51.216000px;}
._3d_c00490{width:53.130000px;}
._10_c00490{width:54.624000px;}
._35_c00490{width:56.544000px;}
._d_c00490{width:57.792000px;}
._2b_c00490{width:60.864000px;}
._32_c00490{width:62.112000px;}
._3c_c00490{width:67.296000px;}
._31_c00490{width:69.024000px;}
._33_c00490{width:70.992000px;}
._46_c00490{width:72.615000px;}
._4_c00490{width:74.016000px;}
._22_c00490{width:75.360000px;}
._2a_c00490{width:79.872000px;}
._e_c00490{width:85.536000px;}
._21_c00490{width:88.128000px;}
._4d_c00490{width:99.792000px;}
._45_c00490{width:112.224000px;}
._47_c00490{width:120.960000px;}
._12_c00490{width:146.448000px;}
._44_c00490{width:161.376000px;}
._4b_c00490{width:164.424000px;}
._4c_c00490{width:177.360000px;}
._42_c00490{width:212.073000px;}
._49_c00490{width:245.664000px;}
._23_c00490{width:532.224000px;}
._50_c00490{width:767.520000px;}
.fc2_c00490{color:transparent;}
.fc1_c00490{color:rgb(128,128,128);}
.fc0_c00490{color:rgb(0,0,0);}
.fs7_c00490{font-size:48.000000px;}
.fs5_c00490{font-size:60.000000px;}
.fs4_c00490{font-size:72.000000px;}
.fs1_c00490{font-size:84.000000px;}
.fs6_c00490{font-size:90.000000px;}
.fs2_c00490{font-size:93.000000px;}
.fs0_c00490{font-size:96.000000px;}
.fs3_c00490{font-size:102.000000px;}
.y0_c00490{bottom:0.000000px;}
.y26_c00490{bottom:3.105000px;}
.y25_c00490{bottom:7.228363px;}
.y24_c00490{bottom:93.150000px;}
.y23_c00490{bottom:122.850000px;}
.y22_c00490{bottom:156.300000px;}
.y21_c00490{bottom:191.400000px;}
.y20_c00490{bottom:226.200000px;}
.y1f_c00490{bottom:255.450000px;}
.y1e_c00490{bottom:292.950000px;}
.y1d_c00490{bottom:327.000000px;}
.y1c_c00490{bottom:360.150000px;}
.y1b_c00490{bottom:393.900000px;}
.y1a_c00490{bottom:427.500000px;}
.y19_c00490{bottom:460.650000px;}
.y18_c00490{bottom:495.000000px;}
.y17_c00490{bottom:528.150000px;}
.y16_c00490{bottom:561.900000px;}
.y15_c00490{bottom:596.700000px;}
.y14_c00490{bottom:627.450000px;}
.y13_c00490{bottom:661.950000px;}
.y12_c00490{bottom:696.000000px;}
.y11_c00490{bottom:729.300000px;}
.y10_c00490{bottom:762.750000px;}
.yf_c00490{bottom:795.150000px;}
.ye_c00490{bottom:828.300000px;}
.yd_c00490{bottom:861.600000px;}
.yc_c00490{bottom:895.500000px;}
.yb_c00490{bottom:928.500000px;}
.ya_c00490{bottom:961.500000px;}
.y9_c00490{bottom:994.950000px;}
.y8_c00490{bottom:1027.050000px;}
.y7_c00490{bottom:1061.100000px;}
.y6_c00490{bottom:1093.800000px;}
.y5_c00490{bottom:1126.800000px;}
.y4_c00490{bottom:1160.250000px;}
.y3_c00490{bottom:1192.500000px;}
.y2_c00490{bottom:1226.250000px;}
.y1_c00490{bottom:1259.250000px;}
.h3_c00490{height:13.200074px;}
.h4_c00490{height:43.804688px;}
.h1_c00490{height:121.546875px;}
.h2_c00490{height:129.143555px;}
.h0_c00490{height:1363.500000px;}
.w2_c00490{width:104.875500px;}
.w1_c00490{width:864.750000px;}
.w0_c00490{width:865.050000px;}
.x0_c00490{left:0.000000px;}
.x6_c00490{left:20.700000px;}
.x5_c00490{left:21.900000px;}
.x4_c00490{left:23.550000px;}
.x3_c00490{left:25.650000px;}
.x2_c00490{left:27.300000px;}
.x8_c00490{left:28.650000px;}
.x1_c00490{left:30.000000px;}
.x7_c00490{left:31.650000px;}
.x9_c00490{left:33.300000px;}
.xb_c00490{left:384.339249px;}
.xa_c00490{left:547.050000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls4_c00490{letter-spacing:0.000000pt;}
.ls6_c00490{letter-spacing:2.666667pt;}
.ls7_c00490{letter-spacing:5.333333pt;}
.ls2_c00490{letter-spacing:5.973333pt;}
.ls3_c00490{letter-spacing:6.933333pt;}
.ls1_c00490{letter-spacing:28.000000pt;}
.ls5_c00490{letter-spacing:77.333333pt;}
.ls0_c00490{letter-spacing:160.768000pt;}
.ws0_c00490{word-spacing:-97.898667pt;}
.ws2_c00490{word-spacing:-48.000000pt;}
.ws1_c00490{word-spacing:-17.994667pt;}
.ws3_c00490{word-spacing:0.000000pt;}
._4a_c00490{margin-left:-78.426667pt;}
._48_c00490{margin-left:-74.682667pt;}
._43_c00490{margin-left:-40.448000pt;}
._40_c00490{margin-left:-32.128000pt;}
._36_c00490{margin-left:-28.242667pt;}
._20_c00490{margin-left:-27.136000pt;}
._4e_c00490{margin-left:-25.216000pt;}
._3a_c00490{margin-left:-21.434667pt;}
._37_c00490{margin-left:-19.605333pt;}
._2f_c00490{margin-left:-18.112000pt;}
._26_c00490{margin-left:-16.469333pt;}
._1e_c00490{margin-left:-15.189333pt;}
._1d_c00490{margin-left:-13.874667pt;}
._1c_c00490{margin-left:-11.384000pt;}
._13_c00490{margin-left:-8.704000pt;}
._25_c00490{margin-left:-7.458667pt;}
._28_c00490{margin-left:-6.365333pt;}
._29_c00490{margin-left:-5.426667pt;}
._34_c00490{margin-left:-4.181333pt;}
._11_c00490{margin-left:-3.114667pt;}
._9_c00490{margin-left:-2.218667pt;}
._8_c00490{margin-left:-1.194667pt;}
._3_c00490{width:1.621333pt;}
._1_c00490{width:3.157333pt;}
._2_c00490{width:4.181333pt;}
._4f_c00490{width:5.077333pt;}
._0_c00490{width:5.973333pt;}
._16_c00490{width:7.082667pt;}
._6_c00490{width:8.362667pt;}
._14_c00490{width:10.154667pt;}
._17_c00490{width:11.093333pt;}
._1a_c00490{width:13.141333pt;}
._2d_c00490{width:14.250667pt;}
._1f_c00490{width:15.744000pt;}
._f_c00490{width:16.973333pt;}
._38_c00490{width:18.789333pt;}
._41_c00490{width:21.589333pt;}
._24_c00490{width:22.869333pt;}
._b_c00490{width:24.018667pt;}
._27_c00490{width:25.344000pt;}
._2c_c00490{width:27.221333pt;}
._c_c00490{width:28.672000pt;}
._5_c00490{width:30.037333pt;}
._3f_c00490{width:31.437333pt;}
._7_c00490{width:32.896000pt;}
._1b_c00490{width:34.133333pt;}
._18_c00490{width:35.072000pt;}
._a_c00490{width:36.736000pt;}
._3e_c00490{width:37.760000pt;}
._19_c00490{width:38.656000pt;}
._3b_c00490{width:39.936000pt;}
._15_c00490{width:40.960000pt;}
._39_c00490{width:42.666667pt;}
._30_c00490{width:43.861333pt;}
._2e_c00490{width:45.525333pt;}
._3d_c00490{width:47.226667pt;}
._10_c00490{width:48.554667pt;}
._35_c00490{width:50.261333pt;}
._d_c00490{width:51.370667pt;}
._2b_c00490{width:54.101333pt;}
._32_c00490{width:55.210667pt;}
._3c_c00490{width:59.818667pt;}
._31_c00490{width:61.354667pt;}
._33_c00490{width:63.104000pt;}
._46_c00490{width:64.546667pt;}
._4_c00490{width:65.792000pt;}
._22_c00490{width:66.986667pt;}
._2a_c00490{width:70.997333pt;}
._e_c00490{width:76.032000pt;}
._21_c00490{width:78.336000pt;}
._4d_c00490{width:88.704000pt;}
._45_c00490{width:99.754667pt;}
._47_c00490{width:107.520000pt;}
._12_c00490{width:130.176000pt;}
._44_c00490{width:143.445333pt;}
._4b_c00490{width:146.154667pt;}
._4c_c00490{width:157.653333pt;}
._42_c00490{width:188.509333pt;}
._49_c00490{width:218.368000pt;}
._23_c00490{width:473.088000pt;}
._50_c00490{width:682.240000pt;}
.fs7_c00490{font-size:42.666667pt;}
.fs5_c00490{font-size:53.333333pt;}
.fs4_c00490{font-size:64.000000pt;}
.fs1_c00490{font-size:74.666667pt;}
.fs6_c00490{font-size:80.000000pt;}
.fs2_c00490{font-size:82.666667pt;}
.fs0_c00490{font-size:85.333333pt;}
.fs3_c00490{font-size:90.666667pt;}
.y0_c00490{bottom:0.000000pt;}
.y26_c00490{bottom:2.760000pt;}
.y25_c00490{bottom:6.425212pt;}
.y24_c00490{bottom:82.800000pt;}
.y23_c00490{bottom:109.200000pt;}
.y22_c00490{bottom:138.933333pt;}
.y21_c00490{bottom:170.133333pt;}
.y20_c00490{bottom:201.066667pt;}
.y1f_c00490{bottom:227.066667pt;}
.y1e_c00490{bottom:260.400000pt;}
.y1d_c00490{bottom:290.666667pt;}
.y1c_c00490{bottom:320.133333pt;}
.y1b_c00490{bottom:350.133333pt;}
.y1a_c00490{bottom:380.000000pt;}
.y19_c00490{bottom:409.466667pt;}
.y18_c00490{bottom:440.000000pt;}
.y17_c00490{bottom:469.466667pt;}
.y16_c00490{bottom:499.466667pt;}
.y15_c00490{bottom:530.400000pt;}
.y14_c00490{bottom:557.733333pt;}
.y13_c00490{bottom:588.400000pt;}
.y12_c00490{bottom:618.666667pt;}
.y11_c00490{bottom:648.266667pt;}
.y10_c00490{bottom:678.000000pt;}
.yf_c00490{bottom:706.800000pt;}
.ye_c00490{bottom:736.266667pt;}
.yd_c00490{bottom:765.866667pt;}
.yc_c00490{bottom:796.000000pt;}
.yb_c00490{bottom:825.333333pt;}
.ya_c00490{bottom:854.666667pt;}
.y9_c00490{bottom:884.400000pt;}
.y8_c00490{bottom:912.933333pt;}
.y7_c00490{bottom:943.200000pt;}
.y6_c00490{bottom:972.266667pt;}
.y5_c00490{bottom:1001.600000pt;}
.y4_c00490{bottom:1031.333333pt;}
.y3_c00490{bottom:1060.000000pt;}
.y2_c00490{bottom:1090.000000pt;}
.y1_c00490{bottom:1119.333333pt;}
.h3_c00490{height:11.733399pt;}
.h4_c00490{height:38.937500pt;}
.h1_c00490{height:108.041667pt;}
.h2_c00490{height:114.794271pt;}
.h0_c00490{height:1212.000000pt;}
.w2_c00490{width:93.222667pt;}
.w1_c00490{width:768.666667pt;}
.w0_c00490{width:768.933333pt;}
.x0_c00490{left:0.000000pt;}
.x6_c00490{left:18.400000pt;}
.x5_c00490{left:19.466667pt;}
.x4_c00490{left:20.933333pt;}
.x3_c00490{left:22.800000pt;}
.x2_c00490{left:24.266667pt;}
.x8_c00490{left:25.466667pt;}
.x1_c00490{left:26.666667pt;}
.x7_c00490{left:28.133333pt;}
.x9_c00490{left:29.600000pt;}
.xb_c00490{left:341.634888pt;}
.xa_c00490{left:486.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_346acd0bb31860a65e9a0c8c.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_eae623103037e9a11a3b60b7.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00491;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls1_c00491{letter-spacing:0.000000px;}
.ls0_c00491{letter-spacing:2.664000px;}
.ls2_c00491{letter-spacing:3.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00491{word-spacing:-54.000000px;}
.ws1_c00491{word-spacing:-20.244000px;}
.ws0_c00491{word-spacing:-18.798000px;}
.ws3_c00491{word-spacing:0.000000px;}
._31_c00491{margin-left:-29.454000px;}
._2e_c00491{margin-left:-18.144000px;}
._10_c00491{margin-left:-17.088000px;}
._a_c00491{margin-left:-15.573000px;}
._27_c00491{margin-left:-13.728000px;}
._11_c00491{margin-left:-11.520000px;}
._12_c00491{margin-left:-9.504000px;}
._2a_c00491{margin-left:-7.848000px;}
._21_c00491{margin-left:-6.048000px;}
._23_c00491{margin-left:-5.028000px;}
._3_c00491{margin-left:-3.354000px;}
._1_c00491{margin-left:-2.106000px;}
._5_c00491{margin-left:-1.014000px;}
._1b_c00491{width:1.152000px;}
._7_c00491{width:2.184000px;}
._14_c00491{width:3.210000px;}
._6_c00491{width:4.524000px;}
._15_c00491{width:5.820000px;}
._16_c00491{width:7.296000px;}
._13_c00491{width:8.988000px;}
._18_c00491{width:10.284000px;}
._2f_c00491{width:11.595000px;}
._2_c00491{width:12.948000px;}
._1c_c00491{width:14.808000px;}
._19_c00491{width:16.704000px;}
._40_c00491{width:17.760000px;}
._0_c00491{width:19.005000px;}
._17_c00491{width:20.694000px;}
._26_c00491{width:21.732000px;}
._2d_c00491{width:24.174000px;}
._1a_c00491{width:26.136000px;}
._f_c00491{width:27.720000px;}
._1d_c00491{width:30.048000px;}
._20_c00491{width:31.734000px;}
._4_c00491{width:33.228000px;}
._1e_c00491{width:34.998000px;}
._9_c00491{width:36.087000px;}
._3f_c00491{width:38.148000px;}
._1f_c00491{width:39.384000px;}
._d_c00491{width:41.418000px;}
._28_c00491{width:43.620000px;}
._e_c00491{width:44.772000px;}
._2c_c00491{width:46.428000px;}
._c_c00491{width:47.658000px;}
._35_c00491{width:50.304000px;}
._29_c00491{width:51.360000px;}
._2b_c00491{width:53.748000px;}
._8_c00491{width:55.068000px;}
._3d_c00491{width:56.076000px;}
._34_c00491{width:57.852000px;}
._38_c00491{width:60.900000px;}
._25_c00491{width:62.796000px;}
._32_c00491{width:64.776000px;}
._3e_c00491{width:66.048000px;}
._3b_c00491{width:67.128000px;}
._b_c00491{width:68.694000px;}
._3c_c00491{width:71.052000px;}
._33_c00491{width:75.558000px;}
._37_c00491{width:77.583000px;}
._36_c00491{width:79.872000px;}
._39_c00491{width:84.768000px;}
._3a_c00491{width:86.688000px;}
._30_c00491{width:89.970000px;}
._24_c00491{width:120.951000px;}
._22_c00491{width:136.287000px;}
.fc2_c00491{color:transparent;}
.fc1_c00491{color:rgb(128,128,128);}
.fc0_c00491{color:rgb(0,0,0);}
.fs4_c00491{font-size:42.000000px;}
.fs6_c00491{font-size:48.000000px;}
.fs1_c00491{font-size:78.000000px;}
.fs3_c00491{font-size:84.000000px;}
.fs0_c00491{font-size:87.000000px;}
.fs2_c00491{font-size:96.000000px;}
.fs5_c00491{font-size:102.000000px;}
.y0_c00491{bottom:0.000000px;}
.y2c_c00491{bottom:3.105000px;}
.y2b_c00491{bottom:7.228357px;}
.y2a_c00491{bottom:134.280000px;}
.y29_c00491{bottom:168.780000px;}
.y28_c00491{bottom:202.230000px;}
.y27_c00491{bottom:236.280000px;}
.y7_c00491{bottom:252.480000px;}
.y26_c00491{bottom:270.030000px;}
.y25_c00491{bottom:303.480000px;}
.y24_c00491{bottom:337.830000px;}
.y23_c00491{bottom:370.680000px;}
.y22_c00491{bottom:404.430000px;}
.y21_c00491{bottom:438.480000px;}
.y20_c00491{bottom:471.930000px;}
.y1f_c00491{bottom:505.680000px;}
.y1e_c00491{bottom:539.430000px;}
.y1d_c00491{bottom:572.730000px;}
.y1c_c00491{bottom:605.430000px;}
.y1b_c00491{bottom:639.180000px;}
.y1a_c00491{bottom:673.080000px;}
.y19_c00491{bottom:706.080000px;}
.y18_c00491{bottom:739.080000px;}
.y17_c00491{bottom:773.580000px;}
.y16_c00491{bottom:807.930000px;}
.y15_c00491{bottom:840.330000px;}
.y14_c00491{bottom:874.530000px;}
.y13_c00491{bottom:907.830000px;}
.y12_c00491{bottom:940.680000px;}
.y11_c00491{bottom:974.430000px;}
.y10_c00491{bottom:1006.830000px;}
.yf_c00491{bottom:1040.280000px;}
.ye_c00491{bottom:1072.680000px;}
.yd_c00491{bottom:1106.430000px;}
.y6_c00491{bottom:1128.030000px;}
.yc_c00491{bottom:1139.430000px;}
.y5_c00491{bottom:1158.630000px;}
.yb_c00491{bottom:1172.880000px;}
.y4_c00491{bottom:1186.980000px;}
.ya_c00491{bottom:1205.580000px;}
.y3_c00491{bottom:1216.080000px;}
.y9_c00491{bottom:1239.030000px;}
.y2_c00491{bottom:1245.780000px;}
.y8_c00491{bottom:1271.730000px;}
.y1_c00491{bottom:1273.680000px;}
.h7_c00491{height:13.200074px;}
.h8_c00491{height:43.804688px;}
.h6_c00491{height:53.176758px;}
.h4_c00491{height:91.291992px;}
.h3_c00491{height:98.756836px;}
.h2_c00491{height:110.151855px;}
.h5_c00491{height:121.546875px;}
.h0_c00491{height:1382.700000px;}
.h1_c00491{height:1383.000000px;}
.w2_c00491{width:104.875500px;}
.w0_c00491{width:863.175000px;}
.w1_c00491{width:863.250000px;}
.x0_c00491{left:0.000000px;}
.x2_c00491{left:32.400000px;}
.x3_c00491{left:34.800000px;}
.x5_c00491{left:37.050000px;}
.x1_c00491{left:45.600000px;}
.x4_c00491{left:62.100000px;}
.x6_c00491{left:161.700000px;}
.xd_c00491{left:254.700000px;}
.xc_c00491{left:255.750000px;}
.xb_c00491{left:256.800000px;}
.x9_c00491{left:258.450000px;}
.x8_c00491{left:259.950000px;}
.x7_c00491{left:261.150000px;}
.xa_c00491{left:307.050000px;}
.xe_c00491{left:383.401749px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls1_c00491{letter-spacing:0.000000pt;}
.ls0_c00491{letter-spacing:2.368000pt;}
.ls2_c00491{letter-spacing:2.666667pt;}
.ws2_c00491{word-spacing:-48.000000pt;}
.ws1_c00491{word-spacing:-17.994667pt;}
.ws0_c00491{word-spacing:-16.709333pt;}
.ws3_c00491{word-spacing:0.000000pt;}
._31_c00491{margin-left:-26.181333pt;}
._2e_c00491{margin-left:-16.128000pt;}
._10_c00491{margin-left:-15.189333pt;}
._a_c00491{margin-left:-13.842667pt;}
._27_c00491{margin-left:-12.202667pt;}
._11_c00491{margin-left:-10.240000pt;}
._12_c00491{margin-left:-8.448000pt;}
._2a_c00491{margin-left:-6.976000pt;}
._21_c00491{margin-left:-5.376000pt;}
._23_c00491{margin-left:-4.469333pt;}
._3_c00491{margin-left:-2.981333pt;}
._1_c00491{margin-left:-1.872000pt;}
._5_c00491{margin-left:-0.901333pt;}
._1b_c00491{width:1.024000pt;}
._7_c00491{width:1.941333pt;}
._14_c00491{width:2.853333pt;}
._6_c00491{width:4.021333pt;}
._15_c00491{width:5.173333pt;}
._16_c00491{width:6.485333pt;}
._13_c00491{width:7.989333pt;}
._18_c00491{width:9.141333pt;}
._2f_c00491{width:10.306667pt;}
._2_c00491{width:11.509333pt;}
._1c_c00491{width:13.162667pt;}
._19_c00491{width:14.848000pt;}
._40_c00491{width:15.786667pt;}
._0_c00491{width:16.893333pt;}
._17_c00491{width:18.394667pt;}
._26_c00491{width:19.317333pt;}
._2d_c00491{width:21.488000pt;}
._1a_c00491{width:23.232000pt;}
._f_c00491{width:24.640000pt;}
._1d_c00491{width:26.709333pt;}
._20_c00491{width:28.208000pt;}
._4_c00491{width:29.536000pt;}
._1e_c00491{width:31.109333pt;}
._9_c00491{width:32.077333pt;}
._3f_c00491{width:33.909333pt;}
._1f_c00491{width:35.008000pt;}
._d_c00491{width:36.816000pt;}
._28_c00491{width:38.773333pt;}
._e_c00491{width:39.797333pt;}
._2c_c00491{width:41.269333pt;}
._c_c00491{width:42.362667pt;}
._35_c00491{width:44.714667pt;}
._29_c00491{width:45.653333pt;}
._2b_c00491{width:47.776000pt;}
._8_c00491{width:48.949333pt;}
._3d_c00491{width:49.845333pt;}
._34_c00491{width:51.424000pt;}
._38_c00491{width:54.133333pt;}
._25_c00491{width:55.818667pt;}
._32_c00491{width:57.578667pt;}
._3e_c00491{width:58.709333pt;}
._3b_c00491{width:59.669333pt;}
._b_c00491{width:61.061333pt;}
._3c_c00491{width:63.157333pt;}
._33_c00491{width:67.162667pt;}
._37_c00491{width:68.962667pt;}
._36_c00491{width:70.997333pt;}
._39_c00491{width:75.349333pt;}
._3a_c00491{width:77.056000pt;}
._30_c00491{width:79.973333pt;}
._24_c00491{width:107.512000pt;}
._22_c00491{width:121.144000pt;}
.fs4_c00491{font-size:37.333333pt;}
.fs6_c00491{font-size:42.666667pt;}
.fs1_c00491{font-size:69.333333pt;}
.fs3_c00491{font-size:74.666667pt;}
.fs0_c00491{font-size:77.333333pt;}
.fs2_c00491{font-size:85.333333pt;}
.fs5_c00491{font-size:90.666667pt;}
.y0_c00491{bottom:0.000000pt;}
.y2c_c00491{bottom:2.760000pt;}
.y2b_c00491{bottom:6.425206pt;}
.y2a_c00491{bottom:119.360000pt;}
.y29_c00491{bottom:150.026667pt;}
.y28_c00491{bottom:179.760000pt;}
.y27_c00491{bottom:210.026667pt;}
.y7_c00491{bottom:224.426667pt;}
.y26_c00491{bottom:240.026667pt;}
.y25_c00491{bottom:269.760000pt;}
.y24_c00491{bottom:300.293333pt;}
.y23_c00491{bottom:329.493333pt;}
.y22_c00491{bottom:359.493333pt;}
.y21_c00491{bottom:389.760000pt;}
.y20_c00491{bottom:419.493333pt;}
.y1f_c00491{bottom:449.493333pt;}
.y1e_c00491{bottom:479.493333pt;}
.y1d_c00491{bottom:509.093333pt;}
.y1c_c00491{bottom:538.160000pt;}
.y1b_c00491{bottom:568.160000pt;}
.y1a_c00491{bottom:598.293333pt;}
.y19_c00491{bottom:627.626667pt;}
.y18_c00491{bottom:656.960000pt;}
.y17_c00491{bottom:687.626667pt;}
.y16_c00491{bottom:718.160000pt;}
.y15_c00491{bottom:746.960000pt;}
.y14_c00491{bottom:777.360000pt;}
.y13_c00491{bottom:806.960000pt;}
.y12_c00491{bottom:836.160000pt;}
.y11_c00491{bottom:866.160000pt;}
.y10_c00491{bottom:894.960000pt;}
.yf_c00491{bottom:924.693333pt;}
.ye_c00491{bottom:953.493333pt;}
.yd_c00491{bottom:983.493333pt;}
.y6_c00491{bottom:1002.693333pt;}
.yc_c00491{bottom:1012.826667pt;}
.y5_c00491{bottom:1029.893333pt;}
.yb_c00491{bottom:1042.560000pt;}
.y4_c00491{bottom:1055.093333pt;}
.ya_c00491{bottom:1071.626667pt;}
.y3_c00491{bottom:1080.960000pt;}
.y9_c00491{bottom:1101.360000pt;}
.y2_c00491{bottom:1107.360000pt;}
.y8_c00491{bottom:1130.426667pt;}
.y1_c00491{bottom:1132.160000pt;}
.h7_c00491{height:11.733399pt;}
.h8_c00491{height:38.937500pt;}
.h6_c00491{height:47.268229pt;}
.h4_c00491{height:81.148438pt;}
.h3_c00491{height:87.783854pt;}
.h2_c00491{height:97.912760pt;}
.h5_c00491{height:108.041667pt;}
.h0_c00491{height:1229.066667pt;}
.h1_c00491{height:1229.333333pt;}
.w2_c00491{width:93.222667pt;}
.w0_c00491{width:767.266667pt;}
.w1_c00491{width:767.333333pt;}
.x0_c00491{left:0.000000pt;}
.x2_c00491{left:28.800000pt;}
.x3_c00491{left:30.933333pt;}
.x5_c00491{left:32.933333pt;}
.x1_c00491{left:40.533333pt;}
.x4_c00491{left:55.200000pt;}
.x6_c00491{left:143.733333pt;}
.xd_c00491{left:226.400000pt;}
.xc_c00491{left:227.333333pt;}
.xb_c00491{left:228.266667pt;}
.x9_c00491{left:229.733333pt;}
.x8_c00491{left:231.066667pt;}
.x7_c00491{left:232.133333pt;}
.xa_c00491{left:272.933333pt;}
.xe_c00491{left:340.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_550950cb7607d82ea290310d.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_eefae302398b87d30927dd63.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_61dcf577cd7af32c9da7fabe.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls2_c00492{letter-spacing:0.000000px;}
.ls3_c00492{letter-spacing:3.000000px;}
.ls0_c00492{letter-spacing:8.520000px;}
.ls1_c00492{letter-spacing:18.204000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-54.000000px;}
.ws1_c00492{word-spacing:-23.136000px;}
.ws2_c00492{word-spacing:0.000000px;}
._38_c00492{margin-left:-56.160000px;}
._34_c00492{margin-left:-32.640000px;}
._2a_c00492{margin-left:-17.568000px;}
._37_c00492{margin-left:-14.304000px;}
._30_c00492{margin-left:-13.128000px;}
._28_c00492{margin-left:-11.424000px;}
._f_c00492{margin-left:-9.408000px;}
._2d_c00492{margin-left:-7.944000px;}
._13_c00492{margin-left:-6.912000px;}
._3a_c00492{margin-left:-5.856000px;}
._14_c00492{margin-left:-4.608000px;}
._1d_c00492{margin-left:-2.592000px;}
._18_c00492{margin-left:-1.056000px;}
._6_c00492{width:1.248000px;}
._4_c00492{width:2.688000px;}
._2_c00492{width:4.128000px;}
._0_c00492{width:5.280000px;}
._3_c00492{width:7.008000px;}
._1_c00492{width:8.544000px;}
._27_c00492{width:9.888000px;}
._15_c00492{width:11.328000px;}
._25_c00492{width:12.384000px;}
._9_c00492{width:13.440000px;}
._5_c00492{width:14.976000px;}
._8_c00492{width:16.704000px;}
._24_c00492{width:18.912000px;}
._23_c00492{width:19.968000px;}
._1c_c00492{width:21.696000px;}
._2e_c00492{width:24.288000px;}
._1b_c00492{width:25.440000px;}
._3c_c00492{width:26.568000px;}
._22_c00492{width:27.648000px;}
._35_c00492{width:29.280000px;}
._19_c00492{width:30.720000px;}
._17_c00492{width:32.544000px;}
._b_c00492{width:34.752000px;}
._c_c00492{width:36.192000px;}
._1e_c00492{width:37.440000px;}
._11_c00492{width:38.688000px;}
._a_c00492{width:40.608000px;}
._21_c00492{width:42.528000px;}
._d_c00492{width:44.736000px;}
._e_c00492{width:45.888000px;}
._10_c00492{width:47.136000px;}
._7_c00492{width:49.152000px;}
._12_c00492{width:50.400000px;}
._31_c00492{width:53.664000px;}
._16_c00492{width:55.392000px;}
._26_c00492{width:56.664000px;}
._20_c00492{width:57.888000px;}
._1f_c00492{width:59.328000px;}
._33_c00492{width:60.864000px;}
._2c_c00492{width:62.016000px;}
._29_c00492{width:65.088000px;}
._1a_c00492{width:67.680000px;}
._3b_c00492{width:71.712000px;}
._2b_c00492{width:73.728000px;}
._39_c00492{width:75.360000px;}
._32_c00492{width:77.280000px;}
._36_c00492{width:140.712000px;}
._2f_c00492{width:360.336000px;}
._3e_c00492{width:863.136000px;}
._3d_c00492{width:906.528000px;}
.fc2_c00492{color:transparent;}
.fc1_c00492{color:rgb(128,128,128);}
.fc0_c00492{color:rgb(0,0,0);}
.fs4_c00492{font-size:48.000000px;}
.fs1_c00492{font-size:84.000000px;}
.fs0_c00492{font-size:96.000000px;}
.fs2_c00492{font-size:102.000000px;}
.fs3_c00492{font-size:105.000000px;}
.y0_c00492{bottom:0.000000px;}
.y25_c00492{bottom:3.105000px;}
.y24_c00492{bottom:7.228369px;}
.y23_c00492{bottom:147.420000px;}
.y22_c00492{bottom:181.620000px;}
.y21_c00492{bottom:215.970000px;}
.y20_c00492{bottom:251.370000px;}
.y1f_c00492{bottom:285.570000px;}
.y1e_c00492{bottom:317.970000px;}
.y1d_c00492{bottom:352.320000px;}
.y1c_c00492{bottom:385.470000px;}
.y1b_c00492{bottom:419.220000px;}
.y1a_c00492{bottom:452.820000px;}
.y19_c00492{bottom:486.270000px;}
.y18_c00492{bottom:520.470000px;}
.y17_c00492{bottom:553.770000px;}
.y16_c00492{bottom:589.170000px;}
.y15_c00492{bottom:622.620000px;}
.y14_c00492{bottom:655.320000px;}
.y13_c00492{bottom:688.470000px;}
.y12_c00492{bottom:721.920000px;}
.y11_c00492{bottom:755.520000px;}
.y10_c00492{bottom:788.970000px;}
.yf_c00492{bottom:822.420000px;}
.ye_c00492{bottom:855.120000px;}
.yd_c00492{bottom:888.870000px;}
.yc_c00492{bottom:921.720000px;}
.yb_c00492{bottom:955.770000px;}
.ya_c00492{bottom:988.170000px;}
.y9_c00492{bottom:1021.920000px;}
.y8_c00492{bottom:1055.970000px;}
.y7_c00492{bottom:1088.670000px;}
.y6_c00492{bottom:1121.820000px;}
.y5_c00492{bottom:1154.520000px;}
.y4_c00492{bottom:1187.970000px;}
.y3_c00492{bottom:1220.970000px;}
.y2_c00492{bottom:1254.420000px;}
.y1_c00492{bottom:1287.270000px;}
.h4_c00492{height:13.200073px;}
.h5_c00492{height:43.804688px;}
.h2_c00492{height:121.546875px;}
.h3_c00492{height:132.941895px;}
.h0_c00492{height:1383.450000px;}
.h1_c00492{height:1383.750000px;}
.w2_c00492{width:104.875500px;}
.w0_c00492{width:878.025000px;}
.w1_c00492{width:878.250000px;}
.x0_c00492{left:0.000000px;}
.x4_c00492{left:15.450000px;}
.x3_c00492{left:16.500000px;}
.x2_c00492{left:18.000000px;}
.x1_c00492{left:19.200000px;}
.x5_c00492{left:20.250000px;}
.x7_c00492{left:22.950000px;}
.x9_c00492{left:25.050000px;}
.xb_c00492{left:26.700000px;}
.xa_c00492{left:27.750000px;}
.x8_c00492{left:59.100000px;}
.x6_c00492{left:85.650000px;}
.xc_c00492{left:390.826721px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls2_c00492{letter-spacing:0.000000pt;}
.ls3_c00492{letter-spacing:2.666667pt;}
.ls0_c00492{letter-spacing:7.573333pt;}
.ls1_c00492{letter-spacing:16.181333pt;}
.ws0_c00492{word-spacing:-48.000000pt;}
.ws1_c00492{word-spacing:-20.565333pt;}
.ws2_c00492{word-spacing:0.000000pt;}
._38_c00492{margin-left:-49.920000pt;}
._34_c00492{margin-left:-29.013333pt;}
._2a_c00492{margin-left:-15.616000pt;}
._37_c00492{margin-left:-12.714667pt;}
._30_c00492{margin-left:-11.669333pt;}
._28_c00492{margin-left:-10.154667pt;}
._f_c00492{margin-left:-8.362667pt;}
._2d_c00492{margin-left:-7.061333pt;}
._13_c00492{margin-left:-6.144000pt;}
._3a_c00492{margin-left:-5.205333pt;}
._14_c00492{margin-left:-4.096000pt;}
._1d_c00492{margin-left:-2.304000pt;}
._18_c00492{margin-left:-0.938667pt;}
._6_c00492{width:1.109333pt;}
._4_c00492{width:2.389333pt;}
._2_c00492{width:3.669333pt;}
._0_c00492{width:4.693333pt;}
._3_c00492{width:6.229333pt;}
._1_c00492{width:7.594667pt;}
._27_c00492{width:8.789333pt;}
._15_c00492{width:10.069333pt;}
._25_c00492{width:11.008000pt;}
._9_c00492{width:11.946667pt;}
._5_c00492{width:13.312000pt;}
._8_c00492{width:14.848000pt;}
._24_c00492{width:16.810667pt;}
._23_c00492{width:17.749333pt;}
._1c_c00492{width:19.285333pt;}
._2e_c00492{width:21.589333pt;}
._1b_c00492{width:22.613333pt;}
._3c_c00492{width:23.616000pt;}
._22_c00492{width:24.576000pt;}
._35_c00492{width:26.026667pt;}
._19_c00492{width:27.306667pt;}
._17_c00492{width:28.928000pt;}
._b_c00492{width:30.890667pt;}
._c_c00492{width:32.170667pt;}
._1e_c00492{width:33.280000pt;}
._11_c00492{width:34.389333pt;}
._a_c00492{width:36.096000pt;}
._21_c00492{width:37.802667pt;}
._d_c00492{width:39.765333pt;}
._e_c00492{width:40.789333pt;}
._10_c00492{width:41.898667pt;}
._7_c00492{width:43.690667pt;}
._12_c00492{width:44.800000pt;}
._31_c00492{width:47.701333pt;}
._16_c00492{width:49.237333pt;}
._26_c00492{width:50.368000pt;}
._20_c00492{width:51.456000pt;}
._1f_c00492{width:52.736000pt;}
._33_c00492{width:54.101333pt;}
._2c_c00492{width:55.125333pt;}
._29_c00492{width:57.856000pt;}
._1a_c00492{width:60.160000pt;}
._3b_c00492{width:63.744000pt;}
._2b_c00492{width:65.536000pt;}
._39_c00492{width:66.986667pt;}
._32_c00492{width:68.693333pt;}
._36_c00492{width:125.077333pt;}
._2f_c00492{width:320.298667pt;}
._3e_c00492{width:767.232000pt;}
._3d_c00492{width:805.802667pt;}
.fs4_c00492{font-size:42.666667pt;}
.fs1_c00492{font-size:74.666667pt;}
.fs0_c00492{font-size:85.333333pt;}
.fs2_c00492{font-size:90.666667pt;}
.fs3_c00492{font-size:93.333333pt;}
.y0_c00492{bottom:0.000000pt;}
.y25_c00492{bottom:2.760000pt;}
.y24_c00492{bottom:6.425217pt;}
.y23_c00492{bottom:131.040000pt;}
.y22_c00492{bottom:161.440000pt;}
.y21_c00492{bottom:191.973333pt;}
.y20_c00492{bottom:223.440000pt;}
.y1f_c00492{bottom:253.840000pt;}
.y1e_c00492{bottom:282.640000pt;}
.y1d_c00492{bottom:313.173333pt;}
.y1c_c00492{bottom:342.640000pt;}
.y1b_c00492{bottom:372.640000pt;}
.y1a_c00492{bottom:402.506667pt;}
.y19_c00492{bottom:432.240000pt;}
.y18_c00492{bottom:462.640000pt;}
.y17_c00492{bottom:492.240000pt;}
.y16_c00492{bottom:523.706667pt;}
.y15_c00492{bottom:553.440000pt;}
.y14_c00492{bottom:582.506667pt;}
.y13_c00492{bottom:611.973333pt;}
.y12_c00492{bottom:641.706667pt;}
.y11_c00492{bottom:671.573333pt;}
.y10_c00492{bottom:701.306667pt;}
.yf_c00492{bottom:731.040000pt;}
.ye_c00492{bottom:760.106667pt;}
.yd_c00492{bottom:790.106667pt;}
.yc_c00492{bottom:819.306667pt;}
.yb_c00492{bottom:849.573333pt;}
.ya_c00492{bottom:878.373333pt;}
.y9_c00492{bottom:908.373333pt;}
.y8_c00492{bottom:938.640000pt;}
.y7_c00492{bottom:967.706667pt;}
.y6_c00492{bottom:997.173333pt;}
.y5_c00492{bottom:1026.240000pt;}
.y4_c00492{bottom:1055.973333pt;}
.y3_c00492{bottom:1085.306667pt;}
.y2_c00492{bottom:1115.040000pt;}
.y1_c00492{bottom:1144.240000pt;}
.h4_c00492{height:11.733399pt;}
.h5_c00492{height:38.937500pt;}
.h2_c00492{height:108.041667pt;}
.h3_c00492{height:118.170573pt;}
.h0_c00492{height:1229.733333pt;}
.h1_c00492{height:1230.000000pt;}
.w2_c00492{width:93.222667pt;}
.w0_c00492{width:780.466667pt;}
.w1_c00492{width:780.666667pt;}
.x0_c00492{left:0.000000pt;}
.x4_c00492{left:13.733333pt;}
.x3_c00492{left:14.666667pt;}
.x2_c00492{left:16.000000pt;}
.x1_c00492{left:17.066667pt;}
.x5_c00492{left:18.000000pt;}
.x7_c00492{left:20.400000pt;}
.x9_c00492{left:22.266667pt;}
.xb_c00492{left:23.733333pt;}
.xa_c00492{left:24.666667pt;}
.x8_c00492{left:52.533333pt;}
.x6_c00492{left:76.133333pt;}
.xc_c00492{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6d0fc9e0c5b084044514320.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_32531d95d4ce98819a58563d.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00493;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.ls1_c00493{letter-spacing:3.000000px;}
.ls2_c00493{letter-spacing:48.000000px;}
.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:-71.136000px;}
.ws0_c00493{word-spacing:-54.000000px;}
.ws3_c00493{word-spacing:-23.136000px;}
.ws1_c00493{word-spacing:-20.244000px;}
.ws4_c00493{word-spacing:0.000000px;}
._2b_c00493{margin-left:-36.768000px;}
._25_c00493{margin-left:-34.368000px;}
._2e_c00493{margin-left:-28.704000px;}
._23_c00493{margin-left:-24.600000px;}
._19_c00493{margin-left:-20.352000px;}
._34_c00493{margin-left:-19.296000px;}
._31_c00493{margin-left:-16.704000px;}
._18_c00493{margin-left:-12.576000px;}
._38_c00493{margin-left:-11.520000px;}
._3a_c00493{margin-left:-9.120000px;}
._35_c00493{margin-left:-8.064000px;}
._1f_c00493{margin-left:-6.336000px;}
._46_c00493{margin-left:-4.800000px;}
._32_c00493{margin-left:-3.744000px;}
._7_c00493{margin-left:-2.496000px;}
._c_c00493{margin-left:-1.056000px;}
._a_c00493{width:1.056000px;}
._0_c00493{width:2.208000px;}
._1_c00493{width:3.264000px;}
._3_c00493{width:4.320000px;}
._9_c00493{width:5.952000px;}
._30_c00493{width:7.104000px;}
._1a_c00493{width:8.160000px;}
._1c_c00493{width:9.216000px;}
._12_c00493{width:11.232000px;}
._11_c00493{width:12.768000px;}
._21_c00493{width:14.880000px;}
._4b_c00493{width:16.512000px;}
._26_c00493{width:18.144000px;}
._45_c00493{width:19.488000px;}
._4a_c00493{width:20.736000px;}
._2c_c00493{width:22.080000px;}
._33_c00493{width:23.544000px;}
._1e_c00493{width:25.824000px;}
._3b_c00493{width:27.936000px;}
._6_c00493{width:28.992000px;}
._5_c00493{width:30.048000px;}
._10_c00493{width:32.256000px;}
._47_c00493{width:33.504000px;}
._4_c00493{width:34.944000px;}
._8_c00493{width:36.096000px;}
._22_c00493{width:38.424000px;}
._2f_c00493{width:40.704000px;}
._1b_c00493{width:41.952000px;}
._16_c00493{width:43.008000px;}
._2_c00493{width:44.928000px;}
._17_c00493{width:47.520000px;}
._48_c00493{width:48.672000px;}
._b_c00493{width:49.824000px;}
._20_c00493{width:52.032000px;}
._15_c00493{width:54.048000px;}
._1d_c00493{width:55.200000px;}
._e_c00493{width:56.736000px;}
._39_c00493{width:57.888000px;}
._28_c00493{width:59.424000px;}
._f_c00493{width:60.480000px;}
._24_c00493{width:62.112000px;}
._41_c00493{width:63.552000px;}
._13_c00493{width:64.704000px;}
._4c_c00493{width:66.240000px;}
._d_c00493{width:67.488000px;}
._14_c00493{width:69.312000px;}
._36_c00493{width:71.616000px;}
._43_c00493{width:72.672000px;}
._27_c00493{width:74.208000px;}
._29_c00493{width:75.456000px;}
._3e_c00493{width:76.704000px;}
._3f_c00493{width:78.240000px;}
._3d_c00493{width:79.968000px;}
._40_c00493{width:81.984000px;}
._37_c00493{width:83.808000px;}
._42_c00493{width:85.344000px;}
._3c_c00493{width:86.688000px;}
._44_c00493{width:91.104000px;}
._2a_c00493{width:96.000000px;}
._2d_c00493{width:101.280000px;}
._49_c00493{width:261.984000px;}
.fc2_c00493{color:transparent;}
.fc1_c00493{color:rgb(128,128,128);}
.fc0_c00493{color:rgb(0,0,0);}
.fs3_c00493{font-size:48.000000px;}
.fs2_c00493{font-size:84.000000px;}
.fs0_c00493{font-size:96.000000px;}
.fs1_c00493{font-size:102.000000px;}
.y0_c00493{bottom:0.000000px;}
.y24_c00493{bottom:3.105000px;}
.y23_c00493{bottom:7.228371px;}
.y22_c00493{bottom:123.615000px;}
.y21_c00493{bottom:190.365000px;}
.y20_c00493{bottom:223.815000px;}
.y1f_c00493{bottom:259.665000px;}
.y1e_c00493{bottom:293.265000px;}
.y1d_c00493{bottom:327.765000px;}
.y1c_c00493{bottom:362.265000px;}
.y1b_c00493{bottom:396.015000px;}
.y1a_c00493{bottom:430.965000px;}
.y19_c00493{bottom:463.215000px;}
.y18_c00493{bottom:497.565000px;}
.y17_c00493{bottom:531.915000px;}
.y16_c00493{bottom:565.365000px;}
.y15_c00493{bottom:599.415000px;}
.y14_c00493{bottom:632.265000px;}
.y13_c00493{bottom:666.315000px;}
.y12_c00493{bottom:699.615000px;}
.y11_c00493{bottom:733.215000px;}
.y10_c00493{bottom:767.115000px;}
.yf_c00493{bottom:801.015000px;}
.ye_c00493{bottom:834.315000px;}
.yd_c00493{bottom:867.165000px;}
.yc_c00493{bottom:901.515000px;}
.yb_c00493{bottom:934.965000px;}
.ya_c00493{bottom:968.415000px;}
.y9_c00493{bottom:1001.115000px;}
.y8_c00493{bottom:1033.815000px;}
.y7_c00493{bottom:1067.265000px;}
.y6_c00493{bottom:1101.915000px;}
.y5_c00493{bottom:1134.765000px;}
.y4_c00493{bottom:1168.215000px;}
.y3_c00493{bottom:1201.965000px;}
.y2_c00493{bottom:1234.965000px;}
.y1_c00493{bottom:1268.415000px;}
.h4_c00493{height:13.200074px;}
.h5_c00493{height:43.804688px;}
.h2_c00493{height:121.546875px;}
.h3_c00493{height:122.146875px;}
.h0_c00493{height:1354.875000px;}
.h1_c00493{height:1355.250000px;}
.w2_c00493{width:104.875500px;}
.w0_c00493{width:845.625000px;}
.w1_c00493{width:846.000000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:235.650000px;}
.x3_c00493{left:236.700000px;}
.x2_c00493{left:237.900000px;}
.x4_c00493{left:239.400000px;}
.x5_c00493{left:241.200000px;}
.x8_c00493{left:265.950000px;}
.x7_c00493{left:274.500000px;}
.x6_c00493{left:312.300000px;}
.xa_c00493{left:374.626740px;}
.x9_c00493{left:756.750000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ls1_c00493{letter-spacing:2.666667pt;}
.ls2_c00493{letter-spacing:42.666667pt;}
.ws2_c00493{word-spacing:-63.232000pt;}
.ws0_c00493{word-spacing:-48.000000pt;}
.ws3_c00493{word-spacing:-20.565333pt;}
.ws1_c00493{word-spacing:-17.994667pt;}
.ws4_c00493{word-spacing:0.000000pt;}
._2b_c00493{margin-left:-32.682667pt;}
._25_c00493{margin-left:-30.549333pt;}
._2e_c00493{margin-left:-25.514667pt;}
._23_c00493{margin-left:-21.866667pt;}
._19_c00493{margin-left:-18.090667pt;}
._34_c00493{margin-left:-17.152000pt;}
._31_c00493{margin-left:-14.848000pt;}
._18_c00493{margin-left:-11.178667pt;}
._38_c00493{margin-left:-10.240000pt;}
._3a_c00493{margin-left:-8.106667pt;}
._35_c00493{margin-left:-7.168000pt;}
._1f_c00493{margin-left:-5.632000pt;}
._46_c00493{margin-left:-4.266667pt;}
._32_c00493{margin-left:-3.328000pt;}
._7_c00493{margin-left:-2.218667pt;}
._c_c00493{margin-left:-0.938667pt;}
._a_c00493{width:0.938667pt;}
._0_c00493{width:1.962667pt;}
._1_c00493{width:2.901333pt;}
._3_c00493{width:3.840000pt;}
._9_c00493{width:5.290667pt;}
._30_c00493{width:6.314667pt;}
._1a_c00493{width:7.253333pt;}
._1c_c00493{width:8.192000pt;}
._12_c00493{width:9.984000pt;}
._11_c00493{width:11.349333pt;}
._21_c00493{width:13.226667pt;}
._4b_c00493{width:14.677333pt;}
._26_c00493{width:16.128000pt;}
._45_c00493{width:17.322667pt;}
._4a_c00493{width:18.432000pt;}
._2c_c00493{width:19.626667pt;}
._33_c00493{width:20.928000pt;}
._1e_c00493{width:22.954667pt;}
._3b_c00493{width:24.832000pt;}
._6_c00493{width:25.770667pt;}
._5_c00493{width:26.709333pt;}
._10_c00493{width:28.672000pt;}
._47_c00493{width:29.781333pt;}
._4_c00493{width:31.061333pt;}
._8_c00493{width:32.085333pt;}
._22_c00493{width:34.154667pt;}
._2f_c00493{width:36.181333pt;}
._1b_c00493{width:37.290667pt;}
._16_c00493{width:38.229333pt;}
._2_c00493{width:39.936000pt;}
._17_c00493{width:42.240000pt;}
._48_c00493{width:43.264000pt;}
._b_c00493{width:44.288000pt;}
._20_c00493{width:46.250667pt;}
._15_c00493{width:48.042667pt;}
._1d_c00493{width:49.066667pt;}
._e_c00493{width:50.432000pt;}
._39_c00493{width:51.456000pt;}
._28_c00493{width:52.821333pt;}
._f_c00493{width:53.760000pt;}
._24_c00493{width:55.210667pt;}
._41_c00493{width:56.490667pt;}
._13_c00493{width:57.514667pt;}
._4c_c00493{width:58.880000pt;}
._d_c00493{width:59.989333pt;}
._14_c00493{width:61.610667pt;}
._36_c00493{width:63.658667pt;}
._43_c00493{width:64.597333pt;}
._27_c00493{width:65.962667pt;}
._29_c00493{width:67.072000pt;}
._3e_c00493{width:68.181333pt;}
._3f_c00493{width:69.546667pt;}
._3d_c00493{width:71.082667pt;}
._40_c00493{width:72.874667pt;}
._37_c00493{width:74.496000pt;}
._42_c00493{width:75.861333pt;}
._3c_c00493{width:77.056000pt;}
._44_c00493{width:80.981333pt;}
._2a_c00493{width:85.333333pt;}
._2d_c00493{width:90.026667pt;}
._49_c00493{width:232.874667pt;}
.fs3_c00493{font-size:42.666667pt;}
.fs2_c00493{font-size:74.666667pt;}
.fs0_c00493{font-size:85.333333pt;}
.fs1_c00493{font-size:90.666667pt;}
.y0_c00493{bottom:0.000000pt;}
.y24_c00493{bottom:2.760000pt;}
.y23_c00493{bottom:6.425219pt;}
.y22_c00493{bottom:109.880000pt;}
.y21_c00493{bottom:169.213333pt;}
.y20_c00493{bottom:198.946667pt;}
.y1f_c00493{bottom:230.813333pt;}
.y1e_c00493{bottom:260.680000pt;}
.y1d_c00493{bottom:291.346667pt;}
.y1c_c00493{bottom:322.013333pt;}
.y1b_c00493{bottom:352.013333pt;}
.y1a_c00493{bottom:383.080000pt;}
.y19_c00493{bottom:411.746667pt;}
.y18_c00493{bottom:442.280000pt;}
.y17_c00493{bottom:472.813333pt;}
.y16_c00493{bottom:502.546667pt;}
.y15_c00493{bottom:532.813333pt;}
.y14_c00493{bottom:562.013333pt;}
.y13_c00493{bottom:592.280000pt;}
.y12_c00493{bottom:621.880000pt;}
.y11_c00493{bottom:651.746667pt;}
.y10_c00493{bottom:681.880000pt;}
.yf_c00493{bottom:712.013333pt;}
.ye_c00493{bottom:741.613333pt;}
.yd_c00493{bottom:770.813333pt;}
.yc_c00493{bottom:801.346667pt;}
.yb_c00493{bottom:831.080000pt;}
.ya_c00493{bottom:860.813333pt;}
.y9_c00493{bottom:889.880000pt;}
.y8_c00493{bottom:918.946667pt;}
.y7_c00493{bottom:948.680000pt;}
.y6_c00493{bottom:979.480000pt;}
.y5_c00493{bottom:1008.680000pt;}
.y4_c00493{bottom:1038.413333pt;}
.y3_c00493{bottom:1068.413333pt;}
.y2_c00493{bottom:1097.746667pt;}
.y1_c00493{bottom:1127.480000pt;}
.h4_c00493{height:11.733399pt;}
.h5_c00493{height:38.937500pt;}
.h2_c00493{height:108.041667pt;}
.h3_c00493{height:108.575000pt;}
.h0_c00493{height:1204.333333pt;}
.h1_c00493{height:1204.666667pt;}
.w2_c00493{width:93.222667pt;}
.w0_c00493{width:751.666667pt;}
.w1_c00493{width:752.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:209.466667pt;}
.x3_c00493{left:210.400000pt;}
.x2_c00493{left:211.466667pt;}
.x4_c00493{left:212.800000pt;}
.x5_c00493{left:214.400000pt;}
.x8_c00493{left:236.400000pt;}
.x7_c00493{left:244.000000pt;}
.x6_c00493{left:277.600000pt;}
.xa_c00493{left:333.001546pt;}
.x9_c00493{left:672.666667pt;}
}





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

.ir_c00494:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_0eae4e7b2cb166ffbd2c4f6b.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_3734a47d0274e7f2594ed421.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_f02bc9726daf7e717dd0180d.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_697c4290857b4378687b2f0b.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;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_c00494;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00494{font-family:ff5_c00494;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls8_c00494{letter-spacing:-3.000000px;}
.ls6_c00494{letter-spacing:0.000000px;}
.ls2_c00494{letter-spacing:0.540000px;}
.ls9_c00494{letter-spacing:3.000000px;}
.ls5_c00494{letter-spacing:4.164000px;}
.ls4_c00494{letter-spacing:4.800000px;}
.ls3_c00494{letter-spacing:5.400000px;}
.ls7_c00494{letter-spacing:6.000000px;}
.ls0_c00494{letter-spacing:6.252000px;}
.ls1_c00494{letter-spacing:16.692000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:-25.939200px;}
.ws1_c00494{word-spacing:-20.244000px;}
.ws2_c00494{word-spacing:0.000000px;}
._4d_c00494{margin-left:-40.428000px;}
._3e_c00494{margin-left:-29.532000px;}
._54_c00494{margin-left:-28.272000px;}
._44_c00494{margin-left:-26.208000px;}
._40_c00494{margin-left:-24.480000px;}
._41_c00494{margin-left:-22.176000px;}
._17_c00494{margin-left:-20.736000px;}
._4f_c00494{margin-left:-19.584000px;}
._42_c00494{margin-left:-18.156000px;}
._48_c00494{margin-left:-16.624800px;}
._43_c00494{margin-left:-14.880000px;}
._51_c00494{margin-left:-13.375200px;}
._45_c00494{margin-left:-12.324000px;}
._27_c00494{margin-left:-11.280000px;}
._22_c00494{margin-left:-9.796800px;}
._25_c00494{margin-left:-7.416000px;}
._24_c00494{margin-left:-6.108000px;}
._f_c00494{margin-left:-5.040000px;}
._b_c00494{margin-left:-3.456000px;}
._1_c00494{margin-left:-1.440000px;}
._c_c00494{width:1.248000px;}
._3_c00494{width:2.784000px;}
._8_c00494{width:4.416000px;}
._6_c00494{width:6.144000px;}
._5_c00494{width:7.200000px;}
._4_c00494{width:9.216000px;}
._1b_c00494{width:11.028000px;}
._0_c00494{width:12.384000px;}
._13_c00494{width:14.208000px;}
._18_c00494{width:15.552000px;}
._3b_c00494{width:16.800000px;}
._12_c00494{width:18.720000px;}
._38_c00494{width:19.776000px;}
._3d_c00494{width:20.928000px;}
._49_c00494{width:23.367000px;}
._2a_c00494{width:25.200000px;}
._14_c00494{width:26.592000px;}
._3a_c00494{width:27.648000px;}
._37_c00494{width:29.760000px;}
._1d_c00494{width:30.816000px;}
._19_c00494{width:32.256000px;}
._10_c00494{width:33.360000px;}
._35_c00494{width:35.136000px;}
._34_c00494{width:36.912000px;}
._9_c00494{width:38.400000px;}
._1c_c00494{width:39.816000px;}
._2c_c00494{width:41.412000px;}
._7_c00494{width:42.912000px;}
._31_c00494{width:44.196000px;}
._3c_c00494{width:45.312000px;}
._58_c00494{width:46.620000px;}
._1a_c00494{width:47.712000px;}
._4b_c00494{width:48.864000px;}
._1e_c00494{width:50.040000px;}
._11_c00494{width:51.600000px;}
._46_c00494{width:54.124800px;}
._3f_c00494{width:55.728000px;}
._32_c00494{width:58.080000px;}
._20_c00494{width:60.192000px;}
._d_c00494{width:62.496000px;}
._a_c00494{width:64.032000px;}
._15_c00494{width:66.456000px;}
._1f_c00494{width:68.544000px;}
._36_c00494{width:71.148000px;}
._39_c00494{width:72.444000px;}
._53_c00494{width:73.704000px;}
._4c_c00494{width:84.132000px;}
._5a_c00494{width:85.540800px;}
._57_c00494{width:88.480800px;}
._2_c00494{width:94.752000px;}
._2e_c00494{width:103.296000px;}
._23_c00494{width:118.692000px;}
._2f_c00494{width:131.496000px;}
._16_c00494{width:155.880000px;}
._29_c00494{width:159.852000px;}
._2b_c00494{width:162.540000px;}
._e_c00494{width:167.856000px;}
._33_c00494{width:181.548000px;}
._47_c00494{width:190.171200px;}
._21_c00494{width:195.312000px;}
._26_c00494{width:252.156000px;}
._2d_c00494{width:276.540000px;}
._30_c00494{width:280.656000px;}
._28_c00494{width:346.740000px;}
._56_c00494{width:375.552000px;}
._55_c00494{width:422.512800px;}
._4e_c00494{width:434.688000px;}
._52_c00494{width:601.248000px;}
._59_c00494{width:605.088000px;}
._50_c00494{width:644.136000px;}
._4a_c00494{width:769.200000px;}
._5b_c00494{width:2052.288000px;}
.fc2_c00494{color:transparent;}
.fc1_c00494{color:rgb(128,128,128);}
.fc0_c00494{color:rgb(0,0,0);}
.fs6_c00494{font-size:48.000000px;}
.fs3_c00494{font-size:60.000000px;}
.fs2_c00494{font-size:67.200000px;}
.fs1_c00494{font-size:84.000000px;}
.fs0_c00494{font-size:96.000000px;}
.fs4_c00494{font-size:102.000000px;}
.fs5_c00494{font-size:105.000000px;}
.y0_c00494{bottom:0.000000px;}
.y27_c00494{bottom:3.105000px;}
.y26_c00494{bottom:7.228369px;}
.y25_c00494{bottom:108.270000px;}
.y24_c00494{bottom:140.070000px;}
.y23_c00494{bottom:175.470000px;}
.y22_c00494{bottom:211.170000px;}
.y21_c00494{bottom:242.970000px;}
.y20_c00494{bottom:278.670000px;}
.y1f_c00494{bottom:312.570000px;}
.y1e_c00494{bottom:345.570000px;}
.y1d_c00494{bottom:378.570000px;}
.y1c_c00494{bottom:412.770000px;}
.y1b_c00494{bottom:445.170000px;}
.y1a_c00494{bottom:479.820000px;}
.y19_c00494{bottom:513.270000px;}
.y18_c00494{bottom:547.320000px;}
.y17_c00494{bottom:580.470000px;}
.y16_c00494{bottom:614.520000px;}
.y15_c00494{bottom:649.020000px;}
.y14_c00494{bottom:682.020000px;}
.y13_c00494{bottom:715.470000px;}
.y12_c00494{bottom:748.920000px;}
.y11_c00494{bottom:782.370000px;}
.y10_c00494{bottom:815.670000px;}
.yf_c00494{bottom:848.820000px;}
.ye_c00494{bottom:882.270000px;}
.yd_c00494{bottom:914.970000px;}
.yc_c00494{bottom:948.720000px;}
.yb_c00494{bottom:981.420000px;}
.ya_c00494{bottom:1015.770000px;}
.y9_c00494{bottom:1049.220000px;}
.y8_c00494{bottom:1081.620000px;}
.y7_c00494{bottom:1114.020000px;}
.y6_c00494{bottom:1145.070000px;}
.y5_c00494{bottom:1164.720000px;}
.y4_c00494{bottom:1180.170000px;}
.y3_c00494{bottom:1214.220000px;}
.y2_c00494{bottom:1248.420000px;}
.y1_c00494{bottom:1281.420000px;}
.h5_c00494{height:13.200073px;}
.h6_c00494{height:43.804688px;}
.h3_c00494{height:98.314453px;}
.h2_c00494{height:121.546875px;}
.h4_c00494{height:132.941895px;}
.h0_c00494{height:1383.450000px;}
.h1_c00494{height:1383.750000px;}
.w2_c00494{width:104.875500px;}
.w0_c00494{width:878.025000px;}
.w1_c00494{width:878.250000px;}
.x0_c00494{left:0.000000px;}
.xc_c00494{left:19.800000px;}
.xd_c00494{left:26.700000px;}
.xb_c00494{left:28.350000px;}
.xa_c00494{left:29.400000px;}
.x9_c00494{left:30.600000px;}
.x8_c00494{left:31.650000px;}
.x7_c00494{left:33.300000px;}
.x6_c00494{left:34.800000px;}
.x4_c00494{left:36.000000px;}
.x3_c00494{left:37.500000px;}
.x2_c00494{left:39.750000px;}
.x5_c00494{left:49.950000px;}
.x1_c00494{left:91.500000px;}
.xe_c00494{left:390.826721px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls8_c00494{letter-spacing:-2.666667pt;}
.ls6_c00494{letter-spacing:0.000000pt;}
.ls2_c00494{letter-spacing:0.480000pt;}
.ls9_c00494{letter-spacing:2.666667pt;}
.ls5_c00494{letter-spacing:3.701333pt;}
.ls4_c00494{letter-spacing:4.266667pt;}
.ls3_c00494{letter-spacing:4.800000pt;}
.ls7_c00494{letter-spacing:5.333333pt;}
.ls0_c00494{letter-spacing:5.557333pt;}
.ls1_c00494{letter-spacing:14.837333pt;}
.ws0_c00494{word-spacing:-23.057067pt;}
.ws1_c00494{word-spacing:-17.994667pt;}
.ws2_c00494{word-spacing:0.000000pt;}
._4d_c00494{margin-left:-35.936000pt;}
._3e_c00494{margin-left:-26.250667pt;}
._54_c00494{margin-left:-25.130667pt;}
._44_c00494{margin-left:-23.296000pt;}
._40_c00494{margin-left:-21.760000pt;}
._41_c00494{margin-left:-19.712000pt;}
._17_c00494{margin-left:-18.432000pt;}
._4f_c00494{margin-left:-17.408000pt;}
._42_c00494{margin-left:-16.138667pt;}
._48_c00494{margin-left:-14.777600pt;}
._43_c00494{margin-left:-13.226667pt;}
._51_c00494{margin-left:-11.889067pt;}
._45_c00494{margin-left:-10.954667pt;}
._27_c00494{margin-left:-10.026667pt;}
._22_c00494{margin-left:-8.708267pt;}
._25_c00494{margin-left:-6.592000pt;}
._24_c00494{margin-left:-5.429333pt;}
._f_c00494{margin-left:-4.480000pt;}
._b_c00494{margin-left:-3.072000pt;}
._1_c00494{margin-left:-1.280000pt;}
._c_c00494{width:1.109333pt;}
._3_c00494{width:2.474667pt;}
._8_c00494{width:3.925333pt;}
._6_c00494{width:5.461333pt;}
._5_c00494{width:6.400000pt;}
._4_c00494{width:8.192000pt;}
._1b_c00494{width:9.802667pt;}
._0_c00494{width:11.008000pt;}
._13_c00494{width:12.629333pt;}
._18_c00494{width:13.824000pt;}
._3b_c00494{width:14.933333pt;}
._12_c00494{width:16.640000pt;}
._38_c00494{width:17.578667pt;}
._3d_c00494{width:18.602667pt;}
._49_c00494{width:20.770667pt;}
._2a_c00494{width:22.400000pt;}
._14_c00494{width:23.637333pt;}
._3a_c00494{width:24.576000pt;}
._37_c00494{width:26.453333pt;}
._1d_c00494{width:27.392000pt;}
._19_c00494{width:28.672000pt;}
._10_c00494{width:29.653333pt;}
._35_c00494{width:31.232000pt;}
._34_c00494{width:32.810667pt;}
._9_c00494{width:34.133333pt;}
._1c_c00494{width:35.392000pt;}
._2c_c00494{width:36.810667pt;}
._7_c00494{width:38.144000pt;}
._31_c00494{width:39.285333pt;}
._3c_c00494{width:40.277333pt;}
._58_c00494{width:41.440000pt;}
._1a_c00494{width:42.410667pt;}
._4b_c00494{width:43.434667pt;}
._1e_c00494{width:44.480000pt;}
._11_c00494{width:45.866667pt;}
._46_c00494{width:48.110933pt;}
._3f_c00494{width:49.536000pt;}
._32_c00494{width:51.626667pt;}
._20_c00494{width:53.504000pt;}
._d_c00494{width:55.552000pt;}
._a_c00494{width:56.917333pt;}
._15_c00494{width:59.072000pt;}
._1f_c00494{width:60.928000pt;}
._36_c00494{width:63.242667pt;}
._39_c00494{width:64.394667pt;}
._53_c00494{width:65.514667pt;}
._4c_c00494{width:74.784000pt;}
._5a_c00494{width:76.036267pt;}
._57_c00494{width:78.649600pt;}
._2_c00494{width:84.224000pt;}
._2e_c00494{width:91.818667pt;}
._23_c00494{width:105.504000pt;}
._2f_c00494{width:116.885333pt;}
._16_c00494{width:138.560000pt;}
._29_c00494{width:142.090667pt;}
._2b_c00494{width:144.480000pt;}
._e_c00494{width:149.205333pt;}
._33_c00494{width:161.376000pt;}
._47_c00494{width:169.041067pt;}
._21_c00494{width:173.610667pt;}
._26_c00494{width:224.138667pt;}
._2d_c00494{width:245.813333pt;}
._30_c00494{width:249.472000pt;}
._28_c00494{width:308.213333pt;}
._56_c00494{width:333.824000pt;}
._55_c00494{width:375.566933pt;}
._4e_c00494{width:386.389333pt;}
._52_c00494{width:534.442667pt;}
._59_c00494{width:537.856000pt;}
._50_c00494{width:572.565333pt;}
._4a_c00494{width:683.733333pt;}
._5b_c00494{width:1824.256000pt;}
.fs6_c00494{font-size:42.666667pt;}
.fs3_c00494{font-size:53.333333pt;}
.fs2_c00494{font-size:59.733333pt;}
.fs1_c00494{font-size:74.666667pt;}
.fs0_c00494{font-size:85.333333pt;}
.fs4_c00494{font-size:90.666667pt;}
.fs5_c00494{font-size:93.333333pt;}
.y0_c00494{bottom:0.000000pt;}
.y27_c00494{bottom:2.760000pt;}
.y26_c00494{bottom:6.425217pt;}
.y25_c00494{bottom:96.240000pt;}
.y24_c00494{bottom:124.506667pt;}
.y23_c00494{bottom:155.973333pt;}
.y22_c00494{bottom:187.706667pt;}
.y21_c00494{bottom:215.973333pt;}
.y20_c00494{bottom:247.706667pt;}
.y1f_c00494{bottom:277.840000pt;}
.y1e_c00494{bottom:307.173333pt;}
.y1d_c00494{bottom:336.506667pt;}
.y1c_c00494{bottom:366.906667pt;}
.y1b_c00494{bottom:395.706667pt;}
.y1a_c00494{bottom:426.506667pt;}
.y19_c00494{bottom:456.240000pt;}
.y18_c00494{bottom:486.506667pt;}
.y17_c00494{bottom:515.973333pt;}
.y16_c00494{bottom:546.240000pt;}
.y15_c00494{bottom:576.906667pt;}
.y14_c00494{bottom:606.240000pt;}
.y13_c00494{bottom:635.973333pt;}
.y12_c00494{bottom:665.706667pt;}
.y11_c00494{bottom:695.440000pt;}
.y10_c00494{bottom:725.040000pt;}
.yf_c00494{bottom:754.506667pt;}
.ye_c00494{bottom:784.240000pt;}
.yd_c00494{bottom:813.306667pt;}
.yc_c00494{bottom:843.306667pt;}
.yb_c00494{bottom:872.373333pt;}
.ya_c00494{bottom:902.906667pt;}
.y9_c00494{bottom:932.640000pt;}
.y8_c00494{bottom:961.440000pt;}
.y7_c00494{bottom:990.240000pt;}
.y6_c00494{bottom:1017.840000pt;}
.y5_c00494{bottom:1035.306667pt;}
.y4_c00494{bottom:1049.040000pt;}
.y3_c00494{bottom:1079.306667pt;}
.y2_c00494{bottom:1109.706667pt;}
.y1_c00494{bottom:1139.040000pt;}
.h5_c00494{height:11.733399pt;}
.h6_c00494{height:38.937500pt;}
.h3_c00494{height:87.390625pt;}
.h2_c00494{height:108.041667pt;}
.h4_c00494{height:118.170573pt;}
.h0_c00494{height:1229.733333pt;}
.h1_c00494{height:1230.000000pt;}
.w2_c00494{width:93.222667pt;}
.w0_c00494{width:780.466667pt;}
.w1_c00494{width:780.666667pt;}
.x0_c00494{left:0.000000pt;}
.xc_c00494{left:17.600000pt;}
.xd_c00494{left:23.733333pt;}
.xb_c00494{left:25.200000pt;}
.xa_c00494{left:26.133333pt;}
.x9_c00494{left:27.200000pt;}
.x8_c00494{left:28.133333pt;}
.x7_c00494{left:29.600000pt;}
.x6_c00494{left:30.933333pt;}
.x4_c00494{left:32.000000pt;}
.x3_c00494{left:33.333333pt;}
.x2_c00494{left:35.333333pt;}
.x5_c00494{left:44.400000pt;}
.x1_c00494{left:81.333333pt;}
.xe_c00494{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99d03b14d95d5212dc291f6c.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_3f531197bc4e88e6ea518d0f.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_1e43c8750ae16d25f15633db.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_e5d5ee96056712b63b7a3aab.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00495;src:url('chunks/assets/font_edbc6410eb4576e17796020f.woff2')format("woff");}.ff5_c00495{font-family:ff5_c00495;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00495;src:url('chunks/assets/font_6e3533beecd3b92159bfd27a.woff2')format("woff");}.ff6_c00495{font-family:ff6_c00495;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00495;src:url('chunks/assets/font_2a507baf8c62a4ea223087a2.woff2')format("woff");}.ff7_c00495{font-family:ff7_c00495;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00495;src:url('chunks/assets/font_25812c3bd78259d423c1a15f.woff2')format("woff");}.ff8_c00495{font-family:ff8_c00495;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00495;src:url('chunks/assets/font_ca94734a09dc5cca8816f5d4.woff2')format("woff");}.ff9_c00495{font-family:ff9_c00495;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00495;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffa_c00495{font-family:ffa_c00495;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{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_c00495{vertical-align:0.000000px;}
.ls7_c00495{letter-spacing:-6.000000px;}
.ls8_c00495{letter-spacing:-3.000000px;}
.ls5_c00495{letter-spacing:0.000000px;}
.ls4_c00495{letter-spacing:4.800000px;}
.ls3_c00495{letter-spacing:13.800000px;}
.ls6_c00495{letter-spacing:15.000000px;}
.ls2_c00495{letter-spacing:29.700000px;}
.ls1_c00495{letter-spacing:33.768000px;}
.ls0_c00495{letter-spacing:67.800000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00495{word-spacing:-35.967000px;}
.ws0_c00495{word-spacing:-25.305000px;}
.ws2_c00495{word-spacing:-23.136000px;}
.ws4_c00495{word-spacing:-20.250000px;}
.ws1_c00495{word-spacing:-18.798000px;}
.ws5_c00495{word-spacing:0.000000px;}
._22_c00495{margin-left:-178.500000px;}
._23_c00495{margin-left:-57.660000px;}
._21_c00495{margin-left:-54.798000px;}
._2f_c00495{margin-left:-30.213000px;}
._a_c00495{margin-left:-24.729000px;}
._8_c00495{margin-left:-22.368000px;}
._3d_c00495{margin-left:-20.544000px;}
._18_c00495{margin-left:-17.673000px;}
._c_c00495{margin-left:-16.320000px;}
._3c_c00495{margin-left:-14.778000px;}
._3_c00495{margin-left:-13.224000px;}
._3e_c00495{margin-left:-10.656000px;}
._0_c00495{margin-left:-9.375000px;}
._4_c00495{margin-left:-8.265000px;}
._e_c00495{margin-left:-5.952000px;}
._17_c00495{margin-left:-4.836000px;}
._12_c00495{margin-left:-3.264000px;}
._1_c00495{margin-left:-2.028000px;}
._38_c00495{margin-left:-1.005000px;}
._20_c00495{width:1.080000px;}
._6_c00495{width:2.175000px;}
._1c_c00495{width:4.077000px;}
._10_c00495{width:5.184000px;}
._1d_c00495{width:6.927000px;}
._29_c00495{width:8.448000px;}
._11_c00495{width:9.696000px;}
._35_c00495{width:10.809000px;}
._2d_c00495{width:11.811000px;}
._3b_c00495{width:12.822000px;}
._39_c00495{width:14.055000px;}
._34_c00495{width:15.183000px;}
._2e_c00495{width:16.422000px;}
._13_c00495{width:17.772000px;}
._31_c00495{width:19.281000px;}
._25_c00495{width:20.406000px;}
._36_c00495{width:21.888000px;}
._15_c00495{width:24.624000px;}
._2c_c00495{width:26.154000px;}
._24_c00495{width:27.828000px;}
._37_c00495{width:29.889000px;}
._2_c00495{width:31.953000px;}
._16_c00495{width:33.072000px;}
._1b_c00495{width:35.139000px;}
._33_c00495{width:36.222000px;}
._14_c00495{width:37.986000px;}
._f_c00495{width:40.044000px;}
._2b_c00495{width:41.082000px;}
._19_c00495{width:42.735000px;}
._1a_c00495{width:45.030000px;}
._30_c00495{width:47.742000px;}
._2a_c00495{width:49.152000px;}
._32_c00495{width:51.120000px;}
._d_c00495{width:53.688000px;}
._1e_c00495{width:56.010000px;}
._1f_c00495{width:59.055000px;}
._3a_c00495{width:60.630000px;}
._27_c00495{width:62.496000px;}
._7_c00495{width:64.863000px;}
._26_c00495{width:66.912000px;}
._28_c00495{width:72.801000px;}
._5_c00495{width:75.690000px;}
._41_c00495{width:80.403000px;}
._9_c00495{width:124.608000px;}
._3f_c00495{width:146.400000px;}
._40_c00495{width:161.778000px;}
._b_c00495{width:321.504000px;}
.fc2_c00495{color:transparent;}
.fc1_c00495{color:rgb(128,128,128);}
.fc0_c00495{color:rgb(0,0,0);}
.fsa_c00495{font-size:48.000000px;}
.fs2_c00495{font-size:78.000000px;}
.fs3_c00495{font-size:87.000000px;}
.fs7_c00495{font-size:93.000000px;}
.fs4_c00495{font-size:96.000000px;}
.fs6_c00495{font-size:102.000000px;}
.fs0_c00495{font-size:105.000000px;}
.fs1_c00495{font-size:114.000000px;}
.fs5_c00495{font-size:117.000000px;}
.fs8_c00495{font-size:120.000000px;}
.fs9_c00495{font-size:420.000000px;}
.y0_c00495{bottom:0.000000px;}
.y35_c00495{bottom:3.105000px;}
.y34_c00495{bottom:7.228357px;}
.y33_c00495{bottom:99.180000px;}
.y32_c00495{bottom:131.280000px;}
.y31_c00495{bottom:165.780000px;}
.y30_c00495{bottom:200.430000px;}
.yf_c00495{bottom:224.130000px;}
.y2f_c00495{bottom:234.180000px;}
.ye_c00495{bottom:254.430000px;}
.y2e_c00495{bottom:265.980000px;}
.yd_c00495{bottom:283.530000px;}
.y2d_c00495{bottom:302.130000px;}
.yc_c00495{bottom:313.530000px;}
.y2c_c00495{bottom:336.180000px;}
.yb_c00495{bottom:342.930000px;}
.y2b_c00495{bottom:368.880000px;}
.ya_c00495{bottom:372.930000px;}
.y2a_c00495{bottom:402.330000px;}
.y9_c00495{bottom:402.930000px;}
.y8_c00495{bottom:432.330000px;}
.y29_c00495{bottom:437.430000px;}
.y7_c00495{bottom:462.480000px;}
.y28_c00495{bottom:470.430000px;}
.y6_c00495{bottom:491.430000px;}
.y27_c00495{bottom:504.330000px;}
.y5_c00495{bottom:521.880000px;}
.y26_c00495{bottom:540.780000px;}
.y25_c00495{bottom:572.730000px;}
.y24_c00495{bottom:606.930000px;}
.y23_c00495{bottom:640.530000px;}
.y22_c00495{bottom:673.680000px;}
.y21_c00495{bottom:707.430000px;}
.y20_c00495{bottom:741.180000px;}
.y1f_c00495{bottom:774.630000px;}
.y1e_c00495{bottom:807.930000px;}
.y1d_c00495{bottom:841.380000px;}
.y1c_c00495{bottom:874.830000px;}
.y1b_c00495{bottom:908.580000px;}
.y1a_c00495{bottom:941.580000px;}
.y19_c00495{bottom:974.730000px;}
.y18_c00495{bottom:1007.880000px;}
.y17_c00495{bottom:1040.580000px;}
.y16_c00495{bottom:1073.880000px;}
.y15_c00495{bottom:1107.030000px;}
.y4_c00495{bottom:1137.480000px;}
.y14_c00495{bottom:1141.080000px;}
.y13_c00495{bottom:1174.230000px;}
.y3_c00495{bottom:1175.880000px;}
.y12_c00495{bottom:1207.230000px;}
.y2_c00495{bottom:1209.630000px;}
.y1_c00495{bottom:1230.480000px;}
.y11_c00495{bottom:1240.380000px;}
.y10_c00495{bottom:1273.680000px;}
.hb_c00495{height:13.200074px;}
.hc_c00495{height:43.804688px;}
.h8_c00495{height:91.291992px;}
.h9_c00495{height:97.464000px;}
.h6_c00495{height:98.756836px;}
.h3_c00495{height:110.151855px;}
.h7_c00495{height:120.937500px;}
.h5_c00495{height:121.546875px;}
.h4_c00495{height:121.798828px;}
.h2_c00495{height:132.941895px;}
.ha_c00495{height:412.207031px;}
.h0_c00495{height:1382.700000px;}
.h1_c00495{height:1383.000000px;}
.w2_c00495{width:104.875500px;}
.w0_c00495{width:863.175000px;}
.w1_c00495{width:863.250000px;}
.x0_c00495{left:0.000000px;}
.x7_c00495{left:7.200000px;}
.x8_c00495{left:9.750000px;}
.x6_c00495{left:10.800000px;}
.x4_c00495{left:30.450000px;}
.x9_c00495{left:37.050000px;}
.x5_c00495{left:38.850000px;}
.x2_c00495{left:46.650000px;}
.x3_c00495{left:90.450000px;}
.x1_c00495{left:92.700000px;}
.xf_c00495{left:229.800000px;}
.xe_c00495{left:231.450000px;}
.xd_c00495{left:232.500000px;}
.xc_c00495{left:233.550000px;}
.x10_c00495{left:234.600000px;}
.xb_c00495{left:235.800000px;}
.xa_c00495{left:237.300000px;}
.x12_c00495{left:383.401749px;}
.x11_c00495{left:763.350000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls7_c00495{letter-spacing:-5.333333pt;}
.ls8_c00495{letter-spacing:-2.666667pt;}
.ls5_c00495{letter-spacing:0.000000pt;}
.ls4_c00495{letter-spacing:4.266667pt;}
.ls3_c00495{letter-spacing:12.266667pt;}
.ls6_c00495{letter-spacing:13.333333pt;}
.ls2_c00495{letter-spacing:26.400000pt;}
.ls1_c00495{letter-spacing:30.016000pt;}
.ls0_c00495{letter-spacing:60.266667pt;}
.ws3_c00495{word-spacing:-31.970667pt;}
.ws0_c00495{word-spacing:-22.493333pt;}
.ws2_c00495{word-spacing:-20.565333pt;}
.ws4_c00495{word-spacing:-18.000000pt;}
.ws1_c00495{word-spacing:-16.709333pt;}
.ws5_c00495{word-spacing:0.000000pt;}
._22_c00495{margin-left:-158.666667pt;}
._23_c00495{margin-left:-51.253333pt;}
._21_c00495{margin-left:-48.709333pt;}
._2f_c00495{margin-left:-26.856000pt;}
._a_c00495{margin-left:-21.981333pt;}
._8_c00495{margin-left:-19.882667pt;}
._3d_c00495{margin-left:-18.261333pt;}
._18_c00495{margin-left:-15.709333pt;}
._c_c00495{margin-left:-14.506667pt;}
._3c_c00495{margin-left:-13.136000pt;}
._3_c00495{margin-left:-11.754667pt;}
._3e_c00495{margin-left:-9.472000pt;}
._0_c00495{margin-left:-8.333333pt;}
._4_c00495{margin-left:-7.346667pt;}
._e_c00495{margin-left:-5.290667pt;}
._17_c00495{margin-left:-4.298667pt;}
._12_c00495{margin-left:-2.901333pt;}
._1_c00495{margin-left:-1.802667pt;}
._38_c00495{margin-left:-0.893333pt;}
._20_c00495{width:0.960000pt;}
._6_c00495{width:1.933333pt;}
._1c_c00495{width:3.624000pt;}
._10_c00495{width:4.608000pt;}
._1d_c00495{width:6.157333pt;}
._29_c00495{width:7.509333pt;}
._11_c00495{width:8.618667pt;}
._35_c00495{width:9.608000pt;}
._2d_c00495{width:10.498667pt;}
._3b_c00495{width:11.397333pt;}
._39_c00495{width:12.493333pt;}
._34_c00495{width:13.496000pt;}
._2e_c00495{width:14.597333pt;}
._13_c00495{width:15.797333pt;}
._31_c00495{width:17.138667pt;}
._25_c00495{width:18.138667pt;}
._36_c00495{width:19.456000pt;}
._15_c00495{width:21.888000pt;}
._2c_c00495{width:23.248000pt;}
._24_c00495{width:24.736000pt;}
._37_c00495{width:26.568000pt;}
._2_c00495{width:28.402667pt;}
._16_c00495{width:29.397333pt;}
._1b_c00495{width:31.234667pt;}
._33_c00495{width:32.197333pt;}
._14_c00495{width:33.765333pt;}
._f_c00495{width:35.594667pt;}
._2b_c00495{width:36.517333pt;}
._19_c00495{width:37.986667pt;}
._1a_c00495{width:40.026667pt;}
._30_c00495{width:42.437333pt;}
._2a_c00495{width:43.690667pt;}
._32_c00495{width:45.440000pt;}
._d_c00495{width:47.722667pt;}
._1e_c00495{width:49.786667pt;}
._1f_c00495{width:52.493333pt;}
._3a_c00495{width:53.893333pt;}
._27_c00495{width:55.552000pt;}
._7_c00495{width:57.656000pt;}
._26_c00495{width:59.477333pt;}
._28_c00495{width:64.712000pt;}
._5_c00495{width:67.280000pt;}
._41_c00495{width:71.469333pt;}
._9_c00495{width:110.762667pt;}
._3f_c00495{width:130.133333pt;}
._40_c00495{width:143.802667pt;}
._b_c00495{width:285.781333pt;}
.fsa_c00495{font-size:42.666667pt;}
.fs2_c00495{font-size:69.333333pt;}
.fs3_c00495{font-size:77.333333pt;}
.fs7_c00495{font-size:82.666667pt;}
.fs4_c00495{font-size:85.333333pt;}
.fs6_c00495{font-size:90.666667pt;}
.fs0_c00495{font-size:93.333333pt;}
.fs1_c00495{font-size:101.333333pt;}
.fs5_c00495{font-size:104.000000pt;}
.fs8_c00495{font-size:106.666667pt;}
.fs9_c00495{font-size:373.333333pt;}
.y0_c00495{bottom:0.000000pt;}
.y35_c00495{bottom:2.760000pt;}
.y34_c00495{bottom:6.425206pt;}
.y33_c00495{bottom:88.160000pt;}
.y32_c00495{bottom:116.693333pt;}
.y31_c00495{bottom:147.360000pt;}
.y30_c00495{bottom:178.160000pt;}
.yf_c00495{bottom:199.226667pt;}
.y2f_c00495{bottom:208.160000pt;}
.ye_c00495{bottom:226.160000pt;}
.y2e_c00495{bottom:236.426667pt;}
.yd_c00495{bottom:252.026667pt;}
.y2d_c00495{bottom:268.560000pt;}
.yc_c00495{bottom:278.693333pt;}
.y2c_c00495{bottom:298.826667pt;}
.yb_c00495{bottom:304.826667pt;}
.y2b_c00495{bottom:327.893333pt;}
.ya_c00495{bottom:331.493333pt;}
.y2a_c00495{bottom:357.626667pt;}
.y9_c00495{bottom:358.160000pt;}
.y8_c00495{bottom:384.293333pt;}
.y29_c00495{bottom:388.826667pt;}
.y7_c00495{bottom:411.093333pt;}
.y28_c00495{bottom:418.160000pt;}
.y6_c00495{bottom:436.826667pt;}
.y27_c00495{bottom:448.293333pt;}
.y5_c00495{bottom:463.893333pt;}
.y26_c00495{bottom:480.693333pt;}
.y25_c00495{bottom:509.093333pt;}
.y24_c00495{bottom:539.493333pt;}
.y23_c00495{bottom:569.360000pt;}
.y22_c00495{bottom:598.826667pt;}
.y21_c00495{bottom:628.826667pt;}
.y20_c00495{bottom:658.826667pt;}
.y1f_c00495{bottom:688.560000pt;}
.y1e_c00495{bottom:718.160000pt;}
.y1d_c00495{bottom:747.893333pt;}
.y1c_c00495{bottom:777.626667pt;}
.y1b_c00495{bottom:807.626667pt;}
.y1a_c00495{bottom:836.960000pt;}
.y19_c00495{bottom:866.426667pt;}
.y18_c00495{bottom:895.893333pt;}
.y17_c00495{bottom:924.960000pt;}
.y16_c00495{bottom:954.560000pt;}
.y15_c00495{bottom:984.026667pt;}
.y4_c00495{bottom:1011.093333pt;}
.y14_c00495{bottom:1014.293333pt;}
.y13_c00495{bottom:1043.760000pt;}
.y3_c00495{bottom:1045.226667pt;}
.y12_c00495{bottom:1073.093333pt;}
.y2_c00495{bottom:1075.226667pt;}
.y1_c00495{bottom:1093.760000pt;}
.y11_c00495{bottom:1102.560000pt;}
.y10_c00495{bottom:1132.160000pt;}
.hb_c00495{height:11.733399pt;}
.hc_c00495{height:38.937500pt;}
.h8_c00495{height:81.148438pt;}
.h9_c00495{height:86.634667pt;}
.h6_c00495{height:87.783854pt;}
.h3_c00495{height:97.912760pt;}
.h7_c00495{height:107.500000pt;}
.h5_c00495{height:108.041667pt;}
.h4_c00495{height:108.265625pt;}
.h2_c00495{height:118.170573pt;}
.ha_c00495{height:366.406250pt;}
.h0_c00495{height:1229.066667pt;}
.h1_c00495{height:1229.333333pt;}
.w2_c00495{width:93.222667pt;}
.w0_c00495{width:767.266667pt;}
.w1_c00495{width:767.333333pt;}
.x0_c00495{left:0.000000pt;}
.x7_c00495{left:6.400000pt;}
.x8_c00495{left:8.666667pt;}
.x6_c00495{left:9.600000pt;}
.x4_c00495{left:27.066667pt;}
.x9_c00495{left:32.933333pt;}
.x5_c00495{left:34.533333pt;}
.x2_c00495{left:41.466667pt;}
.x3_c00495{left:80.400000pt;}
.x1_c00495{left:82.400000pt;}
.xf_c00495{left:204.266667pt;}
.xe_c00495{left:205.733333pt;}
.xd_c00495{left:206.666667pt;}
.xc_c00495{left:207.600000pt;}
.x10_c00495{left:208.533333pt;}
.xb_c00495{left:209.600000pt;}
.xa_c00495{left:210.933333pt;}
.x12_c00495{left:340.801554pt;}
.x11_c00495{left:678.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aade7674d9e236c602b00659.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_e09434f3bb8ff549adff285c.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_9bdecba9ed99e5342a129331.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.ls1_c00496{letter-spacing:3.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00496{word-spacing:-54.000000px;}
.ws1_c00496{word-spacing:-20.244000px;}
.ws0_c00496{word-spacing:-0.168000px;}
.ws3_c00496{word-spacing:0.000000px;}
._22_c00496{margin-left:-52.128000px;}
._24_c00496{margin-left:-47.904000px;}
._4b_c00496{margin-left:-37.632000px;}
._46_c00496{margin-left:-31.200000px;}
._4a_c00496{margin-left:-25.920000px;}
._35_c00496{margin-left:-20.016000px;}
._2a_c00496{margin-left:-16.032000px;}
._29_c00496{margin-left:-14.880000px;}
._30_c00496{margin-left:-13.152000px;}
._2c_c00496{margin-left:-11.808000px;}
._3e_c00496{margin-left:-10.176000px;}
._20_c00496{margin-left:-8.832000px;}
._4_c00496{margin-left:-7.296000px;}
._3c_c00496{margin-left:-5.376000px;}
._15_c00496{margin-left:-3.456000px;}
._18_c00496{margin-left:-2.208000px;}
._1a_c00496{margin-left:-1.152000px;}
._f_c00496{width:1.056000px;}
._3_c00496{width:2.400000px;}
._7_c00496{width:3.552000px;}
._6_c00496{width:4.800000px;}
._1_c00496{width:6.720000px;}
._8_c00496{width:7.776000px;}
._a_c00496{width:9.120000px;}
._0_c00496{width:11.136000px;}
._3b_c00496{width:12.192000px;}
._b_c00496{width:13.248000px;}
._1c_c00496{width:14.688000px;}
._1b_c00496{width:16.224000px;}
._31_c00496{width:17.376000px;}
._34_c00496{width:18.900000px;}
._4d_c00496{width:20.064000px;}
._12_c00496{width:21.312000px;}
._d_c00496{width:24.960000px;}
._3a_c00496{width:26.316000px;}
._c_c00496{width:27.360000px;}
._1d_c00496{width:28.512000px;}
._2_c00496{width:29.952000px;}
._33_c00496{width:31.104000px;}
._11_c00496{width:32.832000px;}
._3f_c00496{width:33.888000px;}
._5_c00496{width:35.040000px;}
._16_c00496{width:36.192000px;}
._3d_c00496{width:37.248000px;}
._14_c00496{width:38.496000px;}
._19_c00496{width:40.416000px;}
._40_c00496{width:41.436000px;}
._10_c00496{width:43.008000px;}
._1e_c00496{width:44.064000px;}
._9_c00496{width:45.120000px;}
._28_c00496{width:46.848000px;}
._42_c00496{width:49.344000px;}
._13_c00496{width:50.400000px;}
._36_c00496{width:52.512000px;}
._38_c00496{width:54.528000px;}
._4c_c00496{width:55.584000px;}
._37_c00496{width:56.832000px;}
._2f_c00496{width:58.464000px;}
._2e_c00496{width:60.576000px;}
._26_c00496{width:62.496000px;}
._41_c00496{width:64.416000px;}
._27_c00496{width:71.424000px;}
._1f_c00496{width:73.536000px;}
._39_c00496{width:75.552000px;}
._25_c00496{width:83.904000px;}
._49_c00496{width:90.720000px;}
._21_c00496{width:94.752000px;}
._2d_c00496{width:146.400000px;}
._48_c00496{width:175.008000px;}
._44_c00496{width:205.476000px;}
._32_c00496{width:279.072000px;}
._23_c00496{width:323.328000px;}
._47_c00496{width:326.400000px;}
._17_c00496{width:335.904000px;}
._e_c00496{width:341.088000px;}
._45_c00496{width:385.440000px;}
._43_c00496{width:391.380000px;}
._2b_c00496{width:638.016000px;}
._4f_c00496{width:704.256000px;}
._4e_c00496{width:934.344000px;}
.fc2_c00496{color:transparent;}
.fc1_c00496{color:rgb(128,128,128);}
.fc0_c00496{color:rgb(0,0,0);}
.fs3_c00496{font-size:48.000000px;}
.fs1_c00496{font-size:84.000000px;}
.fs0_c00496{font-size:96.000000px;}
.fs2_c00496{font-size:102.000000px;}
.y0_c00496{bottom:0.000000px;}
.y25_c00496{bottom:3.105000px;}
.y24_c00496{bottom:7.228369px;}
.y23_c00496{bottom:147.420000px;}
.y22_c00496{bottom:180.570000px;}
.y21_c00496{bottom:215.220000px;}
.y20_c00496{bottom:248.970000px;}
.y1f_c00496{bottom:282.420000px;}
.y1e_c00496{bottom:318.870000px;}
.y1d_c00496{bottom:351.570000px;}
.y1c_c00496{bottom:384.720000px;}
.y1b_c00496{bottom:417.870000px;}
.y1a_c00496{bottom:452.520000px;}
.y19_c00496{bottom:484.920000px;}
.y18_c00496{bottom:519.120000px;}
.y17_c00496{bottom:552.420000px;}
.y16_c00496{bottom:586.170000px;}
.y15_c00496{bottom:619.920000px;}
.y14_c00496{bottom:653.970000px;}
.y13_c00496{bottom:686.820000px;}
.y12_c00496{bottom:720.270000px;}
.y11_c00496{bottom:752.970000px;}
.y10_c00496{bottom:786.720000px;}
.yf_c00496{bottom:820.170000px;}
.ye_c00496{bottom:852.870000px;}
.yd_c00496{bottom:887.670000px;}
.yc_c00496{bottom:919.620000px;}
.yb_c00496{bottom:953.070000px;}
.ya_c00496{bottom:986.070000px;}
.y9_c00496{bottom:1019.520000px;}
.y8_c00496{bottom:1052.670000px;}
.y7_c00496{bottom:1085.070000px;}
.y6_c00496{bottom:1118.370000px;}
.y5_c00496{bottom:1150.770000px;}
.y4_c00496{bottom:1183.620000px;}
.y3_c00496{bottom:1217.670000px;}
.y2_c00496{bottom:1250.670000px;}
.y1_c00496{bottom:1283.820000px;}
.h3_c00496{height:13.200073px;}
.h4_c00496{height:43.804688px;}
.h2_c00496{height:121.546875px;}
.h0_c00496{height:1383.450000px;}
.h1_c00496{height:1383.750000px;}
.w2_c00496{width:104.875500px;}
.w0_c00496{width:878.025000px;}
.w1_c00496{width:878.250000px;}
.x0_c00496{left:0.000000px;}
.x6_c00496{left:27.300000px;}
.x5_c00496{left:28.350000px;}
.x7_c00496{left:29.400000px;}
.x4_c00496{left:30.450000px;}
.x3_c00496{left:31.500000px;}
.x1_c00496{left:32.700000px;}
.x2_c00496{left:34.350000px;}
.x9_c00496{left:37.050000px;}
.x8_c00496{left:85.050000px;}
.xa_c00496{left:390.826721px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ls1_c00496{letter-spacing:2.666667pt;}
.ws2_c00496{word-spacing:-48.000000pt;}
.ws1_c00496{word-spacing:-17.994667pt;}
.ws0_c00496{word-spacing:-0.149333pt;}
.ws3_c00496{word-spacing:0.000000pt;}
._22_c00496{margin-left:-46.336000pt;}
._24_c00496{margin-left:-42.581333pt;}
._4b_c00496{margin-left:-33.450667pt;}
._46_c00496{margin-left:-27.733333pt;}
._4a_c00496{margin-left:-23.040000pt;}
._35_c00496{margin-left:-17.792000pt;}
._2a_c00496{margin-left:-14.250667pt;}
._29_c00496{margin-left:-13.226667pt;}
._30_c00496{margin-left:-11.690667pt;}
._2c_c00496{margin-left:-10.496000pt;}
._3e_c00496{margin-left:-9.045333pt;}
._20_c00496{margin-left:-7.850667pt;}
._4_c00496{margin-left:-6.485333pt;}
._3c_c00496{margin-left:-4.778667pt;}
._15_c00496{margin-left:-3.072000pt;}
._18_c00496{margin-left:-1.962667pt;}
._1a_c00496{margin-left:-1.024000pt;}
._f_c00496{width:0.938667pt;}
._3_c00496{width:2.133333pt;}
._7_c00496{width:3.157333pt;}
._6_c00496{width:4.266667pt;}
._1_c00496{width:5.973333pt;}
._8_c00496{width:6.912000pt;}
._a_c00496{width:8.106667pt;}
._0_c00496{width:9.898667pt;}
._3b_c00496{width:10.837333pt;}
._b_c00496{width:11.776000pt;}
._1c_c00496{width:13.056000pt;}
._1b_c00496{width:14.421333pt;}
._31_c00496{width:15.445333pt;}
._34_c00496{width:16.800000pt;}
._4d_c00496{width:17.834667pt;}
._12_c00496{width:18.944000pt;}
._d_c00496{width:22.186667pt;}
._3a_c00496{width:23.392000pt;}
._c_c00496{width:24.320000pt;}
._1d_c00496{width:25.344000pt;}
._2_c00496{width:26.624000pt;}
._33_c00496{width:27.648000pt;}
._11_c00496{width:29.184000pt;}
._3f_c00496{width:30.122667pt;}
._5_c00496{width:31.146667pt;}
._16_c00496{width:32.170667pt;}
._3d_c00496{width:33.109333pt;}
._14_c00496{width:34.218667pt;}
._19_c00496{width:35.925333pt;}
._40_c00496{width:36.832000pt;}
._10_c00496{width:38.229333pt;}
._1e_c00496{width:39.168000pt;}
._9_c00496{width:40.106667pt;}
._28_c00496{width:41.642667pt;}
._42_c00496{width:43.861333pt;}
._13_c00496{width:44.800000pt;}
._36_c00496{width:46.677333pt;}
._38_c00496{width:48.469333pt;}
._4c_c00496{width:49.408000pt;}
._37_c00496{width:50.517333pt;}
._2f_c00496{width:51.968000pt;}
._2e_c00496{width:53.845333pt;}
._26_c00496{width:55.552000pt;}
._41_c00496{width:57.258667pt;}
._27_c00496{width:63.488000pt;}
._1f_c00496{width:65.365333pt;}
._39_c00496{width:67.157333pt;}
._25_c00496{width:74.581333pt;}
._49_c00496{width:80.640000pt;}
._21_c00496{width:84.224000pt;}
._2d_c00496{width:130.133333pt;}
._48_c00496{width:155.562667pt;}
._44_c00496{width:182.645333pt;}
._32_c00496{width:248.064000pt;}
._23_c00496{width:287.402667pt;}
._47_c00496{width:290.133333pt;}
._17_c00496{width:298.581333pt;}
._e_c00496{width:303.189333pt;}
._45_c00496{width:342.613333pt;}
._43_c00496{width:347.893333pt;}
._2b_c00496{width:567.125333pt;}
._4f_c00496{width:626.005333pt;}
._4e_c00496{width:830.528000pt;}
.fs3_c00496{font-size:42.666667pt;}
.fs1_c00496{font-size:74.666667pt;}
.fs0_c00496{font-size:85.333333pt;}
.fs2_c00496{font-size:90.666667pt;}
.y0_c00496{bottom:0.000000pt;}
.y25_c00496{bottom:2.760000pt;}
.y24_c00496{bottom:6.425217pt;}
.y23_c00496{bottom:131.040000pt;}
.y22_c00496{bottom:160.506667pt;}
.y21_c00496{bottom:191.306667pt;}
.y20_c00496{bottom:221.306667pt;}
.y1f_c00496{bottom:251.040000pt;}
.y1e_c00496{bottom:283.440000pt;}
.y1d_c00496{bottom:312.506667pt;}
.y1c_c00496{bottom:341.973333pt;}
.y1b_c00496{bottom:371.440000pt;}
.y1a_c00496{bottom:402.240000pt;}
.y19_c00496{bottom:431.040000pt;}
.y18_c00496{bottom:461.440000pt;}
.y17_c00496{bottom:491.040000pt;}
.y16_c00496{bottom:521.040000pt;}
.y15_c00496{bottom:551.040000pt;}
.y14_c00496{bottom:581.306667pt;}
.y13_c00496{bottom:610.506667pt;}
.y12_c00496{bottom:640.240000pt;}
.y11_c00496{bottom:669.306667pt;}
.y10_c00496{bottom:699.306667pt;}
.yf_c00496{bottom:729.040000pt;}
.ye_c00496{bottom:758.106667pt;}
.yd_c00496{bottom:789.040000pt;}
.yc_c00496{bottom:817.440000pt;}
.yb_c00496{bottom:847.173333pt;}
.ya_c00496{bottom:876.506667pt;}
.y9_c00496{bottom:906.240000pt;}
.y8_c00496{bottom:935.706667pt;}
.y7_c00496{bottom:964.506667pt;}
.y6_c00496{bottom:994.106667pt;}
.y5_c00496{bottom:1022.906667pt;}
.y4_c00496{bottom:1052.106667pt;}
.y3_c00496{bottom:1082.373333pt;}
.y2_c00496{bottom:1111.706667pt;}
.y1_c00496{bottom:1141.173333pt;}
.h3_c00496{height:11.733399pt;}
.h4_c00496{height:38.937500pt;}
.h2_c00496{height:108.041667pt;}
.h0_c00496{height:1229.733333pt;}
.h1_c00496{height:1230.000000pt;}
.w2_c00496{width:93.222667pt;}
.w0_c00496{width:780.466667pt;}
.w1_c00496{width:780.666667pt;}
.x0_c00496{left:0.000000pt;}
.x6_c00496{left:24.266667pt;}
.x5_c00496{left:25.200000pt;}
.x7_c00496{left:26.133333pt;}
.x4_c00496{left:27.066667pt;}
.x3_c00496{left:28.000000pt;}
.x1_c00496{left:29.066667pt;}
.x2_c00496{left:30.533333pt;}
.x9_c00496{left:32.933333pt;}
.x8_c00496{left:75.600000pt;}
.xa_c00496{left:347.401530pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24e643906edd685904bb3cc4.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_64d2deea23f96eaa18e67350.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00497;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls3_c00497{letter-spacing:0.000000px;}
.ls2_c00497{letter-spacing:3.000000px;}
.ls4_c00497{letter-spacing:6.000000px;}
.ls0_c00497{letter-spacing:66.633000px;}
.ls5_c00497{letter-spacing:114.000000px;}
.ls1_c00497{letter-spacing:832.233000px;}
.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;}
}
.ws3_c00497{word-spacing:-137.136000px;}
.ws1_c00497{word-spacing:-54.000000px;}
.ws2_c00497{word-spacing:-20.244000px;}
.ws0_c00497{word-spacing:-18.798000px;}
.ws4_c00497{word-spacing:0.000000px;}
._45_c00497{margin-left:-27.264000px;}
._48_c00497{margin-left:-25.032000px;}
._3a_c00497{margin-left:-23.403000px;}
._46_c00497{margin-left:-22.080000px;}
._47_c00497{margin-left:-21.045000px;}
._28_c00497{margin-left:-18.720000px;}
._3b_c00497{margin-left:-17.718000px;}
._4d_c00497{margin-left:-16.032000px;}
._41_c00497{margin-left:-14.301000px;}
._32_c00497{margin-left:-11.445000px;}
._1b_c00497{margin-left:-10.296000px;}
._19_c00497{margin-left:-8.619000px;}
._18_c00497{margin-left:-7.020000px;}
._1a_c00497{margin-left:-5.772000px;}
._2_c00497{margin-left:-3.744000px;}
._21_c00497{margin-left:-2.652000px;}
._0_c00497{margin-left:-1.638000px;}
._16_c00497{width:1.716000px;}
._6_c00497{width:2.958000px;}
._1d_c00497{width:4.437000px;}
._5_c00497{width:5.568000px;}
._4_c00497{width:6.612000px;}
._d_c00497{width:7.743000px;}
._8_c00497{width:8.787000px;}
._c_c00497{width:10.092000px;}
._3d_c00497{width:11.163000px;}
._10_c00497{width:12.180000px;}
._a_c00497{width:13.224000px;}
._f_c00497{width:14.703000px;}
._17_c00497{width:16.692000px;}
._42_c00497{width:18.525000px;}
._3c_c00497{width:19.704000px;}
._36_c00497{width:21.216000px;}
._1_c00497{width:24.882000px;}
._1e_c00497{width:26.463000px;}
._3f_c00497{width:28.569000px;}
._b_c00497{width:30.189000px;}
._13_c00497{width:32.712000px;}
._49_c00497{width:33.783000px;}
._1f_c00497{width:34.800000px;}
._12_c00497{width:36.486000px;}
._20_c00497{width:38.802000px;}
._11_c00497{width:40.557000px;}
._25_c00497{width:41.568000px;}
._15_c00497{width:43.608000px;}
._3e_c00497{width:44.946000px;}
._14_c00497{width:46.356000px;}
._22_c00497{width:47.502000px;}
._3_c00497{width:48.999000px;}
._e_c00497{width:51.330000px;}
._31_c00497{width:54.207000px;}
._24_c00497{width:56.412000px;}
._9_c00497{width:57.942000px;}
._40_c00497{width:60.408000px;}
._7_c00497{width:62.118000px;}
._1c_c00497{width:67.089000px;}
._23_c00497{width:69.315000px;}
._26_c00497{width:71.526000px;}
._37_c00497{width:73.944000px;}
._4a_c00497{width:78.240000px;}
._2e_c00497{width:89.082000px;}
._27_c00497{width:99.378000px;}
._34_c00497{width:125.004000px;}
._2d_c00497{width:172.188000px;}
._39_c00497{width:175.221000px;}
._29_c00497{width:185.250000px;}
._35_c00497{width:201.474000px;}
._30_c00497{width:210.732000px;}
._43_c00497{width:227.871000px;}
._4c_c00497{width:239.733000px;}
._2c_c00497{width:242.223000px;}
._44_c00497{width:265.992000px;}
._38_c00497{width:282.141000px;}
._33_c00497{width:341.793000px;}
._2b_c00497{width:362.109000px;}
._2a_c00497{width:400.200000px;}
._2f_c00497{width:500.160000px;}
._4e_c00497{width:839.712000px;}
._4b_c00497{width:841.356000px;}
.fc2_c00497{color:transparent;}
.fc1_c00497{color:rgb(128,128,128);}
.fc0_c00497{color:rgb(0,0,0);}
.fs5_c00497{font-size:48.000000px;}
.fs0_c00497{font-size:78.000000px;}
.fs3_c00497{font-size:84.000000px;}
.fs1_c00497{font-size:87.000000px;}
.fs2_c00497{font-size:96.000000px;}
.fs4_c00497{font-size:102.000000px;}
.y0_c00497{bottom:0.000000px;}
.y27_c00497{bottom:3.105000px;}
.y26_c00497{bottom:7.228355px;}
.y25_c00497{bottom:131.985000px;}
.y24_c00497{bottom:163.635000px;}
.y23_c00497{bottom:198.735000px;}
.y22_c00497{bottom:232.185000px;}
.y21_c00497{bottom:266.535000px;}
.y20_c00497{bottom:300.585000px;}
.y1f_c00497{bottom:334.335000px;}
.y1e_c00497{bottom:367.785000px;}
.y1d_c00497{bottom:401.235000px;}
.y1c_c00497{bottom:435.735000px;}
.y1b_c00497{bottom:469.335000px;}
.y1a_c00497{bottom:503.085000px;}
.y19_c00497{bottom:536.535000px;}
.y18_c00497{bottom:570.585000px;}
.y17_c00497{bottom:604.035000px;}
.y16_c00497{bottom:637.785000px;}
.y15_c00497{bottom:671.235000px;}
.y14_c00497{bottom:704.385000px;}
.y13_c00497{bottom:737.985000px;}
.y12_c00497{bottom:771.885000px;}
.y11_c00497{bottom:805.185000px;}
.y10_c00497{bottom:838.935000px;}
.yf_c00497{bottom:872.085000px;}
.ye_c00497{bottom:905.535000px;}
.yd_c00497{bottom:939.135000px;}
.yc_c00497{bottom:973.035000px;}
.yb_c00497{bottom:1005.285000px;}
.ya_c00497{bottom:1038.135000px;}
.y9_c00497{bottom:1071.885000px;}
.y8_c00497{bottom:1105.335000px;}
.y7_c00497{bottom:1136.385000px;}
.y6_c00497{bottom:1158.585000px;}
.y5_c00497{bottom:1172.085000px;}
.y4_c00497{bottom:1186.935000px;}
.y3_c00497{bottom:1209.135000px;}
.y2_c00497{bottom:1241.535000px;}
.y1_c00497{bottom:1272.585000px;}
.h5_c00497{height:13.200074px;}
.h6_c00497{height:43.804688px;}
.h3_c00497{height:110.151855px;}
.h2_c00497{height:121.546875px;}
.h4_c00497{height:129.143555px;}
.h1_c00497{height:1366.500000px;}
.h0_c00497{height:1366.725000px;}
.w2_c00497{width:104.875500px;}
.w0_c00497{width:852.675000px;}
.w1_c00497{width:852.750000px;}
.x0_c00497{left:0.000000px;}
.x9_c00497{left:15.450000px;}
.x2_c00497{left:20.250000px;}
.x4_c00497{left:22.950000px;}
.x3_c00497{left:31.500000px;}
.x1_c00497{left:48.300000px;}
.xa_c00497{left:92.100000px;}
.x8_c00497{left:231.450000px;}
.x5_c00497{left:233.100000px;}
.x6_c00497{left:234.600000px;}
.x7_c00497{left:235.800000px;}
.xb_c00497{left:378.151749px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls3_c00497{letter-spacing:0.000000pt;}
.ls2_c00497{letter-spacing:2.666667pt;}
.ls4_c00497{letter-spacing:5.333333pt;}
.ls0_c00497{letter-spacing:59.229333pt;}
.ls5_c00497{letter-spacing:101.333333pt;}
.ls1_c00497{letter-spacing:739.762667pt;}
.ws3_c00497{word-spacing:-121.898667pt;}
.ws1_c00497{word-spacing:-48.000000pt;}
.ws2_c00497{word-spacing:-17.994667pt;}
.ws0_c00497{word-spacing:-16.709333pt;}
.ws4_c00497{word-spacing:0.000000pt;}
._45_c00497{margin-left:-24.234667pt;}
._48_c00497{margin-left:-22.250667pt;}
._3a_c00497{margin-left:-20.802667pt;}
._46_c00497{margin-left:-19.626667pt;}
._47_c00497{margin-left:-18.706667pt;}
._28_c00497{margin-left:-16.640000pt;}
._3b_c00497{margin-left:-15.749333pt;}
._4d_c00497{margin-left:-14.250667pt;}
._41_c00497{margin-left:-12.712000pt;}
._32_c00497{margin-left:-10.173333pt;}
._1b_c00497{margin-left:-9.152000pt;}
._19_c00497{margin-left:-7.661333pt;}
._18_c00497{margin-left:-6.240000pt;}
._1a_c00497{margin-left:-5.130667pt;}
._2_c00497{margin-left:-3.328000pt;}
._21_c00497{margin-left:-2.357333pt;}
._0_c00497{margin-left:-1.456000pt;}
._16_c00497{width:1.525333pt;}
._6_c00497{width:2.629333pt;}
._1d_c00497{width:3.944000pt;}
._5_c00497{width:4.949333pt;}
._4_c00497{width:5.877333pt;}
._d_c00497{width:6.882667pt;}
._8_c00497{width:7.810667pt;}
._c_c00497{width:8.970667pt;}
._3d_c00497{width:9.922667pt;}
._10_c00497{width:10.826667pt;}
._a_c00497{width:11.754667pt;}
._f_c00497{width:13.069333pt;}
._17_c00497{width:14.837333pt;}
._42_c00497{width:16.466667pt;}
._3c_c00497{width:17.514667pt;}
._36_c00497{width:18.858667pt;}
._1_c00497{width:22.117333pt;}
._1e_c00497{width:23.522667pt;}
._3f_c00497{width:25.394667pt;}
._b_c00497{width:26.834667pt;}
._13_c00497{width:29.077333pt;}
._49_c00497{width:30.029333pt;}
._1f_c00497{width:30.933333pt;}
._12_c00497{width:32.432000pt;}
._20_c00497{width:34.490667pt;}
._11_c00497{width:36.050667pt;}
._25_c00497{width:36.949333pt;}
._15_c00497{width:38.762667pt;}
._3e_c00497{width:39.952000pt;}
._14_c00497{width:41.205333pt;}
._22_c00497{width:42.224000pt;}
._3_c00497{width:43.554667pt;}
._e_c00497{width:45.626667pt;}
._31_c00497{width:48.184000pt;}
._24_c00497{width:50.144000pt;}
._9_c00497{width:51.504000pt;}
._40_c00497{width:53.696000pt;}
._7_c00497{width:55.216000pt;}
._1c_c00497{width:59.634667pt;}
._23_c00497{width:61.613333pt;}
._26_c00497{width:63.578667pt;}
._37_c00497{width:65.728000pt;}
._4a_c00497{width:69.546667pt;}
._2e_c00497{width:79.184000pt;}
._27_c00497{width:88.336000pt;}
._34_c00497{width:111.114667pt;}
._2d_c00497{width:153.056000pt;}
._39_c00497{width:155.752000pt;}
._29_c00497{width:164.666667pt;}
._35_c00497{width:179.088000pt;}
._30_c00497{width:187.317333pt;}
._43_c00497{width:202.552000pt;}
._4c_c00497{width:213.096000pt;}
._2c_c00497{width:215.309333pt;}
._44_c00497{width:236.437333pt;}
._38_c00497{width:250.792000pt;}
._33_c00497{width:303.816000pt;}
._2b_c00497{width:321.874667pt;}
._2a_c00497{width:355.733333pt;}
._2f_c00497{width:444.586667pt;}
._4e_c00497{width:746.410667pt;}
._4b_c00497{width:747.872000pt;}
.fs5_c00497{font-size:42.666667pt;}
.fs0_c00497{font-size:69.333333pt;}
.fs3_c00497{font-size:74.666667pt;}
.fs1_c00497{font-size:77.333333pt;}
.fs2_c00497{font-size:85.333333pt;}
.fs4_c00497{font-size:90.666667pt;}
.y0_c00497{bottom:0.000000pt;}
.y27_c00497{bottom:2.760000pt;}
.y26_c00497{bottom:6.425204pt;}
.y25_c00497{bottom:117.320000pt;}
.y24_c00497{bottom:145.453333pt;}
.y23_c00497{bottom:176.653333pt;}
.y22_c00497{bottom:206.386667pt;}
.y21_c00497{bottom:236.920000pt;}
.y20_c00497{bottom:267.186667pt;}
.y1f_c00497{bottom:297.186667pt;}
.y1e_c00497{bottom:326.920000pt;}
.y1d_c00497{bottom:356.653333pt;}
.y1c_c00497{bottom:387.320000pt;}
.y1b_c00497{bottom:417.186667pt;}
.y1a_c00497{bottom:447.186667pt;}
.y19_c00497{bottom:476.920000pt;}
.y18_c00497{bottom:507.186667pt;}
.y17_c00497{bottom:536.920000pt;}
.y16_c00497{bottom:566.920000pt;}
.y15_c00497{bottom:596.653333pt;}
.y14_c00497{bottom:626.120000pt;}
.y13_c00497{bottom:655.986667pt;}
.y12_c00497{bottom:686.120000pt;}
.y11_c00497{bottom:715.720000pt;}
.y10_c00497{bottom:745.720000pt;}
.yf_c00497{bottom:775.186667pt;}
.ye_c00497{bottom:804.920000pt;}
.yd_c00497{bottom:834.786667pt;}
.yc_c00497{bottom:864.920000pt;}
.yb_c00497{bottom:893.586667pt;}
.ya_c00497{bottom:922.786667pt;}
.y9_c00497{bottom:952.786667pt;}
.y8_c00497{bottom:982.520000pt;}
.y7_c00497{bottom:1010.120000pt;}
.y6_c00497{bottom:1029.853333pt;}
.y5_c00497{bottom:1041.853333pt;}
.y4_c00497{bottom:1055.053333pt;}
.y3_c00497{bottom:1074.786667pt;}
.y2_c00497{bottom:1103.586667pt;}
.y1_c00497{bottom:1131.186667pt;}
.h5_c00497{height:11.733399pt;}
.h6_c00497{height:38.937500pt;}
.h3_c00497{height:97.912760pt;}
.h2_c00497{height:108.041667pt;}
.h4_c00497{height:114.794271pt;}
.h1_c00497{height:1214.666667pt;}
.h0_c00497{height:1214.866667pt;}
.w2_c00497{width:93.222667pt;}
.w0_c00497{width:757.933333pt;}
.w1_c00497{width:758.000000pt;}
.x0_c00497{left:0.000000pt;}
.x9_c00497{left:13.733333pt;}
.x2_c00497{left:18.000000pt;}
.x4_c00497{left:20.400000pt;}
.x3_c00497{left:28.000000pt;}
.x1_c00497{left:42.933333pt;}
.xa_c00497{left:81.866667pt;}
.x8_c00497{left:205.733333pt;}
.x5_c00497{left:207.200000pt;}
.x6_c00497{left:208.533333pt;}
.x7_c00497{left:209.600000pt;}
.xb_c00497{left:336.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89979096cb0d6efe2e74d131.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_1c0fdd6b8098223de0235ef3.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls5_c00498{letter-spacing:-3.000000px;}
.ls2_c00498{letter-spacing:0.000000px;}
.ls3_c00498{letter-spacing:3.000000px;}
.ls0_c00498{letter-spacing:9.456000px;}
.ls4_c00498{letter-spacing:24.000000px;}
.ls1_c00498{letter-spacing:44.433000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00498{word-spacing:-54.000000px;}
.ws4_c00498{word-spacing:-47.136000px;}
.ws3_c00498{word-spacing:-23.136000px;}
.ws5_c00498{word-spacing:-21.582000px;}
.ws0_c00498{word-spacing:-20.244000px;}
.ws2_c00498{word-spacing:-18.798000px;}
.ws6_c00498{word-spacing:0.000000px;}
._38_c00498{margin-left:-62.400000px;}
._43_c00498{margin-left:-25.200000px;}
._17_c00498{margin-left:-23.424000px;}
._46_c00498{margin-left:-18.531000px;}
._35_c00498{margin-left:-16.608000px;}
._37_c00498{margin-left:-15.264000px;}
._39_c00498{margin-left:-14.208000px;}
._1f_c00498{margin-left:-12.300000px;}
._4c_c00498{margin-left:-10.992000px;}
._3_c00498{margin-left:-9.984000px;}
._2b_c00498{margin-left:-7.980000px;}
._5_c00498{margin-left:-6.048000px;}
._2_c00498{margin-left:-3.936000px;}
._4_c00498{margin-left:-2.784000px;}
._1d_c00498{margin-left:-1.536000px;}
._13_c00498{width:1.152000px;}
._8_c00498{width:2.304000px;}
._7_c00498{width:3.456000px;}
._25_c00498{width:4.512000px;}
._a_c00498{width:5.568000px;}
._18_c00498{width:7.104000px;}
._e_c00498{width:8.832000px;}
._0_c00498{width:10.164000px;}
._19_c00498{width:11.712000px;}
._27_c00498{width:12.960000px;}
._1_c00498{width:14.028000px;}
._22_c00498{width:15.156000px;}
._b_c00498{width:17.088000px;}
._6_c00498{width:18.816000px;}
._d_c00498{width:20.160000px;}
._2e_c00498{width:21.816000px;}
._2a_c00498{width:24.528000px;}
._21_c00498{width:25.536000px;}
._23_c00498{width:26.796000px;}
._32_c00498{width:28.548000px;}
._2f_c00498{width:29.760000px;}
._24_c00498{width:30.816000px;}
._26_c00498{width:32.628000px;}
._1e_c00498{width:33.984000px;}
._9_c00498{width:36.192000px;}
._30_c00498{width:37.200000px;}
._2d_c00498{width:38.892000px;}
._10_c00498{width:40.032000px;}
._12_c00498{width:41.184000px;}
._1c_c00498{width:42.912000px;}
._2c_c00498{width:44.748000px;}
._c_c00498{width:45.888000px;}
._20_c00498{width:47.040000px;}
._31_c00498{width:49.164000px;}
._14_c00498{width:51.264000px;}
._1a_c00498{width:53.208000px;}
._1b_c00498{width:54.408000px;}
._f_c00498{width:56.928000px;}
._15_c00498{width:58.560000px;}
._28_c00498{width:60.192000px;}
._16_c00498{width:62.016000px;}
._29_c00498{width:64.896000px;}
._11_c00498{width:68.160000px;}
._4b_c00498{width:71.040000px;}
._3d_c00498{width:77.364000px;}
._3a_c00498{width:90.240000px;}
._42_c00498{width:114.588000px;}
._36_c00498{width:124.800000px;}
._47_c00498{width:140.175000px;}
._3c_c00498{width:152.640000px;}
._3b_c00498{width:181.164000px;}
._40_c00498{width:211.500000px;}
._3f_c00498{width:229.008000px;}
._48_c00498{width:285.144000px;}
._33_c00498{width:295.524000px;}
._41_c00498{width:359.616000px;}
._44_c00498{width:365.544000px;}
._45_c00498{width:381.270000px;}
._49_c00498{width:383.916000px;}
._34_c00498{width:430.464000px;}
._4a_c00498{width:485.124000px;}
._3e_c00498{width:580.128000px;}
.fc2_c00498{color:transparent;}
.fc1_c00498{color:rgb(128,128,128);}
.fc0_c00498{color:rgb(0,0,0);}
.fs5_c00498{font-size:48.000000px;}
.fs3_c00498{font-size:78.000000px;}
.fs0_c00498{font-size:84.000000px;}
.fs4_c00498{font-size:87.000000px;}
.fs1_c00498{font-size:96.000000px;}
.fs2_c00498{font-size:102.000000px;}
.y0_c00498{bottom:0.000000px;}
.y27_c00498{bottom:3.105000px;}
.y26_c00498{bottom:7.228369px;}
.y25_c00498{bottom:132.270000px;}
.y24_c00498{bottom:163.920000px;}
.y23_c00498{bottom:196.770000px;}
.y22_c00498{bottom:231.120000px;}
.y21_c00498{bottom:265.920000px;}
.y20_c00498{bottom:298.320000px;}
.y1f_c00498{bottom:333.420000px;}
.y1e_c00498{bottom:365.820000px;}
.y1d_c00498{bottom:400.320000px;}
.y1c_c00498{bottom:433.620000px;}
.y1b_c00498{bottom:467.370000px;}
.y1a_c00498{bottom:499.470000px;}
.y19_c00498{bottom:533.220000px;}
.y18_c00498{bottom:552.120000px;}
.y17_c00498{bottom:568.020000px;}
.y16_c00498{bottom:602.370000px;}
.y15_c00498{bottom:638.520000px;}
.y14_c00498{bottom:668.970000px;}
.y13_c00498{bottom:702.570000px;}
.y12_c00498{bottom:736.020000px;}
.y11_c00498{bottom:769.770000px;}
.y10_c00498{bottom:802.470000px;}
.yf_c00498{bottom:835.620000px;}
.ye_c00498{bottom:868.320000px;}
.yd_c00498{bottom:902.070000px;}
.yc_c00498{bottom:935.520000px;}
.yb_c00498{bottom:968.670000px;}
.ya_c00498{bottom:1001.070000px;}
.y9_c00498{bottom:1035.420000px;}
.y8_c00498{bottom:1068.120000px;}
.y7_c00498{bottom:1101.270000px;}
.y6_c00498{bottom:1133.220000px;}
.y5_c00498{bottom:1166.370000px;}
.y4_c00498{bottom:1199.370000px;}
.y3_c00498{bottom:1232.220000px;}
.y2_c00498{bottom:1266.570000px;}
.y1_c00498{bottom:1299.270000px;}
.h5_c00498{height:13.200073px;}
.h6_c00498{height:43.804688px;}
.h2_c00498{height:98.314453px;}
.h3_c00498{height:121.546875px;}
.h4_c00498{height:129.143555px;}
.h0_c00498{height:1356.450000px;}
.h1_c00498{height:1356.750000px;}
.w2_c00498{width:104.875500px;}
.w0_c00498{width:860.775000px;}
.w1_c00498{width:861.000000px;}
.x0_c00498{left:0.000000px;}
.xd_c00498{left:16.500000px;}
.x9_c00498{left:18.600000px;}
.xb_c00498{left:19.800000px;}
.xa_c00498{left:20.850000px;}
.x8_c00498{left:21.900000px;}
.x7_c00498{left:22.950000px;}
.x6_c00498{left:24.000000px;}
.x5_c00498{left:25.650000px;}
.xe_c00498{left:27.900000px;}
.x4_c00498{left:28.950000px;}
.x3_c00498{left:30.600000px;}
.x2_c00498{left:32.700000px;}
.xc_c00498{left:53.250000px;}
.x10_c00498{left:382.201721px;}
.x1_c00498{left:513.750000px;}
.xf_c00498{left:545.100000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls5_c00498{letter-spacing:-2.666667pt;}
.ls2_c00498{letter-spacing:0.000000pt;}
.ls3_c00498{letter-spacing:2.666667pt;}
.ls0_c00498{letter-spacing:8.405333pt;}
.ls4_c00498{letter-spacing:21.333333pt;}
.ls1_c00498{letter-spacing:39.496000pt;}
.ws1_c00498{word-spacing:-48.000000pt;}
.ws4_c00498{word-spacing:-41.898667pt;}
.ws3_c00498{word-spacing:-20.565333pt;}
.ws5_c00498{word-spacing:-19.184000pt;}
.ws0_c00498{word-spacing:-17.994667pt;}
.ws2_c00498{word-spacing:-16.709333pt;}
.ws6_c00498{word-spacing:0.000000pt;}
._38_c00498{margin-left:-55.466667pt;}
._43_c00498{margin-left:-22.400000pt;}
._17_c00498{margin-left:-20.821333pt;}
._46_c00498{margin-left:-16.472000pt;}
._35_c00498{margin-left:-14.762667pt;}
._37_c00498{margin-left:-13.568000pt;}
._39_c00498{margin-left:-12.629333pt;}
._1f_c00498{margin-left:-10.933333pt;}
._4c_c00498{margin-left:-9.770667pt;}
._3_c00498{margin-left:-8.874667pt;}
._2b_c00498{margin-left:-7.093333pt;}
._5_c00498{margin-left:-5.376000pt;}
._2_c00498{margin-left:-3.498667pt;}
._4_c00498{margin-left:-2.474667pt;}
._1d_c00498{margin-left:-1.365333pt;}
._13_c00498{width:1.024000pt;}
._8_c00498{width:2.048000pt;}
._7_c00498{width:3.072000pt;}
._25_c00498{width:4.010667pt;}
._a_c00498{width:4.949333pt;}
._18_c00498{width:6.314667pt;}
._e_c00498{width:7.850667pt;}
._0_c00498{width:9.034667pt;}
._19_c00498{width:10.410667pt;}
._27_c00498{width:11.520000pt;}
._1_c00498{width:12.469333pt;}
._22_c00498{width:13.472000pt;}
._b_c00498{width:15.189333pt;}
._6_c00498{width:16.725333pt;}
._d_c00498{width:17.920000pt;}
._2e_c00498{width:19.392000pt;}
._2a_c00498{width:21.802667pt;}
._21_c00498{width:22.698667pt;}
._23_c00498{width:23.818667pt;}
._32_c00498{width:25.376000pt;}
._2f_c00498{width:26.453333pt;}
._24_c00498{width:27.392000pt;}
._26_c00498{width:29.002667pt;}
._1e_c00498{width:30.208000pt;}
._9_c00498{width:32.170667pt;}
._30_c00498{width:33.066667pt;}
._2d_c00498{width:34.570667pt;}
._10_c00498{width:35.584000pt;}
._12_c00498{width:36.608000pt;}
._1c_c00498{width:38.144000pt;}
._2c_c00498{width:39.776000pt;}
._c_c00498{width:40.789333pt;}
._20_c00498{width:41.813333pt;}
._31_c00498{width:43.701333pt;}
._14_c00498{width:45.568000pt;}
._1a_c00498{width:47.296000pt;}
._1b_c00498{width:48.362667pt;}
._f_c00498{width:50.602667pt;}
._15_c00498{width:52.053333pt;}
._28_c00498{width:53.504000pt;}
._16_c00498{width:55.125333pt;}
._29_c00498{width:57.685333pt;}
._11_c00498{width:60.586667pt;}
._4b_c00498{width:63.146667pt;}
._3d_c00498{width:68.768000pt;}
._3a_c00498{width:80.213333pt;}
._42_c00498{width:101.856000pt;}
._36_c00498{width:110.933333pt;}
._47_c00498{width:124.600000pt;}
._3c_c00498{width:135.680000pt;}
._3b_c00498{width:161.034667pt;}
._40_c00498{width:188.000000pt;}
._3f_c00498{width:203.562667pt;}
._48_c00498{width:253.461333pt;}
._33_c00498{width:262.688000pt;}
._41_c00498{width:319.658667pt;}
._44_c00498{width:324.928000pt;}
._45_c00498{width:338.906667pt;}
._49_c00498{width:341.258667pt;}
._34_c00498{width:382.634667pt;}
._4a_c00498{width:431.221333pt;}
._3e_c00498{width:515.669333pt;}
.fs5_c00498{font-size:42.666667pt;}
.fs3_c00498{font-size:69.333333pt;}
.fs0_c00498{font-size:74.666667pt;}
.fs4_c00498{font-size:77.333333pt;}
.fs1_c00498{font-size:85.333333pt;}
.fs2_c00498{font-size:90.666667pt;}
.y0_c00498{bottom:0.000000pt;}
.y27_c00498{bottom:2.760000pt;}
.y26_c00498{bottom:6.425217pt;}
.y25_c00498{bottom:117.573333pt;}
.y24_c00498{bottom:145.706667pt;}
.y23_c00498{bottom:174.906667pt;}
.y22_c00498{bottom:205.440000pt;}
.y21_c00498{bottom:236.373333pt;}
.y20_c00498{bottom:265.173333pt;}
.y1f_c00498{bottom:296.373333pt;}
.y1e_c00498{bottom:325.173333pt;}
.y1d_c00498{bottom:355.840000pt;}
.y1c_c00498{bottom:385.440000pt;}
.y1b_c00498{bottom:415.440000pt;}
.y1a_c00498{bottom:443.973333pt;}
.y19_c00498{bottom:473.973333pt;}
.y18_c00498{bottom:490.773333pt;}
.y17_c00498{bottom:504.906667pt;}
.y16_c00498{bottom:535.440000pt;}
.y15_c00498{bottom:567.573333pt;}
.y14_c00498{bottom:594.640000pt;}
.y13_c00498{bottom:624.506667pt;}
.y12_c00498{bottom:654.240000pt;}
.y11_c00498{bottom:684.240000pt;}
.y10_c00498{bottom:713.306667pt;}
.yf_c00498{bottom:742.773333pt;}
.ye_c00498{bottom:771.840000pt;}
.yd_c00498{bottom:801.840000pt;}
.yc_c00498{bottom:831.573333pt;}
.yb_c00498{bottom:861.040000pt;}
.ya_c00498{bottom:889.840000pt;}
.y9_c00498{bottom:920.373333pt;}
.y8_c00498{bottom:949.440000pt;}
.y7_c00498{bottom:978.906667pt;}
.y6_c00498{bottom:1007.306667pt;}
.y5_c00498{bottom:1036.773333pt;}
.y4_c00498{bottom:1066.106667pt;}
.y3_c00498{bottom:1095.306667pt;}
.y2_c00498{bottom:1125.840000pt;}
.y1_c00498{bottom:1154.906667pt;}
.h5_c00498{height:11.733399pt;}
.h6_c00498{height:38.937500pt;}
.h2_c00498{height:87.390625pt;}
.h3_c00498{height:108.041667pt;}
.h4_c00498{height:114.794271pt;}
.h0_c00498{height:1205.733333pt;}
.h1_c00498{height:1206.000000pt;}
.w2_c00498{width:93.222667pt;}
.w0_c00498{width:765.133333pt;}
.w1_c00498{width:765.333333pt;}
.x0_c00498{left:0.000000pt;}
.xd_c00498{left:14.666667pt;}
.x9_c00498{left:16.533333pt;}
.xb_c00498{left:17.600000pt;}
.xa_c00498{left:18.533333pt;}
.x8_c00498{left:19.466667pt;}
.x7_c00498{left:20.400000pt;}
.x6_c00498{left:21.333333pt;}
.x5_c00498{left:22.800000pt;}
.xe_c00498{left:24.800000pt;}
.x4_c00498{left:25.733333pt;}
.x3_c00498{left:27.200000pt;}
.x2_c00498{left:29.066667pt;}
.xc_c00498{left:47.333333pt;}
.x10_c00498{left:339.734863pt;}
.x1_c00498{left:456.666667pt;}
.xf_c00498{left:484.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c5ae3f540b212beee460c33.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_862df4aecabfb1e08674d604.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_2e2760d7ce02866cf1ac73d3.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls5_c00499{letter-spacing:-3.000000px;}
.ls2_c00499{letter-spacing:0.000000px;}
.ls4_c00499{letter-spacing:6.000000px;}
.ls1_c00499{letter-spacing:7.275000px;}
.ls3_c00499{letter-spacing:15.000000px;}
.ls0_c00499{letter-spacing:52.368000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-43.084800px;}
.ws1_c00499{word-spacing:0.000000px;}
._29_c00499{margin-left:-32.160000px;}
._2c_c00499{margin-left:-30.912000px;}
._1a_c00499{margin-left:-13.824000px;}
._e_c00499{margin-left:-12.480000px;}
._2a_c00499{margin-left:-11.328000px;}
._2e_c00499{margin-left:-10.176000px;}
._2b_c00499{margin-left:-8.256000px;}
._32_c00499{margin-left:-7.200000px;}
._22_c00499{margin-left:-5.952000px;}
._27_c00499{margin-left:-4.128000px;}
._10_c00499{margin-left:-2.208000px;}
._6_c00499{margin-left:-1.152000px;}
._4_c00499{width:1.920000px;}
._b_c00499{width:2.976000px;}
._3_c00499{width:4.032000px;}
._2_c00499{width:5.184000px;}
._8_c00499{width:6.240000px;}
._1_c00499{width:7.392000px;}
._1d_c00499{width:9.216000px;}
._0_c00499{width:10.272000px;}
._1f_c00499{width:11.328000px;}
._12_c00499{width:13.344000px;}
._c_c00499{width:15.360000px;}
._20_c00499{width:17.184000px;}
._19_c00499{width:18.816000px;}
._13_c00499{width:20.352000px;}
._d_c00499{width:21.408000px;}
._f_c00499{width:25.440000px;}
._23_c00499{width:27.360000px;}
._1e_c00499{width:28.704000px;}
._5_c00499{width:30.144000px;}
._a_c00499{width:32.352000px;}
._1c_c00499{width:33.888000px;}
._16_c00499{width:35.040000px;}
._11_c00499{width:36.384000px;}
._33_c00499{width:37.920000px;}
._15_c00499{width:39.264000px;}
._9_c00499{width:41.184000px;}
._7_c00499{width:42.912000px;}
._26_c00499{width:45.984000px;}
._14_c00499{width:47.328000px;}
._17_c00499{width:49.920000px;}
._18_c00499{width:51.264000px;}
._24_c00499{width:53.376000px;}
._2d_c00499{width:56.352000px;}
._1b_c00499{width:60.000000px;}
._21_c00499{width:61.728000px;}
._25_c00499{width:63.360000px;}
._28_c00499{width:64.416000px;}
._30_c00499{width:213.960000px;}
._2f_c00499{width:248.544000px;}
._34_c00499{width:250.752000px;}
._31_c00499{width:460.128000px;}
._35_c00499{width:1012.512000px;}
._36_c00499{width:1877.451000px;}
.fc2_c00499{color:transparent;}
.fc1_c00499{color:rgb(128,128,128);}
.fc0_c00499{color:rgb(0,0,0);}
.fs6_c00499{font-size:48.000000px;}
.fs1_c00499{font-size:76.800000px;}
.fs2_c00499{font-size:87.000000px;}
.fs4_c00499{font-size:93.000000px;}
.fs0_c00499{font-size:96.000000px;}
.fs5_c00499{font-size:102.000000px;}
.fs3_c00499{font-size:105.000000px;}
.y0_c00499{bottom:0.000000px;}
.y27_c00499{bottom:3.105000px;}
.y26_c00499{bottom:7.228357px;}
.y24_c00499{bottom:139.680000px;}
.y23_c00499{bottom:162.780000px;}
.y22_c00499{bottom:172.530000px;}
.y21_c00499{bottom:205.530000px;}
.y20_c00499{bottom:240.030000px;}
.y1f_c00499{bottom:274.830000px;}
.y1e_c00499{bottom:308.130000px;}
.y1d_c00499{bottom:342.180000px;}
.y1c_c00499{bottom:375.930000px;}
.y1b_c00499{bottom:408.780000px;}
.y1a_c00499{bottom:443.130000px;}
.y19_c00499{bottom:476.880000px;}
.y18_c00499{bottom:510.330000px;}
.y17_c00499{bottom:542.730000px;}
.y16_c00499{bottom:578.130000px;}
.y15_c00499{bottom:610.830000px;}
.y14_c00499{bottom:644.580000px;}
.y25_c00499{bottom:656.430000px;}
.y13_c00499{bottom:678.330000px;}
.y12_c00499{bottom:711.780000px;}
.y11_c00499{bottom:745.230000px;}
.y10_c00499{bottom:778.680000px;}
.yf_c00499{bottom:812.130000px;}
.ye_c00499{bottom:845.730000px;}
.yd_c00499{bottom:879.180000px;}
.yc_c00499{bottom:912.330000px;}
.yb_c00499{bottom:945.030000px;}
.ya_c00499{bottom:979.080000px;}
.y9_c00499{bottom:1011.780000px;}
.y8_c00499{bottom:1044.630000px;}
.y7_c00499{bottom:1077.930000px;}
.y6_c00499{bottom:1111.680000px;}
.y5_c00499{bottom:1145.130000px;}
.y4_c00499{bottom:1177.980000px;}
.y3_c00499{bottom:1211.280000px;}
.y2_c00499{bottom:1244.730000px;}
.y1_c00499{bottom:1277.430000px;}
.h6_c00499{height:13.200074px;}
.h7_c00499{height:43.804688px;}
.h3_c00499{height:110.151855px;}
.h2_c00499{height:121.546875px;}
.h5_c00499{height:129.143555px;}
.h4_c00499{height:132.941895px;}
.h0_c00499{height:1382.700000px;}
.h1_c00499{height:1383.000000px;}
.w2_c00499{width:104.875500px;}
.w0_c00499{width:863.175000px;}
.w1_c00499{width:863.250000px;}
.x0_c00499{left:0.000000px;}
.x8_c00499{left:75.300000px;}
.xc_c00499{left:163.800000px;}
.x7_c00499{left:170.400000px;}
.xa_c00499{left:243.750000px;}
.x1_c00499{left:244.950000px;}
.x3_c00499{left:246.000000px;}
.x2_c00499{left:247.500000px;}
.x4_c00499{left:250.200000px;}
.x5_c00499{left:251.850000px;}
.x6_c00499{left:252.900000px;}
.x9_c00499{left:254.100000px;}
.xd_c00499{left:383.401749px;}
.xb_c00499{left:483.600000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls5_c00499{letter-spacing:-2.666667pt;}
.ls2_c00499{letter-spacing:0.000000pt;}
.ls4_c00499{letter-spacing:5.333333pt;}
.ls1_c00499{letter-spacing:6.466667pt;}
.ls3_c00499{letter-spacing:13.333333pt;}
.ls0_c00499{letter-spacing:46.549333pt;}
.ws0_c00499{word-spacing:-38.297600pt;}
.ws1_c00499{word-spacing:0.000000pt;}
._29_c00499{margin-left:-28.586667pt;}
._2c_c00499{margin-left:-27.477333pt;}
._1a_c00499{margin-left:-12.288000pt;}
._e_c00499{margin-left:-11.093333pt;}
._2a_c00499{margin-left:-10.069333pt;}
._2e_c00499{margin-left:-9.045333pt;}
._2b_c00499{margin-left:-7.338667pt;}
._32_c00499{margin-left:-6.400000pt;}
._22_c00499{margin-left:-5.290667pt;}
._27_c00499{margin-left:-3.669333pt;}
._10_c00499{margin-left:-1.962667pt;}
._6_c00499{margin-left:-1.024000pt;}
._4_c00499{width:1.706667pt;}
._b_c00499{width:2.645333pt;}
._3_c00499{width:3.584000pt;}
._2_c00499{width:4.608000pt;}
._8_c00499{width:5.546667pt;}
._1_c00499{width:6.570667pt;}
._1d_c00499{width:8.192000pt;}
._0_c00499{width:9.130667pt;}
._1f_c00499{width:10.069333pt;}
._12_c00499{width:11.861333pt;}
._c_c00499{width:13.653333pt;}
._20_c00499{width:15.274667pt;}
._19_c00499{width:16.725333pt;}
._13_c00499{width:18.090667pt;}
._d_c00499{width:19.029333pt;}
._f_c00499{width:22.613333pt;}
._23_c00499{width:24.320000pt;}
._1e_c00499{width:25.514667pt;}
._5_c00499{width:26.794667pt;}
._a_c00499{width:28.757333pt;}
._1c_c00499{width:30.122667pt;}
._16_c00499{width:31.146667pt;}
._11_c00499{width:32.341333pt;}
._33_c00499{width:33.706667pt;}
._15_c00499{width:34.901333pt;}
._9_c00499{width:36.608000pt;}
._7_c00499{width:38.144000pt;}
._26_c00499{width:40.874667pt;}
._14_c00499{width:42.069333pt;}
._17_c00499{width:44.373333pt;}
._18_c00499{width:45.568000pt;}
._24_c00499{width:47.445333pt;}
._2d_c00499{width:50.090667pt;}
._1b_c00499{width:53.333333pt;}
._21_c00499{width:54.869333pt;}
._25_c00499{width:56.320000pt;}
._28_c00499{width:57.258667pt;}
._30_c00499{width:190.186667pt;}
._2f_c00499{width:220.928000pt;}
._34_c00499{width:222.890667pt;}
._31_c00499{width:409.002667pt;}
._35_c00499{width:900.010667pt;}
._36_c00499{width:1668.845333pt;}
.fs6_c00499{font-size:42.666667pt;}
.fs1_c00499{font-size:68.266667pt;}
.fs2_c00499{font-size:77.333333pt;}
.fs4_c00499{font-size:82.666667pt;}
.fs0_c00499{font-size:85.333333pt;}
.fs5_c00499{font-size:90.666667pt;}
.fs3_c00499{font-size:93.333333pt;}
.y0_c00499{bottom:0.000000pt;}
.y27_c00499{bottom:2.760000pt;}
.y26_c00499{bottom:6.425206pt;}
.y24_c00499{bottom:124.160000pt;}
.y23_c00499{bottom:144.693333pt;}
.y22_c00499{bottom:153.360000pt;}
.y21_c00499{bottom:182.693333pt;}
.y20_c00499{bottom:213.360000pt;}
.y1f_c00499{bottom:244.293333pt;}
.y1e_c00499{bottom:273.893333pt;}
.y1d_c00499{bottom:304.160000pt;}
.y1c_c00499{bottom:334.160000pt;}
.y1b_c00499{bottom:363.360000pt;}
.y1a_c00499{bottom:393.893333pt;}
.y19_c00499{bottom:423.893333pt;}
.y18_c00499{bottom:453.626667pt;}
.y17_c00499{bottom:482.426667pt;}
.y16_c00499{bottom:513.893333pt;}
.y15_c00499{bottom:542.960000pt;}
.y14_c00499{bottom:572.960000pt;}
.y25_c00499{bottom:583.493333pt;}
.y13_c00499{bottom:602.960000pt;}
.y12_c00499{bottom:632.693333pt;}
.y11_c00499{bottom:662.426667pt;}
.y10_c00499{bottom:692.160000pt;}
.yf_c00499{bottom:721.893333pt;}
.ye_c00499{bottom:751.760000pt;}
.yd_c00499{bottom:781.493333pt;}
.yc_c00499{bottom:810.960000pt;}
.yb_c00499{bottom:840.026667pt;}
.ya_c00499{bottom:870.293333pt;}
.y9_c00499{bottom:899.360000pt;}
.y8_c00499{bottom:928.560000pt;}
.y7_c00499{bottom:958.160000pt;}
.y6_c00499{bottom:988.160000pt;}
.y5_c00499{bottom:1017.893333pt;}
.y4_c00499{bottom:1047.093333pt;}
.y3_c00499{bottom:1076.693333pt;}
.y2_c00499{bottom:1106.426667pt;}
.y1_c00499{bottom:1135.493333pt;}
.h6_c00499{height:11.733399pt;}
.h7_c00499{height:38.937500pt;}
.h3_c00499{height:97.912760pt;}
.h2_c00499{height:108.041667pt;}
.h5_c00499{height:114.794271pt;}
.h4_c00499{height:118.170573pt;}
.h0_c00499{height:1229.066667pt;}
.h1_c00499{height:1229.333333pt;}
.w2_c00499{width:93.222667pt;}
.w0_c00499{width:767.266667pt;}
.w1_c00499{width:767.333333pt;}
.x0_c00499{left:0.000000pt;}
.x8_c00499{left:66.933333pt;}
.xc_c00499{left:145.600000pt;}
.x7_c00499{left:151.466667pt;}
.xa_c00499{left:216.666667pt;}
.x1_c00499{left:217.733333pt;}
.x3_c00499{left:218.666667pt;}
.x2_c00499{left:220.000000pt;}
.x4_c00499{left:222.400000pt;}
.x5_c00499{left:223.866667pt;}
.x6_c00499{left:224.800000pt;}
.x9_c00499{left:225.866667pt;}
.xd_c00499{left:340.801554pt;}
.xb_c00499{left:429.866667pt;}
}





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

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_901aacc86dcf890c67559228.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01000;src:url('chunks/assets/font_b9c12aec6037fe86bd13ee3a.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_06eeb9924e76d856a377f9de.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01000;src:url('chunks/assets/font_aa4fe4bb42abef915c745b77.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;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_c01000;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01000{font-family:ff5_c01000;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01000{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_c01000{vertical-align:0.000000px;}
.ls4_c01000{letter-spacing:0.000000px;}
.ls2_c01000{letter-spacing:2.556000px;}
.ls5_c01000{letter-spacing:3.000000px;}
.ls0_c01000{letter-spacing:6.720000px;}
.ls3_c01000{letter-spacing:15.000000px;}
.ls1_c01000{letter-spacing:22.200000px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01000{word-spacing:-70.044000px;}
.ws1_c01000{word-spacing:-54.000000px;}
.ws2_c01000{word-spacing:-23.136000px;}
.ws3_c01000{word-spacing:0.000000px;}
._37_c01000{margin-left:-33.792000px;}
._3a_c01000{margin-left:-29.622000px;}
._47_c01000{margin-left:-23.544000px;}
._35_c01000{margin-left:-22.446000px;}
._48_c01000{margin-left:-20.256000px;}
._d_c01000{margin-left:-17.568000px;}
._33_c01000{margin-left:-16.362000px;}
._e_c01000{margin-left:-14.112000px;}
._2d_c01000{margin-left:-12.474000px;}
._42_c01000{margin-left:-11.070000px;}
._4a_c01000{margin-left:-9.222000px;}
._18_c01000{margin-left:-6.816000px;}
._2c_c01000{margin-left:-4.692000px;}
._20_c01000{margin-left:-3.276000px;}
._5_c01000{margin-left:-1.920000px;}
._0_c01000{width:1.782000px;}
._8_c01000{width:2.784000px;}
._a_c01000{width:3.882000px;}
._3_c01000{width:5.664000px;}
._2_c01000{width:7.488000px;}
._15_c01000{width:8.928000px;}
._3b_c01000{width:10.014000px;}
._1b_c01000{width:11.190000px;}
._1a_c01000{width:13.056000px;}
._27_c01000{width:14.904000px;}
._17_c01000{width:16.362000px;}
._11_c01000{width:18.048000px;}
._36_c01000{width:19.104000px;}
._16_c01000{width:20.226000px;}
._6_c01000{width:21.312000px;}
._4_c01000{width:24.768000px;}
._24_c01000{width:26.418000px;}
._2e_c01000{width:27.606000px;}
._21_c01000{width:28.866000px;}
._2b_c01000{width:30.906000px;}
._13_c01000{width:32.460000px;}
._1f_c01000{width:33.708000px;}
._3f_c01000{width:36.036000px;}
._b_c01000{width:37.236000px;}
._9_c01000{width:39.102000px;}
._1c_c01000{width:40.668000px;}
._19_c01000{width:42.816000px;}
._14_c01000{width:43.968000px;}
._4b_c01000{width:44.982000px;}
._f_c01000{width:45.984000px;}
._7_c01000{width:47.232000px;}
._23_c01000{width:49.278000px;}
._12_c01000{width:51.306000px;}
._49_c01000{width:52.500000px;}
._10_c01000{width:54.186000px;}
._28_c01000{width:55.788000px;}
._c_c01000{width:57.216000px;}
._1d_c01000{width:58.560000px;}
._25_c01000{width:60.480000px;}
._41_c01000{width:62.214000px;}
._1e_c01000{width:64.296000px;}
._30_c01000{width:65.886000px;}
._29_c01000{width:67.284000px;}
._3e_c01000{width:68.634000px;}
._2a_c01000{width:70.848000px;}
._3d_c01000{width:72.726000px;}
._31_c01000{width:75.894000px;}
._22_c01000{width:77.334000px;}
._45_c01000{width:80.424000px;}
._4c_c01000{width:84.492000px;}
._38_c01000{width:88.950000px;}
._2f_c01000{width:92.826000px;}
._26_c01000{width:125.610000px;}
._1_c01000{width:156.828000px;}
._3c_c01000{width:179.706000px;}
._34_c01000{width:203.178000px;}
._39_c01000{width:272.664000px;}
._40_c01000{width:351.036000px;}
._43_c01000{width:360.144000px;}
._44_c01000{width:366.390000px;}
._46_c01000{width:627.318000px;}
._32_c01000{width:798.816000px;}
._4d_c01000{width:821.394000px;}
.fc2_c01000{color:transparent;}
.fc1_c01000{color:rgb(128,128,128);}
.fc0_c01000{color:rgb(0,0,0);}
.fs4_c01000{font-size:48.000000px;}
.fs2_c01000{font-size:84.000000px;}
.fs1_c01000{font-size:96.000000px;}
.fs0_c01000{font-size:99.000000px;}
.fs3_c01000{font-size:102.000000px;}
.y0_c01000{bottom:0.000000px;}
.y26_c01000{bottom:3.105000px;}
.y25_c01000{bottom:7.228369px;}
.y24_c01000{bottom:107.370000px;}
.y23_c01000{bottom:141.420000px;}
.y22_c01000{bottom:176.220000px;}
.y21_c01000{bottom:209.970000px;}
.y20_c01000{bottom:244.320000px;}
.y1f_c01000{bottom:277.470000px;}
.y1e_c01000{bottom:311.220000px;}
.y1d_c01000{bottom:345.420000px;}
.y1c_c01000{bottom:378.720000px;}
.y1b_c01000{bottom:412.020000px;}
.y1a_c01000{bottom:445.170000px;}
.y19_c01000{bottom:478.920000px;}
.y18_c01000{bottom:512.370000px;}
.y17_c01000{bottom:545.670000px;}
.y16_c01000{bottom:580.470000px;}
.y15_c01000{bottom:613.170000px;}
.y14_c01000{bottom:646.320000px;}
.y13_c01000{bottom:679.770000px;}
.y12_c01000{bottom:713.070000px;}
.y11_c01000{bottom:746.520000px;}
.y10_c01000{bottom:779.970000px;}
.yf_c01000{bottom:812.670000px;}
.ye_c01000{bottom:845.670000px;}
.yd_c01000{bottom:878.070000px;}
.yc_c01000{bottom:911.970000px;}
.yb_c01000{bottom:944.970000px;}
.ya_c01000{bottom:977.970000px;}
.y9_c01000{bottom:1010.820000px;}
.y8_c01000{bottom:1044.120000px;}
.y7_c01000{bottom:1076.970000px;}
.y6_c01000{bottom:1109.070000px;}
.y5_c01000{bottom:1142.070000px;}
.y4_c01000{bottom:1174.470000px;}
.y3_c01000{bottom:1207.620000px;}
.y2_c01000{bottom:1240.320000px;}
.y1_c01000{bottom:1273.020000px;}
.h4_c01000{height:13.200073px;}
.h5_c01000{height:43.804688px;}
.h2_c01000{height:121.546875px;}
.h3_c01000{height:129.143555px;}
.h0_c01000{height:1383.450000px;}
.h1_c01000{height:1383.750000px;}
.w2_c01000{width:104.875500px;}
.w0_c01000{width:878.025000px;}
.w1_c01000{width:878.250000px;}
.x0_c01000{left:0.000000px;}
.x7_c01000{left:10.500000px;}
.x5_c01000{left:11.700000px;}
.x6_c01000{left:12.750000px;}
.x4_c01000{left:13.800000px;}
.x3_c01000{left:15.300000px;}
.x2_c01000{left:16.500000px;}
.x8_c01000{left:19.650000px;}
.x9_c01000{left:21.900000px;}
.x1_c01000{left:65.700000px;}
.xa_c01000{left:291.450000px;}
.xb_c01000{left:390.826721px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls4_c01000{letter-spacing:0.000000pt;}
.ls2_c01000{letter-spacing:2.272000pt;}
.ls5_c01000{letter-spacing:2.666667pt;}
.ls0_c01000{letter-spacing:5.973333pt;}
.ls3_c01000{letter-spacing:13.333333pt;}
.ls1_c01000{letter-spacing:19.733333pt;}
.ws0_c01000{word-spacing:-62.261333pt;}
.ws1_c01000{word-spacing:-48.000000pt;}
.ws2_c01000{word-spacing:-20.565333pt;}
.ws3_c01000{word-spacing:0.000000pt;}
._37_c01000{margin-left:-30.037333pt;}
._3a_c01000{margin-left:-26.330667pt;}
._47_c01000{margin-left:-20.928000pt;}
._35_c01000{margin-left:-19.952000pt;}
._48_c01000{margin-left:-18.005333pt;}
._d_c01000{margin-left:-15.616000pt;}
._33_c01000{margin-left:-14.544000pt;}
._e_c01000{margin-left:-12.544000pt;}
._2d_c01000{margin-left:-11.088000pt;}
._42_c01000{margin-left:-9.840000pt;}
._4a_c01000{margin-left:-8.197333pt;}
._18_c01000{margin-left:-6.058667pt;}
._2c_c01000{margin-left:-4.170667pt;}
._20_c01000{margin-left:-2.912000pt;}
._5_c01000{margin-left:-1.706667pt;}
._0_c01000{width:1.584000pt;}
._8_c01000{width:2.474667pt;}
._a_c01000{width:3.450667pt;}
._3_c01000{width:5.034667pt;}
._2_c01000{width:6.656000pt;}
._15_c01000{width:7.936000pt;}
._3b_c01000{width:8.901333pt;}
._1b_c01000{width:9.946667pt;}
._1a_c01000{width:11.605333pt;}
._27_c01000{width:13.248000pt;}
._17_c01000{width:14.544000pt;}
._11_c01000{width:16.042667pt;}
._36_c01000{width:16.981333pt;}
._16_c01000{width:17.978667pt;}
._6_c01000{width:18.944000pt;}
._4_c01000{width:22.016000pt;}
._24_c01000{width:23.482667pt;}
._2e_c01000{width:24.538667pt;}
._21_c01000{width:25.658667pt;}
._2b_c01000{width:27.472000pt;}
._13_c01000{width:28.853333pt;}
._1f_c01000{width:29.962667pt;}
._3f_c01000{width:32.032000pt;}
._b_c01000{width:33.098667pt;}
._9_c01000{width:34.757333pt;}
._1c_c01000{width:36.149333pt;}
._19_c01000{width:38.058667pt;}
._14_c01000{width:39.082667pt;}
._4b_c01000{width:39.984000pt;}
._f_c01000{width:40.874667pt;}
._7_c01000{width:41.984000pt;}
._23_c01000{width:43.802667pt;}
._12_c01000{width:45.605333pt;}
._49_c01000{width:46.666667pt;}
._10_c01000{width:48.165333pt;}
._28_c01000{width:49.589333pt;}
._c_c01000{width:50.858667pt;}
._1d_c01000{width:52.053333pt;}
._25_c01000{width:53.760000pt;}
._41_c01000{width:55.301333pt;}
._1e_c01000{width:57.152000pt;}
._30_c01000{width:58.565333pt;}
._29_c01000{width:59.808000pt;}
._3e_c01000{width:61.008000pt;}
._2a_c01000{width:62.976000pt;}
._3d_c01000{width:64.645333pt;}
._31_c01000{width:67.461333pt;}
._22_c01000{width:68.741333pt;}
._45_c01000{width:71.488000pt;}
._4c_c01000{width:75.104000pt;}
._38_c01000{width:79.066667pt;}
._2f_c01000{width:82.512000pt;}
._26_c01000{width:111.653333pt;}
._1_c01000{width:139.402667pt;}
._3c_c01000{width:159.738667pt;}
._34_c01000{width:180.602667pt;}
._39_c01000{width:242.368000pt;}
._40_c01000{width:312.032000pt;}
._43_c01000{width:320.128000pt;}
._44_c01000{width:325.680000pt;}
._46_c01000{width:557.616000pt;}
._32_c01000{width:710.058667pt;}
._4d_c01000{width:730.128000pt;}
.fs4_c01000{font-size:42.666667pt;}
.fs2_c01000{font-size:74.666667pt;}
.fs1_c01000{font-size:85.333333pt;}
.fs0_c01000{font-size:88.000000pt;}
.fs3_c01000{font-size:90.666667pt;}
.y0_c01000{bottom:0.000000pt;}
.y26_c01000{bottom:2.760000pt;}
.y25_c01000{bottom:6.425217pt;}
.y24_c01000{bottom:95.440000pt;}
.y23_c01000{bottom:125.706667pt;}
.y22_c01000{bottom:156.640000pt;}
.y21_c01000{bottom:186.640000pt;}
.y20_c01000{bottom:217.173333pt;}
.y1f_c01000{bottom:246.640000pt;}
.y1e_c01000{bottom:276.640000pt;}
.y1d_c01000{bottom:307.040000pt;}
.y1c_c01000{bottom:336.640000pt;}
.y1b_c01000{bottom:366.240000pt;}
.y1a_c01000{bottom:395.706667pt;}
.y19_c01000{bottom:425.706667pt;}
.y18_c01000{bottom:455.440000pt;}
.y17_c01000{bottom:485.040000pt;}
.y16_c01000{bottom:515.973333pt;}
.y15_c01000{bottom:545.040000pt;}
.y14_c01000{bottom:574.506667pt;}
.y13_c01000{bottom:604.240000pt;}
.y12_c01000{bottom:633.840000pt;}
.y11_c01000{bottom:663.573333pt;}
.y10_c01000{bottom:693.306667pt;}
.yf_c01000{bottom:722.373333pt;}
.ye_c01000{bottom:751.706667pt;}
.yd_c01000{bottom:780.506667pt;}
.yc_c01000{bottom:810.640000pt;}
.yb_c01000{bottom:839.973333pt;}
.ya_c01000{bottom:869.306667pt;}
.y9_c01000{bottom:898.506667pt;}
.y8_c01000{bottom:928.106667pt;}
.y7_c01000{bottom:957.306667pt;}
.y6_c01000{bottom:985.840000pt;}
.y5_c01000{bottom:1015.173333pt;}
.y4_c01000{bottom:1043.973333pt;}
.y3_c01000{bottom:1073.440000pt;}
.y2_c01000{bottom:1102.506667pt;}
.y1_c01000{bottom:1131.573333pt;}
.h4_c01000{height:11.733399pt;}
.h5_c01000{height:38.937500pt;}
.h2_c01000{height:108.041667pt;}
.h3_c01000{height:114.794271pt;}
.h0_c01000{height:1229.733333pt;}
.h1_c01000{height:1230.000000pt;}
.w2_c01000{width:93.222667pt;}
.w0_c01000{width:780.466667pt;}
.w1_c01000{width:780.666667pt;}
.x0_c01000{left:0.000000pt;}
.x7_c01000{left:9.333333pt;}
.x5_c01000{left:10.400000pt;}
.x6_c01000{left:11.333333pt;}
.x4_c01000{left:12.266667pt;}
.x3_c01000{left:13.600000pt;}
.x2_c01000{left:14.666667pt;}
.x8_c01000{left:17.466667pt;}
.x9_c01000{left:19.466667pt;}
.x1_c01000{left:58.400000pt;}
.xa_c01000{left:259.066667pt;}
.xb_c01000{left:347.401530pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_f9197ddb6c9816a0dc335ac7.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01001;src:url('chunks/assets/font_71bea7e312950478250ec7f7.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01001;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01001{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m0_c01001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01001{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls4_c01001{letter-spacing:0.000000px;}
.ls5_c01001{letter-spacing:30.000000px;}
.ls3_c01001{letter-spacing:30.033000px;}
.ls0_c01001{letter-spacing:40.833000px;}
.ls1_c01001{letter-spacing:100.833000px;}
.ls2_c01001{letter-spacing:646.233000px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:-50.244000px;}
.ws3_c01001{word-spacing:-23.136000px;}
.ws1_c01001{word-spacing:-20.244000px;}
.ws2_c01001{word-spacing:-1.092000px;}
.ws4_c01001{word-spacing:0.000000px;}
._34_c01001{margin-left:-9.660000px;}
._20_c01001{margin-left:-6.912000px;}
._1d_c01001{margin-left:-5.280000px;}
._23_c01001{margin-left:-3.948000px;}
._f_c01001{margin-left:-2.688000px;}
._10_c01001{margin-left:-1.152000px;}
._3_c01001{width:2.016000px;}
._0_c01001{width:3.168000px;}
._6_c01001{width:4.320000px;}
._1_c01001{width:5.376000px;}
._e_c01001{width:6.432000px;}
._7_c01001{width:7.872000px;}
._13_c01001{width:8.928000px;}
._a_c01001{width:10.656000px;}
._b_c01001{width:12.288000px;}
._2f_c01001{width:13.368000px;}
._d_c01001{width:14.592000px;}
._29_c01001{width:17.184000px;}
._3e_c01001{width:18.624000px;}
._30_c01001{width:19.776000px;}
._5_c01001{width:21.888000px;}
._25_c01001{width:24.696000px;}
._4_c01001{width:26.208000px;}
._3d_c01001{width:27.384000px;}
._1f_c01001{width:28.416000px;}
._9_c01001{width:29.664000px;}
._24_c01001{width:32.040000px;}
._16_c01001{width:33.408000px;}
._1e_c01001{width:34.752000px;}
._36_c01001{width:36.144000px;}
._15_c01001{width:37.152000px;}
._14_c01001{width:38.304000px;}
._1a_c01001{width:39.456000px;}
._28_c01001{width:40.776000px;}
._2a_c01001{width:42.432000px;}
._27_c01001{width:43.524000px;}
._17_c01001{width:44.640000px;}
._c_c01001{width:45.888000px;}
._2_c01001{width:47.616000px;}
._1c_c01001{width:49.440000px;}
._2b_c01001{width:50.880000px;}
._8_c01001{width:52.224000px;}
._2d_c01001{width:53.490000px;}
._38_c01001{width:55.584000px;}
._12_c01001{width:56.640000px;}
._2e_c01001{width:58.518000px;}
._32_c01001{width:60.768000px;}
._2c_c01001{width:62.448000px;}
._3c_c01001{width:64.464000px;}
._33_c01001{width:66.048000px;}
._1b_c01001{width:69.408000px;}
._40_c01001{width:70.464000px;}
._18_c01001{width:73.248000px;}
._3b_c01001{width:77.784000px;}
._37_c01001{width:79.392000px;}
._39_c01001{width:81.600000px;}
._3a_c01001{width:84.000000px;}
._11_c01001{width:106.752000px;}
._19_c01001{width:112.128000px;}
._3f_c01001{width:121.248000px;}
._26_c01001{width:144.840000px;}
._21_c01001{width:159.552000px;}
._22_c01001{width:316.128000px;}
._35_c01001{width:663.552000px;}
._31_c01001{width:666.180000px;}
._41_c01001{width:926.688000px;}
.fc2_c01001{color:transparent;}
.fc1_c01001{color:rgb(128,128,128);}
.fc0_c01001{color:rgb(0,0,0);}
.fs4_c01001{font-size:48.000000px;}
.fs2_c01001{font-size:78.000000px;}
.fs1_c01001{font-size:84.000000px;}
.fs3_c01001{font-size:87.000000px;}
.fs0_c01001{font-size:96.000000px;}
.y0_c01001{bottom:0.000000px;}
.y26_c01001{bottom:3.105000px;}
.y25_c01001{bottom:7.228357px;}
.y24_c01001{bottom:103.680000px;}
.y23_c01001{bottom:133.080000px;}
.y22_c01001{bottom:166.680000px;}
.y21_c01001{bottom:200.880000px;}
.y20_c01001{bottom:234.180000px;}
.y1f_c01001{bottom:267.930000px;}
.y1e_c01001{bottom:302.130000px;}
.y1d_c01001{bottom:335.580000px;}
.y1c_c01001{bottom:368.880000px;}
.y1b_c01001{bottom:402.930000px;}
.y1a_c01001{bottom:436.080000px;}
.y19_c01001{bottom:469.830000px;}
.y18_c01001{bottom:503.280000px;}
.y17_c01001{bottom:537.030000px;}
.y16_c01001{bottom:570.480000px;}
.y15_c01001{bottom:604.080000px;}
.y14_c01001{bottom:637.230000px;}
.y13_c01001{bottom:670.680000px;}
.y12_c01001{bottom:703.980000px;}
.y11_c01001{bottom:737.130000px;}
.y10_c01001{bottom:771.180000px;}
.yf_c01001{bottom:803.880000px;}
.ye_c01001{bottom:837.330000px;}
.yd_c01001{bottom:870.780000px;}
.yc_c01001{bottom:907.530000px;}
.yb_c01001{bottom:937.530000px;}
.ya_c01001{bottom:973.680000px;}
.y9_c01001{bottom:1003.380000px;}
.y8_c01001{bottom:1035.780000px;}
.y7_c01001{bottom:1067.880000px;}
.y6_c01001{bottom:1101.630000px;}
.y5_c01001{bottom:1135.380000px;}
.y4_c01001{bottom:1168.380000px;}
.y3_c01001{bottom:1200.930000px;}
.y2_c01001{bottom:1233.930000px;}
.y1_c01001{bottom:1267.080000px;}
.h3_c01001{height:13.200074px;}
.h4_c01001{height:43.804688px;}
.h2_c01001{height:121.546875px;}
.h0_c01001{height:1382.700000px;}
.h1_c01001{height:1383.000000px;}
.w2_c01001{width:104.875500px;}
.w0_c01001{width:863.175000px;}
.w1_c01001{width:863.250000px;}
.x0_c01001{left:0.000000px;}
.x8_c01001{left:45.600000px;}
.x9_c01001{left:47.850000px;}
.xa_c01001{left:51.000000px;}
.x7_c01001{left:71.100000px;}
.x5_c01001{left:72.600000px;}
.x4_c01001{left:114.750000px;}
.x1_c01001{left:257.400000px;}
.x2_c01001{left:259.500000px;}
.x3_c01001{left:260.550000px;}
.x6_c01001{left:261.600000px;}
.xb_c01001{left:263.250000px;}
.xc_c01001{left:264.900000px;}
.xd_c01001{left:265.950000px;}
.xe_c01001{left:268.200000px;}
.x12_c01001{left:383.401749px;}
.xf_c01001{left:496.200000px;}
.x10_c01001{left:499.950000px;}
.x11_c01001{left:550.650000px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls4_c01001{letter-spacing:0.000000pt;}
.ls5_c01001{letter-spacing:26.666667pt;}
.ls3_c01001{letter-spacing:26.696000pt;}
.ls0_c01001{letter-spacing:36.296000pt;}
.ls1_c01001{letter-spacing:89.629333pt;}
.ls2_c01001{letter-spacing:574.429333pt;}
.ws0_c01001{word-spacing:-44.661333pt;}
.ws3_c01001{word-spacing:-20.565333pt;}
.ws1_c01001{word-spacing:-17.994667pt;}
.ws2_c01001{word-spacing:-0.970667pt;}
.ws4_c01001{word-spacing:0.000000pt;}
._34_c01001{margin-left:-8.586667pt;}
._20_c01001{margin-left:-6.144000pt;}
._1d_c01001{margin-left:-4.693333pt;}
._23_c01001{margin-left:-3.509333pt;}
._f_c01001{margin-left:-2.389333pt;}
._10_c01001{margin-left:-1.024000pt;}
._3_c01001{width:1.792000pt;}
._0_c01001{width:2.816000pt;}
._6_c01001{width:3.840000pt;}
._1_c01001{width:4.778667pt;}
._e_c01001{width:5.717333pt;}
._7_c01001{width:6.997333pt;}
._13_c01001{width:7.936000pt;}
._a_c01001{width:9.472000pt;}
._b_c01001{width:10.922667pt;}
._2f_c01001{width:11.882667pt;}
._d_c01001{width:12.970667pt;}
._29_c01001{width:15.274667pt;}
._3e_c01001{width:16.554667pt;}
._30_c01001{width:17.578667pt;}
._5_c01001{width:19.456000pt;}
._25_c01001{width:21.952000pt;}
._4_c01001{width:23.296000pt;}
._3d_c01001{width:24.341333pt;}
._1f_c01001{width:25.258667pt;}
._9_c01001{width:26.368000pt;}
._24_c01001{width:28.480000pt;}
._16_c01001{width:29.696000pt;}
._1e_c01001{width:30.890667pt;}
._36_c01001{width:32.128000pt;}
._15_c01001{width:33.024000pt;}
._14_c01001{width:34.048000pt;}
._1a_c01001{width:35.072000pt;}
._28_c01001{width:36.245333pt;}
._2a_c01001{width:37.717333pt;}
._27_c01001{width:38.688000pt;}
._17_c01001{width:39.680000pt;}
._c_c01001{width:40.789333pt;}
._2_c01001{width:42.325333pt;}
._1c_c01001{width:43.946667pt;}
._2b_c01001{width:45.226667pt;}
._8_c01001{width:46.421333pt;}
._2d_c01001{width:47.546667pt;}
._38_c01001{width:49.408000pt;}
._12_c01001{width:50.346667pt;}
._2e_c01001{width:52.016000pt;}
._32_c01001{width:54.016000pt;}
._2c_c01001{width:55.509333pt;}
._3c_c01001{width:57.301333pt;}
._33_c01001{width:58.709333pt;}
._1b_c01001{width:61.696000pt;}
._40_c01001{width:62.634667pt;}
._18_c01001{width:65.109333pt;}
._3b_c01001{width:69.141333pt;}
._37_c01001{width:70.570667pt;}
._39_c01001{width:72.533333pt;}
._3a_c01001{width:74.666667pt;}
._11_c01001{width:94.890667pt;}
._19_c01001{width:99.669333pt;}
._3f_c01001{width:107.776000pt;}
._26_c01001{width:128.746667pt;}
._21_c01001{width:141.824000pt;}
._22_c01001{width:281.002667pt;}
._35_c01001{width:589.824000pt;}
._31_c01001{width:592.160000pt;}
._41_c01001{width:823.722667pt;}
.fs4_c01001{font-size:42.666667pt;}
.fs2_c01001{font-size:69.333333pt;}
.fs1_c01001{font-size:74.666667pt;}
.fs3_c01001{font-size:77.333333pt;}
.fs0_c01001{font-size:85.333333pt;}
.y0_c01001{bottom:0.000000pt;}
.y26_c01001{bottom:2.760000pt;}
.y25_c01001{bottom:6.425206pt;}
.y24_c01001{bottom:92.160000pt;}
.y23_c01001{bottom:118.293333pt;}
.y22_c01001{bottom:148.160000pt;}
.y21_c01001{bottom:178.560000pt;}
.y20_c01001{bottom:208.160000pt;}
.y1f_c01001{bottom:238.160000pt;}
.y1e_c01001{bottom:268.560000pt;}
.y1d_c01001{bottom:298.293333pt;}
.y1c_c01001{bottom:327.893333pt;}
.y1b_c01001{bottom:358.160000pt;}
.y1a_c01001{bottom:387.626667pt;}
.y19_c01001{bottom:417.626667pt;}
.y18_c01001{bottom:447.360000pt;}
.y17_c01001{bottom:477.360000pt;}
.y16_c01001{bottom:507.093333pt;}
.y15_c01001{bottom:536.960000pt;}
.y14_c01001{bottom:566.426667pt;}
.y13_c01001{bottom:596.160000pt;}
.y12_c01001{bottom:625.760000pt;}
.y11_c01001{bottom:655.226667pt;}
.y10_c01001{bottom:685.493333pt;}
.yf_c01001{bottom:714.560000pt;}
.ye_c01001{bottom:744.293333pt;}
.yd_c01001{bottom:774.026667pt;}
.yc_c01001{bottom:806.693333pt;}
.yb_c01001{bottom:833.360000pt;}
.ya_c01001{bottom:865.493333pt;}
.y9_c01001{bottom:891.893333pt;}
.y8_c01001{bottom:920.693333pt;}
.y7_c01001{bottom:949.226667pt;}
.y6_c01001{bottom:979.226667pt;}
.y5_c01001{bottom:1009.226667pt;}
.y4_c01001{bottom:1038.560000pt;}
.y3_c01001{bottom:1067.493333pt;}
.y2_c01001{bottom:1096.826667pt;}
.y1_c01001{bottom:1126.293333pt;}
.h3_c01001{height:11.733399pt;}
.h4_c01001{height:38.937500pt;}
.h2_c01001{height:108.041667pt;}
.h0_c01001{height:1229.066667pt;}
.h1_c01001{height:1229.333333pt;}
.w2_c01001{width:93.222667pt;}
.w0_c01001{width:767.266667pt;}
.w1_c01001{width:767.333333pt;}
.x0_c01001{left:0.000000pt;}
.x8_c01001{left:40.533333pt;}
.x9_c01001{left:42.533333pt;}
.xa_c01001{left:45.333333pt;}
.x7_c01001{left:63.200000pt;}
.x5_c01001{left:64.533333pt;}
.x4_c01001{left:102.000000pt;}
.x1_c01001{left:228.800000pt;}
.x2_c01001{left:230.666667pt;}
.x3_c01001{left:231.600000pt;}
.x6_c01001{left:232.533333pt;}
.xb_c01001{left:234.000000pt;}
.xc_c01001{left:235.466667pt;}
.xd_c01001{left:236.400000pt;}
.xe_c01001{left:238.400000pt;}
.x12_c01001{left:340.801554pt;}
.xf_c01001{left:441.066667pt;}
.x10_c01001{left:444.400000pt;}
.x11_c01001{left:489.466667pt;}
}





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

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_ae113eba93edb251077fc709.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01002;src:url('chunks/assets/font_59f595d8cd8926f118884a38.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01002;src:url('chunks/assets/font_fb984102bb80cbc61b0d8c86.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_215888714bb17bfeaa3dfff5.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01002;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01002{font-family:ff5_c01002;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.ls4_c01002{letter-spacing:-3.000000px;}
.ls2_c01002{letter-spacing:0.000000px;}
.ls3_c01002{letter-spacing:3.000000px;}
.ls1_c01002{letter-spacing:6.120000px;}
.ls0_c01002{letter-spacing:27.633000px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01002{word-spacing:-20.244000px;}
.ws0_c01002{word-spacing:-18.798000px;}
.ws2_c01002{word-spacing:0.000000px;}
._31_c01002{margin-left:-48.141000px;}
._36_c01002{margin-left:-39.930000px;}
._2f_c01002{margin-left:-37.455000px;}
._30_c01002{margin-left:-33.330000px;}
._34_c01002{margin-left:-32.010000px;}
._37_c01002{margin-left:-30.399000px;}
._35_c01002{margin-left:-28.710000px;}
._38_c01002{margin-left:-26.070000px;}
._33_c01002{margin-left:-24.915000px;}
._2a_c01002{margin-left:-22.200000px;}
._4b_c01002{margin-left:-19.002000px;}
._32_c01002{margin-left:-17.325000px;}
._4c_c01002{margin-left:-14.784000px;}
._4d_c01002{margin-left:-12.000000px;}
._29_c01002{margin-left:-10.752000px;}
._3b_c01002{margin-left:-8.499000px;}
._23_c01002{margin-left:-6.144000px;}
._5_c01002{margin-left:-4.800000px;}
._9_c01002{margin-left:-3.168000px;}
._0_c01002{margin-left:-1.728000px;}
._3f_c01002{width:1.014000px;}
._7_c01002{width:2.016000px;}
._2_c01002{width:3.264000px;}
._4_c01002{width:4.704000px;}
._3_c01002{width:6.624000px;}
._1_c01002{width:8.640000px;}
._1e_c01002{width:10.752000px;}
._8_c01002{width:11.904000px;}
._13_c01002{width:12.960000px;}
._6_c01002{width:14.016000px;}
._47_c01002{width:15.678000px;}
._a_c01002{width:16.800000px;}
._b_c01002{width:19.200000px;}
._c_c01002{width:21.504000px;}
._49_c01002{width:24.192000px;}
._46_c01002{width:25.446000px;}
._f_c01002{width:26.496000px;}
._d_c01002{width:28.320000px;}
._42_c01002{width:29.556000px;}
._20_c01002{width:30.912000px;}
._1f_c01002{width:32.256000px;}
._24_c01002{width:33.624000px;}
._e_c01002{width:34.848000px;}
._16_c01002{width:35.904000px;}
._21_c01002{width:36.960000px;}
._11_c01002{width:38.592000px;}
._19_c01002{width:40.704000px;}
._15_c01002{width:42.048000px;}
._12_c01002{width:43.488000px;}
._1c_c01002{width:44.544000px;}
._25_c01002{width:45.696000px;}
._26_c01002{width:46.944000px;}
._44_c01002{width:49.032000px;}
._17_c01002{width:50.112000px;}
._10_c01002{width:51.552000px;}
._45_c01002{width:52.704000px;}
._40_c01002{width:54.150000px;}
._41_c01002{width:55.956000px;}
._39_c01002{width:57.600000px;}
._1a_c01002{width:61.728000px;}
._4e_c01002{width:62.874000px;}
._43_c01002{width:65.184000px;}
._48_c01002{width:68.844000px;}
._1d_c01002{width:71.136000px;}
._1b_c01002{width:73.824000px;}
._3c_c01002{width:76.992000px;}
._3d_c01002{width:81.450000px;}
._4a_c01002{width:95.754000px;}
._3e_c01002{width:125.160000px;}
._2b_c01002{width:149.088000px;}
._14_c01002{width:179.136000px;}
._18_c01002{width:189.240000px;}
._28_c01002{width:256.704000px;}
._2c_c01002{width:259.968000px;}
._27_c01002{width:371.664000px;}
._2e_c01002{width:532.608000px;}
._2d_c01002{width:568.224000px;}
._22_c01002{width:584.304000px;}
._3a_c01002{width:679.200000px;}
.fc2_c01002{color:transparent;}
.fc1_c01002{color:rgb(128,128,128);}
.fc0_c01002{color:rgb(0,0,0);}
.fs6_c01002{font-size:48.000000px;}
.fs2_c01002{font-size:78.000000px;}
.fs1_c01002{font-size:84.000000px;}
.fs3_c01002{font-size:87.000000px;}
.fs0_c01002{font-size:96.000000px;}
.fs5_c01002{font-size:102.000000px;}
.fs4_c01002{font-size:165.000000px;}
.y0_c01002{bottom:0.000000px;}
.y27_c01002{bottom:3.105000px;}
.y26_c01002{bottom:7.228369px;}
.y25_c01002{bottom:108.570000px;}
.y24_c01002{bottom:140.670000px;}
.y23_c01002{bottom:176.220000px;}
.y22_c01002{bottom:209.520000px;}
.y21_c01002{bottom:243.270000px;}
.y20_c01002{bottom:275.970000px;}
.y1f_c01002{bottom:310.470000px;}
.y1e_c01002{bottom:343.170000px;}
.y1d_c01002{bottom:377.370000px;}
.y1c_c01002{bottom:410.970000px;}
.y1b_c01002{bottom:443.520000px;}
.y1a_c01002{bottom:477.270000px;}
.y19_c01002{bottom:510.570000px;}
.y18_c01002{bottom:544.770000px;}
.y17_c01002{bottom:578.070000px;}
.y16_c01002{bottom:611.820000px;}
.y15_c01002{bottom:644.970000px;}
.y14_c01002{bottom:678.420000px;}
.y13_c01002{bottom:711.720000px;}
.y12_c01002{bottom:744.870000px;}
.y11_c01002{bottom:778.320000px;}
.y10_c01002{bottom:811.320000px;}
.yf_c01002{bottom:844.020000px;}
.ye_c01002{bottom:877.470000px;}
.yd_c01002{bottom:910.920000px;}
.yc_c01002{bottom:942.870000px;}
.yb_c01002{bottom:975.420000px;}
.ya_c01002{bottom:1009.170000px;}
.y9_c01002{bottom:1029.270000px;}
.y8_c01002{bottom:1042.470000px;}
.y7_c01002{bottom:1076.670000px;}
.y6_c01002{bottom:1107.570000px;}
.y5_c01002{bottom:1141.320000px;}
.y4_c01002{bottom:1172.820000px;}
.y3_c01002{bottom:1205.820000px;}
.y2_c01002{bottom:1238.670000px;}
.y1_c01002{bottom:1272.420000px;}
.h5_c01002{height:13.200073px;}
.h6_c01002{height:43.804688px;}
.h2_c01002{height:121.546875px;}
.h4_c01002{height:129.143555px;}
.h3_c01002{height:161.857910px;}
.h0_c01002{height:1383.450000px;}
.h1_c01002{height:1383.750000px;}
.w2_c01002{width:104.875500px;}
.w0_c01002{width:878.025000px;}
.w1_c01002{width:878.250000px;}
.x0_c01002{left:0.000000px;}
.xe_c01002{left:30.000000px;}
.xd_c01002{left:34.800000px;}
.xb_c01002{left:36.450000px;}
.xc_c01002{left:38.100000px;}
.xa_c01002{left:39.150000px;}
.x9_c01002{left:40.800000px;}
.x7_c01002{left:41.850000px;}
.x8_c01002{left:43.500000px;}
.x3_c01002{left:44.550000px;}
.x5_c01002{left:46.200000px;}
.x2_c01002{left:47.250000px;}
.x1_c01002{left:51.000000px;}
.x6_c01002{left:55.350000px;}
.x4_c01002{left:95.850000px;}
.x10_c01002{left:390.826721px;}
.xf_c01002{left:535.950000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls4_c01002{letter-spacing:-2.666667pt;}
.ls2_c01002{letter-spacing:0.000000pt;}
.ls3_c01002{letter-spacing:2.666667pt;}
.ls1_c01002{letter-spacing:5.440000pt;}
.ls0_c01002{letter-spacing:24.562667pt;}
.ws1_c01002{word-spacing:-17.994667pt;}
.ws0_c01002{word-spacing:-16.709333pt;}
.ws2_c01002{word-spacing:0.000000pt;}
._31_c01002{margin-left:-42.792000pt;}
._36_c01002{margin-left:-35.493333pt;}
._2f_c01002{margin-left:-33.293333pt;}
._30_c01002{margin-left:-29.626667pt;}
._34_c01002{margin-left:-28.453333pt;}
._37_c01002{margin-left:-27.021333pt;}
._35_c01002{margin-left:-25.520000pt;}
._38_c01002{margin-left:-23.173333pt;}
._33_c01002{margin-left:-22.146667pt;}
._2a_c01002{margin-left:-19.733333pt;}
._4b_c01002{margin-left:-16.890667pt;}
._32_c01002{margin-left:-15.400000pt;}
._4c_c01002{margin-left:-13.141333pt;}
._4d_c01002{margin-left:-10.666667pt;}
._29_c01002{margin-left:-9.557333pt;}
._3b_c01002{margin-left:-7.554667pt;}
._23_c01002{margin-left:-5.461333pt;}
._5_c01002{margin-left:-4.266667pt;}
._9_c01002{margin-left:-2.816000pt;}
._0_c01002{margin-left:-1.536000pt;}
._3f_c01002{width:0.901333pt;}
._7_c01002{width:1.792000pt;}
._2_c01002{width:2.901333pt;}
._4_c01002{width:4.181333pt;}
._3_c01002{width:5.888000pt;}
._1_c01002{width:7.680000pt;}
._1e_c01002{width:9.557333pt;}
._8_c01002{width:10.581333pt;}
._13_c01002{width:11.520000pt;}
._6_c01002{width:12.458667pt;}
._47_c01002{width:13.936000pt;}
._a_c01002{width:14.933333pt;}
._b_c01002{width:17.066667pt;}
._c_c01002{width:19.114667pt;}
._49_c01002{width:21.504000pt;}
._46_c01002{width:22.618667pt;}
._f_c01002{width:23.552000pt;}
._d_c01002{width:25.173333pt;}
._42_c01002{width:26.272000pt;}
._20_c01002{width:27.477333pt;}
._1f_c01002{width:28.672000pt;}
._24_c01002{width:29.888000pt;}
._e_c01002{width:30.976000pt;}
._16_c01002{width:31.914667pt;}
._21_c01002{width:32.853333pt;}
._11_c01002{width:34.304000pt;}
._19_c01002{width:36.181333pt;}
._15_c01002{width:37.376000pt;}
._12_c01002{width:38.656000pt;}
._1c_c01002{width:39.594667pt;}
._25_c01002{width:40.618667pt;}
._26_c01002{width:41.728000pt;}
._44_c01002{width:43.584000pt;}
._17_c01002{width:44.544000pt;}
._10_c01002{width:45.824000pt;}
._45_c01002{width:46.848000pt;}
._40_c01002{width:48.133333pt;}
._41_c01002{width:49.738667pt;}
._39_c01002{width:51.200000pt;}
._1a_c01002{width:54.869333pt;}
._4e_c01002{width:55.888000pt;}
._43_c01002{width:57.941333pt;}
._48_c01002{width:61.194667pt;}
._1d_c01002{width:63.232000pt;}
._1b_c01002{width:65.621333pt;}
._3c_c01002{width:68.437333pt;}
._3d_c01002{width:72.400000pt;}
._4a_c01002{width:85.114667pt;}
._3e_c01002{width:111.253333pt;}
._2b_c01002{width:132.522667pt;}
._14_c01002{width:159.232000pt;}
._18_c01002{width:168.213333pt;}
._28_c01002{width:228.181333pt;}
._2c_c01002{width:231.082667pt;}
._27_c01002{width:330.368000pt;}
._2e_c01002{width:473.429333pt;}
._2d_c01002{width:505.088000pt;}
._22_c01002{width:519.381333pt;}
._3a_c01002{width:603.733333pt;}
.fs6_c01002{font-size:42.666667pt;}
.fs2_c01002{font-size:69.333333pt;}
.fs1_c01002{font-size:74.666667pt;}
.fs3_c01002{font-size:77.333333pt;}
.fs0_c01002{font-size:85.333333pt;}
.fs5_c01002{font-size:90.666667pt;}
.fs4_c01002{font-size:146.666667pt;}
.y0_c01002{bottom:0.000000pt;}
.y27_c01002{bottom:2.760000pt;}
.y26_c01002{bottom:6.425217pt;}
.y25_c01002{bottom:96.506667pt;}
.y24_c01002{bottom:125.040000pt;}
.y23_c01002{bottom:156.640000pt;}
.y22_c01002{bottom:186.240000pt;}
.y21_c01002{bottom:216.240000pt;}
.y20_c01002{bottom:245.306667pt;}
.y1f_c01002{bottom:275.973333pt;}
.y1e_c01002{bottom:305.040000pt;}
.y1d_c01002{bottom:335.440000pt;}
.y1c_c01002{bottom:365.306667pt;}
.y1b_c01002{bottom:394.240000pt;}
.y1a_c01002{bottom:424.240000pt;}
.y19_c01002{bottom:453.840000pt;}
.y18_c01002{bottom:484.240000pt;}
.y17_c01002{bottom:513.840000pt;}
.y16_c01002{bottom:543.840000pt;}
.y15_c01002{bottom:573.306667pt;}
.y14_c01002{bottom:603.040000pt;}
.y13_c01002{bottom:632.640000pt;}
.y12_c01002{bottom:662.106667pt;}
.y11_c01002{bottom:691.840000pt;}
.y10_c01002{bottom:721.173333pt;}
.yf_c01002{bottom:750.240000pt;}
.ye_c01002{bottom:779.973333pt;}
.yd_c01002{bottom:809.706667pt;}
.yc_c01002{bottom:838.106667pt;}
.yb_c01002{bottom:867.040000pt;}
.ya_c01002{bottom:897.040000pt;}
.y9_c01002{bottom:914.906667pt;}
.y8_c01002{bottom:926.640000pt;}
.y7_c01002{bottom:957.040000pt;}
.y6_c01002{bottom:984.506667pt;}
.y5_c01002{bottom:1014.506667pt;}
.y4_c01002{bottom:1042.506667pt;}
.y3_c01002{bottom:1071.840000pt;}
.y2_c01002{bottom:1101.040000pt;}
.y1_c01002{bottom:1131.040000pt;}
.h5_c01002{height:11.733399pt;}
.h6_c01002{height:38.937500pt;}
.h2_c01002{height:108.041667pt;}
.h4_c01002{height:114.794271pt;}
.h3_c01002{height:143.873698pt;}
.h0_c01002{height:1229.733333pt;}
.h1_c01002{height:1230.000000pt;}
.w2_c01002{width:93.222667pt;}
.w0_c01002{width:780.466667pt;}
.w1_c01002{width:780.666667pt;}
.x0_c01002{left:0.000000pt;}
.xe_c01002{left:26.666667pt;}
.xd_c01002{left:30.933333pt;}
.xb_c01002{left:32.400000pt;}
.xc_c01002{left:33.866667pt;}
.xa_c01002{left:34.800000pt;}
.x9_c01002{left:36.266667pt;}
.x7_c01002{left:37.200000pt;}
.x8_c01002{left:38.666667pt;}
.x3_c01002{left:39.600000pt;}
.x5_c01002{left:41.066667pt;}
.x2_c01002{left:42.000000pt;}
.x1_c01002{left:45.333333pt;}
.x6_c01002{left:49.200000pt;}
.x4_c01002{left:85.200000pt;}
.x10_c01002{left:347.401530pt;}
.xf_c01002{left:476.400000pt;}
}





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

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_ddc6bd2717a3db6d17268c4f.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01003;src:url('chunks/assets/font_d8c6e6f98b2373a07ced3fbe.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01003;src:url('chunks/assets/font_fcf163218b0654e2522b119e.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01003;src:url('chunks/assets/font_b8f46ec16495833fa12967b2.woff2')format("woff");}.ff4_c01003{font-family:ff4_c01003;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01003;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01003{font-family:ff5_c01003;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls8_c01003{letter-spacing:0.000000px;}
.ls0_c01003{letter-spacing:28.248000px;}
.ls7_c01003{letter-spacing:36.633000px;}
.ls2_c01003{letter-spacing:51.033000px;}
.ls6_c01003{letter-spacing:61.833000px;}
.ls5_c01003{letter-spacing:70.833000px;}
.ls9_c01003{letter-spacing:132.000000px;}
.ls4_c01003{letter-spacing:252.033000px;}
.ls1_c01003{letter-spacing:486.633000px;}
.ls3_c01003{letter-spacing:631.233000px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01003{word-spacing:-53.856000px;}
.ws1_c01003{word-spacing:-43.084800px;}
.ws3_c01003{word-spacing:-23.136000px;}
.ws2_c01003{word-spacing:-18.798000px;}
.ws4_c01003{word-spacing:0.000000px;}
._3e_c01003{margin-left:-150.081000px;}
._41_c01003{margin-left:-127.494600px;}
._42_c01003{margin-left:-93.873000px;}
._25_c01003{margin-left:-43.368000px;}
._3c_c01003{margin-left:-31.554000px;}
._3d_c01003{margin-left:-30.096000px;}
._26_c01003{margin-left:-21.912000px;}
._37_c01003{margin-left:-16.224000px;}
._2b_c01003{margin-left:-15.168000px;}
._2f_c01003{margin-left:-13.248000px;}
._f_c01003{margin-left:-11.808000px;}
._b_c01003{margin-left:-10.464000px;}
._30_c01003{margin-left:-8.448000px;}
._0_c01003{margin-left:-6.240000px;}
._2c_c01003{margin-left:-4.992000px;}
._a_c01003{margin-left:-3.936000px;}
._1_c01003{margin-left:-2.784000px;}
._1f_c01003{margin-left:-1.152000px;}
._13_c01003{width:1.440000px;}
._5_c01003{width:2.592000px;}
._3_c01003{width:4.608000px;}
._4_c01003{width:5.760000px;}
._c_c01003{width:6.816000px;}
._12_c01003{width:8.064000px;}
._17_c01003{width:9.696000px;}
._28_c01003{width:10.718400px;}
._8_c01003{width:11.808000px;}
._7_c01003{width:12.864000px;}
._d_c01003{width:14.592000px;}
._11_c01003{width:15.936000px;}
._21_c01003{width:17.664000px;}
._1d_c01003{width:19.680000px;}
._38_c01003{width:22.842000px;}
._14_c01003{width:24.576000px;}
._20_c01003{width:26.304000px;}
._32_c01003{width:27.360000px;}
._24_c01003{width:28.416000px;}
._16_c01003{width:30.048000px;}
._1e_c01003{width:31.680000px;}
._29_c01003{width:32.736000px;}
._e_c01003{width:34.272000px;}
._27_c01003{width:35.841600px;}
._19_c01003{width:36.864000px;}
._1a_c01003{width:38.880000px;}
._10_c01003{width:40.800000px;}
._22_c01003{width:42.144000px;}
._23_c01003{width:43.584000px;}
._3a_c01003{width:44.886000px;}
._15_c01003{width:45.888000px;}
._1c_c01003{width:47.808000px;}
._18_c01003{width:49.152000px;}
._2d_c01003{width:50.304000px;}
._40_c01003{width:51.504000px;}
._2a_c01003{width:52.800000px;}
._31_c01003{width:54.561600px;}
._2e_c01003{width:55.968000px;}
._2_c01003{width:60.000000px;}
._9_c01003{width:62.880000px;}
._33_c01003{width:65.472000px;}
._6_c01003{width:66.528000px;}
._1b_c01003{width:69.792000px;}
._36_c01003{width:70.848000px;}
._39_c01003{width:84.422400px;}
._43_c01003{width:161.682000px;}
._35_c01003{width:180.864000px;}
._3f_c01003{width:183.033000px;}
._34_c01003{width:269.376000px;}
._3b_c01003{width:914.934000px;}
.fc2_c01003{color:transparent;}
.fc1_c01003{color:rgb(128,128,128);}
.fc0_c01003{color:rgb(0,0,0);}
.fs5_c01003{font-size:48.000000px;}
.fs4_c01003{font-size:62.400000px;}
.fs1_c01003{font-size:76.800000px;}
.fs2_c01003{font-size:78.000000px;}
.fs3_c01003{font-size:87.000000px;}
.fs0_c01003{font-size:96.000000px;}
.y0_c01003{bottom:0.000000px;}
.y27_c01003{bottom:3.105000px;}
.y26_c01003{bottom:7.228357px;}
.y25_c01003{bottom:116.880000px;}
.y24_c01003{bottom:144.780000px;}
.y23_c01003{bottom:178.530000px;}
.y22_c01003{bottom:212.280000px;}
.y21_c01003{bottom:246.330000px;}
.y20_c01003{bottom:280.080000px;}
.y1f_c01003{bottom:313.830000px;}
.y1e_c01003{bottom:347.730000px;}
.y1d_c01003{bottom:380.730000px;}
.y1c_c01003{bottom:415.230000px;}
.y1b_c01003{bottom:448.830000px;}
.y1a_c01003{bottom:482.580000px;}
.y19_c01003{bottom:516.330000px;}
.y18_c01003{bottom:550.230000px;}
.y17_c01003{bottom:581.880000px;}
.y16_c01003{bottom:614.280000px;}
.y15_c01003{bottom:636.180000px;}
.y14_c01003{bottom:646.080000px;}
.y13_c01003{bottom:688.230000px;}
.y12_c01003{bottom:720.630000px;}
.y11_c01003{bottom:753.330000px;}
.y10_c01003{bottom:782.730000px;}
.yf_c01003{bottom:817.680000px;}
.ye_c01003{bottom:850.830000px;}
.yd_c01003{bottom:883.980000px;}
.yc_c01003{bottom:917.430000px;}
.yb_c01003{bottom:950.430000px;}
.ya_c01003{bottom:983.430000px;}
.y9_c01003{bottom:1015.530000px;}
.y8_c01003{bottom:1048.980000px;}
.y7_c01003{bottom:1081.680000px;}
.y6_c01003{bottom:1115.730000px;}
.y5_c01003{bottom:1148.280000px;}
.y4_c01003{bottom:1181.580000px;}
.y3_c01003{bottom:1214.280000px;}
.y2_c01003{bottom:1248.030000px;}
.y1_c01003{bottom:1279.830000px;}
.h4_c01003{height:13.200074px;}
.h5_c01003{height:43.804688px;}
.h3_c01003{height:110.151855px;}
.h2_c01003{height:121.546875px;}
.h0_c01003{height:1382.700000px;}
.h1_c01003{height:1383.000000px;}
.w2_c01003{width:104.875500px;}
.w0_c01003{width:863.175000px;}
.w1_c01003{width:863.250000px;}
.x0_c01003{left:0.000000px;}
.x9_c01003{left:37.050000px;}
.xb_c01003{left:38.550000px;}
.xc_c01003{left:39.600000px;}
.x8_c01003{left:64.050000px;}
.xa_c01003{left:65.100000px;}
.x7_c01003{left:131.550000px;}
.x1_c01003{left:135.300000px;}
.x2_c01003{left:242.250000px;}
.x3_c01003{left:243.900000px;}
.x4_c01003{left:245.400000px;}
.x5_c01003{left:247.050000px;}
.x6_c01003{left:248.700000px;}
.xd_c01003{left:252.900000px;}
.xe_c01003{left:254.550000px;}
.xf_c01003{left:257.250000px;}
.x11_c01003{left:383.401749px;}
.x10_c01003{left:800.550000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls8_c01003{letter-spacing:0.000000pt;}
.ls0_c01003{letter-spacing:25.109333pt;}
.ls7_c01003{letter-spacing:32.562667pt;}
.ls2_c01003{letter-spacing:45.362667pt;}
.ls6_c01003{letter-spacing:54.962667pt;}
.ls5_c01003{letter-spacing:62.962667pt;}
.ls9_c01003{letter-spacing:117.333333pt;}
.ls4_c01003{letter-spacing:224.029333pt;}
.ls1_c01003{letter-spacing:432.562667pt;}
.ls3_c01003{letter-spacing:561.096000pt;}
.ws0_c01003{word-spacing:-47.872000pt;}
.ws1_c01003{word-spacing:-38.297600pt;}
.ws3_c01003{word-spacing:-20.565333pt;}
.ws2_c01003{word-spacing:-16.709333pt;}
.ws4_c01003{word-spacing:0.000000pt;}
._3e_c01003{margin-left:-133.405333pt;}
._41_c01003{margin-left:-113.328533pt;}
._42_c01003{margin-left:-83.442667pt;}
._25_c01003{margin-left:-38.549333pt;}
._3c_c01003{margin-left:-28.048000pt;}
._3d_c01003{margin-left:-26.752000pt;}
._26_c01003{margin-left:-19.477333pt;}
._37_c01003{margin-left:-14.421333pt;}
._2b_c01003{margin-left:-13.482667pt;}
._2f_c01003{margin-left:-11.776000pt;}
._f_c01003{margin-left:-10.496000pt;}
._b_c01003{margin-left:-9.301333pt;}
._30_c01003{margin-left:-7.509333pt;}
._0_c01003{margin-left:-5.546667pt;}
._2c_c01003{margin-left:-4.437333pt;}
._a_c01003{margin-left:-3.498667pt;}
._1_c01003{margin-left:-2.474667pt;}
._1f_c01003{margin-left:-1.024000pt;}
._13_c01003{width:1.280000pt;}
._5_c01003{width:2.304000pt;}
._3_c01003{width:4.096000pt;}
._4_c01003{width:5.120000pt;}
._c_c01003{width:6.058667pt;}
._12_c01003{width:7.168000pt;}
._17_c01003{width:8.618667pt;}
._28_c01003{width:9.527467pt;}
._8_c01003{width:10.496000pt;}
._7_c01003{width:11.434667pt;}
._d_c01003{width:12.970667pt;}
._11_c01003{width:14.165333pt;}
._21_c01003{width:15.701333pt;}
._1d_c01003{width:17.493333pt;}
._38_c01003{width:20.304000pt;}
._14_c01003{width:21.845333pt;}
._20_c01003{width:23.381333pt;}
._32_c01003{width:24.320000pt;}
._24_c01003{width:25.258667pt;}
._16_c01003{width:26.709333pt;}
._1e_c01003{width:28.160000pt;}
._29_c01003{width:29.098667pt;}
._e_c01003{width:30.464000pt;}
._27_c01003{width:31.859200pt;}
._19_c01003{width:32.768000pt;}
._1a_c01003{width:34.560000pt;}
._10_c01003{width:36.266667pt;}
._22_c01003{width:37.461333pt;}
._23_c01003{width:38.741333pt;}
._3a_c01003{width:39.898667pt;}
._15_c01003{width:40.789333pt;}
._1c_c01003{width:42.496000pt;}
._18_c01003{width:43.690667pt;}
._2d_c01003{width:44.714667pt;}
._40_c01003{width:45.781333pt;}
._2a_c01003{width:46.933333pt;}
._31_c01003{width:48.499200pt;}
._2e_c01003{width:49.749333pt;}
._2_c01003{width:53.333333pt;}
._9_c01003{width:55.893333pt;}
._33_c01003{width:58.197333pt;}
._6_c01003{width:59.136000pt;}
._1b_c01003{width:62.037333pt;}
._36_c01003{width:62.976000pt;}
._39_c01003{width:75.042133pt;}
._43_c01003{width:143.717333pt;}
._35_c01003{width:160.768000pt;}
._3f_c01003{width:162.696000pt;}
._34_c01003{width:239.445333pt;}
._3b_c01003{width:813.274667pt;}
.fs5_c01003{font-size:42.666667pt;}
.fs4_c01003{font-size:55.466667pt;}
.fs1_c01003{font-size:68.266667pt;}
.fs2_c01003{font-size:69.333333pt;}
.fs3_c01003{font-size:77.333333pt;}
.fs0_c01003{font-size:85.333333pt;}
.y0_c01003{bottom:0.000000pt;}
.y27_c01003{bottom:2.760000pt;}
.y26_c01003{bottom:6.425206pt;}
.y25_c01003{bottom:103.893333pt;}
.y24_c01003{bottom:128.693333pt;}
.y23_c01003{bottom:158.693333pt;}
.y22_c01003{bottom:188.693333pt;}
.y21_c01003{bottom:218.960000pt;}
.y20_c01003{bottom:248.960000pt;}
.y1f_c01003{bottom:278.960000pt;}
.y1e_c01003{bottom:309.093333pt;}
.y1d_c01003{bottom:338.426667pt;}
.y1c_c01003{bottom:369.093333pt;}
.y1b_c01003{bottom:398.960000pt;}
.y1a_c01003{bottom:428.960000pt;}
.y19_c01003{bottom:458.960000pt;}
.y18_c01003{bottom:489.093333pt;}
.y17_c01003{bottom:517.226667pt;}
.y16_c01003{bottom:546.026667pt;}
.y15_c01003{bottom:565.493333pt;}
.y14_c01003{bottom:574.293333pt;}
.y13_c01003{bottom:611.760000pt;}
.y12_c01003{bottom:640.560000pt;}
.y11_c01003{bottom:669.626667pt;}
.y10_c01003{bottom:695.760000pt;}
.yf_c01003{bottom:726.826667pt;}
.ye_c01003{bottom:756.293333pt;}
.yd_c01003{bottom:785.760000pt;}
.yc_c01003{bottom:815.493333pt;}
.yb_c01003{bottom:844.826667pt;}
.ya_c01003{bottom:874.160000pt;}
.y9_c01003{bottom:902.693333pt;}
.y8_c01003{bottom:932.426667pt;}
.y7_c01003{bottom:961.493333pt;}
.y6_c01003{bottom:991.760000pt;}
.y5_c01003{bottom:1020.693333pt;}
.y4_c01003{bottom:1050.293333pt;}
.y3_c01003{bottom:1079.360000pt;}
.y2_c01003{bottom:1109.360000pt;}
.y1_c01003{bottom:1137.626667pt;}
.h4_c01003{height:11.733399pt;}
.h5_c01003{height:38.937500pt;}
.h3_c01003{height:97.912760pt;}
.h2_c01003{height:108.041667pt;}
.h0_c01003{height:1229.066667pt;}
.h1_c01003{height:1229.333333pt;}
.w2_c01003{width:93.222667pt;}
.w0_c01003{width:767.266667pt;}
.w1_c01003{width:767.333333pt;}
.x0_c01003{left:0.000000pt;}
.x9_c01003{left:32.933333pt;}
.xb_c01003{left:34.266667pt;}
.xc_c01003{left:35.200000pt;}
.x8_c01003{left:56.933333pt;}
.xa_c01003{left:57.866667pt;}
.x7_c01003{left:116.933333pt;}
.x1_c01003{left:120.266667pt;}
.x2_c01003{left:215.333333pt;}
.x3_c01003{left:216.800000pt;}
.x4_c01003{left:218.133333pt;}
.x5_c01003{left:219.600000pt;}
.x6_c01003{left:221.066667pt;}
.xd_c01003{left:224.800000pt;}
.xe_c01003{left:226.266667pt;}
.xf_c01003{left:228.666667pt;}
.x11_c01003{left:340.801554pt;}
.x10_c01003{left:711.600000pt;}
}





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

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_df3b1b35d8131fd5a1388d75.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01004;src:url('chunks/assets/font_320144e27b3770eee80051e1.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01004;src:url('chunks/assets/font_c0bec00bec8840bb7d97084e.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01004;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01004{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_c01004{vertical-align:0.000000px;}
.ls1_c01004{letter-spacing:0.000000px;}
.ls2_c01004{letter-spacing:3.000000px;}
.ls0_c01004{letter-spacing:8.520000px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01004{word-spacing:-63.504000px;}
.ws0_c01004{word-spacing:-18.508800px;}
.ws2_c01004{word-spacing:0.000000px;}
._34_c01004{margin-left:-85.548000px;}
._27_c01004{margin-left:-31.872000px;}
._23_c01004{margin-left:-29.376000px;}
._3d_c01004{margin-left:-21.504000px;}
._2a_c01004{margin-left:-20.352000px;}
._3a_c01004{margin-left:-19.296000px;}
._2b_c01004{margin-left:-17.472000px;}
._28_c01004{margin-left:-14.988000px;}
._19_c01004{margin-left:-9.912000px;}
._25_c01004{margin-left:-8.484000px;}
._15_c01004{margin-left:-4.992000px;}
._f_c01004{margin-left:-3.360000px;}
._12_c01004{margin-left:-1.824000px;}
._5_c01004{width:1.152000px;}
._4_c01004{width:2.304000px;}
._7_c01004{width:3.456000px;}
._d_c01004{width:4.608000px;}
._b_c01004{width:5.664000px;}
._21_c01004{width:6.816000px;}
._0_c01004{width:8.064000px;}
._c_c01004{width:9.984000px;}
._1_c01004{width:12.192000px;}
._2_c01004{width:14.208000px;}
._33_c01004{width:15.210000px;}
._8_c01004{width:16.800000px;}
._22_c01004{width:18.144000px;}
._11_c01004{width:19.776000px;}
._1d_c01004{width:21.696000px;}
._38_c01004{width:22.824000px;}
._26_c01004{width:24.288000px;}
._29_c01004{width:25.728000px;}
._6_c01004{width:28.032000px;}
._14_c01004{width:29.952000px;}
._1e_c01004{width:31.968000px;}
._36_c01004{width:33.408000px;}
._13_c01004{width:35.040000px;}
._16_c01004{width:37.248000px;}
._e_c01004{width:39.264000px;}
._24_c01004{width:40.608000px;}
._20_c01004{width:41.664000px;}
._9_c01004{width:42.816000px;}
._10_c01004{width:44.832000px;}
._1b_c01004{width:46.368000px;}
._32_c01004{width:47.520000px;}
._2d_c01004{width:49.056000px;}
._1a_c01004{width:50.112000px;}
._a_c01004{width:51.840000px;}
._3_c01004{width:53.568000px;}
._2e_c01004{width:56.256000px;}
._2f_c01004{width:57.984000px;}
._17_c01004{width:60.672000px;}
._1c_c01004{width:62.304000px;}
._18_c01004{width:64.800000px;}
._2c_c01004{width:66.756000px;}
._1f_c01004{width:69.024000px;}
._30_c01004{width:71.328000px;}
._31_c01004{width:78.336000px;}
._40_c01004{width:84.000000px;}
._39_c01004{width:153.792000px;}
._3e_c01004{width:190.080000px;}
._3c_c01004{width:223.116000px;}
._37_c01004{width:357.408000px;}
._3b_c01004{width:489.312000px;}
._41_c01004{width:606.660000px;}
._35_c01004{width:648.864000px;}
._3f_c01004{width:686.448000px;}
._42_c01004{width:706.848000px;}
.fc2_c01004{color:transparent;}
.fc1_c01004{color:rgb(128,128,128);}
.fc0_c01004{color:rgb(0,0,0);}
.fs4_c01004{font-size:48.000000px;}
.fs1_c01004{font-size:76.800000px;}
.fs3_c01004{font-size:78.000000px;}
.fs2_c01004{font-size:84.000000px;}
.fs0_c01004{font-size:96.000000px;}
.y0_c01004{bottom:0.000000px;}
.y26_c01004{bottom:3.105000px;}
.y25_c01004{bottom:7.228369px;}
.y24_c01004{bottom:118.470000px;}
.y23_c01004{bottom:151.920000px;}
.y22_c01004{bottom:185.670000px;}
.y21_c01004{bottom:219.420000px;}
.y20_c01004{bottom:253.470000px;}
.y1f_c01004{bottom:288.270000px;}
.y1e_c01004{bottom:321.270000px;}
.y1d_c01004{bottom:354.720000px;}
.y1c_c01004{bottom:388.920000px;}
.y1b_c01004{bottom:422.220000px;}
.y1a_c01004{bottom:455.520000px;}
.y19_c01004{bottom:489.270000px;}
.y18_c01004{bottom:522.420000px;}
.y17_c01004{bottom:555.870000px;}
.y16_c01004{bottom:589.920000px;}
.y15_c01004{bottom:622.020000px;}
.y14_c01004{bottom:656.670000px;}
.y13_c01004{bottom:690.420000px;}
.y12_c01004{bottom:723.870000px;}
.y11_c01004{bottom:757.320000px;}
.y10_c01004{bottom:790.770000px;}
.yf_c01004{bottom:823.470000px;}
.ye_c01004{bottom:855.870000px;}
.yd_c01004{bottom:889.620000px;}
.yc_c01004{bottom:922.770000px;}
.yb_c01004{bottom:956.370000px;}
.ya_c01004{bottom:989.520000px;}
.y9_c01004{bottom:1022.670000px;}
.y8_c01004{bottom:1055.370000px;}
.y7_c01004{bottom:1088.670000px;}
.y6_c01004{bottom:1121.220000px;}
.y5_c01004{bottom:1154.220000px;}
.y4_c01004{bottom:1186.620000px;}
.y3_c01004{bottom:1219.620000px;}
.y2_c01004{bottom:1252.770000px;}
.y1_c01004{bottom:1285.470000px;}
.h3_c01004{height:13.200073px;}
.h4_c01004{height:43.804688px;}
.h2_c01004{height:121.546875px;}
.h0_c01004{height:1383.450000px;}
.h1_c01004{height:1383.750000px;}
.w2_c01004{width:104.875500px;}
.w0_c01004{width:878.025000px;}
.w1_c01004{width:878.250000px;}
.x0_c01004{left:0.000000px;}
.x9_c01004{left:30.450000px;}
.xa_c01004{left:31.500000px;}
.x8_c01004{left:32.700000px;}
.x7_c01004{left:33.750000px;}
.x6_c01004{left:34.800000px;}
.x5_c01004{left:35.850000px;}
.x4_c01004{left:36.900000px;}
.x3_c01004{left:38.550000px;}
.x2_c01004{left:39.600000px;}
.x1_c01004{left:40.800000px;}
.xb_c01004{left:390.826721px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls1_c01004{letter-spacing:0.000000pt;}
.ls2_c01004{letter-spacing:2.666667pt;}
.ls0_c01004{letter-spacing:7.573333pt;}
.ws1_c01004{word-spacing:-56.448000pt;}
.ws0_c01004{word-spacing:-16.452267pt;}
.ws2_c01004{word-spacing:0.000000pt;}
._34_c01004{margin-left:-76.042667pt;}
._27_c01004{margin-left:-28.330667pt;}
._23_c01004{margin-left:-26.112000pt;}
._3d_c01004{margin-left:-19.114667pt;}
._2a_c01004{margin-left:-18.090667pt;}
._3a_c01004{margin-left:-17.152000pt;}
._2b_c01004{margin-left:-15.530667pt;}
._28_c01004{margin-left:-13.322667pt;}
._19_c01004{margin-left:-8.810667pt;}
._25_c01004{margin-left:-7.541333pt;}
._15_c01004{margin-left:-4.437333pt;}
._f_c01004{margin-left:-2.986667pt;}
._12_c01004{margin-left:-1.621333pt;}
._5_c01004{width:1.024000pt;}
._4_c01004{width:2.048000pt;}
._7_c01004{width:3.072000pt;}
._d_c01004{width:4.096000pt;}
._b_c01004{width:5.034667pt;}
._21_c01004{width:6.058667pt;}
._0_c01004{width:7.168000pt;}
._c_c01004{width:8.874667pt;}
._1_c01004{width:10.837333pt;}
._2_c01004{width:12.629333pt;}
._33_c01004{width:13.520000pt;}
._8_c01004{width:14.933333pt;}
._22_c01004{width:16.128000pt;}
._11_c01004{width:17.578667pt;}
._1d_c01004{width:19.285333pt;}
._38_c01004{width:20.288000pt;}
._26_c01004{width:21.589333pt;}
._29_c01004{width:22.869333pt;}
._6_c01004{width:24.917333pt;}
._14_c01004{width:26.624000pt;}
._1e_c01004{width:28.416000pt;}
._36_c01004{width:29.696000pt;}
._13_c01004{width:31.146667pt;}
._16_c01004{width:33.109333pt;}
._e_c01004{width:34.901333pt;}
._24_c01004{width:36.096000pt;}
._20_c01004{width:37.034667pt;}
._9_c01004{width:38.058667pt;}
._10_c01004{width:39.850667pt;}
._1b_c01004{width:41.216000pt;}
._32_c01004{width:42.240000pt;}
._2d_c01004{width:43.605333pt;}
._1a_c01004{width:44.544000pt;}
._a_c01004{width:46.080000pt;}
._3_c01004{width:47.616000pt;}
._2e_c01004{width:50.005333pt;}
._2f_c01004{width:51.541333pt;}
._17_c01004{width:53.930667pt;}
._1c_c01004{width:55.381333pt;}
._18_c01004{width:57.600000pt;}
._2c_c01004{width:59.338667pt;}
._1f_c01004{width:61.354667pt;}
._30_c01004{width:63.402667pt;}
._31_c01004{width:69.632000pt;}
._40_c01004{width:74.666667pt;}
._39_c01004{width:136.704000pt;}
._3e_c01004{width:168.960000pt;}
._3c_c01004{width:198.325333pt;}
._37_c01004{width:317.696000pt;}
._3b_c01004{width:434.944000pt;}
._41_c01004{width:539.253333pt;}
._35_c01004{width:576.768000pt;}
._3f_c01004{width:610.176000pt;}
._42_c01004{width:628.309333pt;}
.fs4_c01004{font-size:42.666667pt;}
.fs1_c01004{font-size:68.266667pt;}
.fs3_c01004{font-size:69.333333pt;}
.fs2_c01004{font-size:74.666667pt;}
.fs0_c01004{font-size:85.333333pt;}
.y0_c01004{bottom:0.000000pt;}
.y26_c01004{bottom:2.760000pt;}
.y25_c01004{bottom:6.425217pt;}
.y24_c01004{bottom:105.306667pt;}
.y23_c01004{bottom:135.040000pt;}
.y22_c01004{bottom:165.040000pt;}
.y21_c01004{bottom:195.040000pt;}
.y20_c01004{bottom:225.306667pt;}
.y1f_c01004{bottom:256.240000pt;}
.y1e_c01004{bottom:285.573333pt;}
.y1d_c01004{bottom:315.306667pt;}
.y1c_c01004{bottom:345.706667pt;}
.y1b_c01004{bottom:375.306667pt;}
.y1a_c01004{bottom:404.906667pt;}
.y19_c01004{bottom:434.906667pt;}
.y18_c01004{bottom:464.373333pt;}
.y17_c01004{bottom:494.106667pt;}
.y16_c01004{bottom:524.373333pt;}
.y15_c01004{bottom:552.906667pt;}
.y14_c01004{bottom:583.706667pt;}
.y13_c01004{bottom:613.706667pt;}
.y12_c01004{bottom:643.440000pt;}
.y11_c01004{bottom:673.173333pt;}
.y10_c01004{bottom:702.906667pt;}
.yf_c01004{bottom:731.973333pt;}
.ye_c01004{bottom:760.773333pt;}
.yd_c01004{bottom:790.773333pt;}
.yc_c01004{bottom:820.240000pt;}
.yb_c01004{bottom:850.106667pt;}
.ya_c01004{bottom:879.573333pt;}
.y9_c01004{bottom:909.040000pt;}
.y8_c01004{bottom:938.106667pt;}
.y7_c01004{bottom:967.706667pt;}
.y6_c01004{bottom:996.640000pt;}
.y5_c01004{bottom:1025.973333pt;}
.y4_c01004{bottom:1054.773333pt;}
.y3_c01004{bottom:1084.106667pt;}
.y2_c01004{bottom:1113.573333pt;}
.y1_c01004{bottom:1142.640000pt;}
.h3_c01004{height:11.733399pt;}
.h4_c01004{height:38.937500pt;}
.h2_c01004{height:108.041667pt;}
.h0_c01004{height:1229.733333pt;}
.h1_c01004{height:1230.000000pt;}
.w2_c01004{width:93.222667pt;}
.w0_c01004{width:780.466667pt;}
.w1_c01004{width:780.666667pt;}
.x0_c01004{left:0.000000pt;}
.x9_c01004{left:27.066667pt;}
.xa_c01004{left:28.000000pt;}
.x8_c01004{left:29.066667pt;}
.x7_c01004{left:30.000000pt;}
.x6_c01004{left:30.933333pt;}
.x5_c01004{left:31.866667pt;}
.x4_c01004{left:32.800000pt;}
.x3_c01004{left:34.266667pt;}
.x2_c01004{left:35.200000pt;}
.x1_c01004{left:36.266667pt;}
.xb_c01004{left:347.401530pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_47a7c520edd18fc2247001d3.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01005;src:url('chunks/assets/font_a87ae2816ed68500d5a4b635.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01005;src:url('chunks/assets/font_1d40b78c440db1f3ecceed53.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01005;src:url('chunks/assets/font_c612d52a52725b3d167d156d.woff2')format("woff");}.ff4_c01005{font-family:ff4_c01005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01005;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01005{font-family:ff5_c01005;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01005{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls1_c01005{letter-spacing:0.000000px;}
.ls0_c01005{letter-spacing:3.000000px;}
.ls2_c01005{letter-spacing:9.000000px;}
.ls3_c01005{letter-spacing:15.000000px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01005{word-spacing:-64.044000px;}
.ws3_c01005{word-spacing:-35.967000px;}
.ws2_c01005{word-spacing:-23.136000px;}
.ws0_c01005{word-spacing:-20.244000px;}
.ws4_c01005{word-spacing:0.000000px;}
._34_c01005{margin-left:-57.756000px;}
._49_c01005{margin-left:-41.847000px;}
._48_c01005{margin-left:-40.542000px;}
._14_c01005{margin-left:-31.776000px;}
._28_c01005{margin-left:-30.240000px;}
._2e_c01005{margin-left:-14.784000px;}
._2a_c01005{margin-left:-12.768000px;}
._29_c01005{margin-left:-10.008000px;}
._2f_c01005{margin-left:-8.544000px;}
._25_c01005{margin-left:-7.260000px;}
._22_c01005{margin-left:-6.048000px;}
._23_c01005{margin-left:-4.896000px;}
._9_c01005{margin-left:-3.360000px;}
._1d_c01005{margin-left:-2.304000px;}
._d_c01005{margin-left:-1.248000px;}
._11_c01005{width:1.056000px;}
._7_c01005{width:2.304000px;}
._a_c01005{width:4.224000px;}
._4_c01005{width:5.472000px;}
._5_c01005{width:7.104000px;}
._3_c01005{width:8.448000px;}
._1b_c01005{width:9.792000px;}
._2d_c01005{width:11.136000px;}
._0_c01005{width:12.192000px;}
._16_c01005{width:13.440000px;}
._1_c01005{width:15.456000px;}
._f_c01005{width:16.800000px;}
._13_c01005{width:18.240000px;}
._26_c01005{width:19.584000px;}
._e_c01005{width:20.832000px;}
._3a_c01005{width:22.080000px;}
._27_c01005{width:24.288000px;}
._10_c01005{width:25.728000px;}
._15_c01005{width:28.128000px;}
._12_c01005{width:30.336000px;}
._c_c01005{width:31.776000px;}
._24_c01005{width:33.984000px;}
._b_c01005{width:35.904000px;}
._17_c01005{width:37.248000px;}
._19_c01005{width:38.880000px;}
._1a_c01005{width:39.936000px;}
._1f_c01005{width:41.568000px;}
._2c_c01005{width:42.816000px;}
._2_c01005{width:45.024000px;}
._1e_c01005{width:46.176000px;}
._18_c01005{width:47.232000px;}
._2b_c01005{width:49.152000px;}
._20_c01005{width:51.360000px;}
._43_c01005{width:52.608000px;}
._6_c01005{width:54.048000px;}
._1c_c01005{width:55.680000px;}
._41_c01005{width:57.024000px;}
._3d_c01005{width:58.272000px;}
._8_c01005{width:62.400000px;}
._21_c01005{width:64.032000px;}
._3e_c01005{width:65.856000px;}
._31_c01005{width:67.296000px;}
._32_c01005{width:70.176000px;}
._42_c01005{width:73.632000px;}
._30_c01005{width:80.064000px;}
._40_c01005{width:82.272000px;}
._44_c01005{width:83.520000px;}
._38_c01005{width:95.148000px;}
._33_c01005{width:96.273000px;}
._3b_c01005{width:106.044000px;}
._39_c01005{width:108.156000px;}
._46_c01005{width:118.176000px;}
._45_c01005{width:136.608000px;}
._37_c01005{width:155.766000px;}
._47_c01005{width:164.352000px;}
._3c_c01005{width:261.900000px;}
._36_c01005{width:307.068000px;}
._35_c01005{width:449.841000px;}
._3f_c01005{width:831.336000px;}
.fc2_c01005{color:transparent;}
.fc1_c01005{color:rgb(128,128,128);}
.fc0_c01005{color:rgb(0,0,0);}
.fs5_c01005{font-size:36.000000px;}
.fs7_c01005{font-size:48.000000px;}
.fs1_c01005{font-size:84.000000px;}
.fs6_c01005{font-size:87.000000px;}
.fs3_c01005{font-size:93.000000px;}
.fs0_c01005{font-size:96.000000px;}
.fs4_c01005{font-size:99.000000px;}
.fs2_c01005{font-size:102.000000px;}
.y0_c01005{bottom:0.000000px;}
.y27_c01005{bottom:3.105000px;}
.y26_c01005{bottom:7.228357px;}
.y25_c01005{bottom:21.330000px;}
.y24_c01005{bottom:93.180000px;}
.y23_c01005{bottom:136.080000px;}
.y22_c01005{bottom:170.130000px;}
.y21_c01005{bottom:204.180000px;}
.y20_c01005{bottom:238.230000px;}
.y1f_c01005{bottom:276.780000px;}
.y1e_c01005{bottom:308.580000px;}
.y1d_c01005{bottom:340.980000px;}
.y1c_c01005{bottom:373.680000px;}
.y1b_c01005{bottom:406.080000px;}
.y1a_c01005{bottom:437.430000px;}
.y19_c01005{bottom:475.530000px;}
.y18_c01005{bottom:508.380000px;}
.y17_c01005{bottom:542.730000px;}
.y16_c01005{bottom:576.180000px;}
.y15_c01005{bottom:609.480000px;}
.y14_c01005{bottom:642.930000px;}
.y13_c01005{bottom:676.080000px;}
.y12_c01005{bottom:709.830000px;}
.y11_c01005{bottom:743.280000px;}
.y10_c01005{bottom:776.580000px;}
.yf_c01005{bottom:809.730000px;}
.ye_c01005{bottom:843.030000px;}
.yd_c01005{bottom:876.480000px;}
.yc_c01005{bottom:909.780000px;}
.yb_c01005{bottom:943.080000px;}
.ya_c01005{bottom:976.380000px;}
.y9_c01005{bottom:1009.080000px;}
.y8_c01005{bottom:1041.930000px;}
.y7_c01005{bottom:1075.230000px;}
.y6_c01005{bottom:1108.680000px;}
.y5_c01005{bottom:1141.830000px;}
.y4_c01005{bottom:1175.280000px;}
.y3_c01005{bottom:1208.280000px;}
.y2_c01005{bottom:1241.430000px;}
.y1_c01005{bottom:1274.430000px;}
.h5_c01005{height:13.200074px;}
.h6_c01005{height:43.804688px;}
.h4_c01005{height:110.151855px;}
.h3_c01005{height:117.748535px;}
.h2_c01005{height:121.546875px;}
.h0_c01005{height:1382.700000px;}
.h1_c01005{height:1383.000000px;}
.w2_c01005{width:104.875500px;}
.w0_c01005{width:863.175000px;}
.w1_c01005{width:863.250000px;}
.x0_c01005{left:0.000000px;}
.x8_c01005{left:45.600000px;}
.x9_c01005{left:46.650000px;}
.x7_c01005{left:75.900000px;}
.xa_c01005{left:256.200000px;}
.x1_c01005{left:258.900000px;}
.x3_c01005{left:260.550000px;}
.x2_c01005{left:261.600000px;}
.x4_c01005{left:263.250000px;}
.x5_c01005{left:264.300000px;}
.x6_c01005{left:315.600000px;}
.xd_c01005{left:322.950000px;}
.xe_c01005{left:383.401749px;}
.xb_c01005{left:509.400000px;}
.xc_c01005{left:577.500000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls1_c01005{letter-spacing:0.000000pt;}
.ls0_c01005{letter-spacing:2.666667pt;}
.ls2_c01005{letter-spacing:8.000000pt;}
.ls3_c01005{letter-spacing:13.333333pt;}
.ws1_c01005{word-spacing:-56.928000pt;}
.ws3_c01005{word-spacing:-31.970667pt;}
.ws2_c01005{word-spacing:-20.565333pt;}
.ws0_c01005{word-spacing:-17.994667pt;}
.ws4_c01005{word-spacing:0.000000pt;}
._34_c01005{margin-left:-51.338667pt;}
._49_c01005{margin-left:-37.197333pt;}
._48_c01005{margin-left:-36.037333pt;}
._14_c01005{margin-left:-28.245333pt;}
._28_c01005{margin-left:-26.880000pt;}
._2e_c01005{margin-left:-13.141333pt;}
._2a_c01005{margin-left:-11.349333pt;}
._29_c01005{margin-left:-8.896000pt;}
._2f_c01005{margin-left:-7.594667pt;}
._25_c01005{margin-left:-6.453333pt;}
._22_c01005{margin-left:-5.376000pt;}
._23_c01005{margin-left:-4.352000pt;}
._9_c01005{margin-left:-2.986667pt;}
._1d_c01005{margin-left:-2.048000pt;}
._d_c01005{margin-left:-1.109333pt;}
._11_c01005{width:0.938667pt;}
._7_c01005{width:2.048000pt;}
._a_c01005{width:3.754667pt;}
._4_c01005{width:4.864000pt;}
._5_c01005{width:6.314667pt;}
._3_c01005{width:7.509333pt;}
._1b_c01005{width:8.704000pt;}
._2d_c01005{width:9.898667pt;}
._0_c01005{width:10.837333pt;}
._16_c01005{width:11.946667pt;}
._1_c01005{width:13.738667pt;}
._f_c01005{width:14.933333pt;}
._13_c01005{width:16.213333pt;}
._26_c01005{width:17.408000pt;}
._e_c01005{width:18.517333pt;}
._3a_c01005{width:19.626667pt;}
._27_c01005{width:21.589333pt;}
._10_c01005{width:22.869333pt;}
._15_c01005{width:25.002667pt;}
._12_c01005{width:26.965333pt;}
._c_c01005{width:28.245333pt;}
._24_c01005{width:30.208000pt;}
._b_c01005{width:31.914667pt;}
._17_c01005{width:33.109333pt;}
._19_c01005{width:34.560000pt;}
._1a_c01005{width:35.498667pt;}
._1f_c01005{width:36.949333pt;}
._2c_c01005{width:38.058667pt;}
._2_c01005{width:40.021333pt;}
._1e_c01005{width:41.045333pt;}
._18_c01005{width:41.984000pt;}
._2b_c01005{width:43.690667pt;}
._20_c01005{width:45.653333pt;}
._43_c01005{width:46.762667pt;}
._6_c01005{width:48.042667pt;}
._1c_c01005{width:49.493333pt;}
._41_c01005{width:50.688000pt;}
._3d_c01005{width:51.797333pt;}
._8_c01005{width:55.466667pt;}
._21_c01005{width:56.917333pt;}
._3e_c01005{width:58.538667pt;}
._31_c01005{width:59.818667pt;}
._32_c01005{width:62.378667pt;}
._42_c01005{width:65.450667pt;}
._30_c01005{width:71.168000pt;}
._40_c01005{width:73.130667pt;}
._44_c01005{width:74.240000pt;}
._38_c01005{width:84.576000pt;}
._33_c01005{width:85.576000pt;}
._3b_c01005{width:94.261333pt;}
._39_c01005{width:96.138667pt;}
._46_c01005{width:105.045333pt;}
._45_c01005{width:121.429333pt;}
._37_c01005{width:138.458667pt;}
._47_c01005{width:146.090667pt;}
._3c_c01005{width:232.800000pt;}
._36_c01005{width:272.949333pt;}
._35_c01005{width:399.858667pt;}
._3f_c01005{width:738.965333pt;}
.fs5_c01005{font-size:32.000000pt;}
.fs7_c01005{font-size:42.666667pt;}
.fs1_c01005{font-size:74.666667pt;}
.fs6_c01005{font-size:77.333333pt;}
.fs3_c01005{font-size:82.666667pt;}
.fs0_c01005{font-size:85.333333pt;}
.fs4_c01005{font-size:88.000000pt;}
.fs2_c01005{font-size:90.666667pt;}
.y0_c01005{bottom:0.000000pt;}
.y27_c01005{bottom:2.760000pt;}
.y26_c01005{bottom:6.425206pt;}
.y25_c01005{bottom:18.960000pt;}
.y24_c01005{bottom:82.826667pt;}
.y23_c01005{bottom:120.960000pt;}
.y22_c01005{bottom:151.226667pt;}
.y21_c01005{bottom:181.493333pt;}
.y20_c01005{bottom:211.760000pt;}
.y1f_c01005{bottom:246.026667pt;}
.y1e_c01005{bottom:274.293333pt;}
.y1d_c01005{bottom:303.093333pt;}
.y1c_c01005{bottom:332.160000pt;}
.y1b_c01005{bottom:360.960000pt;}
.y1a_c01005{bottom:388.826667pt;}
.y19_c01005{bottom:422.693333pt;}
.y18_c01005{bottom:451.893333pt;}
.y17_c01005{bottom:482.426667pt;}
.y16_c01005{bottom:512.160000pt;}
.y15_c01005{bottom:541.760000pt;}
.y14_c01005{bottom:571.493333pt;}
.y13_c01005{bottom:600.960000pt;}
.y12_c01005{bottom:630.960000pt;}
.y11_c01005{bottom:660.693333pt;}
.y10_c01005{bottom:690.293333pt;}
.yf_c01005{bottom:719.760000pt;}
.ye_c01005{bottom:749.360000pt;}
.yd_c01005{bottom:779.093333pt;}
.yc_c01005{bottom:808.693333pt;}
.yb_c01005{bottom:838.293333pt;}
.ya_c01005{bottom:867.893333pt;}
.y9_c01005{bottom:896.960000pt;}
.y8_c01005{bottom:926.160000pt;}
.y7_c01005{bottom:955.760000pt;}
.y6_c01005{bottom:985.493333pt;}
.y5_c01005{bottom:1014.960000pt;}
.y4_c01005{bottom:1044.693333pt;}
.y3_c01005{bottom:1074.026667pt;}
.y2_c01005{bottom:1103.493333pt;}
.y1_c01005{bottom:1132.826667pt;}
.h5_c01005{height:11.733399pt;}
.h6_c01005{height:38.937500pt;}
.h4_c01005{height:97.912760pt;}
.h3_c01005{height:104.665365pt;}
.h2_c01005{height:108.041667pt;}
.h0_c01005{height:1229.066667pt;}
.h1_c01005{height:1229.333333pt;}
.w2_c01005{width:93.222667pt;}
.w0_c01005{width:767.266667pt;}
.w1_c01005{width:767.333333pt;}
.x0_c01005{left:0.000000pt;}
.x8_c01005{left:40.533333pt;}
.x9_c01005{left:41.466667pt;}
.x7_c01005{left:67.466667pt;}
.xa_c01005{left:227.733333pt;}
.x1_c01005{left:230.133333pt;}
.x3_c01005{left:231.600000pt;}
.x2_c01005{left:232.533333pt;}
.x4_c01005{left:234.000000pt;}
.x5_c01005{left:234.933333pt;}
.x6_c01005{left:280.533333pt;}
.xd_c01005{left:287.066667pt;}
.xe_c01005{left:340.801554pt;}
.xb_c01005{left:452.800000pt;}
.xc_c01005{left:513.333333pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_4ab6c19e00f251bcd4a963a5.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01006;src:url('chunks/assets/font_4e01b2c30ed84378d9d4120f.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01006;src:url('chunks/assets/font_ed873024fb0fa74ff7521248.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01006;src:url('chunks/assets/font_a4c30c397388d2b3ee9614a1.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01006;src:url('chunks/assets/font_27dd207bee263446da58a7f6.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01006;src:url('chunks/assets/font_3abc991628d2da1f02e97587.woff2')format("woff");}.ff6_c01006{font-family:ff6_c01006;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01006;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff7_c01006{font-family:ff7_c01006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01006;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c01006{font-family:ff8_c01006;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls6_c01006{letter-spacing:-3.000000px;}
.ls5_c01006{letter-spacing:0.000000px;}
.ls0_c01006{letter-spacing:0.792000px;}
.ls7_c01006{letter-spacing:6.000000px;}
.ls1_c01006{letter-spacing:6.720000px;}
.ls4_c01006{letter-spacing:15.000000px;}
.ls2_c01006{letter-spacing:28.800000px;}
.ls3_c01006{letter-spacing:69.000000px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01006{word-spacing:-20.244000px;}
.ws1_c01006{word-spacing:-16.686000px;}
.ws3_c01006{word-spacing:0.000000px;}
.ws0_c01006{word-spacing:40.419000px;}
._0_c01006{margin-left:-65.850000px;}
._2_c01006{margin-left:-58.800000px;}
._4d_c01006{margin-left:-43.488000px;}
._41_c01006{margin-left:-39.372000px;}
._33_c01006{margin-left:-32.130000px;}
._3b_c01006{margin-left:-29.682000px;}
._4a_c01006{margin-left:-27.888000px;}
._38_c01006{margin-left:-26.112000px;}
._3d_c01006{margin-left:-24.936000px;}
._2d_c01006{margin-left:-23.004000px;}
._32_c01006{margin-left:-20.088000px;}
._40_c01006{margin-left:-17.544000px;}
._35_c01006{margin-left:-16.320000px;}
._37_c01006{margin-left:-14.586000px;}
._49_c01006{margin-left:-13.572000px;}
._6_c01006{margin-left:-11.100000px;}
._5_c01006{margin-left:-9.900000px;}
._31_c01006{margin-left:-8.364000px;}
._1e_c01006{margin-left:-7.104000px;}
._2c_c01006{margin-left:-5.784000px;}
._4_c01006{margin-left:-4.200000px;}
._16_c01006{margin-left:-3.072000px;}
._14_c01006{margin-left:-1.728000px;}
._b_c01006{width:1.344000px;}
._8_c01006{width:2.400000px;}
._a_c01006{width:4.128000px;}
._c_c01006{width:5.664000px;}
._e_c01006{width:7.392000px;}
._18_c01006{width:8.640000px;}
._1d_c01006{width:9.792000px;}
._29_c01006{width:10.896000px;}
._25_c01006{width:12.408000px;}
._1a_c01006{width:13.536000px;}
._19_c01006{width:14.976000px;}
._11_c01006{width:16.128000px;}
._48_c01006{width:17.412000px;}
._d_c01006{width:18.528000px;}
._26_c01006{width:19.728000px;}
._1f_c01006{width:21.216000px;}
._54_c01006{width:22.326000px;}
._20_c01006{width:24.384000px;}
._9_c01006{width:26.208000px;}
._17_c01006{width:27.816000px;}
._28_c01006{width:30.240000px;}
._55_c01006{width:31.518000px;}
._1c_c01006{width:32.640000px;}
._1b_c01006{width:34.560000px;}
._22_c01006{width:36.096000px;}
._43_c01006{width:37.152000px;}
._2f_c01006{width:38.520000px;}
._23_c01006{width:39.840000px;}
._21_c01006{width:41.496000px;}
._10_c01006{width:42.912000px;}
._13_c01006{width:45.024000px;}
._24_c01006{width:46.824000px;}
._27_c01006{width:48.672000px;}
._f_c01006{width:49.824000px;}
._15_c01006{width:51.264000px;}
._46_c01006{width:52.896000px;}
._12_c01006{width:54.432000px;}
._1_c01006{width:56.670000px;}
._51_c01006{width:59.040000px;}
._58_c01006{width:60.096000px;}
._47_c01006{width:63.840000px;}
._57_c01006{width:67.344000px;}
._45_c01006{width:68.640000px;}
._59_c01006{width:69.642000px;}
._2e_c01006{width:79.440000px;}
._42_c01006{width:87.186000px;}
._4c_c01006{width:90.504000px;}
._36_c01006{width:92.616000px;}
._5b_c01006{width:97.056000px;}
._2b_c01006{width:106.080000px;}
._3e_c01006{width:109.956000px;}
._3a_c01006{width:116.178000px;}
._53_c01006{width:125.124000px;}
._3f_c01006{width:129.234000px;}
._44_c01006{width:173.184000px;}
._3_c01006{width:175.470000px;}
._39_c01006{width:182.508000px;}
._4b_c01006{width:208.770000px;}
._3c_c01006{width:228.786000px;}
._50_c01006{width:248.940000px;}
._7_c01006{width:257.670000px;}
._4f_c01006{width:315.432000px;}
._2a_c01006{width:324.552000px;}
._4e_c01006{width:357.522000px;}
._56_c01006{width:374.280000px;}
._34_c01006{width:409.020000px;}
._30_c01006{width:590.736000px;}
._52_c01006{width:761.424000px;}
._5a_c01006{width:1493.400000px;}
.fc2_c01006{color:transparent;}
.fc1_c01006{color:rgb(128,128,128);}
.fc0_c01006{color:rgb(0,0,0);}
.fs0_c01006{font-size:30.000000px;}
.fs8_c01006{font-size:48.000000px;}
.fs7_c01006{font-size:60.000000px;}
.fs6_c01006{font-size:67.200000px;}
.fs3_c01006{font-size:81.000000px;}
.fs4_c01006{font-size:84.000000px;}
.fs1_c01006{font-size:87.000000px;}
.fs2_c01006{font-size:96.000000px;}
.fs5_c01006{font-size:102.000000px;}
.y0_c01006{bottom:0.000000px;}
.y29_c01006{bottom:3.105000px;}
.y28_c01006{bottom:7.228369px;}
.y27_c01006{bottom:119.070000px;}
.y26_c01006{bottom:153.120000px;}
.y25_c01006{bottom:187.320000px;}
.y24_c01006{bottom:221.070000px;}
.y23_c01006{bottom:255.120000px;}
.y22_c01006{bottom:289.470000px;}
.y21_c01006{bottom:323.220000px;}
.y20_c01006{bottom:356.370000px;}
.y1f_c01006{bottom:390.420000px;}
.y1e_c01006{bottom:423.270000px;}
.y1d_c01006{bottom:456.870000px;}
.y1c_c01006{bottom:490.320000px;}
.y1b_c01006{bottom:523.770000px;}
.y1a_c01006{bottom:558.120000px;}
.y19_c01006{bottom:590.970000px;}
.y18_c01006{bottom:624.720000px;}
.y17_c01006{bottom:658.020000px;}
.y16_c01006{bottom:691.470000px;}
.y15_c01006{bottom:724.920000px;}
.y14_c01006{bottom:756.270000px;}
.y13_c01006{bottom:776.220000px;}
.y12_c01006{bottom:795.720000px;}
.y11_c01006{bottom:827.220000px;}
.y10_c01006{bottom:859.920000px;}
.yf_c01006{bottom:892.320000px;}
.ye_c01006{bottom:923.970000px;}
.yd_c01006{bottom:956.520000px;}
.yc_c01006{bottom:991.170000px;}
.yb_c01006{bottom:1007.370000px;}
.ya_c01006{bottom:1024.020000px;}
.y9_c01006{bottom:1061.670000px;}
.y8_c01006{bottom:1092.870000px;}
.y7_c01006{bottom:1123.170000px;}
.y6_c01006{bottom:1155.570000px;}
.y5_c01006{bottom:1189.020000px;}
.y4_c01006{bottom:1222.020000px;}
.y3_c01006{bottom:1254.720000px;}
.y2_c01006{bottom:1288.170000px;}
.y1_c01006{bottom:1306.020000px;}
.h6_c01006{height:13.200073px;}
.h7_c01006{height:43.804688px;}
.h5_c01006{height:87.804000px;}
.h2_c01006{height:110.151855px;}
.h3_c01006{height:121.546875px;}
.h4_c01006{height:129.143555px;}
.h0_c01006{height:1383.450000px;}
.h1_c01006{height:1383.750000px;}
.w2_c01006{width:104.875500px;}
.w0_c01006{width:878.025000px;}
.w1_c01006{width:878.250000px;}
.x0_c01006{left:0.000000px;}
.x8_c01006{left:36.000000px;}
.x6_c01006{left:37.500000px;}
.x5_c01006{left:39.150000px;}
.x4_c01006{left:40.200000px;}
.x3_c01006{left:42.450000px;}
.x2_c01006{left:43.500000px;}
.x1_c01006{left:44.550000px;}
.xa_c01006{left:46.200000px;}
.x9_c01006{left:57.450000px;}
.xb_c01006{left:68.850000px;}
.x7_c01006{left:108.600000px;}
.xc_c01006{left:390.826721px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls6_c01006{letter-spacing:-2.666667pt;}
.ls5_c01006{letter-spacing:0.000000pt;}
.ls0_c01006{letter-spacing:0.704000pt;}
.ls7_c01006{letter-spacing:5.333333pt;}
.ls1_c01006{letter-spacing:5.973333pt;}
.ls4_c01006{letter-spacing:13.333333pt;}
.ls2_c01006{letter-spacing:25.600000pt;}
.ls3_c01006{letter-spacing:61.333333pt;}
.ws2_c01006{word-spacing:-17.994667pt;}
.ws1_c01006{word-spacing:-14.832000pt;}
.ws3_c01006{word-spacing:0.000000pt;}
.ws0_c01006{word-spacing:35.928000pt;}
._0_c01006{margin-left:-58.533333pt;}
._2_c01006{margin-left:-52.266667pt;}
._4d_c01006{margin-left:-38.656000pt;}
._41_c01006{margin-left:-34.997333pt;}
._33_c01006{margin-left:-28.560000pt;}
._3b_c01006{margin-left:-26.384000pt;}
._4a_c01006{margin-left:-24.789333pt;}
._38_c01006{margin-left:-23.210667pt;}
._3d_c01006{margin-left:-22.165333pt;}
._2d_c01006{margin-left:-20.448000pt;}
._32_c01006{margin-left:-17.856000pt;}
._40_c01006{margin-left:-15.594667pt;}
._35_c01006{margin-left:-14.506667pt;}
._37_c01006{margin-left:-12.965333pt;}
._49_c01006{margin-left:-12.064000pt;}
._6_c01006{margin-left:-9.866667pt;}
._5_c01006{margin-left:-8.800000pt;}
._31_c01006{margin-left:-7.434667pt;}
._1e_c01006{margin-left:-6.314667pt;}
._2c_c01006{margin-left:-5.141333pt;}
._4_c01006{margin-left:-3.733333pt;}
._16_c01006{margin-left:-2.730667pt;}
._14_c01006{margin-left:-1.536000pt;}
._b_c01006{width:1.194667pt;}
._8_c01006{width:2.133333pt;}
._a_c01006{width:3.669333pt;}
._c_c01006{width:5.034667pt;}
._e_c01006{width:6.570667pt;}
._18_c01006{width:7.680000pt;}
._1d_c01006{width:8.704000pt;}
._29_c01006{width:9.685333pt;}
._25_c01006{width:11.029333pt;}
._1a_c01006{width:12.032000pt;}
._19_c01006{width:13.312000pt;}
._11_c01006{width:14.336000pt;}
._48_c01006{width:15.477333pt;}
._d_c01006{width:16.469333pt;}
._26_c01006{width:17.536000pt;}
._1f_c01006{width:18.858667pt;}
._54_c01006{width:19.845333pt;}
._20_c01006{width:21.674667pt;}
._9_c01006{width:23.296000pt;}
._17_c01006{width:24.725333pt;}
._28_c01006{width:26.880000pt;}
._55_c01006{width:28.016000pt;}
._1c_c01006{width:29.013333pt;}
._1b_c01006{width:30.720000pt;}
._22_c01006{width:32.085333pt;}
._43_c01006{width:33.024000pt;}
._2f_c01006{width:34.240000pt;}
._23_c01006{width:35.413333pt;}
._21_c01006{width:36.885333pt;}
._10_c01006{width:38.144000pt;}
._13_c01006{width:40.021333pt;}
._24_c01006{width:41.621333pt;}
._27_c01006{width:43.264000pt;}
._f_c01006{width:44.288000pt;}
._15_c01006{width:45.568000pt;}
._46_c01006{width:47.018667pt;}
._12_c01006{width:48.384000pt;}
._1_c01006{width:50.373333pt;}
._51_c01006{width:52.480000pt;}
._58_c01006{width:53.418667pt;}
._47_c01006{width:56.746667pt;}
._57_c01006{width:59.861333pt;}
._45_c01006{width:61.013333pt;}
._59_c01006{width:61.904000pt;}
._2e_c01006{width:70.613333pt;}
._42_c01006{width:77.498667pt;}
._4c_c01006{width:80.448000pt;}
._36_c01006{width:82.325333pt;}
._5b_c01006{width:86.272000pt;}
._2b_c01006{width:94.293333pt;}
._3e_c01006{width:97.738667pt;}
._3a_c01006{width:103.269333pt;}
._53_c01006{width:111.221333pt;}
._3f_c01006{width:114.874667pt;}
._44_c01006{width:153.941333pt;}
._3_c01006{width:155.973333pt;}
._39_c01006{width:162.229333pt;}
._4b_c01006{width:185.573333pt;}
._3c_c01006{width:203.365333pt;}
._50_c01006{width:221.280000pt;}
._7_c01006{width:229.040000pt;}
._4f_c01006{width:280.384000pt;}
._2a_c01006{width:288.490667pt;}
._4e_c01006{width:317.797333pt;}
._56_c01006{width:332.693333pt;}
._34_c01006{width:363.573333pt;}
._30_c01006{width:525.098667pt;}
._52_c01006{width:676.821333pt;}
._5a_c01006{width:1327.466667pt;}
.fs0_c01006{font-size:26.666667pt;}
.fs8_c01006{font-size:42.666667pt;}
.fs7_c01006{font-size:53.333333pt;}
.fs6_c01006{font-size:59.733333pt;}
.fs3_c01006{font-size:72.000000pt;}
.fs4_c01006{font-size:74.666667pt;}
.fs1_c01006{font-size:77.333333pt;}
.fs2_c01006{font-size:85.333333pt;}
.fs5_c01006{font-size:90.666667pt;}
.y0_c01006{bottom:0.000000pt;}
.y29_c01006{bottom:2.760000pt;}
.y28_c01006{bottom:6.425217pt;}
.y27_c01006{bottom:105.840000pt;}
.y26_c01006{bottom:136.106667pt;}
.y25_c01006{bottom:166.506667pt;}
.y24_c01006{bottom:196.506667pt;}
.y23_c01006{bottom:226.773333pt;}
.y22_c01006{bottom:257.306667pt;}
.y21_c01006{bottom:287.306667pt;}
.y20_c01006{bottom:316.773333pt;}
.y1f_c01006{bottom:347.040000pt;}
.y1e_c01006{bottom:376.240000pt;}
.y1d_c01006{bottom:406.106667pt;}
.y1c_c01006{bottom:435.840000pt;}
.y1b_c01006{bottom:465.573333pt;}
.y1a_c01006{bottom:496.106667pt;}
.y19_c01006{bottom:525.306667pt;}
.y18_c01006{bottom:555.306667pt;}
.y17_c01006{bottom:584.906667pt;}
.y16_c01006{bottom:614.640000pt;}
.y15_c01006{bottom:644.373333pt;}
.y14_c01006{bottom:672.240000pt;}
.y13_c01006{bottom:689.973333pt;}
.y12_c01006{bottom:707.306667pt;}
.y11_c01006{bottom:735.306667pt;}
.y10_c01006{bottom:764.373333pt;}
.yf_c01006{bottom:793.173333pt;}
.ye_c01006{bottom:821.306667pt;}
.yd_c01006{bottom:850.240000pt;}
.yc_c01006{bottom:881.040000pt;}
.yb_c01006{bottom:895.440000pt;}
.ya_c01006{bottom:910.240000pt;}
.y9_c01006{bottom:943.706667pt;}
.y8_c01006{bottom:971.440000pt;}
.y7_c01006{bottom:998.373333pt;}
.y6_c01006{bottom:1027.173333pt;}
.y5_c01006{bottom:1056.906667pt;}
.y4_c01006{bottom:1086.240000pt;}
.y3_c01006{bottom:1115.306667pt;}
.y2_c01006{bottom:1145.040000pt;}
.y1_c01006{bottom:1160.906667pt;}
.h6_c01006{height:11.733399pt;}
.h7_c01006{height:38.937500pt;}
.h5_c01006{height:78.048000pt;}
.h2_c01006{height:97.912760pt;}
.h3_c01006{height:108.041667pt;}
.h4_c01006{height:114.794271pt;}
.h0_c01006{height:1229.733333pt;}
.h1_c01006{height:1230.000000pt;}
.w2_c01006{width:93.222667pt;}
.w0_c01006{width:780.466667pt;}
.w1_c01006{width:780.666667pt;}
.x0_c01006{left:0.000000pt;}
.x8_c01006{left:32.000000pt;}
.x6_c01006{left:33.333333pt;}
.x5_c01006{left:34.800000pt;}
.x4_c01006{left:35.733333pt;}
.x3_c01006{left:37.733333pt;}
.x2_c01006{left:38.666667pt;}
.x1_c01006{left:39.600000pt;}
.xa_c01006{left:41.066667pt;}
.x9_c01006{left:51.066667pt;}
.xb_c01006{left:61.200000pt;}
.x7_c01006{left:96.533333pt;}
.xc_c01006{left:347.401530pt;}
}





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

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_70bca5560717d5e6bc6db3f8.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01007;src:url('chunks/assets/font_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;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_c01007;src:url('chunks/assets/font_8db238adfccad2a52c2016b9.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01007;src:url('chunks/assets/font_cb9db775dff1ace0bc223408.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01007;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01007;src:url('chunks/assets/font_476e7e762a466f794489d72d.woff2')format("woff");}.ff6_c01007{font-family:ff6_c01007;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01007;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c01007{font-family:ff7_c01007;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01007{vertical-align:-69.000000px;}
.v1_c01007{vertical-align:-32.400000px;}
.v0_c01007{vertical-align:0.000000px;}
.ls5_c01007{letter-spacing:-3.000000px;}
.ls3_c01007{letter-spacing:0.000000px;}
.ls2_c01007{letter-spacing:3.000000px;}
.ls6_c01007{letter-spacing:9.000000px;}
.ls1_c01007{letter-spacing:11.400000px;}
.ls4_c01007{letter-spacing:15.000000px;}
.ls0_c01007{letter-spacing:260.700000px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01007{word-spacing:-64.044000px;}
.ws3_c01007{word-spacing:-54.000000px;}
.ws1_c01007{word-spacing:-53.856000px;}
.ws0_c01007{word-spacing:-43.084800px;}
.ws5_c01007{word-spacing:-20.244000px;}
.ws4_c01007{word-spacing:-1.092000px;}
.ws6_c01007{word-spacing:0.000000px;}
._23_c01007{margin-left:-96.117000px;}
._1d_c01007{margin-left:-59.211000px;}
._1c_c01007{margin-left:-55.332000px;}
._2b_c01007{margin-left:-50.547000px;}
._4_c01007{margin-left:-49.416000px;}
._1f_c01007{margin-left:-48.198000px;}
._2d_c01007{margin-left:-45.327000px;}
._2_c01007{margin-left:-41.412000px;}
._12_c01007{margin-left:-38.697000px;}
._1b_c01007{margin-left:-37.149000px;}
._21_c01007{margin-left:-35.844000px;}
._2c_c01007{margin-left:-34.122000px;}
._5d_c01007{margin-left:-32.352000px;}
._22_c01007{margin-left:-30.624000px;}
._18_c01007{margin-left:-29.280000px;}
._20_c01007{margin-left:-27.231000px;}
._1e_c01007{margin-left:-25.143000px;}
._8_c01007{margin-left:-23.751000px;}
._b_c01007{margin-left:-21.888000px;}
._16_c01007{margin-left:-20.256000px;}
._6_c01007{margin-left:-18.183000px;}
._d_c01007{margin-left:-16.185000px;}
._15_c01007{margin-left:-14.496000px;}
._10_c01007{margin-left:-13.485000px;}
._f_c01007{margin-left:-11.040000px;}
._59_c01007{margin-left:-9.957000px;}
._30_c01007{margin-left:-8.787000px;}
._0_c01007{margin-left:-7.776000px;}
._24_c01007{margin-left:-6.558000px;}
._5_c01007{margin-left:-5.481000px;}
._26_c01007{margin-left:-3.654000px;}
._27_c01007{margin-left:-2.262000px;}
._3a_c01007{margin-left:-1.152000px;}
._35_c01007{width:1.281000px;}
._7_c01007{width:2.784000px;}
._38_c01007{width:4.201200px;}
._32_c01007{width:5.280000px;}
._3b_c01007{width:7.035000px;}
._42_c01007{width:8.365200px;}
._14_c01007{width:9.910800px;}
._25_c01007{width:11.397000px;}
._48_c01007{width:12.798000px;}
._3_c01007{width:13.833000px;}
._45_c01007{width:14.941800px;}
._51_c01007{width:16.937400px;}
._29_c01007{width:18.078000px;}
._4a_c01007{width:19.271400px;}
._13_c01007{width:21.024000px;}
._49_c01007{width:22.080000px;}
._2f_c01007{width:23.811000px;}
._36_c01007{width:25.311000px;}
._5b_c01007{width:27.232800px;}
._31_c01007{width:28.530000px;}
._3c_c01007{width:29.811000px;}
._2e_c01007{width:31.077000px;}
._50_c01007{width:32.867400px;}
._c_c01007{width:34.176000px;}
._28_c01007{width:35.712000px;}
._4b_c01007{width:37.023600px;}
._46_c01007{width:38.284800px;}
._47_c01007{width:39.639600px;}
._40_c01007{width:40.774800px;}
._56_c01007{width:41.958000px;}
._39_c01007{width:43.533600px;}
._44_c01007{width:45.366000px;}
._4f_c01007{width:46.656000px;}
._4d_c01007{width:47.719800px;}
._4c_c01007{width:49.014000px;}
._43_c01007{width:50.784000px;}
._e_c01007{width:52.512000px;}
._5a_c01007{width:53.593800px;}
._54_c01007{width:54.762600px;}
._55_c01007{width:55.781400px;}
._4e_c01007{width:57.321000px;}
._5e_c01007{width:58.902000px;}
._3f_c01007{width:60.210600px;}
._1_c01007{width:62.400000px;}
._2a_c01007{width:65.439000px;}
._3e_c01007{width:69.120000px;}
._41_c01007{width:73.270800px;}
._37_c01007{width:74.976000px;}
._52_c01007{width:76.895400px;}
._3d_c01007{width:80.352000px;}
._1a_c01007{width:84.321000px;}
._57_c01007{width:86.784000px;}
._19_c01007{width:90.240000px;}
._17_c01007{width:93.504000px;}
._33_c01007{width:97.860000px;}
._53_c01007{width:115.722000px;}
._58_c01007{width:144.333600px;}
._11_c01007{width:192.879000px;}
._34_c01007{width:195.903000px;}
._9_c01007{width:212.454000px;}
._a_c01007{width:321.984000px;}
._5c_c01007{width:392.082000px;}
._5f_c01007{width:901.519200px;}
.fc2_c01007{color:transparent;}
.fc1_c01007{color:rgb(128,128,128);}
.fc0_c01007{color:rgb(0,0,0);}
.fs7_c01007{font-size:48.000000px;}
.fs2_c01007{font-size:76.800000px;}
.fs3_c01007{font-size:78.000000px;}
.fs5_c01007{font-size:84.000000px;}
.fs1_c01007{font-size:87.000000px;}
.fs0_c01007{font-size:96.000000px;}
.fs4_c01007{font-size:99.000000px;}
.fs6_c01007{font-size:102.000000px;}
.y0_c01007{bottom:0.000000px;}
.y31_c01007{bottom:3.105000px;}
.y30_c01007{bottom:7.228357px;}
.y2f_c01007{bottom:88.080000px;}
.y2e_c01007{bottom:121.830000px;}
.y2d_c01007{bottom:155.580000px;}
.y2c_c01007{bottom:190.080000px;}
.y2b_c01007{bottom:223.530000px;}
.y2a_c01007{bottom:257.880000px;}
.y29_c01007{bottom:291.330000px;}
.y28_c01007{bottom:321.930000px;}
.y27_c01007{bottom:358.830000px;}
.y26_c01007{bottom:392.880000px;}
.y25_c01007{bottom:426.930000px;}
.y24_c01007{bottom:460.380000px;}
.y23_c01007{bottom:494.430000px;}
.y22_c01007{bottom:527.580000px;}
.y21_c01007{bottom:560.880000px;}
.y20_c01007{bottom:594.330000px;}
.y1f_c01007{bottom:628.080000px;}
.y1e_c01007{bottom:661.530000px;}
.y1d_c01007{bottom:695.280000px;}
.yb_c01007{bottom:718.230000px;}
.y1c_c01007{bottom:727.980000px;}
.ya_c01007{bottom:739.530000px;}
.y9_c01007{bottom:750.030000px;}
.y1b_c01007{bottom:761.430000px;}
.y8_c01007{bottom:769.230000px;}
.y1a_c01007{bottom:794.880000px;}
.y7_c01007{bottom:823.830000px;}
.y19_c01007{bottom:826.830000px;}
.y18_c01007{bottom:861.330000px;}
.y6_c01007{bottom:887.280000px;}
.y17_c01007{bottom:894.780000px;}
.y5_c01007{bottom:899.730000px;}
.y4_c01007{bottom:917.430000px;}
.y16_c01007{bottom:928.530000px;}
.y3_c01007{bottom:946.380000px;}
.y15_c01007{bottom:961.230000px;}
.y2_c01007{bottom:965.880000px;}
.y14_c01007{bottom:994.230000px;}
.y1_c01007{bottom:1007.880000px;}
.y13_c01007{bottom:1026.780000px;}
.y12_c01007{bottom:1060.080000px;}
.y11_c01007{bottom:1093.530000px;}
.y10_c01007{bottom:1126.980000px;}
.yf_c01007{bottom:1160.430000px;}
.ye_c01007{bottom:1193.130000px;}
.yd_c01007{bottom:1226.130000px;}
.yc_c01007{bottom:1259.280000px;}
.h5_c01007{height:13.200074px;}
.h6_c01007{height:43.804688px;}
.h3_c01007{height:85.385742px;}
.h4_c01007{height:110.151855px;}
.h2_c01007{height:121.546875px;}
.h0_c01007{height:1382.700000px;}
.h1_c01007{height:1383.000000px;}
.w2_c01007{width:104.875500px;}
.w0_c01007{width:863.175000px;}
.w1_c01007{width:863.250000px;}
.x0_c01007{left:0.000000px;}
.x4_c01007{left:39.600000px;}
.x8_c01007{left:40.950000px;}
.x7_c01007{left:42.600000px;}
.x9_c01007{left:50.400000px;}
.x6_c01007{left:63.450000px;}
.x2_c01007{left:64.800000px;}
.x3_c01007{left:73.800000px;}
.x5_c01007{left:123.600000px;}
.x1_c01007{left:133.650000px;}
.x15_c01007{left:139.650000px;}
.xe_c01007{left:215.700000px;}
.xf_c01007{left:219.000000px;}
.x10_c01007{left:225.450000px;}
.xa_c01007{left:254.100000px;}
.xb_c01007{left:255.150000px;}
.xc_c01007{left:256.200000px;}
.xd_c01007{left:257.850000px;}
.x11_c01007{left:258.900000px;}
.x12_c01007{left:260.550000px;}
.x13_c01007{left:261.600000px;}
.x14_c01007{left:262.800000px;}
.x16_c01007{left:265.950000px;}
.x17_c01007{left:383.401749px;}
@media print{
.v2_c01007{vertical-align:-61.333333pt;}
.v1_c01007{vertical-align:-28.800000pt;}
.v0_c01007{vertical-align:0.000000pt;}
.ls5_c01007{letter-spacing:-2.666667pt;}
.ls3_c01007{letter-spacing:0.000000pt;}
.ls2_c01007{letter-spacing:2.666667pt;}
.ls6_c01007{letter-spacing:8.000000pt;}
.ls1_c01007{letter-spacing:10.133333pt;}
.ls4_c01007{letter-spacing:13.333333pt;}
.ls0_c01007{letter-spacing:231.733333pt;}
.ws2_c01007{word-spacing:-56.928000pt;}
.ws3_c01007{word-spacing:-48.000000pt;}
.ws1_c01007{word-spacing:-47.872000pt;}
.ws0_c01007{word-spacing:-38.297600pt;}
.ws5_c01007{word-spacing:-17.994667pt;}
.ws4_c01007{word-spacing:-0.970667pt;}
.ws6_c01007{word-spacing:0.000000pt;}
._23_c01007{margin-left:-85.437333pt;}
._1d_c01007{margin-left:-52.632000pt;}
._1c_c01007{margin-left:-49.184000pt;}
._2b_c01007{margin-left:-44.930667pt;}
._4_c01007{margin-left:-43.925333pt;}
._1f_c01007{margin-left:-42.842667pt;}
._2d_c01007{margin-left:-40.290667pt;}
._2_c01007{margin-left:-36.810667pt;}
._12_c01007{margin-left:-34.397333pt;}
._1b_c01007{margin-left:-33.021333pt;}
._21_c01007{margin-left:-31.861333pt;}
._2c_c01007{margin-left:-30.330667pt;}
._5d_c01007{margin-left:-28.757333pt;}
._22_c01007{margin-left:-27.221333pt;}
._18_c01007{margin-left:-26.026667pt;}
._20_c01007{margin-left:-24.205333pt;}
._1e_c01007{margin-left:-22.349333pt;}
._8_c01007{margin-left:-21.112000pt;}
._b_c01007{margin-left:-19.456000pt;}
._16_c01007{margin-left:-18.005333pt;}
._6_c01007{margin-left:-16.162667pt;}
._d_c01007{margin-left:-14.386667pt;}
._15_c01007{margin-left:-12.885333pt;}
._10_c01007{margin-left:-11.986667pt;}
._f_c01007{margin-left:-9.813333pt;}
._59_c01007{margin-left:-8.850667pt;}
._30_c01007{margin-left:-7.810667pt;}
._0_c01007{margin-left:-6.912000pt;}
._24_c01007{margin-left:-5.829333pt;}
._5_c01007{margin-left:-4.872000pt;}
._26_c01007{margin-left:-3.248000pt;}
._27_c01007{margin-left:-2.010667pt;}
._3a_c01007{margin-left:-1.024000pt;}
._35_c01007{width:1.138667pt;}
._7_c01007{width:2.474667pt;}
._38_c01007{width:3.734400pt;}
._32_c01007{width:4.693333pt;}
._3b_c01007{width:6.253333pt;}
._42_c01007{width:7.435733pt;}
._14_c01007{width:8.809600pt;}
._25_c01007{width:10.130667pt;}
._48_c01007{width:11.376000pt;}
._3_c01007{width:12.296000pt;}
._45_c01007{width:13.281600pt;}
._51_c01007{width:15.055467pt;}
._29_c01007{width:16.069333pt;}
._4a_c01007{width:17.130133pt;}
._13_c01007{width:18.688000pt;}
._49_c01007{width:19.626667pt;}
._2f_c01007{width:21.165333pt;}
._36_c01007{width:22.498667pt;}
._5b_c01007{width:24.206933pt;}
._31_c01007{width:25.360000pt;}
._3c_c01007{width:26.498667pt;}
._2e_c01007{width:27.624000pt;}
._50_c01007{width:29.215467pt;}
._c_c01007{width:30.378667pt;}
._28_c01007{width:31.744000pt;}
._4b_c01007{width:32.909867pt;}
._46_c01007{width:34.030933pt;}
._47_c01007{width:35.235200pt;}
._40_c01007{width:36.244267pt;}
._56_c01007{width:37.296000pt;}
._39_c01007{width:38.696533pt;}
._44_c01007{width:40.325333pt;}
._4f_c01007{width:41.472000pt;}
._4d_c01007{width:42.417600pt;}
._4c_c01007{width:43.568000pt;}
._43_c01007{width:45.141333pt;}
._e_c01007{width:46.677333pt;}
._5a_c01007{width:47.638933pt;}
._54_c01007{width:48.677867pt;}
._55_c01007{width:49.583467pt;}
._4e_c01007{width:50.952000pt;}
._5e_c01007{width:52.357333pt;}
._3f_c01007{width:53.520533pt;}
._1_c01007{width:55.466667pt;}
._2a_c01007{width:58.168000pt;}
._3e_c01007{width:61.440000pt;}
._41_c01007{width:65.129600pt;}
._37_c01007{width:66.645333pt;}
._52_c01007{width:68.351467pt;}
._3d_c01007{width:71.424000pt;}
._1a_c01007{width:74.952000pt;}
._57_c01007{width:77.141333pt;}
._19_c01007{width:80.213333pt;}
._17_c01007{width:83.114667pt;}
._33_c01007{width:86.986667pt;}
._53_c01007{width:102.864000pt;}
._58_c01007{width:128.296533pt;}
._11_c01007{width:171.448000pt;}
._34_c01007{width:174.136000pt;}
._9_c01007{width:188.848000pt;}
._a_c01007{width:286.208000pt;}
._5c_c01007{width:348.517333pt;}
._5f_c01007{width:801.350400pt;}
.fs7_c01007{font-size:42.666667pt;}
.fs2_c01007{font-size:68.266667pt;}
.fs3_c01007{font-size:69.333333pt;}
.fs5_c01007{font-size:74.666667pt;}
.fs1_c01007{font-size:77.333333pt;}
.fs0_c01007{font-size:85.333333pt;}
.fs4_c01007{font-size:88.000000pt;}
.fs6_c01007{font-size:90.666667pt;}
.y0_c01007{bottom:0.000000pt;}
.y31_c01007{bottom:2.760000pt;}
.y30_c01007{bottom:6.425206pt;}
.y2f_c01007{bottom:78.293333pt;}
.y2e_c01007{bottom:108.293333pt;}
.y2d_c01007{bottom:138.293333pt;}
.y2c_c01007{bottom:168.960000pt;}
.y2b_c01007{bottom:198.693333pt;}
.y2a_c01007{bottom:229.226667pt;}
.y29_c01007{bottom:258.960000pt;}
.y28_c01007{bottom:286.160000pt;}
.y27_c01007{bottom:318.960000pt;}
.y26_c01007{bottom:349.226667pt;}
.y25_c01007{bottom:379.493333pt;}
.y24_c01007{bottom:409.226667pt;}
.y23_c01007{bottom:439.493333pt;}
.y22_c01007{bottom:468.960000pt;}
.y21_c01007{bottom:498.560000pt;}
.y20_c01007{bottom:528.293333pt;}
.y1f_c01007{bottom:558.293333pt;}
.y1e_c01007{bottom:588.026667pt;}
.y1d_c01007{bottom:618.026667pt;}
.yb_c01007{bottom:638.426667pt;}
.y1c_c01007{bottom:647.093333pt;}
.ya_c01007{bottom:657.360000pt;}
.y9_c01007{bottom:666.693333pt;}
.y1b_c01007{bottom:676.826667pt;}
.y8_c01007{bottom:683.760000pt;}
.y1a_c01007{bottom:706.560000pt;}
.y7_c01007{bottom:732.293333pt;}
.y19_c01007{bottom:734.960000pt;}
.y18_c01007{bottom:765.626667pt;}
.y6_c01007{bottom:788.693333pt;}
.y17_c01007{bottom:795.360000pt;}
.y5_c01007{bottom:799.760000pt;}
.y4_c01007{bottom:815.493333pt;}
.y16_c01007{bottom:825.360000pt;}
.y3_c01007{bottom:841.226667pt;}
.y15_c01007{bottom:854.426667pt;}
.y2_c01007{bottom:858.560000pt;}
.y14_c01007{bottom:883.760000pt;}
.y1_c01007{bottom:895.893333pt;}
.y13_c01007{bottom:912.693333pt;}
.y12_c01007{bottom:942.293333pt;}
.y11_c01007{bottom:972.026667pt;}
.y10_c01007{bottom:1001.760000pt;}
.yf_c01007{bottom:1031.493333pt;}
.ye_c01007{bottom:1060.560000pt;}
.yd_c01007{bottom:1089.893333pt;}
.yc_c01007{bottom:1119.360000pt;}
.h5_c01007{height:11.733399pt;}
.h6_c01007{height:38.937500pt;}
.h3_c01007{height:75.898438pt;}
.h4_c01007{height:97.912760pt;}
.h2_c01007{height:108.041667pt;}
.h0_c01007{height:1229.066667pt;}
.h1_c01007{height:1229.333333pt;}
.w2_c01007{width:93.222667pt;}
.w0_c01007{width:767.266667pt;}
.w1_c01007{width:767.333333pt;}
.x0_c01007{left:0.000000pt;}
.x4_c01007{left:35.200000pt;}
.x8_c01007{left:36.400000pt;}
.x7_c01007{left:37.866667pt;}
.x9_c01007{left:44.800000pt;}
.x6_c01007{left:56.400000pt;}
.x2_c01007{left:57.600000pt;}
.x3_c01007{left:65.600000pt;}
.x5_c01007{left:109.866667pt;}
.x1_c01007{left:118.800000pt;}
.x15_c01007{left:124.133333pt;}
.xe_c01007{left:191.733333pt;}
.xf_c01007{left:194.666667pt;}
.x10_c01007{left:200.400000pt;}
.xa_c01007{left:225.866667pt;}
.xb_c01007{left:226.800000pt;}
.xc_c01007{left:227.733333pt;}
.xd_c01007{left:229.200000pt;}
.x11_c01007{left:230.133333pt;}
.x12_c01007{left:231.600000pt;}
.x13_c01007{left:232.533333pt;}
.x14_c01007{left:233.600000pt;}
.x16_c01007{left:236.400000pt;}
.x17_c01007{left:340.801554pt;}
}





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

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_79991001ec3f001f4bdc247c.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01008;src:url('chunks/assets/font_95f2683abb85ed18a98fcf7d.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01008;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01008;src:url('chunks/assets/font_0be1126cc67858ac1becb926.woff2')format("woff");}.ff4_c01008{font-family:ff4_c01008;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01008;src:url('chunks/assets/font_5e5bcfeeda88ed3f90f8f52e.woff2')format("woff");}.ff5_c01008{font-family:ff5_c01008;line-height:1.291992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01008;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01008{font-family:ff6_c01008;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01008{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_c01008{vertical-align:0.000000px;}
.ls4_c01008{letter-spacing:0.000000px;}
.ls1_c01008{letter-spacing:0.240000px;}
.ls3_c01008{letter-spacing:7.800000px;}
.ls2_c01008{letter-spacing:15.259200px;}
.ls5_c01008{letter-spacing:24.000000px;}
.ls0_c01008{letter-spacing:49.291200px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01008{word-spacing:-47.136000px;}
.ws0_c01008{word-spacing:-34.704000px;}
.ws1_c01008{word-spacing:-20.244000px;}
.ws3_c01008{word-spacing:0.000000px;}
._2d_c01008{margin-left:-91.488000px;}
._52_c01008{margin-left:-31.824000px;}
._40_c01008{margin-left:-21.504000px;}
._a_c01008{margin-left:-19.872000px;}
._15_c01008{margin-left:-17.760000px;}
._b_c01008{margin-left:-15.960000px;}
._16_c01008{margin-left:-13.824000px;}
._27_c01008{margin-left:-11.808000px;}
._55_c01008{margin-left:-9.504000px;}
._36_c01008{margin-left:-7.200000px;}
._37_c01008{margin-left:-5.952000px;}
._e_c01008{margin-left:-4.704000px;}
._1f_c01008{margin-left:-3.552000px;}
._d_c01008{margin-left:-2.160000px;}
._c_c01008{margin-left:-1.008000px;}
._1d_c01008{width:1.152000px;}
._19_c01008{width:2.880000px;}
._10_c01008{width:4.560000px;}
._2b_c01008{width:5.616000px;}
._0_c01008{width:6.768000px;}
._2_c01008{width:8.352000px;}
._1_c01008{width:9.648000px;}
._17_c01008{width:10.656000px;}
._38_c01008{width:12.096000px;}
._8_c01008{width:13.104000px;}
._3e_c01008{width:14.208000px;}
._7_c01008{width:15.264000px;}
._4f_c01008{width:16.560000px;}
._28_c01008{width:17.568000px;}
._9_c01008{width:19.440000px;}
._50_c01008{width:20.736000px;}
._26_c01008{width:22.080000px;}
._4_c01008{width:24.048000px;}
._18_c01008{width:25.296000px;}
._5_c01008{width:26.640000px;}
._3a_c01008{width:28.176000px;}
._23_c01008{width:29.424000px;}
._2a_c01008{width:30.864000px;}
._47_c01008{width:32.208000px;}
._32_c01008{width:33.600000px;}
._20_c01008{width:34.656000px;}
._22_c01008{width:36.192000px;}
._12_c01008{width:37.200000px;}
._21_c01008{width:38.688000px;}
._14_c01008{width:40.800000px;}
._f_c01008{width:42.528000px;}
._30_c01008{width:43.536000px;}
._25_c01008{width:45.120000px;}
._2f_c01008{width:47.280000px;}
._1a_c01008{width:48.624000px;}
._29_c01008{width:50.880000px;}
._4c_c01008{width:51.888000px;}
._31_c01008{width:54.000000px;}
._24_c01008{width:55.872000px;}
._4e_c01008{width:57.840000px;}
._33_c01008{width:59.616000px;}
._2e_c01008{width:60.672000px;}
._13_c01008{width:62.448000px;}
._4d_c01008{width:64.872000px;}
._1b_c01008{width:66.144000px;}
._34_c01008{width:68.160000px;}
._43_c01008{width:72.360000px;}
._1c_c01008{width:74.976000px;}
._3c_c01008{width:77.664000px;}
._51_c01008{width:80.064000px;}
._54_c01008{width:89.328000px;}
._3_c01008{width:90.432000px;}
._45_c01008{width:92.448000px;}
._6_c01008{width:98.208000px;}
._44_c01008{width:99.852000px;}
._1e_c01008{width:107.232000px;}
._41_c01008{width:135.552000px;}
._53_c01008{width:137.592000px;}
._39_c01008{width:146.904000px;}
._56_c01008{width:149.088000px;}
._4b_c01008{width:190.320000px;}
._48_c01008{width:226.128000px;}
._35_c01008{width:346.104000px;}
._46_c01008{width:370.008000px;}
._3f_c01008{width:416.352000px;}
._3b_c01008{width:421.824000px;}
._2c_c01008{width:474.144000px;}
._3d_c01008{width:497.232000px;}
._42_c01008{width:584.256000px;}
._49_c01008{width:646.224000px;}
._11_c01008{width:676.800000px;}
._57_c01008{width:695.136000px;}
._58_c01008{width:764.064000px;}
._4a_c01008{width:996.096000px;}
.fc2_c01008{color:transparent;}
.fc1_c01008{color:rgb(128,128,128);}
.fc0_c01008{color:rgb(0,0,0);}
.fs6_c01008{font-size:48.000000px;}
.fs5_c01008{font-size:66.000000px;}
.fs4_c01008{font-size:84.000000px;}
.fs2_c01008{font-size:96.000000px;}
.fs3_c01008{font-size:102.000000px;}
.fs1_c01008{font-size:115.200000px;}
.fs0_c01008{font-size:144.000000px;}
.y0_c01008{bottom:0.000000px;}
.y25_c01008{bottom:3.105000px;}
.y24_c01008{bottom:7.228369px;}
.y23_c01008{bottom:114.720000px;}
.y22_c01008{bottom:149.220000px;}
.y21_c01008{bottom:182.970000px;}
.y20_c01008{bottom:216.720000px;}
.y1f_c01008{bottom:250.770000px;}
.y1e_c01008{bottom:284.220000px;}
.y1d_c01008{bottom:317.970000px;}
.y1c_c01008{bottom:351.570000px;}
.y1b_c01008{bottom:385.470000px;}
.y1a_c01008{bottom:419.070000px;}
.y19_c01008{bottom:452.220000px;}
.y18_c01008{bottom:485.670000px;}
.y17_c01008{bottom:519.420000px;}
.y16_c01008{bottom:553.170000px;}
.y15_c01008{bottom:587.220000px;}
.y14_c01008{bottom:619.920000px;}
.y13_c01008{bottom:654.420000px;}
.y12_c01008{bottom:686.520000px;}
.y11_c01008{bottom:719.520000px;}
.y10_c01008{bottom:754.920000px;}
.yf_c01008{bottom:768.870000px;}
.ye_c01008{bottom:787.770000px;}
.yd_c01008{bottom:822.120000px;}
.yc_c01008{bottom:855.870000px;}
.yb_c01008{bottom:887.220000px;}
.ya_c01008{bottom:920.970000px;}
.y9_c01008{bottom:954.120000px;}
.y8_c01008{bottom:987.120000px;}
.y7_c01008{bottom:1019.820000px;}
.y6_c01008{bottom:1053.720000px;}
.y5_c01008{bottom:1084.770000px;}
.y4_c01008{bottom:1116.720000px;}
.y3_c01008{bottom:1149.420000px;}
.y2_c01008{bottom:1223.670000px;}
.y1_c01008{bottom:1272.720000px;}
.h4_c01008{height:13.200073px;}
.h5_c01008{height:43.804688px;}
.h3_c01008{height:121.546875px;}
.h2_c01008{height:182.320312px;}
.h0_c01008{height:1383.450000px;}
.h1_c01008{height:1383.750000px;}
.w2_c01008{width:104.875500px;}
.w0_c01008{width:878.025000px;}
.w1_c01008{width:878.250000px;}
.x0_c01008{left:0.000000px;}
.xb_c01008{left:27.300000px;}
.x8_c01008{left:28.350000px;}
.x7_c01008{left:30.000000px;}
.x6_c01008{left:31.050000px;}
.x5_c01008{left:32.700000px;}
.xc_c01008{left:35.400000px;}
.x1_c01008{left:45.900000px;}
.x3_c01008{left:47.850000px;}
.xa_c01008{left:80.250000px;}
.x9_c01008{left:170.100000px;}
.x2_c01008{left:281.400000px;}
.x4_c01008{left:291.300000px;}
.xd_c01008{left:390.826721px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls4_c01008{letter-spacing:0.000000pt;}
.ls1_c01008{letter-spacing:0.213333pt;}
.ls3_c01008{letter-spacing:6.933333pt;}
.ls2_c01008{letter-spacing:13.563733pt;}
.ls5_c01008{letter-spacing:21.333333pt;}
.ls0_c01008{letter-spacing:43.814400pt;}
.ws2_c01008{word-spacing:-41.898667pt;}
.ws0_c01008{word-spacing:-30.848000pt;}
.ws1_c01008{word-spacing:-17.994667pt;}
.ws3_c01008{word-spacing:0.000000pt;}
._2d_c01008{margin-left:-81.322667pt;}
._52_c01008{margin-left:-28.288000pt;}
._40_c01008{margin-left:-19.114667pt;}
._a_c01008{margin-left:-17.664000pt;}
._15_c01008{margin-left:-15.786667pt;}
._b_c01008{margin-left:-14.186667pt;}
._16_c01008{margin-left:-12.288000pt;}
._27_c01008{margin-left:-10.496000pt;}
._55_c01008{margin-left:-8.448000pt;}
._36_c01008{margin-left:-6.400000pt;}
._37_c01008{margin-left:-5.290667pt;}
._e_c01008{margin-left:-4.181333pt;}
._1f_c01008{margin-left:-3.157333pt;}
._d_c01008{margin-left:-1.920000pt;}
._c_c01008{margin-left:-0.896000pt;}
._1d_c01008{width:1.024000pt;}
._19_c01008{width:2.560000pt;}
._10_c01008{width:4.053333pt;}
._2b_c01008{width:4.992000pt;}
._0_c01008{width:6.016000pt;}
._2_c01008{width:7.424000pt;}
._1_c01008{width:8.576000pt;}
._17_c01008{width:9.472000pt;}
._38_c01008{width:10.752000pt;}
._8_c01008{width:11.648000pt;}
._3e_c01008{width:12.629333pt;}
._7_c01008{width:13.568000pt;}
._4f_c01008{width:14.720000pt;}
._28_c01008{width:15.616000pt;}
._9_c01008{width:17.280000pt;}
._50_c01008{width:18.432000pt;}
._26_c01008{width:19.626667pt;}
._4_c01008{width:21.376000pt;}
._18_c01008{width:22.485333pt;}
._5_c01008{width:23.680000pt;}
._3a_c01008{width:25.045333pt;}
._23_c01008{width:26.154667pt;}
._2a_c01008{width:27.434667pt;}
._47_c01008{width:28.629333pt;}
._32_c01008{width:29.866667pt;}
._20_c01008{width:30.805333pt;}
._22_c01008{width:32.170667pt;}
._12_c01008{width:33.066667pt;}
._21_c01008{width:34.389333pt;}
._14_c01008{width:36.266667pt;}
._f_c01008{width:37.802667pt;}
._30_c01008{width:38.698667pt;}
._25_c01008{width:40.106667pt;}
._2f_c01008{width:42.026667pt;}
._1a_c01008{width:43.221333pt;}
._29_c01008{width:45.226667pt;}
._4c_c01008{width:46.122667pt;}
._31_c01008{width:48.000000pt;}
._24_c01008{width:49.664000pt;}
._4e_c01008{width:51.413333pt;}
._33_c01008{width:52.992000pt;}
._2e_c01008{width:53.930667pt;}
._13_c01008{width:55.509333pt;}
._4d_c01008{width:57.664000pt;}
._1b_c01008{width:58.794667pt;}
._34_c01008{width:60.586667pt;}
._43_c01008{width:64.320000pt;}
._1c_c01008{width:66.645333pt;}
._3c_c01008{width:69.034667pt;}
._51_c01008{width:71.168000pt;}
._54_c01008{width:79.402667pt;}
._3_c01008{width:80.384000pt;}
._45_c01008{width:82.176000pt;}
._6_c01008{width:87.296000pt;}
._44_c01008{width:88.757333pt;}
._1e_c01008{width:95.317333pt;}
._41_c01008{width:120.490667pt;}
._53_c01008{width:122.304000pt;}
._39_c01008{width:130.581333pt;}
._56_c01008{width:132.522667pt;}
._4b_c01008{width:169.173333pt;}
._48_c01008{width:201.002667pt;}
._35_c01008{width:307.648000pt;}
._46_c01008{width:328.896000pt;}
._3f_c01008{width:370.090667pt;}
._3b_c01008{width:374.954667pt;}
._2c_c01008{width:421.461333pt;}
._3d_c01008{width:441.984000pt;}
._42_c01008{width:519.338667pt;}
._49_c01008{width:574.421333pt;}
._11_c01008{width:601.600000pt;}
._57_c01008{width:617.898667pt;}
._58_c01008{width:679.168000pt;}
._4a_c01008{width:885.418667pt;}
.fs6_c01008{font-size:42.666667pt;}
.fs5_c01008{font-size:58.666667pt;}
.fs4_c01008{font-size:74.666667pt;}
.fs2_c01008{font-size:85.333333pt;}
.fs3_c01008{font-size:90.666667pt;}
.fs1_c01008{font-size:102.400000pt;}
.fs0_c01008{font-size:128.000000pt;}
.y0_c01008{bottom:0.000000pt;}
.y25_c01008{bottom:2.760000pt;}
.y24_c01008{bottom:6.425217pt;}
.y23_c01008{bottom:101.973333pt;}
.y22_c01008{bottom:132.640000pt;}
.y21_c01008{bottom:162.640000pt;}
.y20_c01008{bottom:192.640000pt;}
.y1f_c01008{bottom:222.906667pt;}
.y1e_c01008{bottom:252.640000pt;}
.y1d_c01008{bottom:282.640000pt;}
.y1c_c01008{bottom:312.506667pt;}
.y1b_c01008{bottom:342.640000pt;}
.y1a_c01008{bottom:372.506667pt;}
.y19_c01008{bottom:401.973333pt;}
.y18_c01008{bottom:431.706667pt;}
.y17_c01008{bottom:461.706667pt;}
.y16_c01008{bottom:491.706667pt;}
.y15_c01008{bottom:521.973333pt;}
.y14_c01008{bottom:551.040000pt;}
.y13_c01008{bottom:581.706667pt;}
.y12_c01008{bottom:610.240000pt;}
.y11_c01008{bottom:639.573333pt;}
.y10_c01008{bottom:671.040000pt;}
.yf_c01008{bottom:683.440000pt;}
.ye_c01008{bottom:700.240000pt;}
.yd_c01008{bottom:730.773333pt;}
.yc_c01008{bottom:760.773333pt;}
.yb_c01008{bottom:788.640000pt;}
.ya_c01008{bottom:818.640000pt;}
.y9_c01008{bottom:848.106667pt;}
.y8_c01008{bottom:877.440000pt;}
.y7_c01008{bottom:906.506667pt;}
.y6_c01008{bottom:936.640000pt;}
.y5_c01008{bottom:964.240000pt;}
.y4_c01008{bottom:992.640000pt;}
.y3_c01008{bottom:1021.706667pt;}
.y2_c01008{bottom:1087.706667pt;}
.y1_c01008{bottom:1131.306667pt;}
.h4_c01008{height:11.733399pt;}
.h5_c01008{height:38.937500pt;}
.h3_c01008{height:108.041667pt;}
.h2_c01008{height:162.062500pt;}
.h0_c01008{height:1229.733333pt;}
.h1_c01008{height:1230.000000pt;}
.w2_c01008{width:93.222667pt;}
.w0_c01008{width:780.466667pt;}
.w1_c01008{width:780.666667pt;}
.x0_c01008{left:0.000000pt;}
.xb_c01008{left:24.266667pt;}
.x8_c01008{left:25.200000pt;}
.x7_c01008{left:26.666667pt;}
.x6_c01008{left:27.600000pt;}
.x5_c01008{left:29.066667pt;}
.xc_c01008{left:31.466667pt;}
.x1_c01008{left:40.800000pt;}
.x3_c01008{left:42.533333pt;}
.xa_c01008{left:71.333333pt;}
.x9_c01008{left:151.200000pt;}
.x2_c01008{left:250.133333pt;}
.x4_c01008{left:258.933333pt;}
.xd_c01008{left:347.401530pt;}
}





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

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_b577b7a5a5425716a1553679.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01009;src:url('chunks/assets/font_43ce7bb6ccd766c23c99b5c9.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01009;src:url('chunks/assets/font_d328c63ac98c111439e54ca4.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01009;src:url('chunks/assets/font_b0e0662087d21cbd85cb8dd5.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01009;src:url('chunks/assets/font_1ccef9313f6cfcbda3eacfa4.woff2')format("woff");}.ff5_c01009{font-family:ff5_c01009;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01009;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff6_c01009{font-family:ff6_c01009;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01009;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c01009{font-family:ff7_c01009;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01009{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.v1_c01009{vertical-align:8.400000px;}
.ls1_c01009{letter-spacing:0.000000px;}
.ls3_c01009{letter-spacing:3.000000px;}
.ls2_c01009{letter-spacing:15.000000px;}
.ls0_c01009{letter-spacing:15.216000px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01009{word-spacing:-54.000000px;}
.ws3_c01009{word-spacing:-53.856000px;}
.ws4_c01009{word-spacing:-43.084800px;}
.ws2_c01009{word-spacing:-35.967000px;}
.ws5_c01009{word-spacing:-23.136000px;}
.ws1_c01009{word-spacing:-20.967000px;}
.ws6_c01009{word-spacing:-20.244000px;}
.ws8_c01009{word-spacing:0.000000px;}
.ws0_c01009{word-spacing:54.960000px;}
._b_c01009{margin-left:-53.679000px;}
._39_c01009{margin-left:-35.502000px;}
._42_c01009{margin-left:-30.528000px;}
._34_c01009{margin-left:-27.537000px;}
._3e_c01009{margin-left:-24.000000px;}
._c_c01009{margin-left:-19.320000px;}
._45_c01009{margin-left:-18.048000px;}
._2e_c01009{margin-left:-17.010000px;}
._1a_c01009{margin-left:-14.664000px;}
._0_c01009{margin-left:-13.320000px;}
._10_c01009{margin-left:-12.213000px;}
._d_c01009{margin-left:-10.800000px;}
._a_c01009{margin-left:-9.438000px;}
._1_c01009{margin-left:-7.440000px;}
._19_c01009{margin-left:-6.336000px;}
._37_c01009{margin-left:-5.280000px;}
._3_c01009{margin-left:-3.960000px;}
._4_c01009{margin-left:-2.640000px;}
._5_c01009{margin-left:-1.440000px;}
._15_c01009{width:1.779000px;}
._f_c01009{width:2.808000px;}
._9_c01009{width:4.413000px;}
._8_c01009{width:5.586000px;}
._7_c01009{width:7.353000px;}
._11_c01009{width:8.874000px;}
._36_c01009{width:9.891000px;}
._2_c01009{width:10.920000px;}
._21_c01009{width:12.432000px;}
._31_c01009{width:13.467000px;}
._2a_c01009{width:14.964000px;}
._e_c01009{width:17.400000px;}
._3d_c01009{width:18.549000px;}
._38_c01009{width:19.614000px;}
._26_c01009{width:21.114000px;}
._3f_c01009{width:22.200000px;}
._1f_c01009{width:25.656000px;}
._2d_c01009{width:27.258000px;}
._25_c01009{width:28.749000px;}
._1e_c01009{width:29.958000px;}
._13_c01009{width:31.992000px;}
._1b_c01009{width:33.198000px;}
._1c_c01009{width:34.251000px;}
._6_c01009{width:36.324000px;}
._23_c01009{width:37.734000px;}
._20_c01009{width:38.883000px;}
._1d_c01009{width:40.377000px;}
._2f_c01009{width:41.472000px;}
._22_c01009{width:42.894000px;}
._3c_c01009{width:44.826000px;}
._14_c01009{width:46.308000px;}
._12_c01009{width:48.087000px;}
._24_c01009{width:50.037000px;}
._41_c01009{width:51.237000px;}
._28_c01009{width:54.324000px;}
._17_c01009{width:55.842000px;}
._27_c01009{width:58.368000px;}
._32_c01009{width:60.234000px;}
._2c_c01009{width:62.334000px;}
._2b_c01009{width:64.524000px;}
._33_c01009{width:67.206000px;}
._35_c01009{width:70.776000px;}
._44_c01009{width:72.522000px;}
._30_c01009{width:75.870000px;}
._3b_c01009{width:81.840000px;}
._16_c01009{width:85.389000px;}
._46_c01009{width:101.376000px;}
._3a_c01009{width:170.349000px;}
._43_c01009{width:174.645000px;}
._29_c01009{width:185.631000px;}
._40_c01009{width:218.424000px;}
._18_c01009{width:224.808000px;}
._47_c01009{width:685.866000px;}
.fc2_c01009{color:transparent;}
.fc1_c01009{color:rgb(128,128,128);}
.fc0_c01009{color:rgb(0,0,0);}
.fs9_c01009{font-size:48.000000px;}
.fs2_c01009{font-size:57.000000px;}
.fs4_c01009{font-size:76.800000px;}
.fs6_c01009{font-size:84.000000px;}
.fs3_c01009{font-size:87.000000px;}
.fs5_c01009{font-size:93.000000px;}
.fs1_c01009{font-size:96.000000px;}
.fs8_c01009{font-size:102.000000px;}
.fs7_c01009{font-size:114.000000px;}
.fs0_c01009{font-size:120.000000px;}
.y0_c01009{bottom:0.000000px;}
.y2e_c01009{bottom:3.105000px;}
.y2d_c01009{bottom:7.228357px;}
.y2c_c01009{bottom:99.180000px;}
.y2b_c01009{bottom:132.030000px;}
.y2a_c01009{bottom:165.030000px;}
.y29_c01009{bottom:199.530000px;}
.y28_c01009{bottom:232.980000px;}
.y8_c01009{bottom:263.280000px;}
.y27_c01009{bottom:267.030000px;}
.y26_c01009{bottom:301.680000px;}
.y25_c01009{bottom:335.430000px;}
.y24_c01009{bottom:368.880000px;}
.y23_c01009{bottom:402.330000px;}
.y7_c01009{bottom:424.230000px;}
.y22_c01009{bottom:436.080000px;}
.y21_c01009{bottom:469.080000px;}
.y20_c01009{bottom:504.180000px;}
.y1f_c01009{bottom:537.630000px;}
.y1e_c01009{bottom:571.380000px;}
.y1d_c01009{bottom:604.080000px;}
.y1c_c01009{bottom:637.980000px;}
.y6_c01009{bottom:656.880000px;}
.y1b_c01009{bottom:671.580000px;}
.y1a_c01009{bottom:705.030000px;}
.y19_c01009{bottom:738.480000px;}
.y18_c01009{bottom:771.930000px;}
.y17_c01009{bottom:805.680000px;}
.y5_c01009{bottom:811.380000px;}
.y16_c01009{bottom:838.680000px;}
.y15_c01009{bottom:872.430000px;}
.y14_c01009{bottom:905.880000px;}
.y13_c01009{bottom:939.030000px;}
.y4_c01009{bottom:949.380000px;}
.y12_c01009{bottom:972.780000px;}
.y3_c01009{bottom:973.080000px;}
.y2_c01009{bottom:979.380000px;}
.y11_c01009{bottom:1005.480000px;}
.y10_c01009{bottom:1037.880000px;}
.yf_c01009{bottom:1070.880000px;}
.y1_c01009{bottom:1076.580000px;}
.ye_c01009{bottom:1105.380000px;}
.yd_c01009{bottom:1137.780000px;}
.yc_c01009{bottom:1171.230000px;}
.yb_c01009{bottom:1204.830000px;}
.ya_c01009{bottom:1236.930000px;}
.y9_c01009{bottom:1270.380000px;}
.h6_c01009{height:13.200074px;}
.h7_c01009{height:43.804688px;}
.h4_c01009{height:110.151855px;}
.h3_c01009{height:121.546875px;}
.h2_c01009{height:128.040000px;}
.h5_c01009{height:144.336914px;}
.h0_c01009{height:1382.700000px;}
.h1_c01009{height:1383.000000px;}
.w2_c01009{width:104.875500px;}
.w0_c01009{width:863.175000px;}
.w1_c01009{width:863.250000px;}
.x0_c01009{left:0.000000px;}
.x4_c01009{left:29.400000px;}
.x8_c01009{left:53.100000px;}
.x2_c01009{left:58.500000px;}
.x6_c01009{left:137.400000px;}
.x1_c01009{left:143.850000px;}
.x7_c01009{left:144.900000px;}
.x3_c01009{left:153.900000px;}
.x5_c01009{left:210.900000px;}
.x14_c01009{left:240.600000px;}
.xd_c01009{left:241.650000px;}
.xc_c01009{left:242.700000px;}
.xa_c01009{left:244.350000px;}
.xb_c01009{left:246.450000px;}
.xf_c01009{left:247.500000px;}
.x10_c01009{left:248.700000px;}
.x9_c01009{left:260.550000px;}
.xe_c01009{left:294.600000px;}
.x13_c01009{left:295.650000px;}
.x11_c01009{left:301.050000px;}
.x12_c01009{left:309.150000px;}
.x17_c01009{left:383.401749px;}
.x15_c01009{left:479.100000px;}
.x16_c01009{left:522.150000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.v1_c01009{vertical-align:7.466667pt;}
.ls1_c01009{letter-spacing:0.000000pt;}
.ls3_c01009{letter-spacing:2.666667pt;}
.ls2_c01009{letter-spacing:13.333333pt;}
.ls0_c01009{letter-spacing:13.525333pt;}
.ws7_c01009{word-spacing:-48.000000pt;}
.ws3_c01009{word-spacing:-47.872000pt;}
.ws4_c01009{word-spacing:-38.297600pt;}
.ws2_c01009{word-spacing:-31.970667pt;}
.ws5_c01009{word-spacing:-20.565333pt;}
.ws1_c01009{word-spacing:-18.637333pt;}
.ws6_c01009{word-spacing:-17.994667pt;}
.ws8_c01009{word-spacing:0.000000pt;}
.ws0_c01009{word-spacing:48.853333pt;}
._b_c01009{margin-left:-47.714667pt;}
._39_c01009{margin-left:-31.557333pt;}
._42_c01009{margin-left:-27.136000pt;}
._34_c01009{margin-left:-24.477333pt;}
._3e_c01009{margin-left:-21.333333pt;}
._c_c01009{margin-left:-17.173333pt;}
._45_c01009{margin-left:-16.042667pt;}
._2e_c01009{margin-left:-15.120000pt;}
._1a_c01009{margin-left:-13.034667pt;}
._0_c01009{margin-left:-11.840000pt;}
._10_c01009{margin-left:-10.856000pt;}
._d_c01009{margin-left:-9.600000pt;}
._a_c01009{margin-left:-8.389333pt;}
._1_c01009{margin-left:-6.613333pt;}
._19_c01009{margin-left:-5.632000pt;}
._37_c01009{margin-left:-4.693333pt;}
._3_c01009{margin-left:-3.520000pt;}
._4_c01009{margin-left:-2.346667pt;}
._5_c01009{margin-left:-1.280000pt;}
._15_c01009{width:1.581333pt;}
._f_c01009{width:2.496000pt;}
._9_c01009{width:3.922667pt;}
._8_c01009{width:4.965333pt;}
._7_c01009{width:6.536000pt;}
._11_c01009{width:7.888000pt;}
._36_c01009{width:8.792000pt;}
._2_c01009{width:9.706667pt;}
._21_c01009{width:11.050667pt;}
._31_c01009{width:11.970667pt;}
._2a_c01009{width:13.301333pt;}
._e_c01009{width:15.466667pt;}
._3d_c01009{width:16.488000pt;}
._38_c01009{width:17.434667pt;}
._26_c01009{width:18.768000pt;}
._3f_c01009{width:19.733333pt;}
._1f_c01009{width:22.805333pt;}
._2d_c01009{width:24.229333pt;}
._25_c01009{width:25.554667pt;}
._1e_c01009{width:26.629333pt;}
._13_c01009{width:28.437333pt;}
._1b_c01009{width:29.509333pt;}
._1c_c01009{width:30.445333pt;}
._6_c01009{width:32.288000pt;}
._23_c01009{width:33.541333pt;}
._20_c01009{width:34.562667pt;}
._1d_c01009{width:35.890667pt;}
._2f_c01009{width:36.864000pt;}
._22_c01009{width:38.128000pt;}
._3c_c01009{width:39.845333pt;}
._14_c01009{width:41.162667pt;}
._12_c01009{width:42.744000pt;}
._24_c01009{width:44.477333pt;}
._41_c01009{width:45.544000pt;}
._28_c01009{width:48.288000pt;}
._17_c01009{width:49.637333pt;}
._27_c01009{width:51.882667pt;}
._32_c01009{width:53.541333pt;}
._2c_c01009{width:55.408000pt;}
._2b_c01009{width:57.354667pt;}
._33_c01009{width:59.738667pt;}
._35_c01009{width:62.912000pt;}
._44_c01009{width:64.464000pt;}
._30_c01009{width:67.440000pt;}
._3b_c01009{width:72.746667pt;}
._16_c01009{width:75.901333pt;}
._46_c01009{width:90.112000pt;}
._3a_c01009{width:151.421333pt;}
._43_c01009{width:155.240000pt;}
._29_c01009{width:165.005333pt;}
._40_c01009{width:194.154667pt;}
._18_c01009{width:199.829333pt;}
._47_c01009{width:609.658667pt;}
.fs9_c01009{font-size:42.666667pt;}
.fs2_c01009{font-size:50.666667pt;}
.fs4_c01009{font-size:68.266667pt;}
.fs6_c01009{font-size:74.666667pt;}
.fs3_c01009{font-size:77.333333pt;}
.fs5_c01009{font-size:82.666667pt;}
.fs1_c01009{font-size:85.333333pt;}
.fs8_c01009{font-size:90.666667pt;}
.fs7_c01009{font-size:101.333333pt;}
.fs0_c01009{font-size:106.666667pt;}
.y0_c01009{bottom:0.000000pt;}
.y2e_c01009{bottom:2.760000pt;}
.y2d_c01009{bottom:6.425206pt;}
.y2c_c01009{bottom:88.160000pt;}
.y2b_c01009{bottom:117.360000pt;}
.y2a_c01009{bottom:146.693333pt;}
.y29_c01009{bottom:177.360000pt;}
.y28_c01009{bottom:207.093333pt;}
.y8_c01009{bottom:234.026667pt;}
.y27_c01009{bottom:237.360000pt;}
.y26_c01009{bottom:268.160000pt;}
.y25_c01009{bottom:298.160000pt;}
.y24_c01009{bottom:327.893333pt;}
.y23_c01009{bottom:357.626667pt;}
.y7_c01009{bottom:377.093333pt;}
.y22_c01009{bottom:387.626667pt;}
.y21_c01009{bottom:416.960000pt;}
.y20_c01009{bottom:448.160000pt;}
.y1f_c01009{bottom:477.893333pt;}
.y1e_c01009{bottom:507.893333pt;}
.y1d_c01009{bottom:536.960000pt;}
.y1c_c01009{bottom:567.093333pt;}
.y6_c01009{bottom:583.893333pt;}
.y1b_c01009{bottom:596.960000pt;}
.y1a_c01009{bottom:626.693333pt;}
.y19_c01009{bottom:656.426667pt;}
.y18_c01009{bottom:686.160000pt;}
.y17_c01009{bottom:716.160000pt;}
.y5_c01009{bottom:721.226667pt;}
.y16_c01009{bottom:745.493333pt;}
.y15_c01009{bottom:775.493333pt;}
.y14_c01009{bottom:805.226667pt;}
.y13_c01009{bottom:834.693333pt;}
.y4_c01009{bottom:843.893333pt;}
.y12_c01009{bottom:864.693333pt;}
.y3_c01009{bottom:864.960000pt;}
.y2_c01009{bottom:870.560000pt;}
.y11_c01009{bottom:893.760000pt;}
.y10_c01009{bottom:922.560000pt;}
.yf_c01009{bottom:951.893333pt;}
.y1_c01009{bottom:956.960000pt;}
.ye_c01009{bottom:982.560000pt;}
.yd_c01009{bottom:1011.360000pt;}
.yc_c01009{bottom:1041.093333pt;}
.yb_c01009{bottom:1070.960000pt;}
.ya_c01009{bottom:1099.493333pt;}
.y9_c01009{bottom:1129.226667pt;}
.h6_c01009{height:11.733399pt;}
.h7_c01009{height:38.937500pt;}
.h4_c01009{height:97.912760pt;}
.h3_c01009{height:108.041667pt;}
.h2_c01009{height:113.813333pt;}
.h5_c01009{height:128.299479pt;}
.h0_c01009{height:1229.066667pt;}
.h1_c01009{height:1229.333333pt;}
.w2_c01009{width:93.222667pt;}
.w0_c01009{width:767.266667pt;}
.w1_c01009{width:767.333333pt;}
.x0_c01009{left:0.000000pt;}
.x4_c01009{left:26.133333pt;}
.x8_c01009{left:47.200000pt;}
.x2_c01009{left:52.000000pt;}
.x6_c01009{left:122.133333pt;}
.x1_c01009{left:127.866667pt;}
.x7_c01009{left:128.800000pt;}
.x3_c01009{left:136.800000pt;}
.x5_c01009{left:187.466667pt;}
.x14_c01009{left:213.866667pt;}
.xd_c01009{left:214.800000pt;}
.xc_c01009{left:215.733333pt;}
.xa_c01009{left:217.200000pt;}
.xb_c01009{left:219.066667pt;}
.xf_c01009{left:220.000000pt;}
.x10_c01009{left:221.066667pt;}
.x9_c01009{left:231.600000pt;}
.xe_c01009{left:261.866667pt;}
.x13_c01009{left:262.800000pt;}
.x11_c01009{left:267.600000pt;}
.x12_c01009{left:274.800000pt;}
.x17_c01009{left:340.801554pt;}
.x15_c01009{left:425.866667pt;}
.x16_c01009{left:464.133333pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_994687061cb940436688affd.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01010;src:url('chunks/assets/font_f40e7894ca65d28340b695de.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01010;src:url('chunks/assets/font_b6af87cc2968f612f2c3d773.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01010;src:url('chunks/assets/font_251dabb5caab8fe0aca96204.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01010;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01010{font-family:ff5_c01010;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls3_c01010{letter-spacing:-3.000000px;}
.ls1_c01010{letter-spacing:0.000000px;}
.ls2_c01010{letter-spacing:3.000000px;}
.ls0_c01010{letter-spacing:27.000000px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01010{word-spacing:-54.000000px;}
.ws0_c01010{word-spacing:-23.136000px;}
.ws2_c01010{word-spacing:-20.244000px;}
.ws3_c01010{word-spacing:0.000000px;}
._1a_c01010{margin-left:-81.792000px;}
._30_c01010{margin-left:-69.888000px;}
._31_c01010{margin-left:-34.092000px;}
._22_c01010{margin-left:-32.568000px;}
._35_c01010{margin-left:-24.984000px;}
._34_c01010{margin-left:-23.376000px;}
._2e_c01010{margin-left:-21.120000px;}
._47_c01010{margin-left:-19.392000px;}
._48_c01010{margin-left:-14.976000px;}
._16_c01010{margin-left:-13.248000px;}
._14_c01010{margin-left:-12.192000px;}
._17_c01010{margin-left:-10.368000px;}
._15_c01010{margin-left:-9.216000px;}
._2b_c01010{margin-left:-7.968000px;}
._2c_c01010{margin-left:-6.336000px;}
._5_c01010{margin-left:-4.896000px;}
._4_c01010{margin-left:-3.456000px;}
._28_c01010{margin-left:-2.304000px;}
._8_c01010{margin-left:-1.056000px;}
._d_c01010{width:2.016000px;}
._2_c01010{width:3.936000px;}
._3_c01010{width:5.088000px;}
._1_c01010{width:6.528000px;}
._f_c01010{width:8.064000px;}
._6_c01010{width:9.120000px;}
._1b_c01010{width:10.272000px;}
._0_c01010{width:12.096000px;}
._3a_c01010{width:13.104000px;}
._36_c01010{width:14.304000px;}
._e_c01010{width:15.360000px;}
._1c_c01010{width:16.416000px;}
._1e_c01010{width:18.144000px;}
._40_c01010{width:19.272000px;}
._1f_c01010{width:20.832000px;}
._1d_c01010{width:21.888000px;}
._3c_c01010{width:25.152000px;}
._21_c01010{width:26.172000px;}
._9_c01010{width:27.552000px;}
._b_c01010{width:28.704000px;}
._7_c01010{width:30.048000px;}
._c_c01010{width:31.200000px;}
._a_c01010{width:32.544000px;}
._19_c01010{width:34.368000px;}
._13_c01010{width:36.000000px;}
._10_c01010{width:37.056000px;}
._38_c01010{width:38.688000px;}
._26_c01010{width:39.744000px;}
._20_c01010{width:41.304000px;}
._12_c01010{width:43.488000px;}
._39_c01010{width:44.544000px;}
._27_c01010{width:46.560000px;}
._43_c01010{width:47.808000px;}
._23_c01010{width:49.056000px;}
._3b_c01010{width:50.976000px;}
._11_c01010{width:52.416000px;}
._37_c01010{width:54.336000px;}
._49_c01010{width:56.040000px;}
._25_c01010{width:58.656000px;}
._3f_c01010{width:61.008000px;}
._3e_c01010{width:62.688000px;}
._24_c01010{width:64.512000px;}
._18_c01010{width:65.760000px;}
._42_c01010{width:67.680000px;}
._41_c01010{width:73.728000px;}
._29_c01010{width:76.452000px;}
._3d_c01010{width:78.144000px;}
._4b_c01010{width:80.256000px;}
._45_c01010{width:86.436000px;}
._46_c01010{width:87.840000px;}
._2d_c01010{width:103.200000px;}
._32_c01010{width:116.256000px;}
._33_c01010{width:199.584000px;}
._2f_c01010{width:222.696000px;}
._44_c01010{width:318.636000px;}
._2a_c01010{width:320.544000px;}
._4a_c01010{width:708.960000px;}
.fc2_c01010{color:transparent;}
.fc1_c01010{color:rgb(128,128,128);}
.fc0_c01010{color:rgb(0,0,0);}
.fs3_c01010{font-size:48.000000px;}
.fs1_c01010{font-size:84.000000px;}
.fs0_c01010{font-size:96.000000px;}
.fs2_c01010{font-size:102.000000px;}
.y0_c01010{bottom:0.000000px;}
.y27_c01010{bottom:3.105000px;}
.y26_c01010{bottom:7.228369px;}
.y24_c01010{bottom:119.820000px;}
.y23_c01010{bottom:152.220000px;}
.y22_c01010{bottom:186.270000px;}
.y21_c01010{bottom:220.320000px;}
.y20_c01010{bottom:253.770000px;}
.y1f_c01010{bottom:286.920000px;}
.y1e_c01010{bottom:321.870000px;}
.y1d_c01010{bottom:355.320000px;}
.y1c_c01010{bottom:388.770000px;}
.y1b_c01010{bottom:421.920000px;}
.y1a_c01010{bottom:455.520000px;}
.y19_c01010{bottom:489.720000px;}
.y18_c01010{bottom:523.020000px;}
.y17_c01010{bottom:556.470000px;}
.y16_c01010{bottom:589.920000px;}
.y15_c01010{bottom:623.970000px;}
.y14_c01010{bottom:657.420000px;}
.y25_c01010{bottom:675.570000px;}
.y13_c01010{bottom:691.770000px;}
.y12_c01010{bottom:723.870000px;}
.y11_c01010{bottom:757.620000px;}
.y10_c01010{bottom:791.670000px;}
.yf_c01010{bottom:823.170000px;}
.ye_c01010{bottom:857.220000px;}
.yd_c01010{bottom:889.920000px;}
.yc_c01010{bottom:924.120000px;}
.yb_c01010{bottom:957.420000px;}
.ya_c01010{bottom:991.620000px;}
.y9_c01010{bottom:1023.570000px;}
.y8_c01010{bottom:1057.770000px;}
.y7_c01010{bottom:1090.170000px;}
.y6_c01010{bottom:1122.870000px;}
.y5_c01010{bottom:1155.570000px;}
.y4_c01010{bottom:1188.570000px;}
.y3_c01010{bottom:1221.420000px;}
.y2_c01010{bottom:1254.420000px;}
.y1_c01010{bottom:1287.870000px;}
.h4_c01010{height:13.200073px;}
.h5_c01010{height:43.804688px;}
.h2_c01010{height:121.546875px;}
.h3_c01010{height:129.143555px;}
.h0_c01010{height:1383.450000px;}
.h1_c01010{height:1383.750000px;}
.w2_c01010{width:104.875500px;}
.w0_c01010{width:878.025000px;}
.w1_c01010{width:878.250000px;}
.x0_c01010{left:0.000000px;}
.x7_c01010{left:23.400000px;}
.x8_c01010{left:24.600000px;}
.x6_c01010{left:26.100000px;}
.x4_c01010{left:27.300000px;}
.x3_c01010{left:28.350000px;}
.x2_c01010{left:29.400000px;}
.x1_c01010{left:31.050000px;}
.x5_c01010{left:76.950000px;}
.xb_c01010{left:390.826721px;}
.x9_c01010{left:572.100000px;}
.xa_c01010{left:679.350000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls3_c01010{letter-spacing:-2.666667pt;}
.ls1_c01010{letter-spacing:0.000000pt;}
.ls2_c01010{letter-spacing:2.666667pt;}
.ls0_c01010{letter-spacing:24.000000pt;}
.ws1_c01010{word-spacing:-48.000000pt;}
.ws0_c01010{word-spacing:-20.565333pt;}
.ws2_c01010{word-spacing:-17.994667pt;}
.ws3_c01010{word-spacing:0.000000pt;}
._1a_c01010{margin-left:-72.704000pt;}
._30_c01010{margin-left:-62.122667pt;}
._31_c01010{margin-left:-30.304000pt;}
._22_c01010{margin-left:-28.949333pt;}
._35_c01010{margin-left:-22.208000pt;}
._34_c01010{margin-left:-20.778667pt;}
._2e_c01010{margin-left:-18.773333pt;}
._47_c01010{margin-left:-17.237333pt;}
._48_c01010{margin-left:-13.312000pt;}
._16_c01010{margin-left:-11.776000pt;}
._14_c01010{margin-left:-10.837333pt;}
._17_c01010{margin-left:-9.216000pt;}
._15_c01010{margin-left:-8.192000pt;}
._2b_c01010{margin-left:-7.082667pt;}
._2c_c01010{margin-left:-5.632000pt;}
._5_c01010{margin-left:-4.352000pt;}
._4_c01010{margin-left:-3.072000pt;}
._28_c01010{margin-left:-2.048000pt;}
._8_c01010{margin-left:-0.938667pt;}
._d_c01010{width:1.792000pt;}
._2_c01010{width:3.498667pt;}
._3_c01010{width:4.522667pt;}
._1_c01010{width:5.802667pt;}
._f_c01010{width:7.168000pt;}
._6_c01010{width:8.106667pt;}
._1b_c01010{width:9.130667pt;}
._0_c01010{width:10.752000pt;}
._3a_c01010{width:11.648000pt;}
._36_c01010{width:12.714667pt;}
._e_c01010{width:13.653333pt;}
._1c_c01010{width:14.592000pt;}
._1e_c01010{width:16.128000pt;}
._40_c01010{width:17.130667pt;}
._1f_c01010{width:18.517333pt;}
._1d_c01010{width:19.456000pt;}
._3c_c01010{width:22.357333pt;}
._21_c01010{width:23.264000pt;}
._9_c01010{width:24.490667pt;}
._b_c01010{width:25.514667pt;}
._7_c01010{width:26.709333pt;}
._c_c01010{width:27.733333pt;}
._a_c01010{width:28.928000pt;}
._19_c01010{width:30.549333pt;}
._13_c01010{width:32.000000pt;}
._10_c01010{width:32.938667pt;}
._38_c01010{width:34.389333pt;}
._26_c01010{width:35.328000pt;}
._20_c01010{width:36.714667pt;}
._12_c01010{width:38.656000pt;}
._39_c01010{width:39.594667pt;}
._27_c01010{width:41.386667pt;}
._43_c01010{width:42.496000pt;}
._23_c01010{width:43.605333pt;}
._3b_c01010{width:45.312000pt;}
._11_c01010{width:46.592000pt;}
._37_c01010{width:48.298667pt;}
._49_c01010{width:49.813333pt;}
._25_c01010{width:52.138667pt;}
._3f_c01010{width:54.229333pt;}
._3e_c01010{width:55.722667pt;}
._24_c01010{width:57.344000pt;}
._18_c01010{width:58.453333pt;}
._42_c01010{width:60.160000pt;}
._41_c01010{width:65.536000pt;}
._29_c01010{width:67.957333pt;}
._3d_c01010{width:69.461333pt;}
._4b_c01010{width:71.338667pt;}
._45_c01010{width:76.832000pt;}
._46_c01010{width:78.080000pt;}
._2d_c01010{width:91.733333pt;}
._32_c01010{width:103.338667pt;}
._33_c01010{width:177.408000pt;}
._2f_c01010{width:197.952000pt;}
._44_c01010{width:283.232000pt;}
._2a_c01010{width:284.928000pt;}
._4a_c01010{width:630.186667pt;}
.fs3_c01010{font-size:42.666667pt;}
.fs1_c01010{font-size:74.666667pt;}
.fs0_c01010{font-size:85.333333pt;}
.fs2_c01010{font-size:90.666667pt;}
.y0_c01010{bottom:0.000000pt;}
.y27_c01010{bottom:2.760000pt;}
.y26_c01010{bottom:6.425217pt;}
.y24_c01010{bottom:106.506667pt;}
.y23_c01010{bottom:135.306667pt;}
.y22_c01010{bottom:165.573333pt;}
.y21_c01010{bottom:195.840000pt;}
.y20_c01010{bottom:225.573333pt;}
.y1f_c01010{bottom:255.040000pt;}
.y1e_c01010{bottom:286.106667pt;}
.y1d_c01010{bottom:315.840000pt;}
.y1c_c01010{bottom:345.573333pt;}
.y1b_c01010{bottom:375.040000pt;}
.y1a_c01010{bottom:404.906667pt;}
.y19_c01010{bottom:435.306667pt;}
.y18_c01010{bottom:464.906667pt;}
.y17_c01010{bottom:494.640000pt;}
.y16_c01010{bottom:524.373333pt;}
.y15_c01010{bottom:554.640000pt;}
.y14_c01010{bottom:584.373333pt;}
.y25_c01010{bottom:600.506667pt;}
.y13_c01010{bottom:614.906667pt;}
.y12_c01010{bottom:643.440000pt;}
.y11_c01010{bottom:673.440000pt;}
.y10_c01010{bottom:703.706667pt;}
.yf_c01010{bottom:731.706667pt;}
.ye_c01010{bottom:761.973333pt;}
.yd_c01010{bottom:791.040000pt;}
.yc_c01010{bottom:821.440000pt;}
.yb_c01010{bottom:851.040000pt;}
.ya_c01010{bottom:881.440000pt;}
.y9_c01010{bottom:909.840000pt;}
.y8_c01010{bottom:940.240000pt;}
.y7_c01010{bottom:969.040000pt;}
.y6_c01010{bottom:998.106667pt;}
.y5_c01010{bottom:1027.173333pt;}
.y4_c01010{bottom:1056.506667pt;}
.y3_c01010{bottom:1085.706667pt;}
.y2_c01010{bottom:1115.040000pt;}
.y1_c01010{bottom:1144.773333pt;}
.h4_c01010{height:11.733399pt;}
.h5_c01010{height:38.937500pt;}
.h2_c01010{height:108.041667pt;}
.h3_c01010{height:114.794271pt;}
.h0_c01010{height:1229.733333pt;}
.h1_c01010{height:1230.000000pt;}
.w2_c01010{width:93.222667pt;}
.w0_c01010{width:780.466667pt;}
.w1_c01010{width:780.666667pt;}
.x0_c01010{left:0.000000pt;}
.x7_c01010{left:20.800000pt;}
.x8_c01010{left:21.866667pt;}
.x6_c01010{left:23.200000pt;}
.x4_c01010{left:24.266667pt;}
.x3_c01010{left:25.200000pt;}
.x2_c01010{left:26.133333pt;}
.x1_c01010{left:27.600000pt;}
.x5_c01010{left:68.400000pt;}
.xb_c01010{left:347.401530pt;}
.x9_c01010{left:508.533333pt;}
.xa_c01010{left:603.866667pt;}
}





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

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_8fa01d830d8355982b1bb2a0.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01011;src:url('chunks/assets/font_930e33ad85752989b3a064c3.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01011;src:url('chunks/assets/font_0ab21a99d40edaffc924383e.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01011;src:url('chunks/assets/font_c07b6e2bd6bd7ee08d3fe15c.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01011;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01011{font-family:ff5_c01011;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.ls2_c01011{letter-spacing:0.000000px;}
.ls3_c01011{letter-spacing:9.000000px;}
.ls1_c01011{letter-spacing:10.200000px;}
.ls0_c01011{letter-spacing:12.000000px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01011{word-spacing:-64.044000px;}
.ws0_c01011{word-spacing:-23.136000px;}
.ws1_c01011{word-spacing:-20.244000px;}
.ws5_c01011{word-spacing:0.000000px;}
.ws4_c01011{word-spacing:1.092000px;}
.ws3_c01011{word-spacing:6.300000px;}
._12_c01011{margin-left:-20.544000px;}
._43_c01011{margin-left:-17.700000px;}
._11_c01011{margin-left:-16.224000px;}
._2a_c01011{margin-left:-13.344000px;}
._b_c01011{margin-left:-11.712000px;}
._1_c01011{margin-left:-10.464000px;}
._0_c01011{margin-left:-8.448000px;}
._2b_c01011{margin-left:-6.432000px;}
._2_c01011{margin-left:-5.376000px;}
._25_c01011{margin-left:-4.320000px;}
._19_c01011{margin-left:-3.168000px;}
._a_c01011{margin-left:-1.536000px;}
._10_c01011{width:1.440000px;}
._6_c01011{width:2.688000px;}
._4_c01011{width:3.744000px;}
._5_c01011{width:4.896000px;}
._16_c01011{width:6.144000px;}
._8_c01011{width:7.584000px;}
._7_c01011{width:9.600000px;}
._23_c01011{width:10.848000px;}
._34_c01011{width:12.192000px;}
._14_c01011{width:13.344000px;}
._22_c01011{width:14.784000px;}
._2d_c01011{width:15.840000px;}
._3_c01011{width:17.856000px;}
._2f_c01011{width:19.008000px;}
._20_c01011{width:20.448000px;}
._9_c01011{width:21.600000px;}
._1f_c01011{width:25.248000px;}
._33_c01011{width:26.400000px;}
._2e_c01011{width:28.248000px;}
._21_c01011{width:30.528000px;}
._15_c01011{width:32.448000px;}
._40_c01011{width:33.696000px;}
._1d_c01011{width:34.848000px;}
._1a_c01011{width:36.288000px;}
._36_c01011{width:38.304000px;}
._1b_c01011{width:39.360000px;}
._27_c01011{width:40.992000px;}
._13_c01011{width:42.912000px;}
._f_c01011{width:44.928000px;}
._24_c01011{width:46.848000px;}
._31_c01011{width:48.000000px;}
._3e_c01011{width:49.152000px;}
._37_c01011{width:50.208000px;}
._32_c01011{width:51.360000px;}
._44_c01011{width:52.452000px;}
._1e_c01011{width:53.568000px;}
._1c_c01011{width:54.816000px;}
._29_c01011{width:56.160000px;}
._e_c01011{width:58.848000px;}
._35_c01011{width:61.728000px;}
._18_c01011{width:62.784000px;}
._3c_c01011{width:64.512000px;}
._3d_c01011{width:67.296000px;}
._3a_c01011{width:68.448000px;}
._3b_c01011{width:69.696000px;}
._28_c01011{width:73.344000px;}
._17_c01011{width:75.456000px;}
._d_c01011{width:77.280000px;}
._26_c01011{width:94.656000px;}
._3f_c01011{width:107.808000px;}
._2c_c01011{width:109.536000px;}
._39_c01011{width:123.264000px;}
._42_c01011{width:124.704000px;}
._c_c01011{width:142.176000px;}
._30_c01011{width:164.160000px;}
._41_c01011{width:181.344000px;}
._38_c01011{width:292.704000px;}
._45_c01011{width:306.000000px;}
.fc2_c01011{color:transparent;}
.fc1_c01011{color:rgb(128,128,128);}
.fc0_c01011{color:rgb(0,0,0);}
.fs4_c01011{font-size:48.000000px;}
.fs2_c01011{font-size:84.000000px;}
.fs0_c01011{font-size:96.000000px;}
.fs3_c01011{font-size:99.000000px;}
.fs1_c01011{font-size:102.000000px;}
.y0_c01011{bottom:0.000000px;}
.y27_c01011{bottom:3.105000px;}
.y26_c01011{bottom:7.228357px;}
.y25_c01011{bottom:95.580000px;}
.y24_c01011{bottom:123.480000px;}
.y23_c01011{bottom:157.980000px;}
.y22_c01011{bottom:191.730000px;}
.y21_c01011{bottom:226.080000px;}
.y20_c01011{bottom:259.830000px;}
.y1f_c01011{bottom:294.030000px;}
.y1e_c01011{bottom:327.480000px;}
.y1d_c01011{bottom:361.080000px;}
.y1c_c01011{bottom:395.280000px;}
.y1b_c01011{bottom:429.030000px;}
.y1a_c01011{bottom:463.830000px;}
.y19_c01011{bottom:497.430000px;}
.y18_c01011{bottom:530.880000px;}
.y17_c01011{bottom:564.630000px;}
.y16_c01011{bottom:598.380000px;}
.y15_c01011{bottom:631.530000px;}
.y14_c01011{bottom:663.480000px;}
.y13_c01011{bottom:698.730000px;}
.y12_c01011{bottom:732.480000px;}
.y11_c01011{bottom:766.230000px;}
.y10_c01011{bottom:799.530000px;}
.yf_c01011{bottom:832.830000px;}
.y1_c01011{bottom:843.480000px;}
.ye_c01011{bottom:866.130000px;}
.yd_c01011{bottom:899.430000px;}
.yc_c01011{bottom:933.180000px;}
.yb_c01011{bottom:965.880000px;}
.ya_c01011{bottom:999.030000px;}
.y9_c01011{bottom:1032.030000px;}
.y8_c01011{bottom:1065.930000px;}
.y7_c01011{bottom:1098.630000px;}
.y6_c01011{bottom:1131.930000px;}
.y5_c01011{bottom:1164.480000px;}
.y4_c01011{bottom:1197.480000px;}
.y3_c01011{bottom:1230.630000px;}
.y2_c01011{bottom:1262.880000px;}
.h3_c01011{height:13.200074px;}
.h4_c01011{height:43.804688px;}
.h2_c01011{height:121.546875px;}
.h0_c01011{height:1362.450000px;}
.h1_c01011{height:1362.750000px;}
.w2_c01011{width:104.875500px;}
.w1_c01011{width:849.750000px;}
.w0_c01011{width:849.975000px;}
.x0_c01011{left:0.000000px;}
.xa_c01011{left:111.000000px;}
.x8_c01011{left:124.500000px;}
.x6_c01011{left:146.700000px;}
.x1_c01011{left:148.800000px;}
.x5_c01011{left:153.150000px;}
.xd_c01011{left:160.200000px;}
.x2_c01011{left:228.600000px;}
.x4_c01011{left:230.400000px;}
.xb_c01011{left:231.450000px;}
.x3_c01011{left:232.500000px;}
.x9_c01011{left:277.200000px;}
.x7_c01011{left:279.450000px;}
.xc_c01011{left:281.100000px;}
.xf_c01011{left:376.801758px;}
.xe_c01011{left:757.950000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls2_c01011{letter-spacing:0.000000pt;}
.ls3_c01011{letter-spacing:8.000000pt;}
.ls1_c01011{letter-spacing:9.066667pt;}
.ls0_c01011{letter-spacing:10.666667pt;}
.ws2_c01011{word-spacing:-56.928000pt;}
.ws0_c01011{word-spacing:-20.565333pt;}
.ws1_c01011{word-spacing:-17.994667pt;}
.ws5_c01011{word-spacing:0.000000pt;}
.ws4_c01011{word-spacing:0.970667pt;}
.ws3_c01011{word-spacing:5.600000pt;}
._12_c01011{margin-left:-18.261333pt;}
._43_c01011{margin-left:-15.733333pt;}
._11_c01011{margin-left:-14.421333pt;}
._2a_c01011{margin-left:-11.861333pt;}
._b_c01011{margin-left:-10.410667pt;}
._1_c01011{margin-left:-9.301333pt;}
._0_c01011{margin-left:-7.509333pt;}
._2b_c01011{margin-left:-5.717333pt;}
._2_c01011{margin-left:-4.778667pt;}
._25_c01011{margin-left:-3.840000pt;}
._19_c01011{margin-left:-2.816000pt;}
._a_c01011{margin-left:-1.365333pt;}
._10_c01011{width:1.280000pt;}
._6_c01011{width:2.389333pt;}
._4_c01011{width:3.328000pt;}
._5_c01011{width:4.352000pt;}
._16_c01011{width:5.461333pt;}
._8_c01011{width:6.741333pt;}
._7_c01011{width:8.533333pt;}
._23_c01011{width:9.642667pt;}
._34_c01011{width:10.837333pt;}
._14_c01011{width:11.861333pt;}
._22_c01011{width:13.141333pt;}
._2d_c01011{width:14.080000pt;}
._3_c01011{width:15.872000pt;}
._2f_c01011{width:16.896000pt;}
._20_c01011{width:18.176000pt;}
._9_c01011{width:19.200000pt;}
._1f_c01011{width:22.442667pt;}
._33_c01011{width:23.466667pt;}
._2e_c01011{width:25.109333pt;}
._21_c01011{width:27.136000pt;}
._15_c01011{width:28.842667pt;}
._40_c01011{width:29.952000pt;}
._1d_c01011{width:30.976000pt;}
._1a_c01011{width:32.256000pt;}
._36_c01011{width:34.048000pt;}
._1b_c01011{width:34.986667pt;}
._27_c01011{width:36.437333pt;}
._13_c01011{width:38.144000pt;}
._f_c01011{width:39.936000pt;}
._24_c01011{width:41.642667pt;}
._31_c01011{width:42.666667pt;}
._3e_c01011{width:43.690667pt;}
._37_c01011{width:44.629333pt;}
._32_c01011{width:45.653333pt;}
._44_c01011{width:46.624000pt;}
._1e_c01011{width:47.616000pt;}
._1c_c01011{width:48.725333pt;}
._29_c01011{width:49.920000pt;}
._e_c01011{width:52.309333pt;}
._35_c01011{width:54.869333pt;}
._18_c01011{width:55.808000pt;}
._3c_c01011{width:57.344000pt;}
._3d_c01011{width:59.818667pt;}
._3a_c01011{width:60.842667pt;}
._3b_c01011{width:61.952000pt;}
._28_c01011{width:65.194667pt;}
._17_c01011{width:67.072000pt;}
._d_c01011{width:68.693333pt;}
._26_c01011{width:84.138667pt;}
._3f_c01011{width:95.829333pt;}
._2c_c01011{width:97.365333pt;}
._39_c01011{width:109.568000pt;}
._42_c01011{width:110.848000pt;}
._c_c01011{width:126.378667pt;}
._30_c01011{width:145.920000pt;}
._41_c01011{width:161.194667pt;}
._38_c01011{width:260.181333pt;}
._45_c01011{width:272.000000pt;}
.fs4_c01011{font-size:42.666667pt;}
.fs2_c01011{font-size:74.666667pt;}
.fs0_c01011{font-size:85.333333pt;}
.fs3_c01011{font-size:88.000000pt;}
.fs1_c01011{font-size:90.666667pt;}
.y0_c01011{bottom:0.000000pt;}
.y27_c01011{bottom:2.760000pt;}
.y26_c01011{bottom:6.425206pt;}
.y25_c01011{bottom:84.960000pt;}
.y24_c01011{bottom:109.760000pt;}
.y23_c01011{bottom:140.426667pt;}
.y22_c01011{bottom:170.426667pt;}
.y21_c01011{bottom:200.960000pt;}
.y20_c01011{bottom:230.960000pt;}
.y1f_c01011{bottom:261.360000pt;}
.y1e_c01011{bottom:291.093333pt;}
.y1d_c01011{bottom:320.960000pt;}
.y1c_c01011{bottom:351.360000pt;}
.y1b_c01011{bottom:381.360000pt;}
.y1a_c01011{bottom:412.293333pt;}
.y19_c01011{bottom:442.160000pt;}
.y18_c01011{bottom:471.893333pt;}
.y17_c01011{bottom:501.893333pt;}
.y16_c01011{bottom:531.893333pt;}
.y15_c01011{bottom:561.360000pt;}
.y14_c01011{bottom:589.760000pt;}
.y13_c01011{bottom:621.093333pt;}
.y12_c01011{bottom:651.093333pt;}
.y11_c01011{bottom:681.093333pt;}
.y10_c01011{bottom:710.693333pt;}
.yf_c01011{bottom:740.293333pt;}
.y1_c01011{bottom:749.760000pt;}
.ye_c01011{bottom:769.893333pt;}
.yd_c01011{bottom:799.493333pt;}
.yc_c01011{bottom:829.493333pt;}
.yb_c01011{bottom:858.560000pt;}
.ya_c01011{bottom:888.026667pt;}
.y9_c01011{bottom:917.360000pt;}
.y8_c01011{bottom:947.493333pt;}
.y7_c01011{bottom:976.560000pt;}
.y6_c01011{bottom:1006.160000pt;}
.y5_c01011{bottom:1035.093333pt;}
.y4_c01011{bottom:1064.426667pt;}
.y3_c01011{bottom:1093.893333pt;}
.y2_c01011{bottom:1122.560000pt;}
.h3_c01011{height:11.733399pt;}
.h4_c01011{height:38.937500pt;}
.h2_c01011{height:108.041667pt;}
.h0_c01011{height:1211.066667pt;}
.h1_c01011{height:1211.333333pt;}
.w2_c01011{width:93.222667pt;}
.w1_c01011{width:755.333333pt;}
.w0_c01011{width:755.533333pt;}
.x0_c01011{left:0.000000pt;}
.xa_c01011{left:98.666667pt;}
.x8_c01011{left:110.666667pt;}
.x6_c01011{left:130.400000pt;}
.x1_c01011{left:132.266667pt;}
.x5_c01011{left:136.133333pt;}
.xd_c01011{left:142.400000pt;}
.x2_c01011{left:203.200000pt;}
.x4_c01011{left:204.800000pt;}
.xb_c01011{left:205.733333pt;}
.x3_c01011{left:206.666667pt;}
.x9_c01011{left:246.400000pt;}
.x7_c01011{left:248.400000pt;}
.xc_c01011{left:249.866667pt;}
.xf_c01011{left:334.934896pt;}
.xe_c01011{left:673.733333pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_592b2765ca719d7c893ce357.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01012;src:url('chunks/assets/font_fbf5642771bf22b7ef8bfc7d.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_2176ddf1899873295bfb2007.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01012;src:url('chunks/assets/font_d8f4deecb17b9b23447be34f.woff2')format("woff");}.ff4_c01012{font-family:ff4_c01012;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01012;src:url('chunks/assets/font_2d5b6eedc429849f612fb97b.woff2')format("woff");}.ff5_c01012{font-family:ff5_c01012;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01012;src:url('chunks/assets/font_b95c7241ee2ccbce3a5b1dd9.woff2')format("woff");}.ff6_c01012{font-family:ff6_c01012;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01012;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c01012{font-family:ff7_c01012;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01012{vertical-align:-130.800000px;}
.v0_c01012{vertical-align:0.000000px;}
.v1_c01012{vertical-align:16.200000px;}
.ls8_c01012{letter-spacing:0.000000px;}
.ls9_c01012{letter-spacing:3.000000px;}
.ls4_c01012{letter-spacing:6.000000px;}
.ls2_c01012{letter-spacing:6.264000px;}
.ls0_c01012{letter-spacing:7.800000px;}
.ls3_c01012{letter-spacing:9.600000px;}
.ls7_c01012{letter-spacing:10.200000px;}
.lsa_c01012{letter-spacing:15.000000px;}
.ls5_c01012{letter-spacing:23.202000px;}
.ls1_c01012{letter-spacing:25.464000px;}
.ls6_c01012{letter-spacing:454.200000px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01012{word-spacing:-54.000000px;}
.ws2_c01012{word-spacing:-23.136000px;}
.ws1_c01012{word-spacing:-20.244000px;}
.ws3_c01012{word-spacing:-18.798000px;}
.ws4_c01012{word-spacing:-15.038400px;}
.ws5_c01012{word-spacing:0.000000px;}
._44_c01012{margin-left:-89.793600px;}
._47_c01012{margin-left:-88.512000px;}
._1d_c01012{margin-left:-77.664000px;}
._24_c01012{margin-left:-41.280000px;}
._40_c01012{margin-left:-35.904000px;}
._49_c01012{margin-left:-33.792000px;}
._43_c01012{margin-left:-32.640000px;}
._54_c01012{margin-left:-31.200000px;}
._3c_c01012{margin-left:-28.956000px;}
._4c_c01012{margin-left:-27.684000px;}
._12_c01012{margin-left:-26.640000px;}
._15_c01012{margin-left:-23.232000px;}
._4f_c01012{margin-left:-22.167000px;}
._3e_c01012{margin-left:-20.940000px;}
._3b_c01012{margin-left:-19.428000px;}
._38_c01012{margin-left:-17.568000px;}
._45_c01012{margin-left:-16.200000px;}
._19_c01012{margin-left:-13.824000px;}
._21_c01012{margin-left:-11.808000px;}
._1f_c01012{margin-left:-9.696000px;}
._1b_c01012{margin-left:-7.584000px;}
._29_c01012{margin-left:-6.096000px;}
._16_c01012{margin-left:-4.800000px;}
._17_c01012{margin-left:-3.648000px;}
._4_c01012{margin-left:-2.304000px;}
._33_c01012{margin-left:-1.248000px;}
._3_c01012{width:1.776000px;}
._2_c01012{width:3.360000px;}
._0_c01012{width:5.280000px;}
._1_c01012{width:7.200000px;}
._7_c01012{width:8.928000px;}
._9_c01012{width:10.176000px;}
._8_c01012{width:11.712000px;}
._b_c01012{width:13.344000px;}
._2a_c01012{width:14.448000px;}
._6_c01012{width:16.896000px;}
._a_c01012{width:18.624000px;}
._28_c01012{width:19.776000px;}
._e_c01012{width:21.168000px;}
._f_c01012{width:25.968000px;}
._2b_c01012{width:27.168000px;}
._13_c01012{width:28.464000px;}
._23_c01012{width:29.568000px;}
._20_c01012{width:32.064000px;}
._3d_c01012{width:33.081000px;}
._c_c01012{width:34.656000px;}
._2d_c01012{width:35.808000px;}
._2c_c01012{width:37.584000px;}
._10_c01012{width:39.600000px;}
._30_c01012{width:41.340000px;}
._11_c01012{width:43.296000px;}
._5_c01012{width:45.024000px;}
._2e_c01012{width:47.808000px;}
._34_c01012{width:49.344000px;}
._35_c01012{width:54.240000px;}
._36_c01012{width:56.448000px;}
._4d_c01012{width:59.316000px;}
._1c_c01012{width:62.016000px;}
._d_c01012{width:63.312000px;}
._3a_c01012{width:65.736000px;}
._37_c01012{width:67.872000px;}
._2f_c01012{width:69.552000px;}
._27_c01012{width:71.040000px;}
._39_c01012{width:73.776000px;}
._26_c01012{width:75.168000px;}
._42_c01012{width:79.392000px;}
._32_c01012{width:81.216000px;}
._4b_c01012{width:90.240000px;}
._1a_c01012{width:92.640000px;}
._53_c01012{width:120.111000px;}
._3f_c01012{width:135.552000px;}
._22_c01012{width:140.352000px;}
._51_c01012{width:142.470000px;}
._31_c01012{width:164.304000px;}
._18_c01012{width:174.240000px;}
._25_c01012{width:183.552000px;}
._1e_c01012{width:217.728000px;}
._55_c01012{width:221.952000px;}
._4a_c01012{width:306.336000px;}
._41_c01012{width:320.352000px;}
._50_c01012{width:323.004000px;}
._48_c01012{width:349.728000px;}
._52_c01012{width:431.484000px;}
._46_c01012{width:511.968000px;}
._4e_c01012{width:555.084000px;}
._14_c01012{width:565.824000px;}
._56_c01012{width:616.416000px;}
.fc2_c01012{color:transparent;}
.fc1_c01012{color:rgb(128,128,128);}
.fc0_c01012{color:rgb(0,0,0);}
.fs8_c01012{font-size:30.000000px;}
.fs9_c01012{font-size:48.000000px;}
.fs7_c01012{font-size:60.000000px;}
.fs6_c01012{font-size:62.400000px;}
.fs5_c01012{font-size:78.000000px;}
.fs2_c01012{font-size:84.000000px;}
.fs3_c01012{font-size:87.000000px;}
.fs0_c01012{font-size:96.000000px;}
.fs4_c01012{font-size:99.000000px;}
.fs1_c01012{font-size:102.000000px;}
.y0_c01012{bottom:0.000000px;}
.y1f_c01012{bottom:3.105000px;}
.y1e_c01012{bottom:7.228369px;}
.y1d_c01012{bottom:91.170000px;}
.y1c_c01012{bottom:298.320000px;}
.y1b_c01012{bottom:379.620000px;}
.y1a_c01012{bottom:399.870000px;}
.y19_c01012{bottom:409.770000px;}
.y18_c01012{bottom:434.070000px;}
.y17_c01012{bottom:468.720000px;}
.y16_c01012{bottom:563.520000px;}
.y15_c01012{bottom:600.120000px;}
.y14_c01012{bottom:635.070000px;}
.y13_c01012{bottom:667.470000px;}
.y12_c01012{bottom:700.920000px;}
.y11_c01012{bottom:735.120000px;}
.y10_c01012{bottom:767.370000px;}
.yf_c01012{bottom:801.570000px;}
.ye_c01012{bottom:834.270000px;}
.yd_c01012{bottom:867.420000px;}
.yc_c01012{bottom:900.720000px;}
.yb_c01012{bottom:933.870000px;}
.ya_c01012{bottom:967.320000px;}
.y9_c01012{bottom:1000.920000px;}
.y8_c01012{bottom:1033.470000px;}
.y7_c01012{bottom:1066.470000px;}
.y6_c01012{bottom:1098.870000px;}
.y5_c01012{bottom:1131.570000px;}
.y4_c01012{bottom:1166.670000px;}
.y3_c01012{bottom:1198.470000px;}
.y2_c01012{bottom:1231.920000px;}
.y1_c01012{bottom:1264.620000px;}
.h8_c01012{height:13.200073px;}
.h7_c01012{height:37.983398px;}
.h9_c01012{height:43.804688px;}
.h5_c01012{height:75.966797px;}
.h6_c01012{height:110.151855px;}
.h2_c01012{height:121.546875px;}
.h3_c01012{height:125.345215px;}
.h4_c01012{height:137.746875px;}
.h0_c01012{height:1356.450000px;}
.h1_c01012{height:1356.750000px;}
.w2_c01012{width:104.875500px;}
.w0_c01012{width:860.775000px;}
.w1_c01012{width:861.000000px;}
.x0_c01012{left:0.000000px;}
.x2_c01012{left:22.950000px;}
.x1_c01012{left:24.600000px;}
.x5_c01012{left:25.650000px;}
.x7_c01012{left:27.300000px;}
.x3_c01012{left:71.550000px;}
.x4_c01012{left:72.600000px;}
.x6_c01012{left:171.900000px;}
.x8_c01012{left:306.750000px;}
.xd_c01012{left:309.150000px;}
.xb_c01012{left:328.800000px;}
.xe_c01012{left:382.201721px;}
.xc_c01012{left:414.000000px;}
.xa_c01012{left:486.750000px;}
.x9_c01012{left:502.500000px;}
@media print{
.v2_c01012{vertical-align:-116.266667pt;}
.v0_c01012{vertical-align:0.000000pt;}
.v1_c01012{vertical-align:14.400000pt;}
.ls8_c01012{letter-spacing:0.000000pt;}
.ls9_c01012{letter-spacing:2.666667pt;}
.ls4_c01012{letter-spacing:5.333333pt;}
.ls2_c01012{letter-spacing:5.568000pt;}
.ls0_c01012{letter-spacing:6.933333pt;}
.ls3_c01012{letter-spacing:8.533333pt;}
.ls7_c01012{letter-spacing:9.066667pt;}
.lsa_c01012{letter-spacing:13.333333pt;}
.ls5_c01012{letter-spacing:20.624000pt;}
.ls1_c01012{letter-spacing:22.634667pt;}
.ls6_c01012{letter-spacing:403.733333pt;}
.ws0_c01012{word-spacing:-48.000000pt;}
.ws2_c01012{word-spacing:-20.565333pt;}
.ws1_c01012{word-spacing:-17.994667pt;}
.ws3_c01012{word-spacing:-16.709333pt;}
.ws4_c01012{word-spacing:-13.367467pt;}
.ws5_c01012{word-spacing:0.000000pt;}
._44_c01012{margin-left:-79.816533pt;}
._47_c01012{margin-left:-78.677333pt;}
._1d_c01012{margin-left:-69.034667pt;}
._24_c01012{margin-left:-36.693333pt;}
._40_c01012{margin-left:-31.914667pt;}
._49_c01012{margin-left:-30.037333pt;}
._43_c01012{margin-left:-29.013333pt;}
._54_c01012{margin-left:-27.733333pt;}
._3c_c01012{margin-left:-25.738667pt;}
._4c_c01012{margin-left:-24.608000pt;}
._12_c01012{margin-left:-23.680000pt;}
._15_c01012{margin-left:-20.650667pt;}
._4f_c01012{margin-left:-19.704000pt;}
._3e_c01012{margin-left:-18.613333pt;}
._3b_c01012{margin-left:-17.269333pt;}
._38_c01012{margin-left:-15.616000pt;}
._45_c01012{margin-left:-14.400000pt;}
._19_c01012{margin-left:-12.288000pt;}
._21_c01012{margin-left:-10.496000pt;}
._1f_c01012{margin-left:-8.618667pt;}
._1b_c01012{margin-left:-6.741333pt;}
._29_c01012{margin-left:-5.418667pt;}
._16_c01012{margin-left:-4.266667pt;}
._17_c01012{margin-left:-3.242667pt;}
._4_c01012{margin-left:-2.048000pt;}
._33_c01012{margin-left:-1.109333pt;}
._3_c01012{width:1.578667pt;}
._2_c01012{width:2.986667pt;}
._0_c01012{width:4.693333pt;}
._1_c01012{width:6.400000pt;}
._7_c01012{width:7.936000pt;}
._9_c01012{width:9.045333pt;}
._8_c01012{width:10.410667pt;}
._b_c01012{width:11.861333pt;}
._2a_c01012{width:12.842667pt;}
._6_c01012{width:15.018667pt;}
._a_c01012{width:16.554667pt;}
._28_c01012{width:17.578667pt;}
._e_c01012{width:18.816000pt;}
._f_c01012{width:23.082667pt;}
._2b_c01012{width:24.149333pt;}
._13_c01012{width:25.301333pt;}
._23_c01012{width:26.282667pt;}
._20_c01012{width:28.501333pt;}
._3d_c01012{width:29.405333pt;}
._c_c01012{width:30.805333pt;}
._2d_c01012{width:31.829333pt;}
._2c_c01012{width:33.408000pt;}
._10_c01012{width:35.200000pt;}
._30_c01012{width:36.746667pt;}
._11_c01012{width:38.485333pt;}
._5_c01012{width:40.021333pt;}
._2e_c01012{width:42.496000pt;}
._34_c01012{width:43.861333pt;}
._35_c01012{width:48.213333pt;}
._36_c01012{width:50.176000pt;}
._4d_c01012{width:52.725333pt;}
._1c_c01012{width:55.125333pt;}
._d_c01012{width:56.277333pt;}
._3a_c01012{width:58.432000pt;}
._37_c01012{width:60.330667pt;}
._2f_c01012{width:61.824000pt;}
._27_c01012{width:63.146667pt;}
._39_c01012{width:65.578667pt;}
._26_c01012{width:66.816000pt;}
._42_c01012{width:70.570667pt;}
._32_c01012{width:72.192000pt;}
._4b_c01012{width:80.213333pt;}
._1a_c01012{width:82.346667pt;}
._53_c01012{width:106.765333pt;}
._3f_c01012{width:120.490667pt;}
._22_c01012{width:124.757333pt;}
._51_c01012{width:126.640000pt;}
._31_c01012{width:146.048000pt;}
._18_c01012{width:154.880000pt;}
._25_c01012{width:163.157333pt;}
._1e_c01012{width:193.536000pt;}
._55_c01012{width:197.290667pt;}
._4a_c01012{width:272.298667pt;}
._41_c01012{width:284.757333pt;}
._50_c01012{width:287.114667pt;}
._48_c01012{width:310.869333pt;}
._52_c01012{width:383.541333pt;}
._46_c01012{width:455.082667pt;}
._4e_c01012{width:493.408000pt;}
._14_c01012{width:502.954667pt;}
._56_c01012{width:547.925333pt;}
.fs8_c01012{font-size:26.666667pt;}
.fs9_c01012{font-size:42.666667pt;}
.fs7_c01012{font-size:53.333333pt;}
.fs6_c01012{font-size:55.466667pt;}
.fs5_c01012{font-size:69.333333pt;}
.fs2_c01012{font-size:74.666667pt;}
.fs3_c01012{font-size:77.333333pt;}
.fs0_c01012{font-size:85.333333pt;}
.fs4_c01012{font-size:88.000000pt;}
.fs1_c01012{font-size:90.666667pt;}
.y0_c01012{bottom:0.000000pt;}
.y1f_c01012{bottom:2.760000pt;}
.y1e_c01012{bottom:6.425217pt;}
.y1d_c01012{bottom:81.040000pt;}
.y1c_c01012{bottom:265.173333pt;}
.y1b_c01012{bottom:337.440000pt;}
.y1a_c01012{bottom:355.440000pt;}
.y19_c01012{bottom:364.240000pt;}
.y18_c01012{bottom:385.840000pt;}
.y17_c01012{bottom:416.640000pt;}
.y16_c01012{bottom:500.906667pt;}
.y15_c01012{bottom:533.440000pt;}
.y14_c01012{bottom:564.506667pt;}
.y13_c01012{bottom:593.306667pt;}
.y12_c01012{bottom:623.040000pt;}
.y11_c01012{bottom:653.440000pt;}
.y10_c01012{bottom:682.106667pt;}
.yf_c01012{bottom:712.506667pt;}
.ye_c01012{bottom:741.573333pt;}
.yd_c01012{bottom:771.040000pt;}
.yc_c01012{bottom:800.640000pt;}
.yb_c01012{bottom:830.106667pt;}
.ya_c01012{bottom:859.840000pt;}
.y9_c01012{bottom:889.706667pt;}
.y8_c01012{bottom:918.640000pt;}
.y7_c01012{bottom:947.973333pt;}
.y6_c01012{bottom:976.773333pt;}
.y5_c01012{bottom:1005.840000pt;}
.y4_c01012{bottom:1037.040000pt;}
.y3_c01012{bottom:1065.306667pt;}
.y2_c01012{bottom:1095.040000pt;}
.y1_c01012{bottom:1124.106667pt;}
.h8_c01012{height:11.733399pt;}
.h7_c01012{height:33.763021pt;}
.h9_c01012{height:38.937500pt;}
.h5_c01012{height:67.526042pt;}
.h6_c01012{height:97.912760pt;}
.h2_c01012{height:108.041667pt;}
.h3_c01012{height:111.417969pt;}
.h4_c01012{height:122.441667pt;}
.h0_c01012{height:1205.733333pt;}
.h1_c01012{height:1206.000000pt;}
.w2_c01012{width:93.222667pt;}
.w0_c01012{width:765.133333pt;}
.w1_c01012{width:765.333333pt;}
.x0_c01012{left:0.000000pt;}
.x2_c01012{left:20.400000pt;}
.x1_c01012{left:21.866667pt;}
.x5_c01012{left:22.800000pt;}
.x7_c01012{left:24.266667pt;}
.x3_c01012{left:63.600000pt;}
.x4_c01012{left:64.533333pt;}
.x6_c01012{left:152.800000pt;}
.x8_c01012{left:272.666667pt;}
.xd_c01012{left:274.800000pt;}
.xb_c01012{left:292.266667pt;}
.xe_c01012{left:339.734863pt;}
.xc_c01012{left:368.000000pt;}
.xa_c01012{left:432.666667pt;}
.x9_c01012{left:446.666667pt;}
}





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

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_bbc7c8ded27607f246cc172e.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01013;src:url('chunks/assets/font_d261e7c5d8c6ada89995b5d3.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01013;src:url('chunks/assets/font_78bd7a7e3302e1bbf608f090.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01013;src:url('chunks/assets/font_f960777d2d10e167aaae7c48.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01013;src:url('chunks/assets/font_3e1b3fbea065980e613b5261.woff2')format("woff");}.ff5_c01013{font-family:ff5_c01013;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01013;src:url('chunks/assets/font_d09f1d91058b7a668218ba33.woff2')format("woff");}.ff6_c01013{font-family:ff6_c01013;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01013;src:url('chunks/assets/font_8eaeb43e72ebd15a99067fc2.woff2')format("woff");}.ff7_c01013{font-family:ff7_c01013;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01013;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c01013{font-family:ff8_c01013;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01013{vertical-align:-3.000000px;}
.v0_c01013{vertical-align:0.000000px;}
.v2_c01013{vertical-align:33.000000px;}
.v3_c01013{vertical-align:46.200000px;}
.ls7_c01013{letter-spacing:-3.000000px;}
.ls3_c01013{letter-spacing:0.000000px;}
.ls5_c01013{letter-spacing:9.000000px;}
.ls4_c01013{letter-spacing:12.000000px;}
.ls0_c01013{letter-spacing:12.489600px;}
.ls6_c01013{letter-spacing:15.000000px;}
.ls2_c01013{letter-spacing:144.171000px;}
.ls1_c01013{letter-spacing:146.688000px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01013{word-spacing:-27.763200px;}
.ws6_c01013{word-spacing:-26.460000px;}
.ws3_c01013{word-spacing:-20.244000px;}
.ws4_c01013{word-spacing:-12.114000px;}
.ws7_c01013{word-spacing:0.000000px;}
.ws0_c01013{word-spacing:8.640000px;}
.ws2_c01013{word-spacing:9.907200px;}
.ws5_c01013{word-spacing:181.608000px;}
._30_c01013{margin-left:-100.910400px;}
._3c_c01013{margin-left:-70.512000px;}
._2f_c01013{margin-left:-57.000000px;}
._44_c01013{margin-left:-53.244000px;}
._3f_c01013{margin-left:-48.747600px;}
._40_c01013{margin-left:-39.149400px;}
._42_c01013{margin-left:-35.583000px;}
._2c_c01013{margin-left:-32.946000px;}
._3d_c01013{margin-left:-31.356000px;}
._58_c01013{margin-left:-30.240000px;}
._41_c01013{margin-left:-29.184600px;}
._32_c01013{margin-left:-27.246000px;}
._27_c01013{margin-left:-25.308000px;}
._33_c01013{margin-left:-23.274000px;}
._7_c01013{margin-left:-21.926400px;}
._29_c01013{margin-left:-20.241600px;}
._35_c01013{margin-left:-19.110000px;}
._a_c01013{margin-left:-18.000000px;}
._34_c01013{margin-left:-16.848000px;}
._1f_c01013{margin-left:-15.782400px;}
._1d_c01013{margin-left:-13.968000px;}
._1c_c01013{margin-left:-12.240000px;}
._12_c01013{margin-left:-10.569600px;}
._39_c01013{margin-left:-8.660400px;}
._15_c01013{margin-left:-7.200000px;}
._13_c01013{margin-left:-5.760000px;}
._14_c01013{margin-left:-4.320000px;}
._e_c01013{margin-left:-2.880000px;}
._10_c01013{margin-left:-1.440000px;}
._c_c01013{width:1.440000px;}
._d_c01013{width:2.736000px;}
._4_c01013{width:4.464000px;}
._55_c01013{width:5.568000px;}
._1b_c01013{width:6.624000px;}
._53_c01013{width:7.638000px;}
._22_c01013{width:8.640000px;}
._6_c01013{width:10.080000px;}
._5_c01013{width:11.520000px;}
._4c_c01013{width:13.200000px;}
._5e_c01013{width:14.283600px;}
._9_c01013{width:15.374400px;}
._8_c01013{width:16.819200px;}
._57_c01013{width:19.070400px;}
._2e_c01013{width:20.178000px;}
._5f_c01013{width:21.216000px;}
._45_c01013{width:22.473600px;}
._28_c01013{width:23.562000px;}
._61_c01013{width:25.326000px;}
._36_c01013{width:26.442000px;}
._4d_c01013{width:27.458400px;}
._31_c01013{width:28.842000px;}
._62_c01013{width:30.000000px;}
._25_c01013{width:31.152000px;}
._56_c01013{width:32.208000px;}
._11_c01013{width:33.408000px;}
._5a_c01013{width:35.232000px;}
._54_c01013{width:36.524400px;}
._3a_c01013{width:37.838400px;}
._37_c01013{width:39.774000px;}
._f_c01013{width:41.184000px;}
._0_c01013{width:42.393600px;}
._2_c01013{width:43.660800px;}
._5c_c01013{width:45.648000px;}
._1a_c01013{width:47.952000px;}
._5d_c01013{width:49.242000px;}
._38_c01013{width:50.274000px;}
._1_c01013{width:51.609600px;}
._5b_c01013{width:54.228000px;}
._3_c01013{width:55.310400px;}
._59_c01013{width:57.408000px;}
._4e_c01013{width:58.502400px;}
._1e_c01013{width:59.961600px;}
._17_c01013{width:62.928000px;}
._52_c01013{width:64.368000px;}
._18_c01013{width:65.952000px;}
._60_c01013{width:69.376800px;}
._20_c01013{width:71.697600px;}
._63_c01013{width:73.250400px;}
._b_c01013{width:76.224000px;}
._51_c01013{width:77.958000px;}
._24_c01013{width:81.120000px;}
._50_c01013{width:86.913600px;}
._19_c01013{width:90.288000px;}
._21_c01013{width:92.304000px;}
._43_c01013{width:93.351000px;}
._46_c01013{width:98.094000px;}
._16_c01013{width:111.168000px;}
._2a_c01013{width:129.722400px;}
._2d_c01013{width:138.852000px;}
._48_c01013{width:156.300000px;}
._2b_c01013{width:162.772800px;}
._47_c01013{width:173.496000px;}
._4a_c01013{width:191.874000px;}
._3e_c01013{width:201.006000px;}
._49_c01013{width:227.580000px;}
._3b_c01013{width:241.166400px;}
._26_c01013{width:307.032000px;}
._23_c01013{width:322.332000px;}
._4f_c01013{width:422.876400px;}
._4b_c01013{width:838.932000px;}
.fc2_c01013{color:transparent;}
.fc1_c01013{color:rgb(128,128,128);}
.fc0_c01013{color:rgb(0,0,0);}
.fs8_c01013{font-size:24.000000px;}
.fsa_c01013{font-size:30.000000px;}
.fsc_c01013{font-size:48.000000px;}
.fsb_c01013{font-size:60.000000px;}
.fs6_c01013{font-size:78.000000px;}
.fs2_c01013{font-size:84.000000px;}
.fs7_c01013{font-size:87.000000px;}
.fs5_c01013{font-size:91.200000px;}
.fs3_c01013{font-size:96.000000px;}
.fs9_c01013{font-size:102.000000px;}
.fs4_c01013{font-size:114.000000px;}
.fs0_c01013{font-size:115.200000px;}
.fs1_c01013{font-size:144.000000px;}
.y0_c01013{bottom:0.000000px;}
.y24_c01013{bottom:3.105000px;}
.y23_c01013{bottom:7.228369px;}
.y22_c01013{bottom:126.120000px;}
.y21_c01013{bottom:160.320000px;}
.y20_c01013{bottom:194.370000px;}
.y1f_c01013{bottom:228.420000px;}
.y1e_c01013{bottom:262.470000px;}
.y1d_c01013{bottom:296.370000px;}
.y1c_c01013{bottom:329.970000px;}
.y1b_c01013{bottom:363.420000px;}
.y1a_c01013{bottom:397.620000px;}
.y19_c01013{bottom:431.370000px;}
.y18_c01013{bottom:464.970000px;}
.y17_c01013{bottom:498.720000px;}
.y16_c01013{bottom:532.470000px;}
.y15_c01013{bottom:565.620000px;}
.y14_c01013{bottom:598.770000px;}
.y13_c01013{bottom:632.070000px;}
.y12_c01013{bottom:665.820000px;}
.y11_c01013{bottom:699.870000px;}
.y10_c01013{bottom:732.720000px;}
.yf_c01013{bottom:766.770000px;}
.ye_c01013{bottom:799.470000px;}
.yd_c01013{bottom:832.920000px;}
.yc_c01013{bottom:865.920000px;}
.yb_c01013{bottom:890.220000px;}
.ya_c01013{bottom:935.520000px;}
.y7_c01013{bottom:972.270000px;}
.y6_c01013{bottom:1006.470000px;}
.y9_c01013{bottom:1007.670000px;}
.y8_c01013{bottom:1032.720000px;}
.y5_c01013{bottom:1058.670000px;}
.y4_c01013{bottom:1107.720000px;}
.y3_c01013{bottom:1158.870000px;}
.y2_c01013{bottom:1208.970000px;}
.y1_c01013{bottom:1259.220000px;}
.h8_c01013{height:13.200073px;}
.h9_c01013{height:43.804688px;}
.h5_c01013{height:98.756836px;}
.h4_c01013{height:120.067383px;}
.h3_c01013{height:121.546875px;}
.h6_c01013{height:126.143555px;}
.h7_c01013{height:143.151855px;}
.h2_c01013{height:182.320312px;}
.h1_c01013{height:1359.000000px;}
.h0_c01013{height:1359.150000px;}
.w2_c01013{width:104.875500px;}
.w1_c01013{width:848.250000px;}
.w0_c01013{width:848.325000px;}
.x0_c01013{left:0.000000px;}
.xc_c01013{left:139.500000px;}
.xb_c01013{left:160.050000px;}
.x9_c01013{left:195.450000px;}
.x1_c01013{left:232.650000px;}
.x2_c01013{left:233.850000px;}
.xd_c01013{left:236.700000px;}
.xe_c01013{left:237.900000px;}
.xf_c01013{left:239.400000px;}
.x5_c01013{left:241.050000px;}
.x10_c01013{left:242.100000px;}
.x11_c01013{left:243.300000px;}
.x4_c01013{left:254.250000px;}
.x6_c01013{left:294.000000px;}
.xa_c01013{left:350.700000px;}
.x12_c01013{left:375.976730px;}
.x8_c01013{left:402.000000px;}
.x3_c01013{left:492.150000px;}
.x7_c01013{left:517.500000px;}
@media print{
.v1_c01013{vertical-align:-2.666667pt;}
.v0_c01013{vertical-align:0.000000pt;}
.v2_c01013{vertical-align:29.333333pt;}
.v3_c01013{vertical-align:41.066667pt;}
.ls7_c01013{letter-spacing:-2.666667pt;}
.ls3_c01013{letter-spacing:0.000000pt;}
.ls5_c01013{letter-spacing:8.000000pt;}
.ls4_c01013{letter-spacing:10.666667pt;}
.ls0_c01013{letter-spacing:11.101867pt;}
.ls6_c01013{letter-spacing:13.333333pt;}
.ls2_c01013{letter-spacing:128.152000pt;}
.ls1_c01013{letter-spacing:130.389333pt;}
.ws1_c01013{word-spacing:-24.678400pt;}
.ws6_c01013{word-spacing:-23.520000pt;}
.ws3_c01013{word-spacing:-17.994667pt;}
.ws4_c01013{word-spacing:-10.768000pt;}
.ws7_c01013{word-spacing:0.000000pt;}
.ws0_c01013{word-spacing:7.680000pt;}
.ws2_c01013{word-spacing:8.806400pt;}
.ws5_c01013{word-spacing:161.429333pt;}
._30_c01013{margin-left:-89.698133pt;}
._3c_c01013{margin-left:-62.677333pt;}
._2f_c01013{margin-left:-50.666667pt;}
._44_c01013{margin-left:-47.328000pt;}
._3f_c01013{margin-left:-43.331200pt;}
._40_c01013{margin-left:-34.799467pt;}
._42_c01013{margin-left:-31.629333pt;}
._2c_c01013{margin-left:-29.285333pt;}
._3d_c01013{margin-left:-27.872000pt;}
._58_c01013{margin-left:-26.880000pt;}
._41_c01013{margin-left:-25.941867pt;}
._32_c01013{margin-left:-24.218667pt;}
._27_c01013{margin-left:-22.496000pt;}
._33_c01013{margin-left:-20.688000pt;}
._7_c01013{margin-left:-19.490133pt;}
._29_c01013{margin-left:-17.992533pt;}
._35_c01013{margin-left:-16.986667pt;}
._a_c01013{margin-left:-16.000000pt;}
._34_c01013{margin-left:-14.976000pt;}
._1f_c01013{margin-left:-14.028800pt;}
._1d_c01013{margin-left:-12.416000pt;}
._1c_c01013{margin-left:-10.880000pt;}
._12_c01013{margin-left:-9.395200pt;}
._39_c01013{margin-left:-7.698133pt;}
._15_c01013{margin-left:-6.400000pt;}
._13_c01013{margin-left:-5.120000pt;}
._14_c01013{margin-left:-3.840000pt;}
._e_c01013{margin-left:-2.560000pt;}
._10_c01013{margin-left:-1.280000pt;}
._c_c01013{width:1.280000pt;}
._d_c01013{width:2.432000pt;}
._4_c01013{width:3.968000pt;}
._55_c01013{width:4.949333pt;}
._1b_c01013{width:5.888000pt;}
._53_c01013{width:6.789333pt;}
._22_c01013{width:7.680000pt;}
._6_c01013{width:8.960000pt;}
._5_c01013{width:10.240000pt;}
._4c_c01013{width:11.733333pt;}
._5e_c01013{width:12.696533pt;}
._9_c01013{width:13.666133pt;}
._8_c01013{width:14.950400pt;}
._57_c01013{width:16.951467pt;}
._2e_c01013{width:17.936000pt;}
._5f_c01013{width:18.858667pt;}
._45_c01013{width:19.976533pt;}
._28_c01013{width:20.944000pt;}
._61_c01013{width:22.512000pt;}
._36_c01013{width:23.504000pt;}
._4d_c01013{width:24.407467pt;}
._31_c01013{width:25.637333pt;}
._62_c01013{width:26.666667pt;}
._25_c01013{width:27.690667pt;}
._56_c01013{width:28.629333pt;}
._11_c01013{width:29.696000pt;}
._5a_c01013{width:31.317333pt;}
._54_c01013{width:32.466133pt;}
._3a_c01013{width:33.634133pt;}
._37_c01013{width:35.354667pt;}
._f_c01013{width:36.608000pt;}
._0_c01013{width:37.683200pt;}
._2_c01013{width:38.809600pt;}
._5c_c01013{width:40.576000pt;}
._1a_c01013{width:42.624000pt;}
._5d_c01013{width:43.770667pt;}
._38_c01013{width:44.688000pt;}
._1_c01013{width:45.875200pt;}
._5b_c01013{width:48.202667pt;}
._3_c01013{width:49.164800pt;}
._59_c01013{width:51.029333pt;}
._4e_c01013{width:52.002133pt;}
._1e_c01013{width:53.299200pt;}
._17_c01013{width:55.936000pt;}
._52_c01013{width:57.216000pt;}
._18_c01013{width:58.624000pt;}
._60_c01013{width:61.668267pt;}
._20_c01013{width:63.731200pt;}
._63_c01013{width:65.111467pt;}
._b_c01013{width:67.754667pt;}
._51_c01013{width:69.296000pt;}
._24_c01013{width:72.106667pt;}
._50_c01013{width:77.256533pt;}
._19_c01013{width:80.256000pt;}
._21_c01013{width:82.048000pt;}
._43_c01013{width:82.978667pt;}
._46_c01013{width:87.194667pt;}
._16_c01013{width:98.816000pt;}
._2a_c01013{width:115.308800pt;}
._2d_c01013{width:123.424000pt;}
._48_c01013{width:138.933333pt;}
._2b_c01013{width:144.686933pt;}
._47_c01013{width:154.218667pt;}
._4a_c01013{width:170.554667pt;}
._3e_c01013{width:178.672000pt;}
._49_c01013{width:202.293333pt;}
._3b_c01013{width:214.370133pt;}
._26_c01013{width:272.917333pt;}
._23_c01013{width:286.517333pt;}
._4f_c01013{width:375.890133pt;}
._4b_c01013{width:745.717333pt;}
.fs8_c01013{font-size:21.333333pt;}
.fsa_c01013{font-size:26.666667pt;}
.fsc_c01013{font-size:42.666667pt;}
.fsb_c01013{font-size:53.333333pt;}
.fs6_c01013{font-size:69.333333pt;}
.fs2_c01013{font-size:74.666667pt;}
.fs7_c01013{font-size:77.333333pt;}
.fs5_c01013{font-size:81.066667pt;}
.fs3_c01013{font-size:85.333333pt;}
.fs9_c01013{font-size:90.666667pt;}
.fs4_c01013{font-size:101.333333pt;}
.fs0_c01013{font-size:102.400000pt;}
.fs1_c01013{font-size:128.000000pt;}
.y0_c01013{bottom:0.000000pt;}
.y24_c01013{bottom:2.760000pt;}
.y23_c01013{bottom:6.425217pt;}
.y22_c01013{bottom:112.106667pt;}
.y21_c01013{bottom:142.506667pt;}
.y20_c01013{bottom:172.773333pt;}
.y1f_c01013{bottom:203.040000pt;}
.y1e_c01013{bottom:233.306667pt;}
.y1d_c01013{bottom:263.440000pt;}
.y1c_c01013{bottom:293.306667pt;}
.y1b_c01013{bottom:323.040000pt;}
.y1a_c01013{bottom:353.440000pt;}
.y19_c01013{bottom:383.440000pt;}
.y18_c01013{bottom:413.306667pt;}
.y17_c01013{bottom:443.306667pt;}
.y16_c01013{bottom:473.306667pt;}
.y15_c01013{bottom:502.773333pt;}
.y14_c01013{bottom:532.240000pt;}
.y13_c01013{bottom:561.840000pt;}
.y12_c01013{bottom:591.840000pt;}
.y11_c01013{bottom:622.106667pt;}
.y10_c01013{bottom:651.306667pt;}
.yf_c01013{bottom:681.573333pt;}
.ye_c01013{bottom:710.640000pt;}
.yd_c01013{bottom:740.373333pt;}
.yc_c01013{bottom:769.706667pt;}
.yb_c01013{bottom:791.306667pt;}
.ya_c01013{bottom:831.573333pt;}
.y7_c01013{bottom:864.240000pt;}
.y6_c01013{bottom:894.640000pt;}
.y9_c01013{bottom:895.706667pt;}
.y8_c01013{bottom:917.973333pt;}
.y5_c01013{bottom:941.040000pt;}
.y4_c01013{bottom:984.640000pt;}
.y3_c01013{bottom:1030.106667pt;}
.y2_c01013{bottom:1074.640000pt;}
.y1_c01013{bottom:1119.306667pt;}
.h8_c01013{height:11.733399pt;}
.h9_c01013{height:38.937500pt;}
.h5_c01013{height:87.783854pt;}
.h4_c01013{height:106.726562pt;}
.h3_c01013{height:108.041667pt;}
.h6_c01013{height:112.127604pt;}
.h7_c01013{height:127.246094pt;}
.h2_c01013{height:162.062500pt;}
.h1_c01013{height:1208.000000pt;}
.h0_c01013{height:1208.133333pt;}
.w2_c01013{width:93.222667pt;}
.w1_c01013{width:754.000000pt;}
.w0_c01013{width:754.066667pt;}
.x0_c01013{left:0.000000pt;}
.xc_c01013{left:124.000000pt;}
.xb_c01013{left:142.266667pt;}
.x9_c01013{left:173.733333pt;}
.x1_c01013{left:206.800000pt;}
.x2_c01013{left:207.866667pt;}
.xd_c01013{left:210.400000pt;}
.xe_c01013{left:211.466667pt;}
.xf_c01013{left:212.800000pt;}
.x5_c01013{left:214.266667pt;}
.x10_c01013{left:215.200000pt;}
.x11_c01013{left:216.266667pt;}
.x4_c01013{left:226.000000pt;}
.x6_c01013{left:261.333333pt;}
.xa_c01013{left:311.733333pt;}
.x12_c01013{left:334.201538pt;}
.x8_c01013{left:357.333333pt;}
.x3_c01013{left:437.466667pt;}
.x7_c01013{left:460.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_c01014 {
    display:none;
  }
  .loading-indicator_c01014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01014 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01014 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01014" -> "#page-container .classname_c01014")
 */
.pf_c01014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01014 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01014 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01014 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01014 {overflow:visible;}
  }
}
.c_c01014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01014 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01014:after { /* webkit #35443 */
  content: '';
}
.t_c01014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01014 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01014 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01014 { /* info for Javascript */
  display:none;
}
.l_c01014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_ef2dade98034f6f61c8f7faf.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01014;src:url('chunks/assets/font_14013ec1d5d35ce43ce57ee4.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01014;src:url('chunks/assets/font_78cc52363759a55d5348f044.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01014;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls5_c01014{letter-spacing:0.000000px;}
.ls6_c01014{letter-spacing:3.000000px;}
.ls3_c01014{letter-spacing:5.364000px;}
.ls0_c01014{letter-spacing:8.016000px;}
.ls1_c01014{letter-spacing:9.600000px;}
.ls4_c01014{letter-spacing:13.800000px;}
.ls2_c01014{letter-spacing:19.800000px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01014{word-spacing:-54.000000px;}
.ws1_c01014{word-spacing:-41.328000px;}
.ws2_c01014{word-spacing:-23.136000px;}
.ws3_c01014{word-spacing:0.000000px;}
._33_c01014{margin-left:-78.816000px;}
._3d_c01014{margin-left:-32.040000px;}
._2d_c01014{margin-left:-29.688000px;}
._36_c01014{margin-left:-27.960000px;}
._38_c01014{margin-left:-21.696000px;}
._1a_c01014{margin-left:-18.432000px;}
._26_c01014{margin-left:-16.488000px;}
._25_c01014{margin-left:-14.880000px;}
._19_c01014{margin-left:-13.728000px;}
._3a_c01014{margin-left:-12.432000px;}
._5_c01014{margin-left:-10.464000px;}
._1f_c01014{margin-left:-8.568000px;}
._e_c01014{margin-left:-7.560000px;}
._30_c01014{margin-left:-6.504000px;}
._6_c01014{margin-left:-5.472000px;}
._f_c01014{margin-left:-4.200000px;}
._7_c01014{margin-left:-2.784000px;}
._0_c01014{margin-left:-1.536000px;}
._3_c01014{width:1.152000px;}
._2_c01014{width:2.496000px;}
._9_c01014{width:3.936000px;}
._27_c01014{width:4.968000px;}
._a_c01014{width:6.024000px;}
._21_c01014{width:7.032000px;}
._16_c01014{width:8.160000px;}
._1c_c01014{width:9.288000px;}
._4_c01014{width:10.368000px;}
._32_c01014{width:11.448000px;}
._1_c01014{width:12.864000px;}
._22_c01014{width:14.976000px;}
._8_c01014{width:16.608000px;}
._29_c01014{width:18.072000px;}
._18_c01014{width:20.280000px;}
._28_c01014{width:21.696000px;}
._3b_c01014{width:24.144000px;}
._39_c01014{width:25.632000px;}
._24_c01014{width:26.880000px;}
._c_c01014{width:28.224000px;}
._2a_c01014{width:29.328000px;}
._13_c01014{width:31.320000px;}
._3c_c01014{width:32.544000px;}
._15_c01014{width:33.672000px;}
._11_c01014{width:34.848000px;}
._20_c01014{width:36.456000px;}
._1b_c01014{width:38.880000px;}
._2b_c01014{width:40.512000px;}
._b_c01014{width:41.760000px;}
._2c_c01014{width:42.936000px;}
._2e_c01014{width:45.024000px;}
._2f_c01014{width:47.472000px;}
._37_c01014{width:49.776000px;}
._1d_c01014{width:51.096000px;}
._12_c01014{width:52.320000px;}
._31_c01014{width:54.240000px;}
._34_c01014{width:56.376000px;}
._17_c01014{width:58.656000px;}
._35_c01014{width:60.408000px;}
._14_c01014{width:63.144000px;}
._1e_c01014{width:67.584000px;}
._10_c01014{width:118.488000px;}
._d_c01014{width:240.792000px;}
._23_c01014{width:257.832000px;}
._3e_c01014{width:579.528000px;}
.fc2_c01014{color:transparent;}
.fc1_c01014{color:rgb(128,128,128);}
.fc0_c01014{color:rgb(0,0,0);}
.fs3_c01014{font-size:48.000000px;}
.fs2_c01014{font-size:84.000000px;}
.fs0_c01014{font-size:96.000000px;}
.fs1_c01014{font-size:102.000000px;}
.y0_c01014{bottom:0.000000px;}
.y26_c01014{bottom:3.105000px;}
.y25_c01014{bottom:7.228369px;}
.y24_c01014{bottom:109.020000px;}
.y23_c01014{bottom:140.370000px;}
.y22_c01014{bottom:176.070000px;}
.y21_c01014{bottom:209.970000px;}
.y20_c01014{bottom:243.270000px;}
.y1f_c01014{bottom:277.770000px;}
.y1e_c01014{bottom:311.520000px;}
.y1d_c01014{bottom:344.970000px;}
.y1c_c01014{bottom:379.320000px;}
.y1b_c01014{bottom:413.070000px;}
.y1a_c01014{bottom:446.220000px;}
.y19_c01014{bottom:479.520000px;}
.y18_c01014{bottom:514.020000px;}
.y17_c01014{bottom:547.320000px;}
.y16_c01014{bottom:580.170000px;}
.y15_c01014{bottom:615.270000px;}
.y14_c01014{bottom:648.570000px;}
.y13_c01014{bottom:681.420000px;}
.y12_c01014{bottom:715.470000px;}
.y11_c01014{bottom:748.920000px;}
.y10_c01014{bottom:782.670000px;}
.yf_c01014{bottom:816.120000px;}
.ye_c01014{bottom:848.370000px;}
.yd_c01014{bottom:882.120000px;}
.yc_c01014{bottom:914.670000px;}
.yb_c01014{bottom:948.720000px;}
.ya_c01014{bottom:981.720000px;}
.y9_c01014{bottom:1014.870000px;}
.y8_c01014{bottom:1048.920000px;}
.y7_c01014{bottom:1081.020000px;}
.y6_c01014{bottom:1114.320000px;}
.y5_c01014{bottom:1148.070000px;}
.y4_c01014{bottom:1180.620000px;}
.y3_c01014{bottom:1213.020000px;}
.y2_c01014{bottom:1246.770000px;}
.y1_c01014{bottom:1279.770000px;}
.h3_c01014{height:13.200073px;}
.h4_c01014{height:43.804688px;}
.h2_c01014{height:121.546875px;}
.h0_c01014{height:1383.450000px;}
.h1_c01014{height:1383.750000px;}
.w2_c01014{width:104.875500px;}
.w0_c01014{width:878.025000px;}
.w1_c01014{width:878.250000px;}
.x0_c01014{left:0.000000px;}
.xa_c01014{left:38.700000px;}
.x9_c01014{left:40.200000px;}
.x8_c01014{left:41.400000px;}
.x7_c01014{left:42.450000px;}
.x6_c01014{left:43.500000px;}
.x5_c01014{left:45.150000px;}
.x4_c01014{left:46.200000px;}
.x3_c01014{left:47.700000px;}
.x2_c01014{left:48.900000px;}
.x1_c01014{left:95.850000px;}
.xc_c01014{left:390.826721px;}
.xb_c01014{left:585.600000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls5_c01014{letter-spacing:0.000000pt;}
.ls6_c01014{letter-spacing:2.666667pt;}
.ls3_c01014{letter-spacing:4.768000pt;}
.ls0_c01014{letter-spacing:7.125333pt;}
.ls1_c01014{letter-spacing:8.533333pt;}
.ls4_c01014{letter-spacing:12.266667pt;}
.ls2_c01014{letter-spacing:17.600000pt;}
.ws0_c01014{word-spacing:-48.000000pt;}
.ws1_c01014{word-spacing:-36.736000pt;}
.ws2_c01014{word-spacing:-20.565333pt;}
.ws3_c01014{word-spacing:0.000000pt;}
._33_c01014{margin-left:-70.058667pt;}
._3d_c01014{margin-left:-28.480000pt;}
._2d_c01014{margin-left:-26.389333pt;}
._36_c01014{margin-left:-24.853333pt;}
._38_c01014{margin-left:-19.285333pt;}
._1a_c01014{margin-left:-16.384000pt;}
._26_c01014{margin-left:-14.656000pt;}
._25_c01014{margin-left:-13.226667pt;}
._19_c01014{margin-left:-12.202667pt;}
._3a_c01014{margin-left:-11.050667pt;}
._5_c01014{margin-left:-9.301333pt;}
._1f_c01014{margin-left:-7.616000pt;}
._e_c01014{margin-left:-6.720000pt;}
._30_c01014{margin-left:-5.781333pt;}
._6_c01014{margin-left:-4.864000pt;}
._f_c01014{margin-left:-3.733333pt;}
._7_c01014{margin-left:-2.474667pt;}
._0_c01014{margin-left:-1.365333pt;}
._3_c01014{width:1.024000pt;}
._2_c01014{width:2.218667pt;}
._9_c01014{width:3.498667pt;}
._27_c01014{width:4.416000pt;}
._a_c01014{width:5.354667pt;}
._21_c01014{width:6.250667pt;}
._16_c01014{width:7.253333pt;}
._1c_c01014{width:8.256000pt;}
._4_c01014{width:9.216000pt;}
._32_c01014{width:10.176000pt;}
._1_c01014{width:11.434667pt;}
._22_c01014{width:13.312000pt;}
._8_c01014{width:14.762667pt;}
._29_c01014{width:16.064000pt;}
._18_c01014{width:18.026667pt;}
._28_c01014{width:19.285333pt;}
._3b_c01014{width:21.461333pt;}
._39_c01014{width:22.784000pt;}
._24_c01014{width:23.893333pt;}
._c_c01014{width:25.088000pt;}
._2a_c01014{width:26.069333pt;}
._13_c01014{width:27.840000pt;}
._3c_c01014{width:28.928000pt;}
._15_c01014{width:29.930667pt;}
._11_c01014{width:30.976000pt;}
._20_c01014{width:32.405333pt;}
._1b_c01014{width:34.560000pt;}
._2b_c01014{width:36.010667pt;}
._b_c01014{width:37.120000pt;}
._2c_c01014{width:38.165333pt;}
._2e_c01014{width:40.021333pt;}
._2f_c01014{width:42.197333pt;}
._37_c01014{width:44.245333pt;}
._1d_c01014{width:45.418667pt;}
._12_c01014{width:46.506667pt;}
._31_c01014{width:48.213333pt;}
._34_c01014{width:50.112000pt;}
._17_c01014{width:52.138667pt;}
._35_c01014{width:53.696000pt;}
._14_c01014{width:56.128000pt;}
._1e_c01014{width:60.074667pt;}
._10_c01014{width:105.322667pt;}
._d_c01014{width:214.037333pt;}
._23_c01014{width:229.184000pt;}
._3e_c01014{width:515.136000pt;}
.fs3_c01014{font-size:42.666667pt;}
.fs2_c01014{font-size:74.666667pt;}
.fs0_c01014{font-size:85.333333pt;}
.fs1_c01014{font-size:90.666667pt;}
.y0_c01014{bottom:0.000000pt;}
.y26_c01014{bottom:2.760000pt;}
.y25_c01014{bottom:6.425217pt;}
.y24_c01014{bottom:96.906667pt;}
.y23_c01014{bottom:124.773333pt;}
.y22_c01014{bottom:156.506667pt;}
.y21_c01014{bottom:186.640000pt;}
.y20_c01014{bottom:216.240000pt;}
.y1f_c01014{bottom:246.906667pt;}
.y1e_c01014{bottom:276.906667pt;}
.y1d_c01014{bottom:306.640000pt;}
.y1c_c01014{bottom:337.173333pt;}
.y1b_c01014{bottom:367.173333pt;}
.y1a_c01014{bottom:396.640000pt;}
.y19_c01014{bottom:426.240000pt;}
.y18_c01014{bottom:456.906667pt;}
.y17_c01014{bottom:486.506667pt;}
.y16_c01014{bottom:515.706667pt;}
.y15_c01014{bottom:546.906667pt;}
.y14_c01014{bottom:576.506667pt;}
.y13_c01014{bottom:605.706667pt;}
.y12_c01014{bottom:635.973333pt;}
.y11_c01014{bottom:665.706667pt;}
.y10_c01014{bottom:695.706667pt;}
.yf_c01014{bottom:725.440000pt;}
.ye_c01014{bottom:754.106667pt;}
.yd_c01014{bottom:784.106667pt;}
.yc_c01014{bottom:813.040000pt;}
.yb_c01014{bottom:843.306667pt;}
.ya_c01014{bottom:872.640000pt;}
.y9_c01014{bottom:902.106667pt;}
.y8_c01014{bottom:932.373333pt;}
.y7_c01014{bottom:960.906667pt;}
.y6_c01014{bottom:990.506667pt;}
.y5_c01014{bottom:1020.506667pt;}
.y4_c01014{bottom:1049.440000pt;}
.y3_c01014{bottom:1078.240000pt;}
.y2_c01014{bottom:1108.240000pt;}
.y1_c01014{bottom:1137.573333pt;}
.h3_c01014{height:11.733399pt;}
.h4_c01014{height:38.937500pt;}
.h2_c01014{height:108.041667pt;}
.h0_c01014{height:1229.733333pt;}
.h1_c01014{height:1230.000000pt;}
.w2_c01014{width:93.222667pt;}
.w0_c01014{width:780.466667pt;}
.w1_c01014{width:780.666667pt;}
.x0_c01014{left:0.000000pt;}
.xa_c01014{left:34.400000pt;}
.x9_c01014{left:35.733333pt;}
.x8_c01014{left:36.800000pt;}
.x7_c01014{left:37.733333pt;}
.x6_c01014{left:38.666667pt;}
.x5_c01014{left:40.133333pt;}
.x4_c01014{left:41.066667pt;}
.x3_c01014{left:42.400000pt;}
.x2_c01014{left:43.466667pt;}
.x1_c01014{left:85.200000pt;}
.xc_c01014{left:347.401530pt;}
.xb_c01014{left:520.533333pt;}
}





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

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_0476dd8d922042a69b8d9321.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01015;src:url('chunks/assets/font_aa99ab3760b316bb3554d353.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01015;src:url('chunks/assets/font_43163fd4017f415f958b53f3.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01015;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01015;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls2_c01015{letter-spacing:0.000000px;}
.ls1_c01015{letter-spacing:3.000000px;}
.ls0_c01015{letter-spacing:4.356000px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01015{word-spacing:-63.504000px;}
.ws0_c01015{word-spacing:-54.000000px;}
.ws2_c01015{word-spacing:-23.136000px;}
.ws3_c01015{word-spacing:0.000000px;}
._28_c01015{margin-left:-32.928000px;}
._32_c01015{margin-left:-30.432000px;}
._2c_c01015{margin-left:-26.016000px;}
._2a_c01015{margin-left:-22.944000px;}
._2b_c01015{margin-left:-20.196000px;}
._9_c01015{margin-left:-18.432000px;}
._24_c01015{margin-left:-16.572000px;}
._c_c01015{margin-left:-15.000000px;}
._31_c01015{margin-left:-13.536000px;}
._25_c01015{margin-left:-12.444000px;}
._21_c01015{margin-left:-11.040000px;}
._22_c01015{margin-left:-9.600000px;}
._23_c01015{margin-left:-7.488000px;}
._37_c01015{margin-left:-5.664000px;}
._d_c01015{margin-left:-4.320000px;}
._1d_c01015{margin-left:-3.312000px;}
._b_c01015{margin-left:-2.304000px;}
._1f_c01015{margin-left:-1.056000px;}
._2_c01015{width:1.728000px;}
._5_c01015{width:2.784000px;}
._4_c01015{width:3.840000px;}
._6_c01015{width:5.280000px;}
._0_c01015{width:7.296000px;}
._14_c01015{width:8.832000px;}
._8_c01015{width:10.272000px;}
._1b_c01015{width:11.424000px;}
._1c_c01015{width:12.864000px;}
._17_c01015{width:14.496000px;}
._3c_c01015{width:15.648000px;}
._2d_c01015{width:16.800000px;}
._3b_c01015{width:18.816000px;}
._27_c01015{width:20.064000px;}
._11_c01015{width:21.984000px;}
._26_c01015{width:25.440000px;}
._2e_c01015{width:27.072000px;}
._a_c01015{width:28.224000px;}
._18_c01015{width:30.240000px;}
._2f_c01015{width:31.824000px;}
._19_c01015{width:33.888000px;}
._33_c01015{width:35.904000px;}
._16_c01015{width:36.960000px;}
._29_c01015{width:38.592000px;}
._3_c01015{width:40.512000px;}
._20_c01015{width:42.528000px;}
._f_c01015{width:43.848000px;}
._10_c01015{width:45.216000px;}
._3a_c01015{width:46.848000px;}
._15_c01015{width:48.024000px;}
._13_c01015{width:50.016000px;}
._38_c01015{width:51.744000px;}
._3d_c01015{width:53.472000px;}
._1a_c01015{width:54.528000px;}
._e_c01015{width:55.680000px;}
._12_c01015{width:58.176000px;}
._36_c01015{width:59.952000px;}
._34_c01015{width:62.880000px;}
._1_c01015{width:64.512000px;}
._1e_c01015{width:68.448000px;}
._30_c01015{width:70.848000px;}
._7_c01015{width:73.152000px;}
._35_c01015{width:76.224000px;}
._39_c01015{width:109.536000px;}
.fc2_c01015{color:transparent;}
.fc1_c01015{color:rgb(128,128,128);}
.fc0_c01015{color:rgb(0,0,0);}
.fs3_c01015{font-size:48.000000px;}
.fs2_c01015{font-size:84.000000px;}
.fs0_c01015{font-size:96.000000px;}
.fs1_c01015{font-size:102.000000px;}
.y0_c01015{bottom:0.000000px;}
.y26_c01015{bottom:3.105000px;}
.y25_c01015{bottom:7.228357px;}
.y24_c01015{bottom:95.880000px;}
.y23_c01015{bottom:126.630000px;}
.y22_c01015{bottom:162.330000px;}
.y21_c01015{bottom:196.080000px;}
.y20_c01015{bottom:230.280000px;}
.y1f_c01015{bottom:264.030000px;}
.y1e_c01015{bottom:298.080000px;}
.y1d_c01015{bottom:332.130000px;}
.y1c_c01015{bottom:366.180000px;}
.y1b_c01015{bottom:399.930000px;}
.y1a_c01015{bottom:433.980000px;}
.y19_c01015{bottom:467.430000px;}
.y18_c01015{bottom:501.180000px;}
.y17_c01015{bottom:534.630000px;}
.y16_c01015{bottom:568.680000px;}
.y15_c01015{bottom:602.130000px;}
.y14_c01015{bottom:635.280000px;}
.y13_c01015{bottom:668.880000px;}
.y12_c01015{bottom:702.780000px;}
.y11_c01015{bottom:736.080000px;}
.y10_c01015{bottom:769.830000px;}
.yf_c01015{bottom:803.580000px;}
.ye_c01015{bottom:836.430000px;}
.yd_c01015{bottom:870.030000px;}
.yc_c01015{bottom:902.880000px;}
.yb_c01015{bottom:937.230000px;}
.ya_c01015{bottom:969.930000px;}
.y9_c01015{bottom:1003.380000px;}
.y8_c01015{bottom:1036.080000px;}
.y7_c01015{bottom:1069.830000px;}
.y6_c01015{bottom:1102.980000px;}
.y5_c01015{bottom:1136.130000px;}
.y4_c01015{bottom:1169.430000px;}
.y3_c01015{bottom:1202.280000px;}
.y2_c01015{bottom:1235.580000px;}
.y1_c01015{bottom:1268.430000px;}
.h3_c01015{height:13.200074px;}
.h4_c01015{height:43.804688px;}
.h2_c01015{height:121.546875px;}
.h0_c01015{height:1382.700000px;}
.h1_c01015{height:1383.000000px;}
.w2_c01015{width:104.875500px;}
.w0_c01015{width:863.175000px;}
.w1_c01015{width:863.250000px;}
.x0_c01015{left:0.000000px;}
.x2_c01015{left:232.500000px;}
.x1_c01015{left:234.150000px;}
.x3_c01015{left:235.800000px;}
.x4_c01015{left:236.850000px;}
.x8_c01015{left:237.900000px;}
.x5_c01015{left:239.400000px;}
.x6_c01015{left:240.600000px;}
.x7_c01015{left:241.650000px;}
.x9_c01015{left:247.500000px;}
.xb_c01015{left:383.401749px;}
.xa_c01015{left:767.700000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls2_c01015{letter-spacing:0.000000pt;}
.ls1_c01015{letter-spacing:2.666667pt;}
.ls0_c01015{letter-spacing:3.872000pt;}
.ws1_c01015{word-spacing:-56.448000pt;}
.ws0_c01015{word-spacing:-48.000000pt;}
.ws2_c01015{word-spacing:-20.565333pt;}
.ws3_c01015{word-spacing:0.000000pt;}
._28_c01015{margin-left:-29.269333pt;}
._32_c01015{margin-left:-27.050667pt;}
._2c_c01015{margin-left:-23.125333pt;}
._2a_c01015{margin-left:-20.394667pt;}
._2b_c01015{margin-left:-17.952000pt;}
._9_c01015{margin-left:-16.384000pt;}
._24_c01015{margin-left:-14.730667pt;}
._c_c01015{margin-left:-13.333333pt;}
._31_c01015{margin-left:-12.032000pt;}
._25_c01015{margin-left:-11.061333pt;}
._21_c01015{margin-left:-9.813333pt;}
._22_c01015{margin-left:-8.533333pt;}
._23_c01015{margin-left:-6.656000pt;}
._37_c01015{margin-left:-5.034667pt;}
._d_c01015{margin-left:-3.840000pt;}
._1d_c01015{margin-left:-2.944000pt;}
._b_c01015{margin-left:-2.048000pt;}
._1f_c01015{margin-left:-0.938667pt;}
._2_c01015{width:1.536000pt;}
._5_c01015{width:2.474667pt;}
._4_c01015{width:3.413333pt;}
._6_c01015{width:4.693333pt;}
._0_c01015{width:6.485333pt;}
._14_c01015{width:7.850667pt;}
._8_c01015{width:9.130667pt;}
._1b_c01015{width:10.154667pt;}
._1c_c01015{width:11.434667pt;}
._17_c01015{width:12.885333pt;}
._3c_c01015{width:13.909333pt;}
._2d_c01015{width:14.933333pt;}
._3b_c01015{width:16.725333pt;}
._27_c01015{width:17.834667pt;}
._11_c01015{width:19.541333pt;}
._26_c01015{width:22.613333pt;}
._2e_c01015{width:24.064000pt;}
._a_c01015{width:25.088000pt;}
._18_c01015{width:26.880000pt;}
._2f_c01015{width:28.288000pt;}
._19_c01015{width:30.122667pt;}
._33_c01015{width:31.914667pt;}
._16_c01015{width:32.853333pt;}
._29_c01015{width:34.304000pt;}
._3_c01015{width:36.010667pt;}
._20_c01015{width:37.802667pt;}
._f_c01015{width:38.976000pt;}
._10_c01015{width:40.192000pt;}
._3a_c01015{width:41.642667pt;}
._15_c01015{width:42.688000pt;}
._13_c01015{width:44.458667pt;}
._38_c01015{width:45.994667pt;}
._3d_c01015{width:47.530667pt;}
._1a_c01015{width:48.469333pt;}
._e_c01015{width:49.493333pt;}
._12_c01015{width:51.712000pt;}
._36_c01015{width:53.290667pt;}
._34_c01015{width:55.893333pt;}
._1_c01015{width:57.344000pt;}
._1e_c01015{width:60.842667pt;}
._30_c01015{width:62.976000pt;}
._7_c01015{width:65.024000pt;}
._35_c01015{width:67.754667pt;}
._39_c01015{width:97.365333pt;}
.fs3_c01015{font-size:42.666667pt;}
.fs2_c01015{font-size:74.666667pt;}
.fs0_c01015{font-size:85.333333pt;}
.fs1_c01015{font-size:90.666667pt;}
.y0_c01015{bottom:0.000000pt;}
.y26_c01015{bottom:2.760000pt;}
.y25_c01015{bottom:6.425206pt;}
.y24_c01015{bottom:85.226667pt;}
.y23_c01015{bottom:112.560000pt;}
.y22_c01015{bottom:144.293333pt;}
.y21_c01015{bottom:174.293333pt;}
.y20_c01015{bottom:204.693333pt;}
.y1f_c01015{bottom:234.693333pt;}
.y1e_c01015{bottom:264.960000pt;}
.y1d_c01015{bottom:295.226667pt;}
.y1c_c01015{bottom:325.493333pt;}
.y1b_c01015{bottom:355.493333pt;}
.y1a_c01015{bottom:385.760000pt;}
.y19_c01015{bottom:415.493333pt;}
.y18_c01015{bottom:445.493333pt;}
.y17_c01015{bottom:475.226667pt;}
.y16_c01015{bottom:505.493333pt;}
.y15_c01015{bottom:535.226667pt;}
.y14_c01015{bottom:564.693333pt;}
.y13_c01015{bottom:594.560000pt;}
.y12_c01015{bottom:624.693333pt;}
.y11_c01015{bottom:654.293333pt;}
.y10_c01015{bottom:684.293333pt;}
.yf_c01015{bottom:714.293333pt;}
.ye_c01015{bottom:743.493333pt;}
.yd_c01015{bottom:773.360000pt;}
.yc_c01015{bottom:802.560000pt;}
.yb_c01015{bottom:833.093333pt;}
.ya_c01015{bottom:862.160000pt;}
.y9_c01015{bottom:891.893333pt;}
.y8_c01015{bottom:920.960000pt;}
.y7_c01015{bottom:950.960000pt;}
.y6_c01015{bottom:980.426667pt;}
.y5_c01015{bottom:1009.893333pt;}
.y4_c01015{bottom:1039.493333pt;}
.y3_c01015{bottom:1068.693333pt;}
.y2_c01015{bottom:1098.293333pt;}
.y1_c01015{bottom:1127.493333pt;}
.h3_c01015{height:11.733399pt;}
.h4_c01015{height:38.937500pt;}
.h2_c01015{height:108.041667pt;}
.h0_c01015{height:1229.066667pt;}
.h1_c01015{height:1229.333333pt;}
.w2_c01015{width:93.222667pt;}
.w0_c01015{width:767.266667pt;}
.w1_c01015{width:767.333333pt;}
.x0_c01015{left:0.000000pt;}
.x2_c01015{left:206.666667pt;}
.x1_c01015{left:208.133333pt;}
.x3_c01015{left:209.600000pt;}
.x4_c01015{left:210.533333pt;}
.x8_c01015{left:211.466667pt;}
.x5_c01015{left:212.800000pt;}
.x6_c01015{left:213.866667pt;}
.x7_c01015{left:214.800000pt;}
.x9_c01015{left:220.000000pt;}
.xb_c01015{left:340.801554pt;}
.xa_c01015{left:682.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_c01016 {
    display:none;
  }
  .loading-indicator_c01016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01016 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01016 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01016" -> "#page-container .classname_c01016")
 */
.pf_c01016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01016 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01016 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01016 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01016 {overflow:visible;}
  }
}
.c_c01016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01016 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01016:after { /* webkit #35443 */
  content: '';
}
.t_c01016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01016 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01016 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01016 { /* info for Javascript */
  display:none;
}
.l_c01016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_15524268a3938d5225164de8.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01016;src:url('chunks/assets/font_6aed12f5ece165ac1ae6448a.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01016;src:url('chunks/assets/font_860ced17c9ed8b6da69186fd.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01016;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;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_c01016;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls2_c01016{letter-spacing:0.000000px;}
.ls3_c01016{letter-spacing:3.000000px;}
.ls0_c01016{letter-spacing:11.400000px;}
.ls1_c01016{letter-spacing:15.000000px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01016{word-spacing:-53.856000px;}
.ws3_c01016{word-spacing:-23.136000px;}
.ws1_c01016{word-spacing:-20.244000px;}
.ws4_c01016{word-spacing:0.000000px;}
.ws0_c01016{word-spacing:7.140000px;}
._39_c01016{margin-left:-86.400000px;}
._2_c01016{margin-left:-48.111000px;}
._45_c01016{margin-left:-25.728000px;}
._0_c01016{margin-left:-24.360000px;}
._4_c01016{margin-left:-20.184000px;}
._3e_c01016{margin-left:-18.525000px;}
._30_c01016{margin-left:-17.376000px;}
._2e_c01016{margin-left:-16.167000px;}
._2d_c01016{margin-left:-11.004000px;}
._31_c01016{margin-left:-9.600000px;}
._3f_c01016{margin-left:-7.236000px;}
._f_c01016{margin-left:-5.184000px;}
._35_c01016{margin-left:-4.170000px;}
._18_c01016{margin-left:-2.880000px;}
._1a_c01016{margin-left:-1.728000px;}
._c_c01016{width:1.344000px;}
._8_c01016{width:2.880000px;}
._9_c01016{width:4.416000px;}
._6_c01016{width:5.568000px;}
._7_c01016{width:7.200000px;}
._20_c01016{width:8.352000px;}
._1f_c01016{width:9.504000px;}
._e_c01016{width:10.944000px;}
._16_c01016{width:12.960000px;}
._28_c01016{width:14.076000px;}
._1c_c01016{width:15.456000px;}
._2a_c01016{width:17.028000px;}
._26_c01016{width:19.392000px;}
._29_c01016{width:21.456000px;}
._37_c01016{width:24.288000px;}
._10_c01016{width:25.440000px;}
._15_c01016{width:27.840000px;}
._b_c01016{width:30.048000px;}
._1d_c01016{width:31.872000px;}
._12_c01016{width:33.696000px;}
._25_c01016{width:35.328000px;}
._14_c01016{width:36.480000px;}
._1e_c01016{width:38.208000px;}
._17_c01016{width:39.360000px;}
._33_c01016{width:41.088000px;}
._24_c01016{width:43.200000px;}
._3_c01016{width:44.979000px;}
._d_c01016{width:47.424000px;}
._13_c01016{width:49.920000px;}
._11_c01016{width:51.360000px;}
._2b_c01016{width:53.280000px;}
._36_c01016{width:56.301000px;}
._19_c01016{width:57.888000px;}
._22_c01016{width:60.864000px;}
._23_c01016{width:62.400000px;}
._40_c01016{width:63.678000px;}
._27_c01016{width:65.376000px;}
._1b_c01016{width:66.720000px;}
._a_c01016{width:70.848000px;}
._21_c01016{width:74.208000px;}
._32_c01016{width:77.376000px;}
._5_c01016{width:86.130000px;}
._3d_c01016{width:99.885000px;}
._44_c01016{width:104.868000px;}
._47_c01016{width:108.192000px;}
._3b_c01016{width:112.416000px;}
._1_c01016{width:149.727000px;}
._42_c01016{width:171.612000px;}
._3c_c01016{width:178.752000px;}
._38_c01016{width:195.936000px;}
._34_c01016{width:260.136000px;}
._46_c01016{width:265.152000px;}
._41_c01016{width:391.488000px;}
._2c_c01016{width:560.712000px;}
._43_c01016{width:594.240000px;}
._48_c01016{width:750.048000px;}
._2f_c01016{width:1050.951000px;}
._3a_c01016{width:1408.992000px;}
.fc2_c01016{color:transparent;}
.fc1_c01016{color:rgb(128,128,128);}
.fc0_c01016{color:rgb(0,0,0);}
.fs6_c01016{font-size:48.000000px;}
.fs4_c01016{font-size:76.800000px;}
.fs2_c01016{font-size:84.000000px;}
.fs0_c01016{font-size:87.000000px;}
.fs1_c01016{font-size:96.000000px;}
.fs5_c01016{font-size:102.000000px;}
.fs3_c01016{font-size:105.000000px;}
.y0_c01016{bottom:0.000000px;}
.y29_c01016{bottom:3.105000px;}
.y28_c01016{bottom:7.228357px;}
.y25_c01016{bottom:91.080000px;}
.y24_c01016{bottom:132.330000px;}
.y23_c01016{bottom:168.780000px;}
.y22_c01016{bottom:201.780000px;}
.y21_c01016{bottom:235.680000px;}
.y20_c01016{bottom:270.030000px;}
.y1f_c01016{bottom:304.530000px;}
.y1e_c01016{bottom:338.130000px;}
.y1d_c01016{bottom:371.880000px;}
.y1c_c01016{bottom:405.330000px;}
.y1b_c01016{bottom:439.380000px;}
.y1a_c01016{bottom:472.530000px;}
.y19_c01016{bottom:506.580000px;}
.y18_c01016{bottom:540.330000px;}
.y17_c01016{bottom:573.480000px;}
.y16_c01016{bottom:607.230000px;}
.y15_c01016{bottom:640.980000px;}
.y14_c01016{bottom:675.030000px;}
.y27_c01016{bottom:683.130000px;}
.y13_c01016{bottom:708.480000px;}
.y26_c01016{bottom:712.530000px;}
.y12_c01016{bottom:742.830000px;}
.y11_c01016{bottom:775.530000px;}
.y10_c01016{bottom:810.030000px;}
.yf_c01016{bottom:842.730000px;}
.ye_c01016{bottom:876.780000px;}
.yd_c01016{bottom:910.230000px;}
.yc_c01016{bottom:943.680000px;}
.yb_c01016{bottom:976.830000px;}
.ya_c01016{bottom:1010.130000px;}
.y9_c01016{bottom:1043.280000px;}
.y8_c01016{bottom:1075.980000px;}
.y7_c01016{bottom:1108.230000px;}
.y6_c01016{bottom:1141.530000px;}
.y5_c01016{bottom:1174.830000px;}
.y4_c01016{bottom:1207.530000px;}
.y3_c01016{bottom:1240.680000px;}
.y2_c01016{bottom:1273.830000px;}
.y1_c01016{bottom:1291.230000px;}
.h5_c01016{height:13.200074px;}
.h6_c01016{height:43.804688px;}
.h2_c01016{height:110.151855px;}
.h3_c01016{height:121.546875px;}
.h4_c01016{height:132.941895px;}
.h0_c01016{height:1367.850000px;}
.h1_c01016{height:1368.000000px;}
.w1_c01016{width:104.875500px;}
.w0_c01016{width:867.750000px;}
.x0_c01016{left:0.000000px;}
.xb_c01016{left:22.950000px;}
.x6_c01016{left:24.000000px;}
.x7_c01016{left:25.050000px;}
.x5_c01016{left:26.100000px;}
.x4_c01016{left:27.300000px;}
.xa_c01016{left:28.350000px;}
.x3_c01016{left:29.400000px;}
.x2_c01016{left:30.450000px;}
.xd_c01016{left:31.500000px;}
.x9_c01016{left:56.400000px;}
.xe_c01016{left:63.450000px;}
.xc_c01016{left:78.600000px;}
.x8_c01016{left:148.800000px;}
.xf_c01016{left:275.700000px;}
.x1_c01016{left:339.900000px;}
.x11_c01016{left:385.689240px;}
.x10_c01016{left:627.750000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls2_c01016{letter-spacing:0.000000pt;}
.ls3_c01016{letter-spacing:2.666667pt;}
.ls0_c01016{letter-spacing:10.133333pt;}
.ls1_c01016{letter-spacing:13.333333pt;}
.ws2_c01016{word-spacing:-47.872000pt;}
.ws3_c01016{word-spacing:-20.565333pt;}
.ws1_c01016{word-spacing:-17.994667pt;}
.ws4_c01016{word-spacing:0.000000pt;}
.ws0_c01016{word-spacing:6.346667pt;}
._39_c01016{margin-left:-76.800000pt;}
._2_c01016{margin-left:-42.765333pt;}
._45_c01016{margin-left:-22.869333pt;}
._0_c01016{margin-left:-21.653333pt;}
._4_c01016{margin-left:-17.941333pt;}
._3e_c01016{margin-left:-16.466667pt;}
._30_c01016{margin-left:-15.445333pt;}
._2e_c01016{margin-left:-14.370667pt;}
._2d_c01016{margin-left:-9.781333pt;}
._31_c01016{margin-left:-8.533333pt;}
._3f_c01016{margin-left:-6.432000pt;}
._f_c01016{margin-left:-4.608000pt;}
._35_c01016{margin-left:-3.706667pt;}
._18_c01016{margin-left:-2.560000pt;}
._1a_c01016{margin-left:-1.536000pt;}
._c_c01016{width:1.194667pt;}
._8_c01016{width:2.560000pt;}
._9_c01016{width:3.925333pt;}
._6_c01016{width:4.949333pt;}
._7_c01016{width:6.400000pt;}
._20_c01016{width:7.424000pt;}
._1f_c01016{width:8.448000pt;}
._e_c01016{width:9.728000pt;}
._16_c01016{width:11.520000pt;}
._28_c01016{width:12.512000pt;}
._1c_c01016{width:13.738667pt;}
._2a_c01016{width:15.136000pt;}
._26_c01016{width:17.237333pt;}
._29_c01016{width:19.072000pt;}
._37_c01016{width:21.589333pt;}
._10_c01016{width:22.613333pt;}
._15_c01016{width:24.746667pt;}
._b_c01016{width:26.709333pt;}
._1d_c01016{width:28.330667pt;}
._12_c01016{width:29.952000pt;}
._25_c01016{width:31.402667pt;}
._14_c01016{width:32.426667pt;}
._1e_c01016{width:33.962667pt;}
._17_c01016{width:34.986667pt;}
._33_c01016{width:36.522667pt;}
._24_c01016{width:38.400000pt;}
._3_c01016{width:39.981333pt;}
._d_c01016{width:42.154667pt;}
._13_c01016{width:44.373333pt;}
._11_c01016{width:45.653333pt;}
._2b_c01016{width:47.360000pt;}
._36_c01016{width:50.045333pt;}
._19_c01016{width:51.456000pt;}
._22_c01016{width:54.101333pt;}
._23_c01016{width:55.466667pt;}
._40_c01016{width:56.602667pt;}
._27_c01016{width:58.112000pt;}
._1b_c01016{width:59.306667pt;}
._a_c01016{width:62.976000pt;}
._21_c01016{width:65.962667pt;}
._32_c01016{width:68.778667pt;}
._5_c01016{width:76.560000pt;}
._3d_c01016{width:88.786667pt;}
._44_c01016{width:93.216000pt;}
._47_c01016{width:96.170667pt;}
._3b_c01016{width:99.925333pt;}
._1_c01016{width:133.090667pt;}
._42_c01016{width:152.544000pt;}
._3c_c01016{width:158.890667pt;}
._38_c01016{width:174.165333pt;}
._34_c01016{width:231.232000pt;}
._46_c01016{width:235.690667pt;}
._41_c01016{width:347.989333pt;}
._2c_c01016{width:498.410667pt;}
._43_c01016{width:528.213333pt;}
._48_c01016{width:666.709333pt;}
._2f_c01016{width:934.178667pt;}
._3a_c01016{width:1252.437333pt;}
.fs6_c01016{font-size:42.666667pt;}
.fs4_c01016{font-size:68.266667pt;}
.fs2_c01016{font-size:74.666667pt;}
.fs0_c01016{font-size:77.333333pt;}
.fs1_c01016{font-size:85.333333pt;}
.fs5_c01016{font-size:90.666667pt;}
.fs3_c01016{font-size:93.333333pt;}
.y0_c01016{bottom:0.000000pt;}
.y29_c01016{bottom:2.760000pt;}
.y28_c01016{bottom:6.425206pt;}
.y25_c01016{bottom:80.960000pt;}
.y24_c01016{bottom:117.626667pt;}
.y23_c01016{bottom:150.026667pt;}
.y22_c01016{bottom:179.360000pt;}
.y21_c01016{bottom:209.493333pt;}
.y20_c01016{bottom:240.026667pt;}
.y1f_c01016{bottom:270.693333pt;}
.y1e_c01016{bottom:300.560000pt;}
.y1d_c01016{bottom:330.560000pt;}
.y1c_c01016{bottom:360.293333pt;}
.y1b_c01016{bottom:390.560000pt;}
.y1a_c01016{bottom:420.026667pt;}
.y19_c01016{bottom:450.293333pt;}
.y18_c01016{bottom:480.293333pt;}
.y17_c01016{bottom:509.760000pt;}
.y16_c01016{bottom:539.760000pt;}
.y15_c01016{bottom:569.760000pt;}
.y14_c01016{bottom:600.026667pt;}
.y27_c01016{bottom:607.226667pt;}
.y13_c01016{bottom:629.760000pt;}
.y26_c01016{bottom:633.360000pt;}
.y12_c01016{bottom:660.293333pt;}
.y11_c01016{bottom:689.360000pt;}
.y10_c01016{bottom:720.026667pt;}
.yf_c01016{bottom:749.093333pt;}
.ye_c01016{bottom:779.360000pt;}
.yd_c01016{bottom:809.093333pt;}
.yc_c01016{bottom:838.826667pt;}
.yb_c01016{bottom:868.293333pt;}
.ya_c01016{bottom:897.893333pt;}
.y9_c01016{bottom:927.360000pt;}
.y8_c01016{bottom:956.426667pt;}
.y7_c01016{bottom:985.093333pt;}
.y6_c01016{bottom:1014.693333pt;}
.y5_c01016{bottom:1044.293333pt;}
.y4_c01016{bottom:1073.360000pt;}
.y3_c01016{bottom:1102.826667pt;}
.y2_c01016{bottom:1132.293333pt;}
.y1_c01016{bottom:1147.760000pt;}
.h5_c01016{height:11.733399pt;}
.h6_c01016{height:38.937500pt;}
.h2_c01016{height:97.912760pt;}
.h3_c01016{height:108.041667pt;}
.h4_c01016{height:118.170573pt;}
.h0_c01016{height:1215.866667pt;}
.h1_c01016{height:1216.000000pt;}
.w1_c01016{width:93.222667pt;}
.w0_c01016{width:771.333333pt;}
.x0_c01016{left:0.000000pt;}
.xb_c01016{left:20.400000pt;}
.x6_c01016{left:21.333333pt;}
.x7_c01016{left:22.266667pt;}
.x5_c01016{left:23.200000pt;}
.x4_c01016{left:24.266667pt;}
.xa_c01016{left:25.200000pt;}
.x3_c01016{left:26.133333pt;}
.x2_c01016{left:27.066667pt;}
.xd_c01016{left:28.000000pt;}
.x9_c01016{left:50.133333pt;}
.xe_c01016{left:56.400000pt;}
.xc_c01016{left:69.866667pt;}
.x8_c01016{left:132.266667pt;}
.xf_c01016{left:245.066667pt;}
.x1_c01016{left:302.133333pt;}
.x11_c01016{left:342.834880pt;}
.x10_c01016{left:558.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_c01017 {
    display:none;
  }
  .loading-indicator_c01017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01017 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01017 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01017" -> "#page-container .classname_c01017")
 */
.pf_c01017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01017 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01017 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01017 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01017 {overflow:visible;}
  }
}
.c_c01017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01017 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01017:after { /* webkit #35443 */
  content: '';
}
.t_c01017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01017 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01017 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01017 { /* info for Javascript */
  display:none;
}
.l_c01017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_b1a387870677dea8167cec4c.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01017;src:url('chunks/assets/font_78fcc8b8b3641d17a07611c6.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01017;src:url('chunks/assets/font_70951aa6e44b223175a04597.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01017;src:url('chunks/assets/font_0536ccb0ae4182b9ab01943c.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01017;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls4_c01017{letter-spacing:-9.000000px;}
.ls3_c01017{letter-spacing:-6.000000px;}
.ls1_c01017{letter-spacing:0.000000px;}
.ls2_c01017{letter-spacing:3.000000px;}
.ls0_c01017{letter-spacing:30.156000px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01017{word-spacing:-39.549000px;}
.ws1_c01017{word-spacing:-28.500000px;}
.ws2_c01017{word-spacing:-20.244000px;}
.ws0_c01017{word-spacing:-0.168000px;}
.ws4_c01017{word-spacing:0.000000px;}
._2d_c01017{margin-left:-50.640000px;}
._35_c01017{margin-left:-29.484000px;}
._25_c01017{margin-left:-27.900000px;}
._8_c01017{margin-left:-25.200000px;}
._36_c01017{margin-left:-18.405000px;}
._2f_c01017{margin-left:-16.560000px;}
._2e_c01017{margin-left:-14.400000px;}
._30_c01017{margin-left:-13.200000px;}
._20_c01017{margin-left:-11.808000px;}
._31_c01017{margin-left:-10.800000px;}
._37_c01017{margin-left:-8.850000px;}
._2c_c01017{margin-left:-6.480000px;}
._2b_c01017{margin-left:-5.280000px;}
._1b_c01017{margin-left:-3.312000px;}
._1c_c01017{margin-left:-2.160000px;}
._11_c01017{margin-left:-1.152000px;}
._d_c01017{width:1.920000px;}
._3_c01017{width:3.264000px;}
._4_c01017{width:4.320000px;}
._9_c01017{width:6.048000px;}
._b_c01017{width:7.680000px;}
._1_c01017{width:9.684000px;}
._18_c01017{width:10.848000px;}
._a_c01017{width:12.768000px;}
._17_c01017{width:14.748000px;}
._0_c01017{width:16.464000px;}
._13_c01017{width:18.528000px;}
._23_c01017{width:19.872000px;}
._15_c01017{width:21.096000px;}
._1f_c01017{width:24.216000px;}
._16_c01017{width:25.440000px;}
._1d_c01017{width:27.456000px;}
._e_c01017{width:29.388000px;}
._f_c01017{width:30.528000px;}
._24_c01017{width:32.736000px;}
._6_c01017{width:34.656000px;}
._14_c01017{width:36.288000px;}
._22_c01017{width:38.592000px;}
._3c_c01017{width:40.284000px;}
._5_c01017{width:41.376000px;}
._28_c01017{width:42.876000px;}
._10_c01017{width:45.252000px;}
._2_c01017{width:46.752000px;}
._19_c01017{width:48.672000px;}
._21_c01017{width:50.016000px;}
._12_c01017{width:51.264000px;}
._2a_c01017{width:53.280000px;}
._1e_c01017{width:54.420000px;}
._1a_c01017{width:56.352000px;}
._c_c01017{width:57.792000px;}
._29_c01017{width:60.096000px;}
._27_c01017{width:62.772000px;}
._41_c01017{width:64.680000px;}
._42_c01017{width:66.624000px;}
._26_c01017{width:68.640000px;}
._39_c01017{width:70.104000px;}
._44_c01017{width:71.436000px;}
._7_c01017{width:74.424000px;}
._46_c01017{width:79.296000px;}
._45_c01017{width:91.116000px;}
._32_c01017{width:97.362000px;}
._34_c01017{width:101.238000px;}
._33_c01017{width:105.387000px;}
._3f_c01017{width:108.288000px;}
._3d_c01017{width:115.920000px;}
._3b_c01017{width:117.192000px;}
._38_c01017{width:175.152000px;}
._43_c01017{width:177.864000px;}
._40_c01017{width:300.120000px;}
._3a_c01017{width:429.714000px;}
._3e_c01017{width:780.336000px;}
.fc2_c01017{color:transparent;}
.fc1_c01017{color:rgb(128,128,128);}
.fc0_c01017{color:rgb(0,0,0);}
.fs6_c01017{font-size:48.000000px;}
.fs0_c01017{font-size:84.000000px;}
.fs1_c01017{font-size:96.000000px;}
.fs2_c01017{font-size:102.000000px;}
.fs4_c01017{font-size:117.000000px;}
.fs5_c01017{font-size:189.000000px;}
.fs3_c01017{font-size:240.000000px;}
.y0_c01017{bottom:0.000000px;}
.y20_c01017{bottom:3.105000px;}
.y1f_c01017{bottom:7.228371px;}
.y1e_c01017{bottom:102.615000px;}
.y1d_c01017{bottom:137.715000px;}
.y1c_c01017{bottom:171.165000px;}
.y1b_c01017{bottom:205.215000px;}
.y1a_c01017{bottom:239.715000px;}
.y19_c01017{bottom:271.665000px;}
.y18_c01017{bottom:307.215000px;}
.y17_c01017{bottom:341.565000px;}
.y16_c01017{bottom:375.015000px;}
.y15_c01017{bottom:409.065000px;}
.y14_c01017{bottom:442.815000px;}
.y13_c01017{bottom:475.665000px;}
.y12_c01017{bottom:510.615000px;}
.y11_c01017{bottom:544.365000px;}
.y10_c01017{bottom:635.565000px;}
.yf_c01017{bottom:686.865000px;}
.ye_c01017{bottom:745.665000px;}
.yd_c01017{bottom:846.465000px;}
.yc_c01017{bottom:880.515000px;}
.yb_c01017{bottom:913.665000px;}
.ya_c01017{bottom:947.115000px;}
.y9_c01017{bottom:979.815000px;}
.y8_c01017{bottom:1012.965000px;}
.y7_c01017{bottom:1045.665000px;}
.y6_c01017{bottom:1079.415000px;}
.y5_c01017{bottom:1113.165000px;}
.y4_c01017{bottom:1146.465000px;}
.y3_c01017{bottom:1179.315000px;}
.y2_c01017{bottom:1212.615000px;}
.y1_c01017{bottom:1245.465000px;}
.h6_c01017{height:13.200074px;}
.h7_c01017{height:43.804688px;}
.h2_c01017{height:121.546875px;}
.h4_c01017{height:124.839000px;}
.h5_c01017{height:239.295410px;}
.h3_c01017{height:241.875000px;}
.h0_c01017{height:1354.875000px;}
.h1_c01017{height:1355.250000px;}
.w2_c01017{width:104.875500px;}
.w0_c01017{width:845.625000px;}
.w1_c01017{width:846.000000px;}
.x0_c01017{left:0.000000px;}
.xf_c01017{left:178.500000px;}
.xd_c01017{left:188.250000px;}
.xe_c01017{left:225.450000px;}
.xa_c01017{left:228.150000px;}
.xb_c01017{left:229.200000px;}
.xc_c01017{left:230.400000px;}
.x4_c01017{left:231.450000px;}
.x1_c01017{left:233.100000px;}
.x2_c01017{left:234.150000px;}
.x3_c01017{left:236.250000px;}
.x5_c01017{left:244.650000px;}
.x9_c01017{left:263.250000px;}
.x6_c01017{left:268.350000px;}
.x8_c01017{left:283.800000px;}
.x10_c01017{left:374.626740px;}
.x7_c01017{left:420.450000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls4_c01017{letter-spacing:-8.000000pt;}
.ls3_c01017{letter-spacing:-5.333333pt;}
.ls1_c01017{letter-spacing:0.000000pt;}
.ls2_c01017{letter-spacing:2.666667pt;}
.ls0_c01017{letter-spacing:26.805333pt;}
.ws3_c01017{word-spacing:-35.154667pt;}
.ws1_c01017{word-spacing:-25.333333pt;}
.ws2_c01017{word-spacing:-17.994667pt;}
.ws0_c01017{word-spacing:-0.149333pt;}
.ws4_c01017{word-spacing:0.000000pt;}
._2d_c01017{margin-left:-45.013333pt;}
._35_c01017{margin-left:-26.208000pt;}
._25_c01017{margin-left:-24.800000pt;}
._8_c01017{margin-left:-22.400000pt;}
._36_c01017{margin-left:-16.360000pt;}
._2f_c01017{margin-left:-14.720000pt;}
._2e_c01017{margin-left:-12.800000pt;}
._30_c01017{margin-left:-11.733333pt;}
._20_c01017{margin-left:-10.496000pt;}
._31_c01017{margin-left:-9.600000pt;}
._37_c01017{margin-left:-7.866667pt;}
._2c_c01017{margin-left:-5.760000pt;}
._2b_c01017{margin-left:-4.693333pt;}
._1b_c01017{margin-left:-2.944000pt;}
._1c_c01017{margin-left:-1.920000pt;}
._11_c01017{margin-left:-1.024000pt;}
._d_c01017{width:1.706667pt;}
._3_c01017{width:2.901333pt;}
._4_c01017{width:3.840000pt;}
._9_c01017{width:5.376000pt;}
._b_c01017{width:6.826667pt;}
._1_c01017{width:8.608000pt;}
._18_c01017{width:9.642667pt;}
._a_c01017{width:11.349333pt;}
._17_c01017{width:13.109333pt;}
._0_c01017{width:14.634667pt;}
._13_c01017{width:16.469333pt;}
._23_c01017{width:17.664000pt;}
._15_c01017{width:18.752000pt;}
._1f_c01017{width:21.525333pt;}
._16_c01017{width:22.613333pt;}
._1d_c01017{width:24.405333pt;}
._e_c01017{width:26.122667pt;}
._f_c01017{width:27.136000pt;}
._24_c01017{width:29.098667pt;}
._6_c01017{width:30.805333pt;}
._14_c01017{width:32.256000pt;}
._22_c01017{width:34.304000pt;}
._3c_c01017{width:35.808000pt;}
._5_c01017{width:36.778667pt;}
._28_c01017{width:38.112000pt;}
._10_c01017{width:40.224000pt;}
._2_c01017{width:41.557333pt;}
._19_c01017{width:43.264000pt;}
._21_c01017{width:44.458667pt;}
._12_c01017{width:45.568000pt;}
._2a_c01017{width:47.360000pt;}
._1e_c01017{width:48.373333pt;}
._1a_c01017{width:50.090667pt;}
._c_c01017{width:51.370667pt;}
._29_c01017{width:53.418667pt;}
._27_c01017{width:55.797333pt;}
._41_c01017{width:57.493333pt;}
._42_c01017{width:59.221333pt;}
._26_c01017{width:61.013333pt;}
._39_c01017{width:62.314667pt;}
._44_c01017{width:63.498667pt;}
._7_c01017{width:66.154667pt;}
._46_c01017{width:70.485333pt;}
._45_c01017{width:80.992000pt;}
._32_c01017{width:86.544000pt;}
._34_c01017{width:89.989333pt;}
._33_c01017{width:93.677333pt;}
._3f_c01017{width:96.256000pt;}
._3d_c01017{width:103.040000pt;}
._3b_c01017{width:104.170667pt;}
._38_c01017{width:155.690667pt;}
._43_c01017{width:158.101333pt;}
._40_c01017{width:266.773333pt;}
._3a_c01017{width:381.968000pt;}
._3e_c01017{width:693.632000pt;}
.fs6_c01017{font-size:42.666667pt;}
.fs0_c01017{font-size:74.666667pt;}
.fs1_c01017{font-size:85.333333pt;}
.fs2_c01017{font-size:90.666667pt;}
.fs4_c01017{font-size:104.000000pt;}
.fs5_c01017{font-size:168.000000pt;}
.fs3_c01017{font-size:213.333333pt;}
.y0_c01017{bottom:0.000000pt;}
.y20_c01017{bottom:2.760000pt;}
.y1f_c01017{bottom:6.425219pt;}
.y1e_c01017{bottom:91.213333pt;}
.y1d_c01017{bottom:122.413333pt;}
.y1c_c01017{bottom:152.146667pt;}
.y1b_c01017{bottom:182.413333pt;}
.y1a_c01017{bottom:213.080000pt;}
.y19_c01017{bottom:241.480000pt;}
.y18_c01017{bottom:273.080000pt;}
.y17_c01017{bottom:303.613333pt;}
.y16_c01017{bottom:333.346667pt;}
.y15_c01017{bottom:363.613333pt;}
.y14_c01017{bottom:393.613333pt;}
.y13_c01017{bottom:422.813333pt;}
.y12_c01017{bottom:453.880000pt;}
.y11_c01017{bottom:483.880000pt;}
.y10_c01017{bottom:564.946667pt;}
.yf_c01017{bottom:610.546667pt;}
.ye_c01017{bottom:662.813333pt;}
.yd_c01017{bottom:752.413333pt;}
.yc_c01017{bottom:782.680000pt;}
.yb_c01017{bottom:812.146667pt;}
.ya_c01017{bottom:841.880000pt;}
.y9_c01017{bottom:870.946667pt;}
.y8_c01017{bottom:900.413333pt;}
.y7_c01017{bottom:929.480000pt;}
.y6_c01017{bottom:959.480000pt;}
.y5_c01017{bottom:989.480000pt;}
.y4_c01017{bottom:1019.080000pt;}
.y3_c01017{bottom:1048.280000pt;}
.y2_c01017{bottom:1077.880000pt;}
.y1_c01017{bottom:1107.080000pt;}
.h6_c01017{height:11.733399pt;}
.h7_c01017{height:38.937500pt;}
.h2_c01017{height:108.041667pt;}
.h4_c01017{height:110.968000pt;}
.h5_c01017{height:212.707031pt;}
.h3_c01017{height:215.000000pt;}
.h0_c01017{height:1204.333333pt;}
.h1_c01017{height:1204.666667pt;}
.w2_c01017{width:93.222667pt;}
.w0_c01017{width:751.666667pt;}
.w1_c01017{width:752.000000pt;}
.x0_c01017{left:0.000000pt;}
.xf_c01017{left:158.666667pt;}
.xd_c01017{left:167.333333pt;}
.xe_c01017{left:200.400000pt;}
.xa_c01017{left:202.800000pt;}
.xb_c01017{left:203.733333pt;}
.xc_c01017{left:204.800000pt;}
.x4_c01017{left:205.733333pt;}
.x1_c01017{left:207.200000pt;}
.x2_c01017{left:208.133333pt;}
.x3_c01017{left:210.000000pt;}
.x5_c01017{left:217.466667pt;}
.x9_c01017{left:234.000000pt;}
.x6_c01017{left:238.533333pt;}
.x8_c01017{left:252.266667pt;}
.x10_c01017{left:333.001546pt;}
.x7_c01017{left:373.733333pt;}
}





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

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_15f745de29caf330138ba628.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01018;src:url('chunks/assets/font_d68ca77d54a3bcc369ef92ae.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01018;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls2_c01018{letter-spacing:0.000000px;}
.ls1_c01018{letter-spacing:13.800000px;}
.ls0_c01018{letter-spacing:15.600000px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01018{word-spacing:-23.136000px;}
.ws1_c01018{word-spacing:0.000000px;}
._3a_c01018{margin-left:-31.776000px;}
._1e_c01018{margin-left:-22.800000px;}
._36_c01018{margin-left:-20.544000px;}
._37_c01018{margin-left:-14.496000px;}
._34_c01018{margin-left:-13.248000px;}
._33_c01018{margin-left:-11.904000px;}
._35_c01018{margin-left:-9.984000px;}
._1f_c01018{margin-left:-7.680000px;}
._31_c01018{margin-left:-6.048000px;}
._18_c01018{margin-left:-4.416000px;}
._c_c01018{margin-left:-3.264000px;}
._1b_c01018{margin-left:-2.112000px;}
._10_c01018{margin-left:-1.056000px;}
._e_c01018{width:1.152000px;}
._0_c01018{width:2.496000px;}
._2_c01018{width:3.840000px;}
._1_c01018{width:5.088000px;}
._7_c01018{width:6.432000px;}
._3_c01018{width:8.448000px;}
._1c_c01018{width:9.504000px;}
._a_c01018{width:10.560000px;}
._6_c01018{width:11.808000px;}
._13_c01018{width:12.960000px;}
._5_c01018{width:14.208000px;}
._8_c01018{width:15.552000px;}
._39_c01018{width:16.896000px;}
._4_c01018{width:17.952000px;}
._9_c01018{width:19.584000px;}
._25_c01018{width:21.888000px;}
._30_c01018{width:24.192000px;}
._f_c01018{width:25.440000px;}
._19_c01018{width:26.688000px;}
._21_c01018{width:28.128000px;}
._d_c01018{width:29.952000px;}
._b_c01018{width:31.584000px;}
._2d_c01018{width:32.832000px;}
._11_c01018{width:34.176000px;}
._22_c01018{width:36.000000px;}
._17_c01018{width:37.152000px;}
._1a_c01018{width:39.168000px;}
._12_c01018{width:40.512000px;}
._32_c01018{width:41.664000px;}
._15_c01018{width:42.912000px;}
._38_c01018{width:44.736000px;}
._14_c01018{width:46.176000px;}
._16_c01018{width:48.000000px;}
._27_c01018{width:49.056000px;}
._24_c01018{width:51.072000px;}
._3c_c01018{width:52.224000px;}
._1d_c01018{width:53.952000px;}
._2e_c01018{width:56.544000px;}
._23_c01018{width:58.560000px;}
._3b_c01018{width:60.384000px;}
._2b_c01018{width:71.136000px;}
._28_c01018{width:73.152000px;}
._29_c01018{width:74.784000px;}
._2a_c01018{width:76.800000px;}
._2f_c01018{width:79.488000px;}
._26_c01018{width:82.368000px;}
._2c_c01018{width:90.816000px;}
._20_c01018{width:187.488000px;}
.fc2_c01018{color:transparent;}
.fc1_c01018{color:rgb(128,128,128);}
.fc0_c01018{color:rgb(0,0,0);}
.fs3_c01018{font-size:48.000000px;}
.fs0_c01018{font-size:96.000000px;}
.fs1_c01018{font-size:102.000000px;}
.fs2_c01018{font-size:105.000000px;}
.y0_c01018{bottom:0.000000px;}
.y26_c01018{bottom:3.105000px;}
.y25_c01018{bottom:7.228363px;}
.y24_c01018{bottom:84.750000px;}
.y23_c01018{bottom:115.050000px;}
.y22_c01018{bottom:149.850000px;}
.y21_c01018{bottom:184.050000px;}
.y20_c01018{bottom:218.100000px;}
.y1f_c01018{bottom:251.850000px;}
.y1e_c01018{bottom:285.900000px;}
.y1d_c01018{bottom:319.350000px;}
.y1c_c01018{bottom:353.400000px;}
.y1b_c01018{bottom:387.150000px;}
.y1a_c01018{bottom:420.900000px;}
.y19_c01018{bottom:454.350000px;}
.y18_c01018{bottom:488.100000px;}
.y17_c01018{bottom:521.550000px;}
.y16_c01018{bottom:555.150000px;}
.y15_c01018{bottom:590.250000px;}
.y14_c01018{bottom:622.650000px;}
.y13_c01018{bottom:656.550000px;}
.y12_c01018{bottom:689.850000px;}
.y11_c01018{bottom:724.200000px;}
.y10_c01018{bottom:757.650000px;}
.yf_c01018{bottom:791.100000px;}
.ye_c01018{bottom:823.500000px;}
.yd_c01018{bottom:856.950000px;}
.yc_c01018{bottom:890.550000px;}
.yb_c01018{bottom:924.000000px;}
.ya_c01018{bottom:957.450000px;}
.y9_c01018{bottom:990.450000px;}
.y8_c01018{bottom:1024.950000px;}
.y7_c01018{bottom:1056.750000px;}
.y6_c01018{bottom:1089.750000px;}
.y5_c01018{bottom:1122.300000px;}
.y4_c01018{bottom:1155.300000px;}
.y3_c01018{bottom:1188.750000px;}
.y2_c01018{bottom:1222.050000px;}
.y1_c01018{bottom:1255.200000px;}
.h4_c01018{height:13.200074px;}
.h5_c01018{height:43.804688px;}
.h2_c01018{height:121.546875px;}
.h3_c01018{height:132.941895px;}
.h1_c01018{height:1355.250000px;}
.h0_c01018{height:1355.400000px;}
.w2_c01018{width:104.875500px;}
.w1_c01018{width:859.500000px;}
.w0_c01018{width:859.650000px;}
.x0_c01018{left:0.000000px;}
.x8_c01018{left:34.200000px;}
.x7_c01018{left:35.850000px;}
.x9_c01018{left:37.500000px;}
.xa_c01018{left:39.150000px;}
.x6_c01018{left:40.200000px;}
.x4_c01018{left:41.250000px;}
.xb_c01018{left:42.450000px;}
.x3_c01018{left:43.500000px;}
.x1_c01018{left:44.550000px;}
.xc_c01018{left:45.600000px;}
.x2_c01018{left:47.250000px;}
.x5_c01018{left:94.800000px;}
.xe_c01018{left:381.639221px;}
.xd_c01018{left:582.900000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls2_c01018{letter-spacing:0.000000pt;}
.ls1_c01018{letter-spacing:12.266667pt;}
.ls0_c01018{letter-spacing:13.866667pt;}
.ws0_c01018{word-spacing:-20.565333pt;}
.ws1_c01018{word-spacing:0.000000pt;}
._3a_c01018{margin-left:-28.245333pt;}
._1e_c01018{margin-left:-20.266667pt;}
._36_c01018{margin-left:-18.261333pt;}
._37_c01018{margin-left:-12.885333pt;}
._34_c01018{margin-left:-11.776000pt;}
._33_c01018{margin-left:-10.581333pt;}
._35_c01018{margin-left:-8.874667pt;}
._1f_c01018{margin-left:-6.826667pt;}
._31_c01018{margin-left:-5.376000pt;}
._18_c01018{margin-left:-3.925333pt;}
._c_c01018{margin-left:-2.901333pt;}
._1b_c01018{margin-left:-1.877333pt;}
._10_c01018{margin-left:-0.938667pt;}
._e_c01018{width:1.024000pt;}
._0_c01018{width:2.218667pt;}
._2_c01018{width:3.413333pt;}
._1_c01018{width:4.522667pt;}
._7_c01018{width:5.717333pt;}
._3_c01018{width:7.509333pt;}
._1c_c01018{width:8.448000pt;}
._a_c01018{width:9.386667pt;}
._6_c01018{width:10.496000pt;}
._13_c01018{width:11.520000pt;}
._5_c01018{width:12.629333pt;}
._8_c01018{width:13.824000pt;}
._39_c01018{width:15.018667pt;}
._4_c01018{width:15.957333pt;}
._9_c01018{width:17.408000pt;}
._25_c01018{width:19.456000pt;}
._30_c01018{width:21.504000pt;}
._f_c01018{width:22.613333pt;}
._19_c01018{width:23.722667pt;}
._21_c01018{width:25.002667pt;}
._d_c01018{width:26.624000pt;}
._b_c01018{width:28.074667pt;}
._2d_c01018{width:29.184000pt;}
._11_c01018{width:30.378667pt;}
._22_c01018{width:32.000000pt;}
._17_c01018{width:33.024000pt;}
._1a_c01018{width:34.816000pt;}
._12_c01018{width:36.010667pt;}
._32_c01018{width:37.034667pt;}
._15_c01018{width:38.144000pt;}
._38_c01018{width:39.765333pt;}
._14_c01018{width:41.045333pt;}
._16_c01018{width:42.666667pt;}
._27_c01018{width:43.605333pt;}
._24_c01018{width:45.397333pt;}
._3c_c01018{width:46.421333pt;}
._1d_c01018{width:47.957333pt;}
._2e_c01018{width:50.261333pt;}
._23_c01018{width:52.053333pt;}
._3b_c01018{width:53.674667pt;}
._2b_c01018{width:63.232000pt;}
._28_c01018{width:65.024000pt;}
._29_c01018{width:66.474667pt;}
._2a_c01018{width:68.266667pt;}
._2f_c01018{width:70.656000pt;}
._26_c01018{width:73.216000pt;}
._2c_c01018{width:80.725333pt;}
._20_c01018{width:166.656000pt;}
.fs3_c01018{font-size:42.666667pt;}
.fs0_c01018{font-size:85.333333pt;}
.fs1_c01018{font-size:90.666667pt;}
.fs2_c01018{font-size:93.333333pt;}
.y0_c01018{bottom:0.000000pt;}
.y26_c01018{bottom:2.760000pt;}
.y25_c01018{bottom:6.425212pt;}
.y24_c01018{bottom:75.333333pt;}
.y23_c01018{bottom:102.266667pt;}
.y22_c01018{bottom:133.200000pt;}
.y21_c01018{bottom:163.600000pt;}
.y20_c01018{bottom:193.866667pt;}
.y1f_c01018{bottom:223.866667pt;}
.y1e_c01018{bottom:254.133333pt;}
.y1d_c01018{bottom:283.866667pt;}
.y1c_c01018{bottom:314.133333pt;}
.y1b_c01018{bottom:344.133333pt;}
.y1a_c01018{bottom:374.133333pt;}
.y19_c01018{bottom:403.866667pt;}
.y18_c01018{bottom:433.866667pt;}
.y17_c01018{bottom:463.600000pt;}
.y16_c01018{bottom:493.466667pt;}
.y15_c01018{bottom:524.666667pt;}
.y14_c01018{bottom:553.466667pt;}
.y13_c01018{bottom:583.600000pt;}
.y12_c01018{bottom:613.200000pt;}
.y11_c01018{bottom:643.733333pt;}
.y10_c01018{bottom:673.466667pt;}
.yf_c01018{bottom:703.200000pt;}
.ye_c01018{bottom:732.000000pt;}
.yd_c01018{bottom:761.733333pt;}
.yc_c01018{bottom:791.600000pt;}
.yb_c01018{bottom:821.333333pt;}
.ya_c01018{bottom:851.066667pt;}
.y9_c01018{bottom:880.400000pt;}
.y8_c01018{bottom:911.066667pt;}
.y7_c01018{bottom:939.333333pt;}
.y6_c01018{bottom:968.666667pt;}
.y5_c01018{bottom:997.600000pt;}
.y4_c01018{bottom:1026.933333pt;}
.y3_c01018{bottom:1056.666667pt;}
.y2_c01018{bottom:1086.266667pt;}
.y1_c01018{bottom:1115.733333pt;}
.h4_c01018{height:11.733399pt;}
.h5_c01018{height:38.937500pt;}
.h2_c01018{height:108.041667pt;}
.h3_c01018{height:118.170573pt;}
.h1_c01018{height:1204.666667pt;}
.h0_c01018{height:1204.800000pt;}
.w2_c01018{width:93.222667pt;}
.w1_c01018{width:764.000000pt;}
.w0_c01018{width:764.133333pt;}
.x0_c01018{left:0.000000pt;}
.x8_c01018{left:30.400000pt;}
.x7_c01018{left:31.866667pt;}
.x9_c01018{left:33.333333pt;}
.xa_c01018{left:34.800000pt;}
.x6_c01018{left:35.733333pt;}
.x4_c01018{left:36.666667pt;}
.xb_c01018{left:37.733333pt;}
.x3_c01018{left:38.666667pt;}
.x1_c01018{left:39.600000pt;}
.xc_c01018{left:40.533333pt;}
.x2_c01018{left:42.000000pt;}
.x5_c01018{left:84.266667pt;}
.xe_c01018{left:339.234863pt;}
.xd_c01018{left:518.133333pt;}
}





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

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_66681967c3296a5124d4ed54.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01019;src:url('chunks/assets/font_4c608fe76e3951210d96ce33.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01019;src:url('chunks/assets/font_c5d44dfa00674cdd0055a8a8.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_3156823e50332eb0928f5d36.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01019;src:url('chunks/assets/font_e22f615af11a62d3b2abb15b.woff2')format("woff");}.ff5_c01019{font-family:ff5_c01019;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01019;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01019{font-family:ff6_c01019;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls2_c01019{letter-spacing:0.000000px;}
.ls1_c01019{letter-spacing:11.100000px;}
.ls4_c01019{letter-spacing:12.000000px;}
.ls3_c01019{letter-spacing:15.000000px;}
.ls0_c01019{letter-spacing:51.715200px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01019{word-spacing:-63.504000px;}
.ws1_c01019{word-spacing:-37.464000px;}
.ws2_c01019{word-spacing:0.000000px;}
._51_c01019{margin-left:-86.304000px;}
._54_c01019{margin-left:-53.280000px;}
._56_c01019{margin-left:-50.880000px;}
._34_c01019{margin-left:-39.840000px;}
._3f_c01019{margin-left:-28.275000px;}
._44_c01019{margin-left:-24.867000px;}
._49_c01019{margin-left:-22.620000px;}
._52_c01019{margin-left:-21.408000px;}
._46_c01019{margin-left:-20.097000px;}
._35_c01019{margin-left:-14.016000px;}
._41_c01019{margin-left:-12.774000px;}
._22_c01019{margin-left:-10.752000px;}
._31_c01019{margin-left:-8.640000px;}
._4b_c01019{margin-left:-7.212000px;}
._37_c01019{margin-left:-5.952000px;}
._32_c01019{margin-left:-4.752000px;}
._38_c01019{margin-left:-3.648000px;}
._2d_c01019{margin-left:-2.304000px;}
._13_c01019{margin-left:-1.152000px;}
._3_c01019{width:1.536000px;}
._6_c01019{width:2.784000px;}
._2_c01019{width:3.840000px;}
._a_c01019{width:4.896000px;}
._7_c01019{width:6.048000px;}
._14_c01019{width:7.104000px;}
._36_c01019{width:8.160000px;}
._0_c01019{width:9.312000px;}
._17_c01019{width:10.464000px;}
._1a_c01019{width:12.096000px;}
._21_c01019{width:13.536000px;}
._1b_c01019{width:15.168000px;}
._1d_c01019{width:16.800000px;}
._18_c01019{width:18.432000px;}
._1c_c01019{width:20.832000px;}
._28_c01019{width:21.912000px;}
._29_c01019{width:24.192000px;}
._19_c01019{width:25.728000px;}
._2e_c01019{width:27.936000px;}
._10_c01019{width:29.760000px;}
._1e_c01019{width:31.968000px;}
._5_c01019{width:33.696000px;}
._16_c01019{width:36.288000px;}
._15_c01019{width:39.072000px;}
._4_c01019{width:40.128000px;}
._27_c01019{width:41.472000px;}
._e_c01019{width:43.200000px;}
._20_c01019{width:44.448000px;}
._12_c01019{width:45.888000px;}
._d_c01019{width:46.944000px;}
._11_c01019{width:48.000000px;}
._f_c01019{width:50.016000px;}
._b_c01019{width:51.264000px;}
._c_c01019{width:52.704000px;}
._9_c01019{width:54.432000px;}
._2c_c01019{width:55.872000px;}
._1_c01019{width:57.024000px;}
._2b_c01019{width:58.752000px;}
._8_c01019{width:60.576000px;}
._23_c01019{width:62.304000px;}
._4f_c01019{width:63.924000px;}
._25_c01019{width:64.992000px;}
._1f_c01019{width:67.392000px;}
._26_c01019{width:68.448000px;}
._24_c01019{width:77.664000px;}
._47_c01019{width:80.388000px;}
._2a_c01019{width:81.888000px;}
._3b_c01019{width:87.936000px;}
._3d_c01019{width:90.720000px;}
._2f_c01019{width:93.168000px;}
._53_c01019{width:95.712000px;}
._33_c01019{width:98.088000px;}
._30_c01019{width:111.840000px;}
._4c_c01019{width:124.770000px;}
._43_c01019{width:126.642000px;}
._4e_c01019{width:128.070000px;}
._3a_c01019{width:134.304000px;}
._45_c01019{width:143.985000px;}
._4a_c01019{width:157.209000px;}
._50_c01019{width:177.861000px;}
._3e_c01019{width:277.056000px;}
._57_c01019{width:286.752000px;}
._55_c01019{width:336.480000px;}
._42_c01019{width:401.370000px;}
._48_c01019{width:882.666000px;}
._4d_c01019{width:923.040000px;}
._40_c01019{width:948.432000px;}
._39_c01019{width:972.576000px;}
._3c_c01019{width:1072.608000px;}
.fc2_c01019{color:transparent;}
.fc1_c01019{color:rgb(128,128,128);}
.fc0_c01019{color:rgb(0,0,0);}
.fs6_c01019{font-size:27.000000px;}
.fs5_c01019{font-size:30.000000px;}
.fs7_c01019{font-size:42.000000px;}
.fs8_c01019{font-size:48.000000px;}
.fs1_c01019{font-size:84.000000px;}
.fs4_c01019{font-size:87.000000px;}
.fs0_c01019{font-size:96.000000px;}
.fs3_c01019{font-size:115.200000px;}
.fs2_c01019{font-size:144.000000px;}
.y0_c01019{bottom:0.000000px;}
.y1f_c01019{bottom:3.105000px;}
.y1e_c01019{bottom:7.228369px;}
.y1c_c01019{bottom:210.570000px;}
.y1b_c01019{bottom:235.620000px;}
.y1a_c01019{bottom:244.020000px;}
.y19_c01019{bottom:258.120000px;}
.y18_c01019{bottom:278.370000px;}
.y17_c01019{bottom:293.970000px;}
.y1d_c01019{bottom:321.570000px;}
.y16_c01019{bottom:354.720000px;}
.y15_c01019{bottom:481.170000px;}
.y14_c01019{bottom:514.320000px;}
.y13_c01019{bottom:548.820000px;}
.y12_c01019{bottom:582.420000px;}
.y11_c01019{bottom:616.170000px;}
.y10_c01019{bottom:649.620000px;}
.yf_c01019{bottom:683.370000px;}
.ye_c01019{bottom:781.920000px;}
.yd_c01019{bottom:806.520000px;}
.yc_c01019{bottom:884.820000px;}
.yb_c01019{bottom:918.720000px;}
.ya_c01019{bottom:952.320000px;}
.y9_c01019{bottom:984.870000px;}
.y8_c01019{bottom:1018.170000px;}
.y7_c01019{bottom:1051.620000px;}
.y6_c01019{bottom:1085.070000px;}
.y5_c01019{bottom:1118.370000px;}
.y4_c01019{bottom:1152.120000px;}
.y3_c01019{bottom:1184.670000px;}
.y2_c01019{bottom:1218.270000px;}
.y1_c01019{bottom:1250.820000px;}
.h7_c01019{height:13.200073px;}
.h5_c01019{height:23.258496px;}
.h4_c01019{height:37.983398px;}
.h8_c01019{height:43.804688px;}
.h6_c01019{height:53.176758px;}
.h3_c01019{height:110.151855px;}
.h1_c01019{height:121.546875px;}
.h2_c01019{height:182.320312px;}
.h0_c01019{height:1340.250000px;}
.w2_c01019{width:104.875500px;}
.w1_c01019{width:836.250000px;}
.w0_c01019{width:836.475000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:216.300000px;}
.x2_c01019{left:217.350000px;}
.x3_c01019{left:218.400000px;}
.x4_c01019{left:219.600000px;}
.x6_c01019{left:220.650000px;}
.x5_c01019{left:222.150000px;}
.xb_c01019{left:225.450000px;}
.xc_c01019{left:228.150000px;}
.xf_c01019{left:234.300000px;}
.x10_c01019{left:257.550000px;}
.x8_c01019{left:275.100000px;}
.x13_c01019{left:370.051758px;}
.x11_c01019{left:420.300000px;}
.xa_c01019{left:439.200000px;}
.x9_c01019{left:468.450000px;}
.xe_c01019{left:527.850000px;}
.x7_c01019{left:548.850000px;}
.xd_c01019{left:752.250000px;}
.x12_c01019{left:784.350000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls2_c01019{letter-spacing:0.000000pt;}
.ls1_c01019{letter-spacing:9.866667pt;}
.ls4_c01019{letter-spacing:10.666667pt;}
.ls3_c01019{letter-spacing:13.333333pt;}
.ls0_c01019{letter-spacing:45.969067pt;}
.ws0_c01019{word-spacing:-56.448000pt;}
.ws1_c01019{word-spacing:-33.301333pt;}
.ws2_c01019{word-spacing:0.000000pt;}
._51_c01019{margin-left:-76.714667pt;}
._54_c01019{margin-left:-47.360000pt;}
._56_c01019{margin-left:-45.226667pt;}
._34_c01019{margin-left:-35.413333pt;}
._3f_c01019{margin-left:-25.133333pt;}
._44_c01019{margin-left:-22.104000pt;}
._49_c01019{margin-left:-20.106667pt;}
._52_c01019{margin-left:-19.029333pt;}
._46_c01019{margin-left:-17.864000pt;}
._35_c01019{margin-left:-12.458667pt;}
._41_c01019{margin-left:-11.354667pt;}
._22_c01019{margin-left:-9.557333pt;}
._31_c01019{margin-left:-7.680000pt;}
._4b_c01019{margin-left:-6.410667pt;}
._37_c01019{margin-left:-5.290667pt;}
._32_c01019{margin-left:-4.224000pt;}
._38_c01019{margin-left:-3.242667pt;}
._2d_c01019{margin-left:-2.048000pt;}
._13_c01019{margin-left:-1.024000pt;}
._3_c01019{width:1.365333pt;}
._6_c01019{width:2.474667pt;}
._2_c01019{width:3.413333pt;}
._a_c01019{width:4.352000pt;}
._7_c01019{width:5.376000pt;}
._14_c01019{width:6.314667pt;}
._36_c01019{width:7.253333pt;}
._0_c01019{width:8.277333pt;}
._17_c01019{width:9.301333pt;}
._1a_c01019{width:10.752000pt;}
._21_c01019{width:12.032000pt;}
._1b_c01019{width:13.482667pt;}
._1d_c01019{width:14.933333pt;}
._18_c01019{width:16.384000pt;}
._1c_c01019{width:18.517333pt;}
._28_c01019{width:19.477333pt;}
._29_c01019{width:21.504000pt;}
._19_c01019{width:22.869333pt;}
._2e_c01019{width:24.832000pt;}
._10_c01019{width:26.453333pt;}
._1e_c01019{width:28.416000pt;}
._5_c01019{width:29.952000pt;}
._16_c01019{width:32.256000pt;}
._15_c01019{width:34.730667pt;}
._4_c01019{width:35.669333pt;}
._27_c01019{width:36.864000pt;}
._e_c01019{width:38.400000pt;}
._20_c01019{width:39.509333pt;}
._12_c01019{width:40.789333pt;}
._d_c01019{width:41.728000pt;}
._11_c01019{width:42.666667pt;}
._f_c01019{width:44.458667pt;}
._b_c01019{width:45.568000pt;}
._c_c01019{width:46.848000pt;}
._9_c01019{width:48.384000pt;}
._2c_c01019{width:49.664000pt;}
._1_c01019{width:50.688000pt;}
._2b_c01019{width:52.224000pt;}
._8_c01019{width:53.845333pt;}
._23_c01019{width:55.381333pt;}
._4f_c01019{width:56.821333pt;}
._25_c01019{width:57.770667pt;}
._1f_c01019{width:59.904000pt;}
._26_c01019{width:60.842667pt;}
._24_c01019{width:69.034667pt;}
._47_c01019{width:71.456000pt;}
._2a_c01019{width:72.789333pt;}
._3b_c01019{width:78.165333pt;}
._3d_c01019{width:80.640000pt;}
._2f_c01019{width:82.816000pt;}
._53_c01019{width:85.077333pt;}
._33_c01019{width:87.189333pt;}
._30_c01019{width:99.413333pt;}
._4c_c01019{width:110.906667pt;}
._43_c01019{width:112.570667pt;}
._4e_c01019{width:113.840000pt;}
._3a_c01019{width:119.381333pt;}
._45_c01019{width:127.986667pt;}
._4a_c01019{width:139.741333pt;}
._50_c01019{width:158.098667pt;}
._3e_c01019{width:246.272000pt;}
._57_c01019{width:254.890667pt;}
._55_c01019{width:299.093333pt;}
._42_c01019{width:356.773333pt;}
._48_c01019{width:784.592000pt;}
._4d_c01019{width:820.480000pt;}
._40_c01019{width:843.050667pt;}
._39_c01019{width:864.512000pt;}
._3c_c01019{width:953.429333pt;}
.fs6_c01019{font-size:24.000000pt;}
.fs5_c01019{font-size:26.666667pt;}
.fs7_c01019{font-size:37.333333pt;}
.fs8_c01019{font-size:42.666667pt;}
.fs1_c01019{font-size:74.666667pt;}
.fs4_c01019{font-size:77.333333pt;}
.fs0_c01019{font-size:85.333333pt;}
.fs3_c01019{font-size:102.400000pt;}
.fs2_c01019{font-size:128.000000pt;}
.y0_c01019{bottom:0.000000pt;}
.y1f_c01019{bottom:2.760000pt;}
.y1e_c01019{bottom:6.425217pt;}
.y1c_c01019{bottom:187.173333pt;}
.y1b_c01019{bottom:209.440000pt;}
.y1a_c01019{bottom:216.906667pt;}
.y19_c01019{bottom:229.440000pt;}
.y18_c01019{bottom:247.440000pt;}
.y17_c01019{bottom:261.306667pt;}
.y1d_c01019{bottom:285.840000pt;}
.y16_c01019{bottom:315.306667pt;}
.y15_c01019{bottom:427.706667pt;}
.y14_c01019{bottom:457.173333pt;}
.y13_c01019{bottom:487.840000pt;}
.y12_c01019{bottom:517.706667pt;}
.y11_c01019{bottom:547.706667pt;}
.y10_c01019{bottom:577.440000pt;}
.yf_c01019{bottom:607.440000pt;}
.ye_c01019{bottom:695.040000pt;}
.yd_c01019{bottom:716.906667pt;}
.yc_c01019{bottom:786.506667pt;}
.yb_c01019{bottom:816.640000pt;}
.ya_c01019{bottom:846.506667pt;}
.y9_c01019{bottom:875.440000pt;}
.y8_c01019{bottom:905.040000pt;}
.y7_c01019{bottom:934.773333pt;}
.y6_c01019{bottom:964.506667pt;}
.y5_c01019{bottom:994.106667pt;}
.y4_c01019{bottom:1024.106667pt;}
.y3_c01019{bottom:1053.040000pt;}
.y2_c01019{bottom:1082.906667pt;}
.y1_c01019{bottom:1111.840000pt;}
.h7_c01019{height:11.733399pt;}
.h5_c01019{height:20.674219pt;}
.h4_c01019{height:33.763021pt;}
.h8_c01019{height:38.937500pt;}
.h6_c01019{height:47.268229pt;}
.h3_c01019{height:97.912760pt;}
.h1_c01019{height:108.041667pt;}
.h2_c01019{height:162.062500pt;}
.h0_c01019{height:1191.333333pt;}
.w2_c01019{width:93.222667pt;}
.w1_c01019{width:743.333333pt;}
.w0_c01019{width:743.533333pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:192.266667pt;}
.x2_c01019{left:193.200000pt;}
.x3_c01019{left:194.133333pt;}
.x4_c01019{left:195.200000pt;}
.x6_c01019{left:196.133333pt;}
.x5_c01019{left:197.466667pt;}
.xb_c01019{left:200.400000pt;}
.xc_c01019{left:202.800000pt;}
.xf_c01019{left:208.266667pt;}
.x10_c01019{left:228.933333pt;}
.x8_c01019{left:244.533333pt;}
.x13_c01019{left:328.934896pt;}
.x11_c01019{left:373.600000pt;}
.xa_c01019{left:390.400000pt;}
.x9_c01019{left:416.400000pt;}
.xe_c01019{left:469.200000pt;}
.x7_c01019{left:487.866667pt;}
.xd_c01019{left:668.666667pt;}
.x12_c01019{left:697.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_c01020 {
    display:none;
  }
  .loading-indicator_c01020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01020 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01020 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01020" -> "#page-container .classname_c01020")
 */
.pf_c01020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01020 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01020 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01020 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01020 {overflow:visible;}
  }
}
.c_c01020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01020 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01020:after { /* webkit #35443 */
  content: '';
}
.t_c01020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01020 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01020 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01020 { /* info for Javascript */
  display:none;
}
.l_c01020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_3b8f8978c8b9b6101c8dd428.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01020;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01020;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;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_c01020;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls1_c01020{letter-spacing:0.000000px;}
.ls0_c01020{letter-spacing:3.000000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01020{word-spacing:-54.000000px;}
.ws1_c01020{word-spacing:0.000000px;}
._1d_c01020{margin-left:-72.864000px;}
._37_c01020{margin-left:-20.784000px;}
._1f_c01020{margin-left:-19.296000px;}
._19_c01020{margin-left:-17.280000px;}
._30_c01020{margin-left:-11.424000px;}
._4_c01020{margin-left:-9.792000px;}
._2f_c01020{margin-left:-8.544000px;}
._e_c01020{margin-left:-7.488000px;}
._f_c01020{margin-left:-6.192000px;}
._6_c01020{margin-left:-5.184000px;}
._10_c01020{margin-left:-3.888000px;}
._c_c01020{margin-left:-2.880000px;}
._d_c01020{margin-left:-1.728000px;}
._2b_c01020{width:1.008000px;}
._8_c01020{width:2.016000px;}
._1_c01020{width:3.456000px;}
._13_c01020{width:5.040000px;}
._0_c01020{width:6.480000px;}
._2_c01020{width:7.776000px;}
._27_c01020{width:9.024000px;}
._2a_c01020{width:10.176000px;}
._3d_c01020{width:11.376000px;}
._3f_c01020{width:12.480000px;}
._a_c01020{width:13.680000px;}
._24_c01020{width:14.976000px;}
._3c_c01020{width:15.984000px;}
._b_c01020{width:17.136000px;}
._3a_c01020{width:19.104000px;}
._1a_c01020{width:20.448000px;}
._41_c01020{width:22.128000px;}
._1c_c01020{width:25.632000px;}
._3b_c01020{width:27.840000px;}
._1b_c01020{width:28.944000px;}
._31_c01020{width:30.144000px;}
._39_c01020{width:32.304000px;}
._11_c01020{width:33.408000px;}
._25_c01020{width:35.328000px;}
._2d_c01020{width:37.104000px;}
._2c_c01020{width:39.264000px;}
._21_c01020{width:40.416000px;}
._36_c01020{width:41.568000px;}
._14_c01020{width:42.912000px;}
._34_c01020{width:44.112000px;}
._38_c01020{width:45.648000px;}
._33_c01020{width:47.184000px;}
._22_c01020{width:49.536000px;}
._32_c01020{width:51.936000px;}
._3e_c01020{width:53.184000px;}
._16_c01020{width:55.008000px;}
._18_c01020{width:56.448000px;}
._40_c01020{width:58.176000px;}
._35_c01020{width:59.568000px;}
._5_c01020{width:61.344000px;}
._43_c01020{width:62.448000px;}
._23_c01020{width:63.648000px;}
._2e_c01020{width:64.656000px;}
._28_c01020{width:67.104000px;}
._9_c01020{width:68.688000px;}
._3_c01020{width:69.984000px;}
._26_c01020{width:71.424000px;}
._17_c01020{width:72.864000px;}
._12_c01020{width:74.736000px;}
._29_c01020{width:77.424000px;}
._15_c01020{width:82.944000px;}
._1e_c01020{width:91.584000px;}
._7_c01020{width:93.744000px;}
._42_c01020{width:313.248000px;}
._20_c01020{width:489.024000px;}
.fc2_c01020{color:transparent;}
.fc1_c01020{color:rgb(128,128,128);}
.fc0_c01020{color:rgb(0,0,0);}
.fs3_c01020{font-size:48.000000px;}
.fs1_c01020{font-size:96.000000px;}
.fs2_c01020{font-size:102.000000px;}
.fs0_c01020{font-size:144.000000px;}
.y0_c01020{bottom:0.000000px;}
.y21_c01020{bottom:3.105000px;}
.y20_c01020{bottom:7.228369px;}
.y1f_c01020{bottom:133.620000px;}
.y1e_c01020{bottom:168.120000px;}
.y1d_c01020{bottom:202.770000px;}
.y1c_c01020{bottom:236.970000px;}
.y1b_c01020{bottom:271.020000px;}
.y1a_c01020{bottom:304.320000px;}
.y19_c01020{bottom:338.220000px;}
.y18_c01020{bottom:372.270000px;}
.y17_c01020{bottom:406.320000px;}
.y16_c01020{bottom:440.070000px;}
.y15_c01020{bottom:473.820000px;}
.y14_c01020{bottom:507.570000px;}
.y13_c01020{bottom:541.320000px;}
.y12_c01020{bottom:574.470000px;}
.y11_c01020{bottom:608.220000px;}
.y10_c01020{bottom:642.570000px;}
.yf_c01020{bottom:675.720000px;}
.ye_c01020{bottom:709.470000px;}
.yd_c01020{bottom:743.070000px;}
.yc_c01020{bottom:777.270000px;}
.yb_c01020{bottom:809.820000px;}
.ya_c01020{bottom:842.970000px;}
.y9_c01020{bottom:876.120000px;}
.y8_c01020{bottom:909.870000px;}
.y7_c01020{bottom:942.870000px;}
.y6_c01020{bottom:975.720000px;}
.y5_c01020{bottom:1068.570000px;}
.y4_c01020{bottom:1116.420000px;}
.y3_c01020{bottom:1166.670000px;}
.y2_c01020{bottom:1216.620000px;}
.y1_c01020{bottom:1267.620000px;}
.h4_c01020{height:13.200073px;}
.h5_c01020{height:43.804688px;}
.h3_c01020{height:121.546875px;}
.h2_c01020{height:182.320312px;}
.h0_c01020{height:1375.350000px;}
.h1_c01020{height:1375.500000px;}
.w2_c01020{width:104.875500px;}
.w0_c01020{width:872.625000px;}
.w1_c01020{width:873.000000px;}
.x0_c01020{left:0.000000px;}
.x7_c01020{left:39.750000px;}
.x8_c01020{left:40.800000px;}
.x9_c01020{left:41.850000px;}
.x1_c01020{left:44.550000px;}
.x4_c01020{left:48.900000px;}
.x2_c01020{left:125.550000px;}
.x3_c01020{left:149.850000px;}
.x5_c01020{left:267.000000px;}
.x6_c01020{left:301.050000px;}
.xa_c01020{left:388.126740px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls1_c01020{letter-spacing:0.000000pt;}
.ls0_c01020{letter-spacing:2.666667pt;}
.ws0_c01020{word-spacing:-48.000000pt;}
.ws1_c01020{word-spacing:0.000000pt;}
._1d_c01020{margin-left:-64.768000pt;}
._37_c01020{margin-left:-18.474667pt;}
._1f_c01020{margin-left:-17.152000pt;}
._19_c01020{margin-left:-15.360000pt;}
._30_c01020{margin-left:-10.154667pt;}
._4_c01020{margin-left:-8.704000pt;}
._2f_c01020{margin-left:-7.594667pt;}
._e_c01020{margin-left:-6.656000pt;}
._f_c01020{margin-left:-5.504000pt;}
._6_c01020{margin-left:-4.608000pt;}
._10_c01020{margin-left:-3.456000pt;}
._c_c01020{margin-left:-2.560000pt;}
._d_c01020{margin-left:-1.536000pt;}
._2b_c01020{width:0.896000pt;}
._8_c01020{width:1.792000pt;}
._1_c01020{width:3.072000pt;}
._13_c01020{width:4.480000pt;}
._0_c01020{width:5.760000pt;}
._2_c01020{width:6.912000pt;}
._27_c01020{width:8.021333pt;}
._2a_c01020{width:9.045333pt;}
._3d_c01020{width:10.112000pt;}
._3f_c01020{width:11.093333pt;}
._a_c01020{width:12.160000pt;}
._24_c01020{width:13.312000pt;}
._3c_c01020{width:14.208000pt;}
._b_c01020{width:15.232000pt;}
._3a_c01020{width:16.981333pt;}
._1a_c01020{width:18.176000pt;}
._41_c01020{width:19.669333pt;}
._1c_c01020{width:22.784000pt;}
._3b_c01020{width:24.746667pt;}
._1b_c01020{width:25.728000pt;}
._31_c01020{width:26.794667pt;}
._39_c01020{width:28.714667pt;}
._11_c01020{width:29.696000pt;}
._25_c01020{width:31.402667pt;}
._2d_c01020{width:32.981333pt;}
._2c_c01020{width:34.901333pt;}
._21_c01020{width:35.925333pt;}
._36_c01020{width:36.949333pt;}
._14_c01020{width:38.144000pt;}
._34_c01020{width:39.210667pt;}
._38_c01020{width:40.576000pt;}
._33_c01020{width:41.941333pt;}
._22_c01020{width:44.032000pt;}
._32_c01020{width:46.165333pt;}
._3e_c01020{width:47.274667pt;}
._16_c01020{width:48.896000pt;}
._18_c01020{width:50.176000pt;}
._40_c01020{width:51.712000pt;}
._35_c01020{width:52.949333pt;}
._5_c01020{width:54.528000pt;}
._43_c01020{width:55.509333pt;}
._23_c01020{width:56.576000pt;}
._2e_c01020{width:57.472000pt;}
._28_c01020{width:59.648000pt;}
._9_c01020{width:61.056000pt;}
._3_c01020{width:62.208000pt;}
._26_c01020{width:63.488000pt;}
._17_c01020{width:64.768000pt;}
._12_c01020{width:66.432000pt;}
._29_c01020{width:68.821333pt;}
._15_c01020{width:73.728000pt;}
._1e_c01020{width:81.408000pt;}
._7_c01020{width:83.328000pt;}
._42_c01020{width:278.442667pt;}
._20_c01020{width:434.688000pt;}
.fs3_c01020{font-size:42.666667pt;}
.fs1_c01020{font-size:85.333333pt;}
.fs2_c01020{font-size:90.666667pt;}
.fs0_c01020{font-size:128.000000pt;}
.y0_c01020{bottom:0.000000pt;}
.y21_c01020{bottom:2.760000pt;}
.y20_c01020{bottom:6.425217pt;}
.y1f_c01020{bottom:118.773333pt;}
.y1e_c01020{bottom:149.440000pt;}
.y1d_c01020{bottom:180.240000pt;}
.y1c_c01020{bottom:210.640000pt;}
.y1b_c01020{bottom:240.906667pt;}
.y1a_c01020{bottom:270.506667pt;}
.y19_c01020{bottom:300.640000pt;}
.y18_c01020{bottom:330.906667pt;}
.y17_c01020{bottom:361.173333pt;}
.y16_c01020{bottom:391.173333pt;}
.y15_c01020{bottom:421.173333pt;}
.y14_c01020{bottom:451.173333pt;}
.y13_c01020{bottom:481.173333pt;}
.y12_c01020{bottom:510.640000pt;}
.y11_c01020{bottom:540.640000pt;}
.y10_c01020{bottom:571.173333pt;}
.yf_c01020{bottom:600.640000pt;}
.ye_c01020{bottom:630.640000pt;}
.yd_c01020{bottom:660.506667pt;}
.yc_c01020{bottom:690.906667pt;}
.yb_c01020{bottom:719.840000pt;}
.ya_c01020{bottom:749.306667pt;}
.y9_c01020{bottom:778.773333pt;}
.y8_c01020{bottom:808.773333pt;}
.y7_c01020{bottom:838.106667pt;}
.y6_c01020{bottom:867.306667pt;}
.y5_c01020{bottom:949.840000pt;}
.y4_c01020{bottom:992.373333pt;}
.y3_c01020{bottom:1037.040000pt;}
.y2_c01020{bottom:1081.440000pt;}
.y1_c01020{bottom:1126.773333pt;}
.h4_c01020{height:11.733399pt;}
.h5_c01020{height:38.937500pt;}
.h3_c01020{height:108.041667pt;}
.h2_c01020{height:162.062500pt;}
.h0_c01020{height:1222.533333pt;}
.h1_c01020{height:1222.666667pt;}
.w2_c01020{width:93.222667pt;}
.w0_c01020{width:775.666667pt;}
.w1_c01020{width:776.000000pt;}
.x0_c01020{left:0.000000pt;}
.x7_c01020{left:35.333333pt;}
.x8_c01020{left:36.266667pt;}
.x9_c01020{left:37.200000pt;}
.x1_c01020{left:39.600000pt;}
.x4_c01020{left:43.466667pt;}
.x2_c01020{left:111.600000pt;}
.x3_c01020{left:133.200000pt;}
.x5_c01020{left:237.333333pt;}
.x6_c01020{left:267.600000pt;}
.xa_c01020{left:345.001546pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_2d918a90025415f2a69b4b1f.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01021;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls0_c01021{letter-spacing:0.000000px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01021{word-spacing:0.000000px;}
._28_c01021{margin-left:-83.595000px;}
._2c_c01021{margin-left:-32.820000px;}
._15_c01021{margin-left:-30.240000px;}
._2f_c01021{margin-left:-13.638000px;}
._25_c01021{margin-left:-8.733000px;}
._31_c01021{margin-left:-6.459000px;}
._24_c01021{margin-left:-4.926000px;}
._4_c01021{margin-left:-3.456000px;}
._3_c01021{margin-left:-2.016000px;}
._d_c01021{width:1.302000px;}
._e_c01021{width:2.304000px;}
._f_c01021{width:3.456000px;}
._8_c01021{width:4.581000px;}
._0_c01021{width:6.090000px;}
._7_c01021{width:7.269000px;}
._1_c01021{width:8.613000px;}
._27_c01021{width:9.750000px;}
._6_c01021{width:10.779000px;}
._1e_c01021{width:11.895000px;}
._17_c01021{width:13.929000px;}
._14_c01021{width:15.252000px;}
._33_c01021{width:16.386000px;}
._5_c01021{width:17.472000px;}
._37_c01021{width:19.623000px;}
._29_c01021{width:21.480000px;}
._36_c01021{width:24.402000px;}
._11_c01021{width:25.632000px;}
._12_c01021{width:27.123000px;}
._2a_c01021{width:28.125000px;}
._a_c01021{width:29.814000px;}
._1f_c01021{width:31.806000px;}
._2d_c01021{width:32.877000px;}
._b_c01021{width:35.079000px;}
._2_c01021{width:36.612000px;}
._10_c01021{width:37.809000px;}
._21_c01021{width:38.853000px;}
._18_c01021{width:40.833000px;}
._30_c01021{width:42.732000px;}
._1d_c01021{width:43.884000px;}
._c_c01021{width:45.024000px;}
._23_c01021{width:46.593000px;}
._13_c01021{width:47.700000px;}
._2b_c01021{width:49.113000px;}
._20_c01021{width:50.139000px;}
._9_c01021{width:51.264000px;}
._16_c01021{width:53.376000px;}
._19_c01021{width:55.446000px;}
._26_c01021{width:56.565000px;}
._1c_c01021{width:58.491000px;}
._32_c01021{width:60.147000px;}
._2e_c01021{width:62.451000px;}
._1a_c01021{width:64.416000px;}
._34_c01021{width:67.293000px;}
._1b_c01021{width:69.546000px;}
._35_c01021{width:71.103000px;}
._22_c01021{width:169.701000px;}
._38_c01021{width:1970.292000px;}
.fc2_c01021{color:transparent;}
.fc1_c01021{color:rgb(128,128,128);}
.fc0_c01021{color:rgb(0,0,0);}
.fs2_c01021{font-size:48.000000px;}
.fs0_c01021{font-size:87.000000px;}
.fs1_c01021{font-size:96.000000px;}
.y0_c01021{bottom:0.000000px;}
.y26_c01021{bottom:3.105000px;}
.y25_c01021{bottom:7.228369px;}
.y24_c01021{bottom:80.220000px;}
.y23_c01021{bottom:109.320000px;}
.y22_c01021{bottom:144.720000px;}
.y21_c01021{bottom:178.770000px;}
.y20_c01021{bottom:212.970000px;}
.y1f_c01021{bottom:246.420000px;}
.y1e_c01021{bottom:280.770000px;}
.y1d_c01021{bottom:315.120000px;}
.y1c_c01021{bottom:348.570000px;}
.y1b_c01021{bottom:382.770000px;}
.y1a_c01021{bottom:416.820000px;}
.y19_c01021{bottom:450.120000px;}
.y18_c01021{bottom:484.320000px;}
.y17_c01021{bottom:518.370000px;}
.y16_c01021{bottom:552.120000px;}
.y15_c01021{bottom:585.570000px;}
.y14_c01021{bottom:619.320000px;}
.y13_c01021{bottom:653.070000px;}
.y12_c01021{bottom:686.520000px;}
.y11_c01021{bottom:720.120000px;}
.y10_c01021{bottom:752.970000px;}
.yf_c01021{bottom:787.320000px;}
.ye_c01021{bottom:820.770000px;}
.yd_c01021{bottom:854.520000px;}
.yc_c01021{bottom:888.270000px;}
.yb_c01021{bottom:921.720000px;}
.ya_c01021{bottom:955.170000px;}
.y9_c01021{bottom:988.170000px;}
.y8_c01021{bottom:1021.320000px;}
.y7_c01021{bottom:1054.920000px;}
.y6_c01021{bottom:1087.770000px;}
.y5_c01021{bottom:1122.120000px;}
.y4_c01021{bottom:1154.970000px;}
.y3_c01021{bottom:1188.870000px;}
.y2_c01021{bottom:1222.020000px;}
.y1_c01021{bottom:1255.170000px;}
.h3_c01021{height:13.200073px;}
.h4_c01021{height:43.804688px;}
.h2_c01021{height:121.546875px;}
.h0_c01021{height:1369.950000px;}
.h1_c01021{height:1370.250000px;}
.w2_c01021{width:104.875500px;}
.w0_c01021{width:854.850000px;}
.w1_c01021{width:855.000000px;}
.x0_c01021{left:0.000000px;}
.x9_c01021{left:200.700000px;}
.x1_c01021{left:210.900000px;}
.x5_c01021{left:211.950000px;}
.x2_c01021{left:213.000000px;}
.x6_c01021{left:215.700000px;}
.x3_c01021{left:216.900000px;}
.x7_c01021{left:218.400000px;}
.x8_c01021{left:219.450000px;}
.xb_c01021{left:220.650000px;}
.xa_c01021{left:221.700000px;}
.xc_c01021{left:226.500000px;}
.x4_c01021{left:264.300000px;}
.xd_c01021{left:379.239258px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls0_c01021{letter-spacing:0.000000pt;}
.ws0_c01021{word-spacing:0.000000pt;}
._28_c01021{margin-left:-74.306667pt;}
._2c_c01021{margin-left:-29.173333pt;}
._15_c01021{margin-left:-26.880000pt;}
._2f_c01021{margin-left:-12.122667pt;}
._25_c01021{margin-left:-7.762667pt;}
._31_c01021{margin-left:-5.741333pt;}
._24_c01021{margin-left:-4.378667pt;}
._4_c01021{margin-left:-3.072000pt;}
._3_c01021{margin-left:-1.792000pt;}
._d_c01021{width:1.157333pt;}
._e_c01021{width:2.048000pt;}
._f_c01021{width:3.072000pt;}
._8_c01021{width:4.072000pt;}
._0_c01021{width:5.413333pt;}
._7_c01021{width:6.461333pt;}
._1_c01021{width:7.656000pt;}
._27_c01021{width:8.666667pt;}
._6_c01021{width:9.581333pt;}
._1e_c01021{width:10.573333pt;}
._17_c01021{width:12.381333pt;}
._14_c01021{width:13.557333pt;}
._33_c01021{width:14.565333pt;}
._5_c01021{width:15.530667pt;}
._37_c01021{width:17.442667pt;}
._29_c01021{width:19.093333pt;}
._36_c01021{width:21.690667pt;}
._11_c01021{width:22.784000pt;}
._12_c01021{width:24.109333pt;}
._2a_c01021{width:25.000000pt;}
._a_c01021{width:26.501333pt;}
._1f_c01021{width:28.272000pt;}
._2d_c01021{width:29.224000pt;}
._b_c01021{width:31.181333pt;}
._2_c01021{width:32.544000pt;}
._10_c01021{width:33.608000pt;}
._21_c01021{width:34.536000pt;}
._18_c01021{width:36.296000pt;}
._30_c01021{width:37.984000pt;}
._1d_c01021{width:39.008000pt;}
._c_c01021{width:40.021333pt;}
._23_c01021{width:41.416000pt;}
._13_c01021{width:42.400000pt;}
._2b_c01021{width:43.656000pt;}
._20_c01021{width:44.568000pt;}
._9_c01021{width:45.568000pt;}
._16_c01021{width:47.445333pt;}
._19_c01021{width:49.285333pt;}
._26_c01021{width:50.280000pt;}
._1c_c01021{width:51.992000pt;}
._32_c01021{width:53.464000pt;}
._2e_c01021{width:55.512000pt;}
._1a_c01021{width:57.258667pt;}
._34_c01021{width:59.816000pt;}
._1b_c01021{width:61.818667pt;}
._35_c01021{width:63.202667pt;}
._22_c01021{width:150.845333pt;}
._38_c01021{width:1751.370667pt;}
.fs2_c01021{font-size:42.666667pt;}
.fs0_c01021{font-size:77.333333pt;}
.fs1_c01021{font-size:85.333333pt;}
.y0_c01021{bottom:0.000000pt;}
.y26_c01021{bottom:2.760000pt;}
.y25_c01021{bottom:6.425217pt;}
.y24_c01021{bottom:71.306667pt;}
.y23_c01021{bottom:97.173333pt;}
.y22_c01021{bottom:128.640000pt;}
.y21_c01021{bottom:158.906667pt;}
.y20_c01021{bottom:189.306667pt;}
.y1f_c01021{bottom:219.040000pt;}
.y1e_c01021{bottom:249.573333pt;}
.y1d_c01021{bottom:280.106667pt;}
.y1c_c01021{bottom:309.840000pt;}
.y1b_c01021{bottom:340.240000pt;}
.y1a_c01021{bottom:370.506667pt;}
.y19_c01021{bottom:400.106667pt;}
.y18_c01021{bottom:430.506667pt;}
.y17_c01021{bottom:460.773333pt;}
.y16_c01021{bottom:490.773333pt;}
.y15_c01021{bottom:520.506667pt;}
.y14_c01021{bottom:550.506667pt;}
.y13_c01021{bottom:580.506667pt;}
.y12_c01021{bottom:610.240000pt;}
.y11_c01021{bottom:640.106667pt;}
.y10_c01021{bottom:669.306667pt;}
.yf_c01021{bottom:699.840000pt;}
.ye_c01021{bottom:729.573333pt;}
.yd_c01021{bottom:759.573333pt;}
.yc_c01021{bottom:789.573333pt;}
.yb_c01021{bottom:819.306667pt;}
.ya_c01021{bottom:849.040000pt;}
.y9_c01021{bottom:878.373333pt;}
.y8_c01021{bottom:907.840000pt;}
.y7_c01021{bottom:937.706667pt;}
.y6_c01021{bottom:966.906667pt;}
.y5_c01021{bottom:997.440000pt;}
.y4_c01021{bottom:1026.640000pt;}
.y3_c01021{bottom:1056.773333pt;}
.y2_c01021{bottom:1086.240000pt;}
.y1_c01021{bottom:1115.706667pt;}
.h3_c01021{height:11.733399pt;}
.h4_c01021{height:38.937500pt;}
.h2_c01021{height:108.041667pt;}
.h0_c01021{height:1217.733333pt;}
.h1_c01021{height:1218.000000pt;}
.w2_c01021{width:93.222667pt;}
.w0_c01021{width:759.866667pt;}
.w1_c01021{width:760.000000pt;}
.x0_c01021{left:0.000000pt;}
.x9_c01021{left:178.400000pt;}
.x1_c01021{left:187.466667pt;}
.x5_c01021{left:188.400000pt;}
.x2_c01021{left:189.333333pt;}
.x6_c01021{left:191.733333pt;}
.x3_c01021{left:192.800000pt;}
.x7_c01021{left:194.133333pt;}
.x8_c01021{left:195.066667pt;}
.xb_c01021{left:196.133333pt;}
.xa_c01021{left:197.066667pt;}
.xc_c01021{left:201.333333pt;}
.x4_c01021{left:234.933333pt;}
.xd_c01021{left:337.101563pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_152b05cd6673047ee73d949d.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01022;src:url('chunks/assets/font_1aadefde024e193b8a9af998.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01022;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01022;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01022{font-family:ff4_c01022;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls0_c01022{letter-spacing:0.000000px;}
.ls1_c01022{letter-spacing:3.000000px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01022{word-spacing:-54.000000px;}
.ws0_c01022{word-spacing:-20.244000px;}
.ws3_c01022{word-spacing:-18.798000px;}
.ws2_c01022{word-spacing:-1.212000px;}
.ws4_c01022{word-spacing:0.000000px;}
._36_c01022{margin-left:-134.064000px;}
._48_c01022{margin-left:-72.558000px;}
._3d_c01022{margin-left:-29.904000px;}
._3a_c01022{margin-left:-26.112000px;}
._2c_c01022{margin-left:-24.000000px;}
._23_c01022{margin-left:-21.024000px;}
._22_c01022{margin-left:-16.896000px;}
._f_c01022{margin-left:-15.732000px;}
._21_c01022{margin-left:-13.056000px;}
._3c_c01022{margin-left:-11.952000px;}
._31_c01022{margin-left:-8.208000px;}
._2b_c01022{margin-left:-7.032000px;}
._29_c01022{margin-left:-5.664000px;}
._2a_c01022{margin-left:-4.512000px;}
._7_c01022{margin-left:-2.784000px;}
._11_c01022{margin-left:-1.152000px;}
._13_c01022{width:1.152000px;}
._0_c01022{width:2.304000px;}
._9_c01022{width:3.744000px;}
._6_c01022{width:5.568000px;}
._8_c01022{width:6.720000px;}
._1a_c01022{width:8.160000px;}
._3_c01022{width:9.984000px;}
._2_c01022{width:11.328000px;}
._15_c01022{width:12.384000px;}
._1c_c01022{width:14.016000px;}
._32_c01022{width:15.072000px;}
._5_c01022{width:16.800000px;}
._4c_c01022{width:17.904000px;}
._4_c01022{width:18.912000px;}
._1_c01022{width:21.216000px;}
._49_c01022{width:23.715000px;}
._1d_c01022{width:24.864000px;}
._20_c01022{width:26.016000px;}
._2d_c01022{width:27.744000px;}
._4d_c01022{width:28.800000px;}
._a_c01022{width:29.856000px;}
._c_c01022{width:32.352000px;}
._10_c01022{width:34.464000px;}
._1f_c01022{width:36.096000px;}
._4e_c01022{width:37.152000px;}
._16_c01022{width:38.208000px;}
._1e_c01022{width:40.992000px;}
._27_c01022{width:42.048000px;}
._19_c01022{width:43.488000px;}
._14_c01022{width:44.736000px;}
._b_c01022{width:46.176000px;}
._4b_c01022{width:47.184000px;}
._12_c01022{width:49.536000px;}
._30_c01022{width:50.784000px;}
._25_c01022{width:52.224000px;}
._e_c01022{width:54.336000px;}
._46_c01022{width:56.448000px;}
._41_c01022{width:58.128000px;}
._1b_c01022{width:59.904000px;}
._d_c01022{width:63.072000px;}
._17_c01022{width:64.896000px;}
._24_c01022{width:66.624000px;}
._18_c01022{width:69.120000px;}
._2e_c01022{width:71.232000px;}
._26_c01022{width:73.728000px;}
._38_c01022{width:81.600000px;}
._45_c01022{width:83.676000px;}
._47_c01022{width:101.904000px;}
._42_c01022{width:111.264000px;}
._40_c01022{width:113.376000px;}
._35_c01022{width:115.488000px;}
._2f_c01022{width:123.840000px;}
._3f_c01022{width:127.392000px;}
._34_c01022{width:128.736000px;}
._3b_c01022{width:137.088000px;}
._33_c01022{width:145.104000px;}
._37_c01022{width:158.112000px;}
._28_c01022{width:182.424000px;}
._44_c01022{width:217.950000px;}
._39_c01022{width:219.024000px;}
._43_c01022{width:250.716000px;}
._3e_c01022{width:254.892000px;}
._4a_c01022{width:480.408000px;}
._4f_c01022{width:1886.616000px;}
.fc2_c01022{color:transparent;}
.fc1_c01022{color:rgb(128,128,128);}
.fc0_c01022{color:rgb(0,0,0);}
.fs6_c01022{font-size:48.000000px;}
.fs5_c01022{font-size:78.000000px;}
.fs1_c01022{font-size:84.000000px;}
.fs4_c01022{font-size:87.000000px;}
.fs0_c01022{font-size:96.000000px;}
.fs2_c01022{font-size:102.000000px;}
.fs3_c01022{font-size:144.000000px;}
.y0_c01022{bottom:0.000000px;}
.y22_c01022{bottom:3.105000px;}
.y21_c01022{bottom:7.228369px;}
.y20_c01022{bottom:99.270000px;}
.y1f_c01022{bottom:131.970000px;}
.y1e_c01022{bottom:166.320000px;}
.y1d_c01022{bottom:200.370000px;}
.y1c_c01022{bottom:235.170000px;}
.y1b_c01022{bottom:268.920000px;}
.y1a_c01022{bottom:302.370000px;}
.y19_c01022{bottom:336.870000px;}
.y18_c01022{bottom:372.270000px;}
.y17_c01022{bottom:405.720000px;}
.y16_c01022{bottom:439.020000px;}
.y15_c01022{bottom:470.070000px;}
.y14_c01022{bottom:505.470000px;}
.y13_c01022{bottom:596.370000px;}
.y12_c01022{bottom:648.270000px;}
.y11_c01022{bottom:697.920000px;}
.y10_c01022{bottom:776.970000px;}
.yf_c01022{bottom:810.270000px;}
.ye_c01022{bottom:843.420000px;}
.yd_c01022{bottom:876.420000px;}
.yc_c01022{bottom:910.470000px;}
.yb_c01022{bottom:943.620000px;}
.ya_c01022{bottom:977.670000px;}
.y9_c01022{bottom:1010.820000px;}
.y8_c01022{bottom:1044.270000px;}
.y7_c01022{bottom:1077.570000px;}
.y6_c01022{bottom:1109.670000px;}
.y5_c01022{bottom:1141.470000px;}
.y4_c01022{bottom:1175.820000px;}
.y3_c01022{bottom:1209.570000px;}
.y2_c01022{bottom:1243.020000px;}
.y1_c01022{bottom:1276.470000px;}
.h4_c01022{height:13.200073px;}
.h5_c01022{height:43.804688px;}
.h2_c01022{height:121.546875px;}
.h3_c01022{height:182.320312px;}
.h0_c01022{height:1383.450000px;}
.h1_c01022{height:1383.750000px;}
.w2_c01022{width:104.875500px;}
.w0_c01022{width:878.025000px;}
.w1_c01022{width:878.250000px;}
.x0_c01022{left:0.000000px;}
.x13_c01022{left:21.300000px;}
.x11_c01022{left:22.350000px;}
.xa_c01022{left:24.600000px;}
.x9_c01022{left:25.650000px;}
.x8_c01022{left:26.700000px;}
.x6_c01022{left:27.750000px;}
.x5_c01022{left:30.000000px;}
.x12_c01022{left:31.050000px;}
.x3_c01022{left:32.700000px;}
.x2_c01022{left:34.800000px;}
.x1_c01022{left:36.900000px;}
.xb_c01022{left:46.950000px;}
.xe_c01022{left:71.550000px;}
.x4_c01022{left:74.700000px;}
.x7_c01022{left:79.650000px;}
.xc_c01022{left:86.850000px;}
.xd_c01022{left:95.550000px;}
.xf_c01022{left:97.950000px;}
.x10_c01022{left:197.400000px;}
.x14_c01022{left:390.826721px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls0_c01022{letter-spacing:0.000000pt;}
.ls1_c01022{letter-spacing:2.666667pt;}
.ws1_c01022{word-spacing:-48.000000pt;}
.ws0_c01022{word-spacing:-17.994667pt;}
.ws3_c01022{word-spacing:-16.709333pt;}
.ws2_c01022{word-spacing:-1.077333pt;}
.ws4_c01022{word-spacing:0.000000pt;}
._36_c01022{margin-left:-119.168000pt;}
._48_c01022{margin-left:-64.496000pt;}
._3d_c01022{margin-left:-26.581333pt;}
._3a_c01022{margin-left:-23.210667pt;}
._2c_c01022{margin-left:-21.333333pt;}
._23_c01022{margin-left:-18.688000pt;}
._22_c01022{margin-left:-15.018667pt;}
._f_c01022{margin-left:-13.984000pt;}
._21_c01022{margin-left:-11.605333pt;}
._3c_c01022{margin-left:-10.624000pt;}
._31_c01022{margin-left:-7.296000pt;}
._2b_c01022{margin-left:-6.250667pt;}
._29_c01022{margin-left:-5.034667pt;}
._2a_c01022{margin-left:-4.010667pt;}
._7_c01022{margin-left:-2.474667pt;}
._11_c01022{margin-left:-1.024000pt;}
._13_c01022{width:1.024000pt;}
._0_c01022{width:2.048000pt;}
._9_c01022{width:3.328000pt;}
._6_c01022{width:4.949333pt;}
._8_c01022{width:5.973333pt;}
._1a_c01022{width:7.253333pt;}
._3_c01022{width:8.874667pt;}
._2_c01022{width:10.069333pt;}
._15_c01022{width:11.008000pt;}
._1c_c01022{width:12.458667pt;}
._32_c01022{width:13.397333pt;}
._5_c01022{width:14.933333pt;}
._4c_c01022{width:15.914667pt;}
._4_c01022{width:16.810667pt;}
._1_c01022{width:18.858667pt;}
._49_c01022{width:21.080000pt;}
._1d_c01022{width:22.101333pt;}
._20_c01022{width:23.125333pt;}
._2d_c01022{width:24.661333pt;}
._4d_c01022{width:25.600000pt;}
._a_c01022{width:26.538667pt;}
._c_c01022{width:28.757333pt;}
._10_c01022{width:30.634667pt;}
._1f_c01022{width:32.085333pt;}
._4e_c01022{width:33.024000pt;}
._16_c01022{width:33.962667pt;}
._1e_c01022{width:36.437333pt;}
._27_c01022{width:37.376000pt;}
._19_c01022{width:38.656000pt;}
._14_c01022{width:39.765333pt;}
._b_c01022{width:41.045333pt;}
._4b_c01022{width:41.941333pt;}
._12_c01022{width:44.032000pt;}
._30_c01022{width:45.141333pt;}
._25_c01022{width:46.421333pt;}
._e_c01022{width:48.298667pt;}
._46_c01022{width:50.176000pt;}
._41_c01022{width:51.669333pt;}
._1b_c01022{width:53.248000pt;}
._d_c01022{width:56.064000pt;}
._17_c01022{width:57.685333pt;}
._24_c01022{width:59.221333pt;}
._18_c01022{width:61.440000pt;}
._2e_c01022{width:63.317333pt;}
._26_c01022{width:65.536000pt;}
._38_c01022{width:72.533333pt;}
._45_c01022{width:74.378667pt;}
._47_c01022{width:90.581333pt;}
._42_c01022{width:98.901333pt;}
._40_c01022{width:100.778667pt;}
._35_c01022{width:102.656000pt;}
._2f_c01022{width:110.080000pt;}
._3f_c01022{width:113.237333pt;}
._34_c01022{width:114.432000pt;}
._3b_c01022{width:121.856000pt;}
._33_c01022{width:128.981333pt;}
._37_c01022{width:140.544000pt;}
._28_c01022{width:162.154667pt;}
._44_c01022{width:193.733333pt;}
._39_c01022{width:194.688000pt;}
._43_c01022{width:222.858667pt;}
._3e_c01022{width:226.570667pt;}
._4a_c01022{width:427.029333pt;}
._4f_c01022{width:1676.992000pt;}
.fs6_c01022{font-size:42.666667pt;}
.fs5_c01022{font-size:69.333333pt;}
.fs1_c01022{font-size:74.666667pt;}
.fs4_c01022{font-size:77.333333pt;}
.fs0_c01022{font-size:85.333333pt;}
.fs2_c01022{font-size:90.666667pt;}
.fs3_c01022{font-size:128.000000pt;}
.y0_c01022{bottom:0.000000pt;}
.y22_c01022{bottom:2.760000pt;}
.y21_c01022{bottom:6.425217pt;}
.y20_c01022{bottom:88.240000pt;}
.y1f_c01022{bottom:117.306667pt;}
.y1e_c01022{bottom:147.840000pt;}
.y1d_c01022{bottom:178.106667pt;}
.y1c_c01022{bottom:209.040000pt;}
.y1b_c01022{bottom:239.040000pt;}
.y1a_c01022{bottom:268.773333pt;}
.y19_c01022{bottom:299.440000pt;}
.y18_c01022{bottom:330.906667pt;}
.y17_c01022{bottom:360.640000pt;}
.y16_c01022{bottom:390.240000pt;}
.y15_c01022{bottom:417.840000pt;}
.y14_c01022{bottom:449.306667pt;}
.y13_c01022{bottom:530.106667pt;}
.y12_c01022{bottom:576.240000pt;}
.y11_c01022{bottom:620.373333pt;}
.y10_c01022{bottom:690.640000pt;}
.yf_c01022{bottom:720.240000pt;}
.ye_c01022{bottom:749.706667pt;}
.yd_c01022{bottom:779.040000pt;}
.yc_c01022{bottom:809.306667pt;}
.yb_c01022{bottom:838.773333pt;}
.ya_c01022{bottom:869.040000pt;}
.y9_c01022{bottom:898.506667pt;}
.y8_c01022{bottom:928.240000pt;}
.y7_c01022{bottom:957.840000pt;}
.y6_c01022{bottom:986.373333pt;}
.y5_c01022{bottom:1014.640000pt;}
.y4_c01022{bottom:1045.173333pt;}
.y3_c01022{bottom:1075.173333pt;}
.y2_c01022{bottom:1104.906667pt;}
.y1_c01022{bottom:1134.640000pt;}
.h4_c01022{height:11.733399pt;}
.h5_c01022{height:38.937500pt;}
.h2_c01022{height:108.041667pt;}
.h3_c01022{height:162.062500pt;}
.h0_c01022{height:1229.733333pt;}
.h1_c01022{height:1230.000000pt;}
.w2_c01022{width:93.222667pt;}
.w0_c01022{width:780.466667pt;}
.w1_c01022{width:780.666667pt;}
.x0_c01022{left:0.000000pt;}
.x13_c01022{left:18.933333pt;}
.x11_c01022{left:19.866667pt;}
.xa_c01022{left:21.866667pt;}
.x9_c01022{left:22.800000pt;}
.x8_c01022{left:23.733333pt;}
.x6_c01022{left:24.666667pt;}
.x5_c01022{left:26.666667pt;}
.x12_c01022{left:27.600000pt;}
.x3_c01022{left:29.066667pt;}
.x2_c01022{left:30.933333pt;}
.x1_c01022{left:32.800000pt;}
.xb_c01022{left:41.733333pt;}
.xe_c01022{left:63.600000pt;}
.x4_c01022{left:66.400000pt;}
.x7_c01022{left:70.800000pt;}
.xc_c01022{left:77.200000pt;}
.xd_c01022{left:84.933333pt;}
.xf_c01022{left:87.066667pt;}
.x10_c01022{left:175.466667pt;}
.x14_c01022{left:347.401530pt;}
}





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

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_7b63a4e09ce10e88426c215c.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01023;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls0_c01023{letter-spacing:0.000000px;}
.ls1_c01023{letter-spacing:15.000000px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01023{word-spacing:-23.136000px;}
.ws1_c01023{word-spacing:0.000000px;}
._3a_c01023{margin-left:-17.226000px;}
._37_c01023{margin-left:-14.880000px;}
._f_c01023{margin-left:-11.520000px;}
._e_c01023{margin-left:-9.888000px;}
._2d_c01023{margin-left:-8.640000px;}
._26_c01023{margin-left:-7.392000px;}
._10_c01023{margin-left:-5.856000px;}
._25_c01023{margin-left:-3.840000px;}
._13_c01023{margin-left:-2.208000px;}
._22_c01023{margin-left:-1.152000px;}
._7_c01023{width:1.056000px;}
._2_c01023{width:2.880000px;}
._1_c01023{width:4.704000px;}
._18_c01023{width:5.760000px;}
._3_c01023{width:6.816000px;}
._0_c01023{width:8.832000px;}
._9_c01023{width:9.888000px;}
._1a_c01023{width:11.328000px;}
._24_c01023{width:12.480000px;}
._32_c01023{width:13.536000px;}
._8_c01023{width:14.592000px;}
._d_c01023{width:16.128000px;}
._5_c01023{width:17.472000px;}
._28_c01023{width:19.104000px;}
._17_c01023{width:20.160000px;}
._27_c01023{width:21.696000px;}
._1c_c01023{width:25.152000px;}
._b_c01023{width:26.208000px;}
._1e_c01023{width:28.224000px;}
._c_c01023{width:29.376000px;}
._2b_c01023{width:30.528000px;}
._6_c01023{width:32.640000px;}
._19_c01023{width:34.080000px;}
._4_c01023{width:35.712000px;}
._15_c01023{width:37.152000px;}
._1d_c01023{width:39.168000px;}
._1b_c01023{width:40.512000px;}
._20_c01023{width:42.048000px;}
._16_c01023{width:43.488000px;}
._23_c01023{width:44.544000px;}
._1f_c01023{width:46.272000px;}
._a_c01023{width:47.808000px;}
._2a_c01023{width:49.824000px;}
._11_c01023{width:51.360000px;}
._14_c01023{width:52.704000px;}
._2f_c01023{width:54.048000px;}
._35_c01023{width:55.392000px;}
._2e_c01023{width:56.448000px;}
._36_c01023{width:58.368000px;}
._2c_c01023{width:60.768000px;}
._21_c01023{width:62.112000px;}
._33_c01023{width:65.184000px;}
._12_c01023{width:67.392000px;}
._29_c01023{width:74.592000px;}
._34_c01023{width:76.224000px;}
._30_c01023{width:95.136000px;}
._38_c01023{width:119.328000px;}
._39_c01023{width:160.992000px;}
._31_c01023{width:181.344000px;}
._3b_c01023{width:698.154000px;}
.fc2_c01023{color:transparent;}
.fc1_c01023{color:rgb(128,128,128);}
.fc0_c01023{color:rgb(0,0,0);}
.fs2_c01023{font-size:48.000000px;}
.fs1_c01023{font-size:87.000000px;}
.fs0_c01023{font-size:96.000000px;}
.y0_c01023{bottom:0.000000px;}
.y26_c01023{bottom:3.105000px;}
.y25_c01023{bottom:7.228357px;}
.y24_c01023{bottom:90.780000px;}
.y23_c01023{bottom:122.580000px;}
.y22_c01023{bottom:156.930000px;}
.y21_c01023{bottom:191.730000px;}
.y20_c01023{bottom:225.780000px;}
.y1f_c01023{bottom:259.980000px;}
.y1e_c01023{bottom:293.730000px;}
.y1d_c01023{bottom:327.330000px;}
.y1c_c01023{bottom:361.230000px;}
.y1b_c01023{bottom:394.230000px;}
.y1a_c01023{bottom:429.030000px;}
.y19_c01023{bottom:462.780000px;}
.y18_c01023{bottom:496.230000px;}
.y17_c01023{bottom:530.280000px;}
.y16_c01023{bottom:564.030000px;}
.y15_c01023{bottom:597.780000px;}
.y14_c01023{bottom:631.230000px;}
.y13_c01023{bottom:664.830000px;}
.y12_c01023{bottom:698.580000px;}
.y11_c01023{bottom:732.030000px;}
.y10_c01023{bottom:765.480000px;}
.yf_c01023{bottom:799.230000px;}
.ye_c01023{bottom:832.230000px;}
.yd_c01023{bottom:866.280000px;}
.yc_c01023{bottom:899.730000px;}
.yb_c01023{bottom:933.180000px;}
.ya_c01023{bottom:966.630000px;}
.y9_c01023{bottom:999.630000px;}
.y8_c01023{bottom:1032.780000px;}
.y7_c01023{bottom:1066.230000px;}
.y6_c01023{bottom:1099.530000px;}
.y5_c01023{bottom:1133.280000px;}
.y4_c01023{bottom:1166.730000px;}
.y3_c01023{bottom:1199.880000px;}
.y2_c01023{bottom:1233.330000px;}
.y1_c01023{bottom:1266.330000px;}
.h3_c01023{height:13.200074px;}
.h4_c01023{height:43.804688px;}
.h2_c01023{height:121.546875px;}
.h0_c01023{height:1382.700000px;}
.h1_c01023{height:1383.000000px;}
.w2_c01023{width:104.875500px;}
.w0_c01023{width:863.175000px;}
.w1_c01023{width:863.250000px;}
.x0_c01023{left:0.000000px;}
.x9_c01023{left:241.050000px;}
.x3_c01023{left:242.700000px;}
.x1_c01023{left:244.350000px;}
.x2_c01023{left:246.000000px;}
.x5_c01023{left:247.050000px;}
.x4_c01023{left:249.150000px;}
.x6_c01023{left:250.200000px;}
.x8_c01023{left:251.400000px;}
.x7_c01023{left:300.000000px;}
.xb_c01023{left:383.401749px;}
.xa_c01023{left:607.950000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ls1_c01023{letter-spacing:13.333333pt;}
.ws0_c01023{word-spacing:-20.565333pt;}
.ws1_c01023{word-spacing:0.000000pt;}
._3a_c01023{margin-left:-15.312000pt;}
._37_c01023{margin-left:-13.226667pt;}
._f_c01023{margin-left:-10.240000pt;}
._e_c01023{margin-left:-8.789333pt;}
._2d_c01023{margin-left:-7.680000pt;}
._26_c01023{margin-left:-6.570667pt;}
._10_c01023{margin-left:-5.205333pt;}
._25_c01023{margin-left:-3.413333pt;}
._13_c01023{margin-left:-1.962667pt;}
._22_c01023{margin-left:-1.024000pt;}
._7_c01023{width:0.938667pt;}
._2_c01023{width:2.560000pt;}
._1_c01023{width:4.181333pt;}
._18_c01023{width:5.120000pt;}
._3_c01023{width:6.058667pt;}
._0_c01023{width:7.850667pt;}
._9_c01023{width:8.789333pt;}
._1a_c01023{width:10.069333pt;}
._24_c01023{width:11.093333pt;}
._32_c01023{width:12.032000pt;}
._8_c01023{width:12.970667pt;}
._d_c01023{width:14.336000pt;}
._5_c01023{width:15.530667pt;}
._28_c01023{width:16.981333pt;}
._17_c01023{width:17.920000pt;}
._27_c01023{width:19.285333pt;}
._1c_c01023{width:22.357333pt;}
._b_c01023{width:23.296000pt;}
._1e_c01023{width:25.088000pt;}
._c_c01023{width:26.112000pt;}
._2b_c01023{width:27.136000pt;}
._6_c01023{width:29.013333pt;}
._19_c01023{width:30.293333pt;}
._4_c01023{width:31.744000pt;}
._15_c01023{width:33.024000pt;}
._1d_c01023{width:34.816000pt;}
._1b_c01023{width:36.010667pt;}
._20_c01023{width:37.376000pt;}
._16_c01023{width:38.656000pt;}
._23_c01023{width:39.594667pt;}
._1f_c01023{width:41.130667pt;}
._a_c01023{width:42.496000pt;}
._2a_c01023{width:44.288000pt;}
._11_c01023{width:45.653333pt;}
._14_c01023{width:46.848000pt;}
._2f_c01023{width:48.042667pt;}
._35_c01023{width:49.237333pt;}
._2e_c01023{width:50.176000pt;}
._36_c01023{width:51.882667pt;}
._2c_c01023{width:54.016000pt;}
._21_c01023{width:55.210667pt;}
._33_c01023{width:57.941333pt;}
._12_c01023{width:59.904000pt;}
._29_c01023{width:66.304000pt;}
._34_c01023{width:67.754667pt;}
._30_c01023{width:84.565333pt;}
._38_c01023{width:106.069333pt;}
._39_c01023{width:143.104000pt;}
._31_c01023{width:161.194667pt;}
._3b_c01023{width:620.581333pt;}
.fs2_c01023{font-size:42.666667pt;}
.fs1_c01023{font-size:77.333333pt;}
.fs0_c01023{font-size:85.333333pt;}
.y0_c01023{bottom:0.000000pt;}
.y26_c01023{bottom:2.760000pt;}
.y25_c01023{bottom:6.425206pt;}
.y24_c01023{bottom:80.693333pt;}
.y23_c01023{bottom:108.960000pt;}
.y22_c01023{bottom:139.493333pt;}
.y21_c01023{bottom:170.426667pt;}
.y20_c01023{bottom:200.693333pt;}
.y1f_c01023{bottom:231.093333pt;}
.y1e_c01023{bottom:261.093333pt;}
.y1d_c01023{bottom:290.960000pt;}
.y1c_c01023{bottom:321.093333pt;}
.y1b_c01023{bottom:350.426667pt;}
.y1a_c01023{bottom:381.360000pt;}
.y19_c01023{bottom:411.360000pt;}
.y18_c01023{bottom:441.093333pt;}
.y17_c01023{bottom:471.360000pt;}
.y16_c01023{bottom:501.360000pt;}
.y15_c01023{bottom:531.360000pt;}
.y14_c01023{bottom:561.093333pt;}
.y13_c01023{bottom:590.960000pt;}
.y12_c01023{bottom:620.960000pt;}
.y11_c01023{bottom:650.693333pt;}
.y10_c01023{bottom:680.426667pt;}
.yf_c01023{bottom:710.426667pt;}
.ye_c01023{bottom:739.760000pt;}
.yd_c01023{bottom:770.026667pt;}
.yc_c01023{bottom:799.760000pt;}
.yb_c01023{bottom:829.493333pt;}
.ya_c01023{bottom:859.226667pt;}
.y9_c01023{bottom:888.560000pt;}
.y8_c01023{bottom:918.026667pt;}
.y7_c01023{bottom:947.760000pt;}
.y6_c01023{bottom:977.360000pt;}
.y5_c01023{bottom:1007.360000pt;}
.y4_c01023{bottom:1037.093333pt;}
.y3_c01023{bottom:1066.560000pt;}
.y2_c01023{bottom:1096.293333pt;}
.y1_c01023{bottom:1125.626667pt;}
.h3_c01023{height:11.733399pt;}
.h4_c01023{height:38.937500pt;}
.h2_c01023{height:108.041667pt;}
.h0_c01023{height:1229.066667pt;}
.h1_c01023{height:1229.333333pt;}
.w2_c01023{width:93.222667pt;}
.w0_c01023{width:767.266667pt;}
.w1_c01023{width:767.333333pt;}
.x0_c01023{left:0.000000pt;}
.x9_c01023{left:214.266667pt;}
.x3_c01023{left:215.733333pt;}
.x1_c01023{left:217.200000pt;}
.x2_c01023{left:218.666667pt;}
.x5_c01023{left:219.600000pt;}
.x4_c01023{left:221.466667pt;}
.x6_c01023{left:222.400000pt;}
.x8_c01023{left:223.466667pt;}
.x7_c01023{left:266.666667pt;}
.xb_c01023{left:340.801554pt;}
.xa_c01023{left:540.400000pt;}
}





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

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_d5b13bb49bdebc6714da5cb6.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01024;src:url('chunks/assets/font_4c8660a9c708f34065519c84.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01024;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls0_c01024{letter-spacing:0.000000px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:-63.504000px;}
.ws1_c01024{word-spacing:0.000000px;}
._16_c01024{margin-left:-20.352000px;}
._2b_c01024{margin-left:-17.004000px;}
._17_c01024{margin-left:-14.496000px;}
._2c_c01024{margin-left:-12.444000px;}
._2e_c01024{margin-left:-11.040000px;}
._2d_c01024{margin-left:-7.488000px;}
._22_c01024{margin-left:-6.144000px;}
._36_c01024{margin-left:-5.088000px;}
._15_c01024{margin-left:-3.744000px;}
._b_c01024{margin-left:-2.496000px;}
._1c_c01024{margin-left:-1.344000px;}
._f_c01024{width:1.152000px;}
._5_c01024{width:2.304000px;}
._4_c01024{width:3.648000px;}
._2_c01024{width:4.992000px;}
._1_c01024{width:7.008000px;}
._6_c01024{width:8.064000px;}
._20_c01024{width:9.984000px;}
._33_c01024{width:11.136000px;}
._34_c01024{width:12.864000px;}
._a_c01024{width:14.304000px;}
._1d_c01024{width:16.992000px;}
._21_c01024{width:18.720000px;}
._38_c01024{width:19.872000px;}
._31_c01024{width:20.928000px;}
._0_c01024{width:22.080000px;}
._28_c01024{width:24.192000px;}
._9_c01024{width:26.304000px;}
._1f_c01024{width:27.552000px;}
._e_c01024{width:28.704000px;}
._1e_c01024{width:29.952000px;}
._1a_c01024{width:31.872000px;}
._8_c01024{width:33.216000px;}
._d_c01024{width:34.368000px;}
._1b_c01024{width:36.096000px;}
._11_c01024{width:37.152000px;}
._10_c01024{width:38.304000px;}
._7_c01024{width:39.552000px;}
._13_c01024{width:41.088000px;}
._12_c01024{width:42.816000px;}
._23_c01024{width:44.448000px;}
._19_c01024{width:45.504000px;}
._c_c01024{width:46.560000px;}
._18_c01024{width:48.480000px;}
._3_c01024{width:49.536000px;}
._14_c01024{width:52.128000px;}
._29_c01024{width:53.952000px;}
._2f_c01024{width:55.104000px;}
._25_c01024{width:56.352000px;}
._30_c01024{width:58.464000px;}
._32_c01024{width:59.808000px;}
._2a_c01024{width:61.152000px;}
._27_c01024{width:65.088000px;}
._24_c01024{width:66.720000px;}
._26_c01024{width:69.696000px;}
._35_c01024{width:75.360000px;}
._37_c01024{width:171.408000px;}
._39_c01024{width:849.504000px;}
.fc2_c01024{color:transparent;}
.fc1_c01024{color:rgb(128,128,128);}
.fc0_c01024{color:rgb(0,0,0);}
.fs2_c01024{font-size:48.000000px;}
.fs1_c01024{font-size:84.000000px;}
.fs0_c01024{font-size:96.000000px;}
.y0_c01024{bottom:0.000000px;}
.y26_c01024{bottom:3.105000px;}
.y25_c01024{bottom:7.228369px;}
.y24_c01024{bottom:126.570000px;}
.y23_c01024{bottom:159.570000px;}
.y22_c01024{bottom:192.420000px;}
.y21_c01024{bottom:226.170000px;}
.y20_c01024{bottom:260.520000px;}
.y1f_c01024{bottom:292.170000px;}
.y1e_c01024{bottom:327.270000px;}
.y1d_c01024{bottom:361.170000px;}
.y1c_c01024{bottom:394.470000px;}
.y1b_c01024{bottom:427.920000px;}
.y1a_c01024{bottom:461.370000px;}
.y19_c01024{bottom:494.670000px;}
.y18_c01024{bottom:527.520000px;}
.y17_c01024{bottom:560.970000px;}
.y16_c01024{bottom:594.720000px;}
.y15_c01024{bottom:627.720000px;}
.y14_c01024{bottom:661.170000px;}
.y13_c01024{bottom:694.620000px;}
.y12_c01024{bottom:728.220000px;}
.y11_c01024{bottom:761.070000px;}
.y10_c01024{bottom:794.370000px;}
.yf_c01024{bottom:826.770000px;}
.ye_c01024{bottom:859.620000px;}
.yd_c01024{bottom:892.620000px;}
.yc_c01024{bottom:925.470000px;}
.yb_c01024{bottom:959.070000px;}
.ya_c01024{bottom:991.620000px;}
.y9_c01024{bottom:1024.620000px;}
.y8_c01024{bottom:1057.770000px;}
.y7_c01024{bottom:1090.020000px;}
.y6_c01024{bottom:1122.120000px;}
.y5_c01024{bottom:1154.520000px;}
.y4_c01024{bottom:1187.220000px;}
.y3_c01024{bottom:1219.770000px;}
.y2_c01024{bottom:1253.070000px;}
.y1_c01024{bottom:1285.770000px;}
.h3_c01024{height:13.200073px;}
.h4_c01024{height:43.804688px;}
.h2_c01024{height:121.546875px;}
.h0_c01024{height:1383.450000px;}
.h1_c01024{height:1383.750000px;}
.w2_c01024{width:104.875500px;}
.w0_c01024{width:878.025000px;}
.w1_c01024{width:878.250000px;}
.x0_c01024{left:0.000000px;}
.x7_c01024{left:20.700000px;}
.x6_c01024{left:21.900000px;}
.x4_c01024{left:22.950000px;}
.x5_c01024{left:24.000000px;}
.x3_c01024{left:25.050000px;}
.x2_c01024{left:26.100000px;}
.x1_c01024{left:27.300000px;}
.x8_c01024{left:30.450000px;}
.x9_c01024{left:32.700000px;}
.xb_c01024{left:34.800000px;}
.xa_c01024{left:79.650000px;}
.xc_c01024{left:285.600000px;}
.xd_c01024{left:390.826721px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls0_c01024{letter-spacing:0.000000pt;}
.ws0_c01024{word-spacing:-56.448000pt;}
.ws1_c01024{word-spacing:0.000000pt;}
._16_c01024{margin-left:-18.090667pt;}
._2b_c01024{margin-left:-15.114667pt;}
._17_c01024{margin-left:-12.885333pt;}
._2c_c01024{margin-left:-11.061333pt;}
._2e_c01024{margin-left:-9.813333pt;}
._2d_c01024{margin-left:-6.656000pt;}
._22_c01024{margin-left:-5.461333pt;}
._36_c01024{margin-left:-4.522667pt;}
._15_c01024{margin-left:-3.328000pt;}
._b_c01024{margin-left:-2.218667pt;}
._1c_c01024{margin-left:-1.194667pt;}
._f_c01024{width:1.024000pt;}
._5_c01024{width:2.048000pt;}
._4_c01024{width:3.242667pt;}
._2_c01024{width:4.437333pt;}
._1_c01024{width:6.229333pt;}
._6_c01024{width:7.168000pt;}
._20_c01024{width:8.874667pt;}
._33_c01024{width:9.898667pt;}
._34_c01024{width:11.434667pt;}
._a_c01024{width:12.714667pt;}
._1d_c01024{width:15.104000pt;}
._21_c01024{width:16.640000pt;}
._38_c01024{width:17.664000pt;}
._31_c01024{width:18.602667pt;}
._0_c01024{width:19.626667pt;}
._28_c01024{width:21.504000pt;}
._9_c01024{width:23.381333pt;}
._1f_c01024{width:24.490667pt;}
._e_c01024{width:25.514667pt;}
._1e_c01024{width:26.624000pt;}
._1a_c01024{width:28.330667pt;}
._8_c01024{width:29.525333pt;}
._d_c01024{width:30.549333pt;}
._1b_c01024{width:32.085333pt;}
._11_c01024{width:33.024000pt;}
._10_c01024{width:34.048000pt;}
._7_c01024{width:35.157333pt;}
._13_c01024{width:36.522667pt;}
._12_c01024{width:38.058667pt;}
._23_c01024{width:39.509333pt;}
._19_c01024{width:40.448000pt;}
._c_c01024{width:41.386667pt;}
._18_c01024{width:43.093333pt;}
._3_c01024{width:44.032000pt;}
._14_c01024{width:46.336000pt;}
._29_c01024{width:47.957333pt;}
._2f_c01024{width:48.981333pt;}
._25_c01024{width:50.090667pt;}
._30_c01024{width:51.968000pt;}
._32_c01024{width:53.162667pt;}
._2a_c01024{width:54.357333pt;}
._27_c01024{width:57.856000pt;}
._24_c01024{width:59.306667pt;}
._26_c01024{width:61.952000pt;}
._35_c01024{width:66.986667pt;}
._37_c01024{width:152.362667pt;}
._39_c01024{width:755.114667pt;}
.fs2_c01024{font-size:42.666667pt;}
.fs1_c01024{font-size:74.666667pt;}
.fs0_c01024{font-size:85.333333pt;}
.y0_c01024{bottom:0.000000pt;}
.y26_c01024{bottom:2.760000pt;}
.y25_c01024{bottom:6.425217pt;}
.y24_c01024{bottom:112.506667pt;}
.y23_c01024{bottom:141.840000pt;}
.y22_c01024{bottom:171.040000pt;}
.y21_c01024{bottom:201.040000pt;}
.y20_c01024{bottom:231.573333pt;}
.y1f_c01024{bottom:259.706667pt;}
.y1e_c01024{bottom:290.906667pt;}
.y1d_c01024{bottom:321.040000pt;}
.y1c_c01024{bottom:350.640000pt;}
.y1b_c01024{bottom:380.373333pt;}
.y1a_c01024{bottom:410.106667pt;}
.y19_c01024{bottom:439.706667pt;}
.y18_c01024{bottom:468.906667pt;}
.y17_c01024{bottom:498.640000pt;}
.y16_c01024{bottom:528.640000pt;}
.y15_c01024{bottom:557.973333pt;}
.y14_c01024{bottom:587.706667pt;}
.y13_c01024{bottom:617.440000pt;}
.y12_c01024{bottom:647.306667pt;}
.y11_c01024{bottom:676.506667pt;}
.y10_c01024{bottom:706.106667pt;}
.yf_c01024{bottom:734.906667pt;}
.ye_c01024{bottom:764.106667pt;}
.yd_c01024{bottom:793.440000pt;}
.yc_c01024{bottom:822.640000pt;}
.yb_c01024{bottom:852.506667pt;}
.ya_c01024{bottom:881.440000pt;}
.y9_c01024{bottom:910.773333pt;}
.y8_c01024{bottom:940.240000pt;}
.y7_c01024{bottom:968.906667pt;}
.y6_c01024{bottom:997.440000pt;}
.y5_c01024{bottom:1026.240000pt;}
.y4_c01024{bottom:1055.306667pt;}
.y3_c01024{bottom:1084.240000pt;}
.y2_c01024{bottom:1113.840000pt;}
.y1_c01024{bottom:1142.906667pt;}
.h3_c01024{height:11.733399pt;}
.h4_c01024{height:38.937500pt;}
.h2_c01024{height:108.041667pt;}
.h0_c01024{height:1229.733333pt;}
.h1_c01024{height:1230.000000pt;}
.w2_c01024{width:93.222667pt;}
.w0_c01024{width:780.466667pt;}
.w1_c01024{width:780.666667pt;}
.x0_c01024{left:0.000000pt;}
.x7_c01024{left:18.400000pt;}
.x6_c01024{left:19.466667pt;}
.x4_c01024{left:20.400000pt;}
.x5_c01024{left:21.333333pt;}
.x3_c01024{left:22.266667pt;}
.x2_c01024{left:23.200000pt;}
.x1_c01024{left:24.266667pt;}
.x8_c01024{left:27.066667pt;}
.x9_c01024{left:29.066667pt;}
.xb_c01024{left:30.933333pt;}
.xa_c01024{left:70.800000pt;}
.xc_c01024{left:253.866667pt;}
.xd_c01024{left:347.401530pt;}
}





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

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_b9fc522b08fdc526bcc048fb.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01025;src:url('chunks/assets/font_b4b12cfbdddab15ff73ea209.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01025;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01025{vertical-align:-145.800000px;}
.v0_c01025{vertical-align:0.000000px;}
.ls1_c01025{letter-spacing:0.000000px;}
.ls0_c01025{letter-spacing:9.456000px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01025{word-spacing:-63.504000px;}
.ws2_c01025{word-spacing:-23.136000px;}
.ws3_c01025{word-spacing:0.000000px;}
.ws1_c01025{word-spacing:31.008000px;}
._36_c01025{margin-left:-30.912000px;}
._2a_c01025{margin-left:-29.760000px;}
._2d_c01025{margin-left:-27.744000px;}
._21_c01025{margin-left:-20.352000px;}
._22_c01025{margin-left:-14.592000px;}
._1f_c01025{margin-left:-5.568000px;}
._35_c01025{margin-left:-4.416000px;}
._10_c01025{margin-left:-3.264000px;}
._2f_c01025{margin-left:-2.208000px;}
._a_c01025{margin-left:-1.152000px;}
._0_c01025{width:1.248000px;}
._2_c01025{width:2.304000px;}
._6_c01025{width:3.744000px;}
._5_c01025{width:4.896000px;}
._e_c01025{width:6.336000px;}
._d_c01025{width:7.872000px;}
._2b_c01025{width:9.696000px;}
._39_c01025{width:10.848000px;}
._2c_c01025{width:12.192000px;}
._32_c01025{width:13.440000px;}
._14_c01025{width:15.456000px;}
._20_c01025{width:16.800000px;}
._3a_c01025{width:17.952000px;}
._4_c01025{width:19.392000px;}
._18_c01025{width:21.408000px;}
._30_c01025{width:24.288000px;}
._7_c01025{width:25.632000px;}
._1_c01025{width:27.552000px;}
._31_c01025{width:28.704000px;}
._8_c01025{width:30.624000px;}
._16_c01025{width:31.776000px;}
._28_c01025{width:32.832000px;}
._f_c01025{width:34.176000px;}
._1b_c01025{width:35.904000px;}
._15_c01025{width:36.960000px;}
._3_c01025{width:38.400000px;}
._24_c01025{width:39.648000px;}
._12_c01025{width:40.896000px;}
._c_c01025{width:42.912000px;}
._13_c01025{width:44.448000px;}
._9_c01025{width:45.696000px;}
._37_c01025{width:47.040000px;}
._27_c01025{width:48.096000px;}
._25_c01025{width:49.152000px;}
._33_c01025{width:50.304000px;}
._b_c01025{width:51.552000px;}
._17_c01025{width:53.088000px;}
._1a_c01025{width:54.144000px;}
._23_c01025{width:56.160000px;}
._19_c01025{width:57.408000px;}
._29_c01025{width:58.656000px;}
._2e_c01025{width:59.904000px;}
._1c_c01025{width:62.304000px;}
._11_c01025{width:64.320000px;}
._34_c01025{width:66.912000px;}
._3b_c01025{width:69.216000px;}
._1e_c01025{width:71.232000px;}
._1d_c01025{width:90.432000px;}
._26_c01025{width:172.224000px;}
._38_c01025{width:189.696000px;}
.fc2_c01025{color:transparent;}
.fc1_c01025{color:rgb(128,128,128);}
.fc0_c01025{color:rgb(0,0,0);}
.fs2_c01025{font-size:48.000000px;}
.fs1_c01025{font-size:84.000000px;}
.fs0_c01025{font-size:96.000000px;}
.y0_c01025{bottom:0.000000px;}
.y25_c01025{bottom:3.105000px;}
.y24_c01025{bottom:7.228357px;}
.y23_c01025{bottom:109.980000px;}
.y22_c01025{bottom:144.780000px;}
.y21_c01025{bottom:178.230000px;}
.y20_c01025{bottom:212.280000px;}
.y1f_c01025{bottom:246.030000px;}
.y1e_c01025{bottom:316.230000px;}
.y1d_c01025{bottom:347.580000px;}
.y1c_c01025{bottom:381.480000px;}
.y1b_c01025{bottom:414.780000px;}
.y1a_c01025{bottom:448.530000px;}
.y19_c01025{bottom:481.680000px;}
.y18_c01025{bottom:514.980000px;}
.y17_c01025{bottom:548.730000px;}
.y16_c01025{bottom:582.180000px;}
.y15_c01025{bottom:615.630000px;}
.y14_c01025{bottom:648.330000px;}
.y13_c01025{bottom:682.080000px;}
.y12_c01025{bottom:715.230000px;}
.y11_c01025{bottom:748.230000px;}
.y10_c01025{bottom:781.680000px;}
.yf_c01025{bottom:814.830000px;}
.ye_c01025{bottom:847.830000px;}
.yd_c01025{bottom:881.580000px;}
.yc_c01025{bottom:914.580000px;}
.yb_c01025{bottom:947.130000px;}
.ya_c01025{bottom:980.880000px;}
.y9_c01025{bottom:1013.130000px;}
.y8_c01025{bottom:1045.980000px;}
.y7_c01025{bottom:1078.980000px;}
.y6_c01025{bottom:1112.730000px;}
.y5_c01025{bottom:1145.580000px;}
.y4_c01025{bottom:1178.580000px;}
.y3_c01025{bottom:1211.280000px;}
.y2_c01025{bottom:1244.430000px;}
.y1_c01025{bottom:1277.430000px;}
.h3_c01025{height:13.200074px;}
.h4_c01025{height:43.804688px;}
.h2_c01025{height:121.546875px;}
.h0_c01025{height:1382.700000px;}
.h1_c01025{height:1383.000000px;}
.w2_c01025{width:104.875500px;}
.w0_c01025{width:863.175000px;}
.w1_c01025{width:863.250000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:239.400000px;}
.x2_c01025{left:240.600000px;}
.x3_c01025{left:241.650000px;}
.x4_c01025{left:242.700000px;}
.x6_c01025{left:244.350000px;}
.x7_c01025{left:245.400000px;}
.x8_c01025{left:247.500000px;}
.x5_c01025{left:293.400000px;}
.xa_c01025{left:383.401749px;}
.x9_c01025{left:777.300000px;}
@media print{
.v1_c01025{vertical-align:-129.600000pt;}
.v0_c01025{vertical-align:0.000000pt;}
.ls1_c01025{letter-spacing:0.000000pt;}
.ls0_c01025{letter-spacing:8.405333pt;}
.ws0_c01025{word-spacing:-56.448000pt;}
.ws2_c01025{word-spacing:-20.565333pt;}
.ws3_c01025{word-spacing:0.000000pt;}
.ws1_c01025{word-spacing:27.562667pt;}
._36_c01025{margin-left:-27.477333pt;}
._2a_c01025{margin-left:-26.453333pt;}
._2d_c01025{margin-left:-24.661333pt;}
._21_c01025{margin-left:-18.090667pt;}
._22_c01025{margin-left:-12.970667pt;}
._1f_c01025{margin-left:-4.949333pt;}
._35_c01025{margin-left:-3.925333pt;}
._10_c01025{margin-left:-2.901333pt;}
._2f_c01025{margin-left:-1.962667pt;}
._a_c01025{margin-left:-1.024000pt;}
._0_c01025{width:1.109333pt;}
._2_c01025{width:2.048000pt;}
._6_c01025{width:3.328000pt;}
._5_c01025{width:4.352000pt;}
._e_c01025{width:5.632000pt;}
._d_c01025{width:6.997333pt;}
._2b_c01025{width:8.618667pt;}
._39_c01025{width:9.642667pt;}
._2c_c01025{width:10.837333pt;}
._32_c01025{width:11.946667pt;}
._14_c01025{width:13.738667pt;}
._20_c01025{width:14.933333pt;}
._3a_c01025{width:15.957333pt;}
._4_c01025{width:17.237333pt;}
._18_c01025{width:19.029333pt;}
._30_c01025{width:21.589333pt;}
._7_c01025{width:22.784000pt;}
._1_c01025{width:24.490667pt;}
._31_c01025{width:25.514667pt;}
._8_c01025{width:27.221333pt;}
._16_c01025{width:28.245333pt;}
._28_c01025{width:29.184000pt;}
._f_c01025{width:30.378667pt;}
._1b_c01025{width:31.914667pt;}
._15_c01025{width:32.853333pt;}
._3_c01025{width:34.133333pt;}
._24_c01025{width:35.242667pt;}
._12_c01025{width:36.352000pt;}
._c_c01025{width:38.144000pt;}
._13_c01025{width:39.509333pt;}
._9_c01025{width:40.618667pt;}
._37_c01025{width:41.813333pt;}
._27_c01025{width:42.752000pt;}
._25_c01025{width:43.690667pt;}
._33_c01025{width:44.714667pt;}
._b_c01025{width:45.824000pt;}
._17_c01025{width:47.189333pt;}
._1a_c01025{width:48.128000pt;}
._23_c01025{width:49.920000pt;}
._19_c01025{width:51.029333pt;}
._29_c01025{width:52.138667pt;}
._2e_c01025{width:53.248000pt;}
._1c_c01025{width:55.381333pt;}
._11_c01025{width:57.173333pt;}
._34_c01025{width:59.477333pt;}
._3b_c01025{width:61.525333pt;}
._1e_c01025{width:63.317333pt;}
._1d_c01025{width:80.384000pt;}
._26_c01025{width:153.088000pt;}
._38_c01025{width:168.618667pt;}
.fs2_c01025{font-size:42.666667pt;}
.fs1_c01025{font-size:74.666667pt;}
.fs0_c01025{font-size:85.333333pt;}
.y0_c01025{bottom:0.000000pt;}
.y25_c01025{bottom:2.760000pt;}
.y24_c01025{bottom:6.425206pt;}
.y23_c01025{bottom:97.760000pt;}
.y22_c01025{bottom:128.693333pt;}
.y21_c01025{bottom:158.426667pt;}
.y20_c01025{bottom:188.693333pt;}
.y1f_c01025{bottom:218.693333pt;}
.y1e_c01025{bottom:281.093333pt;}
.y1d_c01025{bottom:308.960000pt;}
.y1c_c01025{bottom:339.093333pt;}
.y1b_c01025{bottom:368.693333pt;}
.y1a_c01025{bottom:398.693333pt;}
.y19_c01025{bottom:428.160000pt;}
.y18_c01025{bottom:457.760000pt;}
.y17_c01025{bottom:487.760000pt;}
.y16_c01025{bottom:517.493333pt;}
.y15_c01025{bottom:547.226667pt;}
.y14_c01025{bottom:576.293333pt;}
.y13_c01025{bottom:606.293333pt;}
.y12_c01025{bottom:635.760000pt;}
.y11_c01025{bottom:665.093333pt;}
.y10_c01025{bottom:694.826667pt;}
.yf_c01025{bottom:724.293333pt;}
.ye_c01025{bottom:753.626667pt;}
.yd_c01025{bottom:783.626667pt;}
.yc_c01025{bottom:812.960000pt;}
.yb_c01025{bottom:841.893333pt;}
.ya_c01025{bottom:871.893333pt;}
.y9_c01025{bottom:900.560000pt;}
.y8_c01025{bottom:929.760000pt;}
.y7_c01025{bottom:959.093333pt;}
.y6_c01025{bottom:989.093333pt;}
.y5_c01025{bottom:1018.293333pt;}
.y4_c01025{bottom:1047.626667pt;}
.y3_c01025{bottom:1076.693333pt;}
.y2_c01025{bottom:1106.160000pt;}
.y1_c01025{bottom:1135.493333pt;}
.h3_c01025{height:11.733399pt;}
.h4_c01025{height:38.937500pt;}
.h2_c01025{height:108.041667pt;}
.h0_c01025{height:1229.066667pt;}
.h1_c01025{height:1229.333333pt;}
.w2_c01025{width:93.222667pt;}
.w0_c01025{width:767.266667pt;}
.w1_c01025{width:767.333333pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:212.800000pt;}
.x2_c01025{left:213.866667pt;}
.x3_c01025{left:214.800000pt;}
.x4_c01025{left:215.733333pt;}
.x6_c01025{left:217.200000pt;}
.x7_c01025{left:218.133333pt;}
.x8_c01025{left:220.000000pt;}
.x5_c01025{left:260.800000pt;}
.xa_c01025{left:340.801554pt;}
.x9_c01025{left:690.933333pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_32ec6ba0618a81dcb06d4ae4.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01026;src:url('chunks/assets/font_afa206be4dca8b1d1d3e66ac.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01026;src:url('chunks/assets/font_01a81ca5b2208b12b6f92547.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01026;src:url('chunks/assets/font_dbcd08a41d2680a8a81bfeb6.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01026;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls1_c01026{letter-spacing:-9.000000px;}
.ls0_c01026{letter-spacing:0.000000px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01026{word-spacing:-65.529000px;}
.ws0_c01026{word-spacing:-41.712000px;}
.ws2_c01026{word-spacing:0.000000px;}
._3b_c01026{margin-left:-29.952000px;}
._33_c01026{margin-left:-20.448000px;}
._2c_c01026{margin-left:-16.416000px;}
._2_c01026{margin-left:-13.920000px;}
._27_c01026{margin-left:-12.864000px;}
._31_c01026{margin-left:-11.616000px;}
._32_c01026{margin-left:-9.888000px;}
._30_c01026{margin-left:-8.034000px;}
._26_c01026{margin-left:-6.432000px;}
._13_c01026{margin-left:-5.184000px;}
._1d_c01026{margin-left:-3.168000px;}
._f_c01026{margin-left:-1.728000px;}
._0_c01026{width:1.920000px;}
._1_c01026{width:3.840000px;}
._4_c01026{width:5.664000px;}
._b_c01026{width:7.008000px;}
._d_c01026{width:8.064000px;}
._14_c01026{width:9.216000px;}
._16_c01026{width:11.040000px;}
._15_c01026{width:12.576000px;}
._18_c01026{width:13.824000px;}
._2d_c01026{width:14.880000px;}
._e_c01026{width:16.896000px;}
._24_c01026{width:17.952000px;}
._28_c01026{width:19.488000px;}
._1a_c01026{width:21.216000px;}
._34_c01026{width:22.320000px;}
._35_c01026{width:24.000000px;}
._12_c01026{width:25.632000px;}
._1c_c01026{width:27.168000px;}
._5_c01026{width:28.224000px;}
._19_c01026{width:29.376000px;}
._2e_c01026{width:30.528000px;}
._11_c01026{width:32.448000px;}
._2f_c01026{width:33.792000px;}
._a_c01026{width:34.944000px;}
._1e_c01026{width:36.672000px;}
._3_c01026{width:37.824000px;}
._c_c01026{width:39.168000px;}
._17_c01026{width:40.416000px;}
._8_c01026{width:42.912000px;}
._23_c01026{width:44.160000px;}
._22_c01026{width:45.552000px;}
._20_c01026{width:47.616000px;}
._10_c01026{width:49.056000px;}
._3a_c01026{width:50.400000px;}
._1f_c01026{width:51.552000px;}
._6_c01026{width:53.664000px;}
._25_c01026{width:55.584000px;}
._1b_c01026{width:56.928000px;}
._7_c01026{width:58.176000px;}
._21_c01026{width:59.808000px;}
._9_c01026{width:62.496000px;}
._29_c01026{width:65.760000px;}
._3d_c01026{width:67.488000px;}
._2b_c01026{width:72.000000px;}
._2a_c01026{width:76.704000px;}
._3c_c01026{width:83.136000px;}
._37_c01026{width:93.792000px;}
._36_c01026{width:96.192000px;}
._38_c01026{width:451.824000px;}
._39_c01026{width:873.600000px;}
._3e_c01026{width:1600.188000px;}
.fc2_c01026{color:transparent;}
.fc1_c01026{color:rgb(128,128,128);}
.fc0_c01026{color:rgb(0,0,0);}
.fs6_c01026{font-size:48.000000px;}
.fs1_c01026{font-size:84.000000px;}
.fs5_c01026{font-size:93.000000px;}
.fs0_c01026{font-size:96.000000px;}
.fs2_c01026{font-size:114.000000px;}
.fs4_c01026{font-size:117.000000px;}
.fs3_c01026{font-size:144.000000px;}
.y0_c01026{bottom:0.000000px;}
.y22_c01026{bottom:3.105000px;}
.y21_c01026{bottom:7.228369px;}
.y20_c01026{bottom:113.370000px;}
.y1f_c01026{bottom:140.670000px;}
.y1e_c01026{bottom:176.220000px;}
.y1d_c01026{bottom:211.170000px;}
.y1c_c01026{bottom:244.620000px;}
.y1b_c01026{bottom:278.670000px;}
.y1a_c01026{bottom:312.120000px;}
.y19_c01026{bottom:348.870000px;}
.y18_c01026{bottom:380.370000px;}
.y17_c01026{bottom:413.670000px;}
.y16_c01026{bottom:502.770000px;}
.y15_c01026{bottom:552.120000px;}
.y14_c01026{bottom:602.670000px;}
.y13_c01026{bottom:679.770000px;}
.y12_c01026{bottom:714.420000px;}
.y11_c01026{bottom:747.870000px;}
.y10_c01026{bottom:781.320000px;}
.yf_c01026{bottom:813.720000px;}
.ye_c01026{bottom:846.120000px;}
.yd_c01026{bottom:879.420000px;}
.yc_c01026{bottom:912.870000px;}
.yb_c01026{bottom:945.270000px;}
.ya_c01026{bottom:978.720000px;}
.y9_c01026{bottom:1011.720000px;}
.y8_c01026{bottom:1044.570000px;}
.y7_c01026{bottom:1076.520000px;}
.y6_c01026{bottom:1109.070000px;}
.y5_c01026{bottom:1141.470000px;}
.y4_c01026{bottom:1174.170000px;}
.y3_c01026{bottom:1207.170000px;}
.y2_c01026{bottom:1239.870000px;}
.y1_c01026{bottom:1273.320000px;}
.h6_c01026{height:13.200073px;}
.h7_c01026{height:43.804688px;}
.h5_c01026{height:117.748535px;}
.h2_c01026{height:121.546875px;}
.h4_c01026{height:124.839000px;}
.h3_c01026{height:182.320312px;}
.h0_c01026{height:1356.450000px;}
.h1_c01026{height:1356.750000px;}
.w2_c01026{width:104.875500px;}
.w0_c01026{width:860.775000px;}
.w1_c01026{width:861.000000px;}
.x0_c01026{left:0.000000px;}
.x9_c01026{left:19.200000px;}
.xa_c01026{left:21.300000px;}
.x8_c01026{left:26.700000px;}
.x7_c01026{left:28.350000px;}
.x6_c01026{left:29.400000px;}
.x5_c01026{left:31.050000px;}
.x4_c01026{left:32.100000px;}
.x3_c01026{left:33.750000px;}
.x2_c01026{left:34.800000px;}
.x1_c01026{left:36.900000px;}
.xc_c01026{left:82.650000px;}
.xe_c01026{left:130.800000px;}
.xb_c01026{left:207.600000px;}
.xd_c01026{left:287.550000px;}
.xf_c01026{left:382.201721px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls1_c01026{letter-spacing:-8.000000pt;}
.ls0_c01026{letter-spacing:0.000000pt;}
.ws1_c01026{word-spacing:-58.248000pt;}
.ws0_c01026{word-spacing:-37.077333pt;}
.ws2_c01026{word-spacing:0.000000pt;}
._3b_c01026{margin-left:-26.624000pt;}
._33_c01026{margin-left:-18.176000pt;}
._2c_c01026{margin-left:-14.592000pt;}
._2_c01026{margin-left:-12.373333pt;}
._27_c01026{margin-left:-11.434667pt;}
._31_c01026{margin-left:-10.325333pt;}
._32_c01026{margin-left:-8.789333pt;}
._30_c01026{margin-left:-7.141333pt;}
._26_c01026{margin-left:-5.717333pt;}
._13_c01026{margin-left:-4.608000pt;}
._1d_c01026{margin-left:-2.816000pt;}
._f_c01026{margin-left:-1.536000pt;}
._0_c01026{width:1.706667pt;}
._1_c01026{width:3.413333pt;}
._4_c01026{width:5.034667pt;}
._b_c01026{width:6.229333pt;}
._d_c01026{width:7.168000pt;}
._14_c01026{width:8.192000pt;}
._16_c01026{width:9.813333pt;}
._15_c01026{width:11.178667pt;}
._18_c01026{width:12.288000pt;}
._2d_c01026{width:13.226667pt;}
._e_c01026{width:15.018667pt;}
._24_c01026{width:15.957333pt;}
._28_c01026{width:17.322667pt;}
._1a_c01026{width:18.858667pt;}
._34_c01026{width:19.840000pt;}
._35_c01026{width:21.333333pt;}
._12_c01026{width:22.784000pt;}
._1c_c01026{width:24.149333pt;}
._5_c01026{width:25.088000pt;}
._19_c01026{width:26.112000pt;}
._2e_c01026{width:27.136000pt;}
._11_c01026{width:28.842667pt;}
._2f_c01026{width:30.037333pt;}
._a_c01026{width:31.061333pt;}
._1e_c01026{width:32.597333pt;}
._3_c01026{width:33.621333pt;}
._c_c01026{width:34.816000pt;}
._17_c01026{width:35.925333pt;}
._8_c01026{width:38.144000pt;}
._23_c01026{width:39.253333pt;}
._22_c01026{width:40.490667pt;}
._20_c01026{width:42.325333pt;}
._10_c01026{width:43.605333pt;}
._3a_c01026{width:44.800000pt;}
._1f_c01026{width:45.824000pt;}
._6_c01026{width:47.701333pt;}
._25_c01026{width:49.408000pt;}
._1b_c01026{width:50.602667pt;}
._7_c01026{width:51.712000pt;}
._21_c01026{width:53.162667pt;}
._9_c01026{width:55.552000pt;}
._29_c01026{width:58.453333pt;}
._3d_c01026{width:59.989333pt;}
._2b_c01026{width:64.000000pt;}
._2a_c01026{width:68.181333pt;}
._3c_c01026{width:73.898667pt;}
._37_c01026{width:83.370667pt;}
._36_c01026{width:85.504000pt;}
._38_c01026{width:401.621333pt;}
._39_c01026{width:776.533333pt;}
._3e_c01026{width:1422.389333pt;}
.fs6_c01026{font-size:42.666667pt;}
.fs1_c01026{font-size:74.666667pt;}
.fs5_c01026{font-size:82.666667pt;}
.fs0_c01026{font-size:85.333333pt;}
.fs2_c01026{font-size:101.333333pt;}
.fs4_c01026{font-size:104.000000pt;}
.fs3_c01026{font-size:128.000000pt;}
.y0_c01026{bottom:0.000000pt;}
.y22_c01026{bottom:2.760000pt;}
.y21_c01026{bottom:6.425217pt;}
.y20_c01026{bottom:100.773333pt;}
.y1f_c01026{bottom:125.040000pt;}
.y1e_c01026{bottom:156.640000pt;}
.y1d_c01026{bottom:187.706667pt;}
.y1c_c01026{bottom:217.440000pt;}
.y1b_c01026{bottom:247.706667pt;}
.y1a_c01026{bottom:277.440000pt;}
.y19_c01026{bottom:310.106667pt;}
.y18_c01026{bottom:338.106667pt;}
.y17_c01026{bottom:367.706667pt;}
.y16_c01026{bottom:446.906667pt;}
.y15_c01026{bottom:490.773333pt;}
.y14_c01026{bottom:535.706667pt;}
.y13_c01026{bottom:604.240000pt;}
.y12_c01026{bottom:635.040000pt;}
.y11_c01026{bottom:664.773333pt;}
.y10_c01026{bottom:694.506667pt;}
.yf_c01026{bottom:723.306667pt;}
.ye_c01026{bottom:752.106667pt;}
.yd_c01026{bottom:781.706667pt;}
.yc_c01026{bottom:811.440000pt;}
.yb_c01026{bottom:840.240000pt;}
.ya_c01026{bottom:869.973333pt;}
.y9_c01026{bottom:899.306667pt;}
.y8_c01026{bottom:928.506667pt;}
.y7_c01026{bottom:956.906667pt;}
.y6_c01026{bottom:985.840000pt;}
.y5_c01026{bottom:1014.640000pt;}
.y4_c01026{bottom:1043.706667pt;}
.y3_c01026{bottom:1073.040000pt;}
.y2_c01026{bottom:1102.106667pt;}
.y1_c01026{bottom:1131.840000pt;}
.h6_c01026{height:11.733399pt;}
.h7_c01026{height:38.937500pt;}
.h5_c01026{height:104.665365pt;}
.h2_c01026{height:108.041667pt;}
.h4_c01026{height:110.968000pt;}
.h3_c01026{height:162.062500pt;}
.h0_c01026{height:1205.733333pt;}
.h1_c01026{height:1206.000000pt;}
.w2_c01026{width:93.222667pt;}
.w0_c01026{width:765.133333pt;}
.w1_c01026{width:765.333333pt;}
.x0_c01026{left:0.000000pt;}
.x9_c01026{left:17.066667pt;}
.xa_c01026{left:18.933333pt;}
.x8_c01026{left:23.733333pt;}
.x7_c01026{left:25.200000pt;}
.x6_c01026{left:26.133333pt;}
.x5_c01026{left:27.600000pt;}
.x4_c01026{left:28.533333pt;}
.x3_c01026{left:30.000000pt;}
.x2_c01026{left:30.933333pt;}
.x1_c01026{left:32.800000pt;}
.xc_c01026{left:73.466667pt;}
.xe_c01026{left:116.266667pt;}
.xb_c01026{left:184.533333pt;}
.xd_c01026{left:255.600000pt;}
.xf_c01026{left:339.734863pt;}
}





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

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_61dd62e6c338c89cec257029.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01027;src:url('chunks/assets/font_cd4b547aba35bb590941ad46.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01027;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls1_c01027{letter-spacing:0.000000px;}
.ls0_c01027{letter-spacing:10.920000px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01027{word-spacing:-63.504000px;}
.ws1_c01027{word-spacing:-23.136000px;}
.ws2_c01027{word-spacing:0.000000px;}
._1b_c01027{margin-left:-30.048000px;}
._28_c01027{margin-left:-26.208000px;}
._3a_c01027{margin-left:-20.064000px;}
._29_c01027{margin-left:-15.360000px;}
._3b_c01027{margin-left:-14.304000px;}
._2e_c01027{margin-left:-11.712000px;}
._5_c01027{margin-left:-10.272000px;}
._3_c01027{margin-left:-8.064000px;}
._21_c01027{margin-left:-5.184000px;}
._4_c01027{margin-left:-3.264000px;}
._33_c01027{margin-left:-2.208000px;}
._f_c01027{margin-left:-1.152000px;}
._d_c01027{width:1.344000px;}
._9_c01027{width:2.784000px;}
._b_c01027{width:3.936000px;}
._c_c01027{width:5.472000px;}
._1_c01027{width:7.008000px;}
._0_c01027{width:8.256000px;}
._16_c01027{width:9.888000px;}
._a_c01027{width:11.808000px;}
._2b_c01027{width:13.536000px;}
._8_c01027{width:14.688000px;}
._2d_c01027{width:15.936000px;}
._1c_c01027{width:17.184000px;}
._2c_c01027{width:18.720000px;}
._20_c01027{width:19.872000px;}
._7_c01027{width:21.408000px;}
._2a_c01027{width:24.192000px;}
._24_c01027{width:26.208000px;}
._15_c01027{width:27.936000px;}
._18_c01027{width:29.184000px;}
._1d_c01027{width:30.432000px;}
._3e_c01027{width:31.488000px;}
._13_c01027{width:32.544000px;}
._3c_c01027{width:34.176000px;}
._17_c01027{width:35.232000px;}
._1f_c01027{width:36.576000px;}
._e_c01027{width:38.112000px;}
._36_c01027{width:39.168000px;}
._26_c01027{width:40.896000px;}
._14_c01027{width:42.624000px;}
._39_c01027{width:43.776000px;}
._19_c01027{width:45.120000px;}
._22_c01027{width:47.040000px;}
._25_c01027{width:49.152000px;}
._1a_c01027{width:50.304000px;}
._34_c01027{width:52.224000px;}
._38_c01027{width:53.760000px;}
._30_c01027{width:56.928000px;}
._11_c01027{width:58.368000px;}
._1e_c01027{width:59.424000px;}
._12_c01027{width:60.480000px;}
._23_c01027{width:62.112000px;}
._2f_c01027{width:63.840000px;}
._31_c01027{width:64.992000px;}
._37_c01027{width:66.720000px;}
._27_c01027{width:68.640000px;}
._32_c01027{width:70.932000px;}
._10_c01027{width:72.480000px;}
._35_c01027{width:75.648000px;}
._2_c01027{width:182.016000px;}
._6_c01027{width:237.216000px;}
._3d_c01027{width:422.592000px;}
.fc2_c01027{color:transparent;}
.fc1_c01027{color:rgb(128,128,128);}
.fc0_c01027{color:rgb(0,0,0);}
.fs2_c01027{font-size:48.000000px;}
.fs1_c01027{font-size:84.000000px;}
.fs0_c01027{font-size:96.000000px;}
.y0_c01027{bottom:0.000000px;}
.y26_c01027{bottom:3.105000px;}
.y25_c01027{bottom:7.228357px;}
.y24_c01027{bottom:99.180000px;}
.y23_c01027{bottom:136.080000px;}
.y22_c01027{bottom:170.430000px;}
.y21_c01027{bottom:203.280000px;}
.y20_c01027{bottom:237.330000px;}
.y1f_c01027{bottom:270.330000px;}
.y1e_c01027{bottom:304.530000px;}
.y1d_c01027{bottom:338.580000px;}
.y1c_c01027{bottom:371.580000px;}
.y1b_c01027{bottom:405.780000px;}
.y1a_c01027{bottom:438.180000px;}
.y19_c01027{bottom:473.580000px;}
.y18_c01027{bottom:507.030000px;}
.y17_c01027{bottom:540.780000px;}
.y16_c01027{bottom:573.480000px;}
.y15_c01027{bottom:607.230000px;}
.y14_c01027{bottom:640.680000px;}
.y13_c01027{bottom:673.680000px;}
.y12_c01027{bottom:707.130000px;}
.y11_c01027{bottom:740.430000px;}
.y10_c01027{bottom:773.580000px;}
.yf_c01027{bottom:806.730000px;}
.ye_c01027{bottom:840.030000px;}
.yd_c01027{bottom:873.480000px;}
.yc_c01027{bottom:906.480000px;}
.yb_c01027{bottom:939.630000px;}
.ya_c01027{bottom:972.630000px;}
.y9_c01027{bottom:1005.030000px;}
.y8_c01027{bottom:1037.580000px;}
.y7_c01027{bottom:1070.880000px;}
.y6_c01027{bottom:1104.630000px;}
.y5_c01027{bottom:1137.330000px;}
.y4_c01027{bottom:1170.480000px;}
.y3_c01027{bottom:1203.480000px;}
.y2_c01027{bottom:1236.330000px;}
.y1_c01027{bottom:1266.930000px;}
.h3_c01027{height:13.200074px;}
.h4_c01027{height:43.804688px;}
.h2_c01027{height:121.546875px;}
.h0_c01027{height:1382.700000px;}
.h1_c01027{height:1383.000000px;}
.w2_c01027{width:104.875500px;}
.w0_c01027{width:863.175000px;}
.w1_c01027{width:863.250000px;}
.x0_c01027{left:0.000000px;}
.xd_c01027{left:244.350000px;}
.x4_c01027{left:246.000000px;}
.xe_c01027{left:247.050000px;}
.x5_c01027{left:248.100000px;}
.x3_c01027{left:249.750000px;}
.x2_c01027{left:251.850000px;}
.x9_c01027{left:252.900000px;}
.x6_c01027{left:254.100000px;}
.xc_c01027{left:255.150000px;}
.x8_c01027{left:256.800000px;}
.xa_c01027{left:257.850000px;}
.x7_c01027{left:259.500000px;}
.x1_c01027{left:291.300000px;}
.xb_c01027{left:307.500000px;}
.x10_c01027{left:383.401749px;}
.xf_c01027{left:786.450000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls1_c01027{letter-spacing:0.000000pt;}
.ls0_c01027{letter-spacing:9.706667pt;}
.ws0_c01027{word-spacing:-56.448000pt;}
.ws1_c01027{word-spacing:-20.565333pt;}
.ws2_c01027{word-spacing:0.000000pt;}
._1b_c01027{margin-left:-26.709333pt;}
._28_c01027{margin-left:-23.296000pt;}
._3a_c01027{margin-left:-17.834667pt;}
._29_c01027{margin-left:-13.653333pt;}
._3b_c01027{margin-left:-12.714667pt;}
._2e_c01027{margin-left:-10.410667pt;}
._5_c01027{margin-left:-9.130667pt;}
._3_c01027{margin-left:-7.168000pt;}
._21_c01027{margin-left:-4.608000pt;}
._4_c01027{margin-left:-2.901333pt;}
._33_c01027{margin-left:-1.962667pt;}
._f_c01027{margin-left:-1.024000pt;}
._d_c01027{width:1.194667pt;}
._9_c01027{width:2.474667pt;}
._b_c01027{width:3.498667pt;}
._c_c01027{width:4.864000pt;}
._1_c01027{width:6.229333pt;}
._0_c01027{width:7.338667pt;}
._16_c01027{width:8.789333pt;}
._a_c01027{width:10.496000pt;}
._2b_c01027{width:12.032000pt;}
._8_c01027{width:13.056000pt;}
._2d_c01027{width:14.165333pt;}
._1c_c01027{width:15.274667pt;}
._2c_c01027{width:16.640000pt;}
._20_c01027{width:17.664000pt;}
._7_c01027{width:19.029333pt;}
._2a_c01027{width:21.504000pt;}
._24_c01027{width:23.296000pt;}
._15_c01027{width:24.832000pt;}
._18_c01027{width:25.941333pt;}
._1d_c01027{width:27.050667pt;}
._3e_c01027{width:27.989333pt;}
._13_c01027{width:28.928000pt;}
._3c_c01027{width:30.378667pt;}
._17_c01027{width:31.317333pt;}
._1f_c01027{width:32.512000pt;}
._e_c01027{width:33.877333pt;}
._36_c01027{width:34.816000pt;}
._26_c01027{width:36.352000pt;}
._14_c01027{width:37.888000pt;}
._39_c01027{width:38.912000pt;}
._19_c01027{width:40.106667pt;}
._22_c01027{width:41.813333pt;}
._25_c01027{width:43.690667pt;}
._1a_c01027{width:44.714667pt;}
._34_c01027{width:46.421333pt;}
._38_c01027{width:47.786667pt;}
._30_c01027{width:50.602667pt;}
._11_c01027{width:51.882667pt;}
._1e_c01027{width:52.821333pt;}
._12_c01027{width:53.760000pt;}
._23_c01027{width:55.210667pt;}
._2f_c01027{width:56.746667pt;}
._31_c01027{width:57.770667pt;}
._37_c01027{width:59.306667pt;}
._27_c01027{width:61.013333pt;}
._32_c01027{width:63.050667pt;}
._10_c01027{width:64.426667pt;}
._35_c01027{width:67.242667pt;}
._2_c01027{width:161.792000pt;}
._6_c01027{width:210.858667pt;}
._3d_c01027{width:375.637333pt;}
.fs2_c01027{font-size:42.666667pt;}
.fs1_c01027{font-size:74.666667pt;}
.fs0_c01027{font-size:85.333333pt;}
.y0_c01027{bottom:0.000000pt;}
.y26_c01027{bottom:2.760000pt;}
.y25_c01027{bottom:6.425206pt;}
.y24_c01027{bottom:88.160000pt;}
.y23_c01027{bottom:120.960000pt;}
.y22_c01027{bottom:151.493333pt;}
.y21_c01027{bottom:180.693333pt;}
.y20_c01027{bottom:210.960000pt;}
.y1f_c01027{bottom:240.293333pt;}
.y1e_c01027{bottom:270.693333pt;}
.y1d_c01027{bottom:300.960000pt;}
.y1c_c01027{bottom:330.293333pt;}
.y1b_c01027{bottom:360.693333pt;}
.y1a_c01027{bottom:389.493333pt;}
.y19_c01027{bottom:420.960000pt;}
.y18_c01027{bottom:450.693333pt;}
.y17_c01027{bottom:480.693333pt;}
.y16_c01027{bottom:509.760000pt;}
.y15_c01027{bottom:539.760000pt;}
.y14_c01027{bottom:569.493333pt;}
.y13_c01027{bottom:598.826667pt;}
.y12_c01027{bottom:628.560000pt;}
.y11_c01027{bottom:658.160000pt;}
.y10_c01027{bottom:687.626667pt;}
.yf_c01027{bottom:717.093333pt;}
.ye_c01027{bottom:746.693333pt;}
.yd_c01027{bottom:776.426667pt;}
.yc_c01027{bottom:805.760000pt;}
.yb_c01027{bottom:835.226667pt;}
.ya_c01027{bottom:864.560000pt;}
.y9_c01027{bottom:893.360000pt;}
.y8_c01027{bottom:922.293333pt;}
.y7_c01027{bottom:951.893333pt;}
.y6_c01027{bottom:981.893333pt;}
.y5_c01027{bottom:1010.960000pt;}
.y4_c01027{bottom:1040.426667pt;}
.y3_c01027{bottom:1069.760000pt;}
.y2_c01027{bottom:1098.960000pt;}
.y1_c01027{bottom:1126.160000pt;}
.h3_c01027{height:11.733399pt;}
.h4_c01027{height:38.937500pt;}
.h2_c01027{height:108.041667pt;}
.h0_c01027{height:1229.066667pt;}
.h1_c01027{height:1229.333333pt;}
.w2_c01027{width:93.222667pt;}
.w0_c01027{width:767.266667pt;}
.w1_c01027{width:767.333333pt;}
.x0_c01027{left:0.000000pt;}
.xd_c01027{left:217.200000pt;}
.x4_c01027{left:218.666667pt;}
.xe_c01027{left:219.600000pt;}
.x5_c01027{left:220.533333pt;}
.x3_c01027{left:222.000000pt;}
.x2_c01027{left:223.866667pt;}
.x9_c01027{left:224.800000pt;}
.x6_c01027{left:225.866667pt;}
.xc_c01027{left:226.800000pt;}
.x8_c01027{left:228.266667pt;}
.xa_c01027{left:229.200000pt;}
.x7_c01027{left:230.666667pt;}
.x1_c01027{left:258.933333pt;}
.xb_c01027{left:273.333333pt;}
.x10_c01027{left:340.801554pt;}
.xf_c01027{left:699.066667pt;}
}





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

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_697c181d78d501b7f0c75393.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01028;src:url('chunks/assets/font_d1a83ec9fad5f005281e8fd0.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01028;src:url('chunks/assets/font_6847c9c2f4da9abf7affabd7.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01028;src:url('chunks/assets/font_de718c95e74172ff618a07bb.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01028;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01028{font-family:ff5_c01028;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls4_c01028{letter-spacing:-3.000000px;}
.ls2_c01028{letter-spacing:0.000000px;}
.ls0_c01028{letter-spacing:1.560000px;}
.ls5_c01028{letter-spacing:6.000000px;}
.ls1_c01028{letter-spacing:6.252000px;}
.ls6_c01028{letter-spacing:12.000000px;}
.ls3_c01028{letter-spacing:15.000000px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01028{word-spacing:-26.967000px;}
.ws2_c01028{word-spacing:-23.910000px;}
.ws0_c01028{word-spacing:-23.136000px;}
.ws3_c01028{word-spacing:0.000000px;}
._54_c01028{margin-left:-87.264000px;}
._51_c01028{margin-left:-53.280000px;}
._37_c01028{margin-left:-50.199000px;}
._58_c01028{margin-left:-43.935000px;}
._31_c01028{margin-left:-42.369000px;}
._35_c01028{margin-left:-41.103000px;}
._3c_c01028{margin-left:-35.670000px;}
._33_c01028{margin-left:-33.147000px;}
._39_c01028{margin-left:-31.929000px;}
._4b_c01028{margin-left:-30.240000px;}
._34_c01028{margin-left:-28.797000px;}
._43_c01028{margin-left:-26.430000px;}
._49_c01028{margin-left:-23.316000px;}
._36_c01028{margin-left:-21.837000px;}
._30_c01028{margin-left:-20.532000px;}
._4c_c01028{margin-left:-17.184000px;}
._2c_c01028{margin-left:-15.792000px;}
._23_c01028{margin-left:-13.920000px;}
._47_c01028{margin-left:-12.414000px;}
._2d_c01028{margin-left:-11.292000px;}
._44_c01028{margin-left:-8.826000px;}
._40_c01028{margin-left:-7.440000px;}
._25_c01028{margin-left:-5.472000px;}
._13_c01028{margin-left:-4.224000px;}
._d_c01028{margin-left:-2.496000px;}
._c_c01028{margin-left:-1.440000px;}
._f_c01028{width:1.248000px;}
._6_c01028{width:2.304000px;}
._3_c01028{width:4.224000px;}
._5_c01028{width:5.760000px;}
._0_c01028{width:7.200000px;}
._21_c01028{width:8.256000px;}
._2_c01028{width:9.408000px;}
._1e_c01028{width:10.848000px;}
._12_c01028{width:12.768000px;}
._16_c01028{width:14.880000px;}
._2a_c01028{width:15.960000px;}
._15_c01028{width:17.472000px;}
._7_c01028{width:19.296000px;}
._e_c01028{width:21.216000px;}
._3f_c01028{width:22.440000px;}
._29_c01028{width:25.536000px;}
._a_c01028{width:27.552000px;}
._1_c01028{width:29.184000px;}
._20_c01028{width:30.432000px;}
._24_c01028{width:32.640000px;}
._17_c01028{width:34.368000px;}
._10_c01028{width:36.192000px;}
._b_c01028{width:37.536000px;}
._4_c01028{width:38.688000px;}
._2b_c01028{width:39.732000px;}
._1c_c01028{width:40.896000px;}
._27_c01028{width:42.816000px;}
._8_c01028{width:45.600000px;}
._14_c01028{width:47.136000px;}
._11_c01028{width:49.440000px;}
._1b_c01028{width:52.032000px;}
._28_c01028{width:53.376000px;}
._1a_c01028{width:54.432000px;}
._26_c01028{width:55.488000px;}
._9_c01028{width:56.736000px;}
._22_c01028{width:58.080000px;}
._32_c01028{width:61.248000px;}
._3d_c01028{width:64.215000px;}
._18_c01028{width:66.624000px;}
._56_c01028{width:71.040000px;}
._1d_c01028{width:76.128000px;}
._55_c01028{width:79.392000px;}
._19_c01028{width:80.640000px;}
._38_c01028{width:93.003000px;}
._4e_c01028{width:106.248000px;}
._53_c01028{width:114.720000px;}
._3e_c01028{width:117.186000px;}
._42_c01028{width:124.470000px;}
._45_c01028{width:127.494000px;}
._4d_c01028{width:140.928000px;}
._57_c01028{width:157.083000px;}
._3a_c01028{width:212.454000px;}
._41_c01028{width:232.980000px;}
._52_c01028{width:248.064000px;}
._4f_c01028{width:254.688000px;}
._2f_c01028{width:276.384000px;}
._50_c01028{width:282.753000px;}
._48_c01028{width:330.216000px;}
._1f_c01028{width:391.680000px;}
._3b_c01028{width:478.587000px;}
._4a_c01028{width:560.724000px;}
._46_c01028{width:720.996000px;}
._2e_c01028{width:796.224000px;}
.fc2_c01028{color:transparent;}
.fc1_c01028{color:rgb(128,128,128);}
.fc0_c01028{color:rgb(0,0,0);}
.fs3_c01028{font-size:30.000000px;}
.fs4_c01028{font-size:48.000000px;}
.fs1_c01028{font-size:84.000000px;}
.fs2_c01028{font-size:87.000000px;}
.fs0_c01028{font-size:96.000000px;}
.y0_c01028{bottom:0.000000px;}
.y1d_c01028{bottom:3.105000px;}
.y1c_c01028{bottom:7.228363px;}
.y1b_c01028{bottom:72.450000px;}
.y1a_c01028{bottom:113.400000px;}
.y19_c01028{bottom:138.750000px;}
.y18_c01028{bottom:185.250000px;}
.y17_c01028{bottom:240.900000px;}
.y16_c01028{bottom:338.850000px;}
.y15_c01028{bottom:562.350000px;}
.y14_c01028{bottom:625.350000px;}
.y13_c01028{bottom:690.750000px;}
.y12_c01028{bottom:718.200000px;}
.y11_c01028{bottom:725.850000px;}
.y10_c01028{bottom:737.100000px;}
.yf_c01028{bottom:783.000000px;}
.ye_c01028{bottom:819.450000px;}
.yd_c01028{bottom:853.950000px;}
.yc_c01028{bottom:887.400000px;}
.yb_c01028{bottom:920.700000px;}
.ya_c01028{bottom:954.450000px;}
.y9_c01028{bottom:987.750000px;}
.y8_c01028{bottom:1021.650000px;}
.y7_c01028{bottom:1054.350000px;}
.y6_c01028{bottom:1086.450000px;}
.y5_c01028{bottom:1119.450000px;}
.y4_c01028{bottom:1153.200000px;}
.y3_c01028{bottom:1185.750000px;}
.y2_c01028{bottom:1219.050000px;}
.y1_c01028{bottom:1253.100000px;}
.h7_c01028{height:13.200074px;}
.h4_c01028{height:31.303711px;}
.h5_c01028{height:37.983398px;}
.h8_c01028{height:43.804688px;}
.h6_c01028{height:101.825684px;}
.h3_c01028{height:110.151855px;}
.h2_c01028{height:121.546875px;}
.h1_c01028{height:1341.750000px;}
.h0_c01028{height:1341.900000px;}
.w2_c01028{width:104.875500px;}
.w1_c01028{width:851.250000px;}
.w0_c01028{width:851.550000px;}
.x0_c01028{left:0.000000px;}
.x5_c01028{left:24.600000px;}
.x4_c01028{left:25.650000px;}
.x2_c01028{left:26.700000px;}
.x1_c01028{left:27.750000px;}
.xb_c01028{left:29.100000px;}
.x8_c01028{left:37.200000px;}
.x3_c01028{left:76.350000px;}
.xd_c01028{left:149.850000px;}
.x7_c01028{left:167.400000px;}
.xe_c01028{left:175.200000px;}
.x6_c01028{left:222.150000px;}
.xf_c01028{left:282.150000px;}
.x10_c01028{left:377.589249px;}
.xc_c01028{left:451.950000px;}
.x9_c01028{left:565.650000px;}
.xa_c01028{left:589.350000px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls4_c01028{letter-spacing:-2.666667pt;}
.ls2_c01028{letter-spacing:0.000000pt;}
.ls0_c01028{letter-spacing:1.386667pt;}
.ls5_c01028{letter-spacing:5.333333pt;}
.ls1_c01028{letter-spacing:5.557333pt;}
.ls6_c01028{letter-spacing:10.666667pt;}
.ls3_c01028{letter-spacing:13.333333pt;}
.ws1_c01028{word-spacing:-23.970667pt;}
.ws2_c01028{word-spacing:-21.253333pt;}
.ws0_c01028{word-spacing:-20.565333pt;}
.ws3_c01028{word-spacing:0.000000pt;}
._54_c01028{margin-left:-77.568000pt;}
._51_c01028{margin-left:-47.360000pt;}
._37_c01028{margin-left:-44.621333pt;}
._58_c01028{margin-left:-39.053333pt;}
._31_c01028{margin-left:-37.661333pt;}
._35_c01028{margin-left:-36.536000pt;}
._3c_c01028{margin-left:-31.706667pt;}
._33_c01028{margin-left:-29.464000pt;}
._39_c01028{margin-left:-28.381333pt;}
._4b_c01028{margin-left:-26.880000pt;}
._34_c01028{margin-left:-25.597333pt;}
._43_c01028{margin-left:-23.493333pt;}
._49_c01028{margin-left:-20.725333pt;}
._36_c01028{margin-left:-19.410667pt;}
._30_c01028{margin-left:-18.250667pt;}
._4c_c01028{margin-left:-15.274667pt;}
._2c_c01028{margin-left:-14.037333pt;}
._23_c01028{margin-left:-12.373333pt;}
._47_c01028{margin-left:-11.034667pt;}
._2d_c01028{margin-left:-10.037333pt;}
._44_c01028{margin-left:-7.845333pt;}
._40_c01028{margin-left:-6.613333pt;}
._25_c01028{margin-left:-4.864000pt;}
._13_c01028{margin-left:-3.754667pt;}
._d_c01028{margin-left:-2.218667pt;}
._c_c01028{margin-left:-1.280000pt;}
._f_c01028{width:1.109333pt;}
._6_c01028{width:2.048000pt;}
._3_c01028{width:3.754667pt;}
._5_c01028{width:5.120000pt;}
._0_c01028{width:6.400000pt;}
._21_c01028{width:7.338667pt;}
._2_c01028{width:8.362667pt;}
._1e_c01028{width:9.642667pt;}
._12_c01028{width:11.349333pt;}
._16_c01028{width:13.226667pt;}
._2a_c01028{width:14.186667pt;}
._15_c01028{width:15.530667pt;}
._7_c01028{width:17.152000pt;}
._e_c01028{width:18.858667pt;}
._3f_c01028{width:19.946667pt;}
._29_c01028{width:22.698667pt;}
._a_c01028{width:24.490667pt;}
._1_c01028{width:25.941333pt;}
._20_c01028{width:27.050667pt;}
._24_c01028{width:29.013333pt;}
._17_c01028{width:30.549333pt;}
._10_c01028{width:32.170667pt;}
._b_c01028{width:33.365333pt;}
._4_c01028{width:34.389333pt;}
._2b_c01028{width:35.317333pt;}
._1c_c01028{width:36.352000pt;}
._27_c01028{width:38.058667pt;}
._8_c01028{width:40.533333pt;}
._14_c01028{width:41.898667pt;}
._11_c01028{width:43.946667pt;}
._1b_c01028{width:46.250667pt;}
._28_c01028{width:47.445333pt;}
._1a_c01028{width:48.384000pt;}
._26_c01028{width:49.322667pt;}
._9_c01028{width:50.432000pt;}
._22_c01028{width:51.626667pt;}
._32_c01028{width:54.442667pt;}
._3d_c01028{width:57.080000pt;}
._18_c01028{width:59.221333pt;}
._56_c01028{width:63.146667pt;}
._1d_c01028{width:67.669333pt;}
._55_c01028{width:70.570667pt;}
._19_c01028{width:71.680000pt;}
._38_c01028{width:82.669333pt;}
._4e_c01028{width:94.442667pt;}
._53_c01028{width:101.973333pt;}
._3e_c01028{width:104.165333pt;}
._42_c01028{width:110.640000pt;}
._45_c01028{width:113.328000pt;}
._4d_c01028{width:125.269333pt;}
._57_c01028{width:139.629333pt;}
._3a_c01028{width:188.848000pt;}
._41_c01028{width:207.093333pt;}
._52_c01028{width:220.501333pt;}
._4f_c01028{width:226.389333pt;}
._2f_c01028{width:245.674667pt;}
._50_c01028{width:251.336000pt;}
._48_c01028{width:293.525333pt;}
._1f_c01028{width:348.160000pt;}
._3b_c01028{width:425.410667pt;}
._4a_c01028{width:498.421333pt;}
._46_c01028{width:640.885333pt;}
._2e_c01028{width:707.754667pt;}
.fs3_c01028{font-size:26.666667pt;}
.fs4_c01028{font-size:42.666667pt;}
.fs1_c01028{font-size:74.666667pt;}
.fs2_c01028{font-size:77.333333pt;}
.fs0_c01028{font-size:85.333333pt;}
.y0_c01028{bottom:0.000000pt;}
.y1d_c01028{bottom:2.760000pt;}
.y1c_c01028{bottom:6.425212pt;}
.y1b_c01028{bottom:64.400000pt;}
.y1a_c01028{bottom:100.800000pt;}
.y19_c01028{bottom:123.333333pt;}
.y18_c01028{bottom:164.666667pt;}
.y17_c01028{bottom:214.133333pt;}
.y16_c01028{bottom:301.200000pt;}
.y15_c01028{bottom:499.866667pt;}
.y14_c01028{bottom:555.866667pt;}
.y13_c01028{bottom:614.000000pt;}
.y12_c01028{bottom:638.400000pt;}
.y11_c01028{bottom:645.200000pt;}
.y10_c01028{bottom:655.200000pt;}
.yf_c01028{bottom:696.000000pt;}
.ye_c01028{bottom:728.400000pt;}
.yd_c01028{bottom:759.066667pt;}
.yc_c01028{bottom:788.800000pt;}
.yb_c01028{bottom:818.400000pt;}
.ya_c01028{bottom:848.400000pt;}
.y9_c01028{bottom:878.000000pt;}
.y8_c01028{bottom:908.133333pt;}
.y7_c01028{bottom:937.200000pt;}
.y6_c01028{bottom:965.733333pt;}
.y5_c01028{bottom:995.066667pt;}
.y4_c01028{bottom:1025.066667pt;}
.y3_c01028{bottom:1054.000000pt;}
.y2_c01028{bottom:1083.600000pt;}
.y1_c01028{bottom:1113.866667pt;}
.h7_c01028{height:11.733399pt;}
.h4_c01028{height:27.825521pt;}
.h5_c01028{height:33.763021pt;}
.h8_c01028{height:38.937500pt;}
.h6_c01028{height:90.511719pt;}
.h3_c01028{height:97.912760pt;}
.h2_c01028{height:108.041667pt;}
.h1_c01028{height:1192.666667pt;}
.h0_c01028{height:1192.800000pt;}
.w2_c01028{width:93.222667pt;}
.w1_c01028{width:756.666667pt;}
.w0_c01028{width:756.933333pt;}
.x0_c01028{left:0.000000pt;}
.x5_c01028{left:21.866667pt;}
.x4_c01028{left:22.800000pt;}
.x2_c01028{left:23.733333pt;}
.x1_c01028{left:24.666667pt;}
.xb_c01028{left:25.866667pt;}
.x8_c01028{left:33.066667pt;}
.x3_c01028{left:67.866667pt;}
.xd_c01028{left:133.200000pt;}
.x7_c01028{left:148.800000pt;}
.xe_c01028{left:155.733333pt;}
.x6_c01028{left:197.466667pt;}
.xf_c01028{left:250.800000pt;}
.x10_c01028{left:335.634888pt;}
.xc_c01028{left:401.733333pt;}
.x9_c01028{left:502.800000pt;}
.xa_c01028{left:523.866667pt;}
}





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

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_f243ab985f8d321d70247c9d.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01029;src:url('chunks/assets/font_246718cf0ea3229fdc5bb499.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01029;src:url('chunks/assets/font_04fc5faf36714486a4c38d59.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01029;src:url('chunks/assets/font_7bd0dac52a8c3e69b916cdc1.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01029;src:url('chunks/assets/font_f27da2289f156a3d809a6490.woff2')format("woff");}.ff5_c01029{font-family:ff5_c01029;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01029;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01029{font-family:ff6_c01029;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls2_c01029{letter-spacing:0.000000px;}
.ls3_c01029{letter-spacing:3.000000px;}
.ls0_c01029{letter-spacing:8.520000px;}
.ls4_c01029{letter-spacing:9.000000px;}
.ls1_c01029{letter-spacing:21.000000px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01029{word-spacing:-64.044000px;}
.ws0_c01029{word-spacing:-55.704000px;}
.ws2_c01029{word-spacing:-54.000000px;}
.ws4_c01029{word-spacing:-23.136000px;}
.ws1_c01029{word-spacing:-20.670000px;}
.ws6_c01029{word-spacing:0.000000px;}
.ws3_c01029{word-spacing:9.876000px;}
._33_c01029{margin-left:-79.776000px;}
._25_c01029{margin-left:-67.968000px;}
._24_c01029{margin-left:-58.896000px;}
._26_c01029{margin-left:-55.536000px;}
._4c_c01029{margin-left:-32.520000px;}
._51_c01029{margin-left:-30.216000px;}
._41_c01029{margin-left:-28.944000px;}
._2f_c01029{margin-left:-23.796000px;}
._21_c01029{margin-left:-13.968000px;}
._b_c01029{margin-left:-11.376000px;}
._c_c01029{margin-left:-10.224000px;}
._d_c01029{margin-left:-9.072000px;}
._9_c01029{margin-left:-7.776000px;}
._31_c01029{margin-left:-6.240000px;}
._a_c01029{margin-left:-5.184000px;}
._f_c01029{margin-left:-3.600000px;}
._18_c01029{margin-left:-2.304000px;}
._19_c01029{margin-left:-1.152000px;}
._15_c01029{width:1.152000px;}
._14_c01029{width:2.736000px;}
._8_c01029{width:3.888000px;}
._12_c01029{width:4.896000px;}
._39_c01029{width:6.048000px;}
._11_c01029{width:7.056000px;}
._5_c01029{width:8.064000px;}
._0_c01029{width:9.648000px;}
._2_c01029{width:10.944000px;}
._4_c01029{width:11.952000px;}
._3_c01029{width:12.960000px;}
._1_c01029{width:13.968000px;}
._30_c01029{width:15.522000px;}
._4f_c01029{width:16.680000px;}
._2d_c01029{width:17.748000px;}
._1b_c01029{width:19.680000px;}
._44_c01029{width:20.880000px;}
._2a_c01029{width:22.080000px;}
._38_c01029{width:24.864000px;}
._3b_c01029{width:26.280000px;}
._49_c01029{width:27.408000px;}
._3e_c01029{width:28.464000px;}
._37_c01029{width:29.808000px;}
._42_c01029{width:31.776000px;}
._4b_c01029{width:34.224000px;}
._47_c01029{width:35.328000px;}
._46_c01029{width:36.768000px;}
._2e_c01029{width:38.760000px;}
._27_c01029{width:40.032000px;}
._43_c01029{width:41.052000px;}
._4a_c01029{width:42.384000px;}
._3f_c01029{width:43.680000px;}
._36_c01029{width:45.600000px;}
._20_c01029{width:46.800000px;}
._54_c01029{width:47.904000px;}
._55_c01029{width:49.272000px;}
._52_c01029{width:51.696000px;}
._2b_c01029{width:52.704000px;}
._45_c01029{width:54.192000px;}
._48_c01029{width:56.256000px;}
._50_c01029{width:57.936000px;}
._40_c01029{width:59.184000px;}
._57_c01029{width:60.576000px;}
._4d_c01029{width:62.136000px;}
._22_c01029{width:63.360000px;}
._1e_c01029{width:64.800000px;}
._56_c01029{width:66.576000px;}
._1f_c01029{width:68.256000px;}
._28_c01029{width:69.984000px;}
._1a_c01029{width:76.128000px;}
._53_c01029{width:77.664000px;}
._58_c01029{width:79.416000px;}
._4e_c01029{width:85.824000px;}
._17_c01029{width:96.912000px;}
._6_c01029{width:98.496000px;}
._23_c01029{width:101.088000px;}
._10_c01029{width:104.832000px;}
._1c_c01029{width:109.800000px;}
._3d_c01029{width:116.970000px;}
._7_c01029{width:119.208000px;}
._e_c01029{width:135.072000px;}
._34_c01029{width:152.640000px;}
._13_c01029{width:155.232000px;}
._16_c01029{width:157.248000px;}
._35_c01029{width:177.366000px;}
._5a_c01029{width:180.030000px;}
._1d_c01029{width:230.256000px;}
._3a_c01029{width:235.452000px;}
._32_c01029{width:252.288000px;}
._5b_c01029{width:302.124000px;}
._59_c01029{width:307.344000px;}
._29_c01029{width:450.720000px;}
._2c_c01029{width:502.488000px;}
._3c_c01029{width:506.016000px;}
.fc2_c01029{color:transparent;}
.fc1_c01029{color:rgb(128,128,128);}
.fc0_c01029{color:rgb(0,0,0);}
.fs6_c01029{font-size:48.000000px;}
.fs4_c01029{font-size:78.000000px;}
.fs3_c01029{font-size:84.000000px;}
.fs1_c01029{font-size:96.000000px;}
.fs5_c01029{font-size:99.000000px;}
.fs2_c01029{font-size:102.000000px;}
.fs0_c01029{font-size:144.000000px;}
.y0_c01029{bottom:0.000000px;}
.y21_c01029{bottom:3.105000px;}
.y20_c01029{bottom:7.228357px;}
.y1f_c01029{bottom:103.230000px;}
.y1e_c01029{bottom:133.380000px;}
.y1d_c01029{bottom:170.730000px;}
.y1c_c01029{bottom:205.980000px;}
.y1b_c01029{bottom:240.030000px;}
.y1a_c01029{bottom:274.080000px;}
.y19_c01029{bottom:308.130000px;}
.y18_c01029{bottom:341.880000px;}
.y17_c01029{bottom:375.930000px;}
.y16_c01029{bottom:409.080000px;}
.y15_c01029{bottom:443.130000px;}
.y14_c01029{bottom:476.880000px;}
.y13_c01029{bottom:510.930000px;}
.y12_c01029{bottom:544.380000px;}
.y11_c01029{bottom:578.130000px;}
.y10_c01029{bottom:610.980000px;}
.yf_c01029{bottom:644.280000px;}
.ye_c01029{bottom:678.330000px;}
.yd_c01029{bottom:712.080000px;}
.yc_c01029{bottom:744.630000px;}
.yb_c01029{bottom:778.980000px;}
.ya_c01029{bottom:811.980000px;}
.y9_c01029{bottom:845.430000px;}
.y8_c01029{bottom:878.280000px;}
.y7_c01029{bottom:912.930000px;}
.y6_c01029{bottom:978.780000px;}
.y5_c01029{bottom:1036.080000px;}
.y4_c01029{bottom:1087.830000px;}
.y3_c01029{bottom:1138.080000px;}
.y2_c01029{bottom:1188.630000px;}
.y1_c01029{bottom:1239.330000px;}
.h4_c01029{height:13.200074px;}
.h5_c01029{height:43.804688px;}
.h3_c01029{height:121.546875px;}
.h2_c01029{height:182.320312px;}
.h0_c01029{height:1362.450000px;}
.h1_c01029{height:1362.750000px;}
.w2_c01029{width:104.875500px;}
.w1_c01029{width:849.750000px;}
.w0_c01029{width:849.975000px;}
.x0_c01029{left:0.000000px;}
.xb_c01029{left:107.100000px;}
.x4_c01029{left:162.300000px;}
.x5_c01029{left:176.100000px;}
.x1_c01029{left:236.850000px;}
.x2_c01029{left:239.400000px;}
.x7_c01029{left:241.650000px;}
.x8_c01029{left:242.700000px;}
.x9_c01029{left:243.750000px;}
.xa_c01029{left:244.800000px;}
.x3_c01029{left:246.450000px;}
.xc_c01029{left:250.800000px;}
.xd_c01029{left:376.801758px;}
.x6_c01029{left:478.650000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls2_c01029{letter-spacing:0.000000pt;}
.ls3_c01029{letter-spacing:2.666667pt;}
.ls0_c01029{letter-spacing:7.573333pt;}
.ls4_c01029{letter-spacing:8.000000pt;}
.ls1_c01029{letter-spacing:18.666667pt;}
.ws5_c01029{word-spacing:-56.928000pt;}
.ws0_c01029{word-spacing:-49.514667pt;}
.ws2_c01029{word-spacing:-48.000000pt;}
.ws4_c01029{word-spacing:-20.565333pt;}
.ws1_c01029{word-spacing:-18.373333pt;}
.ws6_c01029{word-spacing:0.000000pt;}
.ws3_c01029{word-spacing:8.778667pt;}
._33_c01029{margin-left:-70.912000pt;}
._25_c01029{margin-left:-60.416000pt;}
._24_c01029{margin-left:-52.352000pt;}
._26_c01029{margin-left:-49.365333pt;}
._4c_c01029{margin-left:-28.906667pt;}
._51_c01029{margin-left:-26.858667pt;}
._41_c01029{margin-left:-25.728000pt;}
._2f_c01029{margin-left:-21.152000pt;}
._21_c01029{margin-left:-12.416000pt;}
._b_c01029{margin-left:-10.112000pt;}
._c_c01029{margin-left:-9.088000pt;}
._d_c01029{margin-left:-8.064000pt;}
._9_c01029{margin-left:-6.912000pt;}
._31_c01029{margin-left:-5.546667pt;}
._a_c01029{margin-left:-4.608000pt;}
._f_c01029{margin-left:-3.200000pt;}
._18_c01029{margin-left:-2.048000pt;}
._19_c01029{margin-left:-1.024000pt;}
._15_c01029{width:1.024000pt;}
._14_c01029{width:2.432000pt;}
._8_c01029{width:3.456000pt;}
._12_c01029{width:4.352000pt;}
._39_c01029{width:5.376000pt;}
._11_c01029{width:6.272000pt;}
._5_c01029{width:7.168000pt;}
._0_c01029{width:8.576000pt;}
._2_c01029{width:9.728000pt;}
._4_c01029{width:10.624000pt;}
._3_c01029{width:11.520000pt;}
._1_c01029{width:12.416000pt;}
._30_c01029{width:13.797333pt;}
._4f_c01029{width:14.826667pt;}
._2d_c01029{width:15.776000pt;}
._1b_c01029{width:17.493333pt;}
._44_c01029{width:18.560000pt;}
._2a_c01029{width:19.626667pt;}
._38_c01029{width:22.101333pt;}
._3b_c01029{width:23.360000pt;}
._49_c01029{width:24.362667pt;}
._3e_c01029{width:25.301333pt;}
._37_c01029{width:26.496000pt;}
._42_c01029{width:28.245333pt;}
._4b_c01029{width:30.421333pt;}
._47_c01029{width:31.402667pt;}
._46_c01029{width:32.682667pt;}
._2e_c01029{width:34.453333pt;}
._27_c01029{width:35.584000pt;}
._43_c01029{width:36.490667pt;}
._4a_c01029{width:37.674667pt;}
._3f_c01029{width:38.826667pt;}
._36_c01029{width:40.533333pt;}
._20_c01029{width:41.600000pt;}
._54_c01029{width:42.581333pt;}
._55_c01029{width:43.797333pt;}
._52_c01029{width:45.952000pt;}
._2b_c01029{width:46.848000pt;}
._45_c01029{width:48.170667pt;}
._48_c01029{width:50.005333pt;}
._50_c01029{width:51.498667pt;}
._40_c01029{width:52.608000pt;}
._57_c01029{width:53.845333pt;}
._4d_c01029{width:55.232000pt;}
._22_c01029{width:56.320000pt;}
._1e_c01029{width:57.600000pt;}
._56_c01029{width:59.178667pt;}
._1f_c01029{width:60.672000pt;}
._28_c01029{width:62.208000pt;}
._1a_c01029{width:67.669333pt;}
._53_c01029{width:69.034667pt;}
._58_c01029{width:70.592000pt;}
._4e_c01029{width:76.288000pt;}
._17_c01029{width:86.144000pt;}
._6_c01029{width:87.552000pt;}
._23_c01029{width:89.856000pt;}
._10_c01029{width:93.184000pt;}
._1c_c01029{width:97.600000pt;}
._3d_c01029{width:103.973333pt;}
._7_c01029{width:105.962667pt;}
._e_c01029{width:120.064000pt;}
._34_c01029{width:135.680000pt;}
._13_c01029{width:137.984000pt;}
._16_c01029{width:139.776000pt;}
._35_c01029{width:157.658667pt;}
._5a_c01029{width:160.026667pt;}
._1d_c01029{width:204.672000pt;}
._3a_c01029{width:209.290667pt;}
._32_c01029{width:224.256000pt;}
._5b_c01029{width:268.554667pt;}
._59_c01029{width:273.194667pt;}
._29_c01029{width:400.640000pt;}
._2c_c01029{width:446.656000pt;}
._3c_c01029{width:449.792000pt;}
.fs6_c01029{font-size:42.666667pt;}
.fs4_c01029{font-size:69.333333pt;}
.fs3_c01029{font-size:74.666667pt;}
.fs1_c01029{font-size:85.333333pt;}
.fs5_c01029{font-size:88.000000pt;}
.fs2_c01029{font-size:90.666667pt;}
.fs0_c01029{font-size:128.000000pt;}
.y0_c01029{bottom:0.000000pt;}
.y21_c01029{bottom:2.760000pt;}
.y20_c01029{bottom:6.425206pt;}
.y1f_c01029{bottom:91.760000pt;}
.y1e_c01029{bottom:118.560000pt;}
.y1d_c01029{bottom:151.760000pt;}
.y1c_c01029{bottom:183.093333pt;}
.y1b_c01029{bottom:213.360000pt;}
.y1a_c01029{bottom:243.626667pt;}
.y19_c01029{bottom:273.893333pt;}
.y18_c01029{bottom:303.893333pt;}
.y17_c01029{bottom:334.160000pt;}
.y16_c01029{bottom:363.626667pt;}
.y15_c01029{bottom:393.893333pt;}
.y14_c01029{bottom:423.893333pt;}
.y13_c01029{bottom:454.160000pt;}
.y12_c01029{bottom:483.893333pt;}
.y11_c01029{bottom:513.893333pt;}
.y10_c01029{bottom:543.093333pt;}
.yf_c01029{bottom:572.693333pt;}
.ye_c01029{bottom:602.960000pt;}
.yd_c01029{bottom:632.960000pt;}
.yc_c01029{bottom:661.893333pt;}
.yb_c01029{bottom:692.426667pt;}
.ya_c01029{bottom:721.760000pt;}
.y9_c01029{bottom:751.493333pt;}
.y8_c01029{bottom:780.693333pt;}
.y7_c01029{bottom:811.493333pt;}
.y6_c01029{bottom:870.026667pt;}
.y5_c01029{bottom:920.960000pt;}
.y4_c01029{bottom:966.960000pt;}
.y3_c01029{bottom:1011.626667pt;}
.y2_c01029{bottom:1056.560000pt;}
.y1_c01029{bottom:1101.626667pt;}
.h4_c01029{height:11.733399pt;}
.h5_c01029{height:38.937500pt;}
.h3_c01029{height:108.041667pt;}
.h2_c01029{height:162.062500pt;}
.h0_c01029{height:1211.066667pt;}
.h1_c01029{height:1211.333333pt;}
.w2_c01029{width:93.222667pt;}
.w1_c01029{width:755.333333pt;}
.w0_c01029{width:755.533333pt;}
.x0_c01029{left:0.000000pt;}
.xb_c01029{left:95.200000pt;}
.x4_c01029{left:144.266667pt;}
.x5_c01029{left:156.533333pt;}
.x1_c01029{left:210.533333pt;}
.x2_c01029{left:212.800000pt;}
.x7_c01029{left:214.800000pt;}
.x8_c01029{left:215.733333pt;}
.x9_c01029{left:216.666667pt;}
.xa_c01029{left:217.600000pt;}
.x3_c01029{left:219.066667pt;}
.xc_c01029{left:222.933333pt;}
.xd_c01029{left:334.934896pt;}
.x6_c01029{left:425.466667pt;}
}





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

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_10cad2da3e321d0a4d80d143.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01030;src:url('chunks/assets/font_3eb07c1250b51e0ba7ae7931.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01030;src:url('chunks/assets/font_e2f2ee6f170d32206ba5b69c.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.291992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01030;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls3_c01030{letter-spacing:0.000000px;}
.ls4_c01030{letter-spacing:6.000000px;}
.ls2_c01030{letter-spacing:9.684000px;}
.ls1_c01030{letter-spacing:17.178000px;}
.ls0_c01030{letter-spacing:18.852000px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01030{word-spacing:-44.436000px;}
.ws2_c01030{word-spacing:0.000000px;}
.ws1_c01030{word-spacing:1.483200px;}
._2b_c01030{margin-left:-14.880000px;}
._32_c01030{margin-left:-13.668000px;}
._31_c01030{margin-left:-11.886000px;}
._a_c01030{margin-left:-10.752000px;}
._b_c01030{margin-left:-8.832000px;}
._1f_c01030{margin-left:-6.720000px;}
._9_c01030{margin-left:-5.280000px;}
._1d_c01030{margin-left:-3.360000px;}
._3f_c01030{margin-left:-2.354400px;}
._15_c01030{margin-left:-1.248000px;}
._2_c01030{width:1.536000px;}
._3_c01030{width:2.880000px;}
._1_c01030{width:4.416000px;}
._0_c01030{width:5.472000px;}
._4_c01030{width:7.488000px;}
._11_c01030{width:8.928000px;}
._7_c01030{width:10.080000px;}
._d_c01030{width:12.480000px;}
._e_c01030{width:14.688000px;}
._23_c01030{width:16.416000px;}
._25_c01030{width:17.476800px;}
._10_c01030{width:18.528000px;}
._17_c01030{width:19.588800px;}
._8_c01030{width:21.216000px;}
._18_c01030{width:24.763200px;}
._f_c01030{width:26.208000px;}
._c_c01030{width:27.840000px;}
._21_c01030{width:28.992000px;}
._22_c01030{width:30.432000px;}
._36_c01030{width:31.488000px;}
._19_c01030{width:32.928000px;}
._2f_c01030{width:34.848000px;}
._12_c01030{width:36.096000px;}
._14_c01030{width:38.880000px;}
._13_c01030{width:40.320000px;}
._37_c01030{width:41.568000px;}
._29_c01030{width:42.720000px;}
._3e_c01030{width:43.776000px;}
._6_c01030{width:44.928000px;}
._2c_c01030{width:46.646400px;}
._24_c01030{width:47.904000px;}
._5_c01030{width:49.920000px;}
._33_c01030{width:51.264000px;}
._26_c01030{width:52.416000px;}
._2e_c01030{width:53.760000px;}
._1c_c01030{width:55.776000px;}
._16_c01030{width:57.888000px;}
._3c_c01030{width:60.288000px;}
._20_c01030{width:61.440000px;}
._30_c01030{width:63.072000px;}
._1b_c01030{width:64.320000px;}
._38_c01030{width:66.432000px;}
._3b_c01030{width:67.680000px;}
._34_c01030{width:69.504000px;}
._1a_c01030{width:70.560000px;}
._2a_c01030{width:73.728000px;}
._3a_c01030{width:75.072000px;}
._40_c01030{width:76.992000px;}
._1e_c01030{width:79.392000px;}
._28_c01030{width:80.448000px;}
._39_c01030{width:82.560000px;}
._2d_c01030{width:85.920000px;}
._35_c01030{width:88.992000px;}
._3d_c01030{width:105.696000px;}
._27_c01030{width:156.864000px;}
.fc2_c01030{color:transparent;}
.fc1_c01030{color:rgb(128,128,128);}
.fc0_c01030{color:rgb(0,0,0);}
.fs5_c01030{font-size:48.000000px;}
.fs3_c01030{font-size:52.800000px;}
.fs2_c01030{font-size:66.000000px;}
.fs1_c01030{font-size:84.000000px;}
.fs0_c01030{font-size:96.000000px;}
.fs4_c01030{font-size:102.000000px;}
.y0_c01030{bottom:0.000000px;}
.y25_c01030{bottom:3.105000px;}
.y24_c01030{bottom:7.228369px;}
.y23_c01030{bottom:141.420000px;}
.y22_c01030{bottom:176.220000px;}
.y21_c01030{bottom:210.270000px;}
.y20_c01030{bottom:244.020000px;}
.y1f_c01030{bottom:277.470000px;}
.y1e_c01030{bottom:311.820000px;}
.y1d_c01030{bottom:345.570000px;}
.y1c_c01030{bottom:379.620000px;}
.y1b_c01030{bottom:413.370000px;}
.y1a_c01030{bottom:447.120000px;}
.y19_c01030{bottom:480.570000px;}
.y18_c01030{bottom:514.320000px;}
.y17_c01030{bottom:548.070000px;}
.y16_c01030{bottom:581.520000px;}
.y15_c01030{bottom:615.270000px;}
.y14_c01030{bottom:649.020000px;}
.y13_c01030{bottom:683.070000px;}
.y12_c01030{bottom:716.220000px;}
.y11_c01030{bottom:749.520000px;}
.y10_c01030{bottom:783.270000px;}
.yf_c01030{bottom:816.420000px;}
.ye_c01030{bottom:849.420000px;}
.yd_c01030{bottom:882.270000px;}
.yc_c01030{bottom:916.320000px;}
.yb_c01030{bottom:949.620000px;}
.ya_c01030{bottom:983.070000px;}
.y9_c01030{bottom:1015.770000px;}
.y8_c01030{bottom:1050.870000px;}
.y7_c01030{bottom:1082.970000px;}
.y6_c01030{bottom:1116.120000px;}
.y5_c01030{bottom:1148.220000px;}
.y4_c01030{bottom:1181.820000px;}
.y3_c01030{bottom:1214.970000px;}
.y2_c01030{bottom:1248.120000px;}
.y1_c01030{bottom:1281.720000px;}
.h4_c01030{height:13.200073px;}
.h5_c01030{height:43.804688px;}
.h2_c01030{height:121.546875px;}
.h3_c01030{height:129.143555px;}
.h0_c01030{height:1383.450000px;}
.h1_c01030{height:1383.750000px;}
.w2_c01030{width:104.875500px;}
.w0_c01030{width:878.025000px;}
.w1_c01030{width:878.250000px;}
.x0_c01030{left:0.000000px;}
.xb_c01030{left:39.750000px;}
.xa_c01030{left:41.850000px;}
.x9_c01030{left:42.900000px;}
.x7_c01030{left:44.100000px;}
.x8_c01030{left:45.600000px;}
.x6_c01030{left:46.800000px;}
.xc_c01030{left:48.300000px;}
.x4_c01030{left:50.550000px;}
.x3_c01030{left:51.600000px;}
.x2_c01030{left:52.650000px;}
.x1_c01030{left:54.750000px;}
.x5_c01030{left:99.600000px;}
.xd_c01030{left:390.826721px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls3_c01030{letter-spacing:0.000000pt;}
.ls4_c01030{letter-spacing:5.333333pt;}
.ls2_c01030{letter-spacing:8.608000pt;}
.ls1_c01030{letter-spacing:15.269333pt;}
.ls0_c01030{letter-spacing:16.757333pt;}
.ws0_c01030{word-spacing:-39.498667pt;}
.ws2_c01030{word-spacing:0.000000pt;}
.ws1_c01030{word-spacing:1.318400pt;}
._2b_c01030{margin-left:-13.226667pt;}
._32_c01030{margin-left:-12.149333pt;}
._31_c01030{margin-left:-10.565333pt;}
._a_c01030{margin-left:-9.557333pt;}
._b_c01030{margin-left:-7.850667pt;}
._1f_c01030{margin-left:-5.973333pt;}
._9_c01030{margin-left:-4.693333pt;}
._1d_c01030{margin-left:-2.986667pt;}
._3f_c01030{margin-left:-2.092800pt;}
._15_c01030{margin-left:-1.109333pt;}
._2_c01030{width:1.365333pt;}
._3_c01030{width:2.560000pt;}
._1_c01030{width:3.925333pt;}
._0_c01030{width:4.864000pt;}
._4_c01030{width:6.656000pt;}
._11_c01030{width:7.936000pt;}
._7_c01030{width:8.960000pt;}
._d_c01030{width:11.093333pt;}
._e_c01030{width:13.056000pt;}
._23_c01030{width:14.592000pt;}
._25_c01030{width:15.534933pt;}
._10_c01030{width:16.469333pt;}
._17_c01030{width:17.412267pt;}
._8_c01030{width:18.858667pt;}
._18_c01030{width:22.011733pt;}
._f_c01030{width:23.296000pt;}
._c_c01030{width:24.746667pt;}
._21_c01030{width:25.770667pt;}
._22_c01030{width:27.050667pt;}
._36_c01030{width:27.989333pt;}
._19_c01030{width:29.269333pt;}
._2f_c01030{width:30.976000pt;}
._12_c01030{width:32.085333pt;}
._14_c01030{width:34.560000pt;}
._13_c01030{width:35.840000pt;}
._37_c01030{width:36.949333pt;}
._29_c01030{width:37.973333pt;}
._3e_c01030{width:38.912000pt;}
._6_c01030{width:39.936000pt;}
._2c_c01030{width:41.463467pt;}
._24_c01030{width:42.581333pt;}
._5_c01030{width:44.373333pt;}
._33_c01030{width:45.568000pt;}
._26_c01030{width:46.592000pt;}
._2e_c01030{width:47.786667pt;}
._1c_c01030{width:49.578667pt;}
._16_c01030{width:51.456000pt;}
._3c_c01030{width:53.589333pt;}
._20_c01030{width:54.613333pt;}
._30_c01030{width:56.064000pt;}
._1b_c01030{width:57.173333pt;}
._38_c01030{width:59.050667pt;}
._3b_c01030{width:60.160000pt;}
._34_c01030{width:61.781333pt;}
._1a_c01030{width:62.720000pt;}
._2a_c01030{width:65.536000pt;}
._3a_c01030{width:66.730667pt;}
._40_c01030{width:68.437333pt;}
._1e_c01030{width:70.570667pt;}
._28_c01030{width:71.509333pt;}
._39_c01030{width:73.386667pt;}
._2d_c01030{width:76.373333pt;}
._35_c01030{width:79.104000pt;}
._3d_c01030{width:93.952000pt;}
._27_c01030{width:139.434667pt;}
.fs5_c01030{font-size:42.666667pt;}
.fs3_c01030{font-size:46.933333pt;}
.fs2_c01030{font-size:58.666667pt;}
.fs1_c01030{font-size:74.666667pt;}
.fs0_c01030{font-size:85.333333pt;}
.fs4_c01030{font-size:90.666667pt;}
.y0_c01030{bottom:0.000000pt;}
.y25_c01030{bottom:2.760000pt;}
.y24_c01030{bottom:6.425217pt;}
.y23_c01030{bottom:125.706667pt;}
.y22_c01030{bottom:156.640000pt;}
.y21_c01030{bottom:186.906667pt;}
.y20_c01030{bottom:216.906667pt;}
.y1f_c01030{bottom:246.640000pt;}
.y1e_c01030{bottom:277.173333pt;}
.y1d_c01030{bottom:307.173333pt;}
.y1c_c01030{bottom:337.440000pt;}
.y1b_c01030{bottom:367.440000pt;}
.y1a_c01030{bottom:397.440000pt;}
.y19_c01030{bottom:427.173333pt;}
.y18_c01030{bottom:457.173333pt;}
.y17_c01030{bottom:487.173333pt;}
.y16_c01030{bottom:516.906667pt;}
.y15_c01030{bottom:546.906667pt;}
.y14_c01030{bottom:576.906667pt;}
.y13_c01030{bottom:607.173333pt;}
.y12_c01030{bottom:636.640000pt;}
.y11_c01030{bottom:666.240000pt;}
.y10_c01030{bottom:696.240000pt;}
.yf_c01030{bottom:725.706667pt;}
.ye_c01030{bottom:755.040000pt;}
.yd_c01030{bottom:784.240000pt;}
.yc_c01030{bottom:814.506667pt;}
.yb_c01030{bottom:844.106667pt;}
.ya_c01030{bottom:873.840000pt;}
.y9_c01030{bottom:902.906667pt;}
.y8_c01030{bottom:934.106667pt;}
.y7_c01030{bottom:962.640000pt;}
.y6_c01030{bottom:992.106667pt;}
.y5_c01030{bottom:1020.640000pt;}
.y4_c01030{bottom:1050.506667pt;}
.y3_c01030{bottom:1079.973333pt;}
.y2_c01030{bottom:1109.440000pt;}
.y1_c01030{bottom:1139.306667pt;}
.h4_c01030{height:11.733399pt;}
.h5_c01030{height:38.937500pt;}
.h2_c01030{height:108.041667pt;}
.h3_c01030{height:114.794271pt;}
.h0_c01030{height:1229.733333pt;}
.h1_c01030{height:1230.000000pt;}
.w2_c01030{width:93.222667pt;}
.w0_c01030{width:780.466667pt;}
.w1_c01030{width:780.666667pt;}
.x0_c01030{left:0.000000pt;}
.xb_c01030{left:35.333333pt;}
.xa_c01030{left:37.200000pt;}
.x9_c01030{left:38.133333pt;}
.x7_c01030{left:39.200000pt;}
.x8_c01030{left:40.533333pt;}
.x6_c01030{left:41.600000pt;}
.xc_c01030{left:42.933333pt;}
.x4_c01030{left:44.933333pt;}
.x3_c01030{left:45.866667pt;}
.x2_c01030{left:46.800000pt;}
.x1_c01030{left:48.666667pt;}
.x5_c01030{left:88.533333pt;}
.xd_c01030{left:347.401530pt;}
}





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

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_2f316a6bccc712ac621d9332.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01031;src:url('chunks/assets/font_42851355c81e04025f3e7cc5.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01031;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls1_c01031{letter-spacing:0.000000px;}
.ls0_c01031{letter-spacing:19.320000px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01031{word-spacing:-20.244000px;}
.ws2_c01031{word-spacing:0.000000px;}
.ws1_c01031{word-spacing:5.544000px;}
._46_c01031{margin-left:-85.812000px;}
._47_c01031{margin-left:-83.328000px;}
._27_c01031{margin-left:-81.216000px;}
._31_c01031{margin-left:-62.592000px;}
._43_c01031{margin-left:-55.776000px;}
._45_c01031{margin-left:-25.536000px;}
._34_c01031{margin-left:-23.424000px;}
._42_c01031{margin-left:-20.928000px;}
._36_c01031{margin-left:-17.856000px;}
._25_c01031{margin-left:-13.920000px;}
._22_c01031{margin-left:-11.712000px;}
._4d_c01031{margin-left:-10.176000px;}
._30_c01031{margin-left:-9.120000px;}
._39_c01031{margin-left:-7.200000px;}
._2a_c01031{margin-left:-5.856000px;}
._40_c01031{margin-left:-4.608000px;}
._29_c01031{margin-left:-3.552000px;}
._12_c01031{margin-left:-1.728000px;}
._8_c01031{width:1.248000px;}
._1_c01031{width:2.688000px;}
._2_c01031{width:3.840000px;}
._0_c01031{width:5.184000px;}
._a_c01031{width:6.432000px;}
._c_c01031{width:7.584000px;}
._7_c01031{width:9.408000px;}
._21_c01031{width:10.464000px;}
._6_c01031{width:12.000000px;}
._5_c01031{width:13.728000px;}
._f_c01031{width:15.360000px;}
._13_c01031{width:16.704000px;}
._4a_c01031{width:17.760000px;}
._1f_c01031{width:19.008000px;}
._2b_c01031{width:20.064000px;}
._1b_c01031{width:22.080000px;}
._2c_c01031{width:24.768000px;}
._4_c01031{width:26.592000px;}
._14_c01031{width:28.608000px;}
._3_c01031{width:29.664000px;}
._15_c01031{width:32.640000px;}
._d_c01031{width:33.984000px;}
._19_c01031{width:36.864000px;}
._1e_c01031{width:39.168000px;}
._9_c01031{width:40.416000px;}
._11_c01031{width:42.336000px;}
._10_c01031{width:43.392000px;}
._1a_c01031{width:44.928000px;}
._e_c01031{width:47.136000px;}
._3c_c01031{width:48.756000px;}
._18_c01031{width:51.072000px;}
._38_c01031{width:52.704000px;}
._16_c01031{width:54.144000px;}
._2d_c01031{width:55.212000px;}
._1d_c01031{width:56.256000px;}
._1c_c01031{width:58.464000px;}
._2e_c01031{width:60.888000px;}
._3b_c01031{width:62.484000px;}
._3e_c01031{width:64.512000px;}
._17_c01031{width:66.624000px;}
._b_c01031{width:69.600000px;}
._3d_c01031{width:71.496000px;}
._23_c01031{width:72.864000px;}
._3f_c01031{width:75.168000px;}
._2f_c01031{width:80.160000px;}
._28_c01031{width:85.824000px;}
._26_c01031{width:105.504000px;}
._3a_c01031{width:109.728000px;}
._44_c01031{width:124.704000px;}
._49_c01031{width:162.048000px;}
._20_c01031{width:176.640000px;}
._37_c01031{width:192.864000px;}
._4b_c01031{width:202.848000px;}
._4c_c01031{width:226.464000px;}
._35_c01031{width:239.712000px;}
._41_c01031{width:243.264000px;}
._32_c01031{width:275.952000px;}
._48_c01031{width:765.312000px;}
._33_c01031{width:964.344000px;}
._24_c01031{width:1285.056000px;}
.fc2_c01031{color:transparent;}
.fc1_c01031{color:rgb(128,128,128);}
.fc0_c01031{color:rgb(0,0,0);}
.fs2_c01031{font-size:48.000000px;}
.fs1_c01031{font-size:84.000000px;}
.fs0_c01031{font-size:96.000000px;}
.y0_c01031{bottom:0.000000px;}
.y25_c01031{bottom:3.105000px;}
.y24_c01031{bottom:7.228357px;}
.y23_c01031{bottom:118.230000px;}
.y22_c01031{bottom:152.880000px;}
.y21_c01031{bottom:185.730000px;}
.y20_c01031{bottom:220.080000px;}
.y1f_c01031{bottom:254.430000px;}
.y1e_c01031{bottom:288.330000px;}
.y1d_c01031{bottom:321.930000px;}
.y1c_c01031{bottom:355.830000px;}
.y1b_c01031{bottom:389.580000px;}
.y1a_c01031{bottom:423.930000px;}
.y19_c01031{bottom:457.380000px;}
.y18_c01031{bottom:490.830000px;}
.y17_c01031{bottom:525.180000px;}
.y16_c01031{bottom:559.230000px;}
.y15_c01031{bottom:592.980000px;}
.y14_c01031{bottom:626.730000px;}
.y13_c01031{bottom:660.180000px;}
.y12_c01031{bottom:692.280000px;}
.y11_c01031{bottom:727.980000px;}
.y10_c01031{bottom:760.680000px;}
.yf_c01031{bottom:794.580000px;}
.ye_c01031{bottom:827.880000px;}
.yd_c01031{bottom:861.330000px;}
.yc_c01031{bottom:894.780000px;}
.yb_c01031{bottom:927.780000px;}
.ya_c01031{bottom:961.830000px;}
.y9_c01031{bottom:994.680000px;}
.y8_c01031{bottom:1027.980000px;}
.y7_c01031{bottom:1060.530000px;}
.y6_c01031{bottom:1094.280000px;}
.y5_c01031{bottom:1128.330000px;}
.y4_c01031{bottom:1161.030000px;}
.y3_c01031{bottom:1194.480000px;}
.y2_c01031{bottom:1227.780000px;}
.y1_c01031{bottom:1261.230000px;}
.h3_c01031{height:13.200074px;}
.h4_c01031{height:43.804688px;}
.h2_c01031{height:121.546875px;}
.h0_c01031{height:1382.700000px;}
.h1_c01031{height:1383.000000px;}
.w2_c01031{width:104.875500px;}
.w0_c01031{width:863.175000px;}
.w1_c01031{width:863.250000px;}
.x0_c01031{left:0.000000px;}
.x8_c01031{left:136.800000px;}
.x5_c01031{left:194.100000px;}
.x1_c01031{left:224.850000px;}
.x2_c01031{left:226.050000px;}
.x6_c01031{left:228.150000px;}
.x3_c01031{left:229.200000px;}
.x7_c01031{left:230.400000px;}
.xd_c01031{left:231.450000px;}
.xc_c01031{left:232.500000px;}
.x9_c01031{left:233.550000px;}
.xa_c01031{left:234.600000px;}
.x4_c01031{left:280.500000px;}
.xb_c01031{left:285.900000px;}
.xe_c01031{left:383.401749px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls1_c01031{letter-spacing:0.000000pt;}
.ls0_c01031{letter-spacing:17.173333pt;}
.ws0_c01031{word-spacing:-17.994667pt;}
.ws2_c01031{word-spacing:0.000000pt;}
.ws1_c01031{word-spacing:4.928000pt;}
._46_c01031{margin-left:-76.277333pt;}
._47_c01031{margin-left:-74.069333pt;}
._27_c01031{margin-left:-72.192000pt;}
._31_c01031{margin-left:-55.637333pt;}
._43_c01031{margin-left:-49.578667pt;}
._45_c01031{margin-left:-22.698667pt;}
._34_c01031{margin-left:-20.821333pt;}
._42_c01031{margin-left:-18.602667pt;}
._36_c01031{margin-left:-15.872000pt;}
._25_c01031{margin-left:-12.373333pt;}
._22_c01031{margin-left:-10.410667pt;}
._4d_c01031{margin-left:-9.045333pt;}
._30_c01031{margin-left:-8.106667pt;}
._39_c01031{margin-left:-6.400000pt;}
._2a_c01031{margin-left:-5.205333pt;}
._40_c01031{margin-left:-4.096000pt;}
._29_c01031{margin-left:-3.157333pt;}
._12_c01031{margin-left:-1.536000pt;}
._8_c01031{width:1.109333pt;}
._1_c01031{width:2.389333pt;}
._2_c01031{width:3.413333pt;}
._0_c01031{width:4.608000pt;}
._a_c01031{width:5.717333pt;}
._c_c01031{width:6.741333pt;}
._7_c01031{width:8.362667pt;}
._21_c01031{width:9.301333pt;}
._6_c01031{width:10.666667pt;}
._5_c01031{width:12.202667pt;}
._f_c01031{width:13.653333pt;}
._13_c01031{width:14.848000pt;}
._4a_c01031{width:15.786667pt;}
._1f_c01031{width:16.896000pt;}
._2b_c01031{width:17.834667pt;}
._1b_c01031{width:19.626667pt;}
._2c_c01031{width:22.016000pt;}
._4_c01031{width:23.637333pt;}
._14_c01031{width:25.429333pt;}
._3_c01031{width:26.368000pt;}
._15_c01031{width:29.013333pt;}
._d_c01031{width:30.208000pt;}
._19_c01031{width:32.768000pt;}
._1e_c01031{width:34.816000pt;}
._9_c01031{width:35.925333pt;}
._11_c01031{width:37.632000pt;}
._10_c01031{width:38.570667pt;}
._1a_c01031{width:39.936000pt;}
._e_c01031{width:41.898667pt;}
._3c_c01031{width:43.338667pt;}
._18_c01031{width:45.397333pt;}
._38_c01031{width:46.848000pt;}
._16_c01031{width:48.128000pt;}
._2d_c01031{width:49.077333pt;}
._1d_c01031{width:50.005333pt;}
._1c_c01031{width:51.968000pt;}
._2e_c01031{width:54.122667pt;}
._3b_c01031{width:55.541333pt;}
._3e_c01031{width:57.344000pt;}
._17_c01031{width:59.221333pt;}
._b_c01031{width:61.866667pt;}
._3d_c01031{width:63.552000pt;}
._23_c01031{width:64.768000pt;}
._3f_c01031{width:66.816000pt;}
._2f_c01031{width:71.253333pt;}
._28_c01031{width:76.288000pt;}
._26_c01031{width:93.781333pt;}
._3a_c01031{width:97.536000pt;}
._44_c01031{width:110.848000pt;}
._49_c01031{width:144.042667pt;}
._20_c01031{width:157.013333pt;}
._37_c01031{width:171.434667pt;}
._4b_c01031{width:180.309333pt;}
._4c_c01031{width:201.301333pt;}
._35_c01031{width:213.077333pt;}
._41_c01031{width:216.234667pt;}
._32_c01031{width:245.290667pt;}
._48_c01031{width:680.277333pt;}
._33_c01031{width:857.194667pt;}
._24_c01031{width:1142.272000pt;}
.fs2_c01031{font-size:42.666667pt;}
.fs1_c01031{font-size:74.666667pt;}
.fs0_c01031{font-size:85.333333pt;}
.y0_c01031{bottom:0.000000pt;}
.y25_c01031{bottom:2.760000pt;}
.y24_c01031{bottom:6.425206pt;}
.y23_c01031{bottom:105.093333pt;}
.y22_c01031{bottom:135.893333pt;}
.y21_c01031{bottom:165.093333pt;}
.y20_c01031{bottom:195.626667pt;}
.y1f_c01031{bottom:226.160000pt;}
.y1e_c01031{bottom:256.293333pt;}
.y1d_c01031{bottom:286.160000pt;}
.y1c_c01031{bottom:316.293333pt;}
.y1b_c01031{bottom:346.293333pt;}
.y1a_c01031{bottom:376.826667pt;}
.y19_c01031{bottom:406.560000pt;}
.y18_c01031{bottom:436.293333pt;}
.y17_c01031{bottom:466.826667pt;}
.y16_c01031{bottom:497.093333pt;}
.y15_c01031{bottom:527.093333pt;}
.y14_c01031{bottom:557.093333pt;}
.y13_c01031{bottom:586.826667pt;}
.y12_c01031{bottom:615.360000pt;}
.y11_c01031{bottom:647.093333pt;}
.y10_c01031{bottom:676.160000pt;}
.yf_c01031{bottom:706.293333pt;}
.ye_c01031{bottom:735.893333pt;}
.yd_c01031{bottom:765.626667pt;}
.yc_c01031{bottom:795.360000pt;}
.yb_c01031{bottom:824.693333pt;}
.ya_c01031{bottom:854.960000pt;}
.y9_c01031{bottom:884.160000pt;}
.y8_c01031{bottom:913.760000pt;}
.y7_c01031{bottom:942.693333pt;}
.y6_c01031{bottom:972.693333pt;}
.y5_c01031{bottom:1002.960000pt;}
.y4_c01031{bottom:1032.026667pt;}
.y3_c01031{bottom:1061.760000pt;}
.y2_c01031{bottom:1091.360000pt;}
.y1_c01031{bottom:1121.093333pt;}
.h3_c01031{height:11.733399pt;}
.h4_c01031{height:38.937500pt;}
.h2_c01031{height:108.041667pt;}
.h0_c01031{height:1229.066667pt;}
.h1_c01031{height:1229.333333pt;}
.w2_c01031{width:93.222667pt;}
.w0_c01031{width:767.266667pt;}
.w1_c01031{width:767.333333pt;}
.x0_c01031{left:0.000000pt;}
.x8_c01031{left:121.600000pt;}
.x5_c01031{left:172.533333pt;}
.x1_c01031{left:199.866667pt;}
.x2_c01031{left:200.933333pt;}
.x6_c01031{left:202.800000pt;}
.x3_c01031{left:203.733333pt;}
.x7_c01031{left:204.800000pt;}
.xd_c01031{left:205.733333pt;}
.xc_c01031{left:206.666667pt;}
.x9_c01031{left:207.600000pt;}
.xa_c01031{left:208.533333pt;}
.x4_c01031{left:249.333333pt;}
.xb_c01031{left:254.133333pt;}
.xe_c01031{left:340.801554pt;}
}





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

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_0217f7388d5c66a90839ee56.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01032;src:url('chunks/assets/font_85844fd3cdcd5be871ccc58e.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_53bf9086e7ce3d08ccf5b74b.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls1_c01032{letter-spacing:0.000000px;}
.ls2_c01032{letter-spacing:3.000000px;}
.ls0_c01032{letter-spacing:11.052000px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01032{word-spacing:-54.000000px;}
.ws1_c01032{word-spacing:-20.244000px;}
.ws2_c01032{word-spacing:0.000000px;}
._2c_c01032{margin-left:-26.328000px;}
._3d_c01032{margin-left:-23.904000px;}
._41_c01032{margin-left:-21.756000px;}
._1d_c01032{margin-left:-15.744000px;}
._2d_c01032{margin-left:-14.532000px;}
._1e_c01032{margin-left:-10.968000px;}
._3b_c01032{margin-left:-9.696000px;}
._3c_c01032{margin-left:-8.448000px;}
._33_c01032{margin-left:-7.080000px;}
._1c_c01032{margin-left:-4.512000px;}
._a_c01032{margin-left:-3.456000px;}
._13_c01032{margin-left:-1.536000px;}
._2_c01032{width:2.016000px;}
._1_c01032{width:3.264000px;}
._8_c01032{width:4.896000px;}
._2a_c01032{width:5.952000px;}
._7_c01032{width:7.008000px;}
._21_c01032{width:8.160000px;}
._f_c01032{width:9.216000px;}
._23_c01032{width:10.272000px;}
._1f_c01032{width:11.616000px;}
._25_c01032{width:12.864000px;}
._d_c01032{width:14.784000px;}
._5_c01032{width:16.992000px;}
._2f_c01032{width:18.048000px;}
._10_c01032{width:19.296000px;}
._0_c01032{width:20.928000px;}
._3_c01032{width:25.440000px;}
._24_c01032{width:27.456000px;}
._6_c01032{width:28.512000px;}
._9_c01032{width:29.856000px;}
._30_c01032{width:30.876000px;}
._e_c01032{width:32.064000px;}
._19_c01032{width:34.080000px;}
._2e_c01032{width:35.148000px;}
._12_c01032{width:36.192000px;}
._28_c01032{width:37.632000px;}
._4_c01032{width:38.976000px;}
._11_c01032{width:40.032000px;}
._18_c01032{width:41.088000px;}
._29_c01032{width:42.432000px;}
._2b_c01032{width:43.452000px;}
._b_c01032{width:45.024000px;}
._16_c01032{width:47.040000px;}
._31_c01032{width:48.612000px;}
._14_c01032{width:49.632000px;}
._22_c01032{width:50.880000px;}
._c_c01032{width:52.224000px;}
._15_c01032{width:54.240000px;}
._17_c01032{width:55.680000px;}
._20_c01032{width:57.792000px;}
._35_c01032{width:59.736000px;}
._38_c01032{width:62.304000px;}
._27_c01032{width:63.648000px;}
._36_c01032{width:66.528000px;}
._1b_c01032{width:67.848000px;}
._26_c01032{width:69.216000px;}
._1a_c01032{width:70.656000px;}
._37_c01032{width:74.112000px;}
._39_c01032{width:96.096000px;}
._40_c01032{width:131.136000px;}
._34_c01032{width:174.912000px;}
._3a_c01032{width:185.664000px;}
._3e_c01032{width:217.824000px;}
._3f_c01032{width:428.616000px;}
._32_c01032{width:555.744000px;}
._42_c01032{width:764.064000px;}
.fc2_c01032{color:transparent;}
.fc1_c01032{color:rgb(128,128,128);}
.fc0_c01032{color:rgb(0,0,0);}
.fs3_c01032{font-size:48.000000px;}
.fs0_c01032{font-size:84.000000px;}
.fs1_c01032{font-size:96.000000px;}
.fs2_c01032{font-size:102.000000px;}
.y0_c01032{bottom:0.000000px;}
.y26_c01032{bottom:3.105000px;}
.y25_c01032{bottom:7.228369px;}
.y24_c01032{bottom:107.670000px;}
.y23_c01032{bottom:142.770000px;}
.y22_c01032{bottom:176.820000px;}
.y21_c01032{bottom:210.570000px;}
.y20_c01032{bottom:244.920000px;}
.y1f_c01032{bottom:278.670000px;}
.y1e_c01032{bottom:312.870000px;}
.y1d_c01032{bottom:346.170000px;}
.y1c_c01032{bottom:380.070000px;}
.y1b_c01032{bottom:413.370000px;}
.y1a_c01032{bottom:446.820000px;}
.y19_c01032{bottom:481.170000px;}
.y18_c01032{bottom:514.620000px;}
.y17_c01032{bottom:548.070000px;}
.y16_c01032{bottom:582.420000px;}
.y15_c01032{bottom:615.270000px;}
.y14_c01032{bottom:649.020000px;}
.y13_c01032{bottom:682.470000px;}
.y12_c01032{bottom:716.070000px;}
.y11_c01032{bottom:749.520000px;}
.y10_c01032{bottom:783.270000px;}
.yf_c01032{bottom:816.120000px;}
.ye_c01032{bottom:848.820000px;}
.yd_c01032{bottom:882.270000px;}
.yc_c01032{bottom:915.870000px;}
.yb_c01032{bottom:949.620000px;}
.ya_c01032{bottom:982.770000px;}
.y9_c01032{bottom:1015.920000px;}
.y8_c01032{bottom:1049.520000px;}
.y7_c01032{bottom:1081.920000px;}
.y6_c01032{bottom:1114.470000px;}
.y5_c01032{bottom:1147.470000px;}
.y4_c01032{bottom:1180.470000px;}
.y3_c01032{bottom:1213.320000px;}
.y2_c01032{bottom:1246.770000px;}
.y1_c01032{bottom:1280.370000px;}
.h3_c01032{height:13.200073px;}
.h4_c01032{height:43.804688px;}
.h2_c01032{height:121.546875px;}
.h0_c01032{height:1383.450000px;}
.h1_c01032{height:1383.750000px;}
.w2_c01032{width:104.875500px;}
.w0_c01032{width:878.025000px;}
.w1_c01032{width:878.250000px;}
.x0_c01032{left:0.000000px;}
.xe_c01032{left:17.550000px;}
.x9_c01032{left:20.850000px;}
.xa_c01032{left:22.500000px;}
.xd_c01032{left:24.000000px;}
.x8_c01032{left:25.650000px;}
.x7_c01032{left:27.300000px;}
.x6_c01032{left:28.350000px;}
.x5_c01032{left:29.400000px;}
.xc_c01032{left:30.600000px;}
.x4_c01032{left:31.650000px;}
.x3_c01032{left:32.700000px;}
.x2_c01032{left:35.400000px;}
.x1_c01032{left:36.900000px;}
.xb_c01032{left:80.700000px;}
.xf_c01032{left:390.826721px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls1_c01032{letter-spacing:0.000000pt;}
.ls2_c01032{letter-spacing:2.666667pt;}
.ls0_c01032{letter-spacing:9.824000pt;}
.ws0_c01032{word-spacing:-48.000000pt;}
.ws1_c01032{word-spacing:-17.994667pt;}
.ws2_c01032{word-spacing:0.000000pt;}
._2c_c01032{margin-left:-23.402667pt;}
._3d_c01032{margin-left:-21.248000pt;}
._41_c01032{margin-left:-19.338667pt;}
._1d_c01032{margin-left:-13.994667pt;}
._2d_c01032{margin-left:-12.917333pt;}
._1e_c01032{margin-left:-9.749333pt;}
._3b_c01032{margin-left:-8.618667pt;}
._3c_c01032{margin-left:-7.509333pt;}
._33_c01032{margin-left:-6.293333pt;}
._1c_c01032{margin-left:-4.010667pt;}
._a_c01032{margin-left:-3.072000pt;}
._13_c01032{margin-left:-1.365333pt;}
._2_c01032{width:1.792000pt;}
._1_c01032{width:2.901333pt;}
._8_c01032{width:4.352000pt;}
._2a_c01032{width:5.290667pt;}
._7_c01032{width:6.229333pt;}
._21_c01032{width:7.253333pt;}
._f_c01032{width:8.192000pt;}
._23_c01032{width:9.130667pt;}
._1f_c01032{width:10.325333pt;}
._25_c01032{width:11.434667pt;}
._d_c01032{width:13.141333pt;}
._5_c01032{width:15.104000pt;}
._2f_c01032{width:16.042667pt;}
._10_c01032{width:17.152000pt;}
._0_c01032{width:18.602667pt;}
._3_c01032{width:22.613333pt;}
._24_c01032{width:24.405333pt;}
._6_c01032{width:25.344000pt;}
._9_c01032{width:26.538667pt;}
._30_c01032{width:27.445333pt;}
._e_c01032{width:28.501333pt;}
._19_c01032{width:30.293333pt;}
._2e_c01032{width:31.242667pt;}
._12_c01032{width:32.170667pt;}
._28_c01032{width:33.450667pt;}
._4_c01032{width:34.645333pt;}
._11_c01032{width:35.584000pt;}
._18_c01032{width:36.522667pt;}
._29_c01032{width:37.717333pt;}
._2b_c01032{width:38.624000pt;}
._b_c01032{width:40.021333pt;}
._16_c01032{width:41.813333pt;}
._31_c01032{width:43.210667pt;}
._14_c01032{width:44.117333pt;}
._22_c01032{width:45.226667pt;}
._c_c01032{width:46.421333pt;}
._15_c01032{width:48.213333pt;}
._17_c01032{width:49.493333pt;}
._20_c01032{width:51.370667pt;}
._35_c01032{width:53.098667pt;}
._38_c01032{width:55.381333pt;}
._27_c01032{width:56.576000pt;}
._36_c01032{width:59.136000pt;}
._1b_c01032{width:60.309333pt;}
._26_c01032{width:61.525333pt;}
._1a_c01032{width:62.805333pt;}
._37_c01032{width:65.877333pt;}
._39_c01032{width:85.418667pt;}
._40_c01032{width:116.565333pt;}
._34_c01032{width:155.477333pt;}
._3a_c01032{width:165.034667pt;}
._3e_c01032{width:193.621333pt;}
._3f_c01032{width:380.992000pt;}
._32_c01032{width:493.994667pt;}
._42_c01032{width:679.168000pt;}
.fs3_c01032{font-size:42.666667pt;}
.fs0_c01032{font-size:74.666667pt;}
.fs1_c01032{font-size:85.333333pt;}
.fs2_c01032{font-size:90.666667pt;}
.y0_c01032{bottom:0.000000pt;}
.y26_c01032{bottom:2.760000pt;}
.y25_c01032{bottom:6.425217pt;}
.y24_c01032{bottom:95.706667pt;}
.y23_c01032{bottom:126.906667pt;}
.y22_c01032{bottom:157.173333pt;}
.y21_c01032{bottom:187.173333pt;}
.y20_c01032{bottom:217.706667pt;}
.y1f_c01032{bottom:247.706667pt;}
.y1e_c01032{bottom:278.106667pt;}
.y1d_c01032{bottom:307.706667pt;}
.y1c_c01032{bottom:337.840000pt;}
.y1b_c01032{bottom:367.440000pt;}
.y1a_c01032{bottom:397.173333pt;}
.y19_c01032{bottom:427.706667pt;}
.y18_c01032{bottom:457.440000pt;}
.y17_c01032{bottom:487.173333pt;}
.y16_c01032{bottom:517.706667pt;}
.y15_c01032{bottom:546.906667pt;}
.y14_c01032{bottom:576.906667pt;}
.y13_c01032{bottom:606.640000pt;}
.y12_c01032{bottom:636.506667pt;}
.y11_c01032{bottom:666.240000pt;}
.y10_c01032{bottom:696.240000pt;}
.yf_c01032{bottom:725.440000pt;}
.ye_c01032{bottom:754.506667pt;}
.yd_c01032{bottom:784.240000pt;}
.yc_c01032{bottom:814.106667pt;}
.yb_c01032{bottom:844.106667pt;}
.ya_c01032{bottom:873.573333pt;}
.y9_c01032{bottom:903.040000pt;}
.y8_c01032{bottom:932.906667pt;}
.y7_c01032{bottom:961.706667pt;}
.y6_c01032{bottom:990.640000pt;}
.y5_c01032{bottom:1019.973333pt;}
.y4_c01032{bottom:1049.306667pt;}
.y3_c01032{bottom:1078.506667pt;}
.y2_c01032{bottom:1108.240000pt;}
.y1_c01032{bottom:1138.106667pt;}
.h3_c01032{height:11.733399pt;}
.h4_c01032{height:38.937500pt;}
.h2_c01032{height:108.041667pt;}
.h0_c01032{height:1229.733333pt;}
.h1_c01032{height:1230.000000pt;}
.w2_c01032{width:93.222667pt;}
.w0_c01032{width:780.466667pt;}
.w1_c01032{width:780.666667pt;}
.x0_c01032{left:0.000000pt;}
.xe_c01032{left:15.600000pt;}
.x9_c01032{left:18.533333pt;}
.xa_c01032{left:20.000000pt;}
.xd_c01032{left:21.333333pt;}
.x8_c01032{left:22.800000pt;}
.x7_c01032{left:24.266667pt;}
.x6_c01032{left:25.200000pt;}
.x5_c01032{left:26.133333pt;}
.xc_c01032{left:27.200000pt;}
.x4_c01032{left:28.133333pt;}
.x3_c01032{left:29.066667pt;}
.x2_c01032{left:31.466667pt;}
.x1_c01032{left:32.800000pt;}
.xb_c01032{left:71.733333pt;}
.xf_c01032{left:347.401530pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_b5f255947396012e1162c398.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01033;src:url('chunks/assets/font_6accb3d1dd073b815580e323.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01033;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01033;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls1_c01033{letter-spacing:0.000000px;}
.ls2_c01033{letter-spacing:6.000000px;}
.ls0_c01033{letter-spacing:8.400000px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01033{word-spacing:-23.136000px;}
.ws0_c01033{word-spacing:-20.244000px;}
.ws2_c01033{word-spacing:0.000000px;}
._29_c01033{margin-left:-30.336000px;}
._38_c01033{margin-left:-25.728000px;}
._3f_c01033{margin-left:-23.904000px;}
._3a_c01033{margin-left:-19.680000px;}
._1a_c01033{margin-left:-14.112000px;}
._1f_c01033{margin-left:-10.176000px;}
._32_c01033{margin-left:-8.352000px;}
._20_c01033{margin-left:-7.200000px;}
._e_c01033{margin-left:-5.184000px;}
._1e_c01033{margin-left:-4.032000px;}
._c_c01033{margin-left:-2.304000px;}
._b_c01033{margin-left:-1.248000px;}
._0_c01033{width:1.920000px;}
._1_c01033{width:3.264000px;}
._16_c01033{width:4.320000px;}
._4_c01033{width:5.376000px;}
._a_c01033{width:6.432000px;}
._9_c01033{width:7.872000px;}
._2b_c01033{width:9.120000px;}
._1d_c01033{width:10.272000px;}
._25_c01033{width:11.460000px;}
._f_c01033{width:12.576000px;}
._36_c01033{width:14.052000px;}
._22_c01033{width:15.516000px;}
._d_c01033{width:16.800000px;}
._10_c01033{width:18.912000px;}
._23_c01033{width:20.448000px;}
._12_c01033{width:21.792000px;}
._6_c01033{width:25.824000px;}
._2_c01033{width:28.032000px;}
._7_c01033{width:29.568000px;}
._2f_c01033{width:30.660000px;}
._2a_c01033{width:32.064000px;}
._34_c01033{width:33.072000px;}
._19_c01033{width:34.368000px;}
._3_c01033{width:36.000000px;}
._31_c01033{width:37.152000px;}
._11_c01033{width:38.304000px;}
._8_c01033{width:40.704000px;}
._5_c01033{width:42.528000px;}
._14_c01033{width:43.584000px;}
._13_c01033{width:44.832000px;}
._39_c01033{width:45.888000px;}
._17_c01033{width:46.944000px;}
._26_c01033{width:48.096000px;}
._15_c01033{width:49.248000px;}
._2e_c01033{width:50.400000px;}
._2c_c01033{width:51.648000px;}
._28_c01033{width:52.800000px;}
._1c_c01033{width:53.856000px;}
._18_c01033{width:56.256000px;}
._33_c01033{width:58.272000px;}
._27_c01033{width:60.672000px;}
._1b_c01033{width:62.400000px;}
._30_c01033{width:65.052000px;}
._24_c01033{width:67.296000px;}
._2d_c01033{width:69.504000px;}
._3b_c01033{width:73.248000px;}
._21_c01033{width:162.816000px;}
._37_c01033{width:166.524000px;}
._3d_c01033{width:178.464000px;}
._35_c01033{width:222.912000px;}
._3e_c01033{width:406.428000px;}
._3c_c01033{width:1929.684000px;}
.fc2_c01033{color:transparent;}
.fc1_c01033{color:rgb(128,128,128);}
.fc0_c01033{color:rgb(0,0,0);}
.fs5_c01033{font-size:48.000000px;}
.fs2_c01033{font-size:84.000000px;}
.fs3_c01033{font-size:87.000000px;}
.fs0_c01033{font-size:96.000000px;}
.fs1_c01033{font-size:99.000000px;}
.fs4_c01033{font-size:102.000000px;}
.y0_c01033{bottom:0.000000px;}
.y26_c01033{bottom:3.105000px;}
.y25_c01033{bottom:7.228357px;}
.y24_c01033{bottom:105.030000px;}
.y23_c01033{bottom:137.730000px;}
.y22_c01033{bottom:171.780000px;}
.y21_c01033{bottom:206.280000px;}
.y20_c01033{bottom:241.080000px;}
.y1f_c01033{bottom:273.330000px;}
.y1e_c01033{bottom:308.580000px;}
.y1d_c01033{bottom:342.330000px;}
.y1c_c01033{bottom:376.680000px;}
.y1b_c01033{bottom:410.430000px;}
.y1a_c01033{bottom:444.480000px;}
.y19_c01033{bottom:477.330000px;}
.y18_c01033{bottom:511.080000px;}
.y17_c01033{bottom:544.830000px;}
.y16_c01033{bottom:578.580000px;}
.y15_c01033{bottom:612.180000px;}
.y14_c01033{bottom:645.630000px;}
.y13_c01033{bottom:679.380000px;}
.y12_c01033{bottom:712.830000px;}
.y11_c01033{bottom:746.280000px;}
.y10_c01033{bottom:779.580000px;}
.yf_c01033{bottom:812.730000px;}
.ye_c01033{bottom:846.480000px;}
.yd_c01033{bottom:879.930000px;}
.yc_c01033{bottom:913.230000px;}
.yb_c01033{bottom:947.130000px;}
.ya_c01033{bottom:979.830000px;}
.y9_c01033{bottom:1012.830000px;}
.y8_c01033{bottom:1046.580000px;}
.y7_c01033{bottom:1079.430000px;}
.y6_c01033{bottom:1113.180000px;}
.y5_c01033{bottom:1146.930000px;}
.y4_c01033{bottom:1180.080000px;}
.y3_c01033{bottom:1213.380000px;}
.y2_c01033{bottom:1246.680000px;}
.y1_c01033{bottom:1279.530000px;}
.h6_c01033{height:13.200074px;}
.h7_c01033{height:43.804688px;}
.h4_c01033{height:98.314453px;}
.h5_c01033{height:106.353516px;}
.h2_c01033{height:121.546875px;}
.h3_c01033{height:125.345215px;}
.h0_c01033{height:1382.700000px;}
.h1_c01033{height:1383.000000px;}
.w2_c01033{width:104.875500px;}
.w0_c01033{width:863.175000px;}
.w1_c01033{width:863.250000px;}
.x0_c01033{left:0.000000px;}
.xc_c01033{left:145.500000px;}
.xa_c01033{left:236.700000px;}
.x1_c01033{left:237.900000px;}
.x2_c01033{left:238.950000px;}
.x3_c01033{left:240.000000px;}
.x5_c01033{left:242.250000px;}
.x6_c01033{left:243.300000px;}
.x7_c01033{left:244.950000px;}
.x8_c01033{left:284.400000px;}
.x4_c01033{left:292.350000px;}
.x9_c01033{left:293.400000px;}
.xb_c01033{left:296.700000px;}
.xe_c01033{left:383.401749px;}
.xd_c01033{left:770.850000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls1_c01033{letter-spacing:0.000000pt;}
.ls2_c01033{letter-spacing:5.333333pt;}
.ls0_c01033{letter-spacing:7.466667pt;}
.ws1_c01033{word-spacing:-20.565333pt;}
.ws0_c01033{word-spacing:-17.994667pt;}
.ws2_c01033{word-spacing:0.000000pt;}
._29_c01033{margin-left:-26.965333pt;}
._38_c01033{margin-left:-22.869333pt;}
._3f_c01033{margin-left:-21.248000pt;}
._3a_c01033{margin-left:-17.493333pt;}
._1a_c01033{margin-left:-12.544000pt;}
._1f_c01033{margin-left:-9.045333pt;}
._32_c01033{margin-left:-7.424000pt;}
._20_c01033{margin-left:-6.400000pt;}
._e_c01033{margin-left:-4.608000pt;}
._1e_c01033{margin-left:-3.584000pt;}
._c_c01033{margin-left:-2.048000pt;}
._b_c01033{margin-left:-1.109333pt;}
._0_c01033{width:1.706667pt;}
._1_c01033{width:2.901333pt;}
._16_c01033{width:3.840000pt;}
._4_c01033{width:4.778667pt;}
._a_c01033{width:5.717333pt;}
._9_c01033{width:6.997333pt;}
._2b_c01033{width:8.106667pt;}
._1d_c01033{width:9.130667pt;}
._25_c01033{width:10.186667pt;}
._f_c01033{width:11.178667pt;}
._36_c01033{width:12.490667pt;}
._22_c01033{width:13.792000pt;}
._d_c01033{width:14.933333pt;}
._10_c01033{width:16.810667pt;}
._23_c01033{width:18.176000pt;}
._12_c01033{width:19.370667pt;}
._6_c01033{width:22.954667pt;}
._2_c01033{width:24.917333pt;}
._7_c01033{width:26.282667pt;}
._2f_c01033{width:27.253333pt;}
._2a_c01033{width:28.501333pt;}
._34_c01033{width:29.397333pt;}
._19_c01033{width:30.549333pt;}
._3_c01033{width:32.000000pt;}
._31_c01033{width:33.024000pt;}
._11_c01033{width:34.048000pt;}
._8_c01033{width:36.181333pt;}
._5_c01033{width:37.802667pt;}
._14_c01033{width:38.741333pt;}
._13_c01033{width:39.850667pt;}
._39_c01033{width:40.789333pt;}
._17_c01033{width:41.728000pt;}
._26_c01033{width:42.752000pt;}
._15_c01033{width:43.776000pt;}
._2e_c01033{width:44.800000pt;}
._2c_c01033{width:45.909333pt;}
._28_c01033{width:46.933333pt;}
._1c_c01033{width:47.872000pt;}
._18_c01033{width:50.005333pt;}
._33_c01033{width:51.797333pt;}
._27_c01033{width:53.930667pt;}
._1b_c01033{width:55.466667pt;}
._30_c01033{width:57.824000pt;}
._24_c01033{width:59.818667pt;}
._2d_c01033{width:61.781333pt;}
._3b_c01033{width:65.109333pt;}
._21_c01033{width:144.725333pt;}
._37_c01033{width:148.021333pt;}
._3d_c01033{width:158.634667pt;}
._35_c01033{width:198.144000pt;}
._3e_c01033{width:361.269333pt;}
._3c_c01033{width:1715.274667pt;}
.fs5_c01033{font-size:42.666667pt;}
.fs2_c01033{font-size:74.666667pt;}
.fs3_c01033{font-size:77.333333pt;}
.fs0_c01033{font-size:85.333333pt;}
.fs1_c01033{font-size:88.000000pt;}
.fs4_c01033{font-size:90.666667pt;}
.y0_c01033{bottom:0.000000pt;}
.y26_c01033{bottom:2.760000pt;}
.y25_c01033{bottom:6.425206pt;}
.y24_c01033{bottom:93.360000pt;}
.y23_c01033{bottom:122.426667pt;}
.y22_c01033{bottom:152.693333pt;}
.y21_c01033{bottom:183.360000pt;}
.y20_c01033{bottom:214.293333pt;}
.y1f_c01033{bottom:242.960000pt;}
.y1e_c01033{bottom:274.293333pt;}
.y1d_c01033{bottom:304.293333pt;}
.y1c_c01033{bottom:334.826667pt;}
.y1b_c01033{bottom:364.826667pt;}
.y1a_c01033{bottom:395.093333pt;}
.y19_c01033{bottom:424.293333pt;}
.y18_c01033{bottom:454.293333pt;}
.y17_c01033{bottom:484.293333pt;}
.y16_c01033{bottom:514.293333pt;}
.y15_c01033{bottom:544.160000pt;}
.y14_c01033{bottom:573.893333pt;}
.y13_c01033{bottom:603.893333pt;}
.y12_c01033{bottom:633.626667pt;}
.y11_c01033{bottom:663.360000pt;}
.y10_c01033{bottom:692.960000pt;}
.yf_c01033{bottom:722.426667pt;}
.ye_c01033{bottom:752.426667pt;}
.yd_c01033{bottom:782.160000pt;}
.yc_c01033{bottom:811.760000pt;}
.yb_c01033{bottom:841.893333pt;}
.ya_c01033{bottom:870.960000pt;}
.y9_c01033{bottom:900.293333pt;}
.y8_c01033{bottom:930.293333pt;}
.y7_c01033{bottom:959.493333pt;}
.y6_c01033{bottom:989.493333pt;}
.y5_c01033{bottom:1019.493333pt;}
.y4_c01033{bottom:1048.960000pt;}
.y3_c01033{bottom:1078.560000pt;}
.y2_c01033{bottom:1108.160000pt;}
.y1_c01033{bottom:1137.360000pt;}
.h6_c01033{height:11.733399pt;}
.h7_c01033{height:38.937500pt;}
.h4_c01033{height:87.390625pt;}
.h5_c01033{height:94.536458pt;}
.h2_c01033{height:108.041667pt;}
.h3_c01033{height:111.417969pt;}
.h0_c01033{height:1229.066667pt;}
.h1_c01033{height:1229.333333pt;}
.w2_c01033{width:93.222667pt;}
.w0_c01033{width:767.266667pt;}
.w1_c01033{width:767.333333pt;}
.x0_c01033{left:0.000000pt;}
.xc_c01033{left:129.333333pt;}
.xa_c01033{left:210.400000pt;}
.x1_c01033{left:211.466667pt;}
.x2_c01033{left:212.400000pt;}
.x3_c01033{left:213.333333pt;}
.x5_c01033{left:215.333333pt;}
.x6_c01033{left:216.266667pt;}
.x7_c01033{left:217.733333pt;}
.x8_c01033{left:252.800000pt;}
.x4_c01033{left:259.866667pt;}
.x9_c01033{left:260.800000pt;}
.xb_c01033{left:263.733333pt;}
.xe_c01033{left:340.801554pt;}
.xd_c01033{left:685.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_c01034 {
    display:none;
  }
  .loading-indicator_c01034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01034 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01034 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01034" -> "#page-container .classname_c01034")
 */
.pf_c01034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01034 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01034 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01034 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01034 {overflow:visible;}
  }
}
.c_c01034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01034 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01034:after { /* webkit #35443 */
  content: '';
}
.t_c01034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01034 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01034 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01034 { /* info for Javascript */
  display:none;
}
.l_c01034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_d050569189c56d4b8acef6be.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01034;src:url('chunks/assets/font_edfdc80482a9967b1dfc2afb.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01034;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01034;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01034{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls5_c01034{letter-spacing:0.000000px;}
.ls1_c01034{letter-spacing:1.800000px;}
.ls6_c01034{letter-spacing:3.000000px;}
.ls4_c01034{letter-spacing:6.000000px;}
.ls3_c01034{letter-spacing:9.120000px;}
.ls2_c01034{letter-spacing:12.492000px;}
.ls0_c01034{letter-spacing:13.800000px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01034{word-spacing:-54.000000px;}
.ws0_c01034{word-spacing:-26.967000px;}
.ws2_c01034{word-spacing:-23.136000px;}
.ws1_c01034{word-spacing:-20.244000px;}
.ws4_c01034{word-spacing:0.000000px;}
._2e_c01034{margin-left:-31.944000px;}
._32_c01034{margin-left:-30.528000px;}
._38_c01034{margin-left:-27.984000px;}
._3c_c01034{margin-left:-25.752000px;}
._0_c01034{margin-left:-16.965000px;}
._e_c01034{margin-left:-15.840000px;}
._12_c01034{margin-left:-13.344000px;}
._f_c01034{margin-left:-12.288000px;}
._37_c01034{margin-left:-9.816000px;}
._11_c01034{margin-left:-7.776000px;}
._30_c01034{margin-left:-6.120000px;}
._2d_c01034{margin-left:-4.968000px;}
._3b_c01034{margin-left:-3.360000px;}
._19_c01034{margin-left:-2.232000px;}
._9_c01034{margin-left:-1.008000px;}
._6_c01034{width:1.536000px;}
._4_c01034{width:3.072000px;}
._3_c01034{width:4.416000px;}
._2_c01034{width:5.760000px;}
._1_c01034{width:6.816000px;}
._27_c01034{width:7.872000px;}
._13_c01034{width:8.976000px;}
._1a_c01034{width:10.464000px;}
._39_c01034{width:11.688000px;}
._26_c01034{width:12.720000px;}
._21_c01034{width:14.496000px;}
._b_c01034{width:15.624000px;}
._10_c01034{width:16.704000px;}
._28_c01034{width:17.928000px;}
._16_c01034{width:19.032000px;}
._3d_c01034{width:20.760000px;}
._14_c01034{width:22.380000px;}
._1b_c01034{width:25.536000px;}
._35_c01034{width:27.096000px;}
._23_c01034{width:28.296000px;}
._3a_c01034{width:29.544000px;}
._1f_c01034{width:30.552000px;}
._17_c01034{width:32.040000px;}
._25_c01034{width:34.080000px;}
._1c_c01034{width:35.136000px;}
._36_c01034{width:36.216000px;}
._d_c01034{width:37.248000px;}
._15_c01034{width:38.304000px;}
._29_c01034{width:39.888000px;}
._18_c01034{width:40.992000px;}
._a_c01034{width:42.864000px;}
._c_c01034{width:43.896000px;}
._2a_c01034{width:45.432000px;}
._2f_c01034{width:46.800000px;}
._20_c01034{width:48.312000px;}
._24_c01034{width:49.320000px;}
._1e_c01034{width:50.928000px;}
._34_c01034{width:52.224000px;}
._1d_c01034{width:54.528000px;}
._22_c01034{width:56.208000px;}
._2b_c01034{width:57.552000px;}
._5_c01034{width:58.800000px;}
._31_c01034{width:60.720000px;}
._7_c01034{width:62.880000px;}
._33_c01034{width:64.512000px;}
._2c_c01034{width:67.392000px;}
._3f_c01034{width:70.908000px;}
._8_c01034{width:83.712000px;}
._40_c01034{width:146.166000px;}
._3e_c01034{width:170.688000px;}
._41_c01034{width:213.144000px;}
.fc2_c01034{color:transparent;}
.fc1_c01034{color:rgb(128,128,128);}
.fc0_c01034{color:rgb(0,0,0);}
.fs5_c01034{font-size:48.000000px;}
.fs3_c01034{font-size:84.000000px;}
.fs0_c01034{font-size:87.000000px;}
.fs1_c01034{font-size:96.000000px;}
.fs2_c01034{font-size:102.000000px;}
.fs4_c01034{font-size:105.000000px;}
.y0_c01034{bottom:0.000000px;}
.y27_c01034{bottom:3.105000px;}
.y26_c01034{bottom:7.228369px;}
.y25_c01034{bottom:111.720000px;}
.y24_c01034{bottom:145.770000px;}
.y23_c01034{bottom:180.270000px;}
.y22_c01034{bottom:214.320000px;}
.y21_c01034{bottom:248.970000px;}
.y20_c01034{bottom:282.720000px;}
.y1f_c01034{bottom:316.620000px;}
.y1e_c01034{bottom:350.370000px;}
.y1d_c01034{bottom:384.420000px;}
.y1c_c01034{bottom:417.120000px;}
.y1b_c01034{bottom:450.870000px;}
.y1a_c01034{bottom:484.620000px;}
.y19_c01034{bottom:518.370000px;}
.y18_c01034{bottom:552.120000px;}
.y17_c01034{bottom:585.570000px;}
.y16_c01034{bottom:619.020000px;}
.y15_c01034{bottom:652.620000px;}
.y14_c01034{bottom:686.820000px;}
.y13_c01034{bottom:719.820000px;}
.y12_c01034{bottom:753.270000px;}
.y11_c01034{bottom:786.720000px;}
.y10_c01034{bottom:820.170000px;}
.y1_c01034{bottom:838.920000px;}
.yf_c01034{bottom:852.870000px;}
.ye_c01034{bottom:885.870000px;}
.yd_c01034{bottom:919.320000px;}
.yc_c01034{bottom:953.070000px;}
.yb_c01034{bottom:986.070000px;}
.ya_c01034{bottom:1019.520000px;}
.y9_c01034{bottom:1052.670000px;}
.y8_c01034{bottom:1085.670000px;}
.y7_c01034{bottom:1118.520000px;}
.y6_c01034{bottom:1151.370000px;}
.y5_c01034{bottom:1184.520000px;}
.y4_c01034{bottom:1217.670000px;}
.y3_c01034{bottom:1250.370000px;}
.y2_c01034{bottom:1284.570000px;}
.h5_c01034{height:13.200073px;}
.h6_c01034{height:43.804688px;}
.h2_c01034{height:101.825684px;}
.h3_c01034{height:121.546875px;}
.h4_c01034{height:132.941895px;}
.h0_c01034{height:1383.450000px;}
.h1_c01034{height:1383.750000px;}
.w2_c01034{width:104.875500px;}
.w0_c01034{width:878.025000px;}
.w1_c01034{width:878.250000px;}
.x0_c01034{left:0.000000px;}
.xb_c01034{left:39.150000px;}
.x8_c01034{left:40.200000px;}
.x7_c01034{left:42.300000px;}
.x6_c01034{left:43.500000px;}
.xc_c01034{left:44.550000px;}
.x5_c01034{left:45.600000px;}
.x4_c01034{left:47.700000px;}
.x3_c01034{left:48.900000px;}
.x2_c01034{left:52.200000px;}
.xa_c01034{left:95.850000px;}
.xe_c01034{left:390.826721px;}
.xd_c01034{left:459.300000px;}
.x9_c01034{left:650.250000px;}
.x1_c01034{left:687.450000px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls5_c01034{letter-spacing:0.000000pt;}
.ls1_c01034{letter-spacing:1.600000pt;}
.ls6_c01034{letter-spacing:2.666667pt;}
.ls4_c01034{letter-spacing:5.333333pt;}
.ls3_c01034{letter-spacing:8.106667pt;}
.ls2_c01034{letter-spacing:11.104000pt;}
.ls0_c01034{letter-spacing:12.266667pt;}
.ws3_c01034{word-spacing:-48.000000pt;}
.ws0_c01034{word-spacing:-23.970667pt;}
.ws2_c01034{word-spacing:-20.565333pt;}
.ws1_c01034{word-spacing:-17.994667pt;}
.ws4_c01034{word-spacing:0.000000pt;}
._2e_c01034{margin-left:-28.394667pt;}
._32_c01034{margin-left:-27.136000pt;}
._38_c01034{margin-left:-24.874667pt;}
._3c_c01034{margin-left:-22.890667pt;}
._0_c01034{margin-left:-15.080000pt;}
._e_c01034{margin-left:-14.080000pt;}
._12_c01034{margin-left:-11.861333pt;}
._f_c01034{margin-left:-10.922667pt;}
._37_c01034{margin-left:-8.725333pt;}
._11_c01034{margin-left:-6.912000pt;}
._30_c01034{margin-left:-5.440000pt;}
._2d_c01034{margin-left:-4.416000pt;}
._3b_c01034{margin-left:-2.986667pt;}
._19_c01034{margin-left:-1.984000pt;}
._9_c01034{margin-left:-0.896000pt;}
._6_c01034{width:1.365333pt;}
._4_c01034{width:2.730667pt;}
._3_c01034{width:3.925333pt;}
._2_c01034{width:5.120000pt;}
._1_c01034{width:6.058667pt;}
._27_c01034{width:6.997333pt;}
._13_c01034{width:7.978667pt;}
._1a_c01034{width:9.301333pt;}
._39_c01034{width:10.389333pt;}
._26_c01034{width:11.306667pt;}
._21_c01034{width:12.885333pt;}
._b_c01034{width:13.888000pt;}
._10_c01034{width:14.848000pt;}
._28_c01034{width:15.936000pt;}
._16_c01034{width:16.917333pt;}
._3d_c01034{width:18.453333pt;}
._14_c01034{width:19.893333pt;}
._1b_c01034{width:22.698667pt;}
._35_c01034{width:24.085333pt;}
._23_c01034{width:25.152000pt;}
._3a_c01034{width:26.261333pt;}
._1f_c01034{width:27.157333pt;}
._17_c01034{width:28.480000pt;}
._25_c01034{width:30.293333pt;}
._1c_c01034{width:31.232000pt;}
._36_c01034{width:32.192000pt;}
._d_c01034{width:33.109333pt;}
._15_c01034{width:34.048000pt;}
._29_c01034{width:35.456000pt;}
._18_c01034{width:36.437333pt;}
._a_c01034{width:38.101333pt;}
._c_c01034{width:39.018667pt;}
._2a_c01034{width:40.384000pt;}
._2f_c01034{width:41.600000pt;}
._20_c01034{width:42.944000pt;}
._24_c01034{width:43.840000pt;}
._1e_c01034{width:45.269333pt;}
._34_c01034{width:46.421333pt;}
._1d_c01034{width:48.469333pt;}
._22_c01034{width:49.962667pt;}
._2b_c01034{width:51.157333pt;}
._5_c01034{width:52.266667pt;}
._31_c01034{width:53.973333pt;}
._7_c01034{width:55.893333pt;}
._33_c01034{width:57.344000pt;}
._2c_c01034{width:59.904000pt;}
._3f_c01034{width:63.029333pt;}
._8_c01034{width:74.410667pt;}
._40_c01034{width:129.925333pt;}
._3e_c01034{width:151.722667pt;}
._41_c01034{width:189.461333pt;}
.fs5_c01034{font-size:42.666667pt;}
.fs3_c01034{font-size:74.666667pt;}
.fs0_c01034{font-size:77.333333pt;}
.fs1_c01034{font-size:85.333333pt;}
.fs2_c01034{font-size:90.666667pt;}
.fs4_c01034{font-size:93.333333pt;}
.y0_c01034{bottom:0.000000pt;}
.y27_c01034{bottom:2.760000pt;}
.y26_c01034{bottom:6.425217pt;}
.y25_c01034{bottom:99.306667pt;}
.y24_c01034{bottom:129.573333pt;}
.y23_c01034{bottom:160.240000pt;}
.y22_c01034{bottom:190.506667pt;}
.y21_c01034{bottom:221.306667pt;}
.y20_c01034{bottom:251.306667pt;}
.y1f_c01034{bottom:281.440000pt;}
.y1e_c01034{bottom:311.440000pt;}
.y1d_c01034{bottom:341.706667pt;}
.y1c_c01034{bottom:370.773333pt;}
.y1b_c01034{bottom:400.773333pt;}
.y1a_c01034{bottom:430.773333pt;}
.y19_c01034{bottom:460.773333pt;}
.y18_c01034{bottom:490.773333pt;}
.y17_c01034{bottom:520.506667pt;}
.y16_c01034{bottom:550.240000pt;}
.y15_c01034{bottom:580.106667pt;}
.y14_c01034{bottom:610.506667pt;}
.y13_c01034{bottom:639.840000pt;}
.y12_c01034{bottom:669.573333pt;}
.y11_c01034{bottom:699.306667pt;}
.y10_c01034{bottom:729.040000pt;}
.y1_c01034{bottom:745.706667pt;}
.yf_c01034{bottom:758.106667pt;}
.ye_c01034{bottom:787.440000pt;}
.yd_c01034{bottom:817.173333pt;}
.yc_c01034{bottom:847.173333pt;}
.yb_c01034{bottom:876.506667pt;}
.ya_c01034{bottom:906.240000pt;}
.y9_c01034{bottom:935.706667pt;}
.y8_c01034{bottom:965.040000pt;}
.y7_c01034{bottom:994.240000pt;}
.y6_c01034{bottom:1023.440000pt;}
.y5_c01034{bottom:1052.906667pt;}
.y4_c01034{bottom:1082.373333pt;}
.y3_c01034{bottom:1111.440000pt;}
.y2_c01034{bottom:1141.840000pt;}
.h5_c01034{height:11.733399pt;}
.h6_c01034{height:38.937500pt;}
.h2_c01034{height:90.511719pt;}
.h3_c01034{height:108.041667pt;}
.h4_c01034{height:118.170573pt;}
.h0_c01034{height:1229.733333pt;}
.h1_c01034{height:1230.000000pt;}
.w2_c01034{width:93.222667pt;}
.w0_c01034{width:780.466667pt;}
.w1_c01034{width:780.666667pt;}
.x0_c01034{left:0.000000pt;}
.xb_c01034{left:34.800000pt;}
.x8_c01034{left:35.733333pt;}
.x7_c01034{left:37.600000pt;}
.x6_c01034{left:38.666667pt;}
.xc_c01034{left:39.600000pt;}
.x5_c01034{left:40.533333pt;}
.x4_c01034{left:42.400000pt;}
.x3_c01034{left:43.466667pt;}
.x2_c01034{left:46.400000pt;}
.xa_c01034{left:85.200000pt;}
.xe_c01034{left:347.401530pt;}
.xd_c01034{left:408.266667pt;}
.x9_c01034{left:578.000000pt;}
.x1_c01034{left:611.066667pt;}
}





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

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_2f53b590ffca5b4428ae1ccb.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01035;src:url('chunks/assets/font_fb79a0afe6113c00a53ce752.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01035;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls0_c01035{letter-spacing:0.000000px;}
.ls1_c01035{letter-spacing:24.000000px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01035{word-spacing:-47.136000px;}
.ws2_c01035{word-spacing:-23.136000px;}
.ws0_c01035{word-spacing:-20.244000px;}
.ws3_c01035{word-spacing:0.000000px;}
._35_c01035{margin-left:-81.024000px;}
._2b_c01035{margin-left:-22.464000px;}
._41_c01035{margin-left:-20.256000px;}
._29_c01035{margin-left:-19.008000px;}
._28_c01035{margin-left:-17.976000px;}
._2a_c01035{margin-left:-15.264000px;}
._17_c01035{margin-left:-9.432000px;}
._2d_c01035{margin-left:-8.088000px;}
._16_c01035{margin-left:-6.600000px;}
._b_c01035{margin-left:-5.568000px;}
._2e_c01035{margin-left:-4.152000px;}
._1b_c01035{margin-left:-2.400000px;}
._5_c01035{margin-left:-1.248000px;}
._8_c01035{width:1.344000px;}
._3_c01035{width:2.400000px;}
._0_c01035{width:4.032000px;}
._1_c01035{width:5.952000px;}
._9_c01035{width:7.488000px;}
._15_c01035{width:9.024000px;}
._1e_c01035{width:10.932000px;}
._4_c01035{width:12.576000px;}
._10_c01035{width:14.016000px;}
._f_c01035{width:15.168000px;}
._7_c01035{width:16.320000px;}
._39_c01035{width:17.568000px;}
._27_c01035{width:19.512000px;}
._c_c01035{width:21.216000px;}
._22_c01035{width:25.920000px;}
._d_c01035{width:27.840000px;}
._38_c01035{width:28.992000px;}
._11_c01035{width:30.432000px;}
._2_c01035{width:31.776000px;}
._1d_c01035{width:34.368000px;}
._6_c01035{width:36.096000px;}
._3b_c01035{width:37.272000px;}
._12_c01035{width:38.880000px;}
._23_c01035{width:39.936000px;}
._1c_c01035{width:41.184000px;}
._26_c01035{width:42.228000px;}
._24_c01035{width:43.680000px;}
._e_c01035{width:45.312000px;}
._13_c01035{width:46.848000px;}
._2c_c01035{width:48.576000px;}
._a_c01035{width:49.632000px;}
._3a_c01035{width:51.168000px;}
._1f_c01035{width:52.236000px;}
._1a_c01035{width:53.856000px;}
._30_c01035{width:55.500000px;}
._3c_c01035{width:56.664000px;}
._32_c01035{width:58.092000px;}
._14_c01035{width:59.232000px;}
._31_c01035{width:60.348000px;}
._25_c01035{width:61.632000px;}
._19_c01035{width:64.320000px;}
._2f_c01035{width:67.872000px;}
._3f_c01035{width:70.848000px;}
._18_c01035{width:77.928000px;}
._21_c01035{width:172.608000px;}
._3e_c01035{width:179.232000px;}
._37_c01035{width:185.184000px;}
._3d_c01035{width:206.820000px;}
._20_c01035{width:428.448000px;}
._36_c01035{width:439.200000px;}
._34_c01035{width:445.776000px;}
._40_c01035{width:932.232000px;}
._33_c01035{width:1458.132000px;}
.fc2_c01035{color:transparent;}
.fc1_c01035{color:rgb(128,128,128);}
.fc0_c01035{color:rgb(0,0,0);}
.fs3_c01035{font-size:48.000000px;}
.fs1_c01035{font-size:84.000000px;}
.fs0_c01035{font-size:96.000000px;}
.fs2_c01035{font-size:105.000000px;}
.y0_c01035{bottom:0.000000px;}
.y26_c01035{bottom:3.105000px;}
.y25_c01035{bottom:7.228371px;}
.y24_c01035{bottom:66.915000px;}
.y23_c01035{bottom:98.265000px;}
.y22_c01035{bottom:131.715000px;}
.y21_c01035{bottom:165.465000px;}
.y20_c01035{bottom:199.815000px;}
.y1f_c01035{bottom:233.865000px;}
.y1e_c01035{bottom:266.715000px;}
.y1d_c01035{bottom:301.815000px;}
.y1c_c01035{bottom:336.915000px;}
.y1b_c01035{bottom:370.365000px;}
.y1a_c01035{bottom:404.715000px;}
.y19_c01035{bottom:437.865000px;}
.y18_c01035{bottom:471.465000px;}
.y17_c01035{bottom:505.215000px;}
.y16_c01035{bottom:539.415000px;}
.y15_c01035{bottom:572.415000px;}
.y14_c01035{bottom:606.165000px;}
.y13_c01035{bottom:639.615000px;}
.y12_c01035{bottom:672.765000px;}
.y11_c01035{bottom:706.365000px;}
.y10_c01035{bottom:740.115000px;}
.yf_c01035{bottom:773.565000px;}
.ye_c01035{bottom:806.715000px;}
.yd_c01035{bottom:840.765000px;}
.yc_c01035{bottom:874.215000px;}
.yb_c01035{bottom:907.515000px;}
.ya_c01035{bottom:941.265000px;}
.y9_c01035{bottom:973.815000px;}
.y8_c01035{bottom:1007.115000px;}
.y7_c01035{bottom:1040.565000px;}
.y6_c01035{bottom:1074.015000px;}
.y5_c01035{bottom:1107.465000px;}
.y4_c01035{bottom:1140.765000px;}
.y3_c01035{bottom:1174.515000px;}
.y2_c01035{bottom:1207.665000px;}
.y1_c01035{bottom:1240.065000px;}
.h4_c01035{height:13.200074px;}
.h5_c01035{height:43.804688px;}
.h2_c01035{height:121.546875px;}
.h3_c01035{height:132.941895px;}
.h0_c01035{height:1333.275000px;}
.h1_c01035{height:1333.500000px;}
.w2_c01035{width:104.875500px;}
.w0_c01035{width:832.125000px;}
.w1_c01035{width:832.500000px;}
.x0_c01035{left:0.000000px;}
.x8_c01035{left:102.900000px;}
.x5_c01035{left:129.900000px;}
.x9_c01035{left:211.950000px;}
.x1_c01035{left:215.100000px;}
.x2_c01035{left:216.900000px;}
.x4_c01035{left:218.400000px;}
.x6_c01035{left:219.600000px;}
.x3_c01035{left:268.650000px;}
.x7_c01035{left:270.900000px;}
.xa_c01035{left:367.876740px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls0_c01035{letter-spacing:0.000000pt;}
.ls1_c01035{letter-spacing:21.333333pt;}
.ws1_c01035{word-spacing:-41.898667pt;}
.ws2_c01035{word-spacing:-20.565333pt;}
.ws0_c01035{word-spacing:-17.994667pt;}
.ws3_c01035{word-spacing:0.000000pt;}
._35_c01035{margin-left:-72.021333pt;}
._2b_c01035{margin-left:-19.968000pt;}
._41_c01035{margin-left:-18.005333pt;}
._29_c01035{margin-left:-16.896000pt;}
._28_c01035{margin-left:-15.978667pt;}
._2a_c01035{margin-left:-13.568000pt;}
._17_c01035{margin-left:-8.384000pt;}
._2d_c01035{margin-left:-7.189333pt;}
._16_c01035{margin-left:-5.866667pt;}
._b_c01035{margin-left:-4.949333pt;}
._2e_c01035{margin-left:-3.690667pt;}
._1b_c01035{margin-left:-2.133333pt;}
._5_c01035{margin-left:-1.109333pt;}
._8_c01035{width:1.194667pt;}
._3_c01035{width:2.133333pt;}
._0_c01035{width:3.584000pt;}
._1_c01035{width:5.290667pt;}
._9_c01035{width:6.656000pt;}
._15_c01035{width:8.021333pt;}
._1e_c01035{width:9.717333pt;}
._4_c01035{width:11.178667pt;}
._10_c01035{width:12.458667pt;}
._f_c01035{width:13.482667pt;}
._7_c01035{width:14.506667pt;}
._39_c01035{width:15.616000pt;}
._27_c01035{width:17.344000pt;}
._c_c01035{width:18.858667pt;}
._22_c01035{width:23.040000pt;}
._d_c01035{width:24.746667pt;}
._38_c01035{width:25.770667pt;}
._11_c01035{width:27.050667pt;}
._2_c01035{width:28.245333pt;}
._1d_c01035{width:30.549333pt;}
._6_c01035{width:32.085333pt;}
._3b_c01035{width:33.130667pt;}
._12_c01035{width:34.560000pt;}
._23_c01035{width:35.498667pt;}
._1c_c01035{width:36.608000pt;}
._26_c01035{width:37.536000pt;}
._24_c01035{width:38.826667pt;}
._e_c01035{width:40.277333pt;}
._13_c01035{width:41.642667pt;}
._2c_c01035{width:43.178667pt;}
._a_c01035{width:44.117333pt;}
._3a_c01035{width:45.482667pt;}
._1f_c01035{width:46.432000pt;}
._1a_c01035{width:47.872000pt;}
._30_c01035{width:49.333333pt;}
._3c_c01035{width:50.368000pt;}
._32_c01035{width:51.637333pt;}
._14_c01035{width:52.650667pt;}
._31_c01035{width:53.642667pt;}
._25_c01035{width:54.784000pt;}
._19_c01035{width:57.173333pt;}
._2f_c01035{width:60.330667pt;}
._3f_c01035{width:62.976000pt;}
._18_c01035{width:69.269333pt;}
._21_c01035{width:153.429333pt;}
._3e_c01035{width:159.317333pt;}
._37_c01035{width:164.608000pt;}
._3d_c01035{width:183.840000pt;}
._20_c01035{width:380.842667pt;}
._36_c01035{width:390.400000pt;}
._34_c01035{width:396.245333pt;}
._40_c01035{width:828.650667pt;}
._33_c01035{width:1296.117333pt;}
.fs3_c01035{font-size:42.666667pt;}
.fs1_c01035{font-size:74.666667pt;}
.fs0_c01035{font-size:85.333333pt;}
.fs2_c01035{font-size:93.333333pt;}
.y0_c01035{bottom:0.000000pt;}
.y26_c01035{bottom:2.760000pt;}
.y25_c01035{bottom:6.425219pt;}
.y24_c01035{bottom:59.480000pt;}
.y23_c01035{bottom:87.346667pt;}
.y22_c01035{bottom:117.080000pt;}
.y21_c01035{bottom:147.080000pt;}
.y20_c01035{bottom:177.613333pt;}
.y1f_c01035{bottom:207.880000pt;}
.y1e_c01035{bottom:237.080000pt;}
.y1d_c01035{bottom:268.280000pt;}
.y1c_c01035{bottom:299.480000pt;}
.y1b_c01035{bottom:329.213333pt;}
.y1a_c01035{bottom:359.746667pt;}
.y19_c01035{bottom:389.213333pt;}
.y18_c01035{bottom:419.080000pt;}
.y17_c01035{bottom:449.080000pt;}
.y16_c01035{bottom:479.480000pt;}
.y15_c01035{bottom:508.813333pt;}
.y14_c01035{bottom:538.813333pt;}
.y13_c01035{bottom:568.546667pt;}
.y12_c01035{bottom:598.013333pt;}
.y11_c01035{bottom:627.880000pt;}
.y10_c01035{bottom:657.880000pt;}
.yf_c01035{bottom:687.613333pt;}
.ye_c01035{bottom:717.080000pt;}
.yd_c01035{bottom:747.346667pt;}
.yc_c01035{bottom:777.080000pt;}
.yb_c01035{bottom:806.680000pt;}
.ya_c01035{bottom:836.680000pt;}
.y9_c01035{bottom:865.613333pt;}
.y8_c01035{bottom:895.213333pt;}
.y7_c01035{bottom:924.946667pt;}
.y6_c01035{bottom:954.680000pt;}
.y5_c01035{bottom:984.413333pt;}
.y4_c01035{bottom:1014.013333pt;}
.y3_c01035{bottom:1044.013333pt;}
.y2_c01035{bottom:1073.480000pt;}
.y1_c01035{bottom:1102.280000pt;}
.h4_c01035{height:11.733399pt;}
.h5_c01035{height:38.937500pt;}
.h2_c01035{height:108.041667pt;}
.h3_c01035{height:118.170573pt;}
.h0_c01035{height:1185.133333pt;}
.h1_c01035{height:1185.333333pt;}
.w2_c01035{width:93.222667pt;}
.w0_c01035{width:739.666667pt;}
.w1_c01035{width:740.000000pt;}
.x0_c01035{left:0.000000pt;}
.x8_c01035{left:91.466667pt;}
.x5_c01035{left:115.466667pt;}
.x9_c01035{left:188.400000pt;}
.x1_c01035{left:191.200000pt;}
.x2_c01035{left:192.800000pt;}
.x4_c01035{left:194.133333pt;}
.x6_c01035{left:195.200000pt;}
.x3_c01035{left:238.800000pt;}
.x7_c01035{left:240.800000pt;}
.xa_c01035{left:327.001546pt;}
}





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

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_5ce6ed7ca771a3b17fbb186c.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01036;src:url('chunks/assets/font_d19253823c868fdf46800501.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01036;src:url('chunks/assets/font_736f70eb9c5207e6ce293ca0.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01036;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls0_c01036{letter-spacing:0.000000px;}
.ls1_c01036{letter-spacing:3.000000px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01036{word-spacing:-54.000000px;}
.ws0_c01036{word-spacing:-20.244000px;}
.ws3_c01036{word-spacing:0.000000px;}
.ws1_c01036{word-spacing:1.344000px;}
._36_c01036{margin-left:-45.192000px;}
._3b_c01036{margin-left:-28.704000px;}
._15_c01036{margin-left:-23.904000px;}
._3a_c01036{margin-left:-20.448000px;}
._26_c01036{margin-left:-18.816000px;}
._25_c01036{margin-left:-17.472000px;}
._24_c01036{margin-left:-15.504000px;}
._27_c01036{margin-left:-10.944000px;}
._38_c01036{margin-left:-8.496000px;}
._a_c01036{margin-left:-7.200000px;}
._11_c01036{margin-left:-5.280000px;}
._1f_c01036{margin-left:-3.984000px;}
._b_c01036{margin-left:-2.784000px;}
._f_c01036{margin-left:-1.248000px;}
._8_c01036{width:1.920000px;}
._4_c01036{width:3.552000px;}
._3_c01036{width:4.800000px;}
._6_c01036{width:6.240000px;}
._e_c01036{width:8.232000px;}
._1_c01036{width:9.696000px;}
._0_c01036{width:10.848000px;}
._1c_c01036{width:12.084000px;}
._14_c01036{width:13.368000px;}
._9_c01036{width:14.400000px;}
._45_c01036{width:15.444000px;}
._2c_c01036{width:16.704000px;}
._22_c01036{width:17.952000px;}
._12_c01036{width:19.728000px;}
._2b_c01036{width:21.276000px;}
._1b_c01036{width:23.652000px;}
._16_c01036{width:25.440000px;}
._13_c01036{width:27.000000px;}
._2a_c01036{width:28.104000px;}
._33_c01036{width:29.952000px;}
._10_c01036{width:32.064000px;}
._21_c01036{width:34.200000px;}
._32_c01036{width:35.352000px;}
._19_c01036{width:36.672000px;}
._28_c01036{width:37.920000px;}
._17_c01036{width:39.360000px;}
._18_c01036{width:40.824000px;}
._30_c01036{width:41.976000px;}
._29_c01036{width:43.068000px;}
._1e_c01036{width:44.700000px;}
._35_c01036{width:45.888000px;}
._1a_c01036{width:47.772000px;}
._20_c01036{width:49.248000px;}
._2d_c01036{width:51.756000px;}
._37_c01036{width:52.992000px;}
._31_c01036{width:54.432000px;}
._1d_c01036{width:55.488000px;}
._2e_c01036{width:57.696000px;}
._3f_c01036{width:59.808000px;}
._2f_c01036{width:62.112000px;}
._34_c01036{width:64.512000px;}
._5_c01036{width:68.064000px;}
._c_c01036{width:69.864000px;}
._7_c01036{width:71.520000px;}
._d_c01036{width:74.700000px;}
._3d_c01036{width:75.744000px;}
._23_c01036{width:98.784000px;}
._40_c01036{width:122.688000px;}
._39_c01036{width:127.488000px;}
._2_c01036{width:172.512000px;}
._44_c01036{width:201.936000px;}
._42_c01036{width:284.736000px;}
._41_c01036{width:414.288000px;}
._43_c01036{width:448.704000px;}
._3e_c01036{width:546.816000px;}
._3c_c01036{width:693.660000px;}
._46_c01036{width:718.224000px;}
.fc2_c01036{color:transparent;}
.fc1_c01036{color:rgb(128,128,128);}
.fc0_c01036{color:rgb(0,0,0);}
.fs3_c01036{font-size:48.000000px;}
.fs1_c01036{font-size:84.000000px;}
.fs0_c01036{font-size:96.000000px;}
.fs2_c01036{font-size:102.000000px;}
.y0_c01036{bottom:0.000000px;}
.y26_c01036{bottom:3.105000px;}
.y25_c01036{bottom:7.228369px;}
.y24_c01036{bottom:89.670000px;}
.y23_c01036{bottom:123.870000px;}
.y22_c01036{bottom:158.970000px;}
.y21_c01036{bottom:193.320000px;}
.y20_c01036{bottom:227.070000px;}
.y1f_c01036{bottom:260.820000px;}
.y1e_c01036{bottom:295.320000px;}
.y1d_c01036{bottom:329.370000px;}
.y1c_c01036{bottom:363.120000px;}
.y1b_c01036{bottom:396.570000px;}
.y1a_c01036{bottom:431.370000px;}
.y19_c01036{bottom:464.670000px;}
.y18_c01036{bottom:498.120000px;}
.y17_c01036{bottom:531.570000px;}
.y16_c01036{bottom:565.020000px;}
.y15_c01036{bottom:598.770000px;}
.y14_c01036{bottom:632.370000px;}
.y13_c01036{bottom:666.120000px;}
.y12_c01036{bottom:699.870000px;}
.y11_c01036{bottom:732.720000px;}
.y10_c01036{bottom:766.470000px;}
.yf_c01036{bottom:798.570000px;}
.ye_c01036{bottom:832.620000px;}
.yd_c01036{bottom:866.070000px;}
.yc_c01036{bottom:899.070000px;}
.yb_c01036{bottom:932.820000px;}
.ya_c01036{bottom:965.820000px;}
.y9_c01036{bottom:999.270000px;}
.y8_c01036{bottom:1032.720000px;}
.y7_c01036{bottom:1065.120000px;}
.y6_c01036{bottom:1097.820000px;}
.y5_c01036{bottom:1130.670000px;}
.y4_c01036{bottom:1163.970000px;}
.y3_c01036{bottom:1196.370000px;}
.y2_c01036{bottom:1230.120000px;}
.y1_c01036{bottom:1263.570000px;}
.h3_c01036{height:13.200073px;}
.h4_c01036{height:43.804688px;}
.h2_c01036{height:121.546875px;}
.h0_c01036{height:1383.450000px;}
.h1_c01036{height:1383.750000px;}
.w2_c01036{width:104.875500px;}
.w0_c01036{width:878.025000px;}
.w1_c01036{width:878.250000px;}
.x0_c01036{left:0.000000px;}
.x9_c01036{left:22.950000px;}
.x8_c01036{left:24.000000px;}
.xa_c01036{left:25.050000px;}
.x7_c01036{left:26.250000px;}
.x5_c01036{left:27.900000px;}
.x4_c01036{left:28.950000px;}
.x6_c01036{left:30.000000px;}
.x3_c01036{left:31.050000px;}
.x2_c01036{left:32.100000px;}
.xb_c01036{left:35.850000px;}
.x1_c01036{left:80.700000px;}
.xc_c01036{left:289.650000px;}
.xd_c01036{left:390.826721px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ls1_c01036{letter-spacing:2.666667pt;}
.ws2_c01036{word-spacing:-48.000000pt;}
.ws0_c01036{word-spacing:-17.994667pt;}
.ws3_c01036{word-spacing:0.000000pt;}
.ws1_c01036{word-spacing:1.194667pt;}
._36_c01036{margin-left:-40.170667pt;}
._3b_c01036{margin-left:-25.514667pt;}
._15_c01036{margin-left:-21.248000pt;}
._3a_c01036{margin-left:-18.176000pt;}
._26_c01036{margin-left:-16.725333pt;}
._25_c01036{margin-left:-15.530667pt;}
._24_c01036{margin-left:-13.781333pt;}
._27_c01036{margin-left:-9.728000pt;}
._38_c01036{margin-left:-7.552000pt;}
._a_c01036{margin-left:-6.400000pt;}
._11_c01036{margin-left:-4.693333pt;}
._1f_c01036{margin-left:-3.541333pt;}
._b_c01036{margin-left:-2.474667pt;}
._f_c01036{margin-left:-1.109333pt;}
._8_c01036{width:1.706667pt;}
._4_c01036{width:3.157333pt;}
._3_c01036{width:4.266667pt;}
._6_c01036{width:5.546667pt;}
._e_c01036{width:7.317333pt;}
._1_c01036{width:8.618667pt;}
._0_c01036{width:9.642667pt;}
._1c_c01036{width:10.741333pt;}
._14_c01036{width:11.882667pt;}
._9_c01036{width:12.800000pt;}
._45_c01036{width:13.728000pt;}
._2c_c01036{width:14.848000pt;}
._22_c01036{width:15.957333pt;}
._12_c01036{width:17.536000pt;}
._2b_c01036{width:18.912000pt;}
._1b_c01036{width:21.024000pt;}
._16_c01036{width:22.613333pt;}
._13_c01036{width:24.000000pt;}
._2a_c01036{width:24.981333pt;}
._33_c01036{width:26.624000pt;}
._10_c01036{width:28.501333pt;}
._21_c01036{width:30.400000pt;}
._32_c01036{width:31.424000pt;}
._19_c01036{width:32.597333pt;}
._28_c01036{width:33.706667pt;}
._17_c01036{width:34.986667pt;}
._18_c01036{width:36.288000pt;}
._30_c01036{width:37.312000pt;}
._29_c01036{width:38.282667pt;}
._1e_c01036{width:39.733333pt;}
._35_c01036{width:40.789333pt;}
._1a_c01036{width:42.464000pt;}
._20_c01036{width:43.776000pt;}
._2d_c01036{width:46.005333pt;}
._37_c01036{width:47.104000pt;}
._31_c01036{width:48.384000pt;}
._1d_c01036{width:49.322667pt;}
._2e_c01036{width:51.285333pt;}
._3f_c01036{width:53.162667pt;}
._2f_c01036{width:55.210667pt;}
._34_c01036{width:57.344000pt;}
._5_c01036{width:60.501333pt;}
._c_c01036{width:62.101333pt;}
._7_c01036{width:63.573333pt;}
._d_c01036{width:66.400000pt;}
._3d_c01036{width:67.328000pt;}
._23_c01036{width:87.808000pt;}
._40_c01036{width:109.056000pt;}
._39_c01036{width:113.322667pt;}
._2_c01036{width:153.344000pt;}
._44_c01036{width:179.498667pt;}
._42_c01036{width:253.098667pt;}
._41_c01036{width:368.256000pt;}
._43_c01036{width:398.848000pt;}
._3e_c01036{width:486.058667pt;}
._3c_c01036{width:616.586667pt;}
._46_c01036{width:638.421333pt;}
.fs3_c01036{font-size:42.666667pt;}
.fs1_c01036{font-size:74.666667pt;}
.fs0_c01036{font-size:85.333333pt;}
.fs2_c01036{font-size:90.666667pt;}
.y0_c01036{bottom:0.000000pt;}
.y26_c01036{bottom:2.760000pt;}
.y25_c01036{bottom:6.425217pt;}
.y24_c01036{bottom:79.706667pt;}
.y23_c01036{bottom:110.106667pt;}
.y22_c01036{bottom:141.306667pt;}
.y21_c01036{bottom:171.840000pt;}
.y20_c01036{bottom:201.840000pt;}
.y1f_c01036{bottom:231.840000pt;}
.y1e_c01036{bottom:262.506667pt;}
.y1d_c01036{bottom:292.773333pt;}
.y1c_c01036{bottom:322.773333pt;}
.y1b_c01036{bottom:352.506667pt;}
.y1a_c01036{bottom:383.440000pt;}
.y19_c01036{bottom:413.040000pt;}
.y18_c01036{bottom:442.773333pt;}
.y17_c01036{bottom:472.506667pt;}
.y16_c01036{bottom:502.240000pt;}
.y15_c01036{bottom:532.240000pt;}
.y14_c01036{bottom:562.106667pt;}
.y13_c01036{bottom:592.106667pt;}
.y12_c01036{bottom:622.106667pt;}
.y11_c01036{bottom:651.306667pt;}
.y10_c01036{bottom:681.306667pt;}
.yf_c01036{bottom:709.840000pt;}
.ye_c01036{bottom:740.106667pt;}
.yd_c01036{bottom:769.840000pt;}
.yc_c01036{bottom:799.173333pt;}
.yb_c01036{bottom:829.173333pt;}
.ya_c01036{bottom:858.506667pt;}
.y9_c01036{bottom:888.240000pt;}
.y8_c01036{bottom:917.973333pt;}
.y7_c01036{bottom:946.773333pt;}
.y6_c01036{bottom:975.840000pt;}
.y5_c01036{bottom:1005.040000pt;}
.y4_c01036{bottom:1034.640000pt;}
.y3_c01036{bottom:1063.440000pt;}
.y2_c01036{bottom:1093.440000pt;}
.y1_c01036{bottom:1123.173333pt;}
.h3_c01036{height:11.733399pt;}
.h4_c01036{height:38.937500pt;}
.h2_c01036{height:108.041667pt;}
.h0_c01036{height:1229.733333pt;}
.h1_c01036{height:1230.000000pt;}
.w2_c01036{width:93.222667pt;}
.w0_c01036{width:780.466667pt;}
.w1_c01036{width:780.666667pt;}
.x0_c01036{left:0.000000pt;}
.x9_c01036{left:20.400000pt;}
.x8_c01036{left:21.333333pt;}
.xa_c01036{left:22.266667pt;}
.x7_c01036{left:23.333333pt;}
.x5_c01036{left:24.800000pt;}
.x4_c01036{left:25.733333pt;}
.x6_c01036{left:26.666667pt;}
.x3_c01036{left:27.600000pt;}
.x2_c01036{left:28.533333pt;}
.xb_c01036{left:31.866667pt;}
.x1_c01036{left:71.733333pt;}
.xc_c01036{left:257.466667pt;}
.xd_c01036{left:347.401530pt;}
}





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

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_8431d8dc43f2880bc0010939.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01037;src:url('chunks/assets/font_e5123d0ec3434db4db37b169.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01037;src:url('chunks/assets/font_3032922602981479d631d505.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01037;src:url('chunks/assets/font_a6ba3ff81663cff300182afe.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;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_c01037;src:url('chunks/assets/font_6117fb865291e161b402920d.woff2')format("woff");}.ff5_c01037{font-family:ff5_c01037;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01037;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01037{font-family:ff6_c01037;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.ls5_c01037{letter-spacing:0.000000px;}
.ls0_c01037{letter-spacing:0.115200px;}
.ls4_c01037{letter-spacing:6.000000px;}
.ls3_c01037{letter-spacing:6.600000px;}
.ls1_c01037{letter-spacing:9.648000px;}
.ls7_c01037{letter-spacing:18.000000px;}
.ls2_c01037{letter-spacing:20.964000px;}
.ls6_c01037{letter-spacing:24.000000px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01037{word-spacing:-53.856000px;}
.ws1_c01037{word-spacing:-43.084800px;}
.ws3_c01037{word-spacing:-38.244000px;}
.ws2_c01037{word-spacing:-20.244000px;}
.ws4_c01037{word-spacing:0.000000px;}
._21_c01037{margin-left:-34.656000px;}
._2a_c01037{margin-left:-32.587200px;}
._1f_c01037{margin-left:-28.416000px;}
._2b_c01037{margin-left:-22.080000px;}
._47_c01037{margin-left:-20.976000px;}
._40_c01037{margin-left:-19.536000px;}
._28_c01037{margin-left:-16.320000px;}
._37_c01037{margin-left:-14.304000px;}
._1d_c01037{margin-left:-13.128000px;}
._23_c01037{margin-left:-11.040000px;}
._f_c01037{margin-left:-9.504000px;}
._e_c01037{margin-left:-7.776000px;}
._15_c01037{margin-left:-6.720000px;}
._3_c01037{margin-left:-5.376000px;}
._5_c01037{margin-left:-4.128000px;}
._4_c01037{margin-left:-2.496000px;}
._29_c01037{margin-left:-1.440000px;}
._1_c01037{width:1.824000px;}
._0_c01037{width:3.264000px;}
._14_c01037{width:4.320000px;}
._9_c01037{width:5.568000px;}
._a_c01037{width:6.720000px;}
._7_c01037{width:8.544000px;}
._16_c01037{width:9.600000px;}
._c_c01037{width:10.752000px;}
._1c_c01037{width:12.216000px;}
._1b_c01037{width:13.876800px;}
._4e_c01037{width:15.168000px;}
._26_c01037{width:16.512000px;}
._43_c01037{width:17.846400px;}
._27_c01037{width:19.723200px;}
._b_c01037{width:20.832000px;}
._3b_c01037{width:25.108800px;}
._17_c01037{width:26.112000px;}
._18_c01037{width:27.264000px;}
._3f_c01037{width:28.507200px;}
._d_c01037{width:30.624000px;}
._1a_c01037{width:31.632000px;}
._4c_c01037{width:32.640000px;}
._2f_c01037{width:33.888000px;}
._33_c01037{width:34.944000px;}
._41_c01037{width:35.995200px;}
._10_c01037{width:37.152000px;}
._6_c01037{width:38.304000px;}
._11_c01037{width:40.224000px;}
._13_c01037{width:41.376000px;}
._31_c01037{width:43.584000px;}
._2d_c01037{width:45.216000px;}
._42_c01037{width:46.752000px;}
._3d_c01037{width:47.904000px;}
._30_c01037{width:49.632000px;}
._12_c01037{width:51.168000px;}
._4d_c01037{width:52.896000px;}
._2e_c01037{width:55.008000px;}
._19_c01037{width:56.640000px;}
._8_c01037{width:58.464000px;}
._3c_c01037{width:60.576000px;}
._32_c01037{width:62.304000px;}
._3e_c01037{width:67.200000px;}
._45_c01037{width:71.040000px;}
._4b_c01037{width:73.608000px;}
._24_c01037{width:76.800000px;}
._35_c01037{width:93.960000px;}
._22_c01037{width:96.864000px;}
._3a_c01037{width:98.592000px;}
._4a_c01037{width:158.520000px;}
._38_c01037{width:163.776000px;}
._25_c01037{width:176.640000px;}
._44_c01037{width:184.771200px;}
._2_c01037{width:189.504000px;}
._39_c01037{width:195.072000px;}
._20_c01037{width:250.080000px;}
._2c_c01037{width:265.056000px;}
._34_c01037{width:270.336000px;}
._46_c01037{width:309.408000px;}
._49_c01037{width:323.136000px;}
._36_c01037{width:523.584000px;}
._1e_c01037{width:687.552000px;}
._48_c01037{width:1202.688000px;}
.fc2_c01037{color:transparent;}
.fc1_c01037{color:rgb(128,128,128);}
.fc0_c01037{color:rgb(0,0,0);}
.fs5_c01037{font-size:48.000000px;}
.fs1_c01037{font-size:76.800000px;}
.fs2_c01037{font-size:84.000000px;}
.fs0_c01037{font-size:96.000000px;}
.fs3_c01037{font-size:102.000000px;}
.fs4_c01037{font-size:105.000000px;}
.y0_c01037{bottom:0.000000px;}
.y26_c01037{bottom:3.105000px;}
.y25_c01037{bottom:7.228357px;}
.y24_c01037{bottom:79.680000px;}
.y23_c01037{bottom:111.030000px;}
.y22_c01037{bottom:144.780000px;}
.y21_c01037{bottom:178.830000px;}
.y20_c01037{bottom:213.030000px;}
.y1f_c01037{bottom:246.780000px;}
.y1e_c01037{bottom:281.130000px;}
.y1d_c01037{bottom:314.580000px;}
.y1c_c01037{bottom:348.930000px;}
.y1b_c01037{bottom:382.380000px;}
.y1a_c01037{bottom:415.830000px;}
.y19_c01037{bottom:451.230000px;}
.y18_c01037{bottom:483.930000px;}
.y17_c01037{bottom:517.830000px;}
.y16_c01037{bottom:551.430000px;}
.y15_c01037{bottom:584.880000px;}
.y14_c01037{bottom:618.330000px;}
.y13_c01037{bottom:652.380000px;}
.y12_c01037{bottom:685.530000px;}
.y11_c01037{bottom:718.230000px;}
.y10_c01037{bottom:751.980000px;}
.yf_c01037{bottom:786.030000px;}
.ye_c01037{bottom:818.130000px;}
.yd_c01037{bottom:853.830000px;}
.yc_c01037{bottom:886.380000px;}
.yb_c01037{bottom:919.980000px;}
.ya_c01037{bottom:953.880000px;}
.y9_c01037{bottom:986.130000px;}
.y8_c01037{bottom:1017.630000px;}
.y7_c01037{bottom:1052.280000px;}
.y6_c01037{bottom:1085.730000px;}
.y5_c01037{bottom:1119.180000px;}
.y4_c01037{bottom:1152.780000px;}
.y3_c01037{bottom:1186.080000px;}
.y2_c01037{bottom:1219.380000px;}
.y1_c01037{bottom:1250.880000px;}
.h5_c01037{height:13.200074px;}
.h6_c01037{height:43.804688px;}
.h4_c01037{height:98.314453px;}
.h2_c01037{height:121.546875px;}
.h3_c01037{height:122.146875px;}
.h0_c01037{height:1382.700000px;}
.h1_c01037{height:1383.000000px;}
.w2_c01037{width:104.875500px;}
.w0_c01037{width:863.175000px;}
.w1_c01037{width:863.250000px;}
.x0_c01037{left:0.000000px;}
.xa_c01037{left:172.050000px;}
.x1_c01037{left:175.200000px;}
.x7_c01037{left:204.300000px;}
.x5_c01037{left:250.800000px;}
.x3_c01037{left:252.000000px;}
.x9_c01037{left:253.050000px;}
.x2_c01037{left:254.100000px;}
.xc_c01037{left:255.150000px;}
.x6_c01037{left:256.800000px;}
.x8_c01037{left:258.900000px;}
.xb_c01037{left:260.550000px;}
.x4_c01037{left:265.950000px;}
.xe_c01037{left:383.401749px;}
.xd_c01037{left:783.750000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls5_c01037{letter-spacing:0.000000pt;}
.ls0_c01037{letter-spacing:0.102400pt;}
.ls4_c01037{letter-spacing:5.333333pt;}
.ls3_c01037{letter-spacing:5.866667pt;}
.ls1_c01037{letter-spacing:8.576000pt;}
.ls7_c01037{letter-spacing:16.000000pt;}
.ls2_c01037{letter-spacing:18.634667pt;}
.ls6_c01037{letter-spacing:21.333333pt;}
.ws0_c01037{word-spacing:-47.872000pt;}
.ws1_c01037{word-spacing:-38.297600pt;}
.ws3_c01037{word-spacing:-33.994667pt;}
.ws2_c01037{word-spacing:-17.994667pt;}
.ws4_c01037{word-spacing:0.000000pt;}
._21_c01037{margin-left:-30.805333pt;}
._2a_c01037{margin-left:-28.966400pt;}
._1f_c01037{margin-left:-25.258667pt;}
._2b_c01037{margin-left:-19.626667pt;}
._47_c01037{margin-left:-18.645333pt;}
._40_c01037{margin-left:-17.365333pt;}
._28_c01037{margin-left:-14.506667pt;}
._37_c01037{margin-left:-12.714667pt;}
._1d_c01037{margin-left:-11.669333pt;}
._23_c01037{margin-left:-9.813333pt;}
._f_c01037{margin-left:-8.448000pt;}
._e_c01037{margin-left:-6.912000pt;}
._15_c01037{margin-left:-5.973333pt;}
._3_c01037{margin-left:-4.778667pt;}
._5_c01037{margin-left:-3.669333pt;}
._4_c01037{margin-left:-2.218667pt;}
._29_c01037{margin-left:-1.280000pt;}
._1_c01037{width:1.621333pt;}
._0_c01037{width:2.901333pt;}
._14_c01037{width:3.840000pt;}
._9_c01037{width:4.949333pt;}
._a_c01037{width:5.973333pt;}
._7_c01037{width:7.594667pt;}
._16_c01037{width:8.533333pt;}
._c_c01037{width:9.557333pt;}
._1c_c01037{width:10.858667pt;}
._1b_c01037{width:12.334933pt;}
._4e_c01037{width:13.482667pt;}
._26_c01037{width:14.677333pt;}
._43_c01037{width:15.863467pt;}
._27_c01037{width:17.531733pt;}
._b_c01037{width:18.517333pt;}
._3b_c01037{width:22.318933pt;}
._17_c01037{width:23.210667pt;}
._18_c01037{width:24.234667pt;}
._3f_c01037{width:25.339733pt;}
._d_c01037{width:27.221333pt;}
._1a_c01037{width:28.117333pt;}
._4c_c01037{width:29.013333pt;}
._2f_c01037{width:30.122667pt;}
._33_c01037{width:31.061333pt;}
._41_c01037{width:31.995733pt;}
._10_c01037{width:33.024000pt;}
._6_c01037{width:34.048000pt;}
._11_c01037{width:35.754667pt;}
._13_c01037{width:36.778667pt;}
._31_c01037{width:38.741333pt;}
._2d_c01037{width:40.192000pt;}
._42_c01037{width:41.557333pt;}
._3d_c01037{width:42.581333pt;}
._30_c01037{width:44.117333pt;}
._12_c01037{width:45.482667pt;}
._4d_c01037{width:47.018667pt;}
._2e_c01037{width:48.896000pt;}
._19_c01037{width:50.346667pt;}
._8_c01037{width:51.968000pt;}
._3c_c01037{width:53.845333pt;}
._32_c01037{width:55.381333pt;}
._3e_c01037{width:59.733333pt;}
._45_c01037{width:63.146667pt;}
._4b_c01037{width:65.429333pt;}
._24_c01037{width:68.266667pt;}
._35_c01037{width:83.520000pt;}
._22_c01037{width:86.101333pt;}
._3a_c01037{width:87.637333pt;}
._4a_c01037{width:140.906667pt;}
._38_c01037{width:145.578667pt;}
._25_c01037{width:157.013333pt;}
._44_c01037{width:164.241067pt;}
._2_c01037{width:168.448000pt;}
._39_c01037{width:173.397333pt;}
._20_c01037{width:222.293333pt;}
._2c_c01037{width:235.605333pt;}
._34_c01037{width:240.298667pt;}
._46_c01037{width:275.029333pt;}
._49_c01037{width:287.232000pt;}
._36_c01037{width:465.408000pt;}
._1e_c01037{width:611.157333pt;}
._48_c01037{width:1069.056000pt;}
.fs5_c01037{font-size:42.666667pt;}
.fs1_c01037{font-size:68.266667pt;}
.fs2_c01037{font-size:74.666667pt;}
.fs0_c01037{font-size:85.333333pt;}
.fs3_c01037{font-size:90.666667pt;}
.fs4_c01037{font-size:93.333333pt;}
.y0_c01037{bottom:0.000000pt;}
.y26_c01037{bottom:2.760000pt;}
.y25_c01037{bottom:6.425206pt;}
.y24_c01037{bottom:70.826667pt;}
.y23_c01037{bottom:98.693333pt;}
.y22_c01037{bottom:128.693333pt;}
.y21_c01037{bottom:158.960000pt;}
.y20_c01037{bottom:189.360000pt;}
.y1f_c01037{bottom:219.360000pt;}
.y1e_c01037{bottom:249.893333pt;}
.y1d_c01037{bottom:279.626667pt;}
.y1c_c01037{bottom:310.160000pt;}
.y1b_c01037{bottom:339.893333pt;}
.y1a_c01037{bottom:369.626667pt;}
.y19_c01037{bottom:401.093333pt;}
.y18_c01037{bottom:430.160000pt;}
.y17_c01037{bottom:460.293333pt;}
.y16_c01037{bottom:490.160000pt;}
.y15_c01037{bottom:519.893333pt;}
.y14_c01037{bottom:549.626667pt;}
.y13_c01037{bottom:579.893333pt;}
.y12_c01037{bottom:609.360000pt;}
.y11_c01037{bottom:638.426667pt;}
.y10_c01037{bottom:668.426667pt;}
.yf_c01037{bottom:698.693333pt;}
.ye_c01037{bottom:727.226667pt;}
.yd_c01037{bottom:758.960000pt;}
.yc_c01037{bottom:787.893333pt;}
.yb_c01037{bottom:817.760000pt;}
.ya_c01037{bottom:847.893333pt;}
.y9_c01037{bottom:876.560000pt;}
.y8_c01037{bottom:904.560000pt;}
.y7_c01037{bottom:935.360000pt;}
.y6_c01037{bottom:965.093333pt;}
.y5_c01037{bottom:994.826667pt;}
.y4_c01037{bottom:1024.693333pt;}
.y3_c01037{bottom:1054.293333pt;}
.y2_c01037{bottom:1083.893333pt;}
.y1_c01037{bottom:1111.893333pt;}
.h5_c01037{height:11.733399pt;}
.h6_c01037{height:38.937500pt;}
.h4_c01037{height:87.390625pt;}
.h2_c01037{height:108.041667pt;}
.h3_c01037{height:108.575000pt;}
.h0_c01037{height:1229.066667pt;}
.h1_c01037{height:1229.333333pt;}
.w2_c01037{width:93.222667pt;}
.w0_c01037{width:767.266667pt;}
.w1_c01037{width:767.333333pt;}
.x0_c01037{left:0.000000pt;}
.xa_c01037{left:152.933333pt;}
.x1_c01037{left:155.733333pt;}
.x7_c01037{left:181.600000pt;}
.x5_c01037{left:222.933333pt;}
.x3_c01037{left:224.000000pt;}
.x9_c01037{left:224.933333pt;}
.x2_c01037{left:225.866667pt;}
.xc_c01037{left:226.800000pt;}
.x6_c01037{left:228.266667pt;}
.x8_c01037{left:230.133333pt;}
.xb_c01037{left:231.600000pt;}
.x4_c01037{left:236.400000pt;}
.xe_c01037{left:340.801554pt;}
.xd_c01037{left:696.666667pt;}
}





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

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_2db3d554409e85f36ceb9994.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01038;src:url('chunks/assets/font_742ccc1c0528d94a60114cc2.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01038;src:url('chunks/assets/font_24d53b86b98b0de883d376b3.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01038;src:url('chunks/assets/font_f3515b0288e321105d6075d2.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;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_c01038;src:url('chunks/assets/font_f1d8607484bde480acf270d8.woff2')format("woff");}.ff5_c01038{font-family:ff5_c01038;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01038;src:url('chunks/assets/font_d78ad198f9e4decfede4a666.woff2')format("woff");}.ff6_c01038{font-family:ff6_c01038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01038;src:url('chunks/assets/font_658a220b40fe7fd4d4cc29f8.woff2')format("woff");}.ff7_c01038{font-family:ff7_c01038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01038;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c01038{font-family:ff8_c01038;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls9_c01038{letter-spacing:-3.000000px;}
.ls8_c01038{letter-spacing:0.000000px;}
.ls1_c01038{letter-spacing:2.280000px;}
.lsa_c01038{letter-spacing:3.000000px;}
.ls2_c01038{letter-spacing:6.120000px;}
.ls0_c01038{letter-spacing:7.800000px;}
.ls5_c01038{letter-spacing:9.000000px;}
.ls4_c01038{letter-spacing:16.200000px;}
.ls7_c01038{letter-spacing:21.300000px;}
.ls3_c01038{letter-spacing:23.664000px;}
.ls6_c01038{letter-spacing:23.988000px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01038{word-spacing:-64.044000px;}
.ws2_c01038{word-spacing:-57.732000px;}
.ws4_c01038{word-spacing:-54.000000px;}
.ws0_c01038{word-spacing:-38.784000px;}
.ws3_c01038{word-spacing:-23.136000px;}
.ws1_c01038{word-spacing:-20.244000px;}
.ws6_c01038{word-spacing:0.000000px;}
._2b_c01038{margin-left:-88.080000px;}
._3b_c01038{margin-left:-86.550000px;}
._46_c01038{margin-left:-83.940000px;}
._45_c01038{margin-left:-32.706000px;}
._3e_c01038{margin-left:-30.312000px;}
._47_c01038{margin-left:-27.840000px;}
._3f_c01038{margin-left:-25.146000px;}
._39_c01038{margin-left:-23.904000px;}
._2d_c01038{margin-left:-20.928000px;}
._49_c01038{margin-left:-19.680000px;}
._28_c01038{margin-left:-18.432000px;}
._36_c01038{margin-left:-17.400000px;}
._32_c01038{margin-left:-15.966000px;}
._f_c01038{margin-left:-14.484000px;}
._37_c01038{margin-left:-13.200000px;}
._29_c01038{margin-left:-11.424000px;}
._34_c01038{margin-left:-10.416000px;}
._26_c01038{margin-left:-8.928000px;}
._2f_c01038{margin-left:-6.954000px;}
._20_c01038{margin-left:-5.436000px;}
._24_c01038{margin-left:-4.290000px;}
._11_c01038{margin-left:-3.072000px;}
._a_c01038{margin-left:-1.932000px;}
._12_c01038{width:1.368000px;}
._7_c01038{width:2.532000px;}
._0_c01038{width:3.774000px;}
._1_c01038{width:5.202000px;}
._4_c01038{width:6.300000px;}
._3_c01038{width:7.560000px;}
._41_c01038{width:8.646000px;}
._2_c01038{width:9.660000px;}
._1d_c01038{width:10.908000px;}
._e_c01038{width:11.928000px;}
._d_c01038{width:13.362000px;}
._17_c01038{width:14.592000px;}
._1c_c01038{width:15.642000px;}
._1e_c01038{width:16.914000px;}
._c_c01038{width:18.984000px;}
._35_c01038{width:20.646000px;}
._30_c01038{width:21.924000px;}
._1f_c01038{width:24.120000px;}
._18_c01038{width:25.536000px;}
._1b_c01038{width:27.198000px;}
._10_c01038{width:28.500000px;}
._31_c01038{width:29.580000px;}
._b_c01038{width:30.756000px;}
._23_c01038{width:32.820000px;}
._8_c01038{width:34.704000px;}
._6_c01038{width:36.456000px;}
._2e_c01038{width:37.824000px;}
._22_c01038{width:39.204000px;}
._14_c01038{width:40.608000px;}
._43_c01038{width:41.652000px;}
._13_c01038{width:43.056000px;}
._9_c01038{width:44.364000px;}
._15_c01038{width:45.696000px;}
._21_c01038{width:47.088000px;}
._5_c01038{width:48.978000px;}
._19_c01038{width:50.838000px;}
._1a_c01038{width:52.212000px;}
._44_c01038{width:53.316000px;}
._33_c01038{width:54.336000px;}
._3c_c01038{width:55.776000px;}
._16_c01038{width:58.488000px;}
._42_c01038{width:61.284000px;}
._40_c01038{width:62.904000px;}
._2a_c01038{width:71.412000px;}
._3a_c01038{width:73.152000px;}
._27_c01038{width:88.128000px;}
._3d_c01038{width:195.888000px;}
._2c_c01038{width:203.178000px;}
._25_c01038{width:220.128000px;}
._38_c01038{width:237.138000px;}
._4a_c01038{width:354.816000px;}
._48_c01038{width:534.528000px;}
._4b_c01038{width:1792.494000px;}
.fc2_c01038{color:transparent;}
.fc1_c01038{color:rgb(128,128,128);}
.fc0_c01038{color:rgb(0,0,0);}
.fs6_c01038{font-size:48.000000px;}
.fs1_c01038{font-size:84.000000px;}
.fs2_c01038{font-size:96.000000px;}
.fs5_c01038{font-size:99.000000px;}
.fs0_c01038{font-size:102.000000px;}
.fs4_c01038{font-size:120.000000px;}
.fs3_c01038{font-size:126.000000px;}
.y0_c01038{bottom:0.000000px;}
.y27_c01038{bottom:3.105000px;}
.y26_c01038{bottom:7.228355px;}
.y25_c01038{bottom:70.485000px;}
.y24_c01038{bottom:98.535000px;}
.y23_c01038{bottom:130.935000px;}
.y22_c01038{bottom:168.735000px;}
.y21_c01038{bottom:202.785000px;}
.y20_c01038{bottom:237.285000px;}
.y1f_c01038{bottom:271.935000px;}
.y1e_c01038{bottom:304.635000px;}
.y1d_c01038{bottom:338.835000px;}
.y1c_c01038{bottom:372.135000px;}
.y1b_c01038{bottom:407.385000px;}
.y1a_c01038{bottom:439.635000px;}
.y19_c01038{bottom:473.085000px;}
.y18_c01038{bottom:507.885000px;}
.y17_c01038{bottom:540.285000px;}
.y16_c01038{bottom:573.285000px;}
.y15_c01038{bottom:607.785000px;}
.y14_c01038{bottom:640.185000px;}
.y13_c01038{bottom:674.535000px;}
.y12_c01038{bottom:707.085000px;}
.y11_c01038{bottom:742.035000px;}
.y10_c01038{bottom:774.135000px;}
.yf_c01038{bottom:807.585000px;}
.ye_c01038{bottom:840.285000px;}
.yd_c01038{bottom:874.335000px;}
.yc_c01038{bottom:907.485000px;}
.yb_c01038{bottom:940.635000px;}
.ya_c01038{bottom:973.635000px;}
.y9_c01038{bottom:1006.785000px;}
.y8_c01038{bottom:1040.385000px;}
.y7_c01038{bottom:1072.785000px;}
.y6_c01038{bottom:1105.935000px;}
.y5_c01038{bottom:1138.335000px;}
.y4_c01038{bottom:1171.035000px;}
.y3_c01038{bottom:1204.485000px;}
.y2_c01038{bottom:1238.235000px;}
.y1_c01038{bottom:1272.285000px;}
.h7_c01038{height:13.200074px;}
.h8_c01038{height:43.804688px;}
.h5_c01038{height:98.314453px;}
.h4_c01038{height:106.353516px;}
.h2_c01038{height:110.568000px;}
.h3_c01038{height:121.546875px;}
.h6_c01038{height:151.933594px;}
.h1_c01038{height:1353.000000px;}
.h0_c01038{height:1353.225000px;}
.w2_c01038{width:104.875500px;}
.w0_c01038{width:858.600000px;}
.w1_c01038{width:858.750000px;}
.x0_c01038{left:0.000000px;}
.x9_c01038{left:25.050000px;}
.x6_c01038{left:34.800000px;}
.x7_c01038{left:35.850000px;}
.x2_c01038{left:37.050000px;}
.x5_c01038{left:38.100000px;}
.x4_c01038{left:39.150000px;}
.x3_c01038{left:41.250000px;}
.x8_c01038{left:45.600000px;}
.xa_c01038{left:381.114258px;}
.x1_c01038{left:526.200000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls9_c01038{letter-spacing:-2.666667pt;}
.ls8_c01038{letter-spacing:0.000000pt;}
.ls1_c01038{letter-spacing:2.026667pt;}
.lsa_c01038{letter-spacing:2.666667pt;}
.ls2_c01038{letter-spacing:5.440000pt;}
.ls0_c01038{letter-spacing:6.933333pt;}
.ls5_c01038{letter-spacing:8.000000pt;}
.ls4_c01038{letter-spacing:14.400000pt;}
.ls7_c01038{letter-spacing:18.933333pt;}
.ls3_c01038{letter-spacing:21.034667pt;}
.ls6_c01038{letter-spacing:21.322667pt;}
.ws5_c01038{word-spacing:-56.928000pt;}
.ws2_c01038{word-spacing:-51.317333pt;}
.ws4_c01038{word-spacing:-48.000000pt;}
.ws0_c01038{word-spacing:-34.474667pt;}
.ws3_c01038{word-spacing:-20.565333pt;}
.ws1_c01038{word-spacing:-17.994667pt;}
.ws6_c01038{word-spacing:0.000000pt;}
._2b_c01038{margin-left:-78.293333pt;}
._3b_c01038{margin-left:-76.933333pt;}
._46_c01038{margin-left:-74.613333pt;}
._45_c01038{margin-left:-29.072000pt;}
._3e_c01038{margin-left:-26.944000pt;}
._47_c01038{margin-left:-24.746667pt;}
._3f_c01038{margin-left:-22.352000pt;}
._39_c01038{margin-left:-21.248000pt;}
._2d_c01038{margin-left:-18.602667pt;}
._49_c01038{margin-left:-17.493333pt;}
._28_c01038{margin-left:-16.384000pt;}
._36_c01038{margin-left:-15.466667pt;}
._32_c01038{margin-left:-14.192000pt;}
._f_c01038{margin-left:-12.874667pt;}
._37_c01038{margin-left:-11.733333pt;}
._29_c01038{margin-left:-10.154667pt;}
._34_c01038{margin-left:-9.258667pt;}
._26_c01038{margin-left:-7.936000pt;}
._2f_c01038{margin-left:-6.181333pt;}
._20_c01038{margin-left:-4.832000pt;}
._24_c01038{margin-left:-3.813333pt;}
._11_c01038{margin-left:-2.730667pt;}
._a_c01038{margin-left:-1.717333pt;}
._12_c01038{width:1.216000pt;}
._7_c01038{width:2.250667pt;}
._0_c01038{width:3.354667pt;}
._1_c01038{width:4.624000pt;}
._4_c01038{width:5.600000pt;}
._3_c01038{width:6.720000pt;}
._41_c01038{width:7.685333pt;}
._2_c01038{width:8.586667pt;}
._1d_c01038{width:9.696000pt;}
._e_c01038{width:10.602667pt;}
._d_c01038{width:11.877333pt;}
._17_c01038{width:12.970667pt;}
._1c_c01038{width:13.904000pt;}
._1e_c01038{width:15.034667pt;}
._c_c01038{width:16.874667pt;}
._35_c01038{width:18.352000pt;}
._30_c01038{width:19.488000pt;}
._1f_c01038{width:21.440000pt;}
._18_c01038{width:22.698667pt;}
._1b_c01038{width:24.176000pt;}
._10_c01038{width:25.333333pt;}
._31_c01038{width:26.293333pt;}
._b_c01038{width:27.338667pt;}
._23_c01038{width:29.173333pt;}
._8_c01038{width:30.848000pt;}
._6_c01038{width:32.405333pt;}
._2e_c01038{width:33.621333pt;}
._22_c01038{width:34.848000pt;}
._14_c01038{width:36.096000pt;}
._43_c01038{width:37.024000pt;}
._13_c01038{width:38.272000pt;}
._9_c01038{width:39.434667pt;}
._15_c01038{width:40.618667pt;}
._21_c01038{width:41.856000pt;}
._5_c01038{width:43.536000pt;}
._19_c01038{width:45.189333pt;}
._1a_c01038{width:46.410667pt;}
._44_c01038{width:47.392000pt;}
._33_c01038{width:48.298667pt;}
._3c_c01038{width:49.578667pt;}
._16_c01038{width:51.989333pt;}
._42_c01038{width:54.474667pt;}
._40_c01038{width:55.914667pt;}
._2a_c01038{width:63.477333pt;}
._3a_c01038{width:65.024000pt;}
._27_c01038{width:78.336000pt;}
._3d_c01038{width:174.122667pt;}
._2c_c01038{width:180.602667pt;}
._25_c01038{width:195.669333pt;}
._38_c01038{width:210.789333pt;}
._4a_c01038{width:315.392000pt;}
._48_c01038{width:475.136000pt;}
._4b_c01038{width:1593.328000pt;}
.fs6_c01038{font-size:42.666667pt;}
.fs1_c01038{font-size:74.666667pt;}
.fs2_c01038{font-size:85.333333pt;}
.fs5_c01038{font-size:88.000000pt;}
.fs0_c01038{font-size:90.666667pt;}
.fs4_c01038{font-size:106.666667pt;}
.fs3_c01038{font-size:112.000000pt;}
.y0_c01038{bottom:0.000000pt;}
.y27_c01038{bottom:2.760000pt;}
.y26_c01038{bottom:6.425204pt;}
.y25_c01038{bottom:62.653333pt;}
.y24_c01038{bottom:87.586667pt;}
.y23_c01038{bottom:116.386667pt;}
.y22_c01038{bottom:149.986667pt;}
.y21_c01038{bottom:180.253333pt;}
.y20_c01038{bottom:210.920000pt;}
.y1f_c01038{bottom:241.720000pt;}
.y1e_c01038{bottom:270.786667pt;}
.y1d_c01038{bottom:301.186667pt;}
.y1c_c01038{bottom:330.786667pt;}
.y1b_c01038{bottom:362.120000pt;}
.y1a_c01038{bottom:390.786667pt;}
.y19_c01038{bottom:420.520000pt;}
.y18_c01038{bottom:451.453333pt;}
.y17_c01038{bottom:480.253333pt;}
.y16_c01038{bottom:509.586667pt;}
.y15_c01038{bottom:540.253333pt;}
.y14_c01038{bottom:569.053333pt;}
.y13_c01038{bottom:599.586667pt;}
.y12_c01038{bottom:628.520000pt;}
.y11_c01038{bottom:659.586667pt;}
.y10_c01038{bottom:688.120000pt;}
.yf_c01038{bottom:717.853333pt;}
.ye_c01038{bottom:746.920000pt;}
.yd_c01038{bottom:777.186667pt;}
.yc_c01038{bottom:806.653333pt;}
.yb_c01038{bottom:836.120000pt;}
.ya_c01038{bottom:865.453333pt;}
.y9_c01038{bottom:894.920000pt;}
.y8_c01038{bottom:924.786667pt;}
.y7_c01038{bottom:953.586667pt;}
.y6_c01038{bottom:983.053333pt;}
.y5_c01038{bottom:1011.853333pt;}
.y4_c01038{bottom:1040.920000pt;}
.y3_c01038{bottom:1070.653333pt;}
.y2_c01038{bottom:1100.653333pt;}
.y1_c01038{bottom:1130.920000pt;}
.h7_c01038{height:11.733399pt;}
.h8_c01038{height:38.937500pt;}
.h5_c01038{height:87.390625pt;}
.h4_c01038{height:94.536458pt;}
.h2_c01038{height:98.282667pt;}
.h3_c01038{height:108.041667pt;}
.h6_c01038{height:135.052083pt;}
.h1_c01038{height:1202.666667pt;}
.h0_c01038{height:1202.866667pt;}
.w2_c01038{width:93.222667pt;}
.w0_c01038{width:763.200000pt;}
.w1_c01038{width:763.333333pt;}
.x0_c01038{left:0.000000pt;}
.x9_c01038{left:22.266667pt;}
.x6_c01038{left:30.933333pt;}
.x7_c01038{left:31.866667pt;}
.x2_c01038{left:32.933333pt;}
.x5_c01038{left:33.866667pt;}
.x4_c01038{left:34.800000pt;}
.x3_c01038{left:36.666667pt;}
.x8_c01038{left:40.533333pt;}
.xa_c01038{left:338.768229pt;}
.x1_c01038{left:467.733333pt;}
}





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

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_f084f8e02f7e29eeb8b3f523.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01039;src:url('chunks/assets/font_eb85c2f3d1dda94e0462731f.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01039;src:url('chunks/assets/font_c5c3ed1956a84cb34f45086c.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01039;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01039{font-family:ff4_c01039;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.ls1_c01039{letter-spacing:0.000000px;}
.ls0_c01039{letter-spacing:3.000000px;}
.ls2_c01039{letter-spacing:24.000000px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01039{word-spacing:-54.000000px;}
.ws2_c01039{word-spacing:-47.136000px;}
.ws1_c01039{word-spacing:-23.136000px;}
.ws0_c01039{word-spacing:-20.244000px;}
.ws5_c01039{word-spacing:0.000000px;}
.ws4_c01039{word-spacing:5.760000px;}
._20_c01039{margin-left:-85.440000px;}
._30_c01039{margin-left:-52.800000px;}
._4a_c01039{margin-left:-40.488000px;}
._26_c01039{margin-left:-36.768000px;}
._2a_c01039{margin-left:-34.752000px;}
._4e_c01039{margin-left:-29.064000px;}
._28_c01039{margin-left:-26.112000px;}
._2c_c01039{margin-left:-24.612000px;}
._3b_c01039{margin-left:-21.408000px;}
._9_c01039{margin-left:-16.800000px;}
._32_c01039{margin-left:-13.728000px;}
._17_c01039{margin-left:-10.944000px;}
._a_c01039{margin-left:-8.832000px;}
._b_c01039{margin-left:-6.912000px;}
._4_c01039{margin-left:-5.088000px;}
._3_c01039{margin-left:-3.648000px;}
._21_c01039{margin-left:-2.496000px;}
._d_c01039{margin-left:-1.152000px;}
._12_c01039{width:1.056000px;}
._f_c01039{width:2.112000px;}
._0_c01039{width:3.168000px;}
._1_c01039{width:4.608000px;}
._15_c01039{width:5.760000px;}
._34_c01039{width:6.792000px;}
._6_c01039{width:7.968000px;}
._36_c01039{width:9.648000px;}
._1c_c01039{width:11.040000px;}
._45_c01039{width:12.048000px;}
._14_c01039{width:13.056000px;}
._8_c01039{width:15.168000px;}
._5_c01039{width:17.184000px;}
._35_c01039{width:18.816000px;}
._13_c01039{width:21.792000px;}
._40_c01039{width:26.592000px;}
._1a_c01039{width:28.032000px;}
._16_c01039{width:29.568000px;}
._19_c01039{width:31.488000px;}
._3a_c01039{width:32.928000px;}
._10_c01039{width:34.464000px;}
._1d_c01039{width:35.616000px;}
._3d_c01039{width:36.720000px;}
._11_c01039{width:38.496000px;}
._22_c01039{width:40.416000px;}
._1f_c01039{width:41.472000px;}
._23_c01039{width:43.680000px;}
._c_c01039{width:45.696000px;}
._3e_c01039{width:46.992000px;}
._1b_c01039{width:48.096000px;}
._7_c01039{width:49.152000px;}
._2_c01039{width:51.552000px;}
._1e_c01039{width:54.240000px;}
._e_c01039{width:55.392000px;}
._4c_c01039{width:57.192000px;}
._3f_c01039{width:58.704000px;}
._44_c01039{width:60.384000px;}
._24_c01039{width:62.784000px;}
._42_c01039{width:65.088000px;}
._41_c01039{width:69.336000px;}
._43_c01039{width:71.616000px;}
._3c_c01039{width:75.648000px;}
._4d_c01039{width:77.640000px;}
._48_c01039{width:79.968000px;}
._25_c01039{width:91.104000px;}
._27_c01039{width:101.088000px;}
._33_c01039{width:106.032000px;}
._29_c01039{width:157.248000px;}
._37_c01039{width:159.984000px;}
._18_c01039{width:177.504000px;}
._2f_c01039{width:182.784000px;}
._39_c01039{width:275.616000px;}
._31_c01039{width:278.112000px;}
._2b_c01039{width:280.704000px;}
._46_c01039{width:311.232000px;}
._47_c01039{width:424.128000px;}
._2d_c01039{width:540.576000px;}
._38_c01039{width:574.176000px;}
._2e_c01039{width:713.856000px;}
._4b_c01039{width:756.864000px;}
._49_c01039{width:1031.712000px;}
.fc2_c01039{color:transparent;}
.fc1_c01039{color:rgb(128,128,128);}
.fc0_c01039{color:rgb(0,0,0);}
.fs3_c01039{font-size:48.000000px;}
.fs1_c01039{font-size:84.000000px;}
.fs0_c01039{font-size:96.000000px;}
.fs2_c01039{font-size:102.000000px;}
.y0_c01039{bottom:0.000000px;}
.y27_c01039{bottom:3.105000px;}
.y26_c01039{bottom:7.228357px;}
.y25_c01039{bottom:92.580000px;}
.y24_c01039{bottom:124.980000px;}
.y23_c01039{bottom:158.730000px;}
.y22_c01039{bottom:195.180000px;}
.y21_c01039{bottom:224.130000px;}
.y20_c01039{bottom:261.330000px;}
.y1f_c01039{bottom:294.930000px;}
.y1e_c01039{bottom:329.130000px;}
.y1d_c01039{bottom:362.880000px;}
.y1c_c01039{bottom:396.180000px;}
.y1b_c01039{bottom:430.680000px;}
.y1a_c01039{bottom:463.980000px;}
.y19_c01039{bottom:497.430000px;}
.y18_c01039{bottom:530.880000px;}
.y17_c01039{bottom:565.080000px;}
.y16_c01039{bottom:598.680000px;}
.y15_c01039{bottom:631.830000px;}
.y14_c01039{bottom:665.280000px;}
.y13_c01039{bottom:699.030000px;}
.y12_c01039{bottom:732.330000px;}
.y11_c01039{bottom:765.480000px;}
.y10_c01039{bottom:798.630000px;}
.yf_c01039{bottom:831.630000px;}
.ye_c01039{bottom:865.980000px;}
.yd_c01039{bottom:901.080000px;}
.yc_c01039{bottom:931.830000px;}
.yb_c01039{bottom:964.980000px;}
.ya_c01039{bottom:1000.980000px;}
.y9_c01039{bottom:1033.830000px;}
.y1_c01039{bottom:1048.230000px;}
.y8_c01039{bottom:1067.130000px;}
.y7_c01039{bottom:1100.580000px;}
.y6_c01039{bottom:1134.630000px;}
.y5_c01039{bottom:1167.030000px;}
.y4_c01039{bottom:1199.880000px;}
.y3_c01039{bottom:1232.580000px;}
.y2_c01039{bottom:1265.730000px;}
.h3_c01039{height:13.200074px;}
.h4_c01039{height:43.804688px;}
.h2_c01039{height:121.546875px;}
.h0_c01039{height:1382.700000px;}
.h1_c01039{height:1383.000000px;}
.w2_c01039{width:104.875500px;}
.w0_c01039{width:863.175000px;}
.w1_c01039{width:863.250000px;}
.x0_c01039{left:0.000000px;}
.xe_c01039{left:12.150000px;}
.xf_c01039{left:46.800000px;}
.x8_c01039{left:96.150000px;}
.xd_c01039{left:129.300000px;}
.x1_c01039{left:137.700000px;}
.xa_c01039{left:153.600000px;}
.xc_c01039{left:213.000000px;}
.xb_c01039{left:215.250000px;}
.x2_c01039{left:216.300000px;}
.x3_c01039{left:217.800000px;}
.x5_c01039{left:219.750000px;}
.x6_c01039{left:246.600000px;}
.x4_c01039{left:267.000000px;}
.x11_c01039{left:383.401749px;}
.x7_c01039{left:398.250000px;}
.x9_c01039{left:458.700000px;}
.x10_c01039{left:755.700000px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls1_c01039{letter-spacing:0.000000pt;}
.ls0_c01039{letter-spacing:2.666667pt;}
.ls2_c01039{letter-spacing:21.333333pt;}
.ws3_c01039{word-spacing:-48.000000pt;}
.ws2_c01039{word-spacing:-41.898667pt;}
.ws1_c01039{word-spacing:-20.565333pt;}
.ws0_c01039{word-spacing:-17.994667pt;}
.ws5_c01039{word-spacing:0.000000pt;}
.ws4_c01039{word-spacing:5.120000pt;}
._20_c01039{margin-left:-75.946667pt;}
._30_c01039{margin-left:-46.933333pt;}
._4a_c01039{margin-left:-35.989333pt;}
._26_c01039{margin-left:-32.682667pt;}
._2a_c01039{margin-left:-30.890667pt;}
._4e_c01039{margin-left:-25.834667pt;}
._28_c01039{margin-left:-23.210667pt;}
._2c_c01039{margin-left:-21.877333pt;}
._3b_c01039{margin-left:-19.029333pt;}
._9_c01039{margin-left:-14.933333pt;}
._32_c01039{margin-left:-12.202667pt;}
._17_c01039{margin-left:-9.728000pt;}
._a_c01039{margin-left:-7.850667pt;}
._b_c01039{margin-left:-6.144000pt;}
._4_c01039{margin-left:-4.522667pt;}
._3_c01039{margin-left:-3.242667pt;}
._21_c01039{margin-left:-2.218667pt;}
._d_c01039{margin-left:-1.024000pt;}
._12_c01039{width:0.938667pt;}
._f_c01039{width:1.877333pt;}
._0_c01039{width:2.816000pt;}
._1_c01039{width:4.096000pt;}
._15_c01039{width:5.120000pt;}
._34_c01039{width:6.037333pt;}
._6_c01039{width:7.082667pt;}
._36_c01039{width:8.576000pt;}
._1c_c01039{width:9.813333pt;}
._45_c01039{width:10.709333pt;}
._14_c01039{width:11.605333pt;}
._8_c01039{width:13.482667pt;}
._5_c01039{width:15.274667pt;}
._35_c01039{width:16.725333pt;}
._13_c01039{width:19.370667pt;}
._40_c01039{width:23.637333pt;}
._1a_c01039{width:24.917333pt;}
._16_c01039{width:26.282667pt;}
._19_c01039{width:27.989333pt;}
._3a_c01039{width:29.269333pt;}
._10_c01039{width:30.634667pt;}
._1d_c01039{width:31.658667pt;}
._3d_c01039{width:32.640000pt;}
._11_c01039{width:34.218667pt;}
._22_c01039{width:35.925333pt;}
._1f_c01039{width:36.864000pt;}
._23_c01039{width:38.826667pt;}
._c_c01039{width:40.618667pt;}
._3e_c01039{width:41.770667pt;}
._1b_c01039{width:42.752000pt;}
._7_c01039{width:43.690667pt;}
._2_c01039{width:45.824000pt;}
._1e_c01039{width:48.213333pt;}
._e_c01039{width:49.237333pt;}
._4c_c01039{width:50.837333pt;}
._3f_c01039{width:52.181333pt;}
._44_c01039{width:53.674667pt;}
._24_c01039{width:55.808000pt;}
._42_c01039{width:57.856000pt;}
._41_c01039{width:61.632000pt;}
._43_c01039{width:63.658667pt;}
._3c_c01039{width:67.242667pt;}
._4d_c01039{width:69.013333pt;}
._48_c01039{width:71.082667pt;}
._25_c01039{width:80.981333pt;}
._27_c01039{width:89.856000pt;}
._33_c01039{width:94.250667pt;}
._29_c01039{width:139.776000pt;}
._37_c01039{width:142.208000pt;}
._18_c01039{width:157.781333pt;}
._2f_c01039{width:162.474667pt;}
._39_c01039{width:244.992000pt;}
._31_c01039{width:247.210667pt;}
._2b_c01039{width:249.514667pt;}
._46_c01039{width:276.650667pt;}
._47_c01039{width:377.002667pt;}
._2d_c01039{width:480.512000pt;}
._38_c01039{width:510.378667pt;}
._2e_c01039{width:634.538667pt;}
._4b_c01039{width:672.768000pt;}
._49_c01039{width:917.077333pt;}
.fs3_c01039{font-size:42.666667pt;}
.fs1_c01039{font-size:74.666667pt;}
.fs0_c01039{font-size:85.333333pt;}
.fs2_c01039{font-size:90.666667pt;}
.y0_c01039{bottom:0.000000pt;}
.y27_c01039{bottom:2.760000pt;}
.y26_c01039{bottom:6.425206pt;}
.y25_c01039{bottom:82.293333pt;}
.y24_c01039{bottom:111.093333pt;}
.y23_c01039{bottom:141.093333pt;}
.y22_c01039{bottom:173.493333pt;}
.y21_c01039{bottom:199.226667pt;}
.y20_c01039{bottom:232.293333pt;}
.y1f_c01039{bottom:262.160000pt;}
.y1e_c01039{bottom:292.560000pt;}
.y1d_c01039{bottom:322.560000pt;}
.y1c_c01039{bottom:352.160000pt;}
.y1b_c01039{bottom:382.826667pt;}
.y1a_c01039{bottom:412.426667pt;}
.y19_c01039{bottom:442.160000pt;}
.y18_c01039{bottom:471.893333pt;}
.y17_c01039{bottom:502.293333pt;}
.y16_c01039{bottom:532.160000pt;}
.y15_c01039{bottom:561.626667pt;}
.y14_c01039{bottom:591.360000pt;}
.y13_c01039{bottom:621.360000pt;}
.y12_c01039{bottom:650.960000pt;}
.y11_c01039{bottom:680.426667pt;}
.y10_c01039{bottom:709.893333pt;}
.yf_c01039{bottom:739.226667pt;}
.ye_c01039{bottom:769.760000pt;}
.yd_c01039{bottom:800.960000pt;}
.yc_c01039{bottom:828.293333pt;}
.yb_c01039{bottom:857.760000pt;}
.ya_c01039{bottom:889.760000pt;}
.y9_c01039{bottom:918.960000pt;}
.y1_c01039{bottom:931.760000pt;}
.y8_c01039{bottom:948.560000pt;}
.y7_c01039{bottom:978.293333pt;}
.y6_c01039{bottom:1008.560000pt;}
.y5_c01039{bottom:1037.360000pt;}
.y4_c01039{bottom:1066.560000pt;}
.y3_c01039{bottom:1095.626667pt;}
.y2_c01039{bottom:1125.093333pt;}
.h3_c01039{height:11.733399pt;}
.h4_c01039{height:38.937500pt;}
.h2_c01039{height:108.041667pt;}
.h0_c01039{height:1229.066667pt;}
.h1_c01039{height:1229.333333pt;}
.w2_c01039{width:93.222667pt;}
.w0_c01039{width:767.266667pt;}
.w1_c01039{width:767.333333pt;}
.x0_c01039{left:0.000000pt;}
.xe_c01039{left:10.800000pt;}
.xf_c01039{left:41.600000pt;}
.x8_c01039{left:85.466667pt;}
.xd_c01039{left:114.933333pt;}
.x1_c01039{left:122.400000pt;}
.xa_c01039{left:136.533333pt;}
.xc_c01039{left:189.333333pt;}
.xb_c01039{left:191.333333pt;}
.x2_c01039{left:192.266667pt;}
.x3_c01039{left:193.600000pt;}
.x5_c01039{left:195.333333pt;}
.x6_c01039{left:219.200000pt;}
.x4_c01039{left:237.333333pt;}
.x11_c01039{left:340.801554pt;}
.x7_c01039{left:354.000000pt;}
.x9_c01039{left:407.733333pt;}
.x10_c01039{left:671.733333pt;}
}





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

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_515a600588c69cfe7c7431f0.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01040;src:url('chunks/assets/font_a6ba3ff81663cff300182afe.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01040;src:url('chunks/assets/font_865a123bce0e5e63fb846f72.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01040;src:url('chunks/assets/font_757c9c6fbc5c31d000a11df3.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01040;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01040{font-family:ff5_c01040;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls1_c01040{letter-spacing:0.000000px;}
.ls0_c01040{letter-spacing:5.596800px;}
.ls2_c01040{letter-spacing:42.000000px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01040{word-spacing:-65.136000px;}
.ws2_c01040{word-spacing:-53.856000px;}
.ws0_c01040{word-spacing:-51.000000px;}
.ws1_c01040{word-spacing:-20.244000px;}
.ws5_c01040{word-spacing:0.000000px;}
.ws3_c01040{word-spacing:3.444000px;}
._32_c01040{margin-left:-48.000000px;}
._21_c01040{margin-left:-45.504000px;}
._20_c01040{margin-left:-33.552000px;}
._3e_c01040{margin-left:-30.432000px;}
._3b_c01040{margin-left:-29.280000px;}
._2d_c01040{margin-left:-19.164000px;}
._1d_c01040{margin-left:-16.992000px;}
._2c_c01040{margin-left:-14.568000px;}
._1e_c01040{margin-left:-13.536000px;}
._37_c01040{margin-left:-11.232000px;}
._45_c01040{margin-left:-10.044000px;}
._3f_c01040{margin-left:-8.460000px;}
._38_c01040{margin-left:-7.140000px;}
._11_c01040{margin-left:-5.472000px;}
._36_c01040{margin-left:-4.008000px;}
._1a_c01040{margin-left:-2.976000px;}
._7_c01040{margin-left:-1.152000px;}
._0_c01040{width:1.344000px;}
._3_c01040{width:2.400000px;}
._5_c01040{width:4.032000px;}
._2_c01040{width:5.376000px;}
._b_c01040{width:6.528000px;}
._4_c01040{width:7.584000px;}
._10_c01040{width:8.736000px;}
._15_c01040{width:10.656000px;}
._a_c01040{width:12.672000px;}
._43_c01040{width:14.016000px;}
._27_c01040{width:15.168000px;}
._42_c01040{width:16.656000px;}
._16_c01040{width:17.664000px;}
._12_c01040{width:18.912000px;}
._1f_c01040{width:20.976000px;}
._28_c01040{width:25.056000px;}
._6_c01040{width:26.304000px;}
._22_c01040{width:27.840000px;}
._e_c01040{width:29.184000px;}
._c_c01040{width:30.336000px;}
._1_c01040{width:32.160000px;}
._39_c01040{width:33.936000px;}
._f_c01040{width:34.944000px;}
._14_c01040{width:36.576000px;}
._9_c01040{width:38.400000px;}
._8_c01040{width:39.552000px;}
._13_c01040{width:41.088000px;}
._26_c01040{width:42.816000px;}
._2b_c01040{width:44.352000px;}
._19_c01040{width:46.176000px;}
._d_c01040{width:47.328000px;}
._2f_c01040{width:49.668000px;}
._18_c01040{width:51.936000px;}
._29_c01040{width:53.664000px;}
._40_c01040{width:55.164000px;}
._2e_c01040{width:56.304000px;}
._1b_c01040{width:57.888000px;}
._41_c01040{width:62.352000px;}
._2a_c01040{width:63.444000px;}
._23_c01040{width:64.608000px;}
._24_c01040{width:69.312000px;}
._25_c01040{width:70.752000px;}
._30_c01040{width:75.600000px;}
._1c_c01040{width:92.640000px;}
._35_c01040{width:97.128000px;}
._3c_c01040{width:129.024000px;}
._34_c01040{width:134.112000px;}
._3d_c01040{width:160.224000px;}
._17_c01040{width:181.056000px;}
._33_c01040{width:310.848000px;}
._3a_c01040{width:434.832000px;}
._31_c01040{width:541.212000px;}
._44_c01040{width:778.656000px;}
.fc2_c01040{color:transparent;}
.fc1_c01040{color:rgb(128,128,128);}
.fc0_c01040{color:rgb(0,0,0);}
.fs4_c01040{font-size:48.000000px;}
.fs3_c01040{font-size:76.800000px;}
.fs2_c01040{font-size:84.000000px;}
.fs0_c01040{font-size:96.000000px;}
.fs1_c01040{font-size:102.000000px;}
.y0_c01040{bottom:0.000000px;}
.y26_c01040{bottom:3.105000px;}
.y25_c01040{bottom:7.228369px;}
.y23_c01040{bottom:106.020000px;}
.y22_c01040{bottom:139.320000px;}
.y21_c01040{bottom:173.520000px;}
.y20_c01040{bottom:207.120000px;}
.y1f_c01040{bottom:241.620000px;}
.y1e_c01040{bottom:274.770000px;}
.y1d_c01040{bottom:309.120000px;}
.y1c_c01040{bottom:342.870000px;}
.y1b_c01040{bottom:376.620000px;}
.y1a_c01040{bottom:410.370000px;}
.y24_c01040{bottom:414.420000px;}
.y19_c01040{bottom:477.270000px;}
.y18_c01040{bottom:511.320000px;}
.y17_c01040{bottom:544.620000px;}
.y16_c01040{bottom:577.770000px;}
.y15_c01040{bottom:611.820000px;}
.y14_c01040{bottom:645.570000px;}
.y13_c01040{bottom:679.320000px;}
.y12_c01040{bottom:712.170000px;}
.y11_c01040{bottom:746.220000px;}
.y10_c01040{bottom:779.520000px;}
.yf_c01040{bottom:812.670000px;}
.ye_c01040{bottom:844.470000px;}
.yd_c01040{bottom:880.770000px;}
.yc_c01040{bottom:912.870000px;}
.yb_c01040{bottom:946.920000px;}
.ya_c01040{bottom:980.370000px;}
.y9_c01040{bottom:1013.520000px;}
.y8_c01040{bottom:1046.520000px;}
.y7_c01040{bottom:1079.220000px;}
.y6_c01040{bottom:1111.770000px;}
.y5_c01040{bottom:1144.170000px;}
.y4_c01040{bottom:1177.920000px;}
.y3_c01040{bottom:1210.620000px;}
.y2_c01040{bottom:1244.070000px;}
.y1_c01040{bottom:1277.670000px;}
.h3_c01040{height:13.200073px;}
.h4_c01040{height:43.804688px;}
.h2_c01040{height:121.546875px;}
.h0_c01040{height:1383.450000px;}
.h1_c01040{height:1383.750000px;}
.w2_c01040{width:104.875500px;}
.w0_c01040{width:878.025000px;}
.w1_c01040{width:878.250000px;}
.x0_c01040{left:0.000000px;}
.xc_c01040{left:20.850000px;}
.xd_c01040{left:21.900000px;}
.xa_c01040{left:23.400000px;}
.x7_c01040{left:25.650000px;}
.x8_c01040{left:26.700000px;}
.x6_c01040{left:28.350000px;}
.x5_c01040{left:29.400000px;}
.x4_c01040{left:30.600000px;}
.x2_c01040{left:33.150000px;}
.x1_c01040{left:34.350000px;}
.x9_c01040{left:74.700000px;}
.x3_c01040{left:79.650000px;}
.xb_c01040{left:80.700000px;}
.xe_c01040{left:286.500000px;}
.x10_c01040{left:390.826721px;}
.xf_c01040{left:655.800000px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.ls0_c01040{letter-spacing:4.974933pt;}
.ls2_c01040{letter-spacing:37.333333pt;}
.ws4_c01040{word-spacing:-57.898667pt;}
.ws2_c01040{word-spacing:-47.872000pt;}
.ws0_c01040{word-spacing:-45.333333pt;}
.ws1_c01040{word-spacing:-17.994667pt;}
.ws5_c01040{word-spacing:0.000000pt;}
.ws3_c01040{word-spacing:3.061333pt;}
._32_c01040{margin-left:-42.666667pt;}
._21_c01040{margin-left:-40.448000pt;}
._20_c01040{margin-left:-29.824000pt;}
._3e_c01040{margin-left:-27.050667pt;}
._3b_c01040{margin-left:-26.026667pt;}
._2d_c01040{margin-left:-17.034667pt;}
._1d_c01040{margin-left:-15.104000pt;}
._2c_c01040{margin-left:-12.949333pt;}
._1e_c01040{margin-left:-12.032000pt;}
._37_c01040{margin-left:-9.984000pt;}
._45_c01040{margin-left:-8.928000pt;}
._3f_c01040{margin-left:-7.520000pt;}
._38_c01040{margin-left:-6.346667pt;}
._11_c01040{margin-left:-4.864000pt;}
._36_c01040{margin-left:-3.562667pt;}
._1a_c01040{margin-left:-2.645333pt;}
._7_c01040{margin-left:-1.024000pt;}
._0_c01040{width:1.194667pt;}
._3_c01040{width:2.133333pt;}
._5_c01040{width:3.584000pt;}
._2_c01040{width:4.778667pt;}
._b_c01040{width:5.802667pt;}
._4_c01040{width:6.741333pt;}
._10_c01040{width:7.765333pt;}
._15_c01040{width:9.472000pt;}
._a_c01040{width:11.264000pt;}
._43_c01040{width:12.458667pt;}
._27_c01040{width:13.482667pt;}
._42_c01040{width:14.805333pt;}
._16_c01040{width:15.701333pt;}
._12_c01040{width:16.810667pt;}
._1f_c01040{width:18.645333pt;}
._28_c01040{width:22.272000pt;}
._6_c01040{width:23.381333pt;}
._22_c01040{width:24.746667pt;}
._e_c01040{width:25.941333pt;}
._c_c01040{width:26.965333pt;}
._1_c01040{width:28.586667pt;}
._39_c01040{width:30.165333pt;}
._f_c01040{width:31.061333pt;}
._14_c01040{width:32.512000pt;}
._9_c01040{width:34.133333pt;}
._8_c01040{width:35.157333pt;}
._13_c01040{width:36.522667pt;}
._26_c01040{width:38.058667pt;}
._2b_c01040{width:39.424000pt;}
._19_c01040{width:41.045333pt;}
._d_c01040{width:42.069333pt;}
._2f_c01040{width:44.149333pt;}
._18_c01040{width:46.165333pt;}
._29_c01040{width:47.701333pt;}
._40_c01040{width:49.034667pt;}
._2e_c01040{width:50.048000pt;}
._1b_c01040{width:51.456000pt;}
._41_c01040{width:55.424000pt;}
._2a_c01040{width:56.394667pt;}
._23_c01040{width:57.429333pt;}
._24_c01040{width:61.610667pt;}
._25_c01040{width:62.890667pt;}
._30_c01040{width:67.200000pt;}
._1c_c01040{width:82.346667pt;}
._35_c01040{width:86.336000pt;}
._3c_c01040{width:114.688000pt;}
._34_c01040{width:119.210667pt;}
._3d_c01040{width:142.421333pt;}
._17_c01040{width:160.938667pt;}
._33_c01040{width:276.309333pt;}
._3a_c01040{width:386.517333pt;}
._31_c01040{width:481.077333pt;}
._44_c01040{width:692.138667pt;}
.fs4_c01040{font-size:42.666667pt;}
.fs3_c01040{font-size:68.266667pt;}
.fs2_c01040{font-size:74.666667pt;}
.fs0_c01040{font-size:85.333333pt;}
.fs1_c01040{font-size:90.666667pt;}
.y0_c01040{bottom:0.000000pt;}
.y26_c01040{bottom:2.760000pt;}
.y25_c01040{bottom:6.425217pt;}
.y23_c01040{bottom:94.240000pt;}
.y22_c01040{bottom:123.840000pt;}
.y21_c01040{bottom:154.240000pt;}
.y20_c01040{bottom:184.106667pt;}
.y1f_c01040{bottom:214.773333pt;}
.y1e_c01040{bottom:244.240000pt;}
.y1d_c01040{bottom:274.773333pt;}
.y1c_c01040{bottom:304.773333pt;}
.y1b_c01040{bottom:334.773333pt;}
.y1a_c01040{bottom:364.773333pt;}
.y24_c01040{bottom:368.373333pt;}
.y19_c01040{bottom:424.240000pt;}
.y18_c01040{bottom:454.506667pt;}
.y17_c01040{bottom:484.106667pt;}
.y16_c01040{bottom:513.573333pt;}
.y15_c01040{bottom:543.840000pt;}
.y14_c01040{bottom:573.840000pt;}
.y13_c01040{bottom:603.840000pt;}
.y12_c01040{bottom:633.040000pt;}
.y11_c01040{bottom:663.306667pt;}
.y10_c01040{bottom:692.906667pt;}
.yf_c01040{bottom:722.373333pt;}
.ye_c01040{bottom:750.640000pt;}
.yd_c01040{bottom:782.906667pt;}
.yc_c01040{bottom:811.440000pt;}
.yb_c01040{bottom:841.706667pt;}
.ya_c01040{bottom:871.440000pt;}
.y9_c01040{bottom:900.906667pt;}
.y8_c01040{bottom:930.240000pt;}
.y7_c01040{bottom:959.306667pt;}
.y6_c01040{bottom:988.240000pt;}
.y5_c01040{bottom:1017.040000pt;}
.y4_c01040{bottom:1047.040000pt;}
.y3_c01040{bottom:1076.106667pt;}
.y2_c01040{bottom:1105.840000pt;}
.y1_c01040{bottom:1135.706667pt;}
.h3_c01040{height:11.733399pt;}
.h4_c01040{height:38.937500pt;}
.h2_c01040{height:108.041667pt;}
.h0_c01040{height:1229.733333pt;}
.h1_c01040{height:1230.000000pt;}
.w2_c01040{width:93.222667pt;}
.w0_c01040{width:780.466667pt;}
.w1_c01040{width:780.666667pt;}
.x0_c01040{left:0.000000pt;}
.xc_c01040{left:18.533333pt;}
.xd_c01040{left:19.466667pt;}
.xa_c01040{left:20.800000pt;}
.x7_c01040{left:22.800000pt;}
.x8_c01040{left:23.733333pt;}
.x6_c01040{left:25.200000pt;}
.x5_c01040{left:26.133333pt;}
.x4_c01040{left:27.200000pt;}
.x2_c01040{left:29.466667pt;}
.x1_c01040{left:30.533333pt;}
.x9_c01040{left:66.400000pt;}
.x3_c01040{left:70.800000pt;}
.xb_c01040{left:71.733333pt;}
.xe_c01040{left:254.666667pt;}
.x10_c01040{left:347.401530pt;}
.xf_c01040{left:582.933333pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_c1c2b5443568033e891448ea.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01041;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01041;src:url('chunks/assets/font_b5b79f1e6c315b3c93ac1d7b.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls3_c01041{letter-spacing:0.000000px;}
.ls2_c01041{letter-spacing:12.720000px;}
.ls0_c01041{letter-spacing:16.200000px;}
.ls1_c01041{letter-spacing:17.472000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01041{word-spacing:-37.716000px;}
.ws0_c01041{word-spacing:-23.136000px;}
.ws2_c01041{word-spacing:-20.244000px;}
.ws4_c01041{word-spacing:0.000000px;}
.ws3_c01041{word-spacing:1.680000px;}
._14_c01041{margin-left:-30.336000px;}
._3e_c01041{margin-left:-18.804000px;}
._36_c01041{margin-left:-14.328000px;}
._10_c01041{margin-left:-11.808000px;}
._11_c01041{margin-left:-10.656000px;}
._2c_c01041{margin-left:-9.408000px;}
._12_c01041{margin-left:-8.064000px;}
._25_c01041{margin-left:-7.008000px;}
._3d_c01041{margin-left:-5.568000px;}
._1f_c01041{margin-left:-3.360000px;}
._15_c01041{margin-left:-2.304000px;}
._19_c01041{margin-left:-1.248000px;}
._0_c01041{width:2.016000px;}
._1_c01041{width:3.264000px;}
._5_c01041{width:4.416000px;}
._6_c01041{width:5.952000px;}
._4_c01041{width:7.584000px;}
._c_c01041{width:9.216000px;}
._16_c01041{width:10.368000px;}
._1d_c01041{width:12.192000px;}
._f_c01041{width:13.440000px;}
._17_c01041{width:15.360000px;}
._2b_c01041{width:16.992000px;}
._21_c01041{width:19.200000px;}
._32_c01041{width:20.256000px;}
._18_c01041{width:22.080000px;}
._8_c01041{width:24.480000px;}
._a_c01041{width:26.400000px;}
._9_c01041{width:27.840000px;}
._2d_c01041{width:29.184000px;}
._3b_c01041{width:30.912000px;}
._b_c01041{width:32.256000px;}
._13_c01041{width:34.176000px;}
._39_c01041{width:35.520000px;}
._1a_c01041{width:37.152000px;}
._7_c01041{width:38.496000px;}
._d_c01041{width:40.704000px;}
._20_c01041{width:42.528000px;}
._2_c01041{width:43.680000px;}
._24_c01041{width:45.696000px;}
._3_c01041{width:47.136000px;}
._31_c01041{width:48.288000px;}
._22_c01041{width:49.440000px;}
._1c_c01041{width:50.496000px;}
._30_c01041{width:51.552000px;}
._e_c01041{width:52.704000px;}
._2f_c01041{width:54.336000px;}
._2e_c01041{width:55.872000px;}
._23_c01041{width:57.984000px;}
._1e_c01041{width:60.672000px;}
._3c_c01041{width:61.920000px;}
._26_c01041{width:63.264000px;}
._27_c01041{width:65.184000px;}
._2a_c01041{width:67.104000px;}
._1b_c01041{width:70.944000px;}
._33_c01041{width:73.056000px;}
._28_c01041{width:75.168000px;}
._29_c01041{width:78.336000px;}
._34_c01041{width:79.680000px;}
._3a_c01041{width:92.256000px;}
._3f_c01041{width:106.092000px;}
._38_c01041{width:170.988000px;}
._40_c01041{width:183.636000px;}
._37_c01041{width:282.288000px;}
._35_c01041{width:331.488000px;}
._41_c01041{width:650.208000px;}
.fc2_c01041{color:transparent;}
.fc1_c01041{color:rgb(128,128,128);}
.fc0_c01041{color:rgb(0,0,0);}
.fs3_c01041{font-size:48.000000px;}
.fs2_c01041{font-size:84.000000px;}
.fs0_c01041{font-size:96.000000px;}
.fs1_c01041{font-size:102.000000px;}
.y0_c01041{bottom:0.000000px;}
.y26_c01041{bottom:3.105000px;}
.y25_c01041{bottom:7.228357px;}
.y24_c01041{bottom:120.180000px;}
.y23_c01041{bottom:151.980000px;}
.y22_c01041{bottom:186.330000px;}
.y21_c01041{bottom:219.780000px;}
.y20_c01041{bottom:254.130000px;}
.y1f_c01041{bottom:288.630000px;}
.y1e_c01041{bottom:321.330000px;}
.y1d_c01041{bottom:355.680000px;}
.y1c_c01041{bottom:389.430000px;}
.y1b_c01041{bottom:423.180000px;}
.y1a_c01041{bottom:457.380000px;}
.y19_c01041{bottom:490.830000px;}
.y18_c01041{bottom:524.880000px;}
.y17_c01041{bottom:558.930000px;}
.y16_c01041{bottom:592.380000px;}
.y15_c01041{bottom:625.830000px;}
.y14_c01041{bottom:659.580000px;}
.y13_c01041{bottom:692.880000px;}
.y12_c01041{bottom:726.330000px;}
.y11_c01041{bottom:759.780000px;}
.y10_c01041{bottom:793.080000px;}
.yf_c01041{bottom:826.830000px;}
.ye_c01041{bottom:860.580000px;}
.yd_c01041{bottom:894.030000px;}
.yc_c01041{bottom:927.180000px;}
.yb_c01041{bottom:960.180000px;}
.ya_c01041{bottom:993.330000px;}
.y9_c01041{bottom:1026.330000px;}
.y8_c01041{bottom:1059.480000px;}
.y7_c01041{bottom:1092.930000px;}
.y6_c01041{bottom:1126.680000px;}
.y5_c01041{bottom:1160.280000px;}
.y4_c01041{bottom:1193.130000px;}
.y3_c01041{bottom:1226.580000px;}
.y2_c01041{bottom:1259.880000px;}
.y1_c01041{bottom:1292.280000px;}
.h3_c01041{height:13.200074px;}
.h4_c01041{height:43.804688px;}
.h2_c01041{height:121.546875px;}
.h0_c01041{height:1382.700000px;}
.h1_c01041{height:1383.000000px;}
.w2_c01041{width:104.875500px;}
.w0_c01041{width:863.175000px;}
.w1_c01041{width:863.250000px;}
.x0_c01041{left:0.000000px;}
.xa_c01041{left:114.300000px;}
.x8_c01041{left:129.300000px;}
.x7_c01041{left:166.050000px;}
.x4_c01041{left:232.500000px;}
.x3_c01041{left:233.550000px;}
.x1_c01041{left:235.200000px;}
.x2_c01041{left:236.850000px;}
.x5_c01041{left:238.350000px;}
.x6_c01041{left:239.400000px;}
.x9_c01041{left:296.250000px;}
.xc_c01041{left:383.401749px;}
.xb_c01041{left:577.200000px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls3_c01041{letter-spacing:0.000000pt;}
.ls2_c01041{letter-spacing:11.306667pt;}
.ls0_c01041{letter-spacing:14.400000pt;}
.ls1_c01041{letter-spacing:15.530667pt;}
.ws1_c01041{word-spacing:-33.525333pt;}
.ws0_c01041{word-spacing:-20.565333pt;}
.ws2_c01041{word-spacing:-17.994667pt;}
.ws4_c01041{word-spacing:0.000000pt;}
.ws3_c01041{word-spacing:1.493333pt;}
._14_c01041{margin-left:-26.965333pt;}
._3e_c01041{margin-left:-16.714667pt;}
._36_c01041{margin-left:-12.736000pt;}
._10_c01041{margin-left:-10.496000pt;}
._11_c01041{margin-left:-9.472000pt;}
._2c_c01041{margin-left:-8.362667pt;}
._12_c01041{margin-left:-7.168000pt;}
._25_c01041{margin-left:-6.229333pt;}
._3d_c01041{margin-left:-4.949333pt;}
._1f_c01041{margin-left:-2.986667pt;}
._15_c01041{margin-left:-2.048000pt;}
._19_c01041{margin-left:-1.109333pt;}
._0_c01041{width:1.792000pt;}
._1_c01041{width:2.901333pt;}
._5_c01041{width:3.925333pt;}
._6_c01041{width:5.290667pt;}
._4_c01041{width:6.741333pt;}
._c_c01041{width:8.192000pt;}
._16_c01041{width:9.216000pt;}
._1d_c01041{width:10.837333pt;}
._f_c01041{width:11.946667pt;}
._17_c01041{width:13.653333pt;}
._2b_c01041{width:15.104000pt;}
._21_c01041{width:17.066667pt;}
._32_c01041{width:18.005333pt;}
._18_c01041{width:19.626667pt;}
._8_c01041{width:21.760000pt;}
._a_c01041{width:23.466667pt;}
._9_c01041{width:24.746667pt;}
._2d_c01041{width:25.941333pt;}
._3b_c01041{width:27.477333pt;}
._b_c01041{width:28.672000pt;}
._13_c01041{width:30.378667pt;}
._39_c01041{width:31.573333pt;}
._1a_c01041{width:33.024000pt;}
._7_c01041{width:34.218667pt;}
._d_c01041{width:36.181333pt;}
._20_c01041{width:37.802667pt;}
._2_c01041{width:38.826667pt;}
._24_c01041{width:40.618667pt;}
._3_c01041{width:41.898667pt;}
._31_c01041{width:42.922667pt;}
._22_c01041{width:43.946667pt;}
._1c_c01041{width:44.885333pt;}
._30_c01041{width:45.824000pt;}
._e_c01041{width:46.848000pt;}
._2f_c01041{width:48.298667pt;}
._2e_c01041{width:49.664000pt;}
._23_c01041{width:51.541333pt;}
._1e_c01041{width:53.930667pt;}
._3c_c01041{width:55.040000pt;}
._26_c01041{width:56.234667pt;}
._27_c01041{width:57.941333pt;}
._2a_c01041{width:59.648000pt;}
._1b_c01041{width:63.061333pt;}
._33_c01041{width:64.938667pt;}
._28_c01041{width:66.816000pt;}
._29_c01041{width:69.632000pt;}
._34_c01041{width:70.826667pt;}
._3a_c01041{width:82.005333pt;}
._3f_c01041{width:94.304000pt;}
._38_c01041{width:151.989333pt;}
._40_c01041{width:163.232000pt;}
._37_c01041{width:250.922667pt;}
._35_c01041{width:294.656000pt;}
._41_c01041{width:577.962667pt;}
.fs3_c01041{font-size:42.666667pt;}
.fs2_c01041{font-size:74.666667pt;}
.fs0_c01041{font-size:85.333333pt;}
.fs1_c01041{font-size:90.666667pt;}
.y0_c01041{bottom:0.000000pt;}
.y26_c01041{bottom:2.760000pt;}
.y25_c01041{bottom:6.425206pt;}
.y24_c01041{bottom:106.826667pt;}
.y23_c01041{bottom:135.093333pt;}
.y22_c01041{bottom:165.626667pt;}
.y21_c01041{bottom:195.360000pt;}
.y20_c01041{bottom:225.893333pt;}
.y1f_c01041{bottom:256.560000pt;}
.y1e_c01041{bottom:285.626667pt;}
.y1d_c01041{bottom:316.160000pt;}
.y1c_c01041{bottom:346.160000pt;}
.y1b_c01041{bottom:376.160000pt;}
.y1a_c01041{bottom:406.560000pt;}
.y19_c01041{bottom:436.293333pt;}
.y18_c01041{bottom:466.560000pt;}
.y17_c01041{bottom:496.826667pt;}
.y16_c01041{bottom:526.560000pt;}
.y15_c01041{bottom:556.293333pt;}
.y14_c01041{bottom:586.293333pt;}
.y13_c01041{bottom:615.893333pt;}
.y12_c01041{bottom:645.626667pt;}
.y11_c01041{bottom:675.360000pt;}
.y10_c01041{bottom:704.960000pt;}
.yf_c01041{bottom:734.960000pt;}
.ye_c01041{bottom:764.960000pt;}
.yd_c01041{bottom:794.693333pt;}
.yc_c01041{bottom:824.160000pt;}
.yb_c01041{bottom:853.493333pt;}
.ya_c01041{bottom:882.960000pt;}
.y9_c01041{bottom:912.293333pt;}
.y8_c01041{bottom:941.760000pt;}
.y7_c01041{bottom:971.493333pt;}
.y6_c01041{bottom:1001.493333pt;}
.y5_c01041{bottom:1031.360000pt;}
.y4_c01041{bottom:1060.560000pt;}
.y3_c01041{bottom:1090.293333pt;}
.y2_c01041{bottom:1119.893333pt;}
.y1_c01041{bottom:1148.693333pt;}
.h3_c01041{height:11.733399pt;}
.h4_c01041{height:38.937500pt;}
.h2_c01041{height:108.041667pt;}
.h0_c01041{height:1229.066667pt;}
.h1_c01041{height:1229.333333pt;}
.w2_c01041{width:93.222667pt;}
.w0_c01041{width:767.266667pt;}
.w1_c01041{width:767.333333pt;}
.x0_c01041{left:0.000000pt;}
.xa_c01041{left:101.600000pt;}
.x8_c01041{left:114.933333pt;}
.x7_c01041{left:147.600000pt;}
.x4_c01041{left:206.666667pt;}
.x3_c01041{left:207.600000pt;}
.x1_c01041{left:209.066667pt;}
.x2_c01041{left:210.533333pt;}
.x5_c01041{left:211.866667pt;}
.x6_c01041{left:212.800000pt;}
.x9_c01041{left:263.333333pt;}
.xc_c01041{left:340.801554pt;}
.xb_c01041{left:513.066667pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_bc17b4c51ea548c3bf10ec37.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01042;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_a54e5c0a39e7ebc77245c488.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_c9ea9dd5bd58658bf9c9c388.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls2_c01042{letter-spacing:0.000000px;}
.ls0_c01042{letter-spacing:0.600000px;}
.ls1_c01042{letter-spacing:6.000000px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01042{word-spacing:-80.037000px;}
.ws1_c01042{word-spacing:-63.504000px;}
.ws0_c01042{word-spacing:-40.152000px;}
.ws4_c01042{word-spacing:-36.960000px;}
.ws3_c01042{word-spacing:-35.784000px;}
.ws5_c01042{word-spacing:0.000000px;}
._1d_c01042{margin-left:-31.968000px;}
._24_c01042{margin-left:-30.528000px;}
._43_c01042{margin-left:-28.608000px;}
._39_c01042{margin-left:-25.920000px;}
._1b_c01042{margin-left:-20.664000px;}
._e_c01042{margin-left:-15.072000px;}
._10_c01042{margin-left:-13.920000px;}
._3d_c01042{margin-left:-9.216000px;}
._40_c01042{margin-left:-8.160000px;}
._29_c01042{margin-left:-6.720000px;}
._27_c01042{margin-left:-5.376000px;}
._18_c01042{margin-left:-3.360000px;}
._c_c01042{margin-left:-2.016000px;}
._5_c01042{width:1.248000px;}
._2_c01042{width:2.688000px;}
._b_c01042{width:4.320000px;}
._1_c01042{width:5.376000px;}
._0_c01042{width:6.624000px;}
._9_c01042{width:7.968000px;}
._8_c01042{width:9.792000px;}
._33_c01042{width:11.040000px;}
._1e_c01042{width:12.192000px;}
._2d_c01042{width:13.920000px;}
._a_c01042{width:15.648000px;}
._2e_c01042{width:17.280000px;}
._13_c01042{width:18.624000px;}
._36_c01042{width:20.064000px;}
._37_c01042{width:21.312000px;}
._22_c01042{width:24.384000px;}
._2f_c01042{width:25.440000px;}
._d_c01042{width:26.880000px;}
._1a_c01042{width:28.224000px;}
._6_c01042{width:29.568000px;}
._4_c01042{width:30.816000px;}
._15_c01042{width:32.352000px;}
._38_c01042{width:33.408000px;}
._16_c01042{width:34.656000px;}
._12_c01042{width:36.384000px;}
._3_c01042{width:37.824000px;}
._20_c01042{width:39.648000px;}
._17_c01042{width:41.664000px;}
._47_c01042{width:42.816000px;}
._1c_c01042{width:43.872000px;}
._7_c01042{width:45.216000px;}
._1f_c01042{width:46.368000px;}
._30_c01042{width:47.904000px;}
._25_c01042{width:49.152000px;}
._3f_c01042{width:50.208000px;}
._3c_c01042{width:52.224000px;}
._42_c01042{width:53.856000px;}
._28_c01042{width:55.584000px;}
._41_c01042{width:58.032000px;}
._3e_c01042{width:60.096000px;}
._35_c01042{width:62.688000px;}
._21_c01042{width:65.376000px;}
._2b_c01042{width:66.432000px;}
._26_c01042{width:67.488000px;}
._19_c01042{width:68.640000px;}
._45_c01042{width:70.656000px;}
._46_c01042{width:72.096000px;}
._2c_c01042{width:77.664000px;}
._2a_c01042{width:95.040000px;}
._44_c01042{width:141.600000px;}
._3a_c01042{width:144.864000px;}
._32_c01042{width:150.816000px;}
._23_c01042{width:158.976000px;}
._34_c01042{width:168.768000px;}
._3b_c01042{width:179.016000px;}
._f_c01042{width:180.864000px;}
._14_c01042{width:187.584000px;}
._31_c01042{width:1480.632000px;}
._11_c01042{width:1603.200000px;}
._48_c01042{width:1799.760000px;}
.fc2_c01042{color:transparent;}
.fc1_c01042{color:rgb(128,128,128);}
.fc0_c01042{color:rgb(0,0,0);}
.fs4_c01042{font-size:48.000000px;}
.fs2_c01042{font-size:84.000000px;}
.fs0_c01042{font-size:96.000000px;}
.fs1_c01042{font-size:102.000000px;}
.fs3_c01042{font-size:111.000000px;}
.y0_c01042{bottom:0.000000px;}
.y26_c01042{bottom:3.105000px;}
.y25_c01042{bottom:7.228363px;}
.y24_c01042{bottom:91.500000px;}
.y23_c01042{bottom:125.250000px;}
.y22_c01042{bottom:160.350000px;}
.y21_c01042{bottom:194.700000px;}
.y20_c01042{bottom:228.600000px;}
.y1f_c01042{bottom:262.200000px;}
.y1e_c01042{bottom:295.350000px;}
.y1d_c01042{bottom:329.700000px;}
.y1c_c01042{bottom:363.600000px;}
.y1b_c01042{bottom:397.200000px;}
.y1a_c01042{bottom:430.950000px;}
.y19_c01042{bottom:464.400000px;}
.y18_c01042{bottom:497.850000px;}
.y17_c01042{bottom:531.000000px;}
.y16_c01042{bottom:564.750000px;}
.y15_c01042{bottom:598.350000px;}
.y14_c01042{bottom:632.100000px;}
.y13_c01042{bottom:666.000000px;}
.y12_c01042{bottom:699.000000px;}
.y11_c01042{bottom:732.150000px;}
.y10_c01042{bottom:765.750000px;}
.yf_c01042{bottom:799.200000px;}
.ye_c01042{bottom:831.000000px;}
.yd_c01042{bottom:865.350000px;}
.yc_c01042{bottom:898.500000px;}
.yb_c01042{bottom:931.800000px;}
.ya_c01042{bottom:964.950000px;}
.y9_c01042{bottom:998.550000px;}
.y8_c01042{bottom:1031.700000px;}
.y7_c01042{bottom:1063.500000px;}
.y6_c01042{bottom:1097.550000px;}
.y5_c01042{bottom:1129.350000px;}
.y4_c01042{bottom:1162.800000px;}
.y3_c01042{bottom:1195.800000px;}
.y2_c01042{bottom:1228.800000px;}
.y1_c01042{bottom:1263.000000px;}
.h2_c01042{height:13.200074px;}
.h3_c01042{height:43.804688px;}
.h1_c01042{height:121.546875px;}
.h0_c01042{height:1363.500000px;}
.w2_c01042{width:104.875500px;}
.w1_c01042{width:864.750000px;}
.w0_c01042{width:865.050000px;}
.x0_c01042{left:0.000000px;}
.x9_c01042{left:28.950000px;}
.x8_c01042{left:31.050000px;}
.x7_c01042{left:33.300000px;}
.x6_c01042{left:34.800000px;}
.x5_c01042{left:36.000000px;}
.x3_c01042{left:37.500000px;}
.x4_c01042{left:38.700000px;}
.x1_c01042{left:42.450000px;}
.x2_c01042{left:86.100000px;}
.xa_c01042{left:384.339249px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls2_c01042{letter-spacing:0.000000pt;}
.ls0_c01042{letter-spacing:0.533333pt;}
.ls1_c01042{letter-spacing:5.333333pt;}
.ws2_c01042{word-spacing:-71.144000pt;}
.ws1_c01042{word-spacing:-56.448000pt;}
.ws0_c01042{word-spacing:-35.690667pt;}
.ws4_c01042{word-spacing:-32.853333pt;}
.ws3_c01042{word-spacing:-31.808000pt;}
.ws5_c01042{word-spacing:0.000000pt;}
._1d_c01042{margin-left:-28.416000pt;}
._24_c01042{margin-left:-27.136000pt;}
._43_c01042{margin-left:-25.429333pt;}
._39_c01042{margin-left:-23.040000pt;}
._1b_c01042{margin-left:-18.368000pt;}
._e_c01042{margin-left:-13.397333pt;}
._10_c01042{margin-left:-12.373333pt;}
._3d_c01042{margin-left:-8.192000pt;}
._40_c01042{margin-left:-7.253333pt;}
._29_c01042{margin-left:-5.973333pt;}
._27_c01042{margin-left:-4.778667pt;}
._18_c01042{margin-left:-2.986667pt;}
._c_c01042{margin-left:-1.792000pt;}
._5_c01042{width:1.109333pt;}
._2_c01042{width:2.389333pt;}
._b_c01042{width:3.840000pt;}
._1_c01042{width:4.778667pt;}
._0_c01042{width:5.888000pt;}
._9_c01042{width:7.082667pt;}
._8_c01042{width:8.704000pt;}
._33_c01042{width:9.813333pt;}
._1e_c01042{width:10.837333pt;}
._2d_c01042{width:12.373333pt;}
._a_c01042{width:13.909333pt;}
._2e_c01042{width:15.360000pt;}
._13_c01042{width:16.554667pt;}
._36_c01042{width:17.834667pt;}
._37_c01042{width:18.944000pt;}
._22_c01042{width:21.674667pt;}
._2f_c01042{width:22.613333pt;}
._d_c01042{width:23.893333pt;}
._1a_c01042{width:25.088000pt;}
._6_c01042{width:26.282667pt;}
._4_c01042{width:27.392000pt;}
._15_c01042{width:28.757333pt;}
._38_c01042{width:29.696000pt;}
._16_c01042{width:30.805333pt;}
._12_c01042{width:32.341333pt;}
._3_c01042{width:33.621333pt;}
._20_c01042{width:35.242667pt;}
._17_c01042{width:37.034667pt;}
._47_c01042{width:38.058667pt;}
._1c_c01042{width:38.997333pt;}
._7_c01042{width:40.192000pt;}
._1f_c01042{width:41.216000pt;}
._30_c01042{width:42.581333pt;}
._25_c01042{width:43.690667pt;}
._3f_c01042{width:44.629333pt;}
._3c_c01042{width:46.421333pt;}
._42_c01042{width:47.872000pt;}
._28_c01042{width:49.408000pt;}
._41_c01042{width:51.584000pt;}
._3e_c01042{width:53.418667pt;}
._35_c01042{width:55.722667pt;}
._21_c01042{width:58.112000pt;}
._2b_c01042{width:59.050667pt;}
._26_c01042{width:59.989333pt;}
._19_c01042{width:61.013333pt;}
._45_c01042{width:62.805333pt;}
._46_c01042{width:64.085333pt;}
._2c_c01042{width:69.034667pt;}
._2a_c01042{width:84.480000pt;}
._44_c01042{width:125.866667pt;}
._3a_c01042{width:128.768000pt;}
._32_c01042{width:134.058667pt;}
._23_c01042{width:141.312000pt;}
._34_c01042{width:150.016000pt;}
._3b_c01042{width:159.125333pt;}
._f_c01042{width:160.768000pt;}
._14_c01042{width:166.741333pt;}
._31_c01042{width:1316.117333pt;}
._11_c01042{width:1425.066667pt;}
._48_c01042{width:1599.786667pt;}
.fs4_c01042{font-size:42.666667pt;}
.fs2_c01042{font-size:74.666667pt;}
.fs0_c01042{font-size:85.333333pt;}
.fs1_c01042{font-size:90.666667pt;}
.fs3_c01042{font-size:98.666667pt;}
.y0_c01042{bottom:0.000000pt;}
.y26_c01042{bottom:2.760000pt;}
.y25_c01042{bottom:6.425212pt;}
.y24_c01042{bottom:81.333333pt;}
.y23_c01042{bottom:111.333333pt;}
.y22_c01042{bottom:142.533333pt;}
.y21_c01042{bottom:173.066667pt;}
.y20_c01042{bottom:203.200000pt;}
.y1f_c01042{bottom:233.066667pt;}
.y1e_c01042{bottom:262.533333pt;}
.y1d_c01042{bottom:293.066667pt;}
.y1c_c01042{bottom:323.200000pt;}
.y1b_c01042{bottom:353.066667pt;}
.y1a_c01042{bottom:383.066667pt;}
.y19_c01042{bottom:412.800000pt;}
.y18_c01042{bottom:442.533333pt;}
.y17_c01042{bottom:472.000000pt;}
.y16_c01042{bottom:502.000000pt;}
.y15_c01042{bottom:531.866667pt;}
.y14_c01042{bottom:561.866667pt;}
.y13_c01042{bottom:592.000000pt;}
.y12_c01042{bottom:621.333333pt;}
.y11_c01042{bottom:650.800000pt;}
.y10_c01042{bottom:680.666667pt;}
.yf_c01042{bottom:710.400000pt;}
.ye_c01042{bottom:738.666667pt;}
.yd_c01042{bottom:769.200000pt;}
.yc_c01042{bottom:798.666667pt;}
.yb_c01042{bottom:828.266667pt;}
.ya_c01042{bottom:857.733333pt;}
.y9_c01042{bottom:887.600000pt;}
.y8_c01042{bottom:917.066667pt;}
.y7_c01042{bottom:945.333333pt;}
.y6_c01042{bottom:975.600000pt;}
.y5_c01042{bottom:1003.866667pt;}
.y4_c01042{bottom:1033.600000pt;}
.y3_c01042{bottom:1062.933333pt;}
.y2_c01042{bottom:1092.266667pt;}
.y1_c01042{bottom:1122.666667pt;}
.h2_c01042{height:11.733399pt;}
.h3_c01042{height:38.937500pt;}
.h1_c01042{height:108.041667pt;}
.h0_c01042{height:1212.000000pt;}
.w2_c01042{width:93.222667pt;}
.w1_c01042{width:768.666667pt;}
.w0_c01042{width:768.933333pt;}
.x0_c01042{left:0.000000pt;}
.x9_c01042{left:25.733333pt;}
.x8_c01042{left:27.600000pt;}
.x7_c01042{left:29.600000pt;}
.x6_c01042{left:30.933333pt;}
.x5_c01042{left:32.000000pt;}
.x3_c01042{left:33.333333pt;}
.x4_c01042{left:34.400000pt;}
.x1_c01042{left:37.733333pt;}
.x2_c01042{left:76.533333pt;}
.xa_c01042{left:341.634888pt;}
}





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

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_a012f60a17243caffd51e48d.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01043;src:url('chunks/assets/font_87bb09c580936c325cedb017.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01043;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01043;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls0_c01043{letter-spacing:0.000000px;}
.ls1_c01043{letter-spacing:3.000000px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01043{word-spacing:-51.000000px;}
.ws2_c01043{word-spacing:-23.244000px;}
.ws1_c01043{word-spacing:-23.136000px;}
.ws3_c01043{word-spacing:0.000000px;}
._39_c01043{margin-left:-48.288000px;}
._35_c01043{margin-left:-39.552000px;}
._3a_c01043{margin-left:-17.064000px;}
._2d_c01043{margin-left:-14.304000px;}
._3b_c01043{margin-left:-11.616000px;}
._2e_c01043{margin-left:-10.560000px;}
._10_c01043{margin-left:-6.720000px;}
._1b_c01043{margin-left:-5.664000px;}
._11_c01043{margin-left:-4.128000px;}
._8_c01043{margin-left:-2.496000px;}
._9_c01043{margin-left:-1.440000px;}
._13_c01043{width:1.056000px;}
._c_c01043{width:2.208000px;}
._b_c01043{width:3.552000px;}
._5_c01043{width:5.568000px;}
._e_c01043{width:6.624000px;}
._25_c01043{width:7.680000px;}
._6_c01043{width:9.216000px;}
._28_c01043{width:10.752000px;}
._4_c01043{width:12.000000px;}
._32_c01043{width:13.056000px;}
._1e_c01043{width:14.112000px;}
._16_c01043{width:15.744000px;}
._27_c01043{width:16.992000px;}
._1_c01043{width:18.336000px;}
._2_c01043{width:20.448000px;}
._22_c01043{width:21.792000px;}
._23_c01043{width:24.576000px;}
._26_c01043{width:25.920000px;}
._3c_c01043{width:27.360000px;}
._1a_c01043{width:28.416000px;}
._d_c01043{width:29.664000px;}
._7_c01043{width:32.064000px;}
._15_c01043{width:34.272000px;}
._0_c01043{width:36.096000px;}
._34_c01043{width:37.152000px;}
._a_c01043{width:38.400000px;}
._36_c01043{width:39.552000px;}
._17_c01043{width:40.800000px;}
._20_c01043{width:42.816000px;}
._18_c01043{width:45.216000px;}
._24_c01043{width:46.848000px;}
._19_c01043{width:48.192000px;}
._f_c01043{width:49.632000px;}
._2b_c01043{width:50.976000px;}
._1c_c01043{width:52.320000px;}
._12_c01043{width:53.664000px;}
._2a_c01043{width:55.872000px;}
._30_c01043{width:57.984000px;}
._37_c01043{width:61.248000px;}
._21_c01043{width:62.304000px;}
._38_c01043{width:64.800000px;}
._3e_c01043{width:66.024000px;}
._33_c01043{width:71.136000px;}
._29_c01043{width:73.536000px;}
._31_c01043{width:76.512000px;}
._14_c01043{width:77.760000px;}
._1d_c01043{width:80.448000px;}
._1f_c01043{width:83.616000px;}
._3d_c01043{width:108.864000px;}
._3f_c01043{width:173.856000px;}
._3_c01043{width:195.840000px;}
._2f_c01043{width:209.184000px;}
._2c_c01043{width:233.664000px;}
.fc2_c01043{color:transparent;}
.fc1_c01043{color:rgb(128,128,128);}
.fc0_c01043{color:rgb(0,0,0);}
.fs3_c01043{font-size:48.000000px;}
.fs1_c01043{font-size:84.000000px;}
.fs0_c01043{font-size:96.000000px;}
.fs2_c01043{font-size:102.000000px;}
.y0_c01043{bottom:0.000000px;}
.y26_c01043{bottom:3.105000px;}
.y25_c01043{bottom:7.228357px;}
.y24_c01043{bottom:101.880000px;}
.y23_c01043{bottom:132.030000px;}
.y22_c01043{bottom:165.330000px;}
.y21_c01043{bottom:199.230000px;}
.y20_c01043{bottom:233.280000px;}
.y1f_c01043{bottom:267.330000px;}
.y1e_c01043{bottom:300.480000px;}
.y1d_c01043{bottom:334.530000px;}
.y1c_c01043{bottom:369.630000px;}
.y1b_c01043{bottom:402.030000px;}
.y1a_c01043{bottom:436.380000px;}
.y19_c01043{bottom:470.430000px;}
.y18_c01043{bottom:504.180000px;}
.y17_c01043{bottom:537.630000px;}
.y16_c01043{bottom:570.780000px;}
.y15_c01043{bottom:604.530000px;}
.y14_c01043{bottom:637.830000px;}
.y13_c01043{bottom:671.730000px;}
.y12_c01043{bottom:704.730000px;}
.y11_c01043{bottom:738.180000px;}
.y10_c01043{bottom:771.930000px;}
.yf_c01043{bottom:805.230000px;}
.ye_c01043{bottom:838.680000px;}
.yd_c01043{bottom:872.430000px;}
.yc_c01043{bottom:905.580000px;}
.yb_c01043{bottom:938.580000px;}
.ya_c01043{bottom:971.730000px;}
.y9_c01043{bottom:1005.180000px;}
.y8_c01043{bottom:1037.880000px;}
.y7_c01043{bottom:1071.930000px;}
.y6_c01043{bottom:1104.630000px;}
.y5_c01043{bottom:1138.680000px;}
.y4_c01043{bottom:1171.530000px;}
.y3_c01043{bottom:1204.830000px;}
.y2_c01043{bottom:1237.680000px;}
.y1_c01043{bottom:1269.780000px;}
.h3_c01043{height:13.200074px;}
.h4_c01043{height:43.804688px;}
.h2_c01043{height:121.546875px;}
.h0_c01043{height:1382.700000px;}
.h1_c01043{height:1383.000000px;}
.w2_c01043{width:104.875500px;}
.w0_c01043{width:863.175000px;}
.w1_c01043{width:863.250000px;}
.x0_c01043{left:0.000000px;}
.x8_c01043{left:116.400000px;}
.xd_c01043{left:203.850000px;}
.x2_c01043{left:239.400000px;}
.x3_c01043{left:240.600000px;}
.x4_c01043{left:242.700000px;}
.x7_c01043{left:244.350000px;}
.x9_c01043{left:246.000000px;}
.xa_c01043{left:247.050000px;}
.xb_c01043{left:248.700000px;}
.xe_c01043{left:250.200000px;}
.xc_c01043{left:251.400000px;}
.x6_c01043{left:292.350000px;}
.x1_c01043{left:294.600000px;}
.x10_c01043{left:383.401749px;}
.x5_c01043{left:387.000000px;}
.xf_c01043{left:800.550000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls0_c01043{letter-spacing:0.000000pt;}
.ls1_c01043{letter-spacing:2.666667pt;}
.ws0_c01043{word-spacing:-45.333333pt;}
.ws2_c01043{word-spacing:-20.661333pt;}
.ws1_c01043{word-spacing:-20.565333pt;}
.ws3_c01043{word-spacing:0.000000pt;}
._39_c01043{margin-left:-42.922667pt;}
._35_c01043{margin-left:-35.157333pt;}
._3a_c01043{margin-left:-15.168000pt;}
._2d_c01043{margin-left:-12.714667pt;}
._3b_c01043{margin-left:-10.325333pt;}
._2e_c01043{margin-left:-9.386667pt;}
._10_c01043{margin-left:-5.973333pt;}
._1b_c01043{margin-left:-5.034667pt;}
._11_c01043{margin-left:-3.669333pt;}
._8_c01043{margin-left:-2.218667pt;}
._9_c01043{margin-left:-1.280000pt;}
._13_c01043{width:0.938667pt;}
._c_c01043{width:1.962667pt;}
._b_c01043{width:3.157333pt;}
._5_c01043{width:4.949333pt;}
._e_c01043{width:5.888000pt;}
._25_c01043{width:6.826667pt;}
._6_c01043{width:8.192000pt;}
._28_c01043{width:9.557333pt;}
._4_c01043{width:10.666667pt;}
._32_c01043{width:11.605333pt;}
._1e_c01043{width:12.544000pt;}
._16_c01043{width:13.994667pt;}
._27_c01043{width:15.104000pt;}
._1_c01043{width:16.298667pt;}
._2_c01043{width:18.176000pt;}
._22_c01043{width:19.370667pt;}
._23_c01043{width:21.845333pt;}
._26_c01043{width:23.040000pt;}
._3c_c01043{width:24.320000pt;}
._1a_c01043{width:25.258667pt;}
._d_c01043{width:26.368000pt;}
._7_c01043{width:28.501333pt;}
._15_c01043{width:30.464000pt;}
._0_c01043{width:32.085333pt;}
._34_c01043{width:33.024000pt;}
._a_c01043{width:34.133333pt;}
._36_c01043{width:35.157333pt;}
._17_c01043{width:36.266667pt;}
._20_c01043{width:38.058667pt;}
._18_c01043{width:40.192000pt;}
._24_c01043{width:41.642667pt;}
._19_c01043{width:42.837333pt;}
._f_c01043{width:44.117333pt;}
._2b_c01043{width:45.312000pt;}
._1c_c01043{width:46.506667pt;}
._12_c01043{width:47.701333pt;}
._2a_c01043{width:49.664000pt;}
._30_c01043{width:51.541333pt;}
._37_c01043{width:54.442667pt;}
._21_c01043{width:55.381333pt;}
._38_c01043{width:57.600000pt;}
._3e_c01043{width:58.688000pt;}
._33_c01043{width:63.232000pt;}
._29_c01043{width:65.365333pt;}
._31_c01043{width:68.010667pt;}
._14_c01043{width:69.120000pt;}
._1d_c01043{width:71.509333pt;}
._1f_c01043{width:74.325333pt;}
._3d_c01043{width:96.768000pt;}
._3f_c01043{width:154.538667pt;}
._3_c01043{width:174.080000pt;}
._2f_c01043{width:185.941333pt;}
._2c_c01043{width:207.701333pt;}
.fs3_c01043{font-size:42.666667pt;}
.fs1_c01043{font-size:74.666667pt;}
.fs0_c01043{font-size:85.333333pt;}
.fs2_c01043{font-size:90.666667pt;}
.y0_c01043{bottom:0.000000pt;}
.y26_c01043{bottom:2.760000pt;}
.y25_c01043{bottom:6.425206pt;}
.y24_c01043{bottom:90.560000pt;}
.y23_c01043{bottom:117.360000pt;}
.y22_c01043{bottom:146.960000pt;}
.y21_c01043{bottom:177.093333pt;}
.y20_c01043{bottom:207.360000pt;}
.y1f_c01043{bottom:237.626667pt;}
.y1e_c01043{bottom:267.093333pt;}
.y1d_c01043{bottom:297.360000pt;}
.y1c_c01043{bottom:328.560000pt;}
.y1b_c01043{bottom:357.360000pt;}
.y1a_c01043{bottom:387.893333pt;}
.y19_c01043{bottom:418.160000pt;}
.y18_c01043{bottom:448.160000pt;}
.y17_c01043{bottom:477.893333pt;}
.y16_c01043{bottom:507.360000pt;}
.y15_c01043{bottom:537.360000pt;}
.y14_c01043{bottom:566.960000pt;}
.y13_c01043{bottom:597.093333pt;}
.y12_c01043{bottom:626.426667pt;}
.y11_c01043{bottom:656.160000pt;}
.y10_c01043{bottom:686.160000pt;}
.yf_c01043{bottom:715.760000pt;}
.ye_c01043{bottom:745.493333pt;}
.yd_c01043{bottom:775.493333pt;}
.yc_c01043{bottom:804.960000pt;}
.yb_c01043{bottom:834.293333pt;}
.ya_c01043{bottom:863.760000pt;}
.y9_c01043{bottom:893.493333pt;}
.y8_c01043{bottom:922.560000pt;}
.y7_c01043{bottom:952.826667pt;}
.y6_c01043{bottom:981.893333pt;}
.y5_c01043{bottom:1012.160000pt;}
.y4_c01043{bottom:1041.360000pt;}
.y3_c01043{bottom:1070.960000pt;}
.y2_c01043{bottom:1100.160000pt;}
.y1_c01043{bottom:1128.693333pt;}
.h3_c01043{height:11.733399pt;}
.h4_c01043{height:38.937500pt;}
.h2_c01043{height:108.041667pt;}
.h0_c01043{height:1229.066667pt;}
.h1_c01043{height:1229.333333pt;}
.w2_c01043{width:93.222667pt;}
.w0_c01043{width:767.266667pt;}
.w1_c01043{width:767.333333pt;}
.x0_c01043{left:0.000000pt;}
.x8_c01043{left:103.466667pt;}
.xd_c01043{left:181.200000pt;}
.x2_c01043{left:212.800000pt;}
.x3_c01043{left:213.866667pt;}
.x4_c01043{left:215.733333pt;}
.x7_c01043{left:217.200000pt;}
.x9_c01043{left:218.666667pt;}
.xa_c01043{left:219.600000pt;}
.xb_c01043{left:221.066667pt;}
.xe_c01043{left:222.400000pt;}
.xc_c01043{left:223.466667pt;}
.x6_c01043{left:259.866667pt;}
.x1_c01043{left:261.866667pt;}
.x10_c01043{left:340.801554pt;}
.x5_c01043{left:344.000000pt;}
.xf_c01043{left:711.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_c01044 {
    display:none;
  }
  .loading-indicator_c01044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01044 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01044 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01044" -> "#page-container .classname_c01044")
 */
.pf_c01044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01044 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01044 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01044 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01044 {overflow:visible;}
  }
}
.c_c01044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01044 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01044:after { /* webkit #35443 */
  content: '';
}
.t_c01044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01044 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01044 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01044 { /* info for Javascript */
  display:none;
}
.l_c01044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_63d22348a6789e0229af4708.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01044;src:url('chunks/assets/font_8140a2a211ff60f27f49017c.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01044;src:url('chunks/assets/font_a82c12a43252cdd77d52c8e2.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;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_c01044;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;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_c01044;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls2_c01044{letter-spacing:-21.000000px;}
.ls1_c01044{letter-spacing:0.000000px;}
.ls0_c01044{letter-spacing:12.000000px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01044{word-spacing:-63.504000px;}
.ws1_c01044{word-spacing:0.000000px;}
._40_c01044{margin-left:-143.220000px;}
._3f_c01044{margin-left:-63.420000px;}
._3b_c01044{margin-left:-43.488000px;}
._41_c01044{margin-left:-37.920000px;}
._44_c01044{margin-left:-28.128000px;}
._48_c01044{margin-left:-21.216000px;}
._31_c01044{margin-left:-18.144000px;}
._2b_c01044{margin-left:-15.756000px;}
._17_c01044{margin-left:-13.728000px;}
._39_c01044{margin-left:-12.636000px;}
._3c_c01044{margin-left:-11.328000px;}
._18_c01044{margin-left:-9.984000px;}
._21_c01044{margin-left:-8.544000px;}
._2c_c01044{margin-left:-7.008000px;}
._20_c01044{margin-left:-5.604000px;}
._5_c01044{margin-left:-4.320000px;}
._1a_c01044{margin-left:-3.168000px;}
._10_c01044{margin-left:-1.728000px;}
._a_c01044{width:1.824000px;}
._1_c01044{width:3.168000px;}
._2_c01044{width:4.416000px;}
._6_c01044{width:5.952000px;}
._11_c01044{width:7.680000px;}
._29_c01044{width:9.312000px;}
._c_c01044{width:10.464000px;}
._42_c01044{width:11.520000px;}
._0_c01044{width:12.672000px;}
._26_c01044{width:14.496000px;}
._4_c01044{width:16.320000px;}
._1f_c01044{width:17.568000px;}
._12_c01044{width:19.200000px;}
._28_c01044{width:20.844000px;}
._27_c01044{width:21.888000px;}
._1e_c01044{width:24.768000px;}
._38_c01044{width:25.824000px;}
._d_c01044{width:26.880000px;}
._1b_c01044{width:28.320000px;}
._13_c01044{width:29.952000px;}
._f_c01044{width:31.488000px;}
._e_c01044{width:32.832000px;}
._1d_c01044{width:34.656000px;}
._1c_c01044{width:36.768000px;}
._3d_c01044{width:38.112000px;}
._14_c01044{width:39.168000px;}
._19_c01044{width:40.704000px;}
._8_c01044{width:41.856000px;}
._9_c01044{width:42.912000px;}
._7_c01044{width:44.832000px;}
._b_c01044{width:46.848000px;}
._25_c01044{width:47.904000px;}
._3_c01044{width:49.728000px;}
._16_c01044{width:51.264000px;}
._22_c01044{width:52.548000px;}
._23_c01044{width:54.528000px;}
._33_c01044{width:55.968000px;}
._2a_c01044{width:58.848000px;}
._34_c01044{width:59.904000px;}
._24_c01044{width:62.400000px;}
._15_c01044{width:64.416000px;}
._35_c01044{width:65.568000px;}
._36_c01044{width:66.624000px;}
._30_c01044{width:68.832000px;}
._32_c01044{width:73.920000px;}
._3a_c01044{width:76.260000px;}
._3e_c01044{width:81.876000px;}
._47_c01044{width:88.548000px;}
._45_c01044{width:142.500000px;}
._2f_c01044{width:148.992000px;}
._49_c01044{width:164.640000px;}
._37_c01044{width:188.448000px;}
._4a_c01044{width:189.984000px;}
._46_c01044{width:301.920000px;}
._2d_c01044{width:474.624000px;}
._4c_c01044{width:724.032000px;}
._43_c01044{width:791.340000px;}
._4b_c01044{width:888.960000px;}
._2e_c01044{width:1214.112000px;}
.fc2_c01044{color:transparent;}
.fc1_c01044{color:rgb(128,128,128);}
.fc0_c01044{color:rgb(0,0,0);}
.fs4_c01044{font-size:48.000000px;}
.fs1_c01044{font-size:84.000000px;}
.fs0_c01044{font-size:96.000000px;}
.fs3_c01044{font-size:102.000000px;}
.fs2_c01044{font-size:420.000000px;}
.y0_c01044{bottom:0.000000px;}
.y26_c01044{bottom:3.105000px;}
.y25_c01044{bottom:7.228369px;}
.y24_c01044{bottom:97.470000px;}
.y23_c01044{bottom:132.870000px;}
.y22_c01044{bottom:167.970000px;}
.y21_c01044{bottom:200.820000px;}
.y20_c01044{bottom:235.920000px;}
.y1f_c01044{bottom:269.370000px;}
.y1e_c01044{bottom:303.420000px;}
.y1d_c01044{bottom:336.870000px;}
.y1c_c01044{bottom:370.620000px;}
.y1b_c01044{bottom:403.920000px;}
.y1a_c01044{bottom:437.970000px;}
.y19_c01044{bottom:471.720000px;}
.y18_c01044{bottom:505.170000px;}
.y17_c01044{bottom:538.320000px;}
.y16_c01044{bottom:572.370000px;}
.y15_c01044{bottom:605.820000px;}
.y14_c01044{bottom:638.520000px;}
.y13_c01044{bottom:672.570000px;}
.y12_c01044{bottom:706.020000px;}
.y11_c01044{bottom:737.070000px;}
.y10_c01044{bottom:772.170000px;}
.yf_c01044{bottom:805.620000px;}
.ye_c01044{bottom:837.720000px;}
.yd_c01044{bottom:871.020000px;}
.yc_c01044{bottom:907.470000px;}
.yb_c01044{bottom:939.270000px;}
.ya_c01044{bottom:972.570000px;}
.y9_c01044{bottom:1005.420000px;}
.y8_c01044{bottom:1038.720000px;}
.y7_c01044{bottom:1071.870000px;}
.y6_c01044{bottom:1103.970000px;}
.y5_c01044{bottom:1137.270000px;}
.y4_c01044{bottom:1170.420000px;}
.y3_c01044{bottom:1203.570000px;}
.y2_c01044{bottom:1235.220000px;}
.y1_c01044{bottom:1269.720000px;}
.h4_c01044{height:13.200073px;}
.h5_c01044{height:43.804688px;}
.h2_c01044{height:121.546875px;}
.h3_c01044{height:412.207031px;}
.h0_c01044{height:1383.450000px;}
.h1_c01044{height:1383.750000px;}
.w2_c01044{width:104.875500px;}
.w0_c01044{width:878.025000px;}
.w1_c01044{width:878.250000px;}
.x0_c01044{left:0.000000px;}
.xf_c01044{left:30.450000px;}
.xe_c01044{left:32.100000px;}
.xd_c01044{left:34.350000px;}
.xc_c01044{left:35.400000px;}
.xa_c01044{left:37.050000px;}
.xb_c01044{left:38.100000px;}
.x10_c01044{left:39.150000px;}
.x9_c01044{left:40.200000px;}
.x7_c01044{left:41.850000px;}
.x8_c01044{left:42.900000px;}
.x6_c01044{left:44.550000px;}
.x5_c01044{left:46.200000px;}
.x4_c01044{left:48.300000px;}
.x3_c01044{left:49.500000px;}
.x2_c01044{left:51.600000px;}
.x1_c01044{left:52.650000px;}
.x11_c01044{left:390.826721px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls2_c01044{letter-spacing:-18.666667pt;}
.ls1_c01044{letter-spacing:0.000000pt;}
.ls0_c01044{letter-spacing:10.666667pt;}
.ws0_c01044{word-spacing:-56.448000pt;}
.ws1_c01044{word-spacing:0.000000pt;}
._40_c01044{margin-left:-127.306667pt;}
._3f_c01044{margin-left:-56.373333pt;}
._3b_c01044{margin-left:-38.656000pt;}
._41_c01044{margin-left:-33.706667pt;}
._44_c01044{margin-left:-25.002667pt;}
._48_c01044{margin-left:-18.858667pt;}
._31_c01044{margin-left:-16.128000pt;}
._2b_c01044{margin-left:-14.005333pt;}
._17_c01044{margin-left:-12.202667pt;}
._39_c01044{margin-left:-11.232000pt;}
._3c_c01044{margin-left:-10.069333pt;}
._18_c01044{margin-left:-8.874667pt;}
._21_c01044{margin-left:-7.594667pt;}
._2c_c01044{margin-left:-6.229333pt;}
._20_c01044{margin-left:-4.981333pt;}
._5_c01044{margin-left:-3.840000pt;}
._1a_c01044{margin-left:-2.816000pt;}
._10_c01044{margin-left:-1.536000pt;}
._a_c01044{width:1.621333pt;}
._1_c01044{width:2.816000pt;}
._2_c01044{width:3.925333pt;}
._6_c01044{width:5.290667pt;}
._11_c01044{width:6.826667pt;}
._29_c01044{width:8.277333pt;}
._c_c01044{width:9.301333pt;}
._42_c01044{width:10.240000pt;}
._0_c01044{width:11.264000pt;}
._26_c01044{width:12.885333pt;}
._4_c01044{width:14.506667pt;}
._1f_c01044{width:15.616000pt;}
._12_c01044{width:17.066667pt;}
._28_c01044{width:18.528000pt;}
._27_c01044{width:19.456000pt;}
._1e_c01044{width:22.016000pt;}
._38_c01044{width:22.954667pt;}
._d_c01044{width:23.893333pt;}
._1b_c01044{width:25.173333pt;}
._13_c01044{width:26.624000pt;}
._f_c01044{width:27.989333pt;}
._e_c01044{width:29.184000pt;}
._1d_c01044{width:30.805333pt;}
._1c_c01044{width:32.682667pt;}
._3d_c01044{width:33.877333pt;}
._14_c01044{width:34.816000pt;}
._19_c01044{width:36.181333pt;}
._8_c01044{width:37.205333pt;}
._9_c01044{width:38.144000pt;}
._7_c01044{width:39.850667pt;}
._b_c01044{width:41.642667pt;}
._25_c01044{width:42.581333pt;}
._3_c01044{width:44.202667pt;}
._16_c01044{width:45.568000pt;}
._22_c01044{width:46.709333pt;}
._23_c01044{width:48.469333pt;}
._33_c01044{width:49.749333pt;}
._2a_c01044{width:52.309333pt;}
._34_c01044{width:53.248000pt;}
._24_c01044{width:55.466667pt;}
._15_c01044{width:57.258667pt;}
._35_c01044{width:58.282667pt;}
._36_c01044{width:59.221333pt;}
._30_c01044{width:61.184000pt;}
._32_c01044{width:65.706667pt;}
._3a_c01044{width:67.786667pt;}
._3e_c01044{width:72.778667pt;}
._47_c01044{width:78.709333pt;}
._45_c01044{width:126.666667pt;}
._2f_c01044{width:132.437333pt;}
._49_c01044{width:146.346667pt;}
._37_c01044{width:167.509333pt;}
._4a_c01044{width:168.874667pt;}
._46_c01044{width:268.373333pt;}
._2d_c01044{width:421.888000pt;}
._4c_c01044{width:643.584000pt;}
._43_c01044{width:703.413333pt;}
._4b_c01044{width:790.186667pt;}
._2e_c01044{width:1079.210667pt;}
.fs4_c01044{font-size:42.666667pt;}
.fs1_c01044{font-size:74.666667pt;}
.fs0_c01044{font-size:85.333333pt;}
.fs3_c01044{font-size:90.666667pt;}
.fs2_c01044{font-size:373.333333pt;}
.y0_c01044{bottom:0.000000pt;}
.y26_c01044{bottom:2.760000pt;}
.y25_c01044{bottom:6.425217pt;}
.y24_c01044{bottom:86.640000pt;}
.y23_c01044{bottom:118.106667pt;}
.y22_c01044{bottom:149.306667pt;}
.y21_c01044{bottom:178.506667pt;}
.y20_c01044{bottom:209.706667pt;}
.y1f_c01044{bottom:239.440000pt;}
.y1e_c01044{bottom:269.706667pt;}
.y1d_c01044{bottom:299.440000pt;}
.y1c_c01044{bottom:329.440000pt;}
.y1b_c01044{bottom:359.040000pt;}
.y1a_c01044{bottom:389.306667pt;}
.y19_c01044{bottom:419.306667pt;}
.y18_c01044{bottom:449.040000pt;}
.y17_c01044{bottom:478.506667pt;}
.y16_c01044{bottom:508.773333pt;}
.y15_c01044{bottom:538.506667pt;}
.y14_c01044{bottom:567.573333pt;}
.y13_c01044{bottom:597.840000pt;}
.y12_c01044{bottom:627.573333pt;}
.y11_c01044{bottom:655.173333pt;}
.y10_c01044{bottom:686.373333pt;}
.yf_c01044{bottom:716.106667pt;}
.ye_c01044{bottom:744.640000pt;}
.yd_c01044{bottom:774.240000pt;}
.yc_c01044{bottom:806.640000pt;}
.yb_c01044{bottom:834.906667pt;}
.ya_c01044{bottom:864.506667pt;}
.y9_c01044{bottom:893.706667pt;}
.y8_c01044{bottom:923.306667pt;}
.y7_c01044{bottom:952.773333pt;}
.y6_c01044{bottom:981.306667pt;}
.y5_c01044{bottom:1010.906667pt;}
.y4_c01044{bottom:1040.373333pt;}
.y3_c01044{bottom:1069.840000pt;}
.y2_c01044{bottom:1097.973333pt;}
.y1_c01044{bottom:1128.640000pt;}
.h4_c01044{height:11.733399pt;}
.h5_c01044{height:38.937500pt;}
.h2_c01044{height:108.041667pt;}
.h3_c01044{height:366.406250pt;}
.h0_c01044{height:1229.733333pt;}
.h1_c01044{height:1230.000000pt;}
.w2_c01044{width:93.222667pt;}
.w0_c01044{width:780.466667pt;}
.w1_c01044{width:780.666667pt;}
.x0_c01044{left:0.000000pt;}
.xf_c01044{left:27.066667pt;}
.xe_c01044{left:28.533333pt;}
.xd_c01044{left:30.533333pt;}
.xc_c01044{left:31.466667pt;}
.xa_c01044{left:32.933333pt;}
.xb_c01044{left:33.866667pt;}
.x10_c01044{left:34.800000pt;}
.x9_c01044{left:35.733333pt;}
.x7_c01044{left:37.200000pt;}
.x8_c01044{left:38.133333pt;}
.x6_c01044{left:39.600000pt;}
.x5_c01044{left:41.066667pt;}
.x4_c01044{left:42.933333pt;}
.x3_c01044{left:44.000000pt;}
.x2_c01044{left:45.866667pt;}
.x1_c01044{left:46.800000pt;}
.x11_c01044{left:347.401530pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_5f58108c0e84e3e68175b6bd.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01045;src:url('chunks/assets/font_1c8aecc6dff7bf487bc0bf9a.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01045;src:url('chunks/assets/font_9f8e5d16a76d73e948f326e8.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01045;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls1_c01045{letter-spacing:0.000000px;}
.ls0_c01045{letter-spacing:4.356000px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01045{word-spacing:-63.504000px;}
.ws0_c01045{word-spacing:-42.924000px;}
.ws2_c01045{word-spacing:-35.532000px;}
.ws3_c01045{word-spacing:-23.136000px;}
.ws4_c01045{word-spacing:0.000000px;}
._22_c01045{margin-left:-25.536000px;}
._23_c01045{margin-left:-14.496000px;}
._2c_c01045{margin-left:-13.152000px;}
._27_c01045{margin-left:-10.656000px;}
._15_c01045{margin-left:-8.640000px;}
._2e_c01045{margin-left:-7.200000px;}
._9_c01045{margin-left:-4.896000px;}
._a_c01045{margin-left:-3.168000px;}
._c_c01045{margin-left:-2.016000px;}
._3_c01045{width:1.440000px;}
._7_c01045{width:3.264000px;}
._1_c01045{width:4.320000px;}
._2_c01045{width:6.240000px;}
._4_c01045{width:7.488000px;}
._0_c01045{width:8.736000px;}
._5_c01045{width:10.080000px;}
._13_c01045{width:12.096000px;}
._1b_c01045{width:13.104000px;}
._11_c01045{width:14.592000px;}
._1a_c01045{width:15.990000px;}
._12_c01045{width:17.472000px;}
._3a_c01045{width:18.714000px;}
._26_c01045{width:19.776000px;}
._1e_c01045{width:21.216000px;}
._2f_c01045{width:24.480000px;}
._1d_c01045{width:25.632000px;}
._b_c01045{width:27.168000px;}
._20_c01045{width:28.704000px;}
._d_c01045{width:30.144000px;}
._10_c01045{width:32.160000px;}
._1c_c01045{width:34.128000px;}
._8_c01045{width:36.288000px;}
._24_c01045{width:38.592000px;}
._f_c01045{width:40.608000px;}
._30_c01045{width:41.712000px;}
._35_c01045{width:42.816000px;}
._2b_c01045{width:44.352000px;}
._28_c01045{width:45.402000px;}
._18_c01045{width:46.944000px;}
._39_c01045{width:49.728000px;}
._e_c01045{width:50.880000px;}
._1f_c01045{width:53.040000px;}
._36_c01045{width:54.438000px;}
._21_c01045{width:56.394000px;}
._19_c01045{width:57.600000px;}
._2d_c01045{width:58.704000px;}
._2a_c01045{width:64.608000px;}
._25_c01045{width:67.872000px;}
._29_c01045{width:69.222000px;}
._38_c01045{width:70.890000px;}
._14_c01045{width:73.056000px;}
._37_c01045{width:75.936000px;}
._31_c01045{width:129.792000px;}
._34_c01045{width:194.208000px;}
._33_c01045{width:196.896000px;}
._6_c01045{width:203.328000px;}
._17_c01045{width:219.168000px;}
._16_c01045{width:245.664000px;}
._32_c01045{width:382.968000px;}
.fc2_c01045{color:transparent;}
.fc1_c01045{color:rgb(128,128,128);}
.fc0_c01045{color:rgb(0,0,0);}
.fs3_c01045{font-size:48.000000px;}
.fs2_c01045{font-size:78.000000px;}
.fs1_c01045{font-size:84.000000px;}
.fs0_c01045{font-size:96.000000px;}
.y0_c01045{bottom:0.000000px;}
.y26_c01045{bottom:3.105000px;}
.y25_c01045{bottom:7.228357px;}
.y24_c01045{bottom:101.880000px;}
.y23_c01045{bottom:132.630000px;}
.y22_c01045{bottom:166.830000px;}
.y21_c01045{bottom:200.130000px;}
.y20_c01045{bottom:233.880000px;}
.y1f_c01045{bottom:268.380000px;}
.y1e_c01045{bottom:301.830000px;}
.y1d_c01045{bottom:335.430000px;}
.y1c_c01045{bottom:369.180000px;}
.y1b_c01045{bottom:403.680000px;}
.y1a_c01045{bottom:436.830000px;}
.y19_c01045{bottom:470.880000px;}
.y18_c01045{bottom:504.180000px;}
.y17_c01045{bottom:537.930000px;}
.y16_c01045{bottom:571.830000px;}
.y15_c01045{bottom:604.830000px;}
.y14_c01045{bottom:638.580000px;}
.y13_c01045{bottom:672.030000px;}
.y12_c01045{bottom:705.330000px;}
.y11_c01045{bottom:738.780000px;}
.y10_c01045{bottom:772.230000px;}
.yf_c01045{bottom:805.680000px;}
.ye_c01045{bottom:838.380000px;}
.yd_c01045{bottom:871.830000px;}
.yc_c01045{bottom:905.130000px;}
.yb_c01045{bottom:938.280000px;}
.ya_c01045{bottom:971.730000px;}
.y9_c01045{bottom:1004.730000px;}
.y8_c01045{bottom:1037.130000px;}
.y7_c01045{bottom:1070.580000px;}
.y6_c01045{bottom:1103.730000px;}
.y5_c01045{bottom:1137.780000px;}
.y4_c01045{bottom:1171.230000px;}
.y3_c01045{bottom:1203.930000px;}
.y2_c01045{bottom:1236.630000px;}
.y1_c01045{bottom:1269.330000px;}
.h3_c01045{height:13.200074px;}
.h4_c01045{height:43.804688px;}
.h2_c01045{height:121.546875px;}
.h0_c01045{height:1382.700000px;}
.h1_c01045{height:1383.000000px;}
.w2_c01045{width:104.875500px;}
.w0_c01045{width:863.175000px;}
.w1_c01045{width:863.250000px;}
.x0_c01045{left:0.000000px;}
.x9_c01045{left:241.200000px;}
.x1_c01045{left:243.300000px;}
.x4_c01045{left:244.350000px;}
.x2_c01045{left:245.400000px;}
.x5_c01045{left:247.050000px;}
.x6_c01045{left:248.100000px;}
.x8_c01045{left:249.750000px;}
.xa_c01045{left:250.800000px;}
.x7_c01045{left:297.300000px;}
.x3_c01045{left:303.300000px;}
.xc_c01045{left:383.401749px;}
.xb_c01045{left:783.750000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls1_c01045{letter-spacing:0.000000pt;}
.ls0_c01045{letter-spacing:3.872000pt;}
.ws1_c01045{word-spacing:-56.448000pt;}
.ws0_c01045{word-spacing:-38.154667pt;}
.ws2_c01045{word-spacing:-31.584000pt;}
.ws3_c01045{word-spacing:-20.565333pt;}
.ws4_c01045{word-spacing:0.000000pt;}
._22_c01045{margin-left:-22.698667pt;}
._23_c01045{margin-left:-12.885333pt;}
._2c_c01045{margin-left:-11.690667pt;}
._27_c01045{margin-left:-9.472000pt;}
._15_c01045{margin-left:-7.680000pt;}
._2e_c01045{margin-left:-6.400000pt;}
._9_c01045{margin-left:-4.352000pt;}
._a_c01045{margin-left:-2.816000pt;}
._c_c01045{margin-left:-1.792000pt;}
._3_c01045{width:1.280000pt;}
._7_c01045{width:2.901333pt;}
._1_c01045{width:3.840000pt;}
._2_c01045{width:5.546667pt;}
._4_c01045{width:6.656000pt;}
._0_c01045{width:7.765333pt;}
._5_c01045{width:8.960000pt;}
._13_c01045{width:10.752000pt;}
._1b_c01045{width:11.648000pt;}
._11_c01045{width:12.970667pt;}
._1a_c01045{width:14.213333pt;}
._12_c01045{width:15.530667pt;}
._3a_c01045{width:16.634667pt;}
._26_c01045{width:17.578667pt;}
._1e_c01045{width:18.858667pt;}
._2f_c01045{width:21.760000pt;}
._1d_c01045{width:22.784000pt;}
._b_c01045{width:24.149333pt;}
._20_c01045{width:25.514667pt;}
._d_c01045{width:26.794667pt;}
._10_c01045{width:28.586667pt;}
._1c_c01045{width:30.336000pt;}
._8_c01045{width:32.256000pt;}
._24_c01045{width:34.304000pt;}
._f_c01045{width:36.096000pt;}
._30_c01045{width:37.077333pt;}
._35_c01045{width:38.058667pt;}
._2b_c01045{width:39.424000pt;}
._28_c01045{width:40.357333pt;}
._18_c01045{width:41.728000pt;}
._39_c01045{width:44.202667pt;}
._e_c01045{width:45.226667pt;}
._1f_c01045{width:47.146667pt;}
._36_c01045{width:48.389333pt;}
._21_c01045{width:50.128000pt;}
._19_c01045{width:51.200000pt;}
._2d_c01045{width:52.181333pt;}
._2a_c01045{width:57.429333pt;}
._25_c01045{width:60.330667pt;}
._29_c01045{width:61.530667pt;}
._38_c01045{width:63.013333pt;}
._14_c01045{width:64.938667pt;}
._37_c01045{width:67.498667pt;}
._31_c01045{width:115.370667pt;}
._34_c01045{width:172.629333pt;}
._33_c01045{width:175.018667pt;}
._6_c01045{width:180.736000pt;}
._17_c01045{width:194.816000pt;}
._16_c01045{width:218.368000pt;}
._32_c01045{width:340.416000pt;}
.fs3_c01045{font-size:42.666667pt;}
.fs2_c01045{font-size:69.333333pt;}
.fs1_c01045{font-size:74.666667pt;}
.fs0_c01045{font-size:85.333333pt;}
.y0_c01045{bottom:0.000000pt;}
.y26_c01045{bottom:2.760000pt;}
.y25_c01045{bottom:6.425206pt;}
.y24_c01045{bottom:90.560000pt;}
.y23_c01045{bottom:117.893333pt;}
.y22_c01045{bottom:148.293333pt;}
.y21_c01045{bottom:177.893333pt;}
.y20_c01045{bottom:207.893333pt;}
.y1f_c01045{bottom:238.560000pt;}
.y1e_c01045{bottom:268.293333pt;}
.y1d_c01045{bottom:298.160000pt;}
.y1c_c01045{bottom:328.160000pt;}
.y1b_c01045{bottom:358.826667pt;}
.y1a_c01045{bottom:388.293333pt;}
.y19_c01045{bottom:418.560000pt;}
.y18_c01045{bottom:448.160000pt;}
.y17_c01045{bottom:478.160000pt;}
.y16_c01045{bottom:508.293333pt;}
.y15_c01045{bottom:537.626667pt;}
.y14_c01045{bottom:567.626667pt;}
.y13_c01045{bottom:597.360000pt;}
.y12_c01045{bottom:626.960000pt;}
.y11_c01045{bottom:656.693333pt;}
.y10_c01045{bottom:686.426667pt;}
.yf_c01045{bottom:716.160000pt;}
.ye_c01045{bottom:745.226667pt;}
.yd_c01045{bottom:774.960000pt;}
.yc_c01045{bottom:804.560000pt;}
.yb_c01045{bottom:834.026667pt;}
.ya_c01045{bottom:863.760000pt;}
.y9_c01045{bottom:893.093333pt;}
.y8_c01045{bottom:921.893333pt;}
.y7_c01045{bottom:951.626667pt;}
.y6_c01045{bottom:981.093333pt;}
.y5_c01045{bottom:1011.360000pt;}
.y4_c01045{bottom:1041.093333pt;}
.y3_c01045{bottom:1070.160000pt;}
.y2_c01045{bottom:1099.226667pt;}
.y1_c01045{bottom:1128.293333pt;}
.h3_c01045{height:11.733399pt;}
.h4_c01045{height:38.937500pt;}
.h2_c01045{height:108.041667pt;}
.h0_c01045{height:1229.066667pt;}
.h1_c01045{height:1229.333333pt;}
.w2_c01045{width:93.222667pt;}
.w0_c01045{width:767.266667pt;}
.w1_c01045{width:767.333333pt;}
.x0_c01045{left:0.000000pt;}
.x9_c01045{left:214.400000pt;}
.x1_c01045{left:216.266667pt;}
.x4_c01045{left:217.200000pt;}
.x2_c01045{left:218.133333pt;}
.x5_c01045{left:219.600000pt;}
.x6_c01045{left:220.533333pt;}
.x8_c01045{left:222.000000pt;}
.xa_c01045{left:222.933333pt;}
.x7_c01045{left:264.266667pt;}
.x3_c01045{left:269.600000pt;}
.xc_c01045{left:340.801554pt;}
.xb_c01045{left:696.666667pt;}
}





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

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_fd2788cba051eeaba2c58483.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01046;src:url('chunks/assets/font_1967f2445c1984581b4825e4.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01046;src:url('chunks/assets/font_83bfe71148415a95236e11f6.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01046;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls3_c01046{letter-spacing:-3.000000px;}
.ls2_c01046{letter-spacing:0.000000px;}
.ls1_c01046{letter-spacing:9.588000px;}
.ls0_c01046{letter-spacing:87.864000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:0.000000px;}
._23_c01046{margin-left:-50.304000px;}
._36_c01046{margin-left:-25.056000px;}
._3e_c01046{margin-left:-24.024000px;}
._1_c01046{margin-left:-18.432000px;}
._32_c01046{margin-left:-16.416000px;}
._31_c01046{margin-left:-13.056000px;}
._2e_c01046{margin-left:-9.696000px;}
._33_c01046{margin-left:-8.448000px;}
._2c_c01046{margin-left:-6.528000px;}
._2f_c01046{margin-left:-4.128000px;}
._7_c01046{margin-left:-2.784000px;}
._a_c01046{margin-left:-1.248000px;}
._2_c01046{width:2.016000px;}
._0_c01046{width:3.840000px;}
._b_c01046{width:5.184000px;}
._4_c01046{width:6.528000px;}
._c_c01046{width:7.680000px;}
._20_c01046{width:8.928000px;}
._24_c01046{width:10.368000px;}
._16_c01046{width:11.520000px;}
._14_c01046{width:12.960000px;}
._6_c01046{width:14.016000px;}
._34_c01046{width:15.168000px;}
._1b_c01046{width:16.224000px;}
._17_c01046{width:17.664000px;}
._d_c01046{width:19.296000px;}
._f_c01046{width:20.448000px;}
._18_c01046{width:21.888000px;}
._21_c01046{width:24.192000px;}
._19_c01046{width:25.440000px;}
._13_c01046{width:26.592000px;}
._1d_c01046{width:27.648000px;}
._15_c01046{width:29.184000px;}
._1a_c01046{width:31.104000px;}
._1e_c01046{width:32.448000px;}
._9_c01046{width:33.504000px;}
._1c_c01046{width:34.944000px;}
._5_c01046{width:36.288000px;}
._e_c01046{width:38.304000px;}
._3_c01046{width:39.744000px;}
._3b_c01046{width:40.992000px;}
._2d_c01046{width:42.624000px;}
._2a_c01046{width:43.680000px;}
._8_c01046{width:45.024000px;}
._25_c01046{width:47.040000px;}
._29_c01046{width:48.672000px;}
._27_c01046{width:50.016000px;}
._30_c01046{width:52.128000px;}
._38_c01046{width:53.184000px;}
._26_c01046{width:54.240000px;}
._3d_c01046{width:56.160000px;}
._37_c01046{width:57.696000px;}
._11_c01046{width:60.672000px;}
._10_c01046{width:62.592000px;}
._12_c01046{width:66.528000px;}
._22_c01046{width:77.760000px;}
._28_c01046{width:85.536000px;}
._1f_c01046{width:111.648000px;}
._35_c01046{width:122.880000px;}
._2b_c01046{width:124.800000px;}
._39_c01046{width:247.968000px;}
._3a_c01046{width:369.120000px;}
._3c_c01046{width:610.464000px;}
._3f_c01046{width:831.168000px;}
._40_c01046{width:2098.752000px;}
.fc2_c01046{color:transparent;}
.fc1_c01046{color:rgb(128,128,128);}
.fc0_c01046{color:rgb(0,0,0);}
.fs4_c01046{font-size:48.000000px;}
.fs1_c01046{font-size:84.000000px;}
.fs3_c01046{font-size:87.000000px;}
.fs0_c01046{font-size:96.000000px;}
.fs2_c01046{font-size:120.000000px;}
.y0_c01046{bottom:0.000000px;}
.y27_c01046{bottom:3.105000px;}
.y26_c01046{bottom:7.228355px;}
.y25_c01046{bottom:93.735000px;}
.y24_c01046{bottom:111.585000px;}
.y23_c01046{bottom:123.735000px;}
.y22_c01046{bottom:159.885000px;}
.y21_c01046{bottom:192.735000px;}
.y20_c01046{bottom:226.335000px;}
.y1f_c01046{bottom:259.785000px;}
.y1e_c01046{bottom:294.435000px;}
.y1d_c01046{bottom:327.585000px;}
.y1c_c01046{bottom:360.735000px;}
.y1b_c01046{bottom:394.785000px;}
.y1a_c01046{bottom:430.335000px;}
.y19_c01046{bottom:462.735000px;}
.y18_c01046{bottom:495.435000px;}
.y17_c01046{bottom:529.485000px;}
.y16_c01046{bottom:562.485000px;}
.y15_c01046{bottom:596.235000px;}
.y14_c01046{bottom:629.085000px;}
.y13_c01046{bottom:663.135000px;}
.y12_c01046{bottom:695.835000px;}
.y11_c01046{bottom:729.585000px;}
.y10_c01046{bottom:762.735000px;}
.yf_c01046{bottom:796.185000px;}
.ye_c01046{bottom:828.585000px;}
.yd_c01046{bottom:861.285000px;}
.yc_c01046{bottom:894.735000px;}
.yb_c01046{bottom:927.435000px;}
.ya_c01046{bottom:961.485000px;}
.y9_c01046{bottom:994.185000px;}
.y8_c01046{bottom:1027.635000px;}
.y7_c01046{bottom:1060.635000px;}
.y6_c01046{bottom:1093.035000px;}
.y5_c01046{bottom:1126.485000px;}
.y4_c01046{bottom:1158.585000px;}
.y3_c01046{bottom:1191.585000px;}
.y2_c01046{bottom:1224.735000px;}
.y1_c01046{bottom:1258.485000px;}
.h5_c01046{height:13.200074px;}
.h6_c01046{height:43.804688px;}
.h4_c01046{height:101.825684px;}
.h2_c01046{height:121.546875px;}
.h3_c01046{height:128.040000px;}
.h1_c01046{height:1353.000000px;}
.h0_c01046{height:1353.225000px;}
.w2_c01046{width:104.875500px;}
.w0_c01046{width:858.600000px;}
.w1_c01046{width:858.750000px;}
.x0_c01046{left:0.000000px;}
.xb_c01046{left:26.250000px;}
.xa_c01046{left:27.900000px;}
.x9_c01046{left:29.400000px;}
.x8_c01046{left:30.600000px;}
.x6_c01046{left:32.100000px;}
.x5_c01046{left:33.150000px;}
.x4_c01046{left:34.800000px;}
.x3_c01046{left:36.000000px;}
.x2_c01046{left:37.500000px;}
.x1_c01046{left:39.150000px;}
.x7_c01046{left:82.350000px;}
.xd_c01046{left:381.114258px;}
.xc_c01046{left:555.450000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls3_c01046{letter-spacing:-2.666667pt;}
.ls2_c01046{letter-spacing:0.000000pt;}
.ls1_c01046{letter-spacing:8.522667pt;}
.ls0_c01046{letter-spacing:78.101333pt;}
.ws0_c01046{word-spacing:0.000000pt;}
._23_c01046{margin-left:-44.714667pt;}
._36_c01046{margin-left:-22.272000pt;}
._3e_c01046{margin-left:-21.354667pt;}
._1_c01046{margin-left:-16.384000pt;}
._32_c01046{margin-left:-14.592000pt;}
._31_c01046{margin-left:-11.605333pt;}
._2e_c01046{margin-left:-8.618667pt;}
._33_c01046{margin-left:-7.509333pt;}
._2c_c01046{margin-left:-5.802667pt;}
._2f_c01046{margin-left:-3.669333pt;}
._7_c01046{margin-left:-2.474667pt;}
._a_c01046{margin-left:-1.109333pt;}
._2_c01046{width:1.792000pt;}
._0_c01046{width:3.413333pt;}
._b_c01046{width:4.608000pt;}
._4_c01046{width:5.802667pt;}
._c_c01046{width:6.826667pt;}
._20_c01046{width:7.936000pt;}
._24_c01046{width:9.216000pt;}
._16_c01046{width:10.240000pt;}
._14_c01046{width:11.520000pt;}
._6_c01046{width:12.458667pt;}
._34_c01046{width:13.482667pt;}
._1b_c01046{width:14.421333pt;}
._17_c01046{width:15.701333pt;}
._d_c01046{width:17.152000pt;}
._f_c01046{width:18.176000pt;}
._18_c01046{width:19.456000pt;}
._21_c01046{width:21.504000pt;}
._19_c01046{width:22.613333pt;}
._13_c01046{width:23.637333pt;}
._1d_c01046{width:24.576000pt;}
._15_c01046{width:25.941333pt;}
._1a_c01046{width:27.648000pt;}
._1e_c01046{width:28.842667pt;}
._9_c01046{width:29.781333pt;}
._1c_c01046{width:31.061333pt;}
._5_c01046{width:32.256000pt;}
._e_c01046{width:34.048000pt;}
._3_c01046{width:35.328000pt;}
._3b_c01046{width:36.437333pt;}
._2d_c01046{width:37.888000pt;}
._2a_c01046{width:38.826667pt;}
._8_c01046{width:40.021333pt;}
._25_c01046{width:41.813333pt;}
._29_c01046{width:43.264000pt;}
._27_c01046{width:44.458667pt;}
._30_c01046{width:46.336000pt;}
._38_c01046{width:47.274667pt;}
._26_c01046{width:48.213333pt;}
._3d_c01046{width:49.920000pt;}
._37_c01046{width:51.285333pt;}
._11_c01046{width:53.930667pt;}
._10_c01046{width:55.637333pt;}
._12_c01046{width:59.136000pt;}
._22_c01046{width:69.120000pt;}
._28_c01046{width:76.032000pt;}
._1f_c01046{width:99.242667pt;}
._35_c01046{width:109.226667pt;}
._2b_c01046{width:110.933333pt;}
._39_c01046{width:220.416000pt;}
._3a_c01046{width:328.106667pt;}
._3c_c01046{width:542.634667pt;}
._3f_c01046{width:738.816000pt;}
._40_c01046{width:1865.557333pt;}
.fs4_c01046{font-size:42.666667pt;}
.fs1_c01046{font-size:74.666667pt;}
.fs3_c01046{font-size:77.333333pt;}
.fs0_c01046{font-size:85.333333pt;}
.fs2_c01046{font-size:106.666667pt;}
.y0_c01046{bottom:0.000000pt;}
.y27_c01046{bottom:2.760000pt;}
.y26_c01046{bottom:6.425204pt;}
.y25_c01046{bottom:83.320000pt;}
.y24_c01046{bottom:99.186667pt;}
.y23_c01046{bottom:109.986667pt;}
.y22_c01046{bottom:142.120000pt;}
.y21_c01046{bottom:171.320000pt;}
.y20_c01046{bottom:201.186667pt;}
.y1f_c01046{bottom:230.920000pt;}
.y1e_c01046{bottom:261.720000pt;}
.y1d_c01046{bottom:291.186667pt;}
.y1c_c01046{bottom:320.653333pt;}
.y1b_c01046{bottom:350.920000pt;}
.y1a_c01046{bottom:382.520000pt;}
.y19_c01046{bottom:411.320000pt;}
.y18_c01046{bottom:440.386667pt;}
.y17_c01046{bottom:470.653333pt;}
.y16_c01046{bottom:499.986667pt;}
.y15_c01046{bottom:529.986667pt;}
.y14_c01046{bottom:559.186667pt;}
.y13_c01046{bottom:589.453333pt;}
.y12_c01046{bottom:618.520000pt;}
.y11_c01046{bottom:648.520000pt;}
.y10_c01046{bottom:677.986667pt;}
.yf_c01046{bottom:707.720000pt;}
.ye_c01046{bottom:736.520000pt;}
.yd_c01046{bottom:765.586667pt;}
.yc_c01046{bottom:795.320000pt;}
.yb_c01046{bottom:824.386667pt;}
.ya_c01046{bottom:854.653333pt;}
.y9_c01046{bottom:883.720000pt;}
.y8_c01046{bottom:913.453333pt;}
.y7_c01046{bottom:942.786667pt;}
.y6_c01046{bottom:971.586667pt;}
.y5_c01046{bottom:1001.320000pt;}
.y4_c01046{bottom:1029.853333pt;}
.y3_c01046{bottom:1059.186667pt;}
.y2_c01046{bottom:1088.653333pt;}
.y1_c01046{bottom:1118.653333pt;}
.h5_c01046{height:11.733399pt;}
.h6_c01046{height:38.937500pt;}
.h4_c01046{height:90.511719pt;}
.h2_c01046{height:108.041667pt;}
.h3_c01046{height:113.813333pt;}
.h1_c01046{height:1202.666667pt;}
.h0_c01046{height:1202.866667pt;}
.w2_c01046{width:93.222667pt;}
.w0_c01046{width:763.200000pt;}
.w1_c01046{width:763.333333pt;}
.x0_c01046{left:0.000000pt;}
.xb_c01046{left:23.333333pt;}
.xa_c01046{left:24.800000pt;}
.x9_c01046{left:26.133333pt;}
.x8_c01046{left:27.200000pt;}
.x6_c01046{left:28.533333pt;}
.x5_c01046{left:29.466667pt;}
.x4_c01046{left:30.933333pt;}
.x3_c01046{left:32.000000pt;}
.x2_c01046{left:33.333333pt;}
.x1_c01046{left:34.800000pt;}
.x7_c01046{left:73.200000pt;}
.xd_c01046{left:338.768229pt;}
.xc_c01046{left:493.733333pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_27664af450081af742bb4178.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01047;src:url('chunks/assets/font_a530ec9303f8499eeac88b5d.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01047;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01047;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls1_c01047{letter-spacing:0.000000px;}
.ls0_c01047{letter-spacing:5.400000px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01047{word-spacing:-63.504000px;}
.ws1_c01047{word-spacing:-41.448000px;}
.ws2_c01047{word-spacing:-23.136000px;}
.ws3_c01047{word-spacing:0.000000px;}
._20_c01047{margin-left:-26.208000px;}
._39_c01047{margin-left:-24.576000px;}
._c_c01047{margin-left:-22.944000px;}
._24_c01047{margin-left:-18.144000px;}
._23_c01047{margin-left:-15.168000px;}
._22_c01047{margin-left:-12.192000px;}
._14_c01047{margin-left:-10.752000px;}
._3c_c01047{margin-left:-6.624000px;}
._1a_c01047{margin-left:-5.184000px;}
._21_c01047{margin-left:-3.480000px;}
._0_c01047{margin-left:-2.400000px;}
._1_c01047{margin-left:-1.344000px;}
._3a_c01047{width:1.008000px;}
._4_c01047{width:2.016000px;}
._8_c01047{width:3.552000px;}
._6_c01047{width:4.896000px;}
._d_c01047{width:6.240000px;}
._9_c01047{width:7.776000px;}
._28_c01047{width:8.928000px;}
._12_c01047{width:10.272000px;}
._32_c01047{width:11.424000px;}
._18_c01047{width:12.672000px;}
._16_c01047{width:14.688000px;}
._1e_c01047{width:16.536000px;}
._2f_c01047{width:18.744000px;}
._1d_c01047{width:20.544000px;}
._17_c01047{width:21.792000px;}
._34_c01047{width:24.192000px;}
._5_c01047{width:25.824000px;}
._7_c01047{width:27.744000px;}
._1b_c01047{width:29.256000px;}
._35_c01047{width:30.528000px;}
._15_c01047{width:31.680000px;}
._19_c01047{width:33.312000px;}
._30_c01047{width:34.656000px;}
._33_c01047{width:36.000000px;}
._2e_c01047{width:37.248000px;}
._1f_c01047{width:38.304000px;}
._29_c01047{width:39.744000px;}
._a_c01047{width:41.184000px;}
._2a_c01047{width:42.816000px;}
._3_c01047{width:43.872000px;}
._e_c01047{width:45.024000px;}
._27_c01047{width:46.560000px;}
._37_c01047{width:47.688000px;}
._2_c01047{width:49.632000px;}
._25_c01047{width:51.072000px;}
._2c_c01047{width:52.416000px;}
._11_c01047{width:54.144000px;}
._10_c01047{width:55.200000px;}
._36_c01047{width:56.736000px;}
._13_c01047{width:57.792000px;}
._26_c01047{width:59.904000px;}
._f_c01047{width:62.016000px;}
._b_c01047{width:65.664000px;}
._31_c01047{width:69.120000px;}
._38_c01047{width:75.312000px;}
._2d_c01047{width:85.824000px;}
._2b_c01047{width:125.376000px;}
._3b_c01047{width:171.132000px;}
._1c_c01047{width:494.880000px;}
.fc2_c01047{color:transparent;}
.fc1_c01047{color:rgb(128,128,128);}
.fc0_c01047{color:rgb(0,0,0);}
.fs3_c01047{font-size:48.000000px;}
.fs1_c01047{font-size:84.000000px;}
.fs0_c01047{font-size:96.000000px;}
.fs2_c01047{font-size:102.000000px;}
.y0_c01047{bottom:0.000000px;}
.y26_c01047{bottom:3.105000px;}
.y25_c01047{bottom:7.228355px;}
.y24_c01047{bottom:104.835000px;}
.y23_c01047{bottom:136.635000px;}
.y22_c01047{bottom:170.085000px;}
.y21_c01047{bottom:205.185000px;}
.y20_c01047{bottom:237.285000px;}
.y1f_c01047{bottom:271.935000px;}
.y1e_c01047{bottom:305.685000px;}
.y1d_c01047{bottom:339.735000px;}
.y1c_c01047{bottom:373.485000px;}
.y1b_c01047{bottom:407.685000px;}
.y1a_c01047{bottom:440.385000px;}
.y19_c01047{bottom:475.185000px;}
.y18_c01047{bottom:508.485000px;}
.y17_c01047{bottom:542.385000px;}
.y16_c01047{bottom:575.985000px;}
.y15_c01047{bottom:609.135000px;}
.y14_c01047{bottom:642.585000px;}
.y13_c01047{bottom:676.335000px;}
.y12_c01047{bottom:709.785000px;}
.y11_c01047{bottom:743.085000px;}
.y10_c01047{bottom:775.785000px;}
.yf_c01047{bottom:809.535000px;}
.ye_c01047{bottom:842.985000px;}
.yd_c01047{bottom:876.135000px;}
.yc_c01047{bottom:909.885000px;}
.yb_c01047{bottom:942.585000px;}
.ya_c01047{bottom:975.735000px;}
.y9_c01047{bottom:1008.435000px;}
.y8_c01047{bottom:1041.885000px;}
.y7_c01047{bottom:1074.885000px;}
.y6_c01047{bottom:1108.635000px;}
.y5_c01047{bottom:1141.785000px;}
.y4_c01047{bottom:1174.485000px;}
.y3_c01047{bottom:1207.935000px;}
.y2_c01047{bottom:1240.935000px;}
.y1_c01047{bottom:1273.935000px;}
.h3_c01047{height:13.200074px;}
.h4_c01047{height:43.804688px;}
.h2_c01047{height:121.546875px;}
.h1_c01047{height:1366.500000px;}
.h0_c01047{height:1366.725000px;}
.w2_c01047{width:104.875500px;}
.w0_c01047{width:852.675000px;}
.w1_c01047{width:852.750000px;}
.x0_c01047{left:0.000000px;}
.x7_c01047{left:148.200000px;}
.x9_c01047{left:220.650000px;}
.x1_c01047{left:225.900000px;}
.x2_c01047{left:227.100000px;}
.x3_c01047{left:228.750000px;}
.x4_c01047{left:229.800000px;}
.x5_c01047{left:231.900000px;}
.x8_c01047{left:276.750000px;}
.x6_c01047{left:279.450000px;}
.xa_c01047{left:373.350000px;}
.xc_c01047{left:378.151749px;}
.xb_c01047{left:748.200000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls1_c01047{letter-spacing:0.000000pt;}
.ls0_c01047{letter-spacing:4.800000pt;}
.ws0_c01047{word-spacing:-56.448000pt;}
.ws1_c01047{word-spacing:-36.842667pt;}
.ws2_c01047{word-spacing:-20.565333pt;}
.ws3_c01047{word-spacing:0.000000pt;}
._20_c01047{margin-left:-23.296000pt;}
._39_c01047{margin-left:-21.845333pt;}
._c_c01047{margin-left:-20.394667pt;}
._24_c01047{margin-left:-16.128000pt;}
._23_c01047{margin-left:-13.482667pt;}
._22_c01047{margin-left:-10.837333pt;}
._14_c01047{margin-left:-9.557333pt;}
._3c_c01047{margin-left:-5.888000pt;}
._1a_c01047{margin-left:-4.608000pt;}
._21_c01047{margin-left:-3.093333pt;}
._0_c01047{margin-left:-2.133333pt;}
._1_c01047{margin-left:-1.194667pt;}
._3a_c01047{width:0.896000pt;}
._4_c01047{width:1.792000pt;}
._8_c01047{width:3.157333pt;}
._6_c01047{width:4.352000pt;}
._d_c01047{width:5.546667pt;}
._9_c01047{width:6.912000pt;}
._28_c01047{width:7.936000pt;}
._12_c01047{width:9.130667pt;}
._32_c01047{width:10.154667pt;}
._18_c01047{width:11.264000pt;}
._16_c01047{width:13.056000pt;}
._1e_c01047{width:14.698667pt;}
._2f_c01047{width:16.661333pt;}
._1d_c01047{width:18.261333pt;}
._17_c01047{width:19.370667pt;}
._34_c01047{width:21.504000pt;}
._5_c01047{width:22.954667pt;}
._7_c01047{width:24.661333pt;}
._1b_c01047{width:26.005333pt;}
._35_c01047{width:27.136000pt;}
._15_c01047{width:28.160000pt;}
._19_c01047{width:29.610667pt;}
._30_c01047{width:30.805333pt;}
._33_c01047{width:32.000000pt;}
._2e_c01047{width:33.109333pt;}
._1f_c01047{width:34.048000pt;}
._29_c01047{width:35.328000pt;}
._a_c01047{width:36.608000pt;}
._2a_c01047{width:38.058667pt;}
._3_c01047{width:38.997333pt;}
._e_c01047{width:40.021333pt;}
._27_c01047{width:41.386667pt;}
._37_c01047{width:42.389333pt;}
._2_c01047{width:44.117333pt;}
._25_c01047{width:45.397333pt;}
._2c_c01047{width:46.592000pt;}
._11_c01047{width:48.128000pt;}
._10_c01047{width:49.066667pt;}
._36_c01047{width:50.432000pt;}
._13_c01047{width:51.370667pt;}
._26_c01047{width:53.248000pt;}
._f_c01047{width:55.125333pt;}
._b_c01047{width:58.368000pt;}
._31_c01047{width:61.440000pt;}
._38_c01047{width:66.944000pt;}
._2d_c01047{width:76.288000pt;}
._2b_c01047{width:111.445333pt;}
._3b_c01047{width:152.117333pt;}
._1c_c01047{width:439.893333pt;}
.fs3_c01047{font-size:42.666667pt;}
.fs1_c01047{font-size:74.666667pt;}
.fs0_c01047{font-size:85.333333pt;}
.fs2_c01047{font-size:90.666667pt;}
.y0_c01047{bottom:0.000000pt;}
.y26_c01047{bottom:2.760000pt;}
.y25_c01047{bottom:6.425204pt;}
.y24_c01047{bottom:93.186667pt;}
.y23_c01047{bottom:121.453333pt;}
.y22_c01047{bottom:151.186667pt;}
.y21_c01047{bottom:182.386667pt;}
.y20_c01047{bottom:210.920000pt;}
.y1f_c01047{bottom:241.720000pt;}
.y1e_c01047{bottom:271.720000pt;}
.y1d_c01047{bottom:301.986667pt;}
.y1c_c01047{bottom:331.986667pt;}
.y1b_c01047{bottom:362.386667pt;}
.y1a_c01047{bottom:391.453333pt;}
.y19_c01047{bottom:422.386667pt;}
.y18_c01047{bottom:451.986667pt;}
.y17_c01047{bottom:482.120000pt;}
.y16_c01047{bottom:511.986667pt;}
.y15_c01047{bottom:541.453333pt;}
.y14_c01047{bottom:571.186667pt;}
.y13_c01047{bottom:601.186667pt;}
.y12_c01047{bottom:630.920000pt;}
.y11_c01047{bottom:660.520000pt;}
.y10_c01047{bottom:689.586667pt;}
.yf_c01047{bottom:719.586667pt;}
.ye_c01047{bottom:749.320000pt;}
.yd_c01047{bottom:778.786667pt;}
.yc_c01047{bottom:808.786667pt;}
.yb_c01047{bottom:837.853333pt;}
.ya_c01047{bottom:867.320000pt;}
.y9_c01047{bottom:896.386667pt;}
.y8_c01047{bottom:926.120000pt;}
.y7_c01047{bottom:955.453333pt;}
.y6_c01047{bottom:985.453333pt;}
.y5_c01047{bottom:1014.920000pt;}
.y4_c01047{bottom:1043.986667pt;}
.y3_c01047{bottom:1073.720000pt;}
.y2_c01047{bottom:1103.053333pt;}
.y1_c01047{bottom:1132.386667pt;}
.h3_c01047{height:11.733399pt;}
.h4_c01047{height:38.937500pt;}
.h2_c01047{height:108.041667pt;}
.h1_c01047{height:1214.666667pt;}
.h0_c01047{height:1214.866667pt;}
.w2_c01047{width:93.222667pt;}
.w0_c01047{width:757.933333pt;}
.w1_c01047{width:758.000000pt;}
.x0_c01047{left:0.000000pt;}
.x7_c01047{left:131.733333pt;}
.x9_c01047{left:196.133333pt;}
.x1_c01047{left:200.800000pt;}
.x2_c01047{left:201.866667pt;}
.x3_c01047{left:203.333333pt;}
.x4_c01047{left:204.266667pt;}
.x5_c01047{left:206.133333pt;}
.x8_c01047{left:246.000000pt;}
.x6_c01047{left:248.400000pt;}
.xa_c01047{left:331.866667pt;}
.xc_c01047{left:336.134888pt;}
.xb_c01047{left:665.066667pt;}
}





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

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_a1d35e3fae8dc8335a9a2ac2.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01048;src:url('chunks/assets/font_abee8e40eb2d38ad227e3912.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01048;src:url('chunks/assets/font_4c76caf55d16ccc81c74be34.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;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_c01048;src:url('chunks/assets/font_7a6318ff01fcee2b77e381e5.woff2')format("woff");}.ff5_c01048{font-family:ff5_c01048;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01048;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01048{font-family:ff6_c01048;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.v1_c01048{vertical-align:19.800000px;}
.ls1_c01048{letter-spacing:-3.000000px;}
.ls0_c01048{letter-spacing:0.000000px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:-63.504000px;}
.ws1_c01048{word-spacing:-51.000000px;}
.ws5_c01048{word-spacing:-39.312000px;}
.ws6_c01048{word-spacing:-23.136000px;}
.ws2_c01048{word-spacing:-20.967000px;}
.ws3_c01048{word-spacing:-15.000000px;}
.ws4_c01048{word-spacing:-7.230000px;}
.ws7_c01048{word-spacing:0.000000px;}
._2b_c01048{margin-left:-30.288000px;}
._33_c01048{margin-left:-28.704000px;}
._3a_c01048{margin-left:-26.274000px;}
._38_c01048{margin-left:-25.272000px;}
._3b_c01048{margin-left:-21.000000px;}
._2e_c01048{margin-left:-18.240000px;}
._2c_c01048{margin-left:-15.936000px;}
._39_c01048{margin-left:-13.671000px;}
._2d_c01048{margin-left:-12.384000px;}
._27_c01048{margin-left:-10.368000px;}
._1e_c01048{margin-left:-8.391000px;}
._1d_c01048{margin-left:-6.681000px;}
._36_c01048{margin-left:-5.472000px;}
._15_c01048{margin-left:-4.416000px;}
._25_c01048{margin-left:-2.976000px;}
._3_c01048{margin-left:-1.824000px;}
._b_c01048{width:1.248000px;}
._9_c01048{width:3.072000px;}
._5_c01048{width:4.416000px;}
._7_c01048{width:6.144000px;}
._6_c01048{width:7.968000px;}
._14_c01048{width:9.024000px;}
._23_c01048{width:10.176000px;}
._1_c01048{width:11.232000px;}
._0_c01048{width:12.384000px;}
._10_c01048{width:13.728000px;}
._e_c01048{width:15.744000px;}
._f_c01048{width:17.088000px;}
._d_c01048{width:18.528000px;}
._18_c01048{width:19.776000px;}
._22_c01048{width:21.456000px;}
._37_c01048{width:22.560000px;}
._21_c01048{width:24.864000px;}
._2a_c01048{width:26.112000px;}
._19_c01048{width:27.264000px;}
._28_c01048{width:28.416000px;}
._29_c01048{width:30.624000px;}
._1c_c01048{width:32.016000px;}
._16_c01048{width:33.408000px;}
._20_c01048{width:34.464000px;}
._a_c01048{width:36.288000px;}
._1b_c01048{width:37.440000px;}
._13_c01048{width:38.976000px;}
._8_c01048{width:40.512000px;}
._1a_c01048{width:42.624000px;}
._31_c01048{width:44.448000px;}
._1f_c01048{width:45.792000px;}
._24_c01048{width:47.328000px;}
._26_c01048{width:49.248000px;}
._2f_c01048{width:50.496000px;}
._2_c01048{width:51.744000px;}
._32_c01048{width:53.088000px;}
._c_c01048{width:54.240000px;}
._17_c01048{width:56.064000px;}
._4_c01048{width:57.792000px;}
._11_c01048{width:59.424000px;}
._12_c01048{width:62.400000px;}
._30_c01048{width:64.320000px;}
._34_c01048{width:73.056000px;}
._35_c01048{width:103.488000px;}
._3c_c01048{width:704.532000px;}
.fc2_c01048{color:transparent;}
.fc1_c01048{color:rgb(128,128,128);}
.fc0_c01048{color:rgb(0,0,0);}
.fs7_c01048{font-size:24.000000px;}
.fs6_c01048{font-size:30.000000px;}
.fs8_c01048{font-size:48.000000px;}
.fs5_c01048{font-size:60.000000px;}
.fs1_c01048{font-size:75.000000px;}
.fs2_c01048{font-size:84.000000px;}
.fs4_c01048{font-size:87.000000px;}
.fs0_c01048{font-size:96.000000px;}
.fs3_c01048{font-size:102.000000px;}
.y0_c01048{bottom:0.000000px;}
.y1e_c01048{bottom:3.105000px;}
.y1d_c01048{bottom:7.228369px;}
.y1c_c01048{bottom:59.370000px;}
.y1b_c01048{bottom:120.870000px;}
.y1a_c01048{bottom:147.420000px;}
.y19_c01048{bottom:258.420000px;}
.y18_c01048{bottom:334.470000px;}
.y17_c01048{bottom:465.120000px;}
.y16_c01048{bottom:592.320000px;}
.y15_c01048{bottom:629.670000px;}
.y14_c01048{bottom:665.520000px;}
.y13_c01048{bottom:701.670000px;}
.y12_c01048{bottom:734.670000px;}
.y11_c01048{bottom:767.820000px;}
.y10_c01048{bottom:801.570000px;}
.yf_c01048{bottom:833.970000px;}
.ye_c01048{bottom:867.270000px;}
.yd_c01048{bottom:901.020000px;}
.yc_c01048{bottom:935.370000px;}
.yb_c01048{bottom:968.520000px;}
.ya_c01048{bottom:1001.670000px;}
.y9_c01048{bottom:1035.420000px;}
.y8_c01048{bottom:1068.420000px;}
.y7_c01048{bottom:1100.820000px;}
.y6_c01048{bottom:1133.970000px;}
.y5_c01048{bottom:1166.970000px;}
.y4_c01048{bottom:1200.420000px;}
.y3_c01048{bottom:1233.570000px;}
.y2_c01048{bottom:1266.870000px;}
.y1_c01048{bottom:1300.770000px;}
.h8_c01048{height:13.200073px;}
.h7_c01048{height:25.042969px;}
.h9_c01048{height:43.804688px;}
.h5_c01048{height:62.880000px;}
.h3_c01048{height:101.825684px;}
.h4_c01048{height:110.151855px;}
.h2_c01048{height:121.546875px;}
.h6_c01048{height:141.346875px;}
.h0_c01048{height:1383.450000px;}
.h1_c01048{height:1383.750000px;}
.w2_c01048{width:104.875500px;}
.w0_c01048{width:878.025000px;}
.w1_c01048{width:878.250000px;}
.x0_c01048{left:0.000000px;}
.x3_c01048{left:19.650000px;}
.x6_c01048{left:26.700000px;}
.x5_c01048{left:27.750000px;}
.x4_c01048{left:28.800000px;}
.x2_c01048{left:30.450000px;}
.x1_c01048{left:32.100000px;}
.x7_c01048{left:54.300000px;}
.xc_c01048{left:295.050000px;}
.xe_c01048{left:390.826721px;}
.xa_c01048{left:394.950000px;}
.xb_c01048{left:412.200000px;}
.x9_c01048{left:460.050000px;}
.x8_c01048{left:531.000000px;}
.xd_c01048{left:684.750000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.v1_c01048{vertical-align:17.600000pt;}
.ls1_c01048{letter-spacing:-2.666667pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws0_c01048{word-spacing:-56.448000pt;}
.ws1_c01048{word-spacing:-45.333333pt;}
.ws5_c01048{word-spacing:-34.944000pt;}
.ws6_c01048{word-spacing:-20.565333pt;}
.ws2_c01048{word-spacing:-18.637333pt;}
.ws3_c01048{word-spacing:-13.333333pt;}
.ws4_c01048{word-spacing:-6.426667pt;}
.ws7_c01048{word-spacing:0.000000pt;}
._2b_c01048{margin-left:-26.922667pt;}
._33_c01048{margin-left:-25.514667pt;}
._3a_c01048{margin-left:-23.354667pt;}
._38_c01048{margin-left:-22.464000pt;}
._3b_c01048{margin-left:-18.666667pt;}
._2e_c01048{margin-left:-16.213333pt;}
._2c_c01048{margin-left:-14.165333pt;}
._39_c01048{margin-left:-12.152000pt;}
._2d_c01048{margin-left:-11.008000pt;}
._27_c01048{margin-left:-9.216000pt;}
._1e_c01048{margin-left:-7.458667pt;}
._1d_c01048{margin-left:-5.938667pt;}
._36_c01048{margin-left:-4.864000pt;}
._15_c01048{margin-left:-3.925333pt;}
._25_c01048{margin-left:-2.645333pt;}
._3_c01048{margin-left:-1.621333pt;}
._b_c01048{width:1.109333pt;}
._9_c01048{width:2.730667pt;}
._5_c01048{width:3.925333pt;}
._7_c01048{width:5.461333pt;}
._6_c01048{width:7.082667pt;}
._14_c01048{width:8.021333pt;}
._23_c01048{width:9.045333pt;}
._1_c01048{width:9.984000pt;}
._0_c01048{width:11.008000pt;}
._10_c01048{width:12.202667pt;}
._e_c01048{width:13.994667pt;}
._f_c01048{width:15.189333pt;}
._d_c01048{width:16.469333pt;}
._18_c01048{width:17.578667pt;}
._22_c01048{width:19.072000pt;}
._37_c01048{width:20.053333pt;}
._21_c01048{width:22.101333pt;}
._2a_c01048{width:23.210667pt;}
._19_c01048{width:24.234667pt;}
._28_c01048{width:25.258667pt;}
._29_c01048{width:27.221333pt;}
._1c_c01048{width:28.458667pt;}
._16_c01048{width:29.696000pt;}
._20_c01048{width:30.634667pt;}
._a_c01048{width:32.256000pt;}
._1b_c01048{width:33.280000pt;}
._13_c01048{width:34.645333pt;}
._8_c01048{width:36.010667pt;}
._1a_c01048{width:37.888000pt;}
._31_c01048{width:39.509333pt;}
._1f_c01048{width:40.704000pt;}
._24_c01048{width:42.069333pt;}
._26_c01048{width:43.776000pt;}
._2f_c01048{width:44.885333pt;}
._2_c01048{width:45.994667pt;}
._32_c01048{width:47.189333pt;}
._c_c01048{width:48.213333pt;}
._17_c01048{width:49.834667pt;}
._4_c01048{width:51.370667pt;}
._11_c01048{width:52.821333pt;}
._12_c01048{width:55.466667pt;}
._30_c01048{width:57.173333pt;}
._34_c01048{width:64.938667pt;}
._35_c01048{width:91.989333pt;}
._3c_c01048{width:626.250667pt;}
.fs7_c01048{font-size:21.333333pt;}
.fs6_c01048{font-size:26.666667pt;}
.fs8_c01048{font-size:42.666667pt;}
.fs5_c01048{font-size:53.333333pt;}
.fs1_c01048{font-size:66.666667pt;}
.fs2_c01048{font-size:74.666667pt;}
.fs4_c01048{font-size:77.333333pt;}
.fs0_c01048{font-size:85.333333pt;}
.fs3_c01048{font-size:90.666667pt;}
.y0_c01048{bottom:0.000000pt;}
.y1e_c01048{bottom:2.760000pt;}
.y1d_c01048{bottom:6.425217pt;}
.y1c_c01048{bottom:52.773333pt;}
.y1b_c01048{bottom:107.440000pt;}
.y1a_c01048{bottom:131.040000pt;}
.y19_c01048{bottom:229.706667pt;}
.y18_c01048{bottom:297.306667pt;}
.y17_c01048{bottom:413.440000pt;}
.y16_c01048{bottom:526.506667pt;}
.y15_c01048{bottom:559.706667pt;}
.y14_c01048{bottom:591.573333pt;}
.y13_c01048{bottom:623.706667pt;}
.y12_c01048{bottom:653.040000pt;}
.y11_c01048{bottom:682.506667pt;}
.y10_c01048{bottom:712.506667pt;}
.yf_c01048{bottom:741.306667pt;}
.ye_c01048{bottom:770.906667pt;}
.yd_c01048{bottom:800.906667pt;}
.yc_c01048{bottom:831.440000pt;}
.yb_c01048{bottom:860.906667pt;}
.ya_c01048{bottom:890.373333pt;}
.y9_c01048{bottom:920.373333pt;}
.y8_c01048{bottom:949.706667pt;}
.y7_c01048{bottom:978.506667pt;}
.y6_c01048{bottom:1007.973333pt;}
.y5_c01048{bottom:1037.306667pt;}
.y4_c01048{bottom:1067.040000pt;}
.y3_c01048{bottom:1096.506667pt;}
.y2_c01048{bottom:1126.106667pt;}
.y1_c01048{bottom:1156.240000pt;}
.h8_c01048{height:11.733399pt;}
.h7_c01048{height:22.260417pt;}
.h9_c01048{height:38.937500pt;}
.h5_c01048{height:55.893333pt;}
.h3_c01048{height:90.511719pt;}
.h4_c01048{height:97.912760pt;}
.h2_c01048{height:108.041667pt;}
.h6_c01048{height:125.641667pt;}
.h0_c01048{height:1229.733333pt;}
.h1_c01048{height:1230.000000pt;}
.w2_c01048{width:93.222667pt;}
.w0_c01048{width:780.466667pt;}
.w1_c01048{width:780.666667pt;}
.x0_c01048{left:0.000000pt;}
.x3_c01048{left:17.466667pt;}
.x6_c01048{left:23.733333pt;}
.x5_c01048{left:24.666667pt;}
.x4_c01048{left:25.600000pt;}
.x2_c01048{left:27.066667pt;}
.x1_c01048{left:28.533333pt;}
.x7_c01048{left:48.266667pt;}
.xc_c01048{left:262.266667pt;}
.xe_c01048{left:347.401530pt;}
.xa_c01048{left:351.066667pt;}
.xb_c01048{left:366.400000pt;}
.x9_c01048{left:408.933333pt;}
.x8_c01048{left:472.000000pt;}
.xd_c01048{left:608.666667pt;}
}





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

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_e0d1aa160637c5e99a3a62dd.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01049;src:url('chunks/assets/font_fe8d05dae8e77e6fe198c6d8.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01049;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls1_c01049{letter-spacing:0.000000px;}
.ls0_c01049{letter-spacing:26.988000px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01049{word-spacing:-20.244000px;}
.ws1_c01049{word-spacing:0.000000px;}
._3e_c01049{margin-left:-80.064000px;}
._2c_c01049{margin-left:-67.968000px;}
._1d_c01049{margin-left:-57.024000px;}
._50_c01049{margin-left:-28.080000px;}
._37_c01049{margin-left:-26.928000px;}
._38_c01049{margin-left:-19.152000px;}
._54_c01049{margin-left:-17.568000px;}
._52_c01049{margin-left:-14.448000px;}
._29_c01049{margin-left:-13.248000px;}
._14_c01049{margin-left:-11.808000px;}
._24_c01049{margin-left:-10.224000px;}
._23_c01049{margin-left:-8.352000px;}
._16_c01049{margin-left:-7.344000px;}
._e_c01049{margin-left:-6.048000px;}
._d_c01049{margin-left:-4.752000px;}
._c_c01049{margin-left:-3.168000px;}
._a_c01049{margin-left:-2.016000px;}
._6_c01049{margin-left:-1.008000px;}
._10_c01049{width:1.872000px;}
._8_c01049{width:3.456000px;}
._40_c01049{width:4.476000px;}
._1b_c01049{width:5.760000px;}
._2_c01049{width:6.912000px;}
._2f_c01049{width:7.920000px;}
._30_c01049{width:9.072000px;}
._2e_c01049{width:10.656000px;}
._1_c01049{width:11.808000px;}
._0_c01049{width:12.960000px;}
._3_c01049{width:14.256000px;}
._33_c01049{width:15.552000px;}
._43_c01049{width:16.716000px;}
._32_c01049{width:18.288000px;}
._51_c01049{width:21.708000px;}
._2b_c01049{width:22.752000px;}
._42_c01049{width:23.772000px;}
._47_c01049{width:25.896000px;}
._36_c01049{width:26.928000px;}
._4a_c01049{width:28.140000px;}
._46_c01049{width:31.152000px;}
._12_c01049{width:32.976000px;}
._4e_c01049{width:34.644000px;}
._56_c01049{width:35.868000px;}
._41_c01049{width:37.836000px;}
._44_c01049{width:39.984000px;}
._4d_c01049{width:41.736000px;}
._4b_c01049{width:44.208000px;}
._57_c01049{width:46.320000px;}
._45_c01049{width:47.868000px;}
._13_c01049{width:49.824000px;}
._4f_c01049{width:50.868000px;}
._49_c01049{width:52.884000px;}
._48_c01049{width:55.644000px;}
._31_c01049{width:57.168000px;}
._27_c01049{width:59.184000px;}
._4c_c01049{width:61.476000px;}
._26_c01049{width:62.928000px;}
._15_c01049{width:64.512000px;}
._f_c01049{width:65.952000px;}
._19_c01049{width:67.536000px;}
._11_c01049{width:68.688000px;}
._9_c01049{width:69.984000px;}
._1c_c01049{width:70.992000px;}
._21_c01049{width:73.152000px;}
._35_c01049{width:74.592000px;}
._1e_c01049{width:76.608000px;}
._1a_c01049{width:79.056000px;}
._2a_c01049{width:80.496000px;}
._7_c01049{width:82.368000px;}
._25_c01049{width:84.960000px;}
._28_c01049{width:86.112000px;}
._17_c01049{width:87.408000px;}
._18_c01049{width:89.424000px;}
._20_c01049{width:98.352000px;}
._1f_c01049{width:101.232000px;}
._b_c01049{width:104.544000px;}
._22_c01049{width:106.848000px;}
._4_c01049{width:117.792000px;}
._3c_c01049{width:151.488000px;}
._5_c01049{width:160.992000px;}
._53_c01049{width:220.908000px;}
._2d_c01049{width:277.632000px;}
._3b_c01049{width:286.752000px;}
._39_c01049{width:299.232000px;}
._55_c01049{width:306.000000px;}
._34_c01049{width:313.488000px;}
._3a_c01049{width:368.208000px;}
._3f_c01049{width:529.728000px;}
._3d_c01049{width:661.992000px;}
.fc2_c01049{color:transparent;}
.fc1_c01049{color:rgb(128,128,128);}
.fc0_c01049{color:rgb(0,0,0);}
.fs3_c01049{font-size:48.000000px;}
.fs1_c01049{font-size:84.000000px;}
.fs2_c01049{font-size:96.000000px;}
.fs0_c01049{font-size:144.000000px;}
.y0_c01049{bottom:0.000000px;}
.y1f_c01049{bottom:3.105000px;}
.y1e_c01049{bottom:7.228355px;}
.y1d_c01049{bottom:102.135000px;}
.y1c_c01049{bottom:133.335000px;}
.y1b_c01049{bottom:169.035000px;}
.y1a_c01049{bottom:202.035000px;}
.y19_c01049{bottom:236.535000px;}
.y18_c01049{bottom:269.985000px;}
.y17_c01049{bottom:304.035000px;}
.y16_c01049{bottom:338.085000px;}
.y15_c01049{bottom:371.535000px;}
.y14_c01049{bottom:405.585000px;}
.y13_c01049{bottom:438.735000px;}
.y12_c01049{bottom:473.385000px;}
.y11_c01049{bottom:506.835000px;}
.y10_c01049{bottom:539.985000px;}
.yf_c01049{bottom:574.635000px;}
.ye_c01049{bottom:607.185000px;}
.yd_c01049{bottom:640.485000px;}
.yc_c01049{bottom:673.935000px;}
.yb_c01049{bottom:766.785000px;}
.ya_c01049{bottom:817.035000px;}
.y9_c01049{bottom:867.585000px;}
.y8_c01049{bottom:916.935000px;}
.y7_c01049{bottom:967.935000px;}
.y6_c01049{bottom:1017.885000px;}
.y5_c01049{bottom:1068.435000px;}
.y4_c01049{bottom:1119.735000px;}
.y3_c01049{bottom:1169.685000px;}
.y2_c01049{bottom:1219.935000px;}
.y1_c01049{bottom:1270.035000px;}
.h6_c01049{height:13.200074px;}
.h7_c01049{height:43.804688px;}
.h5_c01049{height:98.314453px;}
.h4_c01049{height:106.353516px;}
.h3_c01049{height:121.546875px;}
.h2_c01049{height:182.320312px;}
.h1_c01049{height:1366.500000px;}
.h0_c01049{height:1366.725000px;}
.w2_c01049{width:104.875500px;}
.w0_c01049{width:852.675000px;}
.w1_c01049{width:852.750000px;}
.x0_c01049{left:0.000000px;}
.x8_c01049{left:120.150000px;}
.xc_c01049{left:126.600000px;}
.xd_c01049{left:211.350000px;}
.xb_c01049{left:213.600000px;}
.x1_c01049{left:216.300000px;}
.x2_c01049{left:217.800000px;}
.x4_c01049{left:219.000000px;}
.x3_c01049{left:220.650000px;}
.x5_c01049{left:224.400000px;}
.x9_c01049{left:334.350000px;}
.x6_c01049{left:365.850000px;}
.xf_c01049{left:378.151749px;}
.x7_c01049{left:422.100000px;}
.xa_c01049{left:477.000000px;}
.xe_c01049{left:740.100000px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls1_c01049{letter-spacing:0.000000pt;}
.ls0_c01049{letter-spacing:23.989333pt;}
.ws0_c01049{word-spacing:-17.994667pt;}
.ws1_c01049{word-spacing:0.000000pt;}
._3e_c01049{margin-left:-71.168000pt;}
._2c_c01049{margin-left:-60.416000pt;}
._1d_c01049{margin-left:-50.688000pt;}
._50_c01049{margin-left:-24.960000pt;}
._37_c01049{margin-left:-23.936000pt;}
._38_c01049{margin-left:-17.024000pt;}
._54_c01049{margin-left:-15.616000pt;}
._52_c01049{margin-left:-12.842667pt;}
._29_c01049{margin-left:-11.776000pt;}
._14_c01049{margin-left:-10.496000pt;}
._24_c01049{margin-left:-9.088000pt;}
._23_c01049{margin-left:-7.424000pt;}
._16_c01049{margin-left:-6.528000pt;}
._e_c01049{margin-left:-5.376000pt;}
._d_c01049{margin-left:-4.224000pt;}
._c_c01049{margin-left:-2.816000pt;}
._a_c01049{margin-left:-1.792000pt;}
._6_c01049{margin-left:-0.896000pt;}
._10_c01049{width:1.664000pt;}
._8_c01049{width:3.072000pt;}
._40_c01049{width:3.978667pt;}
._1b_c01049{width:5.120000pt;}
._2_c01049{width:6.144000pt;}
._2f_c01049{width:7.040000pt;}
._30_c01049{width:8.064000pt;}
._2e_c01049{width:9.472000pt;}
._1_c01049{width:10.496000pt;}
._0_c01049{width:11.520000pt;}
._3_c01049{width:12.672000pt;}
._33_c01049{width:13.824000pt;}
._43_c01049{width:14.858667pt;}
._32_c01049{width:16.256000pt;}
._51_c01049{width:19.296000pt;}
._2b_c01049{width:20.224000pt;}
._42_c01049{width:21.130667pt;}
._47_c01049{width:23.018667pt;}
._36_c01049{width:23.936000pt;}
._4a_c01049{width:25.013333pt;}
._46_c01049{width:27.690667pt;}
._12_c01049{width:29.312000pt;}
._4e_c01049{width:30.794667pt;}
._56_c01049{width:31.882667pt;}
._41_c01049{width:33.632000pt;}
._44_c01049{width:35.541333pt;}
._4d_c01049{width:37.098667pt;}
._4b_c01049{width:39.296000pt;}
._57_c01049{width:41.173333pt;}
._45_c01049{width:42.549333pt;}
._13_c01049{width:44.288000pt;}
._4f_c01049{width:45.216000pt;}
._49_c01049{width:47.008000pt;}
._48_c01049{width:49.461333pt;}
._31_c01049{width:50.816000pt;}
._27_c01049{width:52.608000pt;}
._4c_c01049{width:54.645333pt;}
._26_c01049{width:55.936000pt;}
._15_c01049{width:57.344000pt;}
._f_c01049{width:58.624000pt;}
._19_c01049{width:60.032000pt;}
._11_c01049{width:61.056000pt;}
._9_c01049{width:62.208000pt;}
._1c_c01049{width:63.104000pt;}
._21_c01049{width:65.024000pt;}
._35_c01049{width:66.304000pt;}
._1e_c01049{width:68.096000pt;}
._1a_c01049{width:70.272000pt;}
._2a_c01049{width:71.552000pt;}
._7_c01049{width:73.216000pt;}
._25_c01049{width:75.520000pt;}
._28_c01049{width:76.544000pt;}
._17_c01049{width:77.696000pt;}
._18_c01049{width:79.488000pt;}
._20_c01049{width:87.424000pt;}
._1f_c01049{width:89.984000pt;}
._b_c01049{width:92.928000pt;}
._22_c01049{width:94.976000pt;}
._4_c01049{width:104.704000pt;}
._3c_c01049{width:134.656000pt;}
._5_c01049{width:143.104000pt;}
._53_c01049{width:196.362667pt;}
._2d_c01049{width:246.784000pt;}
._3b_c01049{width:254.890667pt;}
._39_c01049{width:265.984000pt;}
._55_c01049{width:272.000000pt;}
._34_c01049{width:278.656000pt;}
._3a_c01049{width:327.296000pt;}
._3f_c01049{width:470.869333pt;}
._3d_c01049{width:588.437333pt;}
.fs3_c01049{font-size:42.666667pt;}
.fs1_c01049{font-size:74.666667pt;}
.fs2_c01049{font-size:85.333333pt;}
.fs0_c01049{font-size:128.000000pt;}
.y0_c01049{bottom:0.000000pt;}
.y1f_c01049{bottom:2.760000pt;}
.y1e_c01049{bottom:6.425204pt;}
.y1d_c01049{bottom:90.786667pt;}
.y1c_c01049{bottom:118.520000pt;}
.y1b_c01049{bottom:150.253333pt;}
.y1a_c01049{bottom:179.586667pt;}
.y19_c01049{bottom:210.253333pt;}
.y18_c01049{bottom:239.986667pt;}
.y17_c01049{bottom:270.253333pt;}
.y16_c01049{bottom:300.520000pt;}
.y15_c01049{bottom:330.253333pt;}
.y14_c01049{bottom:360.520000pt;}
.y13_c01049{bottom:389.986667pt;}
.y12_c01049{bottom:420.786667pt;}
.y11_c01049{bottom:450.520000pt;}
.y10_c01049{bottom:479.986667pt;}
.yf_c01049{bottom:510.786667pt;}
.ye_c01049{bottom:539.720000pt;}
.yd_c01049{bottom:569.320000pt;}
.yc_c01049{bottom:599.053333pt;}
.yb_c01049{bottom:681.586667pt;}
.ya_c01049{bottom:726.253333pt;}
.y9_c01049{bottom:771.186667pt;}
.y8_c01049{bottom:815.053333pt;}
.y7_c01049{bottom:860.386667pt;}
.y6_c01049{bottom:904.786667pt;}
.y5_c01049{bottom:949.720000pt;}
.y4_c01049{bottom:995.320000pt;}
.y3_c01049{bottom:1039.720000pt;}
.y2_c01049{bottom:1084.386667pt;}
.y1_c01049{bottom:1128.920000pt;}
.h6_c01049{height:11.733399pt;}
.h7_c01049{height:38.937500pt;}
.h5_c01049{height:87.390625pt;}
.h4_c01049{height:94.536458pt;}
.h3_c01049{height:108.041667pt;}
.h2_c01049{height:162.062500pt;}
.h1_c01049{height:1214.666667pt;}
.h0_c01049{height:1214.866667pt;}
.w2_c01049{width:93.222667pt;}
.w0_c01049{width:757.933333pt;}
.w1_c01049{width:758.000000pt;}
.x0_c01049{left:0.000000pt;}
.x8_c01049{left:106.800000pt;}
.xc_c01049{left:112.533333pt;}
.xd_c01049{left:187.866667pt;}
.xb_c01049{left:189.866667pt;}
.x1_c01049{left:192.266667pt;}
.x2_c01049{left:193.600000pt;}
.x4_c01049{left:194.666667pt;}
.x3_c01049{left:196.133333pt;}
.x5_c01049{left:199.466667pt;}
.x9_c01049{left:297.200000pt;}
.x6_c01049{left:325.200000pt;}
.xf_c01049{left:336.134888pt;}
.x7_c01049{left:375.200000pt;}
.xa_c01049{left:424.000000pt;}
.xe_c01049{left:657.866667pt;}
}





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

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_c09c4c947db924dbdac0c7f5.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01050;src:url('chunks/assets/font_d08fb6f9d2504a3c9e01132b.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01050;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01050{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_c01050{vertical-align:0.000000px;}
.ls0_c01050{letter-spacing:0.000000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:-20.244000px;}
.ws2_c01050{word-spacing:0.000000px;}
.ws1_c01050{word-spacing:4.620000px;}
._3d_c01050{margin-left:-81.888000px;}
._40_c01050{margin-left:-79.872000px;}
._35_c01050{margin-left:-40.128000px;}
._55_c01050{margin-left:-28.212000px;}
._51_c01050{margin-left:-25.704000px;}
._3b_c01050{margin-left:-23.616000px;}
._53_c01050{margin-left:-21.489000px;}
._16_c01050{margin-left:-19.428000px;}
._4f_c01050{margin-left:-16.992000px;}
._1c_c01050{margin-left:-14.112000px;}
._2d_c01050{margin-left:-12.828000px;}
._33_c01050{margin-left:-10.752000px;}
._48_c01050{margin-left:-9.168000px;}
._15_c01050{margin-left:-6.048000px;}
._2a_c01050{margin-left:-4.032000px;}
._46_c01050{margin-left:-2.304000px;}
._11_c01050{margin-left:-1.260000px;}
._18_c01050{width:2.016000px;}
._3_c01050{width:3.276000px;}
._6_c01050{width:5.040000px;}
._d_c01050{width:6.132000px;}
._0_c01050{width:7.140000px;}
._a_c01050{width:8.316000px;}
._1_c01050{width:9.324000px;}
._c_c01050{width:11.088000px;}
._b_c01050{width:12.432000px;}
._4_c01050{width:13.524000px;}
._28_c01050{width:14.952000px;}
._9_c01050{width:15.960000px;}
._13_c01050{width:17.136000px;}
._2_c01050{width:18.396000px;}
._23_c01050{width:21.864000px;}
._e_c01050{width:24.444000px;}
._f_c01050{width:25.536000px;}
._29_c01050{width:26.796000px;}
._26_c01050{width:28.056000px;}
._43_c01050{width:29.652000px;}
._20_c01050{width:31.164000px;}
._21_c01050{width:32.760000px;}
._1f_c01050{width:34.524000px;}
._12_c01050{width:35.532000px;}
._37_c01050{width:36.624000px;}
._19_c01050{width:37.716000px;}
._17_c01050{width:39.312000px;}
._10_c01050{width:40.740000px;}
._38_c01050{width:42.084000px;}
._1b_c01050{width:43.092000px;}
._7_c01050{width:44.100000px;}
._14_c01050{width:45.444000px;}
._27_c01050{width:47.040000px;}
._22_c01050{width:48.132000px;}
._24_c01050{width:49.656000px;}
._5_c01050{width:50.904000px;}
._1a_c01050{width:52.332000px;}
._32_c01050{width:54.600000px;}
._1d_c01050{width:57.120000px;}
._25_c01050{width:58.968000px;}
._8_c01050{width:60.084000px;}
._2e_c01050{width:62.064000px;}
._2f_c01050{width:63.672000px;}
._4a_c01050{width:67.284000px;}
._2b_c01050{width:71.736000px;}
._2c_c01050{width:81.048000px;}
._4d_c01050{width:85.236000px;}
._56_c01050{width:98.616000px;}
._49_c01050{width:101.088000px;}
._54_c01050{width:103.875000px;}
._31_c01050{width:118.728000px;}
._3f_c01050{width:140.736000px;}
._3e_c01050{width:142.200000px;}
._3a_c01050{width:158.208000px;}
._30_c01050{width:167.988000px;}
._45_c01050{width:177.120000px;}
._47_c01050{width:178.752000px;}
._4e_c01050{width:181.788000px;}
._39_c01050{width:197.088000px;}
._41_c01050{width:204.312000px;}
._1e_c01050{width:213.528000px;}
._3c_c01050{width:215.520000px;}
._58_c01050{width:225.936000px;}
._4b_c01050{width:230.436000px;}
._42_c01050{width:256.116000px;}
._34_c01050{width:277.968000px;}
._50_c01050{width:323.328000px;}
._4c_c01050{width:364.152000px;}
._36_c01050{width:385.872000px;}
._44_c01050{width:504.468000px;}
._52_c01050{width:932.388000px;}
._57_c01050{width:1753.572000px;}
.fc2_c01050{color:transparent;}
.fc1_c01050{color:rgb(128,128,128);}
.fc0_c01050{color:rgb(0,0,0);}
.fs4_c01050{font-size:48.000000px;}
.fs2_c01050{font-size:60.000000px;}
.fs0_c01050{font-size:84.000000px;}
.fs3_c01050{font-size:87.000000px;}
.fs1_c01050{font-size:96.000000px;}
.y0_c01050{bottom:0.000000px;}
.y27_c01050{bottom:3.105000px;}
.y26_c01050{bottom:7.228363px;}
.y25_c01050{bottom:99.000000px;}
.y24_c01050{bottom:131.250000px;}
.y23_c01050{bottom:165.150000px;}
.y22_c01050{bottom:200.250000px;}
.y21_c01050{bottom:234.000000px;}
.y20_c01050{bottom:268.650000px;}
.y1f_c01050{bottom:302.700000px;}
.y1e_c01050{bottom:339.600000px;}
.y1d_c01050{bottom:370.200000px;}
.y1c_c01050{bottom:404.400000px;}
.y1b_c01050{bottom:438.150000px;}
.y1a_c01050{bottom:467.550000px;}
.y19_c01050{bottom:490.500000px;}
.y18_c01050{bottom:524.550000px;}
.y17_c01050{bottom:558.300000px;}
.y16_c01050{bottom:592.350000px;}
.y15_c01050{bottom:625.500000px;}
.y14_c01050{bottom:659.100000px;}
.y13_c01050{bottom:693.300000px;}
.y12_c01050{bottom:726.750000px;}
.y11_c01050{bottom:759.750000px;}
.y10_c01050{bottom:793.800000px;}
.yf_c01050{bottom:837.750000px;}
.ye_c01050{bottom:869.400000px;}
.yd_c01050{bottom:903.600000px;}
.yc_c01050{bottom:937.350000px;}
.yb_c01050{bottom:970.950000px;}
.ya_c01050{bottom:1004.400000px;}
.y9_c01050{bottom:1037.850000px;}
.y8_c01050{bottom:1070.550000px;}
.y7_c01050{bottom:1103.400000px;}
.y6_c01050{bottom:1136.700000px;}
.y5_c01050{bottom:1169.850000px;}
.y4_c01050{bottom:1203.600000px;}
.y3_c01050{bottom:1236.600000px;}
.y2_c01050{bottom:1270.050000px;}
.y1_c01050{bottom:1304.100000px;}
.h6_c01050{height:13.200074px;}
.h7_c01050{height:43.804688px;}
.h4_c01050{height:75.966797px;}
.h1_c01050{height:98.314453px;}
.h3_c01050{height:106.353516px;}
.h5_c01050{height:110.151855px;}
.h2_c01050{height:121.546875px;}
.h0_c01050{height:1363.500000px;}
.w2_c01050{width:104.875500px;}
.w1_c01050{width:864.750000px;}
.w0_c01050{width:865.050000px;}
.x0_c01050{left:0.000000px;}
.x13_c01050{left:41.850000px;}
.x12_c01050{left:42.900000px;}
.xb_c01050{left:45.000000px;}
.xa_c01050{left:46.650000px;}
.x9_c01050{left:49.350000px;}
.x7_c01050{left:50.400000px;}
.x6_c01050{left:51.600000px;}
.x5_c01050{left:53.250000px;}
.x4_c01050{left:55.950000px;}
.x2_c01050{left:58.500000px;}
.xe_c01050{left:65.550000px;}
.x3_c01050{left:90.900000px;}
.x11_c01050{left:107.700000px;}
.xc_c01050{left:155.700000px;}
.xf_c01050{left:157.350000px;}
.x8_c01050{left:159.000000px;}
.xd_c01050{left:199.950000px;}
.x14_c01050{left:384.339249px;}
.x10_c01050{left:386.550000px;}
.x1_c01050{left:544.500000px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls0_c01050{letter-spacing:0.000000pt;}
.ws0_c01050{word-spacing:-17.994667pt;}
.ws2_c01050{word-spacing:0.000000pt;}
.ws1_c01050{word-spacing:4.106667pt;}
._3d_c01050{margin-left:-72.789333pt;}
._40_c01050{margin-left:-70.997333pt;}
._35_c01050{margin-left:-35.669333pt;}
._55_c01050{margin-left:-25.077333pt;}
._51_c01050{margin-left:-22.848000pt;}
._3b_c01050{margin-left:-20.992000pt;}
._53_c01050{margin-left:-19.101333pt;}
._16_c01050{margin-left:-17.269333pt;}
._4f_c01050{margin-left:-15.104000pt;}
._1c_c01050{margin-left:-12.544000pt;}
._2d_c01050{margin-left:-11.402667pt;}
._33_c01050{margin-left:-9.557333pt;}
._48_c01050{margin-left:-8.149333pt;}
._15_c01050{margin-left:-5.376000pt;}
._2a_c01050{margin-left:-3.584000pt;}
._46_c01050{margin-left:-2.048000pt;}
._11_c01050{margin-left:-1.120000pt;}
._18_c01050{width:1.792000pt;}
._3_c01050{width:2.912000pt;}
._6_c01050{width:4.480000pt;}
._d_c01050{width:5.450667pt;}
._0_c01050{width:6.346667pt;}
._a_c01050{width:7.392000pt;}
._1_c01050{width:8.288000pt;}
._c_c01050{width:9.856000pt;}
._b_c01050{width:11.050667pt;}
._4_c01050{width:12.021333pt;}
._28_c01050{width:13.290667pt;}
._9_c01050{width:14.186667pt;}
._13_c01050{width:15.232000pt;}
._2_c01050{width:16.352000pt;}
._23_c01050{width:19.434667pt;}
._e_c01050{width:21.728000pt;}
._f_c01050{width:22.698667pt;}
._29_c01050{width:23.818667pt;}
._26_c01050{width:24.938667pt;}
._43_c01050{width:26.357333pt;}
._20_c01050{width:27.701333pt;}
._21_c01050{width:29.120000pt;}
._1f_c01050{width:30.688000pt;}
._12_c01050{width:31.584000pt;}
._37_c01050{width:32.554667pt;}
._19_c01050{width:33.525333pt;}
._17_c01050{width:34.944000pt;}
._10_c01050{width:36.213333pt;}
._38_c01050{width:37.408000pt;}
._1b_c01050{width:38.304000pt;}
._7_c01050{width:39.200000pt;}
._14_c01050{width:40.394667pt;}
._27_c01050{width:41.813333pt;}
._22_c01050{width:42.784000pt;}
._24_c01050{width:44.138667pt;}
._5_c01050{width:45.248000pt;}
._1a_c01050{width:46.517333pt;}
._32_c01050{width:48.533333pt;}
._1d_c01050{width:50.773333pt;}
._25_c01050{width:52.416000pt;}
._8_c01050{width:53.408000pt;}
._2e_c01050{width:55.168000pt;}
._2f_c01050{width:56.597333pt;}
._4a_c01050{width:59.808000pt;}
._2b_c01050{width:63.765333pt;}
._2c_c01050{width:72.042667pt;}
._4d_c01050{width:75.765333pt;}
._56_c01050{width:87.658667pt;}
._49_c01050{width:89.856000pt;}
._54_c01050{width:92.333333pt;}
._31_c01050{width:105.536000pt;}
._3f_c01050{width:125.098667pt;}
._3e_c01050{width:126.400000pt;}
._3a_c01050{width:140.629333pt;}
._30_c01050{width:149.322667pt;}
._45_c01050{width:157.440000pt;}
._47_c01050{width:158.890667pt;}
._4e_c01050{width:161.589333pt;}
._39_c01050{width:175.189333pt;}
._41_c01050{width:181.610667pt;}
._1e_c01050{width:189.802667pt;}
._3c_c01050{width:191.573333pt;}
._58_c01050{width:200.832000pt;}
._4b_c01050{width:204.832000pt;}
._42_c01050{width:227.658667pt;}
._34_c01050{width:247.082667pt;}
._50_c01050{width:287.402667pt;}
._4c_c01050{width:323.690667pt;}
._36_c01050{width:342.997333pt;}
._44_c01050{width:448.416000pt;}
._52_c01050{width:828.789333pt;}
._57_c01050{width:1558.730667pt;}
.fs4_c01050{font-size:42.666667pt;}
.fs2_c01050{font-size:53.333333pt;}
.fs0_c01050{font-size:74.666667pt;}
.fs3_c01050{font-size:77.333333pt;}
.fs1_c01050{font-size:85.333333pt;}
.y0_c01050{bottom:0.000000pt;}
.y27_c01050{bottom:2.760000pt;}
.y26_c01050{bottom:6.425212pt;}
.y25_c01050{bottom:88.000000pt;}
.y24_c01050{bottom:116.666667pt;}
.y23_c01050{bottom:146.800000pt;}
.y22_c01050{bottom:178.000000pt;}
.y21_c01050{bottom:208.000000pt;}
.y20_c01050{bottom:238.800000pt;}
.y1f_c01050{bottom:269.066667pt;}
.y1e_c01050{bottom:301.866667pt;}
.y1d_c01050{bottom:329.066667pt;}
.y1c_c01050{bottom:359.466667pt;}
.y1b_c01050{bottom:389.466667pt;}
.y1a_c01050{bottom:415.600000pt;}
.y19_c01050{bottom:436.000000pt;}
.y18_c01050{bottom:466.266667pt;}
.y17_c01050{bottom:496.266667pt;}
.y16_c01050{bottom:526.533333pt;}
.y15_c01050{bottom:556.000000pt;}
.y14_c01050{bottom:585.866667pt;}
.y13_c01050{bottom:616.266667pt;}
.y12_c01050{bottom:646.000000pt;}
.y11_c01050{bottom:675.333333pt;}
.y10_c01050{bottom:705.600000pt;}
.yf_c01050{bottom:744.666667pt;}
.ye_c01050{bottom:772.800000pt;}
.yd_c01050{bottom:803.200000pt;}
.yc_c01050{bottom:833.200000pt;}
.yb_c01050{bottom:863.066667pt;}
.ya_c01050{bottom:892.800000pt;}
.y9_c01050{bottom:922.533333pt;}
.y8_c01050{bottom:951.600000pt;}
.y7_c01050{bottom:980.800000pt;}
.y6_c01050{bottom:1010.400000pt;}
.y5_c01050{bottom:1039.866667pt;}
.y4_c01050{bottom:1069.866667pt;}
.y3_c01050{bottom:1099.200000pt;}
.y2_c01050{bottom:1128.933333pt;}
.y1_c01050{bottom:1159.200000pt;}
.h6_c01050{height:11.733399pt;}
.h7_c01050{height:38.937500pt;}
.h4_c01050{height:67.526042pt;}
.h1_c01050{height:87.390625pt;}
.h3_c01050{height:94.536458pt;}
.h5_c01050{height:97.912760pt;}
.h2_c01050{height:108.041667pt;}
.h0_c01050{height:1212.000000pt;}
.w2_c01050{width:93.222667pt;}
.w1_c01050{width:768.666667pt;}
.w0_c01050{width:768.933333pt;}
.x0_c01050{left:0.000000pt;}
.x13_c01050{left:37.200000pt;}
.x12_c01050{left:38.133333pt;}
.xb_c01050{left:40.000000pt;}
.xa_c01050{left:41.466667pt;}
.x9_c01050{left:43.866667pt;}
.x7_c01050{left:44.800000pt;}
.x6_c01050{left:45.866667pt;}
.x5_c01050{left:47.333333pt;}
.x4_c01050{left:49.733333pt;}
.x2_c01050{left:52.000000pt;}
.xe_c01050{left:58.266667pt;}
.x3_c01050{left:80.800000pt;}
.x11_c01050{left:95.733333pt;}
.xc_c01050{left:138.400000pt;}
.xf_c01050{left:139.866667pt;}
.x8_c01050{left:141.333333pt;}
.xd_c01050{left:177.733333pt;}
.x14_c01050{left:341.634888pt;}
.x10_c01050{left:343.600000pt;}
.x1_c01050{left:484.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_c01051 {
    display:none;
  }
  .loading-indicator_c01051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01051 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01051 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01051" -> "#page-container .classname_c01051")
 */
.pf_c01051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01051 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01051 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01051 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01051 {overflow:visible;}
  }
}
.c_c01051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01051 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01051:after { /* webkit #35443 */
  content: '';
}
.t_c01051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01051 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01051 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01051 { /* info for Javascript */
  display:none;
}
.l_c01051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_ad931e78e2fe69569872a5b7.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01051;src:url('chunks/assets/font_6d1bb3e7e7d30c8fbe529e98.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01051;src:url('chunks/assets/font_53943d8e0f5115deb9c50930.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01051;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;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_c01051;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01051{font-family:ff5_c01051;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.ls2_c01051{letter-spacing:0.000000px;}
.ls0_c01051{letter-spacing:0.600000px;}
.ls1_c01051{letter-spacing:3.384000px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:-25.939200px;}
.ws1_c01051{word-spacing:-20.244000px;}
.ws3_c01051{word-spacing:0.000000px;}
.ws2_c01051{word-spacing:1.344000px;}
._2b_c01051{margin-left:-26.688000px;}
._4b_c01051{margin-left:-23.772000px;}
._2a_c01051{margin-left:-20.784000px;}
._32_c01051{margin-left:-18.816000px;}
._4a_c01051{margin-left:-17.472000px;}
._1c_c01051{margin-left:-14.448000px;}
._42_c01051{margin-left:-13.008000px;}
._44_c01051{margin-left:-11.220000px;}
._3e_c01051{margin-left:-10.008000px;}
._36_c01051{margin-left:-8.316000px;}
._34_c01051{margin-left:-6.132000px;}
._3f_c01051{margin-left:-3.900000px;}
._c_c01051{margin-left:-2.352000px;}
._3a_c01051{margin-left:-1.056000px;}
._4_c01051{width:1.512000px;}
._e_c01051{width:2.520000px;}
._0_c01051{width:4.116000px;}
._2_c01051{width:5.376000px;}
._1_c01051{width:6.636000px;}
._10_c01051{width:7.728000px;}
._6_c01051{width:9.156000px;}
._7_c01051{width:10.164000px;}
._a_c01051{width:11.280000px;}
._9_c01051{width:12.936000px;}
._18_c01051{width:14.448000px;}
._8_c01051{width:15.456000px;}
._20_c01051{width:17.208000px;}
._28_c01051{width:18.648000px;}
._47_c01051{width:19.908000px;}
._1b_c01051{width:22.296000px;}
._1d_c01051{width:23.652000px;}
._b_c01051{width:25.284000px;}
._3_c01051{width:27.048000px;}
._45_c01051{width:28.560000px;}
._43_c01051{width:29.664000px;}
._f_c01051{width:30.912000px;}
._23_c01051{width:32.172000px;}
._2c_c01051{width:33.840000px;}
._5_c01051{width:35.112000px;}
._48_c01051{width:36.120000px;}
._17_c01051{width:37.128000px;}
._1e_c01051{width:38.724000px;}
._26_c01051{width:40.128000px;}
._13_c01051{width:41.160000px;}
._11_c01051{width:43.176000px;}
._1a_c01051{width:44.328000px;}
._12_c01051{width:45.696000px;}
._25_c01051{width:47.556000px;}
._22_c01051{width:48.684000px;}
._15_c01051{width:49.728000px;}
._27_c01051{width:50.904000px;}
._16_c01051{width:53.004000px;}
._24_c01051{width:54.600000px;}
._21_c01051{width:56.868000px;}
._14_c01051{width:58.248000px;}
._2f_c01051{width:60.984000px;}
._39_c01051{width:62.832000px;}
._29_c01051{width:64.404000px;}
._d_c01051{width:65.688000px;}
._3c_c01051{width:67.656000px;}
._19_c01051{width:69.636000px;}
._2d_c01051{width:76.272000px;}
._40_c01051{width:79.248000px;}
._31_c01051{width:82.656000px;}
._41_c01051{width:84.036000px;}
._3b_c01051{width:85.260000px;}
._2e_c01051{width:87.444000px;}
._33_c01051{width:89.376000px;}
._46_c01051{width:91.056000px;}
._38_c01051{width:93.072000px;}
._30_c01051{width:98.364000px;}
._1f_c01051{width:201.012000px;}
._35_c01051{width:203.196000px;}
._37_c01051{width:209.856000px;}
._3d_c01051{width:212.220000px;}
._49_c01051{width:213.900000px;}
._4c_c01051{width:1627.176000px;}
.fc2_c01051{color:transparent;}
.fc1_c01051{color:rgb(128,128,128);}
.fc0_c01051{color:rgb(0,0,0);}
.fs4_c01051{font-size:48.000000px;}
.fs2_c01051{font-size:67.200000px;}
.fs0_c01051{font-size:84.000000px;}
.fs1_c01051{font-size:96.000000px;}
.fs3_c01051{font-size:102.000000px;}
.y0_c01051{bottom:0.000000px;}
.y26_c01051{bottom:3.105000px;}
.y25_c01051{bottom:7.228369px;}
.y24_c01051{bottom:102.570000px;}
.y23_c01051{bottom:134.370000px;}
.y22_c01051{bottom:169.320000px;}
.y21_c01051{bottom:203.820000px;}
.y20_c01051{bottom:237.570000px;}
.y1f_c01051{bottom:271.620000px;}
.y1e_c01051{bottom:305.370000px;}
.y1d_c01051{bottom:339.570000px;}
.y1c_c01051{bottom:373.320000px;}
.y1b_c01051{bottom:406.920000px;}
.y1a_c01051{bottom:441.420000px;}
.y19_c01051{bottom:474.420000px;}
.y18_c01051{bottom:508.620000px;}
.y17_c01051{bottom:542.370000px;}
.y16_c01051{bottom:576.120000px;}
.y15_c01051{bottom:609.870000px;}
.y14_c01051{bottom:643.620000px;}
.y13_c01051{bottom:677.370000px;}
.y12_c01051{bottom:710.670000px;}
.y11_c01051{bottom:744.420000px;}
.y10_c01051{bottom:778.170000px;}
.yf_c01051{bottom:811.320000px;}
.ye_c01051{bottom:844.770000px;}
.yd_c01051{bottom:878.220000px;}
.yc_c01051{bottom:911.820000px;}
.yb_c01051{bottom:945.570000px;}
.ya_c01051{bottom:979.320000px;}
.y9_c01051{bottom:1012.170000px;}
.y8_c01051{bottom:1045.470000px;}
.y7_c01051{bottom:1078.920000px;}
.y6_c01051{bottom:1112.370000px;}
.y5_c01051{bottom:1145.820000px;}
.y4_c01051{bottom:1179.270000px;}
.y3_c01051{bottom:1212.870000px;}
.y2_c01051{bottom:1245.720000px;}
.y1_c01051{bottom:1278.720000px;}
.h5_c01051{height:13.200073px;}
.h6_c01051{height:43.804688px;}
.h4_c01051{height:98.314453px;}
.h3_c01051{height:106.353516px;}
.h2_c01051{height:121.546875px;}
.h0_c01051{height:1369.950000px;}
.h1_c01051{height:1370.250000px;}
.w2_c01051{width:104.875500px;}
.w0_c01051{width:854.850000px;}
.w1_c01051{width:855.000000px;}
.x0_c01051{left:0.000000px;}
.x5_c01051{left:192.600000px;}
.x4_c01051{left:193.650000px;}
.x3_c01051{left:195.300000px;}
.x2_c01051{left:196.350000px;}
.x1_c01051{left:197.850000px;}
.x6_c01051{left:200.100000px;}
.x8_c01051{left:201.750000px;}
.x7_c01051{left:202.800000px;}
.x9_c01051{left:204.450000px;}
.xc_c01051{left:205.500000px;}
.xa_c01051{left:246.600000px;}
.xb_c01051{left:254.700000px;}
.xd_c01051{left:260.850000px;}
.xe_c01051{left:379.239258px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls2_c01051{letter-spacing:0.000000pt;}
.ls0_c01051{letter-spacing:0.533333pt;}
.ls1_c01051{letter-spacing:3.008000pt;}
.ws0_c01051{word-spacing:-23.057067pt;}
.ws1_c01051{word-spacing:-17.994667pt;}
.ws3_c01051{word-spacing:0.000000pt;}
.ws2_c01051{word-spacing:1.194667pt;}
._2b_c01051{margin-left:-23.722667pt;}
._4b_c01051{margin-left:-21.130667pt;}
._2a_c01051{margin-left:-18.474667pt;}
._32_c01051{margin-left:-16.725333pt;}
._4a_c01051{margin-left:-15.530667pt;}
._1c_c01051{margin-left:-12.842667pt;}
._42_c01051{margin-left:-11.562667pt;}
._44_c01051{margin-left:-9.973333pt;}
._3e_c01051{margin-left:-8.896000pt;}
._36_c01051{margin-left:-7.392000pt;}
._34_c01051{margin-left:-5.450667pt;}
._3f_c01051{margin-left:-3.466667pt;}
._c_c01051{margin-left:-2.090667pt;}
._3a_c01051{margin-left:-0.938667pt;}
._4_c01051{width:1.344000pt;}
._e_c01051{width:2.240000pt;}
._0_c01051{width:3.658667pt;}
._2_c01051{width:4.778667pt;}
._1_c01051{width:5.898667pt;}
._10_c01051{width:6.869333pt;}
._6_c01051{width:8.138667pt;}
._7_c01051{width:9.034667pt;}
._a_c01051{width:10.026667pt;}
._9_c01051{width:11.498667pt;}
._18_c01051{width:12.842667pt;}
._8_c01051{width:13.738667pt;}
._20_c01051{width:15.296000pt;}
._28_c01051{width:16.576000pt;}
._47_c01051{width:17.696000pt;}
._1b_c01051{width:19.818667pt;}
._1d_c01051{width:21.024000pt;}
._b_c01051{width:22.474667pt;}
._3_c01051{width:24.042667pt;}
._45_c01051{width:25.386667pt;}
._43_c01051{width:26.368000pt;}
._f_c01051{width:27.477333pt;}
._23_c01051{width:28.597333pt;}
._2c_c01051{width:30.080000pt;}
._5_c01051{width:31.210667pt;}
._48_c01051{width:32.106667pt;}
._17_c01051{width:33.002667pt;}
._1e_c01051{width:34.421333pt;}
._26_c01051{width:35.669333pt;}
._13_c01051{width:36.586667pt;}
._11_c01051{width:38.378667pt;}
._1a_c01051{width:39.402667pt;}
._12_c01051{width:40.618667pt;}
._25_c01051{width:42.272000pt;}
._22_c01051{width:43.274667pt;}
._15_c01051{width:44.202667pt;}
._27_c01051{width:45.248000pt;}
._16_c01051{width:47.114667pt;}
._24_c01051{width:48.533333pt;}
._21_c01051{width:50.549333pt;}
._14_c01051{width:51.776000pt;}
._2f_c01051{width:54.208000pt;}
._39_c01051{width:55.850667pt;}
._29_c01051{width:57.248000pt;}
._d_c01051{width:58.389333pt;}
._3c_c01051{width:60.138667pt;}
._19_c01051{width:61.898667pt;}
._2d_c01051{width:67.797333pt;}
._40_c01051{width:70.442667pt;}
._31_c01051{width:73.472000pt;}
._41_c01051{width:74.698667pt;}
._3b_c01051{width:75.786667pt;}
._2e_c01051{width:77.728000pt;}
._33_c01051{width:79.445333pt;}
._46_c01051{width:80.938667pt;}
._38_c01051{width:82.730667pt;}
._30_c01051{width:87.434667pt;}
._1f_c01051{width:178.677333pt;}
._35_c01051{width:180.618667pt;}
._37_c01051{width:186.538667pt;}
._3d_c01051{width:188.640000pt;}
._49_c01051{width:190.133333pt;}
._4c_c01051{width:1446.378667pt;}
.fs4_c01051{font-size:42.666667pt;}
.fs2_c01051{font-size:59.733333pt;}
.fs0_c01051{font-size:74.666667pt;}
.fs1_c01051{font-size:85.333333pt;}
.fs3_c01051{font-size:90.666667pt;}
.y0_c01051{bottom:0.000000pt;}
.y26_c01051{bottom:2.760000pt;}
.y25_c01051{bottom:6.425217pt;}
.y24_c01051{bottom:91.173333pt;}
.y23_c01051{bottom:119.440000pt;}
.y22_c01051{bottom:150.506667pt;}
.y21_c01051{bottom:181.173333pt;}
.y20_c01051{bottom:211.173333pt;}
.y1f_c01051{bottom:241.440000pt;}
.y1e_c01051{bottom:271.440000pt;}
.y1d_c01051{bottom:301.840000pt;}
.y1c_c01051{bottom:331.840000pt;}
.y1b_c01051{bottom:361.706667pt;}
.y1a_c01051{bottom:392.373333pt;}
.y19_c01051{bottom:421.706667pt;}
.y18_c01051{bottom:452.106667pt;}
.y17_c01051{bottom:482.106667pt;}
.y16_c01051{bottom:512.106667pt;}
.y15_c01051{bottom:542.106667pt;}
.y14_c01051{bottom:572.106667pt;}
.y13_c01051{bottom:602.106667pt;}
.y12_c01051{bottom:631.706667pt;}
.y11_c01051{bottom:661.706667pt;}
.y10_c01051{bottom:691.706667pt;}
.yf_c01051{bottom:721.173333pt;}
.ye_c01051{bottom:750.906667pt;}
.yd_c01051{bottom:780.640000pt;}
.yc_c01051{bottom:810.506667pt;}
.yb_c01051{bottom:840.506667pt;}
.ya_c01051{bottom:870.506667pt;}
.y9_c01051{bottom:899.706667pt;}
.y8_c01051{bottom:929.306667pt;}
.y7_c01051{bottom:959.040000pt;}
.y6_c01051{bottom:988.773333pt;}
.y5_c01051{bottom:1018.506667pt;}
.y4_c01051{bottom:1048.240000pt;}
.y3_c01051{bottom:1078.106667pt;}
.y2_c01051{bottom:1107.306667pt;}
.y1_c01051{bottom:1136.640000pt;}
.h5_c01051{height:11.733399pt;}
.h6_c01051{height:38.937500pt;}
.h4_c01051{height:87.390625pt;}
.h3_c01051{height:94.536458pt;}
.h2_c01051{height:108.041667pt;}
.h0_c01051{height:1217.733333pt;}
.h1_c01051{height:1218.000000pt;}
.w2_c01051{width:93.222667pt;}
.w0_c01051{width:759.866667pt;}
.w1_c01051{width:760.000000pt;}
.x0_c01051{left:0.000000pt;}
.x5_c01051{left:171.200000pt;}
.x4_c01051{left:172.133333pt;}
.x3_c01051{left:173.600000pt;}
.x2_c01051{left:174.533333pt;}
.x1_c01051{left:175.866667pt;}
.x6_c01051{left:177.866667pt;}
.x8_c01051{left:179.333333pt;}
.x7_c01051{left:180.266667pt;}
.x9_c01051{left:181.733333pt;}
.xc_c01051{left:182.666667pt;}
.xa_c01051{left:219.200000pt;}
.xb_c01051{left:226.400000pt;}
.xd_c01051{left:231.866667pt;}
.xe_c01051{left:337.101563pt;}
}





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

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_a94668b51ef632f781a94a7d.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01052;src:url('chunks/assets/font_636b65b56233fb6ecdfa9464.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01052;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;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_c01052;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01052{font-family:ff5_c01052;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.ls2_c01052{letter-spacing:0.000000px;}
.ls1_c01052{letter-spacing:0.300000px;}
.ls0_c01052{letter-spacing:10.452000px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01052{word-spacing:-51.000000px;}
.ws0_c01052{word-spacing:-20.244000px;}
.ws2_c01052{word-spacing:0.000000px;}
._33_c01052{margin-left:-51.552000px;}
._34_c01052{margin-left:-31.680000px;}
._29_c01052{margin-left:-30.228000px;}
._3f_c01052{margin-left:-20.760000px;}
._3a_c01052{margin-left:-19.092000px;}
._40_c01052{margin-left:-17.616000px;}
._3b_c01052{margin-left:-16.224000px;}
._3c_c01052{margin-left:-14.688000px;}
._2f_c01052{margin-left:-13.608000px;}
._32_c01052{margin-left:-12.432000px;}
._46_c01052{margin-left:-10.644000px;}
._41_c01052{margin-left:-9.576000px;}
._36_c01052{margin-left:-5.316000px;}
._2e_c01052{margin-left:-3.696000px;}
._b_c01052{margin-left:-2.520000px;}
._18_c01052{margin-left:-1.488000px;}
._f_c01052{width:1.092000px;}
._10_c01052{width:2.100000px;}
._9_c01052{width:3.528000px;}
._8_c01052{width:5.292000px;}
._1_c01052{width:7.140000px;}
._1a_c01052{width:8.148000px;}
._6_c01052{width:9.240000px;}
._5_c01052{width:10.836000px;}
._1d_c01052{width:11.844000px;}
._0_c01052{width:13.020000px;}
._4_c01052{width:14.028000px;}
._7_c01052{width:15.036000px;}
._d_c01052{width:16.716000px;}
._3_c01052{width:17.808000px;}
._1c_c01052{width:18.984000px;}
._22_c01052{width:21.336000px;}
._14_c01052{width:22.764000px;}
._c_c01052{width:23.772000px;}
._2c_c01052{width:26.460000px;}
._2_c01052{width:28.056000px;}
._1f_c01052{width:30.156000px;}
._2d_c01052{width:32.280000px;}
._25_c01052{width:33.600000px;}
._a_c01052{width:34.608000px;}
._2b_c01052{width:36.540000px;}
._13_c01052{width:37.884000px;}
._16_c01052{width:39.816000px;}
._1e_c01052{width:41.076000px;}
._28_c01052{width:42.420000px;}
._30_c01052{width:43.680000px;}
._e_c01052{width:46.368000px;}
._20_c01052{width:47.880000px;}
._27_c01052{width:48.888000px;}
._15_c01052{width:50.904000px;}
._2a_c01052{width:52.980000px;}
._19_c01052{width:54.012000px;}
._21_c01052{width:55.440000px;}
._24_c01052{width:57.456000px;}
._23_c01052{width:58.632000px;}
._1b_c01052{width:60.732000px;}
._42_c01052{width:63.720000px;}
._44_c01052{width:66.108000px;}
._39_c01052{width:67.980000px;}
._38_c01052{width:71.820000px;}
._3e_c01052{width:73.668000px;}
._43_c01052{width:76.440000px;}
._31_c01052{width:79.716000px;}
._48_c01052{width:86.760000px;}
._45_c01052{width:92.460000px;}
._26_c01052{width:98.280000px;}
._37_c01052{width:105.516000px;}
._11_c01052{width:122.976000px;}
._17_c01052{width:189.564000px;}
._35_c01052{width:204.864000px;}
._3d_c01052{width:231.792000px;}
._47_c01052{width:332.424000px;}
._12_c01052{width:413.616000px;}
._4a_c01052{width:591.060000px;}
._49_c01052{width:960.120000px;}
.fc2_c01052{color:transparent;}
.fc1_c01052{color:rgb(128,128,128);}
.fc0_c01052{color:rgb(0,0,0);}
.fs4_c01052{font-size:48.000000px;}
.fs0_c01052{font-size:84.000000px;}
.fs1_c01052{font-size:96.000000px;}
.fs2_c01052{font-size:99.000000px;}
.fs3_c01052{font-size:102.000000px;}
.y0_c01052{bottom:0.000000px;}
.y23_c01052{bottom:3.105000px;}
.y22_c01052{bottom:7.228371px;}
.y21_c01052{bottom:107.715000px;}
.y20_c01052{bottom:244.365000px;}
.y1f_c01052{bottom:279.465000px;}
.y1e_c01052{bottom:314.565000px;}
.y1d_c01052{bottom:348.615000px;}
.y1c_c01052{bottom:382.065000px;}
.y1b_c01052{bottom:416.115000px;}
.y1a_c01052{bottom:449.565000px;}
.y19_c01052{bottom:482.715000px;}
.y18_c01052{bottom:517.065000px;}
.y17_c01052{bottom:550.815000px;}
.y16_c01052{bottom:583.965000px;}
.y15_c01052{bottom:617.415000px;}
.y14_c01052{bottom:652.065000px;}
.y13_c01052{bottom:685.815000px;}
.y12_c01052{bottom:718.965000px;}
.y11_c01052{bottom:752.265000px;}
.y10_c01052{bottom:786.765000px;}
.yf_c01052{bottom:819.765000px;}
.ye_c01052{bottom:852.915000px;}
.yd_c01052{bottom:886.365000px;}
.yc_c01052{bottom:919.815000px;}
.yb_c01052{bottom:953.565000px;}
.ya_c01052{bottom:986.865000px;}
.y9_c01052{bottom:1020.315000px;}
.y8_c01052{bottom:1054.065000px;}
.y7_c01052{bottom:1086.765000px;}
.y6_c01052{bottom:1119.165000px;}
.y5_c01052{bottom:1152.315000px;}
.y4_c01052{bottom:1185.765000px;}
.y3_c01052{bottom:1220.115000px;}
.y2_c01052{bottom:1252.215000px;}
.y1_c01052{bottom:1285.665000px;}
.h6_c01052{height:13.200074px;}
.h7_c01052{height:43.804688px;}
.h3_c01052{height:98.314453px;}
.h2_c01052{height:106.353516px;}
.h4_c01052{height:121.546875px;}
.h5_c01052{height:129.143555px;}
.h1_c01052{height:1371.000000px;}
.h0_c01052{height:1371.075000px;}
.w2_c01052{width:104.875500px;}
.w0_c01052{width:869.925000px;}
.w1_c01052{width:870.000000px;}
.x0_c01052{left:0.000000px;}
.x7_c01052{left:23.400000px;}
.x5_c01052{left:26.100000px;}
.x4_c01052{left:28.350000px;}
.x6_c01052{left:30.000000px;}
.x3_c01052{left:31.050000px;}
.x2_c01052{left:32.100000px;}
.x1_c01052{left:33.750000px;}
.x8_c01052{left:36.900000px;}
.x9_c01052{left:285.450000px;}
.xa_c01052{left:386.776749px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls2_c01052{letter-spacing:0.000000pt;}
.ls1_c01052{letter-spacing:0.266667pt;}
.ls0_c01052{letter-spacing:9.290667pt;}
.ws1_c01052{word-spacing:-45.333333pt;}
.ws0_c01052{word-spacing:-17.994667pt;}
.ws2_c01052{word-spacing:0.000000pt;}
._33_c01052{margin-left:-45.824000pt;}
._34_c01052{margin-left:-28.160000pt;}
._29_c01052{margin-left:-26.869333pt;}
._3f_c01052{margin-left:-18.453333pt;}
._3a_c01052{margin-left:-16.970667pt;}
._40_c01052{margin-left:-15.658667pt;}
._3b_c01052{margin-left:-14.421333pt;}
._3c_c01052{margin-left:-13.056000pt;}
._2f_c01052{margin-left:-12.096000pt;}
._32_c01052{margin-left:-11.050667pt;}
._46_c01052{margin-left:-9.461333pt;}
._41_c01052{margin-left:-8.512000pt;}
._36_c01052{margin-left:-4.725333pt;}
._2e_c01052{margin-left:-3.285333pt;}
._b_c01052{margin-left:-2.240000pt;}
._18_c01052{margin-left:-1.322667pt;}
._f_c01052{width:0.970667pt;}
._10_c01052{width:1.866667pt;}
._9_c01052{width:3.136000pt;}
._8_c01052{width:4.704000pt;}
._1_c01052{width:6.346667pt;}
._1a_c01052{width:7.242667pt;}
._6_c01052{width:8.213333pt;}
._5_c01052{width:9.632000pt;}
._1d_c01052{width:10.528000pt;}
._0_c01052{width:11.573333pt;}
._4_c01052{width:12.469333pt;}
._7_c01052{width:13.365333pt;}
._d_c01052{width:14.858667pt;}
._3_c01052{width:15.829333pt;}
._1c_c01052{width:16.874667pt;}
._22_c01052{width:18.965333pt;}
._14_c01052{width:20.234667pt;}
._c_c01052{width:21.130667pt;}
._2c_c01052{width:23.520000pt;}
._2_c01052{width:24.938667pt;}
._1f_c01052{width:26.805333pt;}
._2d_c01052{width:28.693333pt;}
._25_c01052{width:29.866667pt;}
._a_c01052{width:30.762667pt;}
._2b_c01052{width:32.480000pt;}
._13_c01052{width:33.674667pt;}
._16_c01052{width:35.392000pt;}
._1e_c01052{width:36.512000pt;}
._28_c01052{width:37.706667pt;}
._30_c01052{width:38.826667pt;}
._e_c01052{width:41.216000pt;}
._20_c01052{width:42.560000pt;}
._27_c01052{width:43.456000pt;}
._15_c01052{width:45.248000pt;}
._2a_c01052{width:47.093333pt;}
._19_c01052{width:48.010667pt;}
._21_c01052{width:49.280000pt;}
._24_c01052{width:51.072000pt;}
._23_c01052{width:52.117333pt;}
._1b_c01052{width:53.984000pt;}
._42_c01052{width:56.640000pt;}
._44_c01052{width:58.762667pt;}
._39_c01052{width:60.426667pt;}
._38_c01052{width:63.840000pt;}
._3e_c01052{width:65.482667pt;}
._43_c01052{width:67.946667pt;}
._31_c01052{width:70.858667pt;}
._48_c01052{width:77.120000pt;}
._45_c01052{width:82.186667pt;}
._26_c01052{width:87.360000pt;}
._37_c01052{width:93.792000pt;}
._11_c01052{width:109.312000pt;}
._17_c01052{width:168.501333pt;}
._35_c01052{width:182.101333pt;}
._3d_c01052{width:206.037333pt;}
._47_c01052{width:295.488000pt;}
._12_c01052{width:367.658667pt;}
._4a_c01052{width:525.386667pt;}
._49_c01052{width:853.440000pt;}
.fs4_c01052{font-size:42.666667pt;}
.fs0_c01052{font-size:74.666667pt;}
.fs1_c01052{font-size:85.333333pt;}
.fs2_c01052{font-size:88.000000pt;}
.fs3_c01052{font-size:90.666667pt;}
.y0_c01052{bottom:0.000000pt;}
.y23_c01052{bottom:2.760000pt;}
.y22_c01052{bottom:6.425219pt;}
.y21_c01052{bottom:95.746667pt;}
.y20_c01052{bottom:217.213333pt;}
.y1f_c01052{bottom:248.413333pt;}
.y1e_c01052{bottom:279.613333pt;}
.y1d_c01052{bottom:309.880000pt;}
.y1c_c01052{bottom:339.613333pt;}
.y1b_c01052{bottom:369.880000pt;}
.y1a_c01052{bottom:399.613333pt;}
.y19_c01052{bottom:429.080000pt;}
.y18_c01052{bottom:459.613333pt;}
.y17_c01052{bottom:489.613333pt;}
.y16_c01052{bottom:519.080000pt;}
.y15_c01052{bottom:548.813333pt;}
.y14_c01052{bottom:579.613333pt;}
.y13_c01052{bottom:609.613333pt;}
.y12_c01052{bottom:639.080000pt;}
.y11_c01052{bottom:668.680000pt;}
.y10_c01052{bottom:699.346667pt;}
.yf_c01052{bottom:728.680000pt;}
.ye_c01052{bottom:758.146667pt;}
.yd_c01052{bottom:787.880000pt;}
.yc_c01052{bottom:817.613333pt;}
.yb_c01052{bottom:847.613333pt;}
.ya_c01052{bottom:877.213333pt;}
.y9_c01052{bottom:906.946667pt;}
.y8_c01052{bottom:936.946667pt;}
.y7_c01052{bottom:966.013333pt;}
.y6_c01052{bottom:994.813333pt;}
.y5_c01052{bottom:1024.280000pt;}
.y4_c01052{bottom:1054.013333pt;}
.y3_c01052{bottom:1084.546667pt;}
.y2_c01052{bottom:1113.080000pt;}
.y1_c01052{bottom:1142.813333pt;}
.h6_c01052{height:11.733399pt;}
.h7_c01052{height:38.937500pt;}
.h3_c01052{height:87.390625pt;}
.h2_c01052{height:94.536458pt;}
.h4_c01052{height:108.041667pt;}
.h5_c01052{height:114.794271pt;}
.h1_c01052{height:1218.666667pt;}
.h0_c01052{height:1218.733333pt;}
.w2_c01052{width:93.222667pt;}
.w0_c01052{width:773.266667pt;}
.w1_c01052{width:773.333333pt;}
.x0_c01052{left:0.000000pt;}
.x7_c01052{left:20.800000pt;}
.x5_c01052{left:23.200000pt;}
.x4_c01052{left:25.200000pt;}
.x6_c01052{left:26.666667pt;}
.x3_c01052{left:27.600000pt;}
.x2_c01052{left:28.533333pt;}
.x1_c01052{left:30.000000pt;}
.x8_c01052{left:32.800000pt;}
.x9_c01052{left:253.733333pt;}
.xa_c01052{left:343.801554pt;}
}





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

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_09289761d886c49bc2585854.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_c71c95e1652c3240aecf8619.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_cb226ccf1810809219e85f44.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;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_c01053;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01053{vertical-align:0.000000px;}
.ls2_c01053{letter-spacing:0.000000px;}
.ls0_c01053{letter-spacing:13.500000px;}
.ls1_c01053{letter-spacing:174.864000px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01053{word-spacing:-51.000000px;}
.ws2_c01053{word-spacing:0.000000px;}
.ws0_c01053{word-spacing:2.436000px;}
._40_c01053{margin-left:-82.272000px;}
._26_c01053{margin-left:-39.744000px;}
._24_c01053{margin-left:-29.664000px;}
._43_c01053{margin-left:-26.124000px;}
._3e_c01053{margin-left:-19.680000px;}
._28_c01053{margin-left:-16.704000px;}
._48_c01053{margin-left:-15.588000px;}
._3c_c01053{margin-left:-13.968000px;}
._33_c01053{margin-left:-12.120000px;}
._14_c01053{margin-left:-8.928000px;}
._44_c01053{margin-left:-7.392000px;}
._e_c01053{margin-left:-6.048000px;}
._10_c01053{margin-left:-4.752000px;}
._c_c01053{margin-left:-2.880000px;}
._b_c01053{margin-left:-1.584000px;}
._13_c01053{width:1.008000px;}
._7_c01053{width:2.160000px;}
._6_c01053{width:3.312000px;}
._5_c01053{width:5.040000px;}
._8_c01053{width:6.480000px;}
._2a_c01053{width:8.448000px;}
._2e_c01053{width:9.552000px;}
._a_c01053{width:10.944000px;}
._2c_c01053{width:12.600000px;}
._3a_c01053{width:13.896000px;}
._2d_c01053{width:14.952000px;}
._4d_c01053{width:16.776000px;}
._2f_c01053{width:17.808000px;}
._46_c01053{width:19.128000px;}
._4f_c01053{width:20.688000px;}
._21_c01053{width:21.696000px;}
._1_c01053{width:23.040000px;}
._3_c01053{width:24.912000px;}
._2_c01053{width:26.064000px;}
._0_c01053{width:28.224000px;}
._30_c01053{width:29.244000px;}
._35_c01053{width:30.720000px;}
._3f_c01053{width:31.776000px;}
._3b_c01053{width:32.880000px;}
._56_c01053{width:33.936000px;}
._42_c01053{width:35.460000px;}
._31_c01053{width:37.296000px;}
._54_c01053{width:38.988000px;}
._47_c01053{width:40.116000px;}
._32_c01053{width:41.244000px;}
._50_c01053{width:43.332000px;}
._52_c01053{width:44.568000px;}
._22_c01053{width:46.752000px;}
._38_c01053{width:48.156000px;}
._5a_c01053{width:50.256000px;}
._39_c01053{width:52.152000px;}
._58_c01053{width:54.492000px;}
._4a_c01053{width:56.232000px;}
._37_c01053{width:57.300000px;}
._59_c01053{width:58.380000px;}
._4e_c01053{width:59.712000px;}
._57_c01053{width:61.296000px;}
._4c_c01053{width:62.448000px;}
._53_c01053{width:65.424000px;}
._15_c01053{width:68.832000px;}
._4b_c01053{width:71.520000px;}
._1d_c01053{width:74.880000px;}
._55_c01053{width:76.272000px;}
._36_c01053{width:77.280000px;}
._f_c01053{width:80.784000px;}
._9_c01053{width:83.664000px;}
._41_c01053{width:85.512000px;}
._17_c01053{width:86.832000px;}
._16_c01053{width:89.568000px;}
._1f_c01053{width:91.440000px;}
._1e_c01053{width:93.744000px;}
._5b_c01053{width:97.752000px;}
._18_c01053{width:99.648000px;}
._4_c01053{width:102.384000px;}
._19_c01053{width:107.280000px;}
._1a_c01053{width:116.064000px;}
._11_c01053{width:123.264000px;}
._d_c01053{width:128.880000px;}
._12_c01053{width:132.192000px;}
._1b_c01053{width:147.312000px;}
._1c_c01053{width:167.328000px;}
._29_c01053{width:178.752000px;}
._49_c01053{width:183.840000px;}
._23_c01053{width:187.200000px;}
._45_c01053{width:195.408000px;}
._25_c01053{width:206.208000px;}
._3d_c01053{width:297.552000px;}
._27_c01053{width:355.248000px;}
._34_c01053{width:357.216000px;}
._5c_c01053{width:504.612000px;}
._2b_c01053{width:623.448000px;}
._20_c01053{width:742.464000px;}
._51_c01053{width:943.668000px;}
.fc2_c01053{color:transparent;}
.fc1_c01053{color:rgb(128,128,128);}
.fc0_c01053{color:rgb(0,0,0);}
.fs5_c01053{font-size:48.000000px;}
.fs2_c01053{font-size:84.000000px;}
.fs1_c01053{font-size:96.000000px;}
.fs3_c01053{font-size:99.000000px;}
.fs4_c01053{font-size:102.000000px;}
.fs0_c01053{font-size:144.000000px;}
.y0_c01053{bottom:0.000000px;}
.y22_c01053{bottom:3.105000px;}
.y21_c01053{bottom:7.228357px;}
.y20_c01053{bottom:107.730000px;}
.y1f_c01053{bottom:142.080000px;}
.y1e_c01053{bottom:176.130000px;}
.y1d_c01053{bottom:210.930000px;}
.y1c_c01053{bottom:243.330000px;}
.y1b_c01053{bottom:276.180000px;}
.y1a_c01053{bottom:309.180000px;}
.y19_c01053{bottom:340.530000px;}
.y18_c01053{bottom:376.980000px;}
.y17_c01053{bottom:412.530000px;}
.y16_c01053{bottom:446.880000px;}
.y15_c01053{bottom:481.230000px;}
.y14_c01053{bottom:514.080000px;}
.y13_c01053{bottom:548.130000px;}
.y12_c01053{bottom:581.880000px;}
.y11_c01053{bottom:615.630000px;}
.y10_c01053{bottom:649.380000px;}
.yf_c01053{bottom:683.430000px;}
.ye_c01053{bottom:716.580000px;}
.yd_c01053{bottom:750.030000px;}
.yc_c01053{bottom:783.330000px;}
.yb_c01053{bottom:817.380000px;}
.ya_c01053{bottom:850.830000px;}
.y9_c01053{bottom:882.630000px;}
.y8_c01053{bottom:977.430000px;}
.y7_c01053{bottom:995.580000px;}
.y6_c01053{bottom:1024.680000px;}
.y5_c01053{bottom:1075.980000px;}
.y4_c01053{bottom:1126.230000px;}
.y3_c01053{bottom:1177.230000px;}
.y2_c01053{bottom:1226.580000px;}
.y1_c01053{bottom:1276.380000px;}
.h6_c01053{height:13.200074px;}
.h7_c01053{height:43.804688px;}
.h5_c01053{height:98.314453px;}
.h4_c01053{height:106.353516px;}
.h3_c01053{height:121.546875px;}
.h2_c01053{height:182.320312px;}
.h0_c01053{height:1382.700000px;}
.h1_c01053{height:1383.000000px;}
.w2_c01053{width:104.875500px;}
.w0_c01053{width:863.175000px;}
.w1_c01053{width:863.250000px;}
.x0_c01053{left:0.000000px;}
.xf_c01053{left:11.100000px;}
.x10_c01053{left:12.150000px;}
.xe_c01053{left:31.050000px;}
.xd_c01053{left:41.250000px;}
.x9_c01053{left:123.300000px;}
.xa_c01053{left:160.650000px;}
.xb_c01053{left:224.400000px;}
.x1_c01053{left:225.900000px;}
.x2_c01053{left:227.550000px;}
.x8_c01053{left:228.600000px;}
.xc_c01053{left:229.800000px;}
.x12_c01053{left:231.300000px;}
.x11_c01053{left:232.500000px;}
.x3_c01053{left:305.400000px;}
.x13_c01053{left:383.401749px;}
.x4_c01053{left:414.450000px;}
.x5_c01053{left:468.000000px;}
.x6_c01053{left:485.700000px;}
.x7_c01053{left:486.750000px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls2_c01053{letter-spacing:0.000000pt;}
.ls0_c01053{letter-spacing:12.000000pt;}
.ls1_c01053{letter-spacing:155.434667pt;}
.ws1_c01053{word-spacing:-45.333333pt;}
.ws2_c01053{word-spacing:0.000000pt;}
.ws0_c01053{word-spacing:2.165333pt;}
._40_c01053{margin-left:-73.130667pt;}
._26_c01053{margin-left:-35.328000pt;}
._24_c01053{margin-left:-26.368000pt;}
._43_c01053{margin-left:-23.221333pt;}
._3e_c01053{margin-left:-17.493333pt;}
._28_c01053{margin-left:-14.848000pt;}
._48_c01053{margin-left:-13.856000pt;}
._3c_c01053{margin-left:-12.416000pt;}
._33_c01053{margin-left:-10.773333pt;}
._14_c01053{margin-left:-7.936000pt;}
._44_c01053{margin-left:-6.570667pt;}
._e_c01053{margin-left:-5.376000pt;}
._10_c01053{margin-left:-4.224000pt;}
._c_c01053{margin-left:-2.560000pt;}
._b_c01053{margin-left:-1.408000pt;}
._13_c01053{width:0.896000pt;}
._7_c01053{width:1.920000pt;}
._6_c01053{width:2.944000pt;}
._5_c01053{width:4.480000pt;}
._8_c01053{width:5.760000pt;}
._2a_c01053{width:7.509333pt;}
._2e_c01053{width:8.490667pt;}
._a_c01053{width:9.728000pt;}
._2c_c01053{width:11.200000pt;}
._3a_c01053{width:12.352000pt;}
._2d_c01053{width:13.290667pt;}
._4d_c01053{width:14.912000pt;}
._2f_c01053{width:15.829333pt;}
._46_c01053{width:17.002667pt;}
._4f_c01053{width:18.389333pt;}
._21_c01053{width:19.285333pt;}
._1_c01053{width:20.480000pt;}
._3_c01053{width:22.144000pt;}
._2_c01053{width:23.168000pt;}
._0_c01053{width:25.088000pt;}
._30_c01053{width:25.994667pt;}
._35_c01053{width:27.306667pt;}
._3f_c01053{width:28.245333pt;}
._3b_c01053{width:29.226667pt;}
._56_c01053{width:30.165333pt;}
._42_c01053{width:31.520000pt;}
._31_c01053{width:33.152000pt;}
._54_c01053{width:34.656000pt;}
._47_c01053{width:35.658667pt;}
._32_c01053{width:36.661333pt;}
._50_c01053{width:38.517333pt;}
._52_c01053{width:39.616000pt;}
._22_c01053{width:41.557333pt;}
._38_c01053{width:42.805333pt;}
._5a_c01053{width:44.672000pt;}
._39_c01053{width:46.357333pt;}
._58_c01053{width:48.437333pt;}
._4a_c01053{width:49.984000pt;}
._37_c01053{width:50.933333pt;}
._59_c01053{width:51.893333pt;}
._4e_c01053{width:53.077333pt;}
._57_c01053{width:54.485333pt;}
._4c_c01053{width:55.509333pt;}
._53_c01053{width:58.154667pt;}
._15_c01053{width:61.184000pt;}
._4b_c01053{width:63.573333pt;}
._1d_c01053{width:66.560000pt;}
._55_c01053{width:67.797333pt;}
._36_c01053{width:68.693333pt;}
._f_c01053{width:71.808000pt;}
._9_c01053{width:74.368000pt;}
._41_c01053{width:76.010667pt;}
._17_c01053{width:77.184000pt;}
._16_c01053{width:79.616000pt;}
._1f_c01053{width:81.280000pt;}
._1e_c01053{width:83.328000pt;}
._5b_c01053{width:86.890667pt;}
._18_c01053{width:88.576000pt;}
._4_c01053{width:91.008000pt;}
._19_c01053{width:95.360000pt;}
._1a_c01053{width:103.168000pt;}
._11_c01053{width:109.568000pt;}
._d_c01053{width:114.560000pt;}
._12_c01053{width:117.504000pt;}
._1b_c01053{width:130.944000pt;}
._1c_c01053{width:148.736000pt;}
._29_c01053{width:158.890667pt;}
._49_c01053{width:163.413333pt;}
._23_c01053{width:166.400000pt;}
._45_c01053{width:173.696000pt;}
._25_c01053{width:183.296000pt;}
._3d_c01053{width:264.490667pt;}
._27_c01053{width:315.776000pt;}
._34_c01053{width:317.525333pt;}
._5c_c01053{width:448.544000pt;}
._2b_c01053{width:554.176000pt;}
._20_c01053{width:659.968000pt;}
._51_c01053{width:838.816000pt;}
.fs5_c01053{font-size:42.666667pt;}
.fs2_c01053{font-size:74.666667pt;}
.fs1_c01053{font-size:85.333333pt;}
.fs3_c01053{font-size:88.000000pt;}
.fs4_c01053{font-size:90.666667pt;}
.fs0_c01053{font-size:128.000000pt;}
.y0_c01053{bottom:0.000000pt;}
.y22_c01053{bottom:2.760000pt;}
.y21_c01053{bottom:6.425206pt;}
.y20_c01053{bottom:95.760000pt;}
.y1f_c01053{bottom:126.293333pt;}
.y1e_c01053{bottom:156.560000pt;}
.y1d_c01053{bottom:187.493333pt;}
.y1c_c01053{bottom:216.293333pt;}
.y1b_c01053{bottom:245.493333pt;}
.y1a_c01053{bottom:274.826667pt;}
.y19_c01053{bottom:302.693333pt;}
.y18_c01053{bottom:335.093333pt;}
.y17_c01053{bottom:366.693333pt;}
.y16_c01053{bottom:397.226667pt;}
.y15_c01053{bottom:427.760000pt;}
.y14_c01053{bottom:456.960000pt;}
.y13_c01053{bottom:487.226667pt;}
.y12_c01053{bottom:517.226667pt;}
.y11_c01053{bottom:547.226667pt;}
.y10_c01053{bottom:577.226667pt;}
.yf_c01053{bottom:607.493333pt;}
.ye_c01053{bottom:636.960000pt;}
.yd_c01053{bottom:666.693333pt;}
.yc_c01053{bottom:696.293333pt;}
.yb_c01053{bottom:726.560000pt;}
.ya_c01053{bottom:756.293333pt;}
.y9_c01053{bottom:784.560000pt;}
.y8_c01053{bottom:868.826667pt;}
.y7_c01053{bottom:884.960000pt;}
.y6_c01053{bottom:910.826667pt;}
.y5_c01053{bottom:956.426667pt;}
.y4_c01053{bottom:1001.093333pt;}
.y3_c01053{bottom:1046.426667pt;}
.y2_c01053{bottom:1090.293333pt;}
.y1_c01053{bottom:1134.560000pt;}
.h6_c01053{height:11.733399pt;}
.h7_c01053{height:38.937500pt;}
.h5_c01053{height:87.390625pt;}
.h4_c01053{height:94.536458pt;}
.h3_c01053{height:108.041667pt;}
.h2_c01053{height:162.062500pt;}
.h0_c01053{height:1229.066667pt;}
.h1_c01053{height:1229.333333pt;}
.w2_c01053{width:93.222667pt;}
.w0_c01053{width:767.266667pt;}
.w1_c01053{width:767.333333pt;}
.x0_c01053{left:0.000000pt;}
.xf_c01053{left:9.866667pt;}
.x10_c01053{left:10.800000pt;}
.xe_c01053{left:27.600000pt;}
.xd_c01053{left:36.666667pt;}
.x9_c01053{left:109.600000pt;}
.xa_c01053{left:142.800000pt;}
.xb_c01053{left:199.466667pt;}
.x1_c01053{left:200.800000pt;}
.x2_c01053{left:202.266667pt;}
.x8_c01053{left:203.200000pt;}
.xc_c01053{left:204.266667pt;}
.x12_c01053{left:205.600000pt;}
.x11_c01053{left:206.666667pt;}
.x3_c01053{left:271.466667pt;}
.x13_c01053{left:340.801554pt;}
.x4_c01053{left:368.400000pt;}
.x5_c01053{left:416.000000pt;}
.x6_c01053{left:431.733333pt;}
.x7_c01053{left:432.666667pt;}
}





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

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_701c6be2da568085e24b8845.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_86db1dd9d68a24e26d1ec536.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.ls0_c01054{letter-spacing:0.000000px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01054{word-spacing:-23.136000px;}
.ws1_c01054{word-spacing:0.000000px;}
._39_c01054{margin-left:-84.000000px;}
._4a_c01054{margin-left:-46.023000px;}
._4f_c01054{margin-left:-31.500000px;}
._1c_c01054{margin-left:-24.480000px;}
._1e_c01054{margin-left:-22.176000px;}
._1f_c01054{margin-left:-18.576000px;}
._37_c01054{margin-left:-16.812000px;}
._1d_c01054{margin-left:-14.400000px;}
._34_c01054{margin-left:-11.808000px;}
._21_c01054{margin-left:-10.656000px;}
._22_c01054{margin-left:-8.928000px;}
._25_c01054{margin-left:-7.920000px;}
._11_c01054{margin-left:-6.480000px;}
._a_c01054{margin-left:-4.464000px;}
._c_c01054{margin-left:-3.456000px;}
._e_c01054{margin-left:-1.872000px;}
._9_c01054{width:1.152000px;}
._17_c01054{width:2.448000px;}
._16_c01054{width:3.600000px;}
._31_c01054{width:4.752000px;}
._15_c01054{width:6.336000px;}
._2_c01054{width:7.344000px;}
._6_c01054{width:9.072000px;}
._5_c01054{width:10.368000px;}
._1_c01054{width:12.192000px;}
._0_c01054{width:13.728000px;}
._3d_c01054{width:14.856000px;}
._3_c01054{width:15.888000px;}
._29_c01054{width:16.992000px;}
._36_c01054{width:18.060000px;}
._2f_c01054{width:22.176000px;}
._13_c01054{width:23.568000px;}
._46_c01054{width:25.452000px;}
._2a_c01054{width:26.640000px;}
._2e_c01054{width:29.052000px;}
._3c_c01054{width:30.384000px;}
._45_c01054{width:32.136000px;}
._2d_c01054{width:33.336000px;}
._4c_c01054{width:34.824000px;}
._8_c01054{width:37.152000px;}
._3f_c01054{width:38.988000px;}
._40_c01054{width:42.000000px;}
._38_c01054{width:44.244000px;}
._47_c01054{width:45.720000px;}
._42_c01054{width:47.064000px;}
._35_c01054{width:48.432000px;}
._4e_c01054{width:50.328000px;}
._2b_c01054{width:51.408000px;}
._41_c01054{width:52.692000px;}
._48_c01054{width:53.928000px;}
._3e_c01054{width:55.056000px;}
._30_c01054{width:56.172000px;}
._4b_c01054{width:57.852000px;}
._7_c01054{width:59.616000px;}
._24_c01054{width:61.200000px;}
._4_c01054{width:63.360000px;}
._43_c01054{width:64.968000px;}
._b_c01054{width:66.960000px;}
._44_c01054{width:68.172000px;}
._f_c01054{width:70.704000px;}
._49_c01054{width:72.348000px;}
._1a_c01054{width:75.312000px;}
._26_c01054{width:83.088000px;}
._4d_c01054{width:84.324000px;}
._28_c01054{width:85.680000px;}
._14_c01054{width:87.888000px;}
._18_c01054{width:92.016000px;}
._10_c01054{width:93.888000px;}
._23_c01054{width:96.192000px;}
._d_c01054{width:98.496000px;}
._27_c01054{width:100.488000px;}
._19_c01054{width:104.976000px;}
._20_c01054{width:113.184000px;}
._1b_c01054{width:115.344000px;}
._12_c01054{width:138.960000px;}
._33_c01054{width:143.736000px;}
._51_c01054{width:163.776000px;}
._52_c01054{width:183.888000px;}
._2c_c01054{width:190.740000px;}
._32_c01054{width:226.656000px;}
._3b_c01054{width:231.384000px;}
._3a_c01054{width:586.752000px;}
._50_c01054{width:937.056000px;}
.fc2_c01054{color:transparent;}
.fc1_c01054{color:rgb(128,128,128);}
.fc0_c01054{color:rgb(0,0,0);}
.fs4_c01054{font-size:48.000000px;}
.fs2_c01054{font-size:84.000000px;}
.fs3_c01054{font-size:87.000000px;}
.fs0_c01054{font-size:96.000000px;}
.fs1_c01054{font-size:144.000000px;}
.y0_c01054{bottom:0.000000px;}
.y1f_c01054{bottom:3.105000px;}
.y1e_c01054{bottom:7.228369px;}
.y1d_c01054{bottom:189.270000px;}
.y1c_c01054{bottom:226.470000px;}
.y1b_c01054{bottom:261.120000px;}
.y1a_c01054{bottom:294.870000px;}
.y19_c01054{bottom:329.070000px;}
.y18_c01054{bottom:362.820000px;}
.y17_c01054{bottom:386.670000px;}
.y16_c01054{bottom:397.170000px;}
.y15_c01054{bottom:430.620000px;}
.y14_c01054{bottom:464.070000px;}
.y13_c01054{bottom:497.370000px;}
.y12_c01054{bottom:531.570000px;}
.y11_c01054{bottom:565.620000px;}
.y10_c01054{bottom:599.070000px;}
.yf_c01054{bottom:632.520000px;}
.ye_c01054{bottom:666.270000px;}
.yd_c01054{bottom:699.570000px;}
.yc_c01054{bottom:732.270000px;}
.yb_c01054{bottom:766.770000px;}
.ya_c01054{bottom:799.920000px;}
.y9_c01054{bottom:831.570000px;}
.y8_c01054{bottom:922.770000px;}
.y7_c01054{bottom:973.020000px;}
.y6_c01054{bottom:1022.520000px;}
.y5_c01054{bottom:1072.620000px;}
.y4_c01054{bottom:1122.120000px;}
.y3_c01054{bottom:1171.770000px;}
.y2_c01054{bottom:1221.420000px;}
.y1_c01054{bottom:1299.420000px;}
.h7_c01054{height:13.200073px;}
.h8_c01054{height:43.804688px;}
.h4_c01054{height:98.314453px;}
.h5_c01054{height:106.353516px;}
.h6_c01054{height:110.151855px;}
.h2_c01054{height:121.546875px;}
.h3_c01054{height:182.320312px;}
.h0_c01054{height:1356.450000px;}
.h1_c01054{height:1356.750000px;}
.w2_c01054{width:104.875500px;}
.w0_c01054{width:860.775000px;}
.w1_c01054{width:861.000000px;}
.x0_c01054{left:0.000000px;}
.xf_c01054{left:30.000000px;}
.xc_c01054{left:31.500000px;}
.xb_c01054{left:33.150000px;}
.xd_c01054{left:36.900000px;}
.xe_c01054{left:38.550000px;}
.xa_c01054{left:39.750000px;}
.x11_c01054{left:40.800000px;}
.x12_c01054{left:41.850000px;}
.x3_c01054{left:44.100000px;}
.x2_c01054{left:46.950000px;}
.x7_c01054{left:90.900000px;}
.x9_c01054{left:132.000000px;}
.x4_c01054{left:171.000000px;}
.x8_c01054{left:201.150000px;}
.x5_c01054{left:208.800000px;}
.x6_c01054{left:287.100000px;}
.x13_c01054{left:382.201721px;}
.x10_c01054{left:519.450000px;}
.x1_c01054{left:529.200000px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls0_c01054{letter-spacing:0.000000pt;}
.ws0_c01054{word-spacing:-20.565333pt;}
.ws1_c01054{word-spacing:0.000000pt;}
._39_c01054{margin-left:-74.666667pt;}
._4a_c01054{margin-left:-40.909333pt;}
._4f_c01054{margin-left:-28.000000pt;}
._1c_c01054{margin-left:-21.760000pt;}
._1e_c01054{margin-left:-19.712000pt;}
._1f_c01054{margin-left:-16.512000pt;}
._37_c01054{margin-left:-14.944000pt;}
._1d_c01054{margin-left:-12.800000pt;}
._34_c01054{margin-left:-10.496000pt;}
._21_c01054{margin-left:-9.472000pt;}
._22_c01054{margin-left:-7.936000pt;}
._25_c01054{margin-left:-7.040000pt;}
._11_c01054{margin-left:-5.760000pt;}
._a_c01054{margin-left:-3.968000pt;}
._c_c01054{margin-left:-3.072000pt;}
._e_c01054{margin-left:-1.664000pt;}
._9_c01054{width:1.024000pt;}
._17_c01054{width:2.176000pt;}
._16_c01054{width:3.200000pt;}
._31_c01054{width:4.224000pt;}
._15_c01054{width:5.632000pt;}
._2_c01054{width:6.528000pt;}
._6_c01054{width:8.064000pt;}
._5_c01054{width:9.216000pt;}
._1_c01054{width:10.837333pt;}
._0_c01054{width:12.202667pt;}
._3d_c01054{width:13.205333pt;}
._3_c01054{width:14.122667pt;}
._29_c01054{width:15.104000pt;}
._36_c01054{width:16.053333pt;}
._2f_c01054{width:19.712000pt;}
._13_c01054{width:20.949333pt;}
._46_c01054{width:22.624000pt;}
._2a_c01054{width:23.680000pt;}
._2e_c01054{width:25.824000pt;}
._3c_c01054{width:27.008000pt;}
._45_c01054{width:28.565333pt;}
._2d_c01054{width:29.632000pt;}
._4c_c01054{width:30.954667pt;}
._8_c01054{width:33.024000pt;}
._3f_c01054{width:34.656000pt;}
._40_c01054{width:37.333333pt;}
._38_c01054{width:39.328000pt;}
._47_c01054{width:40.640000pt;}
._42_c01054{width:41.834667pt;}
._35_c01054{width:43.050667pt;}
._4e_c01054{width:44.736000pt;}
._2b_c01054{width:45.696000pt;}
._41_c01054{width:46.837333pt;}
._48_c01054{width:47.936000pt;}
._3e_c01054{width:48.938667pt;}
._30_c01054{width:49.930667pt;}
._4b_c01054{width:51.424000pt;}
._7_c01054{width:52.992000pt;}
._24_c01054{width:54.400000pt;}
._4_c01054{width:56.320000pt;}
._43_c01054{width:57.749333pt;}
._b_c01054{width:59.520000pt;}
._44_c01054{width:60.597333pt;}
._f_c01054{width:62.848000pt;}
._49_c01054{width:64.309333pt;}
._1a_c01054{width:66.944000pt;}
._26_c01054{width:73.856000pt;}
._4d_c01054{width:74.954667pt;}
._28_c01054{width:76.160000pt;}
._14_c01054{width:78.122667pt;}
._18_c01054{width:81.792000pt;}
._10_c01054{width:83.456000pt;}
._23_c01054{width:85.504000pt;}
._d_c01054{width:87.552000pt;}
._27_c01054{width:89.322667pt;}
._19_c01054{width:93.312000pt;}
._20_c01054{width:100.608000pt;}
._1b_c01054{width:102.528000pt;}
._12_c01054{width:123.520000pt;}
._33_c01054{width:127.765333pt;}
._51_c01054{width:145.578667pt;}
._52_c01054{width:163.456000pt;}
._2c_c01054{width:169.546667pt;}
._32_c01054{width:201.472000pt;}
._3b_c01054{width:205.674667pt;}
._3a_c01054{width:521.557333pt;}
._50_c01054{width:832.938667pt;}
.fs4_c01054{font-size:42.666667pt;}
.fs2_c01054{font-size:74.666667pt;}
.fs3_c01054{font-size:77.333333pt;}
.fs0_c01054{font-size:85.333333pt;}
.fs1_c01054{font-size:128.000000pt;}
.y0_c01054{bottom:0.000000pt;}
.y1f_c01054{bottom:2.760000pt;}
.y1e_c01054{bottom:6.425217pt;}
.y1d_c01054{bottom:168.240000pt;}
.y1c_c01054{bottom:201.306667pt;}
.y1b_c01054{bottom:232.106667pt;}
.y1a_c01054{bottom:262.106667pt;}
.y19_c01054{bottom:292.506667pt;}
.y18_c01054{bottom:322.506667pt;}
.y17_c01054{bottom:343.706667pt;}
.y16_c01054{bottom:353.040000pt;}
.y15_c01054{bottom:382.773333pt;}
.y14_c01054{bottom:412.506667pt;}
.y13_c01054{bottom:442.106667pt;}
.y12_c01054{bottom:472.506667pt;}
.y11_c01054{bottom:502.773333pt;}
.y10_c01054{bottom:532.506667pt;}
.yf_c01054{bottom:562.240000pt;}
.ye_c01054{bottom:592.240000pt;}
.yd_c01054{bottom:621.840000pt;}
.yc_c01054{bottom:650.906667pt;}
.yb_c01054{bottom:681.573333pt;}
.ya_c01054{bottom:711.040000pt;}
.y9_c01054{bottom:739.173333pt;}
.y8_c01054{bottom:820.240000pt;}
.y7_c01054{bottom:864.906667pt;}
.y6_c01054{bottom:908.906667pt;}
.y5_c01054{bottom:953.440000pt;}
.y4_c01054{bottom:997.440000pt;}
.y3_c01054{bottom:1041.573333pt;}
.y2_c01054{bottom:1085.706667pt;}
.y1_c01054{bottom:1155.040000pt;}
.h7_c01054{height:11.733399pt;}
.h8_c01054{height:38.937500pt;}
.h4_c01054{height:87.390625pt;}
.h5_c01054{height:94.536458pt;}
.h6_c01054{height:97.912760pt;}
.h2_c01054{height:108.041667pt;}
.h3_c01054{height:162.062500pt;}
.h0_c01054{height:1205.733333pt;}
.h1_c01054{height:1206.000000pt;}
.w2_c01054{width:93.222667pt;}
.w0_c01054{width:765.133333pt;}
.w1_c01054{width:765.333333pt;}
.x0_c01054{left:0.000000pt;}
.xf_c01054{left:26.666667pt;}
.xc_c01054{left:28.000000pt;}
.xb_c01054{left:29.466667pt;}
.xd_c01054{left:32.800000pt;}
.xe_c01054{left:34.266667pt;}
.xa_c01054{left:35.333333pt;}
.x11_c01054{left:36.266667pt;}
.x12_c01054{left:37.200000pt;}
.x3_c01054{left:39.200000pt;}
.x2_c01054{left:41.733333pt;}
.x7_c01054{left:80.800000pt;}
.x9_c01054{left:117.333333pt;}
.x4_c01054{left:152.000000pt;}
.x8_c01054{left:178.800000pt;}
.x5_c01054{left:185.600000pt;}
.x6_c01054{left:255.200000pt;}
.x13_c01054{left:339.734863pt;}
.x10_c01054{left:461.733333pt;}
.x1_c01054{left:470.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_c01055 {
    display:none;
  }
  .loading-indicator_c01055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01055 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01055 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01055" -> "#page-container .classname_c01055")
 */
.pf_c01055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01055 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01055 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01055 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01055 {overflow:visible;}
  }
}
.c_c01055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01055 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01055:after { /* webkit #35443 */
  content: '';
}
.t_c01055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01055 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01055 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01055 { /* info for Javascript */
  display:none;
}
.l_c01055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_3a3d6845c4a4be1a6dc94681.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_6f85901b376144e7cf8bdb3f.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_fc6d49b96012958f0a5e7562.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01055;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls3_c01055{letter-spacing:0.000000px;}
.ls2_c01055{letter-spacing:3.000000px;}
.ls0_c01055{letter-spacing:7.800000px;}
.ls1_c01055{letter-spacing:17.064000px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01055{word-spacing:-51.000000px;}
.ws0_c01055{word-spacing:-23.136000px;}
.ws3_c01055{word-spacing:-20.352000px;}
.ws2_c01055{word-spacing:-20.244000px;}
.ws4_c01055{word-spacing:0.000000px;}
._1c_c01055{margin-left:-78.624000px;}
._4_c01055{margin-left:-42.528000px;}
._6_c01055{margin-left:-24.864000px;}
._40_c01055{margin-left:-19.848000px;}
._3d_c01055{margin-left:-16.980000px;}
._30_c01055{margin-left:-13.944000px;}
._5_c01055{margin-left:-7.800000px;}
._24_c01055{margin-left:-1.512000px;}
._11_c01055{width:1.008000px;}
._1_c01055{width:2.016000px;}
._15_c01055{width:3.108000px;}
._f_c01055{width:4.176000px;}
._0_c01055{width:5.568000px;}
._20_c01055{width:6.888000px;}
._2_c01055{width:8.064000px;}
._a_c01055{width:9.084000px;}
._8_c01055{width:10.464000px;}
._c_c01055{width:11.760000px;}
._d_c01055{width:12.996000px;}
._1e_c01055{width:14.880000px;}
._9_c01055{width:15.960000px;}
._21_c01055{width:17.652000px;}
._3_c01055{width:19.104000px;}
._29_c01055{width:21.924000px;}
._1f_c01055{width:24.048000px;}
._2a_c01055{width:25.440000px;}
._25_c01055{width:26.544000px;}
._16_c01055{width:27.600000px;}
._18_c01055{width:28.836000px;}
._26_c01055{width:30.132000px;}
._22_c01055{width:31.200000px;}
._36_c01055{width:32.448000px;}
._19_c01055{width:33.576000px;}
._12_c01055{width:34.860000px;}
._23_c01055{width:35.904000px;}
._17_c01055{width:37.656000px;}
._1a_c01055{width:39.708000px;}
._14_c01055{width:41.520000px;}
._2f_c01055{width:43.644000px;}
._27_c01055{width:45.504000px;}
._10_c01055{width:47.460000px;}
._32_c01055{width:49.704000px;}
._2c_c01055{width:52.044000px;}
._34_c01055{width:53.760000px;}
._35_c01055{width:54.768000px;}
._e_c01055{width:56.532000px;}
._2e_c01055{width:57.984000px;}
._13_c01055{width:60.120000px;}
._3f_c01055{width:61.716000px;}
._37_c01055{width:65.256000px;}
._39_c01055{width:69.948000px;}
._33_c01055{width:71.460000px;}
._31_c01055{width:80.916000px;}
._28_c01055{width:84.348000px;}
._38_c01055{width:98.124000px;}
._b_c01055{width:116.292000px;}
._1d_c01055{width:119.280000px;}
._7_c01055{width:159.168000px;}
._2b_c01055{width:176.604000px;}
._3a_c01055{width:197.016000px;}
._2d_c01055{width:215.796000px;}
._1b_c01055{width:320.628000px;}
._3e_c01055{width:341.064000px;}
._3c_c01055{width:476.088000px;}
._3b_c01055{width:869.712000px;}
.fc2_c01055{color:transparent;}
.fc1_c01055{color:rgb(128,128,128);}
.fc0_c01055{color:rgb(0,0,0);}
.fs5_c01055{font-size:48.000000px;}
.fs3_c01055{font-size:60.000000px;}
.fs4_c01055{font-size:72.000000px;}
.fs2_c01055{font-size:84.000000px;}
.fs0_c01055{font-size:96.000000px;}
.fs1_c01055{font-size:102.000000px;}
.y0_c01055{bottom:0.000000px;}
.y26_c01055{bottom:3.105000px;}
.y25_c01055{bottom:7.228357px;}
.y24_c01055{bottom:89.730000px;}
.y23_c01055{bottom:121.230000px;}
.y22_c01055{bottom:154.980000px;}
.y21_c01055{bottom:188.280000px;}
.y20_c01055{bottom:223.080000px;}
.y1f_c01055{bottom:256.530000px;}
.y1e_c01055{bottom:290.280000px;}
.y1d_c01055{bottom:325.080000px;}
.y1c_c01055{bottom:359.130000px;}
.y1b_c01055{bottom:392.880000px;}
.y1a_c01055{bottom:426.630000px;}
.y19_c01055{bottom:460.380000px;}
.y18_c01055{bottom:493.830000px;}
.y17_c01055{bottom:527.880000px;}
.y16_c01055{bottom:561.930000px;}
.y15_c01055{bottom:594.780000px;}
.y14_c01055{bottom:628.380000px;}
.y13_c01055{bottom:662.130000px;}
.y12_c01055{bottom:696.330000px;}
.y11_c01055{bottom:729.030000px;}
.y10_c01055{bottom:762.180000px;}
.yf_c01055{bottom:807.030000px;}
.ye_c01055{bottom:839.730000px;}
.yd_c01055{bottom:873.780000px;}
.yc_c01055{bottom:902.430000px;}
.yb_c01055{bottom:925.080000px;}
.ya_c01055{bottom:958.530000px;}
.y9_c01055{bottom:991.680000px;}
.y8_c01055{bottom:1024.680000px;}
.y7_c01055{bottom:1058.430000px;}
.y6_c01055{bottom:1091.880000px;}
.y5_c01055{bottom:1125.630000px;}
.y4_c01055{bottom:1158.930000px;}
.y3_c01055{bottom:1192.380000px;}
.y2_c01055{bottom:1225.230000px;}
.y1_c01055{bottom:1256.880000px;}
.h6_c01055{height:13.200074px;}
.h7_c01055{height:43.804688px;}
.h5_c01055{height:75.966797px;}
.h4_c01055{height:98.314453px;}
.h3_c01055{height:106.353516px;}
.h2_c01055{height:121.546875px;}
.h0_c01055{height:1362.450000px;}
.h1_c01055{height:1362.750000px;}
.w2_c01055{width:104.875500px;}
.w1_c01055{width:849.750000px;}
.w0_c01055{width:849.975000px;}
.x0_c01055{left:0.000000px;}
.xd_c01055{left:224.850000px;}
.xb_c01055{left:227.550000px;}
.xf_c01055{left:228.600000px;}
.x2_c01055{left:229.800000px;}
.xc_c01055{left:232.500000px;}
.xe_c01055{left:233.550000px;}
.x1_c01055{left:234.600000px;}
.x11_c01055{left:235.650000px;}
.x12_c01055{left:237.900000px;}
.x13_c01055{left:240.000000px;}
.x9_c01055{left:264.300000px;}
.xa_c01055{left:268.650000px;}
.x10_c01055{left:284.850000px;}
.x8_c01055{left:322.650000px;}
.x3_c01055{left:333.450000px;}
.x4_c01055{left:335.100000px;}
.x6_c01055{left:337.200000px;}
.x5_c01055{left:338.400000px;}
.x15_c01055{left:376.801758px;}
.x7_c01055{left:429.000000px;}
.x14_c01055{left:769.200000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls3_c01055{letter-spacing:0.000000pt;}
.ls2_c01055{letter-spacing:2.666667pt;}
.ls0_c01055{letter-spacing:6.933333pt;}
.ls1_c01055{letter-spacing:15.168000pt;}
.ws1_c01055{word-spacing:-45.333333pt;}
.ws0_c01055{word-spacing:-20.565333pt;}
.ws3_c01055{word-spacing:-18.090667pt;}
.ws2_c01055{word-spacing:-17.994667pt;}
.ws4_c01055{word-spacing:0.000000pt;}
._1c_c01055{margin-left:-69.888000pt;}
._4_c01055{margin-left:-37.802667pt;}
._6_c01055{margin-left:-22.101333pt;}
._40_c01055{margin-left:-17.642667pt;}
._3d_c01055{margin-left:-15.093333pt;}
._30_c01055{margin-left:-12.394667pt;}
._5_c01055{margin-left:-6.933333pt;}
._24_c01055{margin-left:-1.344000pt;}
._11_c01055{width:0.896000pt;}
._1_c01055{width:1.792000pt;}
._15_c01055{width:2.762667pt;}
._f_c01055{width:3.712000pt;}
._0_c01055{width:4.949333pt;}
._20_c01055{width:6.122667pt;}
._2_c01055{width:7.168000pt;}
._a_c01055{width:8.074667pt;}
._8_c01055{width:9.301333pt;}
._c_c01055{width:10.453333pt;}
._d_c01055{width:11.552000pt;}
._1e_c01055{width:13.226667pt;}
._9_c01055{width:14.186667pt;}
._21_c01055{width:15.690667pt;}
._3_c01055{width:16.981333pt;}
._29_c01055{width:19.488000pt;}
._1f_c01055{width:21.376000pt;}
._2a_c01055{width:22.613333pt;}
._25_c01055{width:23.594667pt;}
._16_c01055{width:24.533333pt;}
._18_c01055{width:25.632000pt;}
._26_c01055{width:26.784000pt;}
._22_c01055{width:27.733333pt;}
._36_c01055{width:28.842667pt;}
._19_c01055{width:29.845333pt;}
._12_c01055{width:30.986667pt;}
._23_c01055{width:31.914667pt;}
._17_c01055{width:33.472000pt;}
._1a_c01055{width:35.296000pt;}
._14_c01055{width:36.906667pt;}
._2f_c01055{width:38.794667pt;}
._27_c01055{width:40.448000pt;}
._10_c01055{width:42.186667pt;}
._32_c01055{width:44.181333pt;}
._2c_c01055{width:46.261333pt;}
._34_c01055{width:47.786667pt;}
._35_c01055{width:48.682667pt;}
._e_c01055{width:50.250667pt;}
._2e_c01055{width:51.541333pt;}
._13_c01055{width:53.440000pt;}
._3f_c01055{width:54.858667pt;}
._37_c01055{width:58.005333pt;}
._39_c01055{width:62.176000pt;}
._33_c01055{width:63.520000pt;}
._31_c01055{width:71.925333pt;}
._28_c01055{width:74.976000pt;}
._38_c01055{width:87.221333pt;}
._b_c01055{width:103.370667pt;}
._1d_c01055{width:106.026667pt;}
._7_c01055{width:141.482667pt;}
._2b_c01055{width:156.981333pt;}
._3a_c01055{width:175.125333pt;}
._2d_c01055{width:191.818667pt;}
._1b_c01055{width:285.002667pt;}
._3e_c01055{width:303.168000pt;}
._3c_c01055{width:423.189333pt;}
._3b_c01055{width:773.077333pt;}
.fs5_c01055{font-size:42.666667pt;}
.fs3_c01055{font-size:53.333333pt;}
.fs4_c01055{font-size:64.000000pt;}
.fs2_c01055{font-size:74.666667pt;}
.fs0_c01055{font-size:85.333333pt;}
.fs1_c01055{font-size:90.666667pt;}
.y0_c01055{bottom:0.000000pt;}
.y26_c01055{bottom:2.760000pt;}
.y25_c01055{bottom:6.425206pt;}
.y24_c01055{bottom:79.760000pt;}
.y23_c01055{bottom:107.760000pt;}
.y22_c01055{bottom:137.760000pt;}
.y21_c01055{bottom:167.360000pt;}
.y20_c01055{bottom:198.293333pt;}
.y1f_c01055{bottom:228.026667pt;}
.y1e_c01055{bottom:258.026667pt;}
.y1d_c01055{bottom:288.960000pt;}
.y1c_c01055{bottom:319.226667pt;}
.y1b_c01055{bottom:349.226667pt;}
.y1a_c01055{bottom:379.226667pt;}
.y19_c01055{bottom:409.226667pt;}
.y18_c01055{bottom:438.960000pt;}
.y17_c01055{bottom:469.226667pt;}
.y16_c01055{bottom:499.493333pt;}
.y15_c01055{bottom:528.693333pt;}
.y14_c01055{bottom:558.560000pt;}
.y13_c01055{bottom:588.560000pt;}
.y12_c01055{bottom:618.960000pt;}
.y11_c01055{bottom:648.026667pt;}
.y10_c01055{bottom:677.493333pt;}
.yf_c01055{bottom:717.360000pt;}
.ye_c01055{bottom:746.426667pt;}
.yd_c01055{bottom:776.693333pt;}
.yc_c01055{bottom:802.160000pt;}
.yb_c01055{bottom:822.293333pt;}
.ya_c01055{bottom:852.026667pt;}
.y9_c01055{bottom:881.493333pt;}
.y8_c01055{bottom:910.826667pt;}
.y7_c01055{bottom:940.826667pt;}
.y6_c01055{bottom:970.560000pt;}
.y5_c01055{bottom:1000.560000pt;}
.y4_c01055{bottom:1030.160000pt;}
.y3_c01055{bottom:1059.893333pt;}
.y2_c01055{bottom:1089.093333pt;}
.y1_c01055{bottom:1117.226667pt;}
.h6_c01055{height:11.733399pt;}
.h7_c01055{height:38.937500pt;}
.h5_c01055{height:67.526042pt;}
.h4_c01055{height:87.390625pt;}
.h3_c01055{height:94.536458pt;}
.h2_c01055{height:108.041667pt;}
.h0_c01055{height:1211.066667pt;}
.h1_c01055{height:1211.333333pt;}
.w2_c01055{width:93.222667pt;}
.w1_c01055{width:755.333333pt;}
.w0_c01055{width:755.533333pt;}
.x0_c01055{left:0.000000pt;}
.xd_c01055{left:199.866667pt;}
.xb_c01055{left:202.266667pt;}
.xf_c01055{left:203.200000pt;}
.x2_c01055{left:204.266667pt;}
.xc_c01055{left:206.666667pt;}
.xe_c01055{left:207.600000pt;}
.x1_c01055{left:208.533333pt;}
.x11_c01055{left:209.466667pt;}
.x12_c01055{left:211.466667pt;}
.x13_c01055{left:213.333333pt;}
.x9_c01055{left:234.933333pt;}
.xa_c01055{left:238.800000pt;}
.x10_c01055{left:253.200000pt;}
.x8_c01055{left:286.800000pt;}
.x3_c01055{left:296.400000pt;}
.x4_c01055{left:297.866667pt;}
.x6_c01055{left:299.733333pt;}
.x5_c01055{left:300.800000pt;}
.x15_c01055{left:334.934896pt;}
.x7_c01055{left:381.333333pt;}
.x14_c01055{left:683.733333pt;}
}





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

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_cbef591b5eb9ad66c59bf5d3.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_ff1da860ffea8e444d0ca0c4.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_fd923429f2f536cbc8cee6d1.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01056;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls1_c01056{letter-spacing:0.000000px;}
.ls0_c01056{letter-spacing:8.388000px;}
.ls2_c01056{letter-spacing:30.000000px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:-85.044000px;}
.ws1_c01056{word-spacing:-20.244000px;}
.ws2_c01056{word-spacing:0.000000px;}
._18_c01056{margin-left:-71.820000px;}
._2c_c01056{margin-left:-38.904000px;}
._1c_c01056{margin-left:-33.600000px;}
._6_c01056{margin-left:-23.364000px;}
._28_c01056{margin-left:-22.272000px;}
._0_c01056{margin-left:-14.496000px;}
._2_c01056{margin-left:-12.768000px;}
._3d_c01056{margin-left:-11.340000px;}
._1_c01056{margin-left:-9.408000px;}
._27_c01056{margin-left:-8.028000px;}
._16_c01056{margin-left:-6.588000px;}
._15_c01056{margin-left:-5.460000px;}
._26_c01056{margin-left:-4.248000px;}
._31_c01056{margin-left:-2.988000px;}
._21_c01056{margin-left:-1.932000px;}
._d_c01056{width:1.512000px;}
._7_c01056{width:2.688000px;}
._13_c01056{width:4.368000px;}
._8_c01056{width:5.964000px;}
._9_c01056{width:7.812000px;}
._17_c01056{width:8.904000px;}
._b_c01056{width:10.416000px;}
._1e_c01056{width:11.676000px;}
._30_c01056{width:12.792000px;}
._11_c01056{width:13.860000px;}
._10_c01056{width:15.372000px;}
._2d_c01056{width:16.464000px;}
._12_c01056{width:18.228000px;}
._23_c01056{width:19.296000px;}
._e_c01056{width:21.504000px;}
._35_c01056{width:22.800000px;}
._20_c01056{width:23.976000px;}
._32_c01056{width:26.376000px;}
._c_c01056{width:27.888000px;}
._1b_c01056{width:29.148000px;}
._34_c01056{width:30.168000px;}
._4_c01056{width:31.680000px;}
._24_c01056{width:33.372000px;}
._19_c01056{width:34.776000px;}
._f_c01056{width:36.708000px;}
._2e_c01056{width:38.976000px;}
._14_c01056{width:39.984000px;}
._44_c01056{width:40.992000px;}
._a_c01056{width:43.680000px;}
._22_c01056{width:45.324000px;}
._49_c01056{width:46.368000px;}
._2f_c01056{width:47.424000px;}
._1f_c01056{width:48.468000px;}
._2a_c01056{width:49.836000px;}
._40_c01056{width:53.076000px;}
._33_c01056{width:54.504000px;}
._45_c01056{width:56.700000px;}
._38_c01056{width:59.052000px;}
._1d_c01056{width:60.564000px;}
._3e_c01056{width:63.000000px;}
._43_c01056{width:65.520000px;}
._37_c01056{width:66.900000px;}
._46_c01056{width:70.320000px;}
._39_c01056{width:74.316000px;}
._1a_c01056{width:75.648000px;}
._47_c01056{width:82.224000px;}
._3a_c01056{width:84.840000px;}
._5_c01056{width:88.488000px;}
._36_c01056{width:90.924000px;}
._3c_c01056{width:92.928000px;}
._3b_c01056{width:100.044000px;}
._3_c01056{width:129.216000px;}
._2b_c01056{width:140.196000px;}
._42_c01056{width:167.472000px;}
._3f_c01056{width:182.004000px;}
._48_c01056{width:195.516000px;}
._29_c01056{width:235.620000px;}
._41_c01056{width:242.184000px;}
._25_c01056{width:266.616000px;}
._4b_c01056{width:703.620000px;}
._4a_c01056{width:732.972000px;}
.fc2_c01056{color:transparent;}
.fc1_c01056{color:rgb(128,128,128);}
.fc0_c01056{color:rgb(0,0,0);}
.fs3_c01056{font-size:48.000000px;}
.fs1_c01056{font-size:84.000000px;}
.fs0_c01056{font-size:96.000000px;}
.fs2_c01056{font-size:99.000000px;}
.y0_c01056{bottom:0.000000px;}
.y27_c01056{bottom:3.105000px;}
.y26_c01056{bottom:7.228369px;}
.y25_c01056{bottom:97.470000px;}
.y24_c01056{bottom:130.620000px;}
.y23_c01056{bottom:164.970000px;}
.y22_c01056{bottom:198.720000px;}
.y21_c01056{bottom:233.520000px;}
.y20_c01056{bottom:267.270000px;}
.y1f_c01056{bottom:301.320000px;}
.y1e_c01056{bottom:335.370000px;}
.y1d_c01056{bottom:369.120000px;}
.y1c_c01056{bottom:403.020000px;}
.y1b_c01056{bottom:436.620000px;}
.y1a_c01056{bottom:470.370000px;}
.y19_c01056{bottom:503.820000px;}
.y18_c01056{bottom:537.570000px;}
.y17_c01056{bottom:571.770000px;}
.y16_c01056{bottom:604.170000px;}
.y15_c01056{bottom:638.820000px;}
.y14_c01056{bottom:672.870000px;}
.y13_c01056{bottom:706.320000px;}
.y12_c01056{bottom:739.170000px;}
.y11_c01056{bottom:772.470000px;}
.y10_c01056{bottom:806.670000px;}
.yf_c01056{bottom:839.070000px;}
.ye_c01056{bottom:872.670000px;}
.yd_c01056{bottom:906.120000px;}
.yc_c01056{bottom:938.520000px;}
.yb_c01056{bottom:971.970000px;}
.ya_c01056{bottom:1006.020000px;}
.y9_c01056{bottom:1039.770000px;}
.y8_c01056{bottom:1072.470000px;}
.y7_c01056{bottom:1105.020000px;}
.y6_c01056{bottom:1138.020000px;}
.y5_c01056{bottom:1171.170000px;}
.y4_c01056{bottom:1204.920000px;}
.y3_c01056{bottom:1237.920000px;}
.y2_c01056{bottom:1272.420000px;}
.y1_c01056{bottom:1293.870000px;}
.h5_c01056{height:13.200073px;}
.h6_c01056{height:43.804688px;}
.h4_c01056{height:98.314453px;}
.h3_c01056{height:106.353516px;}
.h2_c01056{height:121.546875px;}
.h0_c01056{height:1356.450000px;}
.h1_c01056{height:1356.750000px;}
.w2_c01056{width:104.875500px;}
.w0_c01056{width:860.775000px;}
.w1_c01056{width:861.000000px;}
.x0_c01056{left:0.000000px;}
.x9_c01056{left:14.850000px;}
.x8_c01056{left:17.550000px;}
.x5_c01056{left:24.000000px;}
.x4_c01056{left:25.650000px;}
.x7_c01056{left:26.700000px;}
.x3_c01056{left:27.900000px;}
.x6_c01056{left:29.400000px;}
.x2_c01056{left:31.050000px;}
.xb_c01056{left:33.150000px;}
.xc_c01056{left:34.200000px;}
.xd_c01056{left:35.400000px;}
.xa_c01056{left:80.700000px;}
.xe_c01056{left:382.201721px;}
.x1_c01056{left:400.950000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls1_c01056{letter-spacing:0.000000pt;}
.ls0_c01056{letter-spacing:7.456000pt;}
.ls2_c01056{letter-spacing:26.666667pt;}
.ws0_c01056{word-spacing:-75.594667pt;}
.ws1_c01056{word-spacing:-17.994667pt;}
.ws2_c01056{word-spacing:0.000000pt;}
._18_c01056{margin-left:-63.840000pt;}
._2c_c01056{margin-left:-34.581333pt;}
._1c_c01056{margin-left:-29.866667pt;}
._6_c01056{margin-left:-20.768000pt;}
._28_c01056{margin-left:-19.797333pt;}
._0_c01056{margin-left:-12.885333pt;}
._2_c01056{margin-left:-11.349333pt;}
._3d_c01056{margin-left:-10.080000pt;}
._1_c01056{margin-left:-8.362667pt;}
._27_c01056{margin-left:-7.136000pt;}
._16_c01056{margin-left:-5.856000pt;}
._15_c01056{margin-left:-4.853333pt;}
._26_c01056{margin-left:-3.776000pt;}
._31_c01056{margin-left:-2.656000pt;}
._21_c01056{margin-left:-1.717333pt;}
._d_c01056{width:1.344000pt;}
._7_c01056{width:2.389333pt;}
._13_c01056{width:3.882667pt;}
._8_c01056{width:5.301333pt;}
._9_c01056{width:6.944000pt;}
._17_c01056{width:7.914667pt;}
._b_c01056{width:9.258667pt;}
._1e_c01056{width:10.378667pt;}
._30_c01056{width:11.370667pt;}
._11_c01056{width:12.320000pt;}
._10_c01056{width:13.664000pt;}
._2d_c01056{width:14.634667pt;}
._12_c01056{width:16.202667pt;}
._23_c01056{width:17.152000pt;}
._e_c01056{width:19.114667pt;}
._35_c01056{width:20.266667pt;}
._20_c01056{width:21.312000pt;}
._32_c01056{width:23.445333pt;}
._c_c01056{width:24.789333pt;}
._1b_c01056{width:25.909333pt;}
._34_c01056{width:26.816000pt;}
._4_c01056{width:28.160000pt;}
._24_c01056{width:29.664000pt;}
._19_c01056{width:30.912000pt;}
._f_c01056{width:32.629333pt;}
._2e_c01056{width:34.645333pt;}
._14_c01056{width:35.541333pt;}
._44_c01056{width:36.437333pt;}
._a_c01056{width:38.826667pt;}
._22_c01056{width:40.288000pt;}
._49_c01056{width:41.216000pt;}
._2f_c01056{width:42.154667pt;}
._1f_c01056{width:43.082667pt;}
._2a_c01056{width:44.298667pt;}
._40_c01056{width:47.178667pt;}
._33_c01056{width:48.448000pt;}
._45_c01056{width:50.400000pt;}
._38_c01056{width:52.490667pt;}
._1d_c01056{width:53.834667pt;}
._3e_c01056{width:56.000000pt;}
._43_c01056{width:58.240000pt;}
._37_c01056{width:59.466667pt;}
._46_c01056{width:62.506667pt;}
._39_c01056{width:66.058667pt;}
._1a_c01056{width:67.242667pt;}
._47_c01056{width:73.088000pt;}
._3a_c01056{width:75.413333pt;}
._5_c01056{width:78.656000pt;}
._36_c01056{width:80.821333pt;}
._3c_c01056{width:82.602667pt;}
._3b_c01056{width:88.928000pt;}
._3_c01056{width:114.858667pt;}
._2b_c01056{width:124.618667pt;}
._42_c01056{width:148.864000pt;}
._3f_c01056{width:161.781333pt;}
._48_c01056{width:173.792000pt;}
._29_c01056{width:209.440000pt;}
._41_c01056{width:215.274667pt;}
._25_c01056{width:236.992000pt;}
._4b_c01056{width:625.440000pt;}
._4a_c01056{width:651.530667pt;}
.fs3_c01056{font-size:42.666667pt;}
.fs1_c01056{font-size:74.666667pt;}
.fs0_c01056{font-size:85.333333pt;}
.fs2_c01056{font-size:88.000000pt;}
.y0_c01056{bottom:0.000000pt;}
.y27_c01056{bottom:2.760000pt;}
.y26_c01056{bottom:6.425217pt;}
.y25_c01056{bottom:86.640000pt;}
.y24_c01056{bottom:116.106667pt;}
.y23_c01056{bottom:146.640000pt;}
.y22_c01056{bottom:176.640000pt;}
.y21_c01056{bottom:207.573333pt;}
.y20_c01056{bottom:237.573333pt;}
.y1f_c01056{bottom:267.840000pt;}
.y1e_c01056{bottom:298.106667pt;}
.y1d_c01056{bottom:328.106667pt;}
.y1c_c01056{bottom:358.240000pt;}
.y1b_c01056{bottom:388.106667pt;}
.y1a_c01056{bottom:418.106667pt;}
.y19_c01056{bottom:447.840000pt;}
.y18_c01056{bottom:477.840000pt;}
.y17_c01056{bottom:508.240000pt;}
.y16_c01056{bottom:537.040000pt;}
.y15_c01056{bottom:567.840000pt;}
.y14_c01056{bottom:598.106667pt;}
.y13_c01056{bottom:627.840000pt;}
.y12_c01056{bottom:657.040000pt;}
.y11_c01056{bottom:686.640000pt;}
.y10_c01056{bottom:717.040000pt;}
.yf_c01056{bottom:745.840000pt;}
.ye_c01056{bottom:775.706667pt;}
.yd_c01056{bottom:805.440000pt;}
.yc_c01056{bottom:834.240000pt;}
.yb_c01056{bottom:863.973333pt;}
.ya_c01056{bottom:894.240000pt;}
.y9_c01056{bottom:924.240000pt;}
.y8_c01056{bottom:953.306667pt;}
.y7_c01056{bottom:982.240000pt;}
.y6_c01056{bottom:1011.573333pt;}
.y5_c01056{bottom:1041.040000pt;}
.y4_c01056{bottom:1071.040000pt;}
.y3_c01056{bottom:1100.373333pt;}
.y2_c01056{bottom:1131.040000pt;}
.y1_c01056{bottom:1150.106667pt;}
.h5_c01056{height:11.733399pt;}
.h6_c01056{height:38.937500pt;}
.h4_c01056{height:87.390625pt;}
.h3_c01056{height:94.536458pt;}
.h2_c01056{height:108.041667pt;}
.h0_c01056{height:1205.733333pt;}
.h1_c01056{height:1206.000000pt;}
.w2_c01056{width:93.222667pt;}
.w0_c01056{width:765.133333pt;}
.w1_c01056{width:765.333333pt;}
.x0_c01056{left:0.000000pt;}
.x9_c01056{left:13.200000pt;}
.x8_c01056{left:15.600000pt;}
.x5_c01056{left:21.333333pt;}
.x4_c01056{left:22.800000pt;}
.x7_c01056{left:23.733333pt;}
.x3_c01056{left:24.800000pt;}
.x6_c01056{left:26.133333pt;}
.x2_c01056{left:27.600000pt;}
.xb_c01056{left:29.466667pt;}
.xc_c01056{left:30.400000pt;}
.xd_c01056{left:31.466667pt;}
.xa_c01056{left:71.733333pt;}
.xe_c01056{left:339.734863pt;}
.x1_c01056{left:356.400000pt;}
}





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

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_2f72d01b9fead897981fe8f4.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01057;src:url('chunks/assets/font_4a8161a6c322c4b030efdec0.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01057;src:url('chunks/assets/font_4d365c1dc4eb36c1fdbd1a94.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01057;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01057{font-family:ff4_c01057;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls1_c01057{letter-spacing:-3.000000px;}
.ls0_c01057{letter-spacing:0.000000px;}
.ls2_c01057{letter-spacing:9.000000px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01057{word-spacing:-20.967000px;}
.ws0_c01057{word-spacing:-20.244000px;}
.ws1_c01057{word-spacing:-17.967000px;}
.ws3_c01057{word-spacing:-9.036000px;}
.ws4_c01057{word-spacing:0.000000px;}
._25_c01057{margin-left:-33.495000px;}
._27_c01057{margin-left:-32.016000px;}
._3b_c01057{margin-left:-25.338000px;}
._3c_c01057{margin-left:-21.387000px;}
._23_c01057{margin-left:-18.879000px;}
._d_c01057{margin-left:-17.556000px;}
._3a_c01057{margin-left:-16.380000px;}
._20_c01057{margin-left:-14.478000px;}
._1e_c01057{margin-left:-12.432000px;}
._13_c01057{margin-left:-10.584000px;}
._14_c01057{margin-left:-9.324000px;}
._29_c01057{margin-left:-5.742000px;}
._3d_c01057{margin-left:-3.567000px;}
._10_c01057{margin-left:-1.680000px;}
._b_c01057{width:2.016000px;}
._6_c01057{width:3.024000px;}
._a_c01057{width:4.956000px;}
._4_c01057{width:5.964000px;}
._9_c01057{width:6.972000px;}
._5_c01057{width:8.568000px;}
._2_c01057{width:10.164000px;}
._16_c01057{width:11.172000px;}
._2e_c01057{width:12.180000px;}
._7_c01057{width:13.188000px;}
._1a_c01057{width:14.211000px;}
._11_c01057{width:15.456000px;}
._0_c01057{width:16.632000px;}
._e_c01057{width:18.564000px;}
._31_c01057{width:19.812000px;}
._36_c01057{width:21.672000px;}
._8_c01057{width:22.764000px;}
._26_c01057{width:24.360000px;}
._1_c01057{width:26.124000px;}
._17_c01057{width:28.476000px;}
._f_c01057{width:30.744000px;}
._15_c01057{width:33.096000px;}
._c_c01057{width:35.700000px;}
._3_c01057{width:37.044000px;}
._1f_c01057{width:39.411000px;}
._35_c01057{width:41.832000px;}
._2b_c01057{width:43.428000px;}
._1c_c01057{width:45.528000px;}
._32_c01057{width:48.594000px;}
._30_c01057{width:50.064000px;}
._33_c01057{width:52.332000px;}
._18_c01057{width:54.936000px;}
._2f_c01057{width:56.364000px;}
._2a_c01057{width:58.812000px;}
._39_c01057{width:60.234000px;}
._1d_c01057{width:61.473000px;}
._2c_c01057{width:63.015000px;}
._37_c01057{width:64.932000px;}
._34_c01057{width:73.851000px;}
._2d_c01057{width:78.792000px;}
._38_c01057{width:80.724000px;}
._24_c01057{width:140.157000px;}
._12_c01057{width:200.676000px;}
._22_c01057{width:206.220000px;}
._21_c01057{width:212.520000px;}
._19_c01057{width:283.938000px;}
._1b_c01057{width:541.071000px;}
._28_c01057{width:1395.654000px;}
.fc2_c01057{color:transparent;}
.fc1_c01057{color:rgb(128,128,128);}
.fc0_c01057{color:rgb(0,0,0);}
.fs3_c01057{font-size:36.000000px;}
.fs4_c01057{font-size:48.000000px;}
.fs0_c01057{font-size:84.000000px;}
.fs1_c01057{font-size:87.000000px;}
.fs2_c01057{font-size:96.000000px;}
.y0_c01057{bottom:0.000000px;}
.y17_c01057{bottom:3.105000px;}
.y16_c01057{bottom:7.228371px;}
.y15_c01057{bottom:259.215000px;}
.y14_c01057{bottom:268.965000px;}
.y13_c01057{bottom:344.565000px;}
.y12_c01057{bottom:438.165000px;}
.y11_c01057{bottom:769.215000px;}
.y10_c01057{bottom:803.265000px;}
.yf_c01057{bottom:837.015000px;}
.ye_c01057{bottom:870.765000px;}
.yd_c01057{bottom:904.815000px;}
.yc_c01057{bottom:937.665000px;}
.yb_c01057{bottom:971.715000px;}
.ya_c01057{bottom:1004.415000px;}
.y9_c01057{bottom:1037.565000px;}
.y8_c01057{bottom:1071.615000px;}
.y7_c01057{bottom:1104.615000px;}
.y6_c01057{bottom:1130.415000px;}
.y5_c01057{bottom:1138.365000px;}
.y4_c01057{bottom:1172.115000px;}
.y3_c01057{bottom:1205.265000px;}
.y2_c01057{bottom:1238.715000px;}
.y1_c01057{bottom:1270.065000px;}
.h7_c01057{height:13.200074px;}
.h6_c01057{height:37.476562px;}
.h8_c01057{height:43.804688px;}
.h4_c01057{height:98.314453px;}
.h2_c01057{height:106.353516px;}
.h3_c01057{height:110.151855px;}
.h5_c01057{height:121.546875px;}
.h0_c01057{height:1354.875000px;}
.h1_c01057{height:1355.250000px;}
.w2_c01057{width:104.875500px;}
.w0_c01057{width:845.625000px;}
.w1_c01057{width:846.000000px;}
.x0_c01057{left:0.000000px;}
.x3_c01057{left:28.350000px;}
.x4_c01057{left:213.600000px;}
.x2_c01057{left:215.100000px;}
.x1_c01057{left:216.300000px;}
.x6_c01057{left:217.350000px;}
.x7_c01057{left:220.050000px;}
.x5_c01057{left:224.850000px;}
.xb_c01057{left:262.350000px;}
.xa_c01057{left:271.800000px;}
.xc_c01057{left:374.626740px;}
.x9_c01057{left:708.450000px;}
.x8_c01057{left:755.700000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls1_c01057{letter-spacing:-2.666667pt;}
.ls0_c01057{letter-spacing:0.000000pt;}
.ls2_c01057{letter-spacing:8.000000pt;}
.ws2_c01057{word-spacing:-18.637333pt;}
.ws0_c01057{word-spacing:-17.994667pt;}
.ws1_c01057{word-spacing:-15.970667pt;}
.ws3_c01057{word-spacing:-8.032000pt;}
.ws4_c01057{word-spacing:0.000000pt;}
._25_c01057{margin-left:-29.773333pt;}
._27_c01057{margin-left:-28.458667pt;}
._3b_c01057{margin-left:-22.522667pt;}
._3c_c01057{margin-left:-19.010667pt;}
._23_c01057{margin-left:-16.781333pt;}
._d_c01057{margin-left:-15.605333pt;}
._3a_c01057{margin-left:-14.560000pt;}
._20_c01057{margin-left:-12.869333pt;}
._1e_c01057{margin-left:-11.050667pt;}
._13_c01057{margin-left:-9.408000pt;}
._14_c01057{margin-left:-8.288000pt;}
._29_c01057{margin-left:-5.104000pt;}
._3d_c01057{margin-left:-3.170667pt;}
._10_c01057{margin-left:-1.493333pt;}
._b_c01057{width:1.792000pt;}
._6_c01057{width:2.688000pt;}
._a_c01057{width:4.405333pt;}
._4_c01057{width:5.301333pt;}
._9_c01057{width:6.197333pt;}
._5_c01057{width:7.616000pt;}
._2_c01057{width:9.034667pt;}
._16_c01057{width:9.930667pt;}
._2e_c01057{width:10.826667pt;}
._7_c01057{width:11.722667pt;}
._1a_c01057{width:12.632000pt;}
._11_c01057{width:13.738667pt;}
._0_c01057{width:14.784000pt;}
._e_c01057{width:16.501333pt;}
._31_c01057{width:17.610667pt;}
._36_c01057{width:19.264000pt;}
._8_c01057{width:20.234667pt;}
._26_c01057{width:21.653333pt;}
._1_c01057{width:23.221333pt;}
._17_c01057{width:25.312000pt;}
._f_c01057{width:27.328000pt;}
._15_c01057{width:29.418667pt;}
._c_c01057{width:31.733333pt;}
._3_c01057{width:32.928000pt;}
._1f_c01057{width:35.032000pt;}
._35_c01057{width:37.184000pt;}
._2b_c01057{width:38.602667pt;}
._1c_c01057{width:40.469333pt;}
._32_c01057{width:43.194667pt;}
._30_c01057{width:44.501333pt;}
._33_c01057{width:46.517333pt;}
._18_c01057{width:48.832000pt;}
._2f_c01057{width:50.101333pt;}
._2a_c01057{width:52.277333pt;}
._39_c01057{width:53.541333pt;}
._1d_c01057{width:54.642667pt;}
._2c_c01057{width:56.013333pt;}
._37_c01057{width:57.717333pt;}
._34_c01057{width:65.645333pt;}
._2d_c01057{width:70.037333pt;}
._38_c01057{width:71.754667pt;}
._24_c01057{width:124.584000pt;}
._12_c01057{width:178.378667pt;}
._22_c01057{width:183.306667pt;}
._21_c01057{width:188.906667pt;}
._19_c01057{width:252.389333pt;}
._1b_c01057{width:480.952000pt;}
._28_c01057{width:1240.581333pt;}
.fs3_c01057{font-size:32.000000pt;}
.fs4_c01057{font-size:42.666667pt;}
.fs0_c01057{font-size:74.666667pt;}
.fs1_c01057{font-size:77.333333pt;}
.fs2_c01057{font-size:85.333333pt;}
.y0_c01057{bottom:0.000000pt;}
.y17_c01057{bottom:2.760000pt;}
.y16_c01057{bottom:6.425219pt;}
.y15_c01057{bottom:230.413333pt;}
.y14_c01057{bottom:239.080000pt;}
.y13_c01057{bottom:306.280000pt;}
.y12_c01057{bottom:389.480000pt;}
.y11_c01057{bottom:683.746667pt;}
.y10_c01057{bottom:714.013333pt;}
.yf_c01057{bottom:744.013333pt;}
.ye_c01057{bottom:774.013333pt;}
.yd_c01057{bottom:804.280000pt;}
.yc_c01057{bottom:833.480000pt;}
.yb_c01057{bottom:863.746667pt;}
.ya_c01057{bottom:892.813333pt;}
.y9_c01057{bottom:922.280000pt;}
.y8_c01057{bottom:952.546667pt;}
.y7_c01057{bottom:981.880000pt;}
.y6_c01057{bottom:1004.813333pt;}
.y5_c01057{bottom:1011.880000pt;}
.y4_c01057{bottom:1041.880000pt;}
.y3_c01057{bottom:1071.346667pt;}
.y2_c01057{bottom:1101.080000pt;}
.y1_c01057{bottom:1128.946667pt;}
.h7_c01057{height:11.733399pt;}
.h6_c01057{height:33.312500pt;}
.h8_c01057{height:38.937500pt;}
.h4_c01057{height:87.390625pt;}
.h2_c01057{height:94.536458pt;}
.h3_c01057{height:97.912760pt;}
.h5_c01057{height:108.041667pt;}
.h0_c01057{height:1204.333333pt;}
.h1_c01057{height:1204.666667pt;}
.w2_c01057{width:93.222667pt;}
.w0_c01057{width:751.666667pt;}
.w1_c01057{width:752.000000pt;}
.x0_c01057{left:0.000000pt;}
.x3_c01057{left:25.200000pt;}
.x4_c01057{left:189.866667pt;}
.x2_c01057{left:191.200000pt;}
.x1_c01057{left:192.266667pt;}
.x6_c01057{left:193.200000pt;}
.x7_c01057{left:195.600000pt;}
.x5_c01057{left:199.866667pt;}
.xb_c01057{left:233.200000pt;}
.xa_c01057{left:241.600000pt;}
.xc_c01057{left:333.001546pt;}
.x9_c01057{left:629.733333pt;}
.x8_c01057{left:671.733333pt;}
}





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

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_b0695403fe69f6daff33e266.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_d0ec243f1603332f384befeb.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_fa444f3b84c87a32a7361521.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01058;src:url('chunks/assets/font_3ed32ef3a78845a8d13ece11.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01058;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01058{font-family:ff5_c01058;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls1_c01058{letter-spacing:0.000000px;}
.ls0_c01058{letter-spacing:129.480000px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01058{word-spacing:-20.244000px;}
.ws0_c01058{word-spacing:-19.776000px;}
.ws2_c01058{word-spacing:0.000000px;}
._4d_c01058{margin-left:-84.288000px;}
._4f_c01058{margin-left:-51.360000px;}
._50_c01058{margin-left:-37.440000px;}
._39_c01058{margin-left:-31.680000px;}
._59_c01058{margin-left:-30.528000px;}
._2c_c01058{margin-left:-25.056000px;}
._2a_c01058{margin-left:-21.600000px;}
._2b_c01058{margin-left:-18.864000px;}
._38_c01058{margin-left:-17.568000px;}
._26_c01058{margin-left:-14.544000px;}
._7_c01058{margin-left:-12.672000px;}
._34_c01058{margin-left:-10.368000px;}
._c_c01058{margin-left:-7.920000px;}
._35_c01058{margin-left:-6.768000px;}
._e_c01058{margin-left:-5.616000px;}
._d_c01058{margin-left:-4.464000px;}
._11_c01058{margin-left:-3.456000px;}
._10_c01058{margin-left:-2.448000px;}
._a_c01058{margin-left:-1.440000px;}
._15_c01058{width:1.296000px;}
._16_c01058{width:2.304000px;}
._14_c01058{width:3.312000px;}
._42_c01058{width:4.344000px;}
._2_c01058{width:5.616000px;}
._3_c01058{width:6.624000px;}
._3e_c01058{width:8.352000px;}
._1_c01058{width:9.504000px;}
._0_c01058{width:10.800000px;}
._4_c01058{width:12.240000px;}
._49_c01058{width:13.368000px;}
._9_c01058{width:14.544000px;}
._2f_c01058{width:15.552000px;}
._8_c01058{width:16.848000px;}
._63_c01058{width:17.880000px;}
._3d_c01058{width:18.996000px;}
._57_c01058{width:21.708000px;}
._3c_c01058{width:22.776000px;}
._44_c01058{width:24.636000px;}
._28_c01058{width:26.928000px;}
._5f_c01058{width:30.516000px;}
._40_c01058{width:31.584000px;}
._48_c01058{width:33.588000px;}
._62_c01058{width:34.848000px;}
._54_c01058{width:35.916000px;}
._55_c01058{width:37.080000px;}
._53_c01058{width:40.068000px;}
._47_c01058{width:41.136000px;}
._4e_c01058{width:42.912000px;}
._43_c01058{width:44.244000px;}
._46_c01058{width:46.380000px;}
._27_c01058{width:48.672000px;}
._3f_c01058{width:49.896000px;}
._5e_c01058{width:51.984000px;}
._6_c01058{width:53.568000px;}
._56_c01058{width:55.476000px;}
._4b_c01058{width:56.640000px;}
._65_c01058{width:61.716000px;}
._25_c01058{width:66.672000px;}
._1f_c01058{width:68.112000px;}
._37_c01058{width:70.128000px;}
._29_c01058{width:72.288000px;}
._24_c01058{width:74.304000px;}
._5b_c01058{width:81.936000px;}
._1c_c01058{width:85.392000px;}
._31_c01058{width:89.712000px;}
._2e_c01058{width:93.888000px;}
._1d_c01058{width:94.896000px;}
._1b_c01058{width:96.912000px;}
._1e_c01058{width:98.064000px;}
._22_c01058{width:100.800000px;}
._20_c01058{width:102.960000px;}
._32_c01058{width:104.976000px;}
._23_c01058{width:106.992000px;}
._13_c01058{width:110.304000px;}
._41_c01058{width:114.648000px;}
._21_c01058{width:118.512000px;}
._1a_c01058{width:120.672000px;}
._b_c01058{width:122.112000px;}
._30_c01058{width:125.232000px;}
._2d_c01058{width:126.288000px;}
._5_c01058{width:128.592000px;}
._12_c01058{width:131.184000px;}
._f_c01058{width:137.088000px;}
._18_c01058{width:142.704000px;}
._3b_c01058{width:147.264000px;}
._51_c01058{width:167.904000px;}
._5d_c01058{width:179.520000px;}
._17_c01058{width:182.880000px;}
._61_c01058{width:185.184000px;}
._19_c01058{width:193.968000px;}
._4c_c01058{width:199.104000px;}
._52_c01058{width:220.512000px;}
._58_c01058{width:237.540000px;}
._64_c01058{width:242.220000px;}
._36_c01058{width:320.688000px;}
._33_c01058{width:327.456000px;}
._4a_c01058{width:357.000000px;}
._3a_c01058{width:368.208000px;}
._5c_c01058{width:384.456000px;}
._5a_c01058{width:518.880000px;}
._60_c01058{width:573.588000px;}
._45_c01058{width:803.232000px;}
.fc2_c01058{color:transparent;}
.fc1_c01058{color:rgb(128,128,128);}
.fc0_c01058{color:rgb(0,0,0);}
.fs4_c01058{font-size:48.000000px;}
.fs3_c01058{font-size:84.000000px;}
.fs1_c01058{font-size:96.000000px;}
.fs2_c01058{font-size:120.000000px;}
.fs0_c01058{font-size:144.000000px;}
.y0_c01058{bottom:0.000000px;}
.y1f_c01058{bottom:3.105000px;}
.y1e_c01058{bottom:7.228357px;}
.y1d_c01058{bottom:97.230000px;}
.y1c_c01058{bottom:127.980000px;}
.y1b_c01058{bottom:163.080000px;}
.y1a_c01058{bottom:197.880000px;}
.y19_c01058{bottom:231.930000px;}
.y18_c01058{bottom:264.630000px;}
.y17_c01058{bottom:298.980000px;}
.y16_c01058{bottom:334.080000px;}
.y15_c01058{bottom:366.930000px;}
.y14_c01058{bottom:401.580000px;}
.y13_c01058{bottom:435.330000px;}
.y12_c01058{bottom:468.780000px;}
.y11_c01058{bottom:503.280000px;}
.y10_c01058{bottom:536.580000px;}
.yf_c01058{bottom:570.780000px;}
.ye_c01058{bottom:604.230000px;}
.yd_c01058{bottom:638.280000px;}
.yc_c01058{bottom:711.480000px;}
.yb_c01058{bottom:761.430000px;}
.ya_c01058{bottom:811.080000px;}
.y9_c01058{bottom:861.030000px;}
.y8_c01058{bottom:911.880000px;}
.y7_c01058{bottom:962.280000px;}
.y6_c01058{bottom:1012.530000px;}
.y5_c01058{bottom:1062.480000px;}
.y4_c01058{bottom:1111.380000px;}
.y3_c01058{bottom:1161.780000px;}
.y2_c01058{bottom:1212.330000px;}
.y1_c01058{bottom:1263.030000px;}
.h6_c01058{height:13.200074px;}
.h7_c01058{height:43.804688px;}
.h5_c01058{height:98.314453px;}
.h4_c01058{height:106.353516px;}
.h3_c01058{height:121.546875px;}
.h2_c01058{height:182.320312px;}
.h0_c01058{height:1367.850000px;}
.h1_c01058{height:1368.000000px;}
.w1_c01058{width:104.875500px;}
.w0_c01058{width:867.750000px;}
.x0_c01058{left:0.000000px;}
.xa_c01058{left:50.550000px;}
.xb_c01058{left:51.600000px;}
.x6_c01058{left:52.650000px;}
.x4_c01058{left:53.700000px;}
.x5_c01058{left:54.900000px;}
.xc_c01058{left:56.400000px;}
.x3_c01058{left:57.450000px;}
.x2_c01058{left:58.500000px;}
.x1_c01058{left:59.700000px;}
.x8_c01058{left:100.800000px;}
.xd_c01058{left:107.700000px;}
.x7_c01058{left:187.200000px;}
.x9_c01058{left:197.400000px;}
.xf_c01058{left:385.689240px;}
.xe_c01058{left:581.850000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls1_c01058{letter-spacing:0.000000pt;}
.ls0_c01058{letter-spacing:115.093333pt;}
.ws1_c01058{word-spacing:-17.994667pt;}
.ws0_c01058{word-spacing:-17.578667pt;}
.ws2_c01058{word-spacing:0.000000pt;}
._4d_c01058{margin-left:-74.922667pt;}
._4f_c01058{margin-left:-45.653333pt;}
._50_c01058{margin-left:-33.280000pt;}
._39_c01058{margin-left:-28.160000pt;}
._59_c01058{margin-left:-27.136000pt;}
._2c_c01058{margin-left:-22.272000pt;}
._2a_c01058{margin-left:-19.200000pt;}
._2b_c01058{margin-left:-16.768000pt;}
._38_c01058{margin-left:-15.616000pt;}
._26_c01058{margin-left:-12.928000pt;}
._7_c01058{margin-left:-11.264000pt;}
._34_c01058{margin-left:-9.216000pt;}
._c_c01058{margin-left:-7.040000pt;}
._35_c01058{margin-left:-6.016000pt;}
._e_c01058{margin-left:-4.992000pt;}
._d_c01058{margin-left:-3.968000pt;}
._11_c01058{margin-left:-3.072000pt;}
._10_c01058{margin-left:-2.176000pt;}
._a_c01058{margin-left:-1.280000pt;}
._15_c01058{width:1.152000pt;}
._16_c01058{width:2.048000pt;}
._14_c01058{width:2.944000pt;}
._42_c01058{width:3.861333pt;}
._2_c01058{width:4.992000pt;}
._3_c01058{width:5.888000pt;}
._3e_c01058{width:7.424000pt;}
._1_c01058{width:8.448000pt;}
._0_c01058{width:9.600000pt;}
._4_c01058{width:10.880000pt;}
._49_c01058{width:11.882667pt;}
._9_c01058{width:12.928000pt;}
._2f_c01058{width:13.824000pt;}
._8_c01058{width:14.976000pt;}
._63_c01058{width:15.893333pt;}
._3d_c01058{width:16.885333pt;}
._57_c01058{width:19.296000pt;}
._3c_c01058{width:20.245333pt;}
._44_c01058{width:21.898667pt;}
._28_c01058{width:23.936000pt;}
._5f_c01058{width:27.125333pt;}
._40_c01058{width:28.074667pt;}
._48_c01058{width:29.856000pt;}
._62_c01058{width:30.976000pt;}
._54_c01058{width:31.925333pt;}
._55_c01058{width:32.960000pt;}
._53_c01058{width:35.616000pt;}
._47_c01058{width:36.565333pt;}
._4e_c01058{width:38.144000pt;}
._43_c01058{width:39.328000pt;}
._46_c01058{width:41.226667pt;}
._27_c01058{width:43.264000pt;}
._3f_c01058{width:44.352000pt;}
._5e_c01058{width:46.208000pt;}
._6_c01058{width:47.616000pt;}
._56_c01058{width:49.312000pt;}
._4b_c01058{width:50.346667pt;}
._65_c01058{width:54.858667pt;}
._25_c01058{width:59.264000pt;}
._1f_c01058{width:60.544000pt;}
._37_c01058{width:62.336000pt;}
._29_c01058{width:64.256000pt;}
._24_c01058{width:66.048000pt;}
._5b_c01058{width:72.832000pt;}
._1c_c01058{width:75.904000pt;}
._31_c01058{width:79.744000pt;}
._2e_c01058{width:83.456000pt;}
._1d_c01058{width:84.352000pt;}
._1b_c01058{width:86.144000pt;}
._1e_c01058{width:87.168000pt;}
._22_c01058{width:89.600000pt;}
._20_c01058{width:91.520000pt;}
._32_c01058{width:93.312000pt;}
._23_c01058{width:95.104000pt;}
._13_c01058{width:98.048000pt;}
._41_c01058{width:101.909333pt;}
._21_c01058{width:105.344000pt;}
._1a_c01058{width:107.264000pt;}
._b_c01058{width:108.544000pt;}
._30_c01058{width:111.317333pt;}
._2d_c01058{width:112.256000pt;}
._5_c01058{width:114.304000pt;}
._12_c01058{width:116.608000pt;}
._f_c01058{width:121.856000pt;}
._18_c01058{width:126.848000pt;}
._3b_c01058{width:130.901333pt;}
._51_c01058{width:149.248000pt;}
._5d_c01058{width:159.573333pt;}
._17_c01058{width:162.560000pt;}
._61_c01058{width:164.608000pt;}
._19_c01058{width:172.416000pt;}
._4c_c01058{width:176.981333pt;}
._52_c01058{width:196.010667pt;}
._58_c01058{width:211.146667pt;}
._64_c01058{width:215.306667pt;}
._36_c01058{width:285.056000pt;}
._33_c01058{width:291.072000pt;}
._4a_c01058{width:317.333333pt;}
._3a_c01058{width:327.296000pt;}
._5c_c01058{width:341.738667pt;}
._5a_c01058{width:461.226667pt;}
._60_c01058{width:509.856000pt;}
._45_c01058{width:713.984000pt;}
.fs4_c01058{font-size:42.666667pt;}
.fs3_c01058{font-size:74.666667pt;}
.fs1_c01058{font-size:85.333333pt;}
.fs2_c01058{font-size:106.666667pt;}
.fs0_c01058{font-size:128.000000pt;}
.y0_c01058{bottom:0.000000pt;}
.y1f_c01058{bottom:2.760000pt;}
.y1e_c01058{bottom:6.425206pt;}
.y1d_c01058{bottom:86.426667pt;}
.y1c_c01058{bottom:113.760000pt;}
.y1b_c01058{bottom:144.960000pt;}
.y1a_c01058{bottom:175.893333pt;}
.y19_c01058{bottom:206.160000pt;}
.y18_c01058{bottom:235.226667pt;}
.y17_c01058{bottom:265.760000pt;}
.y16_c01058{bottom:296.960000pt;}
.y15_c01058{bottom:326.160000pt;}
.y14_c01058{bottom:356.960000pt;}
.y13_c01058{bottom:386.960000pt;}
.y12_c01058{bottom:416.693333pt;}
.y11_c01058{bottom:447.360000pt;}
.y10_c01058{bottom:476.960000pt;}
.yf_c01058{bottom:507.360000pt;}
.ye_c01058{bottom:537.093333pt;}
.yd_c01058{bottom:567.360000pt;}
.yc_c01058{bottom:632.426667pt;}
.yb_c01058{bottom:676.826667pt;}
.ya_c01058{bottom:720.960000pt;}
.y9_c01058{bottom:765.360000pt;}
.y8_c01058{bottom:810.560000pt;}
.y7_c01058{bottom:855.360000pt;}
.y6_c01058{bottom:900.026667pt;}
.y5_c01058{bottom:944.426667pt;}
.y4_c01058{bottom:987.893333pt;}
.y3_c01058{bottom:1032.693333pt;}
.y2_c01058{bottom:1077.626667pt;}
.y1_c01058{bottom:1122.693333pt;}
.h6_c01058{height:11.733399pt;}
.h7_c01058{height:38.937500pt;}
.h5_c01058{height:87.390625pt;}
.h4_c01058{height:94.536458pt;}
.h3_c01058{height:108.041667pt;}
.h2_c01058{height:162.062500pt;}
.h0_c01058{height:1215.866667pt;}
.h1_c01058{height:1216.000000pt;}
.w1_c01058{width:93.222667pt;}
.w0_c01058{width:771.333333pt;}
.x0_c01058{left:0.000000pt;}
.xa_c01058{left:44.933333pt;}
.xb_c01058{left:45.866667pt;}
.x6_c01058{left:46.800000pt;}
.x4_c01058{left:47.733333pt;}
.x5_c01058{left:48.800000pt;}
.xc_c01058{left:50.133333pt;}
.x3_c01058{left:51.066667pt;}
.x2_c01058{left:52.000000pt;}
.x1_c01058{left:53.066667pt;}
.x8_c01058{left:89.600000pt;}
.xd_c01058{left:95.733333pt;}
.x7_c01058{left:166.400000pt;}
.x9_c01058{left:175.466667pt;}
.xf_c01058{left:342.834880pt;}
.xe_c01058{left:517.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_c01059 {
    display:none;
  }
  .loading-indicator_c01059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01059 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01059 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01059" -> "#page-container .classname_c01059")
 */
.pf_c01059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01059 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01059 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01059 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01059 {overflow:visible;}
  }
}
.c_c01059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01059 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01059:after { /* webkit #35443 */
  content: '';
}
.t_c01059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01059 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01059 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01059 { /* info for Javascript */
  display:none;
}
.l_c01059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_6b9402f7dc44aa0d4b91bf81.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01059;src:url('chunks/assets/font_7396274556a795287a4fe7c0.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01059;src:url('chunks/assets/font_329820d0ae89c2daeb18191e.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01059;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.ls1_c01059{letter-spacing:0.000000px;}
.ls0_c01059{letter-spacing:8.400000px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01059{word-spacing:-20.244000px;}
.ws2_c01059{word-spacing:0.000000px;}
.ws0_c01059{word-spacing:1.932000px;}
._2d_c01059{margin-left:-49.728000px;}
._46_c01059{margin-left:-38.976000px;}
._1e_c01059{margin-left:-29.760000px;}
._1c_c01059{margin-left:-25.140000px;}
._3c_c01059{margin-left:-23.712000px;}
._1d_c01059{margin-left:-20.196000px;}
._10_c01059{margin-left:-18.492000px;}
._34_c01059{margin-left:-16.272000px;}
._11_c01059{margin-left:-14.112000px;}
._48_c01059{margin-left:-12.192000px;}
._12_c01059{margin-left:-11.040000px;}
._38_c01059{margin-left:-7.812000px;}
._40_c01059{margin-left:-6.132000px;}
._37_c01059{margin-left:-4.704000px;}
._0_c01059{margin-left:-3.108000px;}
._1_c01059{margin-left:-1.932000px;}
._27_c01059{width:1.080000px;}
._4_c01059{width:2.436000px;}
._3_c01059{width:3.528000px;}
._5_c01059{width:5.040000px;}
._7_c01059{width:6.972000px;}
._9_c01059{width:8.316000px;}
._26_c01059{width:9.324000px;}
._c_c01059{width:10.416000px;}
._21_c01059{width:11.604000px;}
._20_c01059{width:12.876000px;}
._17_c01059{width:14.268000px;}
._1a_c01059{width:15.540000px;}
._15_c01059{width:16.884000px;}
._13_c01059{width:18.888000px;}
._22_c01059{width:22.404000px;}
._35_c01059{width:24.444000px;}
._8_c01059{width:25.788000px;}
._30_c01059{width:26.808000px;}
._1f_c01059{width:27.840000px;}
._14_c01059{width:29.988000px;}
._b_c01059{width:31.164000px;}
._f_c01059{width:32.508000px;}
._2a_c01059{width:33.612000px;}
._6_c01059{width:35.280000px;}
._23_c01059{width:37.884000px;}
._2_c01059{width:38.976000px;}
._44_c01059{width:39.984000px;}
._39_c01059{width:41.412000px;}
._28_c01059{width:42.504000px;}
._19_c01059{width:43.932000px;}
._d_c01059{width:46.368000px;}
._24_c01059{width:47.856000px;}
._18_c01059{width:50.148000px;}
._25_c01059{width:51.924000px;}
._3a_c01059{width:53.892000px;}
._e_c01059{width:55.188000px;}
._a_c01059{width:56.616000px;}
._43_c01059{width:58.032000px;}
._16_c01059{width:59.052000px;}
._29_c01059{width:61.308000px;}
._41_c01059{width:65.268000px;}
._31_c01059{width:66.948000px;}
._42_c01059{width:71.568000px;}
._45_c01059{width:74.076000px;}
._33_c01059{width:75.780000px;}
._32_c01059{width:78.624000px;}
._2b_c01059{width:95.976000px;}
._3d_c01059{width:100.668000px;}
._3b_c01059{width:131.136000px;}
._47_c01059{width:140.400000px;}
._1b_c01059{width:154.356000px;}
._36_c01059{width:175.392000px;}
._2f_c01059{width:183.660000px;}
._3e_c01059{width:204.288000px;}
._2c_c01059{width:243.804000px;}
._2e_c01059{width:516.864000px;}
._3f_c01059{width:753.228000px;}
._49_c01059{width:888.492000px;}
.fc2_c01059{color:transparent;}
.fc1_c01059{color:rgb(128,128,128);}
.fc0_c01059{color:rgb(0,0,0);}
.fs4_c01059{font-size:48.000000px;}
.fs0_c01059{font-size:84.000000px;}
.fs3_c01059{font-size:87.000000px;}
.fs1_c01059{font-size:96.000000px;}
.fs2_c01059{font-size:102.000000px;}
.y0_c01059{bottom:0.000000px;}
.y26_c01059{bottom:3.105000px;}
.y25_c01059{bottom:7.228355px;}
.y24_c01059{bottom:85.335000px;}
.y23_c01059{bottom:120.135000px;}
.y22_c01059{bottom:154.485000px;}
.y21_c01059{bottom:188.685000px;}
.y20_c01059{bottom:222.435000px;}
.y1f_c01059{bottom:256.485000px;}
.y1e_c01059{bottom:290.835000px;}
.y1d_c01059{bottom:324.885000px;}
.y1c_c01059{bottom:359.085000px;}
.y1b_c01059{bottom:391.185000px;}
.y1a_c01059{bottom:426.135000px;}
.y19_c01059{bottom:461.235000px;}
.y18_c01059{bottom:493.785000px;}
.y17_c01059{bottom:528.435000px;}
.y16_c01059{bottom:561.135000px;}
.y15_c01059{bottom:596.385000px;}
.y14_c01059{bottom:628.635000px;}
.y13_c01059{bottom:662.535000px;}
.y12_c01059{bottom:696.135000px;}
.y11_c01059{bottom:729.885000px;}
.y10_c01059{bottom:763.635000px;}
.yf_c01059{bottom:797.085000px;}
.ye_c01059{bottom:830.235000px;}
.yd_c01059{bottom:864.585000px;}
.yc_c01059{bottom:897.435000px;}
.yb_c01059{bottom:931.035000px;}
.ya_c01059{bottom:964.485000px;}
.y9_c01059{bottom:997.635000px;}
.y8_c01059{bottom:1030.035000px;}
.y7_c01059{bottom:1064.085000px;}
.y6_c01059{bottom:1098.135000px;}
.y5_c01059{bottom:1131.585000px;}
.y4_c01059{bottom:1165.935000px;}
.y3_c01059{bottom:1197.735000px;}
.y2_c01059{bottom:1231.185000px;}
.y1_c01059{bottom:1264.635000px;}
.h5_c01059{height:13.200074px;}
.h6_c01059{height:43.804688px;}
.h4_c01059{height:98.314453px;}
.h2_c01059{height:106.353516px;}
.h3_c01059{height:121.546875px;}
.h1_c01059{height:1366.500000px;}
.h0_c01059{height:1366.725000px;}
.w2_c01059{width:104.875500px;}
.w0_c01059{width:852.675000px;}
.w1_c01059{width:852.750000px;}
.x0_c01059{left:0.000000px;}
.x2_c01059{left:207.000000px;}
.xa_c01059{left:208.200000px;}
.x1_c01059{left:209.250000px;}
.x5_c01059{left:210.300000px;}
.x4_c01059{left:211.950000px;}
.x9_c01059{left:213.600000px;}
.x7_c01059{left:258.450000px;}
.x3_c01059{left:260.100000px;}
.x8_c01059{left:262.800000px;}
.x6_c01059{left:263.850000px;}
.xb_c01059{left:303.750000px;}
.xc_c01059{left:378.151749px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls1_c01059{letter-spacing:0.000000pt;}
.ls0_c01059{letter-spacing:7.466667pt;}
.ws1_c01059{word-spacing:-17.994667pt;}
.ws2_c01059{word-spacing:0.000000pt;}
.ws0_c01059{word-spacing:1.717333pt;}
._2d_c01059{margin-left:-44.202667pt;}
._46_c01059{margin-left:-34.645333pt;}
._1e_c01059{margin-left:-26.453333pt;}
._1c_c01059{margin-left:-22.346667pt;}
._3c_c01059{margin-left:-21.077333pt;}
._1d_c01059{margin-left:-17.952000pt;}
._10_c01059{margin-left:-16.437333pt;}
._34_c01059{margin-left:-14.464000pt;}
._11_c01059{margin-left:-12.544000pt;}
._48_c01059{margin-left:-10.837333pt;}
._12_c01059{margin-left:-9.813333pt;}
._38_c01059{margin-left:-6.944000pt;}
._40_c01059{margin-left:-5.450667pt;}
._37_c01059{margin-left:-4.181333pt;}
._0_c01059{margin-left:-2.762667pt;}
._1_c01059{margin-left:-1.717333pt;}
._27_c01059{width:0.960000pt;}
._4_c01059{width:2.165333pt;}
._3_c01059{width:3.136000pt;}
._5_c01059{width:4.480000pt;}
._7_c01059{width:6.197333pt;}
._9_c01059{width:7.392000pt;}
._26_c01059{width:8.288000pt;}
._c_c01059{width:9.258667pt;}
._21_c01059{width:10.314667pt;}
._20_c01059{width:11.445333pt;}
._17_c01059{width:12.682667pt;}
._1a_c01059{width:13.813333pt;}
._15_c01059{width:15.008000pt;}
._13_c01059{width:16.789333pt;}
._22_c01059{width:19.914667pt;}
._35_c01059{width:21.728000pt;}
._8_c01059{width:22.922667pt;}
._30_c01059{width:23.829333pt;}
._1f_c01059{width:24.746667pt;}
._14_c01059{width:26.656000pt;}
._b_c01059{width:27.701333pt;}
._f_c01059{width:28.896000pt;}
._2a_c01059{width:29.877333pt;}
._6_c01059{width:31.360000pt;}
._23_c01059{width:33.674667pt;}
._2_c01059{width:34.645333pt;}
._44_c01059{width:35.541333pt;}
._39_c01059{width:36.810667pt;}
._28_c01059{width:37.781333pt;}
._19_c01059{width:39.050667pt;}
._d_c01059{width:41.216000pt;}
._24_c01059{width:42.538667pt;}
._18_c01059{width:44.576000pt;}
._25_c01059{width:46.154667pt;}
._3a_c01059{width:47.904000pt;}
._e_c01059{width:49.056000pt;}
._a_c01059{width:50.325333pt;}
._43_c01059{width:51.584000pt;}
._16_c01059{width:52.490667pt;}
._29_c01059{width:54.496000pt;}
._41_c01059{width:58.016000pt;}
._31_c01059{width:59.509333pt;}
._42_c01059{width:63.616000pt;}
._45_c01059{width:65.845333pt;}
._33_c01059{width:67.360000pt;}
._32_c01059{width:69.888000pt;}
._2b_c01059{width:85.312000pt;}
._3d_c01059{width:89.482667pt;}
._3b_c01059{width:116.565333pt;}
._47_c01059{width:124.800000pt;}
._1b_c01059{width:137.205333pt;}
._36_c01059{width:155.904000pt;}
._2f_c01059{width:163.253333pt;}
._3e_c01059{width:181.589333pt;}
._2c_c01059{width:216.714667pt;}
._2e_c01059{width:459.434667pt;}
._3f_c01059{width:669.536000pt;}
._49_c01059{width:789.770667pt;}
.fs4_c01059{font-size:42.666667pt;}
.fs0_c01059{font-size:74.666667pt;}
.fs3_c01059{font-size:77.333333pt;}
.fs1_c01059{font-size:85.333333pt;}
.fs2_c01059{font-size:90.666667pt;}
.y0_c01059{bottom:0.000000pt;}
.y26_c01059{bottom:2.760000pt;}
.y25_c01059{bottom:6.425204pt;}
.y24_c01059{bottom:75.853333pt;}
.y23_c01059{bottom:106.786667pt;}
.y22_c01059{bottom:137.320000pt;}
.y21_c01059{bottom:167.720000pt;}
.y20_c01059{bottom:197.720000pt;}
.y1f_c01059{bottom:227.986667pt;}
.y1e_c01059{bottom:258.520000pt;}
.y1d_c01059{bottom:288.786667pt;}
.y1c_c01059{bottom:319.186667pt;}
.y1b_c01059{bottom:347.720000pt;}
.y1a_c01059{bottom:378.786667pt;}
.y19_c01059{bottom:409.986667pt;}
.y18_c01059{bottom:438.920000pt;}
.y17_c01059{bottom:469.720000pt;}
.y16_c01059{bottom:498.786667pt;}
.y15_c01059{bottom:530.120000pt;}
.y14_c01059{bottom:558.786667pt;}
.y13_c01059{bottom:588.920000pt;}
.y12_c01059{bottom:618.786667pt;}
.y11_c01059{bottom:648.786667pt;}
.y10_c01059{bottom:678.786667pt;}
.yf_c01059{bottom:708.520000pt;}
.ye_c01059{bottom:737.986667pt;}
.yd_c01059{bottom:768.520000pt;}
.yc_c01059{bottom:797.720000pt;}
.yb_c01059{bottom:827.586667pt;}
.ya_c01059{bottom:857.320000pt;}
.y9_c01059{bottom:886.786667pt;}
.y8_c01059{bottom:915.586667pt;}
.y7_c01059{bottom:945.853333pt;}
.y6_c01059{bottom:976.120000pt;}
.y5_c01059{bottom:1005.853333pt;}
.y4_c01059{bottom:1036.386667pt;}
.y3_c01059{bottom:1064.653333pt;}
.y2_c01059{bottom:1094.386667pt;}
.y1_c01059{bottom:1124.120000pt;}
.h5_c01059{height:11.733399pt;}
.h6_c01059{height:38.937500pt;}
.h4_c01059{height:87.390625pt;}
.h2_c01059{height:94.536458pt;}
.h3_c01059{height:108.041667pt;}
.h1_c01059{height:1214.666667pt;}
.h0_c01059{height:1214.866667pt;}
.w2_c01059{width:93.222667pt;}
.w0_c01059{width:757.933333pt;}
.w1_c01059{width:758.000000pt;}
.x0_c01059{left:0.000000pt;}
.x2_c01059{left:184.000000pt;}
.xa_c01059{left:185.066667pt;}
.x1_c01059{left:186.000000pt;}
.x5_c01059{left:186.933333pt;}
.x4_c01059{left:188.400000pt;}
.x9_c01059{left:189.866667pt;}
.x7_c01059{left:229.733333pt;}
.x3_c01059{left:231.200000pt;}
.x8_c01059{left:233.600000pt;}
.x6_c01059{left:234.533333pt;}
.xb_c01059{left:270.000000pt;}
.xc_c01059{left:336.134888pt;}
}





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

.ir_c01060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_593d4642be4cf827049844fd.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01060;src:url('chunks/assets/font_f82588461f4ab9eac9f27911.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01060;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01060;src:url('chunks/assets/font_aad0ffe16bed434a72e8c054.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01060;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01060{font-family:ff5_c01060;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01060{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0_c01060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls0_c01060{letter-spacing:0.000000px;}
.ls1_c01060{letter-spacing:3.000000px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01060{word-spacing:-51.000000px;}
.ws1_c01060{word-spacing:-20.244000px;}
.ws3_c01060{word-spacing:0.000000px;}
.ws0_c01060{word-spacing:0.336000px;}
._43_c01060{margin-left:-73.920000px;}
._3e_c01060{margin-left:-26.280000px;}
._19_c01060{margin-left:-18.144000px;}
._13_c01060{margin-left:-16.764000px;}
._1a_c01060{margin-left:-14.280000px;}
._25_c01060{margin-left:-11.940000px;}
._1f_c01060{margin-left:-10.548000px;}
._2b_c01060{margin-left:-8.736000px;}
._2a_c01060{margin-left:-6.240000px;}
._31_c01060{margin-left:-3.696000px;}
._14_c01060{margin-left:-1.848000px;}
._d_c01060{width:1.428000px;}
._12_c01060{width:2.436000px;}
._a_c01060{width:3.444000px;}
._5_c01060{width:4.788000px;}
._1_c01060{width:6.048000px;}
._3_c01060{width:7.308000px;}
._7_c01060{width:8.652000px;}
._4_c01060{width:9.996000px;}
._6_c01060{width:11.796000px;}
._26_c01060{width:13.020000px;}
._15_c01060{width:14.028000px;}
._40_c01060{width:15.120000px;}
._8_c01060{width:16.212000px;}
._c_c01060{width:18.312000px;}
._b_c01060{width:22.176000px;}
._21_c01060{width:23.772000px;}
._0_c01060{width:26.376000px;}
._17_c01060{width:28.812000px;}
._1e_c01060{width:30.072000px;}
._22_c01060{width:31.596000px;}
._9_c01060{width:34.440000px;}
._1c_c01060{width:36.588000px;}
._16_c01060{width:37.752000px;}
._f_c01060{width:39.060000px;}
._20_c01060{width:40.800000px;}
._42_c01060{width:41.916000px;}
._2_c01060{width:43.392000px;}
._18_c01060{width:46.452000px;}
._2d_c01060{width:47.916000px;}
._e_c01060{width:49.980000px;}
._2f_c01060{width:52.668000px;}
._1b_c01060{width:54.096000px;}
._1d_c01060{width:56.448000px;}
._11_c01060{width:58.800000px;}
._10_c01060{width:61.152000px;}
._3d_c01060{width:62.676000px;}
._30_c01060{width:65.160000px;}
._29_c01060{width:66.840000px;}
._33_c01060{width:68.796000px;}
._27_c01060{width:69.888000px;}
._3b_c01060{width:71.772000px;}
._41_c01060{width:72.924000px;}
._2e_c01060{width:74.880000px;}
._2c_c01060{width:76.020000px;}
._3c_c01060{width:78.372000px;}
._3f_c01060{width:79.968000px;}
._32_c01060{width:82.068000px;}
._36_c01060{width:87.648000px;}
._3a_c01060{width:90.720000px;}
._34_c01060{width:101.868000px;}
._24_c01060{width:148.584000px;}
._39_c01060{width:160.332000px;}
._28_c01060{width:167.160000px;}
._38_c01060{width:181.776000px;}
._37_c01060{width:402.564000px;}
._35_c01060{width:491.280000px;}
._44_c01060{width:658.581000px;}
._23_c01060{width:845.724000px;}
.fc2_c01060{color:transparent;}
.fc1_c01060{color:rgb(128,128,128);}
.fc0_c01060{color:rgb(0,0,0);}
.fs5_c01060{font-size:48.000000px;}
.fs0_c01060{font-size:84.000000px;}
.fs1_c01060{font-size:96.000000px;}
.fs2_c01060{font-size:102.000000px;}
.fs4_c01060{font-size:105.000000px;}
.fs3_c01060{font-size:126.000000px;}
.y0_c01060{bottom:0.000000px;}
.y27_c01060{bottom:3.105000px;}
.y26_c01060{bottom:7.228369px;}
.y25_c01060{bottom:118.470000px;}
.y24_c01060{bottom:150.420000px;}
.y23_c01060{bottom:185.970000px;}
.y22_c01060{bottom:219.270000px;}
.y21_c01060{bottom:254.070000px;}
.y20_c01060{bottom:287.820000px;}
.y1f_c01060{bottom:321.270000px;}
.y1e_c01060{bottom:355.320000px;}
.y1d_c01060{bottom:388.770000px;}
.y1c_c01060{bottom:422.820000px;}
.y1b_c01060{bottom:456.870000px;}
.y1a_c01060{bottom:490.620000px;}
.y19_c01060{bottom:522.420000px;}
.y18_c01060{bottom:557.520000px;}
.y17_c01060{bottom:589.920000px;}
.y16_c01060{bottom:624.420000px;}
.y15_c01060{bottom:658.020000px;}
.y14_c01060{bottom:691.920000px;}
.y13_c01060{bottom:725.220000px;}
.y12_c01060{bottom:758.670000px;}
.y11_c01060{bottom:791.820000px;}
.y10_c01060{bottom:825.120000px;}
.yf_c01060{bottom:857.970000px;}
.ye_c01060{bottom:891.570000px;}
.yd_c01060{bottom:924.720000px;}
.yc_c01060{bottom:958.170000px;}
.yb_c01060{bottom:991.470000px;}
.ya_c01060{bottom:1026.270000px;}
.y9_c01060{bottom:1058.070000px;}
.y8_c01060{bottom:1091.070000px;}
.y7_c01060{bottom:1123.920000px;}
.y6_c01060{bottom:1157.220000px;}
.y5_c01060{bottom:1190.670000px;}
.y4_c01060{bottom:1223.670000px;}
.y3_c01060{bottom:1257.120000px;}
.y2_c01060{bottom:1290.870000px;}
.y1_c01060{bottom:1325.670000px;}
.h7_c01060{height:13.200073px;}
.h8_c01060{height:43.804688px;}
.h2_c01060{height:98.314453px;}
.h4_c01060{height:106.353516px;}
.h3_c01060{height:121.546875px;}
.h6_c01060{height:132.941895px;}
.h5_c01060{height:147.471680px;}
.h0_c01060{height:1383.450000px;}
.h1_c01060{height:1383.750000px;}
.w2_c01060{width:104.875500px;}
.w0_c01060{width:878.025000px;}
.w1_c01060{width:878.250000px;}
.x0_c01060{left:0.000000px;}
.x8_c01060{left:45.600000px;}
.x9_c01060{left:47.850000px;}
.x7_c01060{left:48.900000px;}
.x5_c01060{left:49.950000px;}
.x4_c01060{left:51.600000px;}
.x3_c01060{left:52.650000px;}
.xb_c01060{left:54.300000px;}
.x2_c01060{left:55.350000px;}
.x6_c01060{left:100.650000px;}
.xa_c01060{left:102.900000px;}
.xc_c01060{left:126.000000px;}
.xd_c01060{left:178.950000px;}
.xe_c01060{left:323.700000px;}
.xf_c01060{left:390.826721px;}
.x1_c01060{left:538.200000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls0_c01060{letter-spacing:0.000000pt;}
.ls1_c01060{letter-spacing:2.666667pt;}
.ws2_c01060{word-spacing:-45.333333pt;}
.ws1_c01060{word-spacing:-17.994667pt;}
.ws3_c01060{word-spacing:0.000000pt;}
.ws0_c01060{word-spacing:0.298667pt;}
._43_c01060{margin-left:-65.706667pt;}
._3e_c01060{margin-left:-23.360000pt;}
._19_c01060{margin-left:-16.128000pt;}
._13_c01060{margin-left:-14.901333pt;}
._1a_c01060{margin-left:-12.693333pt;}
._25_c01060{margin-left:-10.613333pt;}
._1f_c01060{margin-left:-9.376000pt;}
._2b_c01060{margin-left:-7.765333pt;}
._2a_c01060{margin-left:-5.546667pt;}
._31_c01060{margin-left:-3.285333pt;}
._14_c01060{margin-left:-1.642667pt;}
._d_c01060{width:1.269333pt;}
._12_c01060{width:2.165333pt;}
._a_c01060{width:3.061333pt;}
._5_c01060{width:4.256000pt;}
._1_c01060{width:5.376000pt;}
._3_c01060{width:6.496000pt;}
._7_c01060{width:7.690667pt;}
._4_c01060{width:8.885333pt;}
._6_c01060{width:10.485333pt;}
._26_c01060{width:11.573333pt;}
._15_c01060{width:12.469333pt;}
._40_c01060{width:13.440000pt;}
._8_c01060{width:14.410667pt;}
._c_c01060{width:16.277333pt;}
._b_c01060{width:19.712000pt;}
._21_c01060{width:21.130667pt;}
._0_c01060{width:23.445333pt;}
._17_c01060{width:25.610667pt;}
._1e_c01060{width:26.730667pt;}
._22_c01060{width:28.085333pt;}
._9_c01060{width:30.613333pt;}
._1c_c01060{width:32.522667pt;}
._16_c01060{width:33.557333pt;}
._f_c01060{width:34.720000pt;}
._20_c01060{width:36.266667pt;}
._42_c01060{width:37.258667pt;}
._2_c01060{width:38.570667pt;}
._18_c01060{width:41.290667pt;}
._2d_c01060{width:42.592000pt;}
._e_c01060{width:44.426667pt;}
._2f_c01060{width:46.816000pt;}
._1b_c01060{width:48.085333pt;}
._1d_c01060{width:50.176000pt;}
._11_c01060{width:52.266667pt;}
._10_c01060{width:54.357333pt;}
._3d_c01060{width:55.712000pt;}
._30_c01060{width:57.920000pt;}
._29_c01060{width:59.413333pt;}
._33_c01060{width:61.152000pt;}
._27_c01060{width:62.122667pt;}
._3b_c01060{width:63.797333pt;}
._41_c01060{width:64.821333pt;}
._2e_c01060{width:66.560000pt;}
._2c_c01060{width:67.573333pt;}
._3c_c01060{width:69.664000pt;}
._3f_c01060{width:71.082667pt;}
._32_c01060{width:72.949333pt;}
._36_c01060{width:77.909333pt;}
._3a_c01060{width:80.640000pt;}
._34_c01060{width:90.549333pt;}
._24_c01060{width:132.074667pt;}
._39_c01060{width:142.517333pt;}
._28_c01060{width:148.586667pt;}
._38_c01060{width:161.578667pt;}
._37_c01060{width:357.834667pt;}
._35_c01060{width:436.693333pt;}
._44_c01060{width:585.405333pt;}
._23_c01060{width:751.754667pt;}
.fs5_c01060{font-size:42.666667pt;}
.fs0_c01060{font-size:74.666667pt;}
.fs1_c01060{font-size:85.333333pt;}
.fs2_c01060{font-size:90.666667pt;}
.fs4_c01060{font-size:93.333333pt;}
.fs3_c01060{font-size:112.000000pt;}
.y0_c01060{bottom:0.000000pt;}
.y27_c01060{bottom:2.760000pt;}
.y26_c01060{bottom:6.425217pt;}
.y25_c01060{bottom:105.306667pt;}
.y24_c01060{bottom:133.706667pt;}
.y23_c01060{bottom:165.306667pt;}
.y22_c01060{bottom:194.906667pt;}
.y21_c01060{bottom:225.840000pt;}
.y20_c01060{bottom:255.840000pt;}
.y1f_c01060{bottom:285.573333pt;}
.y1e_c01060{bottom:315.840000pt;}
.y1d_c01060{bottom:345.573333pt;}
.y1c_c01060{bottom:375.840000pt;}
.y1b_c01060{bottom:406.106667pt;}
.y1a_c01060{bottom:436.106667pt;}
.y19_c01060{bottom:464.373333pt;}
.y18_c01060{bottom:495.573333pt;}
.y17_c01060{bottom:524.373333pt;}
.y16_c01060{bottom:555.040000pt;}
.y15_c01060{bottom:584.906667pt;}
.y14_c01060{bottom:615.040000pt;}
.y13_c01060{bottom:644.640000pt;}
.y12_c01060{bottom:674.373333pt;}
.y11_c01060{bottom:703.840000pt;}
.y10_c01060{bottom:733.440000pt;}
.yf_c01060{bottom:762.640000pt;}
.ye_c01060{bottom:792.506667pt;}
.yd_c01060{bottom:821.973333pt;}
.yc_c01060{bottom:851.706667pt;}
.yb_c01060{bottom:881.306667pt;}
.ya_c01060{bottom:912.240000pt;}
.y9_c01060{bottom:940.506667pt;}
.y8_c01060{bottom:969.840000pt;}
.y7_c01060{bottom:999.040000pt;}
.y6_c01060{bottom:1028.640000pt;}
.y5_c01060{bottom:1058.373333pt;}
.y4_c01060{bottom:1087.706667pt;}
.y3_c01060{bottom:1117.440000pt;}
.y2_c01060{bottom:1147.440000pt;}
.y1_c01060{bottom:1178.373333pt;}
.h7_c01060{height:11.733399pt;}
.h8_c01060{height:38.937500pt;}
.h2_c01060{height:87.390625pt;}
.h4_c01060{height:94.536458pt;}
.h3_c01060{height:108.041667pt;}
.h6_c01060{height:118.170573pt;}
.h5_c01060{height:131.085938pt;}
.h0_c01060{height:1229.733333pt;}
.h1_c01060{height:1230.000000pt;}
.w2_c01060{width:93.222667pt;}
.w0_c01060{width:780.466667pt;}
.w1_c01060{width:780.666667pt;}
.x0_c01060{left:0.000000pt;}
.x8_c01060{left:40.533333pt;}
.x9_c01060{left:42.533333pt;}
.x7_c01060{left:43.466667pt;}
.x5_c01060{left:44.400000pt;}
.x4_c01060{left:45.866667pt;}
.x3_c01060{left:46.800000pt;}
.xb_c01060{left:48.266667pt;}
.x2_c01060{left:49.200000pt;}
.x6_c01060{left:89.466667pt;}
.xa_c01060{left:91.466667pt;}
.xc_c01060{left:112.000000pt;}
.xd_c01060{left:159.066667pt;}
.xe_c01060{left:287.733333pt;}
.xf_c01060{left:347.401530pt;}
.x1_c01060{left:478.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_c01061 {
    display:none;
  }
  .loading-indicator_c01061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01061 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01061 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01061" -> "#page-container .classname_c01061")
 */
.pf_c01061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01061 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01061 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01061 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01061 {overflow:visible;}
  }
}
.c_c01061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01061 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01061:after { /* webkit #35443 */
  content: '';
}
.t_c01061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01061 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01061 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01061 { /* info for Javascript */
  display:none;
}
.l_c01061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_21a0207dde5933c8d01895ac.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01061;src:url('chunks/assets/font_9179a075e41aaed43b8205c0.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01061;src:url('chunks/assets/font_f8084a008c2fd56840d7732e.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01061;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;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_c01061;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01061{font-family:ff5_c01061;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.ls0_c01061{letter-spacing:0.000000px;}
.ls1_c01061{letter-spacing:3.000000px;}
.ls2_c01061{letter-spacing:15.000000px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01061{word-spacing:-51.000000px;}
.ws0_c01061{word-spacing:-35.244000px;}
.ws1_c01061{word-spacing:-20.244000px;}
.ws3_c01061{word-spacing:0.000000px;}
._3f_c01061{margin-left:-46.656000px;}
._43_c01061{margin-left:-24.744000px;}
._3a_c01061{margin-left:-22.848000px;}
._30_c01061{margin-left:-20.244000px;}
._2e_c01061{margin-left:-17.220000px;}
._2_c01061{margin-left:-15.540000px;}
._33_c01061{margin-left:-14.196000px;}
._34_c01061{margin-left:-12.096000px;}
._3d_c01061{margin-left:-10.668000px;}
._10_c01061{margin-left:-8.946000px;}
._3c_c01061{margin-left:-7.704000px;}
._f_c01061{margin-left:-6.468000px;}
._31_c01061{margin-left:-5.436000px;}
._e_c01061{margin-left:-4.200000px;}
._20_c01061{margin-left:-2.268000px;}
._28_c01061{margin-left:-1.092000px;}
._c_c01061{width:1.596000px;}
._7_c01061{width:3.192000px;}
._1a_c01061{width:4.284000px;}
._5_c01061{width:5.376000px;}
._8_c01061{width:6.972000px;}
._24_c01061{width:7.980000px;}
._4_c01061{width:8.988000px;}
._3_c01061{width:10.332000px;}
._1_c01061{width:11.340000px;}
._9_c01061{width:13.104000px;}
._a_c01061{width:14.112000px;}
._0_c01061{width:15.120000px;}
._d_c01061{width:16.968000px;}
._19_c01061{width:18.396000px;}
._26_c01061{width:22.260000px;}
._17_c01061{width:23.604000px;}
._6_c01061{width:25.620000px;}
._15_c01061{width:28.476000px;}
._11_c01061{width:29.988000px;}
._27_c01061{width:30.996000px;}
._29_c01061{width:33.096000px;}
._14_c01061{width:35.364000px;}
._41_c01061{width:36.384000px;}
._16_c01061{width:37.632000px;}
._1d_c01061{width:38.976000px;}
._38_c01061{width:39.984000px;}
._13_c01061{width:41.856000px;}
._1f_c01061{width:44.100000px;}
._1c_c01061{width:46.284000px;}
._21_c01061{width:48.048000px;}
._3e_c01061{width:49.548000px;}
._2b_c01061{width:50.820000px;}
._1e_c01061{width:52.500000px;}
._12_c01061{width:54.456000px;}
._2c_c01061{width:56.532000px;}
._18_c01061{width:58.548000px;}
._42_c01061{width:59.652000px;}
._32_c01061{width:61.152000px;}
._44_c01061{width:62.328000px;}
._2d_c01061{width:64.992000px;}
._37_c01061{width:67.428000px;}
._25_c01061{width:69.720000px;}
._36_c01061{width:72.072000px;}
._2f_c01061{width:74.148000px;}
._23_c01061{width:76.272000px;}
._22_c01061{width:80.808000px;}
._1b_c01061{width:84.840000px;}
._3b_c01061{width:91.248000px;}
._2a_c01061{width:95.340000px;}
._48_c01061{width:129.504000px;}
._40_c01061{width:159.732000px;}
._39_c01061{width:164.868000px;}
._46_c01061{width:236.016000px;}
._45_c01061{width:255.024000px;}
._b_c01061{width:302.232000px;}
._35_c01061{width:406.308000px;}
._47_c01061{width:664.404000px;}
._49_c01061{width:902.664000px;}
.fc2_c01061{color:transparent;}
.fc1_c01061{color:rgb(128,128,128);}
.fc0_c01061{color:rgb(0,0,0);}
.fs4_c01061{font-size:48.000000px;}
.fs0_c01061{font-size:84.000000px;}
.fs1_c01061{font-size:87.000000px;}
.fs2_c01061{font-size:96.000000px;}
.fs3_c01061{font-size:102.000000px;}
.y0_c01061{bottom:0.000000px;}
.y26_c01061{bottom:3.105000px;}
.y25_c01061{bottom:7.228357px;}
.y24_c01061{bottom:96.930000px;}
.y23_c01061{bottom:131.280000px;}
.y22_c01061{bottom:166.080000px;}
.y21_c01061{bottom:199.830000px;}
.y20_c01061{bottom:232.980000px;}
.y1f_c01061{bottom:268.380000px;}
.y1e_c01061{bottom:302.730000px;}
.y1d_c01061{bottom:336.180000px;}
.y1c_c01061{bottom:369.180000px;}
.y1b_c01061{bottom:404.430000px;}
.y1a_c01061{bottom:438.780000px;}
.y19_c01061{bottom:472.530000px;}
.y18_c01061{bottom:506.280000px;}
.y17_c01061{bottom:539.430000px;}
.y16_c01061{bottom:573.780000px;}
.y15_c01061{bottom:607.530000px;}
.y14_c01061{bottom:640.980000px;}
.y13_c01061{bottom:674.430000px;}
.y12_c01061{bottom:708.480000px;}
.y11_c01061{bottom:741.180000px;}
.y10_c01061{bottom:774.630000px;}
.yf_c01061{bottom:808.980000px;}
.ye_c01061{bottom:842.730000px;}
.yd_c01061{bottom:875.880000px;}
.yc_c01061{bottom:909.630000px;}
.yb_c01061{bottom:943.380000px;}
.ya_c01061{bottom:976.380000px;}
.y9_c01061{bottom:1009.230000px;}
.y8_c01061{bottom:1042.230000px;}
.y7_c01061{bottom:1076.280000px;}
.y6_c01061{bottom:1109.730000px;}
.y5_c01061{bottom:1143.180000px;}
.y4_c01061{bottom:1176.630000px;}
.y3_c01061{bottom:1210.380000px;}
.y2_c01061{bottom:1243.380000px;}
.y1_c01061{bottom:1275.780000px;}
.h5_c01061{height:13.200074px;}
.h6_c01061{height:43.804688px;}
.h3_c01061{height:98.314453px;}
.h2_c01061{height:106.353516px;}
.h4_c01061{height:121.546875px;}
.h0_c01061{height:1382.700000px;}
.h1_c01061{height:1383.000000px;}
.w2_c01061{width:104.875500px;}
.w0_c01061{width:863.175000px;}
.w1_c01061{width:863.250000px;}
.x0_c01061{left:0.000000px;}
.x2_c01061{left:217.950000px;}
.x1_c01061{left:219.600000px;}
.x9_c01061{left:220.650000px;}
.x3_c01061{left:221.700000px;}
.x5_c01061{left:222.750000px;}
.x6_c01061{left:223.800000px;}
.xa_c01061{left:251.700000px;}
.x8_c01061{left:269.700000px;}
.x7_c01061{left:271.950000px;}
.x4_c01061{left:274.650000px;}
.xb_c01061{left:383.401749px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.ls1_c01061{letter-spacing:2.666667pt;}
.ls2_c01061{letter-spacing:13.333333pt;}
.ws2_c01061{word-spacing:-45.333333pt;}
.ws0_c01061{word-spacing:-31.328000pt;}
.ws1_c01061{word-spacing:-17.994667pt;}
.ws3_c01061{word-spacing:0.000000pt;}
._3f_c01061{margin-left:-41.472000pt;}
._43_c01061{margin-left:-21.994667pt;}
._3a_c01061{margin-left:-20.309333pt;}
._30_c01061{margin-left:-17.994667pt;}
._2e_c01061{margin-left:-15.306667pt;}
._2_c01061{margin-left:-13.813333pt;}
._33_c01061{margin-left:-12.618667pt;}
._34_c01061{margin-left:-10.752000pt;}
._3d_c01061{margin-left:-9.482667pt;}
._10_c01061{margin-left:-7.952000pt;}
._3c_c01061{margin-left:-6.848000pt;}
._f_c01061{margin-left:-5.749333pt;}
._31_c01061{margin-left:-4.832000pt;}
._e_c01061{margin-left:-3.733333pt;}
._20_c01061{margin-left:-2.016000pt;}
._28_c01061{margin-left:-0.970667pt;}
._c_c01061{width:1.418667pt;}
._7_c01061{width:2.837333pt;}
._1a_c01061{width:3.808000pt;}
._5_c01061{width:4.778667pt;}
._8_c01061{width:6.197333pt;}
._24_c01061{width:7.093333pt;}
._4_c01061{width:7.989333pt;}
._3_c01061{width:9.184000pt;}
._1_c01061{width:10.080000pt;}
._9_c01061{width:11.648000pt;}
._a_c01061{width:12.544000pt;}
._0_c01061{width:13.440000pt;}
._d_c01061{width:15.082667pt;}
._19_c01061{width:16.352000pt;}
._26_c01061{width:19.786667pt;}
._17_c01061{width:20.981333pt;}
._6_c01061{width:22.773333pt;}
._15_c01061{width:25.312000pt;}
._11_c01061{width:26.656000pt;}
._27_c01061{width:27.552000pt;}
._29_c01061{width:29.418667pt;}
._14_c01061{width:31.434667pt;}
._41_c01061{width:32.341333pt;}
._16_c01061{width:33.450667pt;}
._1d_c01061{width:34.645333pt;}
._38_c01061{width:35.541333pt;}
._13_c01061{width:37.205333pt;}
._1f_c01061{width:39.200000pt;}
._1c_c01061{width:41.141333pt;}
._21_c01061{width:42.709333pt;}
._3e_c01061{width:44.042667pt;}
._2b_c01061{width:45.173333pt;}
._1e_c01061{width:46.666667pt;}
._12_c01061{width:48.405333pt;}
._2c_c01061{width:50.250667pt;}
._18_c01061{width:52.042667pt;}
._42_c01061{width:53.024000pt;}
._32_c01061{width:54.357333pt;}
._44_c01061{width:55.402667pt;}
._2d_c01061{width:57.770667pt;}
._37_c01061{width:59.936000pt;}
._25_c01061{width:61.973333pt;}
._36_c01061{width:64.064000pt;}
._2f_c01061{width:65.909333pt;}
._23_c01061{width:67.797333pt;}
._22_c01061{width:71.829333pt;}
._1b_c01061{width:75.413333pt;}
._3b_c01061{width:81.109333pt;}
._2a_c01061{width:84.746667pt;}
._48_c01061{width:115.114667pt;}
._40_c01061{width:141.984000pt;}
._39_c01061{width:146.549333pt;}
._46_c01061{width:209.792000pt;}
._45_c01061{width:226.688000pt;}
._b_c01061{width:268.650667pt;}
._35_c01061{width:361.162667pt;}
._47_c01061{width:590.581333pt;}
._49_c01061{width:802.368000pt;}
.fs4_c01061{font-size:42.666667pt;}
.fs0_c01061{font-size:74.666667pt;}
.fs1_c01061{font-size:77.333333pt;}
.fs2_c01061{font-size:85.333333pt;}
.fs3_c01061{font-size:90.666667pt;}
.y0_c01061{bottom:0.000000pt;}
.y26_c01061{bottom:2.760000pt;}
.y25_c01061{bottom:6.425206pt;}
.y24_c01061{bottom:86.160000pt;}
.y23_c01061{bottom:116.693333pt;}
.y22_c01061{bottom:147.626667pt;}
.y21_c01061{bottom:177.626667pt;}
.y20_c01061{bottom:207.093333pt;}
.y1f_c01061{bottom:238.560000pt;}
.y1e_c01061{bottom:269.093333pt;}
.y1d_c01061{bottom:298.826667pt;}
.y1c_c01061{bottom:328.160000pt;}
.y1b_c01061{bottom:359.493333pt;}
.y1a_c01061{bottom:390.026667pt;}
.y19_c01061{bottom:420.026667pt;}
.y18_c01061{bottom:450.026667pt;}
.y17_c01061{bottom:479.493333pt;}
.y16_c01061{bottom:510.026667pt;}
.y15_c01061{bottom:540.026667pt;}
.y14_c01061{bottom:569.760000pt;}
.y13_c01061{bottom:599.493333pt;}
.y12_c01061{bottom:629.760000pt;}
.y11_c01061{bottom:658.826667pt;}
.y10_c01061{bottom:688.560000pt;}
.yf_c01061{bottom:719.093333pt;}
.ye_c01061{bottom:749.093333pt;}
.yd_c01061{bottom:778.560000pt;}
.yc_c01061{bottom:808.560000pt;}
.yb_c01061{bottom:838.560000pt;}
.ya_c01061{bottom:867.893333pt;}
.y9_c01061{bottom:897.093333pt;}
.y8_c01061{bottom:926.426667pt;}
.y7_c01061{bottom:956.693333pt;}
.y6_c01061{bottom:986.426667pt;}
.y5_c01061{bottom:1016.160000pt;}
.y4_c01061{bottom:1045.893333pt;}
.y3_c01061{bottom:1075.893333pt;}
.y2_c01061{bottom:1105.226667pt;}
.y1_c01061{bottom:1134.026667pt;}
.h5_c01061{height:11.733399pt;}
.h6_c01061{height:38.937500pt;}
.h3_c01061{height:87.390625pt;}
.h2_c01061{height:94.536458pt;}
.h4_c01061{height:108.041667pt;}
.h0_c01061{height:1229.066667pt;}
.h1_c01061{height:1229.333333pt;}
.w2_c01061{width:93.222667pt;}
.w0_c01061{width:767.266667pt;}
.w1_c01061{width:767.333333pt;}
.x0_c01061{left:0.000000pt;}
.x2_c01061{left:193.733333pt;}
.x1_c01061{left:195.200000pt;}
.x9_c01061{left:196.133333pt;}
.x3_c01061{left:197.066667pt;}
.x5_c01061{left:198.000000pt;}
.x6_c01061{left:198.933333pt;}
.xa_c01061{left:223.733333pt;}
.x8_c01061{left:239.733333pt;}
.x7_c01061{left:241.733333pt;}
.x4_c01061{left:244.133333pt;}
.xb_c01061{left:340.801554pt;}
}





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

.ir_c01062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_904875b751f647fa81453d6f.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01062;src:url('chunks/assets/font_715e0c579dabc256b0778535.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01062;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls1_c01062{letter-spacing:0.000000px;}
.ls2_c01062{letter-spacing:6.000000px;}
.ls0_c01062{letter-spacing:6.120000px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01062{word-spacing:-28.413000px;}
.ws0_c01062{word-spacing:-20.244000px;}
.ws2_c01062{word-spacing:0.000000px;}
._3b_c01062{margin-left:-30.564000px;}
._2f_c01062{margin-left:-24.960000px;}
._3d_c01062{margin-left:-20.976000px;}
._41_c01062{margin-left:-17.088000px;}
._40_c01062{margin-left:-12.444000px;}
._1b_c01062{margin-left:-11.040000px;}
._3f_c01062{margin-left:-8.832000px;}
._25_c01062{margin-left:-6.048000px;}
._1d_c01062{margin-left:-4.704000px;}
._20_c01062{margin-left:-3.360000px;}
._16_c01062{margin-left:-2.100000px;}
._21_c01062{margin-left:-1.092000px;}
._15_c01062{width:1.176000px;}
._5_c01062{width:2.688000px;}
._4_c01062{width:3.864000px;}
._f_c01062{width:5.124000px;}
._3_c01062{width:6.300000px;}
._8_c01062{width:7.728000px;}
._6_c01062{width:8.988000px;}
._1_c01062{width:10.416000px;}
._d_c01062{width:11.508000px;}
._0_c01062{width:13.272000px;}
._a_c01062{width:15.036000px;}
._18_c01062{width:17.220000px;}
._b_c01062{width:19.236000px;}
._1f_c01062{width:21.588000px;}
._14_c01062{width:23.688000px;}
._3a_c01062{width:25.236000px;}
._17_c01062{width:26.460000px;}
._28_c01062{width:27.720000px;}
._19_c01062{width:29.148000px;}
._32_c01062{width:30.420000px;}
._2_c01062{width:32.424000px;}
._36_c01062{width:34.896000px;}
._39_c01062{width:36.312000px;}
._10_c01062{width:37.884000px;}
._3c_c01062{width:39.288000px;}
._23_c01062{width:40.992000px;}
._9_c01062{width:42.000000px;}
._35_c01062{width:43.056000px;}
._33_c01062{width:45.336000px;}
._1c_c01062{width:47.040000px;}
._22_c01062{width:48.048000px;}
._34_c01062{width:49.524000px;}
._43_c01062{width:50.892000px;}
._24_c01062{width:52.200000px;}
._7_c01062{width:54.096000px;}
._2a_c01062{width:55.380000px;}
._38_c01062{width:56.412000px;}
._37_c01062{width:57.852000px;}
._3e_c01062{width:59.508000px;}
._11_c01062{width:60.816000px;}
._42_c01062{width:62.772000px;}
._45_c01062{width:64.344000px;}
._12_c01062{width:67.116000px;}
._2c_c01062{width:68.148000px;}
._e_c01062{width:70.308000px;}
._46_c01062{width:76.860000px;}
._13_c01062{width:79.884000px;}
._2e_c01062{width:86.016000px;}
._31_c01062{width:89.040000px;}
._2b_c01062{width:90.552000px;}
._1a_c01062{width:123.084000px;}
._44_c01062{width:138.024000px;}
._26_c01062{width:183.624000px;}
._30_c01062{width:188.364000px;}
._29_c01062{width:189.552000px;}
._2d_c01062{width:193.800000px;}
._c_c01062{width:254.436000px;}
._1e_c01062{width:467.136000px;}
._27_c01062{width:1109.388000px;}
.fc2_c01062{color:transparent;}
.fc1_c01062{color:rgb(128,128,128);}
.fc0_c01062{color:rgb(0,0,0);}
.fs3_c01062{font-size:48.000000px;}
.fs0_c01062{font-size:84.000000px;}
.fs2_c01062{font-size:93.000000px;}
.fs1_c01062{font-size:96.000000px;}
.y0_c01062{bottom:0.000000px;}
.y26_c01062{bottom:3.105000px;}
.y25_c01062{bottom:7.228369px;}
.y24_c01062{bottom:117.720000px;}
.y23_c01062{bottom:149.520000px;}
.y22_c01062{bottom:184.620000px;}
.y21_c01062{bottom:217.920000px;}
.y20_c01062{bottom:252.420000px;}
.y1f_c01062{bottom:286.170000px;}
.y1e_c01062{bottom:319.920000px;}
.y1d_c01062{bottom:353.970000px;}
.y1c_c01062{bottom:387.720000px;}
.y1b_c01062{bottom:420.570000px;}
.y1a_c01062{bottom:455.520000px;}
.y19_c01062{bottom:488.970000px;}
.y18_c01062{bottom:522.420000px;}
.y17_c01062{bottom:555.870000px;}
.y16_c01062{bottom:589.920000px;}
.y15_c01062{bottom:623.370000px;}
.y14_c01062{bottom:657.420000px;}
.y13_c01062{bottom:690.870000px;}
.y12_c01062{bottom:723.870000px;}
.y11_c01062{bottom:757.620000px;}
.y10_c01062{bottom:791.070000px;}
.yf_c01062{bottom:823.770000px;}
.ye_c01062{bottom:856.920000px;}
.yd_c01062{bottom:890.670000px;}
.yc_c01062{bottom:923.970000px;}
.yb_c01062{bottom:957.120000px;}
.ya_c01062{bottom:991.170000px;}
.y9_c01062{bottom:1023.570000px;}
.y8_c01062{bottom:1057.320000px;}
.y7_c01062{bottom:1091.520000px;}
.y6_c01062{bottom:1122.570000px;}
.y5_c01062{bottom:1156.620000px;}
.y4_c01062{bottom:1189.620000px;}
.y3_c01062{bottom:1222.020000px;}
.y2_c01062{bottom:1256.220000px;}
.y1_c01062{bottom:1289.820000px;}
.h5_c01062{height:13.200073px;}
.h6_c01062{height:43.804688px;}
.h2_c01062{height:106.353516px;}
.h4_c01062{height:117.748535px;}
.h3_c01062{height:121.546875px;}
.h0_c01062{height:1383.450000px;}
.h1_c01062{height:1383.750000px;}
.w2_c01062{width:104.875500px;}
.w0_c01062{width:878.025000px;}
.w1_c01062{width:878.250000px;}
.x0_c01062{left:0.000000px;}
.x8_c01062{left:33.150000px;}
.x7_c01062{left:34.200000px;}
.x6_c01062{left:35.400000px;}
.x5_c01062{left:37.500000px;}
.x4_c01062{left:38.550000px;}
.x1_c01062{left:41.250000px;}
.x3_c01062{left:42.900000px;}
.x2_c01062{left:44.550000px;}
.xa_c01062{left:390.826721px;}
.x9_c01062{left:572.700000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls1_c01062{letter-spacing:0.000000pt;}
.ls2_c01062{letter-spacing:5.333333pt;}
.ls0_c01062{letter-spacing:5.440000pt;}
.ws1_c01062{word-spacing:-25.256000pt;}
.ws0_c01062{word-spacing:-17.994667pt;}
.ws2_c01062{word-spacing:0.000000pt;}
._3b_c01062{margin-left:-27.168000pt;}
._2f_c01062{margin-left:-22.186667pt;}
._3d_c01062{margin-left:-18.645333pt;}
._41_c01062{margin-left:-15.189333pt;}
._40_c01062{margin-left:-11.061333pt;}
._1b_c01062{margin-left:-9.813333pt;}
._3f_c01062{margin-left:-7.850667pt;}
._25_c01062{margin-left:-5.376000pt;}
._1d_c01062{margin-left:-4.181333pt;}
._20_c01062{margin-left:-2.986667pt;}
._16_c01062{margin-left:-1.866667pt;}
._21_c01062{margin-left:-0.970667pt;}
._15_c01062{width:1.045333pt;}
._5_c01062{width:2.389333pt;}
._4_c01062{width:3.434667pt;}
._f_c01062{width:4.554667pt;}
._3_c01062{width:5.600000pt;}
._8_c01062{width:6.869333pt;}
._6_c01062{width:7.989333pt;}
._1_c01062{width:9.258667pt;}
._d_c01062{width:10.229333pt;}
._0_c01062{width:11.797333pt;}
._a_c01062{width:13.365333pt;}
._18_c01062{width:15.306667pt;}
._b_c01062{width:17.098667pt;}
._1f_c01062{width:19.189333pt;}
._14_c01062{width:21.056000pt;}
._3a_c01062{width:22.432000pt;}
._17_c01062{width:23.520000pt;}
._28_c01062{width:24.640000pt;}
._19_c01062{width:25.909333pt;}
._32_c01062{width:27.040000pt;}
._2_c01062{width:28.821333pt;}
._36_c01062{width:31.018667pt;}
._39_c01062{width:32.277333pt;}
._10_c01062{width:33.674667pt;}
._3c_c01062{width:34.922667pt;}
._23_c01062{width:36.437333pt;}
._9_c01062{width:37.333333pt;}
._35_c01062{width:38.272000pt;}
._33_c01062{width:40.298667pt;}
._1c_c01062{width:41.813333pt;}
._22_c01062{width:42.709333pt;}
._34_c01062{width:44.021333pt;}
._43_c01062{width:45.237333pt;}
._24_c01062{width:46.400000pt;}
._7_c01062{width:48.085333pt;}
._2a_c01062{width:49.226667pt;}
._38_c01062{width:50.144000pt;}
._37_c01062{width:51.424000pt;}
._3e_c01062{width:52.896000pt;}
._11_c01062{width:54.058667pt;}
._42_c01062{width:55.797333pt;}
._45_c01062{width:57.194667pt;}
._12_c01062{width:59.658667pt;}
._2c_c01062{width:60.576000pt;}
._e_c01062{width:62.496000pt;}
._46_c01062{width:68.320000pt;}
._13_c01062{width:71.008000pt;}
._2e_c01062{width:76.458667pt;}
._31_c01062{width:79.146667pt;}
._2b_c01062{width:80.490667pt;}
._1a_c01062{width:109.408000pt;}
._44_c01062{width:122.688000pt;}
._26_c01062{width:163.221333pt;}
._30_c01062{width:167.434667pt;}
._29_c01062{width:168.490667pt;}
._2d_c01062{width:172.266667pt;}
._c_c01062{width:226.165333pt;}
._1e_c01062{width:415.232000pt;}
._27_c01062{width:986.122667pt;}
.fs3_c01062{font-size:42.666667pt;}
.fs0_c01062{font-size:74.666667pt;}
.fs2_c01062{font-size:82.666667pt;}
.fs1_c01062{font-size:85.333333pt;}
.y0_c01062{bottom:0.000000pt;}
.y26_c01062{bottom:2.760000pt;}
.y25_c01062{bottom:6.425217pt;}
.y24_c01062{bottom:104.640000pt;}
.y23_c01062{bottom:132.906667pt;}
.y22_c01062{bottom:164.106667pt;}
.y21_c01062{bottom:193.706667pt;}
.y20_c01062{bottom:224.373333pt;}
.y1f_c01062{bottom:254.373333pt;}
.y1e_c01062{bottom:284.373333pt;}
.y1d_c01062{bottom:314.640000pt;}
.y1c_c01062{bottom:344.640000pt;}
.y1b_c01062{bottom:373.840000pt;}
.y1a_c01062{bottom:404.906667pt;}
.y19_c01062{bottom:434.640000pt;}
.y18_c01062{bottom:464.373333pt;}
.y17_c01062{bottom:494.106667pt;}
.y16_c01062{bottom:524.373333pt;}
.y15_c01062{bottom:554.106667pt;}
.y14_c01062{bottom:584.373333pt;}
.y13_c01062{bottom:614.106667pt;}
.y12_c01062{bottom:643.440000pt;}
.y11_c01062{bottom:673.440000pt;}
.y10_c01062{bottom:703.173333pt;}
.yf_c01062{bottom:732.240000pt;}
.ye_c01062{bottom:761.706667pt;}
.yd_c01062{bottom:791.706667pt;}
.yc_c01062{bottom:821.306667pt;}
.yb_c01062{bottom:850.773333pt;}
.ya_c01062{bottom:881.040000pt;}
.y9_c01062{bottom:909.840000pt;}
.y8_c01062{bottom:939.840000pt;}
.y7_c01062{bottom:970.240000pt;}
.y6_c01062{bottom:997.840000pt;}
.y5_c01062{bottom:1028.106667pt;}
.y4_c01062{bottom:1057.440000pt;}
.y3_c01062{bottom:1086.240000pt;}
.y2_c01062{bottom:1116.640000pt;}
.y1_c01062{bottom:1146.506667pt;}
.h5_c01062{height:11.733399pt;}
.h6_c01062{height:38.937500pt;}
.h2_c01062{height:94.536458pt;}
.h4_c01062{height:104.665365pt;}
.h3_c01062{height:108.041667pt;}
.h0_c01062{height:1229.733333pt;}
.h1_c01062{height:1230.000000pt;}
.w2_c01062{width:93.222667pt;}
.w0_c01062{width:780.466667pt;}
.w1_c01062{width:780.666667pt;}
.x0_c01062{left:0.000000pt;}
.x8_c01062{left:29.466667pt;}
.x7_c01062{left:30.400000pt;}
.x6_c01062{left:31.466667pt;}
.x5_c01062{left:33.333333pt;}
.x4_c01062{left:34.266667pt;}
.x1_c01062{left:36.666667pt;}
.x3_c01062{left:38.133333pt;}
.x2_c01062{left:39.600000pt;}
.xa_c01062{left:347.401530pt;}
.x9_c01062{left:509.066667pt;}
}





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

.ir_c01063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_44ec4bdb9f1ede188e6ee8e2.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01063;src:url('chunks/assets/font_6dda349bc2b7272ba9138c43.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01063;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01063{vertical-align:-79.200000px;}
.v0_c01063{vertical-align:0.000000px;}
.ls0_c01063{letter-spacing:0.000000px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01063{word-spacing:-20.244000px;}
.ws1_c01063{word-spacing:0.000000px;}
._29_c01063{margin-left:-86.112000px;}
._17_c01063{margin-left:-19.008000px;}
._48_c01063{margin-left:-16.416000px;}
._11_c01063{margin-left:-14.976000px;}
._16_c01063{margin-left:-13.824000px;}
._18_c01063{margin-left:-10.944000px;}
._1d_c01063{margin-left:-9.696000px;}
._10_c01063{margin-left:-8.352000px;}
._f_c01063{margin-left:-7.200000px;}
._12_c01063{margin-left:-6.144000px;}
._32_c01063{margin-left:-4.800000px;}
._13_c01063{margin-left:-3.552000px;}
._2e_c01063{margin-left:-2.496000px;}
._b_c01063{margin-left:-1.248000px;}
._4_c01063{width:1.920000px;}
._5_c01063{width:3.264000px;}
._1_c01063{width:4.800000px;}
._2_c01063{width:6.528000px;}
._0_c01063{width:8.064000px;}
._22_c01063{width:9.792000px;}
._21_c01063{width:11.040000px;}
._8_c01063{width:12.960000px;}
._19_c01063{width:14.592000px;}
._1f_c01063{width:15.672000px;}
._23_c01063{width:16.932000px;}
._3_c01063{width:19.104000px;}
._2d_c01063{width:20.736000px;}
._7_c01063{width:21.888000px;}
._36_c01063{width:24.288000px;}
._c_c01063{width:25.344000px;}
._1c_c01063{width:27.648000px;}
._20_c01063{width:28.956000px;}
._d_c01063{width:30.624000px;}
._6_c01063{width:31.776000px;}
._37_c01063{width:32.928000px;}
._1a_c01063{width:34.080000px;}
._9_c01063{width:36.192000px;}
._44_c01063{width:37.536000px;}
._31_c01063{width:38.688000px;}
._35_c01063{width:40.608000px;}
._39_c01063{width:41.856000px;}
._2c_c01063{width:43.104000px;}
._26_c01063{width:45.120000px;}
._a_c01063{width:47.808000px;}
._14_c01063{width:49.440000px;}
._2b_c01063{width:51.168000px;}
._3e_c01063{width:52.416000px;}
._2a_c01063{width:53.760000px;}
._3a_c01063{width:56.580000px;}
._24_c01063{width:58.464000px;}
._3b_c01063{width:60.096000px;}
._34_c01063{width:62.208000px;}
._42_c01063{width:63.804000px;}
._43_c01063{width:65.124000px;}
._25_c01063{width:66.336000px;}
._38_c01063{width:69.024000px;}
._27_c01063{width:73.248000px;}
._45_c01063{width:79.968000px;}
._3c_c01063{width:81.408000px;}
._4a_c01063{width:82.464000px;}
._2f_c01063{width:83.760000px;}
._e_c01063{width:85.248000px;}
._1e_c01063{width:101.088000px;}
._40_c01063{width:107.808000px;}
._15_c01063{width:121.248000px;}
._28_c01063{width:133.824000px;}
._3f_c01063{width:137.664000px;}
._47_c01063{width:160.800000px;}
._41_c01063{width:179.616000px;}
._49_c01063{width:181.824000px;}
._1b_c01063{width:259.104000px;}
._30_c01063{width:284.880000px;}
._46_c01063{width:322.416000px;}
._3d_c01063{width:464.700000px;}
._33_c01063{width:659.520000px;}
.fc2_c01063{color:transparent;}
.fc1_c01063{color:rgb(128,128,128);}
.fc0_c01063{color:rgb(0,0,0);}
.fs3_c01063{font-size:48.000000px;}
.fs2_c01063{font-size:60.000000px;}
.fs1_c01063{font-size:84.000000px;}
.fs0_c01063{font-size:96.000000px;}
.y0_c01063{bottom:0.000000px;}
.y26_c01063{bottom:3.105000px;}
.y25_c01063{bottom:7.228371px;}
.y24_c01063{bottom:72.315000px;}
.y23_c01063{bottom:111.015000px;}
.y22_c01063{bottom:144.165000px;}
.y21_c01063{bottom:178.215000px;}
.y20_c01063{bottom:212.415000px;}
.y1f_c01063{bottom:247.065000px;}
.y1e_c01063{bottom:280.815000px;}
.y1d_c01063{bottom:313.965000px;}
.y1c_c01063{bottom:348.765000px;}
.y1b_c01063{bottom:382.065000px;}
.y1a_c01063{bottom:415.815000px;}
.y19_c01063{bottom:448.965000px;}
.y18_c01063{bottom:484.365000px;}
.y17_c01063{bottom:517.815000px;}
.y16_c01063{bottom:551.865000px;}
.y15_c01063{bottom:585.915000px;}
.y14_c01063{bottom:619.365000px;}
.y13_c01063{bottom:652.515000px;}
.y12_c01063{bottom:686.565000px;}
.y11_c01063{bottom:719.865000px;}
.y10_c01063{bottom:753.315000px;}
.yf_c01063{bottom:787.365000px;}
.ye_c01063{bottom:820.215000px;}
.yd_c01063{bottom:853.965000px;}
.yc_c01063{bottom:887.415000px;}
.yb_c01063{bottom:922.515000px;}
.ya_c01063{bottom:954.915000px;}
.y9_c01063{bottom:1007.415000px;}
.y8_c01063{bottom:1021.065000px;}
.y7_c01063{bottom:1054.365000px;}
.y6_c01063{bottom:1088.115000px;}
.y5_c01063{bottom:1121.265000px;}
.y4_c01063{bottom:1154.565000px;}
.y3_c01063{bottom:1188.015000px;}
.y2_c01063{bottom:1221.465000px;}
.y1_c01063{bottom:1253.865000px;}
.h4_c01063{height:13.200074px;}
.h5_c01063{height:43.804688px;}
.h3_c01063{height:75.966797px;}
.h2_c01063{height:121.546875px;}
.h0_c01063{height:1354.875000px;}
.h1_c01063{height:1355.250000px;}
.w2_c01063{width:104.875500px;}
.w0_c01063{width:845.625000px;}
.w1_c01063{width:846.000000px;}
.x0_c01063{left:0.000000px;}
.x2_c01063{left:26.100000px;}
.x5_c01063{left:60.750000px;}
.x3_c01063{left:108.450000px;}
.xe_c01063{left:141.750000px;}
.x10_c01063{left:149.400000px;}
.xf_c01063{left:207.600000px;}
.x1_c01063{left:214.650000px;}
.x4_c01063{left:215.700000px;}
.x6_c01063{left:217.350000px;}
.x7_c01063{left:219.000000px;}
.x8_c01063{left:220.050000px;}
.xa_c01063{left:221.700000px;}
.xd_c01063{left:222.750000px;}
.xb_c01063{left:223.800000px;}
.xc_c01063{left:225.000000px;}
.x9_c01063{left:372.300000px;}
.x11_c01063{left:374.626740px;}
@media print{
.v1_c01063{vertical-align:-70.400000pt;}
.v0_c01063{vertical-align:0.000000pt;}
.ls0_c01063{letter-spacing:0.000000pt;}
.ws0_c01063{word-spacing:-17.994667pt;}
.ws1_c01063{word-spacing:0.000000pt;}
._29_c01063{margin-left:-76.544000pt;}
._17_c01063{margin-left:-16.896000pt;}
._48_c01063{margin-left:-14.592000pt;}
._11_c01063{margin-left:-13.312000pt;}
._16_c01063{margin-left:-12.288000pt;}
._18_c01063{margin-left:-9.728000pt;}
._1d_c01063{margin-left:-8.618667pt;}
._10_c01063{margin-left:-7.424000pt;}
._f_c01063{margin-left:-6.400000pt;}
._12_c01063{margin-left:-5.461333pt;}
._32_c01063{margin-left:-4.266667pt;}
._13_c01063{margin-left:-3.157333pt;}
._2e_c01063{margin-left:-2.218667pt;}
._b_c01063{margin-left:-1.109333pt;}
._4_c01063{width:1.706667pt;}
._5_c01063{width:2.901333pt;}
._1_c01063{width:4.266667pt;}
._2_c01063{width:5.802667pt;}
._0_c01063{width:7.168000pt;}
._22_c01063{width:8.704000pt;}
._21_c01063{width:9.813333pt;}
._8_c01063{width:11.520000pt;}
._19_c01063{width:12.970667pt;}
._1f_c01063{width:13.930667pt;}
._23_c01063{width:15.050667pt;}
._3_c01063{width:16.981333pt;}
._2d_c01063{width:18.432000pt;}
._7_c01063{width:19.456000pt;}
._36_c01063{width:21.589333pt;}
._c_c01063{width:22.528000pt;}
._1c_c01063{width:24.576000pt;}
._20_c01063{width:25.738667pt;}
._d_c01063{width:27.221333pt;}
._6_c01063{width:28.245333pt;}
._37_c01063{width:29.269333pt;}
._1a_c01063{width:30.293333pt;}
._9_c01063{width:32.170667pt;}
._44_c01063{width:33.365333pt;}
._31_c01063{width:34.389333pt;}
._35_c01063{width:36.096000pt;}
._39_c01063{width:37.205333pt;}
._2c_c01063{width:38.314667pt;}
._26_c01063{width:40.106667pt;}
._a_c01063{width:42.496000pt;}
._14_c01063{width:43.946667pt;}
._2b_c01063{width:45.482667pt;}
._3e_c01063{width:46.592000pt;}
._2a_c01063{width:47.786667pt;}
._3a_c01063{width:50.293333pt;}
._24_c01063{width:51.968000pt;}
._3b_c01063{width:53.418667pt;}
._34_c01063{width:55.296000pt;}
._42_c01063{width:56.714667pt;}
._43_c01063{width:57.888000pt;}
._25_c01063{width:58.965333pt;}
._38_c01063{width:61.354667pt;}
._27_c01063{width:65.109333pt;}
._45_c01063{width:71.082667pt;}
._3c_c01063{width:72.362667pt;}
._4a_c01063{width:73.301333pt;}
._2f_c01063{width:74.453333pt;}
._e_c01063{width:75.776000pt;}
._1e_c01063{width:89.856000pt;}
._40_c01063{width:95.829333pt;}
._15_c01063{width:107.776000pt;}
._28_c01063{width:118.954667pt;}
._3f_c01063{width:122.368000pt;}
._47_c01063{width:142.933333pt;}
._41_c01063{width:159.658667pt;}
._49_c01063{width:161.621333pt;}
._1b_c01063{width:230.314667pt;}
._30_c01063{width:253.226667pt;}
._46_c01063{width:286.592000pt;}
._3d_c01063{width:413.066667pt;}
._33_c01063{width:586.240000pt;}
.fs3_c01063{font-size:42.666667pt;}
.fs2_c01063{font-size:53.333333pt;}
.fs1_c01063{font-size:74.666667pt;}
.fs0_c01063{font-size:85.333333pt;}
.y0_c01063{bottom:0.000000pt;}
.y26_c01063{bottom:2.760000pt;}
.y25_c01063{bottom:6.425219pt;}
.y24_c01063{bottom:64.280000pt;}
.y23_c01063{bottom:98.680000pt;}
.y22_c01063{bottom:128.146667pt;}
.y21_c01063{bottom:158.413333pt;}
.y20_c01063{bottom:188.813333pt;}
.y1f_c01063{bottom:219.613333pt;}
.y1e_c01063{bottom:249.613333pt;}
.y1d_c01063{bottom:279.080000pt;}
.y1c_c01063{bottom:310.013333pt;}
.y1b_c01063{bottom:339.613333pt;}
.y1a_c01063{bottom:369.613333pt;}
.y19_c01063{bottom:399.080000pt;}
.y18_c01063{bottom:430.546667pt;}
.y17_c01063{bottom:460.280000pt;}
.y16_c01063{bottom:490.546667pt;}
.y15_c01063{bottom:520.813333pt;}
.y14_c01063{bottom:550.546667pt;}
.y13_c01063{bottom:580.013333pt;}
.y12_c01063{bottom:610.280000pt;}
.y11_c01063{bottom:639.880000pt;}
.y10_c01063{bottom:669.613333pt;}
.yf_c01063{bottom:699.880000pt;}
.ye_c01063{bottom:729.080000pt;}
.yd_c01063{bottom:759.080000pt;}
.yc_c01063{bottom:788.813333pt;}
.yb_c01063{bottom:820.013333pt;}
.ya_c01063{bottom:848.813333pt;}
.y9_c01063{bottom:895.480000pt;}
.y8_c01063{bottom:907.613333pt;}
.y7_c01063{bottom:937.213333pt;}
.y6_c01063{bottom:967.213333pt;}
.y5_c01063{bottom:996.680000pt;}
.y4_c01063{bottom:1026.280000pt;}
.y3_c01063{bottom:1056.013333pt;}
.y2_c01063{bottom:1085.746667pt;}
.y1_c01063{bottom:1114.546667pt;}
.h4_c01063{height:11.733399pt;}
.h5_c01063{height:38.937500pt;}
.h3_c01063{height:67.526042pt;}
.h2_c01063{height:108.041667pt;}
.h0_c01063{height:1204.333333pt;}
.h1_c01063{height:1204.666667pt;}
.w2_c01063{width:93.222667pt;}
.w0_c01063{width:751.666667pt;}
.w1_c01063{width:752.000000pt;}
.x0_c01063{left:0.000000pt;}
.x2_c01063{left:23.200000pt;}
.x5_c01063{left:54.000000pt;}
.x3_c01063{left:96.400000pt;}
.xe_c01063{left:126.000000pt;}
.x10_c01063{left:132.800000pt;}
.xf_c01063{left:184.533333pt;}
.x1_c01063{left:190.800000pt;}
.x4_c01063{left:191.733333pt;}
.x6_c01063{left:193.200000pt;}
.x7_c01063{left:194.666667pt;}
.x8_c01063{left:195.600000pt;}
.xa_c01063{left:197.066667pt;}
.xd_c01063{left:198.000000pt;}
.xb_c01063{left:198.933333pt;}
.xc_c01063{left:200.000000pt;}
.x9_c01063{left:330.933333pt;}
.x11_c01063{left:333.001546pt;}
}





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

.ir_c01064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_0e41d7a30bd328f19b7f7bc7.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01064;src:url('chunks/assets/font_78f9508b4fcf0d466072c2fd.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01064;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls0_c01064{letter-spacing:0.000000px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:-63.504000px;}
.ws1_c01064{word-spacing:-30.156000px;}
.ws2_c01064{word-spacing:0.000000px;}
._2e_c01064{margin-left:-36.000000px;}
._14_c01064{margin-left:-29.088000px;}
._42_c01064{margin-left:-20.328000px;}
._1_c01064{margin-left:-18.912000px;}
._0_c01064{margin-left:-16.992000px;}
._26_c01064{margin-left:-15.336000px;}
._27_c01064{margin-left:-11.304000px;}
._37_c01064{margin-left:-9.216000px;}
._16_c01064{margin-left:-7.680000px;}
._33_c01064{margin-left:-6.144000px;}
._32_c01064{margin-left:-5.088000px;}
._31_c01064{margin-left:-4.032000px;}
._b_c01064{margin-left:-2.496000px;}
._11_c01064{margin-left:-1.440000px;}
._3_c01064{width:1.728000px;}
._8_c01064{width:2.880000px;}
._5_c01064{width:4.416000px;}
._f_c01064{width:5.472000px;}
._6_c01064{width:6.528000px;}
._e_c01064{width:8.256000px;}
._1d_c01064{width:9.888000px;}
._28_c01064{width:11.136000px;}
._13_c01064{width:12.192000px;}
._34_c01064{width:13.440000px;}
._20_c01064{width:14.592000px;}
._1f_c01064{width:16.992000px;}
._2_c01064{width:18.912000px;}
._24_c01064{width:20.160000px;}
._23_c01064{width:21.792000px;}
._22_c01064{width:24.192000px;}
._15_c01064{width:25.440000px;}
._39_c01064{width:26.784000px;}
._19_c01064{width:27.936000px;}
._2a_c01064{width:29.472000px;}
._30_c01064{width:30.912000px;}
._1e_c01064{width:32.064000px;}
._3b_c01064{width:33.408000px;}
._1b_c01064{width:34.560000px;}
._36_c01064{width:35.712000px;}
._1c_c01064{width:36.864000px;}
._29_c01064{width:38.208000px;}
._1a_c01064{width:40.032000px;}
._2b_c01064{width:41.280000px;}
._4_c01064{width:43.104000px;}
._9_c01064{width:44.928000px;}
._7_c01064{width:47.040000px;}
._17_c01064{width:49.152000px;}
._c_c01064{width:51.456000px;}
._21_c01064{width:52.896000px;}
._3a_c01064{width:54.528000px;}
._d_c01064{width:55.968000px;}
._35_c01064{width:58.656000px;}
._2c_c01064{width:62.016000px;}
._2d_c01064{width:64.608000px;}
._a_c01064{width:66.720000px;}
._2f_c01064{width:68.736000px;}
._38_c01064{width:72.864000px;}
._3e_c01064{width:75.936000px;}
._18_c01064{width:140.640000px;}
._25_c01064{width:162.612000px;}
._3d_c01064{width:177.216000px;}
._3f_c01064{width:183.264000px;}
._40_c01064{width:285.312000px;}
._12_c01064{width:341.088000px;}
._41_c01064{width:612.480000px;}
._3c_c01064{width:648.960000px;}
._10_c01064{width:1138.752000px;}
.fc2_c01064{color:transparent;}
.fc1_c01064{color:rgb(128,128,128);}
.fc0_c01064{color:rgb(0,0,0);}
.fs2_c01064{font-size:48.000000px;}
.fs1_c01064{font-size:84.000000px;}
.fs0_c01064{font-size:96.000000px;}
.y0_c01064{bottom:0.000000px;}
.y28_c01064{bottom:3.105000px;}
.y27_c01064{bottom:7.228369px;}
.y24_c01064{bottom:93.120000px;}
.y23_c01064{bottom:127.620000px;}
.y25_c01064{bottom:154.470000px;}
.y22_c01064{bottom:160.320000px;}
.y21_c01064{bottom:195.420000px;}
.y20_c01064{bottom:229.770000px;}
.y1f_c01064{bottom:262.620000px;}
.y1e_c01064{bottom:297.720000px;}
.y1d_c01064{bottom:331.320000px;}
.y1c_c01064{bottom:365.520000px;}
.y1b_c01064{bottom:398.520000px;}
.y1a_c01064{bottom:433.020000px;}
.y19_c01064{bottom:466.470000px;}
.y18_c01064{bottom:500.820000px;}
.y17_c01064{bottom:533.820000px;}
.y16_c01064{bottom:567.570000px;}
.y15_c01064{bottom:601.020000px;}
.y14_c01064{bottom:634.770000px;}
.y13_c01064{bottom:668.220000px;}
.y12_c01064{bottom:701.370000px;}
.y11_c01064{bottom:734.370000px;}
.y10_c01064{bottom:768.420000px;}
.yf_c01064{bottom:801.870000px;}
.ye_c01064{bottom:835.020000px;}
.yd_c01064{bottom:868.020000px;}
.yc_c01064{bottom:901.170000px;}
.yb_c01064{bottom:934.770000px;}
.ya_c01064{bottom:967.620000px;}
.y9_c01064{bottom:1001.970000px;}
.y8_c01064{bottom:1034.370000px;}
.y7_c01064{bottom:1067.520000px;}
.y6_c01064{bottom:1099.620000px;}
.y5_c01064{bottom:1132.620000px;}
.y4_c01064{bottom:1165.620000px;}
.y3_c01064{bottom:1199.370000px;}
.y26_c01064{bottom:1204.170000px;}
.y2_c01064{bottom:1229.520000px;}
.y1_c01064{bottom:1264.920000px;}
.h4_c01064{height:13.200073px;}
.h5_c01064{height:43.804688px;}
.h3_c01064{height:98.314453px;}
.h2_c01064{height:121.546875px;}
.h0_c01064{height:1383.450000px;}
.h1_c01064{height:1383.750000px;}
.w2_c01064{width:104.875500px;}
.w0_c01064{width:878.025000px;}
.w1_c01064{width:878.250000px;}
.x0_c01064{left:0.000000px;}
.x7_c01064{left:34.350000px;}
.x5_c01064{left:36.450000px;}
.x4_c01064{left:38.100000px;}
.x9_c01064{left:39.750000px;}
.x1_c01064{left:40.800000px;}
.x2_c01064{left:45.600000px;}
.x3_c01064{left:47.850000px;}
.xb_c01064{left:64.050000px;}
.xa_c01064{left:65.100000px;}
.x6_c01064{left:88.350000px;}
.x8_c01064{left:90.450000px;}
.xc_c01064{left:93.750000px;}
.xd_c01064{left:295.950000px;}
.xf_c01064{left:390.826721px;}
.xe_c01064{left:635.250000px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls0_c01064{letter-spacing:0.000000pt;}
.ws0_c01064{word-spacing:-56.448000pt;}
.ws1_c01064{word-spacing:-26.805333pt;}
.ws2_c01064{word-spacing:0.000000pt;}
._2e_c01064{margin-left:-32.000000pt;}
._14_c01064{margin-left:-25.856000pt;}
._42_c01064{margin-left:-18.069333pt;}
._1_c01064{margin-left:-16.810667pt;}
._0_c01064{margin-left:-15.104000pt;}
._26_c01064{margin-left:-13.632000pt;}
._27_c01064{margin-left:-10.048000pt;}
._37_c01064{margin-left:-8.192000pt;}
._16_c01064{margin-left:-6.826667pt;}
._33_c01064{margin-left:-5.461333pt;}
._32_c01064{margin-left:-4.522667pt;}
._31_c01064{margin-left:-3.584000pt;}
._b_c01064{margin-left:-2.218667pt;}
._11_c01064{margin-left:-1.280000pt;}
._3_c01064{width:1.536000pt;}
._8_c01064{width:2.560000pt;}
._5_c01064{width:3.925333pt;}
._f_c01064{width:4.864000pt;}
._6_c01064{width:5.802667pt;}
._e_c01064{width:7.338667pt;}
._1d_c01064{width:8.789333pt;}
._28_c01064{width:9.898667pt;}
._13_c01064{width:10.837333pt;}
._34_c01064{width:11.946667pt;}
._20_c01064{width:12.970667pt;}
._1f_c01064{width:15.104000pt;}
._2_c01064{width:16.810667pt;}
._24_c01064{width:17.920000pt;}
._23_c01064{width:19.370667pt;}
._22_c01064{width:21.504000pt;}
._15_c01064{width:22.613333pt;}
._39_c01064{width:23.808000pt;}
._19_c01064{width:24.832000pt;}
._2a_c01064{width:26.197333pt;}
._30_c01064{width:27.477333pt;}
._1e_c01064{width:28.501333pt;}
._3b_c01064{width:29.696000pt;}
._1b_c01064{width:30.720000pt;}
._36_c01064{width:31.744000pt;}
._1c_c01064{width:32.768000pt;}
._29_c01064{width:33.962667pt;}
._1a_c01064{width:35.584000pt;}
._2b_c01064{width:36.693333pt;}
._4_c01064{width:38.314667pt;}
._9_c01064{width:39.936000pt;}
._7_c01064{width:41.813333pt;}
._17_c01064{width:43.690667pt;}
._c_c01064{width:45.738667pt;}
._21_c01064{width:47.018667pt;}
._3a_c01064{width:48.469333pt;}
._d_c01064{width:49.749333pt;}
._35_c01064{width:52.138667pt;}
._2c_c01064{width:55.125333pt;}
._2d_c01064{width:57.429333pt;}
._a_c01064{width:59.306667pt;}
._2f_c01064{width:61.098667pt;}
._38_c01064{width:64.768000pt;}
._3e_c01064{width:67.498667pt;}
._18_c01064{width:125.013333pt;}
._25_c01064{width:144.544000pt;}
._3d_c01064{width:157.525333pt;}
._3f_c01064{width:162.901333pt;}
._40_c01064{width:253.610667pt;}
._12_c01064{width:303.189333pt;}
._41_c01064{width:544.426667pt;}
._3c_c01064{width:576.853333pt;}
._10_c01064{width:1012.224000pt;}
.fs2_c01064{font-size:42.666667pt;}
.fs1_c01064{font-size:74.666667pt;}
.fs0_c01064{font-size:85.333333pt;}
.y0_c01064{bottom:0.000000pt;}
.y28_c01064{bottom:2.760000pt;}
.y27_c01064{bottom:6.425217pt;}
.y24_c01064{bottom:82.773333pt;}
.y23_c01064{bottom:113.440000pt;}
.y25_c01064{bottom:137.306667pt;}
.y22_c01064{bottom:142.506667pt;}
.y21_c01064{bottom:173.706667pt;}
.y20_c01064{bottom:204.240000pt;}
.y1f_c01064{bottom:233.440000pt;}
.y1e_c01064{bottom:264.640000pt;}
.y1d_c01064{bottom:294.506667pt;}
.y1c_c01064{bottom:324.906667pt;}
.y1b_c01064{bottom:354.240000pt;}
.y1a_c01064{bottom:384.906667pt;}
.y19_c01064{bottom:414.640000pt;}
.y18_c01064{bottom:445.173333pt;}
.y17_c01064{bottom:474.506667pt;}
.y16_c01064{bottom:504.506667pt;}
.y15_c01064{bottom:534.240000pt;}
.y14_c01064{bottom:564.240000pt;}
.y13_c01064{bottom:593.973333pt;}
.y12_c01064{bottom:623.440000pt;}
.y11_c01064{bottom:652.773333pt;}
.y10_c01064{bottom:683.040000pt;}
.yf_c01064{bottom:712.773333pt;}
.ye_c01064{bottom:742.240000pt;}
.yd_c01064{bottom:771.573333pt;}
.yc_c01064{bottom:801.040000pt;}
.yb_c01064{bottom:830.906667pt;}
.ya_c01064{bottom:860.106667pt;}
.y9_c01064{bottom:890.640000pt;}
.y8_c01064{bottom:919.440000pt;}
.y7_c01064{bottom:948.906667pt;}
.y6_c01064{bottom:977.440000pt;}
.y5_c01064{bottom:1006.773333pt;}
.y4_c01064{bottom:1036.106667pt;}
.y3_c01064{bottom:1066.106667pt;}
.y26_c01064{bottom:1070.373333pt;}
.y2_c01064{bottom:1092.906667pt;}
.y1_c01064{bottom:1124.373333pt;}
.h4_c01064{height:11.733399pt;}
.h5_c01064{height:38.937500pt;}
.h3_c01064{height:87.390625pt;}
.h2_c01064{height:108.041667pt;}
.h0_c01064{height:1229.733333pt;}
.h1_c01064{height:1230.000000pt;}
.w2_c01064{width:93.222667pt;}
.w0_c01064{width:780.466667pt;}
.w1_c01064{width:780.666667pt;}
.x0_c01064{left:0.000000pt;}
.x7_c01064{left:30.533333pt;}
.x5_c01064{left:32.400000pt;}
.x4_c01064{left:33.866667pt;}
.x9_c01064{left:35.333333pt;}
.x1_c01064{left:36.266667pt;}
.x2_c01064{left:40.533333pt;}
.x3_c01064{left:42.533333pt;}
.xb_c01064{left:56.933333pt;}
.xa_c01064{left:57.866667pt;}
.x6_c01064{left:78.533333pt;}
.x8_c01064{left:80.400000pt;}
.xc_c01064{left:83.333333pt;}
.xd_c01064{left:263.066667pt;}
.xf_c01064{left:347.401530pt;}
.xe_c01064{left:564.666667pt;}
}





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

.ir_c01065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_d73ec7a76c421074363cacab.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01065;src:url('chunks/assets/font_0d1cb9497daa846b13718cdc.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01065;src:url('chunks/assets/font_60d2082c8076c36e713df4d4.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01065;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.ls3_c01065{letter-spacing:-6.000000px;}
.ls2_c01065{letter-spacing:0.000000px;}
.ls1_c01065{letter-spacing:2.400000px;}
.ls0_c01065{letter-spacing:42.000000px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01065{word-spacing:-51.000000px;}
.ws0_c01065{word-spacing:-23.136000px;}
.ws3_c01065{word-spacing:-20.244000px;}
.ws4_c01065{word-spacing:0.000000px;}
.ws2_c01065{word-spacing:3.024000px;}
._e_c01065{margin-left:-79.776000px;}
._15_c01065{margin-left:-32.544000px;}
._49_c01065{margin-left:-24.213000px;}
._2a_c01065{margin-left:-22.992000px;}
._4a_c01065{margin-left:-21.708000px;}
._37_c01065{margin-left:-19.776000px;}
._31_c01065{margin-left:-16.512000px;}
._16_c01065{margin-left:-15.264000px;}
._30_c01065{margin-left:-13.632000px;}
._b_c01065{margin-left:-12.288000px;}
._34_c01065{margin-left:-10.368000px;}
._35_c01065{margin-left:-9.312000px;}
._18_c01065{margin-left:-8.256000px;}
._29_c01065{margin-left:-6.240000px;}
._a_c01065{margin-left:-5.184000px;}
._9_c01065{margin-left:-4.032000px;}
._7_c01065{margin-left:-1.920000px;}
._4_c01065{width:1.440000px;}
._13_c01065{width:2.496000px;}
._3_c01065{width:3.552000px;}
._2_c01065{width:4.608000px;}
._1_c01065{width:6.144000px;}
._12_c01065{width:7.584000px;}
._0_c01065{width:8.832000px;}
._26_c01065{width:9.864000px;}
._6_c01065{width:10.944000px;}
._5_c01065{width:12.864000px;}
._3b_c01065{width:14.112000px;}
._14_c01065{width:15.456000px;}
._3d_c01065{width:16.560000px;}
._11_c01065{width:17.568000px;}
._8_c01065{width:18.912000px;}
._22_c01065{width:21.024000px;}
._32_c01065{width:22.104000px;}
._10_c01065{width:24.576000px;}
._42_c01065{width:26.181000px;}
._2f_c01065{width:28.032000px;}
._36_c01065{width:29.400000px;}
._24_c01065{width:30.528000px;}
._25_c01065{width:32.256000px;}
._1c_c01065{width:33.696000px;}
._1b_c01065{width:35.328000px;}
._27_c01065{width:36.480000px;}
._33_c01065{width:37.632000px;}
._2b_c01065{width:39.264000px;}
._3a_c01065{width:40.368000px;}
._1e_c01065{width:41.952000px;}
._2e_c01065{width:43.584000px;}
._23_c01065{width:44.640000px;}
._1a_c01065{width:45.888000px;}
._f_c01065{width:47.040000px;}
._2d_c01065{width:49.368000px;}
._3f_c01065{width:50.496000px;}
._20_c01065{width:52.512000px;}
._1d_c01065{width:54.048000px;}
._17_c01065{width:55.872000px;}
._28_c01065{width:56.928000px;}
._40_c01065{width:58.776000px;}
._3c_c01065{width:60.960000px;}
._41_c01065{width:62.832000px;}
._21_c01065{width:64.896000px;}
._2c_c01065{width:66.240000px;}
._46_c01065{width:68.640000px;}
._44_c01065{width:71.040000px;}
._1f_c01065{width:72.864000px;}
._45_c01065{width:76.896000px;}
._47_c01065{width:79.824000px;}
._3e_c01065{width:84.864000px;}
._d_c01065{width:88.992000px;}
._39_c01065{width:175.584000px;}
._19_c01065{width:213.696000px;}
._38_c01065{width:252.960000px;}
._c_c01065{width:267.648000px;}
._43_c01065{width:421.920000px;}
._4b_c01065{width:520.716000px;}
._4c_c01065{width:1056.132000px;}
._48_c01065{width:1150.068000px;}
.fc2_c01065{color:transparent;}
.fc1_c01065{color:rgb(128,128,128);}
.fc0_c01065{color:rgb(0,0,0);}
.fs5_c01065{font-size:48.000000px;}
.fs3_c01065{font-size:63.000000px;}
.fs2_c01065{font-size:84.000000px;}
.fs4_c01065{font-size:87.000000px;}
.fs0_c01065{font-size:96.000000px;}
.fs1_c01065{font-size:102.000000px;}
.y0_c01065{bottom:0.000000px;}
.y26_c01065{bottom:3.105000px;}
.y25_c01065{bottom:7.228357px;}
.y24_c01065{bottom:80.280000px;}
.y23_c01065{bottom:87.030000px;}
.y22_c01065{bottom:142.830000px;}
.y21_c01065{bottom:176.880000px;}
.y20_c01065{bottom:210.630000px;}
.y1f_c01065{bottom:244.980000px;}
.y1e_c01065{bottom:278.730000px;}
.y1d_c01065{bottom:312.630000px;}
.y1c_c01065{bottom:346.380000px;}
.y1b_c01065{bottom:380.130000px;}
.y1a_c01065{bottom:414.180000px;}
.y19_c01065{bottom:448.230000px;}
.y18_c01065{bottom:481.980000px;}
.y17_c01065{bottom:515.130000px;}
.y16_c01065{bottom:548.430000px;}
.y15_c01065{bottom:582.930000px;}
.y14_c01065{bottom:616.530000px;}
.y13_c01065{bottom:649.980000px;}
.y12_c01065{bottom:683.430000px;}
.y11_c01065{bottom:717.630000px;}
.y10_c01065{bottom:750.630000px;}
.yf_c01065{bottom:781.680000px;}
.ye_c01065{bottom:817.080000px;}
.yd_c01065{bottom:850.830000px;}
.yc_c01065{bottom:884.580000px;}
.yb_c01065{bottom:918.330000px;}
.ya_c01065{bottom:951.180000px;}
.y9_c01065{bottom:984.480000px;}
.y8_c01065{bottom:1017.330000px;}
.y7_c01065{bottom:1050.630000px;}
.y6_c01065{bottom:1084.080000px;}
.y5_c01065{bottom:1116.180000px;}
.y4_c01065{bottom:1150.530000px;}
.y3_c01065{bottom:1184.580000px;}
.y2_c01065{bottom:1215.780000px;}
.y1_c01065{bottom:1249.830000px;}
.h5_c01065{height:13.200074px;}
.h6_c01065{height:43.804688px;}
.h3_c01065{height:79.765137px;}
.h4_c01065{height:110.151855px;}
.h2_c01065{height:121.546875px;}
.h0_c01065{height:1382.700000px;}
.h1_c01065{height:1383.000000px;}
.w2_c01065{width:104.875500px;}
.w0_c01065{width:863.175000px;}
.w1_c01065{width:863.250000px;}
.x0_c01065{left:0.000000px;}
.xd_c01065{left:105.000000px;}
.x5_c01065{left:109.950000px;}
.x9_c01065{left:135.300000px;}
.x3_c01065{left:149.850000px;}
.x4_c01065{left:220.050000px;}
.x7_c01065{left:221.100000px;}
.x8_c01065{left:222.750000px;}
.xa_c01065{left:223.800000px;}
.xb_c01065{left:225.000000px;}
.xc_c01065{left:227.100000px;}
.xe_c01065{left:228.600000px;}
.x2_c01065{left:243.300000px;}
.x1_c01065{left:244.350000px;}
.x10_c01065{left:362.850000px;}
.x6_c01065{left:365.400000px;}
.x11_c01065{left:383.401749px;}
.xf_c01065{left:463.500000px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls3_c01065{letter-spacing:-5.333333pt;}
.ls2_c01065{letter-spacing:0.000000pt;}
.ls1_c01065{letter-spacing:2.133333pt;}
.ls0_c01065{letter-spacing:37.333333pt;}
.ws1_c01065{word-spacing:-45.333333pt;}
.ws0_c01065{word-spacing:-20.565333pt;}
.ws3_c01065{word-spacing:-17.994667pt;}
.ws4_c01065{word-spacing:0.000000pt;}
.ws2_c01065{word-spacing:2.688000pt;}
._e_c01065{margin-left:-70.912000pt;}
._15_c01065{margin-left:-28.928000pt;}
._49_c01065{margin-left:-21.522667pt;}
._2a_c01065{margin-left:-20.437333pt;}
._4a_c01065{margin-left:-19.296000pt;}
._37_c01065{margin-left:-17.578667pt;}
._31_c01065{margin-left:-14.677333pt;}
._16_c01065{margin-left:-13.568000pt;}
._30_c01065{margin-left:-12.117333pt;}
._b_c01065{margin-left:-10.922667pt;}
._34_c01065{margin-left:-9.216000pt;}
._35_c01065{margin-left:-8.277333pt;}
._18_c01065{margin-left:-7.338667pt;}
._29_c01065{margin-left:-5.546667pt;}
._a_c01065{margin-left:-4.608000pt;}
._9_c01065{margin-left:-3.584000pt;}
._7_c01065{margin-left:-1.706667pt;}
._4_c01065{width:1.280000pt;}
._13_c01065{width:2.218667pt;}
._3_c01065{width:3.157333pt;}
._2_c01065{width:4.096000pt;}
._1_c01065{width:5.461333pt;}
._12_c01065{width:6.741333pt;}
._0_c01065{width:7.850667pt;}
._26_c01065{width:8.768000pt;}
._6_c01065{width:9.728000pt;}
._5_c01065{width:11.434667pt;}
._3b_c01065{width:12.544000pt;}
._14_c01065{width:13.738667pt;}
._3d_c01065{width:14.720000pt;}
._11_c01065{width:15.616000pt;}
._8_c01065{width:16.810667pt;}
._22_c01065{width:18.688000pt;}
._32_c01065{width:19.648000pt;}
._10_c01065{width:21.845333pt;}
._42_c01065{width:23.272000pt;}
._2f_c01065{width:24.917333pt;}
._36_c01065{width:26.133333pt;}
._24_c01065{width:27.136000pt;}
._25_c01065{width:28.672000pt;}
._1c_c01065{width:29.952000pt;}
._1b_c01065{width:31.402667pt;}
._27_c01065{width:32.426667pt;}
._33_c01065{width:33.450667pt;}
._2b_c01065{width:34.901333pt;}
._3a_c01065{width:35.882667pt;}
._1e_c01065{width:37.290667pt;}
._2e_c01065{width:38.741333pt;}
._23_c01065{width:39.680000pt;}
._1a_c01065{width:40.789333pt;}
._f_c01065{width:41.813333pt;}
._2d_c01065{width:43.882667pt;}
._3f_c01065{width:44.885333pt;}
._20_c01065{width:46.677333pt;}
._1d_c01065{width:48.042667pt;}
._17_c01065{width:49.664000pt;}
._28_c01065{width:50.602667pt;}
._40_c01065{width:52.245333pt;}
._3c_c01065{width:54.186667pt;}
._41_c01065{width:55.850667pt;}
._21_c01065{width:57.685333pt;}
._2c_c01065{width:58.880000pt;}
._46_c01065{width:61.013333pt;}
._44_c01065{width:63.146667pt;}
._1f_c01065{width:64.768000pt;}
._45_c01065{width:68.352000pt;}
._47_c01065{width:70.954667pt;}
._3e_c01065{width:75.434667pt;}
._d_c01065{width:79.104000pt;}
._39_c01065{width:156.074667pt;}
._19_c01065{width:189.952000pt;}
._38_c01065{width:224.853333pt;}
._c_c01065{width:237.909333pt;}
._43_c01065{width:375.040000pt;}
._4b_c01065{width:462.858667pt;}
._4c_c01065{width:938.784000pt;}
._48_c01065{width:1022.282667pt;}
.fs5_c01065{font-size:42.666667pt;}
.fs3_c01065{font-size:56.000000pt;}
.fs2_c01065{font-size:74.666667pt;}
.fs4_c01065{font-size:77.333333pt;}
.fs0_c01065{font-size:85.333333pt;}
.fs1_c01065{font-size:90.666667pt;}
.y0_c01065{bottom:0.000000pt;}
.y26_c01065{bottom:2.760000pt;}
.y25_c01065{bottom:6.425206pt;}
.y24_c01065{bottom:71.360000pt;}
.y23_c01065{bottom:77.360000pt;}
.y22_c01065{bottom:126.960000pt;}
.y21_c01065{bottom:157.226667pt;}
.y20_c01065{bottom:187.226667pt;}
.y1f_c01065{bottom:217.760000pt;}
.y1e_c01065{bottom:247.760000pt;}
.y1d_c01065{bottom:277.893333pt;}
.y1c_c01065{bottom:307.893333pt;}
.y1b_c01065{bottom:337.893333pt;}
.y1a_c01065{bottom:368.160000pt;}
.y19_c01065{bottom:398.426667pt;}
.y18_c01065{bottom:428.426667pt;}
.y17_c01065{bottom:457.893333pt;}
.y16_c01065{bottom:487.493333pt;}
.y15_c01065{bottom:518.160000pt;}
.y14_c01065{bottom:548.026667pt;}
.y13_c01065{bottom:577.760000pt;}
.y12_c01065{bottom:607.493333pt;}
.y11_c01065{bottom:637.893333pt;}
.y10_c01065{bottom:667.226667pt;}
.yf_c01065{bottom:694.826667pt;}
.ye_c01065{bottom:726.293333pt;}
.yd_c01065{bottom:756.293333pt;}
.yc_c01065{bottom:786.293333pt;}
.yb_c01065{bottom:816.293333pt;}
.ya_c01065{bottom:845.493333pt;}
.y9_c01065{bottom:875.093333pt;}
.y8_c01065{bottom:904.293333pt;}
.y7_c01065{bottom:933.893333pt;}
.y6_c01065{bottom:963.626667pt;}
.y5_c01065{bottom:992.160000pt;}
.y4_c01065{bottom:1022.693333pt;}
.y3_c01065{bottom:1052.960000pt;}
.y2_c01065{bottom:1080.693333pt;}
.y1_c01065{bottom:1110.960000pt;}
.h5_c01065{height:11.733399pt;}
.h6_c01065{height:38.937500pt;}
.h3_c01065{height:70.902344pt;}
.h4_c01065{height:97.912760pt;}
.h2_c01065{height:108.041667pt;}
.h0_c01065{height:1229.066667pt;}
.h1_c01065{height:1229.333333pt;}
.w2_c01065{width:93.222667pt;}
.w0_c01065{width:767.266667pt;}
.w1_c01065{width:767.333333pt;}
.x0_c01065{left:0.000000pt;}
.xd_c01065{left:93.333333pt;}
.x5_c01065{left:97.733333pt;}
.x9_c01065{left:120.266667pt;}
.x3_c01065{left:133.200000pt;}
.x4_c01065{left:195.600000pt;}
.x7_c01065{left:196.533333pt;}
.x8_c01065{left:198.000000pt;}
.xa_c01065{left:198.933333pt;}
.xb_c01065{left:200.000000pt;}
.xc_c01065{left:201.866667pt;}
.xe_c01065{left:203.200000pt;}
.x2_c01065{left:216.266667pt;}
.x1_c01065{left:217.200000pt;}
.x10_c01065{left:322.533333pt;}
.x6_c01065{left:324.800000pt;}
.x11_c01065{left:340.801554pt;}
.xf_c01065{left:412.000000pt;}
}





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

.ir_c01066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_4b98e36d24c9a51df1d977ea.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01066;src:url('chunks/assets/font_44cd97c37378ce80d21d6748.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01066;src:url('chunks/assets/font_11cbe1db10261651528b1c01.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01066;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls3_c01066{letter-spacing:0.000000px;}
.ls0_c01066{letter-spacing:2.004000px;}
.ls1_c01066{letter-spacing:8.592000px;}
.ls2_c01066{letter-spacing:16.284000px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01066{word-spacing:-32.424000px;}
.ws2_c01066{word-spacing:-25.939200px;}
.ws5_c01066{word-spacing:-20.967000px;}
.ws0_c01066{word-spacing:-20.244000px;}
.ws3_c01066{word-spacing:-1.428000px;}
.ws6_c01066{word-spacing:0.000000px;}
.ws4_c01066{word-spacing:1.176000px;}
._3c_c01066{margin-left:-57.312000px;}
._4f_c01066{margin-left:-35.583000px;}
._25_c01066{margin-left:-32.268000px;}
._f_c01066{margin-left:-30.528000px;}
._2d_c01066{margin-left:-28.068000px;}
._40_c01066{margin-left:-24.384000px;}
._50_c01066{margin-left:-19.662000px;}
._3b_c01066{margin-left:-18.048000px;}
._18_c01066{margin-left:-16.800000px;}
._17_c01066{margin-left:-14.496000px;}
._48_c01066{margin-left:-12.768000px;}
._36_c01066{margin-left:-11.040000px;}
._15_c01066{margin-left:-9.696000px;}
._19_c01066{margin-left:-7.968000px;}
._1f_c01066{margin-left:-6.624000px;}
._1_c01066{margin-left:-5.472000px;}
._0_c01066{margin-left:-3.552000px;}
._8_c01066{margin-left:-2.016000px;}
._38_c01066{margin-left:-1.008000px;}
._5_c01066{width:1.728000px;}
._6_c01066{width:3.168000px;}
._22_c01066{width:4.260000px;}
._12_c01066{width:5.280000px;}
._b_c01066{width:6.336000px;}
._a_c01066{width:7.392000px;}
._20_c01066{width:8.784000px;}
._c_c01066{width:10.560000px;}
._1a_c01066{width:12.192000px;}
._14_c01066{width:13.536000px;}
._4_c01066{width:14.688000px;}
._2c_c01066{width:16.032000px;}
._2b_c01066{width:17.496000px;}
._7_c01066{width:18.624000px;}
._3_c01066{width:20.448000px;}
._45_c01066{width:21.492000px;}
._d_c01066{width:25.248000px;}
._e_c01066{width:26.400000px;}
._1d_c01066{width:28.320000px;}
._34_c01066{width:29.784000px;}
._4a_c01066{width:30.876000px;}
._32_c01066{width:32.208000px;}
._2e_c01066{width:33.840000px;}
._2a_c01066{width:34.920000px;}
._46_c01066{width:36.012000px;}
._28_c01066{width:37.956000px;}
._9_c01066{width:39.168000px;}
._29_c01066{width:40.992000px;}
._1c_c01066{width:42.528000px;}
._30_c01066{width:43.836000px;}
._33_c01066{width:45.120000px;}
._10_c01066{width:47.040000px;}
._2f_c01066{width:48.132000px;}
._49_c01066{width:49.188000px;}
._1e_c01066{width:50.496000px;}
._16_c01066{width:51.840000px;}
._26_c01066{width:53.400000px;}
._31_c01066{width:54.756000px;}
._1b_c01066{width:55.968000px;}
._11_c01066{width:57.888000px;}
._35_c01066{width:59.868000px;}
._24_c01066{width:61.236000px;}
._23_c01066{width:62.640000px;}
._27_c01066{width:65.472000px;}
._13_c01066{width:67.104000px;}
._4b_c01066{width:69.048000px;}
._21_c01066{width:70.176000px;}
._4d_c01066{width:75.312000px;}
._39_c01066{width:82.236000px;}
._3e_c01066{width:107.388000px;}
._47_c01066{width:112.608000px;}
._43_c01066{width:118.224000px;}
._3f_c01066{width:147.168000px;}
._3a_c01066{width:151.296000px;}
._44_c01066{width:168.336000px;}
._37_c01066{width:178.848000px;}
._3d_c01066{width:182.976000px;}
._4e_c01066{width:228.864000px;}
._4c_c01066{width:310.140000px;}
._41_c01066{width:384.864000px;}
._2_c01066{width:447.936000px;}
._42_c01066{width:513.312000px;}
.fc2_c01066{color:transparent;}
.fc1_c01066{color:rgb(128,128,128);}
.fc0_c01066{color:rgb(0,0,0);}
.fs4_c01066{font-size:48.000000px;}
.fs2_c01066{font-size:67.200000px;}
.fs1_c01066{font-size:84.000000px;}
.fs3_c01066{font-size:87.000000px;}
.fs0_c01066{font-size:96.000000px;}
.y0_c01066{bottom:0.000000px;}
.y26_c01066{bottom:3.105000px;}
.y25_c01066{bottom:7.228369px;}
.y24_c01066{bottom:88.770000px;}
.y23_c01066{bottom:124.170000px;}
.y22_c01066{bottom:160.020000px;}
.y21_c01066{bottom:193.320000px;}
.y20_c01066{bottom:228.120000px;}
.y1f_c01066{bottom:261.120000px;}
.y1e_c01066{bottom:295.920000px;}
.y1d_c01066{bottom:330.120000px;}
.y1c_c01066{bottom:363.720000px;}
.y1b_c01066{bottom:397.470000px;}
.y1a_c01066{bottom:431.220000px;}
.y19_c01066{bottom:465.120000px;}
.y18_c01066{bottom:498.720000px;}
.y17_c01066{bottom:532.620000px;}
.y16_c01066{bottom:565.320000px;}
.y15_c01066{bottom:599.070000px;}
.y14_c01066{bottom:633.120000px;}
.y13_c01066{bottom:666.870000px;}
.y12_c01066{bottom:699.270000px;}
.y11_c01066{bottom:736.020000px;}
.y10_c01066{bottom:766.170000px;}
.yf_c01066{bottom:801.570000px;}
.ye_c01066{bottom:833.970000px;}
.yd_c01066{bottom:866.370000px;}
.yc_c01066{bottom:899.370000px;}
.yb_c01066{bottom:933.120000px;}
.ya_c01066{bottom:967.320000px;}
.y9_c01066{bottom:1000.020000px;}
.y8_c01066{bottom:1033.470000px;}
.y7_c01066{bottom:1066.770000px;}
.y6_c01066{bottom:1098.870000px;}
.y5_c01066{bottom:1131.870000px;}
.y4_c01066{bottom:1164.420000px;}
.y3_c01066{bottom:1197.720000px;}
.y2_c01066{bottom:1230.870000px;}
.y1_c01066{bottom:1263.870000px;}
.h5_c01066{height:13.200073px;}
.h6_c01066{height:43.804688px;}
.h3_c01066{height:106.353516px;}
.h4_c01066{height:110.151855px;}
.h2_c01066{height:121.546875px;}
.h0_c01066{height:1383.450000px;}
.h1_c01066{height:1383.750000px;}
.w2_c01066{width:104.875500px;}
.w0_c01066{width:878.025000px;}
.w1_c01066{width:878.250000px;}
.x0_c01066{left:0.000000px;}
.x8_c01066{left:31.500000px;}
.x7_c01066{left:32.700000px;}
.x5_c01066{left:34.200000px;}
.x4_c01066{left:36.450000px;}
.x3_c01066{left:38.550000px;}
.x2_c01066{left:40.800000px;}
.x1_c01066{left:44.550000px;}
.x6_c01066{left:85.050000px;}
.x9_c01066{left:120.150000px;}
.xb_c01066{left:390.826721px;}
.xa_c01066{left:485.700000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls3_c01066{letter-spacing:0.000000pt;}
.ls0_c01066{letter-spacing:1.781333pt;}
.ls1_c01066{letter-spacing:7.637333pt;}
.ls2_c01066{letter-spacing:14.474667pt;}
.ws1_c01066{word-spacing:-28.821333pt;}
.ws2_c01066{word-spacing:-23.057067pt;}
.ws5_c01066{word-spacing:-18.637333pt;}
.ws0_c01066{word-spacing:-17.994667pt;}
.ws3_c01066{word-spacing:-1.269333pt;}
.ws6_c01066{word-spacing:0.000000pt;}
.ws4_c01066{word-spacing:1.045333pt;}
._3c_c01066{margin-left:-50.944000pt;}
._4f_c01066{margin-left:-31.629333pt;}
._25_c01066{margin-left:-28.682667pt;}
._f_c01066{margin-left:-27.136000pt;}
._2d_c01066{margin-left:-24.949333pt;}
._40_c01066{margin-left:-21.674667pt;}
._50_c01066{margin-left:-17.477333pt;}
._3b_c01066{margin-left:-16.042667pt;}
._18_c01066{margin-left:-14.933333pt;}
._17_c01066{margin-left:-12.885333pt;}
._48_c01066{margin-left:-11.349333pt;}
._36_c01066{margin-left:-9.813333pt;}
._15_c01066{margin-left:-8.618667pt;}
._19_c01066{margin-left:-7.082667pt;}
._1f_c01066{margin-left:-5.888000pt;}
._1_c01066{margin-left:-4.864000pt;}
._0_c01066{margin-left:-3.157333pt;}
._8_c01066{margin-left:-1.792000pt;}
._38_c01066{margin-left:-0.896000pt;}
._5_c01066{width:1.536000pt;}
._6_c01066{width:2.816000pt;}
._22_c01066{width:3.786667pt;}
._12_c01066{width:4.693333pt;}
._b_c01066{width:5.632000pt;}
._a_c01066{width:6.570667pt;}
._20_c01066{width:7.808000pt;}
._c_c01066{width:9.386667pt;}
._1a_c01066{width:10.837333pt;}
._14_c01066{width:12.032000pt;}
._4_c01066{width:13.056000pt;}
._2c_c01066{width:14.250667pt;}
._2b_c01066{width:15.552000pt;}
._7_c01066{width:16.554667pt;}
._3_c01066{width:18.176000pt;}
._45_c01066{width:19.104000pt;}
._d_c01066{width:22.442667pt;}
._e_c01066{width:23.466667pt;}
._1d_c01066{width:25.173333pt;}
._34_c01066{width:26.474667pt;}
._4a_c01066{width:27.445333pt;}
._32_c01066{width:28.629333pt;}
._2e_c01066{width:30.080000pt;}
._2a_c01066{width:31.040000pt;}
._46_c01066{width:32.010667pt;}
._28_c01066{width:33.738667pt;}
._9_c01066{width:34.816000pt;}
._29_c01066{width:36.437333pt;}
._1c_c01066{width:37.802667pt;}
._30_c01066{width:38.965333pt;}
._33_c01066{width:40.106667pt;}
._10_c01066{width:41.813333pt;}
._2f_c01066{width:42.784000pt;}
._49_c01066{width:43.722667pt;}
._1e_c01066{width:44.885333pt;}
._16_c01066{width:46.080000pt;}
._26_c01066{width:47.466667pt;}
._31_c01066{width:48.672000pt;}
._1b_c01066{width:49.749333pt;}
._11_c01066{width:51.456000pt;}
._35_c01066{width:53.216000pt;}
._24_c01066{width:54.432000pt;}
._23_c01066{width:55.680000pt;}
._27_c01066{width:58.197333pt;}
._13_c01066{width:59.648000pt;}
._4b_c01066{width:61.376000pt;}
._21_c01066{width:62.378667pt;}
._4d_c01066{width:66.944000pt;}
._39_c01066{width:73.098667pt;}
._3e_c01066{width:95.456000pt;}
._47_c01066{width:100.096000pt;}
._43_c01066{width:105.088000pt;}
._3f_c01066{width:130.816000pt;}
._3a_c01066{width:134.485333pt;}
._44_c01066{width:149.632000pt;}
._37_c01066{width:158.976000pt;}
._3d_c01066{width:162.645333pt;}
._4e_c01066{width:203.434667pt;}
._4c_c01066{width:275.680000pt;}
._41_c01066{width:342.101333pt;}
._2_c01066{width:398.165333pt;}
._42_c01066{width:456.277333pt;}
.fs4_c01066{font-size:42.666667pt;}
.fs2_c01066{font-size:59.733333pt;}
.fs1_c01066{font-size:74.666667pt;}
.fs3_c01066{font-size:77.333333pt;}
.fs0_c01066{font-size:85.333333pt;}
.y0_c01066{bottom:0.000000pt;}
.y26_c01066{bottom:2.760000pt;}
.y25_c01066{bottom:6.425217pt;}
.y24_c01066{bottom:78.906667pt;}
.y23_c01066{bottom:110.373333pt;}
.y22_c01066{bottom:142.240000pt;}
.y21_c01066{bottom:171.840000pt;}
.y20_c01066{bottom:202.773333pt;}
.y1f_c01066{bottom:232.106667pt;}
.y1e_c01066{bottom:263.040000pt;}
.y1d_c01066{bottom:293.440000pt;}
.y1c_c01066{bottom:323.306667pt;}
.y1b_c01066{bottom:353.306667pt;}
.y1a_c01066{bottom:383.306667pt;}
.y19_c01066{bottom:413.440000pt;}
.y18_c01066{bottom:443.306667pt;}
.y17_c01066{bottom:473.440000pt;}
.y16_c01066{bottom:502.506667pt;}
.y15_c01066{bottom:532.506667pt;}
.y14_c01066{bottom:562.773333pt;}
.y13_c01066{bottom:592.773333pt;}
.y12_c01066{bottom:621.573333pt;}
.y11_c01066{bottom:654.240000pt;}
.y10_c01066{bottom:681.040000pt;}
.yf_c01066{bottom:712.506667pt;}
.ye_c01066{bottom:741.306667pt;}
.yd_c01066{bottom:770.106667pt;}
.yc_c01066{bottom:799.440000pt;}
.yb_c01066{bottom:829.440000pt;}
.ya_c01066{bottom:859.840000pt;}
.y9_c01066{bottom:888.906667pt;}
.y8_c01066{bottom:918.640000pt;}
.y7_c01066{bottom:948.240000pt;}
.y6_c01066{bottom:976.773333pt;}
.y5_c01066{bottom:1006.106667pt;}
.y4_c01066{bottom:1035.040000pt;}
.y3_c01066{bottom:1064.640000pt;}
.y2_c01066{bottom:1094.106667pt;}
.y1_c01066{bottom:1123.440000pt;}
.h5_c01066{height:11.733399pt;}
.h6_c01066{height:38.937500pt;}
.h3_c01066{height:94.536458pt;}
.h4_c01066{height:97.912760pt;}
.h2_c01066{height:108.041667pt;}
.h0_c01066{height:1229.733333pt;}
.h1_c01066{height:1230.000000pt;}
.w2_c01066{width:93.222667pt;}
.w0_c01066{width:780.466667pt;}
.w1_c01066{width:780.666667pt;}
.x0_c01066{left:0.000000pt;}
.x8_c01066{left:28.000000pt;}
.x7_c01066{left:29.066667pt;}
.x5_c01066{left:30.400000pt;}
.x4_c01066{left:32.400000pt;}
.x3_c01066{left:34.266667pt;}
.x2_c01066{left:36.266667pt;}
.x1_c01066{left:39.600000pt;}
.x6_c01066{left:75.600000pt;}
.x9_c01066{left:106.800000pt;}
.xb_c01066{left:347.401530pt;}
.xa_c01066{left:431.733333pt;}
}





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

.ir_c01067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_0ba02e5ddeaf0ebe7291128d.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01067;src:url('chunks/assets/font_e9355811b7f036c8db961810.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01067;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01067;src:url('chunks/assets/font_0714d74678669bf0a491fe05.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01067;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c01067{font-family:ff5_c01067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01067;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01067{font-family:ff6_c01067;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.ls2_c01067{letter-spacing:0.000000px;}
.ls0_c01067{letter-spacing:8.520000px;}
.ls3_c01067{letter-spacing:15.000000px;}
.ls1_c01067{letter-spacing:30.000000px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01067{word-spacing:-85.044000px;}
.ws2_c01067{word-spacing:-51.000000px;}
.ws5_c01067{word-spacing:-35.244000px;}
.ws0_c01067{word-spacing:-20.244000px;}
.ws6_c01067{word-spacing:0.000000px;}
.ws3_c01067{word-spacing:3.696000px;}
.ws1_c01067{word-spacing:4.620000px;}
._32_c01067{margin-left:-27.648000px;}
._2a_c01067{margin-left:-24.000000px;}
._35_c01067{margin-left:-22.464000px;}
._3d_c01067{margin-left:-18.432000px;}
._1d_c01067{margin-left:-13.920000px;}
._0_c01067{margin-left:-11.712000px;}
._2_c01067{margin-left:-9.792000px;}
._10_c01067{margin-left:-5.568000px;}
._39_c01067{margin-left:-4.548000px;}
._2b_c01067{margin-left:-3.456000px;}
._11_c01067{margin-left:-2.304000px;}
._23_c01067{margin-left:-1.248000px;}
._d_c01067{width:1.920000px;}
._e_c01067{width:3.264000px;}
._13_c01067{width:4.992000px;}
._b_c01067{width:6.720000px;}
._a_c01067{width:7.872000px;}
._9_c01067{width:9.888000px;}
._19_c01067{width:11.448000px;}
._21_c01067{width:12.924000px;}
._37_c01067{width:14.148000px;}
._5_c01067{width:15.204000px;}
._4_c01067{width:17.052000px;}
._1c_c01067{width:18.156000px;}
._8_c01067{width:19.296000px;}
._24_c01067{width:20.952000px;}
._3b_c01067{width:22.128000px;}
._17_c01067{width:24.192000px;}
._7_c01067{width:25.920000px;}
._18_c01067{width:27.480000px;}
._16_c01067{width:29.856000px;}
._20_c01067{width:31.872000px;}
._1f_c01067{width:34.176000px;}
._1a_c01067{width:35.328000px;}
._25_c01067{width:36.672000px;}
._14_c01067{width:38.208000px;}
._1b_c01067{width:39.252000px;}
._f_c01067{width:40.704000px;}
._22_c01067{width:42.528000px;}
._c_c01067{width:44.928000px;}
._15_c01067{width:47.328000px;}
._2e_c01067{width:48.900000px;}
._2d_c01067{width:50.496000px;}
._29_c01067{width:51.540000px;}
._1e_c01067{width:53.664000px;}
._3_c01067{width:55.752000px;}
._12_c01067{width:58.176000px;}
._3a_c01067{width:60.696000px;}
._2c_c01067{width:61.836000px;}
._26_c01067{width:62.868000px;}
._30_c01067{width:64.068000px;}
._2f_c01067{width:65.472000px;}
._1_c01067{width:68.640000px;}
._34_c01067{width:75.264000px;}
._33_c01067{width:96.864000px;}
._6_c01067{width:100.164000px;}
._31_c01067{width:124.836000px;}
._38_c01067{width:135.528000px;}
._36_c01067{width:182.880000px;}
._28_c01067{width:189.600000px;}
._3e_c01067{width:226.464000px;}
._27_c01067{width:839.424000px;}
._3c_c01067{width:864.480000px;}
.fc2_c01067{color:transparent;}
.fc1_c01067{color:rgb(128,128,128);}
.fc0_c01067{color:rgb(0,0,0);}
.fs4_c01067{font-size:48.000000px;}
.fs1_c01067{font-size:84.000000px;}
.fs0_c01067{font-size:96.000000px;}
.fs3_c01067{font-size:99.000000px;}
.fs2_c01067{font-size:102.000000px;}
.y0_c01067{bottom:0.000000px;}
.y26_c01067{bottom:3.105000px;}
.y25_c01067{bottom:7.228355px;}
.y24_c01067{bottom:75.135000px;}
.y23_c01067{bottom:107.985000px;}
.y22_c01067{bottom:141.435000px;}
.y21_c01067{bottom:175.485000px;}
.y20_c01067{bottom:208.935000px;}
.y1f_c01067{bottom:242.985000px;}
.y1e_c01067{bottom:277.035000px;}
.y1d_c01067{bottom:310.485000px;}
.y1c_c01067{bottom:344.535000px;}
.y1b_c01067{bottom:378.285000px;}
.y1a_c01067{bottom:412.035000px;}
.y19_c01067{bottom:445.035000px;}
.y18_c01067{bottom:478.485000px;}
.y17_c01067{bottom:514.035000px;}
.y16_c01067{bottom:547.635000px;}
.y15_c01067{bottom:581.835000px;}
.y14_c01067{bottom:615.285000px;}
.y13_c01067{bottom:649.035000px;}
.y12_c01067{bottom:682.635000px;}
.y11_c01067{bottom:716.385000px;}
.y10_c01067{bottom:749.535000px;}
.yf_c01067{bottom:782.535000px;}
.ye_c01067{bottom:816.435000px;}
.yd_c01067{bottom:850.185000px;}
.yc_c01067{bottom:884.085000px;}
.yb_c01067{bottom:917.235000px;}
.ya_c01067{bottom:950.385000px;}
.y9_c01067{bottom:984.435000px;}
.y8_c01067{bottom:1016.835000px;}
.y7_c01067{bottom:1049.985000px;}
.y6_c01067{bottom:1083.585000px;}
.y5_c01067{bottom:1116.735000px;}
.y4_c01067{bottom:1150.485000px;}
.y3_c01067{bottom:1183.635000px;}
.y2_c01067{bottom:1216.635000px;}
.y1_c01067{bottom:1249.785000px;}
.h3_c01067{height:13.200074px;}
.h4_c01067{height:43.804688px;}
.h2_c01067{height:121.546875px;}
.h1_c01067{height:1366.500000px;}
.h0_c01067{height:1366.725000px;}
.w2_c01067{width:104.875500px;}
.w0_c01067{width:852.675000px;}
.w1_c01067{width:852.750000px;}
.x0_c01067{left:0.000000px;}
.x7_c01067{left:210.300000px;}
.x8_c01067{left:213.000000px;}
.x2_c01067{left:215.700000px;}
.x3_c01067{left:216.900000px;}
.x6_c01067{left:218.400000px;}
.x1_c01067{left:220.050000px;}
.x9_c01067{left:222.750000px;}
.x4_c01067{left:266.550000px;}
.x5_c01067{left:365.850000px;}
.xa_c01067{left:378.151749px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls2_c01067{letter-spacing:0.000000pt;}
.ls0_c01067{letter-spacing:7.573333pt;}
.ls3_c01067{letter-spacing:13.333333pt;}
.ls1_c01067{letter-spacing:26.666667pt;}
.ws4_c01067{word-spacing:-75.594667pt;}
.ws2_c01067{word-spacing:-45.333333pt;}
.ws5_c01067{word-spacing:-31.328000pt;}
.ws0_c01067{word-spacing:-17.994667pt;}
.ws6_c01067{word-spacing:0.000000pt;}
.ws3_c01067{word-spacing:3.285333pt;}
.ws1_c01067{word-spacing:4.106667pt;}
._32_c01067{margin-left:-24.576000pt;}
._2a_c01067{margin-left:-21.333333pt;}
._35_c01067{margin-left:-19.968000pt;}
._3d_c01067{margin-left:-16.384000pt;}
._1d_c01067{margin-left:-12.373333pt;}
._0_c01067{margin-left:-10.410667pt;}
._2_c01067{margin-left:-8.704000pt;}
._10_c01067{margin-left:-4.949333pt;}
._39_c01067{margin-left:-4.042667pt;}
._2b_c01067{margin-left:-3.072000pt;}
._11_c01067{margin-left:-2.048000pt;}
._23_c01067{margin-left:-1.109333pt;}
._d_c01067{width:1.706667pt;}
._e_c01067{width:2.901333pt;}
._13_c01067{width:4.437333pt;}
._b_c01067{width:5.973333pt;}
._a_c01067{width:6.997333pt;}
._9_c01067{width:8.789333pt;}
._19_c01067{width:10.176000pt;}
._21_c01067{width:11.488000pt;}
._37_c01067{width:12.576000pt;}
._5_c01067{width:13.514667pt;}
._4_c01067{width:15.157333pt;}
._1c_c01067{width:16.138667pt;}
._8_c01067{width:17.152000pt;}
._24_c01067{width:18.624000pt;}
._3b_c01067{width:19.669333pt;}
._17_c01067{width:21.504000pt;}
._7_c01067{width:23.040000pt;}
._18_c01067{width:24.426667pt;}
._16_c01067{width:26.538667pt;}
._20_c01067{width:28.330667pt;}
._1f_c01067{width:30.378667pt;}
._1a_c01067{width:31.402667pt;}
._25_c01067{width:32.597333pt;}
._14_c01067{width:33.962667pt;}
._1b_c01067{width:34.890667pt;}
._f_c01067{width:36.181333pt;}
._22_c01067{width:37.802667pt;}
._c_c01067{width:39.936000pt;}
._15_c01067{width:42.069333pt;}
._2e_c01067{width:43.466667pt;}
._2d_c01067{width:44.885333pt;}
._29_c01067{width:45.813333pt;}
._1e_c01067{width:47.701333pt;}
._3_c01067{width:49.557333pt;}
._12_c01067{width:51.712000pt;}
._3a_c01067{width:53.952000pt;}
._2c_c01067{width:54.965333pt;}
._26_c01067{width:55.882667pt;}
._30_c01067{width:56.949333pt;}
._2f_c01067{width:58.197333pt;}
._1_c01067{width:61.013333pt;}
._34_c01067{width:66.901333pt;}
._33_c01067{width:86.101333pt;}
._6_c01067{width:89.034667pt;}
._31_c01067{width:110.965333pt;}
._38_c01067{width:120.469333pt;}
._36_c01067{width:162.560000pt;}
._28_c01067{width:168.533333pt;}
._3e_c01067{width:201.301333pt;}
._27_c01067{width:746.154667pt;}
._3c_c01067{width:768.426667pt;}
.fs4_c01067{font-size:42.666667pt;}
.fs1_c01067{font-size:74.666667pt;}
.fs0_c01067{font-size:85.333333pt;}
.fs3_c01067{font-size:88.000000pt;}
.fs2_c01067{font-size:90.666667pt;}
.y0_c01067{bottom:0.000000pt;}
.y26_c01067{bottom:2.760000pt;}
.y25_c01067{bottom:6.425204pt;}
.y24_c01067{bottom:66.786667pt;}
.y23_c01067{bottom:95.986667pt;}
.y22_c01067{bottom:125.720000pt;}
.y21_c01067{bottom:155.986667pt;}
.y20_c01067{bottom:185.720000pt;}
.y1f_c01067{bottom:215.986667pt;}
.y1e_c01067{bottom:246.253333pt;}
.y1d_c01067{bottom:275.986667pt;}
.y1c_c01067{bottom:306.253333pt;}
.y1b_c01067{bottom:336.253333pt;}
.y1a_c01067{bottom:366.253333pt;}
.y19_c01067{bottom:395.586667pt;}
.y18_c01067{bottom:425.320000pt;}
.y17_c01067{bottom:456.920000pt;}
.y16_c01067{bottom:486.786667pt;}
.y15_c01067{bottom:517.186667pt;}
.y14_c01067{bottom:546.920000pt;}
.y13_c01067{bottom:576.920000pt;}
.y12_c01067{bottom:606.786667pt;}
.y11_c01067{bottom:636.786667pt;}
.y10_c01067{bottom:666.253333pt;}
.yf_c01067{bottom:695.586667pt;}
.ye_c01067{bottom:725.720000pt;}
.yd_c01067{bottom:755.720000pt;}
.yc_c01067{bottom:785.853333pt;}
.yb_c01067{bottom:815.320000pt;}
.ya_c01067{bottom:844.786667pt;}
.y9_c01067{bottom:875.053333pt;}
.y8_c01067{bottom:903.853333pt;}
.y7_c01067{bottom:933.320000pt;}
.y6_c01067{bottom:963.186667pt;}
.y5_c01067{bottom:992.653333pt;}
.y4_c01067{bottom:1022.653333pt;}
.y3_c01067{bottom:1052.120000pt;}
.y2_c01067{bottom:1081.453333pt;}
.y1_c01067{bottom:1110.920000pt;}
.h3_c01067{height:11.733399pt;}
.h4_c01067{height:38.937500pt;}
.h2_c01067{height:108.041667pt;}
.h1_c01067{height:1214.666667pt;}
.h0_c01067{height:1214.866667pt;}
.w2_c01067{width:93.222667pt;}
.w0_c01067{width:757.933333pt;}
.w1_c01067{width:758.000000pt;}
.x0_c01067{left:0.000000pt;}
.x7_c01067{left:186.933333pt;}
.x8_c01067{left:189.333333pt;}
.x2_c01067{left:191.733333pt;}
.x3_c01067{left:192.800000pt;}
.x6_c01067{left:194.133333pt;}
.x1_c01067{left:195.600000pt;}
.x9_c01067{left:198.000000pt;}
.x4_c01067{left:236.933333pt;}
.x5_c01067{left:325.200000pt;}
.xa_c01067{left:336.134888pt;}
}





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

.ir_c01068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_a72a27fdce046e4541925ad6.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01068;src:url('chunks/assets/font_c9868e42c22917cac67efe04.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01068;src:url('chunks/assets/font_506a2de0b9a69f73f2faa331.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01068;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01068;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01068{font-family:ff5_c01068;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.v1_c01068{vertical-align:30.000000px;}
.ls1_c01068{letter-spacing:0.000000px;}
.ls0_c01068{letter-spacing:161.052000px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:-51.000000px;}
.ws1_c01068{word-spacing:-23.136000px;}
.ws2_c01068{word-spacing:-20.244000px;}
.ws3_c01068{word-spacing:0.000000px;}
._44_c01068{margin-left:-83.352000px;}
._6_c01068{margin-left:-79.776000px;}
._28_c01068{margin-left:-48.096000px;}
._1_c01068{margin-left:-30.624000px;}
._27_c01068{margin-left:-25.728000px;}
._46_c01068{margin-left:-17.952000px;}
._41_c01068{margin-left:-16.032000px;}
._5_c01068{margin-left:-14.400000px;}
._0_c01068{margin-left:-11.520000px;}
._35_c01068{margin-left:-10.056000px;}
._4_c01068{margin-left:-8.256000px;}
._3b_c01068{margin-left:-7.008000px;}
._2f_c01068{margin-left:-5.856000px;}
._d_c01068{margin-left:-4.416000px;}
._e_c01068{margin-left:-3.336000px;}
._20_c01068{margin-left:-1.920000px;}
._a_c01068{width:1.440000px;}
._8_c01068{width:2.496000px;}
._b_c01068{width:3.936000px;}
._42_c01068{width:4.944000px;}
._2_c01068{width:5.952000px;}
._10_c01068{width:7.392000px;}
._30_c01068{width:8.448000px;}
._16_c01068{width:9.984000px;}
._2b_c01068{width:11.424000px;}
._f_c01068{width:12.648000px;}
._43_c01068{width:14.208000px;}
._1d_c01068{width:15.264000px;}
._1c_c01068{width:16.704000px;}
._17_c01068{width:18.048000px;}
._34_c01068{width:19.464000px;}
._9_c01068{width:21.216000px;}
._3d_c01068{width:24.708000px;}
._1b_c01068{width:25.920000px;}
._1a_c01068{width:28.416000px;}
._38_c01068{width:29.472000px;}
._18_c01068{width:30.624000px;}
._2c_c01068{width:32.640000px;}
._14_c01068{width:34.464000px;}
._3_c01068{width:35.712000px;}
._33_c01068{width:37.056000px;}
._24_c01068{width:38.208000px;}
._19_c01068{width:39.552000px;}
._2d_c01068{width:41.664000px;}
._37_c01068{width:42.816000px;}
._12_c01068{width:43.872000px;}
._21_c01068{width:45.120000px;}
._32_c01068{width:47.232000px;}
._1f_c01068{width:48.768000px;}
._11_c01068{width:49.824000px;}
._13_c01068{width:51.552000px;}
._39_c01068{width:52.680000px;}
._1e_c01068{width:53.688000px;}
._3e_c01068{width:55.392000px;}
._31_c01068{width:56.544000px;}
._36_c01068{width:57.960000px;}
._2e_c01068{width:59.040000px;}
._2a_c01068{width:60.672000px;}
._23_c01068{width:62.496000px;}
._3a_c01068{width:64.464000px;}
._40_c01068{width:66.816000px;}
._22_c01068{width:68.736000px;}
._15_c01068{width:70.752000px;}
._c_c01068{width:110.688000px;}
._29_c01068{width:135.552000px;}
._25_c01068{width:141.216000px;}
._3c_c01068{width:157.368000px;}
._45_c01068{width:181.344000px;}
._3f_c01068{width:215.208000px;}
._26_c01068{width:316.032000px;}
._7_c01068{width:536.352000px;}
._48_c01068{width:580.512000px;}
._47_c01068{width:1093.824000px;}
.fc2_c01068{color:transparent;}
.fc1_c01068{color:rgb(128,128,128);}
.fc0_c01068{color:rgb(0,0,0);}
.fs3_c01068{font-size:48.000000px;}
.fs2_c01068{font-size:84.000000px;}
.fs0_c01068{font-size:96.000000px;}
.fs1_c01068{font-size:102.000000px;}
.y0_c01068{bottom:0.000000px;}
.y28_c01068{bottom:3.105000px;}
.y27_c01068{bottom:7.228369px;}
.y25_c01068{bottom:96.120000px;}
.y24_c01068{bottom:130.170000px;}
.y23_c01068{bottom:164.970000px;}
.y22_c01068{bottom:199.470000px;}
.y21_c01068{bottom:233.520000px;}
.y20_c01068{bottom:267.870000px;}
.y1f_c01068{bottom:301.620000px;}
.y1e_c01068{bottom:335.370000px;}
.y1d_c01068{bottom:369.120000px;}
.y1c_c01068{bottom:402.870000px;}
.y1b_c01068{bottom:436.620000px;}
.y1a_c01068{bottom:469.770000px;}
.y19_c01068{bottom:503.520000px;}
.y18_c01068{bottom:536.970000px;}
.y17_c01068{bottom:570.720000px;}
.y16_c01068{bottom:604.020000px;}
.y15_c01068{bottom:638.520000px;}
.y26_c01068{bottom:655.020000px;}
.y14_c01068{bottom:671.220000px;}
.y13_c01068{bottom:704.070000px;}
.y12_c01068{bottom:738.120000px;}
.y11_c01068{bottom:771.120000px;}
.y10_c01068{bottom:805.170000px;}
.yf_c01068{bottom:837.570000px;}
.ye_c01068{bottom:870.120000px;}
.y1_c01068{bottom:883.620000px;}
.yd_c01068{bottom:903.420000px;}
.yc_c01068{bottom:937.470000px;}
.yb_c01068{bottom:969.870000px;}
.ya_c01068{bottom:1003.020000px;}
.y9_c01068{bottom:1034.820000px;}
.y8_c01068{bottom:1070.820000px;}
.y7_c01068{bottom:1101.570000px;}
.y6_c01068{bottom:1134.270000px;}
.y5_c01068{bottom:1167.120000px;}
.y4_c01068{bottom:1200.420000px;}
.y3_c01068{bottom:1233.120000px;}
.y2_c01068{bottom:1265.520000px;}
.h4_c01068{height:13.200073px;}
.h5_c01068{height:43.804688px;}
.h2_c01068{height:121.546875px;}
.h3_c01068{height:151.546875px;}
.h0_c01068{height:1383.450000px;}
.h1_c01068{height:1383.750000px;}
.w2_c01068{width:104.875500px;}
.w0_c01068{width:878.025000px;}
.w1_c01068{width:878.250000px;}
.x0_c01068{left:0.000000px;}
.x9_c01068{left:28.350000px;}
.x7_c01068{left:29.400000px;}
.x8_c01068{left:30.600000px;}
.x6_c01068{left:31.650000px;}
.x3_c01068{left:32.700000px;}
.x4_c01068{left:33.750000px;}
.x2_c01068{left:34.800000px;}
.xa_c01068{left:36.000000px;}
.xb_c01068{left:37.050000px;}
.xc_c01068{left:39.750000px;}
.xd_c01068{left:90.000000px;}
.x5_c01068{left:182.250000px;}
.xf_c01068{left:390.826721px;}
.x1_c01068{left:622.350000px;}
.xe_c01068{left:664.200000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.v1_c01068{vertical-align:26.666667pt;}
.ls1_c01068{letter-spacing:0.000000pt;}
.ls0_c01068{letter-spacing:143.157333pt;}
.ws0_c01068{word-spacing:-45.333333pt;}
.ws1_c01068{word-spacing:-20.565333pt;}
.ws2_c01068{word-spacing:-17.994667pt;}
.ws3_c01068{word-spacing:0.000000pt;}
._44_c01068{margin-left:-74.090667pt;}
._6_c01068{margin-left:-70.912000pt;}
._28_c01068{margin-left:-42.752000pt;}
._1_c01068{margin-left:-27.221333pt;}
._27_c01068{margin-left:-22.869333pt;}
._46_c01068{margin-left:-15.957333pt;}
._41_c01068{margin-left:-14.250667pt;}
._5_c01068{margin-left:-12.800000pt;}
._0_c01068{margin-left:-10.240000pt;}
._35_c01068{margin-left:-8.938667pt;}
._4_c01068{margin-left:-7.338667pt;}
._3b_c01068{margin-left:-6.229333pt;}
._2f_c01068{margin-left:-5.205333pt;}
._d_c01068{margin-left:-3.925333pt;}
._e_c01068{margin-left:-2.965333pt;}
._20_c01068{margin-left:-1.706667pt;}
._a_c01068{width:1.280000pt;}
._8_c01068{width:2.218667pt;}
._b_c01068{width:3.498667pt;}
._42_c01068{width:4.394667pt;}
._2_c01068{width:5.290667pt;}
._10_c01068{width:6.570667pt;}
._30_c01068{width:7.509333pt;}
._16_c01068{width:8.874667pt;}
._2b_c01068{width:10.154667pt;}
._f_c01068{width:11.242667pt;}
._43_c01068{width:12.629333pt;}
._1d_c01068{width:13.568000pt;}
._1c_c01068{width:14.848000pt;}
._17_c01068{width:16.042667pt;}
._34_c01068{width:17.301333pt;}
._9_c01068{width:18.858667pt;}
._3d_c01068{width:21.962667pt;}
._1b_c01068{width:23.040000pt;}
._1a_c01068{width:25.258667pt;}
._38_c01068{width:26.197333pt;}
._18_c01068{width:27.221333pt;}
._2c_c01068{width:29.013333pt;}
._14_c01068{width:30.634667pt;}
._3_c01068{width:31.744000pt;}
._33_c01068{width:32.938667pt;}
._24_c01068{width:33.962667pt;}
._19_c01068{width:35.157333pt;}
._2d_c01068{width:37.034667pt;}
._37_c01068{width:38.058667pt;}
._12_c01068{width:38.997333pt;}
._21_c01068{width:40.106667pt;}
._32_c01068{width:41.984000pt;}
._1f_c01068{width:43.349333pt;}
._11_c01068{width:44.288000pt;}
._13_c01068{width:45.824000pt;}
._39_c01068{width:46.826667pt;}
._1e_c01068{width:47.722667pt;}
._3e_c01068{width:49.237333pt;}
._31_c01068{width:50.261333pt;}
._36_c01068{width:51.520000pt;}
._2e_c01068{width:52.480000pt;}
._2a_c01068{width:53.930667pt;}
._23_c01068{width:55.552000pt;}
._3a_c01068{width:57.301333pt;}
._40_c01068{width:59.392000pt;}
._22_c01068{width:61.098667pt;}
._15_c01068{width:62.890667pt;}
._c_c01068{width:98.389333pt;}
._29_c01068{width:120.490667pt;}
._25_c01068{width:125.525333pt;}
._3c_c01068{width:139.882667pt;}
._45_c01068{width:161.194667pt;}
._3f_c01068{width:191.296000pt;}
._26_c01068{width:280.917333pt;}
._7_c01068{width:476.757333pt;}
._48_c01068{width:516.010667pt;}
._47_c01068{width:972.288000pt;}
.fs3_c01068{font-size:42.666667pt;}
.fs2_c01068{font-size:74.666667pt;}
.fs0_c01068{font-size:85.333333pt;}
.fs1_c01068{font-size:90.666667pt;}
.y0_c01068{bottom:0.000000pt;}
.y28_c01068{bottom:2.760000pt;}
.y27_c01068{bottom:6.425217pt;}
.y25_c01068{bottom:85.440000pt;}
.y24_c01068{bottom:115.706667pt;}
.y23_c01068{bottom:146.640000pt;}
.y22_c01068{bottom:177.306667pt;}
.y21_c01068{bottom:207.573333pt;}
.y20_c01068{bottom:238.106667pt;}
.y1f_c01068{bottom:268.106667pt;}
.y1e_c01068{bottom:298.106667pt;}
.y1d_c01068{bottom:328.106667pt;}
.y1c_c01068{bottom:358.106667pt;}
.y1b_c01068{bottom:388.106667pt;}
.y1a_c01068{bottom:417.573333pt;}
.y19_c01068{bottom:447.573333pt;}
.y18_c01068{bottom:477.306667pt;}
.y17_c01068{bottom:507.306667pt;}
.y16_c01068{bottom:536.906667pt;}
.y15_c01068{bottom:567.573333pt;}
.y26_c01068{bottom:582.240000pt;}
.y14_c01068{bottom:596.640000pt;}
.y13_c01068{bottom:625.840000pt;}
.y12_c01068{bottom:656.106667pt;}
.y11_c01068{bottom:685.440000pt;}
.y10_c01068{bottom:715.706667pt;}
.yf_c01068{bottom:744.506667pt;}
.ye_c01068{bottom:773.440000pt;}
.y1_c01068{bottom:785.440000pt;}
.yd_c01068{bottom:803.040000pt;}
.yc_c01068{bottom:833.306667pt;}
.yb_c01068{bottom:862.106667pt;}
.ya_c01068{bottom:891.573333pt;}
.y9_c01068{bottom:919.840000pt;}
.y8_c01068{bottom:951.840000pt;}
.y7_c01068{bottom:979.173333pt;}
.y6_c01068{bottom:1008.240000pt;}
.y5_c01068{bottom:1037.440000pt;}
.y4_c01068{bottom:1067.040000pt;}
.y3_c01068{bottom:1096.106667pt;}
.y2_c01068{bottom:1124.906667pt;}
.h4_c01068{height:11.733399pt;}
.h5_c01068{height:38.937500pt;}
.h2_c01068{height:108.041667pt;}
.h3_c01068{height:134.708333pt;}
.h0_c01068{height:1229.733333pt;}
.h1_c01068{height:1230.000000pt;}
.w2_c01068{width:93.222667pt;}
.w0_c01068{width:780.466667pt;}
.w1_c01068{width:780.666667pt;}
.x0_c01068{left:0.000000pt;}
.x9_c01068{left:25.200000pt;}
.x7_c01068{left:26.133333pt;}
.x8_c01068{left:27.200000pt;}
.x6_c01068{left:28.133333pt;}
.x3_c01068{left:29.066667pt;}
.x4_c01068{left:30.000000pt;}
.x2_c01068{left:30.933333pt;}
.xa_c01068{left:32.000000pt;}
.xb_c01068{left:32.933333pt;}
.xc_c01068{left:35.333333pt;}
.xd_c01068{left:80.000000pt;}
.x5_c01068{left:162.000000pt;}
.xf_c01068{left:347.401530pt;}
.x1_c01068{left:553.200000pt;}
.xe_c01068{left:590.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_c01069 {
    display:none;
  }
  .loading-indicator_c01069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01069 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01069 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01069" -> "#page-container .classname_c01069")
 */
.pf_c01069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01069 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01069 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01069 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01069 {overflow:visible;}
  }
}
.c_c01069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01069 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01069:after { /* webkit #35443 */
  content: '';
}
.t_c01069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01069 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01069 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01069 { /* info for Javascript */
  display:none;
}
.l_c01069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_9ef88f129fd5a5a475cb0131.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01069;src:url('chunks/assets/font_02b8b5faf59abc52f465968d.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01069;src:url('chunks/assets/font_c88985ed19ff5b9541831f93.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01069;src:url('chunks/assets/font_4eb34ac482e0126d0fe58e13.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01069;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01069{font-family:ff5_c01069;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01069{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.v0_c01069{vertical-align:0.000000px;}
.ls6_c01069{letter-spacing:-3.000000px;}
.ls5_c01069{letter-spacing:0.000000px;}
.ls4_c01069{letter-spacing:3.252000px;}
.ls1_c01069{letter-spacing:7.200000px;}
.ls2_c01069{letter-spacing:9.600000px;}
.ls0_c01069{letter-spacing:12.000000px;}
.ls3_c01069{letter-spacing:44.400000px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01069{word-spacing:-23.136000px;}
.ws2_c01069{word-spacing:-20.967000px;}
.ws0_c01069{word-spacing:-20.244000px;}
.ws3_c01069{word-spacing:0.000000px;}
._1b_c01069{margin-left:-85.920000px;}
._44_c01069{margin-left:-49.056000px;}
._4c_c01069{margin-left:-40.314000px;}
._4b_c01069{margin-left:-37.671000px;}
._47_c01069{margin-left:-33.147000px;}
._36_c01069{margin-left:-31.968000px;}
._33_c01069{margin-left:-30.528000px;}
._2f_c01069{margin-left:-28.416000px;}
._38_c01069{margin-left:-27.264000px;}
._4d_c01069{margin-left:-21.714000px;}
._3_c01069{margin-left:-19.608000px;}
._4e_c01069{margin-left:-17.313000px;}
._3b_c01069{margin-left:-16.224000px;}
._25_c01069{margin-left:-14.496000px;}
._3c_c01069{margin-left:-13.440000px;}
._3a_c01069{margin-left:-11.808000px;}
._37_c01069{margin-left:-10.128000px;}
._43_c01069{margin-left:-8.736000px;}
._1d_c01069{margin-left:-7.392000px;}
._12_c01069{margin-left:-6.144000px;}
._5_c01069{margin-left:-5.088000px;}
._7_c01069{margin-left:-3.648000px;}
._6_c01069{margin-left:-2.400000px;}
._9_c01069{margin-left:-1.248000px;}
._e_c01069{width:1.920000px;}
._15_c01069{width:3.072000px;}
._1_c01069{width:4.128000px;}
._11_c01069{width:5.664000px;}
._0_c01069{width:6.912000px;}
._3f_c01069{width:7.968000px;}
._10_c01069{width:9.024000px;}
._b_c01069{width:10.560000px;}
._29_c01069{width:11.808000px;}
._17_c01069{width:13.344000px;}
._2d_c01069{width:14.496000px;}
._4_c01069{width:15.648000px;}
._8_c01069{width:16.896000px;}
._31_c01069{width:18.456000px;}
._40_c01069{width:20.832000px;}
._32_c01069{width:21.888000px;}
._2_c01069{width:25.056000px;}
._30_c01069{width:26.520000px;}
._24_c01069{width:28.128000px;}
._13_c01069{width:29.760000px;}
._21_c01069{width:32.064000px;}
._28_c01069{width:34.272000px;}
._c_c01069{width:35.424000px;}
._1e_c01069{width:36.480000px;}
._54_c01069{width:37.653000px;}
._d_c01069{width:38.784000px;}
._19_c01069{width:40.896000px;}
._a_c01069{width:43.008000px;}
._35_c01069{width:45.024000px;}
._2e_c01069{width:47.136000px;}
._2a_c01069{width:48.192000px;}
._23_c01069{width:49.728000px;}
._27_c01069{width:50.784000px;}
._3e_c01069{width:52.512000px;}
._f_c01069{width:53.568000px;}
._2b_c01069{width:55.200000px;}
._1a_c01069{width:56.640000px;}
._34_c01069{width:57.888000px;}
._2c_c01069{width:59.040000px;}
._26_c01069{width:60.288000px;}
._14_c01069{width:61.920000px;}
._22_c01069{width:64.512000px;}
._4a_c01069{width:68.175000px;}
._42_c01069{width:69.312000px;}
._16_c01069{width:73.152000px;}
._46_c01069{width:76.512000px;}
._39_c01069{width:81.792000px;}
._52_c01069{width:90.804000px;}
._18_c01069{width:100.992000px;}
._4f_c01069{width:110.916000px;}
._50_c01069{width:130.116000px;}
._1c_c01069{width:131.136000px;}
._53_c01069{width:163.128000px;}
._20_c01069{width:180.648000px;}
._51_c01069{width:186.345000px;}
._59_c01069{width:200.736000px;}
._1f_c01069{width:310.032000px;}
._5b_c01069{width:330.624000px;}
._57_c01069{width:385.812000px;}
._41_c01069{width:394.176000px;}
._55_c01069{width:466.986000px;}
._49_c01069{width:532.647000px;}
._3d_c01069{width:672.336000px;}
._56_c01069{width:697.953000px;}
._45_c01069{width:707.808000px;}
._48_c01069{width:778.215000px;}
._58_c01069{width:848.160000px;}
._5a_c01069{width:1510.368000px;}
.fc2_c01069{color:transparent;}
.fc1_c01069{color:rgb(128,128,128);}
.fc0_c01069{color:rgb(0,0,0);}
.fs4_c01069{font-size:36.000000px;}
.fs5_c01069{font-size:48.000000px;}
.fs2_c01069{font-size:84.000000px;}
.fs3_c01069{font-size:87.000000px;}
.fs0_c01069{font-size:96.000000px;}
.fs1_c01069{font-size:102.000000px;}
.y0_c01069{bottom:0.000000px;}
.y26_c01069{bottom:3.105000px;}
.y25_c01069{bottom:7.228357px;}
.y24_c01069{bottom:99.630000px;}
.y23_c01069{bottom:128.880000px;}
.y22_c01069{bottom:188.280000px;}
.y21_c01069{bottom:199.230000px;}
.y20_c01069{bottom:212.280000px;}
.y1f_c01069{bottom:233.880000px;}
.y1e_c01069{bottom:269.430000px;}
.y1d_c01069{bottom:303.180000px;}
.y1c_c01069{bottom:336.480000px;}
.y1b_c01069{bottom:370.230000px;}
.y1a_c01069{bottom:403.680000px;}
.y19_c01069{bottom:437.430000px;}
.y18_c01069{bottom:470.580000px;}
.y17_c01069{bottom:504.930000px;}
.y16_c01069{bottom:538.380000px;}
.y15_c01069{bottom:572.430000px;}
.y14_c01069{bottom:605.130000px;}
.y13_c01069{bottom:641.580000px;}
.y12_c01069{bottom:706.680000px;}
.y11_c01069{bottom:740.130000px;}
.y10_c01069{bottom:772.980000px;}
.yf_c01069{bottom:806.730000px;}
.ye_c01069{bottom:839.730000px;}
.yd_c01069{bottom:873.780000px;}
.yc_c01069{bottom:906.930000px;}
.yb_c01069{bottom:940.680000px;}
.ya_c01069{bottom:972.030000px;}
.y9_c01069{bottom:1006.830000px;}
.y8_c01069{bottom:1039.230000px;}
.y7_c01069{bottom:1073.280000px;}
.y6_c01069{bottom:1107.030000px;}
.y5_c01069{bottom:1138.830000px;}
.y4_c01069{bottom:1172.130000px;}
.y3_c01069{bottom:1206.630000px;}
.y2_c01069{bottom:1240.680000px;}
.y1_c01069{bottom:1272.330000px;}
.h6_c01069{height:13.200074px;}
.h4_c01069{height:35.314453px;}
.h7_c01069{height:43.804688px;}
.h5_c01069{height:101.825684px;}
.h3_c01069{height:110.151855px;}
.h2_c01069{height:121.546875px;}
.h0_c01069{height:1382.700000px;}
.h1_c01069{height:1383.000000px;}
.w2_c01069{width:104.875500px;}
.w0_c01069{width:863.175000px;}
.w1_c01069{width:863.250000px;}
.x0_c01069{left:0.000000px;}
.x8_c01069{left:103.950000px;}
.xa_c01069{left:107.250000px;}
.x3_c01069{left:123.900000px;}
.x9_c01069{left:128.700000px;}
.x7_c01069{left:165.600000px;}
.x4_c01069{left:200.700000px;}
.x6_c01069{left:220.650000px;}
.x2_c01069{left:222.300000px;}
.x1_c01069{left:223.350000px;}
.x5_c01069{left:224.400000px;}
.xc_c01069{left:237.300000px;}
.xe_c01069{left:273.601500px;}
.xd_c01069{left:283.200000px;}
.xb_c01069{left:303.750000px;}
.xf_c01069{left:383.401749px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls6_c01069{letter-spacing:-2.666667pt;}
.ls5_c01069{letter-spacing:0.000000pt;}
.ls4_c01069{letter-spacing:2.890667pt;}
.ls1_c01069{letter-spacing:6.400000pt;}
.ls2_c01069{letter-spacing:8.533333pt;}
.ls0_c01069{letter-spacing:10.666667pt;}
.ls3_c01069{letter-spacing:39.466667pt;}
.ws1_c01069{word-spacing:-20.565333pt;}
.ws2_c01069{word-spacing:-18.637333pt;}
.ws0_c01069{word-spacing:-17.994667pt;}
.ws3_c01069{word-spacing:0.000000pt;}
._1b_c01069{margin-left:-76.373333pt;}
._44_c01069{margin-left:-43.605333pt;}
._4c_c01069{margin-left:-35.834667pt;}
._4b_c01069{margin-left:-33.485333pt;}
._47_c01069{margin-left:-29.464000pt;}
._36_c01069{margin-left:-28.416000pt;}
._33_c01069{margin-left:-27.136000pt;}
._2f_c01069{margin-left:-25.258667pt;}
._38_c01069{margin-left:-24.234667pt;}
._4d_c01069{margin-left:-19.301333pt;}
._3_c01069{margin-left:-17.429333pt;}
._4e_c01069{margin-left:-15.389333pt;}
._3b_c01069{margin-left:-14.421333pt;}
._25_c01069{margin-left:-12.885333pt;}
._3c_c01069{margin-left:-11.946667pt;}
._3a_c01069{margin-left:-10.496000pt;}
._37_c01069{margin-left:-9.002667pt;}
._43_c01069{margin-left:-7.765333pt;}
._1d_c01069{margin-left:-6.570667pt;}
._12_c01069{margin-left:-5.461333pt;}
._5_c01069{margin-left:-4.522667pt;}
._7_c01069{margin-left:-3.242667pt;}
._6_c01069{margin-left:-2.133333pt;}
._9_c01069{margin-left:-1.109333pt;}
._e_c01069{width:1.706667pt;}
._15_c01069{width:2.730667pt;}
._1_c01069{width:3.669333pt;}
._11_c01069{width:5.034667pt;}
._0_c01069{width:6.144000pt;}
._3f_c01069{width:7.082667pt;}
._10_c01069{width:8.021333pt;}
._b_c01069{width:9.386667pt;}
._29_c01069{width:10.496000pt;}
._17_c01069{width:11.861333pt;}
._2d_c01069{width:12.885333pt;}
._4_c01069{width:13.909333pt;}
._8_c01069{width:15.018667pt;}
._31_c01069{width:16.405333pt;}
._40_c01069{width:18.517333pt;}
._32_c01069{width:19.456000pt;}
._2_c01069{width:22.272000pt;}
._30_c01069{width:23.573333pt;}
._24_c01069{width:25.002667pt;}
._13_c01069{width:26.453333pt;}
._21_c01069{width:28.501333pt;}
._28_c01069{width:30.464000pt;}
._c_c01069{width:31.488000pt;}
._1e_c01069{width:32.426667pt;}
._54_c01069{width:33.469333pt;}
._d_c01069{width:34.474667pt;}
._19_c01069{width:36.352000pt;}
._a_c01069{width:38.229333pt;}
._35_c01069{width:40.021333pt;}
._2e_c01069{width:41.898667pt;}
._2a_c01069{width:42.837333pt;}
._23_c01069{width:44.202667pt;}
._27_c01069{width:45.141333pt;}
._3e_c01069{width:46.677333pt;}
._f_c01069{width:47.616000pt;}
._2b_c01069{width:49.066667pt;}
._1a_c01069{width:50.346667pt;}
._34_c01069{width:51.456000pt;}
._2c_c01069{width:52.480000pt;}
._26_c01069{width:53.589333pt;}
._14_c01069{width:55.040000pt;}
._22_c01069{width:57.344000pt;}
._4a_c01069{width:60.600000pt;}
._42_c01069{width:61.610667pt;}
._16_c01069{width:65.024000pt;}
._46_c01069{width:68.010667pt;}
._39_c01069{width:72.704000pt;}
._52_c01069{width:80.714667pt;}
._18_c01069{width:89.770667pt;}
._4f_c01069{width:98.592000pt;}
._50_c01069{width:115.658667pt;}
._1c_c01069{width:116.565333pt;}
._53_c01069{width:145.002667pt;}
._20_c01069{width:160.576000pt;}
._51_c01069{width:165.640000pt;}
._59_c01069{width:178.432000pt;}
._1f_c01069{width:275.584000pt;}
._5b_c01069{width:293.888000pt;}
._57_c01069{width:342.944000pt;}
._41_c01069{width:350.378667pt;}
._55_c01069{width:415.098667pt;}
._49_c01069{width:473.464000pt;}
._3d_c01069{width:597.632000pt;}
._56_c01069{width:620.402667pt;}
._45_c01069{width:629.162667pt;}
._48_c01069{width:691.746667pt;}
._58_c01069{width:753.920000pt;}
._5a_c01069{width:1342.549333pt;}
.fs4_c01069{font-size:32.000000pt;}
.fs5_c01069{font-size:42.666667pt;}
.fs2_c01069{font-size:74.666667pt;}
.fs3_c01069{font-size:77.333333pt;}
.fs0_c01069{font-size:85.333333pt;}
.fs1_c01069{font-size:90.666667pt;}
.y0_c01069{bottom:0.000000pt;}
.y26_c01069{bottom:2.760000pt;}
.y25_c01069{bottom:6.425206pt;}
.y24_c01069{bottom:88.560000pt;}
.y23_c01069{bottom:114.560000pt;}
.y22_c01069{bottom:167.360000pt;}
.y21_c01069{bottom:177.093333pt;}
.y20_c01069{bottom:188.693333pt;}
.y1f_c01069{bottom:207.893333pt;}
.y1e_c01069{bottom:239.493333pt;}
.y1d_c01069{bottom:269.493333pt;}
.y1c_c01069{bottom:299.093333pt;}
.y1b_c01069{bottom:329.093333pt;}
.y1a_c01069{bottom:358.826667pt;}
.y19_c01069{bottom:388.826667pt;}
.y18_c01069{bottom:418.293333pt;}
.y17_c01069{bottom:448.826667pt;}
.y16_c01069{bottom:478.560000pt;}
.y15_c01069{bottom:508.826667pt;}
.y14_c01069{bottom:537.893333pt;}
.y13_c01069{bottom:570.293333pt;}
.y12_c01069{bottom:628.160000pt;}
.y11_c01069{bottom:657.893333pt;}
.y10_c01069{bottom:687.093333pt;}
.yf_c01069{bottom:717.093333pt;}
.ye_c01069{bottom:746.426667pt;}
.yd_c01069{bottom:776.693333pt;}
.yc_c01069{bottom:806.160000pt;}
.yb_c01069{bottom:836.160000pt;}
.ya_c01069{bottom:864.026667pt;}
.y9_c01069{bottom:894.960000pt;}
.y8_c01069{bottom:923.760000pt;}
.y7_c01069{bottom:954.026667pt;}
.y6_c01069{bottom:984.026667pt;}
.y5_c01069{bottom:1012.293333pt;}
.y4_c01069{bottom:1041.893333pt;}
.y3_c01069{bottom:1072.560000pt;}
.y2_c01069{bottom:1102.826667pt;}
.y1_c01069{bottom:1130.960000pt;}
.h6_c01069{height:11.733399pt;}
.h4_c01069{height:31.390625pt;}
.h7_c01069{height:38.937500pt;}
.h5_c01069{height:90.511719pt;}
.h3_c01069{height:97.912760pt;}
.h2_c01069{height:108.041667pt;}
.h0_c01069{height:1229.066667pt;}
.h1_c01069{height:1229.333333pt;}
.w2_c01069{width:93.222667pt;}
.w0_c01069{width:767.266667pt;}
.w1_c01069{width:767.333333pt;}
.x0_c01069{left:0.000000pt;}
.x8_c01069{left:92.400000pt;}
.xa_c01069{left:95.333333pt;}
.x3_c01069{left:110.133333pt;}
.x9_c01069{left:114.400000pt;}
.x7_c01069{left:147.200000pt;}
.x4_c01069{left:178.400000pt;}
.x6_c01069{left:196.133333pt;}
.x2_c01069{left:197.600000pt;}
.x1_c01069{left:198.533333pt;}
.x5_c01069{left:199.466667pt;}
.xc_c01069{left:210.933333pt;}
.xe_c01069{left:243.201333pt;}
.xd_c01069{left:251.733333pt;}
.xb_c01069{left:270.000000pt;}
.xf_c01069{left:340.801554pt;}
}





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

.ir_c01070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_9df489bf662f8d84515421ce.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01070;src:url('chunks/assets/font_15f4721589b94b47bc1b06df.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01070;src:url('chunks/assets/font_feaea4f0b3523a6af741e4c4.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01070;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01070;src:url('chunks/assets/font_4a505c27c7cd9235d67fef9e.woff2')format("woff");}.ff5_c01070{font-family:ff5_c01070;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01070;src:url('chunks/assets/font_2d0f2a14495fd83cd6a9cebf.woff2')format("woff");}.ff6_c01070{font-family:ff6_c01070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01070;src:url('chunks/assets/font_77035e3d0c4449c8e44aa451.woff2')format("woff");}.ff7_c01070{font-family:ff7_c01070;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01070;src:url('chunks/assets/font_94c410498104a99d8cf07382.woff2')format("woff");}.ff8_c01070{font-family:ff8_c01070;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01070;src:url('chunks/assets/font_d83b3620ececaa4006aadab6.woff2')format("woff");}.ff9_c01070{font-family:ff9_c01070;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01070;src:url('chunks/assets/font_a45a53038a5031daabb87979.woff2')format("woff");}.ffa_c01070{font-family:ffa_c01070;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:ffb_c01070;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb_c01070{font-family:ffb_c01070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01070;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ffc_c01070{font-family:ffc_c01070;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.v1_c01070{vertical-align:120.600000px;}
.v2_c01070{vertical-align:192.000000px;}
.ls7_c01070{letter-spacing:-9.000000px;}
.ls6_c01070{letter-spacing:0.000000px;}
.ls3_c01070{letter-spacing:5.775000px;}
.lsa_c01070{letter-spacing:6.000000px;}
.ls2_c01070{letter-spacing:6.672000px;}
.ls9_c01070{letter-spacing:9.000000px;}
.ls0_c01070{letter-spacing:24.456000px;}
.ls8_c01070{letter-spacing:27.000000px;}
.ls1_c01070{letter-spacing:51.786000px;}
.ls4_c01070{letter-spacing:63.084000px;}
.ls5_c01070{letter-spacing:1569.120000px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01070{word-spacing:-51.000000px;}
.ws0_c01070{word-spacing:-34.704000px;}
.ws3_c01070{word-spacing:-31.305000px;}
.ws1_c01070{word-spacing:-31.014000px;}
.ws2_c01070{word-spacing:-23.136000px;}
.ws6_c01070{word-spacing:-22.716000px;}
.ws7_c01070{word-spacing:-20.967000px;}
.wsa_c01070{word-spacing:-20.244000px;}
.ws9_c01070{word-spacing:-0.288000px;}
.ws5_c01070{word-spacing:-0.168000px;}
.wsb_c01070{word-spacing:0.000000px;}
.ws8_c01070{word-spacing:1.248000px;}
._42_c01070{margin-left:-106.020000px;}
._13_c01070{margin-left:-91.728000px;}
._34_c01070{margin-left:-80.079000px;}
._11_c01070{margin-left:-76.284000px;}
._21_c01070{margin-left:-70.818000px;}
._17_c01070{margin-left:-63.414000px;}
._9_c01070{margin-left:-51.411000px;}
._40_c01070{margin-left:-46.668000px;}
._52_c01070{margin-left:-39.543000px;}
._33_c01070{margin-left:-37.671000px;}
._3b_c01070{margin-left:-35.298000px;}
._24_c01070{margin-left:-32.277000px;}
._35_c01070{margin-left:-30.027000px;}
._26_c01070{margin-left:-28.188000px;}
._38_c01070{margin-left:-25.068000px;}
._2c_c01070{margin-left:-22.848000px;}
._2a_c01070{margin-left:-21.504000px;}
._f_c01070{margin-left:-19.815000px;}
._19_c01070{margin-left:-18.585000px;}
._c_c01070{margin-left:-17.550000px;}
._d_c01070{margin-left:-16.263000px;}
._2b_c01070{margin-left:-15.180000px;}
._a_c01070{margin-left:-13.221000px;}
._b_c01070{margin-left:-12.168000px;}
._27_c01070{margin-left:-11.022000px;}
._e_c01070{margin-left:-9.594000px;}
._10_c01070{margin-left:-8.190000px;}
._18_c01070{margin-left:-6.201000px;}
._4a_c01070{margin-left:-5.031000px;}
._14_c01070{margin-left:-3.978000px;}
._1d_c01070{margin-left:-2.304000px;}
._57_c01070{margin-left:-1.296000px;}
._7_c01070{width:1.128000px;}
._5_c01070{width:2.592000px;}
._44_c01070{width:3.648000px;}
._4_c01070{width:4.752000px;}
._0_c01070{width:5.760000px;}
._2_c01070{width:6.768000px;}
._3_c01070{width:7.776000px;}
._1_c01070{width:8.784000px;}
._59_c01070{width:9.852000px;}
._8_c01070{width:10.881000px;}
._2f_c01070{width:12.363000px;}
._51_c01070{width:13.548000px;}
._1c_c01070{width:15.093000px;}
._1b_c01070{width:16.380000px;}
._30_c01070{width:18.336000px;}
._12_c01070{width:19.656000px;}
._50_c01070{width:20.778000px;}
._16_c01070{width:21.996000px;}
._58_c01070{width:24.174000px;}
._15_c01070{width:25.857000px;}
._36_c01070{width:28.158000px;}
._53_c01070{width:30.261000px;}
._41_c01070{width:31.332000px;}
._1e_c01070{width:32.877000px;}
._3a_c01070{width:34.374000px;}
._46_c01070{width:36.213000px;}
._3e_c01070{width:38.076000px;}
._55_c01070{width:39.585000px;}
._29_c01070{width:41.157000px;}
._3c_c01070{width:42.426000px;}
._4f_c01070{width:43.824000px;}
._56_c01070{width:45.042000px;}
._4d_c01070{width:46.272000px;}
._1a_c01070{width:49.608000px;}
._39_c01070{width:50.721000px;}
._47_c01070{width:52.158000px;}
._48_c01070{width:53.274000px;}
._5b_c01070{width:54.603000px;}
._5d_c01070{width:58.077000px;}
._3d_c01070{width:60.771000px;}
._5a_c01070{width:63.300000px;}
._54_c01070{width:64.896000px;}
._37_c01070{width:67.374000px;}
._5f_c01070{width:69.051000px;}
._5c_c01070{width:70.860000px;}
._5e_c01070{width:79.683000px;}
._4e_c01070{width:83.886000px;}
._1f_c01070{width:86.562000px;}
._2d_c01070{width:93.018000px;}
._31_c01070{width:112.515000px;}
._49_c01070{width:113.964000px;}
._4c_c01070{width:118.383000px;}
._20_c01070{width:126.240000px;}
._23_c01070{width:130.815000px;}
._3f_c01070{width:165.789000px;}
._43_c01070{width:191.232000px;}
._28_c01070{width:194.976000px;}
._4b_c01070{width:213.960000px;}
._45_c01070{width:217.344000px;}
._32_c01070{width:282.465000px;}
._6_c01070{width:422.208000px;}
._22_c01070{width:433.869000px;}
._25_c01070{width:450.921000px;}
._2e_c01070{width:510.000000px;}
.fc2_c01070{color:transparent;}
.fc1_c01070{color:rgb(128,128,128);}
.fc0_c01070{color:rgb(0,0,0);}
.fs8_c01070{font-size:45.000000px;}
.fs11_c01070{font-size:48.000000px;}
.fse_c01070{font-size:54.000000px;}
.fsc_c01070{font-size:60.000000px;}
.fsf_c01070{font-size:63.000000px;}
.fsd_c01070{font-size:75.000000px;}
.fs7_c01070{font-size:78.000000px;}
.fsb_c01070{font-size:84.000000px;}
.fs3_c01070{font-size:87.000000px;}
.fs4_c01070{font-size:96.000000px;}
.fsa_c01070{font-size:102.000000px;}
.fs9_c01070{font-size:105.000000px;}
.fs5_c01070{font-size:114.000000px;}
.fs2_c01070{font-size:117.000000px;}
.fs6_c01070{font-size:120.000000px;}
.fs0_c01070{font-size:144.000000px;}
.fs1_c01070{font-size:168.000000px;}
.fs10_c01070{font-size:240.000000px;}
.y0_c01070{bottom:0.000000px;}
.y27_c01070{bottom:3.105000px;}
.y26_c01070{bottom:7.228369px;}
.y25_c01070{bottom:88.470000px;}
.y24_c01070{bottom:121.770000px;}
.y23_c01070{bottom:155.970000px;}
.y22_c01070{bottom:190.320000px;}
.y21_c01070{bottom:224.370000px;}
.y20_c01070{bottom:257.520000px;}
.y1f_c01070{bottom:291.570000px;}
.y1e_c01070{bottom:325.920000px;}
.y1d_c01070{bottom:359.070000px;}
.y1c_c01070{bottom:393.120000px;}
.y1b_c01070{bottom:426.870000px;}
.y1a_c01070{bottom:460.920000px;}
.y19_c01070{bottom:494.070000px;}
.y18_c01070{bottom:527.520000px;}
.y17_c01070{bottom:561.270000px;}
.y16_c01070{bottom:595.020000px;}
.y15_c01070{bottom:628.320000px;}
.y14_c01070{bottom:661.770000px;}
.y13_c01070{bottom:694.470000px;}
.y12_c01070{bottom:728.670000px;}
.y11_c01070{bottom:760.770000px;}
.y10_c01070{bottom:793.770000px;}
.yf_c01070{bottom:860.520000px;}
.ye_c01070{bottom:897.120000px;}
.yd_c01070{bottom:899.670000px;}
.yc_c01070{bottom:927.720000px;}
.yb_c01070{bottom:961.170000px;}
.ya_c01070{bottom:995.520000px;}
.y9_c01070{bottom:1028.370000px;}
.y7_c01070{bottom:1127.220000px;}
.y6_c01070{bottom:1127.520000px;}
.y8_c01070{bottom:1133.970000px;}
.y4_c01070{bottom:1144.470000px;}
.y3_c01070{bottom:1150.770000px;}
.y5_c01070{bottom:1159.920000px;}
.y2_c01070{bottom:1198.170000px;}
.y1_c01070{bottom:1249.470000px;}
.hb_c01070{height:13.200073px;}
.hc_c01070{height:43.804688px;}
.h9_c01070{height:79.765137px;}
.h7_c01070{height:87.780762px;}
.h4_c01070{height:110.151855px;}
.h5_c01070{height:121.546875px;}
.h3_c01070{height:124.839000px;}
.h6_c01070{height:128.040000px;}
.h2_c01070{height:182.320312px;}
.h8_c01070{height:242.146875px;}
.ha_c01070{height:302.151855px;}
.h0_c01070{height:1383.450000px;}
.h1_c01070{height:1383.750000px;}
.w2_c01070{width:104.875500px;}
.w0_c01070{width:878.025000px;}
.w1_c01070{width:878.250000px;}
.x0_c01070{left:0.000000px;}
.x11_c01070{left:32.700000px;}
.xf_c01070{left:34.800000px;}
.x10_c01070{left:36.450000px;}
.xb_c01070{left:37.500000px;}
.xc_c01070{left:38.550000px;}
.x12_c01070{left:40.200000px;}
.x13_c01070{left:41.400000px;}
.x5_c01070{left:42.450000px;}
.x1_c01070{left:44.100000px;}
.x9_c01070{left:45.600000px;}
.x8_c01070{left:78.600000px;}
.xd_c01070{left:95.400000px;}
.x3_c01070{left:107.250000px;}
.x2_c01070{left:121.200000px;}
.x4_c01070{left:132.000000px;}
.xe_c01070{left:189.000000px;}
.xa_c01070{left:288.600000px;}
.x6_c01070{left:290.550000px;}
.x7_c01070{left:378.000000px;}
.x15_c01070{left:390.826721px;}
.x14_c01070{left:561.300000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.v1_c01070{vertical-align:107.200000pt;}
.v2_c01070{vertical-align:170.666667pt;}
.ls7_c01070{letter-spacing:-8.000000pt;}
.ls6_c01070{letter-spacing:0.000000pt;}
.ls3_c01070{letter-spacing:5.133333pt;}
.lsa_c01070{letter-spacing:5.333333pt;}
.ls2_c01070{letter-spacing:5.930667pt;}
.ls9_c01070{letter-spacing:8.000000pt;}
.ls0_c01070{letter-spacing:21.738667pt;}
.ls8_c01070{letter-spacing:24.000000pt;}
.ls1_c01070{letter-spacing:46.032000pt;}
.ls4_c01070{letter-spacing:56.074667pt;}
.ls5_c01070{letter-spacing:1394.773333pt;}
.ws4_c01070{word-spacing:-45.333333pt;}
.ws0_c01070{word-spacing:-30.848000pt;}
.ws3_c01070{word-spacing:-27.826667pt;}
.ws1_c01070{word-spacing:-27.568000pt;}
.ws2_c01070{word-spacing:-20.565333pt;}
.ws6_c01070{word-spacing:-20.192000pt;}
.ws7_c01070{word-spacing:-18.637333pt;}
.wsa_c01070{word-spacing:-17.994667pt;}
.ws9_c01070{word-spacing:-0.256000pt;}
.ws5_c01070{word-spacing:-0.149333pt;}
.wsb_c01070{word-spacing:0.000000pt;}
.ws8_c01070{word-spacing:1.109333pt;}
._42_c01070{margin-left:-94.240000pt;}
._13_c01070{margin-left:-81.536000pt;}
._34_c01070{margin-left:-71.181333pt;}
._11_c01070{margin-left:-67.808000pt;}
._21_c01070{margin-left:-62.949333pt;}
._17_c01070{margin-left:-56.368000pt;}
._9_c01070{margin-left:-45.698667pt;}
._40_c01070{margin-left:-41.482667pt;}
._52_c01070{margin-left:-35.149333pt;}
._33_c01070{margin-left:-33.485333pt;}
._3b_c01070{margin-left:-31.376000pt;}
._24_c01070{margin-left:-28.690667pt;}
._35_c01070{margin-left:-26.690667pt;}
._26_c01070{margin-left:-25.056000pt;}
._38_c01070{margin-left:-22.282667pt;}
._2c_c01070{margin-left:-20.309333pt;}
._2a_c01070{margin-left:-19.114667pt;}
._f_c01070{margin-left:-17.613333pt;}
._19_c01070{margin-left:-16.520000pt;}
._c_c01070{margin-left:-15.600000pt;}
._d_c01070{margin-left:-14.456000pt;}
._2b_c01070{margin-left:-13.493333pt;}
._a_c01070{margin-left:-11.752000pt;}
._b_c01070{margin-left:-10.816000pt;}
._27_c01070{margin-left:-9.797333pt;}
._e_c01070{margin-left:-8.528000pt;}
._10_c01070{margin-left:-7.280000pt;}
._18_c01070{margin-left:-5.512000pt;}
._4a_c01070{margin-left:-4.472000pt;}
._14_c01070{margin-left:-3.536000pt;}
._1d_c01070{margin-left:-2.048000pt;}
._57_c01070{margin-left:-1.152000pt;}
._7_c01070{width:1.002667pt;}
._5_c01070{width:2.304000pt;}
._44_c01070{width:3.242667pt;}
._4_c01070{width:4.224000pt;}
._0_c01070{width:5.120000pt;}
._2_c01070{width:6.016000pt;}
._3_c01070{width:6.912000pt;}
._1_c01070{width:7.808000pt;}
._59_c01070{width:8.757333pt;}
._8_c01070{width:9.672000pt;}
._2f_c01070{width:10.989333pt;}
._51_c01070{width:12.042667pt;}
._1c_c01070{width:13.416000pt;}
._1b_c01070{width:14.560000pt;}
._30_c01070{width:16.298667pt;}
._12_c01070{width:17.472000pt;}
._50_c01070{width:18.469333pt;}
._16_c01070{width:19.552000pt;}
._58_c01070{width:21.488000pt;}
._15_c01070{width:22.984000pt;}
._36_c01070{width:25.029333pt;}
._53_c01070{width:26.898667pt;}
._41_c01070{width:27.850667pt;}
._1e_c01070{width:29.224000pt;}
._3a_c01070{width:30.554667pt;}
._46_c01070{width:32.189333pt;}
._3e_c01070{width:33.845333pt;}
._55_c01070{width:35.186667pt;}
._29_c01070{width:36.584000pt;}
._3c_c01070{width:37.712000pt;}
._4f_c01070{width:38.954667pt;}
._56_c01070{width:40.037333pt;}
._4d_c01070{width:41.130667pt;}
._1a_c01070{width:44.096000pt;}
._39_c01070{width:45.085333pt;}
._47_c01070{width:46.362667pt;}
._48_c01070{width:47.354667pt;}
._5b_c01070{width:48.536000pt;}
._5d_c01070{width:51.624000pt;}
._3d_c01070{width:54.018667pt;}
._5a_c01070{width:56.266667pt;}
._54_c01070{width:57.685333pt;}
._37_c01070{width:59.888000pt;}
._5f_c01070{width:61.378667pt;}
._5c_c01070{width:62.986667pt;}
._5e_c01070{width:70.829333pt;}
._4e_c01070{width:74.565333pt;}
._1f_c01070{width:76.944000pt;}
._2d_c01070{width:82.682667pt;}
._31_c01070{width:100.013333pt;}
._49_c01070{width:101.301333pt;}
._4c_c01070{width:105.229333pt;}
._20_c01070{width:112.213333pt;}
._23_c01070{width:116.280000pt;}
._3f_c01070{width:147.368000pt;}
._43_c01070{width:169.984000pt;}
._28_c01070{width:173.312000pt;}
._4b_c01070{width:190.186667pt;}
._45_c01070{width:193.194667pt;}
._32_c01070{width:251.080000pt;}
._6_c01070{width:375.296000pt;}
._22_c01070{width:385.661333pt;}
._25_c01070{width:400.818667pt;}
._2e_c01070{width:453.333333pt;}
.fs8_c01070{font-size:40.000000pt;}
.fs11_c01070{font-size:42.666667pt;}
.fse_c01070{font-size:48.000000pt;}
.fsc_c01070{font-size:53.333333pt;}
.fsf_c01070{font-size:56.000000pt;}
.fsd_c01070{font-size:66.666667pt;}
.fs7_c01070{font-size:69.333333pt;}
.fsb_c01070{font-size:74.666667pt;}
.fs3_c01070{font-size:77.333333pt;}
.fs4_c01070{font-size:85.333333pt;}
.fsa_c01070{font-size:90.666667pt;}
.fs9_c01070{font-size:93.333333pt;}
.fs5_c01070{font-size:101.333333pt;}
.fs2_c01070{font-size:104.000000pt;}
.fs6_c01070{font-size:106.666667pt;}
.fs0_c01070{font-size:128.000000pt;}
.fs1_c01070{font-size:149.333333pt;}
.fs10_c01070{font-size:213.333333pt;}
.y0_c01070{bottom:0.000000pt;}
.y27_c01070{bottom:2.760000pt;}
.y26_c01070{bottom:6.425217pt;}
.y25_c01070{bottom:78.640000pt;}
.y24_c01070{bottom:108.240000pt;}
.y23_c01070{bottom:138.640000pt;}
.y22_c01070{bottom:169.173333pt;}
.y21_c01070{bottom:199.440000pt;}
.y20_c01070{bottom:228.906667pt;}
.y1f_c01070{bottom:259.173333pt;}
.y1e_c01070{bottom:289.706667pt;}
.y1d_c01070{bottom:319.173333pt;}
.y1c_c01070{bottom:349.440000pt;}
.y1b_c01070{bottom:379.440000pt;}
.y1a_c01070{bottom:409.706667pt;}
.y19_c01070{bottom:439.173333pt;}
.y18_c01070{bottom:468.906667pt;}
.y17_c01070{bottom:498.906667pt;}
.y16_c01070{bottom:528.906667pt;}
.y15_c01070{bottom:558.506667pt;}
.y14_c01070{bottom:588.240000pt;}
.y13_c01070{bottom:617.306667pt;}
.y12_c01070{bottom:647.706667pt;}
.y11_c01070{bottom:676.240000pt;}
.y10_c01070{bottom:705.573333pt;}
.yf_c01070{bottom:764.906667pt;}
.ye_c01070{bottom:797.440000pt;}
.yd_c01070{bottom:799.706667pt;}
.yc_c01070{bottom:824.640000pt;}
.yb_c01070{bottom:854.373333pt;}
.ya_c01070{bottom:884.906667pt;}
.y9_c01070{bottom:914.106667pt;}
.y7_c01070{bottom:1001.973333pt;}
.y6_c01070{bottom:1002.240000pt;}
.y8_c01070{bottom:1007.973333pt;}
.y4_c01070{bottom:1017.306667pt;}
.y3_c01070{bottom:1022.906667pt;}
.y5_c01070{bottom:1031.040000pt;}
.y2_c01070{bottom:1065.040000pt;}
.y1_c01070{bottom:1110.640000pt;}
.hb_c01070{height:11.733399pt;}
.hc_c01070{height:38.937500pt;}
.h9_c01070{height:70.902344pt;}
.h7_c01070{height:78.027344pt;}
.h4_c01070{height:97.912760pt;}
.h5_c01070{height:108.041667pt;}
.h3_c01070{height:110.968000pt;}
.h6_c01070{height:113.813333pt;}
.h2_c01070{height:162.062500pt;}
.h8_c01070{height:215.241667pt;}
.ha_c01070{height:268.579427pt;}
.h0_c01070{height:1229.733333pt;}
.h1_c01070{height:1230.000000pt;}
.w2_c01070{width:93.222667pt;}
.w0_c01070{width:780.466667pt;}
.w1_c01070{width:780.666667pt;}
.x0_c01070{left:0.000000pt;}
.x11_c01070{left:29.066667pt;}
.xf_c01070{left:30.933333pt;}
.x10_c01070{left:32.400000pt;}
.xb_c01070{left:33.333333pt;}
.xc_c01070{left:34.266667pt;}
.x12_c01070{left:35.733333pt;}
.x13_c01070{left:36.800000pt;}
.x5_c01070{left:37.733333pt;}
.x1_c01070{left:39.200000pt;}
.x9_c01070{left:40.533333pt;}
.x8_c01070{left:69.866667pt;}
.xd_c01070{left:84.800000pt;}
.x3_c01070{left:95.333333pt;}
.x2_c01070{left:107.733333pt;}
.x4_c01070{left:117.333333pt;}
.xe_c01070{left:168.000000pt;}
.xa_c01070{left:256.533333pt;}
.x6_c01070{left:258.266667pt;}
.x7_c01070{left:336.000000pt;}
.x15_c01070{left:347.401530pt;}
.x14_c01070{left:498.933333pt;}
}





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

.ir_c01071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_9199dd8718d353ecd0c3e51c.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01071;src:url('chunks/assets/font_7d1f49e50098f7239ec9dce7.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01071;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.ls2_c01071{letter-spacing:0.000000px;}
.ls0_c01071{letter-spacing:11.856000px;}
.ls1_c01071{letter-spacing:15.264000px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01071{word-spacing:-63.504000px;}
.ws1_c01071{word-spacing:-23.136000px;}
.ws2_c01071{word-spacing:0.000000px;}
._37_c01071{margin-left:-82.272000px;}
._33_c01071{margin-left:-29.568000px;}
._39_c01071{margin-left:-27.648000px;}
._30_c01071{margin-left:-25.824000px;}
._35_c01071{margin-left:-22.944000px;}
._2e_c01071{margin-left:-19.680000px;}
._31_c01071{margin-left:-18.168000px;}
._22_c01071{margin-left:-16.800000px;}
._2c_c01071{margin-left:-14.496000px;}
._23_c01071{margin-left:-12.672000px;}
._2b_c01071{margin-left:-10.920000px;}
._14_c01071{margin-left:-9.888000px;}
._17_c01071{margin-left:-7.776000px;}
._16_c01071{margin-left:-6.528000px;}
._15_c01071{margin-left:-4.704000px;}
._9_c01071{margin-left:-2.976000px;}
._18_c01071{margin-left:-1.632000px;}
._7_c01071{width:1.632000px;}
._5_c01071{width:2.688000px;}
._6_c01071{width:4.224000px;}
._1_c01071{width:5.472000px;}
._2_c01071{width:7.008000px;}
._3_c01071{width:8.064000px;}
._0_c01071{width:9.408000px;}
._24_c01071{width:10.656000px;}
._d_c01071{width:11.712000px;}
._2a_c01071{width:12.864000px;}
._20_c01071{width:14.400000px;}
._c_c01071{width:16.032000px;}
._19_c01071{width:17.664000px;}
._b_c01071{width:19.392000px;}
._a_c01071{width:20.640000px;}
._27_c01071{width:21.888000px;}
._32_c01071{width:24.192000px;}
._1c_c01071{width:25.440000px;}
._25_c01071{width:27.936000px;}
._29_c01071{width:29.472000px;}
._1e_c01071{width:30.624000px;}
._4_c01071{width:31.776000px;}
._12_c01071{width:33.696000px;}
._28_c01071{width:35.040000px;}
._21_c01071{width:36.768000px;}
._8_c01071{width:38.304000px;}
._3d_c01071{width:39.360000px;}
._1a_c01071{width:40.896000px;}
._f_c01071{width:42.624000px;}
._1d_c01071{width:44.448000px;}
._36_c01071{width:45.600000px;}
._1b_c01071{width:47.328000px;}
._e_c01071{width:49.152000px;}
._3f_c01071{width:50.400000px;}
._11_c01071{width:52.128000px;}
._3e_c01071{width:53.664000px;}
._38_c01071{width:55.680000px;}
._1f_c01071{width:58.464000px;}
._3c_c01071{width:60.000000px;}
._10_c01071{width:61.824000px;}
._2f_c01071{width:64.608000px;}
._2d_c01071{width:67.392000px;}
._34_c01071{width:69.120000px;}
._3a_c01071{width:70.752000px;}
._40_c01071{width:75.648000px;}
._13_c01071{width:76.800000px;}
._3b_c01071{width:86.976000px;}
._26_c01071{width:374.592000px;}
.fc2_c01071{color:transparent;}
.fc1_c01071{color:rgb(128,128,128);}
.fc0_c01071{color:rgb(0,0,0);}
.fs2_c01071{font-size:48.000000px;}
.fs1_c01071{font-size:84.000000px;}
.fs0_c01071{font-size:96.000000px;}
.y0_c01071{bottom:0.000000px;}
.y26_c01071{bottom:3.105000px;}
.y25_c01071{bottom:7.228357px;}
.y24_c01071{bottom:85.080000px;}
.y23_c01071{bottom:118.080000px;}
.y22_c01071{bottom:152.880000px;}
.y21_c01071{bottom:186.330000px;}
.y20_c01071{bottom:220.380000px;}
.y1f_c01071{bottom:253.830000px;}
.y1e_c01071{bottom:287.880000px;}
.y1d_c01071{bottom:321.330000px;}
.y1c_c01071{bottom:355.680000px;}
.y1b_c01071{bottom:388.830000px;}
.y1a_c01071{bottom:422.880000px;}
.y19_c01071{bottom:456.930000px;}
.y18_c01071{bottom:489.780000px;}
.y17_c01071{bottom:524.130000px;}
.y16_c01071{bottom:556.830000px;}
.y15_c01071{bottom:591.030000px;}
.y14_c01071{bottom:624.480000px;}
.y13_c01071{bottom:658.080000px;}
.y12_c01071{bottom:691.980000px;}
.y11_c01071{bottom:725.280000px;}
.y10_c01071{bottom:758.430000px;}
.yf_c01071{bottom:791.880000px;}
.ye_c01071{bottom:825.180000px;}
.yd_c01071{bottom:859.230000px;}
.yc_c01071{bottom:892.380000px;}
.yb_c01071{bottom:925.830000px;}
.ya_c01071{bottom:954.180000px;}
.y9_c01071{bottom:992.580000px;}
.y8_c01071{bottom:1024.980000px;}
.y7_c01071{bottom:1058.430000px;}
.y6_c01071{bottom:1091.580000px;}
.y5_c01071{bottom:1125.180000px;}
.y4_c01071{bottom:1158.930000px;}
.y3_c01071{bottom:1191.780000px;}
.y2_c01071{bottom:1224.780000px;}
.y1_c01071{bottom:1257.480000px;}
.h3_c01071{height:13.200074px;}
.h4_c01071{height:43.804688px;}
.h2_c01071{height:121.546875px;}
.h0_c01071{height:1382.700000px;}
.h1_c01071{height:1383.000000px;}
.w2_c01071{width:104.875500px;}
.w0_c01071{width:863.175000px;}
.w1_c01071{width:863.250000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:230.400000px;}
.x2_c01071{left:231.900000px;}
.x3_c01071{left:234.150000px;}
.x5_c01071{left:235.200000px;}
.x4_c01071{left:236.250000px;}
.x6_c01071{left:237.300000px;}
.x7_c01071{left:238.950000px;}
.x8_c01071{left:240.000000px;}
.x9_c01071{left:241.650000px;}
.xb_c01071{left:383.401749px;}
.xa_c01071{left:754.200000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls2_c01071{letter-spacing:0.000000pt;}
.ls0_c01071{letter-spacing:10.538667pt;}
.ls1_c01071{letter-spacing:13.568000pt;}
.ws0_c01071{word-spacing:-56.448000pt;}
.ws1_c01071{word-spacing:-20.565333pt;}
.ws2_c01071{word-spacing:0.000000pt;}
._37_c01071{margin-left:-73.130667pt;}
._33_c01071{margin-left:-26.282667pt;}
._39_c01071{margin-left:-24.576000pt;}
._30_c01071{margin-left:-22.954667pt;}
._35_c01071{margin-left:-20.394667pt;}
._2e_c01071{margin-left:-17.493333pt;}
._31_c01071{margin-left:-16.149333pt;}
._22_c01071{margin-left:-14.933333pt;}
._2c_c01071{margin-left:-12.885333pt;}
._23_c01071{margin-left:-11.264000pt;}
._2b_c01071{margin-left:-9.706667pt;}
._14_c01071{margin-left:-8.789333pt;}
._17_c01071{margin-left:-6.912000pt;}
._16_c01071{margin-left:-5.802667pt;}
._15_c01071{margin-left:-4.181333pt;}
._9_c01071{margin-left:-2.645333pt;}
._18_c01071{margin-left:-1.450667pt;}
._7_c01071{width:1.450667pt;}
._5_c01071{width:2.389333pt;}
._6_c01071{width:3.754667pt;}
._1_c01071{width:4.864000pt;}
._2_c01071{width:6.229333pt;}
._3_c01071{width:7.168000pt;}
._0_c01071{width:8.362667pt;}
._24_c01071{width:9.472000pt;}
._d_c01071{width:10.410667pt;}
._2a_c01071{width:11.434667pt;}
._20_c01071{width:12.800000pt;}
._c_c01071{width:14.250667pt;}
._19_c01071{width:15.701333pt;}
._b_c01071{width:17.237333pt;}
._a_c01071{width:18.346667pt;}
._27_c01071{width:19.456000pt;}
._32_c01071{width:21.504000pt;}
._1c_c01071{width:22.613333pt;}
._25_c01071{width:24.832000pt;}
._29_c01071{width:26.197333pt;}
._1e_c01071{width:27.221333pt;}
._4_c01071{width:28.245333pt;}
._12_c01071{width:29.952000pt;}
._28_c01071{width:31.146667pt;}
._21_c01071{width:32.682667pt;}
._8_c01071{width:34.048000pt;}
._3d_c01071{width:34.986667pt;}
._1a_c01071{width:36.352000pt;}
._f_c01071{width:37.888000pt;}
._1d_c01071{width:39.509333pt;}
._36_c01071{width:40.533333pt;}
._1b_c01071{width:42.069333pt;}
._e_c01071{width:43.690667pt;}
._3f_c01071{width:44.800000pt;}
._11_c01071{width:46.336000pt;}
._3e_c01071{width:47.701333pt;}
._38_c01071{width:49.493333pt;}
._1f_c01071{width:51.968000pt;}
._3c_c01071{width:53.333333pt;}
._10_c01071{width:54.954667pt;}
._2f_c01071{width:57.429333pt;}
._2d_c01071{width:59.904000pt;}
._34_c01071{width:61.440000pt;}
._3a_c01071{width:62.890667pt;}
._40_c01071{width:67.242667pt;}
._13_c01071{width:68.266667pt;}
._3b_c01071{width:77.312000pt;}
._26_c01071{width:332.970667pt;}
.fs2_c01071{font-size:42.666667pt;}
.fs1_c01071{font-size:74.666667pt;}
.fs0_c01071{font-size:85.333333pt;}
.y0_c01071{bottom:0.000000pt;}
.y26_c01071{bottom:2.760000pt;}
.y25_c01071{bottom:6.425206pt;}
.y24_c01071{bottom:75.626667pt;}
.y23_c01071{bottom:104.960000pt;}
.y22_c01071{bottom:135.893333pt;}
.y21_c01071{bottom:165.626667pt;}
.y20_c01071{bottom:195.893333pt;}
.y1f_c01071{bottom:225.626667pt;}
.y1e_c01071{bottom:255.893333pt;}
.y1d_c01071{bottom:285.626667pt;}
.y1c_c01071{bottom:316.160000pt;}
.y1b_c01071{bottom:345.626667pt;}
.y1a_c01071{bottom:375.893333pt;}
.y19_c01071{bottom:406.160000pt;}
.y18_c01071{bottom:435.360000pt;}
.y17_c01071{bottom:465.893333pt;}
.y16_c01071{bottom:494.960000pt;}
.y15_c01071{bottom:525.360000pt;}
.y14_c01071{bottom:555.093333pt;}
.y13_c01071{bottom:584.960000pt;}
.y12_c01071{bottom:615.093333pt;}
.y11_c01071{bottom:644.693333pt;}
.y10_c01071{bottom:674.160000pt;}
.yf_c01071{bottom:703.893333pt;}
.ye_c01071{bottom:733.493333pt;}
.yd_c01071{bottom:763.760000pt;}
.yc_c01071{bottom:793.226667pt;}
.yb_c01071{bottom:822.960000pt;}
.ya_c01071{bottom:848.160000pt;}
.y9_c01071{bottom:882.293333pt;}
.y8_c01071{bottom:911.093333pt;}
.y7_c01071{bottom:940.826667pt;}
.y6_c01071{bottom:970.293333pt;}
.y5_c01071{bottom:1000.160000pt;}
.y4_c01071{bottom:1030.160000pt;}
.y3_c01071{bottom:1059.360000pt;}
.y2_c01071{bottom:1088.693333pt;}
.y1_c01071{bottom:1117.760000pt;}
.h3_c01071{height:11.733399pt;}
.h4_c01071{height:38.937500pt;}
.h2_c01071{height:108.041667pt;}
.h0_c01071{height:1229.066667pt;}
.h1_c01071{height:1229.333333pt;}
.w2_c01071{width:93.222667pt;}
.w0_c01071{width:767.266667pt;}
.w1_c01071{width:767.333333pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:204.800000pt;}
.x2_c01071{left:206.133333pt;}
.x3_c01071{left:208.133333pt;}
.x5_c01071{left:209.066667pt;}
.x4_c01071{left:210.000000pt;}
.x6_c01071{left:210.933333pt;}
.x7_c01071{left:212.400000pt;}
.x8_c01071{left:213.333333pt;}
.x9_c01071{left:214.800000pt;}
.xb_c01071{left:340.801554pt;}
.xa_c01071{left:670.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_c01072 {
    display:none;
  }
  .loading-indicator_c01072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01072 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01072 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01072" -> "#page-container .classname_c01072")
 */
.pf_c01072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01072 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01072 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01072 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01072 {overflow:visible;}
  }
}
.c_c01072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01072 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01072:after { /* webkit #35443 */
  content: '';
}
.t_c01072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01072 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01072 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01072 { /* info for Javascript */
  display:none;
}
.l_c01072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_e030dfe60a9e5cd9d6d0185c.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01072;src:url('chunks/assets/font_0288bc9136681b5117f59d41.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01072;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.ls0_c01072{letter-spacing:0.000000px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01072{word-spacing:-23.136000px;}
.ws2_c01072{word-spacing:-20.244000px;}
.ws3_c01072{word-spacing:-18.798000px;}
.ws1_c01072{word-spacing:-0.924000px;}
.ws4_c01072{word-spacing:0.000000px;}
._3a_c01072{margin-left:-77.664000px;}
._2d_c01072{margin-left:-29.472000px;}
._34_c01072{margin-left:-28.116000px;}
._16_c01072{margin-left:-9.792000px;}
._30_c01072{margin-left:-8.640000px;}
._14_c01072{margin-left:-6.624000px;}
._28_c01072{margin-left:-5.280000px;}
._15_c01072{margin-left:-4.032000px;}
._27_c01072{margin-left:-2.964000px;}
._10_c01072{margin-left:-1.920000px;}
._8_c01072{width:2.016000px;}
._7_c01072{width:3.552000px;}
._a_c01072{width:5.280000px;}
._d_c01072{width:6.528000px;}
._3_c01072{width:7.584000px;}
._5_c01072{width:9.120000px;}
._0_c01072{width:10.368000px;}
._1_c01072{width:11.616000px;}
._4_c01072{width:13.632000px;}
._2_c01072{width:14.784000px;}
._6_c01072{width:16.800000px;}
._f_c01072{width:19.008000px;}
._29_c01072{width:20.160000px;}
._19_c01072{width:21.216000px;}
._3c_c01072{width:23.406000px;}
._25_c01072{width:24.552000px;}
._c_c01072{width:26.016000px;}
._e_c01072{width:27.552000px;}
._1f_c01072{width:28.740000px;}
._12_c01072{width:30.528000px;}
._21_c01072{width:32.064000px;}
._1c_c01072{width:33.504000px;}
._9_c01072{width:34.560000px;}
._17_c01072{width:36.192000px;}
._1b_c01072{width:37.248000px;}
._b_c01072{width:38.688000px;}
._2a_c01072{width:39.744000px;}
._20_c01072{width:40.980000px;}
._1e_c01072{width:42.036000px;}
._18_c01072{width:43.488000px;}
._22_c01072{width:44.640000px;}
._13_c01072{width:45.888000px;}
._11_c01072{width:47.424000px;}
._2f_c01072{width:49.440000px;}
._1a_c01072{width:51.264000px;}
._2b_c01072{width:53.280000px;}
._26_c01072{width:55.584000px;}
._37_c01072{width:58.080000px;}
._1d_c01072{width:60.864000px;}
._2e_c01072{width:62.928000px;}
._31_c01072{width:64.992000px;}
._24_c01072{width:68.640000px;}
._32_c01072{width:70.692000px;}
._2c_c01072{width:72.480000px;}
._36_c01072{width:75.744000px;}
._33_c01072{width:78.048000px;}
._35_c01072{width:81.624000px;}
._23_c01072{width:89.952000px;}
._38_c01072{width:106.464000px;}
._39_c01072{width:134.148000px;}
._3b_c01072{width:467.040000px;}
.fc2_c01072{color:transparent;}
.fc1_c01072{color:rgb(128,128,128);}
.fc0_c01072{color:rgb(0,0,0);}
.fs4_c01072{font-size:48.000000px;}
.fs2_c01072{font-size:78.000000px;}
.fs1_c01072{font-size:84.000000px;}
.fs3_c01072{font-size:87.000000px;}
.fs0_c01072{font-size:96.000000px;}
.y0_c01072{bottom:0.000000px;}
.y2c_c01072{bottom:3.105000px;}
.y2b_c01072{bottom:7.228369px;}
.y25_c01072{bottom:114.120000px;}
.y24_c01072{bottom:146.370000px;}
.y23_c01072{bottom:182.820000px;}
.y22_c01072{bottom:217.320000px;}
.y21_c01072{bottom:250.470000px;}
.y20_c01072{bottom:284.820000px;}
.y1f_c01072{bottom:318.270000px;}
.y1e_c01072{bottom:352.320000px;}
.y1d_c01072{bottom:385.770000px;}
.y1c_c01072{bottom:419.520000px;}
.y1b_c01072{bottom:453.570000px;}
.y1a_c01072{bottom:487.020000px;}
.y19_c01072{bottom:520.770000px;}
.y18_c01072{bottom:554.220000px;}
.y17_c01072{bottom:587.820000px;}
.y16_c01072{bottom:621.570000px;}
.y15_c01072{bottom:655.020000px;}
.y14_c01072{bottom:688.470000px;}
.y13_c01072{bottom:722.220000px;}
.y12_c01072{bottom:755.520000px;}
.y11_c01072{bottom:788.670000px;}
.y10_c01072{bottom:821.820000px;}
.yf_c01072{bottom:854.220000px;}
.ye_c01072{bottom:887.670000px;}
.y2a_c01072{bottom:911.520000px;}
.yd_c01072{bottom:920.970000px;}
.y29_c01072{bottom:942.570000px;}
.yc_c01072{bottom:954.120000px;}
.y28_c01072{bottom:971.670000px;}
.yb_c01072{bottom:987.120000px;}
.y27_c01072{bottom:1000.320000px;}
.ya_c01072{bottom:1020.870000px;}
.y26_c01072{bottom:1030.020000px;}
.y9_c01072{bottom:1053.720000px;}
.y8_c01072{bottom:1085.970000px;}
.y7_c01072{bottom:1119.120000px;}
.y6_c01072{bottom:1151.970000px;}
.y5_c01072{bottom:1184.670000px;}
.y4_c01072{bottom:1217.370000px;}
.y3_c01072{bottom:1250.820000px;}
.y2_c01072{bottom:1284.570000px;}
.y1_c01072{bottom:1314.870000px;}
.h6_c01072{height:13.200073px;}
.h7_c01072{height:43.804688px;}
.h3_c01072{height:91.291992px;}
.h4_c01072{height:98.756836px;}
.h5_c01072{height:110.151855px;}
.h2_c01072{height:121.546875px;}
.h0_c01072{height:1383.450000px;}
.h1_c01072{height:1383.750000px;}
.w2_c01072{width:104.875500px;}
.w0_c01072{width:878.025000px;}
.w1_c01072{width:878.250000px;}
.x0_c01072{left:0.000000px;}
.x7_c01072{left:39.600000px;}
.x6_c01072{left:40.800000px;}
.x4_c01072{left:41.850000px;}
.x5_c01072{left:42.900000px;}
.x2_c01072{left:44.100000px;}
.x3_c01072{left:45.150000px;}
.x9_c01072{left:46.200000px;}
.x8_c01072{left:47.700000px;}
.xa_c01072{left:296.400000px;}
.xf_c01072{left:390.826721px;}
.x1_c01072{left:531.000000px;}
.xc_c01072{left:627.150000px;}
.xd_c01072{left:628.800000px;}
.xe_c01072{left:630.000000px;}
.xb_c01072{left:656.400000px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls0_c01072{letter-spacing:0.000000pt;}
.ws0_c01072{word-spacing:-20.565333pt;}
.ws2_c01072{word-spacing:-17.994667pt;}
.ws3_c01072{word-spacing:-16.709333pt;}
.ws1_c01072{word-spacing:-0.821333pt;}
.ws4_c01072{word-spacing:0.000000pt;}
._3a_c01072{margin-left:-69.034667pt;}
._2d_c01072{margin-left:-26.197333pt;}
._34_c01072{margin-left:-24.992000pt;}
._16_c01072{margin-left:-8.704000pt;}
._30_c01072{margin-left:-7.680000pt;}
._14_c01072{margin-left:-5.888000pt;}
._28_c01072{margin-left:-4.693333pt;}
._15_c01072{margin-left:-3.584000pt;}
._27_c01072{margin-left:-2.634667pt;}
._10_c01072{margin-left:-1.706667pt;}
._8_c01072{width:1.792000pt;}
._7_c01072{width:3.157333pt;}
._a_c01072{width:4.693333pt;}
._d_c01072{width:5.802667pt;}
._3_c01072{width:6.741333pt;}
._5_c01072{width:8.106667pt;}
._0_c01072{width:9.216000pt;}
._1_c01072{width:10.325333pt;}
._4_c01072{width:12.117333pt;}
._2_c01072{width:13.141333pt;}
._6_c01072{width:14.933333pt;}
._f_c01072{width:16.896000pt;}
._29_c01072{width:17.920000pt;}
._19_c01072{width:18.858667pt;}
._3c_c01072{width:20.805333pt;}
._25_c01072{width:21.824000pt;}
._c_c01072{width:23.125333pt;}
._e_c01072{width:24.490667pt;}
._1f_c01072{width:25.546667pt;}
._12_c01072{width:27.136000pt;}
._21_c01072{width:28.501333pt;}
._1c_c01072{width:29.781333pt;}
._9_c01072{width:30.720000pt;}
._17_c01072{width:32.170667pt;}
._1b_c01072{width:33.109333pt;}
._b_c01072{width:34.389333pt;}
._2a_c01072{width:35.328000pt;}
._20_c01072{width:36.426667pt;}
._1e_c01072{width:37.365333pt;}
._18_c01072{width:38.656000pt;}
._22_c01072{width:39.680000pt;}
._13_c01072{width:40.789333pt;}
._11_c01072{width:42.154667pt;}
._2f_c01072{width:43.946667pt;}
._1a_c01072{width:45.568000pt;}
._2b_c01072{width:47.360000pt;}
._26_c01072{width:49.408000pt;}
._37_c01072{width:51.626667pt;}
._1d_c01072{width:54.101333pt;}
._2e_c01072{width:55.936000pt;}
._31_c01072{width:57.770667pt;}
._24_c01072{width:61.013333pt;}
._32_c01072{width:62.837333pt;}
._2c_c01072{width:64.426667pt;}
._36_c01072{width:67.328000pt;}
._33_c01072{width:69.376000pt;}
._35_c01072{width:72.554667pt;}
._23_c01072{width:79.957333pt;}
._38_c01072{width:94.634667pt;}
._39_c01072{width:119.242667pt;}
._3b_c01072{width:415.146667pt;}
.fs4_c01072{font-size:42.666667pt;}
.fs2_c01072{font-size:69.333333pt;}
.fs1_c01072{font-size:74.666667pt;}
.fs3_c01072{font-size:77.333333pt;}
.fs0_c01072{font-size:85.333333pt;}
.y0_c01072{bottom:0.000000pt;}
.y2c_c01072{bottom:2.760000pt;}
.y2b_c01072{bottom:6.425217pt;}
.y25_c01072{bottom:101.440000pt;}
.y24_c01072{bottom:130.106667pt;}
.y23_c01072{bottom:162.506667pt;}
.y22_c01072{bottom:193.173333pt;}
.y21_c01072{bottom:222.640000pt;}
.y20_c01072{bottom:253.173333pt;}
.y1f_c01072{bottom:282.906667pt;}
.y1e_c01072{bottom:313.173333pt;}
.y1d_c01072{bottom:342.906667pt;}
.y1c_c01072{bottom:372.906667pt;}
.y1b_c01072{bottom:403.173333pt;}
.y1a_c01072{bottom:432.906667pt;}
.y19_c01072{bottom:462.906667pt;}
.y18_c01072{bottom:492.640000pt;}
.y17_c01072{bottom:522.506667pt;}
.y16_c01072{bottom:552.506667pt;}
.y15_c01072{bottom:582.240000pt;}
.y14_c01072{bottom:611.973333pt;}
.y13_c01072{bottom:641.973333pt;}
.y12_c01072{bottom:671.573333pt;}
.y11_c01072{bottom:701.040000pt;}
.y10_c01072{bottom:730.506667pt;}
.yf_c01072{bottom:759.306667pt;}
.ye_c01072{bottom:789.040000pt;}
.y2a_c01072{bottom:810.240000pt;}
.yd_c01072{bottom:818.640000pt;}
.y29_c01072{bottom:837.840000pt;}
.yc_c01072{bottom:848.106667pt;}
.y28_c01072{bottom:863.706667pt;}
.yb_c01072{bottom:877.440000pt;}
.y27_c01072{bottom:889.173333pt;}
.ya_c01072{bottom:907.440000pt;}
.y26_c01072{bottom:915.573333pt;}
.y9_c01072{bottom:936.640000pt;}
.y8_c01072{bottom:965.306667pt;}
.y7_c01072{bottom:994.773333pt;}
.y6_c01072{bottom:1023.973333pt;}
.y5_c01072{bottom:1053.040000pt;}
.y4_c01072{bottom:1082.106667pt;}
.y3_c01072{bottom:1111.840000pt;}
.y2_c01072{bottom:1141.840000pt;}
.y1_c01072{bottom:1168.773333pt;}
.h6_c01072{height:11.733399pt;}
.h7_c01072{height:38.937500pt;}
.h3_c01072{height:81.148438pt;}
.h4_c01072{height:87.783854pt;}
.h5_c01072{height:97.912760pt;}
.h2_c01072{height:108.041667pt;}
.h0_c01072{height:1229.733333pt;}
.h1_c01072{height:1230.000000pt;}
.w2_c01072{width:93.222667pt;}
.w0_c01072{width:780.466667pt;}
.w1_c01072{width:780.666667pt;}
.x0_c01072{left:0.000000pt;}
.x7_c01072{left:35.200000pt;}
.x6_c01072{left:36.266667pt;}
.x4_c01072{left:37.200000pt;}
.x5_c01072{left:38.133333pt;}
.x2_c01072{left:39.200000pt;}
.x3_c01072{left:40.133333pt;}
.x9_c01072{left:41.066667pt;}
.x8_c01072{left:42.400000pt;}
.xa_c01072{left:263.466667pt;}
.xf_c01072{left:347.401530pt;}
.x1_c01072{left:472.000000pt;}
.xc_c01072{left:557.466667pt;}
.xd_c01072{left:558.933333pt;}
.xe_c01072{left:560.000000pt;}
.xb_c01072{left:583.466667pt;}
}





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

.ir_c01073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_5598f995c45c1f8e5c73b3ce.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01073;src:url('chunks/assets/font_ac8f914bc86ac2f09325a4d9.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01073;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01073{vertical-align:-43.200000px;}
.v0_c01073{vertical-align:0.000000px;}
.ls4_c01073{letter-spacing:0.000000px;}
.ls2_c01073{letter-spacing:64.818000px;}
.ls1_c01073{letter-spacing:65.418000px;}
.ls0_c01073{letter-spacing:230.709000px;}
.ls3_c01073{letter-spacing:722.418000px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:-23.136000px;}
.ws2_c01073{word-spacing:-20.244000px;}
.ws3_c01073{word-spacing:-14.460000px;}
.ws4_c01073{word-spacing:0.000000px;}
.ws1_c01073{word-spacing:0.588000px;}
._3_c01073{margin-left:-48.768000px;}
._5_c01073{margin-left:-41.184000px;}
._2b_c01073{margin-left:-32.124000px;}
._45_c01073{margin-left:-30.816000px;}
._3f_c01073{margin-left:-28.644000px;}
._44_c01073{margin-left:-27.456000px;}
._4c_c01073{margin-left:-24.192000px;}
._31_c01073{margin-left:-21.144000px;}
._33_c01073{margin-left:-18.432000px;}
._32_c01073{margin-left:-15.744000px;}
._37_c01073{margin-left:-13.965000px;}
._20_c01073{margin-left:-12.627000px;}
._6_c01073{margin-left:-10.893000px;}
._35_c01073{margin-left:-9.696000px;}
._1f_c01073{margin-left:-7.488000px;}
._17_c01073{margin-left:-5.856000px;}
._8_c01073{margin-left:-4.512000px;}
._2_c01073{margin-left:-2.592000px;}
._18_c01073{margin-left:-1.476000px;}
._b_c01073{width:1.920000px;}
._1_c01073{width:3.072000px;}
._9_c01073{width:4.128000px;}
._d_c01073{width:5.280000px;}
._a_c01073{width:6.624000px;}
._1c_c01073{width:7.932000px;}
._10_c01073{width:9.120000px;}
._30_c01073{width:10.788000px;}
._12_c01073{width:11.904000px;}
._11_c01073{width:12.960000px;}
._f_c01073{width:14.208000px;}
._28_c01073{width:15.228000px;}
._24_c01073{width:17.148000px;}
._4_c01073{width:18.816000px;}
._1d_c01073{width:20.064000px;}
._16_c01073{width:21.696000px;}
._2f_c01073{width:24.192000px;}
._2d_c01073{width:25.536000px;}
._1b_c01073{width:27.840000px;}
._22_c01073{width:28.860000px;}
._e_c01073{width:30.048000px;}
._23_c01073{width:31.392000px;}
._c_c01073{width:32.928000px;}
._14_c01073{width:34.212000px;}
._15_c01073{width:35.424000px;}
._1a_c01073{width:37.632000px;}
._13_c01073{width:39.396000px;}
._25_c01073{width:41.088000px;}
._26_c01073{width:42.504000px;}
._21_c01073{width:43.776000px;}
._2c_c01073{width:44.928000px;}
._1e_c01073{width:46.080000px;}
._46_c01073{width:47.112000px;}
._27_c01073{width:49.056000px;}
._3d_c01073{width:50.976000px;}
._49_c01073{width:52.056000px;}
._43_c01073{width:53.184000px;}
._2a_c01073{width:56.256000px;}
._47_c01073{width:57.744000px;}
._42_c01073{width:60.288000px;}
._4a_c01073{width:62.868000px;}
._3e_c01073{width:64.836000px;}
._4b_c01073{width:66.528000px;}
._40_c01073{width:70.908000px;}
._29_c01073{width:73.212000px;}
._19_c01073{width:75.420000px;}
._3b_c01073{width:77.088000px;}
._36_c01073{width:79.488000px;}
._48_c01073{width:82.332000px;}
._0_c01073{width:88.440000px;}
._41_c01073{width:160.788000px;}
._3a_c01073{width:174.876000px;}
._2e_c01073{width:185.988000px;}
._3c_c01073{width:260.640000px;}
._39_c01073{width:309.312000px;}
._34_c01073{width:317.715000px;}
._4d_c01073{width:341.952000px;}
._38_c01073{width:379.104000px;}
._7_c01073{width:384.900000px;}
._4e_c01073{width:461.376000px;}
.fc2_c01073{color:transparent;}
.fc1_c01073{color:rgb(128,128,128);}
.fc0_c01073{color:rgb(0,0,0);}
.fs0_c01073{font-size:30.000000px;}
.fs6_c01073{font-size:48.000000px;}
.fs4_c01073{font-size:60.000000px;}
.fs3_c01073{font-size:84.000000px;}
.fs2_c01073{font-size:87.000000px;}
.fs1_c01073{font-size:96.000000px;}
.fs5_c01073{font-size:102.000000px;}
.y0_c01073{bottom:0.000000px;}
.y29_c01073{bottom:3.105000px;}
.y28_c01073{bottom:7.228357px;}
.y27_c01073{bottom:103.230000px;}
.y26_c01073{bottom:134.730000px;}
.y25_c01073{bottom:168.030000px;}
.y24_c01073{bottom:201.930000px;}
.y23_c01073{bottom:236.280000px;}
.y22_c01073{bottom:270.330000px;}
.y21_c01073{bottom:304.080000px;}
.y20_c01073{bottom:337.830000px;}
.y1f_c01073{bottom:371.580000px;}
.y1e_c01073{bottom:405.330000px;}
.y1d_c01073{bottom:439.530000px;}
.y1c_c01073{bottom:473.130000px;}
.y1b_c01073{bottom:505.680000px;}
.y1a_c01073{bottom:541.080000px;}
.y19_c01073{bottom:574.830000px;}
.y18_c01073{bottom:607.830000px;}
.y17_c01073{bottom:641.880000px;}
.y16_c01073{bottom:675.330000px;}
.y15_c01073{bottom:709.380000px;}
.y14_c01073{bottom:742.830000px;}
.y13_c01073{bottom:775.980000px;}
.y12_c01073{bottom:811.980000px;}
.y11_c01073{bottom:842.730000px;}
.y10_c01073{bottom:876.180000px;}
.yf_c01073{bottom:909.930000px;}
.ye_c01073{bottom:942.630000px;}
.y3_c01073{bottom:955.830000px;}
.yd_c01073{bottom:976.380000px;}
.y2_c01073{bottom:999.330000px;}
.yc_c01073{bottom:1009.080000px;}
.y1_c01073{bottom:1014.630000px;}
.yb_c01073{bottom:1042.530000px;}
.ya_c01073{bottom:1075.980000px;}
.y9_c01073{bottom:1108.980000px;}
.y8_c01073{bottom:1142.430000px;}
.y7_c01073{bottom:1175.880000px;}
.y6_c01073{bottom:1209.630000px;}
.y5_c01073{bottom:1241.730000px;}
.y4_c01073{bottom:1274.430000px;}
.h5_c01073{height:13.200074px;}
.h6_c01073{height:43.804688px;}
.h3_c01073{height:110.151855px;}
.h2_c01073{height:121.546875px;}
.h4_c01073{height:129.143555px;}
.h0_c01073{height:1382.700000px;}
.h1_c01073{height:1383.000000px;}
.w2_c01073{width:104.875500px;}
.w0_c01073{width:863.175000px;}
.w1_c01073{width:863.250000px;}
.x0_c01073{left:0.000000px;}
.xc_c01073{left:28.350000px;}
.x3_c01073{left:29.400000px;}
.xb_c01073{left:58.050000px;}
.x2_c01073{left:119.850000px;}
.x7_c01073{left:127.800000px;}
.x1_c01073{left:143.400000px;}
.x9_c01073{left:149.400000px;}
.xa_c01073{left:163.950000px;}
.x6_c01073{left:185.550000px;}
.xe_c01073{left:243.300000px;}
.xd_c01073{left:244.950000px;}
.x5_c01073{left:246.000000px;}
.x4_c01073{left:247.650000px;}
.x8_c01073{left:248.700000px;}
.x10_c01073{left:383.401749px;}
.xf_c01073{left:557.850000px;}
@media print{
.v1_c01073{vertical-align:-38.400000pt;}
.v0_c01073{vertical-align:0.000000pt;}
.ls4_c01073{letter-spacing:0.000000pt;}
.ls2_c01073{letter-spacing:57.616000pt;}
.ls1_c01073{letter-spacing:58.149333pt;}
.ls0_c01073{letter-spacing:205.074667pt;}
.ls3_c01073{letter-spacing:642.149333pt;}
.ws0_c01073{word-spacing:-20.565333pt;}
.ws2_c01073{word-spacing:-17.994667pt;}
.ws3_c01073{word-spacing:-12.853333pt;}
.ws4_c01073{word-spacing:0.000000pt;}
.ws1_c01073{word-spacing:0.522667pt;}
._3_c01073{margin-left:-43.349333pt;}
._5_c01073{margin-left:-36.608000pt;}
._2b_c01073{margin-left:-28.554667pt;}
._45_c01073{margin-left:-27.392000pt;}
._3f_c01073{margin-left:-25.461333pt;}
._44_c01073{margin-left:-24.405333pt;}
._4c_c01073{margin-left:-21.504000pt;}
._31_c01073{margin-left:-18.794667pt;}
._33_c01073{margin-left:-16.384000pt;}
._32_c01073{margin-left:-13.994667pt;}
._37_c01073{margin-left:-12.413333pt;}
._20_c01073{margin-left:-11.224000pt;}
._6_c01073{margin-left:-9.682667pt;}
._35_c01073{margin-left:-8.618667pt;}
._1f_c01073{margin-left:-6.656000pt;}
._17_c01073{margin-left:-5.205333pt;}
._8_c01073{margin-left:-4.010667pt;}
._2_c01073{margin-left:-2.304000pt;}
._18_c01073{margin-left:-1.312000pt;}
._b_c01073{width:1.706667pt;}
._1_c01073{width:2.730667pt;}
._9_c01073{width:3.669333pt;}
._d_c01073{width:4.693333pt;}
._a_c01073{width:5.888000pt;}
._1c_c01073{width:7.050667pt;}
._10_c01073{width:8.106667pt;}
._30_c01073{width:9.589333pt;}
._12_c01073{width:10.581333pt;}
._11_c01073{width:11.520000pt;}
._f_c01073{width:12.629333pt;}
._28_c01073{width:13.536000pt;}
._24_c01073{width:15.242667pt;}
._4_c01073{width:16.725333pt;}
._1d_c01073{width:17.834667pt;}
._16_c01073{width:19.285333pt;}
._2f_c01073{width:21.504000pt;}
._2d_c01073{width:22.698667pt;}
._1b_c01073{width:24.746667pt;}
._22_c01073{width:25.653333pt;}
._e_c01073{width:26.709333pt;}
._23_c01073{width:27.904000pt;}
._c_c01073{width:29.269333pt;}
._14_c01073{width:30.410667pt;}
._15_c01073{width:31.488000pt;}
._1a_c01073{width:33.450667pt;}
._13_c01073{width:35.018667pt;}
._25_c01073{width:36.522667pt;}
._26_c01073{width:37.781333pt;}
._21_c01073{width:38.912000pt;}
._2c_c01073{width:39.936000pt;}
._1e_c01073{width:40.960000pt;}
._46_c01073{width:41.877333pt;}
._27_c01073{width:43.605333pt;}
._3d_c01073{width:45.312000pt;}
._49_c01073{width:46.272000pt;}
._43_c01073{width:47.274667pt;}
._2a_c01073{width:50.005333pt;}
._47_c01073{width:51.328000pt;}
._42_c01073{width:53.589333pt;}
._4a_c01073{width:55.882667pt;}
._3e_c01073{width:57.632000pt;}
._4b_c01073{width:59.136000pt;}
._40_c01073{width:63.029333pt;}
._29_c01073{width:65.077333pt;}
._19_c01073{width:67.040000pt;}
._3b_c01073{width:68.522667pt;}
._36_c01073{width:70.656000pt;}
._48_c01073{width:73.184000pt;}
._0_c01073{width:78.613333pt;}
._41_c01073{width:142.922667pt;}
._3a_c01073{width:155.445333pt;}
._2e_c01073{width:165.322667pt;}
._3c_c01073{width:231.680000pt;}
._39_c01073{width:274.944000pt;}
._34_c01073{width:282.413333pt;}
._4d_c01073{width:303.957333pt;}
._38_c01073{width:336.981333pt;}
._7_c01073{width:342.133333pt;}
._4e_c01073{width:410.112000pt;}
.fs0_c01073{font-size:26.666667pt;}
.fs6_c01073{font-size:42.666667pt;}
.fs4_c01073{font-size:53.333333pt;}
.fs3_c01073{font-size:74.666667pt;}
.fs2_c01073{font-size:77.333333pt;}
.fs1_c01073{font-size:85.333333pt;}
.fs5_c01073{font-size:90.666667pt;}
.y0_c01073{bottom:0.000000pt;}
.y29_c01073{bottom:2.760000pt;}
.y28_c01073{bottom:6.425206pt;}
.y27_c01073{bottom:91.760000pt;}
.y26_c01073{bottom:119.760000pt;}
.y25_c01073{bottom:149.360000pt;}
.y24_c01073{bottom:179.493333pt;}
.y23_c01073{bottom:210.026667pt;}
.y22_c01073{bottom:240.293333pt;}
.y21_c01073{bottom:270.293333pt;}
.y20_c01073{bottom:300.293333pt;}
.y1f_c01073{bottom:330.293333pt;}
.y1e_c01073{bottom:360.293333pt;}
.y1d_c01073{bottom:390.693333pt;}
.y1c_c01073{bottom:420.560000pt;}
.y1b_c01073{bottom:449.493333pt;}
.y1a_c01073{bottom:480.960000pt;}
.y19_c01073{bottom:510.960000pt;}
.y18_c01073{bottom:540.293333pt;}
.y17_c01073{bottom:570.560000pt;}
.y16_c01073{bottom:600.293333pt;}
.y15_c01073{bottom:630.560000pt;}
.y14_c01073{bottom:660.293333pt;}
.y13_c01073{bottom:689.760000pt;}
.y12_c01073{bottom:721.760000pt;}
.y11_c01073{bottom:749.093333pt;}
.y10_c01073{bottom:778.826667pt;}
.yf_c01073{bottom:808.826667pt;}
.ye_c01073{bottom:837.893333pt;}
.y3_c01073{bottom:849.626667pt;}
.yd_c01073{bottom:867.893333pt;}
.y2_c01073{bottom:888.293333pt;}
.yc_c01073{bottom:896.960000pt;}
.y1_c01073{bottom:901.893333pt;}
.yb_c01073{bottom:926.693333pt;}
.ya_c01073{bottom:956.426667pt;}
.y9_c01073{bottom:985.760000pt;}
.y8_c01073{bottom:1015.493333pt;}
.y7_c01073{bottom:1045.226667pt;}
.y6_c01073{bottom:1075.226667pt;}
.y5_c01073{bottom:1103.760000pt;}
.y4_c01073{bottom:1132.826667pt;}
.h5_c01073{height:11.733399pt;}
.h6_c01073{height:38.937500pt;}
.h3_c01073{height:97.912760pt;}
.h2_c01073{height:108.041667pt;}
.h4_c01073{height:114.794271pt;}
.h0_c01073{height:1229.066667pt;}
.h1_c01073{height:1229.333333pt;}
.w2_c01073{width:93.222667pt;}
.w0_c01073{width:767.266667pt;}
.w1_c01073{width:767.333333pt;}
.x0_c01073{left:0.000000pt;}
.xc_c01073{left:25.200000pt;}
.x3_c01073{left:26.133333pt;}
.xb_c01073{left:51.600000pt;}
.x2_c01073{left:106.533333pt;}
.x7_c01073{left:113.600000pt;}
.x1_c01073{left:127.466667pt;}
.x9_c01073{left:132.800000pt;}
.xa_c01073{left:145.733333pt;}
.x6_c01073{left:164.933333pt;}
.xe_c01073{left:216.266667pt;}
.xd_c01073{left:217.733333pt;}
.x5_c01073{left:218.666667pt;}
.x4_c01073{left:220.133333pt;}
.x8_c01073{left:221.066667pt;}
.x10_c01073{left:340.801554pt;}
.xf_c01073{left:495.866667pt;}
}





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

.ir_c01074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_8b7183fd36ba40c957b3379f.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01074;src:url('chunks/assets/font_06debf67930b424a5d63b53b.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01074;src:url('chunks/assets/font_ded70bba9ce65b381b2d7494.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01074;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01074{font-family:ff4_c01074;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.ls1_c01074{letter-spacing:0.000000px;}
.ls0_c01074{letter-spacing:6.720000px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01074{word-spacing:-51.000000px;}
.ws0_c01074{word-spacing:-23.136000px;}
.ws2_c01074{word-spacing:0.000000px;}
._36_c01074{margin-left:-47.520000px;}
._2b_c01074{margin-left:-32.736000px;}
._2f_c01074{margin-left:-26.496000px;}
._f_c01074{margin-left:-17.376000px;}
._11_c01074{margin-left:-13.920000px;}
._2a_c01074{margin-left:-12.576000px;}
._29_c01074{margin-left:-10.656000px;}
._22_c01074{margin-left:-8.640000px;}
._10_c01074{margin-left:-7.296000px;}
._28_c01074{margin-left:-5.472000px;}
._d_c01074{margin-left:-4.224000px;}
._b_c01074{margin-left:-2.784000px;}
._19_c01074{margin-left:-1.632000px;}
._1e_c01074{width:1.248000px;}
._2_c01074{width:2.304000px;}
._1_c01074{width:3.744000px;}
._0_c01074{width:4.896000px;}
._15_c01074{width:6.144000px;}
._16_c01074{width:7.488000px;}
._14_c01074{width:8.544000px;}
._e_c01074{width:10.464000px;}
._2d_c01074{width:11.808000px;}
._17_c01074{width:12.960000px;}
._c_c01074{width:14.688000px;}
._a_c01074{width:16.320000px;}
._31_c01074{width:17.760000px;}
._6_c01074{width:19.584000px;}
._18_c01074{width:20.928000px;}
._38_c01074{width:21.984000px;}
._33_c01074{width:24.672000px;}
._5_c01074{width:26.112000px;}
._1a_c01074{width:28.032000px;}
._1b_c01074{width:29.088000px;}
._1c_c01074{width:30.624000px;}
._4_c01074{width:32.448000px;}
._35_c01074{width:34.368000px;}
._1d_c01074{width:35.904000px;}
._39_c01074{width:37.248000px;}
._26_c01074{width:38.304000px;}
._3_c01074{width:39.360000px;}
._32_c01074{width:41.088000px;}
._9_c01074{width:42.816000px;}
._8_c01074{width:44.256000px;}
._27_c01074{width:45.840000px;}
._12_c01074{width:47.040000px;}
._13_c01074{width:49.536000px;}
._2e_c01074{width:50.688000px;}
._20_c01074{width:51.840000px;}
._34_c01074{width:53.568000px;}
._21_c01074{width:54.720000px;}
._1f_c01074{width:55.848000px;}
._2c_c01074{width:57.696000px;}
._3b_c01074{width:58.752000px;}
._23_c01074{width:60.480000px;}
._7_c01074{width:62.784000px;}
._3a_c01074{width:69.216000px;}
._37_c01074{width:71.064000px;}
._24_c01074{width:73.824000px;}
._25_c01074{width:84.864000px;}
._30_c01074{width:146.976000px;}
._3c_c01074{width:1908.768000px;}
.fc2_c01074{color:transparent;}
.fc1_c01074{color:rgb(128,128,128);}
.fc0_c01074{color:rgb(0,0,0);}
.fs3_c01074{font-size:48.000000px;}
.fs1_c01074{font-size:84.000000px;}
.fs0_c01074{font-size:96.000000px;}
.fs2_c01074{font-size:102.000000px;}
.y0_c01074{bottom:0.000000px;}
.y26_c01074{bottom:3.105000px;}
.y25_c01074{bottom:7.228371px;}
.y24_c01074{bottom:92.565000px;}
.y23_c01074{bottom:126.015000px;}
.y22_c01074{bottom:161.415000px;}
.y21_c01074{bottom:195.765000px;}
.y20_c01074{bottom:229.515000px;}
.y1f_c01074{bottom:264.015000px;}
.y1e_c01074{bottom:297.765000px;}
.y1d_c01074{bottom:331.815000px;}
.y1c_c01074{bottom:365.265000px;}
.y1b_c01074{bottom:399.015000px;}
.y1a_c01074{bottom:432.765000px;}
.y19_c01074{bottom:466.215000px;}
.y18_c01074{bottom:499.815000px;}
.y17_c01074{bottom:533.265000px;}
.y16_c01074{bottom:567.015000px;}
.y15_c01074{bottom:600.165000px;}
.y14_c01074{bottom:634.215000px;}
.y13_c01074{bottom:667.365000px;}
.y12_c01074{bottom:700.965000px;}
.y11_c01074{bottom:734.115000px;}
.y10_c01074{bottom:767.565000px;}
.yf_c01074{bottom:800.565000px;}
.ye_c01074{bottom:832.965000px;}
.yd_c01074{bottom:865.815000px;}
.yc_c01074{bottom:899.865000px;}
.yb_c01074{bottom:932.865000px;}
.ya_c01074{bottom:965.265000px;}
.y9_c01074{bottom:999.465000px;}
.y8_c01074{bottom:1032.765000px;}
.y7_c01074{bottom:1065.165000px;}
.y6_c01074{bottom:1098.015000px;}
.y5_c01074{bottom:1130.715000px;}
.y4_c01074{bottom:1163.415000px;}
.y3_c01074{bottom:1196.865000px;}
.y2_c01074{bottom:1229.865000px;}
.y1_c01074{bottom:1263.315000px;}
.h3_c01074{height:13.200074px;}
.h4_c01074{height:43.804688px;}
.h2_c01074{height:121.546875px;}
.h0_c01074{height:1360.275000px;}
.h1_c01074{height:1360.500000px;}
.w2_c01074{width:104.875500px;}
.w1_c01074{width:863.250000px;}
.w0_c01074{width:863.475000px;}
.x0_c01074{left:0.000000px;}
.x8_c01074{left:55.350000px;}
.x7_c01074{left:56.400000px;}
.x5_c01074{left:58.050000px;}
.x6_c01074{left:59.100000px;}
.x4_c01074{left:60.750000px;}
.x2_c01074{left:62.400000px;}
.x3_c01074{left:63.450000px;}
.x1_c01074{left:66.150000px;}
.x9_c01074{left:121.200000px;}
.xa_c01074{left:383.551758px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls1_c01074{letter-spacing:0.000000pt;}
.ls0_c01074{letter-spacing:5.973333pt;}
.ws1_c01074{word-spacing:-45.333333pt;}
.ws0_c01074{word-spacing:-20.565333pt;}
.ws2_c01074{word-spacing:0.000000pt;}
._36_c01074{margin-left:-42.240000pt;}
._2b_c01074{margin-left:-29.098667pt;}
._2f_c01074{margin-left:-23.552000pt;}
._f_c01074{margin-left:-15.445333pt;}
._11_c01074{margin-left:-12.373333pt;}
._2a_c01074{margin-left:-11.178667pt;}
._29_c01074{margin-left:-9.472000pt;}
._22_c01074{margin-left:-7.680000pt;}
._10_c01074{margin-left:-6.485333pt;}
._28_c01074{margin-left:-4.864000pt;}
._d_c01074{margin-left:-3.754667pt;}
._b_c01074{margin-left:-2.474667pt;}
._19_c01074{margin-left:-1.450667pt;}
._1e_c01074{width:1.109333pt;}
._2_c01074{width:2.048000pt;}
._1_c01074{width:3.328000pt;}
._0_c01074{width:4.352000pt;}
._15_c01074{width:5.461333pt;}
._16_c01074{width:6.656000pt;}
._14_c01074{width:7.594667pt;}
._e_c01074{width:9.301333pt;}
._2d_c01074{width:10.496000pt;}
._17_c01074{width:11.520000pt;}
._c_c01074{width:13.056000pt;}
._a_c01074{width:14.506667pt;}
._31_c01074{width:15.786667pt;}
._6_c01074{width:17.408000pt;}
._18_c01074{width:18.602667pt;}
._38_c01074{width:19.541333pt;}
._33_c01074{width:21.930667pt;}
._5_c01074{width:23.210667pt;}
._1a_c01074{width:24.917333pt;}
._1b_c01074{width:25.856000pt;}
._1c_c01074{width:27.221333pt;}
._4_c01074{width:28.842667pt;}
._35_c01074{width:30.549333pt;}
._1d_c01074{width:31.914667pt;}
._39_c01074{width:33.109333pt;}
._26_c01074{width:34.048000pt;}
._3_c01074{width:34.986667pt;}
._32_c01074{width:36.522667pt;}
._9_c01074{width:38.058667pt;}
._8_c01074{width:39.338667pt;}
._27_c01074{width:40.746667pt;}
._12_c01074{width:41.813333pt;}
._13_c01074{width:44.032000pt;}
._2e_c01074{width:45.056000pt;}
._20_c01074{width:46.080000pt;}
._34_c01074{width:47.616000pt;}
._21_c01074{width:48.640000pt;}
._1f_c01074{width:49.642667pt;}
._2c_c01074{width:51.285333pt;}
._3b_c01074{width:52.224000pt;}
._23_c01074{width:53.760000pt;}
._7_c01074{width:55.808000pt;}
._3a_c01074{width:61.525333pt;}
._37_c01074{width:63.168000pt;}
._24_c01074{width:65.621333pt;}
._25_c01074{width:75.434667pt;}
._30_c01074{width:130.645333pt;}
._3c_c01074{width:1696.682667pt;}
.fs3_c01074{font-size:42.666667pt;}
.fs1_c01074{font-size:74.666667pt;}
.fs0_c01074{font-size:85.333333pt;}
.fs2_c01074{font-size:90.666667pt;}
.y0_c01074{bottom:0.000000pt;}
.y26_c01074{bottom:2.760000pt;}
.y25_c01074{bottom:6.425219pt;}
.y24_c01074{bottom:82.280000pt;}
.y23_c01074{bottom:112.013333pt;}
.y22_c01074{bottom:143.480000pt;}
.y21_c01074{bottom:174.013333pt;}
.y20_c01074{bottom:204.013333pt;}
.y1f_c01074{bottom:234.680000pt;}
.y1e_c01074{bottom:264.680000pt;}
.y1d_c01074{bottom:294.946667pt;}
.y1c_c01074{bottom:324.680000pt;}
.y1b_c01074{bottom:354.680000pt;}
.y1a_c01074{bottom:384.680000pt;}
.y19_c01074{bottom:414.413333pt;}
.y18_c01074{bottom:444.280000pt;}
.y17_c01074{bottom:474.013333pt;}
.y16_c01074{bottom:504.013333pt;}
.y15_c01074{bottom:533.480000pt;}
.y14_c01074{bottom:563.746667pt;}
.y13_c01074{bottom:593.213333pt;}
.y12_c01074{bottom:623.080000pt;}
.y11_c01074{bottom:652.546667pt;}
.y10_c01074{bottom:682.280000pt;}
.yf_c01074{bottom:711.613333pt;}
.ye_c01074{bottom:740.413333pt;}
.yd_c01074{bottom:769.613333pt;}
.yc_c01074{bottom:799.880000pt;}
.yb_c01074{bottom:829.213333pt;}
.ya_c01074{bottom:858.013333pt;}
.y9_c01074{bottom:888.413333pt;}
.y8_c01074{bottom:918.013333pt;}
.y7_c01074{bottom:946.813333pt;}
.y6_c01074{bottom:976.013333pt;}
.y5_c01074{bottom:1005.080000pt;}
.y4_c01074{bottom:1034.146667pt;}
.y3_c01074{bottom:1063.880000pt;}
.y2_c01074{bottom:1093.213333pt;}
.y1_c01074{bottom:1122.946667pt;}
.h3_c01074{height:11.733399pt;}
.h4_c01074{height:38.937500pt;}
.h2_c01074{height:108.041667pt;}
.h0_c01074{height:1209.133333pt;}
.h1_c01074{height:1209.333333pt;}
.w2_c01074{width:93.222667pt;}
.w1_c01074{width:767.333333pt;}
.w0_c01074{width:767.533333pt;}
.x0_c01074{left:0.000000pt;}
.x8_c01074{left:49.200000pt;}
.x7_c01074{left:50.133333pt;}
.x5_c01074{left:51.600000pt;}
.x6_c01074{left:52.533333pt;}
.x4_c01074{left:54.000000pt;}
.x2_c01074{left:55.466667pt;}
.x3_c01074{left:56.400000pt;}
.x1_c01074{left:58.800000pt;}
.x9_c01074{left:107.733333pt;}
.xa_c01074{left:340.934896pt;}
}





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

.ir_c01075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_dd97ebb02f17a54ab78c3d5d.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;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:ff2_c01075;src:url('chunks/assets/font_0d4ea09dc011d1aee8ef9709.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01075;src:url('chunks/assets/font_02060c2553c22ece56940234.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01075;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01075{font-family:ff4_c01075;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls1_c01075{letter-spacing:0.000000px;}
.ls0_c01075{letter-spacing:15.600000px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01075{word-spacing:-63.504000px;}
.ws1_c01075{word-spacing:-51.000000px;}
.ws2_c01075{word-spacing:-23.136000px;}
.ws3_c01075{word-spacing:0.000000px;}
._33_c01075{margin-left:-28.512000px;}
._30_c01075{margin-left:-18.912000px;}
._27_c01075{margin-left:-16.416000px;}
._2e_c01075{margin-left:-14.592000px;}
._2d_c01075{margin-left:-13.296000px;}
._38_c01075{margin-left:-12.240000px;}
._2f_c01075{margin-left:-10.944000px;}
._2a_c01075{margin-left:-9.408000px;}
._7_c01075{margin-left:-8.352000px;}
._2b_c01075{margin-left:-7.296000px;}
._3a_c01075{margin-left:-5.952000px;}
._15_c01075{margin-left:-4.320000px;}
._d_c01075{margin-left:-2.496000px;}
._22_c01075{margin-left:-1.152000px;}
._0_c01075{width:1.344000px;}
._a_c01075{width:2.400000px;}
._5_c01075{width:4.032000px;}
._9_c01075{width:5.568000px;}
._4_c01075{width:6.912000px;}
._3_c01075{width:8.256000px;}
._23_c01075{width:9.264000px;}
._2_c01075{width:10.656000px;}
._19_c01075{width:11.808000px;}
._13_c01075{width:12.912000px;}
._c_c01075{width:14.784000px;}
._11_c01075{width:16.992000px;}
._18_c01075{width:18.912000px;}
._12_c01075{width:21.120000px;}
._37_c01075{width:22.128000px;}
._1_c01075{width:24.192000px;}
._1a_c01075{width:26.112000px;}
._f_c01075{width:27.936000px;}
._e_c01075{width:29.664000px;}
._1b_c01075{width:31.104000px;}
._10_c01075{width:32.160000px;}
._8_c01075{width:34.176000px;}
._6_c01075{width:36.288000px;}
._1e_c01075{width:38.208000px;}
._24_c01075{width:39.504000px;}
._b_c01075{width:41.184000px;}
._25_c01075{width:42.816000px;}
._1c_c01075{width:43.872000px;}
._16_c01075{width:45.072000px;}
._17_c01075{width:47.136000px;}
._1d_c01075{width:48.672000px;}
._1f_c01075{width:50.112000px;}
._28_c01075{width:51.264000px;}
._35_c01075{width:52.416000px;}
._29_c01075{width:53.952000px;}
._31_c01075{width:55.392000px;}
._20_c01075{width:56.640000px;}
._14_c01075{width:58.656000px;}
._2c_c01075{width:61.008000px;}
._3e_c01075{width:62.688000px;}
._21_c01075{width:63.744000px;}
._36_c01075{width:67.056000px;}
._32_c01075{width:69.168000px;}
._26_c01075{width:79.392000px;}
._39_c01075{width:97.488000px;}
._3c_c01075{width:136.800000px;}
._3d_c01075{width:174.768000px;}
._34_c01075{width:319.104000px;}
._3b_c01075{width:417.792000px;}
.fc2_c01075{color:transparent;}
.fc1_c01075{color:rgb(128,128,128);}
.fc0_c01075{color:rgb(0,0,0);}
.fs3_c01075{font-size:48.000000px;}
.fs2_c01075{font-size:84.000000px;}
.fs1_c01075{font-size:96.000000px;}
.fs0_c01075{font-size:102.000000px;}
.y0_c01075{bottom:0.000000px;}
.y26_c01075{bottom:3.105000px;}
.y25_c01075{bottom:7.228357px;}
.y24_c01075{bottom:105.630000px;}
.y23_c01075{bottom:135.780000px;}
.y22_c01075{bottom:170.730000px;}
.y21_c01075{bottom:203.280000px;}
.y20_c01075{bottom:237.330000px;}
.y1f_c01075{bottom:271.380000px;}
.y1e_c01075{bottom:304.830000px;}
.y1d_c01075{bottom:338.130000px;}
.y1c_c01075{bottom:374.580000px;}
.y1b_c01075{bottom:408.480000px;}
.y1a_c01075{bottom:442.230000px;}
.y19_c01075{bottom:475.980000px;}
.y18_c01075{bottom:509.730000px;}
.y17_c01075{bottom:543.480000px;}
.y16_c01075{bottom:577.230000px;}
.y15_c01075{bottom:610.530000px;}
.y14_c01075{bottom:644.580000px;}
.y13_c01075{bottom:677.730000px;}
.y12_c01075{bottom:710.880000px;}
.y11_c01075{bottom:745.080000px;}
.y10_c01075{bottom:778.230000px;}
.yf_c01075{bottom:811.380000px;}
.ye_c01075{bottom:844.530000px;}
.yd_c01075{bottom:878.280000px;}
.yc_c01075{bottom:911.880000px;}
.yb_c01075{bottom:944.730000px;}
.ya_c01075{bottom:978.480000px;}
.y9_c01075{bottom:1011.180000px;}
.y8_c01075{bottom:1044.330000px;}
.y7_c01075{bottom:1077.930000px;}
.y6_c01075{bottom:1110.930000px;}
.y5_c01075{bottom:1144.230000px;}
.y4_c01075{bottom:1177.530000px;}
.y3_c01075{bottom:1210.680000px;}
.y2_c01075{bottom:1243.080000px;}
.y1_c01075{bottom:1275.480000px;}
.h3_c01075{height:13.200074px;}
.h4_c01075{height:43.804688px;}
.h2_c01075{height:121.546875px;}
.h0_c01075{height:1382.700000px;}
.h1_c01075{height:1383.000000px;}
.w2_c01075{width:104.875500px;}
.w0_c01075{width:863.175000px;}
.w1_c01075{width:863.250000px;}
.x0_c01075{left:0.000000px;}
.x8_c01075{left:25.650000px;}
.x7_c01075{left:61.200000px;}
.x5_c01075{left:158.400000px;}
.x4_c01075{left:246.000000px;}
.x3_c01075{left:247.050000px;}
.x1_c01075{left:248.700000px;}
.x6_c01075{left:249.750000px;}
.x2_c01075{left:251.400000px;}
.x9_c01075{left:252.450000px;}
.xb_c01075{left:383.401749px;}
.xa_c01075{left:790.200000px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls1_c01075{letter-spacing:0.000000pt;}
.ls0_c01075{letter-spacing:13.866667pt;}
.ws0_c01075{word-spacing:-56.448000pt;}
.ws1_c01075{word-spacing:-45.333333pt;}
.ws2_c01075{word-spacing:-20.565333pt;}
.ws3_c01075{word-spacing:0.000000pt;}
._33_c01075{margin-left:-25.344000pt;}
._30_c01075{margin-left:-16.810667pt;}
._27_c01075{margin-left:-14.592000pt;}
._2e_c01075{margin-left:-12.970667pt;}
._2d_c01075{margin-left:-11.818667pt;}
._38_c01075{margin-left:-10.880000pt;}
._2f_c01075{margin-left:-9.728000pt;}
._2a_c01075{margin-left:-8.362667pt;}
._7_c01075{margin-left:-7.424000pt;}
._2b_c01075{margin-left:-6.485333pt;}
._3a_c01075{margin-left:-5.290667pt;}
._15_c01075{margin-left:-3.840000pt;}
._d_c01075{margin-left:-2.218667pt;}
._22_c01075{margin-left:-1.024000pt;}
._0_c01075{width:1.194667pt;}
._a_c01075{width:2.133333pt;}
._5_c01075{width:3.584000pt;}
._9_c01075{width:4.949333pt;}
._4_c01075{width:6.144000pt;}
._3_c01075{width:7.338667pt;}
._23_c01075{width:8.234667pt;}
._2_c01075{width:9.472000pt;}
._19_c01075{width:10.496000pt;}
._13_c01075{width:11.477333pt;}
._c_c01075{width:13.141333pt;}
._11_c01075{width:15.104000pt;}
._18_c01075{width:16.810667pt;}
._12_c01075{width:18.773333pt;}
._37_c01075{width:19.669333pt;}
._1_c01075{width:21.504000pt;}
._1a_c01075{width:23.210667pt;}
._f_c01075{width:24.832000pt;}
._e_c01075{width:26.368000pt;}
._1b_c01075{width:27.648000pt;}
._10_c01075{width:28.586667pt;}
._8_c01075{width:30.378667pt;}
._6_c01075{width:32.256000pt;}
._1e_c01075{width:33.962667pt;}
._24_c01075{width:35.114667pt;}
._b_c01075{width:36.608000pt;}
._25_c01075{width:38.058667pt;}
._1c_c01075{width:38.997333pt;}
._16_c01075{width:40.064000pt;}
._17_c01075{width:41.898667pt;}
._1d_c01075{width:43.264000pt;}
._1f_c01075{width:44.544000pt;}
._28_c01075{width:45.568000pt;}
._35_c01075{width:46.592000pt;}
._29_c01075{width:47.957333pt;}
._31_c01075{width:49.237333pt;}
._20_c01075{width:50.346667pt;}
._14_c01075{width:52.138667pt;}
._2c_c01075{width:54.229333pt;}
._3e_c01075{width:55.722667pt;}
._21_c01075{width:56.661333pt;}
._36_c01075{width:59.605333pt;}
._32_c01075{width:61.482667pt;}
._26_c01075{width:70.570667pt;}
._39_c01075{width:86.656000pt;}
._3c_c01075{width:121.600000pt;}
._3d_c01075{width:155.349333pt;}
._34_c01075{width:283.648000pt;}
._3b_c01075{width:371.370667pt;}
.fs3_c01075{font-size:42.666667pt;}
.fs2_c01075{font-size:74.666667pt;}
.fs1_c01075{font-size:85.333333pt;}
.fs0_c01075{font-size:90.666667pt;}
.y0_c01075{bottom:0.000000pt;}
.y26_c01075{bottom:2.760000pt;}
.y25_c01075{bottom:6.425206pt;}
.y24_c01075{bottom:93.893333pt;}
.y23_c01075{bottom:120.693333pt;}
.y22_c01075{bottom:151.760000pt;}
.y21_c01075{bottom:180.693333pt;}
.y20_c01075{bottom:210.960000pt;}
.y1f_c01075{bottom:241.226667pt;}
.y1e_c01075{bottom:270.960000pt;}
.y1d_c01075{bottom:300.560000pt;}
.y1c_c01075{bottom:332.960000pt;}
.y1b_c01075{bottom:363.093333pt;}
.y1a_c01075{bottom:393.093333pt;}
.y19_c01075{bottom:423.093333pt;}
.y18_c01075{bottom:453.093333pt;}
.y17_c01075{bottom:483.093333pt;}
.y16_c01075{bottom:513.093333pt;}
.y15_c01075{bottom:542.693333pt;}
.y14_c01075{bottom:572.960000pt;}
.y13_c01075{bottom:602.426667pt;}
.y12_c01075{bottom:631.893333pt;}
.y11_c01075{bottom:662.293333pt;}
.y10_c01075{bottom:691.760000pt;}
.yf_c01075{bottom:721.226667pt;}
.ye_c01075{bottom:750.693333pt;}
.yd_c01075{bottom:780.693333pt;}
.yc_c01075{bottom:810.560000pt;}
.yb_c01075{bottom:839.760000pt;}
.ya_c01075{bottom:869.760000pt;}
.y9_c01075{bottom:898.826667pt;}
.y8_c01075{bottom:928.293333pt;}
.y7_c01075{bottom:958.160000pt;}
.y6_c01075{bottom:987.493333pt;}
.y5_c01075{bottom:1017.093333pt;}
.y4_c01075{bottom:1046.693333pt;}
.y3_c01075{bottom:1076.160000pt;}
.y2_c01075{bottom:1104.960000pt;}
.y1_c01075{bottom:1133.760000pt;}
.h3_c01075{height:11.733399pt;}
.h4_c01075{height:38.937500pt;}
.h2_c01075{height:108.041667pt;}
.h0_c01075{height:1229.066667pt;}
.h1_c01075{height:1229.333333pt;}
.w2_c01075{width:93.222667pt;}
.w0_c01075{width:767.266667pt;}
.w1_c01075{width:767.333333pt;}
.x0_c01075{left:0.000000pt;}
.x8_c01075{left:22.800000pt;}
.x7_c01075{left:54.400000pt;}
.x5_c01075{left:140.800000pt;}
.x4_c01075{left:218.666667pt;}
.x3_c01075{left:219.600000pt;}
.x1_c01075{left:221.066667pt;}
.x6_c01075{left:222.000000pt;}
.x2_c01075{left:223.466667pt;}
.x9_c01075{left:224.400000pt;}
.xb_c01075{left:340.801554pt;}
.xa_c01075{left:702.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_c01076 {
    display:none;
  }
  .loading-indicator_c01076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01076 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01076 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01076" -> "#page-container .classname_c01076")
 */
.pf_c01076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01076 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01076 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01076 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01076 {overflow:visible;}
  }
}
.c_c01076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01076 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01076:after { /* webkit #35443 */
  content: '';
}
.t_c01076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01076 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01076 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01076 { /* info for Javascript */
  display:none;
}
.l_c01076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_2c445d645744662904425755.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01076;src:url('chunks/assets/font_dd00b957468c93300122317f.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01076;src:url('chunks/assets/font_62b474fc1632eb77499f410f.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01076;src:url('chunks/assets/font_1a9d11af74546de4eeee8a66.woff2')format("woff");}.ff4_c01076{font-family:ff4_c01076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01076;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01076{font-family:ff5_c01076;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.ls3_c01076{letter-spacing:0.000000px;}
.ls0_c01076{letter-spacing:1.920000px;}
.ls1_c01076{letter-spacing:9.120000px;}
.ls2_c01076{letter-spacing:11.892000px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:-63.504000px;}
.ws3_c01076{word-spacing:-44.100000px;}
.ws1_c01076{word-spacing:-42.924000px;}
.ws2_c01076{word-spacing:-23.136000px;}
.ws4_c01076{word-spacing:-0.096000px;}
.ws5_c01076{word-spacing:0.000000px;}
._3f_c01076{margin-left:-32.736000px;}
._39_c01076{margin-left:-30.144000px;}
._3c_c01076{margin-left:-28.416000px;}
._42_c01076{margin-left:-18.888000px;}
._30_c01076{margin-left:-14.688000px;}
._5_c01076{margin-left:-11.712000px;}
._36_c01076{margin-left:-9.792000px;}
._0_c01076{margin-left:-6.720000px;}
._2b_c01076{margin-left:-5.184000px;}
._1_c01076{margin-left:-3.936000px;}
._29_c01076{margin-left:-2.688000px;}
._11_c01076{margin-left:-1.440000px;}
._c_c01076{width:1.536000px;}
._3_c01076{width:2.592000px;}
._9_c01076{width:4.032000px;}
._b_c01076{width:5.472000px;}
._2_c01076{width:6.528000px;}
._15_c01076{width:8.064000px;}
._7_c01076{width:9.408000px;}
._1f_c01076{width:10.464000px;}
._2f_c01076{width:11.904000px;}
._14_c01076{width:13.152000px;}
._16_c01076{width:14.880000px;}
._10_c01076{width:16.800000px;}
._e_c01076{width:18.624000px;}
._24_c01076{width:20.544000px;}
._27_c01076{width:21.984000px;}
._2d_c01076{width:24.156000px;}
._1e_c01076{width:26.112000px;}
._21_c01076{width:27.132000px;}
._20_c01076{width:28.320000px;}
._2a_c01076{width:30.432000px;}
._4_c01076{width:31.776000px;}
._2c_c01076{width:32.832000px;}
._d_c01076{width:34.080000px;}
._f_c01076{width:35.808000px;}
._2e_c01076{width:37.272000px;}
._8_c01076{width:38.784000px;}
._13_c01076{width:40.320000px;}
._28_c01076{width:41.568000px;}
._12_c01076{width:43.200000px;}
._a_c01076{width:45.024000px;}
._1d_c01076{width:46.176000px;}
._22_c01076{width:47.412000px;}
._6_c01076{width:49.152000px;}
._37_c01076{width:51.648000px;}
._19_c01076{width:52.896000px;}
._23_c01076{width:54.240000px;}
._18_c01076{width:55.680000px;}
._1a_c01076{width:58.176000px;}
._31_c01076{width:60.096000px;}
._1b_c01076{width:62.016000px;}
._25_c01076{width:64.608000px;}
._1c_c01076{width:66.240000px;}
._26_c01076{width:67.680000px;}
._17_c01076{width:72.864000px;}
._40_c01076{width:77.868000px;}
._33_c01076{width:112.032000px;}
._35_c01076{width:123.360000px;}
._3d_c01076{width:142.176000px;}
._3b_c01076{width:158.688000px;}
._32_c01076{width:179.616000px;}
._3e_c01076{width:185.568000px;}
._34_c01076{width:250.728000px;}
._3a_c01076{width:351.552000px;}
._41_c01076{width:613.896000px;}
._38_c01076{width:1347.936000px;}
.fc2_c01076{color:transparent;}
.fc1_c01076{color:rgb(128,128,128);}
.fc0_c01076{color:rgb(0,0,0);}
.fs3_c01076{font-size:48.000000px;}
.fs2_c01076{font-size:76.800000px;}
.fs1_c01076{font-size:84.000000px;}
.fs0_c01076{font-size:96.000000px;}
.y0_c01076{bottom:0.000000px;}
.y26_c01076{bottom:3.105000px;}
.y25_c01076{bottom:7.228363px;}
.y24_c01076{bottom:97.200000px;}
.y23_c01076{bottom:130.350000px;}
.y22_c01076{bottom:165.150000px;}
.y21_c01076{bottom:199.500000px;}
.y20_c01076{bottom:233.550000px;}
.y1f_c01076{bottom:266.400000px;}
.y1e_c01076{bottom:302.850000px;}
.y1d_c01076{bottom:337.500000px;}
.y1c_c01076{bottom:370.350000px;}
.y1b_c01076{bottom:404.100000px;}
.y1a_c01076{bottom:439.200000px;}
.y19_c01076{bottom:471.450000px;}
.y18_c01076{bottom:505.200000px;}
.y17_c01076{bottom:538.650000px;}
.y16_c01076{bottom:572.100000px;}
.y15_c01076{bottom:605.850000px;}
.y14_c01076{bottom:639.600000px;}
.y13_c01076{bottom:673.050000px;}
.y12_c01076{bottom:706.500000px;}
.y11_c01076{bottom:740.100000px;}
.y10_c01076{bottom:772.950000px;}
.yf_c01076{bottom:806.550000px;}
.ye_c01076{bottom:838.950000px;}
.yd_c01076{bottom:872.100000px;}
.yc_c01076{bottom:905.550000px;}
.yb_c01076{bottom:938.550000px;}
.ya_c01076{bottom:972.000000px;}
.y9_c01076{bottom:1005.300000px;}
.y8_c01076{bottom:1037.700000px;}
.y7_c01076{bottom:1070.250000px;}
.y6_c01076{bottom:1102.950000px;}
.y5_c01076{bottom:1135.950000px;}
.y4_c01076{bottom:1168.650000px;}
.y3_c01076{bottom:1201.200000px;}
.y2_c01076{bottom:1234.800000px;}
.y1_c01076{bottom:1267.650000px;}
.h3_c01076{height:13.200074px;}
.h4_c01076{height:43.804688px;}
.h2_c01076{height:100.608000px;}
.h1_c01076{height:121.546875px;}
.h0_c01076{height:1363.500000px;}
.w2_c01076{width:104.875500px;}
.w1_c01076{width:864.750000px;}
.w0_c01076{width:865.050000px;}
.x0_c01076{left:0.000000px;}
.x8_c01076{left:35.400000px;}
.x6_c01076{left:36.450000px;}
.x7_c01076{left:37.500000px;}
.x5_c01076{left:38.550000px;}
.x4_c01076{left:40.200000px;}
.x3_c01076{left:41.850000px;}
.x2_c01076{left:42.900000px;}
.x1_c01076{left:45.600000px;}
.x9_c01076{left:319.950000px;}
.xa_c01076{left:384.339249px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls3_c01076{letter-spacing:0.000000pt;}
.ls0_c01076{letter-spacing:1.706667pt;}
.ls1_c01076{letter-spacing:8.106667pt;}
.ls2_c01076{letter-spacing:10.570667pt;}
.ws0_c01076{word-spacing:-56.448000pt;}
.ws3_c01076{word-spacing:-39.200000pt;}
.ws1_c01076{word-spacing:-38.154667pt;}
.ws2_c01076{word-spacing:-20.565333pt;}
.ws4_c01076{word-spacing:-0.085333pt;}
.ws5_c01076{word-spacing:0.000000pt;}
._3f_c01076{margin-left:-29.098667pt;}
._39_c01076{margin-left:-26.794667pt;}
._3c_c01076{margin-left:-25.258667pt;}
._42_c01076{margin-left:-16.789333pt;}
._30_c01076{margin-left:-13.056000pt;}
._5_c01076{margin-left:-10.410667pt;}
._36_c01076{margin-left:-8.704000pt;}
._0_c01076{margin-left:-5.973333pt;}
._2b_c01076{margin-left:-4.608000pt;}
._1_c01076{margin-left:-3.498667pt;}
._29_c01076{margin-left:-2.389333pt;}
._11_c01076{margin-left:-1.280000pt;}
._c_c01076{width:1.365333pt;}
._3_c01076{width:2.304000pt;}
._9_c01076{width:3.584000pt;}
._b_c01076{width:4.864000pt;}
._2_c01076{width:5.802667pt;}
._15_c01076{width:7.168000pt;}
._7_c01076{width:8.362667pt;}
._1f_c01076{width:9.301333pt;}
._2f_c01076{width:10.581333pt;}
._14_c01076{width:11.690667pt;}
._16_c01076{width:13.226667pt;}
._10_c01076{width:14.933333pt;}
._e_c01076{width:16.554667pt;}
._24_c01076{width:18.261333pt;}
._27_c01076{width:19.541333pt;}
._2d_c01076{width:21.472000pt;}
._1e_c01076{width:23.210667pt;}
._21_c01076{width:24.117333pt;}
._20_c01076{width:25.173333pt;}
._2a_c01076{width:27.050667pt;}
._4_c01076{width:28.245333pt;}
._2c_c01076{width:29.184000pt;}
._d_c01076{width:30.293333pt;}
._f_c01076{width:31.829333pt;}
._2e_c01076{width:33.130667pt;}
._8_c01076{width:34.474667pt;}
._13_c01076{width:35.840000pt;}
._28_c01076{width:36.949333pt;}
._12_c01076{width:38.400000pt;}
._a_c01076{width:40.021333pt;}
._1d_c01076{width:41.045333pt;}
._22_c01076{width:42.144000pt;}
._6_c01076{width:43.690667pt;}
._37_c01076{width:45.909333pt;}
._19_c01076{width:47.018667pt;}
._23_c01076{width:48.213333pt;}
._18_c01076{width:49.493333pt;}
._1a_c01076{width:51.712000pt;}
._31_c01076{width:53.418667pt;}
._1b_c01076{width:55.125333pt;}
._25_c01076{width:57.429333pt;}
._1c_c01076{width:58.880000pt;}
._26_c01076{width:60.160000pt;}
._17_c01076{width:64.768000pt;}
._40_c01076{width:69.216000pt;}
._33_c01076{width:99.584000pt;}
._35_c01076{width:109.653333pt;}
._3d_c01076{width:126.378667pt;}
._3b_c01076{width:141.056000pt;}
._32_c01076{width:159.658667pt;}
._3e_c01076{width:164.949333pt;}
._34_c01076{width:222.869333pt;}
._3a_c01076{width:312.490667pt;}
._41_c01076{width:545.685333pt;}
._38_c01076{width:1198.165333pt;}
.fs3_c01076{font-size:42.666667pt;}
.fs2_c01076{font-size:68.266667pt;}
.fs1_c01076{font-size:74.666667pt;}
.fs0_c01076{font-size:85.333333pt;}
.y0_c01076{bottom:0.000000pt;}
.y26_c01076{bottom:2.760000pt;}
.y25_c01076{bottom:6.425212pt;}
.y24_c01076{bottom:86.400000pt;}
.y23_c01076{bottom:115.866667pt;}
.y22_c01076{bottom:146.800000pt;}
.y21_c01076{bottom:177.333333pt;}
.y20_c01076{bottom:207.600000pt;}
.y1f_c01076{bottom:236.800000pt;}
.y1e_c01076{bottom:269.200000pt;}
.y1d_c01076{bottom:300.000000pt;}
.y1c_c01076{bottom:329.200000pt;}
.y1b_c01076{bottom:359.200000pt;}
.y1a_c01076{bottom:390.400000pt;}
.y19_c01076{bottom:419.066667pt;}
.y18_c01076{bottom:449.066667pt;}
.y17_c01076{bottom:478.800000pt;}
.y16_c01076{bottom:508.533333pt;}
.y15_c01076{bottom:538.533333pt;}
.y14_c01076{bottom:568.533333pt;}
.y13_c01076{bottom:598.266667pt;}
.y12_c01076{bottom:628.000000pt;}
.y11_c01076{bottom:657.866667pt;}
.y10_c01076{bottom:687.066667pt;}
.yf_c01076{bottom:716.933333pt;}
.ye_c01076{bottom:745.733333pt;}
.yd_c01076{bottom:775.200000pt;}
.yc_c01076{bottom:804.933333pt;}
.yb_c01076{bottom:834.266667pt;}
.ya_c01076{bottom:864.000000pt;}
.y9_c01076{bottom:893.600000pt;}
.y8_c01076{bottom:922.400000pt;}
.y7_c01076{bottom:951.333333pt;}
.y6_c01076{bottom:980.400000pt;}
.y5_c01076{bottom:1009.733333pt;}
.y4_c01076{bottom:1038.800000pt;}
.y3_c01076{bottom:1067.733333pt;}
.y2_c01076{bottom:1097.600000pt;}
.y1_c01076{bottom:1126.800000pt;}
.h3_c01076{height:11.733399pt;}
.h4_c01076{height:38.937500pt;}
.h2_c01076{height:89.429333pt;}
.h1_c01076{height:108.041667pt;}
.h0_c01076{height:1212.000000pt;}
.w2_c01076{width:93.222667pt;}
.w1_c01076{width:768.666667pt;}
.w0_c01076{width:768.933333pt;}
.x0_c01076{left:0.000000pt;}
.x8_c01076{left:31.466667pt;}
.x6_c01076{left:32.400000pt;}
.x7_c01076{left:33.333333pt;}
.x5_c01076{left:34.266667pt;}
.x4_c01076{left:35.733333pt;}
.x3_c01076{left:37.200000pt;}
.x2_c01076{left:38.133333pt;}
.x1_c01076{left:40.533333pt;}
.x9_c01076{left:284.400000pt;}
.xa_c01076{left:341.634888pt;}
}





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

.ir_c01077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_ef3463ab4fe47ac88b2495e6.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01077;src:url('chunks/assets/font_2e3df5b092bec3ad0856430e.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01077;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01077;src:url('chunks/assets/font_c1f1da76e70e1cf661da0772.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01077;src:url('chunks/assets/font_285eec8d0760b65535076a45.woff2')format("woff");}.ff5_c01077{font-family:ff5_c01077;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01077;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01077{font-family:ff6_c01077;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01077{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01077{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.v0_c01077{vertical-align:0.000000px;}
.ls3_c01077{letter-spacing:-9.000000px;}
.ls2_c01077{letter-spacing:0.000000px;}
.ls1_c01077{letter-spacing:0.024000px;}
.ls0_c01077{letter-spacing:15.852000px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:-63.504000px;}
.ws2_c01077{word-spacing:-51.000000px;}
.ws1_c01077{word-spacing:-43.428000px;}
.ws3_c01077{word-spacing:-43.128000px;}
.ws4_c01077{word-spacing:-14.460000px;}
.ws5_c01077{word-spacing:0.000000px;}
._3f_c01077{margin-left:-28.128000px;}
._35_c01077{margin-left:-18.528000px;}
._34_c01077{margin-left:-17.472000px;}
._45_c01077{margin-left:-16.332000px;}
._6_c01077{margin-left:-13.728000px;}
._2a_c01077{margin-left:-11.808000px;}
._3d_c01077{margin-left:-10.752000px;}
._22_c01077{margin-left:-9.024000px;}
._d_c01077{margin-left:-6.240000px;}
._48_c01077{margin-left:-4.992000px;}
._0_c01077{margin-left:-3.840000px;}
._1_c01077{margin-left:-2.592000px;}
._2_c01077{margin-left:-1.248000px;}
._7_c01077{width:1.152000px;}
._b_c01077{width:3.072000px;}
._9_c01077{width:4.608000px;}
._30_c01077{width:5.664000px;}
._13_c01077{width:6.720000px;}
._c_c01077{width:8.256000px;}
._2e_c01077{width:9.504000px;}
._8_c01077{width:10.656000px;}
._5_c01077{width:12.672000px;}
._23_c01077{width:14.688000px;}
._4_c01077{width:16.608000px;}
._1f_c01077{width:17.856000px;}
._e_c01077{width:19.584000px;}
._a_c01077{width:21.024000px;}
._42_c01077{width:23.016000px;}
._24_c01077{width:24.576000px;}
._21_c01077{width:26.208000px;}
._15_c01077{width:27.936000px;}
._1c_c01077{width:29.184000px;}
._1d_c01077{width:31.188000px;}
._25_c01077{width:32.544000px;}
._20_c01077{width:34.368000px;}
._28_c01077{width:35.424000px;}
._43_c01077{width:36.576000px;}
._19_c01077{width:37.824000px;}
._2f_c01077{width:38.880000px;}
._1e_c01077{width:40.128000px;}
._3_c01077{width:41.280000px;}
._14_c01077{width:43.488000px;}
._31_c01077{width:44.544000px;}
._27_c01077{width:45.888000px;}
._1b_c01077{width:47.424000px;}
._26_c01077{width:48.960000px;}
._10_c01077{width:50.112000px;}
._1a_c01077{width:51.936000px;}
._46_c01077{width:53.472000px;}
._36_c01077{width:54.528000px;}
._37_c01077{width:55.872000px;}
._17_c01077{width:57.120000px;}
._32_c01077{width:58.752000px;}
._3a_c01077{width:60.096000px;}
._29_c01077{width:61.152000px;}
._2d_c01077{width:62.976000px;}
._16_c01077{width:64.608000px;}
._3b_c01077{width:65.952000px;}
._33_c01077{width:67.488000px;}
._44_c01077{width:68.580000px;}
._3c_c01077{width:73.152000px;}
._18_c01077{width:79.008000px;}
._38_c01077{width:86.592000px;}
._39_c01077{width:95.328000px;}
._f_c01077{width:103.872000px;}
._11_c01077{width:142.080000px;}
._2b_c01077{width:159.264000px;}
._12_c01077{width:176.160000px;}
._2c_c01077{width:182.592000px;}
._49_c01077{width:204.672000px;}
._40_c01077{width:226.464000px;}
._3e_c01077{width:259.200000px;}
._47_c01077{width:647.256000px;}
._41_c01077{width:1230.624000px;}
.fc2_c01077{color:transparent;}
.fc1_c01077{color:rgb(128,128,128);}
.fc0_c01077{color:rgb(0,0,0);}
.fs5_c01077{font-size:48.000000px;}
.fs4_c01077{font-size:60.000000px;}
.fs1_c01077{font-size:84.000000px;}
.fs0_c01077{font-size:96.000000px;}
.fs2_c01077{font-size:102.000000px;}
.fs3_c01077{font-size:114.000000px;}
.y0_c01077{bottom:0.000000px;}
.y28_c01077{bottom:3.105000px;}
.y27_c01077{bottom:7.228357px;}
.y26_c01077{bottom:102.930000px;}
.y25_c01077{bottom:150.930000px;}
.y24_c01077{bottom:185.280000px;}
.y23_c01077{bottom:219.480000px;}
.y22_c01077{bottom:253.830000px;}
.y21_c01077{bottom:285.630000px;}
.y20_c01077{bottom:321.030000px;}
.y1f_c01077{bottom:354.780000px;}
.y1e_c01077{bottom:388.530000px;}
.y1d_c01077{bottom:421.980000px;}
.y1c_c01077{bottom:456.330000px;}
.y1b_c01077{bottom:489.780000px;}
.y1a_c01077{bottom:523.830000px;}
.y19_c01077{bottom:557.280000px;}
.y2_c01077{bottom:578.130000px;}
.y18_c01077{bottom:590.730000px;}
.y1_c01077{bottom:607.530000px;}
.y17_c01077{bottom:625.080000px;}
.y16_c01077{bottom:658.830000px;}
.y15_c01077{bottom:693.180000px;}
.y14_c01077{bottom:726.930000px;}
.y13_c01077{bottom:759.780000px;}
.y12_c01077{bottom:793.230000px;}
.y11_c01077{bottom:825.930000px;}
.y10_c01077{bottom:859.980000px;}
.yf_c01077{bottom:893.580000px;}
.ye_c01077{bottom:926.880000px;}
.yd_c01077{bottom:960.180000px;}
.yc_c01077{bottom:993.330000px;}
.yb_c01077{bottom:1026.780000px;}
.ya_c01077{bottom:1059.480000px;}
.y9_c01077{bottom:1091.580000px;}
.y8_c01077{bottom:1124.580000px;}
.y7_c01077{bottom:1159.080000px;}
.y6_c01077{bottom:1192.680000px;}
.y5_c01077{bottom:1225.830000px;}
.y4_c01077{bottom:1259.880000px;}
.y3_c01077{bottom:1291.230000px;}
.h4_c01077{height:13.200074px;}
.h5_c01077{height:43.804688px;}
.h3_c01077{height:75.966797px;}
.h2_c01077{height:121.546875px;}
.h0_c01077{height:1382.700000px;}
.h1_c01077{height:1383.000000px;}
.w2_c01077{width:104.875500px;}
.w0_c01077{width:863.175000px;}
.w1_c01077{width:863.250000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:45.600000px;}
.x2_c01077{left:110.400000px;}
.x9_c01077{left:241.200000px;}
.x8_c01077{left:242.250000px;}
.x3_c01077{left:243.900000px;}
.x4_c01077{left:244.950000px;}
.x6_c01077{left:246.000000px;}
.x5_c01077{left:247.050000px;}
.x7_c01077{left:292.950000px;}
.xc_c01077{left:383.401749px;}
.xa_c01077{left:447.150000px;}
.xb_c01077{left:454.200000px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls3_c01077{letter-spacing:-8.000000pt;}
.ls2_c01077{letter-spacing:0.000000pt;}
.ls1_c01077{letter-spacing:0.021333pt;}
.ls0_c01077{letter-spacing:14.090667pt;}
.ws0_c01077{word-spacing:-56.448000pt;}
.ws2_c01077{word-spacing:-45.333333pt;}
.ws1_c01077{word-spacing:-38.602667pt;}
.ws3_c01077{word-spacing:-38.336000pt;}
.ws4_c01077{word-spacing:-12.853333pt;}
.ws5_c01077{word-spacing:0.000000pt;}
._3f_c01077{margin-left:-25.002667pt;}
._35_c01077{margin-left:-16.469333pt;}
._34_c01077{margin-left:-15.530667pt;}
._45_c01077{margin-left:-14.517333pt;}
._6_c01077{margin-left:-12.202667pt;}
._2a_c01077{margin-left:-10.496000pt;}
._3d_c01077{margin-left:-9.557333pt;}
._22_c01077{margin-left:-8.021333pt;}
._d_c01077{margin-left:-5.546667pt;}
._48_c01077{margin-left:-4.437333pt;}
._0_c01077{margin-left:-3.413333pt;}
._1_c01077{margin-left:-2.304000pt;}
._2_c01077{margin-left:-1.109333pt;}
._7_c01077{width:1.024000pt;}
._b_c01077{width:2.730667pt;}
._9_c01077{width:4.096000pt;}
._30_c01077{width:5.034667pt;}
._13_c01077{width:5.973333pt;}
._c_c01077{width:7.338667pt;}
._2e_c01077{width:8.448000pt;}
._8_c01077{width:9.472000pt;}
._5_c01077{width:11.264000pt;}
._23_c01077{width:13.056000pt;}
._4_c01077{width:14.762667pt;}
._1f_c01077{width:15.872000pt;}
._e_c01077{width:17.408000pt;}
._a_c01077{width:18.688000pt;}
._42_c01077{width:20.458667pt;}
._24_c01077{width:21.845333pt;}
._21_c01077{width:23.296000pt;}
._15_c01077{width:24.832000pt;}
._1c_c01077{width:25.941333pt;}
._1d_c01077{width:27.722667pt;}
._25_c01077{width:28.928000pt;}
._20_c01077{width:30.549333pt;}
._28_c01077{width:31.488000pt;}
._43_c01077{width:32.512000pt;}
._19_c01077{width:33.621333pt;}
._2f_c01077{width:34.560000pt;}
._1e_c01077{width:35.669333pt;}
._3_c01077{width:36.693333pt;}
._14_c01077{width:38.656000pt;}
._31_c01077{width:39.594667pt;}
._27_c01077{width:40.789333pt;}
._1b_c01077{width:42.154667pt;}
._26_c01077{width:43.520000pt;}
._10_c01077{width:44.544000pt;}
._1a_c01077{width:46.165333pt;}
._46_c01077{width:47.530667pt;}
._36_c01077{width:48.469333pt;}
._37_c01077{width:49.664000pt;}
._17_c01077{width:50.773333pt;}
._32_c01077{width:52.224000pt;}
._3a_c01077{width:53.418667pt;}
._29_c01077{width:54.357333pt;}
._2d_c01077{width:55.978667pt;}
._16_c01077{width:57.429333pt;}
._3b_c01077{width:58.624000pt;}
._33_c01077{width:59.989333pt;}
._44_c01077{width:60.960000pt;}
._3c_c01077{width:65.024000pt;}
._18_c01077{width:70.229333pt;}
._38_c01077{width:76.970667pt;}
._39_c01077{width:84.736000pt;}
._f_c01077{width:92.330667pt;}
._11_c01077{width:126.293333pt;}
._2b_c01077{width:141.568000pt;}
._12_c01077{width:156.586667pt;}
._2c_c01077{width:162.304000pt;}
._49_c01077{width:181.930667pt;}
._40_c01077{width:201.301333pt;}
._3e_c01077{width:230.400000pt;}
._47_c01077{width:575.338667pt;}
._41_c01077{width:1093.888000pt;}
.fs5_c01077{font-size:42.666667pt;}
.fs4_c01077{font-size:53.333333pt;}
.fs1_c01077{font-size:74.666667pt;}
.fs0_c01077{font-size:85.333333pt;}
.fs2_c01077{font-size:90.666667pt;}
.fs3_c01077{font-size:101.333333pt;}
.y0_c01077{bottom:0.000000pt;}
.y28_c01077{bottom:2.760000pt;}
.y27_c01077{bottom:6.425206pt;}
.y26_c01077{bottom:91.493333pt;}
.y25_c01077{bottom:134.160000pt;}
.y24_c01077{bottom:164.693333pt;}
.y23_c01077{bottom:195.093333pt;}
.y22_c01077{bottom:225.626667pt;}
.y21_c01077{bottom:253.893333pt;}
.y20_c01077{bottom:285.360000pt;}
.y1f_c01077{bottom:315.360000pt;}
.y1e_c01077{bottom:345.360000pt;}
.y1d_c01077{bottom:375.093333pt;}
.y1c_c01077{bottom:405.626667pt;}
.y1b_c01077{bottom:435.360000pt;}
.y1a_c01077{bottom:465.626667pt;}
.y19_c01077{bottom:495.360000pt;}
.y2_c01077{bottom:513.893333pt;}
.y18_c01077{bottom:525.093333pt;}
.y1_c01077{bottom:540.026667pt;}
.y17_c01077{bottom:555.626667pt;}
.y16_c01077{bottom:585.626667pt;}
.y15_c01077{bottom:616.160000pt;}
.y14_c01077{bottom:646.160000pt;}
.y13_c01077{bottom:675.360000pt;}
.y12_c01077{bottom:705.093333pt;}
.y11_c01077{bottom:734.160000pt;}
.y10_c01077{bottom:764.426667pt;}
.yf_c01077{bottom:794.293333pt;}
.ye_c01077{bottom:823.893333pt;}
.yd_c01077{bottom:853.493333pt;}
.yc_c01077{bottom:882.960000pt;}
.yb_c01077{bottom:912.693333pt;}
.ya_c01077{bottom:941.760000pt;}
.y9_c01077{bottom:970.293333pt;}
.y8_c01077{bottom:999.626667pt;}
.y7_c01077{bottom:1030.293333pt;}
.y6_c01077{bottom:1060.160000pt;}
.y5_c01077{bottom:1089.626667pt;}
.y4_c01077{bottom:1119.893333pt;}
.y3_c01077{bottom:1147.760000pt;}
.h4_c01077{height:11.733399pt;}
.h5_c01077{height:38.937500pt;}
.h3_c01077{height:67.526042pt;}
.h2_c01077{height:108.041667pt;}
.h0_c01077{height:1229.066667pt;}
.h1_c01077{height:1229.333333pt;}
.w2_c01077{width:93.222667pt;}
.w0_c01077{width:767.266667pt;}
.w1_c01077{width:767.333333pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:40.533333pt;}
.x2_c01077{left:98.133333pt;}
.x9_c01077{left:214.400000pt;}
.x8_c01077{left:215.333333pt;}
.x3_c01077{left:216.800000pt;}
.x4_c01077{left:217.733333pt;}
.x6_c01077{left:218.666667pt;}
.x5_c01077{left:219.600000pt;}
.x7_c01077{left:260.400000pt;}
.xc_c01077{left:340.801554pt;}
.xa_c01077{left:397.466667pt;}
.xb_c01077{left:403.733333pt;}
}





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

.ir_c01078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_cb249d62c09d98cdcce0e1c3.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01078;src:url('chunks/assets/font_3c90cbd6ca1377d12af80869.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01078;src:url('chunks/assets/font_ab6f55cdbc2d734fa51587d0.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01078{transform:matrix(0.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032500,0.000000,0.000000,0.250000,0,0);}
.m0_c01078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01078{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.v1_c01078{vertical-align:4.200000px;}
.ls5_c01078{letter-spacing:-3.000000px;}
.ls2_c01078{letter-spacing:0.000000px;}
.ls0_c01078{letter-spacing:4.800000px;}
.ls4_c01078{letter-spacing:6.000000px;}
.ls3_c01078{letter-spacing:9.000000px;}
.ls1_c01078{letter-spacing:10.356000px;}
.ls6_c01078{letter-spacing:27.000000px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01078{word-spacing:-51.000000px;}
.ws3_c01078{word-spacing:-47.967000px;}
.ws2_c01078{word-spacing:-23.460000px;}
.ws1_c01078{word-spacing:-23.136000px;}
.ws4_c01078{word-spacing:-20.244000px;}
.ws5_c01078{word-spacing:-14.460000px;}
.ws6_c01078{word-spacing:0.000000px;}
._50_c01078{margin-left:-53.679000px;}
._49_c01078{margin-left:-43.935000px;}
._53_c01078{margin-left:-38.454000px;}
._51_c01078{margin-left:-35.736000px;}
._2a_c01078{margin-left:-34.128000px;}
._10_c01078{margin-left:-32.640000px;}
._3f_c01078{margin-left:-29.976000px;}
._30_c01078{margin-left:-28.608000px;}
._d_c01078{margin-left:-26.400000px;}
._45_c01078{margin-left:-23.925000px;}
._3a_c01078{margin-left:-21.840000px;}
._e_c01078{margin-left:-20.352000px;}
._1f_c01078{margin-left:-17.280000px;}
._46_c01078{margin-left:-16.032000px;}
._31_c01078{margin-left:-14.400000px;}
._2d_c01078{margin-left:-13.248000px;}
._f_c01078{margin-left:-12.192000px;}
._3_c01078{margin-left:-10.464000px;}
._2c_c01078{margin-left:-9.024000px;}
._6_c01078{margin-left:-7.680000px;}
._4_c01078{margin-left:-6.048000px;}
._5_c01078{margin-left:-4.416000px;}
._1_c01078{margin-left:-3.360000px;}
._0_c01078{margin-left:-1.920000px;}
._23_c01078{width:1.008000px;}
._a_c01078{width:2.016000px;}
._b_c01078{width:3.600000px;}
._16_c01078{width:4.944000px;}
._7_c01078{width:5.952000px;}
._17_c01078{width:7.056000px;}
._9_c01078{width:8.064000px;}
._34_c01078{width:9.648000px;}
._1a_c01078{width:10.656000px;}
._20_c01078{width:12.096000px;}
._c_c01078{width:13.464000px;}
._22_c01078{width:15.120000px;}
._12_c01078{width:17.184000px;}
._28_c01078{width:18.384000px;}
._26_c01078{width:19.872000px;}
._32_c01078{width:21.312000px;}
._18_c01078{width:24.960000px;}
._21_c01078{width:27.936000px;}
._15_c01078{width:29.856000px;}
._29_c01078{width:31.200000px;}
._13_c01078{width:32.832000px;}
._8_c01078{width:34.848000px;}
._14_c01078{width:36.624000px;}
._1c_c01078{width:38.160000px;}
._2_c01078{width:40.512000px;}
._2f_c01078{width:42.264000px;}
._19_c01078{width:43.488000px;}
._2b_c01078{width:44.784000px;}
._2e_c01078{width:46.368000px;}
._25_c01078{width:47.664000px;}
._24_c01078{width:49.728000px;}
._33_c01078{width:51.504000px;}
._1d_c01078{width:53.952000px;}
._35_c01078{width:56.352000px;}
._36_c01078{width:58.656000px;}
._1b_c01078{width:60.768000px;}
._3c_c01078{width:62.448000px;}
._39_c01078{width:64.968000px;}
._38_c01078{width:66.864000px;}
._4b_c01078{width:68.754000px;}
._41_c01078{width:76.116000px;}
._27_c01078{width:79.056000px;}
._40_c01078{width:88.764000px;}
._3b_c01078{width:94.752000px;}
._42_c01078{width:109.458000px;}
._4a_c01078{width:159.384000px;}
._54_c01078{width:171.984000px;}
._55_c01078{width:177.876000px;}
._4d_c01078{width:184.896000px;}
._47_c01078{width:186.081000px;}
._4c_c01078{width:196.656000px;}
._37_c01078{width:199.152000px;}
._44_c01078{width:207.579000px;}
._4e_c01078{width:220.464000px;}
._43_c01078{width:270.582000px;}
._48_c01078{width:287.013000px;}
._4f_c01078{width:307.806000px;}
._1e_c01078{width:348.672000px;}
._52_c01078{width:385.101000px;}
._11_c01078{width:449.952000px;}
._3e_c01078{width:717.456000px;}
._3d_c01078{width:915.024000px;}
.fc2_c01078{color:transparent;}
.fc1_c01078{color:rgb(128,128,128);}
.fc0_c01078{color:rgb(0,0,0);}
.fs5_c01078{font-size:36.000000px;}
.fs7_c01078{font-size:48.000000px;}
.fs4_c01078{font-size:60.000000px;}
.fs3_c01078{font-size:78.000000px;}
.fs6_c01078{font-size:84.000000px;}
.fs2_c01078{font-size:87.000000px;}
.fs0_c01078{font-size:96.000000px;}
.fs1_c01078{font-size:102.000000px;}
.y0_c01078{bottom:0.000000px;}
.y27_c01078{bottom:3.105000px;}
.y26_c01078{bottom:7.228363px;}
.y25_c01078{bottom:28.050000px;}
.y24_c01078{bottom:99.900000px;}
.y23_c01078{bottom:179.100000px;}
.y22_c01078{bottom:203.550000px;}
.y21_c01078{bottom:264.600000px;}
.y20_c01078{bottom:272.250000px;}
.y1f_c01078{bottom:347.250000px;}
.y1b_c01078{bottom:369.450000px;}
.y1e_c01078{bottom:386.100000px;}
.y1d_c01078{bottom:406.950000px;}
.y1a_c01078{bottom:439.650000px;}
.y19_c01078{bottom:474.900000px;}
.y18_c01078{bottom:508.950000px;}
.y17_c01078{bottom:542.700000px;}
.y16_c01078{bottom:576.150000px;}
.y15_c01078{bottom:610.200000px;}
.y14_c01078{bottom:644.250000px;}
.y13_c01078{bottom:677.250000px;}
.y12_c01078{bottom:710.400000px;}
.y11_c01078{bottom:743.850000px;}
.y10_c01078{bottom:777.150000px;}
.yf_c01078{bottom:810.000000px;}
.ye_c01078{bottom:842.550000px;}
.yd_c01078{bottom:875.700000px;}
.yc_c01078{bottom:908.850000px;}
.yb_c01078{bottom:942.600000px;}
.ya_c01078{bottom:975.600000px;}
.y9_c01078{bottom:1007.700000px;}
.y8_c01078{bottom:1042.200000px;}
.y7_c01078{bottom:1074.300000px;}
.y6_c01078{bottom:1107.000000px;}
.y1c_c01078{bottom:1108.950000px;}
.y5_c01078{bottom:1139.850000px;}
.y4_c01078{bottom:1173.150000px;}
.y3_c01078{bottom:1206.450000px;}
.y2_c01078{bottom:1239.600000px;}
.y1_c01078{bottom:1270.650000px;}
.h4_c01078{height:13.200074px;}
.h5_c01078{height:43.804688px;}
.h3_c01078{height:75.966797px;}
.h2_c01078{height:110.151855px;}
.h1_c01078{height:121.546875px;}
.h0_c01078{height:1363.500000px;}
.w2_c01078{width:104.875500px;}
.w1_c01078{width:864.750000px;}
.w0_c01078{width:865.050000px;}
.x0_c01078{left:0.000000px;}
.x3_c01078{left:40.200000px;}
.x4_c01078{left:41.250000px;}
.x2_c01078{left:42.450000px;}
.x1_c01078{left:44.100000px;}
.x5_c01078{left:133.650000px;}
.xb_c01078{left:177.900000px;}
.xa_c01078{left:178.950000px;}
.xd_c01078{left:234.600000px;}
.xc_c01078{left:267.300000px;}
.x7_c01078{left:372.300000px;}
.x8_c01078{left:382.650000px;}
.x10_c01078{left:384.339249px;}
.xe_c01078{left:535.350000px;}
.x9_c01078{left:593.700000px;}
.xf_c01078{left:597.600000px;}
.x6_c01078{left:630.900000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.v1_c01078{vertical-align:3.733333pt;}
.ls5_c01078{letter-spacing:-2.666667pt;}
.ls2_c01078{letter-spacing:0.000000pt;}
.ls0_c01078{letter-spacing:4.266667pt;}
.ls4_c01078{letter-spacing:5.333333pt;}
.ls3_c01078{letter-spacing:8.000000pt;}
.ls1_c01078{letter-spacing:9.205333pt;}
.ls6_c01078{letter-spacing:24.000000pt;}
.ws0_c01078{word-spacing:-45.333333pt;}
.ws3_c01078{word-spacing:-42.637333pt;}
.ws2_c01078{word-spacing:-20.853333pt;}
.ws1_c01078{word-spacing:-20.565333pt;}
.ws4_c01078{word-spacing:-17.994667pt;}
.ws5_c01078{word-spacing:-12.853333pt;}
.ws6_c01078{word-spacing:0.000000pt;}
._50_c01078{margin-left:-47.714667pt;}
._49_c01078{margin-left:-39.053333pt;}
._53_c01078{margin-left:-34.181333pt;}
._51_c01078{margin-left:-31.765333pt;}
._2a_c01078{margin-left:-30.336000pt;}
._10_c01078{margin-left:-29.013333pt;}
._3f_c01078{margin-left:-26.645333pt;}
._30_c01078{margin-left:-25.429333pt;}
._d_c01078{margin-left:-23.466667pt;}
._45_c01078{margin-left:-21.266667pt;}
._3a_c01078{margin-left:-19.413333pt;}
._e_c01078{margin-left:-18.090667pt;}
._1f_c01078{margin-left:-15.360000pt;}
._46_c01078{margin-left:-14.250667pt;}
._31_c01078{margin-left:-12.800000pt;}
._2d_c01078{margin-left:-11.776000pt;}
._f_c01078{margin-left:-10.837333pt;}
._3_c01078{margin-left:-9.301333pt;}
._2c_c01078{margin-left:-8.021333pt;}
._6_c01078{margin-left:-6.826667pt;}
._4_c01078{margin-left:-5.376000pt;}
._5_c01078{margin-left:-3.925333pt;}
._1_c01078{margin-left:-2.986667pt;}
._0_c01078{margin-left:-1.706667pt;}
._23_c01078{width:0.896000pt;}
._a_c01078{width:1.792000pt;}
._b_c01078{width:3.200000pt;}
._16_c01078{width:4.394667pt;}
._7_c01078{width:5.290667pt;}
._17_c01078{width:6.272000pt;}
._9_c01078{width:7.168000pt;}
._34_c01078{width:8.576000pt;}
._1a_c01078{width:9.472000pt;}
._20_c01078{width:10.752000pt;}
._c_c01078{width:11.968000pt;}
._22_c01078{width:13.440000pt;}
._12_c01078{width:15.274667pt;}
._28_c01078{width:16.341333pt;}
._26_c01078{width:17.664000pt;}
._32_c01078{width:18.944000pt;}
._18_c01078{width:22.186667pt;}
._21_c01078{width:24.832000pt;}
._15_c01078{width:26.538667pt;}
._29_c01078{width:27.733333pt;}
._13_c01078{width:29.184000pt;}
._8_c01078{width:30.976000pt;}
._14_c01078{width:32.554667pt;}
._1c_c01078{width:33.920000pt;}
._2_c01078{width:36.010667pt;}
._2f_c01078{width:37.568000pt;}
._19_c01078{width:38.656000pt;}
._2b_c01078{width:39.808000pt;}
._2e_c01078{width:41.216000pt;}
._25_c01078{width:42.368000pt;}
._24_c01078{width:44.202667pt;}
._33_c01078{width:45.781333pt;}
._1d_c01078{width:47.957333pt;}
._35_c01078{width:50.090667pt;}
._36_c01078{width:52.138667pt;}
._1b_c01078{width:54.016000pt;}
._3c_c01078{width:55.509333pt;}
._39_c01078{width:57.749333pt;}
._38_c01078{width:59.434667pt;}
._4b_c01078{width:61.114667pt;}
._41_c01078{width:67.658667pt;}
._27_c01078{width:70.272000pt;}
._40_c01078{width:78.901333pt;}
._3b_c01078{width:84.224000pt;}
._42_c01078{width:97.296000pt;}
._4a_c01078{width:141.674667pt;}
._54_c01078{width:152.874667pt;}
._55_c01078{width:158.112000pt;}
._4d_c01078{width:164.352000pt;}
._47_c01078{width:165.405333pt;}
._4c_c01078{width:174.805333pt;}
._37_c01078{width:177.024000pt;}
._44_c01078{width:184.514667pt;}
._4e_c01078{width:195.968000pt;}
._43_c01078{width:240.517333pt;}
._48_c01078{width:255.122667pt;}
._4f_c01078{width:273.605333pt;}
._1e_c01078{width:309.930667pt;}
._52_c01078{width:342.312000pt;}
._11_c01078{width:399.957333pt;}
._3e_c01078{width:637.738667pt;}
._3d_c01078{width:813.354667pt;}
.fs5_c01078{font-size:32.000000pt;}
.fs7_c01078{font-size:42.666667pt;}
.fs4_c01078{font-size:53.333333pt;}
.fs3_c01078{font-size:69.333333pt;}
.fs6_c01078{font-size:74.666667pt;}
.fs2_c01078{font-size:77.333333pt;}
.fs0_c01078{font-size:85.333333pt;}
.fs1_c01078{font-size:90.666667pt;}
.y0_c01078{bottom:0.000000pt;}
.y27_c01078{bottom:2.760000pt;}
.y26_c01078{bottom:6.425212pt;}
.y25_c01078{bottom:24.933333pt;}
.y24_c01078{bottom:88.800000pt;}
.y23_c01078{bottom:159.200000pt;}
.y22_c01078{bottom:180.933333pt;}
.y21_c01078{bottom:235.200000pt;}
.y20_c01078{bottom:242.000000pt;}
.y1f_c01078{bottom:308.666667pt;}
.y1b_c01078{bottom:328.400000pt;}
.y1e_c01078{bottom:343.200000pt;}
.y1d_c01078{bottom:361.733333pt;}
.y1a_c01078{bottom:390.800000pt;}
.y19_c01078{bottom:422.133333pt;}
.y18_c01078{bottom:452.400000pt;}
.y17_c01078{bottom:482.400000pt;}
.y16_c01078{bottom:512.133333pt;}
.y15_c01078{bottom:542.400000pt;}
.y14_c01078{bottom:572.666667pt;}
.y13_c01078{bottom:602.000000pt;}
.y12_c01078{bottom:631.466667pt;}
.y11_c01078{bottom:661.200000pt;}
.y10_c01078{bottom:690.800000pt;}
.yf_c01078{bottom:720.000000pt;}
.ye_c01078{bottom:748.933333pt;}
.yd_c01078{bottom:778.400000pt;}
.yc_c01078{bottom:807.866667pt;}
.yb_c01078{bottom:837.866667pt;}
.ya_c01078{bottom:867.200000pt;}
.y9_c01078{bottom:895.733333pt;}
.y8_c01078{bottom:926.400000pt;}
.y7_c01078{bottom:954.933333pt;}
.y6_c01078{bottom:984.000000pt;}
.y1c_c01078{bottom:985.733333pt;}
.y5_c01078{bottom:1013.200000pt;}
.y4_c01078{bottom:1042.800000pt;}
.y3_c01078{bottom:1072.400000pt;}
.y2_c01078{bottom:1101.866667pt;}
.y1_c01078{bottom:1129.466667pt;}
.h4_c01078{height:11.733399pt;}
.h5_c01078{height:38.937500pt;}
.h3_c01078{height:67.526042pt;}
.h2_c01078{height:97.912760pt;}
.h1_c01078{height:108.041667pt;}
.h0_c01078{height:1212.000000pt;}
.w2_c01078{width:93.222667pt;}
.w1_c01078{width:768.666667pt;}
.w0_c01078{width:768.933333pt;}
.x0_c01078{left:0.000000pt;}
.x3_c01078{left:35.733333pt;}
.x4_c01078{left:36.666667pt;}
.x2_c01078{left:37.733333pt;}
.x1_c01078{left:39.200000pt;}
.x5_c01078{left:118.800000pt;}
.xb_c01078{left:158.133333pt;}
.xa_c01078{left:159.066667pt;}
.xd_c01078{left:208.533333pt;}
.xc_c01078{left:237.600000pt;}
.x7_c01078{left:330.933333pt;}
.x8_c01078{left:340.133333pt;}
.x10_c01078{left:341.634888pt;}
.xe_c01078{left:475.866667pt;}
.x9_c01078{left:527.733333pt;}
.xf_c01078{left:531.200000pt;}
.x6_c01078{left:560.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_c01079 {
    display:none;
  }
  .loading-indicator_c01079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01079 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01079 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01079" -> "#page-container .classname_c01079")
 */
.pf_c01079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01079 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01079 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01079 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01079 {overflow:visible;}
  }
}
.c_c01079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01079 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01079:after { /* webkit #35443 */
  content: '';
}
.t_c01079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01079 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01079 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01079 { /* info for Javascript */
  display:none;
}
.l_c01079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_d8eba832af7e988d6ada96f9.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01079;src:url('chunks/assets/font_af3b891b5f2422c0b49aac91.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01079;src:url('chunks/assets/font_fa5ec63eeb3063b249470e09.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01079;src:url('chunks/assets/font_d68ca77d54a3bcc369ef92ae.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;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_c01079;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01079{font-family:ff5_c01079;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.v1_c01079{vertical-align:26.400000px;}
.ls5_c01079{letter-spacing:-3.000000px;}
.ls2_c01079{letter-spacing:0.000000px;}
.ls4_c01079{letter-spacing:6.000000px;}
.ls1_c01079{letter-spacing:10.920000px;}
.ls3_c01079{letter-spacing:15.000000px;}
.ls0_c01079{letter-spacing:309.300000px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01079{word-spacing:-62.772000px;}
.ws2_c01079{word-spacing:-61.044000px;}
.ws4_c01079{word-spacing:-51.000000px;}
.ws0_c01079{word-spacing:-49.704000px;}
.ws1_c01079{word-spacing:-34.704000px;}
.ws3_c01079{word-spacing:-23.136000px;}
.ws6_c01079{word-spacing:0.000000px;}
._16_c01079{margin-left:-89.376000px;}
._3f_c01079{margin-left:-88.224000px;}
._5e_c01079{margin-left:-44.928000px;}
._21_c01079{margin-left:-32.232000px;}
._58_c01079{margin-left:-29.856000px;}
._10_c01079{margin-left:-28.848000px;}
._2d_c01079{margin-left:-26.064000px;}
._a_c01079{margin-left:-25.056000px;}
._c_c01079{margin-left:-21.984000px;}
._46_c01079{margin-left:-20.736000px;}
._12_c01079{margin-left:-19.200000px;}
._30_c01079{margin-left:-17.856000px;}
._39_c01079{margin-left:-15.840000px;}
._f_c01079{margin-left:-14.304000px;}
._31_c01079{margin-left:-12.240000px;}
._4a_c01079{margin-left:-11.160000px;}
._25_c01079{margin-left:-10.080000px;}
._2a_c01079{margin-left:-8.208000px;}
._24_c01079{margin-left:-7.200000px;}
._1f_c01079{margin-left:-6.192000px;}
._1e_c01079{margin-left:-5.184000px;}
._1c_c01079{margin-left:-4.032000px;}
._18_c01079{margin-left:-2.736000px;}
._1a_c01079{margin-left:-1.296000px;}
._9_c01079{width:1.296000px;}
._3e_c01079{width:2.448000px;}
._28_c01079{width:3.600000px;}
._26_c01079{width:5.328000px;}
._40_c01079{width:7.152000px;}
._27_c01079{width:8.208000px;}
._23_c01079{width:9.504000px;}
._48_c01079{width:11.424000px;}
._2_c01079{width:12.816000px;}
._44_c01079{width:13.941000px;}
._0_c01079{width:14.976000px;}
._1_c01079{width:16.848000px;}
._41_c01079{width:17.880000px;}
._11_c01079{width:20.928000px;}
._60_c01079{width:22.785000px;}
._50_c01079{width:24.240000px;}
._4b_c01079{width:26.064000px;}
._d_c01079{width:27.552000px;}
._5_c01079{width:29.232000px;}
._22_c01079{width:31.248000px;}
._55_c01079{width:32.256000px;}
._4_c01079{width:33.408000px;}
._53_c01079{width:34.512000px;}
._51_c01079{width:36.528000px;}
._7_c01079{width:37.584000px;}
._4d_c01079{width:38.928000px;}
._4e_c01079{width:40.944000px;}
._4c_c01079{width:43.056000px;}
._2c_c01079{width:44.640000px;}
._52_c01079{width:46.656000px;}
._3d_c01079{width:48.384000px;}
._5a_c01079{width:49.632000px;}
._54_c01079{width:51.744000px;}
._56_c01079{width:52.944000px;}
._59_c01079{width:54.000000px;}
._2b_c01079{width:55.296000px;}
._49_c01079{width:56.496000px;}
._5c_c01079{width:57.696000px;}
._36_c01079{width:59.328000px;}
._33_c01079{width:60.480000px;}
._b_c01079{width:62.016000px;}
._3c_c01079{width:66.240000px;}
._3b_c01079{width:67.968000px;}
._5b_c01079{width:69.696000px;}
._34_c01079{width:72.864000px;}
._57_c01079{width:75.888000px;}
._38_c01079{width:80.928000px;}
._13_c01079{width:85.824000px;}
._1d_c01079{width:90.000000px;}
._19_c01079{width:96.048000px;}
._3a_c01079{width:98.904000px;}
._1b_c01079{width:102.528000px;}
._37_c01079{width:109.296000px;}
._17_c01079{width:111.840000px;}
._32_c01079{width:113.424000px;}
._45_c01079{width:116.472000px;}
._35_c01079{width:118.224000px;}
._2f_c01079{width:121.104000px;}
._20_c01079{width:124.344000px;}
._29_c01079{width:135.360000px;}
._8_c01079{width:137.232000px;}
._4f_c01079{width:142.128000px;}
._2e_c01079{width:144.144000px;}
._6_c01079{width:145.584000px;}
._3_c01079{width:149.904000px;}
._5f_c01079{width:172.560000px;}
._42_c01079{width:216.102000px;}
._15_c01079{width:273.408000px;}
._14_c01079{width:285.216000px;}
._5d_c01079{width:333.744000px;}
._e_c01079{width:362.304000px;}
._43_c01079{width:460.272000px;}
._47_c01079{width:522.336000px;}
.fc2_c01079{color:transparent;}
.fc1_c01079{color:rgb(128,128,128);}
.fc0_c01079{color:rgb(0,0,0);}
.fs2_c01079{font-size:30.000000px;}
.fs8_c01079{font-size:48.000000px;}
.fs5_c01079{font-size:60.000000px;}
.fs4_c01079{font-size:84.000000px;}
.fs7_c01079{font-size:87.000000px;}
.fs1_c01079{font-size:96.000000px;}
.fs3_c01079{font-size:99.000000px;}
.fs6_c01079{font-size:102.000000px;}
.fs0_c01079{font-size:144.000000px;}
.y0_c01079{bottom:0.000000px;}
.y24_c01079{bottom:3.105000px;}
.y23_c01079{bottom:7.228357px;}
.y21_c01079{bottom:101.280000px;}
.y22_c01079{bottom:131.730000px;}
.y20_c01079{bottom:132.630000px;}
.y1f_c01079{bottom:156.930000px;}
.y1e_c01079{bottom:166.830000px;}
.y1d_c01079{bottom:200.130000px;}
.y1c_c01079{bottom:233.880000px;}
.y1b_c01079{bottom:267.930000px;}
.y1a_c01079{bottom:301.680000px;}
.y19_c01079{bottom:335.130000px;}
.y18_c01079{bottom:368.880000px;}
.y17_c01079{bottom:402.630000px;}
.y16_c01079{bottom:436.080000px;}
.y15_c01079{bottom:469.830000px;}
.y14_c01079{bottom:502.980000px;}
.y13_c01079{bottom:536.730000px;}
.y12_c01079{bottom:570.480000px;}
.y11_c01079{bottom:604.080000px;}
.y10_c01079{bottom:637.980000px;}
.yf_c01079{bottom:670.680000px;}
.ye_c01079{bottom:703.980000px;}
.yd_c01079{bottom:735.030000px;}
.yc_c01079{bottom:805.380000px;}
.yb_c01079{bottom:839.730000px;}
.ya_c01079{bottom:863.280000px;}
.y9_c01079{bottom:913.980000px;}
.y8_c01079{bottom:963.930000px;}
.y7_c01079{bottom:1013.880000px;}
.y6_c01079{bottom:1063.080000px;}
.y5_c01079{bottom:1113.780000px;}
.y4_c01079{bottom:1163.430000px;}
.y3_c01079{bottom:1213.980000px;}
.y2_c01079{bottom:1245.330000px;}
.y1_c01079{bottom:1262.880000px;}
.h6_c01079{height:13.200074px;}
.h7_c01079{height:43.804688px;}
.h5_c01079{height:110.151855px;}
.h3_c01079{height:121.546875px;}
.h2_c01079{height:182.320312px;}
.h4_c01079{height:208.720312px;}
.h0_c01079{height:1382.700000px;}
.h1_c01079{height:1383.000000px;}
.w2_c01079{width:104.875500px;}
.w0_c01079{width:863.175000px;}
.w1_c01079{width:863.250000px;}
.x0_c01079{left:0.000000px;}
.xb_c01079{left:107.700000px;}
.x10_c01079{left:222.150000px;}
.x1_c01079{left:239.250000px;}
.x3_c01079{left:241.050000px;}
.x6_c01079{left:242.100000px;}
.x5_c01079{left:243.750000px;}
.x4_c01079{left:247.650000px;}
.xa_c01079{left:256.800000px;}
.x2_c01079{left:258.000000px;}
.x9_c01079{left:288.000000px;}
.xe_c01079{left:294.600000px;}
.x7_c01079{left:318.900000px;}
.x11_c01079{left:383.401749px;}
.x8_c01079{left:404.700000px;}
.xc_c01079{left:499.200000px;}
.xd_c01079{left:683.550000px;}
.xf_c01079{left:776.250000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.v1_c01079{vertical-align:23.466667pt;}
.ls5_c01079{letter-spacing:-2.666667pt;}
.ls2_c01079{letter-spacing:0.000000pt;}
.ls4_c01079{letter-spacing:5.333333pt;}
.ls1_c01079{letter-spacing:9.706667pt;}
.ls3_c01079{letter-spacing:13.333333pt;}
.ls0_c01079{letter-spacing:274.933333pt;}
.ws5_c01079{word-spacing:-55.797333pt;}
.ws2_c01079{word-spacing:-54.261333pt;}
.ws4_c01079{word-spacing:-45.333333pt;}
.ws0_c01079{word-spacing:-44.181333pt;}
.ws1_c01079{word-spacing:-30.848000pt;}
.ws3_c01079{word-spacing:-20.565333pt;}
.ws6_c01079{word-spacing:0.000000pt;}
._16_c01079{margin-left:-79.445333pt;}
._3f_c01079{margin-left:-78.421333pt;}
._5e_c01079{margin-left:-39.936000pt;}
._21_c01079{margin-left:-28.650667pt;}
._58_c01079{margin-left:-26.538667pt;}
._10_c01079{margin-left:-25.642667pt;}
._2d_c01079{margin-left:-23.168000pt;}
._a_c01079{margin-left:-22.272000pt;}
._c_c01079{margin-left:-19.541333pt;}
._46_c01079{margin-left:-18.432000pt;}
._12_c01079{margin-left:-17.066667pt;}
._30_c01079{margin-left:-15.872000pt;}
._39_c01079{margin-left:-14.080000pt;}
._f_c01079{margin-left:-12.714667pt;}
._31_c01079{margin-left:-10.880000pt;}
._4a_c01079{margin-left:-9.920000pt;}
._25_c01079{margin-left:-8.960000pt;}
._2a_c01079{margin-left:-7.296000pt;}
._24_c01079{margin-left:-6.400000pt;}
._1f_c01079{margin-left:-5.504000pt;}
._1e_c01079{margin-left:-4.608000pt;}
._1c_c01079{margin-left:-3.584000pt;}
._18_c01079{margin-left:-2.432000pt;}
._1a_c01079{margin-left:-1.152000pt;}
._9_c01079{width:1.152000pt;}
._3e_c01079{width:2.176000pt;}
._28_c01079{width:3.200000pt;}
._26_c01079{width:4.736000pt;}
._40_c01079{width:6.357333pt;}
._27_c01079{width:7.296000pt;}
._23_c01079{width:8.448000pt;}
._48_c01079{width:10.154667pt;}
._2_c01079{width:11.392000pt;}
._44_c01079{width:12.392000pt;}
._0_c01079{width:13.312000pt;}
._1_c01079{width:14.976000pt;}
._41_c01079{width:15.893333pt;}
._11_c01079{width:18.602667pt;}
._60_c01079{width:20.253333pt;}
._50_c01079{width:21.546667pt;}
._4b_c01079{width:23.168000pt;}
._d_c01079{width:24.490667pt;}
._5_c01079{width:25.984000pt;}
._22_c01079{width:27.776000pt;}
._55_c01079{width:28.672000pt;}
._4_c01079{width:29.696000pt;}
._53_c01079{width:30.677333pt;}
._51_c01079{width:32.469333pt;}
._7_c01079{width:33.408000pt;}
._4d_c01079{width:34.602667pt;}
._4e_c01079{width:36.394667pt;}
._4c_c01079{width:38.272000pt;}
._2c_c01079{width:39.680000pt;}
._52_c01079{width:41.472000pt;}
._3d_c01079{width:43.008000pt;}
._5a_c01079{width:44.117333pt;}
._54_c01079{width:45.994667pt;}
._56_c01079{width:47.061333pt;}
._59_c01079{width:48.000000pt;}
._2b_c01079{width:49.152000pt;}
._49_c01079{width:50.218667pt;}
._5c_c01079{width:51.285333pt;}
._36_c01079{width:52.736000pt;}
._33_c01079{width:53.760000pt;}
._b_c01079{width:55.125333pt;}
._3c_c01079{width:58.880000pt;}
._3b_c01079{width:60.416000pt;}
._5b_c01079{width:61.952000pt;}
._34_c01079{width:64.768000pt;}
._57_c01079{width:67.456000pt;}
._38_c01079{width:71.936000pt;}
._13_c01079{width:76.288000pt;}
._1d_c01079{width:80.000000pt;}
._19_c01079{width:85.376000pt;}
._3a_c01079{width:87.914667pt;}
._1b_c01079{width:91.136000pt;}
._37_c01079{width:97.152000pt;}
._17_c01079{width:99.413333pt;}
._32_c01079{width:100.821333pt;}
._45_c01079{width:103.530667pt;}
._35_c01079{width:105.088000pt;}
._2f_c01079{width:107.648000pt;}
._20_c01079{width:110.528000pt;}
._29_c01079{width:120.320000pt;}
._8_c01079{width:121.984000pt;}
._4f_c01079{width:126.336000pt;}
._2e_c01079{width:128.128000pt;}
._6_c01079{width:129.408000pt;}
._3_c01079{width:133.248000pt;}
._5f_c01079{width:153.386667pt;}
._42_c01079{width:192.090667pt;}
._15_c01079{width:243.029333pt;}
._14_c01079{width:253.525333pt;}
._5d_c01079{width:296.661333pt;}
._e_c01079{width:322.048000pt;}
._43_c01079{width:409.130667pt;}
._47_c01079{width:464.298667pt;}
.fs2_c01079{font-size:26.666667pt;}
.fs8_c01079{font-size:42.666667pt;}
.fs5_c01079{font-size:53.333333pt;}
.fs4_c01079{font-size:74.666667pt;}
.fs7_c01079{font-size:77.333333pt;}
.fs1_c01079{font-size:85.333333pt;}
.fs3_c01079{font-size:88.000000pt;}
.fs6_c01079{font-size:90.666667pt;}
.fs0_c01079{font-size:128.000000pt;}
.y0_c01079{bottom:0.000000pt;}
.y24_c01079{bottom:2.760000pt;}
.y23_c01079{bottom:6.425206pt;}
.y21_c01079{bottom:90.026667pt;}
.y22_c01079{bottom:117.093333pt;}
.y20_c01079{bottom:117.893333pt;}
.y1f_c01079{bottom:139.493333pt;}
.y1e_c01079{bottom:148.293333pt;}
.y1d_c01079{bottom:177.893333pt;}
.y1c_c01079{bottom:207.893333pt;}
.y1b_c01079{bottom:238.160000pt;}
.y1a_c01079{bottom:268.160000pt;}
.y19_c01079{bottom:297.893333pt;}
.y18_c01079{bottom:327.893333pt;}
.y17_c01079{bottom:357.893333pt;}
.y16_c01079{bottom:387.626667pt;}
.y15_c01079{bottom:417.626667pt;}
.y14_c01079{bottom:447.093333pt;}
.y13_c01079{bottom:477.093333pt;}
.y12_c01079{bottom:507.093333pt;}
.y11_c01079{bottom:536.960000pt;}
.y10_c01079{bottom:567.093333pt;}
.yf_c01079{bottom:596.160000pt;}
.ye_c01079{bottom:625.760000pt;}
.yd_c01079{bottom:653.360000pt;}
.yc_c01079{bottom:715.893333pt;}
.yb_c01079{bottom:746.426667pt;}
.ya_c01079{bottom:767.360000pt;}
.y9_c01079{bottom:812.426667pt;}
.y8_c01079{bottom:856.826667pt;}
.y7_c01079{bottom:901.226667pt;}
.y6_c01079{bottom:944.960000pt;}
.y5_c01079{bottom:990.026667pt;}
.y4_c01079{bottom:1034.160000pt;}
.y3_c01079{bottom:1079.093333pt;}
.y2_c01079{bottom:1106.960000pt;}
.y1_c01079{bottom:1122.560000pt;}
.h6_c01079{height:11.733399pt;}
.h7_c01079{height:38.937500pt;}
.h5_c01079{height:97.912760pt;}
.h3_c01079{height:108.041667pt;}
.h2_c01079{height:162.062500pt;}
.h4_c01079{height:185.529167pt;}
.h0_c01079{height:1229.066667pt;}
.h1_c01079{height:1229.333333pt;}
.w2_c01079{width:93.222667pt;}
.w0_c01079{width:767.266667pt;}
.w1_c01079{width:767.333333pt;}
.x0_c01079{left:0.000000pt;}
.xb_c01079{left:95.733333pt;}
.x10_c01079{left:197.466667pt;}
.x1_c01079{left:212.666667pt;}
.x3_c01079{left:214.266667pt;}
.x6_c01079{left:215.200000pt;}
.x5_c01079{left:216.666667pt;}
.x4_c01079{left:220.133333pt;}
.xa_c01079{left:228.266667pt;}
.x2_c01079{left:229.333333pt;}
.x9_c01079{left:256.000000pt;}
.xe_c01079{left:261.866667pt;}
.x7_c01079{left:283.466667pt;}
.x11_c01079{left:340.801554pt;}
.x8_c01079{left:359.733333pt;}
.xc_c01079{left:443.733333pt;}
.xd_c01079{left:607.600000pt;}
.xf_c01079{left:690.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_c01080 {
    display:none;
  }
  .loading-indicator_c01080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01080 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01080 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01080" -> "#page-container .classname_c01080")
 */
.pf_c01080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01080 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01080 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01080 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01080 {overflow:visible;}
  }
}
.c_c01080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01080 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01080:after { /* webkit #35443 */
  content: '';
}
.t_c01080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01080 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01080 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01080 { /* info for Javascript */
  display:none;
}
.l_c01080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_1abbd76765cca7d2c526da0e.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01080;src:url('chunks/assets/font_3e754e391250644b71d7ed62.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01080;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.ls0_c01080{letter-spacing:0.000000px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:-23.136000px;}
.ws1_c01080{word-spacing:-20.244000px;}
.ws2_c01080{word-spacing:0.000000px;}
._3a_c01080{margin-left:-54.624000px;}
._3f_c01080{margin-left:-30.528000px;}
._39_c01080{margin-left:-25.728000px;}
._38_c01080{margin-left:-22.464000px;}
._37_c01080{margin-left:-20.448000px;}
._34_c01080{margin-left:-16.512000px;}
._23_c01080{margin-left:-14.112000px;}
._3b_c01080{margin-left:-12.000000px;}
._b_c01080{margin-left:-9.504000px;}
._c_c01080{margin-left:-7.392000px;}
._d_c01080{margin-left:-6.336000px;}
._1e_c01080{margin-left:-3.648000px;}
._1d_c01080{margin-left:-2.304000px;}
._15_c01080{margin-left:-1.056000px;}
._9_c01080{width:1.152000px;}
._8_c01080{width:2.208000px;}
._4_c01080{width:3.456000px;}
._18_c01080{width:4.512000px;}
._3_c01080{width:5.568000px;}
._2_c01080{width:7.104000px;}
._29_c01080{width:8.352000px;}
._6_c01080{width:9.888000px;}
._17_c01080{width:10.944000px;}
._22_c01080{width:12.096000px;}
._7_c01080{width:13.632000px;}
._0_c01080{width:15.552000px;}
._e_c01080{width:16.704000px;}
._1_c01080{width:18.336000px;}
._2b_c01080{width:19.680000px;}
._12_c01080{width:21.600000px;}
._32_c01080{width:24.288000px;}
._33_c01080{width:26.304000px;}
._5_c01080{width:27.744000px;}
._2f_c01080{width:29.184000px;}
._2a_c01080{width:30.720000px;}
._24_c01080{width:31.776000px;}
._26_c01080{width:33.216000px;}
._20_c01080{width:34.272000px;}
._2e_c01080{width:35.424000px;}
._25_c01080{width:36.672000px;}
._10_c01080{width:38.688000px;}
._49_c01080{width:39.744000px;}
._11_c01080{width:40.992000px;}
._47_c01080{width:42.048000px;}
._f_c01080{width:43.200000px;}
._1f_c01080{width:44.736000px;}
._2d_c01080{width:45.792000px;}
._36_c01080{width:46.944000px;}
._14_c01080{width:48.000000px;}
._28_c01080{width:49.536000px;}
._4a_c01080{width:51.264000px;}
._13_c01080{width:52.416000px;}
._1b_c01080{width:54.336000px;}
._21_c01080{width:55.968000px;}
._19_c01080{width:57.792000px;}
._35_c01080{width:61.152000px;}
._27_c01080{width:63.072000px;}
._1a_c01080{width:65.376000px;}
._46_c01080{width:66.816000px;}
._2c_c01080{width:68.736000px;}
._1c_c01080{width:70.848000px;}
._44_c01080{width:72.312000px;}
._16_c01080{width:77.280000px;}
._41_c01080{width:79.296000px;}
._30_c01080{width:82.272000px;}
._4b_c01080{width:151.104000px;}
._42_c01080{width:155.520000px;}
._3e_c01080{width:185.568000px;}
._31_c01080{width:190.176000px;}
._48_c01080{width:271.680000px;}
._40_c01080{width:301.776000px;}
._3d_c01080{width:356.880000px;}
._43_c01080{width:381.600000px;}
._3c_c01080{width:417.984000px;}
._45_c01080{width:521.052000px;}
._4c_c01080{width:532.704000px;}
._a_c01080{width:733.152000px;}
.fc2_c01080{color:transparent;}
.fc1_c01080{color:rgb(128,128,128);}
.fc0_c01080{color:rgb(0,0,0);}
.fs2_c01080{font-size:48.000000px;}
.fs1_c01080{font-size:84.000000px;}
.fs0_c01080{font-size:96.000000px;}
.y0_c01080{bottom:0.000000px;}
.y28_c01080{bottom:3.105000px;}
.y27_c01080{bottom:7.228363px;}
.y26_c01080{bottom:114.000000px;}
.y25_c01080{bottom:148.500000px;}
.y24_c01080{bottom:183.600000px;}
.y23_c01080{bottom:217.800000px;}
.y22_c01080{bottom:251.550000px;}
.y21_c01080{bottom:286.500000px;}
.y20_c01080{bottom:319.950000px;}
.y1f_c01080{bottom:354.000000px;}
.y1e_c01080{bottom:388.200000px;}
.y1d_c01080{bottom:421.800000px;}
.y1c_c01080{bottom:455.550000px;}
.y1b_c01080{bottom:489.000000px;}
.y1a_c01080{bottom:522.150000px;}
.y19_c01080{bottom:553.800000px;}
.y18_c01080{bottom:572.400000px;}
.y17_c01080{bottom:589.950000px;}
.y16_c01080{bottom:625.050000px;}
.y15_c01080{bottom:658.500000px;}
.y14_c01080{bottom:690.900000px;}
.y13_c01080{bottom:724.050000px;}
.y12_c01080{bottom:757.650000px;}
.y11_c01080{bottom:790.500000px;}
.y10_c01080{bottom:823.050000px;}
.yf_c01080{bottom:856.200000px;}
.ye_c01080{bottom:888.750000px;}
.yd_c01080{bottom:922.800000px;}
.yc_c01080{bottom:956.550000px;}
.yb_c01080{bottom:989.250000px;}
.ya_c01080{bottom:1022.550000px;}
.y9_c01080{bottom:1054.800000px;}
.y8_c01080{bottom:1087.500000px;}
.y7_c01080{bottom:1120.800000px;}
.y6_c01080{bottom:1153.650000px;}
.y5_c01080{bottom:1186.350000px;}
.y4_c01080{bottom:1219.350000px;}
.y3_c01080{bottom:1252.500000px;}
.y2_c01080{bottom:1282.950000px;}
.y1_c01080{bottom:1318.650000px;}
.h2_c01080{height:13.200074px;}
.h3_c01080{height:43.804688px;}
.h1_c01080{height:121.546875px;}
.h0_c01080{height:1363.500000px;}
.w2_c01080{width:104.875500px;}
.w1_c01080{width:864.750000px;}
.w0_c01080{width:865.050000px;}
.x0_c01080{left:0.000000px;}
.x9_c01080{left:19.200000px;}
.x7_c01080{left:20.250000px;}
.x6_c01080{left:21.300000px;}
.x8_c01080{left:22.500000px;}
.x5_c01080{left:23.550000px;}
.x3_c01080{left:25.200000px;}
.x4_c01080{left:26.250000px;}
.x2_c01080{left:27.300000px;}
.xb_c01080{left:223.950000px;}
.xa_c01080{left:268.350000px;}
.xc_c01080{left:384.339249px;}
.x1_c01080{left:516.600000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls0_c01080{letter-spacing:0.000000pt;}
.ws0_c01080{word-spacing:-20.565333pt;}
.ws1_c01080{word-spacing:-17.994667pt;}
.ws2_c01080{word-spacing:0.000000pt;}
._3a_c01080{margin-left:-48.554667pt;}
._3f_c01080{margin-left:-27.136000pt;}
._39_c01080{margin-left:-22.869333pt;}
._38_c01080{margin-left:-19.968000pt;}
._37_c01080{margin-left:-18.176000pt;}
._34_c01080{margin-left:-14.677333pt;}
._23_c01080{margin-left:-12.544000pt;}
._3b_c01080{margin-left:-10.666667pt;}
._b_c01080{margin-left:-8.448000pt;}
._c_c01080{margin-left:-6.570667pt;}
._d_c01080{margin-left:-5.632000pt;}
._1e_c01080{margin-left:-3.242667pt;}
._1d_c01080{margin-left:-2.048000pt;}
._15_c01080{margin-left:-0.938667pt;}
._9_c01080{width:1.024000pt;}
._8_c01080{width:1.962667pt;}
._4_c01080{width:3.072000pt;}
._18_c01080{width:4.010667pt;}
._3_c01080{width:4.949333pt;}
._2_c01080{width:6.314667pt;}
._29_c01080{width:7.424000pt;}
._6_c01080{width:8.789333pt;}
._17_c01080{width:9.728000pt;}
._22_c01080{width:10.752000pt;}
._7_c01080{width:12.117333pt;}
._0_c01080{width:13.824000pt;}
._e_c01080{width:14.848000pt;}
._1_c01080{width:16.298667pt;}
._2b_c01080{width:17.493333pt;}
._12_c01080{width:19.200000pt;}
._32_c01080{width:21.589333pt;}
._33_c01080{width:23.381333pt;}
._5_c01080{width:24.661333pt;}
._2f_c01080{width:25.941333pt;}
._2a_c01080{width:27.306667pt;}
._24_c01080{width:28.245333pt;}
._26_c01080{width:29.525333pt;}
._20_c01080{width:30.464000pt;}
._2e_c01080{width:31.488000pt;}
._25_c01080{width:32.597333pt;}
._10_c01080{width:34.389333pt;}
._49_c01080{width:35.328000pt;}
._11_c01080{width:36.437333pt;}
._47_c01080{width:37.376000pt;}
._f_c01080{width:38.400000pt;}
._1f_c01080{width:39.765333pt;}
._2d_c01080{width:40.704000pt;}
._36_c01080{width:41.728000pt;}
._14_c01080{width:42.666667pt;}
._28_c01080{width:44.032000pt;}
._4a_c01080{width:45.568000pt;}
._13_c01080{width:46.592000pt;}
._1b_c01080{width:48.298667pt;}
._21_c01080{width:49.749333pt;}
._19_c01080{width:51.370667pt;}
._35_c01080{width:54.357333pt;}
._27_c01080{width:56.064000pt;}
._1a_c01080{width:58.112000pt;}
._46_c01080{width:59.392000pt;}
._2c_c01080{width:61.098667pt;}
._1c_c01080{width:62.976000pt;}
._44_c01080{width:64.277333pt;}
._16_c01080{width:68.693333pt;}
._41_c01080{width:70.485333pt;}
._30_c01080{width:73.130667pt;}
._4b_c01080{width:134.314667pt;}
._42_c01080{width:138.240000pt;}
._3e_c01080{width:164.949333pt;}
._31_c01080{width:169.045333pt;}
._48_c01080{width:241.493333pt;}
._40_c01080{width:268.245333pt;}
._3d_c01080{width:317.226667pt;}
._43_c01080{width:339.200000pt;}
._3c_c01080{width:371.541333pt;}
._45_c01080{width:463.157333pt;}
._4c_c01080{width:473.514667pt;}
._a_c01080{width:651.690667pt;}
.fs2_c01080{font-size:42.666667pt;}
.fs1_c01080{font-size:74.666667pt;}
.fs0_c01080{font-size:85.333333pt;}
.y0_c01080{bottom:0.000000pt;}
.y28_c01080{bottom:2.760000pt;}
.y27_c01080{bottom:6.425212pt;}
.y26_c01080{bottom:101.333333pt;}
.y25_c01080{bottom:132.000000pt;}
.y24_c01080{bottom:163.200000pt;}
.y23_c01080{bottom:193.600000pt;}
.y22_c01080{bottom:223.600000pt;}
.y21_c01080{bottom:254.666667pt;}
.y20_c01080{bottom:284.400000pt;}
.y1f_c01080{bottom:314.666667pt;}
.y1e_c01080{bottom:345.066667pt;}
.y1d_c01080{bottom:374.933333pt;}
.y1c_c01080{bottom:404.933333pt;}
.y1b_c01080{bottom:434.666667pt;}
.y1a_c01080{bottom:464.133333pt;}
.y19_c01080{bottom:492.266667pt;}
.y18_c01080{bottom:508.800000pt;}
.y17_c01080{bottom:524.400000pt;}
.y16_c01080{bottom:555.600000pt;}
.y15_c01080{bottom:585.333333pt;}
.y14_c01080{bottom:614.133333pt;}
.y13_c01080{bottom:643.600000pt;}
.y12_c01080{bottom:673.466667pt;}
.y11_c01080{bottom:702.666667pt;}
.y10_c01080{bottom:731.600000pt;}
.yf_c01080{bottom:761.066667pt;}
.ye_c01080{bottom:790.000000pt;}
.yd_c01080{bottom:820.266667pt;}
.yc_c01080{bottom:850.266667pt;}
.yb_c01080{bottom:879.333333pt;}
.ya_c01080{bottom:908.933333pt;}
.y9_c01080{bottom:937.600000pt;}
.y8_c01080{bottom:966.666667pt;}
.y7_c01080{bottom:996.266667pt;}
.y6_c01080{bottom:1025.466667pt;}
.y5_c01080{bottom:1054.533333pt;}
.y4_c01080{bottom:1083.866667pt;}
.y3_c01080{bottom:1113.333333pt;}
.y2_c01080{bottom:1140.400000pt;}
.y1_c01080{bottom:1172.133333pt;}
.h2_c01080{height:11.733399pt;}
.h3_c01080{height:38.937500pt;}
.h1_c01080{height:108.041667pt;}
.h0_c01080{height:1212.000000pt;}
.w2_c01080{width:93.222667pt;}
.w1_c01080{width:768.666667pt;}
.w0_c01080{width:768.933333pt;}
.x0_c01080{left:0.000000pt;}
.x9_c01080{left:17.066667pt;}
.x7_c01080{left:18.000000pt;}
.x6_c01080{left:18.933333pt;}
.x8_c01080{left:20.000000pt;}
.x5_c01080{left:20.933333pt;}
.x3_c01080{left:22.400000pt;}
.x4_c01080{left:23.333333pt;}
.x2_c01080{left:24.266667pt;}
.xb_c01080{left:199.066667pt;}
.xa_c01080{left:238.533333pt;}
.xc_c01080{left:341.634888pt;}
.x1_c01080{left:459.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_c01081 {
    display:none;
  }
  .loading-indicator_c01081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01081 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01081 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01081" -> "#page-container .classname_c01081")
 */
.pf_c01081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01081 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01081 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01081 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01081 {overflow:visible;}
  }
}
.c_c01081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01081 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01081:after { /* webkit #35443 */
  content: '';
}
.t_c01081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01081 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01081 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01081 { /* info for Javascript */
  display:none;
}
.l_c01081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_9d81f74059ac780d4c04e6d4.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01081;src:url('chunks/assets/font_34e360f98dddfe6815c8ee6e.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01081;src:url('chunks/assets/font_af56134b1a872d0db9ae4e21.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01081;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01081;src:url('chunks/assets/font_9f23b2ebe11104dd75e0f6a1.woff2')format("woff");}.ff5_c01081{font-family:ff5_c01081;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01081;src:url('chunks/assets/font_35983d9b3e29fc5893c27132.woff2')format("woff");}.ff6_c01081{font-family:ff6_c01081;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01081;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c01081{font-family:ff7_c01081;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls4_c01081{letter-spacing:-6.000000px;}
.ls3_c01081{letter-spacing:0.000000px;}
.ls1_c01081{letter-spacing:6.000000px;}
.ls2_c01081{letter-spacing:7.584000px;}
.ls0_c01081{letter-spacing:8.520000px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01081{word-spacing:-61.044000px;}
.ws1_c01081{word-spacing:-51.000000px;}
.ws4_c01081{word-spacing:-23.136000px;}
.ws0_c01081{word-spacing:-20.244000px;}
.ws5_c01081{word-spacing:0.000000px;}
.ws3_c01081{word-spacing:1.008000px;}
._30_c01081{margin-left:-86.400000px;}
._4b_c01081{margin-left:-55.728000px;}
._55_c01081{margin-left:-53.040000px;}
._57_c01081{margin-left:-48.756000px;}
._58_c01081{margin-left:-39.678000px;}
._4c_c01081{margin-left:-37.488000px;}
._56_c01081{margin-left:-35.280000px;}
._2c_c01081{margin-left:-31.488000px;}
._3f_c01081{margin-left:-28.800000px;}
._50_c01081{margin-left:-25.272000px;}
._47_c01081{margin-left:-24.192000px;}
._52_c01081{margin-left:-22.644000px;}
._53_c01081{margin-left:-17.346000px;}
._3e_c01081{margin-left:-16.080000px;}
._4d_c01081{margin-left:-13.776000px;}
._33_c01081{margin-left:-12.288000px;}
._2d_c01081{margin-left:-10.626000px;}
._32_c01081{margin-left:-9.504000px;}
._e_c01081{margin-left:-8.256000px;}
._d_c01081{margin-left:-6.624000px;}
._18_c01081{margin-left:-5.376000px;}
._19_c01081{margin-left:-4.320000px;}
._6_c01081{margin-left:-2.976000px;}
._0_c01081{margin-left:-1.536000px;}
._3_c01081{width:1.512000px;}
._8_c01081{width:2.808000px;}
._9_c01081{width:4.584000px;}
._2_c01081{width:6.048000px;}
._14_c01081{width:7.368000px;}
._15_c01081{width:8.808000px;}
._b_c01081{width:10.704000px;}
._43_c01081{width:11.784000px;}
._39_c01081{width:12.840000px;}
._a_c01081{width:14.424000px;}
._28_c01081{width:16.488000px;}
._12_c01081{width:17.748000px;}
._1d_c01081{width:19.392000px;}
._3a_c01081{width:20.664000px;}
._2b_c01081{width:22.020000px;}
._17_c01081{width:26.088000px;}
._1_c01081{width:27.144000px;}
._2a_c01081{width:28.728000px;}
._37_c01081{width:30.000000px;}
._38_c01081{width:31.608000px;}
._1f_c01081{width:32.880000px;}
._11_c01081{width:34.128000px;}
._4_c01081{width:36.708000px;}
._c_c01081{width:38.496000px;}
._1a_c01081{width:40.536000px;}
._1b_c01081{width:41.856000px;}
._13_c01081{width:42.912000px;}
._5_c01081{width:44.772000px;}
._29_c01081{width:46.896000px;}
._10_c01081{width:47.928000px;}
._1e_c01081{width:49.920000px;}
._24_c01081{width:50.976000px;}
._26_c01081{width:52.032000px;}
._36_c01081{width:53.328000px;}
._1c_c01081{width:55.656000px;}
._16_c01081{width:57.672000px;}
._40_c01081{width:58.776000px;}
._25_c01081{width:61.152000px;}
._21_c01081{width:62.208000px;}
._27_c01081{width:63.744000px;}
._41_c01081{width:65.088000px;}
._46_c01081{width:66.312000px;}
._23_c01081{width:68.544000px;}
._3d_c01081{width:69.624000px;}
._22_c01081{width:71.640000px;}
._45_c01081{width:73.440000px;}
._20_c01081{width:75.624000px;}
._49_c01081{width:76.776000px;}
._35_c01081{width:86.316000px;}
._42_c01081{width:90.864000px;}
._7_c01081{width:101.040000px;}
._4f_c01081{width:111.828000px;}
._48_c01081{width:112.992000px;}
._44_c01081{width:120.456000px;}
._54_c01081{width:146.136000px;}
._2e_c01081{width:170.160000px;}
._4a_c01081{width:214.944000px;}
._3c_c01081{width:217.776000px;}
._51_c01081{width:237.960000px;}
._34_c01081{width:336.288000px;}
._4e_c01081{width:508.608000px;}
._31_c01081{width:591.552000px;}
._f_c01081{width:758.100000px;}
._3b_c01081{width:786.936000px;}
._2f_c01081{width:856.896000px;}
.fc2_c01081{color:transparent;}
.fc1_c01081{color:rgb(128,128,128);}
.fc0_c01081{color:rgb(0,0,0);}
.fs5_c01081{font-size:48.000000px;}
.fs1_c01081{font-size:84.000000px;}
.fs0_c01081{font-size:96.000000px;}
.fs3_c01081{font-size:99.000000px;}
.fs2_c01081{font-size:102.000000px;}
.fs4_c01081{font-size:144.000000px;}
.y0_c01081{bottom:0.000000px;}
.y23_c01081{bottom:3.105000px;}
.y22_c01081{bottom:7.228357px;}
.y20_c01081{bottom:116.880000px;}
.y21_c01081{bottom:119.130000px;}
.y1f_c01081{bottom:147.480000px;}
.y1e_c01081{bottom:181.530000px;}
.y1d_c01081{bottom:216.030000px;}
.y1c_c01081{bottom:249.180000px;}
.y1b_c01081{bottom:284.880000px;}
.y1a_c01081{bottom:318.330000px;}
.y19_c01081{bottom:351.330000px;}
.y18_c01081{bottom:385.080000px;}
.y17_c01081{bottom:483.930000px;}
.y16_c01081{bottom:528.630000px;}
.y15_c01081{bottom:578.880000px;}
.y14_c01081{bottom:656.880000px;}
.y13_c01081{bottom:690.930000px;}
.y12_c01081{bottom:724.680000px;}
.y11_c01081{bottom:757.680000px;}
.y10_c01081{bottom:790.080000px;}
.yf_c01081{bottom:824.880000px;}
.ye_c01081{bottom:857.580000px;}
.yd_c01081{bottom:891.330000px;}
.yc_c01081{bottom:924.180000px;}
.yb_c01081{bottom:957.780000px;}
.ya_c01081{bottom:990.930000px;}
.y9_c01081{bottom:1027.380000px;}
.y8_c01081{bottom:1056.780000px;}
.y7_c01081{bottom:1090.830000px;}
.y6_c01081{bottom:1124.280000px;}
.y5_c01081{bottom:1157.730000px;}
.y4_c01081{bottom:1190.730000px;}
.y3_c01081{bottom:1224.180000px;}
.y2_c01081{bottom:1256.880000px;}
.y1_c01081{bottom:1289.580000px;}
.h5_c01081{height:13.200074px;}
.h6_c01081{height:43.804688px;}
.h2_c01081{height:121.546875px;}
.h4_c01081{height:129.143555px;}
.h3_c01081{height:182.320312px;}
.h0_c01081{height:1382.700000px;}
.h1_c01081{height:1383.000000px;}
.w2_c01081{width:104.875500px;}
.w0_c01081{width:863.175000px;}
.w1_c01081{width:863.250000px;}
.x0_c01081{left:0.000000px;}
.x2_c01081{left:25.650000px;}
.x1_c01081{left:59.700000px;}
.x3_c01081{left:253.500000px;}
.x4_c01081{left:255.150000px;}
.x7_c01081{left:256.200000px;}
.xc_c01081{left:258.900000px;}
.x9_c01081{left:261.600000px;}
.xd_c01081{left:262.650000px;}
.x8_c01081{left:269.100000px;}
.x5_c01081{left:303.750000px;}
.x6_c01081{left:316.200000px;}
.x10_c01081{left:383.401749px;}
.xf_c01081{left:454.050000px;}
.xa_c01081{left:473.850000px;}
.xb_c01081{left:512.100000px;}
.xe_c01081{left:783.750000px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls4_c01081{letter-spacing:-5.333333pt;}
.ls3_c01081{letter-spacing:0.000000pt;}
.ls1_c01081{letter-spacing:5.333333pt;}
.ls2_c01081{letter-spacing:6.741333pt;}
.ls0_c01081{letter-spacing:7.573333pt;}
.ws2_c01081{word-spacing:-54.261333pt;}
.ws1_c01081{word-spacing:-45.333333pt;}
.ws4_c01081{word-spacing:-20.565333pt;}
.ws0_c01081{word-spacing:-17.994667pt;}
.ws5_c01081{word-spacing:0.000000pt;}
.ws3_c01081{word-spacing:0.896000pt;}
._30_c01081{margin-left:-76.800000pt;}
._4b_c01081{margin-left:-49.536000pt;}
._55_c01081{margin-left:-47.146667pt;}
._57_c01081{margin-left:-43.338667pt;}
._58_c01081{margin-left:-35.269333pt;}
._4c_c01081{margin-left:-33.322667pt;}
._56_c01081{margin-left:-31.360000pt;}
._2c_c01081{margin-left:-27.989333pt;}
._3f_c01081{margin-left:-25.600000pt;}
._50_c01081{margin-left:-22.464000pt;}
._47_c01081{margin-left:-21.504000pt;}
._52_c01081{margin-left:-20.128000pt;}
._53_c01081{margin-left:-15.418667pt;}
._3e_c01081{margin-left:-14.293333pt;}
._4d_c01081{margin-left:-12.245333pt;}
._33_c01081{margin-left:-10.922667pt;}
._2d_c01081{margin-left:-9.445333pt;}
._32_c01081{margin-left:-8.448000pt;}
._e_c01081{margin-left:-7.338667pt;}
._d_c01081{margin-left:-5.888000pt;}
._18_c01081{margin-left:-4.778667pt;}
._19_c01081{margin-left:-3.840000pt;}
._6_c01081{margin-left:-2.645333pt;}
._0_c01081{margin-left:-1.365333pt;}
._3_c01081{width:1.344000pt;}
._8_c01081{width:2.496000pt;}
._9_c01081{width:4.074667pt;}
._2_c01081{width:5.376000pt;}
._14_c01081{width:6.549333pt;}
._15_c01081{width:7.829333pt;}
._b_c01081{width:9.514667pt;}
._43_c01081{width:10.474667pt;}
._39_c01081{width:11.413333pt;}
._a_c01081{width:12.821333pt;}
._28_c01081{width:14.656000pt;}
._12_c01081{width:15.776000pt;}
._1d_c01081{width:17.237333pt;}
._3a_c01081{width:18.368000pt;}
._2b_c01081{width:19.573333pt;}
._17_c01081{width:23.189333pt;}
._1_c01081{width:24.128000pt;}
._2a_c01081{width:25.536000pt;}
._37_c01081{width:26.666667pt;}
._38_c01081{width:28.096000pt;}
._1f_c01081{width:29.226667pt;}
._11_c01081{width:30.336000pt;}
._4_c01081{width:32.629333pt;}
._c_c01081{width:34.218667pt;}
._1a_c01081{width:36.032000pt;}
._1b_c01081{width:37.205333pt;}
._13_c01081{width:38.144000pt;}
._5_c01081{width:39.797333pt;}
._29_c01081{width:41.685333pt;}
._10_c01081{width:42.602667pt;}
._1e_c01081{width:44.373333pt;}
._24_c01081{width:45.312000pt;}
._26_c01081{width:46.250667pt;}
._36_c01081{width:47.402667pt;}
._1c_c01081{width:49.472000pt;}
._16_c01081{width:51.264000pt;}
._40_c01081{width:52.245333pt;}
._25_c01081{width:54.357333pt;}
._21_c01081{width:55.296000pt;}
._27_c01081{width:56.661333pt;}
._41_c01081{width:57.856000pt;}
._46_c01081{width:58.944000pt;}
._23_c01081{width:60.928000pt;}
._3d_c01081{width:61.888000pt;}
._22_c01081{width:63.680000pt;}
._45_c01081{width:65.280000pt;}
._20_c01081{width:67.221333pt;}
._49_c01081{width:68.245333pt;}
._35_c01081{width:76.725333pt;}
._42_c01081{width:80.768000pt;}
._7_c01081{width:89.813333pt;}
._4f_c01081{width:99.402667pt;}
._48_c01081{width:100.437333pt;}
._44_c01081{width:107.072000pt;}
._54_c01081{width:129.898667pt;}
._2e_c01081{width:151.253333pt;}
._4a_c01081{width:191.061333pt;}
._3c_c01081{width:193.578667pt;}
._51_c01081{width:211.520000pt;}
._34_c01081{width:298.922667pt;}
._4e_c01081{width:452.096000pt;}
._31_c01081{width:525.824000pt;}
._f_c01081{width:673.866667pt;}
._3b_c01081{width:699.498667pt;}
._2f_c01081{width:761.685333pt;}
.fs5_c01081{font-size:42.666667pt;}
.fs1_c01081{font-size:74.666667pt;}
.fs0_c01081{font-size:85.333333pt;}
.fs3_c01081{font-size:88.000000pt;}
.fs2_c01081{font-size:90.666667pt;}
.fs4_c01081{font-size:128.000000pt;}
.y0_c01081{bottom:0.000000pt;}
.y23_c01081{bottom:2.760000pt;}
.y22_c01081{bottom:6.425206pt;}
.y20_c01081{bottom:103.893333pt;}
.y21_c01081{bottom:105.893333pt;}
.y1f_c01081{bottom:131.093333pt;}
.y1e_c01081{bottom:161.360000pt;}
.y1d_c01081{bottom:192.026667pt;}
.y1c_c01081{bottom:221.493333pt;}
.y1b_c01081{bottom:253.226667pt;}
.y1a_c01081{bottom:282.960000pt;}
.y19_c01081{bottom:312.293333pt;}
.y18_c01081{bottom:342.293333pt;}
.y17_c01081{bottom:430.160000pt;}
.y16_c01081{bottom:469.893333pt;}
.y15_c01081{bottom:514.560000pt;}
.y14_c01081{bottom:583.893333pt;}
.y13_c01081{bottom:614.160000pt;}
.y12_c01081{bottom:644.160000pt;}
.y11_c01081{bottom:673.493333pt;}
.y10_c01081{bottom:702.293333pt;}
.yf_c01081{bottom:733.226667pt;}
.ye_c01081{bottom:762.293333pt;}
.yd_c01081{bottom:792.293333pt;}
.yc_c01081{bottom:821.493333pt;}
.yb_c01081{bottom:851.360000pt;}
.ya_c01081{bottom:880.826667pt;}
.y9_c01081{bottom:913.226667pt;}
.y8_c01081{bottom:939.360000pt;}
.y7_c01081{bottom:969.626667pt;}
.y6_c01081{bottom:999.360000pt;}
.y5_c01081{bottom:1029.093333pt;}
.y4_c01081{bottom:1058.426667pt;}
.y3_c01081{bottom:1088.160000pt;}
.y2_c01081{bottom:1117.226667pt;}
.y1_c01081{bottom:1146.293333pt;}
.h5_c01081{height:11.733399pt;}
.h6_c01081{height:38.937500pt;}
.h2_c01081{height:108.041667pt;}
.h4_c01081{height:114.794271pt;}
.h3_c01081{height:162.062500pt;}
.h0_c01081{height:1229.066667pt;}
.h1_c01081{height:1229.333333pt;}
.w2_c01081{width:93.222667pt;}
.w0_c01081{width:767.266667pt;}
.w1_c01081{width:767.333333pt;}
.x0_c01081{left:0.000000pt;}
.x2_c01081{left:22.800000pt;}
.x1_c01081{left:53.066667pt;}
.x3_c01081{left:225.333333pt;}
.x4_c01081{left:226.800000pt;}
.x7_c01081{left:227.733333pt;}
.xc_c01081{left:230.133333pt;}
.x9_c01081{left:232.533333pt;}
.xd_c01081{left:233.466667pt;}
.x8_c01081{left:239.200000pt;}
.x5_c01081{left:270.000000pt;}
.x6_c01081{left:281.066667pt;}
.x10_c01081{left:340.801554pt;}
.xf_c01081{left:403.600000pt;}
.xa_c01081{left:421.200000pt;}
.xb_c01081{left:455.200000pt;}
.xe_c01081{left:696.666667pt;}
}





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

.ir_c01082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_1a1fef7fcd7de41f132fe834.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01082;src:url('chunks/assets/font_16fe56607937b1f5d228695c.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01082;src:url('chunks/assets/font_a011980556480e2bcb965c36.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01082;src:url('chunks/assets/font_f0e1b99de3553f9d5c093056.woff2')format("woff");}.ff4_c01082{font-family:ff4_c01082;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01082;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01082{font-family:ff5_c01082;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls2_c01082{letter-spacing:-9.000000px;}
.ls0_c01082{letter-spacing:0.000000px;}
.ls1_c01082{letter-spacing:15.000000px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01082{word-spacing:-51.000000px;}
.ws2_c01082{word-spacing:-35.244000px;}
.ws0_c01082{word-spacing:-23.136000px;}
.ws1_c01082{word-spacing:-20.244000px;}
.ws6_c01082{word-spacing:0.000000px;}
.ws3_c01082{word-spacing:0.840000px;}
.ws5_c01082{word-spacing:8.907000px;}
._43_c01082{margin-left:-34.944000px;}
._26_c01082{margin-left:-27.552000px;}
._3b_c01082{margin-left:-25.920000px;}
._42_c01082{margin-left:-24.723000px;}
._40_c01082{margin-left:-19.227000px;}
._41_c01082{margin-left:-17.988000px;}
._35_c01082{margin-left:-16.572000px;}
._22_c01082{margin-left:-14.688000px;}
._2f_c01082{margin-left:-13.056000px;}
._e_c01082{margin-left:-11.616000px;}
._d_c01082{margin-left:-9.120000px;}
._38_c01082{margin-left:-8.088000px;}
._1b_c01082{margin-left:-5.640000px;}
._f_c01082{margin-left:-4.032000px;}
._16_c01082{margin-left:-2.496000px;}
._4_c01082{margin-left:-1.344000px;}
._17_c01082{width:1.044000px;}
._2_c01082{width:2.304000px;}
._1_c01082{width:4.128000px;}
._11_c01082{width:5.664000px;}
._7_c01082{width:7.008000px;}
._28_c01082{width:8.160000px;}
._24_c01082{width:9.600000px;}
._0_c01082{width:10.752000px;}
._a_c01082{width:12.384000px;}
._6_c01082{width:13.440000px;}
._8_c01082{width:15.168000px;}
._36_c01082{width:16.476000px;}
._b_c01082{width:17.664000px;}
._3_c01082{width:19.200000px;}
._9_c01082{width:21.504000px;}
._32_c01082{width:22.908000px;}
._5_c01082{width:25.344000px;}
._2b_c01082{width:27.444000px;}
._1c_c01082{width:28.608000px;}
._13_c01082{width:29.856000px;}
._15_c01082{width:32.316000px;}
._12_c01082{width:33.708000px;}
._18_c01082{width:35.040000px;}
._29_c01082{width:36.492000px;}
._37_c01082{width:38.160000px;}
._14_c01082{width:39.504000px;}
._27_c01082{width:41.088000px;}
._3e_c01082{width:42.444000px;}
._19_c01082{width:43.512000px;}
._20_c01082{width:44.724000px;}
._1d_c01082{width:46.368000px;}
._2a_c01082{width:47.616000px;}
._2d_c01082{width:49.860000px;}
._10_c01082{width:51.552000px;}
._25_c01082{width:53.376000px;}
._c_c01082{width:54.720000px;}
._34_c01082{width:56.436000px;}
._3a_c01082{width:58.644000px;}
._23_c01082{width:60.192000px;}
._1e_c01082{width:62.892000px;}
._1f_c01082{width:65.280000px;}
._1a_c01082{width:67.488000px;}
._3d_c01082{width:69.504000px;}
._33_c01082{width:71.424000px;}
._21_c01082{width:74.016000px;}
._3c_c01082{width:80.844000px;}
._2c_c01082{width:85.080000px;}
._3f_c01082{width:113.964000px;}
._39_c01082{width:120.576000px;}
._31_c01082{width:145.344000px;}
._30_c01082{width:308.352000px;}
._2e_c01082{width:381.240000px;}
.fc2_c01082{color:transparent;}
.fc1_c01082{color:rgb(128,128,128);}
.fc0_c01082{color:rgb(0,0,0);}
.fs3_c01082{font-size:30.000000px;}
.fs6_c01082{font-size:48.000000px;}
.fs1_c01082{font-size:84.000000px;}
.fs4_c01082{font-size:87.000000px;}
.fs5_c01082{font-size:93.000000px;}
.fs0_c01082{font-size:96.000000px;}
.fs2_c01082{font-size:102.000000px;}
.y0_c01082{bottom:0.000000px;}
.y25_c01082{bottom:3.105000px;}
.y24_c01082{bottom:7.228371px;}
.y22_c01082{bottom:117.165000px;}
.y21_c01082{bottom:190.665000px;}
.y20_c01082{bottom:200.115000px;}
.y23_c01082{bottom:233.265000px;}
.y1f_c01082{bottom:321.765000px;}
.y1e_c01082{bottom:357.165000px;}
.y1d_c01082{bottom:390.615000px;}
.y1c_c01082{bottom:424.965000px;}
.y1b_c01082{bottom:458.715000px;}
.y1a_c01082{bottom:492.165000px;}
.y19_c01082{bottom:525.615000px;}
.y18_c01082{bottom:559.365000px;}
.y17_c01082{bottom:592.665000px;}
.y16_c01082{bottom:626.715000px;}
.y15_c01082{bottom:660.465000px;}
.y14_c01082{bottom:692.865000px;}
.y13_c01082{bottom:726.765000px;}
.y12_c01082{bottom:760.065000px;}
.y11_c01082{bottom:793.815000px;}
.y10_c01082{bottom:826.515000px;}
.yf_c01082{bottom:858.015000px;}
.ye_c01082{bottom:891.765000px;}
.yd_c01082{bottom:925.515000px;}
.yc_c01082{bottom:958.815000px;}
.yb_c01082{bottom:991.365000px;}
.ya_c01082{bottom:1024.665000px;}
.y9_c01082{bottom:1057.815000px;}
.y8_c01082{bottom:1090.515000px;}
.y7_c01082{bottom:1123.215000px;}
.y6_c01082{bottom:1156.065000px;}
.y5_c01082{bottom:1189.065000px;}
.y4_c01082{bottom:1222.515000px;}
.y3_c01082{bottom:1255.815000px;}
.y2_c01082{bottom:1289.715000px;}
.y1_c01082{bottom:1323.015000px;}
.h6_c01082{height:13.200074px;}
.h3_c01082{height:37.983398px;}
.h7_c01082{height:43.804688px;}
.h5_c01082{height:96.814453px;}
.h4_c01082{height:110.151855px;}
.h2_c01082{height:121.546875px;}
.h1_c01082{height:1371.000000px;}
.h0_c01082{height:1371.075000px;}
.w2_c01082{width:104.875500px;}
.w0_c01082{width:869.925000px;}
.w1_c01082{width:870.000000px;}
.x0_c01082{left:0.000000px;}
.x9_c01082{left:32.700000px;}
.xb_c01082{left:38.700000px;}
.xa_c01082{left:39.750000px;}
.x8_c01082{left:40.800000px;}
.x7_c01082{left:42.450000px;}
.x6_c01082{left:43.500000px;}
.x4_c01082{left:44.550000px;}
.x5_c01082{left:46.200000px;}
.x2_c01082{left:48.300000px;}
.x3_c01082{left:49.950000px;}
.xd_c01082{left:124.500000px;}
.xc_c01082{left:127.500000px;}
.x10_c01082{left:386.776749px;}
.x1_c01082{left:553.200000px;}
.xe_c01082{left:566.700000px;}
.xf_c01082{left:825.450000px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls2_c01082{letter-spacing:-8.000000pt;}
.ls0_c01082{letter-spacing:0.000000pt;}
.ls1_c01082{letter-spacing:13.333333pt;}
.ws4_c01082{word-spacing:-45.333333pt;}
.ws2_c01082{word-spacing:-31.328000pt;}
.ws0_c01082{word-spacing:-20.565333pt;}
.ws1_c01082{word-spacing:-17.994667pt;}
.ws6_c01082{word-spacing:0.000000pt;}
.ws3_c01082{word-spacing:0.746667pt;}
.ws5_c01082{word-spacing:7.917333pt;}
._43_c01082{margin-left:-31.061333pt;}
._26_c01082{margin-left:-24.490667pt;}
._3b_c01082{margin-left:-23.040000pt;}
._42_c01082{margin-left:-21.976000pt;}
._40_c01082{margin-left:-17.090667pt;}
._41_c01082{margin-left:-15.989333pt;}
._35_c01082{margin-left:-14.730667pt;}
._22_c01082{margin-left:-13.056000pt;}
._2f_c01082{margin-left:-11.605333pt;}
._e_c01082{margin-left:-10.325333pt;}
._d_c01082{margin-left:-8.106667pt;}
._38_c01082{margin-left:-7.189333pt;}
._1b_c01082{margin-left:-5.013333pt;}
._f_c01082{margin-left:-3.584000pt;}
._16_c01082{margin-left:-2.218667pt;}
._4_c01082{margin-left:-1.194667pt;}
._17_c01082{width:0.928000pt;}
._2_c01082{width:2.048000pt;}
._1_c01082{width:3.669333pt;}
._11_c01082{width:5.034667pt;}
._7_c01082{width:6.229333pt;}
._28_c01082{width:7.253333pt;}
._24_c01082{width:8.533333pt;}
._0_c01082{width:9.557333pt;}
._a_c01082{width:11.008000pt;}
._6_c01082{width:11.946667pt;}
._8_c01082{width:13.482667pt;}
._36_c01082{width:14.645333pt;}
._b_c01082{width:15.701333pt;}
._3_c01082{width:17.066667pt;}
._9_c01082{width:19.114667pt;}
._32_c01082{width:20.362667pt;}
._5_c01082{width:22.528000pt;}
._2b_c01082{width:24.394667pt;}
._1c_c01082{width:25.429333pt;}
._13_c01082{width:26.538667pt;}
._15_c01082{width:28.725333pt;}
._12_c01082{width:29.962667pt;}
._18_c01082{width:31.146667pt;}
._29_c01082{width:32.437333pt;}
._37_c01082{width:33.920000pt;}
._14_c01082{width:35.114667pt;}
._27_c01082{width:36.522667pt;}
._3e_c01082{width:37.728000pt;}
._19_c01082{width:38.677333pt;}
._20_c01082{width:39.754667pt;}
._1d_c01082{width:41.216000pt;}
._2a_c01082{width:42.325333pt;}
._2d_c01082{width:44.320000pt;}
._10_c01082{width:45.824000pt;}
._25_c01082{width:47.445333pt;}
._c_c01082{width:48.640000pt;}
._34_c01082{width:50.165333pt;}
._3a_c01082{width:52.128000pt;}
._23_c01082{width:53.504000pt;}
._1e_c01082{width:55.904000pt;}
._1f_c01082{width:58.026667pt;}
._1a_c01082{width:59.989333pt;}
._3d_c01082{width:61.781333pt;}
._33_c01082{width:63.488000pt;}
._21_c01082{width:65.792000pt;}
._3c_c01082{width:71.861333pt;}
._2c_c01082{width:75.626667pt;}
._3f_c01082{width:101.301333pt;}
._39_c01082{width:107.178667pt;}
._31_c01082{width:129.194667pt;}
._30_c01082{width:274.090667pt;}
._2e_c01082{width:338.880000pt;}
.fs3_c01082{font-size:26.666667pt;}
.fs6_c01082{font-size:42.666667pt;}
.fs1_c01082{font-size:74.666667pt;}
.fs4_c01082{font-size:77.333333pt;}
.fs5_c01082{font-size:82.666667pt;}
.fs0_c01082{font-size:85.333333pt;}
.fs2_c01082{font-size:90.666667pt;}
.y0_c01082{bottom:0.000000pt;}
.y25_c01082{bottom:2.760000pt;}
.y24_c01082{bottom:6.425219pt;}
.y22_c01082{bottom:104.146667pt;}
.y21_c01082{bottom:169.480000pt;}
.y20_c01082{bottom:177.880000pt;}
.y23_c01082{bottom:207.346667pt;}
.y1f_c01082{bottom:286.013333pt;}
.y1e_c01082{bottom:317.480000pt;}
.y1d_c01082{bottom:347.213333pt;}
.y1c_c01082{bottom:377.746667pt;}
.y1b_c01082{bottom:407.746667pt;}
.y1a_c01082{bottom:437.480000pt;}
.y19_c01082{bottom:467.213333pt;}
.y18_c01082{bottom:497.213333pt;}
.y17_c01082{bottom:526.813333pt;}
.y16_c01082{bottom:557.080000pt;}
.y15_c01082{bottom:587.080000pt;}
.y14_c01082{bottom:615.880000pt;}
.y13_c01082{bottom:646.013333pt;}
.y12_c01082{bottom:675.613333pt;}
.y11_c01082{bottom:705.613333pt;}
.y10_c01082{bottom:734.680000pt;}
.yf_c01082{bottom:762.680000pt;}
.ye_c01082{bottom:792.680000pt;}
.yd_c01082{bottom:822.680000pt;}
.yc_c01082{bottom:852.280000pt;}
.yb_c01082{bottom:881.213333pt;}
.ya_c01082{bottom:910.813333pt;}
.y9_c01082{bottom:940.280000pt;}
.y8_c01082{bottom:969.346667pt;}
.y7_c01082{bottom:998.413333pt;}
.y6_c01082{bottom:1027.613333pt;}
.y5_c01082{bottom:1056.946667pt;}
.y4_c01082{bottom:1086.680000pt;}
.y3_c01082{bottom:1116.280000pt;}
.y2_c01082{bottom:1146.413333pt;}
.y1_c01082{bottom:1176.013333pt;}
.h6_c01082{height:11.733399pt;}
.h3_c01082{height:33.763021pt;}
.h7_c01082{height:38.937500pt;}
.h5_c01082{height:86.057292pt;}
.h4_c01082{height:97.912760pt;}
.h2_c01082{height:108.041667pt;}
.h1_c01082{height:1218.666667pt;}
.h0_c01082{height:1218.733333pt;}
.w2_c01082{width:93.222667pt;}
.w0_c01082{width:773.266667pt;}
.w1_c01082{width:773.333333pt;}
.x0_c01082{left:0.000000pt;}
.x9_c01082{left:29.066667pt;}
.xb_c01082{left:34.400000pt;}
.xa_c01082{left:35.333333pt;}
.x8_c01082{left:36.266667pt;}
.x7_c01082{left:37.733333pt;}
.x6_c01082{left:38.666667pt;}
.x4_c01082{left:39.600000pt;}
.x5_c01082{left:41.066667pt;}
.x2_c01082{left:42.933333pt;}
.x3_c01082{left:44.400000pt;}
.xd_c01082{left:110.666667pt;}
.xc_c01082{left:113.333333pt;}
.x10_c01082{left:343.801554pt;}
.x1_c01082{left:491.733333pt;}
.xe_c01082{left:503.733333pt;}
.xf_c01082{left:733.733333pt;}
}





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

.ir_c01083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_45aac06e57e3898d176be075.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01083;src:url('chunks/assets/font_08f407fb592570f54ca47728.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01083;src:url('chunks/assets/font_4ad835fb1cb7634a001f4191.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01083;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls2_c01083{letter-spacing:0.000000px;}
.ls3_c01083{letter-spacing:6.000000px;}
.ls1_c01083{letter-spacing:8.520000px;}
.ls0_c01083{letter-spacing:243.456000px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01083{word-spacing:-63.504000px;}
.ws2_c01083{word-spacing:-61.044000px;}
.ws3_c01083{word-spacing:-33.780000px;}
.ws0_c01083{word-spacing:-23.136000px;}
.ws4_c01083{word-spacing:0.000000px;}
._28_c01083{margin-left:-27.744000px;}
._2d_c01083{margin-left:-24.576000px;}
._2e_c01083{margin-left:-14.784000px;}
._26_c01083{margin-left:-13.536000px;}
._24_c01083{margin-left:-11.328000px;}
._23_c01083{margin-left:-9.792000px;}
._1f_c01083{margin-left:-7.968000px;}
._1e_c01083{margin-left:-6.912000px;}
._14_c01083{margin-left:-5.088000px;}
._2c_c01083{margin-left:-3.936000px;}
._20_c01083{margin-left:-2.688000px;}
._1c_c01083{margin-left:-1.152000px;}
._a_c01083{width:1.152000px;}
._9_c01083{width:2.496000px;}
._6_c01083{width:4.512000px;}
._1_c01083{width:6.144000px;}
._5_c01083{width:7.488000px;}
._4_c01083{width:8.640000px;}
._30_c01083{width:9.888000px;}
._0_c01083{width:10.944000px;}
._2_c01083{width:12.000000px;}
._7_c01083{width:14.016000px;}
._e_c01083{width:15.840000px;}
._1d_c01083{width:17.088000px;}
._16_c01083{width:19.296000px;}
._18_c01083{width:20.400000px;}
._d_c01083{width:22.080000px;}
._32_c01083{width:24.192000px;}
._f_c01083{width:25.536000px;}
._2f_c01083{width:27.072000px;}
._c_c01083{width:28.224000px;}
._39_c01083{width:29.376000px;}
._15_c01083{width:30.432000px;}
._25_c01083{width:32.064000px;}
._1a_c01083{width:33.984000px;}
._34_c01083{width:35.136000px;}
._19_c01083{width:36.192000px;}
._10_c01083{width:37.344000px;}
._22_c01083{width:39.168000px;}
._17_c01083{width:40.704000px;}
._1b_c01083{width:42.624000px;}
._29_c01083{width:44.064000px;}
._12_c01083{width:45.504000px;}
._b_c01083{width:47.328000px;}
._2a_c01083{width:48.864000px;}
._21_c01083{width:50.592000px;}
._27_c01083{width:52.416000px;}
._2b_c01083{width:53.952000px;}
._31_c01083{width:56.352000px;}
._11_c01083{width:57.984000px;}
._13_c01083{width:60.864000px;}
._33_c01083{width:67.968000px;}
._35_c01083{width:105.888000px;}
._3_c01083{width:107.424000px;}
._37_c01083{width:178.686000px;}
._38_c01083{width:325.704000px;}
._36_c01083{width:474.072000px;}
._8_c01083{width:921.120000px;}
.fc2_c01083{color:transparent;}
.fc1_c01083{color:rgb(128,128,128);}
.fc0_c01083{color:rgb(0,0,0);}
.fs5_c01083{font-size:48.000000px;}
.fs4_c01083{font-size:60.000000px;}
.fs2_c01083{font-size:84.000000px;}
.fs0_c01083{font-size:96.000000px;}
.fs3_c01083{font-size:99.000000px;}
.fs1_c01083{font-size:144.000000px;}
.y0_c01083{bottom:0.000000px;}
.y26_c01083{bottom:3.105000px;}
.y25_c01083{bottom:7.228357px;}
.y24_c01083{bottom:130.380000px;}
.y23_c01083{bottom:161.280000px;}
.y22_c01083{bottom:195.030000px;}
.y21_c01083{bottom:228.180000px;}
.y20_c01083{bottom:260.880000px;}
.y1f_c01083{bottom:296.730000px;}
.y1e_c01083{bottom:331.080000px;}
.y1d_c01083{bottom:365.580000px;}
.y1c_c01083{bottom:399.030000px;}
.y1b_c01083{bottom:432.780000px;}
.y1a_c01083{bottom:466.830000px;}
.y19_c01083{bottom:500.580000px;}
.y18_c01083{bottom:534.630000px;}
.y17_c01083{bottom:568.380000px;}
.y16_c01083{bottom:601.530000px;}
.y15_c01083{bottom:635.280000px;}
.y14_c01083{bottom:668.880000px;}
.y13_c01083{bottom:702.630000px;}
.y12_c01083{bottom:735.780000px;}
.y11_c01083{bottom:768.780000px;}
.y10_c01083{bottom:802.530000px;}
.yf_c01083{bottom:835.380000px;}
.ye_c01083{bottom:869.130000px;}
.yd_c01083{bottom:902.430000px;}
.yc_c01083{bottom:935.280000px;}
.yb_c01083{bottom:968.730000px;}
.ya_c01083{bottom:1001.730000px;}
.y9_c01083{bottom:1034.430000px;}
.y8_c01083{bottom:1067.880000px;}
.y7_c01083{bottom:1101.330000px;}
.y6_c01083{bottom:1134.330000px;}
.y5_c01083{bottom:1168.380000px;}
.y4_c01083{bottom:1201.530000px;}
.y2_c01083{bottom:1205.580000px;}
.y3_c01083{bottom:1233.930000px;}
.y1_c01083{bottom:1300.380000px;}
.h5_c01083{height:13.200074px;}
.h6_c01083{height:43.804688px;}
.h4_c01083{height:70.224609px;}
.h2_c01083{height:121.546875px;}
.h3_c01083{height:182.320312px;}
.h0_c01083{height:1382.700000px;}
.h1_c01083{height:1383.000000px;}
.w2_c01083{width:104.875500px;}
.w0_c01083{width:863.175000px;}
.w1_c01083{width:863.250000px;}
.x0_c01083{left:0.000000px;}
.xe_c01083{left:23.400000px;}
.xf_c01083{left:25.050000px;}
.x6_c01083{left:237.900000px;}
.x8_c01083{left:238.950000px;}
.x7_c01083{left:240.000000px;}
.x9_c01083{left:241.050000px;}
.xa_c01083{left:243.300000px;}
.xb_c01083{left:244.350000px;}
.xc_c01083{left:245.400000px;}
.xd_c01083{left:247.050000px;}
.x10_c01083{left:248.100000px;}
.x11_c01083{left:249.150000px;}
.x3_c01083{left:287.550000px;}
.x1_c01083{left:370.650000px;}
.x13_c01083{left:383.401749px;}
.x2_c01083{left:389.850000px;}
.x4_c01083{left:498.750000px;}
.x5_c01083{left:499.800000px;}
.x12_c01083{left:781.650000px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls2_c01083{letter-spacing:0.000000pt;}
.ls3_c01083{letter-spacing:5.333333pt;}
.ls1_c01083{letter-spacing:7.573333pt;}
.ls0_c01083{letter-spacing:216.405333pt;}
.ws1_c01083{word-spacing:-56.448000pt;}
.ws2_c01083{word-spacing:-54.261333pt;}
.ws3_c01083{word-spacing:-30.026667pt;}
.ws0_c01083{word-spacing:-20.565333pt;}
.ws4_c01083{word-spacing:0.000000pt;}
._28_c01083{margin-left:-24.661333pt;}
._2d_c01083{margin-left:-21.845333pt;}
._2e_c01083{margin-left:-13.141333pt;}
._26_c01083{margin-left:-12.032000pt;}
._24_c01083{margin-left:-10.069333pt;}
._23_c01083{margin-left:-8.704000pt;}
._1f_c01083{margin-left:-7.082667pt;}
._1e_c01083{margin-left:-6.144000pt;}
._14_c01083{margin-left:-4.522667pt;}
._2c_c01083{margin-left:-3.498667pt;}
._20_c01083{margin-left:-2.389333pt;}
._1c_c01083{margin-left:-1.024000pt;}
._a_c01083{width:1.024000pt;}
._9_c01083{width:2.218667pt;}
._6_c01083{width:4.010667pt;}
._1_c01083{width:5.461333pt;}
._5_c01083{width:6.656000pt;}
._4_c01083{width:7.680000pt;}
._30_c01083{width:8.789333pt;}
._0_c01083{width:9.728000pt;}
._2_c01083{width:10.666667pt;}
._7_c01083{width:12.458667pt;}
._e_c01083{width:14.080000pt;}
._1d_c01083{width:15.189333pt;}
._16_c01083{width:17.152000pt;}
._18_c01083{width:18.133333pt;}
._d_c01083{width:19.626667pt;}
._32_c01083{width:21.504000pt;}
._f_c01083{width:22.698667pt;}
._2f_c01083{width:24.064000pt;}
._c_c01083{width:25.088000pt;}
._39_c01083{width:26.112000pt;}
._15_c01083{width:27.050667pt;}
._25_c01083{width:28.501333pt;}
._1a_c01083{width:30.208000pt;}
._34_c01083{width:31.232000pt;}
._19_c01083{width:32.170667pt;}
._10_c01083{width:33.194667pt;}
._22_c01083{width:34.816000pt;}
._17_c01083{width:36.181333pt;}
._1b_c01083{width:37.888000pt;}
._29_c01083{width:39.168000pt;}
._12_c01083{width:40.448000pt;}
._b_c01083{width:42.069333pt;}
._2a_c01083{width:43.434667pt;}
._21_c01083{width:44.970667pt;}
._27_c01083{width:46.592000pt;}
._2b_c01083{width:47.957333pt;}
._31_c01083{width:50.090667pt;}
._11_c01083{width:51.541333pt;}
._13_c01083{width:54.101333pt;}
._33_c01083{width:60.416000pt;}
._35_c01083{width:94.122667pt;}
._3_c01083{width:95.488000pt;}
._37_c01083{width:158.832000pt;}
._38_c01083{width:289.514667pt;}
._36_c01083{width:421.397333pt;}
._8_c01083{width:818.773333pt;}
.fs5_c01083{font-size:42.666667pt;}
.fs4_c01083{font-size:53.333333pt;}
.fs2_c01083{font-size:74.666667pt;}
.fs0_c01083{font-size:85.333333pt;}
.fs3_c01083{font-size:88.000000pt;}
.fs1_c01083{font-size:128.000000pt;}
.y0_c01083{bottom:0.000000pt;}
.y26_c01083{bottom:2.760000pt;}
.y25_c01083{bottom:6.425206pt;}
.y24_c01083{bottom:115.893333pt;}
.y23_c01083{bottom:143.360000pt;}
.y22_c01083{bottom:173.360000pt;}
.y21_c01083{bottom:202.826667pt;}
.y20_c01083{bottom:231.893333pt;}
.y1f_c01083{bottom:263.760000pt;}
.y1e_c01083{bottom:294.293333pt;}
.y1d_c01083{bottom:324.960000pt;}
.y1c_c01083{bottom:354.693333pt;}
.y1b_c01083{bottom:384.693333pt;}
.y1a_c01083{bottom:414.960000pt;}
.y19_c01083{bottom:444.960000pt;}
.y18_c01083{bottom:475.226667pt;}
.y17_c01083{bottom:505.226667pt;}
.y16_c01083{bottom:534.693333pt;}
.y15_c01083{bottom:564.693333pt;}
.y14_c01083{bottom:594.560000pt;}
.y13_c01083{bottom:624.560000pt;}
.y12_c01083{bottom:654.026667pt;}
.y11_c01083{bottom:683.360000pt;}
.y10_c01083{bottom:713.360000pt;}
.yf_c01083{bottom:742.560000pt;}
.ye_c01083{bottom:772.560000pt;}
.yd_c01083{bottom:802.160000pt;}
.yc_c01083{bottom:831.360000pt;}
.yb_c01083{bottom:861.093333pt;}
.ya_c01083{bottom:890.426667pt;}
.y9_c01083{bottom:919.493333pt;}
.y8_c01083{bottom:949.226667pt;}
.y7_c01083{bottom:978.960000pt;}
.y6_c01083{bottom:1008.293333pt;}
.y5_c01083{bottom:1038.560000pt;}
.y4_c01083{bottom:1068.026667pt;}
.y2_c01083{bottom:1071.626667pt;}
.y3_c01083{bottom:1096.826667pt;}
.y1_c01083{bottom:1155.893333pt;}
.h5_c01083{height:11.733399pt;}
.h6_c01083{height:38.937500pt;}
.h4_c01083{height:62.421875pt;}
.h2_c01083{height:108.041667pt;}
.h3_c01083{height:162.062500pt;}
.h0_c01083{height:1229.066667pt;}
.h1_c01083{height:1229.333333pt;}
.w2_c01083{width:93.222667pt;}
.w0_c01083{width:767.266667pt;}
.w1_c01083{width:767.333333pt;}
.x0_c01083{left:0.000000pt;}
.xe_c01083{left:20.800000pt;}
.xf_c01083{left:22.266667pt;}
.x6_c01083{left:211.466667pt;}
.x8_c01083{left:212.400000pt;}
.x7_c01083{left:213.333333pt;}
.x9_c01083{left:214.266667pt;}
.xa_c01083{left:216.266667pt;}
.xb_c01083{left:217.200000pt;}
.xc_c01083{left:218.133333pt;}
.xd_c01083{left:219.600000pt;}
.x10_c01083{left:220.533333pt;}
.x11_c01083{left:221.466667pt;}
.x3_c01083{left:255.600000pt;}
.x1_c01083{left:329.466667pt;}
.x13_c01083{left:340.801554pt;}
.x2_c01083{left:346.533333pt;}
.x4_c01083{left:443.333333pt;}
.x5_c01083{left:444.266667pt;}
.x12_c01083{left:694.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_c01084 {
    display:none;
  }
  .loading-indicator_c01084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01084 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01084 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01084" -> "#page-container .classname_c01084")
 */
.pf_c01084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01084 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01084 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01084 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01084 {overflow:visible;}
  }
}
.c_c01084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01084 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01084:after { /* webkit #35443 */
  content: '';
}
.t_c01084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01084 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01084 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01084 { /* info for Javascript */
  display:none;
}
.l_c01084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_c6ef4c82d0b4b99cac382048.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01084;src:url('chunks/assets/font_e1c6ac235a4faa9f8ff05afe.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01084;src:url('chunks/assets/font_3e11154834ebefdf35cfa7d8.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01084;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01084{vertical-align:0.000000px;}
.ls2_c01084{letter-spacing:-3.000000px;}
.ls1_c01084{letter-spacing:0.000000px;}
.ls0_c01084{letter-spacing:9.000000px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01084{word-spacing:-51.000000px;}
.ws2_c01084{word-spacing:-23.136000px;}
.ws1_c01084{word-spacing:-20.244000px;}
.ws3_c01084{word-spacing:0.000000px;}
._37_c01084{margin-left:-34.017000px;}
._3a_c01084{margin-left:-32.184000px;}
._26_c01084{margin-left:-25.248000px;}
._38_c01084{margin-left:-19.416000px;}
._1c_c01084{margin-left:-12.960000px;}
._1a_c01084{margin-left:-10.800000px;}
._31_c01084{margin-left:-9.456000px;}
._1e_c01084{margin-left:-6.624000px;}
._29_c01084{margin-left:-5.568000px;}
._18_c01084{margin-left:-3.840000px;}
._34_c01084{margin-left:-2.832000px;}
._12_c01084{margin-left:-1.728000px;}
._33_c01084{width:1.008000px;}
._0_c01084{width:2.016000px;}
._9_c01084{width:3.936000px;}
._6_c01084{width:5.280000px;}
._8_c01084{width:6.336000px;}
._5_c01084{width:7.776000px;}
._4_c01084{width:9.120000px;}
._a_c01084{width:10.752000px;}
._b_c01084{width:12.576000px;}
._7_c01084{width:13.824000px;}
._c_c01084{width:15.168000px;}
._2a_c01084{width:16.320000px;}
._22_c01084{width:18.048000px;}
._15_c01084{width:19.296000px;}
._1_c01084{width:21.408000px;}
._25_c01084{width:24.864000px;}
._36_c01084{width:25.920000px;}
._28_c01084{width:26.976000px;}
._20_c01084{width:28.128000px;}
._30_c01084{width:29.568000px;}
._27_c01084{width:30.576000px;}
._32_c01084{width:31.776000px;}
._13_c01084{width:32.928000px;}
._24_c01084{width:33.960000px;}
._23_c01084{width:35.328000px;}
._10_c01084{width:36.672000px;}
._14_c01084{width:37.824000px;}
._11_c01084{width:39.552000px;}
._3c_c01084{width:40.656000px;}
._16_c01084{width:41.664000px;}
._1f_c01084{width:43.224000px;}
._d_c01084{width:45.024000px;}
._3_c01084{width:46.272000px;}
._2c_c01084{width:47.712000px;}
._f_c01084{width:49.440000px;}
._39_c01084{width:52.104000px;}
._e_c01084{width:53.472000px;}
._1d_c01084{width:56.592000px;}
._2b_c01084{width:57.744000px;}
._2_c01084{width:59.040000px;}
._3f_c01084{width:60.048000px;}
._3d_c01084{width:61.296000px;}
._3e_c01084{width:62.544000px;}
._2f_c01084{width:66.264000px;}
._1b_c01084{width:67.968000px;}
._35_c01084{width:69.648000px;}
._42_c01084{width:71.328000px;}
._3b_c01084{width:73.152000px;}
._41_c01084{width:123.504000px;}
._19_c01084{width:169.920000px;}
._2e_c01084{width:175.104000px;}
._47_c01084{width:237.264000px;}
._45_c01084{width:246.840000px;}
._40_c01084{width:278.760000px;}
._44_c01084{width:345.624000px;}
._21_c01084{width:580.224000px;}
._43_c01084{width:588.864000px;}
._46_c01084{width:806.112000px;}
._2d_c01084{width:861.792000px;}
._17_c01084{width:948.768000px;}
.fc2_c01084{color:transparent;}
.fc1_c01084{color:rgb(128,128,128);}
.fc0_c01084{color:rgb(0,0,0);}
.fs4_c01084{font-size:24.000000px;}
.fs5_c01084{font-size:48.000000px;}
.fs2_c01084{font-size:84.000000px;}
.fs3_c01084{font-size:87.000000px;}
.fs0_c01084{font-size:96.000000px;}
.fs1_c01084{font-size:102.000000px;}
.y0_c01084{bottom:0.000000px;}
.y28_c01084{bottom:3.105000px;}
.y26_c01084{bottom:4.320000px;}
.y27_c01084{bottom:7.228369px;}
.y25_c01084{bottom:116.820000px;}
.y24_c01084{bottom:151.170000px;}
.y23_c01084{bottom:187.320000px;}
.y22_c01084{bottom:221.370000px;}
.y21_c01084{bottom:253.470000px;}
.y20_c01084{bottom:287.220000px;}
.y1f_c01084{bottom:321.270000px;}
.y1e_c01084{bottom:355.620000px;}
.y1d_c01084{bottom:389.370000px;}
.y1c_c01084{bottom:422.520000px;}
.y1b_c01084{bottom:456.270000px;}
.y1a_c01084{bottom:490.320000px;}
.y19_c01084{bottom:523.770000px;}
.y18_c01084{bottom:557.820000px;}
.y17_c01084{bottom:591.570000px;}
.y16_c01084{bottom:625.020000px;}
.y15_c01084{bottom:653.070000px;}
.y14_c01084{bottom:658.770000px;}
.y13_c01084{bottom:692.820000px;}
.y12_c01084{bottom:725.670000px;}
.y11_c01084{bottom:759.720000px;}
.y10_c01084{bottom:793.170000px;}
.yf_c01084{bottom:826.470000px;}
.ye_c01084{bottom:858.870000px;}
.yd_c01084{bottom:892.320000px;}
.yc_c01084{bottom:925.770000px;}
.yb_c01084{bottom:959.070000px;}
.ya_c01084{bottom:992.820000px;}
.y9_c01084{bottom:1026.120000px;}
.y8_c01084{bottom:1058.970000px;}
.y7_c01084{bottom:1091.820000px;}
.y6_c01084{bottom:1125.120000px;}
.y5_c01084{bottom:1158.870000px;}
.y4_c01084{bottom:1191.420000px;}
.y3_c01084{bottom:1224.420000px;}
.y2_c01084{bottom:1258.170000px;}
.y1_c01084{bottom:1291.920000px;}
.h5_c01084{height:13.200073px;}
.h6_c01084{height:43.804688px;}
.h3_c01084{height:101.825684px;}
.h4_c01084{height:110.151855px;}
.h2_c01084{height:121.546875px;}
.h0_c01084{height:1383.450000px;}
.h1_c01084{height:1383.750000px;}
.w2_c01084{width:104.875500px;}
.w0_c01084{width:878.025000px;}
.w1_c01084{width:878.250000px;}
.x0_c01084{left:0.000000px;}
.x8_c01084{left:41.250000px;}
.x7_c01084{left:42.300000px;}
.x6_c01084{left:43.500000px;}
.x5_c01084{left:44.550000px;}
.x1_c01084{left:46.200000px;}
.x3_c01084{left:47.850000px;}
.x2_c01084{left:49.950000px;}
.x4_c01084{left:89.400000px;}
.x9_c01084{left:90.450000px;}
.xa_c01084{left:321.000000px;}
.xc_c01084{left:390.826721px;}
.xb_c01084{left:767.850000px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls2_c01084{letter-spacing:-2.666667pt;}
.ls1_c01084{letter-spacing:0.000000pt;}
.ls0_c01084{letter-spacing:8.000000pt;}
.ws0_c01084{word-spacing:-45.333333pt;}
.ws2_c01084{word-spacing:-20.565333pt;}
.ws1_c01084{word-spacing:-17.994667pt;}
.ws3_c01084{word-spacing:0.000000pt;}
._37_c01084{margin-left:-30.237333pt;}
._3a_c01084{margin-left:-28.608000pt;}
._26_c01084{margin-left:-22.442667pt;}
._38_c01084{margin-left:-17.258667pt;}
._1c_c01084{margin-left:-11.520000pt;}
._1a_c01084{margin-left:-9.600000pt;}
._31_c01084{margin-left:-8.405333pt;}
._1e_c01084{margin-left:-5.888000pt;}
._29_c01084{margin-left:-4.949333pt;}
._18_c01084{margin-left:-3.413333pt;}
._34_c01084{margin-left:-2.517333pt;}
._12_c01084{margin-left:-1.536000pt;}
._33_c01084{width:0.896000pt;}
._0_c01084{width:1.792000pt;}
._9_c01084{width:3.498667pt;}
._6_c01084{width:4.693333pt;}
._8_c01084{width:5.632000pt;}
._5_c01084{width:6.912000pt;}
._4_c01084{width:8.106667pt;}
._a_c01084{width:9.557333pt;}
._b_c01084{width:11.178667pt;}
._7_c01084{width:12.288000pt;}
._c_c01084{width:13.482667pt;}
._2a_c01084{width:14.506667pt;}
._22_c01084{width:16.042667pt;}
._15_c01084{width:17.152000pt;}
._1_c01084{width:19.029333pt;}
._25_c01084{width:22.101333pt;}
._36_c01084{width:23.040000pt;}
._28_c01084{width:23.978667pt;}
._20_c01084{width:25.002667pt;}
._30_c01084{width:26.282667pt;}
._27_c01084{width:27.178667pt;}
._32_c01084{width:28.245333pt;}
._13_c01084{width:29.269333pt;}
._24_c01084{width:30.186667pt;}
._23_c01084{width:31.402667pt;}
._10_c01084{width:32.597333pt;}
._14_c01084{width:33.621333pt;}
._11_c01084{width:35.157333pt;}
._3c_c01084{width:36.138667pt;}
._16_c01084{width:37.034667pt;}
._1f_c01084{width:38.421333pt;}
._d_c01084{width:40.021333pt;}
._3_c01084{width:41.130667pt;}
._2c_c01084{width:42.410667pt;}
._f_c01084{width:43.946667pt;}
._39_c01084{width:46.314667pt;}
._e_c01084{width:47.530667pt;}
._1d_c01084{width:50.304000pt;}
._2b_c01084{width:51.328000pt;}
._2_c01084{width:52.480000pt;}
._3f_c01084{width:53.376000pt;}
._3d_c01084{width:54.485333pt;}
._3e_c01084{width:55.594667pt;}
._2f_c01084{width:58.901333pt;}
._1b_c01084{width:60.416000pt;}
._35_c01084{width:61.909333pt;}
._42_c01084{width:63.402667pt;}
._3b_c01084{width:65.024000pt;}
._41_c01084{width:109.781333pt;}
._19_c01084{width:151.040000pt;}
._2e_c01084{width:155.648000pt;}
._47_c01084{width:210.901333pt;}
._45_c01084{width:219.413333pt;}
._40_c01084{width:247.786667pt;}
._44_c01084{width:307.221333pt;}
._21_c01084{width:515.754667pt;}
._43_c01084{width:523.434667pt;}
._46_c01084{width:716.544000pt;}
._2d_c01084{width:766.037333pt;}
._17_c01084{width:843.349333pt;}
.fs4_c01084{font-size:21.333333pt;}
.fs5_c01084{font-size:42.666667pt;}
.fs2_c01084{font-size:74.666667pt;}
.fs3_c01084{font-size:77.333333pt;}
.fs0_c01084{font-size:85.333333pt;}
.fs1_c01084{font-size:90.666667pt;}
.y0_c01084{bottom:0.000000pt;}
.y28_c01084{bottom:2.760000pt;}
.y26_c01084{bottom:3.840000pt;}
.y27_c01084{bottom:6.425217pt;}
.y25_c01084{bottom:103.840000pt;}
.y24_c01084{bottom:134.373333pt;}
.y23_c01084{bottom:166.506667pt;}
.y22_c01084{bottom:196.773333pt;}
.y21_c01084{bottom:225.306667pt;}
.y20_c01084{bottom:255.306667pt;}
.y1f_c01084{bottom:285.573333pt;}
.y1e_c01084{bottom:316.106667pt;}
.y1d_c01084{bottom:346.106667pt;}
.y1c_c01084{bottom:375.573333pt;}
.y1b_c01084{bottom:405.573333pt;}
.y1a_c01084{bottom:435.840000pt;}
.y19_c01084{bottom:465.573333pt;}
.y18_c01084{bottom:495.840000pt;}
.y17_c01084{bottom:525.840000pt;}
.y16_c01084{bottom:555.573333pt;}
.y15_c01084{bottom:580.506667pt;}
.y14_c01084{bottom:585.573333pt;}
.y13_c01084{bottom:615.840000pt;}
.y12_c01084{bottom:645.040000pt;}
.y11_c01084{bottom:675.306667pt;}
.y10_c01084{bottom:705.040000pt;}
.yf_c01084{bottom:734.640000pt;}
.ye_c01084{bottom:763.440000pt;}
.yd_c01084{bottom:793.173333pt;}
.yc_c01084{bottom:822.906667pt;}
.yb_c01084{bottom:852.506667pt;}
.ya_c01084{bottom:882.506667pt;}
.y9_c01084{bottom:912.106667pt;}
.y8_c01084{bottom:941.306667pt;}
.y7_c01084{bottom:970.506667pt;}
.y6_c01084{bottom:1000.106667pt;}
.y5_c01084{bottom:1030.106667pt;}
.y4_c01084{bottom:1059.040000pt;}
.y3_c01084{bottom:1088.373333pt;}
.y2_c01084{bottom:1118.373333pt;}
.y1_c01084{bottom:1148.373333pt;}
.h5_c01084{height:11.733399pt;}
.h6_c01084{height:38.937500pt;}
.h3_c01084{height:90.511719pt;}
.h4_c01084{height:97.912760pt;}
.h2_c01084{height:108.041667pt;}
.h0_c01084{height:1229.733333pt;}
.h1_c01084{height:1230.000000pt;}
.w2_c01084{width:93.222667pt;}
.w0_c01084{width:780.466667pt;}
.w1_c01084{width:780.666667pt;}
.x0_c01084{left:0.000000pt;}
.x8_c01084{left:36.666667pt;}
.x7_c01084{left:37.600000pt;}
.x6_c01084{left:38.666667pt;}
.x5_c01084{left:39.600000pt;}
.x1_c01084{left:41.066667pt;}
.x3_c01084{left:42.533333pt;}
.x2_c01084{left:44.400000pt;}
.x4_c01084{left:79.466667pt;}
.x9_c01084{left:80.400000pt;}
.xa_c01084{left:285.333333pt;}
.xc_c01084{left:347.401530pt;}
.xb_c01084{left:682.533333pt;}
}





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

.ir_c01085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_a2c558aeface5128b1fcd9bc.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01085;src:url('chunks/assets/font_4aaf17cf5ea3dd6c70f41a38.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01085;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01085;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01085{vertical-align:-144.600000px;}
.v0_c01085{vertical-align:0.000000px;}
.ls1_c01085{letter-spacing:0.000000px;}
.ls0_c01085{letter-spacing:8.520000px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01085{word-spacing:-63.504000px;}
.ws0_c01085{word-spacing:-51.000000px;}
.ws2_c01085{word-spacing:-23.136000px;}
.ws4_c01085{word-spacing:0.000000px;}
.ws3_c01085{word-spacing:274.584000px;}
._c_c01085{margin-left:-34.944000px;}
._30_c01085{margin-left:-29.664000px;}
._2f_c01085{margin-left:-28.128000px;}
._2d_c01085{margin-left:-25.920000px;}
._19_c01085{margin-left:-23.232000px;}
._3b_c01085{margin-left:-21.792000px;}
._32_c01085{margin-left:-19.836000px;}
._20_c01085{margin-left:-16.224000px;}
._22_c01085{margin-left:-12.960000px;}
._21_c01085{margin-left:-10.080000px;}
._1f_c01085{margin-left:-8.064000px;}
._23_c01085{margin-left:-5.856000px;}
._5_c01085{margin-left:-3.840000px;}
._6_c01085{margin-left:-2.304000px;}
._1d_c01085{margin-left:-1.152000px;}
._3_c01085{width:1.824000px;}
._1_c01085{width:3.072000px;}
._0_c01085{width:4.608000px;}
._9_c01085{width:5.664000px;}
._a_c01085{width:6.720000px;}
._8_c01085{width:8.352000px;}
._b_c01085{width:9.600000px;}
._1a_c01085{width:11.232000px;}
._3d_c01085{width:12.288000px;}
._7_c01085{width:13.344000px;}
._1e_c01085{width:14.688000px;}
._28_c01085{width:16.224000px;}
._17_c01085{width:17.664000px;}
._10_c01085{width:19.200000px;}
._2c_c01085{width:21.216000px;}
._e_c01085{width:24.288000px;}
._f_c01085{width:26.112000px;}
._11_c01085{width:27.936000px;}
._18_c01085{width:29.856000px;}
._12_c01085{width:32.352000px;}
._1c_c01085{width:33.408000px;}
._39_c01085{width:34.464000px;}
._d_c01085{width:35.520000px;}
._26_c01085{width:36.864000px;}
._4_c01085{width:38.208000px;}
._2a_c01085{width:39.360000px;}
._13_c01085{width:40.704000px;}
._29_c01085{width:41.760000px;}
._16_c01085{width:43.392000px;}
._31_c01085{width:44.448000px;}
._14_c01085{width:45.600000px;}
._2_c01085{width:46.848000px;}
._1b_c01085{width:47.904000px;}
._15_c01085{width:49.056000px;}
._2e_c01085{width:50.400000px;}
._38_c01085{width:51.936000px;}
._25_c01085{width:54.624000px;}
._3e_c01085{width:55.680000px;}
._37_c01085{width:56.736000px;}
._33_c01085{width:57.792000px;}
._3f_c01085{width:61.344000px;}
._27_c01085{width:64.608000px;}
._2b_c01085{width:67.104000px;}
._40_c01085{width:71.040000px;}
._34_c01085{width:84.096000px;}
._3a_c01085{width:85.728000px;}
._35_c01085{width:107.424000px;}
._36_c01085{width:179.328000px;}
._3c_c01085{width:254.592000px;}
._24_c01085{width:359.040000px;}
.fc2_c01085{color:transparent;}
.fc1_c01085{color:rgb(128,128,128);}
.fc0_c01085{color:rgb(0,0,0);}
.fs3_c01085{font-size:48.000000px;}
.fs1_c01085{font-size:84.000000px;}
.fs0_c01085{font-size:96.000000px;}
.fs2_c01085{font-size:102.000000px;}
.y0_c01085{bottom:0.000000px;}
.y25_c01085{bottom:3.105000px;}
.y24_c01085{bottom:7.228357px;}
.y23_c01085{bottom:106.680000px;}
.y22_c01085{bottom:175.230000px;}
.y21_c01085{bottom:207.930000px;}
.y20_c01085{bottom:242.430000px;}
.y1f_c01085{bottom:276.180000px;}
.y1e_c01085{bottom:310.230000px;}
.y1d_c01085{bottom:343.980000px;}
.y1c_c01085{bottom:378.330000px;}
.y1b_c01085{bottom:411.780000px;}
.y1a_c01085{bottom:446.130000px;}
.y19_c01085{bottom:479.580000px;}
.y18_c01085{bottom:513.330000px;}
.y17_c01085{bottom:546.780000px;}
.y16_c01085{bottom:580.830000px;}
.y15_c01085{bottom:616.380000px;}
.y14_c01085{bottom:648.330000px;}
.y13_c01085{bottom:681.780000px;}
.y12_c01085{bottom:716.130000px;}
.y11_c01085{bottom:749.880000px;}
.y10_c01085{bottom:783.030000px;}
.yf_c01085{bottom:815.730000px;}
.ye_c01085{bottom:849.780000px;}
.yd_c01085{bottom:883.680000px;}
.yc_c01085{bottom:916.680000px;}
.yb_c01085{bottom:950.430000px;}
.ya_c01085{bottom:983.880000px;}
.y9_c01085{bottom:1017.330000px;}
.y8_c01085{bottom:1050.030000px;}
.y7_c01085{bottom:1084.680000px;}
.y6_c01085{bottom:1117.230000px;}
.y5_c01085{bottom:1150.530000px;}
.y4_c01085{bottom:1183.980000px;}
.y3_c01085{bottom:1217.730000px;}
.y2_c01085{bottom:1250.880000px;}
.y1_c01085{bottom:1281.930000px;}
.h3_c01085{height:13.200074px;}
.h4_c01085{height:43.804688px;}
.h2_c01085{height:121.546875px;}
.h0_c01085{height:1382.700000px;}
.h1_c01085{height:1383.000000px;}
.w2_c01085{width:104.875500px;}
.w0_c01085{width:863.175000px;}
.w1_c01085{width:863.250000px;}
.x0_c01085{left:0.000000px;}
.x8_c01085{left:109.950000px;}
.x2_c01085{left:140.100000px;}
.x3_c01085{left:177.450000px;}
.x9_c01085{left:251.400000px;}
.x1_c01085{left:252.450000px;}
.x4_c01085{left:253.500000px;}
.x5_c01085{left:254.700000px;}
.x6_c01085{left:255.750000px;}
.x7_c01085{left:257.400000px;}
.xb_c01085{left:383.401749px;}
.xa_c01085{left:793.050000px;}
@media print{
.v1_c01085{vertical-align:-128.533333pt;}
.v0_c01085{vertical-align:0.000000pt;}
.ls1_c01085{letter-spacing:0.000000pt;}
.ls0_c01085{letter-spacing:7.573333pt;}
.ws1_c01085{word-spacing:-56.448000pt;}
.ws0_c01085{word-spacing:-45.333333pt;}
.ws2_c01085{word-spacing:-20.565333pt;}
.ws4_c01085{word-spacing:0.000000pt;}
.ws3_c01085{word-spacing:244.074667pt;}
._c_c01085{margin-left:-31.061333pt;}
._30_c01085{margin-left:-26.368000pt;}
._2f_c01085{margin-left:-25.002667pt;}
._2d_c01085{margin-left:-23.040000pt;}
._19_c01085{margin-left:-20.650667pt;}
._3b_c01085{margin-left:-19.370667pt;}
._32_c01085{margin-left:-17.632000pt;}
._20_c01085{margin-left:-14.421333pt;}
._22_c01085{margin-left:-11.520000pt;}
._21_c01085{margin-left:-8.960000pt;}
._1f_c01085{margin-left:-7.168000pt;}
._23_c01085{margin-left:-5.205333pt;}
._5_c01085{margin-left:-3.413333pt;}
._6_c01085{margin-left:-2.048000pt;}
._1d_c01085{margin-left:-1.024000pt;}
._3_c01085{width:1.621333pt;}
._1_c01085{width:2.730667pt;}
._0_c01085{width:4.096000pt;}
._9_c01085{width:5.034667pt;}
._a_c01085{width:5.973333pt;}
._8_c01085{width:7.424000pt;}
._b_c01085{width:8.533333pt;}
._1a_c01085{width:9.984000pt;}
._3d_c01085{width:10.922667pt;}
._7_c01085{width:11.861333pt;}
._1e_c01085{width:13.056000pt;}
._28_c01085{width:14.421333pt;}
._17_c01085{width:15.701333pt;}
._10_c01085{width:17.066667pt;}
._2c_c01085{width:18.858667pt;}
._e_c01085{width:21.589333pt;}
._f_c01085{width:23.210667pt;}
._11_c01085{width:24.832000pt;}
._18_c01085{width:26.538667pt;}
._12_c01085{width:28.757333pt;}
._1c_c01085{width:29.696000pt;}
._39_c01085{width:30.634667pt;}
._d_c01085{width:31.573333pt;}
._26_c01085{width:32.768000pt;}
._4_c01085{width:33.962667pt;}
._2a_c01085{width:34.986667pt;}
._13_c01085{width:36.181333pt;}
._29_c01085{width:37.120000pt;}
._16_c01085{width:38.570667pt;}
._31_c01085{width:39.509333pt;}
._14_c01085{width:40.533333pt;}
._2_c01085{width:41.642667pt;}
._1b_c01085{width:42.581333pt;}
._15_c01085{width:43.605333pt;}
._2e_c01085{width:44.800000pt;}
._38_c01085{width:46.165333pt;}
._25_c01085{width:48.554667pt;}
._3e_c01085{width:49.493333pt;}
._37_c01085{width:50.432000pt;}
._33_c01085{width:51.370667pt;}
._3f_c01085{width:54.528000pt;}
._27_c01085{width:57.429333pt;}
._2b_c01085{width:59.648000pt;}
._40_c01085{width:63.146667pt;}
._34_c01085{width:74.752000pt;}
._3a_c01085{width:76.202667pt;}
._35_c01085{width:95.488000pt;}
._36_c01085{width:159.402667pt;}
._3c_c01085{width:226.304000pt;}
._24_c01085{width:319.146667pt;}
.fs3_c01085{font-size:42.666667pt;}
.fs1_c01085{font-size:74.666667pt;}
.fs0_c01085{font-size:85.333333pt;}
.fs2_c01085{font-size:90.666667pt;}
.y0_c01085{bottom:0.000000pt;}
.y25_c01085{bottom:2.760000pt;}
.y24_c01085{bottom:6.425206pt;}
.y23_c01085{bottom:94.826667pt;}
.y22_c01085{bottom:155.760000pt;}
.y21_c01085{bottom:184.826667pt;}
.y20_c01085{bottom:215.493333pt;}
.y1f_c01085{bottom:245.493333pt;}
.y1e_c01085{bottom:275.760000pt;}
.y1d_c01085{bottom:305.760000pt;}
.y1c_c01085{bottom:336.293333pt;}
.y1b_c01085{bottom:366.026667pt;}
.y1a_c01085{bottom:396.560000pt;}
.y19_c01085{bottom:426.293333pt;}
.y18_c01085{bottom:456.293333pt;}
.y17_c01085{bottom:486.026667pt;}
.y16_c01085{bottom:516.293333pt;}
.y15_c01085{bottom:547.893333pt;}
.y14_c01085{bottom:576.293333pt;}
.y13_c01085{bottom:606.026667pt;}
.y12_c01085{bottom:636.560000pt;}
.y11_c01085{bottom:666.560000pt;}
.y10_c01085{bottom:696.026667pt;}
.yf_c01085{bottom:725.093333pt;}
.ye_c01085{bottom:755.360000pt;}
.yd_c01085{bottom:785.493333pt;}
.yc_c01085{bottom:814.826667pt;}
.yb_c01085{bottom:844.826667pt;}
.ya_c01085{bottom:874.560000pt;}
.y9_c01085{bottom:904.293333pt;}
.y8_c01085{bottom:933.360000pt;}
.y7_c01085{bottom:964.160000pt;}
.y6_c01085{bottom:993.093333pt;}
.y5_c01085{bottom:1022.693333pt;}
.y4_c01085{bottom:1052.426667pt;}
.y3_c01085{bottom:1082.426667pt;}
.y2_c01085{bottom:1111.893333pt;}
.y1_c01085{bottom:1139.493333pt;}
.h3_c01085{height:11.733399pt;}
.h4_c01085{height:38.937500pt;}
.h2_c01085{height:108.041667pt;}
.h0_c01085{height:1229.066667pt;}
.h1_c01085{height:1229.333333pt;}
.w2_c01085{width:93.222667pt;}
.w0_c01085{width:767.266667pt;}
.w1_c01085{width:767.333333pt;}
.x0_c01085{left:0.000000pt;}
.x8_c01085{left:97.733333pt;}
.x2_c01085{left:124.533333pt;}
.x3_c01085{left:157.733333pt;}
.x9_c01085{left:223.466667pt;}
.x1_c01085{left:224.400000pt;}
.x4_c01085{left:225.333333pt;}
.x5_c01085{left:226.400000pt;}
.x6_c01085{left:227.333333pt;}
.x7_c01085{left:228.800000pt;}
.xb_c01085{left:340.801554pt;}
.xa_c01085{left:704.933333pt;}
}





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

.ir_c01086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_d39f1f23bb82ae2f751549da.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01086;src:url('chunks/assets/font_18c5cf1233d8628fccb056f8.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01086;src:url('chunks/assets/font_6f85901b376144e7cf8bdb3f.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01086;src:url('chunks/assets/font_db037196c3d0bed6dc7cc741.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01086;src:url('chunks/assets/font_85bc6d51e89f39433f4d5bb5.woff2')format("woff");}.ff5_c01086{font-family:ff5_c01086;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01086;src:url('chunks/assets/font_008794fb7910d61b3f18da09.woff2')format("woff");}.ff6_c01086{font-family:ff6_c01086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01086;src:url('chunks/assets/font_6f634ef3b8dc0688685f5242.woff2')format("woff");}.ff7_c01086{font-family:ff7_c01086;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01086;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c01086{font-family:ff8_c01086;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01086{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0_c01086{vertical-align:0.000000px;}
.ls3_c01086{letter-spacing:0.000000px;}
.ls0_c01086{letter-spacing:3.000000px;}
.ls2_c01086{letter-spacing:29.664000px;}
.ls1_c01086{letter-spacing:45.564000px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:-51.000000px;}
.ws3_c01086{word-spacing:-23.136000px;}
.ws1_c01086{word-spacing:-20.244000px;}
.ws5_c01086{word-spacing:0.000000px;}
.ws2_c01086{word-spacing:1.176000px;}
.ws4_c01086{word-spacing:1.848000px;}
._1b_c01086{margin-left:-41.664000px;}
._2b_c01086{margin-left:-32.832000px;}
._12_c01086{margin-left:-30.528000px;}
._40_c01086{margin-left:-28.512000px;}
._39_c01086{margin-left:-26.496000px;}
._42_c01086{margin-left:-25.248000px;}
._23_c01086{margin-left:-22.848000px;}
._48_c01086{margin-left:-18.816000px;}
._3_c01086{margin-left:-17.280000px;}
._25_c01086{margin-left:-15.936000px;}
._20_c01086{margin-left:-14.112000px;}
._21_c01086{margin-left:-10.848000px;}
._3d_c01086{margin-left:-8.928000px;}
._38_c01086{margin-left:-7.752000px;}
._2f_c01086{margin-left:-6.612000px;}
._28_c01086{margin-left:-5.184000px;}
._31_c01086{margin-left:-3.648000px;}
._29_c01086{margin-left:-2.400000px;}
._22_c01086{margin-left:-1.152000px;}
._1_c01086{width:1.440000px;}
._0_c01086{width:2.592000px;}
._4_c01086{width:4.224000px;}
._6_c01086{width:5.280000px;}
._10_c01086{width:6.528000px;}
._8_c01086{width:7.680000px;}
._2d_c01086{width:8.736000px;}
._7_c01086{width:9.984000px;}
._30_c01086{width:11.040000px;}
._b_c01086{width:12.096000px;}
._11_c01086{width:13.344000px;}
._36_c01086{width:14.688000px;}
._33_c01086{width:16.224000px;}
._9_c01086{width:18.048000px;}
._5_c01086{width:19.296000px;}
._53_c01086{width:20.676000px;}
._2_c01086{width:21.792000px;}
._32_c01086{width:24.288000px;}
._35_c01086{width:25.440000px;}
._46_c01086{width:27.456000px;}
._2c_c01086{width:28.512000px;}
._a_c01086{width:29.664000px;}
._54_c01086{width:30.840000px;}
._18_c01086{width:31.872000px;}
._26_c01086{width:33.732000px;}
._16_c01086{width:34.752000px;}
._f_c01086{width:36.864000px;}
._d_c01086{width:38.688000px;}
._e_c01086{width:40.800000px;}
._13_c01086{width:42.816000px;}
._34_c01086{width:43.872000px;}
._c_c01086{width:45.024000px;}
._41_c01086{width:46.560000px;}
._19_c01086{width:47.808000px;}
._1e_c01086{width:49.824000px;}
._17_c01086{width:51.264000px;}
._3a_c01086{width:52.512000px;}
._2e_c01086{width:53.889000px;}
._14_c01086{width:55.296000px;}
._4b_c01086{width:57.912000px;}
._37_c01086{width:60.480000px;}
._49_c01086{width:62.112000px;}
._15_c01086{width:64.704000px;}
._4e_c01086{width:68.736000px;}
._4f_c01086{width:70.560000px;}
._43_c01086{width:79.488000px;}
._27_c01086{width:96.864000px;}
._1f_c01086{width:101.568000px;}
._44_c01086{width:109.311000px;}
._4d_c01086{width:111.840000px;}
._52_c01086{width:114.336000px;}
._1c_c01086{width:146.400000px;}
._4c_c01086{width:150.948000px;}
._45_c01086{width:154.368000px;}
._3b_c01086{width:162.144000px;}
._47_c01086{width:174.816000px;}
._1d_c01086{width:181.152000px;}
._3c_c01086{width:194.304000px;}
._4a_c01086{width:231.456000px;}
._51_c01086{width:280.416000px;}
._24_c01086{width:336.576000px;}
._3e_c01086{width:385.152000px;}
._2a_c01086{width:456.528000px;}
._1a_c01086{width:722.496000px;}
._50_c01086{width:1011.840000px;}
._3f_c01086{width:1092.144000px;}
.fc2_c01086{color:transparent;}
.fc1_c01086{color:rgb(128,128,128);}
.fc0_c01086{color:rgb(0,0,0);}
.fs5_c01086{font-size:30.000000px;}
.fs7_c01086{font-size:48.000000px;}
.fs1_c01086{font-size:76.800000px;}
.fs3_c01086{font-size:84.000000px;}
.fs6_c01086{font-size:87.000000px;}
.fs0_c01086{font-size:96.000000px;}
.fs2_c01086{font-size:102.000000px;}
.fs4_c01086{font-size:105.000000px;}
.y0_c01086{bottom:0.000000px;}
.y25_c01086{bottom:3.105000px;}
.y24_c01086{bottom:7.228369px;}
.y23_c01086{bottom:153.870000px;}
.y22_c01086{bottom:187.920000px;}
.y21_c01086{bottom:218.070000px;}
.y20_c01086{bottom:255.420000px;}
.y1f_c01086{bottom:289.920000px;}
.y1e_c01086{bottom:323.370000px;}
.y1d_c01086{bottom:356.670000px;}
.y1c_c01086{bottom:390.870000px;}
.y1b_c01086{bottom:424.470000px;}
.y1a_c01086{bottom:456.270000px;}
.y19_c01086{bottom:491.670000px;}
.y18_c01086{bottom:527.520000px;}
.y17_c01086{bottom:559.620000px;}
.y16_c01086{bottom:593.370000px;}
.y15_c01086{bottom:626.370000px;}
.y14_c01086{bottom:658.470000px;}
.y13_c01086{bottom:691.920000px;}
.y12_c01086{bottom:727.020000px;}
.y11_c01086{bottom:761.370000px;}
.y10_c01086{bottom:793.770000px;}
.yf_c01086{bottom:827.220000px;}
.ye_c01086{bottom:859.620000px;}
.yd_c01086{bottom:892.920000px;}
.yc_c01086{bottom:926.070000px;}
.yb_c01086{bottom:959.520000px;}
.ya_c01086{bottom:992.970000px;}
.y9_c01086{bottom:1026.270000px;}
.y8_c01086{bottom:1060.020000px;}
.y7_c01086{bottom:1092.120000px;}
.y6_c01086{bottom:1125.570000px;}
.y5_c01086{bottom:1158.270000px;}
.y4_c01086{bottom:1190.970000px;}
.y3_c01086{bottom:1225.020000px;}
.y2_c01086{bottom:1258.470000px;}
.y1_c01086{bottom:1291.320000px;}
.h3_c01086{height:13.200073px;}
.h4_c01086{height:43.804688px;}
.h2_c01086{height:121.546875px;}
.h0_c01086{height:1383.450000px;}
.h1_c01086{height:1383.750000px;}
.w2_c01086{width:104.875500px;}
.w0_c01086{width:878.025000px;}
.w1_c01086{width:878.250000px;}
.x0_c01086{left:0.000000px;}
.xd_c01086{left:40.800000px;}
.xa_c01086{left:42.900000px;}
.x9_c01086{left:44.550000px;}
.x8_c01086{left:45.600000px;}
.x7_c01086{left:46.800000px;}
.x5_c01086{left:47.850000px;}
.x6_c01086{left:48.900000px;}
.x4_c01086{left:49.950000px;}
.x3_c01086{left:51.000000px;}
.x2_c01086{left:52.650000px;}
.x1_c01086{left:55.350000px;}
.xe_c01086{left:197.400000px;}
.xb_c01086{left:340.500000px;}
.xf_c01086{left:390.826721px;}
.xc_c01086{left:406.950000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls3_c01086{letter-spacing:0.000000pt;}
.ls0_c01086{letter-spacing:2.666667pt;}
.ls2_c01086{letter-spacing:26.368000pt;}
.ls1_c01086{letter-spacing:40.501333pt;}
.ws0_c01086{word-spacing:-45.333333pt;}
.ws3_c01086{word-spacing:-20.565333pt;}
.ws1_c01086{word-spacing:-17.994667pt;}
.ws5_c01086{word-spacing:0.000000pt;}
.ws2_c01086{word-spacing:1.045333pt;}
.ws4_c01086{word-spacing:1.642667pt;}
._1b_c01086{margin-left:-37.034667pt;}
._2b_c01086{margin-left:-29.184000pt;}
._12_c01086{margin-left:-27.136000pt;}
._40_c01086{margin-left:-25.344000pt;}
._39_c01086{margin-left:-23.552000pt;}
._42_c01086{margin-left:-22.442667pt;}
._23_c01086{margin-left:-20.309333pt;}
._48_c01086{margin-left:-16.725333pt;}
._3_c01086{margin-left:-15.360000pt;}
._25_c01086{margin-left:-14.165333pt;}
._20_c01086{margin-left:-12.544000pt;}
._21_c01086{margin-left:-9.642667pt;}
._3d_c01086{margin-left:-7.936000pt;}
._38_c01086{margin-left:-6.890667pt;}
._2f_c01086{margin-left:-5.877333pt;}
._28_c01086{margin-left:-4.608000pt;}
._31_c01086{margin-left:-3.242667pt;}
._29_c01086{margin-left:-2.133333pt;}
._22_c01086{margin-left:-1.024000pt;}
._1_c01086{width:1.280000pt;}
._0_c01086{width:2.304000pt;}
._4_c01086{width:3.754667pt;}
._6_c01086{width:4.693333pt;}
._10_c01086{width:5.802667pt;}
._8_c01086{width:6.826667pt;}
._2d_c01086{width:7.765333pt;}
._7_c01086{width:8.874667pt;}
._30_c01086{width:9.813333pt;}
._b_c01086{width:10.752000pt;}
._11_c01086{width:11.861333pt;}
._36_c01086{width:13.056000pt;}
._33_c01086{width:14.421333pt;}
._9_c01086{width:16.042667pt;}
._5_c01086{width:17.152000pt;}
._53_c01086{width:18.378667pt;}
._2_c01086{width:19.370667pt;}
._32_c01086{width:21.589333pt;}
._35_c01086{width:22.613333pt;}
._46_c01086{width:24.405333pt;}
._2c_c01086{width:25.344000pt;}
._a_c01086{width:26.368000pt;}
._54_c01086{width:27.413333pt;}
._18_c01086{width:28.330667pt;}
._26_c01086{width:29.984000pt;}
._16_c01086{width:30.890667pt;}
._f_c01086{width:32.768000pt;}
._d_c01086{width:34.389333pt;}
._e_c01086{width:36.266667pt;}
._13_c01086{width:38.058667pt;}
._34_c01086{width:38.997333pt;}
._c_c01086{width:40.021333pt;}
._41_c01086{width:41.386667pt;}
._19_c01086{width:42.496000pt;}
._1e_c01086{width:44.288000pt;}
._17_c01086{width:45.568000pt;}
._3a_c01086{width:46.677333pt;}
._2e_c01086{width:47.901333pt;}
._14_c01086{width:49.152000pt;}
._4b_c01086{width:51.477333pt;}
._37_c01086{width:53.760000pt;}
._49_c01086{width:55.210667pt;}
._15_c01086{width:57.514667pt;}
._4e_c01086{width:61.098667pt;}
._4f_c01086{width:62.720000pt;}
._43_c01086{width:70.656000pt;}
._27_c01086{width:86.101333pt;}
._1f_c01086{width:90.282667pt;}
._44_c01086{width:97.165333pt;}
._4d_c01086{width:99.413333pt;}
._52_c01086{width:101.632000pt;}
._1c_c01086{width:130.133333pt;}
._4c_c01086{width:134.176000pt;}
._45_c01086{width:137.216000pt;}
._3b_c01086{width:144.128000pt;}
._47_c01086{width:155.392000pt;}
._1d_c01086{width:161.024000pt;}
._3c_c01086{width:172.714667pt;}
._4a_c01086{width:205.738667pt;}
._51_c01086{width:249.258667pt;}
._24_c01086{width:299.178667pt;}
._3e_c01086{width:342.357333pt;}
._2a_c01086{width:405.802667pt;}
._1a_c01086{width:642.218667pt;}
._50_c01086{width:899.413333pt;}
._3f_c01086{width:970.794667pt;}
.fs5_c01086{font-size:26.666667pt;}
.fs7_c01086{font-size:42.666667pt;}
.fs1_c01086{font-size:68.266667pt;}
.fs3_c01086{font-size:74.666667pt;}
.fs6_c01086{font-size:77.333333pt;}
.fs0_c01086{font-size:85.333333pt;}
.fs2_c01086{font-size:90.666667pt;}
.fs4_c01086{font-size:93.333333pt;}
.y0_c01086{bottom:0.000000pt;}
.y25_c01086{bottom:2.760000pt;}
.y24_c01086{bottom:6.425217pt;}
.y23_c01086{bottom:136.773333pt;}
.y22_c01086{bottom:167.040000pt;}
.y21_c01086{bottom:193.840000pt;}
.y20_c01086{bottom:227.040000pt;}
.y1f_c01086{bottom:257.706667pt;}
.y1e_c01086{bottom:287.440000pt;}
.y1d_c01086{bottom:317.040000pt;}
.y1c_c01086{bottom:347.440000pt;}
.y1b_c01086{bottom:377.306667pt;}
.y1a_c01086{bottom:405.573333pt;}
.y19_c01086{bottom:437.040000pt;}
.y18_c01086{bottom:468.906667pt;}
.y17_c01086{bottom:497.440000pt;}
.y16_c01086{bottom:527.440000pt;}
.y15_c01086{bottom:556.773333pt;}
.y14_c01086{bottom:585.306667pt;}
.y13_c01086{bottom:615.040000pt;}
.y12_c01086{bottom:646.240000pt;}
.y11_c01086{bottom:676.773333pt;}
.y10_c01086{bottom:705.573333pt;}
.yf_c01086{bottom:735.306667pt;}
.ye_c01086{bottom:764.106667pt;}
.yd_c01086{bottom:793.706667pt;}
.yc_c01086{bottom:823.173333pt;}
.yb_c01086{bottom:852.906667pt;}
.ya_c01086{bottom:882.640000pt;}
.y9_c01086{bottom:912.240000pt;}
.y8_c01086{bottom:942.240000pt;}
.y7_c01086{bottom:970.773333pt;}
.y6_c01086{bottom:1000.506667pt;}
.y5_c01086{bottom:1029.573333pt;}
.y4_c01086{bottom:1058.640000pt;}
.y3_c01086{bottom:1088.906667pt;}
.y2_c01086{bottom:1118.640000pt;}
.y1_c01086{bottom:1147.840000pt;}
.h3_c01086{height:11.733399pt;}
.h4_c01086{height:38.937500pt;}
.h2_c01086{height:108.041667pt;}
.h0_c01086{height:1229.733333pt;}
.h1_c01086{height:1230.000000pt;}
.w2_c01086{width:93.222667pt;}
.w0_c01086{width:780.466667pt;}
.w1_c01086{width:780.666667pt;}
.x0_c01086{left:0.000000pt;}
.xd_c01086{left:36.266667pt;}
.xa_c01086{left:38.133333pt;}
.x9_c01086{left:39.600000pt;}
.x8_c01086{left:40.533333pt;}
.x7_c01086{left:41.600000pt;}
.x5_c01086{left:42.533333pt;}
.x6_c01086{left:43.466667pt;}
.x4_c01086{left:44.400000pt;}
.x3_c01086{left:45.333333pt;}
.x2_c01086{left:46.800000pt;}
.x1_c01086{left:49.200000pt;}
.xe_c01086{left:175.466667pt;}
.xb_c01086{left:302.666667pt;}
.xf_c01086{left:347.401530pt;}
.xc_c01086{left:361.733333pt;}
}





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

.ir_c01087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_f198b94818038cd54cc21619.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01087;src:url('chunks/assets/font_577acd087225b0ee1a670f5f.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01087;src:url('chunks/assets/font_2b487f13943d8ee9a72e1031.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01087;src:url('chunks/assets/font_94ca7266c8f8a1f128240a9c.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01087;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff5_c01087{font-family:ff5_c01087;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.ls1_c01087{letter-spacing:0.000000px;}
.ls3_c01087{letter-spacing:6.000000px;}
.ls0_c01087{letter-spacing:10.248000px;}
.ls2_c01087{letter-spacing:27.000000px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01087{word-spacing:-61.044000px;}
.ws2_c01087{word-spacing:-50.136000px;}
.ws0_c01087{word-spacing:-20.244000px;}
.ws1_c01087{word-spacing:-0.624000px;}
.ws4_c01087{word-spacing:0.000000px;}
._22_c01087{margin-left:-88.992000px;}
._21_c01087{margin-left:-84.000000px;}
._44_c01087{margin-left:-45.120000px;}
._43_c01087{margin-left:-37.248000px;}
._4b_c01087{margin-left:-31.776000px;}
._e_c01087{margin-left:-27.072000px;}
._57_c01087{margin-left:-26.016000px;}
._47_c01087{margin-left:-21.888000px;}
._34_c01087{margin-left:-20.604000px;}
._2e_c01087{margin-left:-19.296000px;}
._27_c01087{margin-left:-16.704000px;}
._f_c01087{margin-left:-15.456000px;}
._2f_c01087{margin-left:-13.920000px;}
._17_c01087{margin-left:-12.672000px;}
._41_c01087{margin-left:-11.616000px;}
._15_c01087{margin-left:-8.832000px;}
._14_c01087{margin-left:-7.008000px;}
._1e_c01087{margin-left:-5.472000px;}
._51_c01087{margin-left:-4.224000px;}
._11_c01087{margin-left:-3.168000px;}
._2_c01087{margin-left:-1.152000px;}
._4_c01087{width:1.632000px;}
._8_c01087{width:3.360000px;}
._7_c01087{width:4.800000px;}
._6_c01087{width:6.816000px;}
._d_c01087{width:8.160000px;}
._1b_c01087{width:9.408000px;}
._13_c01087{width:10.848000px;}
._25_c01087{width:12.384000px;}
._0_c01087{width:13.824000px;}
._50_c01087{width:15.456000px;}
._12_c01087{width:16.512000px;}
._3e_c01087{width:18.072000px;}
._1d_c01087{width:19.392000px;}
._2a_c01087{width:21.024000px;}
._3c_c01087{width:25.152000px;}
._b_c01087{width:26.208000px;}
._10_c01087{width:27.552000px;}
._1a_c01087{width:29.664000px;}
._3_c01087{width:31.392000px;}
._2c_c01087{width:32.544000px;}
._39_c01087{width:34.056000px;}
._c_c01087{width:35.136000px;}
._9_c01087{width:37.056000px;}
._1_c01087{width:38.400000px;}
._1c_c01087{width:40.320000px;}
._55_c01087{width:42.216000px;}
._24_c01087{width:43.392000px;}
._32_c01087{width:44.424000px;}
._31_c01087{width:45.600000px;}
._5_c01087{width:47.904000px;}
._26_c01087{width:49.344000px;}
._29_c01087{width:51.840000px;}
._a_c01087{width:52.992000px;}
._2d_c01087{width:54.144000px;}
._35_c01087{width:55.488000px;}
._30_c01087{width:57.792000px;}
._3d_c01087{width:58.944000px;}
._18_c01087{width:60.000000px;}
._3b_c01087{width:61.344000px;}
._2b_c01087{width:62.784000px;}
._33_c01087{width:64.152000px;}
._38_c01087{width:66.816000px;}
._58_c01087{width:68.640000px;}
._3a_c01087{width:73.824000px;}
._4d_c01087{width:75.816000px;}
._53_c01087{width:77.400000px;}
._4c_c01087{width:79.680000px;}
._52_c01087{width:85.920000px;}
._1f_c01087{width:103.488000px;}
._54_c01087{width:112.248000px;}
._42_c01087{width:124.992000px;}
._4f_c01087{width:127.308000px;}
._45_c01087{width:129.288000px;}
._23_c01087{width:135.840000px;}
._3f_c01087{width:139.488000px;}
._5a_c01087{width:165.972000px;}
._4a_c01087{width:181.824000px;}
._56_c01087{width:193.536000px;}
._37_c01087{width:252.672000px;}
._49_c01087{width:260.352000px;}
._36_c01087{width:295.776000px;}
._20_c01087{width:314.592000px;}
._5b_c01087{width:337.344000px;}
._4e_c01087{width:352.296000px;}
._40_c01087{width:372.444000px;}
._28_c01087{width:458.304000px;}
._46_c01087{width:459.384000px;}
._59_c01087{width:481.080000px;}
._19_c01087{width:656.928000px;}
._48_c01087{width:839.712000px;}
._16_c01087{width:1260.672000px;}
._5c_c01087{width:1778.592000px;}
.fc2_c01087{color:transparent;}
.fc1_c01087{color:rgb(128,128,128);}
.fc0_c01087{color:rgb(0,0,0);}
.fs4_c01087{font-size:48.000000px;}
.fs1_c01087{font-size:76.800000px;}
.fs2_c01087{font-size:84.000000px;}
.fs0_c01087{font-size:96.000000px;}
.fs3_c01087{font-size:99.000000px;}
.y0_c01087{bottom:0.000000px;}
.y26_c01087{bottom:3.105000px;}
.y25_c01087{bottom:7.228357px;}
.y24_c01087{bottom:108.330000px;}
.y23_c01087{bottom:140.130000px;}
.y22_c01087{bottom:174.780000px;}
.y21_c01087{bottom:208.980000px;}
.y20_c01087{bottom:242.430000px;}
.y1f_c01087{bottom:276.780000px;}
.y1e_c01087{bottom:310.830000px;}
.y1d_c01087{bottom:344.580000px;}
.y1c_c01087{bottom:378.630000px;}
.y1b_c01087{bottom:411.480000px;}
.y1a_c01087{bottom:445.530000px;}
.y19_c01087{bottom:479.280000px;}
.y18_c01087{bottom:513.030000px;}
.y17_c01087{bottom:547.530000px;}
.y16_c01087{bottom:581.130000px;}
.y15_c01087{bottom:614.280000px;}
.y14_c01087{bottom:648.630000px;}
.y13_c01087{bottom:682.380000px;}
.y12_c01087{bottom:715.830000px;}
.y11_c01087{bottom:749.880000px;}
.y10_c01087{bottom:783.030000px;}
.yf_c01087{bottom:815.730000px;}
.ye_c01087{bottom:849.780000px;}
.yd_c01087{bottom:883.230000px;}
.yc_c01087{bottom:915.330000px;}
.yb_c01087{bottom:951.030000px;}
.ya_c01087{bottom:983.580000px;}
.y9_c01087{bottom:1017.330000px;}
.y8_c01087{bottom:1050.330000px;}
.y7_c01087{bottom:1083.780000px;}
.y6_c01087{bottom:1117.230000px;}
.y5_c01087{bottom:1150.830000px;}
.y4_c01087{bottom:1185.030000px;}
.y3_c01087{bottom:1218.480000px;}
.y2_c01087{bottom:1251.780000px;}
.y1_c01087{bottom:1284.480000px;}
.h3_c01087{height:13.200074px;}
.h4_c01087{height:43.804688px;}
.h2_c01087{height:121.546875px;}
.h0_c01087{height:1382.700000px;}
.h1_c01087{height:1383.000000px;}
.w2_c01087{width:104.875500px;}
.w0_c01087{width:863.175000px;}
.w1_c01087{width:863.250000px;}
.x0_c01087{left:0.000000px;}
.xc_c01087{left:31.500000px;}
.x8_c01087{left:35.850000px;}
.xd_c01087{left:61.800000px;}
.x4_c01087{left:70.500000px;}
.x10_c01087{left:84.000000px;}
.xe_c01087{left:112.500000px;}
.x5_c01087{left:129.000000px;}
.x12_c01087{left:152.550000px;}
.x13_c01087{left:153.900000px;}
.x3_c01087{left:162.000000px;}
.x14_c01087{left:223.500000px;}
.xa_c01087{left:242.100000px;}
.x7_c01087{left:247.050000px;}
.xf_c01087{left:249.750000px;}
.x1_c01087{left:251.400000px;}
.x9_c01087{left:252.450000px;}
.xb_c01087{left:253.500000px;}
.x2_c01087{left:254.550000px;}
.x11_c01087{left:256.200000px;}
.x6_c01087{left:257.250000px;}
.x15_c01087{left:383.401749px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls1_c01087{letter-spacing:0.000000pt;}
.ls3_c01087{letter-spacing:5.333333pt;}
.ls0_c01087{letter-spacing:9.109333pt;}
.ls2_c01087{letter-spacing:24.000000pt;}
.ws3_c01087{word-spacing:-54.261333pt;}
.ws2_c01087{word-spacing:-44.565333pt;}
.ws0_c01087{word-spacing:-17.994667pt;}
.ws1_c01087{word-spacing:-0.554667pt;}
.ws4_c01087{word-spacing:0.000000pt;}
._22_c01087{margin-left:-79.104000pt;}
._21_c01087{margin-left:-74.666667pt;}
._44_c01087{margin-left:-40.106667pt;}
._43_c01087{margin-left:-33.109333pt;}
._4b_c01087{margin-left:-28.245333pt;}
._e_c01087{margin-left:-24.064000pt;}
._57_c01087{margin-left:-23.125333pt;}
._47_c01087{margin-left:-19.456000pt;}
._34_c01087{margin-left:-18.314667pt;}
._2e_c01087{margin-left:-17.152000pt;}
._27_c01087{margin-left:-14.848000pt;}
._f_c01087{margin-left:-13.738667pt;}
._2f_c01087{margin-left:-12.373333pt;}
._17_c01087{margin-left:-11.264000pt;}
._41_c01087{margin-left:-10.325333pt;}
._15_c01087{margin-left:-7.850667pt;}
._14_c01087{margin-left:-6.229333pt;}
._1e_c01087{margin-left:-4.864000pt;}
._51_c01087{margin-left:-3.754667pt;}
._11_c01087{margin-left:-2.816000pt;}
._2_c01087{margin-left:-1.024000pt;}
._4_c01087{width:1.450667pt;}
._8_c01087{width:2.986667pt;}
._7_c01087{width:4.266667pt;}
._6_c01087{width:6.058667pt;}
._d_c01087{width:7.253333pt;}
._1b_c01087{width:8.362667pt;}
._13_c01087{width:9.642667pt;}
._25_c01087{width:11.008000pt;}
._0_c01087{width:12.288000pt;}
._50_c01087{width:13.738667pt;}
._12_c01087{width:14.677333pt;}
._3e_c01087{width:16.064000pt;}
._1d_c01087{width:17.237333pt;}
._2a_c01087{width:18.688000pt;}
._3c_c01087{width:22.357333pt;}
._b_c01087{width:23.296000pt;}
._10_c01087{width:24.490667pt;}
._1a_c01087{width:26.368000pt;}
._3_c01087{width:27.904000pt;}
._2c_c01087{width:28.928000pt;}
._39_c01087{width:30.272000pt;}
._c_c01087{width:31.232000pt;}
._9_c01087{width:32.938667pt;}
._1_c01087{width:34.133333pt;}
._1c_c01087{width:35.840000pt;}
._55_c01087{width:37.525333pt;}
._24_c01087{width:38.570667pt;}
._32_c01087{width:39.488000pt;}
._31_c01087{width:40.533333pt;}
._5_c01087{width:42.581333pt;}
._26_c01087{width:43.861333pt;}
._29_c01087{width:46.080000pt;}
._a_c01087{width:47.104000pt;}
._2d_c01087{width:48.128000pt;}
._35_c01087{width:49.322667pt;}
._30_c01087{width:51.370667pt;}
._3d_c01087{width:52.394667pt;}
._18_c01087{width:53.333333pt;}
._3b_c01087{width:54.528000pt;}
._2b_c01087{width:55.808000pt;}
._33_c01087{width:57.024000pt;}
._38_c01087{width:59.392000pt;}
._58_c01087{width:61.013333pt;}
._3a_c01087{width:65.621333pt;}
._4d_c01087{width:67.392000pt;}
._53_c01087{width:68.800000pt;}
._4c_c01087{width:70.826667pt;}
._52_c01087{width:76.373333pt;}
._1f_c01087{width:91.989333pt;}
._54_c01087{width:99.776000pt;}
._42_c01087{width:111.104000pt;}
._4f_c01087{width:113.162667pt;}
._45_c01087{width:114.922667pt;}
._23_c01087{width:120.746667pt;}
._3f_c01087{width:123.989333pt;}
._5a_c01087{width:147.530667pt;}
._4a_c01087{width:161.621333pt;}
._56_c01087{width:172.032000pt;}
._37_c01087{width:224.597333pt;}
._49_c01087{width:231.424000pt;}
._36_c01087{width:262.912000pt;}
._20_c01087{width:279.637333pt;}
._5b_c01087{width:299.861333pt;}
._4e_c01087{width:313.152000pt;}
._40_c01087{width:331.061333pt;}
._28_c01087{width:407.381333pt;}
._46_c01087{width:408.341333pt;}
._59_c01087{width:427.626667pt;}
._19_c01087{width:583.936000pt;}
._48_c01087{width:746.410667pt;}
._16_c01087{width:1120.597333pt;}
._5c_c01087{width:1580.970667pt;}
.fs4_c01087{font-size:42.666667pt;}
.fs1_c01087{font-size:68.266667pt;}
.fs2_c01087{font-size:74.666667pt;}
.fs0_c01087{font-size:85.333333pt;}
.fs3_c01087{font-size:88.000000pt;}
.y0_c01087{bottom:0.000000pt;}
.y26_c01087{bottom:2.760000pt;}
.y25_c01087{bottom:6.425206pt;}
.y24_c01087{bottom:96.293333pt;}
.y23_c01087{bottom:124.560000pt;}
.y22_c01087{bottom:155.360000pt;}
.y21_c01087{bottom:185.760000pt;}
.y20_c01087{bottom:215.493333pt;}
.y1f_c01087{bottom:246.026667pt;}
.y1e_c01087{bottom:276.293333pt;}
.y1d_c01087{bottom:306.293333pt;}
.y1c_c01087{bottom:336.560000pt;}
.y1b_c01087{bottom:365.760000pt;}
.y1a_c01087{bottom:396.026667pt;}
.y19_c01087{bottom:426.026667pt;}
.y18_c01087{bottom:456.026667pt;}
.y17_c01087{bottom:486.693333pt;}
.y16_c01087{bottom:516.560000pt;}
.y15_c01087{bottom:546.026667pt;}
.y14_c01087{bottom:576.560000pt;}
.y13_c01087{bottom:606.560000pt;}
.y12_c01087{bottom:636.293333pt;}
.y11_c01087{bottom:666.560000pt;}
.y10_c01087{bottom:696.026667pt;}
.yf_c01087{bottom:725.093333pt;}
.ye_c01087{bottom:755.360000pt;}
.yd_c01087{bottom:785.093333pt;}
.yc_c01087{bottom:813.626667pt;}
.yb_c01087{bottom:845.360000pt;}
.ya_c01087{bottom:874.293333pt;}
.y9_c01087{bottom:904.293333pt;}
.y8_c01087{bottom:933.626667pt;}
.y7_c01087{bottom:963.360000pt;}
.y6_c01087{bottom:993.093333pt;}
.y5_c01087{bottom:1022.960000pt;}
.y4_c01087{bottom:1053.360000pt;}
.y3_c01087{bottom:1083.093333pt;}
.y2_c01087{bottom:1112.693333pt;}
.y1_c01087{bottom:1141.760000pt;}
.h3_c01087{height:11.733399pt;}
.h4_c01087{height:38.937500pt;}
.h2_c01087{height:108.041667pt;}
.h0_c01087{height:1229.066667pt;}
.h1_c01087{height:1229.333333pt;}
.w2_c01087{width:93.222667pt;}
.w0_c01087{width:767.266667pt;}
.w1_c01087{width:767.333333pt;}
.x0_c01087{left:0.000000pt;}
.xc_c01087{left:28.000000pt;}
.x8_c01087{left:31.866667pt;}
.xd_c01087{left:54.933333pt;}
.x4_c01087{left:62.666667pt;}
.x10_c01087{left:74.666667pt;}
.xe_c01087{left:100.000000pt;}
.x5_c01087{left:114.666667pt;}
.x12_c01087{left:135.600000pt;}
.x13_c01087{left:136.800000pt;}
.x3_c01087{left:144.000000pt;}
.x14_c01087{left:198.666667pt;}
.xa_c01087{left:215.200000pt;}
.x7_c01087{left:219.600000pt;}
.xf_c01087{left:222.000000pt;}
.x1_c01087{left:223.466667pt;}
.x9_c01087{left:224.400000pt;}
.xb_c01087{left:225.333333pt;}
.x2_c01087{left:226.266667pt;}
.x11_c01087{left:227.733333pt;}
.x6_c01087{left:228.666667pt;}
.x15_c01087{left:340.801554pt;}
}





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

.ir_c01088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_d787854ed1b742a0783835fa.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01088;src:url('chunks/assets/font_480abdac11e5b39e46be7af8.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01088;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01088{vertical-align:-133.800000px;}
.v0_c01088{vertical-align:0.000000px;}
.ls0_c01088{letter-spacing:0.000000px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01088{word-spacing:-23.136000px;}
.ws0_c01088{word-spacing:-20.244000px;}
.ws2_c01088{word-spacing:0.000000px;}
._2f_c01088{margin-left:-21.024000px;}
._20_c01088{margin-left:-16.416000px;}
._21_c01088{margin-left:-12.960000px;}
._e_c01088{margin-left:-9.120000px;}
._11_c01088{margin-left:-4.800000px;}
._10_c01088{margin-left:-3.744000px;}
._30_c01088{margin-left:-2.616000px;}
._1c_c01088{margin-left:-1.344000px;}
._a_c01088{width:1.152000px;}
._3_c01088{width:2.304000px;}
._5_c01088{width:3.936000px;}
._0_c01088{width:5.280000px;}
._9_c01088{width:6.528000px;}
._1_c01088{width:8.544000px;}
._8_c01088{width:10.272000px;}
._2a_c01088{width:11.424000px;}
._2_c01088{width:12.576000px;}
._17_c01088{width:14.280000px;}
._18_c01088{width:15.876000px;}
._1a_c01088{width:17.472000px;}
._1e_c01088{width:18.720000px;}
._33_c01088{width:20.064000px;}
._26_c01088{width:21.216000px;}
._34_c01088{width:22.392000px;}
._22_c01088{width:24.372000px;}
._13_c01088{width:25.536000px;}
._23_c01088{width:27.648000px;}
._d_c01088{width:30.624000px;}
._19_c01088{width:31.788000px;}
._15_c01088{width:34.176000px;}
._6_c01088{width:36.192000px;}
._14_c01088{width:38.976000px;}
._4_c01088{width:40.032000px;}
._2d_c01088{width:41.376000px;}
._27_c01088{width:42.456000px;}
._7_c01088{width:43.776000px;}
._12_c01088{width:45.312000px;}
._32_c01088{width:46.656000px;}
._28_c01088{width:49.152000px;}
._1b_c01088{width:52.152000px;}
._b_c01088{width:53.664000px;}
._c_c01088{width:55.104000px;}
._29_c01088{width:56.448000px;}
._16_c01088{width:58.440000px;}
._1f_c01088{width:59.712000px;}
._25_c01088{width:62.592000px;}
._2e_c01088{width:64.056000px;}
._24_c01088{width:66.528000px;}
._f_c01088{width:68.640000px;}
._2c_c01088{width:72.672000px;}
._31_c01088{width:73.728000px;}
._2b_c01088{width:77.952000px;}
._1d_c01088{width:177.312000px;}
._36_c01088{width:503.448000px;}
._37_c01088{width:559.584000px;}
._35_c01088{width:893.700000px;}
.fc2_c01088{color:transparent;}
.fc1_c01088{color:rgb(128,128,128);}
.fc0_c01088{color:rgb(0,0,0);}
.fs3_c01088{font-size:48.000000px;}
.fs1_c01088{font-size:84.000000px;}
.fs2_c01088{font-size:87.000000px;}
.fs0_c01088{font-size:96.000000px;}
.y0_c01088{bottom:0.000000px;}
.y14_c01088{bottom:3.105000px;}
.y13_c01088{bottom:7.228369px;}
.y12_c01088{bottom:107.220000px;}
.y11_c01088{bottom:434.070000px;}
.y10_c01088{bottom:715.170000px;}
.yf_c01088{bottom:751.320000px;}
.ye_c01088{bottom:816.120000px;}
.yd_c01088{bottom:849.720000px;}
.yc_c01088{bottom:882.870000px;}
.yb_c01088{bottom:949.320000px;}
.ya_c01088{bottom:982.770000px;}
.y9_c01088{bottom:1016.220000px;}
.y8_c01088{bottom:1049.670000px;}
.y7_c01088{bottom:1082.370000px;}
.y6_c01088{bottom:1115.070000px;}
.y5_c01088{bottom:1147.770000px;}
.y4_c01088{bottom:1181.820000px;}
.y3_c01088{bottom:1215.270000px;}
.y2_c01088{bottom:1248.120000px;}
.y1_c01088{bottom:1281.720000px;}
.h5_c01088{height:13.200073px;}
.h6_c01088{height:43.804688px;}
.h3_c01088{height:106.353516px;}
.h4_c01088{height:110.151855px;}
.h2_c01088{height:121.546875px;}
.h0_c01088{height:1383.450000px;}
.h1_c01088{height:1383.750000px;}
.w2_c01088{width:104.875500px;}
.w0_c01088{width:878.025000px;}
.w1_c01088{width:878.250000px;}
.x0_c01088{left:0.000000px;}
.x6_c01088{left:45.000000px;}
.x5_c01088{left:47.700000px;}
.x3_c01088{left:48.900000px;}
.x1_c01088{left:49.950000px;}
.x2_c01088{left:51.600000px;}
.x4_c01088{left:102.900000px;}
.x8_c01088{left:208.650000px;}
.xa_c01088{left:326.400000px;}
.x7_c01088{left:351.300000px;}
.x9_c01088{left:386.100000px;}
.xb_c01088{left:390.826721px;}
@media print{
.v1_c01088{vertical-align:-118.933333pt;}
.v0_c01088{vertical-align:0.000000pt;}
.ls0_c01088{letter-spacing:0.000000pt;}
.ws1_c01088{word-spacing:-20.565333pt;}
.ws0_c01088{word-spacing:-17.994667pt;}
.ws2_c01088{word-spacing:0.000000pt;}
._2f_c01088{margin-left:-18.688000pt;}
._20_c01088{margin-left:-14.592000pt;}
._21_c01088{margin-left:-11.520000pt;}
._e_c01088{margin-left:-8.106667pt;}
._11_c01088{margin-left:-4.266667pt;}
._10_c01088{margin-left:-3.328000pt;}
._30_c01088{margin-left:-2.325333pt;}
._1c_c01088{margin-left:-1.194667pt;}
._a_c01088{width:1.024000pt;}
._3_c01088{width:2.048000pt;}
._5_c01088{width:3.498667pt;}
._0_c01088{width:4.693333pt;}
._9_c01088{width:5.802667pt;}
._1_c01088{width:7.594667pt;}
._8_c01088{width:9.130667pt;}
._2a_c01088{width:10.154667pt;}
._2_c01088{width:11.178667pt;}
._17_c01088{width:12.693333pt;}
._18_c01088{width:14.112000pt;}
._1a_c01088{width:15.530667pt;}
._1e_c01088{width:16.640000pt;}
._33_c01088{width:17.834667pt;}
._26_c01088{width:18.858667pt;}
._34_c01088{width:19.904000pt;}
._22_c01088{width:21.664000pt;}
._13_c01088{width:22.698667pt;}
._23_c01088{width:24.576000pt;}
._d_c01088{width:27.221333pt;}
._19_c01088{width:28.256000pt;}
._15_c01088{width:30.378667pt;}
._6_c01088{width:32.170667pt;}
._14_c01088{width:34.645333pt;}
._4_c01088{width:35.584000pt;}
._2d_c01088{width:36.778667pt;}
._27_c01088{width:37.738667pt;}
._7_c01088{width:38.912000pt;}
._12_c01088{width:40.277333pt;}
._32_c01088{width:41.472000pt;}
._28_c01088{width:43.690667pt;}
._1b_c01088{width:46.357333pt;}
._b_c01088{width:47.701333pt;}
._c_c01088{width:48.981333pt;}
._29_c01088{width:50.176000pt;}
._16_c01088{width:51.946667pt;}
._1f_c01088{width:53.077333pt;}
._25_c01088{width:55.637333pt;}
._2e_c01088{width:56.938667pt;}
._24_c01088{width:59.136000pt;}
._f_c01088{width:61.013333pt;}
._2c_c01088{width:64.597333pt;}
._31_c01088{width:65.536000pt;}
._2b_c01088{width:69.290667pt;}
._1d_c01088{width:157.610667pt;}
._36_c01088{width:447.509333pt;}
._37_c01088{width:497.408000pt;}
._35_c01088{width:794.400000pt;}
.fs3_c01088{font-size:42.666667pt;}
.fs1_c01088{font-size:74.666667pt;}
.fs2_c01088{font-size:77.333333pt;}
.fs0_c01088{font-size:85.333333pt;}
.y0_c01088{bottom:0.000000pt;}
.y14_c01088{bottom:2.760000pt;}
.y13_c01088{bottom:6.425217pt;}
.y12_c01088{bottom:95.306667pt;}
.y11_c01088{bottom:385.840000pt;}
.y10_c01088{bottom:635.706667pt;}
.yf_c01088{bottom:667.840000pt;}
.ye_c01088{bottom:725.440000pt;}
.yd_c01088{bottom:755.306667pt;}
.yc_c01088{bottom:784.773333pt;}
.yb_c01088{bottom:843.840000pt;}
.ya_c01088{bottom:873.573333pt;}
.y9_c01088{bottom:903.306667pt;}
.y8_c01088{bottom:933.040000pt;}
.y7_c01088{bottom:962.106667pt;}
.y6_c01088{bottom:991.173333pt;}
.y5_c01088{bottom:1020.240000pt;}
.y4_c01088{bottom:1050.506667pt;}
.y3_c01088{bottom:1080.240000pt;}
.y2_c01088{bottom:1109.440000pt;}
.y1_c01088{bottom:1139.306667pt;}
.h5_c01088{height:11.733399pt;}
.h6_c01088{height:38.937500pt;}
.h3_c01088{height:94.536458pt;}
.h4_c01088{height:97.912760pt;}
.h2_c01088{height:108.041667pt;}
.h0_c01088{height:1229.733333pt;}
.h1_c01088{height:1230.000000pt;}
.w2_c01088{width:93.222667pt;}
.w0_c01088{width:780.466667pt;}
.w1_c01088{width:780.666667pt;}
.x0_c01088{left:0.000000pt;}
.x6_c01088{left:40.000000pt;}
.x5_c01088{left:42.400000pt;}
.x3_c01088{left:43.466667pt;}
.x1_c01088{left:44.400000pt;}
.x2_c01088{left:45.866667pt;}
.x4_c01088{left:91.466667pt;}
.x8_c01088{left:185.466667pt;}
.xa_c01088{left:290.133333pt;}
.x7_c01088{left:312.266667pt;}
.x9_c01088{left:343.200000pt;}
.xb_c01088{left:347.401530pt;}
}





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

.ir_c01089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_b3a02af4ef87f02a09693ec1.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01089;src:url('chunks/assets/font_bc76fb6085e9c6ef4c287b75.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01089;src:url('chunks/assets/font_2ea4a439fcf08b99d85322a3.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01089;src:url('chunks/assets/font_b6c6df2f3ede090a2a5cdab1.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01089;src:url('chunks/assets/font_285eec8d0760b65535076a45.woff2')format("woff");}.ff5_c01089{font-family:ff5_c01089;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01089;src:url('chunks/assets/font_03e010fb8c3c5d4c9d0e65b2.woff2')format("woff");}.ff6_c01089{font-family:ff6_c01089;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01089;src:url('chunks/assets/font_067f50baa02eac99ec6cde68.woff2')format("woff");}.ff7_c01089{font-family:ff7_c01089;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01089;src:url('chunks/assets/font_73953cd8f9d12bbe3d00fa0a.woff2')format("woff");}.ff8_c01089{font-family:ff8_c01089;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01089;src:url('chunks/assets/font_99ff4beab36aeb53c18e157f.woff2')format("woff");}.ff9_c01089{font-family:ff9_c01089;line-height:1.437000;font-style:normal;font-weight: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_c01089;src:url('chunks/assets/font_604d85ddf51c11304962e651.woff2')format("woff");}.ffa_c01089{font-family:ffa_c01089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01089;src:url('chunks/assets/font_6bac329be192216c858b9cdc.woff2')format("woff");}.ffb_c01089{font-family:ffb_c01089;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01089;src:url('chunks/assets/font_3785d82b1e01b4f762f8bfbc.woff2')format("woff");}.ffc_c01089{font-family:ffc_c01089;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01089;src:url('chunks/assets/font_b1d6ad98ce6915d784a95a18.woff2')format("woff");}.ffd_c01089{font-family:ffd_c01089;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c01089;src:url('chunks/assets/font_ba3a9c6bfa73dd53c8b44ec1.woff2')format("woff");}.ffe_c01089{font-family:ffe_c01089;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:fff_c01089;src:url('chunks/assets/font_12286cd3a37225cdc3dc0cff.woff2')format("woff");}.fff_c01089{font-family:fff_c01089;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c01089;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff10_c01089{font-family:ff10_c01089;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01089{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c01089{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.v1_c01089{vertical-align:-42.000000px;}
.v0_c01089{vertical-align:0.000000px;}
.ls9_c01089{letter-spacing:-3.000000px;}
.ls6_c01089{letter-spacing:0.000000px;}
.ls7_c01089{letter-spacing:3.000000px;}
.ls1_c01089{letter-spacing:3.590400px;}
.ls2_c01089{letter-spacing:6.000000px;}
.ls4_c01089{letter-spacing:7.800000px;}
.ls0_c01089{letter-spacing:11.145600px;}
.ls5_c01089{letter-spacing:13.272000px;}
.ls8_c01089{letter-spacing:21.000000px;}
.ls3_c01089{letter-spacing:24.300000px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01089{word-spacing:-58.029000px;}
.wsb_c01089{word-spacing:-51.000000px;}
.ws4_c01089{word-spacing:-36.000000px;}
.ws9_c01089{word-spacing:-32.751000px;}
.ws5_c01089{word-spacing:-32.424000px;}
.ws7_c01089{word-spacing:-30.969000px;}
.ws3_c01089{word-spacing:-27.690000px;}
.wsa_c01089{word-spacing:-23.136000px;}
.ws6_c01089{word-spacing:-21.012000px;}
.wsd_c01089{word-spacing:-20.967000px;}
.ws8_c01089{word-spacing:-20.244000px;}
.wsc_c01089{word-spacing:-14.460000px;}
.ws2_c01089{word-spacing:-3.099000px;}
.ws1_c01089{word-spacing:-3.079200px;}
.wsf_c01089{word-spacing:0.000000px;}
.ws0_c01089{word-spacing:34.368000px;}
._3b_c01089{margin-left:-81.000000px;}
._3a_c01089{margin-left:-77.208000px;}
._35_c01089{margin-left:-52.911000px;}
._36_c01089{margin-left:-51.417000px;}
._3c_c01089{margin-left:-40.117200px;}
._3d_c01089{margin-left:-34.539000px;}
._39_c01089{margin-left:-28.347000px;}
._37_c01089{margin-left:-26.953200px;}
._2c_c01089{margin-left:-25.888200px;}
._1d_c01089{margin-left:-24.646800px;}
._38_c01089{margin-left:-22.363800px;}
._0_c01089{margin-left:-20.640000px;}
._9_c01089{margin-left:-19.257000px;}
._b_c01089{margin-left:-17.721000px;}
._1f_c01089{margin-left:-15.720000px;}
._6_c01089{margin-left:-14.688000px;}
._a_c01089{margin-left:-13.563000px;}
._29_c01089{margin-left:-12.343800px;}
._5_c01089{margin-left:-11.136000px;}
._d_c01089{margin-left:-9.504000px;}
._f_c01089{margin-left:-8.076000px;}
._1_c01089{margin-left:-6.816000px;}
._8_c01089{margin-left:-5.664000px;}
._14_c01089{margin-left:-4.123200px;}
._3_c01089{margin-left:-2.880000px;}
._2_c01089{margin-left:-1.536000px;}
._16_c01089{width:1.482000px;}
._19_c01089{width:2.697000px;}
._11_c01089{width:4.257000px;}
._26_c01089{width:5.592000px;}
._12_c01089{width:7.128000px;}
._1c_c01089{width:8.649000px;}
._1b_c01089{width:9.858000px;}
._23_c01089{width:12.003000px;}
._22_c01089{width:14.016000px;}
._1a_c01089{width:16.647000px;}
._7_c01089{width:18.912000px;}
._e_c01089{width:21.591000px;}
._24_c01089{width:24.165000px;}
._25_c01089{width:27.600000px;}
._32_c01089{width:29.376000px;}
._34_c01089{width:30.645600px;}
._2d_c01089{width:31.908000px;}
._33_c01089{width:34.314000px;}
._c_c01089{width:35.337000px;}
._27_c01089{width:36.423000px;}
._18_c01089{width:38.358000px;}
._2a_c01089{width:40.020600px;}
._13_c01089{width:42.348000px;}
._30_c01089{width:43.555200px;}
._10_c01089{width:44.733000px;}
._4_c01089{width:46.176000px;}
._15_c01089{width:47.322000px;}
._17_c01089{width:49.985400px;}
._21_c01089{width:54.648000px;}
._1e_c01089{width:57.753000px;}
._2f_c01089{width:65.724000px;}
._31_c01089{width:77.268000px;}
._2b_c01089{width:81.963000px;}
._28_c01089{width:173.943000px;}
._2e_c01089{width:313.311600px;}
._20_c01089{width:326.571000px;}
.fc2_c01089{color:transparent;}
.fc1_c01089{color:rgb(128,128,128);}
.fc0_c01089{color:rgb(0,0,0);}
.fs10_c01089{font-size:24.000000px;}
.fs11_c01089{font-size:48.000000px;}
.fsb_c01089{font-size:57.000000px;}
.fs6_c01089{font-size:60.000000px;}
.fs7_c01089{font-size:67.200000px;}
.fs2_c01089{font-size:79.200000px;}
.fs8_c01089{font-size:84.000000px;}
.fsf_c01089{font-size:87.000000px;}
.fs5_c01089{font-size:90.000000px;}
.fs4_c01089{font-size:93.000000px;}
.fs0_c01089{font-size:96.000000px;}
.fs1_c01089{font-size:99.000000px;}
.fsc_c01089{font-size:102.000000px;}
.fsd_c01089{font-size:105.000000px;}
.fse_c01089{font-size:111.000000px;}
.fs3_c01089{font-size:114.000000px;}
.fs9_c01089{font-size:117.000000px;}
.fsa_c01089{font-size:135.000000px;}
.y0_c01089{bottom:0.000000px;}
.y19_c01089{bottom:3.105000px;}
.y18_c01089{bottom:7.228357px;}
.y17_c01089{bottom:215.730000px;}
.y16_c01089{bottom:278.130000px;}
.y14_c01089{bottom:320.730000px;}
.y15_c01089{bottom:365.880000px;}
.y11_c01089{bottom:711.180000px;}
.y13_c01089{bottom:748.980000px;}
.y10_c01089{bottom:753.030000px;}
.y12_c01089{bottom:754.080000px;}
.ye_c01089{bottom:782.730000px;}
.yd_c01089{bottom:844.080000px;}
.yf_c01089{bottom:877.230000px;}
.yc_c01089{bottom:879.180000px;}
.yb_c01089{bottom:912.030000px;}
.ya_c01089{bottom:978.030000px;}
.y9_c01089{bottom:1012.830000px;}
.y8_c01089{bottom:1077.330000px;}
.y7_c01089{bottom:1111.380000px;}
.y6_c01089{bottom:1144.830000px;}
.y5_c01089{bottom:1153.230000px;}
.y4_c01089{bottom:1179.630000px;}
.y3_c01089{bottom:1212.330000px;}
.y2_c01089{bottom:1246.080000px;}
.y1_c01089{bottom:1286.580000px;}
.he_c01089{height:13.200074px;}
.hd_c01089{height:25.608000px;}
.hf_c01089{height:43.804688px;}
.h6_c01089{height:62.880000px;}
.ha_c01089{height:75.966797px;}
.hc_c01089{height:98.314453px;}
.h5_c01089{height:105.336914px;}
.hb_c01089{height:110.151855px;}
.h8_c01089{height:110.568000px;}
.h4_c01089{height:120.067383px;}
.h2_c01089{height:121.546875px;}
.h3_c01089{height:125.345215px;}
.h7_c01089{height:132.429199px;}
.h9_c01089{height:140.538574px;}
.h0_c01089{height:1382.700000px;}
.h1_c01089{height:1383.000000px;}
.w2_c01089{width:104.875500px;}
.w0_c01089{width:863.175000px;}
.w1_c01089{width:863.250000px;}
.x0_c01089{left:0.000000px;}
.x13_c01089{left:54.300000px;}
.x6_c01089{left:233.100000px;}
.x2_c01089{left:248.100000px;}
.x3_c01089{left:249.750000px;}
.xd_c01089{left:304.500000px;}
.x10_c01089{left:307.800000px;}
.x9_c01089{left:339.900000px;}
.x8_c01089{left:357.150000px;}
.x7_c01089{left:360.450000px;}
.x14_c01089{left:383.401749px;}
.xc_c01089{left:431.550000px;}
.x5_c01089{left:442.050000px;}
.x12_c01089{left:564.000000px;}
.xa_c01089{left:579.600000px;}
.x1_c01089{left:614.250000px;}
.xb_c01089{left:666.000000px;}
.x11_c01089{left:726.000000px;}
.x4_c01089{left:790.200000px;}
.xe_c01089{left:801.300000px;}
.xf_c01089{left:802.800000px;}
@media print{
.v1_c01089{vertical-align:-37.333333pt;}
.v0_c01089{vertical-align:0.000000pt;}
.ls9_c01089{letter-spacing:-2.666667pt;}
.ls6_c01089{letter-spacing:0.000000pt;}
.ls7_c01089{letter-spacing:2.666667pt;}
.ls1_c01089{letter-spacing:3.191467pt;}
.ls2_c01089{letter-spacing:5.333333pt;}
.ls4_c01089{letter-spacing:6.933333pt;}
.ls0_c01089{letter-spacing:9.907200pt;}
.ls5_c01089{letter-spacing:11.797333pt;}
.ls8_c01089{letter-spacing:18.666667pt;}
.ls3_c01089{letter-spacing:21.600000pt;}
.wse_c01089{word-spacing:-51.581333pt;}
.wsb_c01089{word-spacing:-45.333333pt;}
.ws4_c01089{word-spacing:-32.000000pt;}
.ws9_c01089{word-spacing:-29.112000pt;}
.ws5_c01089{word-spacing:-28.821333pt;}
.ws7_c01089{word-spacing:-27.528000pt;}
.ws3_c01089{word-spacing:-24.613333pt;}
.wsa_c01089{word-spacing:-20.565333pt;}
.ws6_c01089{word-spacing:-18.677333pt;}
.wsd_c01089{word-spacing:-18.637333pt;}
.ws8_c01089{word-spacing:-17.994667pt;}
.wsc_c01089{word-spacing:-12.853333pt;}
.ws2_c01089{word-spacing:-2.754667pt;}
.ws1_c01089{word-spacing:-2.737067pt;}
.wsf_c01089{word-spacing:0.000000pt;}
.ws0_c01089{word-spacing:30.549333pt;}
._3b_c01089{margin-left:-72.000000pt;}
._3a_c01089{margin-left:-68.629333pt;}
._35_c01089{margin-left:-47.032000pt;}
._36_c01089{margin-left:-45.704000pt;}
._3c_c01089{margin-left:-35.659733pt;}
._3d_c01089{margin-left:-30.701333pt;}
._39_c01089{margin-left:-25.197333pt;}
._37_c01089{margin-left:-23.958400pt;}
._2c_c01089{margin-left:-23.011733pt;}
._1d_c01089{margin-left:-21.908267pt;}
._38_c01089{margin-left:-19.878933pt;}
._0_c01089{margin-left:-18.346667pt;}
._9_c01089{margin-left:-17.117333pt;}
._b_c01089{margin-left:-15.752000pt;}
._1f_c01089{margin-left:-13.973333pt;}
._6_c01089{margin-left:-13.056000pt;}
._a_c01089{margin-left:-12.056000pt;}
._29_c01089{margin-left:-10.972267pt;}
._5_c01089{margin-left:-9.898667pt;}
._d_c01089{margin-left:-8.448000pt;}
._f_c01089{margin-left:-7.178667pt;}
._1_c01089{margin-left:-6.058667pt;}
._8_c01089{margin-left:-5.034667pt;}
._14_c01089{margin-left:-3.665067pt;}
._3_c01089{margin-left:-2.560000pt;}
._2_c01089{margin-left:-1.365333pt;}
._16_c01089{width:1.317333pt;}
._19_c01089{width:2.397333pt;}
._11_c01089{width:3.784000pt;}
._26_c01089{width:4.970667pt;}
._12_c01089{width:6.336000pt;}
._1c_c01089{width:7.688000pt;}
._1b_c01089{width:8.762667pt;}
._23_c01089{width:10.669333pt;}
._22_c01089{width:12.458667pt;}
._1a_c01089{width:14.797333pt;}
._7_c01089{width:16.810667pt;}
._e_c01089{width:19.192000pt;}
._24_c01089{width:21.480000pt;}
._25_c01089{width:24.533333pt;}
._32_c01089{width:26.112000pt;}
._34_c01089{width:27.240533pt;}
._2d_c01089{width:28.362667pt;}
._33_c01089{width:30.501333pt;}
._c_c01089{width:31.410667pt;}
._27_c01089{width:32.376000pt;}
._18_c01089{width:34.096000pt;}
._2a_c01089{width:35.573867pt;}
._13_c01089{width:37.642667pt;}
._30_c01089{width:38.715733pt;}
._10_c01089{width:39.762667pt;}
._4_c01089{width:41.045333pt;}
._15_c01089{width:42.064000pt;}
._17_c01089{width:44.431467pt;}
._21_c01089{width:48.576000pt;}
._1e_c01089{width:51.336000pt;}
._2f_c01089{width:58.421333pt;}
._31_c01089{width:68.682667pt;}
._2b_c01089{width:72.856000pt;}
._28_c01089{width:154.616000pt;}
._2e_c01089{width:278.499200pt;}
._20_c01089{width:290.285333pt;}
.fs10_c01089{font-size:21.333333pt;}
.fs11_c01089{font-size:42.666667pt;}
.fsb_c01089{font-size:50.666667pt;}
.fs6_c01089{font-size:53.333333pt;}
.fs7_c01089{font-size:59.733333pt;}
.fs2_c01089{font-size:70.400000pt;}
.fs8_c01089{font-size:74.666667pt;}
.fsf_c01089{font-size:77.333333pt;}
.fs5_c01089{font-size:80.000000pt;}
.fs4_c01089{font-size:82.666667pt;}
.fs0_c01089{font-size:85.333333pt;}
.fs1_c01089{font-size:88.000000pt;}
.fsc_c01089{font-size:90.666667pt;}
.fsd_c01089{font-size:93.333333pt;}
.fse_c01089{font-size:98.666667pt;}
.fs3_c01089{font-size:101.333333pt;}
.fs9_c01089{font-size:104.000000pt;}
.fsa_c01089{font-size:120.000000pt;}
.y0_c01089{bottom:0.000000pt;}
.y19_c01089{bottom:2.760000pt;}
.y18_c01089{bottom:6.425206pt;}
.y17_c01089{bottom:191.760000pt;}
.y16_c01089{bottom:247.226667pt;}
.y14_c01089{bottom:285.093333pt;}
.y15_c01089{bottom:325.226667pt;}
.y11_c01089{bottom:632.160000pt;}
.y13_c01089{bottom:665.760000pt;}
.y10_c01089{bottom:669.360000pt;}
.y12_c01089{bottom:670.293333pt;}
.ye_c01089{bottom:695.760000pt;}
.yd_c01089{bottom:750.293333pt;}
.yf_c01089{bottom:779.760000pt;}
.yc_c01089{bottom:781.493333pt;}
.yb_c01089{bottom:810.693333pt;}
.ya_c01089{bottom:869.360000pt;}
.y9_c01089{bottom:900.293333pt;}
.y8_c01089{bottom:957.626667pt;}
.y7_c01089{bottom:987.893333pt;}
.y6_c01089{bottom:1017.626667pt;}
.y5_c01089{bottom:1025.093333pt;}
.y4_c01089{bottom:1048.560000pt;}
.y3_c01089{bottom:1077.626667pt;}
.y2_c01089{bottom:1107.626667pt;}
.y1_c01089{bottom:1143.626667pt;}
.he_c01089{height:11.733399pt;}
.hd_c01089{height:22.762667pt;}
.hf_c01089{height:38.937500pt;}
.h6_c01089{height:55.893333pt;}
.ha_c01089{height:67.526042pt;}
.hc_c01089{height:87.390625pt;}
.h5_c01089{height:93.632812pt;}
.hb_c01089{height:97.912760pt;}
.h8_c01089{height:98.282667pt;}
.h4_c01089{height:106.726562pt;}
.h2_c01089{height:108.041667pt;}
.h3_c01089{height:111.417969pt;}
.h7_c01089{height:117.714844pt;}
.h9_c01089{height:124.923177pt;}
.h0_c01089{height:1229.066667pt;}
.h1_c01089{height:1229.333333pt;}
.w2_c01089{width:93.222667pt;}
.w0_c01089{width:767.266667pt;}
.w1_c01089{width:767.333333pt;}
.x0_c01089{left:0.000000pt;}
.x13_c01089{left:48.266667pt;}
.x6_c01089{left:207.200000pt;}
.x2_c01089{left:220.533333pt;}
.x3_c01089{left:222.000000pt;}
.xd_c01089{left:270.666667pt;}
.x10_c01089{left:273.600000pt;}
.x9_c01089{left:302.133333pt;}
.x8_c01089{left:317.466667pt;}
.x7_c01089{left:320.400000pt;}
.x14_c01089{left:340.801554pt;}
.xc_c01089{left:383.600000pt;}
.x5_c01089{left:392.933333pt;}
.x12_c01089{left:501.333333pt;}
.xa_c01089{left:515.200000pt;}
.x1_c01089{left:546.000000pt;}
.xb_c01089{left:592.000000pt;}
.x11_c01089{left:645.333333pt;}
.x4_c01089{left:702.400000pt;}
.xe_c01089{left:712.266667pt;}
.xf_c01089{left:713.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_c01090 {
    display:none;
  }
  .loading-indicator_c01090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01090 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01090 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01090" -> "#page-container .classname_c01090")
 */
.pf_c01090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01090 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01090 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01090 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01090 {overflow:visible;}
  }
}
.c_c01090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01090 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01090:after { /* webkit #35443 */
  content: '';
}
.t_c01090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01090 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01090 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01090 { /* info for Javascript */
  display:none;
}
.l_c01090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_fea664310d7169654f2d437a.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01090;src:url('chunks/assets/font_e6ed9a939a016467c4fe290d.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01090;src:url('chunks/assets/font_beafe9fb5df99176d32a3c62.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01090;src:url('chunks/assets/font_4a900e37ca3d87c9a85f777c.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;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_c01090;src:url('chunks/assets/font_ec36ca9dc9aae53475f99b03.woff2')format("woff");}.ff5_c01090{font-family:ff5_c01090;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01090;src:url('chunks/assets/font_57dbf0019ce9c137fe9c77fa.woff2')format("woff");}.ff6_c01090{font-family:ff6_c01090;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01090;src:url('chunks/assets/font_b0b995d8098677ddfeef1412.woff2')format("woff");}.ff7_c01090{font-family:ff7_c01090;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01090;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff8_c01090{font-family:ff8_c01090;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01090{vertical-align:0.000000px;}
.v1_c01090{vertical-align:174.000000px;}
.ls5_c01090{letter-spacing:-9.000000px;}
.ls9_c01090{letter-spacing:-3.000000px;}
.ls6_c01090{letter-spacing:0.000000px;}
.ls7_c01090{letter-spacing:12.000000px;}
.ls0_c01090{letter-spacing:18.768000px;}
.ls3_c01090{letter-spacing:19.905600px;}
.ls1_c01090{letter-spacing:24.067200px;}
.ls4_c01090{letter-spacing:26.505600px;}
.ls2_c01090{letter-spacing:28.848000px;}
.ls8_c01090{letter-spacing:30.000000px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01090{word-spacing:-139.347000px;}
.ws6_c01090{word-spacing:-51.000000px;}
.ws3_c01090{word-spacing:-32.424000px;}
.ws1_c01090{word-spacing:-29.130000px;}
.ws2_c01090{word-spacing:-23.136000px;}
.ws4_c01090{word-spacing:-20.244000px;}
.ws5_c01090{word-spacing:-17.967000px;}
.ws7_c01090{word-spacing:0.000000px;}
._68_c01090{margin-left:-83.616000px;}
._6d_c01090{margin-left:-82.575000px;}
._6c_c01090{margin-left:-67.251000px;}
._3f_c01090{margin-left:-53.952000px;}
._50_c01090{margin-left:-47.904000px;}
._31_c01090{margin-left:-42.768000px;}
._30_c01090{margin-left:-38.853000px;}
._32_c01090{margin-left:-37.224000px;}
._2f_c01090{margin-left:-33.261000px;}
._2c_c01090{margin-left:-31.605000px;}
._24_c01090{margin-left:-30.576000px;}
._36_c01090{margin-left:-26.976000px;}
._39_c01090{margin-left:-23.184000px;}
._4b_c01090{margin-left:-21.000000px;}
._2a_c01090{margin-left:-19.530000px;}
._1f_c01090{margin-left:-18.144000px;}
._2d_c01090{margin-left:-16.746000px;}
._f_c01090{margin-left:-14.688000px;}
._d_c01090{margin-left:-13.392000px;}
._29_c01090{margin-left:-11.550000px;}
._16_c01090{margin-left:-10.071000px;}
._38_c01090{margin-left:-7.968000px;}
._2e_c01090{margin-left:-6.720000px;}
._3a_c01090{margin-left:-5.709000px;}
._e_c01090{margin-left:-4.464000px;}
._a_c01090{margin-left:-2.592000px;}
._b_c01090{margin-left:-1.296000px;}
._10_c01090{width:1.584000px;}
._c_c01090{width:3.024000px;}
._1d_c01090{width:4.224000px;}
._18_c01090{width:5.856000px;}
._17_c01090{width:7.104000px;}
._12_c01090{width:8.928000px;}
._13_c01090{width:9.984000px;}
._1e_c01090{width:11.136000px;}
._21_c01090{width:12.192000px;}
._14_c01090{width:13.344000px;}
._23_c01090{width:15.024000px;}
._42_c01090{width:16.128000px;}
._6f_c01090{width:17.202000px;}
._1b_c01090{width:18.240000px;}
._1a_c01090{width:21.120000px;}
._44_c01090{width:22.596000px;}
._41_c01090{width:24.528000px;}
._25_c01090{width:26.256000px;}
._22_c01090{width:27.936000px;}
._2_c01090{width:29.250000px;}
._48_c01090{width:31.041000px;}
._59_c01090{width:32.160000px;}
._4_c01090{width:33.462000px;}
._0_c01090{width:35.100000px;}
._5d_c01090{width:37.644000px;}
._46_c01090{width:39.162000px;}
._56_c01090{width:40.896000px;}
._37_c01090{width:42.816000px;}
._15_c01090{width:44.064000px;}
._58_c01090{width:45.072000px;}
._4d_c01090{width:46.878000px;}
._49_c01090{width:50.352000px;}
._27_c01090{width:51.816000px;}
._53_c01090{width:54.288000px;}
._35_c01090{width:57.552000px;}
._3_c01090{width:58.734000px;}
._8_c01090{width:62.946000px;}
._7_c01090{width:65.403000px;}
._1_c01090{width:67.392000px;}
._4e_c01090{width:68.469000px;}
._65_c01090{width:69.540000px;}
._3d_c01090{width:71.229000px;}
._62_c01090{width:74.304000px;}
._5_c01090{width:75.816000px;}
._6_c01090{width:77.922000px;}
._69_c01090{width:79.392000px;}
._9_c01090{width:81.081000px;}
._20_c01090{width:84.336000px;}
._67_c01090{width:88.782000px;}
._1c_c01090{width:90.336000px;}
._5e_c01090{width:95.040000px;}
._19_c01090{width:102.480000px;}
._57_c01090{width:111.840000px;}
._6a_c01090{width:123.063000px;}
._4a_c01090{width:127.926000px;}
._6e_c01090{width:135.639000px;}
._3b_c01090{width:144.288000px;}
._11_c01090{width:154.080000px;}
._3c_c01090{width:161.376000px;}
._47_c01090{width:186.654000px;}
._5c_c01090{width:196.782000px;}
._63_c01090{width:212.256000px;}
._33_c01090{width:223.734000px;}
._51_c01090{width:237.024000px;}
._4f_c01090{width:254.088000px;}
._40_c01090{width:256.350000px;}
._64_c01090{width:269.439000px;}
._52_c01090{width:271.638000px;}
._2b_c01090{width:313.725000px;}
._66_c01090{width:329.232000px;}
._5f_c01090{width:357.840000px;}
._5a_c01090{width:414.192000px;}
._43_c01090{width:428.352000px;}
._61_c01090{width:437.541000px;}
._60_c01090{width:527.181000px;}
._6b_c01090{width:552.192000px;}
._4c_c01090{width:724.011000px;}
._5b_c01090{width:727.767000px;}
._28_c01090{width:741.372000px;}
._3e_c01090{width:869.040000px;}
._55_c01090{width:1102.200000px;}
._34_c01090{width:1239.216000px;}
._45_c01090{width:1405.536000px;}
._54_c01090{width:1626.141000px;}
._26_c01090{width:1748.016000px;}
._70_c01090{width:2078.472000px;}
.fc2_c01090{color:transparent;}
.fc1_c01090{color:rgb(128,128,128);}
.fc0_c01090{color:rgb(0,0,0);}
.fsa_c01090{font-size:48.000000px;}
.fs8_c01090{font-size:67.200000px;}
.fs7_c01090{font-size:76.800000px;}
.fs6_c01090{font-size:84.000000px;}
.fs9_c01090{font-size:87.000000px;}
.fs2_c01090{font-size:96.000000px;}
.fs4_c01090{font-size:102.000000px;}
.fs5_c01090{font-size:105.000000px;}
.fs0_c01090{font-size:117.000000px;}
.fs1_c01090{font-size:144.000000px;}
.fs3_c01090{font-size:351.000000px;}
.y0_c01090{bottom:0.000000px;}
.y23_c01090{bottom:3.105000px;}
.y22_c01090{bottom:7.228369px;}
.y21_c01090{bottom:142.020000px;}
.y20_c01090{bottom:177.120000px;}
.y1f_c01090{bottom:207.870000px;}
.y1e_c01090{bottom:244.320000px;}
.y1d_c01090{bottom:280.170000px;}
.y1c_c01090{bottom:313.170000px;}
.y1b_c01090{bottom:347.520000px;}
.y1a_c01090{bottom:383.370000px;}
.y19_c01090{bottom:415.020000px;}
.y18_c01090{bottom:482.670000px;}
.y16_c01090{bottom:482.970000px;}
.y17_c01090{bottom:489.720000px;}
.y15_c01090{bottom:516.270000px;}
.y14_c01090{bottom:550.170000px;}
.y13_c01090{bottom:568.020000px;}
.y12_c01090{bottom:584.220000px;}
.y11_c01090{bottom:619.320000px;}
.y10_c01090{bottom:651.720000px;}
.yf_c01090{bottom:685.170000px;}
.ye_c01090{bottom:721.170000px;}
.yd_c01090{bottom:752.670000px;}
.yc_c01090{bottom:786.420000px;}
.yb_c01090{bottom:818.670000px;}
.ya_c01090{bottom:850.770000px;}
.y9_c01090{bottom:886.620000px;}
.y8_c01090{bottom:918.270000px;}
.y7_c01090{bottom:986.220000px;}
.y6_c01090{bottom:1019.970000px;}
.y4_c01090{bottom:1042.170000px;}
.y5_c01090{bottom:1052.670000px;}
.y3_c01090{bottom:1151.820000px;}
.y2_c01090{bottom:1227.870000px;}
.y1_c01090{bottom:1274.970000px;}
.hb_c01090{height:13.200073px;}
.hc_c01090{height:43.804688px;}
.h7_c01090{height:98.314453px;}
.h9_c01090{height:101.825684px;}
.h8_c01090{height:110.151855px;}
.h4_c01090{height:121.546875px;}
.h2_c01090{height:124.839000px;}
.ha_c01090{height:129.143555px;}
.h6_c01090{height:132.941895px;}
.h3_c01090{height:182.320312px;}
.h5_c01090{height:444.405762px;}
.h0_c01090{height:1383.450000px;}
.h1_c01090{height:1383.750000px;}
.w2_c01090{width:104.875500px;}
.w0_c01090{width:878.025000px;}
.w1_c01090{width:878.250000px;}
.x0_c01090{left:0.000000px;}
.xd_c01090{left:43.500000px;}
.xa_c01090{left:56.400000px;}
.x11_c01090{left:58.050000px;}
.x4_c01090{left:59.400000px;}
.x12_c01090{left:61.200000px;}
.x9_c01090{left:63.000000px;}
.xb_c01090{left:65.550000px;}
.xc_c01090{left:69.450000px;}
.x13_c01090{left:99.600000px;}
.x10_c01090{left:102.300000px;}
.x6_c01090{left:111.600000px;}
.x1_c01090{left:120.450000px;}
.xe_c01090{left:122.400000px;}
.xf_c01090{left:123.900000px;}
.x8_c01090{left:125.100000px;}
.x14_c01090{left:129.900000px;}
.x5_c01090{left:135.900000px;}
.x2_c01090{left:189.450000px;}
.x7_c01090{left:314.550000px;}
.x3_c01090{left:323.100000px;}
.x15_c01090{left:390.826721px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.v1_c01090{vertical-align:154.666667pt;}
.ls5_c01090{letter-spacing:-8.000000pt;}
.ls9_c01090{letter-spacing:-2.666667pt;}
.ls6_c01090{letter-spacing:0.000000pt;}
.ls7_c01090{letter-spacing:10.666667pt;}
.ls0_c01090{letter-spacing:16.682667pt;}
.ls3_c01090{letter-spacing:17.693867pt;}
.ls1_c01090{letter-spacing:21.393067pt;}
.ls4_c01090{letter-spacing:23.560533pt;}
.ls2_c01090{letter-spacing:25.642667pt;}
.ls8_c01090{letter-spacing:26.666667pt;}
.ws0_c01090{word-spacing:-123.864000pt;}
.ws6_c01090{word-spacing:-45.333333pt;}
.ws3_c01090{word-spacing:-28.821333pt;}
.ws1_c01090{word-spacing:-25.893333pt;}
.ws2_c01090{word-spacing:-20.565333pt;}
.ws4_c01090{word-spacing:-17.994667pt;}
.ws5_c01090{word-spacing:-15.970667pt;}
.ws7_c01090{word-spacing:0.000000pt;}
._68_c01090{margin-left:-74.325333pt;}
._6d_c01090{margin-left:-73.400000pt;}
._6c_c01090{margin-left:-59.778667pt;}
._3f_c01090{margin-left:-47.957333pt;}
._50_c01090{margin-left:-42.581333pt;}
._31_c01090{margin-left:-38.016000pt;}
._30_c01090{margin-left:-34.536000pt;}
._32_c01090{margin-left:-33.088000pt;}
._2f_c01090{margin-left:-29.565333pt;}
._2c_c01090{margin-left:-28.093333pt;}
._24_c01090{margin-left:-27.178667pt;}
._36_c01090{margin-left:-23.978667pt;}
._39_c01090{margin-left:-20.608000pt;}
._4b_c01090{margin-left:-18.666667pt;}
._2a_c01090{margin-left:-17.360000pt;}
._1f_c01090{margin-left:-16.128000pt;}
._2d_c01090{margin-left:-14.885333pt;}
._f_c01090{margin-left:-13.056000pt;}
._d_c01090{margin-left:-11.904000pt;}
._29_c01090{margin-left:-10.266667pt;}
._16_c01090{margin-left:-8.952000pt;}
._38_c01090{margin-left:-7.082667pt;}
._2e_c01090{margin-left:-5.973333pt;}
._3a_c01090{margin-left:-5.074667pt;}
._e_c01090{margin-left:-3.968000pt;}
._a_c01090{margin-left:-2.304000pt;}
._b_c01090{margin-left:-1.152000pt;}
._10_c01090{width:1.408000pt;}
._c_c01090{width:2.688000pt;}
._1d_c01090{width:3.754667pt;}
._18_c01090{width:5.205333pt;}
._17_c01090{width:6.314667pt;}
._12_c01090{width:7.936000pt;}
._13_c01090{width:8.874667pt;}
._1e_c01090{width:9.898667pt;}
._21_c01090{width:10.837333pt;}
._14_c01090{width:11.861333pt;}
._23_c01090{width:13.354667pt;}
._42_c01090{width:14.336000pt;}
._6f_c01090{width:15.290667pt;}
._1b_c01090{width:16.213333pt;}
._1a_c01090{width:18.773333pt;}
._44_c01090{width:20.085333pt;}
._41_c01090{width:21.802667pt;}
._25_c01090{width:23.338667pt;}
._22_c01090{width:24.832000pt;}
._2_c01090{width:26.000000pt;}
._48_c01090{width:27.592000pt;}
._59_c01090{width:28.586667pt;}
._4_c01090{width:29.744000pt;}
._0_c01090{width:31.200000pt;}
._5d_c01090{width:33.461333pt;}
._46_c01090{width:34.810667pt;}
._56_c01090{width:36.352000pt;}
._37_c01090{width:38.058667pt;}
._15_c01090{width:39.168000pt;}
._58_c01090{width:40.064000pt;}
._4d_c01090{width:41.669333pt;}
._49_c01090{width:44.757333pt;}
._27_c01090{width:46.058667pt;}
._53_c01090{width:48.256000pt;}
._35_c01090{width:51.157333pt;}
._3_c01090{width:52.208000pt;}
._8_c01090{width:55.952000pt;}
._7_c01090{width:58.136000pt;}
._1_c01090{width:59.904000pt;}
._4e_c01090{width:60.861333pt;}
._65_c01090{width:61.813333pt;}
._3d_c01090{width:63.314667pt;}
._62_c01090{width:66.048000pt;}
._5_c01090{width:67.392000pt;}
._6_c01090{width:69.264000pt;}
._69_c01090{width:70.570667pt;}
._9_c01090{width:72.072000pt;}
._20_c01090{width:74.965333pt;}
._67_c01090{width:78.917333pt;}
._1c_c01090{width:80.298667pt;}
._5e_c01090{width:84.480000pt;}
._19_c01090{width:91.093333pt;}
._57_c01090{width:99.413333pt;}
._6a_c01090{width:109.389333pt;}
._4a_c01090{width:113.712000pt;}
._6e_c01090{width:120.568000pt;}
._3b_c01090{width:128.256000pt;}
._11_c01090{width:136.960000pt;}
._3c_c01090{width:143.445333pt;}
._47_c01090{width:165.914667pt;}
._5c_c01090{width:174.917333pt;}
._63_c01090{width:188.672000pt;}
._33_c01090{width:198.874667pt;}
._51_c01090{width:210.688000pt;}
._4f_c01090{width:225.856000pt;}
._40_c01090{width:227.866667pt;}
._64_c01090{width:239.501333pt;}
._52_c01090{width:241.456000pt;}
._2b_c01090{width:278.866667pt;}
._66_c01090{width:292.650667pt;}
._5f_c01090{width:318.080000pt;}
._5a_c01090{width:368.170667pt;}
._43_c01090{width:380.757333pt;}
._61_c01090{width:388.925333pt;}
._60_c01090{width:468.605333pt;}
._6b_c01090{width:490.837333pt;}
._4c_c01090{width:643.565333pt;}
._5b_c01090{width:646.904000pt;}
._28_c01090{width:658.997333pt;}
._3e_c01090{width:772.480000pt;}
._55_c01090{width:979.733333pt;}
._34_c01090{width:1101.525333pt;}
._45_c01090{width:1249.365333pt;}
._54_c01090{width:1445.458667pt;}
._26_c01090{width:1553.792000pt;}
._70_c01090{width:1847.530667pt;}
.fsa_c01090{font-size:42.666667pt;}
.fs8_c01090{font-size:59.733333pt;}
.fs7_c01090{font-size:68.266667pt;}
.fs6_c01090{font-size:74.666667pt;}
.fs9_c01090{font-size:77.333333pt;}
.fs2_c01090{font-size:85.333333pt;}
.fs4_c01090{font-size:90.666667pt;}
.fs5_c01090{font-size:93.333333pt;}
.fs0_c01090{font-size:104.000000pt;}
.fs1_c01090{font-size:128.000000pt;}
.fs3_c01090{font-size:312.000000pt;}
.y0_c01090{bottom:0.000000pt;}
.y23_c01090{bottom:2.760000pt;}
.y22_c01090{bottom:6.425217pt;}
.y21_c01090{bottom:126.240000pt;}
.y20_c01090{bottom:157.440000pt;}
.y1f_c01090{bottom:184.773333pt;}
.y1e_c01090{bottom:217.173333pt;}
.y1d_c01090{bottom:249.040000pt;}
.y1c_c01090{bottom:278.373333pt;}
.y1b_c01090{bottom:308.906667pt;}
.y1a_c01090{bottom:340.773333pt;}
.y19_c01090{bottom:368.906667pt;}
.y18_c01090{bottom:429.040000pt;}
.y16_c01090{bottom:429.306667pt;}
.y17_c01090{bottom:435.306667pt;}
.y15_c01090{bottom:458.906667pt;}
.y14_c01090{bottom:489.040000pt;}
.y13_c01090{bottom:504.906667pt;}
.y12_c01090{bottom:519.306667pt;}
.y11_c01090{bottom:550.506667pt;}
.y10_c01090{bottom:579.306667pt;}
.yf_c01090{bottom:609.040000pt;}
.ye_c01090{bottom:641.040000pt;}
.yd_c01090{bottom:669.040000pt;}
.yc_c01090{bottom:699.040000pt;}
.yb_c01090{bottom:727.706667pt;}
.ya_c01090{bottom:756.240000pt;}
.y9_c01090{bottom:788.106667pt;}
.y8_c01090{bottom:816.240000pt;}
.y7_c01090{bottom:876.640000pt;}
.y6_c01090{bottom:906.640000pt;}
.y4_c01090{bottom:926.373333pt;}
.y5_c01090{bottom:935.706667pt;}
.y3_c01090{bottom:1023.840000pt;}
.y2_c01090{bottom:1091.440000pt;}
.y1_c01090{bottom:1133.306667pt;}
.hb_c01090{height:11.733399pt;}
.hc_c01090{height:38.937500pt;}
.h7_c01090{height:87.390625pt;}
.h9_c01090{height:90.511719pt;}
.h8_c01090{height:97.912760pt;}
.h4_c01090{height:108.041667pt;}
.h2_c01090{height:110.968000pt;}
.ha_c01090{height:114.794271pt;}
.h6_c01090{height:118.170573pt;}
.h3_c01090{height:162.062500pt;}
.h5_c01090{height:395.027344pt;}
.h0_c01090{height:1229.733333pt;}
.h1_c01090{height:1230.000000pt;}
.w2_c01090{width:93.222667pt;}
.w0_c01090{width:780.466667pt;}
.w1_c01090{width:780.666667pt;}
.x0_c01090{left:0.000000pt;}
.xd_c01090{left:38.666667pt;}
.xa_c01090{left:50.133333pt;}
.x11_c01090{left:51.600000pt;}
.x4_c01090{left:52.800000pt;}
.x12_c01090{left:54.400000pt;}
.x9_c01090{left:56.000000pt;}
.xb_c01090{left:58.266667pt;}
.xc_c01090{left:61.733333pt;}
.x13_c01090{left:88.533333pt;}
.x10_c01090{left:90.933333pt;}
.x6_c01090{left:99.200000pt;}
.x1_c01090{left:107.066667pt;}
.xe_c01090{left:108.800000pt;}
.xf_c01090{left:110.133333pt;}
.x8_c01090{left:111.200000pt;}
.x14_c01090{left:115.466667pt;}
.x5_c01090{left:120.800000pt;}
.x2_c01090{left:168.400000pt;}
.x7_c01090{left:279.600000pt;}
.x3_c01090{left:287.200000pt;}
.x15_c01090{left:347.401530pt;}
}





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

.ir_c01091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_0ab2d81d4c2183acf9a313f2.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01091;src:url('chunks/assets/font_0ec8de38d22ca2faf76e41eb.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01091;src:url('chunks/assets/font_6fabf1ec73a8a6d5a1820658.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01091;src:url('chunks/assets/font_b578ca6d5e6d703969428856.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;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_c01091;src:url('chunks/assets/font_83d781541d873d5475fb0033.woff2')format("woff");}.ff5_c01091{font-family:ff5_c01091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01091;src:url('chunks/assets/font_c2ef625443b3b53c77dad287.woff2')format("woff");}.ff6_c01091{font-family:ff6_c01091;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01091;src:url('chunks/assets/font_98dadf564126de77afa56f1a.woff2')format("woff");}.ff7_c01091{font-family:ff7_c01091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01091;src:url('chunks/assets/font_bbdf51c259961e65ed5317d4.woff2')format("woff");}.ff8_c01091{font-family:ff8_c01091;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01091;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff9_c01091{font-family:ff9_c01091;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01091{vertical-align:0.000000px;}
.lsd_c01091{letter-spacing:-21.000000px;}
.lsc_c01091{letter-spacing:-3.000000px;}
.lsb_c01091{letter-spacing:0.000000px;}
.ls9_c01091{letter-spacing:1.392000px;}
.ls7_c01091{letter-spacing:2.400000px;}
.ls1_c01091{letter-spacing:3.508800px;}
.ls5_c01091{letter-spacing:6.900000px;}
.ls6_c01091{letter-spacing:7.200000px;}
.lsa_c01091{letter-spacing:8.280000px;}
.ls3_c01091{letter-spacing:13.944000px;}
.ls4_c01091{letter-spacing:14.664000px;}
.ls0_c01091{letter-spacing:23.064000px;}
.ls2_c01091{letter-spacing:33.000000px;}
.ls8_c01091{letter-spacing:52.800000px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01091{word-spacing:-51.000000px;}
.ws5_c01091{word-spacing:-43.084800px;}
.ws3_c01091{word-spacing:-23.136000px;}
.ws0_c01091{word-spacing:-20.244000px;}
.ws4_c01091{word-spacing:-17.967000px;}
.ws2_c01091{word-spacing:-1.092000px;}
.ws7_c01091{word-spacing:0.000000px;}
.ws6_c01091{word-spacing:3.948000px;}
._38_c01091{margin-left:-89.880000px;}
._4c_c01091{margin-left:-36.909000px;}
._51_c01091{margin-left:-34.974000px;}
._50_c01091{margin-left:-33.756000px;}
._28_c01091{margin-left:-26.883000px;}
._48_c01091{margin-left:-19.982400px;}
._52_c01091{margin-left:-18.159000px;}
._29_c01091{margin-left:-17.022000px;}
._1c_c01091{margin-left:-14.868000px;}
._25_c01091{margin-left:-13.248000px;}
._24_c01091{margin-left:-11.844000px;}
._26_c01091{margin-left:-10.224000px;}
._18_c01091{margin-left:-8.652000px;}
._23_c01091{margin-left:-6.780000px;}
._1a_c01091{margin-left:-5.544000px;}
._10_c01091{margin-left:-3.612000px;}
._32_c01091{margin-left:-2.304000px;}
._f_c01091{margin-left:-1.260000px;}
._3_c01091{width:1.764000px;}
._8_c01091{width:3.024000px;}
._e_c01091{width:4.704000px;}
._12_c01091{width:6.216000px;}
._14_c01091{width:7.308000px;}
._11_c01091{width:8.736000px;}
._7_c01091{width:10.500000px;}
._6_c01091{width:12.180000px;}
._20_c01091{width:13.356000px;}
._5_c01091{width:14.364000px;}
._16_c01091{width:15.540000px;}
._19_c01091{width:16.716000px;}
._0_c01091{width:18.060000px;}
._c_c01091{width:19.152000px;}
._4d_c01091{width:20.430000px;}
._39_c01091{width:21.660000px;}
._b_c01091{width:22.680000px;}
._a_c01091{width:24.024000px;}
._2_c01091{width:26.208000px;}
._15_c01091{width:27.972000px;}
._d_c01091{width:29.148000px;}
._2b_c01091{width:31.104000px;}
._13_c01091{width:32.760000px;}
._3d_c01091{width:33.855000px;}
._27_c01091{width:34.935000px;}
._1_c01091{width:36.204000px;}
._1d_c01091{width:38.160000px;}
._9_c01091{width:39.648000px;}
._36_c01091{width:42.120000px;}
._4_c01091{width:43.344000px;}
._1b_c01091{width:44.604000px;}
._2c_c01091{width:45.948000px;}
._17_c01091{width:48.048000px;}
._47_c01091{width:50.100000px;}
._35_c01091{width:51.483000px;}
._2d_c01091{width:52.500000px;}
._46_c01091{width:54.165000px;}
._49_c01091{width:56.472000px;}
._43_c01091{width:60.756000px;}
._33_c01091{width:64.392000px;}
._34_c01091{width:66.108000px;}
._37_c01091{width:67.512000px;}
._3c_c01091{width:68.772000px;}
._3b_c01091{width:71.292000px;}
._55_c01091{width:77.376000px;}
._2e_c01091{width:78.861000px;}
._41_c01091{width:82.044000px;}
._22_c01091{width:104.340000px;}
._54_c01091{width:111.648000px;}
._21_c01091{width:113.148000px;}
._56_c01091{width:127.404000px;}
._1f_c01091{width:141.660000px;}
._1e_c01091{width:145.284000px;}
._30_c01091{width:169.680000px;}
._40_c01091{width:197.568000px;}
._2f_c01091{width:205.884000px;}
._42_c01091{width:236.853000px;}
._53_c01091{width:302.988000px;}
._3f_c01091{width:317.568000px;}
._31_c01091{width:323.784000px;}
._44_c01091{width:334.092000px;}
._4a_c01091{width:360.168000px;}
._4e_c01091{width:380.220000px;}
._3a_c01091{width:482.316000px;}
._4b_c01091{width:601.884000px;}
._45_c01091{width:724.968000px;}
._3e_c01091{width:922.464000px;}
._4f_c01091{width:1620.540000px;}
._2a_c01091{width:2220.774000px;}
.fc2_c01091{color:transparent;}
.fc1_c01091{color:rgb(128,128,128);}
.fc0_c01091{color:rgb(0,0,0);}
.fs8_c01091{font-size:30.000000px;}
.fsa_c01091{font-size:36.000000px;}
.fsb_c01091{font-size:48.000000px;}
.fs6_c01091{font-size:60.000000px;}
.fs2_c01091{font-size:67.200000px;}
.fs9_c01091{font-size:76.800000px;}
.fs0_c01091{font-size:84.000000px;}
.fs5_c01091{font-size:87.000000px;}
.fs1_c01091{font-size:96.000000px;}
.fs4_c01091{font-size:99.000000px;}
.fs3_c01091{font-size:102.000000px;}
.fs7_c01091{font-size:420.000000px;}
.y0_c01091{bottom:0.000000px;}
.y24_c01091{bottom:3.105000px;}
.y23_c01091{bottom:7.228355px;}
.y22_c01091{bottom:136.635000px;}
.y21_c01091{bottom:233.535000px;}
.y20_c01091{bottom:252.435000px;}
.y1f_c01091{bottom:269.235000px;}
.y1e_c01091{bottom:302.385000px;}
.y1d_c01091{bottom:337.485000px;}
.y1c_c01091{bottom:373.185000px;}
.y1b_c01091{bottom:406.035000px;}
.y1a_c01091{bottom:443.835000px;}
.y19_c01091{bottom:473.085000px;}
.y18_c01091{bottom:506.535000px;}
.y17_c01091{bottom:543.585000px;}
.y16_c01091{bottom:574.635000px;}
.y15_c01091{bottom:610.185000px;}
.y14_c01091{bottom:644.985000px;}
.y13_c01091{bottom:676.035000px;}
.y12_c01091{bottom:712.035000px;}
.y11_c01091{bottom:744.435000px;}
.y10_c01091{bottom:779.235000px;}
.yf_c01091{bottom:812.385000px;}
.ye_c01091{bottom:842.685000px;}
.yd_c01091{bottom:879.135000px;}
.yc_c01091{bottom:912.585000px;}
.yb_c01091{bottom:946.935000px;}
.ya_c01091{bottom:980.985000px;}
.y9_c01091{bottom:1010.385000px;}
.y8_c01091{bottom:1044.585000px;}
.y7_c01091{bottom:1079.985000px;}
.y6_c01091{bottom:1113.735000px;}
.y5_c01091{bottom:1147.035000px;}
.y4_c01091{bottom:1178.835000px;}
.y3_c01091{bottom:1213.935000px;}
.y2_c01091{bottom:1248.285000px;}
.y1_c01091{bottom:1281.435000px;}
.h7_c01091{height:13.200074px;}
.h8_c01091{height:43.804688px;}
.h2_c01091{height:98.314453px;}
.h5_c01091{height:106.353516px;}
.h4_c01091{height:110.151855px;}
.h3_c01091{height:121.546875px;}
.h6_c01091{height:412.207031px;}
.h1_c01091{height:1366.500000px;}
.h0_c01091{height:1366.725000px;}
.w2_c01091{width:104.875500px;}
.w0_c01091{width:852.675000px;}
.w1_c01091{width:852.750000px;}
.x0_c01091{left:0.000000px;}
.x5_c01091{left:127.200000px;}
.x4_c01091{left:130.950000px;}
.x14_c01091{left:142.800000px;}
.x13_c01091{left:146.700000px;}
.xc_c01091{left:160.650000px;}
.xe_c01091{left:163.350000px;}
.x6_c01091{left:166.050000px;}
.xa_c01091{left:168.300000px;}
.xd_c01091{left:171.450000px;}
.xb_c01091{left:174.750000px;}
.x10_c01091{left:182.850000px;}
.x7_c01091{left:190.350000px;}
.x2_c01091{left:193.500000px;}
.x8_c01091{left:194.700000px;}
.x1_c01091{left:195.750000px;}
.x12_c01091{left:196.800000px;}
.x15_c01091{left:256.050000px;}
.x11_c01091{left:284.400000px;}
.xf_c01091{left:345.300000px;}
.x18_c01091{left:378.151749px;}
.x16_c01091{left:402.300000px;}
.x9_c01091{left:539.700000px;}
.x17_c01091{left:678.600000px;}
.x3_c01091{left:686.550000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.lsd_c01091{letter-spacing:-18.666667pt;}
.lsc_c01091{letter-spacing:-2.666667pt;}
.lsb_c01091{letter-spacing:0.000000pt;}
.ls9_c01091{letter-spacing:1.237333pt;}
.ls7_c01091{letter-spacing:2.133333pt;}
.ls1_c01091{letter-spacing:3.118933pt;}
.ls5_c01091{letter-spacing:6.133333pt;}
.ls6_c01091{letter-spacing:6.400000pt;}
.lsa_c01091{letter-spacing:7.360000pt;}
.ls3_c01091{letter-spacing:12.394667pt;}
.ls4_c01091{letter-spacing:13.034667pt;}
.ls0_c01091{letter-spacing:20.501333pt;}
.ls2_c01091{letter-spacing:29.333333pt;}
.ls8_c01091{letter-spacing:46.933333pt;}
.ws1_c01091{word-spacing:-45.333333pt;}
.ws5_c01091{word-spacing:-38.297600pt;}
.ws3_c01091{word-spacing:-20.565333pt;}
.ws0_c01091{word-spacing:-17.994667pt;}
.ws4_c01091{word-spacing:-15.970667pt;}
.ws2_c01091{word-spacing:-0.970667pt;}
.ws7_c01091{word-spacing:0.000000pt;}
.ws6_c01091{word-spacing:3.509333pt;}
._38_c01091{margin-left:-79.893333pt;}
._4c_c01091{margin-left:-32.808000pt;}
._51_c01091{margin-left:-31.088000pt;}
._50_c01091{margin-left:-30.005333pt;}
._28_c01091{margin-left:-23.896000pt;}
._48_c01091{margin-left:-17.762133pt;}
._52_c01091{margin-left:-16.141333pt;}
._29_c01091{margin-left:-15.130667pt;}
._1c_c01091{margin-left:-13.216000pt;}
._25_c01091{margin-left:-11.776000pt;}
._24_c01091{margin-left:-10.528000pt;}
._26_c01091{margin-left:-9.088000pt;}
._18_c01091{margin-left:-7.690667pt;}
._23_c01091{margin-left:-6.026667pt;}
._1a_c01091{margin-left:-4.928000pt;}
._10_c01091{margin-left:-3.210667pt;}
._32_c01091{margin-left:-2.048000pt;}
._f_c01091{margin-left:-1.120000pt;}
._3_c01091{width:1.568000pt;}
._8_c01091{width:2.688000pt;}
._e_c01091{width:4.181333pt;}
._12_c01091{width:5.525333pt;}
._14_c01091{width:6.496000pt;}
._11_c01091{width:7.765333pt;}
._7_c01091{width:9.333333pt;}
._6_c01091{width:10.826667pt;}
._20_c01091{width:11.872000pt;}
._5_c01091{width:12.768000pt;}
._16_c01091{width:13.813333pt;}
._19_c01091{width:14.858667pt;}
._0_c01091{width:16.053333pt;}
._c_c01091{width:17.024000pt;}
._4d_c01091{width:18.160000pt;}
._39_c01091{width:19.253333pt;}
._b_c01091{width:20.160000pt;}
._a_c01091{width:21.354667pt;}
._2_c01091{width:23.296000pt;}
._15_c01091{width:24.864000pt;}
._d_c01091{width:25.909333pt;}
._2b_c01091{width:27.648000pt;}
._13_c01091{width:29.120000pt;}
._3d_c01091{width:30.093333pt;}
._27_c01091{width:31.053333pt;}
._1_c01091{width:32.181333pt;}
._1d_c01091{width:33.920000pt;}
._9_c01091{width:35.242667pt;}
._36_c01091{width:37.440000pt;}
._4_c01091{width:38.528000pt;}
._1b_c01091{width:39.648000pt;}
._2c_c01091{width:40.842667pt;}
._17_c01091{width:42.709333pt;}
._47_c01091{width:44.533333pt;}
._35_c01091{width:45.762667pt;}
._2d_c01091{width:46.666667pt;}
._46_c01091{width:48.146667pt;}
._49_c01091{width:50.197333pt;}
._43_c01091{width:54.005333pt;}
._33_c01091{width:57.237333pt;}
._34_c01091{width:58.762667pt;}
._37_c01091{width:60.010667pt;}
._3c_c01091{width:61.130667pt;}
._3b_c01091{width:63.370667pt;}
._55_c01091{width:68.778667pt;}
._2e_c01091{width:70.098667pt;}
._41_c01091{width:72.928000pt;}
._22_c01091{width:92.746667pt;}
._54_c01091{width:99.242667pt;}
._21_c01091{width:100.576000pt;}
._56_c01091{width:113.248000pt;}
._1f_c01091{width:125.920000pt;}
._1e_c01091{width:129.141333pt;}
._30_c01091{width:150.826667pt;}
._40_c01091{width:175.616000pt;}
._2f_c01091{width:183.008000pt;}
._42_c01091{width:210.536000pt;}
._53_c01091{width:269.322667pt;}
._3f_c01091{width:282.282667pt;}
._31_c01091{width:287.808000pt;}
._44_c01091{width:296.970667pt;}
._4a_c01091{width:320.149333pt;}
._4e_c01091{width:337.973333pt;}
._3a_c01091{width:428.725333pt;}
._4b_c01091{width:535.008000pt;}
._45_c01091{width:644.416000pt;}
._3e_c01091{width:819.968000pt;}
._4f_c01091{width:1440.480000pt;}
._2a_c01091{width:1974.021333pt;}
.fs8_c01091{font-size:26.666667pt;}
.fsa_c01091{font-size:32.000000pt;}
.fsb_c01091{font-size:42.666667pt;}
.fs6_c01091{font-size:53.333333pt;}
.fs2_c01091{font-size:59.733333pt;}
.fs9_c01091{font-size:68.266667pt;}
.fs0_c01091{font-size:74.666667pt;}
.fs5_c01091{font-size:77.333333pt;}
.fs1_c01091{font-size:85.333333pt;}
.fs4_c01091{font-size:88.000000pt;}
.fs3_c01091{font-size:90.666667pt;}
.fs7_c01091{font-size:373.333333pt;}
.y0_c01091{bottom:0.000000pt;}
.y24_c01091{bottom:2.760000pt;}
.y23_c01091{bottom:6.425204pt;}
.y22_c01091{bottom:121.453333pt;}
.y21_c01091{bottom:207.586667pt;}
.y20_c01091{bottom:224.386667pt;}
.y1f_c01091{bottom:239.320000pt;}
.y1e_c01091{bottom:268.786667pt;}
.y1d_c01091{bottom:299.986667pt;}
.y1c_c01091{bottom:331.720000pt;}
.y1b_c01091{bottom:360.920000pt;}
.y1a_c01091{bottom:394.520000pt;}
.y19_c01091{bottom:420.520000pt;}
.y18_c01091{bottom:450.253333pt;}
.y17_c01091{bottom:483.186667pt;}
.y16_c01091{bottom:510.786667pt;}
.y15_c01091{bottom:542.386667pt;}
.y14_c01091{bottom:573.320000pt;}
.y13_c01091{bottom:600.920000pt;}
.y12_c01091{bottom:632.920000pt;}
.y11_c01091{bottom:661.720000pt;}
.y10_c01091{bottom:692.653333pt;}
.yf_c01091{bottom:722.120000pt;}
.ye_c01091{bottom:749.053333pt;}
.yd_c01091{bottom:781.453333pt;}
.yc_c01091{bottom:811.186667pt;}
.yb_c01091{bottom:841.720000pt;}
.ya_c01091{bottom:871.986667pt;}
.y9_c01091{bottom:898.120000pt;}
.y8_c01091{bottom:928.520000pt;}
.y7_c01091{bottom:959.986667pt;}
.y6_c01091{bottom:989.986667pt;}
.y5_c01091{bottom:1019.586667pt;}
.y4_c01091{bottom:1047.853333pt;}
.y3_c01091{bottom:1079.053333pt;}
.y2_c01091{bottom:1109.586667pt;}
.y1_c01091{bottom:1139.053333pt;}
.h7_c01091{height:11.733399pt;}
.h8_c01091{height:38.937500pt;}
.h2_c01091{height:87.390625pt;}
.h5_c01091{height:94.536458pt;}
.h4_c01091{height:97.912760pt;}
.h3_c01091{height:108.041667pt;}
.h6_c01091{height:366.406250pt;}
.h1_c01091{height:1214.666667pt;}
.h0_c01091{height:1214.866667pt;}
.w2_c01091{width:93.222667pt;}
.w0_c01091{width:757.933333pt;}
.w1_c01091{width:758.000000pt;}
.x0_c01091{left:0.000000pt;}
.x5_c01091{left:113.066667pt;}
.x4_c01091{left:116.400000pt;}
.x14_c01091{left:126.933333pt;}
.x13_c01091{left:130.400000pt;}
.xc_c01091{left:142.800000pt;}
.xe_c01091{left:145.200000pt;}
.x6_c01091{left:147.600000pt;}
.xa_c01091{left:149.600000pt;}
.xd_c01091{left:152.400000pt;}
.xb_c01091{left:155.333333pt;}
.x10_c01091{left:162.533333pt;}
.x7_c01091{left:169.200000pt;}
.x2_c01091{left:172.000000pt;}
.x8_c01091{left:173.066667pt;}
.x1_c01091{left:174.000000pt;}
.x12_c01091{left:174.933333pt;}
.x15_c01091{left:227.600000pt;}
.x11_c01091{left:252.800000pt;}
.xf_c01091{left:306.933333pt;}
.x18_c01091{left:336.134888pt;}
.x16_c01091{left:357.600000pt;}
.x9_c01091{left:479.733333pt;}
.x17_c01091{left:603.200000pt;}
.x3_c01091{left:610.266667pt;}
}





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

.ir_c01092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_0ee53cf66c00454ff5fe9a3e.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01092;src:url('chunks/assets/font_7bc41344f462d98c94b84ca4.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01092;src:url('chunks/assets/font_35250f62d72c317bf835baaf.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01092;src:url('chunks/assets/font_e74638316c0c9e1a14237b40.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;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_c01092;src:url('chunks/assets/font_560a758105de5fa97a573148.woff2')format("woff");}.ff5_c01092{font-family:ff5_c01092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01092;src:url('chunks/assets/font_827fb3e941c74a40842b13fd.woff2')format("woff");}.ff6_c01092{font-family:ff6_c01092;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01092;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c01092{font-family:ff7_c01092;line-height:1.219238;font-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_c01092{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m0_c01092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01092{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.v1_c01092{vertical-align:-141.600000px;}
.v0_c01092{vertical-align:0.000000px;}
.ls3_c01092{letter-spacing:-18.000000px;}
.ls2_c01092{letter-spacing:0.000000px;}
.ls0_c01092{letter-spacing:16.200000px;}
.ls1_c01092{letter-spacing:26.100000px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01092{word-spacing:-23.136000px;}
.ws0_c01092{word-spacing:-20.244000px;}
.ws3_c01092{word-spacing:-7.920000px;}
.ws1_c01092{word-spacing:-0.252000px;}
.ws5_c01092{word-spacing:0.000000px;}
.ws2_c01092{word-spacing:62.520000px;}
._1b_c01092{margin-left:-38.880000px;}
._3a_c01092{margin-left:-26.496000px;}
._14_c01092{margin-left:-12.288000px;}
._15_c01092{margin-left:-6.144000px;}
._26_c01092{margin-left:-4.884000px;}
._e_c01092{margin-left:-2.016000px;}
._4_c01092{width:1.248000px;}
._1d_c01092{width:2.340000px;}
._b_c01092{width:3.456000px;}
._d_c01092{width:5.184000px;}
._c_c01092{width:6.432000px;}
._8_c01092{width:7.584000px;}
._1f_c01092{width:8.736000px;}
._9_c01092{width:9.792000px;}
._0_c01092{width:10.944000px;}
._7_c01092{width:12.384000px;}
._2_c01092{width:14.304000px;}
._23_c01092{width:15.588000px;}
._1a_c01092{width:16.632000px;}
._1_c01092{width:18.240000px;}
._6_c01092{width:19.584000px;}
._20_c01092{width:21.708000px;}
._3b_c01092{width:22.860000px;}
._19_c01092{width:25.056000px;}
._1e_c01092{width:26.076000px;}
._30_c01092{width:27.504000px;}
._34_c01092{width:28.560000px;}
._10_c01092{width:30.144000px;}
._24_c01092{width:31.212000px;}
._17_c01092{width:33.276000px;}
._a_c01092{width:34.464000px;}
._22_c01092{width:36.468000px;}
._25_c01092{width:37.776000px;}
._5_c01092{width:39.264000px;}
._27_c01092{width:41.748000px;}
._12_c01092{width:42.816000px;}
._28_c01092{width:45.276000px;}
._f_c01092{width:47.040000px;}
._16_c01092{width:48.936000px;}
._13_c01092{width:50.112000px;}
._2b_c01092{width:52.176000px;}
._2d_c01092{width:53.820000px;}
._2a_c01092{width:56.712000px;}
._33_c01092{width:58.332000px;}
._18_c01092{width:60.012000px;}
._35_c01092{width:65.076000px;}
._32_c01092{width:66.660000px;}
._2f_c01092{width:69.384000px;}
._3_c01092{width:70.752000px;}
._39_c01092{width:81.672000px;}
._37_c01092{width:89.424000px;}
._36_c01092{width:90.684000px;}
._2e_c01092{width:97.152000px;}
._1c_c01092{width:206.712000px;}
._38_c01092{width:306.816000px;}
._21_c01092{width:695.688000px;}
._2c_c01092{width:703.956000px;}
._11_c01092{width:822.432000px;}
._3c_c01092{width:953.424000px;}
._31_c01092{width:1316.256000px;}
._29_c01092{width:1729.212000px;}
.fc2_c01092{color:transparent;}
.fc1_c01092{color:rgb(128,128,128);}
.fc0_c01092{color:rgb(0,0,0);}
.fs3_c01092{font-size:30.000000px;}
.fs7_c01092{font-size:48.000000px;}
.fs6_c01092{font-size:72.000000px;}
.fs1_c01092{font-size:84.000000px;}
.fs0_c01092{font-size:96.000000px;}
.fs5_c01092{font-size:99.000000px;}
.fs4_c01092{font-size:102.000000px;}
.fs2_c01092{font-size:375.000000px;}
.y0_c01092{bottom:0.000000px;}
.y22_c01092{bottom:3.105000px;}
.y21_c01092{bottom:7.228371px;}
.y20_c01092{bottom:120.165000px;}
.y1f_c01092{bottom:154.965000px;}
.y1e_c01092{bottom:188.715000px;}
.y1d_c01092{bottom:223.215000px;}
.y1c_c01092{bottom:256.815000px;}
.y1b_c01092{bottom:291.015000px;}
.y1a_c01092{bottom:324.765000px;}
.y19_c01092{bottom:358.815000px;}
.y18_c01092{bottom:392.265000px;}
.y17_c01092{bottom:492.765000px;}
.y16_c01092{bottom:526.965000px;}
.y15_c01092{bottom:593.415000px;}
.y10_c01092{bottom:621.465000px;}
.y14_c01092{bottom:627.765000px;}
.y13_c01092{bottom:661.515000px;}
.y12_c01092{bottom:693.915000px;}
.y11_c01092{bottom:728.115000px;}
.yf_c01092{bottom:795.165000px;}
.ye_c01092{bottom:827.565000px;}
.yd_c01092{bottom:861.615000px;}
.yc_c01092{bottom:894.165000px;}
.yb_c01092{bottom:927.765000px;}
.ya_c01092{bottom:961.215000px;}
.y9_c01092{bottom:994.665000px;}
.y8_c01092{bottom:1027.815000px;}
.y7_c01092{bottom:1060.515000px;}
.y6_c01092{bottom:1093.515000px;}
.y5_c01092{bottom:1126.965000px;}
.y4_c01092{bottom:1159.365000px;}
.y3_c01092{bottom:1192.815000px;}
.y2_c01092{bottom:1226.115000px;}
.y1_c01092{bottom:1259.565000px;}
.h6_c01092{height:13.200074px;}
.h5_c01092{height:37.983398px;}
.h7_c01092{height:43.804688px;}
.h3_c01092{height:106.353516px;}
.h2_c01092{height:121.546875px;}
.h4_c01092{height:393.000000px;}
.h1_c01092{height:1371.000000px;}
.h0_c01092{height:1371.075000px;}
.w2_c01092{width:104.875500px;}
.w0_c01092{width:869.925000px;}
.w1_c01092{width:870.000000px;}
.x0_c01092{left:0.000000px;}
.x6_c01092{left:50.400000px;}
.x4_c01092{left:52.050000px;}
.xf_c01092{left:53.100000px;}
.x3_c01092{left:55.800000px;}
.x8_c01092{left:101.700000px;}
.x7_c01092{left:102.900000px;}
.xe_c01092{left:103.950000px;}
.xd_c01092{left:106.200000px;}
.x2_c01092{left:117.450000px;}
.x1_c01092{left:118.500000px;}
.x5_c01092{left:120.150000px;}
.x10_c01092{left:121.200000px;}
.xa_c01092{left:176.850000px;}
.xb_c01092{left:241.200000px;}
.xc_c01092{left:250.050000px;}
.x9_c01092{left:297.750000px;}
.x11_c01092{left:386.776749px;}
@media print{
.v1_c01092{vertical-align:-125.866667pt;}
.v0_c01092{vertical-align:0.000000pt;}
.ls3_c01092{letter-spacing:-16.000000pt;}
.ls2_c01092{letter-spacing:0.000000pt;}
.ls0_c01092{letter-spacing:14.400000pt;}
.ls1_c01092{letter-spacing:23.200000pt;}
.ws4_c01092{word-spacing:-20.565333pt;}
.ws0_c01092{word-spacing:-17.994667pt;}
.ws3_c01092{word-spacing:-7.040000pt;}
.ws1_c01092{word-spacing:-0.224000pt;}
.ws5_c01092{word-spacing:0.000000pt;}
.ws2_c01092{word-spacing:55.573333pt;}
._1b_c01092{margin-left:-34.560000pt;}
._3a_c01092{margin-left:-23.552000pt;}
._14_c01092{margin-left:-10.922667pt;}
._15_c01092{margin-left:-5.461333pt;}
._26_c01092{margin-left:-4.341333pt;}
._e_c01092{margin-left:-1.792000pt;}
._4_c01092{width:1.109333pt;}
._1d_c01092{width:2.080000pt;}
._b_c01092{width:3.072000pt;}
._d_c01092{width:4.608000pt;}
._c_c01092{width:5.717333pt;}
._8_c01092{width:6.741333pt;}
._1f_c01092{width:7.765333pt;}
._9_c01092{width:8.704000pt;}
._0_c01092{width:9.728000pt;}
._7_c01092{width:11.008000pt;}
._2_c01092{width:12.714667pt;}
._23_c01092{width:13.856000pt;}
._1a_c01092{width:14.784000pt;}
._1_c01092{width:16.213333pt;}
._6_c01092{width:17.408000pt;}
._20_c01092{width:19.296000pt;}
._3b_c01092{width:20.320000pt;}
._19_c01092{width:22.272000pt;}
._1e_c01092{width:23.178667pt;}
._30_c01092{width:24.448000pt;}
._34_c01092{width:25.386667pt;}
._10_c01092{width:26.794667pt;}
._24_c01092{width:27.744000pt;}
._17_c01092{width:29.578667pt;}
._a_c01092{width:30.634667pt;}
._22_c01092{width:32.416000pt;}
._25_c01092{width:33.578667pt;}
._5_c01092{width:34.901333pt;}
._27_c01092{width:37.109333pt;}
._12_c01092{width:38.058667pt;}
._28_c01092{width:40.245333pt;}
._f_c01092{width:41.813333pt;}
._16_c01092{width:43.498667pt;}
._13_c01092{width:44.544000pt;}
._2b_c01092{width:46.378667pt;}
._2d_c01092{width:47.840000pt;}
._2a_c01092{width:50.410667pt;}
._33_c01092{width:51.850667pt;}
._18_c01092{width:53.344000pt;}
._35_c01092{width:57.845333pt;}
._32_c01092{width:59.253333pt;}
._2f_c01092{width:61.674667pt;}
._3_c01092{width:62.890667pt;}
._39_c01092{width:72.597333pt;}
._37_c01092{width:79.488000pt;}
._36_c01092{width:80.608000pt;}
._2e_c01092{width:86.357333pt;}
._1c_c01092{width:183.744000pt;}
._38_c01092{width:272.725333pt;}
._21_c01092{width:618.389333pt;}
._2c_c01092{width:625.738667pt;}
._11_c01092{width:731.050667pt;}
._3c_c01092{width:847.488000pt;}
._31_c01092{width:1170.005333pt;}
._29_c01092{width:1537.077333pt;}
.fs3_c01092{font-size:26.666667pt;}
.fs7_c01092{font-size:42.666667pt;}
.fs6_c01092{font-size:64.000000pt;}
.fs1_c01092{font-size:74.666667pt;}
.fs0_c01092{font-size:85.333333pt;}
.fs5_c01092{font-size:88.000000pt;}
.fs4_c01092{font-size:90.666667pt;}
.fs2_c01092{font-size:333.333333pt;}
.y0_c01092{bottom:0.000000pt;}
.y22_c01092{bottom:2.760000pt;}
.y21_c01092{bottom:6.425219pt;}
.y20_c01092{bottom:106.813333pt;}
.y1f_c01092{bottom:137.746667pt;}
.y1e_c01092{bottom:167.746667pt;}
.y1d_c01092{bottom:198.413333pt;}
.y1c_c01092{bottom:228.280000pt;}
.y1b_c01092{bottom:258.680000pt;}
.y1a_c01092{bottom:288.680000pt;}
.y19_c01092{bottom:318.946667pt;}
.y18_c01092{bottom:348.680000pt;}
.y17_c01092{bottom:438.013333pt;}
.y16_c01092{bottom:468.413333pt;}
.y15_c01092{bottom:527.480000pt;}
.y10_c01092{bottom:552.413333pt;}
.y14_c01092{bottom:558.013333pt;}
.y13_c01092{bottom:588.013333pt;}
.y12_c01092{bottom:616.813333pt;}
.y11_c01092{bottom:647.213333pt;}
.yf_c01092{bottom:706.813333pt;}
.ye_c01092{bottom:735.613333pt;}
.yd_c01092{bottom:765.880000pt;}
.yc_c01092{bottom:794.813333pt;}
.yb_c01092{bottom:824.680000pt;}
.ya_c01092{bottom:854.413333pt;}
.y9_c01092{bottom:884.146667pt;}
.y8_c01092{bottom:913.613333pt;}
.y7_c01092{bottom:942.680000pt;}
.y6_c01092{bottom:972.013333pt;}
.y5_c01092{bottom:1001.746667pt;}
.y4_c01092{bottom:1030.546667pt;}
.y3_c01092{bottom:1060.280000pt;}
.y2_c01092{bottom:1089.880000pt;}
.y1_c01092{bottom:1119.613333pt;}
.h6_c01092{height:11.733399pt;}
.h5_c01092{height:33.763021pt;}
.h7_c01092{height:38.937500pt;}
.h3_c01092{height:94.536458pt;}
.h2_c01092{height:108.041667pt;}
.h4_c01092{height:349.333333pt;}
.h1_c01092{height:1218.666667pt;}
.h0_c01092{height:1218.733333pt;}
.w2_c01092{width:93.222667pt;}
.w0_c01092{width:773.266667pt;}
.w1_c01092{width:773.333333pt;}
.x0_c01092{left:0.000000pt;}
.x6_c01092{left:44.800000pt;}
.x4_c01092{left:46.266667pt;}
.xf_c01092{left:47.200000pt;}
.x3_c01092{left:49.600000pt;}
.x8_c01092{left:90.400000pt;}
.x7_c01092{left:91.466667pt;}
.xe_c01092{left:92.400000pt;}
.xd_c01092{left:94.400000pt;}
.x2_c01092{left:104.400000pt;}
.x1_c01092{left:105.333333pt;}
.x5_c01092{left:106.800000pt;}
.x10_c01092{left:107.733333pt;}
.xa_c01092{left:157.200000pt;}
.xb_c01092{left:214.400000pt;}
.xc_c01092{left:222.266667pt;}
.x9_c01092{left:264.666667pt;}
.x11_c01092{left:343.801554pt;}
}





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

.ir_c01093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_b131dc21aed163adc26341ac.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01093;src:url('chunks/assets/font_a8a432085fdcfde7cfc9cbae.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01093;src:url('chunks/assets/font_53bf9086e7ce3d08ccf5b74b.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01093;src:url('chunks/assets/font_6de3d33f89f2ad2a47228db3.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01093;src:url('chunks/assets/font_9d11ac602ef42a4d97ae28e8.woff2')format("woff");}.ff5_c01093{font-family:ff5_c01093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01093;src:url('chunks/assets/font_6cc85304e275661d74feb697.woff2')format("woff");}.ff6_c01093{font-family:ff6_c01093;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01093;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff7_c01093{font-family:ff7_c01093;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.ls6_c01093{letter-spacing:-21.000000px;}
.ls4_c01093{letter-spacing:0.000000px;}
.ls3_c01093{letter-spacing:2.808000px;}
.ls5_c01093{letter-spacing:15.000000px;}
.ls1_c01093{letter-spacing:21.000000px;}
.ls2_c01093{letter-spacing:24.048000px;}
.ls0_c01093{letter-spacing:1808.064000px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01093{word-spacing:-51.000000px;}
.ws1_c01093{word-spacing:-35.244000px;}
.ws7_c01093{word-spacing:-23.136000px;}
.ws0_c01093{word-spacing:-20.244000px;}
.wsa_c01093{word-spacing:-18.508800px;}
.wsb_c01093{word-spacing:0.000000px;}
.ws5_c01093{word-spacing:0.108000px;}
.ws4_c01093{word-spacing:3.528000px;}
.ws3_c01093{word-spacing:6.888000px;}
.ws2_c01093{word-spacing:9.828000px;}
.ws8_c01093{word-spacing:20.580000px;}
.ws9_c01093{word-spacing:20.664000px;}
._5c_c01093{margin-left:-210.000000px;}
._54_c01093{margin-left:-175.140000px;}
._5d_c01093{margin-left:-136.080000px;}
._53_c01093{margin-left:-111.720000px;}
._5a_c01093{margin-left:-104.160000px;}
._60_c01093{margin-left:-101.022000px;}
._63_c01093{margin-left:-99.540000px;}
._5e_c01093{margin-left:-93.240000px;}
._64_c01093{margin-left:-89.868000px;}
._66_c01093{margin-left:-86.100000px;}
._52_c01093{margin-left:-80.640000px;}
._57_c01093{margin-left:-76.020000px;}
._2d_c01093{margin-left:-72.324000px;}
._68_c01093{margin-left:-65.100000px;}
._58_c01093{margin-left:-60.900000px;}
._67_c01093{margin-left:-57.120000px;}
._59_c01093{margin-left:-53.760000px;}
._4f_c01093{margin-left:-51.246000px;}
._62_c01093{margin-left:-42.840000px;}
._1f_c01093{margin-left:-40.992000px;}
._69_c01093{margin-left:-37.800000px;}
._4b_c01093{margin-left:-35.844000px;}
._56_c01093{margin-left:-33.888000px;}
._4a_c01093{margin-left:-31.929000px;}
._5b_c01093{margin-left:-29.760000px;}
._5f_c01093{margin-left:-28.680000px;}
._1d_c01093{margin-left:-25.728000px;}
._5_c01093{margin-left:-23.616000px;}
._4c_c01093{margin-left:-21.924000px;}
._39_c01093{margin-left:-20.244000px;}
._65_c01093{margin-left:-18.396000px;}
._4e_c01093{margin-left:-16.536000px;}
._37_c01093{margin-left:-12.528000px;}
._6b_c01093{margin-left:-11.040000px;}
._b_c01093{margin-left:-9.792000px;}
._c_c01093{margin-left:-8.640000px;}
._d_c01093{margin-left:-7.296000px;}
._48_c01093{margin-left:-6.144000px;}
._9_c01093{margin-left:-4.992000px;}
._8_c01093{margin-left:-3.072000px;}
._14_c01093{margin-left:-1.920000px;}
._4_c01093{width:1.440000px;}
._2_c01093{width:2.976000px;}
._3_c01093{width:4.416000px;}
._1_c01093{width:5.568000px;}
._e_c01093{width:6.720000px;}
._f_c01093{width:7.776000px;}
._2b_c01093{width:8.988000px;}
._a_c01093{width:10.080000px;}
._1b_c01093{width:11.508000px;}
._13_c01093{width:12.768000px;}
._42_c01093{width:14.064000px;}
._27_c01093{width:15.264000px;}
._2a_c01093{width:16.836000px;}
._12_c01093{width:18.912000px;}
._17_c01093{width:20.448000px;}
._33_c01093{width:22.044000px;}
._34_c01093{width:23.700000px;}
._31_c01093{width:25.836000px;}
._29_c01093{width:27.744000px;}
._36_c01093{width:28.824000px;}
._46_c01093{width:29.928000px;}
._2f_c01093{width:30.948000px;}
._6_c01093{width:32.064000px;}
._32_c01093{width:34.032000px;}
._38_c01093{width:36.144000px;}
._3f_c01093{width:37.692000px;}
._35_c01093{width:39.420000px;}
._15_c01093{width:40.800000px;}
._18_c01093{width:43.680000px;}
._40_c01093{width:45.228000px;}
._4d_c01093{width:46.851000px;}
._28_c01093{width:48.000000px;}
._16_c01093{width:49.824000px;}
._24_c01093{width:51.648000px;}
._19_c01093{width:53.664000px;}
._1a_c01093{width:55.104000px;}
._7_c01093{width:56.640000px;}
._3c_c01093{width:57.972000px;}
._45_c01093{width:58.980000px;}
._3a_c01093{width:64.836000px;}
._30_c01093{width:67.008000px;}
._10_c01093{width:68.832000px;}
._3d_c01093{width:70.824000px;}
._22_c01093{width:73.824000px;}
._23_c01093{width:76.128000px;}
._21_c01093{width:82.656000px;}
._11_c01093{width:86.880000px;}
._41_c01093{width:91.728000px;}
._25_c01093{width:109.656000px;}
._61_c01093{width:115.920000px;}
._26_c01093{width:179.616000px;}
._0_c01093{width:184.416000px;}
._2e_c01093{width:192.492000px;}
._6c_c01093{width:199.008000px;}
._44_c01093{width:207.804000px;}
._3e_c01093{width:215.304000px;}
._51_c01093{width:246.036000px;}
._6a_c01093{width:254.592000px;}
._20_c01093{width:371.064000px;}
._1c_c01093{width:374.400000px;}
._49_c01093{width:419.988000px;}
._55_c01093{width:471.240000px;}
._6d_c01093{width:532.284000px;}
._50_c01093{width:567.540000px;}
._43_c01093{width:858.468000px;}
._1e_c01093{width:895.680000px;}
._6e_c01093{width:1107.576000px;}
._47_c01093{width:1417.596000px;}
._2c_c01093{width:1419.468000px;}
._3b_c01093{width:1508.868000px;}
.fc2_c01093{color:transparent;}
.fc1_c01093{color:rgb(128,128,128);}
.fc0_c01093{color:rgb(0,0,0);}
.fs9_c01093{font-size:48.000000px;}
.fs7_c01093{font-size:76.800000px;}
.fs4_c01093{font-size:78.000000px;}
.fs1_c01093{font-size:84.000000px;}
.fs2_c01093{font-size:87.000000px;}
.fs0_c01093{font-size:96.000000px;}
.fs3_c01093{font-size:102.000000px;}
.fs8_c01093{font-size:111.000000px;}
.fs6_c01093{font-size:336.000000px;}
.fs5_c01093{font-size:420.000000px;}
.y0_c01093{bottom:0.000000px;}
.y1f_c01093{bottom:3.105000px;}
.y1e_c01093{bottom:7.228357px;}
.y1d_c01093{bottom:148.530000px;}
.y1c_c01093{bottom:179.880000px;}
.y1b_c01093{bottom:212.280000px;}
.y1a_c01093{bottom:247.680000px;}
.y19_c01093{bottom:313.980000px;}
.y18_c01093{bottom:352.380000px;}
.y17_c01093{bottom:385.380000px;}
.y16_c01093{bottom:547.380000px;}
.y15_c01093{bottom:582.930000px;}
.y14_c01093{bottom:618.330000px;}
.y13_c01093{bottom:651.030000px;}
.y12_c01093{bottom:685.230000px;}
.y11_c01093{bottom:718.230000px;}
.y10_c01093{bottom:751.380000px;}
.yf_c01093{bottom:785.430000px;}
.ye_c01093{bottom:817.830000px;}
.yd_c01093{bottom:852.630000px;}
.yc_c01093{bottom:886.230000px;}
.yb_c01093{bottom:919.680000px;}
.ya_c01093{bottom:952.530000px;}
.y9_c01093{bottom:986.580000px;}
.y8_c01093{bottom:1017.630000px;}
.y7_c01093{bottom:1053.030000px;}
.y6_c01093{bottom:1087.080000px;}
.y5_c01093{bottom:1117.530000px;}
.y4_c01093{bottom:1153.530000px;}
.y3_c01093{bottom:1189.680000px;}
.y2_c01093{bottom:1220.130000px;}
.y1_c01093{bottom:1253.430000px;}
.h8_c01093{height:13.200074px;}
.h9_c01093{height:43.804688px;}
.h3_c01093{height:98.314453px;}
.h4_c01093{height:106.353516px;}
.h5_c01093{height:110.151855px;}
.h2_c01093{height:121.546875px;}
.h7_c01093{height:140.538574px;}
.h6_c01093{height:412.207031px;}
.h0_c01093{height:1382.700000px;}
.h1_c01093{height:1383.000000px;}
.w2_c01093{width:104.875500px;}
.w0_c01093{width:863.175000px;}
.w1_c01093{width:863.250000px;}
.x0_c01093{left:0.000000px;}
.x8_c01093{left:135.750000px;}
.xb_c01093{left:136.800000px;}
.x1_c01093{left:139.050000px;}
.x6_c01093{left:182.250000px;}
.x2_c01093{left:186.600000px;}
.x3_c01093{left:187.650000px;}
.x7_c01093{left:189.300000px;}
.x9_c01093{left:202.200000px;}
.xa_c01093{left:203.250000px;}
.xc_c01093{left:204.300000px;}
.xd_c01093{left:205.950000px;}
.xe_c01093{left:207.000000px;}
.x11_c01093{left:211.350000px;}
.x5_c01093{left:217.950000px;}
.x4_c01093{left:222.300000px;}
.x10_c01093{left:293.400000px;}
.x13_c01093{left:383.401749px;}
.xf_c01093{left:424.650000px;}
.x12_c01093{left:509.400000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls6_c01093{letter-spacing:-18.666667pt;}
.ls4_c01093{letter-spacing:0.000000pt;}
.ls3_c01093{letter-spacing:2.496000pt;}
.ls5_c01093{letter-spacing:13.333333pt;}
.ls1_c01093{letter-spacing:18.666667pt;}
.ls2_c01093{letter-spacing:21.376000pt;}
.ls0_c01093{letter-spacing:1607.168000pt;}
.ws6_c01093{word-spacing:-45.333333pt;}
.ws1_c01093{word-spacing:-31.328000pt;}
.ws7_c01093{word-spacing:-20.565333pt;}
.ws0_c01093{word-spacing:-17.994667pt;}
.wsa_c01093{word-spacing:-16.452267pt;}
.wsb_c01093{word-spacing:0.000000pt;}
.ws5_c01093{word-spacing:0.096000pt;}
.ws4_c01093{word-spacing:3.136000pt;}
.ws3_c01093{word-spacing:6.122667pt;}
.ws2_c01093{word-spacing:8.736000pt;}
.ws8_c01093{word-spacing:18.293333pt;}
.ws9_c01093{word-spacing:18.368000pt;}
._5c_c01093{margin-left:-186.666667pt;}
._54_c01093{margin-left:-155.680000pt;}
._5d_c01093{margin-left:-120.960000pt;}
._53_c01093{margin-left:-99.306667pt;}
._5a_c01093{margin-left:-92.586667pt;}
._60_c01093{margin-left:-89.797333pt;}
._63_c01093{margin-left:-88.480000pt;}
._5e_c01093{margin-left:-82.880000pt;}
._64_c01093{margin-left:-79.882667pt;}
._66_c01093{margin-left:-76.533333pt;}
._52_c01093{margin-left:-71.680000pt;}
._57_c01093{margin-left:-67.573333pt;}
._2d_c01093{margin-left:-64.288000pt;}
._68_c01093{margin-left:-57.866667pt;}
._58_c01093{margin-left:-54.133333pt;}
._67_c01093{margin-left:-50.773333pt;}
._59_c01093{margin-left:-47.786667pt;}
._4f_c01093{margin-left:-45.552000pt;}
._62_c01093{margin-left:-38.080000pt;}
._1f_c01093{margin-left:-36.437333pt;}
._69_c01093{margin-left:-33.600000pt;}
._4b_c01093{margin-left:-31.861333pt;}
._56_c01093{margin-left:-30.122667pt;}
._4a_c01093{margin-left:-28.381333pt;}
._5b_c01093{margin-left:-26.453333pt;}
._5f_c01093{margin-left:-25.493333pt;}
._1d_c01093{margin-left:-22.869333pt;}
._5_c01093{margin-left:-20.992000pt;}
._4c_c01093{margin-left:-19.488000pt;}
._39_c01093{margin-left:-17.994667pt;}
._65_c01093{margin-left:-16.352000pt;}
._4e_c01093{margin-left:-14.698667pt;}
._37_c01093{margin-left:-11.136000pt;}
._6b_c01093{margin-left:-9.813333pt;}
._b_c01093{margin-left:-8.704000pt;}
._c_c01093{margin-left:-7.680000pt;}
._d_c01093{margin-left:-6.485333pt;}
._48_c01093{margin-left:-5.461333pt;}
._9_c01093{margin-left:-4.437333pt;}
._8_c01093{margin-left:-2.730667pt;}
._14_c01093{margin-left:-1.706667pt;}
._4_c01093{width:1.280000pt;}
._2_c01093{width:2.645333pt;}
._3_c01093{width:3.925333pt;}
._1_c01093{width:4.949333pt;}
._e_c01093{width:5.973333pt;}
._f_c01093{width:6.912000pt;}
._2b_c01093{width:7.989333pt;}
._a_c01093{width:8.960000pt;}
._1b_c01093{width:10.229333pt;}
._13_c01093{width:11.349333pt;}
._42_c01093{width:12.501333pt;}
._27_c01093{width:13.568000pt;}
._2a_c01093{width:14.965333pt;}
._12_c01093{width:16.810667pt;}
._17_c01093{width:18.176000pt;}
._33_c01093{width:19.594667pt;}
._34_c01093{width:21.066667pt;}
._31_c01093{width:22.965333pt;}
._29_c01093{width:24.661333pt;}
._36_c01093{width:25.621333pt;}
._46_c01093{width:26.602667pt;}
._2f_c01093{width:27.509333pt;}
._6_c01093{width:28.501333pt;}
._32_c01093{width:30.250667pt;}
._38_c01093{width:32.128000pt;}
._3f_c01093{width:33.504000pt;}
._35_c01093{width:35.040000pt;}
._15_c01093{width:36.266667pt;}
._18_c01093{width:38.826667pt;}
._40_c01093{width:40.202667pt;}
._4d_c01093{width:41.645333pt;}
._28_c01093{width:42.666667pt;}
._16_c01093{width:44.288000pt;}
._24_c01093{width:45.909333pt;}
._19_c01093{width:47.701333pt;}
._1a_c01093{width:48.981333pt;}
._7_c01093{width:50.346667pt;}
._3c_c01093{width:51.530667pt;}
._45_c01093{width:52.426667pt;}
._3a_c01093{width:57.632000pt;}
._30_c01093{width:59.562667pt;}
._10_c01093{width:61.184000pt;}
._3d_c01093{width:62.954667pt;}
._22_c01093{width:65.621333pt;}
._23_c01093{width:67.669333pt;}
._21_c01093{width:73.472000pt;}
._11_c01093{width:77.226667pt;}
._41_c01093{width:81.536000pt;}
._25_c01093{width:97.472000pt;}
._61_c01093{width:103.040000pt;}
._26_c01093{width:159.658667pt;}
._0_c01093{width:163.925333pt;}
._2e_c01093{width:171.104000pt;}
._6c_c01093{width:176.896000pt;}
._44_c01093{width:184.714667pt;}
._3e_c01093{width:191.381333pt;}
._51_c01093{width:218.698667pt;}
._6a_c01093{width:226.304000pt;}
._20_c01093{width:329.834667pt;}
._1c_c01093{width:332.800000pt;}
._49_c01093{width:373.322667pt;}
._55_c01093{width:418.880000pt;}
._6d_c01093{width:473.141333pt;}
._50_c01093{width:504.480000pt;}
._43_c01093{width:763.082667pt;}
._1e_c01093{width:796.160000pt;}
._6e_c01093{width:984.512000pt;}
._47_c01093{width:1260.085333pt;}
._2c_c01093{width:1261.749333pt;}
._3b_c01093{width:1341.216000pt;}
.fs9_c01093{font-size:42.666667pt;}
.fs7_c01093{font-size:68.266667pt;}
.fs4_c01093{font-size:69.333333pt;}
.fs1_c01093{font-size:74.666667pt;}
.fs2_c01093{font-size:77.333333pt;}
.fs0_c01093{font-size:85.333333pt;}
.fs3_c01093{font-size:90.666667pt;}
.fs8_c01093{font-size:98.666667pt;}
.fs6_c01093{font-size:298.666667pt;}
.fs5_c01093{font-size:373.333333pt;}
.y0_c01093{bottom:0.000000pt;}
.y1f_c01093{bottom:2.760000pt;}
.y1e_c01093{bottom:6.425206pt;}
.y1d_c01093{bottom:132.026667pt;}
.y1c_c01093{bottom:159.893333pt;}
.y1b_c01093{bottom:188.693333pt;}
.y1a_c01093{bottom:220.160000pt;}
.y19_c01093{bottom:279.093333pt;}
.y18_c01093{bottom:313.226667pt;}
.y17_c01093{bottom:342.560000pt;}
.y16_c01093{bottom:486.560000pt;}
.y15_c01093{bottom:518.160000pt;}
.y14_c01093{bottom:549.626667pt;}
.y13_c01093{bottom:578.693333pt;}
.y12_c01093{bottom:609.093333pt;}
.y11_c01093{bottom:638.426667pt;}
.y10_c01093{bottom:667.893333pt;}
.yf_c01093{bottom:698.160000pt;}
.ye_c01093{bottom:726.960000pt;}
.yd_c01093{bottom:757.893333pt;}
.yc_c01093{bottom:787.760000pt;}
.yb_c01093{bottom:817.493333pt;}
.ya_c01093{bottom:846.693333pt;}
.y9_c01093{bottom:876.960000pt;}
.y8_c01093{bottom:904.560000pt;}
.y7_c01093{bottom:936.026667pt;}
.y6_c01093{bottom:966.293333pt;}
.y5_c01093{bottom:993.360000pt;}
.y4_c01093{bottom:1025.360000pt;}
.y3_c01093{bottom:1057.493333pt;}
.y2_c01093{bottom:1084.560000pt;}
.y1_c01093{bottom:1114.160000pt;}
.h8_c01093{height:11.733399pt;}
.h9_c01093{height:38.937500pt;}
.h3_c01093{height:87.390625pt;}
.h4_c01093{height:94.536458pt;}
.h5_c01093{height:97.912760pt;}
.h2_c01093{height:108.041667pt;}
.h7_c01093{height:124.923177pt;}
.h6_c01093{height:366.406250pt;}
.h0_c01093{height:1229.066667pt;}
.h1_c01093{height:1229.333333pt;}
.w2_c01093{width:93.222667pt;}
.w0_c01093{width:767.266667pt;}
.w1_c01093{width:767.333333pt;}
.x0_c01093{left:0.000000pt;}
.x8_c01093{left:120.666667pt;}
.xb_c01093{left:121.600000pt;}
.x1_c01093{left:123.600000pt;}
.x6_c01093{left:162.000000pt;}
.x2_c01093{left:165.866667pt;}
.x3_c01093{left:166.800000pt;}
.x7_c01093{left:168.266667pt;}
.x9_c01093{left:179.733333pt;}
.xa_c01093{left:180.666667pt;}
.xc_c01093{left:181.600000pt;}
.xd_c01093{left:183.066667pt;}
.xe_c01093{left:184.000000pt;}
.x11_c01093{left:187.866667pt;}
.x5_c01093{left:193.733333pt;}
.x4_c01093{left:197.600000pt;}
.x10_c01093{left:260.800000pt;}
.x13_c01093{left:340.801554pt;}
.xf_c01093{left:377.466667pt;}
.x12_c01093{left:452.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_c01094 {
    display:none;
  }
  .loading-indicator_c01094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01094 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01094 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01094" -> "#page-container .classname_c01094")
 */
.pf_c01094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01094 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01094 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01094 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01094 {overflow:visible;}
  }
}
.c_c01094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01094 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01094:after { /* webkit #35443 */
  content: '';
}
.t_c01094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01094 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01094 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01094 { /* info for Javascript */
  display:none;
}
.l_c01094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_b92a5055b6b1c50b145e64f3.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01094;src:url('chunks/assets/font_59aa272ad5cdb4af1915445b.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01094;src:url('chunks/assets/font_3f741823d56bf9f2a897b570.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01094;src:url('chunks/assets/font_6a83842ea75dbcf03351bbf7.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;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_c01094;src:url('chunks/assets/font_1c1367a989a133a7783144b2.woff2')format("woff");}.ff5_c01094{font-family:ff5_c01094;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01094;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff6_c01094{font-family:ff6_c01094;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01094{vertical-align:-118.200000px;}
.v0_c01094{vertical-align:0.000000px;}
.ls5_c01094{letter-spacing:-9.000000px;}
.ls3_c01094{letter-spacing:0.000000px;}
.ls0_c01094{letter-spacing:12.864000px;}
.ls2_c01094{letter-spacing:15.000000px;}
.ls1_c01094{letter-spacing:18.000000px;}
.ls4_c01094{letter-spacing:51.000000px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01094{word-spacing:-42.936000px;}
.ws6_c01094{word-spacing:-39.582000px;}
.ws2_c01094{word-spacing:-35.244000px;}
.ws3_c01094{word-spacing:-24.582000px;}
.ws5_c01094{word-spacing:-23.136000px;}
.ws0_c01094{word-spacing:-20.244000px;}
.ws7_c01094{word-spacing:0.000000px;}
.ws4_c01094{word-spacing:0.075000px;}
._26_c01094{margin-left:-51.060000px;}
._25_c01094{margin-left:-42.252000px;}
._43_c01094{margin-left:-40.128000px;}
._4e_c01094{margin-left:-21.540000px;}
._1e_c01094{margin-left:-19.608000px;}
._3a_c01094{margin-left:-16.788000px;}
._0_c01094{margin-left:-15.552000px;}
._2a_c01094{margin-left:-13.848000px;}
._1a_c01094{margin-left:-11.808000px;}
._2b_c01094{margin-left:-10.764000px;}
._b_c01094{margin-left:-9.504000px;}
._c_c01094{margin-left:-7.776000px;}
._1d_c01094{margin-left:-6.432000px;}
._2d_c01094{margin-left:-5.400000px;}
._1f_c01094{margin-left:-3.732000px;}
._20_c01094{margin-left:-2.352000px;}
._3f_c01094{margin-left:-1.320000px;}
._2_c01094{width:1.056000px;}
._13_c01094{width:2.532000px;}
._9_c01094{width:3.624000px;}
._32_c01094{width:4.644000px;}
._8_c01094{width:5.664000px;}
._5_c01094{width:7.296000px;}
._4_c01094{width:9.024000px;}
._7_c01094{width:10.464000px;}
._17_c01094{width:11.928000px;}
._16_c01094{width:13.272000px;}
._22_c01094{width:15.012000px;}
._1c_c01094{width:16.464000px;}
._1b_c01094{width:18.312000px;}
._2e_c01094{width:19.560000px;}
._4d_c01094{width:20.712000px;}
._11_c01094{width:21.888000px;}
._27_c01094{width:24.372000px;}
._47_c01094{width:25.392000px;}
._a_c01094{width:27.612000px;}
._10_c01094{width:28.824000px;}
._33_c01094{width:30.444000px;}
._24_c01094{width:32.448000px;}
._37_c01094{width:33.708000px;}
._f_c01094{width:35.280000px;}
._e_c01094{width:36.876000px;}
._41_c01094{width:37.884000px;}
._15_c01094{width:39.156000px;}
._3e_c01094{width:40.284000px;}
._35_c01094{width:41.328000px;}
._34_c01094{width:43.380000px;}
._d_c01094{width:44.928000px;}
._40_c01094{width:46.704000px;}
._18_c01094{width:47.880000px;}
._14_c01094{width:49.932000px;}
._2f_c01094{width:51.384000px;}
._3b_c01094{width:53.544000px;}
._23_c01094{width:54.876000px;}
._39_c01094{width:56.724000px;}
._12_c01094{width:58.356000px;}
._48_c01094{width:59.892000px;}
._46_c01094{width:62.880000px;}
._29_c01094{width:66.384000px;}
._30_c01094{width:67.416000px;}
._6_c01094{width:68.736000px;}
._45_c01094{width:69.828000px;}
._44_c01094{width:79.716000px;}
._38_c01094{width:81.348000px;}
._4b_c01094{width:83.676000px;}
._21_c01094{width:84.906000px;}
._2c_c01094{width:90.798000px;}
._4c_c01094{width:92.760000px;}
._28_c01094{width:98.928000px;}
._3c_c01094{width:101.868000px;}
._31_c01094{width:114.480000px;}
._36_c01094{width:116.760000px;}
._49_c01094{width:130.536000px;}
._3_c01094{width:243.552000px;}
._1_c01094{width:254.688000px;}
._3d_c01094{width:275.160000px;}
._19_c01094{width:350.520000px;}
._4a_c01094{width:396.324000px;}
._42_c01094{width:855.888000px;}
._4f_c01094{width:1292.700000px;}
.fc2_c01094{color:transparent;}
.fc1_c01094{color:rgb(128,128,128);}
.fc0_c01094{color:rgb(0,0,0);}
.fs5_c01094{font-size:48.000000px;}
.fs3_c01094{font-size:75.000000px;}
.fs1_c01094{font-size:84.000000px;}
.fs0_c01094{font-size:96.000000px;}
.fs2_c01094{font-size:102.000000px;}
.fs4_c01094{font-size:114.000000px;}
.y0_c01094{bottom:0.000000px;}
.y24_c01094{bottom:3.105000px;}
.y23_c01094{bottom:7.228357px;}
.y22_c01094{bottom:120.780000px;}
.y21_c01094{bottom:157.230000px;}
.y20_c01094{bottom:187.980000px;}
.y1f_c01094{bottom:226.230000px;}
.y1e_c01094{bottom:260.280000px;}
.y1d_c01094{bottom:293.730000px;}
.y1c_c01094{bottom:327.780000px;}
.y1b_c01094{bottom:362.130000px;}
.y1a_c01094{bottom:395.880000px;}
.y19_c01094{bottom:429.630000px;}
.y18_c01094{bottom:463.080000px;}
.y17_c01094{bottom:496.230000px;}
.y16_c01094{bottom:530.580000px;}
.y15_c01094{bottom:564.030000px;}
.y14_c01094{bottom:597.780000px;}
.y13_c01094{bottom:631.080000px;}
.y12_c01094{bottom:664.830000px;}
.y11_c01094{bottom:697.980000px;}
.y10_c01094{bottom:731.430000px;}
.yf_c01094{bottom:765.780000px;}
.ye_c01094{bottom:798.480000px;}
.yd_c01094{bottom:830.880000px;}
.yc_c01094{bottom:864.330000px;}
.yb_c01094{bottom:898.380000px;}
.ya_c01094{bottom:931.530000px;}
.y9_c01094{bottom:964.980000px;}
.y8_c01094{bottom:999.630000px;}
.y7_c01094{bottom:1031.730000px;}
.y6_c01094{bottom:1064.580000px;}
.y5_c01094{bottom:1097.880000px;}
.y4_c01094{bottom:1131.330000px;}
.y3_c01094{bottom:1164.030000px;}
.y2_c01094{bottom:1197.780000px;}
.y1_c01094{bottom:1264.680000px;}
.h7_c01094{height:13.200074px;}
.h8_c01094{height:43.804688px;}
.h5_c01094{height:98.314453px;}
.h4_c01094{height:106.353516px;}
.h6_c01094{height:120.067383px;}
.h2_c01094{height:121.546875px;}
.h3_c01094{height:129.143555px;}
.h0_c01094{height:1367.850000px;}
.h1_c01094{height:1368.000000px;}
.w1_c01094{width:104.875500px;}
.w0_c01094{width:867.750000px;}
.x0_c01094{left:0.000000px;}
.xb_c01094{left:59.700000px;}
.x6_c01094{left:61.200000px;}
.x2_c01094{left:62.400000px;}
.x3_c01094{left:63.450000px;}
.x4_c01094{left:64.500000px;}
.xf_c01094{left:65.550000px;}
.x1_c01094{left:67.800000px;}
.xe_c01094{left:69.300000px;}
.x8_c01094{left:70.950000px;}
.xd_c01094{left:112.050000px;}
.x11_c01094{left:114.750000px;}
.x10_c01094{left:116.400000px;}
.xc_c01094{left:151.500000px;}
.x5_c01094{left:153.000000px;}
.x7_c01094{left:190.800000px;}
.x9_c01094{left:197.850000px;}
.xa_c01094{left:217.800000px;}
.x12_c01094{left:385.689240px;}
@media print{
.v1_c01094{vertical-align:-105.066667pt;}
.v0_c01094{vertical-align:0.000000pt;}
.ls5_c01094{letter-spacing:-8.000000pt;}
.ls3_c01094{letter-spacing:0.000000pt;}
.ls0_c01094{letter-spacing:11.434667pt;}
.ls2_c01094{letter-spacing:13.333333pt;}
.ls1_c01094{letter-spacing:16.000000pt;}
.ls4_c01094{letter-spacing:45.333333pt;}
.ws1_c01094{word-spacing:-38.165333pt;}
.ws6_c01094{word-spacing:-35.184000pt;}
.ws2_c01094{word-spacing:-31.328000pt;}
.ws3_c01094{word-spacing:-21.850667pt;}
.ws5_c01094{word-spacing:-20.565333pt;}
.ws0_c01094{word-spacing:-17.994667pt;}
.ws7_c01094{word-spacing:0.000000pt;}
.ws4_c01094{word-spacing:0.066667pt;}
._26_c01094{margin-left:-45.386667pt;}
._25_c01094{margin-left:-37.557333pt;}
._43_c01094{margin-left:-35.669333pt;}
._4e_c01094{margin-left:-19.146667pt;}
._1e_c01094{margin-left:-17.429333pt;}
._3a_c01094{margin-left:-14.922667pt;}
._0_c01094{margin-left:-13.824000pt;}
._2a_c01094{margin-left:-12.309333pt;}
._1a_c01094{margin-left:-10.496000pt;}
._2b_c01094{margin-left:-9.568000pt;}
._b_c01094{margin-left:-8.448000pt;}
._c_c01094{margin-left:-6.912000pt;}
._1d_c01094{margin-left:-5.717333pt;}
._2d_c01094{margin-left:-4.800000pt;}
._1f_c01094{margin-left:-3.317333pt;}
._20_c01094{margin-left:-2.090667pt;}
._3f_c01094{margin-left:-1.173333pt;}
._2_c01094{width:0.938667pt;}
._13_c01094{width:2.250667pt;}
._9_c01094{width:3.221333pt;}
._32_c01094{width:4.128000pt;}
._8_c01094{width:5.034667pt;}
._5_c01094{width:6.485333pt;}
._4_c01094{width:8.021333pt;}
._7_c01094{width:9.301333pt;}
._17_c01094{width:10.602667pt;}
._16_c01094{width:11.797333pt;}
._22_c01094{width:13.344000pt;}
._1c_c01094{width:14.634667pt;}
._1b_c01094{width:16.277333pt;}
._2e_c01094{width:17.386667pt;}
._4d_c01094{width:18.410667pt;}
._11_c01094{width:19.456000pt;}
._27_c01094{width:21.664000pt;}
._47_c01094{width:22.570667pt;}
._a_c01094{width:24.544000pt;}
._10_c01094{width:25.621333pt;}
._33_c01094{width:27.061333pt;}
._24_c01094{width:28.842667pt;}
._37_c01094{width:29.962667pt;}
._f_c01094{width:31.360000pt;}
._e_c01094{width:32.778667pt;}
._41_c01094{width:33.674667pt;}
._15_c01094{width:34.805333pt;}
._3e_c01094{width:35.808000pt;}
._35_c01094{width:36.736000pt;}
._34_c01094{width:38.560000pt;}
._d_c01094{width:39.936000pt;}
._40_c01094{width:41.514667pt;}
._18_c01094{width:42.560000pt;}
._14_c01094{width:44.384000pt;}
._2f_c01094{width:45.674667pt;}
._3b_c01094{width:47.594667pt;}
._23_c01094{width:48.778667pt;}
._39_c01094{width:50.421333pt;}
._12_c01094{width:51.872000pt;}
._48_c01094{width:53.237333pt;}
._46_c01094{width:55.893333pt;}
._29_c01094{width:59.008000pt;}
._30_c01094{width:59.925333pt;}
._6_c01094{width:61.098667pt;}
._45_c01094{width:62.069333pt;}
._44_c01094{width:70.858667pt;}
._38_c01094{width:72.309333pt;}
._4b_c01094{width:74.378667pt;}
._21_c01094{width:75.472000pt;}
._2c_c01094{width:80.709333pt;}
._4c_c01094{width:82.453333pt;}
._28_c01094{width:87.936000pt;}
._3c_c01094{width:90.549333pt;}
._31_c01094{width:101.760000pt;}
._36_c01094{width:103.786667pt;}
._49_c01094{width:116.032000pt;}
._3_c01094{width:216.490667pt;}
._1_c01094{width:226.389333pt;}
._3d_c01094{width:244.586667pt;}
._19_c01094{width:311.573333pt;}
._4a_c01094{width:352.288000pt;}
._42_c01094{width:760.789333pt;}
._4f_c01094{width:1149.066667pt;}
.fs5_c01094{font-size:42.666667pt;}
.fs3_c01094{font-size:66.666667pt;}
.fs1_c01094{font-size:74.666667pt;}
.fs0_c01094{font-size:85.333333pt;}
.fs2_c01094{font-size:90.666667pt;}
.fs4_c01094{font-size:101.333333pt;}
.y0_c01094{bottom:0.000000pt;}
.y24_c01094{bottom:2.760000pt;}
.y23_c01094{bottom:6.425206pt;}
.y22_c01094{bottom:107.360000pt;}
.y21_c01094{bottom:139.760000pt;}
.y20_c01094{bottom:167.093333pt;}
.y1f_c01094{bottom:201.093333pt;}
.y1e_c01094{bottom:231.360000pt;}
.y1d_c01094{bottom:261.093333pt;}
.y1c_c01094{bottom:291.360000pt;}
.y1b_c01094{bottom:321.893333pt;}
.y1a_c01094{bottom:351.893333pt;}
.y19_c01094{bottom:381.893333pt;}
.y18_c01094{bottom:411.626667pt;}
.y17_c01094{bottom:441.093333pt;}
.y16_c01094{bottom:471.626667pt;}
.y15_c01094{bottom:501.360000pt;}
.y14_c01094{bottom:531.360000pt;}
.y13_c01094{bottom:560.960000pt;}
.y12_c01094{bottom:590.960000pt;}
.y11_c01094{bottom:620.426667pt;}
.y10_c01094{bottom:650.160000pt;}
.yf_c01094{bottom:680.693333pt;}
.ye_c01094{bottom:709.760000pt;}
.yd_c01094{bottom:738.560000pt;}
.yc_c01094{bottom:768.293333pt;}
.yb_c01094{bottom:798.560000pt;}
.ya_c01094{bottom:828.026667pt;}
.y9_c01094{bottom:857.760000pt;}
.y8_c01094{bottom:888.560000pt;}
.y7_c01094{bottom:917.093333pt;}
.y6_c01094{bottom:946.293333pt;}
.y5_c01094{bottom:975.893333pt;}
.y4_c01094{bottom:1005.626667pt;}
.y3_c01094{bottom:1034.693333pt;}
.y2_c01094{bottom:1064.693333pt;}
.y1_c01094{bottom:1124.160000pt;}
.h7_c01094{height:11.733399pt;}
.h8_c01094{height:38.937500pt;}
.h5_c01094{height:87.390625pt;}
.h4_c01094{height:94.536458pt;}
.h6_c01094{height:106.726562pt;}
.h2_c01094{height:108.041667pt;}
.h3_c01094{height:114.794271pt;}
.h0_c01094{height:1215.866667pt;}
.h1_c01094{height:1216.000000pt;}
.w1_c01094{width:93.222667pt;}
.w0_c01094{width:771.333333pt;}
.x0_c01094{left:0.000000pt;}
.xb_c01094{left:53.066667pt;}
.x6_c01094{left:54.400000pt;}
.x2_c01094{left:55.466667pt;}
.x3_c01094{left:56.400000pt;}
.x4_c01094{left:57.333333pt;}
.xf_c01094{left:58.266667pt;}
.x1_c01094{left:60.266667pt;}
.xe_c01094{left:61.600000pt;}
.x8_c01094{left:63.066667pt;}
.xd_c01094{left:99.600000pt;}
.x11_c01094{left:102.000000pt;}
.x10_c01094{left:103.466667pt;}
.xc_c01094{left:134.666667pt;}
.x5_c01094{left:136.000000pt;}
.x7_c01094{left:169.600000pt;}
.x9_c01094{left:175.866667pt;}
.xa_c01094{left:193.600000pt;}
.x12_c01094{left:342.834880pt;}
}





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

.ir_c01095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_405b83246f9b4aaf6637ac99.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01095;src:url('chunks/assets/font_813607a58d872196f7c212c7.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01095;src:url('chunks/assets/font_abe914244a506501a7264e89.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01095;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01095{vertical-align:0.000000px;}
.ls5_c01095{letter-spacing:0.000000px;}
.ls1_c01095{letter-spacing:0.744000px;}
.ls0_c01095{letter-spacing:6.084000px;}
.ls2_c01095{letter-spacing:6.264000px;}
.ls6_c01095{letter-spacing:15.000000px;}
.ls4_c01095{letter-spacing:25.392000px;}
.ls3_c01095{letter-spacing:28.644000px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01095{word-spacing:-35.244000px;}
.ws2_c01095{word-spacing:-23.136000px;}
.ws0_c01095{word-spacing:-20.244000px;}
.ws4_c01095{word-spacing:0.000000px;}
.ws3_c01095{word-spacing:154.848000px;}
._4e_c01095{margin-left:-32.964000px;}
._36_c01095{margin-left:-27.936000px;}
._40_c01095{margin-left:-23.616000px;}
._4f_c01095{margin-left:-22.332000px;}
._49_c01095{margin-left:-21.228000px;}
._34_c01095{margin-left:-16.224000px;}
._24_c01095{margin-left:-15.216000px;}
._27_c01095{margin-left:-13.668000px;}
._35_c01095{margin-left:-11.820000px;}
._14_c01095{margin-left:-10.716000px;}
._2c_c01095{margin-left:-9.708000px;}
._30_c01095{margin-left:-8.580000px;}
._1d_c01095{margin-left:-6.528000px;}
._21_c01095{margin-left:-5.292000px;}
._2e_c01095{margin-left:-4.128000px;}
._4c_c01095{margin-left:-3.048000px;}
._4_c01095{margin-left:-1.728000px;}
._5_c01095{width:1.440000px;}
._f_c01095{width:2.688000px;}
._2_c01095{width:4.032000px;}
._23_c01095{width:5.040000px;}
._11_c01095{width:6.048000px;}
._1_c01095{width:7.056000px;}
._0_c01095{width:8.484000px;}
._6_c01095{width:9.504000px;}
._18_c01095{width:10.608000px;}
._c_c01095{width:12.600000px;}
._2a_c01095{width:13.740000px;}
._16_c01095{width:15.168000px;}
._a_c01095{width:16.212000px;}
._9_c01095{width:17.304000px;}
._d_c01095{width:18.312000px;}
._22_c01095{width:19.560000px;}
._31_c01095{width:21.768000px;}
._50_c01095{width:23.184000px;}
._b_c01095{width:24.864000px;}
._46_c01095{width:25.872000px;}
._3a_c01095{width:27.624000px;}
._4b_c01095{width:28.752000px;}
._38_c01095{width:30.144000px;}
._7_c01095{width:33.096000px;}
._39_c01095{width:35.160000px;}
._15_c01095{width:36.996000px;}
._20_c01095{width:39.096000px;}
._28_c01095{width:40.692000px;}
._1b_c01095{width:41.820000px;}
._e_c01095{width:43.932000px;}
._3c_c01095{width:45.324000px;}
._42_c01095{width:46.344000px;}
._8_c01095{width:48.456000px;}
._45_c01095{width:49.500000px;}
._29_c01095{width:50.700000px;}
._25_c01095{width:52.152000px;}
._47_c01095{width:53.172000px;}
._2f_c01095{width:54.624000px;}
._2d_c01095{width:55.776000px;}
._19_c01095{width:58.944000px;}
._48_c01095{width:60.984000px;}
._17_c01095{width:62.076000px;}
._3b_c01095{width:64.908000px;}
._1e_c01095{width:66.624000px;}
._12_c01095{width:70.944000px;}
._3_c01095{width:72.504000px;}
._4a_c01095{width:75.516000px;}
._37_c01095{width:77.820000px;}
._1c_c01095{width:81.756000px;}
._26_c01095{width:86.220000px;}
._3e_c01095{width:88.056000px;}
._10_c01095{width:90.300000px;}
._13_c01095{width:92.952000px;}
._41_c01095{width:96.948000px;}
._3d_c01095{width:99.600000px;}
._1f_c01095{width:111.744000px;}
._44_c01095{width:206.916000px;}
._4d_c01095{width:243.864000px;}
._43_c01095{width:266.940000px;}
._33_c01095{width:298.236000px;}
._1a_c01095{width:320.772000px;}
._2b_c01095{width:343.008000px;}
._32_c01095{width:349.668000px;}
._3f_c01095{width:925.188000px;}
.fc2_c01095{color:transparent;}
.fc1_c01095{color:rgb(128,128,128);}
.fc0_c01095{color:rgb(0,0,0);}
.fs3_c01095{font-size:48.000000px;}
.fs2_c01095{font-size:67.200000px;}
.fs0_c01095{font-size:84.000000px;}
.fs1_c01095{font-size:96.000000px;}
.y0_c01095{bottom:0.000000px;}
.y22_c01095{bottom:3.105000px;}
.y21_c01095{bottom:7.228371px;}
.y20_c01095{bottom:208.965000px;}
.y1f_c01095{bottom:244.815000px;}
.y1e_c01095{bottom:278.565000px;}
.y1d_c01095{bottom:312.615000px;}
.y1c_c01095{bottom:345.915000px;}
.y1b_c01095{bottom:380.115000px;}
.y1a_c01095{bottom:414.165000px;}
.y19_c01095{bottom:447.915000px;}
.y18_c01095{bottom:481.365000px;}
.y17_c01095{bottom:515.115000px;}
.y16_c01095{bottom:549.165000px;}
.y15_c01095{bottom:582.915000px;}
.y14_c01095{bottom:615.915000px;}
.y13_c01095{bottom:649.815000px;}
.y12_c01095{bottom:683.565000px;}
.y11_c01095{bottom:717.915000px;}
.y10_c01095{bottom:751.065000px;}
.yf_c01095{bottom:783.765000px;}
.ye_c01095{bottom:817.065000px;}
.yd_c01095{bottom:850.965000px;}
.yc_c01095{bottom:885.015000px;}
.yb_c01095{bottom:917.715000px;}
.ya_c01095{bottom:952.065000px;}
.y9_c01095{bottom:984.615000px;}
.y8_c01095{bottom:1017.915000px;}
.y7_c01095{bottom:1052.715000px;}
.y6_c01095{bottom:1085.865000px;}
.y5_c01095{bottom:1119.465000px;}
.y4_c01095{bottom:1152.015000px;}
.y3_c01095{bottom:1185.315000px;}
.y2_c01095{bottom:1219.815000px;}
.y1_c01095{bottom:1251.165000px;}
.h4_c01095{height:13.200074px;}
.h5_c01095{height:43.804688px;}
.h3_c01095{height:106.353516px;}
.h2_c01095{height:121.546875px;}
.h0_c01095{height:1354.875000px;}
.h1_c01095{height:1355.250000px;}
.w2_c01095{width:104.875500px;}
.w0_c01095{width:845.625000px;}
.w1_c01095{width:846.000000px;}
.x0_c01095{left:0.000000px;}
.xa_c01095{left:140.700000px;}
.x9_c01095{left:142.200000px;}
.x8_c01095{left:143.400000px;}
.x6_c01095{left:144.450000px;}
.x4_c01095{left:145.500000px;}
.x3_c01095{left:147.150000px;}
.x1_c01095{left:148.800000px;}
.xb_c01095{left:192.000000px;}
.x5_c01095{left:194.100000px;}
.x7_c01095{left:196.200000px;}
.x2_c01095{left:197.400000px;}
.xc_c01095{left:374.626740px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls5_c01095{letter-spacing:0.000000pt;}
.ls1_c01095{letter-spacing:0.661333pt;}
.ls0_c01095{letter-spacing:5.408000pt;}
.ls2_c01095{letter-spacing:5.568000pt;}
.ls6_c01095{letter-spacing:13.333333pt;}
.ls4_c01095{letter-spacing:22.570667pt;}
.ls3_c01095{letter-spacing:25.461333pt;}
.ws1_c01095{word-spacing:-31.328000pt;}
.ws2_c01095{word-spacing:-20.565333pt;}
.ws0_c01095{word-spacing:-17.994667pt;}
.ws4_c01095{word-spacing:0.000000pt;}
.ws3_c01095{word-spacing:137.642667pt;}
._4e_c01095{margin-left:-29.301333pt;}
._36_c01095{margin-left:-24.832000pt;}
._40_c01095{margin-left:-20.992000pt;}
._4f_c01095{margin-left:-19.850667pt;}
._49_c01095{margin-left:-18.869333pt;}
._34_c01095{margin-left:-14.421333pt;}
._24_c01095{margin-left:-13.525333pt;}
._27_c01095{margin-left:-12.149333pt;}
._35_c01095{margin-left:-10.506667pt;}
._14_c01095{margin-left:-9.525333pt;}
._2c_c01095{margin-left:-8.629333pt;}
._30_c01095{margin-left:-7.626667pt;}
._1d_c01095{margin-left:-5.802667pt;}
._21_c01095{margin-left:-4.704000pt;}
._2e_c01095{margin-left:-3.669333pt;}
._4c_c01095{margin-left:-2.709333pt;}
._4_c01095{margin-left:-1.536000pt;}
._5_c01095{width:1.280000pt;}
._f_c01095{width:2.389333pt;}
._2_c01095{width:3.584000pt;}
._23_c01095{width:4.480000pt;}
._11_c01095{width:5.376000pt;}
._1_c01095{width:6.272000pt;}
._0_c01095{width:7.541333pt;}
._6_c01095{width:8.448000pt;}
._18_c01095{width:9.429333pt;}
._c_c01095{width:11.200000pt;}
._2a_c01095{width:12.213333pt;}
._16_c01095{width:13.482667pt;}
._a_c01095{width:14.410667pt;}
._9_c01095{width:15.381333pt;}
._d_c01095{width:16.277333pt;}
._22_c01095{width:17.386667pt;}
._31_c01095{width:19.349333pt;}
._50_c01095{width:20.608000pt;}
._b_c01095{width:22.101333pt;}
._46_c01095{width:22.997333pt;}
._3a_c01095{width:24.554667pt;}
._4b_c01095{width:25.557333pt;}
._38_c01095{width:26.794667pt;}
._7_c01095{width:29.418667pt;}
._39_c01095{width:31.253333pt;}
._15_c01095{width:32.885333pt;}
._20_c01095{width:34.752000pt;}
._28_c01095{width:36.170667pt;}
._1b_c01095{width:37.173333pt;}
._e_c01095{width:39.050667pt;}
._3c_c01095{width:40.288000pt;}
._42_c01095{width:41.194667pt;}
._8_c01095{width:43.072000pt;}
._45_c01095{width:44.000000pt;}
._29_c01095{width:45.066667pt;}
._25_c01095{width:46.357333pt;}
._47_c01095{width:47.264000pt;}
._2f_c01095{width:48.554667pt;}
._2d_c01095{width:49.578667pt;}
._19_c01095{width:52.394667pt;}
._48_c01095{width:54.208000pt;}
._17_c01095{width:55.178667pt;}
._3b_c01095{width:57.696000pt;}
._1e_c01095{width:59.221333pt;}
._12_c01095{width:63.061333pt;}
._3_c01095{width:64.448000pt;}
._4a_c01095{width:67.125333pt;}
._37_c01095{width:69.173333pt;}
._1c_c01095{width:72.672000pt;}
._26_c01095{width:76.640000pt;}
._3e_c01095{width:78.272000pt;}
._10_c01095{width:80.266667pt;}
._13_c01095{width:82.624000pt;}
._41_c01095{width:86.176000pt;}
._3d_c01095{width:88.533333pt;}
._1f_c01095{width:99.328000pt;}
._44_c01095{width:183.925333pt;}
._4d_c01095{width:216.768000pt;}
._43_c01095{width:237.280000pt;}
._33_c01095{width:265.098667pt;}
._1a_c01095{width:285.130667pt;}
._2b_c01095{width:304.896000pt;}
._32_c01095{width:310.816000pt;}
._3f_c01095{width:822.389333pt;}
.fs3_c01095{font-size:42.666667pt;}
.fs2_c01095{font-size:59.733333pt;}
.fs0_c01095{font-size:74.666667pt;}
.fs1_c01095{font-size:85.333333pt;}
.y0_c01095{bottom:0.000000pt;}
.y22_c01095{bottom:2.760000pt;}
.y21_c01095{bottom:6.425219pt;}
.y20_c01095{bottom:185.746667pt;}
.y1f_c01095{bottom:217.613333pt;}
.y1e_c01095{bottom:247.613333pt;}
.y1d_c01095{bottom:277.880000pt;}
.y1c_c01095{bottom:307.480000pt;}
.y1b_c01095{bottom:337.880000pt;}
.y1a_c01095{bottom:368.146667pt;}
.y19_c01095{bottom:398.146667pt;}
.y18_c01095{bottom:427.880000pt;}
.y17_c01095{bottom:457.880000pt;}
.y16_c01095{bottom:488.146667pt;}
.y15_c01095{bottom:518.146667pt;}
.y14_c01095{bottom:547.480000pt;}
.y13_c01095{bottom:577.613333pt;}
.y12_c01095{bottom:607.613333pt;}
.y11_c01095{bottom:638.146667pt;}
.y10_c01095{bottom:667.613333pt;}
.yf_c01095{bottom:696.680000pt;}
.ye_c01095{bottom:726.280000pt;}
.yd_c01095{bottom:756.413333pt;}
.yc_c01095{bottom:786.680000pt;}
.yb_c01095{bottom:815.746667pt;}
.ya_c01095{bottom:846.280000pt;}
.y9_c01095{bottom:875.213333pt;}
.y8_c01095{bottom:904.813333pt;}
.y7_c01095{bottom:935.746667pt;}
.y6_c01095{bottom:965.213333pt;}
.y5_c01095{bottom:995.080000pt;}
.y4_c01095{bottom:1024.013333pt;}
.y3_c01095{bottom:1053.613333pt;}
.y2_c01095{bottom:1084.280000pt;}
.y1_c01095{bottom:1112.146667pt;}
.h4_c01095{height:11.733399pt;}
.h5_c01095{height:38.937500pt;}
.h3_c01095{height:94.536458pt;}
.h2_c01095{height:108.041667pt;}
.h0_c01095{height:1204.333333pt;}
.h1_c01095{height:1204.666667pt;}
.w2_c01095{width:93.222667pt;}
.w0_c01095{width:751.666667pt;}
.w1_c01095{width:752.000000pt;}
.x0_c01095{left:0.000000pt;}
.xa_c01095{left:125.066667pt;}
.x9_c01095{left:126.400000pt;}
.x8_c01095{left:127.466667pt;}
.x6_c01095{left:128.400000pt;}
.x4_c01095{left:129.333333pt;}
.x3_c01095{left:130.800000pt;}
.x1_c01095{left:132.266667pt;}
.xb_c01095{left:170.666667pt;}
.x5_c01095{left:172.533333pt;}
.x7_c01095{left:174.400000pt;}
.x2_c01095{left:175.466667pt;}
.xc_c01095{left:333.001546pt;}
}





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

.ir_c01096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_2b8f669fffe0f483c05f7542.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01096;src:url('chunks/assets/font_d0f8d9bafcb50424dc0f294e.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01096;src:url('chunks/assets/font_9513b06328c832f74588d39c.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01096;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01096{font-family:ff4_c01096;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01096{vertical-align:-124.800000px;}
.v0_c01096{vertical-align:0.000000px;}
.v1_c01096{vertical-align:174.000000px;}
.ls4_c01096{letter-spacing:0.000000px;}
.ls2_c01096{letter-spacing:6.300000px;}
.ls1_c01096{letter-spacing:10.920000px;}
.ls3_c01096{letter-spacing:27.000000px;}
.ls0_c01096{letter-spacing:89.520000px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01096{word-spacing:-20.244000px;}
.ws1_c01096{word-spacing:0.000000px;}
._29_c01096{margin-left:-27.648000px;}
._2a_c01096{margin-left:-15.168000px;}
._1f_c01096{margin-left:-11.616000px;}
._30_c01096{margin-left:-8.832000px;}
._2c_c01096{margin-left:-5.952000px;}
._2b_c01096{margin-left:-4.896000px;}
._3_c01096{margin-left:-1.920000px;}
._f_c01096{width:1.152000px;}
._a_c01096{width:2.304000px;}
._7_c01096{width:3.552000px;}
._5_c01096{width:4.704000px;}
._6_c01096{width:5.760000px;}
._b_c01096{width:7.584000px;}
._0_c01096{width:8.736000px;}
._1_c01096{width:10.368000px;}
._e_c01096{width:11.616000px;}
._17_c01096{width:13.536000px;}
._2d_c01096{width:14.592000px;}
._8_c01096{width:15.840000px;}
._20_c01096{width:17.664000px;}
._33_c01096{width:18.696000px;}
._13_c01096{width:20.544000px;}
._26_c01096{width:21.696000px;}
._1a_c01096{width:24.288000px;}
._22_c01096{width:26.304000px;}
._14_c01096{width:27.552000px;}
._18_c01096{width:28.704000px;}
._19_c01096{width:29.952000px;}
._2_c01096{width:31.296000px;}
._c_c01096{width:32.448000px;}
._21_c01096{width:34.272000px;}
._1d_c01096{width:36.384000px;}
._34_c01096{width:38.304000px;}
._25_c01096{width:39.360000px;}
._1e_c01096{width:40.992000px;}
._12_c01096{width:42.816000px;}
._15_c01096{width:44.832000px;}
._2e_c01096{width:46.560000px;}
._10_c01096{width:47.712000px;}
._32_c01096{width:48.768000px;}
._28_c01096{width:50.016000px;}
._23_c01096{width:51.648000px;}
._d_c01096{width:55.104000px;}
._31_c01096{width:56.352000px;}
._1b_c01096{width:57.888000px;}
._24_c01096{width:59.040000px;}
._1c_c01096{width:60.288000px;}
._16_c01096{width:62.592000px;}
._11_c01096{width:65.184000px;}
._27_c01096{width:69.024000px;}
._4_c01096{width:74.400000px;}
._2f_c01096{width:338.688000px;}
._9_c01096{width:537.600000px;}
.fc2_c01096{color:transparent;}
.fc1_c01096{color:rgb(128,128,128);}
.fc0_c01096{color:rgb(0,0,0);}
.fs4_c01096{font-size:48.000000px;}
.fs2_c01096{font-size:84.000000px;}
.fs3_c01096{font-size:87.000000px;}
.fs0_c01096{font-size:96.000000px;}
.fs1_c01096{font-size:240.000000px;}
.y0_c01096{bottom:0.000000px;}
.y20_c01096{bottom:3.105000px;}
.y1f_c01096{bottom:7.228369px;}
.y1e_c01096{bottom:148.170000px;}
.y1d_c01096{bottom:181.920000px;}
.y1c_c01096{bottom:216.270000px;}
.y1b_c01096{bottom:353.970000px;}
.y1a_c01096{bottom:420.570000px;}
.y19_c01096{bottom:454.320000px;}
.y18_c01096{bottom:487.620000px;}
.y17_c01096{bottom:521.070000px;}
.y16_c01096{bottom:554.820000px;}
.y15_c01096{bottom:587.970000px;}
.y14_c01096{bottom:621.720000px;}
.y13_c01096{bottom:655.320000px;}
.y12_c01096{bottom:689.220000px;}
.y11_c01096{bottom:721.920000px;}
.y10_c01096{bottom:755.970000px;}
.yf_c01096{bottom:789.420000px;}
.ye_c01096{bottom:821.820000px;}
.yd_c01096{bottom:854.820000px;}
.yc_c01096{bottom:888.270000px;}
.yb_c01096{bottom:921.420000px;}
.ya_c01096{bottom:954.420000px;}
.y9_c01096{bottom:988.170000px;}
.y8_c01096{bottom:1021.320000px;}
.y7_c01096{bottom:1054.320000px;}
.y6_c01096{bottom:1087.470000px;}
.y5_c01096{bottom:1120.470000px;}
.y4_c01096{bottom:1154.220000px;}
.y2_c01096{bottom:1177.170000px;}
.y3_c01096{bottom:1187.670000px;}
.y1_c01096{bottom:1288.170000px;}
.h5_c01096{height:13.200073px;}
.h6_c01096{height:43.804688px;}
.h4_c01096{height:98.314453px;}
.h2_c01096{height:121.546875px;}
.h3_c01096{height:295.546875px;}
.h0_c01096{height:1356.450000px;}
.h1_c01096{height:1356.750000px;}
.w2_c01096{width:104.875500px;}
.w0_c01096{width:860.775000px;}
.w1_c01096{width:861.000000px;}
.x0_c01096{left:0.000000px;}
.x8_c01096{left:59.100000px;}
.x6_c01096{left:60.150000px;}
.x5_c01096{left:61.200000px;}
.x4_c01096{left:62.400000px;}
.xb_c01096{left:80.100000px;}
.xc_c01096{left:114.150000px;}
.x2_c01096{left:124.200000px;}
.x9_c01096{left:125.550000px;}
.x7_c01096{left:126.600000px;}
.x1_c01096{left:127.800000px;}
.x3_c01096{left:217.950000px;}
.xa_c01096{left:298.800000px;}
.xd_c01096{left:310.800000px;}
.xe_c01096{left:382.201721px;}
@media print{
.v2_c01096{vertical-align:-110.933333pt;}
.v0_c01096{vertical-align:0.000000pt;}
.v1_c01096{vertical-align:154.666667pt;}
.ls4_c01096{letter-spacing:0.000000pt;}
.ls2_c01096{letter-spacing:5.600000pt;}
.ls1_c01096{letter-spacing:9.706667pt;}
.ls3_c01096{letter-spacing:24.000000pt;}
.ls0_c01096{letter-spacing:79.573333pt;}
.ws0_c01096{word-spacing:-17.994667pt;}
.ws1_c01096{word-spacing:0.000000pt;}
._29_c01096{margin-left:-24.576000pt;}
._2a_c01096{margin-left:-13.482667pt;}
._1f_c01096{margin-left:-10.325333pt;}
._30_c01096{margin-left:-7.850667pt;}
._2c_c01096{margin-left:-5.290667pt;}
._2b_c01096{margin-left:-4.352000pt;}
._3_c01096{margin-left:-1.706667pt;}
._f_c01096{width:1.024000pt;}
._a_c01096{width:2.048000pt;}
._7_c01096{width:3.157333pt;}
._5_c01096{width:4.181333pt;}
._6_c01096{width:5.120000pt;}
._b_c01096{width:6.741333pt;}
._0_c01096{width:7.765333pt;}
._1_c01096{width:9.216000pt;}
._e_c01096{width:10.325333pt;}
._17_c01096{width:12.032000pt;}
._2d_c01096{width:12.970667pt;}
._8_c01096{width:14.080000pt;}
._20_c01096{width:15.701333pt;}
._33_c01096{width:16.618667pt;}
._13_c01096{width:18.261333pt;}
._26_c01096{width:19.285333pt;}
._1a_c01096{width:21.589333pt;}
._22_c01096{width:23.381333pt;}
._14_c01096{width:24.490667pt;}
._18_c01096{width:25.514667pt;}
._19_c01096{width:26.624000pt;}
._2_c01096{width:27.818667pt;}
._c_c01096{width:28.842667pt;}
._21_c01096{width:30.464000pt;}
._1d_c01096{width:32.341333pt;}
._34_c01096{width:34.048000pt;}
._25_c01096{width:34.986667pt;}
._1e_c01096{width:36.437333pt;}
._12_c01096{width:38.058667pt;}
._15_c01096{width:39.850667pt;}
._2e_c01096{width:41.386667pt;}
._10_c01096{width:42.410667pt;}
._32_c01096{width:43.349333pt;}
._28_c01096{width:44.458667pt;}
._23_c01096{width:45.909333pt;}
._d_c01096{width:48.981333pt;}
._31_c01096{width:50.090667pt;}
._1b_c01096{width:51.456000pt;}
._24_c01096{width:52.480000pt;}
._1c_c01096{width:53.589333pt;}
._16_c01096{width:55.637333pt;}
._11_c01096{width:57.941333pt;}
._27_c01096{width:61.354667pt;}
._4_c01096{width:66.133333pt;}
._2f_c01096{width:301.056000pt;}
._9_c01096{width:477.866667pt;}
.fs4_c01096{font-size:42.666667pt;}
.fs2_c01096{font-size:74.666667pt;}
.fs3_c01096{font-size:77.333333pt;}
.fs0_c01096{font-size:85.333333pt;}
.fs1_c01096{font-size:213.333333pt;}
.y0_c01096{bottom:0.000000pt;}
.y20_c01096{bottom:2.760000pt;}
.y1f_c01096{bottom:6.425217pt;}
.y1e_c01096{bottom:131.706667pt;}
.y1d_c01096{bottom:161.706667pt;}
.y1c_c01096{bottom:192.240000pt;}
.y1b_c01096{bottom:314.640000pt;}
.y1a_c01096{bottom:373.840000pt;}
.y19_c01096{bottom:403.840000pt;}
.y18_c01096{bottom:433.440000pt;}
.y17_c01096{bottom:463.173333pt;}
.y16_c01096{bottom:493.173333pt;}
.y15_c01096{bottom:522.640000pt;}
.y14_c01096{bottom:552.640000pt;}
.y13_c01096{bottom:582.506667pt;}
.y12_c01096{bottom:612.640000pt;}
.y11_c01096{bottom:641.706667pt;}
.y10_c01096{bottom:671.973333pt;}
.yf_c01096{bottom:701.706667pt;}
.ye_c01096{bottom:730.506667pt;}
.yd_c01096{bottom:759.840000pt;}
.yc_c01096{bottom:789.573333pt;}
.yb_c01096{bottom:819.040000pt;}
.ya_c01096{bottom:848.373333pt;}
.y9_c01096{bottom:878.373333pt;}
.y8_c01096{bottom:907.840000pt;}
.y7_c01096{bottom:937.173333pt;}
.y6_c01096{bottom:966.640000pt;}
.y5_c01096{bottom:995.973333pt;}
.y4_c01096{bottom:1025.973333pt;}
.y2_c01096{bottom:1046.373333pt;}
.y3_c01096{bottom:1055.706667pt;}
.y1_c01096{bottom:1145.040000pt;}
.h5_c01096{height:11.733399pt;}
.h6_c01096{height:38.937500pt;}
.h4_c01096{height:87.390625pt;}
.h2_c01096{height:108.041667pt;}
.h3_c01096{height:262.708333pt;}
.h0_c01096{height:1205.733333pt;}
.h1_c01096{height:1206.000000pt;}
.w2_c01096{width:93.222667pt;}
.w0_c01096{width:765.133333pt;}
.w1_c01096{width:765.333333pt;}
.x0_c01096{left:0.000000pt;}
.x8_c01096{left:52.533333pt;}
.x6_c01096{left:53.466667pt;}
.x5_c01096{left:54.400000pt;}
.x4_c01096{left:55.466667pt;}
.xb_c01096{left:71.200000pt;}
.xc_c01096{left:101.466667pt;}
.x2_c01096{left:110.400000pt;}
.x9_c01096{left:111.600000pt;}
.x7_c01096{left:112.533333pt;}
.x1_c01096{left:113.600000pt;}
.x3_c01096{left:193.733333pt;}
.xa_c01096{left:265.600000pt;}
.xd_c01096{left:276.266667pt;}
.xe_c01096{left:339.734863pt;}
}





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

.ir_c01097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_b8f5da49f38039ccaf89e9a6.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01097;src:url('chunks/assets/font_38b0b8c24dea3b58daecbe35.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01097;src:url('chunks/assets/font_8d58549b3678e0ceff6099e3.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01097;src:url('chunks/assets/font_6365a678ee5d53f216540cbf.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01097;src:url('chunks/assets/font_dfa6889a2546f00b4b857a25.woff2')format("woff");}.ff5_c01097{font-family:ff5_c01097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01097;src:url('chunks/assets/font_6074a849c1b014a886d21fa7.woff2')format("woff");}.ff6_c01097{font-family:ff6_c01097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01097;src:url('chunks/assets/font_d5d18d9c3ee8ccd4979c8e01.woff2')format("woff");}.ff7_c01097{font-family:ff7_c01097;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01097;src:url('chunks/assets/font_d09d603b8bf70ce13463e5cf.woff2')format("woff");}.ff8_c01097{font-family:ff8_c01097;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:ff9_c01097;src:url('chunks/assets/font_0ed5dd2b239982a7672b8aba.woff2')format("woff");}.ff9_c01097{font-family:ff9_c01097;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01097;src:url('chunks/assets/font_5647ed0f02f1f785268c54f3.woff2')format("woff");}.ffa_c01097{font-family:ffa_c01097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01097;src:url('chunks/assets/font_9ca2b660475a3b39b9bcd0dd.woff2')format("woff");}.ffb_c01097{font-family:ffb_c01097;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01097;src:url('chunks/assets/font_285eec8d0760b65535076a45.woff2')format("woff");}.ffc_c01097{font-family:ffc_c01097;line-height:1.314453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01097;src:url('chunks/assets/font_0a548b7901bfe7f1d83a5165.woff2')format("woff");}.ffd_c01097{font-family:ffd_c01097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c01097;src:url('chunks/assets/font_d5d9cfa35cfa22bcd1a416b2.woff2')format("woff");}.ffe_c01097{font-family:ffe_c01097;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c01097;src:url('chunks/assets/font_6c3d89f55514a08810c3bf21.woff2')format("woff");}.fff_c01097{font-family:fff_c01097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c01097;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff10_c01097{font-family:ff10_c01097;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01097{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_c01097{vertical-align:0.000000px;}
.lsd_c01097{letter-spacing:-21.000000px;}
.lsf_c01097{letter-spacing:-6.000000px;}
.ls10_c01097{letter-spacing:-3.000000px;}
.lsa_c01097{letter-spacing:0.000000px;}
.ls5_c01097{letter-spacing:2.289600px;}
.ls1_c01097{letter-spacing:3.000000px;}
.ls2_c01097{letter-spacing:4.800000px;}
.lsc_c01097{letter-spacing:6.000000px;}
.ls3_c01097{letter-spacing:6.648000px;}
.lse_c01097{letter-spacing:9.000000px;}
.ls7_c01097{letter-spacing:11.400000px;}
.ls8_c01097{letter-spacing:18.600000px;}
.ls9_c01097{letter-spacing:21.000000px;}
.ls6_c01097{letter-spacing:21.600000px;}
.ls4_c01097{letter-spacing:24.000000px;}
.ls0_c01097{letter-spacing:33.300000px;}
.lsb_c01097{letter-spacing:147.000000px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01097{word-spacing:-147.057000px;}
.ws9_c01097{word-spacing:-61.044000px;}
.wsa_c01097{word-spacing:-57.222000px;}
.ws8_c01097{word-spacing:-53.856000px;}
.ws2_c01097{word-spacing:-51.000000px;}
.wsb_c01097{word-spacing:-45.777600px;}
.ws7_c01097{word-spacing:-43.084800px;}
.ws3_c01097{word-spacing:-31.305000px;}
.ws0_c01097{word-spacing:-24.750000px;}
.wsf_c01097{word-spacing:-24.000000px;}
.wsd_c01097{word-spacing:-23.460000px;}
.wsc_c01097{word-spacing:-23.136000px;}
.ws6_c01097{word-spacing:-15.750000px;}
.ws4_c01097{word-spacing:-9.300000px;}
.wse_c01097{word-spacing:-8.700000px;}
.ws5_c01097{word-spacing:-0.138000px;}
.ws10_c01097{word-spacing:0.000000px;}
._7e_c01097{margin-left:-239.820000px;}
._52_c01097{margin-left:-218.400000px;}
._5f_c01097{margin-left:-217.140000px;}
._4d_c01097{margin-left:-197.400000px;}
._56_c01097{margin-left:-196.140000px;}
._88_c01097{margin-left:-191.097000px;}
._44_c01097{margin-left:-183.321000px;}
._60_c01097{margin-left:-181.860000px;}
._4a_c01097{margin-left:-161.700000px;}
._51_c01097{margin-left:-145.236000px;}
._48_c01097{margin-left:-144.060000px;}
._63_c01097{margin-left:-126.843000px;}
._50_c01097{margin-left:-125.580000px;}
._85_c01097{margin-left:-117.294000px;}
._87_c01097{margin-left:-111.531000px;}
._86_c01097{margin-left:-110.460000px;}
._62_c01097{margin-left:-106.167000px;}
._55_c01097{margin-left:-99.540000px;}
._45_c01097{margin-left:-97.335000px;}
._4e_c01097{margin-left:-90.720000px;}
._2d_c01097{margin-left:-87.609000px;}
._8e_c01097{margin-left:-83.827800px;}
._72_c01097{margin-left:-81.084000px;}
._47_c01097{margin-left:-78.540000px;}
._4b_c01097{margin-left:-73.500000px;}
._4f_c01097{margin-left:-72.018000px;}
._5c_c01097{margin-left:-70.980000px;}
._46_c01097{margin-left:-68.880000px;}
._54_c01097{margin-left:-67.200000px;}
._59_c01097{margin-left:-64.260000px;}
._5d_c01097{margin-left:-62.580000px;}
._40_c01097{margin-left:-57.225000px;}
._61_c01097{margin-left:-55.674000px;}
._5e_c01097{margin-left:-54.600000px;}
._5b_c01097{margin-left:-51.021000px;}
._49_c01097{margin-left:-48.720000px;}
._57_c01097{margin-left:-45.360000px;}
._2f_c01097{margin-left:-43.479000px;}
._4c_c01097{margin-left:-41.580000px;}
._64_c01097{margin-left:-39.555000px;}
._68_c01097{margin-left:-38.001000px;}
._71_c01097{margin-left:-36.801000px;}
._5a_c01097{margin-left:-35.280000px;}
._53_c01097{margin-left:-34.020000px;}
._1f_c01097{margin-left:-32.406000px;}
._39_c01097{margin-left:-31.200000px;}
._7f_c01097{margin-left:-30.015000px;}
._37_c01097{margin-left:-27.717000px;}
._25_c01097{margin-left:-25.599000px;}
._7_c01097{margin-left:-24.360000px;}
._10_c01097{margin-left:-22.812000px;}
._e_c01097{margin-left:-20.832000px;}
._30_c01097{margin-left:-19.224000px;}
._3f_c01097{margin-left:-17.190000px;}
._3b_c01097{margin-left:-16.128000px;}
._1e_c01097{margin-left:-14.250000px;}
._24_c01097{margin-left:-12.645000px;}
._21_c01097{margin-left:-11.502000px;}
._12_c01097{margin-left:-9.372000px;}
._32_c01097{margin-left:-8.265000px;}
._f_c01097{margin-left:-7.224000px;}
._11_c01097{margin-left:-5.307000px;}
._20_c01097{margin-left:-4.221000px;}
._a_c01097{margin-left:-2.976000px;}
._15_c01097{margin-left:-1.653000px;}
._d_c01097{width:1.716000px;}
._3e_c01097{width:2.733000px;}
._b_c01097{width:3.744000px;}
._8_c01097{width:5.592000px;}
._1c_c01097{width:7.569000px;}
._1a_c01097{width:8.820000px;}
._6_c01097{width:9.912000px;}
._26_c01097{width:11.040000px;}
._2_c01097{width:12.432000px;}
._4_c01097{width:13.776000px;}
._0_c01097{width:15.876000px;}
._c_c01097{width:16.944000px;}
._5_c01097{width:18.816000px;}
._1_c01097{width:20.160000px;}
._3_c01097{width:21.672000px;}
._67_c01097{width:23.460000px;}
._43_c01097{width:24.696000px;}
._7c_c01097{width:26.319000px;}
._38_c01097{width:27.552000px;}
._18_c01097{width:29.052000px;}
._16_c01097{width:30.450000px;}
._35_c01097{width:31.668000px;}
._36_c01097{width:32.715000px;}
._19_c01097{width:34.362000px;}
._8a_c01097{width:35.524800px;}
._17_c01097{width:36.951000px;}
._6f_c01097{width:38.226000px;}
._2e_c01097{width:39.243000px;}
._66_c01097{width:40.260000px;}
._78_c01097{width:41.703000px;}
._33_c01097{width:42.867000px;}
._1b_c01097{width:43.962000px;}
._27_c01097{width:45.414000px;}
._65_c01097{width:46.704000px;}
._23_c01097{width:47.787000px;}
._14_c01097{width:50.349000px;}
._3c_c01097{width:52.233000px;}
._90_c01097{width:54.327000px;}
._92_c01097{width:55.674000px;}
._22_c01097{width:60.465000px;}
._13_c01097{width:62.814000px;}
._31_c01097{width:64.938000px;}
._34_c01097{width:69.429000px;}
._3a_c01097{width:70.752000px;}
._7a_c01097{width:75.252000px;}
._81_c01097{width:76.920000px;}
._69_c01097{width:83.460000px;}
._29_c01097{width:93.153000px;}
._42_c01097{width:96.093000px;}
._1d_c01097{width:101.877000px;}
._28_c01097{width:112.035000px;}
._93_c01097{width:131.802000px;}
._6c_c01097{width:134.322000px;}
._6a_c01097{width:161.739000px;}
._9_c01097{width:172.512000px;}
._6b_c01097{width:180.120000px;}
._58_c01097{width:183.960000px;}
._80_c01097{width:190.986000px;}
._2a_c01097{width:205.128000px;}
._73_c01097{width:211.236000px;}
._2b_c01097{width:235.278000px;}
._70_c01097{width:306.747000px;}
._83_c01097{width:308.442000px;}
._89_c01097{width:326.520000px;}
._77_c01097{width:329.772000px;}
._8f_c01097{width:351.591000px;}
._79_c01097{width:356.241000px;}
._6d_c01097{width:412.866000px;}
._7d_c01097{width:429.384000px;}
._75_c01097{width:439.839000px;}
._3d_c01097{width:488.844000px;}
._8c_c01097{width:498.480000px;}
._82_c01097{width:504.513000px;}
._41_c01097{width:508.212000px;}
._2c_c01097{width:527.046000px;}
._76_c01097{width:536.460000px;}
._8d_c01097{width:587.820000px;}
._8b_c01097{width:611.250000px;}
._74_c01097{width:631.740000px;}
._84_c01097{width:642.765000px;}
._91_c01097{width:644.058000px;}
._7b_c01097{width:872.808000px;}
._6e_c01097{width:1098.969000px;}
.fc2_c01097{color:transparent;}
.fc1_c01097{color:rgb(128,128,128);}
.fc0_c01097{color:rgb(0,0,0);}
.fs10_c01097{font-size:30.000000px;}
.fs4_c01097{font-size:42.000000px;}
.fs11_c01097{font-size:48.000000px;}
.fs5_c01097{font-size:57.000000px;}
.fsa_c01097{font-size:60.000000px;}
.fsc_c01097{font-size:69.600000px;}
.fsd_c01097{font-size:76.800000px;}
.fsf_c01097{font-size:81.600000px;}
.fs0_c01097{font-size:84.000000px;}
.fs3_c01097{font-size:87.000000px;}
.fse_c01097{font-size:93.000000px;}
.fs2_c01097{font-size:96.000000px;}
.fs1_c01097{font-size:99.000000px;}
.fs6_c01097{font-size:102.000000px;}
.fs8_c01097{font-size:105.000000px;}
.fs7_c01097{font-size:114.000000px;}
.fsb_c01097{font-size:138.000000px;}
.fs9_c01097{font-size:420.000000px;}
.y0_c01097{bottom:0.000000px;}
.y25_c01097{bottom:3.105000px;}
.y24_c01097{bottom:7.228357px;}
.y23_c01097{bottom:139.080000px;}
.y22_c01097{bottom:174.180000px;}
.y21_c01097{bottom:209.280000px;}
.y20_c01097{bottom:347.580000px;}
.y1f_c01097{bottom:415.530000px;}
.y1e_c01097{bottom:450.180000px;}
.y1d_c01097{bottom:484.080000px;}
.y1c_c01097{bottom:519.030000px;}
.y1b_c01097{bottom:552.480000px;}
.y1a_c01097{bottom:579.930000px;}
.y19_c01097{bottom:586.530000px;}
.y18_c01097{bottom:619.980000px;}
.y17_c01097{bottom:653.730000px;}
.y16_c01097{bottom:689.130000px;}
.y15_c01097{bottom:715.230000px;}
.y14_c01097{bottom:723.030000px;}
.y12_c01097{bottom:756.780000px;}
.y11_c01097{bottom:791.430000px;}
.y10_c01097{bottom:824.580000px;}
.yf_c01097{bottom:858.030000px;}
.ye_c01097{bottom:892.680000px;}
.yd_c01097{bottom:918.030000px;}
.yc_c01097{bottom:925.380000px;}
.y13_c01097{bottom:959.880000px;}
.yb_c01097{bottom:960.480000px;}
.ya_c01097{bottom:992.580000px;}
.y9_c01097{bottom:1028.130000px;}
.y8_c01097{bottom:1060.530000px;}
.y7_c01097{bottom:1094.880000px;}
.y6_c01097{bottom:1127.580000px;}
.y5_c01097{bottom:1162.080000px;}
.y4_c01097{bottom:1174.830000px;}
.y3_c01097{bottom:1194.780000px;}
.y2_c01097{bottom:1228.530000px;}
.y1_c01097{bottom:1296.030000px;}
.hc_c01097{height:13.200074px;}
.ha_c01097{height:37.983398px;}
.hd_c01097{height:43.804688px;}
.h4_c01097{height:56.860840px;}
.h3_c01097{height:91.176000px;}
.h8_c01097{height:110.151855px;}
.h2_c01097{height:121.546875px;}
.h5_c01097{height:122.893066px;}
.h9_c01097{height:129.143555px;}
.hb_c01097{height:132.941895px;}
.h7_c01097{height:139.078125px;}
.h6_c01097{height:412.207031px;}
.h0_c01097{height:1382.700000px;}
.h1_c01097{height:1383.000000px;}
.w2_c01097{width:104.875500px;}
.w0_c01097{width:863.175000px;}
.w1_c01097{width:863.250000px;}
.x0_c01097{left:0.000000px;}
.xd_c01097{left:125.550000px;}
.xc_c01097{left:127.200000px;}
.xb_c01097{left:129.300000px;}
.x5_c01097{left:131.400000px;}
.x6_c01097{left:133.050000px;}
.x3_c01097{left:134.100000px;}
.x2_c01097{left:135.300000px;}
.x10_c01097{left:136.950000px;}
.x9_c01097{left:138.000000px;}
.x7_c01097{left:161.250000px;}
.x11_c01097{left:170.400000px;}
.x13_c01097{left:172.050000px;}
.x8_c01097{left:193.500000px;}
.x1_c01097{left:202.200000px;}
.x12_c01097{left:220.050000px;}
.x4_c01097{left:320.850000px;}
.x14_c01097{left:325.950000px;}
.xf_c01097{left:343.800000px;}
.x15_c01097{left:383.401749px;}
.xe_c01097{left:410.400000px;}
.xa_c01097{left:487.350000px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.lsd_c01097{letter-spacing:-18.666667pt;}
.lsf_c01097{letter-spacing:-5.333333pt;}
.ls10_c01097{letter-spacing:-2.666667pt;}
.lsa_c01097{letter-spacing:0.000000pt;}
.ls5_c01097{letter-spacing:2.035200pt;}
.ls1_c01097{letter-spacing:2.666667pt;}
.ls2_c01097{letter-spacing:4.266667pt;}
.lsc_c01097{letter-spacing:5.333333pt;}
.ls3_c01097{letter-spacing:5.909333pt;}
.lse_c01097{letter-spacing:8.000000pt;}
.ls7_c01097{letter-spacing:10.133333pt;}
.ls8_c01097{letter-spacing:16.533333pt;}
.ls9_c01097{letter-spacing:18.666667pt;}
.ls6_c01097{letter-spacing:19.200000pt;}
.ls4_c01097{letter-spacing:21.333333pt;}
.ls0_c01097{letter-spacing:29.600000pt;}
.lsb_c01097{letter-spacing:130.666667pt;}
.ws1_c01097{word-spacing:-130.717333pt;}
.ws9_c01097{word-spacing:-54.261333pt;}
.wsa_c01097{word-spacing:-50.864000pt;}
.ws8_c01097{word-spacing:-47.872000pt;}
.ws2_c01097{word-spacing:-45.333333pt;}
.wsb_c01097{word-spacing:-40.691200pt;}
.ws7_c01097{word-spacing:-38.297600pt;}
.ws3_c01097{word-spacing:-27.826667pt;}
.ws0_c01097{word-spacing:-22.000000pt;}
.wsf_c01097{word-spacing:-21.333333pt;}
.wsd_c01097{word-spacing:-20.853333pt;}
.wsc_c01097{word-spacing:-20.565333pt;}
.ws6_c01097{word-spacing:-14.000000pt;}
.ws4_c01097{word-spacing:-8.266667pt;}
.wse_c01097{word-spacing:-7.733333pt;}
.ws5_c01097{word-spacing:-0.122667pt;}
.ws10_c01097{word-spacing:0.000000pt;}
._7e_c01097{margin-left:-213.173333pt;}
._52_c01097{margin-left:-194.133333pt;}
._5f_c01097{margin-left:-193.013333pt;}
._4d_c01097{margin-left:-175.466667pt;}
._56_c01097{margin-left:-174.346667pt;}
._88_c01097{margin-left:-169.864000pt;}
._44_c01097{margin-left:-162.952000pt;}
._60_c01097{margin-left:-161.653333pt;}
._4a_c01097{margin-left:-143.733333pt;}
._51_c01097{margin-left:-129.098667pt;}
._48_c01097{margin-left:-128.053333pt;}
._63_c01097{margin-left:-112.749333pt;}
._50_c01097{margin-left:-111.626667pt;}
._85_c01097{margin-left:-104.261333pt;}
._87_c01097{margin-left:-99.138667pt;}
._86_c01097{margin-left:-98.186667pt;}
._62_c01097{margin-left:-94.370667pt;}
._55_c01097{margin-left:-88.480000pt;}
._45_c01097{margin-left:-86.520000pt;}
._4e_c01097{margin-left:-80.640000pt;}
._2d_c01097{margin-left:-77.874667pt;}
._8e_c01097{margin-left:-74.513600pt;}
._72_c01097{margin-left:-72.074667pt;}
._47_c01097{margin-left:-69.813333pt;}
._4b_c01097{margin-left:-65.333333pt;}
._4f_c01097{margin-left:-64.016000pt;}
._5c_c01097{margin-left:-63.093333pt;}
._46_c01097{margin-left:-61.226667pt;}
._54_c01097{margin-left:-59.733333pt;}
._59_c01097{margin-left:-57.120000pt;}
._5d_c01097{margin-left:-55.626667pt;}
._40_c01097{margin-left:-50.866667pt;}
._61_c01097{margin-left:-49.488000pt;}
._5e_c01097{margin-left:-48.533333pt;}
._5b_c01097{margin-left:-45.352000pt;}
._49_c01097{margin-left:-43.306667pt;}
._57_c01097{margin-left:-40.320000pt;}
._2f_c01097{margin-left:-38.648000pt;}
._4c_c01097{margin-left:-36.960000pt;}
._64_c01097{margin-left:-35.160000pt;}
._68_c01097{margin-left:-33.778667pt;}
._71_c01097{margin-left:-32.712000pt;}
._5a_c01097{margin-left:-31.360000pt;}
._53_c01097{margin-left:-30.240000pt;}
._1f_c01097{margin-left:-28.805333pt;}
._39_c01097{margin-left:-27.733333pt;}
._7f_c01097{margin-left:-26.680000pt;}
._37_c01097{margin-left:-24.637333pt;}
._25_c01097{margin-left:-22.754667pt;}
._7_c01097{margin-left:-21.653333pt;}
._10_c01097{margin-left:-20.277333pt;}
._e_c01097{margin-left:-18.517333pt;}
._30_c01097{margin-left:-17.088000pt;}
._3f_c01097{margin-left:-15.280000pt;}
._3b_c01097{margin-left:-14.336000pt;}
._1e_c01097{margin-left:-12.666667pt;}
._24_c01097{margin-left:-11.240000pt;}
._21_c01097{margin-left:-10.224000pt;}
._12_c01097{margin-left:-8.330667pt;}
._32_c01097{margin-left:-7.346667pt;}
._f_c01097{margin-left:-6.421333pt;}
._11_c01097{margin-left:-4.717333pt;}
._20_c01097{margin-left:-3.752000pt;}
._a_c01097{margin-left:-2.645333pt;}
._15_c01097{margin-left:-1.469333pt;}
._d_c01097{width:1.525333pt;}
._3e_c01097{width:2.429333pt;}
._b_c01097{width:3.328000pt;}
._8_c01097{width:4.970667pt;}
._1c_c01097{width:6.728000pt;}
._1a_c01097{width:7.840000pt;}
._6_c01097{width:8.810667pt;}
._26_c01097{width:9.813333pt;}
._2_c01097{width:11.050667pt;}
._4_c01097{width:12.245333pt;}
._0_c01097{width:14.112000pt;}
._c_c01097{width:15.061333pt;}
._5_c01097{width:16.725333pt;}
._1_c01097{width:17.920000pt;}
._3_c01097{width:19.264000pt;}
._67_c01097{width:20.853333pt;}
._43_c01097{width:21.952000pt;}
._7c_c01097{width:23.394667pt;}
._38_c01097{width:24.490667pt;}
._18_c01097{width:25.824000pt;}
._16_c01097{width:27.066667pt;}
._35_c01097{width:28.149333pt;}
._36_c01097{width:29.080000pt;}
._19_c01097{width:30.544000pt;}
._8a_c01097{width:31.577600pt;}
._17_c01097{width:32.845333pt;}
._6f_c01097{width:33.978667pt;}
._2e_c01097{width:34.882667pt;}
._66_c01097{width:35.786667pt;}
._78_c01097{width:37.069333pt;}
._33_c01097{width:38.104000pt;}
._1b_c01097{width:39.077333pt;}
._27_c01097{width:40.368000pt;}
._65_c01097{width:41.514667pt;}
._23_c01097{width:42.477333pt;}
._14_c01097{width:44.754667pt;}
._3c_c01097{width:46.429333pt;}
._90_c01097{width:48.290667pt;}
._92_c01097{width:49.488000pt;}
._22_c01097{width:53.746667pt;}
._13_c01097{width:55.834667pt;}
._31_c01097{width:57.722667pt;}
._34_c01097{width:61.714667pt;}
._3a_c01097{width:62.890667pt;}
._7a_c01097{width:66.890667pt;}
._81_c01097{width:68.373333pt;}
._69_c01097{width:74.186667pt;}
._29_c01097{width:82.802667pt;}
._42_c01097{width:85.416000pt;}
._1d_c01097{width:90.557333pt;}
._28_c01097{width:99.586667pt;}
._93_c01097{width:117.157333pt;}
._6c_c01097{width:119.397333pt;}
._6a_c01097{width:143.768000pt;}
._9_c01097{width:153.344000pt;}
._6b_c01097{width:160.106667pt;}
._58_c01097{width:163.520000pt;}
._80_c01097{width:169.765333pt;}
._2a_c01097{width:182.336000pt;}
._73_c01097{width:187.765333pt;}
._2b_c01097{width:209.136000pt;}
._70_c01097{width:272.664000pt;}
._83_c01097{width:274.170667pt;}
._89_c01097{width:290.240000pt;}
._77_c01097{width:293.130667pt;}
._8f_c01097{width:312.525333pt;}
._79_c01097{width:316.658667pt;}
._6d_c01097{width:366.992000pt;}
._7d_c01097{width:381.674667pt;}
._75_c01097{width:390.968000pt;}
._3d_c01097{width:434.528000pt;}
._8c_c01097{width:443.093333pt;}
._82_c01097{width:448.456000pt;}
._41_c01097{width:451.744000pt;}
._2c_c01097{width:468.485333pt;}
._76_c01097{width:476.853333pt;}
._8d_c01097{width:522.506667pt;}
._8b_c01097{width:543.333333pt;}
._74_c01097{width:561.546667pt;}
._84_c01097{width:571.346667pt;}
._91_c01097{width:572.496000pt;}
._7b_c01097{width:775.829333pt;}
._6e_c01097{width:976.861333pt;}
.fs10_c01097{font-size:26.666667pt;}
.fs4_c01097{font-size:37.333333pt;}
.fs11_c01097{font-size:42.666667pt;}
.fs5_c01097{font-size:50.666667pt;}
.fsa_c01097{font-size:53.333333pt;}
.fsc_c01097{font-size:61.866667pt;}
.fsd_c01097{font-size:68.266667pt;}
.fsf_c01097{font-size:72.533333pt;}
.fs0_c01097{font-size:74.666667pt;}
.fs3_c01097{font-size:77.333333pt;}
.fse_c01097{font-size:82.666667pt;}
.fs2_c01097{font-size:85.333333pt;}
.fs1_c01097{font-size:88.000000pt;}
.fs6_c01097{font-size:90.666667pt;}
.fs8_c01097{font-size:93.333333pt;}
.fs7_c01097{font-size:101.333333pt;}
.fsb_c01097{font-size:122.666667pt;}
.fs9_c01097{font-size:373.333333pt;}
.y0_c01097{bottom:0.000000pt;}
.y25_c01097{bottom:2.760000pt;}
.y24_c01097{bottom:6.425206pt;}
.y23_c01097{bottom:123.626667pt;}
.y22_c01097{bottom:154.826667pt;}
.y21_c01097{bottom:186.026667pt;}
.y20_c01097{bottom:308.960000pt;}
.y1f_c01097{bottom:369.360000pt;}
.y1e_c01097{bottom:400.160000pt;}
.y1d_c01097{bottom:430.293333pt;}
.y1c_c01097{bottom:461.360000pt;}
.y1b_c01097{bottom:491.093333pt;}
.y1a_c01097{bottom:515.493333pt;}
.y19_c01097{bottom:521.360000pt;}
.y18_c01097{bottom:551.093333pt;}
.y17_c01097{bottom:581.093333pt;}
.y16_c01097{bottom:612.560000pt;}
.y15_c01097{bottom:635.760000pt;}
.y14_c01097{bottom:642.693333pt;}
.y12_c01097{bottom:672.693333pt;}
.y11_c01097{bottom:703.493333pt;}
.y10_c01097{bottom:732.960000pt;}
.yf_c01097{bottom:762.693333pt;}
.ye_c01097{bottom:793.493333pt;}
.yd_c01097{bottom:816.026667pt;}
.yc_c01097{bottom:822.560000pt;}
.y13_c01097{bottom:853.226667pt;}
.yb_c01097{bottom:853.760000pt;}
.ya_c01097{bottom:882.293333pt;}
.y9_c01097{bottom:913.893333pt;}
.y8_c01097{bottom:942.693333pt;}
.y7_c01097{bottom:973.226667pt;}
.y6_c01097{bottom:1002.293333pt;}
.y5_c01097{bottom:1032.960000pt;}
.y4_c01097{bottom:1044.293333pt;}
.y3_c01097{bottom:1062.026667pt;}
.y2_c01097{bottom:1092.026667pt;}
.y1_c01097{bottom:1152.026667pt;}
.hc_c01097{height:11.733399pt;}
.ha_c01097{height:33.763021pt;}
.hd_c01097{height:38.937500pt;}
.h4_c01097{height:50.542969pt;}
.h3_c01097{height:81.045333pt;}
.h8_c01097{height:97.912760pt;}
.h2_c01097{height:108.041667pt;}
.h5_c01097{height:109.238281pt;}
.h9_c01097{height:114.794271pt;}
.hb_c01097{height:118.170573pt;}
.h7_c01097{height:123.625000pt;}
.h6_c01097{height:366.406250pt;}
.h0_c01097{height:1229.066667pt;}
.h1_c01097{height:1229.333333pt;}
.w2_c01097{width:93.222667pt;}
.w0_c01097{width:767.266667pt;}
.w1_c01097{width:767.333333pt;}
.x0_c01097{left:0.000000pt;}
.xd_c01097{left:111.600000pt;}
.xc_c01097{left:113.066667pt;}
.xb_c01097{left:114.933333pt;}
.x5_c01097{left:116.800000pt;}
.x6_c01097{left:118.266667pt;}
.x3_c01097{left:119.200000pt;}
.x2_c01097{left:120.266667pt;}
.x10_c01097{left:121.733333pt;}
.x9_c01097{left:122.666667pt;}
.x7_c01097{left:143.333333pt;}
.x11_c01097{left:151.466667pt;}
.x13_c01097{left:152.933333pt;}
.x8_c01097{left:172.000000pt;}
.x1_c01097{left:179.733333pt;}
.x12_c01097{left:195.600000pt;}
.x4_c01097{left:285.200000pt;}
.x14_c01097{left:289.733333pt;}
.xf_c01097{left:305.600000pt;}
.x15_c01097{left:340.801554pt;}
.xe_c01097{left:364.800000pt;}
.xa_c01097{left:433.200000pt;}
}





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

.ir_c01098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_dbe022ddb041ef95bab32a16.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01098;src:url('chunks/assets/font_1f4de8903df3d4f48d13a8cd.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01098;src:url('chunks/assets/font_d85e58f7101e0db0de770832.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01098;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff4_c01098{font-family:ff4_c01098;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01098{vertical-align:-72.600000px;}
.v2_c01098{vertical-align:-30.600000px;}
.v0_c01098{vertical-align:0.000000px;}
.ls0_c01098{letter-spacing:-3.000000px;}
.ls1_c01098{letter-spacing:0.000000px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01098{word-spacing:-34.839000px;}
.ws2_c01098{word-spacing:-20.967000px;}
.ws3_c01098{word-spacing:0.000000px;}
.ws1_c01098{word-spacing:322.113000px;}
._d_c01098{margin-left:-82.128000px;}
._13_c01098{margin-left:-40.368000px;}
._10_c01098{margin-left:-35.844000px;}
._14_c01098{margin-left:-31.320000px;}
._f_c01098{margin-left:-26.883000px;}
._7_c01098{margin-left:-21.576000px;}
._6_c01098{margin-left:-20.532000px;}
._b_c01098{margin-left:-17.922000px;}
._4_c01098{margin-left:-15.660000px;}
._9_c01098{margin-left:-13.920000px;}
._0_c01098{margin-left:-8.439000px;}
._1_c01098{margin-left:-7.308000px;}
._11_c01098{margin-left:-6.003000px;}
._a_c01098{margin-left:-2.100000px;}
._3_c01098{width:8.613000px;}
._8_c01098{width:14.703000px;}
._12_c01098{width:20.514000px;}
._c_c01098{width:33.669000px;}
._2_c01098{width:126.933000px;}
._5_c01098{width:170.361000px;}
._e_c01098{width:540.423000px;}
.fc2_c01098{color:transparent;}
.fc1_c01098{color:rgb(128,128,128);}
.fc0_c01098{color:rgb(0,0,0);}
.fs4_c01098{font-size:48.000000px;}
.fs2_c01098{font-size:60.000000px;}
.fs1_c01098{font-size:63.000000px;}
.fs0_c01098{font-size:87.000000px;}
.fs3_c01098{font-size:96.000000px;}
.y0_c01098{bottom:0.000000px;}
.y7_c01098{bottom:3.105000px;}
.y6_c01098{bottom:7.228369px;}
.y5_c01098{bottom:981.420000px;}
.y4_c01098{bottom:1091.820000px;}
.y3_c01098{bottom:1265.220000px;}
.y2_c01098{bottom:1352.970000px;}
.y1_c01098{bottom:1373.670000px;}
.h4_c01098{height:13.200073px;}
.h5_c01098{height:43.804688px;}
.h2_c01098{height:110.151855px;}
.h3_c01098{height:121.546875px;}
.h0_c01098{height:1383.450000px;}
.h1_c01098{height:1383.750000px;}
.w2_c01098{width:104.875500px;}
.w0_c01098{width:878.025000px;}
.w1_c01098{width:878.250000px;}
.x0_c01098{left:0.000000px;}
.x1_c01098{left:7.650000px;}
.x3_c01098{left:114.750000px;}
.x2_c01098{left:118.200000px;}
.x6_c01098{left:390.826721px;}
.x4_c01098{left:482.400000px;}
.x5_c01098{left:575.550000px;}
@media print{
.v1_c01098{vertical-align:-64.533333pt;}
.v2_c01098{vertical-align:-27.200000pt;}
.v0_c01098{vertical-align:0.000000pt;}
.ls0_c01098{letter-spacing:-2.666667pt;}
.ls1_c01098{letter-spacing:0.000000pt;}
.ws0_c01098{word-spacing:-30.968000pt;}
.ws2_c01098{word-spacing:-18.637333pt;}
.ws3_c01098{word-spacing:0.000000pt;}
.ws1_c01098{word-spacing:286.322667pt;}
._d_c01098{margin-left:-73.002667pt;}
._13_c01098{margin-left:-35.882667pt;}
._10_c01098{margin-left:-31.861333pt;}
._14_c01098{margin-left:-27.840000pt;}
._f_c01098{margin-left:-23.896000pt;}
._7_c01098{margin-left:-19.178667pt;}
._6_c01098{margin-left:-18.250667pt;}
._b_c01098{margin-left:-15.930667pt;}
._4_c01098{margin-left:-13.920000pt;}
._9_c01098{margin-left:-12.373333pt;}
._0_c01098{margin-left:-7.501333pt;}
._1_c01098{margin-left:-6.496000pt;}
._11_c01098{margin-left:-5.336000pt;}
._a_c01098{margin-left:-1.866667pt;}
._3_c01098{width:7.656000pt;}
._8_c01098{width:13.069333pt;}
._12_c01098{width:18.234667pt;}
._c_c01098{width:29.928000pt;}
._2_c01098{width:112.829333pt;}
._5_c01098{width:151.432000pt;}
._e_c01098{width:480.376000pt;}
.fs4_c01098{font-size:42.666667pt;}
.fs2_c01098{font-size:53.333333pt;}
.fs1_c01098{font-size:56.000000pt;}
.fs0_c01098{font-size:77.333333pt;}
.fs3_c01098{font-size:85.333333pt;}
.y0_c01098{bottom:0.000000pt;}
.y7_c01098{bottom:2.760000pt;}
.y6_c01098{bottom:6.425217pt;}
.y5_c01098{bottom:872.373333pt;}
.y4_c01098{bottom:970.506667pt;}
.y3_c01098{bottom:1124.640000pt;}
.y2_c01098{bottom:1202.640000pt;}
.y1_c01098{bottom:1221.040000pt;}
.h4_c01098{height:11.733399pt;}
.h5_c01098{height:38.937500pt;}
.h2_c01098{height:97.912760pt;}
.h3_c01098{height:108.041667pt;}
.h0_c01098{height:1229.733333pt;}
.h1_c01098{height:1230.000000pt;}
.w2_c01098{width:93.222667pt;}
.w0_c01098{width:780.466667pt;}
.w1_c01098{width:780.666667pt;}
.x0_c01098{left:0.000000pt;}
.x1_c01098{left:6.800000pt;}
.x3_c01098{left:102.000000pt;}
.x2_c01098{left:105.066667pt;}
.x6_c01098{left:347.401530pt;}
.x4_c01098{left:428.800000pt;}
.x5_c01098{left:511.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_c01099 {
    display:none;
  }
  .loading-indicator_c01099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01099 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01099 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01099" -> "#page-container .classname_c01099")
 */
.pf_c01099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01099 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01099 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01099 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01099 {overflow:visible;}
  }
}
.c_c01099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01099 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01099:after { /* webkit #35443 */
  content: '';
}
.t_c01099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01099 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01099 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01099 { /* info for Javascript */
  display:none;
}
.l_c01099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_e6f1d9f159cc64d0ca4c5e56.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01099;src:url('chunks/assets/font_11c526147d711e3c740dd4f1.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01099;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01099{vertical-align:0.000000px;}
.ls0_c01099{letter-spacing:0.000000px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01099{word-spacing:-16.773600px;}
.ws1_c01099{word-spacing:0.000000px;}
._16_c01099{margin-left:-83.085000px;}
._c_c01099{margin-left:-73.863000px;}
._18_c01099{margin-left:-50.547000px;}
._f_c01099{margin-left:-37.416000px;}
._11_c01099{margin-left:-31.485600px;}
._7_c01099{margin-left:-28.884000px;}
._b_c01099{margin-left:-27.405000px;}
._0_c01099{margin-left:-25.926000px;}
._15_c01099{margin-left:-23.229000px;}
._4_c01099{margin-left:-21.048000px;}
._9_c01099{margin-left:-19.401000px;}
._13_c01099{margin-left:-18.009000px;}
._2_c01099{margin-left:-16.530000px;}
._8_c01099{margin-left:-13.659000px;}
._12_c01099{margin-left:-12.441000px;}
._5_c01099{margin-left:-11.405400px;}
._14_c01099{margin-left:-10.011000px;}
._6_c01099{margin-left:-8.961000px;}
._a_c01099{margin-left:-6.873000px;}
._3_c01099{margin-left:-4.611000px;}
._1_c01099{margin-left:-2.697000px;}
._d_c01099{width:2.784000px;}
._10_c01099{width:9.042000px;}
._e_c01099{width:134.241000px;}
._19_c01099{width:162.603000px;}
._17_c01099{width:325.815000px;}
.fc2_c01099{color:transparent;}
.fc1_c01099{color:rgb(128,128,128);}
.fc0_c01099{color:rgb(0,0,0);}
.fs2_c01099{font-size:48.000000px;}
.fs1_c01099{font-size:69.600000px;}
.fs0_c01099{font-size:87.000000px;}
.y0_c01099{bottom:0.000000px;}
.y4_c01099{bottom:3.105000px;}
.y3_c01099{bottom:7.228355px;}
.y2_c01099{bottom:17.085000px;}
.y1_c01099{bottom:25.635000px;}
.h3_c01099{height:13.200074px;}
.h4_c01099{height:43.804688px;}
.h2_c01099{height:110.151855px;}
.h1_c01099{height:1435.500000px;}
.h0_c01099{height:1435.575000px;}
.w2_c01099{width:104.875500px;}
.w1_c01099{width:1002.750000px;}
.w0_c01099{width:1003.050000px;}
.x0_c01099{left:0.000000px;}
.x1_c01099{left:160.650000px;}
.x2_c01099{left:170.400000px;}
.x3_c01099{left:453.339249px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls0_c01099{letter-spacing:0.000000pt;}
.ws0_c01099{word-spacing:-14.909867pt;}
.ws1_c01099{word-spacing:0.000000pt;}
._16_c01099{margin-left:-73.853333pt;}
._c_c01099{margin-left:-65.656000pt;}
._18_c01099{margin-left:-44.930667pt;}
._f_c01099{margin-left:-33.258667pt;}
._11_c01099{margin-left:-27.987200pt;}
._7_c01099{margin-left:-25.674667pt;}
._b_c01099{margin-left:-24.360000pt;}
._0_c01099{margin-left:-23.045333pt;}
._15_c01099{margin-left:-20.648000pt;}
._4_c01099{margin-left:-18.709333pt;}
._9_c01099{margin-left:-17.245333pt;}
._13_c01099{margin-left:-16.008000pt;}
._2_c01099{margin-left:-14.693333pt;}
._8_c01099{margin-left:-12.141333pt;}
._12_c01099{margin-left:-11.058667pt;}
._5_c01099{margin-left:-10.138133pt;}
._14_c01099{margin-left:-8.898667pt;}
._6_c01099{margin-left:-7.965333pt;}
._a_c01099{margin-left:-6.109333pt;}
._3_c01099{margin-left:-4.098667pt;}
._1_c01099{margin-left:-2.397333pt;}
._d_c01099{width:2.474667pt;}
._10_c01099{width:8.037333pt;}
._e_c01099{width:119.325333pt;}
._19_c01099{width:144.536000pt;}
._17_c01099{width:289.613333pt;}
.fs2_c01099{font-size:42.666667pt;}
.fs1_c01099{font-size:61.866667pt;}
.fs0_c01099{font-size:77.333333pt;}
.y0_c01099{bottom:0.000000pt;}
.y4_c01099{bottom:2.760000pt;}
.y3_c01099{bottom:6.425204pt;}
.y2_c01099{bottom:15.186667pt;}
.y1_c01099{bottom:22.786667pt;}
.h3_c01099{height:11.733399pt;}
.h4_c01099{height:38.937500pt;}
.h2_c01099{height:97.912760pt;}
.h1_c01099{height:1276.000000pt;}
.h0_c01099{height:1276.066667pt;}
.w2_c01099{width:93.222667pt;}
.w1_c01099{width:891.333333pt;}
.w0_c01099{width:891.600000pt;}
.x0_c01099{left:0.000000pt;}
.x1_c01099{left:142.800000pt;}
.x2_c01099{left:151.466667pt;}
.x3_c01099{left:402.968221pt;}
}





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

.ir_c01100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_5e2efc93ba09c96fbea4c702.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01100;src:url('chunks/assets/font_2aad76e3d87c190b36ddf0f3.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01100;src:url('chunks/assets/font_eaaf7a82a09b0f85d0911fc9.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.ls0_c01100{letter-spacing:0.000000px;}
.ls1_c01100{letter-spacing:21.000000px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01100{word-spacing:0.000000px;}
.fc2_c01100{color:transparent;}
.fc1_c01100{color:rgb(128,128,128);}
.fc0_c01100{color:rgb(0,0,0);}
.fs2_c01100{font-size:48.000000px;}
.fs1_c01100{font-size:84.000000px;}
.fs0_c01100{font-size:96.000000px;}
.y0_c01100{bottom:0.000000px;}
.y4_c01100{bottom:3.105000px;}
.y3_c01100{bottom:7.228355px;}
.y2_c01100{bottom:676.935000px;}
.y1_c01100{bottom:839.985000px;}
.h4_c01100{height:13.200074px;}
.h5_c01100{height:43.804688px;}
.h3_c01100{height:98.314453px;}
.h2_c01100{height:121.546875px;}
.h1_c01100{height:1629.750000px;}
.h0_c01100{height:1629.975000px;}
.w2_c01100{width:104.875500px;}
.w0_c01100{width:231.675000px;}
.w1_c01100{width:231.750000px;}
.x0_c01100{left:0.000000px;}
.x3_c01100{left:67.651749px;}
.x1_c01100{left:95.850000px;}
.x2_c01100{left:170.850000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls0_c01100{letter-spacing:0.000000pt;}
.ls1_c01100{letter-spacing:18.666667pt;}
.ws0_c01100{word-spacing:0.000000pt;}
.fs2_c01100{font-size:42.666667pt;}
.fs1_c01100{font-size:74.666667pt;}
.fs0_c01100{font-size:85.333333pt;}
.y0_c01100{bottom:0.000000pt;}
.y4_c01100{bottom:2.760000pt;}
.y3_c01100{bottom:6.425204pt;}
.y2_c01100{bottom:601.720000pt;}
.y1_c01100{bottom:746.653333pt;}
.h4_c01100{height:11.733399pt;}
.h5_c01100{height:38.937500pt;}
.h3_c01100{height:87.390625pt;}
.h2_c01100{height:108.041667pt;}
.h1_c01100{height:1448.666667pt;}
.h0_c01100{height:1448.866667pt;}
.w2_c01100{width:93.222667pt;}
.w0_c01100{width:205.933333pt;}
.w1_c01100{width:206.000000pt;}
.x0_c01100{left:0.000000pt;}
.x3_c01100{left:60.134888pt;}
.x1_c01100{left:85.200000pt;}
.x2_c01100{left:151.866667pt;}
}




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