
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_4bfc6c7268988855c03495ae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.194000;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_3145f83d76b5cd5036d9b718.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e398a9038a4f0ce72b4ce119.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194000;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_4c35af89f63aaac6ce11c349.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_73e5daeb2180eb78071cc456.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_cf3b1eda0526ae4abdb442e8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf3b1eda0526ae4abdb442e8.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_923cc248ed3b6aa5f550a629.woff')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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(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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.513600px;}
.ls8{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.234000px;}
.ls14{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.153600px;}
.lsd{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.139800px;}
.ls6{letter-spacing:-0.038160px;}
.ls7{letter-spacing:-0.037080px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006120px;}
.ls22{letter-spacing:0.029520px;}
.ls16{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.191160px;}
.ls2{letter-spacing:0.216720px;}
.ls15{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.450000px;}
.ls1e{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.810000px;}
.ls20{letter-spacing:0.981000px;}
.ls21{letter-spacing:1.170000px;}
.ls1b{letter-spacing:1.620000px;}
.ls1f{letter-spacing:2.340000px;}
.ls19{letter-spacing:2.700000px;}
.ls1d{letter-spacing:3.330000px;}
.ls17{letter-spacing:3.501000px;}
.ls1c{letter-spacing:3.780000px;}
.ls18{letter-spacing:6.210000px;}
.ls1a{letter-spacing:6.660000px;}
.ls23{letter-spacing:15.750000px;}
.ls24{letter-spacing:17.280000px;}
.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:-41.194453px;}
.ws0{word-spacing:-39.080880px;}
.ws2{word-spacing:-31.335120px;}
.ws10{word-spacing:-19.568520px;}
.ws3{word-spacing:-19.539000px;}
.wse{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.676000px;}
.ws5{word-spacing:-17.604000px;}
.ws7{word-spacing:-17.550000px;}
.ws6{word-spacing:-17.316000px;}
.wsf{word-spacing:-15.210000px;}
.wsc{word-spacing:-15.030000px;}
.wsb{word-spacing:-14.890200px;}
.wsd{word-spacing:-14.850000px;}
.ws11{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-4.906800px;}
._2{margin-left:-3.702600px;}
._1{margin-left:-2.664000px;}
._0{margin-left:-1.049400px;}
._3{width:1.033800px;}
._b{width:2.736000px;}
._6{width:4.608000px;}
._5{width:5.616000px;}
._7{width:7.200000px;}
._4{width:8.640000px;}
._8{width:10.584000px;}
._d{width:11.664000px;}
._10{width:13.464000px;}
._f{width:14.544000px;}
._15{width:15.696000px;}
._a{width:16.776000px;}
._1c{width:18.058800px;}
._e{width:19.176000px;}
._12{width:20.808000px;}
._11{width:22.104000px;}
._14{width:23.564400px;}
._13{width:24.696000px;}
._18{width:25.930800px;}
._17{width:27.072000px;}
._1a{width:28.584000px;}
._19{width:29.664000px;}
._16{width:30.888000px;}
._1b{width:32.472000px;}
._1d{width:40.744440px;}
._1e{width:41.767560px;}
._1f{width:42.943560px;}
._20{width:56.464200px;}
._c{width:1140.360000px;}
.fc2{color:rgb(146,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fs9{font-size:47.880000px;}
.fsa{font-size:50.469447px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fsd{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs5{font-size:101.318363px;}
.fs2{font-size:119.880000px;}
.fs4{font-size:126.363352px;}
.fsc{font-size:605.880000px;}
.y4c{bottom:-11.970000px;}
.y26{bottom:-6.120000px;}
.y50{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.420000px;}
.y198{bottom:4.050000px;}
.y2e{bottom:11.340000px;}
.y3b{bottom:11.700000px;}
.y7c{bottom:14.400000px;}
.y8f{bottom:14.490000px;}
.y4b{bottom:17.640000px;}
.y52{bottom:24.030000px;}
.y2a{bottom:31.980000px;}
.y7a{bottom:35.310000px;}
.y78{bottom:35.550000px;}
.y2d{bottom:40.950000px;}
.y3a{bottom:42.750000px;}
.y56{bottom:46.350000px;}
.y5{bottom:46.890000px;}
.y4a{bottom:48.690000px;}
.y4f{bottom:57.870000px;}
.y55{bottom:63.180000px;}
.y39{bottom:63.450000px;}
.y4{bottom:67.050000px;}
.y2c{bottom:69.210000px;}
.y51{bottom:69.660000px;}
.y29{bottom:73.380000px;}
.y49{bottom:79.770000px;}
.y3{bottom:87.120000px;}
.y38{bottom:87.240000px;}
.y48{bottom:103.530000px;}
.y2{bottom:107.280000px;}
.y37{bottom:111.000000px;}
.y28{bottom:114.780000px;}
.y47{bottom:127.380000px;}
.y1{bottom:127.440000px;}
.y36{bottom:134.850000px;}
.y8d{bottom:138.420000px;}
.y115{bottom:138.510000px;}
.y54{bottom:139.050000px;}
.yb6{bottom:143.640000px;}
.y14f{bottom:143.730000px;}
.y3c{bottom:147.870000px;}
.y46{bottom:151.140000px;}
.yb5{bottom:155.610000px;}
.y8c{bottom:155.790000px;}
.y183{bottom:155.880000px;}
.y35{bottom:158.610000px;}
.ya9{bottom:159.120000px;}
.ye3{bottom:159.210000px;}
.yb4{bottom:160.830000px;}
.y100{bottom:161.010000px;}
.y194{bottom:161.280000px;}
.ya8{bottom:164.340000px;}
.ye2{bottom:164.430000px;}
.yb3{bottom:172.890000px;}
.yd8{bottom:172.980000px;}
.y8b{bottom:173.160000px;}
.yff{bottom:174.240000px;}
.y25{bottom:174.510000px;}
.y45{bottom:174.990000px;}
.yc7{bottom:176.310000px;}
.ya7{bottom:176.490000px;}
.y76{bottom:177.210000px;}
.y150{bottom:177.480000px;}
.yb2{bottom:178.110000px;}
.yc6{bottom:181.530000px;}
.ya6{bottom:181.710000px;}
.y34{bottom:182.460000px;}
.yb1{bottom:190.170000px;}
.yec{bottom:190.260000px;}
.yd7{bottom:190.350000px;}
.y15b{bottom:190.440000px;}
.y8a{bottom:190.530000px;}
.y193{bottom:192.330000px;}
.yc5{bottom:193.590000px;}
.y126{bottom:193.680000px;}
.ya5{bottom:193.770000px;}
.ye1{bottom:193.860000px;}
.yb0{bottom:195.390000px;}
.yeb{bottom:195.480000px;}
.y15a{bottom:195.660000px;}
.y89{bottom:195.750000px;}
.y44{bottom:198.750000px;}
.yc4{bottom:198.810000px;}
.y125{bottom:198.900000px;}
.yfd{bottom:198.990000px;}
.y102{bottom:199.080000px;}
.y79{bottom:200.520000px;}
.y24{bottom:205.560000px;}
.y33{bottom:206.220000px;}
.yaf{bottom:207.360000px;}
.yea{bottom:207.540000px;}
.yd6{bottom:207.630000px;}
.y159{bottom:207.720000px;}
.y88{bottom:207.810000px;}
.y114{bottom:207.900000px;}
.y75{bottom:208.260000px;}
.y146{bottom:208.530000px;}
.y14e{bottom:208.980000px;}
.yc3{bottom:210.960000px;}
.ya4{bottom:211.050000px;}
.y189{bottom:211.140000px;}
.ye0{bottom:211.230000px;}
.y124{bottom:212.130000px;}
.y101{bottom:212.310000px;}
.yae{bottom:212.580000px;}
.y11a{bottom:212.760000px;}
.yd5{bottom:212.850000px;}
.y113{bottom:213.120000px;}
.yc2{bottom:216.180000px;}
.yfc{bottom:216.270000px;}
.y118{bottom:216.450000px;}
.y43{bottom:222.600000px;}
.y192{bottom:223.380000px;}
.ye9{bottom:224.850000px;}
.yd4{bottom:224.940000px;}
.y87{bottom:225.030000px;}
.y112{bottom:225.210000px;}
.yad{bottom:225.840000px;}
.yc1{bottom:228.270000px;}
.ya3{bottom:228.360000px;}
.y188{bottom:228.450000px;}
.y14d{bottom:228.540000px;}
.ydf{bottom:228.630000px;}
.yfb{bottom:229.530000px;}
.y117{bottom:229.710000px;}
.y32{bottom:230.070000px;}
.yd3{bottom:230.160000px;}
.y86{bottom:230.250000px;}
.y111{bottom:230.430000px;}
.y187{bottom:233.670000px;}
.y23{bottom:236.640000px;}
.y74{bottom:239.340000px;}
.ye8{bottom:242.130000px;}
.yd2{bottom:242.220000px;}
.y85{bottom:242.310000px;}
.y110{bottom:242.580000px;}
.y119{bottom:243.210000px;}
.y16e{bottom:245.460000px;}
.ya2{bottom:245.640000px;}
.y14c{bottom:245.730000px;}
.y186{bottom:245.820000px;}
.yde{bottom:245.910000px;}
.y42{bottom:246.360000px;}
.ye7{bottom:247.350000px;}
.yd1{bottom:247.440000px;}
.y10f{bottom:247.800000px;}
.y185{bottom:251.040000px;}
.ydd{bottom:251.130000px;}
.y31{bottom:253.830000px;}
.y191{bottom:254.460000px;}
.yd0{bottom:259.410000px;}
.y158{bottom:259.590000px;}
.y84{bottom:259.680000px;}
.y10e{bottom:259.860000px;}
.ye6{bottom:260.580000px;}
.y16d{bottom:262.740000px;}
.yc0{bottom:262.920000px;}
.ya1{bottom:263.010000px;}
.y14b{bottom:263.100000px;}
.ydc{bottom:263.280000px;}
.y184{bottom:264.270000px;}
.ycf{bottom:264.630000px;}
.y22{bottom:267.690000px;}
.y16c{bottom:267.960000px;}
.ybf{bottom:268.140000px;}
.ydb{bottom:268.500000px;}
.y145{bottom:268.770000px;}
.y41{bottom:270.210000px;}
.y73{bottom:270.390000px;}
.yce{bottom:276.690000px;}
.y157{bottom:276.870000px;}
.y182{bottom:276.960000px;}
.y83{bottom:277.050000px;}
.y123{bottom:278.310000px;}
.ybe{bottom:280.110000px;}
.ya0{bottom:280.380000px;}
.yda{bottom:281.730000px;}
.ycd{bottom:281.910000px;}
.y82{bottom:282.270000px;}
.ybd{bottom:285.330000px;}
.y190{bottom:285.510000px;}
.y30{bottom:285.960000px;}
.ycc{bottom:293.970000px;}
.y156{bottom:294.150000px;}
.y10d{bottom:294.420000px;}
.y81{bottom:295.500000px;}
.y16b{bottom:297.390000px;}
.y9f{bottom:297.660000px;}
.ybc{bottom:298.560000px;}
.y21{bottom:298.740000px;}
.ycb{bottom:299.190000px;}
.y155{bottom:299.370000px;}
.y10c{bottom:299.640000px;}
.y144{bottom:299.820000px;}
.y72{bottom:301.440000px;}
.y40{bottom:302.340000px;}
.y9e{bottom:302.880000px;}
.y122{bottom:304.230000px;}
.y154{bottom:311.430000px;}
.y10b{bottom:311.700000px;}
.yca{bottom:312.330000px;}
.y181{bottom:312.600000px;}
.y16a{bottom:314.670000px;}
.y9d{bottom:314.850000px;}
.y18f{bottom:316.560000px;}
.y153{bottom:316.650000px;}
.y10a{bottom:316.920000px;}
.y196{bottom:323.220000px;}
.y3f{bottom:323.940000px;}
.y109{bottom:328.980000px;}
.y20{bottom:329.790000px;}
.y152{bottom:329.880000px;}
.y143{bottom:330.870000px;}
.y169{bottom:331.860000px;}
.y9c{bottom:332.130000px;}
.y14a{bottom:332.220000px;}
.y71{bottom:332.490000px;}
.y108{bottom:334.200000px;}
.y197{bottom:336.900000px;}
.y149{bottom:337.440000px;}
.yfe{bottom:339.240000px;}
.y195{bottom:339.690000px;}
.y107{bottom:346.170000px;}
.y18e{bottom:347.610000px;}
.y168{bottom:349.140000px;}
.y9b{bottom:349.410000px;}
.y148{bottom:350.670000px;}
.y106{bottom:351.390000px;}
.y17f{bottom:353.190000px;}
.y167{bottom:354.360000px;}
.y3e{bottom:356.340000px;}
.y180{bottom:359.940000px;}
.y1f{bottom:360.840000px;}
.y142{bottom:361.920000px;}
.y70{bottom:363.540000px;}
.y105{bottom:364.620000px;}
.y166{bottom:366.510000px;}
.y9a{bottom:366.690000px;}
.y116{bottom:370.290000px;}
.y165{bottom:371.730000px;}
.y18d{bottom:378.660000px;}
.y164{bottom:383.790000px;}
.y99{bottom:384.150000px;}
.y17e{bottom:384.240000px;}
.y3d{bottom:388.740000px;}
.y98{bottom:389.370000px;}
.y1e{bottom:391.890000px;}
.y141{bottom:392.970000px;}
.y6f{bottom:394.590000px;}
.y163{bottom:401.070000px;}
.y80{bottom:401.340000px;}
.y97{bottom:401.430000px;}
.y18c{bottom:409.710000px;}
.y17d{bottom:415.290000px;}
.y162{bottom:418.350000px;}
.y96{bottom:418.710000px;}
.y1d{bottom:422.940000px;}
.y95{bottom:423.930000px;}
.y6e{bottom:425.640000px;}
.y104{bottom:432.390000px;}
.y161{bottom:435.720000px;}
.y94{bottom:437.160000px;}
.y160{bottom:440.940000px;}
.y17c{bottom:446.340000px;}
.y18b{bottom:451.290000px;}
.y15f{bottom:453.000000px;}
.y1c{bottom:453.990000px;}
.y140{bottom:454.980000px;}
.y6d{bottom:456.690000px;}
.ybb{bottom:463.440000px;}
.y15e{bottom:470.370000px;}
.y15d{bottom:475.590000px;}
.y17b{bottom:477.390000px;}
.y18a{bottom:478.290000px;}
.y1b{bottom:485.040000px;}
.y13f{bottom:486.030000px;}
.y6c{bottom:487.740000px;}
.y15c{bottom:488.820000px;}
.y93{bottom:494.490000px;}
.y17a{bottom:508.440000px;}
.y1a{bottom:516.090000px;}
.y13e{bottom:517.080000px;}
.y6b{bottom:518.790000px;}
.y7f{bottom:525.540000px;}
.y179{bottom:539.490000px;}
.y19{bottom:547.140000px;}
.y13d{bottom:548.130000px;}
.y6a{bottom:549.840000px;}
.y103{bottom:556.590000px;}
.y2f{bottom:564.510000px;}
.y178{bottom:570.540000px;}
.y18{bottom:578.190000px;}
.y13c{bottom:579.180000px;}
.y69{bottom:580.890000px;}
.yba{bottom:587.640000px;}
.y177{bottom:601.590000px;}
.y17{bottom:609.240000px;}
.y13b{bottom:610.230000px;}
.y68{bottom:611.940000px;}
.ye5{bottom:618.690000px;}
.y175{bottom:632.640000px;}
.y176{bottom:639.390000px;}
.y16{bottom:640.290000px;}
.y139{bottom:641.280000px;}
.y67{bottom:642.990000px;}
.y13a{bottom:648.060000px;}
.yd9{bottom:649.770000px;}
.y174{bottom:663.720000px;}
.y15{bottom:671.280000px;}
.y138{bottom:672.360000px;}
.y66{bottom:674.070000px;}
.y92{bottom:680.820000px;}
.y173{bottom:694.770000px;}
.y14{bottom:702.330000px;}
.y137{bottom:703.410000px;}
.y65{bottom:705.120000px;}
.yac{bottom:711.870000px;}
.y172{bottom:725.820000px;}
.y13{bottom:733.380000px;}
.yf9{bottom:733.740000px;}
.y136{bottom:734.460000px;}
.y64{bottom:736.170000px;}
.yfa{bottom:738.960000px;}
.yc9{bottom:742.920000px;}
.y171{bottom:756.870000px;}
.yf8{bottom:759.660000px;}
.y12{bottom:764.430000px;}
.y120{bottom:764.790000px;}
.y135{bottom:765.510000px;}
.y63{bottom:767.220000px;}
.y121{bottom:770.010000px;}
.y151{bottom:773.970000px;}
.yf7{bottom:785.490000px;}
.y170{bottom:787.830000px;}
.y11f{bottom:790.620000px;}
.y11{bottom:795.480000px;}
.y133{bottom:796.560000px;}
.y62{bottom:798.180000px;}
.y134{bottom:803.310000px;}
.yb9{bottom:804.930000px;}
.yf6{bottom:811.320000px;}
.y11e{bottom:816.540000px;}
.y16f{bottom:821.760000px;}
.y10{bottom:826.530000px;}
.y132{bottom:827.610000px;}
.y61{bottom:829.230000px;}
.y91{bottom:835.980000px;}
.yf5{bottom:837.240000px;}
.y11d{bottom:842.370000px;}
.yf{bottom:857.580000px;}
.y131{bottom:858.660000px;}
.y60{bottom:860.280000px;}
.yf4{bottom:863.070000px;}
.ye4{bottom:867.030000px;}
.y11c{bottom:868.290000px;}
.ye{bottom:888.630000px;}
.yf3{bottom:888.990000px;}
.y12f{bottom:889.710000px;}
.y5f{bottom:891.330000px;}
.y11b{bottom:894.120000px;}
.y2b{bottom:896.370000px;}
.y130{bottom:896.460000px;}
.yb8{bottom:898.080000px;}
.yf2{bottom:914.820000px;}
.yd{bottom:919.680000px;}
.y12e{bottom:920.760000px;}
.y5e{bottom:922.380000px;}
.y90{bottom:929.130000px;}
.yf1{bottom:940.740000px;}
.yc{bottom:950.730000px;}
.y12d{bottom:951.810000px;}
.y5d{bottom:953.430000px;}
.yab{bottom:960.180000px;}
.yf0{bottom:966.570000px;}
.yb{bottom:981.780000px;}
.y12c{bottom:982.860000px;}
.y5c{bottom:984.480000px;}
.y4d{bottom:987.090000px;}
.y147{bottom:991.230000px;}
.yef{bottom:992.490000px;}
.ya{bottom:1012.830000px;}
.y12b{bottom:1013.910000px;}
.y5b{bottom:1015.530000px;}
.yee{bottom:1018.320000px;}
.yb7{bottom:1022.280000px;}
.y8e{bottom:1034.430000px;}
.y9{bottom:1044.960000px;}
.y5a{bottom:1046.580000px;}
.yaa{bottom:1053.330000px;}
.y27{bottom:1056.750000px;}
.y12a{bottom:1076.040000px;}
.y8{bottom:1077.390000px;}
.y59{bottom:1077.660000px;}
.y7e{bottom:1084.410000px;}
.y58{bottom:1108.710000px;}
.y7{bottom:1109.790000px;}
.yc8{bottom:1115.460000px;}
.y128{bottom:1116.720000px;}
.y7b{bottom:1120.500000px;}
.y129{bottom:1121.940000px;}
.y57{bottom:1139.760000px;}
.y6{bottom:1140.930000px;}
.y127{bottom:1142.550000px;}
.yed{bottom:1146.510000px;}
.y77{bottom:1182.960000px;}
.y7d{bottom:1190.250000px;}
.y53{bottom:1208.880000px;}
.h16{height:30.150000px;}
.h12{height:36.900000px;}
.h1a{height:38.158594px;}
.h10{height:39.420000px;}
.h26{height:44.550000px;}
.h17{height:45.102960px;}
.h19{height:46.991602px;}
.h18{height:47.542219px;}
.h13{height:50.868000px;}
.h15{height:51.060000px;}
.h14{height:51.300000px;}
.h21{height:53.896641px;}
.hb{height:56.633040px;}
.h22{height:58.975137px;}
.h1b{height:59.004492px;}
.h1e{height:61.793886px;}
.h3{height:62.058960px;}
.h1f{height:64.546875px;}
.hf{height:64.657617px;}
.h2{height:65.526152px;}
.h4{height:67.824000px;}
.h24{height:70.628906px;}
.h5{height:70.664062px;}
.he{height:71.492058px;}
.h20{height:74.004654px;}
.h11{height:78.930000px;}
.h25{height:82.323633px;}
.ha{height:84.870000px;}
.h8{height:90.545040px;}
.h23{height:94.336523px;}
.h7{height:112.926960px;}
.h1c{height:117.480000px;}
.h9{height:119.034277px;}
.h6{height:143.310000px;}
.hc{height:303.060000px;}
.hd{height:405.840000px;}
.h1d{height:594.342246px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:62.190000px;}
.w8{width:101.160000px;}
.w10{width:137.250000px;}
.wf{width:140.850000px;}
.w9{width:184.620000px;}
.wa{width:232.410000px;}
.wd{width:254.190000px;}
.w5{width:450.390000px;}
.wb{width:578.400000px;}
.wc{width:657.510000px;}
.w4{width:706.560000px;}
.w6{width:717.810000px;}
.w3{width:892.979970px;}
.we{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:10.710000px;}
.x5{left:21.870000px;}
.x10{left:38.610000px;}
.x15{left:51.300000px;}
.x19{left:64.980000px;}
.x6{left:69.390000px;}
.x17{left:90.270000px;}
.x12{left:112.320000px;}
.x4{left:114.780000px;}
.xe{left:115.950000px;}
.x9a{left:118.650000px;}
.x1f{left:119.910000px;}
.x9b{left:125.550000px;}
.x1{left:127.649987px;}
.x2e{left:132.509987px;}
.x40{left:137.369987px;}
.x2{left:154.469987px;}
.xc{left:157.140000px;}
.x35{left:162.659987px;}
.x2a{left:170.219987px;}
.x73{left:172.649973px;}
.x4e{left:178.589973px;}
.x21{left:181.469987px;}
.x29{left:182.639973px;}
.x54{left:183.899973px;}
.x7{left:188.100000px;}
.x32{left:189.659987px;}
.x9{left:191.520000px;}
.x55{left:195.959987px;}
.x8b{left:199.649987px;}
.x62{left:200.729987px;}
.x4c{left:204.599973px;}
.x4a{left:211.439973px;}
.x3a{left:215.579973px;}
.x4d{left:216.659987px;}
.x18{left:221.070000px;}
.x4b{left:223.499987px;}
.x3b{left:227.639987px;}
.xd{left:244.020000px;}
.x6a{left:252.659973px;}
.x56{left:256.529973px;}
.x6b{left:264.719987px;}
.x26{left:268.499987px;}
.x7c{left:276.779973px;}
.x24{left:283.799987px;}
.x1d{left:286.049987px;}
.x7d{left:288.839987px;}
.x7f{left:292.619973px;}
.x80{left:304.679987px;}
.x6e{left:315.929973px;}
.x20{left:318.450000px;}
.xb{left:328.980000px;}
.x57{left:337.439973px;}
.x2d{left:343.649987px;}
.x58{left:349.499987px;}
.x5c{left:357.719973px;}
.x13{left:359.040000px;}
.x5d{left:367.439987px;}
.xa{left:370.230000px;}
.x77{left:392.999973px;}
.x16{left:394.710000px;}
.x78{left:402.719987px;}
.x1b{left:406.409987px;}
.x74{left:409.019973px;}
.x31{left:414.149973px;}
.x83{left:419.549987px;}
.x14{left:421.080000px;}
.x25{left:424.049987px;}
.x71{left:427.109973px;}
.x1e{left:428.549987px;}
.x81{left:433.499987px;}
.x90{left:435.479973px;}
.x96{left:437.909973px;}
.x72{left:439.169987px;}
.x91{left:445.199987px;}
.x1c{left:446.549987px;}
.x5e{left:448.619973px;}
.x97{left:449.969987px;}
.x84{left:453.299973px;}
.x59{left:457.979973px;}
.x5f{left:460.679987px;}
.x44{left:466.079973px;}
.x5a{left:470.039987px;}
.x66{left:473.729973px;}
.x8d{left:474.989973px;}
.x45{left:478.139987px;}
.x3e{left:483.359973px;}
.x67{left:485.789987px;}
.x8e{left:487.049987px;}
.x46{left:488.489973px;}
.x1a{left:491.100000px;}
.x3f{left:495.419987px;}
.x47{left:500.549987px;}
.x99{left:506.399987px;}
.x2b{left:515.129973px;}
.x82{left:517.199973px;}
.x2c{left:521.159987px;}
.x64{left:528.629973px;}
.x22{left:530.609987px;}
.x94{left:531.869973px;}
.x65{left:540.689987px;}
.x95{left:543.929987px;}
.x98{left:549.509987px;}
.x87{left:552.479973px;}
.x4f{left:557.429973px;}
.x68{left:563.009973px;}
.x88{left:564.539987px;}
.x7e{left:566.069973px;}
.x50{left:569.489987px;}
.x60{left:573.809973px;}
.x69{left:575.069987px;}
.x75{left:577.409973px;}
.x53{left:581.549987px;}
.x79{left:584.429973px;}
.x61{left:585.869987px;}
.x51{left:589.379973px;}
.x27{left:590.639973px;}
.x8{left:592.620000px;}
.x28{left:596.669987px;}
.x52{left:601.469987px;}
.x8c{left:603.989987px;}
.x5b{left:613.169987px;}
.x85{left:630.179973px;}
.x33{left:631.709973px;}
.x7a{left:634.679973px;}
.x34{left:637.739987px;}
.x86{left:642.239987px;}
.x7b{left:644.399987px;}
.x11{left:658.590000px;}
.x6f{left:664.649973px;}
.x38{left:669.059973px;}
.x89{left:672.389973px;}
.x70{left:676.709987px;}
.x39{left:681.119987px;}
.x8a{left:684.449987px;}
.x76{left:692.369987px;}
.x2f{left:698.939973px;}
.x30{left:704.969987px;}
.x23{left:711.629987px;}
.x8f{left:713.789973px;}
.x3c{left:719.729973px;}
.x6c{left:723.959973px;}
.x41{left:725.219973px;}
.x3d{left:731.789987px;}
.x6d{left:736.019987px;}
.x42{left:737.279987px;}
.x92{left:741.869973px;}
.x63{left:743.309987px;}
.x48{left:745.469973px;}
.x43{left:748.889973px;}
.x93{left:753.929987px;}
.x36{left:755.009973px;}
.x49{left:757.529987px;}
.x37{left:761.039987px;}
.x3{left:895.439970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.456533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.208000pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.136533pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.124267pt;}
.ls6{letter-spacing:-0.033920pt;}
.ls7{letter-spacing:-0.032960pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005440pt;}
.ls22{letter-spacing:0.026240pt;}
.ls16{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.169920pt;}
.ls2{letter-spacing:0.192640pt;}
.ls15{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.400000pt;}
.ls1e{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.720000pt;}
.ls20{letter-spacing:0.872000pt;}
.ls21{letter-spacing:1.040000pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.400000pt;}
.ls1d{letter-spacing:2.960000pt;}
.ls17{letter-spacing:3.112000pt;}
.ls1c{letter-spacing:3.360000pt;}
.ls18{letter-spacing:5.520000pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls23{letter-spacing:14.000000pt;}
.ls24{letter-spacing:15.360000pt;}
.ws1{word-spacing:-36.617291pt;}
.ws0{word-spacing:-34.738560pt;}
.ws2{word-spacing:-27.853440pt;}
.ws10{word-spacing:-17.394240pt;}
.ws3{word-spacing:-17.368000pt;}
.wse{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.712000pt;}
.ws5{word-spacing:-15.648000pt;}
.ws7{word-spacing:-15.600000pt;}
.ws6{word-spacing:-15.392000pt;}
.wsf{word-spacing:-13.520000pt;}
.wsc{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.235733pt;}
.wsd{word-spacing:-13.200000pt;}
.ws11{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-4.361600pt;}
._2{margin-left:-3.291200pt;}
._1{margin-left:-2.368000pt;}
._0{margin-left:-0.932800pt;}
._3{width:0.918933pt;}
._b{width:2.432000pt;}
._6{width:4.096000pt;}
._5{width:4.992000pt;}
._7{width:6.400000pt;}
._4{width:7.680000pt;}
._8{width:9.408000pt;}
._d{width:10.368000pt;}
._10{width:11.968000pt;}
._f{width:12.928000pt;}
._15{width:13.952000pt;}
._a{width:14.912000pt;}
._1c{width:16.052267pt;}
._e{width:17.045333pt;}
._12{width:18.496000pt;}
._11{width:19.648000pt;}
._14{width:20.946133pt;}
._13{width:21.952000pt;}
._18{width:23.049600pt;}
._17{width:24.064000pt;}
._1a{width:25.408000pt;}
._19{width:26.368000pt;}
._16{width:27.456000pt;}
._1b{width:28.864000pt;}
._1d{width:36.217280pt;}
._1e{width:37.126720pt;}
._1f{width:38.172053pt;}
._20{width:50.190400pt;}
._c{width:1013.653333pt;}
.fsb{font-size:34.560000pt;}
.fs9{font-size:42.560000pt;}
.fsa{font-size:44.861730pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fsd{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs5{font-size:90.060767pt;}
.fs2{font-size:106.560000pt;}
.fs4{font-size:112.322979pt;}
.fsc{font-size:538.560000pt;}
.y4c{bottom:-10.640000pt;}
.y26{bottom:-5.440000pt;}
.y50{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:3.040000pt;}
.y198{bottom:3.600000pt;}
.y2e{bottom:10.080000pt;}
.y3b{bottom:10.400000pt;}
.y7c{bottom:12.800000pt;}
.y8f{bottom:12.880000pt;}
.y4b{bottom:15.680000pt;}
.y52{bottom:21.360000pt;}
.y2a{bottom:28.426667pt;}
.y7a{bottom:31.386667pt;}
.y78{bottom:31.600000pt;}
.y2d{bottom:36.400000pt;}
.y3a{bottom:38.000000pt;}
.y56{bottom:41.200000pt;}
.y5{bottom:41.680000pt;}
.y4a{bottom:43.280000pt;}
.y4f{bottom:51.440000pt;}
.y55{bottom:56.160000pt;}
.y39{bottom:56.400000pt;}
.y4{bottom:59.600000pt;}
.y2c{bottom:61.520000pt;}
.y51{bottom:61.920000pt;}
.y29{bottom:65.226667pt;}
.y49{bottom:70.906667pt;}
.y3{bottom:77.440000pt;}
.y38{bottom:77.546667pt;}
.y48{bottom:92.026667pt;}
.y2{bottom:95.360000pt;}
.y37{bottom:98.666667pt;}
.y28{bottom:102.026667pt;}
.y47{bottom:113.226667pt;}
.y1{bottom:113.280000pt;}
.y36{bottom:119.866667pt;}
.y8d{bottom:123.040000pt;}
.y115{bottom:123.120000pt;}
.y54{bottom:123.600000pt;}
.yb6{bottom:127.680000pt;}
.y14f{bottom:127.760000pt;}
.y3c{bottom:131.440000pt;}
.y46{bottom:134.346667pt;}
.yb5{bottom:138.320000pt;}
.y8c{bottom:138.480000pt;}
.y183{bottom:138.560000pt;}
.y35{bottom:140.986667pt;}
.ya9{bottom:141.440000pt;}
.ye3{bottom:141.520000pt;}
.yb4{bottom:142.960000pt;}
.y100{bottom:143.120000pt;}
.y194{bottom:143.360000pt;}
.ya8{bottom:146.080000pt;}
.ye2{bottom:146.160000pt;}
.yb3{bottom:153.680000pt;}
.yd8{bottom:153.760000pt;}
.y8b{bottom:153.920000pt;}
.yff{bottom:154.880000pt;}
.y25{bottom:155.120000pt;}
.y45{bottom:155.546667pt;}
.yc7{bottom:156.720000pt;}
.ya7{bottom:156.880000pt;}
.y76{bottom:157.520000pt;}
.y150{bottom:157.760000pt;}
.yb2{bottom:158.320000pt;}
.yc6{bottom:161.360000pt;}
.ya6{bottom:161.520000pt;}
.y34{bottom:162.186667pt;}
.yb1{bottom:169.040000pt;}
.yec{bottom:169.120000pt;}
.yd7{bottom:169.200000pt;}
.y15b{bottom:169.280000pt;}
.y8a{bottom:169.360000pt;}
.y193{bottom:170.960000pt;}
.yc5{bottom:172.080000pt;}
.y126{bottom:172.160000pt;}
.ya5{bottom:172.240000pt;}
.ye1{bottom:172.320000pt;}
.yb0{bottom:173.680000pt;}
.yeb{bottom:173.760000pt;}
.y15a{bottom:173.920000pt;}
.y89{bottom:174.000000pt;}
.y44{bottom:176.666667pt;}
.yc4{bottom:176.720000pt;}
.y125{bottom:176.800000pt;}
.yfd{bottom:176.880000pt;}
.y102{bottom:176.960000pt;}
.y79{bottom:178.240000pt;}
.y24{bottom:182.720000pt;}
.y33{bottom:183.306667pt;}
.yaf{bottom:184.320000pt;}
.yea{bottom:184.480000pt;}
.yd6{bottom:184.560000pt;}
.y159{bottom:184.640000pt;}
.y88{bottom:184.720000pt;}
.y114{bottom:184.800000pt;}
.y75{bottom:185.120000pt;}
.y146{bottom:185.360000pt;}
.y14e{bottom:185.760000pt;}
.yc3{bottom:187.520000pt;}
.ya4{bottom:187.600000pt;}
.y189{bottom:187.680000pt;}
.ye0{bottom:187.760000pt;}
.y124{bottom:188.560000pt;}
.y101{bottom:188.720000pt;}
.yae{bottom:188.960000pt;}
.y11a{bottom:189.120000pt;}
.yd5{bottom:189.200000pt;}
.y113{bottom:189.440000pt;}
.yc2{bottom:192.160000pt;}
.yfc{bottom:192.240000pt;}
.y118{bottom:192.400000pt;}
.y43{bottom:197.866667pt;}
.y192{bottom:198.560000pt;}
.ye9{bottom:199.866667pt;}
.yd4{bottom:199.946667pt;}
.y87{bottom:200.026667pt;}
.y112{bottom:200.186667pt;}
.yad{bottom:200.746667pt;}
.yc1{bottom:202.906667pt;}
.ya3{bottom:202.986667pt;}
.y188{bottom:203.066667pt;}
.y14d{bottom:203.146667pt;}
.ydf{bottom:203.226667pt;}
.yfb{bottom:204.026667pt;}
.y117{bottom:204.186667pt;}
.y32{bottom:204.506667pt;}
.yd3{bottom:204.586667pt;}
.y86{bottom:204.666667pt;}
.y111{bottom:204.826667pt;}
.y187{bottom:207.706667pt;}
.y23{bottom:210.346667pt;}
.y74{bottom:212.746667pt;}
.ye8{bottom:215.226667pt;}
.yd2{bottom:215.306667pt;}
.y85{bottom:215.386667pt;}
.y110{bottom:215.626667pt;}
.y119{bottom:216.186667pt;}
.y16e{bottom:218.186667pt;}
.ya2{bottom:218.346667pt;}
.y14c{bottom:218.426667pt;}
.y186{bottom:218.506667pt;}
.yde{bottom:218.586667pt;}
.y42{bottom:218.986667pt;}
.ye7{bottom:219.866667pt;}
.yd1{bottom:219.946667pt;}
.y10f{bottom:220.266667pt;}
.y185{bottom:223.146667pt;}
.ydd{bottom:223.226667pt;}
.y31{bottom:225.626667pt;}
.y191{bottom:226.186667pt;}
.yd0{bottom:230.586667pt;}
.y158{bottom:230.746667pt;}
.y84{bottom:230.826667pt;}
.y10e{bottom:230.986667pt;}
.ye6{bottom:231.626667pt;}
.y16d{bottom:233.546667pt;}
.yc0{bottom:233.706667pt;}
.ya1{bottom:233.786667pt;}
.y14b{bottom:233.866667pt;}
.ydc{bottom:234.026667pt;}
.y184{bottom:234.906667pt;}
.ycf{bottom:235.226667pt;}
.y22{bottom:237.946667pt;}
.y16c{bottom:238.186667pt;}
.ybf{bottom:238.346667pt;}
.ydb{bottom:238.666667pt;}
.y145{bottom:238.906667pt;}
.y41{bottom:240.186667pt;}
.y73{bottom:240.346667pt;}
.yce{bottom:245.946667pt;}
.y157{bottom:246.106667pt;}
.y182{bottom:246.186667pt;}
.y83{bottom:246.266667pt;}
.y123{bottom:247.386667pt;}
.ybe{bottom:248.986667pt;}
.ya0{bottom:249.226667pt;}
.yda{bottom:250.426667pt;}
.ycd{bottom:250.586667pt;}
.y82{bottom:250.906667pt;}
.ybd{bottom:253.626667pt;}
.y190{bottom:253.786667pt;}
.y30{bottom:254.186667pt;}
.ycc{bottom:261.306667pt;}
.y156{bottom:261.466667pt;}
.y10d{bottom:261.706667pt;}
.y81{bottom:262.666667pt;}
.y16b{bottom:264.346667pt;}
.y9f{bottom:264.586667pt;}
.ybc{bottom:265.386667pt;}
.y21{bottom:265.546667pt;}
.ycb{bottom:265.946667pt;}
.y155{bottom:266.106667pt;}
.y10c{bottom:266.346667pt;}
.y144{bottom:266.506667pt;}
.y72{bottom:267.946667pt;}
.y40{bottom:268.746667pt;}
.y9e{bottom:269.226667pt;}
.y122{bottom:270.426667pt;}
.y154{bottom:276.826667pt;}
.y10b{bottom:277.066667pt;}
.yca{bottom:277.626667pt;}
.y181{bottom:277.866667pt;}
.y16a{bottom:279.706667pt;}
.y9d{bottom:279.866667pt;}
.y18f{bottom:281.386667pt;}
.y153{bottom:281.466667pt;}
.y10a{bottom:281.706667pt;}
.y196{bottom:287.306667pt;}
.y3f{bottom:287.946667pt;}
.y109{bottom:292.426667pt;}
.y20{bottom:293.146667pt;}
.y152{bottom:293.226667pt;}
.y143{bottom:294.106667pt;}
.y169{bottom:294.986667pt;}
.y9c{bottom:295.226667pt;}
.y14a{bottom:295.306667pt;}
.y71{bottom:295.546667pt;}
.y108{bottom:297.066667pt;}
.y197{bottom:299.466667pt;}
.y149{bottom:299.946667pt;}
.yfe{bottom:301.546667pt;}
.y195{bottom:301.946667pt;}
.y107{bottom:307.706667pt;}
.y18e{bottom:308.986667pt;}
.y168{bottom:310.346667pt;}
.y9b{bottom:310.586667pt;}
.y148{bottom:311.706667pt;}
.y106{bottom:312.346667pt;}
.y17f{bottom:313.946667pt;}
.y167{bottom:314.986667pt;}
.y3e{bottom:316.746667pt;}
.y180{bottom:319.946667pt;}
.y1f{bottom:320.746667pt;}
.y142{bottom:321.706667pt;}
.y70{bottom:323.146667pt;}
.y105{bottom:324.106667pt;}
.y166{bottom:325.786667pt;}
.y9a{bottom:325.946667pt;}
.y116{bottom:329.146667pt;}
.y165{bottom:330.426667pt;}
.y18d{bottom:336.586667pt;}
.y164{bottom:341.146667pt;}
.y99{bottom:341.466667pt;}
.y17e{bottom:341.546667pt;}
.y3d{bottom:345.546667pt;}
.y98{bottom:346.106667pt;}
.y1e{bottom:348.346667pt;}
.y141{bottom:349.306667pt;}
.y6f{bottom:350.746667pt;}
.y163{bottom:356.506667pt;}
.y80{bottom:356.746667pt;}
.y97{bottom:356.826667pt;}
.y18c{bottom:364.186667pt;}
.y17d{bottom:369.146667pt;}
.y162{bottom:371.866667pt;}
.y96{bottom:372.186667pt;}
.y1d{bottom:375.946667pt;}
.y95{bottom:376.826667pt;}
.y6e{bottom:378.346667pt;}
.y104{bottom:384.346667pt;}
.y161{bottom:387.306667pt;}
.y94{bottom:388.586667pt;}
.y160{bottom:391.946667pt;}
.y17c{bottom:396.746667pt;}
.y18b{bottom:401.146667pt;}
.y15f{bottom:402.666667pt;}
.y1c{bottom:403.546667pt;}
.y140{bottom:404.426667pt;}
.y6d{bottom:405.946667pt;}
.ybb{bottom:411.946667pt;}
.y15e{bottom:418.106667pt;}
.y15d{bottom:422.746667pt;}
.y17b{bottom:424.346667pt;}
.y18a{bottom:425.146667pt;}
.y1b{bottom:431.146667pt;}
.y13f{bottom:432.026667pt;}
.y6c{bottom:433.546667pt;}
.y15c{bottom:434.506667pt;}
.y93{bottom:439.546667pt;}
.y17a{bottom:451.946667pt;}
.y1a{bottom:458.746667pt;}
.y13e{bottom:459.626667pt;}
.y6b{bottom:461.146667pt;}
.y7f{bottom:467.146667pt;}
.y179{bottom:479.546667pt;}
.y19{bottom:486.346667pt;}
.y13d{bottom:487.226667pt;}
.y6a{bottom:488.746667pt;}
.y103{bottom:494.746667pt;}
.y2f{bottom:501.786667pt;}
.y178{bottom:507.146667pt;}
.y18{bottom:513.946667pt;}
.y13c{bottom:514.826667pt;}
.y69{bottom:516.346667pt;}
.yba{bottom:522.346667pt;}
.y177{bottom:534.746667pt;}
.y17{bottom:541.546667pt;}
.y13b{bottom:542.426667pt;}
.y68{bottom:543.946667pt;}
.ye5{bottom:549.946667pt;}
.y175{bottom:562.346667pt;}
.y176{bottom:568.346667pt;}
.y16{bottom:569.146667pt;}
.y139{bottom:570.026667pt;}
.y67{bottom:571.546667pt;}
.y13a{bottom:576.053333pt;}
.yd9{bottom:577.573333pt;}
.y174{bottom:589.973333pt;}
.y15{bottom:596.693333pt;}
.y138{bottom:597.653333pt;}
.y66{bottom:599.173333pt;}
.y92{bottom:605.173333pt;}
.y173{bottom:617.573333pt;}
.y14{bottom:624.293333pt;}
.y137{bottom:625.253333pt;}
.y65{bottom:626.773333pt;}
.yac{bottom:632.773333pt;}
.y172{bottom:645.173333pt;}
.y13{bottom:651.893333pt;}
.yf9{bottom:652.213333pt;}
.y136{bottom:652.853333pt;}
.y64{bottom:654.373333pt;}
.yfa{bottom:656.853333pt;}
.yc9{bottom:660.373333pt;}
.y171{bottom:672.773333pt;}
.yf8{bottom:675.253333pt;}
.y12{bottom:679.493333pt;}
.y120{bottom:679.813333pt;}
.y135{bottom:680.453333pt;}
.y63{bottom:681.973333pt;}
.y121{bottom:684.453333pt;}
.y151{bottom:687.973333pt;}
.yf7{bottom:698.213333pt;}
.y170{bottom:700.293333pt;}
.y11f{bottom:702.773333pt;}
.y11{bottom:707.093333pt;}
.y133{bottom:708.053333pt;}
.y62{bottom:709.493333pt;}
.y134{bottom:714.053333pt;}
.yb9{bottom:715.493333pt;}
.yf6{bottom:721.173333pt;}
.y11e{bottom:725.813333pt;}
.y16f{bottom:730.453333pt;}
.y10{bottom:734.693333pt;}
.y132{bottom:735.653333pt;}
.y61{bottom:737.093333pt;}
.y91{bottom:743.093333pt;}
.yf5{bottom:744.213333pt;}
.y11d{bottom:748.773333pt;}
.yf{bottom:762.293333pt;}
.y131{bottom:763.253333pt;}
.y60{bottom:764.693333pt;}
.yf4{bottom:767.173333pt;}
.ye4{bottom:770.693333pt;}
.y11c{bottom:771.813333pt;}
.ye{bottom:789.893333pt;}
.yf3{bottom:790.213333pt;}
.y12f{bottom:790.853333pt;}
.y5f{bottom:792.293333pt;}
.y11b{bottom:794.773333pt;}
.y2b{bottom:796.773333pt;}
.y130{bottom:796.853333pt;}
.yb8{bottom:798.293333pt;}
.yf2{bottom:813.173333pt;}
.yd{bottom:817.493333pt;}
.y12e{bottom:818.453333pt;}
.y5e{bottom:819.893333pt;}
.y90{bottom:825.893333pt;}
.yf1{bottom:836.213333pt;}
.yc{bottom:845.093333pt;}
.y12d{bottom:846.053333pt;}
.y5d{bottom:847.493333pt;}
.yab{bottom:853.493333pt;}
.yf0{bottom:859.173333pt;}
.yb{bottom:872.693333pt;}
.y12c{bottom:873.653333pt;}
.y5c{bottom:875.093333pt;}
.y4d{bottom:877.413333pt;}
.y147{bottom:881.093333pt;}
.yef{bottom:882.213333pt;}
.ya{bottom:900.293333pt;}
.y12b{bottom:901.253333pt;}
.y5b{bottom:902.693333pt;}
.yee{bottom:905.173333pt;}
.yb7{bottom:908.693333pt;}
.y8e{bottom:919.493333pt;}
.y9{bottom:928.853333pt;}
.y5a{bottom:930.293333pt;}
.yaa{bottom:936.293333pt;}
.y27{bottom:939.333333pt;}
.y12a{bottom:956.480000pt;}
.y8{bottom:957.680000pt;}
.y59{bottom:957.920000pt;}
.y7e{bottom:963.920000pt;}
.y58{bottom:985.520000pt;}
.y7{bottom:986.480000pt;}
.yc8{bottom:991.520000pt;}
.y128{bottom:992.640000pt;}
.y7b{bottom:996.000000pt;}
.y129{bottom:997.280000pt;}
.y57{bottom:1013.120000pt;}
.y6{bottom:1014.160000pt;}
.y127{bottom:1015.600000pt;}
.yed{bottom:1019.120000pt;}
.y77{bottom:1051.520000pt;}
.y7d{bottom:1058.000000pt;}
.y53{bottom:1074.560000pt;}
.h16{height:26.800000pt;}
.h12{height:32.800000pt;}
.h1a{height:33.918750pt;}
.h10{height:35.040000pt;}
.h26{height:39.600000pt;}
.h17{height:40.091520pt;}
.h19{height:41.770312pt;}
.h18{height:42.259750pt;}
.h13{height:45.216000pt;}
.h15{height:45.386667pt;}
.h14{height:45.600000pt;}
.h21{height:47.908125pt;}
.hb{height:50.340480pt;}
.h22{height:52.422344pt;}
.h1b{height:52.448437pt;}
.h1e{height:54.927899pt;}
.h3{height:55.163520pt;}
.h1f{height:57.375000pt;}
.hf{height:57.473437pt;}
.h2{height:58.245469pt;}
.h4{height:60.288000pt;}
.h24{height:62.781250pt;}
.h5{height:62.812500pt;}
.he{height:63.548496pt;}
.h20{height:65.781915pt;}
.h11{height:70.160000pt;}
.h25{height:73.176562pt;}
.ha{height:75.440000pt;}
.h8{height:80.484480pt;}
.h23{height:83.854687pt;}
.h7{height:100.379520pt;}
.h1c{height:104.426667pt;}
.h9{height:105.808246pt;}
.h6{height:127.386667pt;}
.hc{height:269.386667pt;}
.hd{height:360.746667pt;}
.h1d{height:528.304219pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:55.280000pt;}
.w8{width:89.920000pt;}
.w10{width:122.000000pt;}
.wf{width:125.200000pt;}
.w9{width:164.106667pt;}
.wa{width:206.586667pt;}
.wd{width:225.946667pt;}
.w5{width:400.346667pt;}
.wb{width:514.133333pt;}
.wc{width:584.453333pt;}
.w4{width:628.053333pt;}
.w6{width:638.053333pt;}
.w3{width:793.759974pt;}
.we{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.520000pt;}
.x5{left:19.440000pt;}
.x10{left:34.320000pt;}
.x15{left:45.600000pt;}
.x19{left:57.760000pt;}
.x6{left:61.680000pt;}
.x17{left:80.240000pt;}
.x12{left:99.840000pt;}
.x4{left:102.026667pt;}
.xe{left:103.066667pt;}
.x9a{left:105.466667pt;}
.x1f{left:106.586667pt;}
.x9b{left:111.600000pt;}
.x1{left:113.466655pt;}
.x2e{left:117.786655pt;}
.x40{left:122.106655pt;}
.x2{left:137.306655pt;}
.xc{left:139.680000pt;}
.x35{left:144.586655pt;}
.x2a{left:151.306655pt;}
.x73{left:153.466643pt;}
.x4e{left:158.746643pt;}
.x21{left:161.306655pt;}
.x29{left:162.346643pt;}
.x54{left:163.466643pt;}
.x7{left:167.200000pt;}
.x32{left:168.586655pt;}
.x9{left:170.240000pt;}
.x55{left:174.186655pt;}
.x8b{left:177.466655pt;}
.x62{left:178.426655pt;}
.x4c{left:181.866643pt;}
.x4a{left:187.946643pt;}
.x3a{left:191.626643pt;}
.x4d{left:192.586655pt;}
.x18{left:196.506667pt;}
.x4b{left:198.666655pt;}
.x3b{left:202.346655pt;}
.xd{left:216.906667pt;}
.x6a{left:224.586643pt;}
.x56{left:228.026643pt;}
.x6b{left:235.306655pt;}
.x26{left:238.666655pt;}
.x7c{left:246.026643pt;}
.x24{left:252.266655pt;}
.x1d{left:254.266655pt;}
.x7d{left:256.746655pt;}
.x7f{left:260.106643pt;}
.x80{left:270.826655pt;}
.x6e{left:280.826643pt;}
.x20{left:283.066667pt;}
.xb{left:292.426667pt;}
.x57{left:299.946643pt;}
.x2d{left:305.466655pt;}
.x58{left:310.666655pt;}
.x5c{left:317.973310pt;}
.x13{left:319.146667pt;}
.x5d{left:326.613322pt;}
.xa{left:329.093333pt;}
.x77{left:349.333310pt;}
.x16{left:350.853333pt;}
.x78{left:357.973322pt;}
.x1b{left:361.253322pt;}
.x74{left:363.573310pt;}
.x31{left:368.133310pt;}
.x83{left:372.933322pt;}
.x14{left:374.293333pt;}
.x25{left:376.933322pt;}
.x71{left:379.653310pt;}
.x1e{left:380.933322pt;}
.x81{left:385.333322pt;}
.x90{left:387.093310pt;}
.x96{left:389.253310pt;}
.x72{left:390.373322pt;}
.x91{left:395.733322pt;}
.x1c{left:396.933322pt;}
.x5e{left:398.773310pt;}
.x97{left:399.973322pt;}
.x84{left:402.933310pt;}
.x59{left:407.093310pt;}
.x5f{left:409.493322pt;}
.x44{left:414.293310pt;}
.x5a{left:417.813322pt;}
.x66{left:421.093310pt;}
.x8d{left:422.213310pt;}
.x45{left:425.013322pt;}
.x3e{left:429.653310pt;}
.x67{left:431.813322pt;}
.x8e{left:432.933322pt;}
.x46{left:434.213310pt;}
.x1a{left:436.533333pt;}
.x3f{left:440.373322pt;}
.x47{left:444.933322pt;}
.x99{left:450.133322pt;}
.x2b{left:457.893310pt;}
.x82{left:459.733310pt;}
.x2c{left:463.253322pt;}
.x64{left:469.893310pt;}
.x22{left:471.653322pt;}
.x94{left:472.773310pt;}
.x65{left:480.613322pt;}
.x95{left:483.493322pt;}
.x98{left:488.453322pt;}
.x87{left:491.093310pt;}
.x4f{left:495.493310pt;}
.x68{left:500.453310pt;}
.x88{left:501.813322pt;}
.x7e{left:503.173310pt;}
.x50{left:506.213322pt;}
.x60{left:510.053310pt;}
.x69{left:511.173322pt;}
.x75{left:513.253310pt;}
.x53{left:516.933322pt;}
.x79{left:519.493310pt;}
.x61{left:520.773322pt;}
.x51{left:523.893310pt;}
.x27{left:525.013310pt;}
.x8{left:526.773333pt;}
.x28{left:530.373322pt;}
.x52{left:534.639988pt;}
.x8c{left:536.879988pt;}
.x5b{left:545.039988pt;}
.x85{left:560.159976pt;}
.x33{left:561.519976pt;}
.x7a{left:564.159976pt;}
.x34{left:566.879988pt;}
.x86{left:570.879988pt;}
.x7b{left:572.799988pt;}
.x11{left:585.413333pt;}
.x6f{left:590.799976pt;}
.x38{left:594.719976pt;}
.x89{left:597.679976pt;}
.x70{left:601.519988pt;}
.x39{left:605.439988pt;}
.x8a{left:608.399988pt;}
.x76{left:615.439988pt;}
.x2f{left:621.279976pt;}
.x30{left:626.639988pt;}
.x23{left:632.559988pt;}
.x8f{left:634.479976pt;}
.x3c{left:639.759976pt;}
.x6c{left:643.519976pt;}
.x41{left:644.639976pt;}
.x3d{left:650.479988pt;}
.x6d{left:654.239988pt;}
.x42{left:655.359988pt;}
.x92{left:659.439976pt;}
.x63{left:660.719988pt;}
.x48{left:662.639976pt;}
.x43{left:665.679976pt;}
.x93{left:670.159988pt;}
.x36{left:671.119976pt;}
.x49{left:673.359988pt;}
.x37{left:676.479988pt;}
.x3{left:795.946640pt;}
}

