
    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_7562bbfd7a26c5266ecf0a31.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;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_eeb3a28d921d0cddf34f12c0.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_db3ffbbdccc82fc604ee5745.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_28bde5c77c7dce0fa14c99b9.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_e4486451ce145052454a26e5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight: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_712fe7740f6fbb9c7374879f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7a5d1c66c6b184eff3284904.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight: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_be34cd2a0a6bc4c5676c7cf8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-50.400000px;}
.v2{vertical-align:-22.950000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.950000px;}
.v1{vertical-align:29.700000px;}
.lsa{letter-spacing:-0.468000px;}
.ls8{letter-spacing:-0.354000px;}
.ls3{letter-spacing:-0.300000px;}
.ls1{letter-spacing:-0.258000px;}
.ls9{letter-spacing:-0.246000px;}
.ls2{letter-spacing:-0.192000px;}
.ls7{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.003000px;}
.ls5{letter-spacing:12.750000px;}
.ls4{letter-spacing:12.753000px;}
.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;}
}
.ws4{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.000000px;}
.ws3{word-spacing:-12.750000px;}
.ws0{word-spacing:-10.500000px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-3062.256000px;}
._25{margin-left:-1160.268000px;}
._2d{margin-left:-1134.768000px;}
._1f{margin-left:-1109.268000px;}
._27{margin-left:-1096.518000px;}
._13{margin-left:-1082.904000px;}
._11{margin-left:-1065.090000px;}
._29{margin-left:-1058.268000px;}
._15{margin-left:-1032.768000px;}
._2c{margin-left:-1020.018000px;}
._20{margin-left:-976.584000px;}
._2b{margin-left:-951.084000px;}
._17{margin-left:-925.584000px;}
._2a{margin-left:-912.834000px;}
._23{margin-left:-900.084000px;}
._1d{margin-left:-887.334000px;}
._1e{margin-left:-874.584000px;}
._10{margin-left:-857.232000px;}
._24{margin-left:-849.084000px;}
._12{margin-left:-842.232000px;}
._18{margin-left:-836.736000px;}
._1a{margin-left:-823.584000px;}
._1b{margin-left:-822.558000px;}
._19{margin-left:-796.638000px;}
._16{margin-left:-791.946000px;}
._14{margin-left:-767.874000px;}
._22{margin-left:-744.894000px;}
._21{margin-left:-731.580000px;}
._28{margin-left:-653.052000px;}
._26{margin-left:-638.874000px;}
._1c{margin-left:-608.262000px;}
._1{margin-left:-12.960000px;}
._33{margin-left:-7.740000px;}
._5{margin-left:-6.660000px;}
._3{margin-left:-5.658000px;}
._6{margin-left:-4.440000px;}
._2{margin-left:-3.303000px;}
._9{margin-left:-2.286000px;}
._4{margin-left:-1.272000px;}
._0{width:1.620000px;}
._7{width:3.336000px;}
._c{width:4.920000px;}
._2e{width:6.702000px;}
._a{width:7.794000px;}
._31{width:9.345000px;}
._b{width:10.584000px;}
._8{width:12.960000px;}
._2f{width:18.336000px;}
._34{width:19.860000px;}
._30{width:27.774000px;}
._d{width:29.256000px;}
._32{width:99.000000px;}
._f{width:1760.073000px;}
.fc3{color:rgb(128,128,229);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs3{font-size:51.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:11.646000px;}
.y2f{bottom:32.346000px;}
.y30{bottom:35.484000px;}
.y2d{bottom:64.291500px;}
.y92{bottom:97.500000px;}
.y5e{bottom:103.282500px;}
.y91{bottom:115.500000px;}
.y8b{bottom:124.500000px;}
.y5d{bottom:127.582500px;}
.y90{bottom:133.500000px;}
.y8a{bottom:142.500000px;}
.y8f{bottom:151.500000px;}
.y5c{bottom:151.882500px;}
.y89{bottom:160.500000px;}
.y8e{bottom:169.500000px;}
.y5b{bottom:176.182500px;}
.y88{bottom:178.500000px;}
.y8d{bottom:187.500000px;}
.y87{bottom:196.500000px;}
.y5a{bottom:200.482500px;}
.y8c{bottom:205.500000px;}
.y86{bottom:214.500000px;}
.y59{bottom:224.782500px;}
.y85{bottom:232.500000px;}
.y58{bottom:249.082500px;}
.y84{bottom:250.500000px;}
.y57{bottom:273.382500px;}
.y83{bottom:282.411000px;}
.yb9{bottom:284.713500px;}
.y82{bottom:301.911000px;}
.y56{bottom:302.023500px;}
.yb8{bottom:302.713500px;}
.yb7{bottom:320.713500px;}
.y81{bottom:321.411000px;}
.y55{bottom:326.323500px;}
.yb6{bottom:338.713500px;}
.y80{bottom:340.911000px;}
.y54{bottom:350.623500px;}
.yb5{bottom:356.713500px;}
.y7f{bottom:360.411000px;}
.yb4{bottom:374.713500px;}
.y53{bottom:374.923500px;}
.y7e{bottom:379.911000px;}
.y52{bottom:399.223500px;}
.y7d{bottom:399.411000px;}
.y51{bottom:423.523500px;}
.y1e{bottom:424.885500px;}
.y7c{bottom:427.423500px;}
.y2c{bottom:430.585500px;}
.y1d{bottom:442.885500px;}
.yb3{bottom:444.156000px;}
.y50{bottom:447.823500px;}
.y2b{bottom:448.585500px;}
.y7b{bottom:451.723500px;}
.yb2{bottom:459.456000px;}
.y1c{bottom:460.885500px;}
.y2a{bottom:466.585500px;}
.y4f{bottom:472.123500px;}
.yb1{bottom:474.756000px;}
.y7a{bottom:476.023500px;}
.y1b{bottom:478.885500px;}
.y29{bottom:484.585500px;}
.yb0{bottom:490.056000px;}
.y4e{bottom:496.423500px;}
.y79{bottom:500.323500px;}
.y28{bottom:502.585500px;}
.yaf{bottom:505.356000px;}
.y1a{bottom:505.885500px;}
.y27{bottom:520.585500px;}
.yae{bottom:520.656000px;}
.y4d{bottom:520.723500px;}
.y19{bottom:523.885500px;}
.y78{bottom:524.623500px;}
.yad{bottom:535.956000px;}
.y26{bottom:538.585500px;}
.y18{bottom:541.885500px;}
.y4c{bottom:545.023500px;}
.y77{bottom:548.923500px;}
.y17{bottom:559.885500px;}
.yac{bottom:560.256000px;}
.y25{bottom:565.585500px;}
.y4b{bottom:569.323500px;}
.y76{bottom:573.223500px;}
.yab{bottom:575.556000px;}
.y16{bottom:577.885500px;}
.y24{bottom:583.585500px;}
.y4a{bottom:593.623500px;}
.y15{bottom:595.885500px;}
.y75{bottom:597.523500px;}
.y23{bottom:601.585500px;}
.y14{bottom:613.885500px;}
.y49{bottom:617.923500px;}
.y22{bottom:619.585500px;}
.y74{bottom:621.823500px;}
.y13{bottom:631.885500px;}
.y21{bottom:637.585500px;}
.y48{bottom:642.223500px;}
.y73{bottom:646.123500px;}
.yaa{bottom:654.741000px;}
.y20{bottom:655.585500px;}
.y12{bottom:663.615000px;}
.y47{bottom:666.523500px;}
.y72{bottom:670.423500px;}
.y1f{bottom:673.585500px;}
.ya9{bottom:677.791500px;}
.y46{bottom:690.823500px;}
.y71{bottom:694.723500px;}
.y11{bottom:706.585500px;}
.y45{bottom:715.123500px;}
.ya8{bottom:715.191000px;}
.y70{bottom:719.023500px;}
.y10{bottom:729.085500px;}
.ya7{bottom:733.191000px;}
.y44{bottom:739.423500px;}
.y6f{bottom:743.323500px;}
.ya6{bottom:751.191000px;}
.yf{bottom:760.735500px;}
.y43{bottom:763.723500px;}
.y6e{bottom:767.623500px;}
.ya5{bottom:769.191000px;}
.ya4{bottom:787.191000px;}
.y42{bottom:788.023500px;}
.y6d{bottom:791.923500px;}
.ye{bottom:792.235500px;}
.ya3{bottom:805.191000px;}
.yd{bottom:810.235500px;}
.y41{bottom:812.323500px;}
.y6c{bottom:816.223500px;}
.ya2{bottom:823.191000px;}
.yc{bottom:828.235500px;}
.y40{bottom:836.623500px;}
.y6b{bottom:840.523500px;}
.ya1{bottom:841.191000px;}
.yb{bottom:846.235500px;}
.y3f{bottom:860.923500px;}
.ya{bottom:864.235500px;}
.y6a{bottom:864.823500px;}
.ya0{bottom:868.741500px;}
.y9{bottom:882.235500px;}
.y3e{bottom:885.223500px;}
.y69{bottom:889.123500px;}
.y8{bottom:900.235500px;}
.y9f{bottom:901.641000px;}
.y3d{bottom:909.523500px;}
.y68{bottom:913.423500px;}
.y7{bottom:918.235500px;}
.y9e{bottom:919.641000px;}
.y3c{bottom:933.823500px;}
.y6{bottom:936.265500px;}
.y67{bottom:937.723500px;}
.y9d{bottom:942.691500px;}
.y3b{bottom:958.123500px;}
.y66{bottom:962.023500px;}
.y5{bottom:977.176500px;}
.y3a{bottom:982.423500px;}
.y9c{bottom:984.591000px;}
.y65{bottom:986.323500px;}
.y4{bottom:996.676500px;}
.y9b{bottom:1007.641500px;}
.y39{bottom:1011.064500px;}
.y64{bottom:1014.964500px;}
.y3{bottom:1016.466000px;}
.y37{bottom:1035.364500px;}
.y63{bottom:1039.264500px;}
.y38{bottom:1039.564500px;}
.y98{bottom:1045.041000px;}
.y9a{bottom:1054.041000px;}
.y97{bottom:1063.041000px;}
.y62{bottom:1063.564500px;}
.y36{bottom:1063.864500px;}
.y35{bottom:1068.064500px;}
.y99{bottom:1072.041000px;}
.y61{bottom:1087.864500px;}
.y96{bottom:1090.041000px;}
.y34{bottom:1092.364500px;}
.y2{bottom:1094.139000px;}
.y95{bottom:1108.041000px;}
.y60{bottom:1112.164500px;}
.y33{bottom:1116.664500px;}
.y94{bottom:1126.041000px;}
.y5f{bottom:1136.464500px;}
.y1{bottom:1142.421000px;}
.y93{bottom:1144.041000px;}
.y32{bottom:1145.914500px;}
.y2e{bottom:1181.910000px;}
.h5{height:41.220703px;}
.h11{height:50.028809px;}
.he{height:50.053711px;}
.hc{height:51.398438px;}
.h7{height:58.886719px;}
.h6{height:60.468750px;}
.h12{height:61.670545px;}
.hb{height:62.578125px;}
.hd{height:64.170703px;}
.hf{height:65.842125px;}
.h10{height:66.515625px;}
.h2{height:68.835938px;}
.h4{height:70.920703px;}
.ha{height:75.093750px;}
.h8{height:87.609375px;}
.h3{height:112.640625px;}
.h9{height:125.156250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:9.000000px;}
.x6{left:41.520000px;}
.x7{left:49.320000px;}
.x1{left:63.780000px;}
.x9{left:69.780000px;}
.xb{left:92.740500px;}
.xe{left:99.780000px;}
.xf{left:108.780000px;}
.xd{left:115.701000px;}
.xa{left:276.424500px;}
.x2{left:455.457000px;}
.xc{left:582.565500px;}
.x4{left:616.914000px;}
.x3{left:617.947500px;}
.x8{left:758.596500px;}
@media print{
.v3{vertical-align:-44.800000pt;}
.v2{vertical-align:-20.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:20.400000pt;}
.v1{vertical-align:26.400000pt;}
.lsa{letter-spacing:-0.416000pt;}
.ls8{letter-spacing:-0.314667pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:-0.229333pt;}
.ls9{letter-spacing:-0.218667pt;}
.ls2{letter-spacing:-0.170667pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.002667pt;}
.ls5{letter-spacing:11.333333pt;}
.ls4{letter-spacing:11.336000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3{word-spacing:-11.333333pt;}
.ws0{word-spacing:-9.333333pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-2722.005333pt;}
._25{margin-left:-1031.349333pt;}
._2d{margin-left:-1008.682667pt;}
._1f{margin-left:-986.016000pt;}
._27{margin-left:-974.682667pt;}
._13{margin-left:-962.581333pt;}
._11{margin-left:-946.746667pt;}
._29{margin-left:-940.682667pt;}
._15{margin-left:-918.016000pt;}
._2c{margin-left:-906.682667pt;}
._20{margin-left:-868.074667pt;}
._2b{margin-left:-845.408000pt;}
._17{margin-left:-822.741333pt;}
._2a{margin-left:-811.408000pt;}
._23{margin-left:-800.074667pt;}
._1d{margin-left:-788.741333pt;}
._1e{margin-left:-777.408000pt;}
._10{margin-left:-761.984000pt;}
._24{margin-left:-754.741333pt;}
._12{margin-left:-748.650667pt;}
._18{margin-left:-743.765333pt;}
._1a{margin-left:-732.074667pt;}
._1b{margin-left:-731.162667pt;}
._19{margin-left:-708.122667pt;}
._16{margin-left:-703.952000pt;}
._14{margin-left:-682.554667pt;}
._22{margin-left:-662.128000pt;}
._21{margin-left:-650.293333pt;}
._28{margin-left:-580.490667pt;}
._26{margin-left:-567.888000pt;}
._1c{margin-left:-540.677333pt;}
._1{margin-left:-11.520000pt;}
._33{margin-left:-6.880000pt;}
._5{margin-left:-5.920000pt;}
._3{margin-left:-5.029333pt;}
._6{margin-left:-3.946667pt;}
._2{margin-left:-2.936000pt;}
._9{margin-left:-2.032000pt;}
._4{margin-left:-1.130667pt;}
._0{width:1.440000pt;}
._7{width:2.965333pt;}
._c{width:4.373333pt;}
._2e{width:5.957333pt;}
._a{width:6.928000pt;}
._31{width:8.306667pt;}
._b{width:9.408000pt;}
._8{width:11.520000pt;}
._2f{width:16.298667pt;}
._34{width:17.653333pt;}
._30{width:24.688000pt;}
._d{width:26.005333pt;}
._32{width:88.000000pt;}
._f{width:1564.509333pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:45.333333pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:10.352000pt;}
.y2f{bottom:28.752000pt;}
.y30{bottom:31.541333pt;}
.y2d{bottom:57.148000pt;}
.y92{bottom:86.666667pt;}
.y5e{bottom:91.806667pt;}
.y91{bottom:102.666667pt;}
.y8b{bottom:110.666667pt;}
.y5d{bottom:113.406667pt;}
.y90{bottom:118.666667pt;}
.y8a{bottom:126.666667pt;}
.y8f{bottom:134.666667pt;}
.y5c{bottom:135.006667pt;}
.y89{bottom:142.666667pt;}
.y8e{bottom:150.666667pt;}
.y5b{bottom:156.606667pt;}
.y88{bottom:158.666667pt;}
.y8d{bottom:166.666667pt;}
.y87{bottom:174.666667pt;}
.y5a{bottom:178.206667pt;}
.y8c{bottom:182.666667pt;}
.y86{bottom:190.666667pt;}
.y59{bottom:199.806667pt;}
.y85{bottom:206.666667pt;}
.y58{bottom:221.406667pt;}
.y84{bottom:222.666667pt;}
.y57{bottom:243.006667pt;}
.y83{bottom:251.032000pt;}
.yb9{bottom:253.078667pt;}
.y82{bottom:268.365333pt;}
.y56{bottom:268.465333pt;}
.yb8{bottom:269.078667pt;}
.yb7{bottom:285.078667pt;}
.y81{bottom:285.698667pt;}
.y55{bottom:290.065333pt;}
.yb6{bottom:301.078667pt;}
.y80{bottom:303.032000pt;}
.y54{bottom:311.665333pt;}
.yb5{bottom:317.078667pt;}
.y7f{bottom:320.365333pt;}
.yb4{bottom:333.078667pt;}
.y53{bottom:333.265333pt;}
.y7e{bottom:337.698667pt;}
.y52{bottom:354.865333pt;}
.y7d{bottom:355.032000pt;}
.y51{bottom:376.465333pt;}
.y1e{bottom:377.676000pt;}
.y7c{bottom:379.932000pt;}
.y2c{bottom:382.742667pt;}
.y1d{bottom:393.676000pt;}
.yb3{bottom:394.805333pt;}
.y50{bottom:398.065333pt;}
.y2b{bottom:398.742667pt;}
.y7b{bottom:401.532000pt;}
.yb2{bottom:408.405333pt;}
.y1c{bottom:409.676000pt;}
.y2a{bottom:414.742667pt;}
.y4f{bottom:419.665333pt;}
.yb1{bottom:422.005333pt;}
.y7a{bottom:423.132000pt;}
.y1b{bottom:425.676000pt;}
.y29{bottom:430.742667pt;}
.yb0{bottom:435.605333pt;}
.y4e{bottom:441.265333pt;}
.y79{bottom:444.732000pt;}
.y28{bottom:446.742667pt;}
.yaf{bottom:449.205333pt;}
.y1a{bottom:449.676000pt;}
.y27{bottom:462.742667pt;}
.yae{bottom:462.805333pt;}
.y4d{bottom:462.865333pt;}
.y19{bottom:465.676000pt;}
.y78{bottom:466.332000pt;}
.yad{bottom:476.405333pt;}
.y26{bottom:478.742667pt;}
.y18{bottom:481.676000pt;}
.y4c{bottom:484.465333pt;}
.y77{bottom:487.932000pt;}
.y17{bottom:497.676000pt;}
.yac{bottom:498.005333pt;}
.y25{bottom:502.742667pt;}
.y4b{bottom:506.065333pt;}
.y76{bottom:509.532000pt;}
.yab{bottom:511.605333pt;}
.y16{bottom:513.676000pt;}
.y24{bottom:518.742667pt;}
.y4a{bottom:527.665333pt;}
.y15{bottom:529.676000pt;}
.y75{bottom:531.132000pt;}
.y23{bottom:534.742667pt;}
.y14{bottom:545.676000pt;}
.y49{bottom:549.265333pt;}
.y22{bottom:550.742667pt;}
.y74{bottom:552.732000pt;}
.y13{bottom:561.676000pt;}
.y21{bottom:566.742667pt;}
.y48{bottom:570.865333pt;}
.y73{bottom:574.332000pt;}
.yaa{bottom:581.992000pt;}
.y20{bottom:582.742667pt;}
.y12{bottom:589.880000pt;}
.y47{bottom:592.465333pt;}
.y72{bottom:595.932000pt;}
.y1f{bottom:598.742667pt;}
.ya9{bottom:602.481333pt;}
.y46{bottom:614.065333pt;}
.y71{bottom:617.532000pt;}
.y11{bottom:628.076000pt;}
.y45{bottom:635.665333pt;}
.ya8{bottom:635.725333pt;}
.y70{bottom:639.132000pt;}
.y10{bottom:648.076000pt;}
.ya7{bottom:651.725333pt;}
.y44{bottom:657.265333pt;}
.y6f{bottom:660.732000pt;}
.ya6{bottom:667.725333pt;}
.yf{bottom:676.209333pt;}
.y43{bottom:678.865333pt;}
.y6e{bottom:682.332000pt;}
.ya5{bottom:683.725333pt;}
.ya4{bottom:699.725333pt;}
.y42{bottom:700.465333pt;}
.y6d{bottom:703.932000pt;}
.ye{bottom:704.209333pt;}
.ya3{bottom:715.725333pt;}
.yd{bottom:720.209333pt;}
.y41{bottom:722.065333pt;}
.y6c{bottom:725.532000pt;}
.ya2{bottom:731.725333pt;}
.yc{bottom:736.209333pt;}
.y40{bottom:743.665333pt;}
.y6b{bottom:747.132000pt;}
.ya1{bottom:747.725333pt;}
.yb{bottom:752.209333pt;}
.y3f{bottom:765.265333pt;}
.ya{bottom:768.209333pt;}
.y6a{bottom:768.732000pt;}
.ya0{bottom:772.214667pt;}
.y9{bottom:784.209333pt;}
.y3e{bottom:786.865333pt;}
.y69{bottom:790.332000pt;}
.y8{bottom:800.209333pt;}
.y9f{bottom:801.458667pt;}
.y3d{bottom:808.465333pt;}
.y68{bottom:811.932000pt;}
.y7{bottom:816.209333pt;}
.y9e{bottom:817.458667pt;}
.y3c{bottom:830.065333pt;}
.y6{bottom:832.236000pt;}
.y67{bottom:833.532000pt;}
.y9d{bottom:837.948000pt;}
.y3b{bottom:851.665333pt;}
.y66{bottom:855.132000pt;}
.y5{bottom:868.601333pt;}
.y3a{bottom:873.265333pt;}
.y9c{bottom:875.192000pt;}
.y65{bottom:876.732000pt;}
.y4{bottom:885.934667pt;}
.y9b{bottom:895.681333pt;}
.y39{bottom:898.724000pt;}
.y64{bottom:902.190667pt;}
.y3{bottom:903.525333pt;}
.y37{bottom:920.324000pt;}
.y63{bottom:923.790667pt;}
.y38{bottom:924.057333pt;}
.y98{bottom:928.925333pt;}
.y9a{bottom:936.925333pt;}
.y97{bottom:944.925333pt;}
.y62{bottom:945.390667pt;}
.y36{bottom:945.657333pt;}
.y35{bottom:949.390667pt;}
.y99{bottom:952.925333pt;}
.y61{bottom:966.990667pt;}
.y96{bottom:968.925333pt;}
.y34{bottom:970.990667pt;}
.y2{bottom:972.568000pt;}
.y95{bottom:984.925333pt;}
.y60{bottom:988.590667pt;}
.y33{bottom:992.590667pt;}
.y94{bottom:1000.925333pt;}
.y5f{bottom:1010.190667pt;}
.y1{bottom:1015.485333pt;}
.y93{bottom:1016.925333pt;}
.y32{bottom:1018.590667pt;}
.y2e{bottom:1050.586667pt;}
.h5{height:36.640625pt;}
.h11{height:44.470052pt;}
.he{height:44.492188pt;}
.hc{height:45.687500pt;}
.h7{height:52.343750pt;}
.h6{height:53.750000pt;}
.h12{height:54.818262pt;}
.hb{height:55.625000pt;}
.hd{height:57.040625pt;}
.hf{height:58.526333pt;}
.h10{height:59.125000pt;}
.h2{height:61.187500pt;}
.h4{height:63.040625pt;}
.ha{height:66.750000pt;}
.h8{height:77.875000pt;}
.h3{height:100.125000pt;}
.h9{height:111.250000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:8.000000pt;}
.x6{left:36.906667pt;}
.x7{left:43.840000pt;}
.x1{left:56.693333pt;}
.x9{left:62.026667pt;}
.xb{left:82.436000pt;}
.xe{left:88.693333pt;}
.xf{left:96.693333pt;}
.xd{left:102.845333pt;}
.xa{left:245.710667pt;}
.x2{left:404.850667pt;}
.xc{left:517.836000pt;}
.x4{left:548.368000pt;}
.x3{left:549.286667pt;}
.x8{left:674.308000pt;}
}

