
    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_7aafd3a61b6fd5605c540af4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.137000;font-style:normal;font-weight:normal;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_8c9069f0f50571ae79a19426.woff')format("woff");}.ff2{font-family:ff2;line-height:1.121000;font-style:normal;font-weight:normal;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_1eb4eac239a0c8f392e27793.woff')format("woff");}.ff3{font-family:ff3;line-height:1.245000;font-style: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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.780000px;}
.v1{vertical-align:23.880600px;}
.ls3{letter-spacing:-2.304000px;}
.ls2{letter-spacing:-0.417600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.216000px;}
.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;}
.ws5{word-spacing:-15.696000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.022400px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-9.948000px;}
._d{margin-left:-8.748000px;}
._b{margin-left:-7.296000px;}
._6{margin-left:-5.292000px;}
._7{margin-left:-4.092000px;}
._2{margin-left:-2.418000px;}
._0{margin-left:-1.080000px;}
._5{width:1.116000px;}
._c{width:2.124000px;}
._3{width:3.228000px;}
._1{width:5.082000px;}
._4{width:6.492000px;}
._8{width:7.518000px;}
._9{width:8.928000px;}
._a{width:10.224000px;}
._f{width:11.412000px;}
._15{width:12.570000px;}
._16{width:13.710000px;}
._12{width:16.416000px;}
._11{width:19.440000px;}
._10{width:20.448000px;}
._14{width:26.766000px;}
._13{width:28.224000px;}
._17{width:30.012000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.280000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.382650px;}
.y11b{bottom:106.293750px;}
.yf2{bottom:106.297200px;}
.yaf{bottom:106.300200px;}
.y5f{bottom:106.301100px;}
.y2e{bottom:106.304100px;}
.y144{bottom:106.304850px;}
.ycd{bottom:114.306450px;}
.y188{bottom:114.867300px;}
.y15e{bottom:115.968450px;}
.yf1{bottom:122.794200px;}
.yae{bottom:122.797200px;}
.y5e{bottom:122.798100px;}
.y2d{bottom:122.801100px;}
.y143{bottom:122.801850px;}
.y11a{bottom:123.303750px;}
.ycc{bottom:135.312450px;}
.y187{bottom:135.873300px;}
.y15d{bottom:136.974450px;}
.yf0{bottom:139.291200px;}
.yad{bottom:139.294200px;}
.y5d{bottom:139.295100px;}
.y142{bottom:139.298850px;}
.y119{bottom:139.800750px;}
.y2c{bottom:139.811100px;}
.yef{bottom:155.788200px;}
.yac{bottom:155.791200px;}
.y5c{bottom:155.792100px;}
.ye1{bottom:156.300450px;}
.y2b{bottom:156.308100px;}
.y141{bottom:156.308850px;}
.y118{bottom:156.810750px;}
.y186{bottom:156.879300px;}
.y88{bottom:156.969300px;}
.yab{bottom:172.288200px;}
.y5b{bottom:172.802100px;}
.y2a{bottom:172.805100px;}
.y117{bottom:173.307750px;}
.y140{bottom:173.318850px;}
.ycb{bottom:177.306450px;}
.y185{bottom:177.885300px;}
.y87{bottom:177.975300px;}
.y15c{bottom:178.968450px;}
.y5a{bottom:189.299100px;}
.y29{bottom:189.302100px;}
.y116{bottom:189.804750px;}
.y13f{bottom:189.815850px;}
.yca{bottom:198.312450px;}
.y184{bottom:198.891300px;}
.y86{bottom:198.981300px;}
.y15b{bottom:199.974450px;}
.y59{bottom:205.796100px;}
.y28{bottom:205.799100px;}
.y115{bottom:206.301750px;}
.y13e{bottom:206.312850px;}
.ye0{bottom:219.318450px;}
.yee{bottom:219.408450px;}
.y183{bottom:219.897300px;}
.y85{bottom:219.987300px;}
.yaa{bottom:220.896450px;}
.y27{bottom:222.296100px;}
.y13d{bottom:222.809850px;}
.y114{bottom:223.311750px;}
.y13c{bottom:239.306850px;}
.yc9{bottom:240.306450px;}
.ydf{bottom:240.324450px;}
.yed{bottom:240.414450px;}
.y182{bottom:240.903300px;}
.y84{bottom:240.993300px;}
.ya9{bottom:241.902450px;}
.y15a{bottom:241.974450px;}
.y13b{bottom:255.803850px;}
.yc8{bottom:261.312450px;}
.yde{bottom:261.330450px;}
.yec{bottom:261.420450px;}
.y181{bottom:261.909300px;}
.y113{bottom:262.023300px;}
.ya8{bottom:262.908450px;}
.y26{bottom:265.143300px;}
.y58{bottom:282.270450px;}
.y159{bottom:282.300450px;}
.yc7{bottom:282.318450px;}
.yeb{bottom:282.426450px;}
.y180{bottom:282.915300px;}
.y83{bottom:282.987300px;}
.y112{bottom:283.029300px;}
.y25{bottom:286.149300px;}
.y57{bottom:303.276450px;}
.y158{bottom:303.306450px;}
.yc6{bottom:303.324450px;}
.y17f{bottom:303.921300px;}
.y82{bottom:303.993300px;}
.y111{bottom:304.035300px;}
.y13a{bottom:304.101300px;}
.ya7{bottom:304.902450px;}
.y56{bottom:324.282450px;}
.y157{bottom:324.312450px;}
.yc5{bottom:324.330450px;}
.yea{bottom:324.420450px;}
.y17e{bottom:324.927300px;}
.y81{bottom:324.999300px;}
.y110{bottom:325.041300px;}
.y139{bottom:325.107300px;}
.ya6{bottom:325.908450px;}
.y24{bottom:328.149300px;}
.y55{bottom:345.288450px;}
.y156{bottom:345.318450px;}
.yc4{bottom:345.336450px;}
.ye9{bottom:345.426450px;}
.y17d{bottom:345.933300px;}
.y80{bottom:346.005300px;}
.y10f{bottom:346.047300px;}
.y138{bottom:346.113300px;}
.ya5{bottom:346.914450px;}
.y54{bottom:366.294450px;}
.y155{bottom:366.324450px;}
.ye8{bottom:366.432450px;}
.y17c{bottom:366.939300px;}
.y7f{bottom:367.011300px;}
.y10e{bottom:367.053300px;}
.y137{bottom:367.119300px;}
.ya4{bottom:367.920450px;}
.y23{bottom:368.511300px;}
.y53{bottom:387.300450px;}
.yc3{bottom:387.330450px;}
.ye7{bottom:387.438450px;}
.y17b{bottom:387.945300px;}
.y10d{bottom:388.059300px;}
.y136{bottom:388.125300px;}
.ya3{bottom:388.926450px;}
.y22{bottom:389.517300px;}
.y52{bottom:408.306450px;}
.ydd{bottom:408.336450px;}
.ye6{bottom:408.444450px;}
.y17a{bottom:408.951300px;}
.y7e{bottom:409.005300px;}
.y10c{bottom:409.065300px;}
.y135{bottom:409.131300px;}
.ya2{bottom:409.932450px;}
.y21{bottom:410.523300px;}
.y51{bottom:429.312450px;}
.yc2{bottom:429.324450px;}
.ydc{bottom:429.342450px;}
.ye5{bottom:429.450450px;}
.y179{bottom:429.957300px;}
.y7d{bottom:430.011300px;}
.y10b{bottom:430.071300px;}
.y134{bottom:430.137300px;}
.ya1{bottom:430.938450px;}
.y20{bottom:431.529300px;}
.y50{bottom:450.318450px;}
.yc1{bottom:450.330450px;}
.ydb{bottom:450.348450px;}
.ye4{bottom:450.456450px;}
.y178{bottom:450.963300px;}
.y7c{bottom:451.017300px;}
.y10a{bottom:451.077300px;}
.ya0{bottom:451.944450px;}
.y1f{bottom:452.535300px;}
.y4f{bottom:471.324450px;}
.yc0{bottom:471.336450px;}
.yda{bottom:471.354450px;}
.ye3{bottom:471.462450px;}
.y177{bottom:471.969300px;}
.y109{bottom:472.083300px;}
.y133{bottom:472.131300px;}
.y9f{bottom:472.950450px;}
.y1e{bottom:473.541300px;}
.y4e{bottom:492.330450px;}
.ybf{bottom:492.342450px;}
.ye2{bottom:492.468450px;}
.y176{bottom:492.975300px;}
.y7b{bottom:493.011300px;}
.y108{bottom:493.089300px;}
.y132{bottom:493.137300px;}
.y1d{bottom:494.547300px;}
.y4d{bottom:513.336450px;}
.ybe{bottom:513.348450px;}
.y175{bottom:513.981300px;}
.y7a{bottom:514.017300px;}
.y107{bottom:514.095300px;}
.y131{bottom:514.143300px;}
.y9e{bottom:514.944450px;}
.y1c{bottom:515.553300px;}
.y4c{bottom:534.342450px;}
.yd9{bottom:534.354450px;}
.y174{bottom:534.987300px;}
.y79{bottom:535.023300px;}
.y130{bottom:535.077300px;}
.y106{bottom:535.101300px;}
.y9d{bottom:535.950450px;}
.y1b{bottom:536.559300px;}
.ybd{bottom:555.342450px;}
.y4b{bottom:555.348450px;}
.yd8{bottom:555.360450px;}
.y167{bottom:555.378450px;}
.y173{bottom:555.993300px;}
.y78{bottom:556.029300px;}
.y12f{bottom:556.083300px;}
.y105{bottom:556.107300px;}
.y9c{bottom:556.956450px;}
.y1a{bottom:557.565300px;}
.ybc{bottom:576.348450px;}
.y4a{bottom:576.354450px;}
.yd7{bottom:576.366450px;}
.y166{bottom:576.384450px;}
.y172{bottom:576.999300px;}
.y12e{bottom:577.089300px;}
.y104{bottom:577.113300px;}
.y9b{bottom:577.962450px;}
.y19{bottom:578.571300px;}
.ybb{bottom:597.354450px;}
.y49{bottom:597.360450px;}
.yd6{bottom:597.372450px;}
.y165{bottom:597.390450px;}
.y171{bottom:598.005300px;}
.y77{bottom:598.023300px;}
.y103{bottom:598.119300px;}
.y9a{bottom:598.968450px;}
.y18{bottom:599.577300px;}
.y154{bottom:618.342450px;}
.yba{bottom:618.360450px;}
.y48{bottom:618.366450px;}
.yd5{bottom:618.378450px;}
.y164{bottom:618.396450px;}
.y170{bottom:619.011300px;}
.y76{bottom:619.029300px;}
.y12d{bottom:619.083300px;}
.y102{bottom:619.125300px;}
.y99{bottom:619.968450px;}
.y17{bottom:620.583300px;}
.y153{bottom:639.348450px;}
.yb9{bottom:639.366450px;}
.y47{bottom:639.372450px;}
.yd4{bottom:639.384450px;}
.y163{bottom:639.402450px;}
.y16f{bottom:640.017300px;}
.y75{bottom:640.035300px;}
.y12c{bottom:640.089300px;}
.y101{bottom:640.131300px;}
.y98{bottom:640.974450px;}
.y16{bottom:641.589300px;}
.y152{bottom:660.354450px;}
.yb8{bottom:660.372450px;}
.y46{bottom:660.378450px;}
.yd3{bottom:660.390450px;}
.y162{bottom:660.408450px;}
.y16e{bottom:661.023300px;}
.y74{bottom:661.041300px;}
.y12b{bottom:661.095300px;}
.y100{bottom:661.137300px;}
.y15{bottom:662.595300px;}
.y151{bottom:681.360450px;}
.yb7{bottom:681.378450px;}
.y45{bottom:681.384450px;}
.yd2{bottom:681.396450px;}
.y161{bottom:681.414450px;}
.y16d{bottom:682.029300px;}
.y73{bottom:682.047300px;}
.y12a{bottom:682.101300px;}
.yff{bottom:682.143300px;}
.y97{bottom:682.974450px;}
.y14{bottom:683.601300px;}
.y150{bottom:702.366450px;}
.yb6{bottom:702.384450px;}
.y44{bottom:702.390450px;}
.yd1{bottom:702.402450px;}
.y16c{bottom:703.035300px;}
.y72{bottom:703.053300px;}
.y129{bottom:703.107300px;}
.yfe{bottom:703.143300px;}
.y13{bottom:704.607300px;}
.y14f{bottom:723.372450px;}
.y96{bottom:723.390450px;}
.y43{bottom:723.396450px;}
.y160{bottom:723.408450px;}
.y16b{bottom:724.041300px;}
.y71{bottom:724.059300px;}
.y128{bottom:724.113300px;}
.yfd{bottom:724.125300px;}
.y12{bottom:725.613300px;}
.y14e{bottom:744.378450px;}
.y95{bottom:744.396450px;}
.y42{bottom:744.402450px;}
.y15f{bottom:744.414450px;}
.y16a{bottom:745.047300px;}
.y70{bottom:745.065300px;}
.y127{bottom:745.119300px;}
.yfc{bottom:745.131300px;}
.y11{bottom:746.619300px;}
.y14d{bottom:765.384450px;}
.y94{bottom:765.402450px;}
.y41{bottom:765.408450px;}
.y169{bottom:766.053300px;}
.y6f{bottom:766.071300px;}
.y126{bottom:766.125300px;}
.yfb{bottom:766.137300px;}
.y10{bottom:767.625300px;}
.y93{bottom:786.408450px;}
.y40{bottom:786.414450px;}
.y168{bottom:787.059300px;}
.y6e{bottom:787.077300px;}
.y125{bottom:787.131300px;}
.yfa{bottom:787.143300px;}
.yf{bottom:788.631300px;}
.y14c{bottom:807.378450px;}
.y92{bottom:807.414450px;}
.y3f{bottom:807.420450px;}
.yf9{bottom:808.065300px;}
.y6d{bottom:808.083300px;}
.y124{bottom:808.137300px;}
.ye{bottom:809.637300px;}
.y14b{bottom:828.384450px;}
.yb5{bottom:828.402450px;}
.y91{bottom:828.420450px;}
.y3e{bottom:828.426450px;}
.yf8{bottom:829.071300px;}
.y6c{bottom:829.089300px;}
.y123{bottom:829.143300px;}
.yd{bottom:830.643300px;}
.y14a{bottom:849.390450px;}
.yb4{bottom:849.408450px;}
.y90{bottom:849.426450px;}
.y3d{bottom:849.432450px;}
.yf7{bottom:850.077300px;}
.y6b{bottom:850.095300px;}
.yc{bottom:851.619300px;}
.y149{bottom:870.396450px;}
.yb3{bottom:870.414450px;}
.y8f{bottom:870.432450px;}
.y3c{bottom:870.438450px;}
.yf6{bottom:871.083300px;}
.y6a{bottom:871.101300px;}
.y122{bottom:871.137300px;}
.y148{bottom:891.402450px;}
.yb2{bottom:891.420450px;}
.y3b{bottom:891.444450px;}
.yf5{bottom:892.089300px;}
.y69{bottom:892.107300px;}
.y121{bottom:892.143300px;}
.yb{bottom:893.613300px;}
.y147{bottom:912.408450px;}
.y8e{bottom:912.426450px;}
.y3a{bottom:912.450450px;}
.yf4{bottom:913.095300px;}
.y68{bottom:913.113300px;}
.y120{bottom:913.149300px;}
.ya{bottom:914.619300px;}
.y146{bottom:933.414450px;}
.y8d{bottom:933.432450px;}
.y39{bottom:933.456450px;}
.yf3{bottom:934.101300px;}
.y11f{bottom:934.155300px;}
.y9{bottom:935.625300px;}
.y145{bottom:954.420450px;}
.y8c{bottom:954.438450px;}
.y38{bottom:954.462450px;}
.y67{bottom:955.107300px;}
.y8{bottom:956.631300px;}
.yb1{bottom:975.426450px;}
.y8b{bottom:975.444450px;}
.y37{bottom:975.468450px;}
.y66{bottom:976.113300px;}
.y11e{bottom:976.131300px;}
.y7{bottom:977.637300px;}
.yb0{bottom:996.432450px;}
.yd0{bottom:996.450450px;}
.y36{bottom:996.456450px;}
.y65{bottom:997.119300px;}
.y11d{bottom:997.137300px;}
.y8a{bottom:1017.438450px;}
.ycf{bottom:1017.456450px;}
.y35{bottom:1017.462450px;}
.y64{bottom:1018.125300px;}
.y11c{bottom:1018.143300px;}
.y89{bottom:1038.444450px;}
.yce{bottom:1038.462450px;}
.y34{bottom:1038.468450px;}
.y63{bottom:1039.131300px;}
.y33{bottom:1059.450450px;}
.y62{bottom:1060.137300px;}
.y6{bottom:1061.643300px;}
.y32{bottom:1080.456450px;}
.y61{bottom:1081.143300px;}
.y5{bottom:1082.649300px;}
.y31{bottom:1101.462450px;}
.y60{bottom:1102.149300px;}
.y30{bottom:1122.468450px;}
.y4{bottom:1124.646300px;}
.y2f{bottom:1143.474450px;}
.y3{bottom:1144.149300px;}
.y2{bottom:1199.791200px;}
.h2{height:46.872000px;}
.h3{height:50.160000px;}
.h5{height:60.192000px;}
.h6{height:62.496000px;}
.ha{height:62.520000px;}
.h9{height:62.568000px;}
.h8{height:62.592000px;}
.h7{height:62.616000px;}
.hd{height:62.784000px;}
.hc{height:62.832000px;}
.hb{height:63.000000px;}
.h4{height:64.944000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:63.779550px;}
.x6{left:106.299300px;}
.x3{left:148.818900px;}
.x2{left:620.982750px;}
.x5{left:650.990850px;}
.x4{left:669.260850px;}
.x1{left:808.883850px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.360000pt;}
.v1{vertical-align:21.227200pt;}
.ls3{letter-spacing:-2.048000pt;}
.ls2{letter-spacing:-0.371200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.908800pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-8.842667pt;}
._d{margin-left:-7.776000pt;}
._b{margin-left:-6.485333pt;}
._6{margin-left:-4.704000pt;}
._7{margin-left:-3.637333pt;}
._2{margin-left:-2.149333pt;}
._0{margin-left:-0.960000pt;}
._5{width:0.992000pt;}
._c{width:1.888000pt;}
._3{width:2.869333pt;}
._1{width:4.517333pt;}
._4{width:5.770667pt;}
._8{width:6.682667pt;}
._9{width:7.936000pt;}
._a{width:9.088000pt;}
._f{width:10.144000pt;}
._15{width:11.173333pt;}
._16{width:12.186667pt;}
._12{width:14.592000pt;}
._11{width:17.280000pt;}
._10{width:18.176000pt;}
._14{width:23.792000pt;}
._13{width:25.088000pt;}
._17{width:26.677333pt;}
.fs5{font-size:34.026667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.006800pt;}
.y11b{bottom:94.483333pt;}
.yf2{bottom:94.486400pt;}
.yaf{bottom:94.489067pt;}
.y5f{bottom:94.489867pt;}
.y2e{bottom:94.492533pt;}
.y144{bottom:94.493200pt;}
.ycd{bottom:101.605733pt;}
.y188{bottom:102.104267pt;}
.y15e{bottom:103.083067pt;}
.yf1{bottom:109.150400pt;}
.yae{bottom:109.153067pt;}
.y5e{bottom:109.153867pt;}
.y2d{bottom:109.156533pt;}
.y143{bottom:109.157200pt;}
.y11a{bottom:109.603333pt;}
.ycc{bottom:120.277733pt;}
.y187{bottom:120.776267pt;}
.y15d{bottom:121.755067pt;}
.yf0{bottom:123.814400pt;}
.yad{bottom:123.817067pt;}
.y5d{bottom:123.817867pt;}
.y142{bottom:123.821200pt;}
.y119{bottom:124.267333pt;}
.y2c{bottom:124.276533pt;}
.yef{bottom:138.478400pt;}
.yac{bottom:138.481067pt;}
.y5c{bottom:138.481867pt;}
.ye1{bottom:138.933733pt;}
.y2b{bottom:138.940533pt;}
.y141{bottom:138.941200pt;}
.y118{bottom:139.387333pt;}
.y186{bottom:139.448267pt;}
.y88{bottom:139.528267pt;}
.yab{bottom:153.145067pt;}
.y5b{bottom:153.601867pt;}
.y2a{bottom:153.604533pt;}
.y117{bottom:154.051333pt;}
.y140{bottom:154.061200pt;}
.ycb{bottom:157.605733pt;}
.y185{bottom:158.120267pt;}
.y87{bottom:158.200267pt;}
.y15c{bottom:159.083067pt;}
.y5a{bottom:168.265867pt;}
.y29{bottom:168.268533pt;}
.y116{bottom:168.715333pt;}
.y13f{bottom:168.725200pt;}
.yca{bottom:176.277733pt;}
.y184{bottom:176.792267pt;}
.y86{bottom:176.872267pt;}
.y15b{bottom:177.755067pt;}
.y59{bottom:182.929867pt;}
.y28{bottom:182.932533pt;}
.y115{bottom:183.379333pt;}
.y13e{bottom:183.389200pt;}
.ye0{bottom:194.949733pt;}
.yee{bottom:195.029733pt;}
.y183{bottom:195.464267pt;}
.y85{bottom:195.544267pt;}
.yaa{bottom:196.352400pt;}
.y27{bottom:197.596533pt;}
.y13d{bottom:198.053200pt;}
.y114{bottom:198.499333pt;}
.y13c{bottom:212.717200pt;}
.yc9{bottom:213.605733pt;}
.ydf{bottom:213.621733pt;}
.yed{bottom:213.701733pt;}
.y182{bottom:214.136267pt;}
.y84{bottom:214.216267pt;}
.ya9{bottom:215.024400pt;}
.y15a{bottom:215.088400pt;}
.y13b{bottom:227.381200pt;}
.yc8{bottom:232.277733pt;}
.yde{bottom:232.293733pt;}
.yec{bottom:232.373733pt;}
.y181{bottom:232.808267pt;}
.y113{bottom:232.909600pt;}
.ya8{bottom:233.696400pt;}
.y26{bottom:235.682933pt;}
.y58{bottom:250.907067pt;}
.y159{bottom:250.933733pt;}
.yc7{bottom:250.949733pt;}
.yeb{bottom:251.045733pt;}
.y180{bottom:251.480267pt;}
.y83{bottom:251.544267pt;}
.y112{bottom:251.581600pt;}
.y25{bottom:254.354933pt;}
.y57{bottom:269.579067pt;}
.y158{bottom:269.605733pt;}
.yc6{bottom:269.621733pt;}
.y17f{bottom:270.152267pt;}
.y82{bottom:270.216267pt;}
.y111{bottom:270.253600pt;}
.y13a{bottom:270.312267pt;}
.ya7{bottom:271.024400pt;}
.y56{bottom:288.251067pt;}
.y157{bottom:288.277733pt;}
.yc5{bottom:288.293733pt;}
.yea{bottom:288.373733pt;}
.y17e{bottom:288.824267pt;}
.y81{bottom:288.888267pt;}
.y110{bottom:288.925600pt;}
.y139{bottom:288.984267pt;}
.ya6{bottom:289.696400pt;}
.y24{bottom:291.688267pt;}
.y55{bottom:306.923067pt;}
.y156{bottom:306.949733pt;}
.yc4{bottom:306.965733pt;}
.ye9{bottom:307.045733pt;}
.y17d{bottom:307.496267pt;}
.y80{bottom:307.560267pt;}
.y10f{bottom:307.597600pt;}
.y138{bottom:307.656267pt;}
.ya5{bottom:308.368400pt;}
.y54{bottom:325.595067pt;}
.y155{bottom:325.621733pt;}
.ye8{bottom:325.717733pt;}
.y17c{bottom:326.168267pt;}
.y7f{bottom:326.232267pt;}
.y10e{bottom:326.269600pt;}
.y137{bottom:326.328267pt;}
.ya4{bottom:327.040400pt;}
.y23{bottom:327.565600pt;}
.y53{bottom:344.267067pt;}
.yc3{bottom:344.293733pt;}
.ye7{bottom:344.389733pt;}
.y17b{bottom:344.840267pt;}
.y10d{bottom:344.941600pt;}
.y136{bottom:345.000267pt;}
.ya3{bottom:345.712400pt;}
.y22{bottom:346.237600pt;}
.y52{bottom:362.939067pt;}
.ydd{bottom:362.965733pt;}
.ye6{bottom:363.061733pt;}
.y17a{bottom:363.512267pt;}
.y7e{bottom:363.560267pt;}
.y10c{bottom:363.613600pt;}
.y135{bottom:363.672267pt;}
.ya2{bottom:364.384400pt;}
.y21{bottom:364.909600pt;}
.y51{bottom:381.611067pt;}
.yc2{bottom:381.621733pt;}
.ydc{bottom:381.637733pt;}
.ye5{bottom:381.733733pt;}
.y179{bottom:382.184267pt;}
.y7d{bottom:382.232267pt;}
.y10b{bottom:382.285600pt;}
.y134{bottom:382.344267pt;}
.ya1{bottom:383.056400pt;}
.y20{bottom:383.581600pt;}
.y50{bottom:400.283067pt;}
.yc1{bottom:400.293733pt;}
.ydb{bottom:400.309733pt;}
.ye4{bottom:400.405733pt;}
.y178{bottom:400.856267pt;}
.y7c{bottom:400.904267pt;}
.y10a{bottom:400.957600pt;}
.ya0{bottom:401.728400pt;}
.y1f{bottom:402.253600pt;}
.y4f{bottom:418.955067pt;}
.yc0{bottom:418.965733pt;}
.yda{bottom:418.981733pt;}
.ye3{bottom:419.077733pt;}
.y177{bottom:419.528267pt;}
.y109{bottom:419.629600pt;}
.y133{bottom:419.672267pt;}
.y9f{bottom:420.400400pt;}
.y1e{bottom:420.925600pt;}
.y4e{bottom:437.627067pt;}
.ybf{bottom:437.637733pt;}
.ye2{bottom:437.749733pt;}
.y176{bottom:438.200267pt;}
.y7b{bottom:438.232267pt;}
.y108{bottom:438.301600pt;}
.y132{bottom:438.344267pt;}
.y1d{bottom:439.597600pt;}
.y4d{bottom:456.299067pt;}
.ybe{bottom:456.309733pt;}
.y175{bottom:456.872267pt;}
.y7a{bottom:456.904267pt;}
.y107{bottom:456.973600pt;}
.y131{bottom:457.016267pt;}
.y9e{bottom:457.728400pt;}
.y1c{bottom:458.269600pt;}
.y4c{bottom:474.971067pt;}
.yd9{bottom:474.981733pt;}
.y174{bottom:475.544267pt;}
.y79{bottom:475.576267pt;}
.y130{bottom:475.624267pt;}
.y106{bottom:475.645600pt;}
.y9d{bottom:476.400400pt;}
.y1b{bottom:476.941600pt;}
.ybd{bottom:493.637733pt;}
.y4b{bottom:493.643067pt;}
.yd8{bottom:493.653733pt;}
.y167{bottom:493.669733pt;}
.y173{bottom:494.216267pt;}
.y78{bottom:494.248267pt;}
.y12f{bottom:494.296267pt;}
.y105{bottom:494.317600pt;}
.y9c{bottom:495.072400pt;}
.y1a{bottom:495.613600pt;}
.ybc{bottom:512.309733pt;}
.y4a{bottom:512.315067pt;}
.yd7{bottom:512.325733pt;}
.y166{bottom:512.341733pt;}
.y172{bottom:512.888267pt;}
.y12e{bottom:512.968267pt;}
.y104{bottom:512.989600pt;}
.y9b{bottom:513.744400pt;}
.y19{bottom:514.285600pt;}
.ybb{bottom:530.981733pt;}
.y49{bottom:530.987067pt;}
.yd6{bottom:530.997733pt;}
.y165{bottom:531.013733pt;}
.y171{bottom:531.560267pt;}
.y77{bottom:531.576267pt;}
.y103{bottom:531.661600pt;}
.y9a{bottom:532.416400pt;}
.y18{bottom:532.957600pt;}
.y154{bottom:549.637733pt;}
.yba{bottom:549.653733pt;}
.y48{bottom:549.659067pt;}
.yd5{bottom:549.669733pt;}
.y164{bottom:549.685733pt;}
.y170{bottom:550.232267pt;}
.y76{bottom:550.248267pt;}
.y12d{bottom:550.296267pt;}
.y102{bottom:550.333600pt;}
.y99{bottom:551.083067pt;}
.y17{bottom:551.629600pt;}
.y153{bottom:568.309733pt;}
.yb9{bottom:568.325733pt;}
.y47{bottom:568.331067pt;}
.yd4{bottom:568.341733pt;}
.y163{bottom:568.357733pt;}
.y16f{bottom:568.904267pt;}
.y75{bottom:568.920267pt;}
.y12c{bottom:568.968267pt;}
.y101{bottom:569.005600pt;}
.y98{bottom:569.755067pt;}
.y16{bottom:570.301600pt;}
.y152{bottom:586.981733pt;}
.yb8{bottom:586.997733pt;}
.y46{bottom:587.003067pt;}
.yd3{bottom:587.013733pt;}
.y162{bottom:587.029733pt;}
.y16e{bottom:587.576267pt;}
.y74{bottom:587.592267pt;}
.y12b{bottom:587.640267pt;}
.y100{bottom:587.677600pt;}
.y15{bottom:588.973600pt;}
.y151{bottom:605.653733pt;}
.yb7{bottom:605.669733pt;}
.y45{bottom:605.675067pt;}
.yd2{bottom:605.685733pt;}
.y161{bottom:605.701733pt;}
.y16d{bottom:606.248267pt;}
.y73{bottom:606.264267pt;}
.y12a{bottom:606.312267pt;}
.yff{bottom:606.349600pt;}
.y97{bottom:607.088400pt;}
.y14{bottom:607.645600pt;}
.y150{bottom:624.325733pt;}
.yb6{bottom:624.341733pt;}
.y44{bottom:624.347067pt;}
.yd1{bottom:624.357733pt;}
.y16c{bottom:624.920267pt;}
.y72{bottom:624.936267pt;}
.y129{bottom:624.984267pt;}
.yfe{bottom:625.016267pt;}
.y13{bottom:626.317600pt;}
.y14f{bottom:642.997733pt;}
.y96{bottom:643.013733pt;}
.y43{bottom:643.019067pt;}
.y160{bottom:643.029733pt;}
.y16b{bottom:643.592267pt;}
.y71{bottom:643.608267pt;}
.y128{bottom:643.656267pt;}
.yfd{bottom:643.666933pt;}
.y12{bottom:644.989600pt;}
.y14e{bottom:661.669733pt;}
.y95{bottom:661.685733pt;}
.y42{bottom:661.691067pt;}
.y15f{bottom:661.701733pt;}
.y16a{bottom:662.264267pt;}
.y70{bottom:662.280267pt;}
.y127{bottom:662.328267pt;}
.yfc{bottom:662.338933pt;}
.y11{bottom:663.661600pt;}
.y14d{bottom:680.341733pt;}
.y94{bottom:680.357733pt;}
.y41{bottom:680.363067pt;}
.y169{bottom:680.936267pt;}
.y6f{bottom:680.952267pt;}
.y126{bottom:681.000267pt;}
.yfb{bottom:681.010933pt;}
.y10{bottom:682.333600pt;}
.y93{bottom:699.029733pt;}
.y40{bottom:699.035067pt;}
.y168{bottom:699.608267pt;}
.y6e{bottom:699.624267pt;}
.y125{bottom:699.672267pt;}
.yfa{bottom:699.682933pt;}
.yf{bottom:701.005600pt;}
.y14c{bottom:717.669733pt;}
.y92{bottom:717.701733pt;}
.y3f{bottom:717.707067pt;}
.yf9{bottom:718.280267pt;}
.y6d{bottom:718.296267pt;}
.y124{bottom:718.344267pt;}
.ye{bottom:719.677600pt;}
.y14b{bottom:736.341733pt;}
.yb5{bottom:736.357733pt;}
.y91{bottom:736.373733pt;}
.y3e{bottom:736.379067pt;}
.yf8{bottom:736.952267pt;}
.y6c{bottom:736.968267pt;}
.y123{bottom:737.016267pt;}
.yd{bottom:738.349600pt;}
.y14a{bottom:755.013733pt;}
.yb4{bottom:755.029733pt;}
.y90{bottom:755.045733pt;}
.y3d{bottom:755.051067pt;}
.yf7{bottom:755.624267pt;}
.y6b{bottom:755.640267pt;}
.yc{bottom:756.994933pt;}
.y149{bottom:773.685733pt;}
.yb3{bottom:773.701733pt;}
.y8f{bottom:773.717733pt;}
.y3c{bottom:773.723067pt;}
.yf6{bottom:774.296267pt;}
.y6a{bottom:774.312267pt;}
.y122{bottom:774.344267pt;}
.y148{bottom:792.357733pt;}
.yb2{bottom:792.373733pt;}
.y3b{bottom:792.395067pt;}
.yf5{bottom:792.968267pt;}
.y69{bottom:792.984267pt;}
.y121{bottom:793.016267pt;}
.yb{bottom:794.322933pt;}
.y147{bottom:811.029733pt;}
.y8e{bottom:811.045733pt;}
.y3a{bottom:811.067067pt;}
.yf4{bottom:811.640267pt;}
.y68{bottom:811.656267pt;}
.y120{bottom:811.688267pt;}
.ya{bottom:812.994933pt;}
.y146{bottom:829.701733pt;}
.y8d{bottom:829.717733pt;}
.y39{bottom:829.739067pt;}
.yf3{bottom:830.312267pt;}
.y11f{bottom:830.360267pt;}
.y9{bottom:831.666933pt;}
.y145{bottom:848.373733pt;}
.y8c{bottom:848.389733pt;}
.y38{bottom:848.411067pt;}
.y67{bottom:848.984267pt;}
.y8{bottom:850.338933pt;}
.yb1{bottom:867.045733pt;}
.y8b{bottom:867.061733pt;}
.y37{bottom:867.083067pt;}
.y66{bottom:867.656267pt;}
.y11e{bottom:867.672267pt;}
.y7{bottom:869.010933pt;}
.yb0{bottom:885.717733pt;}
.yd0{bottom:885.733733pt;}
.y36{bottom:885.739067pt;}
.y65{bottom:886.328267pt;}
.y11d{bottom:886.344267pt;}
.y8a{bottom:904.389733pt;}
.ycf{bottom:904.405733pt;}
.y35{bottom:904.411067pt;}
.y64{bottom:905.000267pt;}
.y11c{bottom:905.016267pt;}
.y89{bottom:923.061733pt;}
.yce{bottom:923.077733pt;}
.y34{bottom:923.083067pt;}
.y63{bottom:923.672267pt;}
.y33{bottom:941.733733pt;}
.y62{bottom:942.344267pt;}
.y6{bottom:943.682933pt;}
.y32{bottom:960.405733pt;}
.y61{bottom:961.016267pt;}
.y5{bottom:962.354933pt;}
.y31{bottom:979.077733pt;}
.y60{bottom:979.688267pt;}
.y30{bottom:997.749733pt;}
.y4{bottom:999.685600pt;}
.y2f{bottom:1016.421733pt;}
.y3{bottom:1017.021600pt;}
.y2{bottom:1066.481067pt;}
.h2{height:41.664000pt;}
.h3{height:44.586667pt;}
.h5{height:53.504000pt;}
.h6{height:55.552000pt;}
.ha{height:55.573333pt;}
.h9{height:55.616000pt;}
.h8{height:55.637333pt;}
.h7{height:55.658667pt;}
.hd{height:55.808000pt;}
.hc{height:55.850667pt;}
.hb{height:56.000000pt;}
.h4{height:57.728000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:56.692933pt;}
.x6{left:94.488267pt;}
.x3{left:132.283467pt;}
.x2{left:551.984667pt;}
.x5{left:578.658533pt;}
.x4{left:594.898533pt;}
.x1{left:719.007867pt;}
}

