
    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_10c3ae8576057901fbd2968e.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_b80bb11e66336c1bb7d462f3.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
.fc5_c00000{color:transparent;}
.fc4_c00000{color:rgb(36,64,97);}
.fc2_c00000{color:rgb(210,218,227);}
.fc1_c00000{color:rgb(55,102,156);}
.fc3_c00000{color:rgb(0,0,0);}
.fc0_c00000{color:rgb(255,255,255);}
.fs6_c00000{font-size:66.000000px;}
.fs3_c00000{font-size:78.000000px;}
.fs4_c00000{font-size:84.000000px;}
.fs5_c00000{font-size:108.000000px;}
.fs2_c00000{font-size:144.000000px;}
.fs0_c00000{font-size:180.000000px;}
.fs1_c00000{font-size:300.000000px;}
.y18_c00000{bottom:-2431.500000px;}
.y19_c00000{bottom:-2106.000000px;}
.y15_c00000{bottom:-1876.500000px;}
.y17_c00000{bottom:-1749.000000px;}
.y16_c00000{bottom:-1422.000000px;}
.y0_c00000{bottom:0.000000px;}
.yd_c00000{bottom:6.000000px;}
.yf_c00000{bottom:7.500000px;}
.y1c_c00000{bottom:9.000000px;}
.y28_c00000{bottom:12.000000px;}
.y6_c00000{bottom:16.500000px;}
.y2_c00000{bottom:19.500000px;}
.y4_c00000{bottom:24.000000px;}
.y30_c00000{bottom:25.500000px;}
.y23_c00000{bottom:28.500000px;}
.y29_c00000{bottom:37.500000px;}
.y11_c00000{bottom:39.000000px;}
.y24_c00000{bottom:57.000000px;}
.y13_c00000{bottom:90.000000px;}
.y20_c00000{bottom:126.001200px;}
.y12_c00000{bottom:138.000000px;}
.y1f_c00000{bottom:159.000600px;}
.yb_c00000{bottom:189.000000px;}
.y1e_c00000{bottom:192.000000px;}
.y27_c00000{bottom:240.000000px;}
.ya_c00000{bottom:243.000000px;}
.ye_c00000{bottom:253.500000px;}
.y9_c00000{bottom:297.000000px;}
.y22_c00000{bottom:306.000000px;}
.y10_c00000{bottom:327.000000px;}
.y8_c00000{bottom:351.000000px;}
.y2a_c00000{bottom:361.500000px;}
.y1a_c00000{bottom:379.500000px;}
.yc_c00000{bottom:391.500000px;}
.y7_c00000{bottom:495.000000px;}
.y2d_c00000{bottom:580.500000px;}
.y21_c00000{bottom:591.000000px;}
.y1b_c00000{bottom:661.500000px;}
.y2f_c00000{bottom:708.000000px;}
.y26_c00000{bottom:717.000000px;}
.y1d_c00000{bottom:762.000000px;}
.y5_c00000{bottom:930.000000px;}
.y2e_c00000{bottom:1035.000000px;}
.y25_c00000{bottom:1044.000000px;}
.y3_c00000{bottom:1087.500000px;}
.y1_c00000{bottom:1114.500000px;}
.y14_c00000{bottom:1246.500000px;}
.y2c_c00000{bottom:1471.500000px;}
.y2b_c00000{bottom:1608.000000px;}
.he_c00000{height:0.000000px;}
.h17_c00000{height:22.500000px;}
.h8_c00000{height:25.500000px;}
.h13_c00000{height:27.000000px;}
.ha_c00000{height:28.500000px;}
.h15_c00000{height:30.000000px;}
.h11_c00000{height:34.500000px;}
.h16_c00000{height:37.500000px;}
.h10_c00000{height:43.989258px;}
.h5_c00000{height:48.000000px;}
.h9_c00000{height:51.987305px;}
.hc_c00000{height:55.986328px;}
.hb_c00000{height:58.500000px;}
.h1_c00000{height:61.500000px;}
.hf_c00000{height:71.982422px;}
.h14_c00000{height:76.500000px;}
.h3_c00000{height:93.000000px;}
.h6_c00000{height:95.976562px;}
.hd_c00000{height:109.500000px;}
.h2_c00000{height:119.970703px;}
.h4_c00000{height:199.951172px;}
.h12_c00000{height:217.500000px;}
.h7_c00000{height:393.000000px;}
.h0_c00000{height:1263.000000px;}
.w7_c00000{width:0.000000px;}
.we_c00000{width:69.000000px;}
.wa_c00000{width:102.000000px;}
.w2_c00000{width:114.000000px;}
.wf_c00000{width:118.500000px;}
.w1_c00000{width:120.000000px;}
.w5_c00000{width:124.500000px;}
.wd_c00000{width:172.500000px;}
.w11_c00000{width:304.500000px;}
.w6_c00000{width:421.500000px;}
.w10_c00000{width:603.000000px;}
.w9_c00000{width:651.000000px;}
.w8_c00000{width:673.500000px;}
.wc_c00000{width:675.000000px;}
.wb_c00000{width:687.000000px;}
.w3_c00000{width:697.500000px;}
.w4_c00000{width:699.000000px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.xe_c00000{left:1.500000px;}
.x2_c00000{left:9.960000px;}
.xf_c00000{left:16.500000px;}
.x1a_c00000{left:25.759500px;}
.x23_c00000{left:29.226000px;}
.x19_c00000{left:30.268500px;}
.x4_c00000{left:36.150000px;}
.x15_c00000{left:54.000000px;}
.x1b_c00000{left:65.490000px;}
.xd_c00000{left:69.000000px;}
.xc_c00000{left:70.500000px;}
.x8_c00000{left:79.035000px;}
.x9_c00000{left:81.690000px;}
.x1d_c00000{left:105.000000px;}
.x7_c00000{left:111.000000px;}
.x5_c00000{left:112.500000px;}
.x1f_c00000{left:114.000000px;}
.x13_c00000{left:115.887000px;}
.x16_c00000{left:120.000000px;}
.xa_c00000{left:126.645000px;}
.x18_c00000{left:132.000000px;}
.x17_c00000{left:150.787500px;}
.x6_c00000{left:201.600000px;}
.x1e_c00000{left:221.574000px;}
.x14_c00000{left:267.252000px;}
.x24_c00000{left:283.500000px;}
.x11_c00000{left:360.051000px;}
.xb_c00000{left:369.150000px;}
.x20_c00000{left:376.500000px;}
.x10_c00000{left:378.000000px;}
.x22_c00000{left:388.500000px;}
.x1c_c00000{left:394.500000px;}
.x12_c00000{left:396.000000px;}
.x21_c00000{left:411.000000px;}
.x1_c00000{left:585.000000px;}
.x3_c00000{left:732.000000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs6_c00000{font-size:58.666667pt;}
.fs3_c00000{font-size:69.333333pt;}
.fs4_c00000{font-size:74.666667pt;}
.fs5_c00000{font-size:96.000000pt;}
.fs2_c00000{font-size:128.000000pt;}
.fs0_c00000{font-size:160.000000pt;}
.fs1_c00000{font-size:266.666667pt;}
.y18_c00000{bottom:-2161.333333pt;}
.y19_c00000{bottom:-1872.000000pt;}
.y15_c00000{bottom:-1668.000000pt;}
.y17_c00000{bottom:-1554.666667pt;}
.y16_c00000{bottom:-1264.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.yd_c00000{bottom:5.333333pt;}
.yf_c00000{bottom:6.666667pt;}
.y1c_c00000{bottom:8.000000pt;}
.y28_c00000{bottom:10.666667pt;}
.y6_c00000{bottom:14.666667pt;}
.y2_c00000{bottom:17.333333pt;}
.y4_c00000{bottom:21.333333pt;}
.y30_c00000{bottom:22.666667pt;}
.y23_c00000{bottom:25.333333pt;}
.y29_c00000{bottom:33.333333pt;}
.y11_c00000{bottom:34.666667pt;}
.y24_c00000{bottom:50.666667pt;}
.y13_c00000{bottom:80.000000pt;}
.y20_c00000{bottom:112.001067pt;}
.y12_c00000{bottom:122.666667pt;}
.y1f_c00000{bottom:141.333867pt;}
.yb_c00000{bottom:168.000000pt;}
.y1e_c00000{bottom:170.666667pt;}
.y27_c00000{bottom:213.333333pt;}
.ya_c00000{bottom:216.000000pt;}
.ye_c00000{bottom:225.333333pt;}
.y9_c00000{bottom:264.000000pt;}
.y22_c00000{bottom:272.000000pt;}
.y10_c00000{bottom:290.666667pt;}
.y8_c00000{bottom:312.000000pt;}
.y2a_c00000{bottom:321.333333pt;}
.y1a_c00000{bottom:337.333333pt;}
.yc_c00000{bottom:348.000000pt;}
.y7_c00000{bottom:440.000000pt;}
.y2d_c00000{bottom:516.000000pt;}
.y21_c00000{bottom:525.333333pt;}
.y1b_c00000{bottom:588.000000pt;}
.y2f_c00000{bottom:629.333333pt;}
.y26_c00000{bottom:637.333333pt;}
.y1d_c00000{bottom:677.333333pt;}
.y5_c00000{bottom:826.666667pt;}
.y2e_c00000{bottom:920.000000pt;}
.y25_c00000{bottom:928.000000pt;}
.y3_c00000{bottom:966.666667pt;}
.y1_c00000{bottom:990.666667pt;}
.y14_c00000{bottom:1108.000000pt;}
.y2c_c00000{bottom:1308.000000pt;}
.y2b_c00000{bottom:1429.333333pt;}
.he_c00000{height:0.000000pt;}
.h17_c00000{height:20.000000pt;}
.h8_c00000{height:22.666667pt;}
.h13_c00000{height:24.000000pt;}
.ha_c00000{height:25.333333pt;}
.h15_c00000{height:26.666667pt;}
.h11_c00000{height:30.666667pt;}
.h16_c00000{height:33.333333pt;}
.h10_c00000{height:39.101562pt;}
.h5_c00000{height:42.666667pt;}
.h9_c00000{height:46.210938pt;}
.hc_c00000{height:49.765625pt;}
.hb_c00000{height:52.000000pt;}
.h1_c00000{height:54.666667pt;}
.hf_c00000{height:63.984375pt;}
.h14_c00000{height:68.000000pt;}
.h3_c00000{height:82.666667pt;}
.h6_c00000{height:85.312500pt;}
.hd_c00000{height:97.333333pt;}
.h2_c00000{height:106.640625pt;}
.h4_c00000{height:177.734375pt;}
.h12_c00000{height:193.333333pt;}
.h7_c00000{height:349.333333pt;}
.h0_c00000{height:1122.666667pt;}
.w7_c00000{width:0.000000pt;}
.we_c00000{width:61.333333pt;}
.wa_c00000{width:90.666667pt;}
.w2_c00000{width:101.333333pt;}
.wf_c00000{width:105.333333pt;}
.w1_c00000{width:106.666667pt;}
.w5_c00000{width:110.666667pt;}
.wd_c00000{width:153.333333pt;}
.w11_c00000{width:270.666667pt;}
.w6_c00000{width:374.666667pt;}
.w10_c00000{width:536.000000pt;}
.w9_c00000{width:578.666667pt;}
.w8_c00000{width:598.666667pt;}
.wc_c00000{width:600.000000pt;}
.wb_c00000{width:610.666667pt;}
.w3_c00000{width:620.000000pt;}
.w4_c00000{width:621.333333pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.xe_c00000{left:1.333333pt;}
.x2_c00000{left:8.853333pt;}
.xf_c00000{left:14.666667pt;}
.x1a_c00000{left:22.897333pt;}
.x23_c00000{left:25.978667pt;}
.x19_c00000{left:26.905333pt;}
.x4_c00000{left:32.133333pt;}
.x15_c00000{left:48.000000pt;}
.x1b_c00000{left:58.213333pt;}
.xd_c00000{left:61.333333pt;}
.xc_c00000{left:62.666667pt;}
.x8_c00000{left:70.253333pt;}
.x9_c00000{left:72.613333pt;}
.x1d_c00000{left:93.333333pt;}
.x7_c00000{left:98.666667pt;}
.x5_c00000{left:100.000000pt;}
.x1f_c00000{left:101.333333pt;}
.x13_c00000{left:103.010667pt;}
.x16_c00000{left:106.666667pt;}
.xa_c00000{left:112.573333pt;}
.x18_c00000{left:117.333333pt;}
.x17_c00000{left:134.033333pt;}
.x6_c00000{left:179.200000pt;}
.x1e_c00000{left:196.954667pt;}
.x14_c00000{left:237.557333pt;}
.x24_c00000{left:252.000000pt;}
.x11_c00000{left:320.045333pt;}
.xb_c00000{left:328.133333pt;}
.x20_c00000{left:334.666667pt;}
.x10_c00000{left:336.000000pt;}
.x22_c00000{left:345.333333pt;}
.x1c_c00000{left:350.666667pt;}
.x12_c00000{left:352.000000pt;}
.x21_c00000{left:365.333333pt;}
.x1_c00000{left:520.000000pt;}
.x3_c00000{left:650.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_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_4c4d93e866e22a79a7b9ff84.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.191895;font-style:normal;font-weight:normal;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_86aba7b2686f0f35f448690e.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;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:ff3_c00001;src:url('chunks/assets/font_0c1445db973ebd90c2b0a58c.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:0.903809;font-style: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);}
.v1_c00001{vertical-align:-5.760000px;}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.lsa_c00001{letter-spacing:3.960000px;}
.ls24_c00001{letter-spacing:4.104000px;}
.ls1c_c00001{letter-spacing:4.716000px;}
.ls14_c00001{letter-spacing:5.328000px;}
.ls1f_c00001{letter-spacing:5.364000px;}
.ls8_c00001{letter-spacing:5.400000px;}
.ls6_c00001{letter-spacing:5.436000px;}
.ls1d_c00001{letter-spacing:5.448000px;}
.ls1_c00001{letter-spacing:5.472000px;}
.ls23_c00001{letter-spacing:5.508000px;}
.ls12_c00001{letter-spacing:5.520000px;}
.lsb_c00001{letter-spacing:5.544000px;}
.lsd_c00001{letter-spacing:5.556000px;}
.ls13_c00001{letter-spacing:5.580000px;}
.ls4_c00001{letter-spacing:5.592000px;}
.lsf_c00001{letter-spacing:5.616000px;}
.ls11_c00001{letter-spacing:5.652000px;}
.ls19_c00001{letter-spacing:5.724000px;}
.ls26_c00001{letter-spacing:5.736000px;}
.ls21_c00001{letter-spacing:5.796000px;}
.ls17_c00001{letter-spacing:5.832000px;}
.ls22_c00001{letter-spacing:5.904000px;}
.ls1b_c00001{letter-spacing:5.952000px;}
.ls20_c00001{letter-spacing:5.976000px;}
.lse_c00001{letter-spacing:6.012000px;}
.ls16_c00001{letter-spacing:6.024000px;}
.ls2_c00001{letter-spacing:6.084000px;}
.ls3_c00001{letter-spacing:6.120000px;}
.ls1a_c00001{letter-spacing:6.156000px;}
.ls9_c00001{letter-spacing:6.204000px;}
.ls10_c00001{letter-spacing:6.240000px;}
.ls5_c00001{letter-spacing:6.264000px;}
.ls7_c00001{letter-spacing:6.300000px;}
.ls18_c00001{letter-spacing:6.384000px;}
.ls15_c00001{letter-spacing:6.444000px;}
.lsc_c00001{letter-spacing:6.624000px;}
.ls25_c00001{letter-spacing:6.912000px;}
.ls1e_c00001{letter-spacing:7.056000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
._5_c00001{margin-left:-45.000000px;}
._7_c00001{margin-left:-40.020000px;}
._6_c00001{margin-left:-36.660000px;}
._8_c00001{margin-left:-23.340000px;}
._2_c00001{margin-left:-21.060000px;}
._9_c00001{margin-left:-16.680000px;}
._3_c00001{margin-left:-13.320000px;}
._4_c00001{margin-left:-3.360000px;}
._0_c00001{width:827.484000px;}
._1_c00001{width:839.652000px;}
.fc4_c00001{color:transparent;}
.fc3_c00001{color:rgb(54,95,145);}
.fc2_c00001{color:rgb(31,73,125);}
.fc1_c00001{color:rgb(153,153,153);}
.fc0_c00001{color:rgb(0,0,0);}
.fs2_c00001{font-size:60.000000px;}
.fs0_c00001{font-size:72.000000px;}
.fs1_c00001{font-size:108.000000px;}
.y0_c00001{bottom:0.000000px;}
.y79_c00001{bottom:13.320000px;}
.y51_c00001{bottom:14.040000px;}
.y52_c00001{bottom:14.400000px;}
.y4e_c00001{bottom:41.760000px;}
.y1_c00001{bottom:54.000000px;}
.y9d_c00001{bottom:65.916000px;}
.y9c_c00001{bottom:123.876000px;}
.y9b_c00001{bottom:340.305000px;}
.y9e_c00001{bottom:343.489650px;}
.y9a_c00001{bottom:371.265000px;}
.y99_c00001{bottom:402.225000px;}
.y98_c00001{bottom:432.825000px;}
.y97_c00001{bottom:463.830000px;}
.y96_c00001{bottom:494.790000px;}
.y4d_c00001{bottom:501.630000px;}
.y95_c00001{bottom:525.750000px;}
.y1e_c00001{bottom:529.350000px;}
.y4c_c00001{bottom:532.590000px;}
.y50_c00001{bottom:543.390000px;}
.y94_c00001{bottom:556.710000px;}
.y1d_c00001{bottom:562.110000px;}
.y4b_c00001{bottom:563.550000px;}
.y4a_c00001{bottom:564.990000px;}
.y4f_c00001{bottom:574.380000px;}
.y91_c00001{bottom:577.260000px;}
.y93_c00001{bottom:578.700000px;}
.y92_c00001{bottom:580.140000px;}
.y47_c00001{bottom:603.900000px;}
.y49_c00001{bottom:605.340000px;}
.y48_c00001{bottom:606.780000px;}
.y1a_c00001{bottom:628.020000px;}
.y1c_c00001{bottom:629.460000px;}
.y1b_c00001{bottom:630.900000px;}
.y76_c00001{bottom:634.860000px;}
.y78_c00001{bottom:636.300000px;}
.y77_c00001{bottom:637.740000px;}
.y44_c00001{bottom:645.660000px;}
.y8e_c00001{bottom:646.020000px;}
.y46_c00001{bottom:647.100000px;}
.y90_c00001{bottom:647.460000px;}
.y45_c00001{bottom:648.540000px;}
.y8f_c00001{bottom:648.900000px;}
.y73_c00001{bottom:676.620000px;}
.y75_c00001{bottom:678.060000px;}
.y74_c00001{bottom:679.500000px;}
.y41_c00001{bottom:687.780000px;}
.y43_c00001{bottom:689.220000px;}
.y42_c00001{bottom:690.660000px;}
.y17_c00001{bottom:696.810000px;}
.y19_c00001{bottom:698.250000px;}
.y18_c00001{bottom:699.690000px;}
.y8b_c00001{bottom:714.810000px;}
.y8d_c00001{bottom:716.250000px;}
.y8c_c00001{bottom:717.690000px;}
.y70_c00001{bottom:718.410000px;}
.y72_c00001{bottom:719.850000px;}
.y71_c00001{bottom:721.290000px;}
.y3e_c00001{bottom:729.570000px;}
.y40_c00001{bottom:731.010000px;}
.y3f_c00001{bottom:732.450000px;}
.y6d_c00001{bottom:760.530000px;}
.y6f_c00001{bottom:761.970000px;}
.y6e_c00001{bottom:763.410000px;}
.y14_c00001{bottom:765.570000px;}
.y16_c00001{bottom:767.010000px;}
.y15_c00001{bottom:768.450000px;}
.y3b_c00001{bottom:771.330000px;}
.y3d_c00001{bottom:772.770000px;}
.y3c_c00001{bottom:774.210000px;}
.y88_c00001{bottom:783.570000px;}
.y8a_c00001{bottom:785.010000px;}
.y89_c00001{bottom:786.450000px;}
.y6a_c00001{bottom:802.290000px;}
.y6c_c00001{bottom:803.730000px;}
.y6b_c00001{bottom:805.170000px;}
.y38_c00001{bottom:813.090000px;}
.y3a_c00001{bottom:814.530000px;}
.y39_c00001{bottom:815.970000px;}
.y11_c00001{bottom:834.375000px;}
.y13_c00001{bottom:835.815000px;}
.y12_c00001{bottom:837.255000px;}
.y67_c00001{bottom:844.095000px;}
.y69_c00001{bottom:845.535000px;}
.y68_c00001{bottom:846.975000px;}
.y85_c00001{bottom:852.375000px;}
.y87_c00001{bottom:853.815000px;}
.y35_c00001{bottom:854.895000px;}
.y86_c00001{bottom:855.255000px;}
.y37_c00001{bottom:856.335000px;}
.y36_c00001{bottom:857.775000px;}
.y64_c00001{bottom:885.855000px;}
.y66_c00001{bottom:887.295000px;}
.y65_c00001{bottom:888.735000px;}
.y32_c00001{bottom:896.655000px;}
.y34_c00001{bottom:898.095000px;}
.y33_c00001{bottom:899.535000px;}
.ye_c00001{bottom:903.135000px;}
.y10_c00001{bottom:904.575000px;}
.yf_c00001{bottom:906.015000px;}
.y82_c00001{bottom:921.135000px;}
.y84_c00001{bottom:922.575000px;}
.y83_c00001{bottom:924.015000px;}
.y61_c00001{bottom:927.615000px;}
.y63_c00001{bottom:929.055000px;}
.y62_c00001{bottom:930.495000px;}
.y2f_c00001{bottom:938.415000px;}
.y31_c00001{bottom:939.855000px;}
.y30_c00001{bottom:941.295000px;}
.y5f_c00001{bottom:969.405000px;}
.y60_c00001{bottom:970.845000px;}
.yb_c00001{bottom:972.285000px;}
.yd_c00001{bottom:973.725000px;}
.yc_c00001{bottom:975.165000px;}
.y2c_c00001{bottom:980.565000px;}
.y2e_c00001{bottom:982.005000px;}
.y2d_c00001{bottom:983.445000px;}
.y7f_c00001{bottom:990.285000px;}
.y81_c00001{bottom:991.725000px;}
.y80_c00001{bottom:993.165000px;}
.y5c_c00001{bottom:1011.165000px;}
.y5e_c00001{bottom:1012.605000px;}
.y5d_c00001{bottom:1014.045000px;}
.y29_c00001{bottom:1022.325000px;}
.y2b_c00001{bottom:1023.765000px;}
.y2a_c00001{bottom:1025.205000px;}
.y8_c00001{bottom:1041.045000px;}
.ya_c00001{bottom:1042.485000px;}
.y9_c00001{bottom:1043.925000px;}
.y59_c00001{bottom:1053.285000px;}
.y5b_c00001{bottom:1054.725000px;}
.y5a_c00001{bottom:1056.165000px;}
.y7c_c00001{bottom:1059.045000px;}
.y7e_c00001{bottom:1060.485000px;}
.y7d_c00001{bottom:1061.925000px;}
.y26_c00001{bottom:1064.085000px;}
.y28_c00001{bottom:1065.525000px;}
.y27_c00001{bottom:1066.965000px;}
.y56_c00001{bottom:1095.090000px;}
.y58_c00001{bottom:1096.530000px;}
.y57_c00001{bottom:1097.970000px;}
.y23_c00001{bottom:1105.890000px;}
.y25_c00001{bottom:1107.330000px;}
.y24_c00001{bottom:1108.770000px;}
.y5_c00001{bottom:1109.850000px;}
.y7_c00001{bottom:1111.290000px;}
.y6_c00001{bottom:1112.730000px;}
.y7b_c00001{bottom:1128.930000px;}
.y53_c00001{bottom:1136.850000px;}
.y55_c00001{bottom:1138.290000px;}
.y54_c00001{bottom:1139.730000px;}
.y20_c00001{bottom:1147.650000px;}
.y22_c00001{bottom:1149.090000px;}
.y21_c00001{bottom:1150.530000px;}
.y7a_c00001{bottom:1159.890000px;}
.y2_c00001{bottom:1178.610000px;}
.y4_c00001{bottom:1180.050000px;}
.y3_c00001{bottom:1181.490000px;}
.y1f_c00001{bottom:1190.850000px;}
.h8_c00001{height:53.291016px;}
.h3_c00001{height:72.035156px;}
.h6_c00001{height:74.004654px;}
.h4_c00001{height:108.052734px;}
.h5_c00001{height:111.006981px;}
.h7_c00001{height:1246.500000px;}
.h1_c00001{height:1255.500000px;}
.h2_c00001{height:1262.880000px;}
.h0_c00001{height:1263.000000px;}
.w4_c00001{width:881.047500px;}
.w5_c00001{width:881.250000px;}
.w2_c00001{width:888.000000px;}
.w1_c00001{width:888.097500px;}
.w0_c00001{width:892.500000px;}
.w3_c00001{width:892.800000px;}
.x0_c00001{left:0.000000px;}
.xa3_c00001{left:54.036000px;}
.x87_c00001{left:80.676000px;}
.x7_c00001{left:148.752000px;}
.x8_c00001{left:150.195000px;}
.x6_c00001{left:151.635000px;}
.x9_c00001{left:169.635000px;}
.xa_c00001{left:171.075000px;}
.xb_c00001{left:186.915000px;}
.xc_c00001{left:188.355000px;}
.xd_c00001{left:204.555000px;}
.xe_c00001{left:205.995000px;}
.xf_c00001{left:225.465000px;}
.x10_c00001{left:226.905000px;}
.xd4_c00001{left:230.505000px;}
.xd5_c00001{left:231.945000px;}
.xd3_c00001{left:233.385000px;}
.x11_c00001{left:246.705000px;}
.x12_c00001{left:248.145000px;}
.xd6_c00001{left:252.825000px;}
.xd7_c00001{left:254.265000px;}
.x13_c00001{left:265.065000px;}
.x14_c00001{left:266.505000px;}
.xd8_c00001{left:267.585000px;}
.xd9_c00001{left:269.025000px;}
.x51_c00001{left:274.785000px;}
.x52_c00001{left:276.225000px;}
.x50_c00001{left:277.665000px;}
.x15_c00001{left:286.305000px;}
.x16_c00001{left:287.745000px;}
.x53_c00001{left:295.665000px;}
.x54_c00001{left:297.150000px;}
.xda_c00001{left:306.510000px;}
.xdb_c00001{left:307.950000px;}
.x17_c00001{left:309.390000px;}
.x18_c00001{left:310.830000px;}
.x55_c00001{left:312.990000px;}
.x56_c00001{left:314.430000px;}
.x19_c00001{left:318.750000px;}
.x1a_c00001{left:320.190000px;}
.xdc_c00001{left:324.870000px;}
.xdd_c00001{left:326.310000px;}
.x57_c00001{left:330.630000px;}
.x58_c00001{left:332.070000px;}
.x10b_c00001{left:339.570300px;}
.x1b_c00001{left:341.070000px;}
.x1c_c00001{left:342.510000px;}
.xde_c00001{left:346.110000px;}
.xdf_c00001{left:347.550000px;}
.x59_c00001{left:351.510000px;}
.x5a_c00001{left:352.950000px;}
.x1d_c00001{left:359.430000px;}
.x1e_c00001{left:360.870000px;}
.xe0_c00001{left:365.190000px;}
.xe1_c00001{left:366.630000px;}
.x1f_c00001{left:368.790000px;}
.x20_c00001{left:370.230000px;}
.x5b_c00001{left:372.750000px;}
.x5c_c00001{left:374.190000px;}
.xa5_c00001{left:375.270000px;}
.xa4_c00001{left:376.710000px;}
.xe2_c00001{left:379.950000px;}
.xe3_c00001{left:381.390000px;}
.x21_c00001{left:386.100000px;}
.x22_c00001{left:387.540000px;}
.xa6_c00001{left:388.620000px;}
.xa7_c00001{left:390.060000px;}
.x5d_c00001{left:391.140000px;}
.x5e_c00001{left:392.580000px;}
.xe4_c00001{left:403.020000px;}
.xe5_c00001{left:404.460000px;}
.x23_c00001{left:409.140000px;}
.x24_c00001{left:410.580000px;}
.x5f_c00001{left:412.380000px;}
.x60_c00001{left:413.820000px;}
.xe6_c00001{left:426.060000px;}
.x25_c00001{left:427.860000px;}
.x26_c00001{left:429.300000px;}
.xa8_c00001{left:430.740000px;}
.xa9_c00001{left:432.180000px;}
.x61_c00001{left:435.420000px;}
.x27_c00001{left:437.220000px;}
.x28_c00001{left:438.660000px;}
.x62_c00001{left:444.780000px;}
.x4f_c00001{left:446.580000px;}
.xaa_c00001{left:449.100000px;}
.xab_c00001{left:450.540000px;}
.xe7_c00001{left:455.220000px;}
.xe8_c00001{left:456.660000px;}
.x29_c00001{left:457.740000px;}
.x2a_c00001{left:459.180000px;}
.xfb_c00001{left:464.220000px;}
.xfc_c00001{left:465.660000px;}
.x63_c00001{left:467.130000px;}
.x64_c00001{left:468.570000px;}
.xac_c00001{left:470.370000px;}
.xad_c00001{left:471.810000px;}
.xe9_c00001{left:476.490000px;}
.x2b_c00001{left:478.650000px;}
.x2c_c00001{left:480.090000px;}
.x65_c00001{left:485.490000px;}
.x66_c00001{left:486.930000px;}
.xfd_c00001{left:489.810000px;}
.xae_c00001{left:490.890000px;}
.xaf_c00001{left:492.330000px;}
.x67_c00001{left:494.850000px;}
.x68_c00001{left:496.290000px;}
.x2d_c00001{left:497.730000px;}
.x2e_c00001{left:499.170000px;}
.xea_c00001{left:500.970000px;}
.x89_c00001{left:506.370000px;}
.x8a_c00001{left:507.810000px;}
.x88_c00001{left:509.250000px;}
.x69_c00001{left:512.130000px;}
.x6a_c00001{left:513.570000px;}
.x2f_c00001{left:516.090000px;}
.x30_c00001{left:517.530000px;}
.xc6_c00001{left:519.330000px;}
.xc5_c00001{left:520.770000px;}
.xeb_c00001{left:521.850000px;}
.xec_c00001{left:523.290000px;}
.x8b_c00001{left:527.250000px;}
.x8c_c00001{left:528.690000px;}
.xfe_c00001{left:531.210000px;}
.x6b_c00001{left:533.010000px;}
.x6c_c00001{left:534.450000px;}
.xb0_c00001{left:536.250000px;}
.x31_c00001{left:539.130000px;}
.x32_c00001{left:540.570000px;}
.xed_c00001{left:543.810000px;}
.xee_c00001{left:545.250000px;}
.xff_c00001{left:547.410000px;}
.x8d_c00001{left:550.290000px;}
.x6d_c00001{left:552.135000px;}
.x6e_c00001{left:553.575000px;}
.xb1_c00001{left:557.895000px;}
.xb2_c00001{left:559.335000px;}
.x33_c00001{left:562.215000px;}
.x34_c00001{left:563.655000px;}
.xef_c00001{left:564.735000px;}
.x100_c00001{left:566.535000px;}
.x101_c00001{left:567.975000px;}
.x8e_c00001{left:573.375000px;}
.x8f_c00001{left:574.815000px;}
.xb3_c00001{left:576.255000px;}
.xb4_c00001{left:577.695000px;}
.x35_c00001{left:580.575000px;}
.x36_c00001{left:582.015000px;}
.x90_c00001{left:588.135000px;}
.x91_c00001{left:589.575000px;}
.x102_c00001{left:591.015000px;}
.xb5_c00001{left:596.775000px;}
.xb6_c00001{left:598.215000px;}
.x37_c00001{left:599.655000px;}
.x38_c00001{left:601.095000px;}
.xf0_c00001{left:604.335000px;}
.xc7_c00001{left:605.775000px;}
.xc8_c00001{left:607.215000px;}
.x39_c00001{left:609.015000px;}
.x3a_c00001{left:610.455000px;}
.x6f_c00001{left:618.375000px;}
.x70_c00001{left:619.815000px;}
.xb7_c00001{left:622.335000px;}
.xb8_c00001{left:623.775000px;}
.xf1_c00001{left:624.855000px;}
.x3b_c00001{left:628.095000px;}
.x3c_c00001{left:629.535000px;}
.xb9_c00001{left:631.695000px;}
.xba_c00001{left:633.135000px;}
.xf2_c00001{left:634.215000px;}
.x71_c00001{left:636.765000px;}
.x72_c00001{left:638.205000px;}
.x103_c00001{left:640.365000px;}
.x104_c00001{left:641.805000px;}
.xc9_c00001{left:643.965000px;}
.xca_c00001{left:645.405000px;}
.x3d_c00001{left:646.485000px;}
.x3e_c00001{left:647.925000px;}
.xf3_c00001{left:650.085000px;}
.xf4_c00001{left:651.525000px;}
.xbb_c00001{left:654.045000px;}
.xbc_c00001{left:655.485000px;}
.x105_c00001{left:658.725000px;}
.x73_c00001{left:659.805000px;}
.x74_c00001{left:661.245000px;}
.x92_c00001{left:662.685000px;}
.x93_c00001{left:664.125000px;}
.x3f_c00001{left:668.445000px;}
.x40_c00001{left:669.885000px;}
.xf5_c00001{left:670.965000px;}
.xcb_c00001{left:673.125000px;}
.xcc_c00001{left:674.565000px;}
.xbd_c00001{left:677.085000px;}
.xbe_c00001{left:678.525000px;}
.x106_c00001{left:679.605000px;}
.x75_c00001{left:680.685000px;}
.x76_c00001{left:682.125000px;}
.x94_c00001{left:683.565000px;}
.x95_c00001{left:685.005000px;}
.x41_c00001{left:694.005000px;}
.x42_c00001{left:695.445000px;}
.x77_c00001{left:699.765000px;}
.x78_c00001{left:701.205000px;}
.xbf_c00001{left:702.645000px;}
.x96_c00001{left:704.805000px;}
.x97_c00001{left:706.245000px;}
.x79_c00001{left:709.125000px;}
.x7a_c00001{left:710.565000px;}
.x43_c00001{left:712.365000px;}
.x44_c00001{left:713.805000px;}
.xf6_c00001{left:718.125000px;}
.xf7_c00001{left:719.565000px;}
.xc0_c00001{left:721.005000px;}
.x98_c00001{left:723.210000px;}
.x99_c00001{left:724.650000px;}
.xcd_c00001{left:725.730000px;}
.xce_c00001{left:727.170000px;}
.x7b_c00001{left:731.490000px;}
.x7c_c00001{left:732.930000px;}
.x45_c00001{left:735.450000px;}
.x46_c00001{left:736.890000px;}
.x9a_c00001{left:737.970000px;}
.x9b_c00001{left:739.410000px;}
.xc1_c00001{left:741.570000px;}
.x107_c00001{left:743.370000px;}
.x108_c00001{left:744.810000px;}
.xcf_c00001{left:746.610000px;}
.xd0_c00001{left:748.050000px;}
.x7d_c00001{left:749.850000px;}
.x7e_c00001{left:751.290000px;}
.x9c_c00001{left:752.730000px;}
.x47_c00001{left:753.810000px;}
.x48_c00001{left:755.250000px;}
.xf8_c00001{left:757.770000px;}
.x7f_c00001{left:759.210000px;}
.x80_c00001{left:760.650000px;}
.x109_c00001{left:761.730000px;}
.x10a_c00001{left:763.170000px;}
.xd1_c00001{left:764.250000px;}
.xd2_c00001{left:765.690000px;}
.x9d_c00001{left:773.610000px;}
.x49_c00001{left:774.690000px;}
.x4a_c00001{left:776.130000px;}
.xf9_c00001{left:777.210000px;}
.x81_c00001{left:778.650000px;}
.x82_c00001{left:780.090000px;}
.x9e_c00001{left:790.890000px;}
.x9f_c00001{left:792.330000px;}
.xc2_c00001{left:794.130000px;}
.xfa_c00001{left:795.570000px;}
.x4b_c00001{left:797.010000px;}
.x4c_c00001{left:798.450000px;}
.x83_c00001{left:799.530000px;}
.x84_c00001{left:800.970000px;}
.xa0_c00001{left:805.650000px;}
.xa1_c00001{left:807.120000px;}
.x2_c00001{left:811.080000px;}
.xc3_c00001{left:813.240000px;}
.xc4_c00001{left:814.680000px;}
.x85_c00001{left:818.280000px;}
.x4d_c00001{left:820.080000px;}
.x4e_c00001{left:821.520000px;}
.x1_c00001{left:825.120000px;}
.xa2_c00001{left:826.200000px;}
.x86_c00001{left:838.080000px;}
.x4_c00001{left:839.160000px;}
.x5_c00001{left:840.600000px;}
.x3_c00001{left:842.040000px;}
@media print{
.v1_c00001{vertical-align:-5.120000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.lsa_c00001{letter-spacing:3.520000pt;}
.ls24_c00001{letter-spacing:3.648000pt;}
.ls1c_c00001{letter-spacing:4.192000pt;}
.ls14_c00001{letter-spacing:4.736000pt;}
.ls1f_c00001{letter-spacing:4.768000pt;}
.ls8_c00001{letter-spacing:4.800000pt;}
.ls6_c00001{letter-spacing:4.832000pt;}
.ls1d_c00001{letter-spacing:4.842667pt;}
.ls1_c00001{letter-spacing:4.864000pt;}
.ls23_c00001{letter-spacing:4.896000pt;}
.ls12_c00001{letter-spacing:4.906667pt;}
.lsb_c00001{letter-spacing:4.928000pt;}
.lsd_c00001{letter-spacing:4.938667pt;}
.ls13_c00001{letter-spacing:4.960000pt;}
.ls4_c00001{letter-spacing:4.970667pt;}
.lsf_c00001{letter-spacing:4.992000pt;}
.ls11_c00001{letter-spacing:5.024000pt;}
.ls19_c00001{letter-spacing:5.088000pt;}
.ls26_c00001{letter-spacing:5.098667pt;}
.ls21_c00001{letter-spacing:5.152000pt;}
.ls17_c00001{letter-spacing:5.184000pt;}
.ls22_c00001{letter-spacing:5.248000pt;}
.ls1b_c00001{letter-spacing:5.290667pt;}
.ls20_c00001{letter-spacing:5.312000pt;}
.lse_c00001{letter-spacing:5.344000pt;}
.ls16_c00001{letter-spacing:5.354667pt;}
.ls2_c00001{letter-spacing:5.408000pt;}
.ls3_c00001{letter-spacing:5.440000pt;}
.ls1a_c00001{letter-spacing:5.472000pt;}
.ls9_c00001{letter-spacing:5.514667pt;}
.ls10_c00001{letter-spacing:5.546667pt;}
.ls5_c00001{letter-spacing:5.568000pt;}
.ls7_c00001{letter-spacing:5.600000pt;}
.ls18_c00001{letter-spacing:5.674667pt;}
.ls15_c00001{letter-spacing:5.728000pt;}
.lsc_c00001{letter-spacing:5.888000pt;}
.ls25_c00001{letter-spacing:6.144000pt;}
.ls1e_c00001{letter-spacing:6.272000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
._5_c00001{margin-left:-40.000000pt;}
._7_c00001{margin-left:-35.573333pt;}
._6_c00001{margin-left:-32.586667pt;}
._8_c00001{margin-left:-20.746667pt;}
._2_c00001{margin-left:-18.720000pt;}
._9_c00001{margin-left:-14.826667pt;}
._3_c00001{margin-left:-11.840000pt;}
._4_c00001{margin-left:-2.986667pt;}
._0_c00001{width:735.541333pt;}
._1_c00001{width:746.357333pt;}
.fs2_c00001{font-size:53.333333pt;}
.fs0_c00001{font-size:64.000000pt;}
.fs1_c00001{font-size:96.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y79_c00001{bottom:11.840000pt;}
.y51_c00001{bottom:12.480000pt;}
.y52_c00001{bottom:12.800000pt;}
.y4e_c00001{bottom:37.120000pt;}
.y1_c00001{bottom:48.000000pt;}
.y9d_c00001{bottom:58.592000pt;}
.y9c_c00001{bottom:110.112000pt;}
.y9b_c00001{bottom:302.493333pt;}
.y9e_c00001{bottom:305.324133pt;}
.y9a_c00001{bottom:330.013333pt;}
.y99_c00001{bottom:357.533333pt;}
.y98_c00001{bottom:384.733333pt;}
.y97_c00001{bottom:412.293333pt;}
.y96_c00001{bottom:439.813333pt;}
.y4d_c00001{bottom:445.893333pt;}
.y95_c00001{bottom:467.333333pt;}
.y1e_c00001{bottom:470.533333pt;}
.y4c_c00001{bottom:473.413333pt;}
.y50_c00001{bottom:483.013333pt;}
.y94_c00001{bottom:494.853333pt;}
.y1d_c00001{bottom:499.653333pt;}
.y4b_c00001{bottom:500.933333pt;}
.y4a_c00001{bottom:502.213333pt;}
.y4f_c00001{bottom:510.560000pt;}
.y91_c00001{bottom:513.120000pt;}
.y93_c00001{bottom:514.400000pt;}
.y92_c00001{bottom:515.680000pt;}
.y47_c00001{bottom:536.800000pt;}
.y49_c00001{bottom:538.080000pt;}
.y48_c00001{bottom:539.360000pt;}
.y1a_c00001{bottom:558.240000pt;}
.y1c_c00001{bottom:559.520000pt;}
.y1b_c00001{bottom:560.800000pt;}
.y76_c00001{bottom:564.320000pt;}
.y78_c00001{bottom:565.600000pt;}
.y77_c00001{bottom:566.880000pt;}
.y44_c00001{bottom:573.920000pt;}
.y8e_c00001{bottom:574.240000pt;}
.y46_c00001{bottom:575.200000pt;}
.y90_c00001{bottom:575.520000pt;}
.y45_c00001{bottom:576.480000pt;}
.y8f_c00001{bottom:576.800000pt;}
.y73_c00001{bottom:601.440000pt;}
.y75_c00001{bottom:602.720000pt;}
.y74_c00001{bottom:604.000000pt;}
.y41_c00001{bottom:611.360000pt;}
.y43_c00001{bottom:612.640000pt;}
.y42_c00001{bottom:613.920000pt;}
.y17_c00001{bottom:619.386667pt;}
.y19_c00001{bottom:620.666667pt;}
.y18_c00001{bottom:621.946667pt;}
.y8b_c00001{bottom:635.386667pt;}
.y8d_c00001{bottom:636.666667pt;}
.y8c_c00001{bottom:637.946667pt;}
.y70_c00001{bottom:638.586667pt;}
.y72_c00001{bottom:639.866667pt;}
.y71_c00001{bottom:641.146667pt;}
.y3e_c00001{bottom:648.506667pt;}
.y40_c00001{bottom:649.786667pt;}
.y3f_c00001{bottom:651.066667pt;}
.y6d_c00001{bottom:676.026667pt;}
.y6f_c00001{bottom:677.306667pt;}
.y6e_c00001{bottom:678.586667pt;}
.y14_c00001{bottom:680.506667pt;}
.y16_c00001{bottom:681.786667pt;}
.y15_c00001{bottom:683.066667pt;}
.y3b_c00001{bottom:685.626667pt;}
.y3d_c00001{bottom:686.906667pt;}
.y3c_c00001{bottom:688.186667pt;}
.y88_c00001{bottom:696.506667pt;}
.y8a_c00001{bottom:697.786667pt;}
.y89_c00001{bottom:699.066667pt;}
.y6a_c00001{bottom:713.146667pt;}
.y6c_c00001{bottom:714.426667pt;}
.y6b_c00001{bottom:715.706667pt;}
.y38_c00001{bottom:722.746667pt;}
.y3a_c00001{bottom:724.026667pt;}
.y39_c00001{bottom:725.306667pt;}
.y11_c00001{bottom:741.666667pt;}
.y13_c00001{bottom:742.946667pt;}
.y12_c00001{bottom:744.226667pt;}
.y67_c00001{bottom:750.306667pt;}
.y69_c00001{bottom:751.586667pt;}
.y68_c00001{bottom:752.866667pt;}
.y85_c00001{bottom:757.666667pt;}
.y87_c00001{bottom:758.946667pt;}
.y35_c00001{bottom:759.906667pt;}
.y86_c00001{bottom:760.226667pt;}
.y37_c00001{bottom:761.186667pt;}
.y36_c00001{bottom:762.466667pt;}
.y64_c00001{bottom:787.426667pt;}
.y66_c00001{bottom:788.706667pt;}
.y65_c00001{bottom:789.986667pt;}
.y32_c00001{bottom:797.026667pt;}
.y34_c00001{bottom:798.306667pt;}
.y33_c00001{bottom:799.586667pt;}
.ye_c00001{bottom:802.786667pt;}
.y10_c00001{bottom:804.066667pt;}
.yf_c00001{bottom:805.346667pt;}
.y82_c00001{bottom:818.786667pt;}
.y84_c00001{bottom:820.066667pt;}
.y83_c00001{bottom:821.346667pt;}
.y61_c00001{bottom:824.546667pt;}
.y63_c00001{bottom:825.826667pt;}
.y62_c00001{bottom:827.106667pt;}
.y2f_c00001{bottom:834.146667pt;}
.y31_c00001{bottom:835.426667pt;}
.y30_c00001{bottom:836.706667pt;}
.y5f_c00001{bottom:861.693333pt;}
.y60_c00001{bottom:862.973333pt;}
.yb_c00001{bottom:864.253333pt;}
.yd_c00001{bottom:865.533333pt;}
.yc_c00001{bottom:866.813333pt;}
.y2c_c00001{bottom:871.613333pt;}
.y2e_c00001{bottom:872.893333pt;}
.y2d_c00001{bottom:874.173333pt;}
.y7f_c00001{bottom:880.253333pt;}
.y81_c00001{bottom:881.533333pt;}
.y80_c00001{bottom:882.813333pt;}
.y5c_c00001{bottom:898.813333pt;}
.y5e_c00001{bottom:900.093333pt;}
.y5d_c00001{bottom:901.373333pt;}
.y29_c00001{bottom:908.733333pt;}
.y2b_c00001{bottom:910.013333pt;}
.y2a_c00001{bottom:911.293333pt;}
.y8_c00001{bottom:925.373333pt;}
.ya_c00001{bottom:926.653333pt;}
.y9_c00001{bottom:927.933333pt;}
.y59_c00001{bottom:936.253333pt;}
.y5b_c00001{bottom:937.533333pt;}
.y5a_c00001{bottom:938.813333pt;}
.y7c_c00001{bottom:941.373333pt;}
.y7e_c00001{bottom:942.653333pt;}
.y7d_c00001{bottom:943.933333pt;}
.y26_c00001{bottom:945.853333pt;}
.y28_c00001{bottom:947.133333pt;}
.y27_c00001{bottom:948.413333pt;}
.y56_c00001{bottom:973.413333pt;}
.y58_c00001{bottom:974.693333pt;}
.y57_c00001{bottom:975.973333pt;}
.y23_c00001{bottom:983.013333pt;}
.y25_c00001{bottom:984.293333pt;}
.y24_c00001{bottom:985.573333pt;}
.y5_c00001{bottom:986.533333pt;}
.y7_c00001{bottom:987.813333pt;}
.y6_c00001{bottom:989.093333pt;}
.y7b_c00001{bottom:1003.493333pt;}
.y53_c00001{bottom:1010.533333pt;}
.y55_c00001{bottom:1011.813333pt;}
.y54_c00001{bottom:1013.093333pt;}
.y20_c00001{bottom:1020.133333pt;}
.y22_c00001{bottom:1021.413333pt;}
.y21_c00001{bottom:1022.693333pt;}
.y7a_c00001{bottom:1031.013333pt;}
.y2_c00001{bottom:1047.653333pt;}
.y4_c00001{bottom:1048.933333pt;}
.y3_c00001{bottom:1050.213333pt;}
.y1f_c00001{bottom:1058.533333pt;}
.h8_c00001{height:47.369792pt;}
.h3_c00001{height:64.031250pt;}
.h6_c00001{height:65.781915pt;}
.h4_c00001{height:96.046875pt;}
.h5_c00001{height:98.672872pt;}
.h7_c00001{height:1108.000000pt;}
.h1_c00001{height:1116.000000pt;}
.h2_c00001{height:1122.560000pt;}
.h0_c00001{height:1122.666667pt;}
.w4_c00001{width:783.153333pt;}
.w5_c00001{width:783.333333pt;}
.w2_c00001{width:789.333333pt;}
.w1_c00001{width:789.420000pt;}
.w0_c00001{width:793.333333pt;}
.w3_c00001{width:793.600000pt;}
.x0_c00001{left:0.000000pt;}
.xa3_c00001{left:48.032000pt;}
.x87_c00001{left:71.712000pt;}
.x7_c00001{left:132.224000pt;}
.x8_c00001{left:133.506667pt;}
.x6_c00001{left:134.786667pt;}
.x9_c00001{left:150.786667pt;}
.xa_c00001{left:152.066667pt;}
.xb_c00001{left:166.146667pt;}
.xc_c00001{left:167.426667pt;}
.xd_c00001{left:181.826667pt;}
.xe_c00001{left:183.106667pt;}
.xf_c00001{left:200.413333pt;}
.x10_c00001{left:201.693333pt;}
.xd4_c00001{left:204.893333pt;}
.xd5_c00001{left:206.173333pt;}
.xd3_c00001{left:207.453333pt;}
.x11_c00001{left:219.293333pt;}
.x12_c00001{left:220.573333pt;}
.xd6_c00001{left:224.733333pt;}
.xd7_c00001{left:226.013333pt;}
.x13_c00001{left:235.613333pt;}
.x14_c00001{left:236.893333pt;}
.xd8_c00001{left:237.853333pt;}
.xd9_c00001{left:239.133333pt;}
.x51_c00001{left:244.253333pt;}
.x52_c00001{left:245.533333pt;}
.x50_c00001{left:246.813333pt;}
.x15_c00001{left:254.493333pt;}
.x16_c00001{left:255.773333pt;}
.x53_c00001{left:262.813333pt;}
.x54_c00001{left:264.133333pt;}
.xda_c00001{left:272.453333pt;}
.xdb_c00001{left:273.733333pt;}
.x17_c00001{left:275.013333pt;}
.x18_c00001{left:276.293333pt;}
.x55_c00001{left:278.213333pt;}
.x56_c00001{left:279.493333pt;}
.x19_c00001{left:283.333333pt;}
.x1a_c00001{left:284.613333pt;}
.xdc_c00001{left:288.773333pt;}
.xdd_c00001{left:290.053333pt;}
.x57_c00001{left:293.893333pt;}
.x58_c00001{left:295.173333pt;}
.x10b_c00001{left:301.840267pt;}
.x1b_c00001{left:303.173333pt;}
.x1c_c00001{left:304.453333pt;}
.xde_c00001{left:307.653333pt;}
.xdf_c00001{left:308.933333pt;}
.x59_c00001{left:312.453333pt;}
.x5a_c00001{left:313.733333pt;}
.x1d_c00001{left:319.493333pt;}
.x1e_c00001{left:320.773333pt;}
.xe0_c00001{left:324.613333pt;}
.xe1_c00001{left:325.893333pt;}
.x1f_c00001{left:327.813333pt;}
.x20_c00001{left:329.093333pt;}
.x5b_c00001{left:331.333333pt;}
.x5c_c00001{left:332.613333pt;}
.xa5_c00001{left:333.573333pt;}
.xa4_c00001{left:334.853333pt;}
.xe2_c00001{left:337.733333pt;}
.xe3_c00001{left:339.013333pt;}
.x21_c00001{left:343.200000pt;}
.x22_c00001{left:344.480000pt;}
.xa6_c00001{left:345.440000pt;}
.xa7_c00001{left:346.720000pt;}
.x5d_c00001{left:347.680000pt;}
.x5e_c00001{left:348.960000pt;}
.xe4_c00001{left:358.240000pt;}
.xe5_c00001{left:359.520000pt;}
.x23_c00001{left:363.680000pt;}
.x24_c00001{left:364.960000pt;}
.x5f_c00001{left:366.560000pt;}
.x60_c00001{left:367.840000pt;}
.xe6_c00001{left:378.720000pt;}
.x25_c00001{left:380.320000pt;}
.x26_c00001{left:381.600000pt;}
.xa8_c00001{left:382.880000pt;}
.xa9_c00001{left:384.160000pt;}
.x61_c00001{left:387.040000pt;}
.x27_c00001{left:388.640000pt;}
.x28_c00001{left:389.920000pt;}
.x62_c00001{left:395.360000pt;}
.x4f_c00001{left:396.960000pt;}
.xaa_c00001{left:399.200000pt;}
.xab_c00001{left:400.480000pt;}
.xe7_c00001{left:404.640000pt;}
.xe8_c00001{left:405.920000pt;}
.x29_c00001{left:406.880000pt;}
.x2a_c00001{left:408.160000pt;}
.xfb_c00001{left:412.640000pt;}
.xfc_c00001{left:413.920000pt;}
.x63_c00001{left:415.226667pt;}
.x64_c00001{left:416.506667pt;}
.xac_c00001{left:418.106667pt;}
.xad_c00001{left:419.386667pt;}
.xe9_c00001{left:423.546667pt;}
.x2b_c00001{left:425.466667pt;}
.x2c_c00001{left:426.746667pt;}
.x65_c00001{left:431.546667pt;}
.x66_c00001{left:432.826667pt;}
.xfd_c00001{left:435.386667pt;}
.xae_c00001{left:436.346667pt;}
.xaf_c00001{left:437.626667pt;}
.x67_c00001{left:439.866667pt;}
.x68_c00001{left:441.146667pt;}
.x2d_c00001{left:442.426667pt;}
.x2e_c00001{left:443.706667pt;}
.xea_c00001{left:445.306667pt;}
.x89_c00001{left:450.106667pt;}
.x8a_c00001{left:451.386667pt;}
.x88_c00001{left:452.666667pt;}
.x69_c00001{left:455.226667pt;}
.x6a_c00001{left:456.506667pt;}
.x2f_c00001{left:458.746667pt;}
.x30_c00001{left:460.026667pt;}
.xc6_c00001{left:461.626667pt;}
.xc5_c00001{left:462.906667pt;}
.xeb_c00001{left:463.866667pt;}
.xec_c00001{left:465.146667pt;}
.x8b_c00001{left:468.666667pt;}
.x8c_c00001{left:469.946667pt;}
.xfe_c00001{left:472.186667pt;}
.x6b_c00001{left:473.786667pt;}
.x6c_c00001{left:475.066667pt;}
.xb0_c00001{left:476.666667pt;}
.x31_c00001{left:479.226667pt;}
.x32_c00001{left:480.506667pt;}
.xed_c00001{left:483.386667pt;}
.xee_c00001{left:484.666667pt;}
.xff_c00001{left:486.586667pt;}
.x8d_c00001{left:489.146667pt;}
.x6d_c00001{left:490.786667pt;}
.x6e_c00001{left:492.066667pt;}
.xb1_c00001{left:495.906667pt;}
.xb2_c00001{left:497.186667pt;}
.x33_c00001{left:499.746667pt;}
.x34_c00001{left:501.026667pt;}
.xef_c00001{left:501.986667pt;}
.x100_c00001{left:503.586667pt;}
.x101_c00001{left:504.866667pt;}
.x8e_c00001{left:509.666667pt;}
.x8f_c00001{left:510.946667pt;}
.xb3_c00001{left:512.226667pt;}
.xb4_c00001{left:513.506667pt;}
.x35_c00001{left:516.066667pt;}
.x36_c00001{left:517.346667pt;}
.x90_c00001{left:522.786667pt;}
.x91_c00001{left:524.066667pt;}
.x102_c00001{left:525.346667pt;}
.xb5_c00001{left:530.466667pt;}
.xb6_c00001{left:531.746667pt;}
.x37_c00001{left:533.026667pt;}
.x38_c00001{left:534.306667pt;}
.xf0_c00001{left:537.186667pt;}
.xc7_c00001{left:538.466667pt;}
.xc8_c00001{left:539.746667pt;}
.x39_c00001{left:541.346667pt;}
.x3a_c00001{left:542.626667pt;}
.x6f_c00001{left:549.666667pt;}
.x70_c00001{left:550.946667pt;}
.xb7_c00001{left:553.186667pt;}
.xb8_c00001{left:554.466667pt;}
.xf1_c00001{left:555.426667pt;}
.x3b_c00001{left:558.306667pt;}
.x3c_c00001{left:559.586667pt;}
.xb9_c00001{left:561.506667pt;}
.xba_c00001{left:562.786667pt;}
.xf2_c00001{left:563.746667pt;}
.x71_c00001{left:566.013333pt;}
.x72_c00001{left:567.293333pt;}
.x103_c00001{left:569.213333pt;}
.x104_c00001{left:570.493333pt;}
.xc9_c00001{left:572.413333pt;}
.xca_c00001{left:573.693333pt;}
.x3d_c00001{left:574.653333pt;}
.x3e_c00001{left:575.933333pt;}
.xf3_c00001{left:577.853333pt;}
.xf4_c00001{left:579.133333pt;}
.xbb_c00001{left:581.373333pt;}
.xbc_c00001{left:582.653333pt;}
.x105_c00001{left:585.533333pt;}
.x73_c00001{left:586.493333pt;}
.x74_c00001{left:587.773333pt;}
.x92_c00001{left:589.053333pt;}
.x93_c00001{left:590.333333pt;}
.x3f_c00001{left:594.173333pt;}
.x40_c00001{left:595.453333pt;}
.xf5_c00001{left:596.413333pt;}
.xcb_c00001{left:598.333333pt;}
.xcc_c00001{left:599.613333pt;}
.xbd_c00001{left:601.853333pt;}
.xbe_c00001{left:603.133333pt;}
.x106_c00001{left:604.093333pt;}
.x75_c00001{left:605.053333pt;}
.x76_c00001{left:606.333333pt;}
.x94_c00001{left:607.613333pt;}
.x95_c00001{left:608.893333pt;}
.x41_c00001{left:616.893333pt;}
.x42_c00001{left:618.173333pt;}
.x77_c00001{left:622.013333pt;}
.x78_c00001{left:623.293333pt;}
.xbf_c00001{left:624.573333pt;}
.x96_c00001{left:626.493333pt;}
.x97_c00001{left:627.773333pt;}
.x79_c00001{left:630.333333pt;}
.x7a_c00001{left:631.613333pt;}
.x43_c00001{left:633.213333pt;}
.x44_c00001{left:634.493333pt;}
.xf6_c00001{left:638.333333pt;}
.xf7_c00001{left:639.613333pt;}
.xc0_c00001{left:640.893333pt;}
.x98_c00001{left:642.853333pt;}
.x99_c00001{left:644.133333pt;}
.xcd_c00001{left:645.093333pt;}
.xce_c00001{left:646.373333pt;}
.x7b_c00001{left:650.213333pt;}
.x7c_c00001{left:651.493333pt;}
.x45_c00001{left:653.733333pt;}
.x46_c00001{left:655.013333pt;}
.x9a_c00001{left:655.973333pt;}
.x9b_c00001{left:657.253333pt;}
.xc1_c00001{left:659.173333pt;}
.x107_c00001{left:660.773333pt;}
.x108_c00001{left:662.053333pt;}
.xcf_c00001{left:663.653333pt;}
.xd0_c00001{left:664.933333pt;}
.x7d_c00001{left:666.533333pt;}
.x7e_c00001{left:667.813333pt;}
.x9c_c00001{left:669.093333pt;}
.x47_c00001{left:670.053333pt;}
.x48_c00001{left:671.333333pt;}
.xf8_c00001{left:673.573333pt;}
.x7f_c00001{left:674.853333pt;}
.x80_c00001{left:676.133333pt;}
.x109_c00001{left:677.093333pt;}
.x10a_c00001{left:678.373333pt;}
.xd1_c00001{left:679.333333pt;}
.xd2_c00001{left:680.613333pt;}
.x9d_c00001{left:687.653333pt;}
.x49_c00001{left:688.613333pt;}
.x4a_c00001{left:689.893333pt;}
.xf9_c00001{left:690.853333pt;}
.x81_c00001{left:692.133333pt;}
.x82_c00001{left:693.413333pt;}
.x9e_c00001{left:703.013333pt;}
.x9f_c00001{left:704.293333pt;}
.xc2_c00001{left:705.893333pt;}
.xfa_c00001{left:707.173333pt;}
.x4b_c00001{left:708.453333pt;}
.x4c_c00001{left:709.733333pt;}
.x83_c00001{left:710.693333pt;}
.x84_c00001{left:711.973333pt;}
.xa0_c00001{left:716.133333pt;}
.xa1_c00001{left:717.440000pt;}
.x2_c00001{left:720.960000pt;}
.xc3_c00001{left:722.880000pt;}
.xc4_c00001{left:724.160000pt;}
.x85_c00001{left:727.360000pt;}
.x4d_c00001{left:728.960000pt;}
.x4e_c00001{left:730.240000pt;}
.x1_c00001{left:733.440000pt;}
.xa2_c00001{left:734.400000pt;}
.x86_c00001{left:744.960000pt;}
.x4_c00001{left:745.920000pt;}
.x5_c00001{left:747.200000pt;}
.x3_c00001{left:748.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_885fd24f07cbc59b234ad81e.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:72.000000px;}
.y1_c00002{bottom:-15.480000px;}
.y0_c00002{bottom:0.000000px;}
.h2_c00002{height:54.000000px;}
.h0_c00002{height:1262.880000px;}
.h1_c00002{height:1263.000000px;}
.w1_c00002{width:892.500000px;}
.w0_c00002{width:892.800000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:859.680000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs0_c00002{font-size:64.000000pt;}
.y1_c00002{bottom:-13.760000pt;}
.y0_c00002{bottom:0.000000pt;}
.h2_c00002{height:48.000000pt;}
.h0_c00002{height:1122.560000pt;}
.h1_c00002{height:1122.666667pt;}
.w1_c00002{width:793.333333pt;}
.w0_c00002{width:793.600000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:764.160000pt;}
}




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