
    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_fe928288535efaa2cbabd9b7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;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_fe928288535efaa2cbabd9b7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;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_9963db6c6c1f572094fbaf5b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.701000;font-style:normal;font-weight:normal;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_c57cbc3809e366b6b281f1a5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.712000;font-style:normal;font-weight:normal;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_789df1f161c2d564101925f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;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_cf70f67af7ddb503421e6cad.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;font-style:normal;font-weight:normal;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_c08390d2e0407347a7997e67.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;font-style:normal;font-weight: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_b8407e61f0bead32e28032cd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893000;font-style: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);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1d{letter-spacing:-1.134000px;}
.ls13{letter-spacing:-0.530640px;}
.ls17{letter-spacing:-0.478080px;}
.ls1b{letter-spacing:-0.418320px;}
.lsf{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.358560px;}
.ls14{letter-spacing:-0.337680px;}
.ls1e{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.241200px;}
.lsa{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.191520px;}
.ls18{letter-spacing:-0.119520px;}
.lsd{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.059760px;}
.ls6{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.119520px;}
.ls16{letter-spacing:0.179280px;}
.ls15{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.274896px;}
.ls19{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.358560px;}
.lse{letter-spacing:0.378000px;}
.ls1a{letter-spacing:0.896400px;}
.ls2{letter-spacing:15.119400px;}
.ls5{letter-spacing:15.120000px;}
.ls0{letter-spacing:15.298560px;}
.ls3{letter-spacing:20.448000px;}
.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;}
}
.ws1{word-spacing:-26.621280px;}
.ws3b{word-spacing:-20.304000px;}
.wsc{word-spacing:-19.944000px;}
.ws39{word-spacing:-19.800000px;}
.ws6a{word-spacing:-15.298560px;}
.ws7{word-spacing:-15.059520px;}
.ws4{word-spacing:-14.940000px;}
.ws38{word-spacing:-14.880240px;}
.ws3a{word-spacing:-14.820480px;}
.ws36{word-spacing:-14.700960px;}
.ws3{word-spacing:-14.581440px;}
.wsd{word-spacing:-13.878000px;}
.ws6d{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.122000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.000000px;}
.ws5d{word-spacing:-0.358560px;}
.ws75{word-spacing:-0.324000px;}
.ws7a{word-spacing:-0.239040px;}
.ws1c{word-spacing:-0.216000px;}
.ws4a{word-spacing:-0.179280px;}
.ws53{word-spacing:-0.119520px;}
.ws71{word-spacing:-0.059760px;}
.ws0{word-spacing:-0.054000px;}
.wsf{word-spacing:0.000000px;}
.ws15{word-spacing:0.054000px;}
.ws2d{word-spacing:0.059760px;}
.ws2f{word-spacing:0.239040px;}
.ws74{word-spacing:0.241200px;}
.ws72{word-spacing:0.358560px;}
.ws16{word-spacing:0.378000px;}
.ws60{word-spacing:0.418320px;}
.ws76{word-spacing:0.432000px;}
.ws33{word-spacing:0.434160px;}
.ws35{word-spacing:0.530640px;}
.ws14{word-spacing:0.537840px;}
.ws1d{word-spacing:0.540000px;}
.ws34{word-spacing:0.723600px;}
.ws2a{word-spacing:0.776880px;}
.ws2e{word-spacing:0.956160px;}
.ws18{word-spacing:1.242000px;}
.ws51{word-spacing:1.254960px;}
.ws73{word-spacing:1.296000px;}
.wse{word-spacing:1.344000px;}
.ws45{word-spacing:1.494000px;}
.ws12{word-spacing:1.627920px;}
.ws56{word-spacing:1.673280px;}
.ws77{word-spacing:1.840608px;}
.ws46{word-spacing:1.972080px;}
.ws2b{word-spacing:2.211120px;}
.ws55{word-spacing:2.390400px;}
.ws13{word-spacing:2.394000px;}
.ws47{word-spacing:2.689200px;}
.ws48{word-spacing:2.928240px;}
.ws44{word-spacing:3.107520px;}
.ws43{word-spacing:3.406320px;}
.ws28{word-spacing:3.645360px;}
.ws49{word-spacing:3.824640px;}
.ws24{word-spacing:4.104000px;}
.ws5e{word-spacing:4.123440px;}
.ws37{word-spacing:4.236984px;}
.ws57{word-spacing:4.242960px;}
.ws3e{word-spacing:4.302720px;}
.ws3d{word-spacing:4.362480px;}
.ws4c{word-spacing:4.541760px;}
.ws26{word-spacing:4.860000px;}
.ws3f{word-spacing:4.960080px;}
.ws65{word-spacing:5.079600px;}
.ws59{word-spacing:5.258880px;}
.ws25{word-spacing:5.454000px;}
.ws54{word-spacing:5.557680px;}
.ws23{word-spacing:5.562000px;}
.ws27{word-spacing:5.796720px;}
.ws22{word-spacing:5.832000px;}
.ws68{word-spacing:6.394320px;}
.ws2c{word-spacing:6.513840px;}
.ws7b{word-spacing:6.991920px;}
.ws3c{word-spacing:7.290720px;}
.ws5c{word-spacing:7.470000px;}
.ws5b{word-spacing:8.007840px;}
.ws41{word-spacing:8.485920px;}
.ws4e{word-spacing:8.724960px;}
.ws42{word-spacing:8.904240px;}
.ws4f{word-spacing:9.442080px;}
.ws4b{word-spacing:9.621360px;}
.ws5f{word-spacing:9.920160px;}
.ws4d{word-spacing:10.637280px;}
.ws61{word-spacing:11.055600px;}
.ws66{word-spacing:11.354400px;}
.ws63{word-spacing:11.593440px;}
.ws40{word-spacing:11.772720px;}
.ws1f{word-spacing:12.636000px;}
.ws17{word-spacing:12.744000px;}
.ws29{word-spacing:12.788640px;}
.ws6b{word-spacing:12.868200px;}
.ws69{word-spacing:13.027680px;}
.ws6c{word-spacing:13.068000px;}
.ws1e{word-spacing:13.338000px;}
.ws31{word-spacing:13.505760px;}
.ws21{word-spacing:13.770000px;}
.ws6f{word-spacing:14.461920px;}
.ws6e{word-spacing:14.940000px;}
.ws2{word-spacing:15.543576px;}
.ws64{word-spacing:15.657120px;}
.ws8{word-spacing:15.681024px;}
.ws79{word-spacing:15.896160px;}
.ws6{word-spacing:15.926040px;}
.ws20{word-spacing:16.362000px;}
.ws32{word-spacing:16.613280px;}
.ws58{word-spacing:17.091360px;}
.ws52{word-spacing:17.330400px;}
.ws1a{word-spacing:18.090000px;}
.ws1b{word-spacing:18.414000px;}
.ws5a{word-spacing:18.943920px;}
.ws7d{word-spacing:19.242720px;}
.ws19{word-spacing:21.384000px;}
.ws62{word-spacing:24.023520px;}
.ws67{word-spacing:24.561360px;}
.ws30{word-spacing:25.039440px;}
.wsa{word-spacing:27.702000px;}
.ws50{word-spacing:27.907920px;}
.ws11{word-spacing:29.589840px;}
.ws70{word-spacing:40.397760px;}
.ws7c{word-spacing:41.114880px;}
.ws78{word-spacing:47.150640px;}
.ws10{word-spacing:546.264000px;}
._0{margin-left:-3.504000px;}
._1{margin-left:-1.814400px;}
._2{width:1.436400px;}
._3{width:2.748312px;}
._4{width:3.808080px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:15.732450px;}
.y29{bottom:23.986500px;}
.y86{bottom:29.106450px;}
.y1{bottom:29.232450px;}
.y85{bottom:46.212750px;}
.yaf{bottom:49.605000px;}
.y58{bottom:58.819500px;}
.ybd{bottom:59.382750px;}
.ybc{bottom:74.867250px;}
.y84{bottom:76.632750px;}
.y28{bottom:84.872250px;}
.yaa{bottom:84.946050px;}
.y57{bottom:87.925950px;}
.y27{bottom:94.591710px;}
.ya9{bottom:102.052350px;}
.y56{bottom:105.032250px;}
.yae{bottom:108.987750px;}
.y26{bottom:116.012250px;}
.ya8{bottom:119.337930px;}
.y83{bottom:122.437080px;}
.yad{bottom:124.472250px;}
.y55{bottom:135.452250px;}
.ya7{bottom:136.623510px;}
.y82{bottom:139.543380px;}
.ya6{bottom:153.909090px;}
.y81{bottom:156.828960px;}
.y25{bottom:161.315010px;}
.ya5{bottom:171.194670px;}
.y80{bottom:174.114540px;}
.y24{bottom:178.600590px;}
.y54{bottom:181.256580px;}
.ya4{bottom:188.480250px;}
.y7f{bottom:191.400120px;}
.y23{bottom:195.886170px;}
.y53{bottom:198.362880px;}
.ya3{bottom:205.586550px;}
.y7e{bottom:208.685700px;}
.y22{bottom:213.171750px;}
.y52{bottom:215.648460px;}
.ya2{bottom:222.872130px;}
.y7d{bottom:225.971280px;}
.y21{bottom:230.278050px;}
.y51{bottom:232.934040px;}
.ya1{bottom:240.157710px;}
.y7c{bottom:243.077580px;}
.y20{bottom:247.563630px;}
.y50{bottom:250.219620px;}
.y7b{bottom:260.363160px;}
.y1f{bottom:264.849210px;}
.y4f{bottom:267.505200px;}
.ya0{bottom:274.728870px;}
.y7a{bottom:277.648740px;}
.y1e{bottom:282.134790px;}
.y4e{bottom:284.790780px;}
.y9f{bottom:291.835170px;}
.y79{bottom:294.934320px;}
.y1d{bottom:299.420370px;}
.y4d{bottom:301.897080px;}
.y78{bottom:312.219900px;}
.y1c{bottom:316.705950px;}
.y4c{bottom:319.182660px;}
.y9e{bottom:326.406330px;}
.y77{bottom:329.326200px;}
.y1b{bottom:333.812250px;}
.y4b{bottom:336.468240px;}
.y9d{bottom:343.691910px;}
.y76{bottom:346.611780px;}
.y4a{bottom:353.753820px;}
.y9c{bottom:360.977490px;}
.y75{bottom:363.897360px;}
.y1a{bottom:364.232250px;}
.y49{bottom:371.039400px;}
.y9b{bottom:378.263070px;}
.ybb{bottom:379.782750px;}
.y74{bottom:381.182940px;}
.y48{bottom:388.145700px;}
.yba{bottom:395.267250px;}
.y9a{bottom:395.369370px;}
.y73{bottom:398.468520px;}
.y47{bottom:405.431280px;}
.y99{bottom:412.654950px;}
.y72{bottom:415.754100px;}
.y46{bottom:422.716860px;}
.y19{bottom:426.642600px;}
.yac{bottom:429.387750px;}
.y98{bottom:429.940530px;}
.y45{bottom:440.002440px;}
.y18{bottom:442.127100px;}
.yab{bottom:444.872250px;}
.y71{bottom:445.992750px;}
.y97{bottom:447.226110px;}
.y44{bottom:457.288020px;}
.y17{bottom:457.611600px;}
.y96{bottom:464.511690px;}
.y16{bottom:473.096100px;}
.y43{bottom:474.573600px;}
.y95{bottom:481.797270px;}
.y15{bottom:488.756100px;}
.y70{bottom:491.761530px;}
.y94{bottom:498.903570px;}
.y14{bottom:504.240600px;}
.y42{bottom:504.812250px;}
.y6f{bottom:509.047110px;}
.y93{bottom:516.189150px;}
.y13{bottom:519.725100px;}
.y6e{bottom:526.332690px;}
.y92{bottom:533.474730px;}
.y12{bottom:535.209600px;}
.y6d{bottom:543.438990px;}
.y41{bottom:550.581030px;}
.y11{bottom:550.869600px;}
.y6c{bottom:560.724570px;}
.y10{bottom:566.354100px;}
.y40{bottom:567.866610px;}
.y91{bottom:568.045890px;}
.y6b{bottom:578.010150px;}
.yf{bottom:581.838600px;}
.y3f{bottom:585.152190px;}
.y6a{bottom:595.295730px;}
.ye{bottom:597.323100px;}
.y3e{bottom:602.258490px;}
.y90{bottom:602.437770px;}
.y69{bottom:612.581310px;}
.yd{bottom:612.983100px;}
.y3d{bottom:619.544070px;}
.y8f{bottom:619.723350px;}
.yc{bottom:628.467600px;}
.y68{bottom:629.866890px;}
.y3c{bottom:636.829650px;}
.y8e{bottom:637.008930px;}
.ycc{bottom:639.069750px;}
.yb{bottom:643.952100px;}
.y67{bottom:646.973190px;}
.y3b{bottom:654.115230px;}
.ycb{bottom:656.355330px;}
.y66{bottom:664.258770px;}
.y3a{bottom:671.400810px;}
.y8d{bottom:671.580090px;}
.yca{bottom:677.958570px;}
.y65{bottom:681.544350px;}
.y39{bottom:688.686390px;}
.yc9{bottom:695.244150px;}
.y64{bottom:698.829930px;}
.ya{bottom:699.572250px;}
.y38{bottom:705.792690px;}
.y8c{bottom:705.971970px;}
.y63{bottom:716.115510px;}
.yc8{bottom:717.026670px;}
.y9{bottom:717.932250px;}
.y37{bottom:723.078270px;}
.y8b{bottom:723.257550px;}
.y62{bottom:733.221810px;}
.yc7{bottom:734.312250px;}
.y36{bottom:740.363850px;}
.y8a{bottom:740.543130px;}
.yb9{bottom:742.436310px;}
.y61{bottom:750.507390px;}
.y35{bottom:757.649430px;}
.yb8{bottom:759.721890px;}
.y8{bottom:762.587730px;}
.yc6{bottom:764.552250px;}
.y60{bottom:767.792970px;}
.y34{bottom:774.935010px;}
.yb7{bottom:777.007470px;}
.y5f{bottom:785.078550px;}
.y7{bottom:790.118730px;}
.y33{bottom:792.041310px;}
.y89{bottom:792.220590px;}
.yb6{bottom:794.293050px;}
.y5e{bottom:802.364130px;}
.y32{bottom:809.326890px;}
.y88{bottom:809.506170px;}
.yc5{bottom:810.418050px;}
.yb5{bottom:811.578630px;}
.y6{bottom:817.649730px;}
.y5d{bottom:819.649710px;}
.y31{bottom:826.612470px;}
.y87{bottom:826.791750px;}
.yc4{bottom:827.703630px;}
.yb4{bottom:828.864210px;}
.y5c{bottom:836.756010px;}
.y30{bottom:843.898050px;}
.yc3{bottom:844.989210px;}
.y5{bottom:845.372250px;}
.yb3{bottom:845.970510px;}
.y5b{bottom:854.041590px;}
.y2f{bottom:861.183630px;}
.yc2{bottom:862.274790px;}
.yb2{bottom:863.256090px;}
.y5a{bottom:871.327170px;}
.y2e{bottom:878.469210px;}
.yc1{bottom:879.381090px;}
.yb1{bottom:880.541670px;}
.y59{bottom:888.612750px;}
.y2d{bottom:895.575510px;}
.yc0{bottom:896.666670px;}
.yb0{bottom:897.827250px;}
.y2c{bottom:912.861090px;}
.ybf{bottom:913.952250px;}
.y2b{bottom:930.146670px;}
.ybe{bottom:944.372250px;}
.y2a{bottom:947.432250px;}
.y4{bottom:983.380800px;}
.y3{bottom:999.880800px;}
.h7{height:24.984000px;}
.hb{height:26.982720px;}
.h2{height:33.024000px;}
.hc{height:33.478560px;}
.h3{height:37.152000px;}
.h8{height:37.476000px;}
.h4{height:37.800000px;}
.hd{height:41.280000px;}
.ha{height:41.473440px;}
.h9{height:52.417969px;}
.h6{height:54.342720px;}
.h5{height:69.715898px;}
.he{height:907.653000px;}
.hf{height:916.866000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w2{width:0.046500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x8{left:-637.874700px;}
.x9{left:-616.630020px;}
.x0{left:0.000000px;}
.x6{left:48.873750px;}
.x1{left:54.000000px;}
.x2{left:84.937350px;}
.x4{left:106.152150px;}
.xc{left:111.956580px;}
.xa{left:127.449360px;}
.xb{left:131.169420px;}
.x3{left:157.301850px;}
.x5{left:355.541400px;}
.x7{left:359.793300px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1d{letter-spacing:-1.008000pt;}
.ls13{letter-spacing:-0.471680pt;}
.ls17{letter-spacing:-0.424960pt;}
.ls1b{letter-spacing:-0.371840pt;}
.lsf{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.318720pt;}
.ls14{letter-spacing:-0.300160pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.214400pt;}
.lsa{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.170240pt;}
.ls18{letter-spacing:-0.106240pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.053120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106240pt;}
.ls16{letter-spacing:0.159360pt;}
.ls15{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.244352pt;}
.ls19{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.318720pt;}
.lse{letter-spacing:0.336000pt;}
.ls1a{letter-spacing:0.796800pt;}
.ls2{letter-spacing:13.439467pt;}
.ls5{letter-spacing:13.440000pt;}
.ls0{letter-spacing:13.598720pt;}
.ls3{letter-spacing:18.176000pt;}
.ws1{word-spacing:-23.663360pt;}
.ws3b{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.728000pt;}
.ws39{word-spacing:-17.600000pt;}
.ws6a{word-spacing:-13.598720pt;}
.ws7{word-spacing:-13.386240pt;}
.ws4{word-spacing:-13.280000pt;}
.ws38{word-spacing:-13.226880pt;}
.ws3a{word-spacing:-13.173760pt;}
.ws36{word-spacing:-13.067520pt;}
.ws3{word-spacing:-12.961280pt;}
.wsd{word-spacing:-12.336000pt;}
.ws6d{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.664000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws5d{word-spacing:-0.318720pt;}
.ws75{word-spacing:-0.288000pt;}
.ws7a{word-spacing:-0.212480pt;}
.ws1c{word-spacing:-0.192000pt;}
.ws4a{word-spacing:-0.159360pt;}
.ws53{word-spacing:-0.106240pt;}
.ws71{word-spacing:-0.053120pt;}
.ws0{word-spacing:-0.048000pt;}
.wsf{word-spacing:0.000000pt;}
.ws15{word-spacing:0.048000pt;}
.ws2d{word-spacing:0.053120pt;}
.ws2f{word-spacing:0.212480pt;}
.ws74{word-spacing:0.214400pt;}
.ws72{word-spacing:0.318720pt;}
.ws16{word-spacing:0.336000pt;}
.ws60{word-spacing:0.371840pt;}
.ws76{word-spacing:0.384000pt;}
.ws33{word-spacing:0.385920pt;}
.ws35{word-spacing:0.471680pt;}
.ws14{word-spacing:0.478080pt;}
.ws1d{word-spacing:0.480000pt;}
.ws34{word-spacing:0.643200pt;}
.ws2a{word-spacing:0.690560pt;}
.ws2e{word-spacing:0.849920pt;}
.ws18{word-spacing:1.104000pt;}
.ws51{word-spacing:1.115520pt;}
.ws73{word-spacing:1.152000pt;}
.wse{word-spacing:1.194667pt;}
.ws45{word-spacing:1.328000pt;}
.ws12{word-spacing:1.447040pt;}
.ws56{word-spacing:1.487360pt;}
.ws77{word-spacing:1.636096pt;}
.ws46{word-spacing:1.752960pt;}
.ws2b{word-spacing:1.965440pt;}
.ws55{word-spacing:2.124800pt;}
.ws13{word-spacing:2.128000pt;}
.ws47{word-spacing:2.390400pt;}
.ws48{word-spacing:2.602880pt;}
.ws44{word-spacing:2.762240pt;}
.ws43{word-spacing:3.027840pt;}
.ws28{word-spacing:3.240320pt;}
.ws49{word-spacing:3.399680pt;}
.ws24{word-spacing:3.648000pt;}
.ws5e{word-spacing:3.665280pt;}
.ws37{word-spacing:3.766208pt;}
.ws57{word-spacing:3.771520pt;}
.ws3e{word-spacing:3.824640pt;}
.ws3d{word-spacing:3.877760pt;}
.ws4c{word-spacing:4.037120pt;}
.ws26{word-spacing:4.320000pt;}
.ws3f{word-spacing:4.408960pt;}
.ws65{word-spacing:4.515200pt;}
.ws59{word-spacing:4.674560pt;}
.ws25{word-spacing:4.848000pt;}
.ws54{word-spacing:4.940160pt;}
.ws23{word-spacing:4.944000pt;}
.ws27{word-spacing:5.152640pt;}
.ws22{word-spacing:5.184000pt;}
.ws68{word-spacing:5.683840pt;}
.ws2c{word-spacing:5.790080pt;}
.ws7b{word-spacing:6.215040pt;}
.ws3c{word-spacing:6.480640pt;}
.ws5c{word-spacing:6.640000pt;}
.ws5b{word-spacing:7.118080pt;}
.ws41{word-spacing:7.543040pt;}
.ws4e{word-spacing:7.755520pt;}
.ws42{word-spacing:7.914880pt;}
.ws4f{word-spacing:8.392960pt;}
.ws4b{word-spacing:8.552320pt;}
.ws5f{word-spacing:8.817920pt;}
.ws4d{word-spacing:9.455360pt;}
.ws61{word-spacing:9.827200pt;}
.ws66{word-spacing:10.092800pt;}
.ws63{word-spacing:10.305280pt;}
.ws40{word-spacing:10.464640pt;}
.ws1f{word-spacing:11.232000pt;}
.ws17{word-spacing:11.328000pt;}
.ws29{word-spacing:11.367680pt;}
.ws6b{word-spacing:11.438400pt;}
.ws69{word-spacing:11.580160pt;}
.ws6c{word-spacing:11.616000pt;}
.ws1e{word-spacing:11.856000pt;}
.ws31{word-spacing:12.005120pt;}
.ws21{word-spacing:12.240000pt;}
.ws6f{word-spacing:12.855040pt;}
.ws6e{word-spacing:13.280000pt;}
.ws2{word-spacing:13.816512pt;}
.ws64{word-spacing:13.917440pt;}
.ws8{word-spacing:13.938688pt;}
.ws79{word-spacing:14.129920pt;}
.ws6{word-spacing:14.156480pt;}
.ws20{word-spacing:14.544000pt;}
.ws32{word-spacing:14.767360pt;}
.ws58{word-spacing:15.192320pt;}
.ws52{word-spacing:15.404800pt;}
.ws1a{word-spacing:16.080000pt;}
.ws1b{word-spacing:16.368000pt;}
.ws5a{word-spacing:16.839040pt;}
.ws7d{word-spacing:17.104640pt;}
.ws19{word-spacing:19.008000pt;}
.ws62{word-spacing:21.354240pt;}
.ws67{word-spacing:21.832320pt;}
.ws30{word-spacing:22.257280pt;}
.wsa{word-spacing:24.624000pt;}
.ws50{word-spacing:24.807040pt;}
.ws11{word-spacing:26.302080pt;}
.ws70{word-spacing:35.909120pt;}
.ws7c{word-spacing:36.546560pt;}
.ws78{word-spacing:41.911680pt;}
.ws10{word-spacing:485.568000pt;}
._0{margin-left:-3.114667pt;}
._1{margin-left:-1.612800pt;}
._2{width:1.276800pt;}
._3{width:2.442944pt;}
._4{width:3.384960pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:13.984400pt;}
.y29{bottom:21.321333pt;}
.y86{bottom:25.872400pt;}
.y1{bottom:25.984400pt;}
.y85{bottom:41.078000pt;}
.yaf{bottom:44.093333pt;}
.y58{bottom:52.284000pt;}
.ybd{bottom:52.784667pt;}
.ybc{bottom:66.548667pt;}
.y84{bottom:68.118000pt;}
.y28{bottom:75.442000pt;}
.yaa{bottom:75.507600pt;}
.y57{bottom:78.156400pt;}
.y27{bottom:84.081520pt;}
.ya9{bottom:90.713200pt;}
.y56{bottom:93.362000pt;}
.yae{bottom:96.878000pt;}
.y26{bottom:103.122000pt;}
.ya8{bottom:106.078160pt;}
.y83{bottom:108.832960pt;}
.yad{bottom:110.642000pt;}
.y55{bottom:120.402000pt;}
.ya7{bottom:121.443120pt;}
.y82{bottom:124.038560pt;}
.ya6{bottom:136.808080pt;}
.y81{bottom:139.403520pt;}
.y25{bottom:143.391120pt;}
.ya5{bottom:152.173040pt;}
.y80{bottom:154.768480pt;}
.y24{bottom:158.756080pt;}
.y54{bottom:161.116960pt;}
.ya4{bottom:167.538000pt;}
.y7f{bottom:170.133440pt;}
.y23{bottom:174.121040pt;}
.y53{bottom:176.322560pt;}
.ya3{bottom:182.743600pt;}
.y7e{bottom:185.498400pt;}
.y22{bottom:189.486000pt;}
.y52{bottom:191.687520pt;}
.ya2{bottom:198.108560pt;}
.y7d{bottom:200.863360pt;}
.y21{bottom:204.691600pt;}
.y51{bottom:207.052480pt;}
.ya1{bottom:213.473520pt;}
.y7c{bottom:216.068960pt;}
.y20{bottom:220.056560pt;}
.y50{bottom:222.417440pt;}
.y7b{bottom:231.433920pt;}
.y1f{bottom:235.421520pt;}
.y4f{bottom:237.782400pt;}
.ya0{bottom:244.203440pt;}
.y7a{bottom:246.798880pt;}
.y1e{bottom:250.786480pt;}
.y4e{bottom:253.147360pt;}
.y9f{bottom:259.409040pt;}
.y79{bottom:262.163840pt;}
.y1d{bottom:266.151440pt;}
.y4d{bottom:268.352960pt;}
.y78{bottom:277.528800pt;}
.y1c{bottom:281.516400pt;}
.y4c{bottom:283.717920pt;}
.y9e{bottom:290.138960pt;}
.y77{bottom:292.734400pt;}
.y1b{bottom:296.722000pt;}
.y4b{bottom:299.082880pt;}
.y9d{bottom:305.503920pt;}
.y76{bottom:308.099360pt;}
.y4a{bottom:314.447840pt;}
.y9c{bottom:320.868880pt;}
.y75{bottom:323.464320pt;}
.y1a{bottom:323.762000pt;}
.y49{bottom:329.812800pt;}
.y9b{bottom:336.233840pt;}
.ybb{bottom:337.584667pt;}
.y74{bottom:338.829280pt;}
.y48{bottom:345.018400pt;}
.yba{bottom:351.348667pt;}
.y9a{bottom:351.439440pt;}
.y73{bottom:354.194240pt;}
.y47{bottom:360.383360pt;}
.y99{bottom:366.804400pt;}
.y72{bottom:369.559200pt;}
.y46{bottom:375.748320pt;}
.y19{bottom:379.237867pt;}
.yac{bottom:381.678000pt;}
.y98{bottom:382.169360pt;}
.y45{bottom:391.113280pt;}
.y18{bottom:393.001867pt;}
.yab{bottom:395.442000pt;}
.y71{bottom:396.438000pt;}
.y97{bottom:397.534320pt;}
.y44{bottom:406.478240pt;}
.y17{bottom:406.765867pt;}
.y96{bottom:412.899280pt;}
.y16{bottom:420.529867pt;}
.y43{bottom:421.843200pt;}
.y95{bottom:428.264240pt;}
.y15{bottom:434.449867pt;}
.y70{bottom:437.121360pt;}
.y94{bottom:443.469840pt;}
.y14{bottom:448.213867pt;}
.y42{bottom:448.722000pt;}
.y6f{bottom:452.486320pt;}
.y93{bottom:458.834800pt;}
.y13{bottom:461.977867pt;}
.y6e{bottom:467.851280pt;}
.y92{bottom:474.199760pt;}
.y12{bottom:475.741867pt;}
.y6d{bottom:483.056880pt;}
.y41{bottom:489.405360pt;}
.y11{bottom:489.661867pt;}
.y6c{bottom:498.421840pt;}
.y10{bottom:503.425867pt;}
.y40{bottom:504.770320pt;}
.y91{bottom:504.929680pt;}
.y6b{bottom:513.786800pt;}
.yf{bottom:517.189867pt;}
.y3f{bottom:520.135280pt;}
.y6a{bottom:529.151760pt;}
.ye{bottom:530.953867pt;}
.y3e{bottom:535.340880pt;}
.y90{bottom:535.500240pt;}
.y69{bottom:544.516720pt;}
.yd{bottom:544.873867pt;}
.y3d{bottom:550.705840pt;}
.y8f{bottom:550.865200pt;}
.yc{bottom:558.637867pt;}
.y68{bottom:559.881680pt;}
.y3c{bottom:566.070800pt;}
.y8e{bottom:566.230160pt;}
.ycc{bottom:568.062000pt;}
.yb{bottom:572.401867pt;}
.y67{bottom:575.087280pt;}
.y3b{bottom:581.435760pt;}
.ycb{bottom:583.426960pt;}
.y66{bottom:590.452240pt;}
.y3a{bottom:596.800720pt;}
.y8d{bottom:596.960080pt;}
.yca{bottom:602.629840pt;}
.y65{bottom:605.817200pt;}
.y39{bottom:612.165680pt;}
.yc9{bottom:617.994800pt;}
.y64{bottom:621.182160pt;}
.ya{bottom:621.842000pt;}
.y38{bottom:627.371280pt;}
.y8c{bottom:627.530640pt;}
.y63{bottom:636.547120pt;}
.yc8{bottom:637.357040pt;}
.y9{bottom:638.162000pt;}
.y37{bottom:642.736240pt;}
.y8b{bottom:642.895600pt;}
.y62{bottom:651.752720pt;}
.yc7{bottom:652.722000pt;}
.y36{bottom:658.101200pt;}
.y8a{bottom:658.260560pt;}
.yb9{bottom:659.943387pt;}
.y61{bottom:667.117680pt;}
.y35{bottom:673.466160pt;}
.yb8{bottom:675.308347pt;}
.y8{bottom:677.855760pt;}
.yc6{bottom:679.602000pt;}
.y60{bottom:682.482640pt;}
.y34{bottom:688.831120pt;}
.yb7{bottom:690.673307pt;}
.y5f{bottom:697.847600pt;}
.y7{bottom:702.327760pt;}
.y33{bottom:704.036720pt;}
.y89{bottom:704.196080pt;}
.yb6{bottom:706.038267pt;}
.y5e{bottom:713.212560pt;}
.y32{bottom:719.401680pt;}
.y88{bottom:719.561040pt;}
.yc5{bottom:720.371600pt;}
.yb5{bottom:721.403227pt;}
.y6{bottom:726.799760pt;}
.y5d{bottom:728.577520pt;}
.y31{bottom:734.766640pt;}
.y87{bottom:734.926000pt;}
.yc4{bottom:735.736560pt;}
.yb4{bottom:736.768187pt;}
.y5c{bottom:743.783120pt;}
.y30{bottom:750.131600pt;}
.yc3{bottom:751.101520pt;}
.y5{bottom:751.442000pt;}
.yb3{bottom:751.973787pt;}
.y5b{bottom:759.148080pt;}
.y2f{bottom:765.496560pt;}
.yc2{bottom:766.466480pt;}
.yb2{bottom:767.338747pt;}
.y5a{bottom:774.513040pt;}
.y2e{bottom:780.861520pt;}
.yc1{bottom:781.672080pt;}
.yb1{bottom:782.703707pt;}
.y59{bottom:789.878000pt;}
.y2d{bottom:796.067120pt;}
.yc0{bottom:797.037040pt;}
.yb0{bottom:798.068667pt;}
.y2c{bottom:811.432080pt;}
.ybf{bottom:812.402000pt;}
.y2b{bottom:826.797040pt;}
.ybe{bottom:839.442000pt;}
.y2a{bottom:842.162000pt;}
.y4{bottom:874.116267pt;}
.y3{bottom:888.782933pt;}
.h7{height:22.208000pt;}
.hb{height:23.984640pt;}
.h2{height:29.354667pt;}
.hc{height:29.758720pt;}
.h3{height:33.024000pt;}
.h8{height:33.312000pt;}
.h4{height:33.600000pt;}
.hd{height:36.693333pt;}
.ha{height:36.865280pt;}
.h9{height:46.593750pt;}
.h6{height:48.304640pt;}
.h5{height:61.969687pt;}
.he{height:806.802667pt;}
.hf{height:814.992000pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w2{width:0.041333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x8{left:-566.999733pt;}
.x9{left:-548.115573pt;}
.x0{left:0.000000pt;}
.x6{left:43.443333pt;}
.x1{left:48.000000pt;}
.x2{left:75.499867pt;}
.x4{left:94.357467pt;}
.xc{left:99.516960pt;}
.xa{left:113.288320pt;}
.xb{left:116.595040pt;}
.x3{left:139.823867pt;}
.x5{left:316.036800pt;}
.x7{left:319.816267pt;}
}

