
    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 {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_3684e17aad1bd8f60a631229.woff')format("woff");}.ff1{font-family:ff1;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;src:url('chunks/assets/font_5f5e351a99bca3901b587c84.woff')format("woff");}.ff2{font-family:ff2;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;src:url('chunks/assets/font_52f3d9586f1d06890e86a2b7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_63771173fc12e5d5e156626c.woff')format("woff");}.ff4{font-family:ff4;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;src:url('chunks/assets/font_dc9d3712758f9d9b9e82b8e8.woff')format("woff");}.ff5{font-family:ff5;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;src:url('chunks/assets/font_71ab3acc0940dc67e939d571.woff')format("woff");}.ff6{font-family:ff6;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;src:url('chunks/assets/font_bbb0bcab8bc092c69a62962f.woff')format("woff");}.ff7{font-family:ff7;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;src:url('chunks/assets/font_774827d402f13a2f0cee95de.woff')format("woff");}.ff8{font-family:ff8;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;src:url('chunks/assets/font_dc9d3712758f9d9b9e82b8e8.woff')format("woff");}.ff9{font-family:ff9;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;src:url('chunks/assets/font_e32d860d9cf75eb55e3fefd2.woff')format("woff");}.ffa{font-family:ffa;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;src:url('chunks/assets/font_e361680cf8363fd4acfdf4d5.woff')format("woff");}.ffb{font-family:ffb;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;src:url('chunks/assets/font_dc9d3712758f9d9b9e82b8e8.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f0b3b8360e5c7e2ae522baac.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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{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{vertical-align:-79.212000px;}
.v1{vertical-align:-66.306000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.285000px;}
.ls7{letter-spacing:0.899400px;}
.ls2{letter-spacing:1.080000px;}
.ls6{letter-spacing:2.400000px;}
.ls0{letter-spacing:3.194400px;}
.ls5{letter-spacing:4.176000px;}
.ls8{letter-spacing:7.338000px;}
.ls4{letter-spacing:8.838000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.250000px;}
.ws4{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.148500px;}
.ws7{word-spacing:-8.398500px;}
.ws6{word-spacing:-0.033594px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-14.748000px;}
._d{margin-left:-13.452000px;}
._b{margin-left:-12.024000px;}
._10{margin-left:-10.608000px;}
._9{margin-left:-8.784000px;}
._a{margin-left:-7.704000px;}
._3{margin-left:-6.048000px;}
._e{margin-left:-4.116000px;}
._5{margin-left:-3.108000px;}
._1{margin-left:-1.428000px;}
._0{width:1.680000px;}
._4{width:2.688000px;}
._6{width:4.032000px;}
._7{width:5.124000px;}
._2{width:6.216000px;}
._8{width:7.224000px;}
._11{width:9.060000px;}
._f{width:10.212000px;}
._12{width:11.628000px;}
._17{width:13.080000px;}
._1a{width:14.592000px;}
._19{width:15.864000px;}
._14{width:19.680000px;}
._13{width:21.864000px;}
._15{width:27.168000px;}
._16{width:45.300000px;}
._c{width:50.472000px;}
._1c{width:321.672000px;}
._1b{width:404.940000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.594000px;}
.fs2{font-size:36.594000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:9.375000px;}
.yd4{bottom:26.325000px;}
.yaf{bottom:55.051500px;}
.y66{bottom:67.725000px;}
.yae{bottom:72.000000px;}
.y3a{bottom:87.450000px;}
.yad{bottom:88.875000px;}
.y91{bottom:107.625000px;}
.y65{bottom:114.151500px;}
.y12{bottom:119.175000px;}
.yac{bottom:122.400000px;}
.y64{bottom:131.776500px;}
.y39{bottom:132.453000px;}
.y63{bottom:149.100000px;}
.y38{bottom:149.403000px;}
.y90{bottom:153.751500px;}
.y37{bottom:165.903000px;}
.y62{bottom:166.350000px;}
.y8f{bottom:169.201500px;}
.yab{bottom:172.803000px;}
.y36{bottom:182.476500px;}
.y61{bottom:183.975000px;}
.y8e{bottom:186.075000px;}
.yaa{bottom:189.376500px;}
.y35{bottom:198.675000px;}
.y60{bottom:201.300000px;}
.y8d{bottom:202.650000px;}
.ya9{bottom:206.251500px;}
.yd3{bottom:213.151500px;}
.y5f{bottom:218.925000px;}
.y8c{bottom:219.225000px;}
.yd2{bottom:227.926500px;}
.y34{bottom:233.250000px;}
.y5e{bottom:235.800000px;}
.ya8{bottom:239.401500px;}
.yd1{bottom:244.501500px;}
.y8b{bottom:252.000000px;}
.y5d{bottom:253.125000px;}
.ya7{bottom:256.276500px;}
.yd0{bottom:261.001500px;}
.y8a{bottom:270.376500px;}
.y5c{bottom:271.131000px;}
.ya6{bottom:272.851500px;}
.ycf{bottom:277.950000px;}
.y33{bottom:283.275000px;}
.y89{bottom:285.825000px;}
.y5b{bottom:287.706000px;}
.ya5{bottom:289.801500px;}
.yce{bottom:294.525000px;}
.y32{bottom:298.425000px;}
.y88{bottom:302.400000px;}
.y5a{bottom:304.956000px;}
.ya4{bottom:306.376500px;}
.ycd{bottom:311.400000px;}
.y31{bottom:316.051500px;}
.y87{bottom:318.975000px;}
.y59{bottom:321.904500px;}
.ya3{bottom:322.876500px;}
.ycc{bottom:327.975000px;}
.y30{bottom:332.250000px;}
.y86{bottom:335.850000px;}
.y58{bottom:339.154500px;}
.ya2{bottom:339.450000px;}
.ycb{bottom:344.550000px;}
.y2f{bottom:348.825000px;}
.y85{bottom:352.425000px;}
.ya1{bottom:356.400000px;}
.y57{bottom:356.404500px;}
.yca{bottom:360.375000px;}
.y2e{bottom:365.025000px;}
.y84{bottom:368.625000px;}
.y56{bottom:373.654500px;}
.yc9{bottom:381.601650px;}
.y2d{bottom:382.278000px;}
.y83{bottom:388.056000px;}
.y55{bottom:390.603000px;}
.yc8{bottom:393.901500px;}
.y2c{bottom:398.853000px;}
.y82{bottom:402.456000px;}
.ya0{bottom:405.675000px;}
.y54{bottom:407.551500px;}
.yc7{bottom:410.401500px;}
.y2b{bottom:415.426500px;}
.y81{bottom:419.031000px;}
.y53{bottom:424.500000px;}
.yc6{bottom:426.976500px;}
.y2a{bottom:432.000000px;}
.y80{bottom:435.604500px;}
.y52{bottom:441.753000px;}
.yc5{bottom:443.175000px;}
.y29{bottom:448.200000px;}
.y7f{bottom:452.553000px;}
.y11{bottom:455.403000px;}
.y51{bottom:458.328000px;}
.yc4{bottom:462.307500px;}
.y28{bottom:468.309150px;}
.y7e{bottom:468.678000px;}
.y10{bottom:472.351500px;}
.y50{bottom:474.826500px;}
.yc3{bottom:476.332500px;}
.y27{bottom:481.659000px;}
.y7d{bottom:485.251500px;}
.yf{bottom:488.551500px;}
.y4f{bottom:491.776500px;}
.yc2{bottom:492.906000px;}
.y26{bottom:498.232500px;}
.y7c{bottom:501.825000px;}
.ye{bottom:504.750000px;}
.y4e{bottom:508.726500px;}
.yc1{bottom:509.406000px;}
.y25{bottom:514.807500px;}
.y7b{bottom:518.400000px;}
.y9f{bottom:521.254500px;}
.yd{bottom:521.325000px;}
.y4d{bottom:525.300000px;}
.yc0{bottom:525.979500px;}
.y24{bottom:531.682500px;}
.y7a{bottom:536.778000px;}
.yc{bottom:537.825000px;}
.y9e{bottom:537.829500px;}
.ybf{bottom:542.553000px;}
.y4c{bottom:542.554500px;}
.y23{bottom:548.256000px;}
.y79{bottom:551.851500px;}
.y9d{bottom:554.403000px;}
.ybe{bottom:559.126500px;}
.y4b{bottom:559.128000px;}
.y22{bottom:565.131000px;}
.y78{bottom:568.050000px;}
.yb{bottom:570.975000px;}
.y9c{bottom:570.978000px;}
.ybd{bottom:575.701500px;}
.y4a{bottom:575.703000px;}
.y21{bottom:581.704500px;}
.y9b{bottom:587.176500px;}
.y77{bottom:587.179650px;}
.y49{bottom:592.578000px;}
.y20{bottom:598.278000px;}
.y76{bottom:601.954500px;}
.y9a{bottom:603.375000px;}
.y48{bottom:609.151500px;}
.ybc{bottom:611.703000px;}
.y1f{bottom:615.226500px;}
.y75{bottom:618.454500px;}
.y99{bottom:619.875000px;}
.ya{bottom:620.325000px;}
.ybb{bottom:624.978000px;}
.y47{bottom:625.726500px;}
.y1e{bottom:631.801500px;}
.y74{bottom:635.029500px;}
.y98{bottom:636.075000px;}
.y9{bottom:636.825000px;}
.yba{bottom:641.551500px;}
.y46{bottom:642.300000px;}
.y1d{bottom:648.301500px;}
.y73{bottom:651.978000px;}
.y97{bottom:652.653000px;}
.y8{bottom:653.025000px;}
.yb9{bottom:658.125000px;}
.y45{bottom:658.803000px;}
.y1c{bottom:664.875000px;}
.y72{bottom:668.553000px;}
.y96{bottom:669.228000px;}
.y7{bottom:669.600000px;}
.yb8{bottom:674.325000px;}
.y44{bottom:675.378000px;}
.y1b{bottom:683.626500px;}
.y71{bottom:685.053000px;}
.y95{bottom:685.426500px;}
.y6{bottom:686.175000px;}
.yb7{bottom:691.200000px;}
.y43{bottom:691.951500px;}
.y1a{bottom:698.401500px;}
.y94{bottom:701.625000px;}
.y70{bottom:701.626500px;}
.y5{bottom:702.750000px;}
.yb6{bottom:707.100000px;}
.y42{bottom:708.150000px;}
.y19{bottom:714.901500px;}
.y93{bottom:718.200000px;}
.y6f{bottom:718.575000px;}
.yb5{bottom:724.728000px;}
.y41{bottom:724.800000px;}
.y18{bottom:731.100000px;}
.y6e{bottom:734.400000px;}
.yb4{bottom:740.551500px;}
.y40{bottom:741.300000px;}
.y17{bottom:749.101500px;}
.y92{bottom:750.600000px;}
.y6d{bottom:752.029500px;}
.y4{bottom:752.776500px;}
.yb3{bottom:756.750000px;}
.y3f{bottom:757.800000px;}
.y16{bottom:765.000000px;}
.y6c{bottom:768.603000px;}
.y3e{bottom:772.951500px;}
.yb2{bottom:773.325000px;}
.y3{bottom:775.126500px;}
.y15{bottom:781.500000px;}
.y6b{bottom:785.176500px;}
.y3d{bottom:790.201500px;}
.y2{bottom:797.400000px;}
.y6a{bottom:801.750000px;}
.y3c{bottom:806.400000px;}
.y69{bottom:817.950000px;}
.y1{bottom:820.125000px;}
.yb1{bottom:820.800000px;}
.y14{bottom:833.700000px;}
.y68{bottom:837.750000px;}
.y3b{bottom:851.775000px;}
.y13{bottom:878.700000px;}
.y67{bottom:898.950000px;}
.h8{height:41.220703px;}
.h4{height:42.328125px;}
.h3{height:44.165039px;}
.h5{height:47.085938px;}
.h7{height:47.109375px;}
.h6{height:70.664062px;}
.h2{height:82.441406px;}
.he{height:779.025000px;}
.hf{height:779.250000px;}
.h11{height:861.000000px;}
.h10{height:861.150000px;}
.hb{height:927.750000px;}
.h9{height:983.850000px;}
.ha{height:984.000000px;}
.hc{height:997.200000px;}
.hd{height:997.500000px;}
.h0{height:1017.375000px;}
.h1{height:1017.750000px;}
.wa{width:564.750000px;}
.w9{width:564.825000px;}
.w3{width:617.025000px;}
.w4{width:617.250000px;}
.w8{width:627.750000px;}
.w7{width:627.825000px;}
.w6{width:641.250000px;}
.w5{width:641.550000px;}
.w1{width:641.850000px;}
.w2{width:642.000000px;}
.w0{width:692.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.625000px;}
.x1d{left:10.050000px;}
.x37{left:20.551500px;}
.x36{left:21.601500px;}
.x34{left:22.650000px;}
.x33{left:23.775000px;}
.x31{left:24.825000px;}
.x2f{left:33.825000px;}
.x2e{left:35.250000px;}
.x2d{left:36.376500px;}
.x2c{left:37.426500px;}
.x2a{left:39.975000px;}
.x29{left:41.025000px;}
.x1c{left:49.650000px;}
.x1b{left:50.775000px;}
.x1e{left:51.823500px;}
.x35{left:64.800000px;}
.x32{left:66.600000px;}
.x4{left:69.150000px;}
.x7{left:70.200015px;}
.x2{left:72.000000px;}
.x27{left:74.551500px;}
.x25{left:75.600000px;}
.x23{left:76.651500px;}
.x21{left:77.776500px;}
.x17{left:78.825000px;}
.x15{left:79.950000px;}
.x13{left:81.375000px;}
.x10{left:82.425000px;}
.xf{left:84.225000px;}
.xe{left:85.350000px;}
.xc{left:86.776500px;}
.x1{left:87.823500px;}
.xa{left:88.948500px;}
.x2b{left:97.200000px;}
.x6{left:111.975000px;}
.x26{left:116.625000px;}
.x24{left:118.425000px;}
.x22{left:120.225000px;}
.x16{left:121.350000px;}
.x14{left:122.773500px;}
.x12{left:124.575000px;}
.x11{left:126.000000px;}
.xd{left:128.850000px;}
.xb{left:130.350000px;}
.x19{left:135.000000px;}
.x3{left:174.225000px;}
.x30{left:243.000000px;}
.x1f{left:261.750000px;}
.x38{left:264.225000px;}
.x5{left:284.025000px;}
.x20{left:301.350000px;}
.x9{left:309.975000px;}
.x8{left:318.225000px;}
.x28{left:320.025000px;}
.x18{left:325.035000px;}
@media print{
.v2{vertical-align:-70.410667pt;}
.v1{vertical-align:-58.938667pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.253333pt;}
.ls7{letter-spacing:0.799467pt;}
.ls2{letter-spacing:0.960000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls0{letter-spacing:2.839467pt;}
.ls5{letter-spacing:3.712000pt;}
.ls8{letter-spacing:6.522667pt;}
.ls4{letter-spacing:7.856000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.000000pt;}
.ws4{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.132000pt;}
.ws7{word-spacing:-7.465333pt;}
.ws6{word-spacing:-0.029861pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-13.109333pt;}
._d{margin-left:-11.957333pt;}
._b{margin-left:-10.688000pt;}
._10{margin-left:-9.429333pt;}
._9{margin-left:-7.808000pt;}
._a{margin-left:-6.848000pt;}
._3{margin-left:-5.376000pt;}
._e{margin-left:-3.658667pt;}
._5{margin-left:-2.762667pt;}
._1{margin-left:-1.269333pt;}
._0{width:1.493333pt;}
._4{width:2.389333pt;}
._6{width:3.584000pt;}
._7{width:4.554667pt;}
._2{width:5.525333pt;}
._8{width:6.421333pt;}
._11{width:8.053333pt;}
._f{width:9.077333pt;}
._12{width:10.336000pt;}
._17{width:11.626667pt;}
._1a{width:12.970667pt;}
._19{width:14.101333pt;}
._14{width:17.493333pt;}
._13{width:19.434667pt;}
._15{width:24.149333pt;}
._16{width:40.266667pt;}
._c{width:44.864000pt;}
._1c{width:285.930667pt;}
._1b{width:359.946667pt;}
.fs6{font-size:29.861333pt;}
.fs2{font-size:32.528000pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:8.333333pt;}
.yd4{bottom:23.400000pt;}
.yaf{bottom:48.934667pt;}
.y66{bottom:60.200000pt;}
.yae{bottom:64.000000pt;}
.y3a{bottom:77.733333pt;}
.yad{bottom:79.000000pt;}
.y91{bottom:95.666667pt;}
.y65{bottom:101.468000pt;}
.y12{bottom:105.933333pt;}
.yac{bottom:108.800000pt;}
.y64{bottom:117.134667pt;}
.y39{bottom:117.736000pt;}
.y63{bottom:132.533333pt;}
.y38{bottom:132.802667pt;}
.y90{bottom:136.668000pt;}
.y37{bottom:147.469333pt;}
.y62{bottom:147.866667pt;}
.y8f{bottom:150.401333pt;}
.yab{bottom:153.602667pt;}
.y36{bottom:162.201333pt;}
.y61{bottom:163.533333pt;}
.y8e{bottom:165.400000pt;}
.yaa{bottom:168.334667pt;}
.y35{bottom:176.600000pt;}
.y60{bottom:178.933333pt;}
.y8d{bottom:180.133333pt;}
.ya9{bottom:183.334667pt;}
.yd3{bottom:189.468000pt;}
.y5f{bottom:194.600000pt;}
.y8c{bottom:194.866667pt;}
.yd2{bottom:202.601333pt;}
.y34{bottom:207.333333pt;}
.y5e{bottom:209.600000pt;}
.ya8{bottom:212.801333pt;}
.yd1{bottom:217.334667pt;}
.y8b{bottom:224.000000pt;}
.y5d{bottom:225.000000pt;}
.ya7{bottom:227.801333pt;}
.yd0{bottom:232.001333pt;}
.y8a{bottom:240.334667pt;}
.y5c{bottom:241.005333pt;}
.ya6{bottom:242.534667pt;}
.ycf{bottom:247.066667pt;}
.y33{bottom:251.800000pt;}
.y89{bottom:254.066667pt;}
.y5b{bottom:255.738667pt;}
.ya5{bottom:257.601333pt;}
.yce{bottom:261.800000pt;}
.y32{bottom:265.266667pt;}
.y88{bottom:268.800000pt;}
.y5a{bottom:271.072000pt;}
.ya4{bottom:272.334667pt;}
.ycd{bottom:276.800000pt;}
.y31{bottom:280.934667pt;}
.y87{bottom:283.533333pt;}
.y59{bottom:286.137333pt;}
.ya3{bottom:287.001333pt;}
.ycc{bottom:291.533333pt;}
.y30{bottom:295.333333pt;}
.y86{bottom:298.533333pt;}
.y58{bottom:301.470667pt;}
.ya2{bottom:301.733333pt;}
.ycb{bottom:306.266667pt;}
.y2f{bottom:310.066667pt;}
.y85{bottom:313.266667pt;}
.ya1{bottom:316.800000pt;}
.y57{bottom:316.804000pt;}
.yca{bottom:320.333333pt;}
.y2e{bottom:324.466667pt;}
.y84{bottom:327.666667pt;}
.y56{bottom:332.137333pt;}
.yc9{bottom:339.201467pt;}
.y2d{bottom:339.802667pt;}
.y83{bottom:344.938667pt;}
.y55{bottom:347.202667pt;}
.yc8{bottom:350.134667pt;}
.y2c{bottom:354.536000pt;}
.y82{bottom:357.738667pt;}
.ya0{bottom:360.600000pt;}
.y54{bottom:362.268000pt;}
.yc7{bottom:364.801333pt;}
.y2b{bottom:369.268000pt;}
.y81{bottom:372.472000pt;}
.y53{bottom:377.333333pt;}
.yc6{bottom:379.534667pt;}
.y2a{bottom:384.000000pt;}
.y80{bottom:387.204000pt;}
.y52{bottom:392.669333pt;}
.yc5{bottom:393.933333pt;}
.y29{bottom:398.400000pt;}
.y7f{bottom:402.269333pt;}
.y11{bottom:404.802667pt;}
.y51{bottom:407.402667pt;}
.yc4{bottom:410.940000pt;}
.y28{bottom:416.274800pt;}
.y7e{bottom:416.602667pt;}
.y10{bottom:419.868000pt;}
.y50{bottom:422.068000pt;}
.yc3{bottom:423.406667pt;}
.y27{bottom:428.141333pt;}
.y7d{bottom:431.334667pt;}
.yf{bottom:434.268000pt;}
.y4f{bottom:437.134667pt;}
.yc2{bottom:438.138667pt;}
.y26{bottom:442.873333pt;}
.y7c{bottom:446.066667pt;}
.ye{bottom:448.666667pt;}
.y4e{bottom:452.201333pt;}
.yc1{bottom:452.805333pt;}
.y25{bottom:457.606667pt;}
.y7b{bottom:460.800000pt;}
.y9f{bottom:463.337333pt;}
.yd{bottom:463.400000pt;}
.y4d{bottom:466.933333pt;}
.yc0{bottom:467.537333pt;}
.y24{bottom:472.606667pt;}
.y7a{bottom:477.136000pt;}
.yc{bottom:478.066667pt;}
.y9e{bottom:478.070667pt;}
.ybf{bottom:482.269333pt;}
.y4c{bottom:482.270667pt;}
.y23{bottom:487.338667pt;}
.y79{bottom:490.534667pt;}
.y9d{bottom:492.802667pt;}
.ybe{bottom:497.001333pt;}
.y4b{bottom:497.002667pt;}
.y22{bottom:502.338667pt;}
.y78{bottom:504.933333pt;}
.yb{bottom:507.533333pt;}
.y9c{bottom:507.536000pt;}
.ybd{bottom:511.734667pt;}
.y4a{bottom:511.736000pt;}
.y21{bottom:517.070667pt;}
.y9b{bottom:521.934667pt;}
.y77{bottom:521.937467pt;}
.y49{bottom:526.736000pt;}
.y20{bottom:531.802667pt;}
.y76{bottom:535.070667pt;}
.y9a{bottom:536.333333pt;}
.y48{bottom:541.468000pt;}
.ybc{bottom:543.736000pt;}
.y1f{bottom:546.868000pt;}
.y75{bottom:549.737333pt;}
.y99{bottom:551.000000pt;}
.ya{bottom:551.400000pt;}
.ybb{bottom:555.536000pt;}
.y47{bottom:556.201333pt;}
.y1e{bottom:561.601333pt;}
.y74{bottom:564.470667pt;}
.y98{bottom:565.400000pt;}
.y9{bottom:566.066667pt;}
.yba{bottom:570.268000pt;}
.y46{bottom:570.933333pt;}
.y1d{bottom:576.268000pt;}
.y73{bottom:579.536000pt;}
.y97{bottom:580.136000pt;}
.y8{bottom:580.466667pt;}
.yb9{bottom:585.000000pt;}
.y45{bottom:585.602667pt;}
.y1c{bottom:591.000000pt;}
.y72{bottom:594.269333pt;}
.y96{bottom:594.869333pt;}
.y7{bottom:595.200000pt;}
.yb8{bottom:599.400000pt;}
.y44{bottom:600.336000pt;}
.y1b{bottom:607.668000pt;}
.y71{bottom:608.936000pt;}
.y95{bottom:609.268000pt;}
.y6{bottom:609.933333pt;}
.yb7{bottom:614.400000pt;}
.y43{bottom:615.068000pt;}
.y1a{bottom:620.801333pt;}
.y94{bottom:623.666667pt;}
.y70{bottom:623.668000pt;}
.y5{bottom:624.666667pt;}
.yb6{bottom:628.533333pt;}
.y42{bottom:629.466667pt;}
.y19{bottom:635.468000pt;}
.y93{bottom:638.400000pt;}
.y6f{bottom:638.733333pt;}
.yb5{bottom:644.202667pt;}
.y41{bottom:644.266667pt;}
.y18{bottom:649.866667pt;}
.y6e{bottom:652.800000pt;}
.yb4{bottom:658.268000pt;}
.y40{bottom:658.933333pt;}
.y17{bottom:665.868000pt;}
.y92{bottom:667.200000pt;}
.y6d{bottom:668.470667pt;}
.y4{bottom:669.134667pt;}
.yb3{bottom:672.666667pt;}
.y3f{bottom:673.600000pt;}
.y16{bottom:680.000000pt;}
.y6c{bottom:683.202667pt;}
.y3e{bottom:687.068000pt;}
.yb2{bottom:687.400000pt;}
.y3{bottom:689.001333pt;}
.y15{bottom:694.666667pt;}
.y6b{bottom:697.934667pt;}
.y3d{bottom:702.401333pt;}
.y2{bottom:708.800000pt;}
.y6a{bottom:712.666667pt;}
.y3c{bottom:716.800000pt;}
.y69{bottom:727.066667pt;}
.y1{bottom:729.000000pt;}
.yb1{bottom:729.600000pt;}
.y14{bottom:741.066667pt;}
.y68{bottom:744.666667pt;}
.y3b{bottom:757.133333pt;}
.y13{bottom:781.066667pt;}
.y67{bottom:799.066667pt;}
.h8{height:36.640625pt;}
.h4{height:37.625000pt;}
.h3{height:39.257812pt;}
.h5{height:41.854167pt;}
.h7{height:41.875000pt;}
.h6{height:62.812500pt;}
.h2{height:73.281250pt;}
.he{height:692.466667pt;}
.hf{height:692.666667pt;}
.h11{height:765.333333pt;}
.h10{height:765.466667pt;}
.hb{height:824.666667pt;}
.h9{height:874.533333pt;}
.ha{height:874.666667pt;}
.hc{height:886.400000pt;}
.hd{height:886.666667pt;}
.h0{height:904.333333pt;}
.h1{height:904.666667pt;}
.wa{width:502.000000pt;}
.w9{width:502.066667pt;}
.w3{width:548.466667pt;}
.w4{width:548.666667pt;}
.w8{width:558.000000pt;}
.w7{width:558.066667pt;}
.w6{width:570.000000pt;}
.w5{width:570.266667pt;}
.w1{width:570.533333pt;}
.w2{width:570.666667pt;}
.w0{width:615.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:7.666667pt;}
.x1d{left:8.933333pt;}
.x37{left:18.268000pt;}
.x36{left:19.201333pt;}
.x34{left:20.133333pt;}
.x33{left:21.133333pt;}
.x31{left:22.066667pt;}
.x2f{left:30.066667pt;}
.x2e{left:31.333333pt;}
.x2d{left:32.334667pt;}
.x2c{left:33.268000pt;}
.x2a{left:35.533333pt;}
.x29{left:36.466667pt;}
.x1c{left:44.133333pt;}
.x1b{left:45.133333pt;}
.x1e{left:46.065333pt;}
.x35{left:57.600000pt;}
.x32{left:59.200000pt;}
.x4{left:61.466667pt;}
.x7{left:62.400013pt;}
.x2{left:64.000000pt;}
.x27{left:66.268000pt;}
.x25{left:67.200000pt;}
.x23{left:68.134667pt;}
.x21{left:69.134667pt;}
.x17{left:70.066667pt;}
.x15{left:71.066667pt;}
.x13{left:72.333333pt;}
.x10{left:73.266667pt;}
.xf{left:74.866667pt;}
.xe{left:75.866667pt;}
.xc{left:77.134667pt;}
.x1{left:78.065333pt;}
.xa{left:79.065333pt;}
.x2b{left:86.400000pt;}
.x6{left:99.533333pt;}
.x26{left:103.666667pt;}
.x24{left:105.266667pt;}
.x22{left:106.866667pt;}
.x16{left:107.866667pt;}
.x14{left:109.132000pt;}
.x12{left:110.733333pt;}
.x11{left:112.000000pt;}
.xd{left:114.533333pt;}
.xb{left:115.866667pt;}
.x19{left:120.000000pt;}
.x3{left:154.866667pt;}
.x30{left:216.000000pt;}
.x1f{left:232.666667pt;}
.x38{left:234.866667pt;}
.x5{left:252.466667pt;}
.x20{left:267.866667pt;}
.x9{left:275.533333pt;}
.x8{left:282.866667pt;}
.x28{left:284.466667pt;}
.x18{left:288.920000pt;}
}

