
    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_a60e9bfba0e4784c040fbd9e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.917969;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_52395ca3f5330dfbed4eaa67.woff')format("woff");}.ff2{font-family:ff2;line-height:1.178000;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_7cb9e529052330f64ed51d9b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.140000;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_e589950626df226e06df1b40.woff')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_77d34ed84f92012f38dcb60a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_ebe2c609fcbd78cb50c3b6ed.woff')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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_04274c9a3813a11eede5d906.woff')format("woff");}.ff7{font-family:ff7;line-height:1.050000;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_d2168215fbfe10e916bb188e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_16f4ce87b622861ebf284344.woff')format("woff");}.ff9{font-family:ff9;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f4d1c97cc8e0b2d7b01cc742.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_299a78cf59624d8f2e52ed8e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ac001c53348cef9efa6e745d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.142000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3bbf552dbb6b82e683f53bb2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.050000;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:ffe;src:url('chunks/assets/font_bcde5f1df4d9d031ffd98a3d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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:fff;src:url('chunks/assets/font_2ebdd737e66a28a2502390ca.woff')format("woff");}.fff{font-family:fff;line-height:0.970000;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.000000,-0.220000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:22.977000px;}
.lsd{letter-spacing:-4.752000px;}
.ls2e{letter-spacing:-3.696000px;}
.ls18{letter-spacing:-2.592000px;}
.ls57{letter-spacing:-2.574528px;}
.ls85{letter-spacing:-2.544000px;}
.ls22{letter-spacing:-2.346000px;}
.ls4e{letter-spacing:-2.220000px;}
.ls30{letter-spacing:-1.968000px;}
.ls77{letter-spacing:-1.810215px;}
.ls53{letter-spacing:-1.769988px;}
.ls13{letter-spacing:-1.404000px;}
.ls5b{letter-spacing:-1.311000px;}
.ls5c{letter-spacing:-1.173000px;}
.ls55{letter-spacing:-1.104000px;}
.ls84{letter-spacing:-1.056000px;}
.ls1e{letter-spacing:-1.035000px;}
.ls73{letter-spacing:-1.005675px;}
.ls5e{letter-spacing:-0.960000px;}
.ls14{letter-spacing:-0.918000px;}
.ls10{letter-spacing:-0.810000px;}
.ls21{letter-spacing:-0.759000px;}
.ls6a{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.690000px;}
.ls46{letter-spacing:-0.672000px;}
.ls59{letter-spacing:-0.603405px;}
.ls40{letter-spacing:-0.576000px;}
.ls8b{letter-spacing:-0.552000px;}
.ls5d{letter-spacing:-0.528000px;}
.ls50{letter-spacing:-0.504000px;}
.ls4f{letter-spacing:-0.483000px;}
.ls5a{letter-spacing:-0.414000px;}
.ls81{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.378000px;}
.ls54{letter-spacing:-0.345000px;}
.lsf{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.252000px;}
.ls34{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.216000px;}
.ls56{letter-spacing:-0.207000px;}
.ls19{letter-spacing:-0.144000px;}
.ls8c{letter-spacing:-0.138000px;}
.ls15{letter-spacing:-0.108000px;}
.ls78{letter-spacing:-0.084000px;}
.ls75{letter-spacing:-0.069000px;}
.ls7e{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.ls8f{letter-spacing:0.000227px;}
.ls1d{letter-spacing:0.000304px;}
.ls79{letter-spacing:0.048000px;}
.ls74{letter-spacing:0.069000px;}
.ls6c{letter-spacing:0.096000px;}
.ls24{letter-spacing:0.138000px;}
.ls25{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.162000px;}
.ls1c{letter-spacing:0.164171px;}
.ls0{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.270000px;}
.ls60{letter-spacing:0.288000px;}
.ls49{letter-spacing:0.336000px;}
.ls58{letter-spacing:0.345000px;}
.ls5{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.414000px;}
.lsb{letter-spacing:0.432000px;}
.ls4c{letter-spacing:0.480000px;}
.ls86{letter-spacing:0.483000px;}
.ls51{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.552000px;}
.ls29{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.594000px;}
.ls90{letter-spacing:0.621000px;}
.ls44{letter-spacing:0.624000px;}
.ls94{letter-spacing:0.655500px;}
.ls26{letter-spacing:0.672000px;}
.ls9{letter-spacing:0.702000px;}
.ls5f{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.756000px;}
.ls69{letter-spacing:0.768000px;}
.ls41{letter-spacing:0.816000px;}
.ls8a{letter-spacing:0.828000px;}
.ls2a{letter-spacing:0.864000px;}
.ls64{letter-spacing:0.912000px;}
.ls6{letter-spacing:0.918000px;}
.ls2b{letter-spacing:0.960000px;}
.ls76{letter-spacing:0.966000px;}
.ls31{letter-spacing:1.008000px;}
.ls82{letter-spacing:1.104000px;}
.ls67{letter-spacing:1.152000px;}
.ls92{letter-spacing:1.206538px;}
.ls3c{letter-spacing:1.248000px;}
.ls7a{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.380000px;}
.ls33{letter-spacing:1.392000px;}
.ls8{letter-spacing:1.404000px;}
.ls3d{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.462971px;}
.ls3a{letter-spacing:1.488000px;}
.ls4{letter-spacing:1.512000px;}
.ls42{letter-spacing:1.536000px;}
.ls6d{letter-spacing:1.584000px;}
.ls3f{letter-spacing:1.632000px;}
.ls7d{letter-spacing:1.680000px;}
.ls8d{letter-spacing:1.710947px;}
.ls89{letter-spacing:1.725000px;}
.ls35{letter-spacing:1.728000px;}
.ls2c{letter-spacing:1.776000px;}
.ls8e{letter-spacing:1.794000px;}
.ls3e{letter-spacing:1.824000px;}
.ls6b{letter-spacing:1.872000px;}
.ls6f{letter-spacing:1.920000px;}
.ls88{letter-spacing:1.932000px;}
.ls43{letter-spacing:1.968000px;}
.ls7{letter-spacing:2.052000px;}
.ls2d{letter-spacing:2.064000px;}
.ls91{letter-spacing:2.069053px;}
.ls93{letter-spacing:2.070000px;}
.ls87{letter-spacing:2.139000px;}
.ls66{letter-spacing:2.160000px;}
.ls68{letter-spacing:2.256000px;}
.ls4d{letter-spacing:2.304000px;}
.ls27{letter-spacing:2.352000px;}
.ls4a{letter-spacing:2.448000px;}
.ls7b{letter-spacing:2.496000px;}
.ls38{letter-spacing:2.640000px;}
.ls45{letter-spacing:2.736000px;}
.ls63{letter-spacing:2.784000px;}
.ls3b{letter-spacing:2.880000px;}
.ls36{letter-spacing:3.024000px;}
.ls47{letter-spacing:3.072000px;}
.ls71{letter-spacing:3.162667px;}
.ls62{letter-spacing:3.168000px;}
.ls6e{letter-spacing:3.216000px;}
.ls70{letter-spacing:3.264000px;}
.ls37{letter-spacing:3.312000px;}
.ls48{letter-spacing:3.360000px;}
.ls7f{letter-spacing:3.456000px;}
.ls65{letter-spacing:3.504000px;}
.ls80{letter-spacing:3.552000px;}
.ls32{letter-spacing:3.648000px;}
.ls4b{letter-spacing:3.744000px;}
.ls28{letter-spacing:3.792000px;}
.ls39{letter-spacing:3.840000px;}
.ls83{letter-spacing:4.032000px;}
.ls7c{letter-spacing:4.320000px;}
.ls61{letter-spacing:5.328000px;}
.ls1a{letter-spacing:8.340000px;}
.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;}
}
.ws25{word-spacing:-60.000000px;}
.ws24{word-spacing:-23.352000px;}
.ws82{word-spacing:-18.672000px;}
.ws148{word-spacing:-18.561000px;}
.ws141{word-spacing:-18.285000px;}
.ws81{word-spacing:-17.733000px;}
.wsd4{word-spacing:-17.664000px;}
.ws28{word-spacing:-17.388000px;}
.ws34{word-spacing:-17.088000px;}
.ws8a{word-spacing:-16.848000px;}
.ws83{word-spacing:-16.512000px;}
.ws80{word-spacing:-16.380000px;}
.ws85{word-spacing:-16.176000px;}
.ws84{word-spacing:-16.128000px;}
.ws2f{word-spacing:-16.080000px;}
.wsd8{word-spacing:-15.840000px;}
.ws33{word-spacing:-15.792000px;}
.ws88{word-spacing:-15.600000px;}
.ws2{word-spacing:-15.552000px;}
.ws87{word-spacing:-15.312000px;}
.ws2e{word-spacing:-15.168000px;}
.ws2b{word-spacing:-15.120000px;}
.ws2d{word-spacing:-15.072000px;}
.ws3{word-spacing:-15.012000px;}
.ws29{word-spacing:-14.880000px;}
.ws89{word-spacing:-14.832000px;}
.ws2a{word-spacing:-14.784000px;}
.ws0{word-spacing:-14.688000px;}
.ws86{word-spacing:-14.304000px;}
.wsd6{word-spacing:-14.160000px;}
.wsd7{word-spacing:-14.016000px;}
.wsd5{word-spacing:-13.920000px;}
.ws30{word-spacing:-13.872000px;}
.ws32{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.608000px;}
.ws31{word-spacing:-13.344000px;}
.ws2c{word-spacing:-12.240000px;}
.ws27{word-spacing:-10.459020px;}
.ws35{word-spacing:-9.648000px;}
.ws4{word-spacing:-8.640000px;}
.ws150{word-spacing:-7.659000px;}
.ws15c{word-spacing:-5.520000px;}
.ws8b{word-spacing:-4.980000px;}
.ws14c{word-spacing:-3.795000px;}
.ws74{word-spacing:-3.360000px;}
.wsc5{word-spacing:-3.216000px;}
.ws73{word-spacing:-3.072000px;}
.ws14e{word-spacing:-2.553000px;}
.wsf9{word-spacing:-2.448000px;}
.ws160{word-spacing:-2.346000px;}
.ws14f{word-spacing:-1.863000px;}
.ws151{word-spacing:-1.794000px;}
.ws15f{word-spacing:-1.380000px;}
.wsb9{word-spacing:-1.008000px;}
.ws102{word-spacing:-0.960000px;}
.ws71{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.816000px;}
.ws6c{word-spacing:-0.768000px;}
.ws163{word-spacing:-0.690000px;}
.wsbf{word-spacing:-0.576000px;}
.ws5c{word-spacing:-0.432000px;}
.ws152{word-spacing:-0.414000px;}
.wsc2{word-spacing:-0.384000px;}
.ws104{word-spacing:-0.240000px;}
.ws26{word-spacing:-0.090000px;}
.ws5{word-spacing:0.000000px;}
.wsd1{word-spacing:0.048000px;}
.wsc3{word-spacing:0.144000px;}
.ws118{word-spacing:0.276000px;}
.ws12e{word-spacing:0.345000px;}
.ws10a{word-spacing:0.384000px;}
.wse9{word-spacing:0.414000px;}
.wsad{word-spacing:0.603405px;}
.wsa6{word-spacing:0.621000px;}
.ws70{word-spacing:0.672000px;}
.wse{word-spacing:0.810000px;}
.wseb{word-spacing:0.828000px;}
.wsb6{word-spacing:0.897000px;}
.wsb7{word-spacing:0.960000px;}
.wsda{word-spacing:1.005675px;}
.ws52{word-spacing:1.035000px;}
.ws77{word-spacing:1.056000px;}
.ws4a{word-spacing:1.173000px;}
.ws129{word-spacing:1.242000px;}
.wsf5{word-spacing:1.392000px;}
.wsf{word-spacing:1.404000px;}
.ws124{word-spacing:1.449000px;}
.ws9e{word-spacing:1.518000px;}
.ws4b{word-spacing:1.587000px;}
.wsc7{word-spacing:1.680000px;}
.ws126{word-spacing:1.725000px;}
.wsa5{word-spacing:1.769988px;}
.ws13e{word-spacing:1.794000px;}
.wse4{word-spacing:1.810215px;}
.wsbb{word-spacing:1.824000px;}
.ws11c{word-spacing:1.863000px;}
.wsfd{word-spacing:1.872000px;}
.wsee{word-spacing:1.932000px;}
.ws138{word-spacing:2.070000px;}
.ws9d{word-spacing:2.139000px;}
.ws10d{word-spacing:2.160000px;}
.ws8c{word-spacing:2.220000px;}
.wsa8{word-spacing:2.346000px;}
.ws106{word-spacing:2.352000px;}
.wsc9{word-spacing:2.400000px;}
.ws145{word-spacing:2.484000px;}
.ws105{word-spacing:2.544000px;}
.wsea{word-spacing:2.553000px;}
.wsab{word-spacing:2.574528px;}
.ws1b{word-spacing:2.592000px;}
.wsff{word-spacing:2.640000px;}
.ws162{word-spacing:2.829000px;}
.ws61{word-spacing:2.832000px;}
.ws90{word-spacing:3.036000px;}
.ws144{word-spacing:3.105000px;}
.ws100{word-spacing:3.120000px;}
.wse0{word-spacing:3.174000px;}
.ws14a{word-spacing:3.243000px;}
.ws157{word-spacing:3.312000px;}
.ws103{word-spacing:3.360000px;}
.ws10{word-spacing:3.510000px;}
.ws19{word-spacing:3.564000px;}
.ws62{word-spacing:3.600000px;}
.ws155{word-spacing:3.657000px;}
.ws55{word-spacing:3.726000px;}
.ws112{word-spacing:3.795000px;}
.wsa4{word-spacing:3.864000px;}
.wsb2{word-spacing:4.002000px;}
.ws123{word-spacing:4.071000px;}
.wsfa{word-spacing:4.080000px;}
.ws96{word-spacing:4.095000px;}
.wsb5{word-spacing:4.209000px;}
.ws13a{word-spacing:4.278000px;}
.wsdd{word-spacing:4.416000px;}
.wsb{word-spacing:4.536000px;}
.ws154{word-spacing:4.554000px;}
.wsfb{word-spacing:4.560000px;}
.ws97{word-spacing:4.599000px;}
.wsb8{word-spacing:4.608000px;}
.ws125{word-spacing:4.623000px;}
.ws120{word-spacing:4.692000px;}
.wscc{word-spacing:4.704000px;}
.wsf3{word-spacing:4.752000px;}
.ws95{word-spacing:4.851000px;}
.ws111{word-spacing:5.106000px;}
.ws8{word-spacing:5.184000px;}
.ws128{word-spacing:5.313000px;}
.ws9{word-spacing:5.346000px;}
.ws133{word-spacing:5.451000px;}
.ws139{word-spacing:5.520000px;}
.ws14d{word-spacing:5.589000px;}
.wsc8{word-spacing:5.616000px;}
.ws130{word-spacing:5.658000px;}
.wsc0{word-spacing:5.712000px;}
.ws156{word-spacing:5.727000px;}
.ws4f{word-spacing:5.796000px;}
.wscd{word-spacing:5.856000px;}
.ws12f{word-spacing:5.865000px;}
.ws13{word-spacing:5.886000px;}
.ws79{word-spacing:5.904000px;}
.ws146{word-spacing:6.003000px;}
.wsfc{word-spacing:6.048000px;}
.ws42{word-spacing:6.072000px;}
.ws65{word-spacing:6.096000px;}
.ws21{word-spacing:6.141000px;}
.wsa2{word-spacing:6.210000px;}
.wsf2{word-spacing:6.240000px;}
.wsa9{word-spacing:6.279000px;}
.wsca{word-spacing:6.288000px;}
.ws3c{word-spacing:6.348000px;}
.ws11a{word-spacing:6.417000px;}
.ws14{word-spacing:6.426000px;}
.ws38{word-spacing:6.555000px;}
.wsc6{word-spacing:6.624000px;}
.ws6d{word-spacing:6.672000px;}
.wsd9{word-spacing:6.762000px;}
.ws6e{word-spacing:6.816000px;}
.ws9f{word-spacing:6.831000px;}
.ws4c{word-spacing:6.900000px;}
.ws13f{word-spacing:6.969000px;}
.wsaa{word-spacing:7.038000px;}
.wsf4{word-spacing:7.056000px;}
.ws57{word-spacing:7.107000px;}
.wsac{word-spacing:7.176000px;}
.ws3f{word-spacing:7.245000px;}
.ws23{word-spacing:7.248000px;}
.ws91{word-spacing:7.308000px;}
.wsa7{word-spacing:7.314000px;}
.ws11d{word-spacing:7.383000px;}
.ws15{word-spacing:7.506000px;}
.wsed{word-spacing:7.521000px;}
.wsd0{word-spacing:7.584000px;}
.ws113{word-spacing:7.590000px;}
.ws4d{word-spacing:7.728000px;}
.ws10c{word-spacing:7.776000px;}
.ws140{word-spacing:7.797000px;}
.wsae{word-spacing:7.866000px;}
.wsbe{word-spacing:7.920000px;}
.ws147{word-spacing:7.935000px;}
.wsdf{word-spacing:8.004000px;}
.ws1e{word-spacing:8.046000px;}
.ws11e{word-spacing:8.073000px;}
.ws11f{word-spacing:8.142000px;}
.ws6{word-spacing:8.190000px;}
.wsce{word-spacing:8.208000px;}
.wsa1{word-spacing:8.211000px;}
.ws93{word-spacing:8.253000px;}
.ws36{word-spacing:8.340000px;}
.ws109{word-spacing:8.352000px;}
.wsbd{word-spacing:8.400000px;}
.ws39{word-spacing:8.418000px;}
.ws3d{word-spacing:8.556000px;}
.ws8d{word-spacing:8.625000px;}
.ws12{word-spacing:8.640000px;}
.wsde{word-spacing:8.694000px;}
.ws17{word-spacing:8.748000px;}
.ws12c{word-spacing:8.763000px;}
.ws58{word-spacing:8.832000px;}
.wsd2{word-spacing:8.880000px;}
.ws131{word-spacing:8.901000px;}
.wsc{word-spacing:8.964000px;}
.ws3a{word-spacing:8.970000px;}
.ws10e{word-spacing:9.039000px;}
.ws45{word-spacing:9.108000px;}
.ws108{word-spacing:9.168000px;}
.wse6{word-spacing:9.177000px;}
.wse1{word-spacing:9.246000px;}
.ws132{word-spacing:9.315000px;}
.ws76{word-spacing:9.360000px;}
.ws161{word-spacing:9.453000px;}
.ws50{word-spacing:9.522000px;}
.ws5e{word-spacing:9.552000px;}
.ws122{word-spacing:9.591000px;}
.ws10b{word-spacing:9.600000px;}
.wsa3{word-spacing:9.660000px;}
.ws22{word-spacing:9.696000px;}
.ws56{word-spacing:9.729000px;}
.wsd{word-spacing:9.774000px;}
.wsf8{word-spacing:9.792000px;}
.ws49{word-spacing:9.798000px;}
.ws3e{word-spacing:9.867000px;}
.ws18{word-spacing:9.936000px;}
.ws37{word-spacing:10.005000px;}
.ws94{word-spacing:10.017000px;}
.ws72{word-spacing:10.032000px;}
.wsb1{word-spacing:10.074000px;}
.ws1d{word-spacing:10.098000px;}
.ws44{word-spacing:10.212000px;}
.ws64{word-spacing:10.272000px;}
.ws119{word-spacing:10.281000px;}
.wsfe{word-spacing:10.320000px;}
.ws20{word-spacing:10.350000px;}
.wsa{word-spacing:10.368000px;}
.ws16{word-spacing:10.476000px;}
.ws137{word-spacing:10.557000px;}
.ws11b{word-spacing:10.695000px;}
.ws7a{word-spacing:10.704000px;}
.wsb4{word-spacing:10.764000px;}
.ws12d{word-spacing:10.902000px;}
.ws1a{word-spacing:10.962000px;}
.ws75{word-spacing:11.040000px;}
.ws114{word-spacing:11.109000px;}
.ws9c{word-spacing:11.151000px;}
.ws51{word-spacing:11.178000px;}
.wsbc{word-spacing:11.184000px;}
.ws107{word-spacing:11.232000px;}
.ws8e{word-spacing:11.316000px;}
.wsba{word-spacing:11.376000px;}
.wse2{word-spacing:11.385000px;}
.ws142{word-spacing:11.454000px;}
.ws78{word-spacing:11.568000px;}
.ws127{word-spacing:11.592000px;}
.ws134{word-spacing:11.661000px;}
.wsdc{word-spacing:11.730000px;}
.ws7b{word-spacing:11.760000px;}
.ws110{word-spacing:11.799000px;}
.ws47{word-spacing:11.868000px;}
.ws7e{word-spacing:11.904000px;}
.ws9a{word-spacing:11.970000px;}
.ws5d{word-spacing:12.144000px;}
.ws15e{word-spacing:12.213000px;}
.wscb{word-spacing:12.240000px;}
.ws11{word-spacing:12.258000px;}
.ws59{word-spacing:12.282000px;}
.ws116{word-spacing:12.351000px;}
.ws6b{word-spacing:12.384000px;}
.ws12b{word-spacing:12.420000px;}
.ws7c{word-spacing:12.480000px;}
.ws135{word-spacing:12.489000px;}
.wse5{word-spacing:12.516000px;}
.ws60{word-spacing:12.528000px;}
.ws4e{word-spacing:12.558000px;}
.ws7d{word-spacing:12.576000px;}
.ws66{word-spacing:12.624000px;}
.wsf6{word-spacing:12.672000px;}
.ws1f{word-spacing:12.684000px;}
.wsb3{word-spacing:12.696000px;}
.wsef{word-spacing:12.765000px;}
.wsf7{word-spacing:12.768000px;}
.wsc1{word-spacing:12.816000px;}
.ws13d{word-spacing:12.834000px;}
.ws98{word-spacing:12.852000px;}
.ws67{word-spacing:12.864000px;}
.ws12a{word-spacing:12.972000px;}
.ws92{word-spacing:12.978000px;}
.ws149{word-spacing:13.041000px;}
.ws7f{word-spacing:13.056000px;}
.ws99{word-spacing:13.167000px;}
.wsc4{word-spacing:13.200000px;}
.ws43{word-spacing:13.248000px;}
.ws5b{word-spacing:13.296000px;}
.ws40{word-spacing:13.317000px;}
.ws5a{word-spacing:13.344000px;}
.ws136{word-spacing:13.386000px;}
.ws6a{word-spacing:13.392000px;}
.ws3b{word-spacing:13.455000px;}
.wscf{word-spacing:13.488000px;}
.ws143{word-spacing:13.524000px;}
.wsb0{word-spacing:13.593000px;}
.wsec{word-spacing:13.662000px;}
.ws5f{word-spacing:13.680000px;}
.ws115{word-spacing:13.869000px;}
.ws41{word-spacing:13.938000px;}
.ws63{word-spacing:13.968000px;}
.ws13c{word-spacing:14.076000px;}
.ws69{word-spacing:14.208000px;}
.ws1c{word-spacing:14.364000px;}
.wsdb{word-spacing:14.421000px;}
.ws101{word-spacing:14.496000px;}
.wse8{word-spacing:14.559000px;}
.ws117{word-spacing:14.697000px;}
.ws8f{word-spacing:14.766000px;}
.ws121{word-spacing:14.835000px;}
.ws159{word-spacing:14.904000px;}
.ws15d{word-spacing:14.973000px;}
.ws7{word-spacing:15.012000px;}
.wsaf{word-spacing:15.042000px;}
.ws13b{word-spacing:15.111000px;}
.ws10f{word-spacing:15.318000px;}
.wsa0{word-spacing:15.456000px;}
.wse3{word-spacing:15.594000px;}
.wsd3{word-spacing:15.600000px;}
.ws14b{word-spacing:15.663000px;}
.ws68{word-spacing:16.224000px;}
.ws53{word-spacing:16.284000px;}
.wsf0{word-spacing:16.353000px;}
.ws9b{word-spacing:16.380000px;}
.ws48{word-spacing:16.629000px;}
.ws46{word-spacing:16.905000px;}
.ws15b{word-spacing:16.974000px;}
.wse7{word-spacing:17.526000px;}
.wsf1{word-spacing:17.871000px;}
.ws54{word-spacing:17.940000px;}
.ws15a{word-spacing:19.458000px;}
.ws158{word-spacing:23.115000px;}
.ws153{word-spacing:34.914000px;}
._e{margin-left:-8.367000px;}
._c{margin-left:-7.292842px;}
._3{margin-left:-5.985000px;}
._0{margin-left:-3.996000px;}
._6{margin-left:-2.484000px;}
._2{margin-left:-1.134000px;}
._1{width:1.071000px;}
._7{width:2.718600px;}
._8{width:3.751800px;}
._a{width:5.353800px;}
._5{width:6.413368px;}
._9{width:7.796842px;}
._4{width:8.875579px;}
._d{width:11.710958px;}
._b{width:14.856400px;}
.fc3{color:rgb(255,198,181);}
.fc2{color:rgb(35,31,32);}
.fc4{color:rgb(101,98,99);}
.fc1{color:rgb(255,104,77);}
.fc0{color:rgb(255,183,163);}
.fs9{font-size:27.984000px;}
.fsa{font-size:36.729000px;}
.fs8{font-size:40.227000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.630300px;}
.y2c{bottom:57.705150px;}
.y16f{bottom:115.837350px;}
.y1f3{bottom:116.825700px;}
.y2b{bottom:116.925000px;}
.y5e{bottom:116.935650px;}
.y29{bottom:117.315600px;}
.y1d9{bottom:117.540000px;}
.yce{bottom:118.348800px;}
.y1ab{bottom:118.452600px;}
.y12e{bottom:118.660650px;}
.y18d{bottom:118.743300px;}
.y219{bottom:119.341050px;}
.y5f{bottom:122.679900px;}
.y16e{bottom:130.237350px;}
.y9c{bottom:131.325000px;}
.y1f2{bottom:138.725700px;}
.y5d{bottom:138.910650px;}
.y28{bottom:139.065600px;}
.y1d8{bottom:139.290000px;}
.ycd{bottom:140.098800px;}
.y1aa{bottom:140.202600px;}
.y12d{bottom:140.410650px;}
.y18c{bottom:140.493300px;}
.y2a{bottom:140.925450px;}
.y218{bottom:141.765900px;}
.y16d{bottom:144.487350px;}
.y9b{bottom:145.725000px;}
.y16c{bottom:158.737350px;}
.y9a{bottom:160.124850px;}
.y108{bottom:160.125000px;}
.y1f1{bottom:160.625700px;}
.y5c{bottom:160.885650px;}
.y1d7{bottom:161.040000px;}
.ycc{bottom:161.848800px;}
.y1a9{bottom:161.952600px;}
.y12c{bottom:162.160650px;}
.y18b{bottom:162.243300px;}
.y217{bottom:164.190900px;}
.y27{bottom:169.290600px;}
.y16b{bottom:172.987350px;}
.y99{bottom:174.525000px;}
.y1f0{bottom:182.525700px;}
.y1d6{bottom:182.790000px;}
.y5b{bottom:182.860650px;}
.ycb{bottom:183.523800px;}
.y1a8{bottom:183.702600px;}
.y12b{bottom:183.910650px;}
.y18a{bottom:183.993300px;}
.y216{bottom:186.615900px;}
.y16a{bottom:187.237350px;}
.y98{bottom:188.925000px;}
.y169{bottom:201.487350px;}
.y97{bottom:203.325000px;}
.y1ef{bottom:204.425700px;}
.y1d5{bottom:204.540000px;}
.y5a{bottom:204.835650px;}
.yca{bottom:205.198800px;}
.y1a7{bottom:205.452600px;}
.y12a{bottom:205.585650px;}
.y189{bottom:205.743300px;}
.y215{bottom:209.041050px;}
.y168{bottom:215.737350px;}
.y96{bottom:217.725000px;}
.y1d4{bottom:226.290000px;}
.y1ee{bottom:226.325700px;}
.y59{bottom:226.810650px;}
.yc9{bottom:226.873800px;}
.y1a6{bottom:227.202600px;}
.y129{bottom:227.260650px;}
.y188{bottom:227.493300px;}
.y167{bottom:229.987350px;}
.y95{bottom:232.124850px;}
.y107{bottom:232.125000px;}
.y214{bottom:239.969850px;}
.y166{bottom:244.237350px;}
.y26{bottom:245.369550px;}
.y25{bottom:245.669550px;}
.y106{bottom:246.525000px;}
.y1d3{bottom:248.040000px;}
.y1ed{bottom:248.225700px;}
.yc8{bottom:248.548800px;}
.y58{bottom:248.785650px;}
.y128{bottom:248.935650px;}
.y1a5{bottom:248.952600px;}
.y187{bottom:249.243300px;}
.y94{bottom:255.028950px;}
.y165{bottom:258.487350px;}
.y105{bottom:260.925000px;}
.y24{bottom:261.869550px;}
.y213{bottom:262.394850px;}
.y93{bottom:269.428950px;}
.y1d2{bottom:269.790000px;}
.y1ec{bottom:270.125700px;}
.yc7{bottom:270.223800px;}
.y127{bottom:270.610650px;}
.y1a4{bottom:270.702600px;}
.y57{bottom:270.760650px;}
.y186{bottom:270.993300px;}
.y164{bottom:272.737350px;}
.y104{bottom:275.325000px;}
.y92{bottom:283.828800px;}
.y212{bottom:284.819850px;}
.y23{bottom:286.573500px;}
.y163{bottom:286.987350px;}
.y103{bottom:289.725000px;}
.y1d1{bottom:291.540000px;}
.yc6{bottom:291.898800px;}
.y1eb{bottom:292.025700px;}
.y126{bottom:292.285650px;}
.y56{bottom:292.735650px;}
.y185{bottom:292.743300px;}
.y91{bottom:298.228950px;}
.y1a3{bottom:300.927600px;}
.y162{bottom:301.237350px;}
.y22{bottom:302.773500px;}
.y102{bottom:304.125000px;}
.y211{bottom:307.244850px;}
.y90{bottom:312.628950px;}
.y1d0{bottom:313.290000px;}
.yc4{bottom:313.573800px;}
.y1ea{bottom:313.925700px;}
.y125{bottom:313.960650px;}
.y184{bottom:314.493300px;}
.y55{bottom:314.710650px;}
.y161{bottom:315.487350px;}
.y101{bottom:318.525000px;}
.y21{bottom:318.973500px;}
.yc5{bottom:319.318050px;}
.y8f{bottom:327.028950px;}
.y210{bottom:329.669850px;}
.y160{bottom:329.737350px;}
.y1{bottom:331.653000px;}
.y100{bottom:332.925000px;}
.y1cf{bottom:335.040000px;}
.y20{bottom:335.173500px;}
.yc3{bottom:335.248800px;}
.y124{bottom:335.635650px;}
.y1e9{bottom:335.825700px;}
.y183{bottom:336.243300px;}
.y54{bottom:336.685650px;}
.y8e{bottom:341.428950px;}
.y15f{bottom:343.987350px;}
.yff{bottom:347.325000px;}
.y1f{bottom:351.373500px;}
.y20f{bottom:352.094850px;}
.y8d{bottom:355.828950px;}
.y1ce{bottom:356.790000px;}
.yc2{bottom:356.998800px;}
.y123{bottom:357.310650px;}
.y1e8{bottom:357.725700px;}
.y182{bottom:357.993300px;}
.y15e{bottom:358.237350px;}
.y53{bottom:358.660650px;}
.yfe{bottom:361.725000px;}
.y1e{bottom:367.573500px;}
.y1a2{bottom:368.502600px;}
.y8c{bottom:370.228950px;}
.yfd{bottom:376.125000px;}
.y1cd{bottom:378.540000px;}
.yc1{bottom:378.748800px;}
.y122{bottom:378.985650px;}
.y1e7{bottom:379.625700px;}
.y181{bottom:379.743300px;}
.y52{bottom:380.635650px;}
.y15d{bottom:380.991150px;}
.y20e{bottom:383.023800px;}
.y1d{bottom:383.773500px;}
.y8b{bottom:384.628950px;}
.y1a1{bottom:390.252600px;}
.yfc{bottom:390.525000px;}
.y15c{bottom:395.241150px;}
.y8a{bottom:399.028950px;}
.y1c{bottom:399.973500px;}
.y1cc{bottom:400.290000px;}
.yc0{bottom:400.498800px;}
.y121{bottom:400.660650px;}
.y180{bottom:401.493300px;}
.y1e6{bottom:401.525700px;}
.y51{bottom:402.610650px;}
.yfb{bottom:404.925000px;}
.y20d{bottom:405.448800px;}
.y15b{bottom:409.491150px;}
.y1a0{bottom:412.002600px;}
.y89{bottom:413.428950px;}
.y1b{bottom:416.173500px;}
.y1bc{bottom:417.278850px;}
.yfa{bottom:419.325000px;}
.y1cb{bottom:422.040000px;}
.ybe{bottom:422.248800px;}
.y120{bottom:422.335650px;}
.y17f{bottom:423.243300px;}
.y1e5{bottom:423.425700px;}
.y15a{bottom:423.741150px;}
.y50{bottom:424.585650px;}
.y88{bottom:427.828950px;}
.y20c{bottom:427.873800px;}
.ybf{bottom:427.993050px;}
.y1a{bottom:432.373500px;}
.yf9{bottom:433.725000px;}
.y19f{bottom:433.752600px;}
.y159{bottom:437.991150px;}
.y1bb{bottom:439.028850px;}
.y1ca{bottom:443.790000px;}
.ybd{bottom:443.998800px;}
.y11f{bottom:444.010650px;}
.y17e{bottom:444.993300px;}
.y4e{bottom:446.560650px;}
.yf8{bottom:448.125000px;}
.y19{bottom:448.573500px;}
.y87{bottom:450.732900px;}
.y158{bottom:452.241150px;}
.y4f{bottom:452.304900px;}
.y1e4{bottom:453.800700px;}
.y19e{bottom:455.502600px;}
.y20b{bottom:458.802750px;}
.y1ba{bottom:460.778850px;}
.yf7{bottom:462.525000px;}
.y18{bottom:464.773500px;}
.y86{bottom:465.132900px;}
.y1c9{bottom:465.540000px;}
.y11e{bottom:465.685650px;}
.ybc{bottom:465.748800px;}
.y157{bottom:466.491150px;}
.y17d{bottom:466.743300px;}
.y4d{bottom:468.535650px;}
.yf6{bottom:476.925000px;}
.y19d{bottom:477.252600px;}
.y85{bottom:479.532750px;}
.y156{bottom:480.741150px;}
.y17{bottom:480.973500px;}
.y20a{bottom:481.227750px;}
.y1b9{bottom:482.528850px;}
.y1c8{bottom:487.290000px;}
.y11d{bottom:487.360650px;}
.ybb{bottom:487.498800px;}
.y17c{bottom:488.493300px;}
.y4c{bottom:490.510650px;}
.yf5{bottom:491.325000px;}
.y84{bottom:493.932750px;}
.y155{bottom:494.991150px;}
.y16{bottom:497.173500px;}
.y19c{bottom:499.002600px;}
.y209{bottom:503.652750px;}
.y1b8{bottom:504.278850px;}
.yf4{bottom:505.725000px;}
.y83{bottom:508.332750px;}
.y11c{bottom:509.035650px;}
.y1c7{bottom:509.040000px;}
.y154{bottom:509.241150px;}
.yba{bottom:509.248800px;}
.y17b{bottom:510.243300px;}
.y4b{bottom:512.485650px;}
.y15{bottom:513.373500px;}
.y19b{bottom:520.752600px;}
.y1e3{bottom:521.675700px;}
.y82{bottom:522.732900px;}
.y153{bottom:523.491150px;}
.y1b7{bottom:526.028850px;}
.y208{bottom:526.077750px;}
.yf3{bottom:528.628950px;}
.y14{bottom:529.573500px;}
.y11b{bottom:530.710650px;}
.y1c6{bottom:530.790000px;}
.yb9{bottom:530.998800px;}
.y17a{bottom:531.993300px;}
.y49{bottom:534.460650px;}
.y81{bottom:537.132900px;}
.y4a{bottom:540.204900px;}
.y19a{bottom:542.502600px;}
.yf2{bottom:543.028950px;}
.y1e2{bottom:543.725850px;}
.y13{bottom:545.773500px;}
.y152{bottom:546.245250px;}
.y1b6{bottom:547.778850px;}
.y11a{bottom:552.385650px;}
.y1c5{bottom:552.540000px;}
.yb8{bottom:552.748800px;}
.y179{bottom:553.743300px;}
.y48{bottom:556.435650px;}
.y207{bottom:557.006700px;}
.yf1{bottom:557.428950px;}
.y80{bottom:560.036700px;}
.y151{bottom:560.495250px;}
.y12{bottom:561.973500px;}
.y199{bottom:564.252600px;}
.y1e1{bottom:565.775700px;}
.y1b5{bottom:569.528850px;}
.yf0{bottom:571.828950px;}
.y119{bottom:574.060650px;}
.y1c4{bottom:574.290000px;}
.y7f{bottom:574.436850px;}
.yb7{bottom:574.498800px;}
.y150{bottom:574.745250px;}
.y11{bottom:578.173500px;}
.y47{bottom:578.410650px;}
.y206{bottom:579.431700px;}
.y198{bottom:586.002600px;}
.yef{bottom:586.228950px;}
.y1e0{bottom:587.825850px;}
.y7e{bottom:588.836700px;}
.y14f{bottom:588.995250px;}
.y1b4{bottom:591.278850px;}
.y10{bottom:594.373500px;}
.y118{bottom:595.735650px;}
.y1c3{bottom:596.040000px;}
.yb6{bottom:596.248800px;}
.y45{bottom:600.385650px;}
.yee{bottom:600.628950px;}
.y205{bottom:601.856700px;}
.y7d{bottom:603.236700px;}
.y14e{bottom:603.245250px;}
.y46{bottom:606.129900px;}
.y197{bottom:607.752600px;}
.y1df{bottom:609.725850px;}
.yf{bottom:610.573500px;}
.y1b3{bottom:613.028850px;}
.yed{bottom:615.028950px;}
.y117{bottom:617.410650px;}
.y14d{bottom:617.495250px;}
.y7c{bottom:617.636700px;}
.y1c2{bottom:617.790000px;}
.yb5{bottom:617.998800px;}
.y44{bottom:622.360650px;}
.yec{bottom:629.428950px;}
.y196{bottom:629.502600px;}
.y1de{bottom:631.475850px;}
.y14c{bottom:631.745250px;}
.y7b{bottom:632.036700px;}
.y204{bottom:632.785650px;}
.y1b2{bottom:634.778850px;}
.y1c1{bottom:639.540000px;}
.yb4{bottom:639.748800px;}
.y42{bottom:644.335650px;}
.y14b{bottom:645.995250px;}
.y7a{bottom:646.436850px;}
.y22a{bottom:646.619850px;}
.y116{bottom:647.560650px;}
.y43{bottom:650.079900px;}
.y195{bottom:651.252600px;}
.yeb{bottom:652.332900px;}
.y1dd{bottom:653.225850px;}
.y203{bottom:655.210650px;}
.y1b1{bottom:656.528850px;}
.y14a{bottom:660.245250px;}
.y79{bottom:660.836700px;}
.y1c0{bottom:661.290000px;}
.yb3{bottom:661.498800px;}
.y41{bottom:666.310650px;}
.yea{bottom:666.732900px;}
.y229{bottom:669.044850px;}
.y194{bottom:673.002600px;}
.y149{bottom:674.495250px;}
.y1dc{bottom:674.975850px;}
.y78{bottom:675.236700px;}
.y202{bottom:677.635650px;}
.ye{bottom:677.797050px;}
.y1b0{bottom:678.278850px;}
.ye9{bottom:681.132900px;}
.y1bf{bottom:683.040000px;}
.y40{bottom:688.285650px;}
.y148{bottom:688.745250px;}
.y77{bottom:689.636700px;}
.y228{bottom:691.469850px;}
.y193{bottom:694.752600px;}
.ye8{bottom:695.532900px;}
.yb1{bottom:696.004800px;}
.yd{bottom:696.697050px;}
.y1db{bottom:696.725850px;}
.y1af{bottom:700.028850px;}
.y201{bottom:700.060650px;}
.yb2{bottom:701.249550px;}
.y147{bottom:702.995250px;}
.y76{bottom:704.036700px;}
.y1be{bottom:704.790000px;}
.ye7{bottom:709.932900px;}
.y3f{bottom:710.260650px;}
.y227{bottom:713.894850px;}
.yb0{bottom:714.829800px;}
.y115{bottom:715.060650px;}
.yc{bottom:715.597050px;}
.y192{bottom:716.502600px;}
.y146{bottom:717.245250px;}
.y75{bottom:718.436700px;}
.y1da{bottom:718.475850px;}
.y1ae{bottom:721.778850px;}
.y200{bottom:722.485650px;}
.ye6{bottom:724.332900px;}
.y1bd{bottom:726.540000px;}
.y3e{bottom:732.235650px;}
.y74{bottom:732.836850px;}
.yaf{bottom:733.654650px;}
.yb{bottom:734.497050px;}
.y113{bottom:736.735650px;}
.y191{bottom:738.252600px;}
.ye5{bottom:738.732900px;}
.y145{bottom:739.999050px;}
.y114{bottom:742.479900px;}
.y1ad{bottom:743.528850px;}
.y226{bottom:744.823800px;}
.y73{bottom:747.236700px;}
.yae{bottom:752.479650px;}
.ye4{bottom:753.132900px;}
.y1ff{bottom:753.385650px;}
.y3d{bottom:754.210650px;}
.y144{bottom:754.249050px;}
.y112{bottom:758.410650px;}
.y190{bottom:760.002600px;}
.y72{bottom:761.636700px;}
.ya{bottom:761.901000px;}
.y1ac{bottom:765.278850px;}
.y225{bottom:767.248800px;}
.ye3{bottom:767.532900px;}
.y143{bottom:768.499200px;}
.yad{bottom:771.304650px;}
.y3c{bottom:776.185650px;}
.y111{bottom:780.085650px;}
.y9{bottom:780.801000px;}
.y18f{bottom:781.752600px;}
.ye2{bottom:781.932900px;}
.y142{bottom:782.749200px;}
.y71{bottom:784.540650px;}
.y224{bottom:789.673800px;}
.yac{bottom:790.129800px;}
.ye1{bottom:796.332750px;}
.y141{bottom:796.999200px;}
.y3b{bottom:798.160650px;}
.y70{bottom:798.940650px;}
.y8{bottom:799.701000px;}
.y110{bottom:801.760650px;}
.y18e{bottom:803.502600px;}
.yab{bottom:808.954800px;}
.ye0{bottom:810.732900px;}
.y223{bottom:812.098800px;}
.y6f{bottom:813.340650px;}
.y7{bottom:818.601150px;}
.y140{bottom:819.753000px;}
.y3a{bottom:820.135650px;}
.y1fe{bottom:820.960650px;}
.y10f{bottom:823.435650px;}
.ydf{bottom:825.132900px;}
.y6e{bottom:827.740650px;}
.ya9{bottom:827.779650px;}
.yaa{bottom:833.024550px;}
.y13f{bottom:834.153150px;}
.yde{bottom:839.532900px;}
.y39{bottom:842.110650px;}
.y6d{bottom:842.140650px;}
.y1fd{bottom:842.860650px;}
.y222{bottom:843.027750px;}
.y10e{bottom:845.110650px;}
.ya8{bottom:846.604650px;}
.y13e{bottom:848.553000px;}
.ydd{bottom:853.932900px;}
.y6c{bottom:856.540650px;}
.y13d{bottom:862.953000px;}
.y37{bottom:864.085650px;}
.y1fc{bottom:864.760650px;}
.ya7{bottom:865.429650px;}
.y221{bottom:865.452750px;}
.y178{bottom:866.110650px;}
.y10d{bottom:866.785650px;}
.ydc{bottom:868.332750px;}
.y6{bottom:868.551150px;}
.y38{bottom:869.830050px;}
.y6b{bottom:870.940650px;}
.y13c{bottom:877.353000px;}
.ya6{bottom:884.254800px;}
.y6a{bottom:885.340650px;}
.y36{bottom:886.060650px;}
.y1fb{bottom:886.660650px;}
.y177{bottom:887.860650px;}
.y220{bottom:887.877750px;}
.y10c{bottom:888.460650px;}
.ydb{bottom:891.236700px;}
.y13b{bottom:891.753000px;}
.ya5{bottom:903.079800px;}
.yda{bottom:905.636850px;}
.y13a{bottom:906.153150px;}
.y35{bottom:908.035650px;}
.y69{bottom:908.244600px;}
.y1fa{bottom:908.560650px;}
.y176{bottom:909.610650px;}
.y10b{bottom:910.135650px;}
.y21f{bottom:910.302750px;}
.yd9{bottom:920.036700px;}
.y139{bottom:920.553000px;}
.ya4{bottom:921.904650px;}
.y68{bottom:922.644600px;}
.y5{bottom:923.301150px;}
.y34{bottom:930.010650px;}
.y1f9{bottom:930.460650px;}
.y175{bottom:931.360650px;}
.y10a{bottom:931.810650px;}
.yd8{bottom:934.436850px;}
.y138{bottom:934.953000px;}
.y67{bottom:937.044600px;}
.y21e{bottom:941.231700px;}
.yd7{bottom:948.836850px;}
.y137{bottom:949.353000px;}
.y66{bottom:951.444600px;}
.y33{bottom:951.985650px;}
.y1f8{bottom:952.360650px;}
.y174{bottom:953.110650px;}
.ya2{bottom:953.485650px;}
.ya3{bottom:959.229900px;}
.yd6{bottom:963.236700px;}
.y21d{bottom:963.656700px;}
.y136{bottom:963.753000px;}
.y65{bottom:965.844600px;}
.y32{bottom:973.960650px;}
.y1f7{bottom:974.260650px;}
.y173{bottom:974.860650px;}
.ya1{bottom:975.160650px;}
.yd5{bottom:977.636850px;}
.y4{bottom:978.051150px;}
.y135{bottom:978.153150px;}
.y64{bottom:980.244600px;}
.y21c{bottom:986.081700px;}
.yd4{bottom:992.036700px;}
.y134{bottom:992.553000px;}
.y63{bottom:994.644600px;}
.y31{bottom:995.935650px;}
.y1f6{bottom:996.160650px;}
.y172{bottom:996.610650px;}
.ya0{bottom:996.835650px;}
.yd3{bottom:1006.436850px;}
.y133{bottom:1006.953000px;}
.y62{bottom:1009.044600px;}
.y21b{bottom:1017.010650px;}
.y30{bottom:1017.910650px;}
.y1f5{bottom:1018.060650px;}
.y171{bottom:1018.360650px;}
.y9f{bottom:1018.510650px;}
.yd2{bottom:1020.836850px;}
.y132{bottom:1021.353000px;}
.y61{bottom:1023.444600px;}
.y3{bottom:1032.801150px;}
.yd1{bottom:1035.236850px;}
.y131{bottom:1035.753000px;}
.y60{bottom:1037.844600px;}
.y21a{bottom:1039.435650px;}
.y2f{bottom:1039.885650px;}
.y1f4{bottom:1039.960650px;}
.y170{bottom:1040.110650px;}
.y9e{bottom:1040.185650px;}
.y109{bottom:1045.929900px;}
.yd0{bottom:1049.636850px;}
.y130{bottom:1050.153150px;}
.y2e{bottom:1061.860650px;}
.ycf{bottom:1064.036700px;}
.y12f{bottom:1064.553000px;}
.y9d{bottom:1126.270200px;}
.y2d{bottom:1127.049150px;}
.he{height:24.820770px;}
.hb{height:27.184652px;}
.h7{height:41.472000px;}
.ha{height:43.200000px;}
.hc{height:43.296000px;}
.hd{height:54.000000px;}
.h6{height:56.196000px;}
.h5{height:57.078000px;}
.h9{height:62.514000px;}
.h8{height:75.600000px;}
.h3{height:81.540000px;}
.h2{height:160.101562px;}
.h4{height:194.400000px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:42.563400px;}
.x3{left:106.275000px;}
.x4{left:127.534800px;}
.x6{left:140.325000px;}
.x8{left:159.053850px;}
.x1c{left:171.720600px;}
.x1d{left:180.958200px;}
.xa{left:212.625000px;}
.xb{left:246.675000px;}
.x9{left:256.434600px;}
.x1e{left:280.107300px;}
.x1f{left:289.959900px;}
.x18{left:293.748300px;}
.xe{left:348.530850px;}
.xf{left:354.229500px;}
.x5{left:414.541500px;}
.x16{left:419.953050px;}
.x1a{left:472.187400px;}
.x1b{left:482.000700px;}
.x14{left:551.383050px;}
.x15{left:556.528650px;}
.x12{left:579.907800px;}
.x13{left:585.238050px;}
.xc{left:621.701250px;}
.xd{left:626.729700px;}
.x19{left:631.054200px;}
.x20{left:678.635850px;}
.x21{left:688.554000px;}
.x10{left:703.734750px;}
.x11{left:708.822450px;}
.x2{left:711.375150px;}
.x7{left:722.850000px;}
.x1{left:763.877250px;}
.x22{left:777.038250px;}
.x23{left:786.638400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:20.424000pt;}
.lsd{letter-spacing:-4.224000pt;}
.ls2e{letter-spacing:-3.285333pt;}
.ls18{letter-spacing:-2.304000pt;}
.ls57{letter-spacing:-2.288469pt;}
.ls85{letter-spacing:-2.261333pt;}
.ls22{letter-spacing:-2.085333pt;}
.ls4e{letter-spacing:-1.973333pt;}
.ls30{letter-spacing:-1.749333pt;}
.ls77{letter-spacing:-1.609080pt;}
.ls53{letter-spacing:-1.573323pt;}
.ls13{letter-spacing:-1.248000pt;}
.ls5b{letter-spacing:-1.165333pt;}
.ls5c{letter-spacing:-1.042667pt;}
.ls55{letter-spacing:-0.981333pt;}
.ls84{letter-spacing:-0.938667pt;}
.ls1e{letter-spacing:-0.920000pt;}
.ls73{letter-spacing:-0.893933pt;}
.ls5e{letter-spacing:-0.853333pt;}
.ls14{letter-spacing:-0.816000pt;}
.ls10{letter-spacing:-0.720000pt;}
.ls21{letter-spacing:-0.674667pt;}
.ls6a{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.613333pt;}
.ls46{letter-spacing:-0.597333pt;}
.ls59{letter-spacing:-0.536360pt;}
.ls40{letter-spacing:-0.512000pt;}
.ls8b{letter-spacing:-0.490667pt;}
.ls5d{letter-spacing:-0.469333pt;}
.ls50{letter-spacing:-0.448000pt;}
.ls4f{letter-spacing:-0.429333pt;}
.ls5a{letter-spacing:-0.368000pt;}
.ls81{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls54{letter-spacing:-0.306667pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.224000pt;}
.ls34{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls56{letter-spacing:-0.184000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls8c{letter-spacing:-0.122667pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls78{letter-spacing:-0.074667pt;}
.ls75{letter-spacing:-0.061333pt;}
.ls7e{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.ls8f{letter-spacing:0.000202pt;}
.ls1d{letter-spacing:0.000270pt;}
.ls79{letter-spacing:0.042667pt;}
.ls74{letter-spacing:0.061333pt;}
.ls6c{letter-spacing:0.085333pt;}
.ls24{letter-spacing:0.122667pt;}
.ls25{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.144000pt;}
.ls1c{letter-spacing:0.145929pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.240000pt;}
.ls60{letter-spacing:0.256000pt;}
.ls49{letter-spacing:0.298667pt;}
.ls58{letter-spacing:0.306667pt;}
.ls5{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.368000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls4c{letter-spacing:0.426667pt;}
.ls86{letter-spacing:0.429333pt;}
.ls51{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.490667pt;}
.ls29{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.528000pt;}
.ls90{letter-spacing:0.552000pt;}
.ls44{letter-spacing:0.554667pt;}
.ls94{letter-spacing:0.582667pt;}
.ls26{letter-spacing:0.597333pt;}
.ls9{letter-spacing:0.624000pt;}
.ls5f{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.672000pt;}
.ls69{letter-spacing:0.682667pt;}
.ls41{letter-spacing:0.725333pt;}
.ls8a{letter-spacing:0.736000pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls64{letter-spacing:0.810667pt;}
.ls6{letter-spacing:0.816000pt;}
.ls2b{letter-spacing:0.853333pt;}
.ls76{letter-spacing:0.858667pt;}
.ls31{letter-spacing:0.896000pt;}
.ls82{letter-spacing:0.981333pt;}
.ls67{letter-spacing:1.024000pt;}
.ls92{letter-spacing:1.072479pt;}
.ls3c{letter-spacing:1.109333pt;}
.ls7a{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls33{letter-spacing:1.237333pt;}
.ls8{letter-spacing:1.248000pt;}
.ls3d{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.300418pt;}
.ls3a{letter-spacing:1.322667pt;}
.ls4{letter-spacing:1.344000pt;}
.ls42{letter-spacing:1.365333pt;}
.ls6d{letter-spacing:1.408000pt;}
.ls3f{letter-spacing:1.450667pt;}
.ls7d{letter-spacing:1.493333pt;}
.ls8d{letter-spacing:1.520842pt;}
.ls89{letter-spacing:1.533333pt;}
.ls35{letter-spacing:1.536000pt;}
.ls2c{letter-spacing:1.578667pt;}
.ls8e{letter-spacing:1.594667pt;}
.ls3e{letter-spacing:1.621333pt;}
.ls6b{letter-spacing:1.664000pt;}
.ls6f{letter-spacing:1.706667pt;}
.ls88{letter-spacing:1.717333pt;}
.ls43{letter-spacing:1.749333pt;}
.ls7{letter-spacing:1.824000pt;}
.ls2d{letter-spacing:1.834667pt;}
.ls91{letter-spacing:1.839158pt;}
.ls93{letter-spacing:1.840000pt;}
.ls87{letter-spacing:1.901333pt;}
.ls66{letter-spacing:1.920000pt;}
.ls68{letter-spacing:2.005333pt;}
.ls4d{letter-spacing:2.048000pt;}
.ls27{letter-spacing:2.090667pt;}
.ls4a{letter-spacing:2.176000pt;}
.ls7b{letter-spacing:2.218667pt;}
.ls38{letter-spacing:2.346667pt;}
.ls45{letter-spacing:2.432000pt;}
.ls63{letter-spacing:2.474667pt;}
.ls3b{letter-spacing:2.560000pt;}
.ls36{letter-spacing:2.688000pt;}
.ls47{letter-spacing:2.730667pt;}
.ls71{letter-spacing:2.811259pt;}
.ls62{letter-spacing:2.816000pt;}
.ls6e{letter-spacing:2.858667pt;}
.ls70{letter-spacing:2.901333pt;}
.ls37{letter-spacing:2.944000pt;}
.ls48{letter-spacing:2.986667pt;}
.ls7f{letter-spacing:3.072000pt;}
.ls65{letter-spacing:3.114667pt;}
.ls80{letter-spacing:3.157333pt;}
.ls32{letter-spacing:3.242667pt;}
.ls4b{letter-spacing:3.328000pt;}
.ls28{letter-spacing:3.370667pt;}
.ls39{letter-spacing:3.413333pt;}
.ls83{letter-spacing:3.584000pt;}
.ls7c{letter-spacing:3.840000pt;}
.ls61{letter-spacing:4.736000pt;}
.ls1a{letter-spacing:7.413333pt;}
.ws25{word-spacing:-53.333333pt;}
.ws24{word-spacing:-20.757333pt;}
.ws82{word-spacing:-16.597333pt;}
.ws148{word-spacing:-16.498667pt;}
.ws141{word-spacing:-16.253333pt;}
.ws81{word-spacing:-15.762667pt;}
.wsd4{word-spacing:-15.701333pt;}
.ws28{word-spacing:-15.456000pt;}
.ws34{word-spacing:-15.189333pt;}
.ws8a{word-spacing:-14.976000pt;}
.ws83{word-spacing:-14.677333pt;}
.ws80{word-spacing:-14.560000pt;}
.ws85{word-spacing:-14.378667pt;}
.ws84{word-spacing:-14.336000pt;}
.ws2f{word-spacing:-14.293333pt;}
.wsd8{word-spacing:-14.080000pt;}
.ws33{word-spacing:-14.037333pt;}
.ws88{word-spacing:-13.866667pt;}
.ws2{word-spacing:-13.824000pt;}
.ws87{word-spacing:-13.610667pt;}
.ws2e{word-spacing:-13.482667pt;}
.ws2b{word-spacing:-13.440000pt;}
.ws2d{word-spacing:-13.397333pt;}
.ws3{word-spacing:-13.344000pt;}
.ws29{word-spacing:-13.226667pt;}
.ws89{word-spacing:-13.184000pt;}
.ws2a{word-spacing:-13.141333pt;}
.ws0{word-spacing:-13.056000pt;}
.ws86{word-spacing:-12.714667pt;}
.wsd6{word-spacing:-12.586667pt;}
.wsd7{word-spacing:-12.458667pt;}
.wsd5{word-spacing:-12.373333pt;}
.ws30{word-spacing:-12.330667pt;}
.ws32{word-spacing:-12.160000pt;}
.ws1{word-spacing:-12.096000pt;}
.ws31{word-spacing:-11.861333pt;}
.ws2c{word-spacing:-10.880000pt;}
.ws27{word-spacing:-9.296907pt;}
.ws35{word-spacing:-8.576000pt;}
.ws4{word-spacing:-7.680000pt;}
.ws150{word-spacing:-6.808000pt;}
.ws15c{word-spacing:-4.906667pt;}
.ws8b{word-spacing:-4.426667pt;}
.ws14c{word-spacing:-3.373333pt;}
.ws74{word-spacing:-2.986667pt;}
.wsc5{word-spacing:-2.858667pt;}
.ws73{word-spacing:-2.730667pt;}
.ws14e{word-spacing:-2.269333pt;}
.wsf9{word-spacing:-2.176000pt;}
.ws160{word-spacing:-2.085333pt;}
.ws14f{word-spacing:-1.656000pt;}
.ws151{word-spacing:-1.594667pt;}
.ws15f{word-spacing:-1.226667pt;}
.wsb9{word-spacing:-0.896000pt;}
.ws102{word-spacing:-0.853333pt;}
.ws71{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.725333pt;}
.ws6c{word-spacing:-0.682667pt;}
.ws163{word-spacing:-0.613333pt;}
.wsbf{word-spacing:-0.512000pt;}
.ws5c{word-spacing:-0.384000pt;}
.ws152{word-spacing:-0.368000pt;}
.wsc2{word-spacing:-0.341333pt;}
.ws104{word-spacing:-0.213333pt;}
.ws26{word-spacing:-0.080000pt;}
.ws5{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.042667pt;}
.wsc3{word-spacing:0.128000pt;}
.ws118{word-spacing:0.245333pt;}
.ws12e{word-spacing:0.306667pt;}
.ws10a{word-spacing:0.341333pt;}
.wse9{word-spacing:0.368000pt;}
.wsad{word-spacing:0.536360pt;}
.wsa6{word-spacing:0.552000pt;}
.ws70{word-spacing:0.597333pt;}
.wse{word-spacing:0.720000pt;}
.wseb{word-spacing:0.736000pt;}
.wsb6{word-spacing:0.797333pt;}
.wsb7{word-spacing:0.853333pt;}
.wsda{word-spacing:0.893933pt;}
.ws52{word-spacing:0.920000pt;}
.ws77{word-spacing:0.938667pt;}
.ws4a{word-spacing:1.042667pt;}
.ws129{word-spacing:1.104000pt;}
.wsf5{word-spacing:1.237333pt;}
.wsf{word-spacing:1.248000pt;}
.ws124{word-spacing:1.288000pt;}
.ws9e{word-spacing:1.349333pt;}
.ws4b{word-spacing:1.410667pt;}
.wsc7{word-spacing:1.493333pt;}
.ws126{word-spacing:1.533333pt;}
.wsa5{word-spacing:1.573323pt;}
.ws13e{word-spacing:1.594667pt;}
.wse4{word-spacing:1.609080pt;}
.wsbb{word-spacing:1.621333pt;}
.ws11c{word-spacing:1.656000pt;}
.wsfd{word-spacing:1.664000pt;}
.wsee{word-spacing:1.717333pt;}
.ws138{word-spacing:1.840000pt;}
.ws9d{word-spacing:1.901333pt;}
.ws10d{word-spacing:1.920000pt;}
.ws8c{word-spacing:1.973333pt;}
.wsa8{word-spacing:2.085333pt;}
.ws106{word-spacing:2.090667pt;}
.wsc9{word-spacing:2.133333pt;}
.ws145{word-spacing:2.208000pt;}
.ws105{word-spacing:2.261333pt;}
.wsea{word-spacing:2.269333pt;}
.wsab{word-spacing:2.288469pt;}
.ws1b{word-spacing:2.304000pt;}
.wsff{word-spacing:2.346667pt;}
.ws162{word-spacing:2.514667pt;}
.ws61{word-spacing:2.517333pt;}
.ws90{word-spacing:2.698667pt;}
.ws144{word-spacing:2.760000pt;}
.ws100{word-spacing:2.773333pt;}
.wse0{word-spacing:2.821333pt;}
.ws14a{word-spacing:2.882667pt;}
.ws157{word-spacing:2.944000pt;}
.ws103{word-spacing:2.986667pt;}
.ws10{word-spacing:3.120000pt;}
.ws19{word-spacing:3.168000pt;}
.ws62{word-spacing:3.200000pt;}
.ws155{word-spacing:3.250667pt;}
.ws55{word-spacing:3.312000pt;}
.ws112{word-spacing:3.373333pt;}
.wsa4{word-spacing:3.434667pt;}
.wsb2{word-spacing:3.557333pt;}
.ws123{word-spacing:3.618667pt;}
.wsfa{word-spacing:3.626667pt;}
.ws96{word-spacing:3.640000pt;}
.wsb5{word-spacing:3.741333pt;}
.ws13a{word-spacing:3.802667pt;}
.wsdd{word-spacing:3.925333pt;}
.wsb{word-spacing:4.032000pt;}
.ws154{word-spacing:4.048000pt;}
.wsfb{word-spacing:4.053333pt;}
.ws97{word-spacing:4.088000pt;}
.wsb8{word-spacing:4.096000pt;}
.ws125{word-spacing:4.109333pt;}
.ws120{word-spacing:4.170667pt;}
.wscc{word-spacing:4.181333pt;}
.wsf3{word-spacing:4.224000pt;}
.ws95{word-spacing:4.312000pt;}
.ws111{word-spacing:4.538667pt;}
.ws8{word-spacing:4.608000pt;}
.ws128{word-spacing:4.722667pt;}
.ws9{word-spacing:4.752000pt;}
.ws133{word-spacing:4.845333pt;}
.ws139{word-spacing:4.906667pt;}
.ws14d{word-spacing:4.968000pt;}
.wsc8{word-spacing:4.992000pt;}
.ws130{word-spacing:5.029333pt;}
.wsc0{word-spacing:5.077333pt;}
.ws156{word-spacing:5.090667pt;}
.ws4f{word-spacing:5.152000pt;}
.wscd{word-spacing:5.205333pt;}
.ws12f{word-spacing:5.213333pt;}
.ws13{word-spacing:5.232000pt;}
.ws79{word-spacing:5.248000pt;}
.ws146{word-spacing:5.336000pt;}
.wsfc{word-spacing:5.376000pt;}
.ws42{word-spacing:5.397333pt;}
.ws65{word-spacing:5.418667pt;}
.ws21{word-spacing:5.458667pt;}
.wsa2{word-spacing:5.520000pt;}
.wsf2{word-spacing:5.546667pt;}
.wsa9{word-spacing:5.581333pt;}
.wsca{word-spacing:5.589333pt;}
.ws3c{word-spacing:5.642667pt;}
.ws11a{word-spacing:5.704000pt;}
.ws14{word-spacing:5.712000pt;}
.ws38{word-spacing:5.826667pt;}
.wsc6{word-spacing:5.888000pt;}
.ws6d{word-spacing:5.930667pt;}
.wsd9{word-spacing:6.010667pt;}
.ws6e{word-spacing:6.058667pt;}
.ws9f{word-spacing:6.072000pt;}
.ws4c{word-spacing:6.133333pt;}
.ws13f{word-spacing:6.194667pt;}
.wsaa{word-spacing:6.256000pt;}
.wsf4{word-spacing:6.272000pt;}
.ws57{word-spacing:6.317333pt;}
.wsac{word-spacing:6.378667pt;}
.ws3f{word-spacing:6.440000pt;}
.ws23{word-spacing:6.442667pt;}
.ws91{word-spacing:6.496000pt;}
.wsa7{word-spacing:6.501333pt;}
.ws11d{word-spacing:6.562667pt;}
.ws15{word-spacing:6.672000pt;}
.wsed{word-spacing:6.685333pt;}
.wsd0{word-spacing:6.741333pt;}
.ws113{word-spacing:6.746667pt;}
.ws4d{word-spacing:6.869333pt;}
.ws10c{word-spacing:6.912000pt;}
.ws140{word-spacing:6.930667pt;}
.wsae{word-spacing:6.992000pt;}
.wsbe{word-spacing:7.040000pt;}
.ws147{word-spacing:7.053333pt;}
.wsdf{word-spacing:7.114667pt;}
.ws1e{word-spacing:7.152000pt;}
.ws11e{word-spacing:7.176000pt;}
.ws11f{word-spacing:7.237333pt;}
.ws6{word-spacing:7.280000pt;}
.wsce{word-spacing:7.296000pt;}
.wsa1{word-spacing:7.298667pt;}
.ws93{word-spacing:7.336000pt;}
.ws36{word-spacing:7.413333pt;}
.ws109{word-spacing:7.424000pt;}
.wsbd{word-spacing:7.466667pt;}
.ws39{word-spacing:7.482667pt;}
.ws3d{word-spacing:7.605333pt;}
.ws8d{word-spacing:7.666667pt;}
.ws12{word-spacing:7.680000pt;}
.wsde{word-spacing:7.728000pt;}
.ws17{word-spacing:7.776000pt;}
.ws12c{word-spacing:7.789333pt;}
.ws58{word-spacing:7.850667pt;}
.wsd2{word-spacing:7.893333pt;}
.ws131{word-spacing:7.912000pt;}
.wsc{word-spacing:7.968000pt;}
.ws3a{word-spacing:7.973333pt;}
.ws10e{word-spacing:8.034667pt;}
.ws45{word-spacing:8.096000pt;}
.ws108{word-spacing:8.149333pt;}
.wse6{word-spacing:8.157333pt;}
.wse1{word-spacing:8.218667pt;}
.ws132{word-spacing:8.280000pt;}
.ws76{word-spacing:8.320000pt;}
.ws161{word-spacing:8.402667pt;}
.ws50{word-spacing:8.464000pt;}
.ws5e{word-spacing:8.490667pt;}
.ws122{word-spacing:8.525333pt;}
.ws10b{word-spacing:8.533333pt;}
.wsa3{word-spacing:8.586667pt;}
.ws22{word-spacing:8.618667pt;}
.ws56{word-spacing:8.648000pt;}
.wsd{word-spacing:8.688000pt;}
.wsf8{word-spacing:8.704000pt;}
.ws49{word-spacing:8.709333pt;}
.ws3e{word-spacing:8.770667pt;}
.ws18{word-spacing:8.832000pt;}
.ws37{word-spacing:8.893333pt;}
.ws94{word-spacing:8.904000pt;}
.ws72{word-spacing:8.917333pt;}
.wsb1{word-spacing:8.954667pt;}
.ws1d{word-spacing:8.976000pt;}
.ws44{word-spacing:9.077333pt;}
.ws64{word-spacing:9.130667pt;}
.ws119{word-spacing:9.138667pt;}
.wsfe{word-spacing:9.173333pt;}
.ws20{word-spacing:9.200000pt;}
.wsa{word-spacing:9.216000pt;}
.ws16{word-spacing:9.312000pt;}
.ws137{word-spacing:9.384000pt;}
.ws11b{word-spacing:9.506667pt;}
.ws7a{word-spacing:9.514667pt;}
.wsb4{word-spacing:9.568000pt;}
.ws12d{word-spacing:9.690667pt;}
.ws1a{word-spacing:9.744000pt;}
.ws75{word-spacing:9.813333pt;}
.ws114{word-spacing:9.874667pt;}
.ws9c{word-spacing:9.912000pt;}
.ws51{word-spacing:9.936000pt;}
.wsbc{word-spacing:9.941333pt;}
.ws107{word-spacing:9.984000pt;}
.ws8e{word-spacing:10.058667pt;}
.wsba{word-spacing:10.112000pt;}
.wse2{word-spacing:10.120000pt;}
.ws142{word-spacing:10.181333pt;}
.ws78{word-spacing:10.282667pt;}
.ws127{word-spacing:10.304000pt;}
.ws134{word-spacing:10.365333pt;}
.wsdc{word-spacing:10.426667pt;}
.ws7b{word-spacing:10.453333pt;}
.ws110{word-spacing:10.488000pt;}
.ws47{word-spacing:10.549333pt;}
.ws7e{word-spacing:10.581333pt;}
.ws9a{word-spacing:10.640000pt;}
.ws5d{word-spacing:10.794667pt;}
.ws15e{word-spacing:10.856000pt;}
.wscb{word-spacing:10.880000pt;}
.ws11{word-spacing:10.896000pt;}
.ws59{word-spacing:10.917333pt;}
.ws116{word-spacing:10.978667pt;}
.ws6b{word-spacing:11.008000pt;}
.ws12b{word-spacing:11.040000pt;}
.ws7c{word-spacing:11.093333pt;}
.ws135{word-spacing:11.101333pt;}
.wse5{word-spacing:11.125333pt;}
.ws60{word-spacing:11.136000pt;}
.ws4e{word-spacing:11.162667pt;}
.ws7d{word-spacing:11.178667pt;}
.ws66{word-spacing:11.221333pt;}
.wsf6{word-spacing:11.264000pt;}
.ws1f{word-spacing:11.274667pt;}
.wsb3{word-spacing:11.285333pt;}
.wsef{word-spacing:11.346667pt;}
.wsf7{word-spacing:11.349333pt;}
.wsc1{word-spacing:11.392000pt;}
.ws13d{word-spacing:11.408000pt;}
.ws98{word-spacing:11.424000pt;}
.ws67{word-spacing:11.434667pt;}
.ws12a{word-spacing:11.530667pt;}
.ws92{word-spacing:11.536000pt;}
.ws149{word-spacing:11.592000pt;}
.ws7f{word-spacing:11.605333pt;}
.ws99{word-spacing:11.704000pt;}
.wsc4{word-spacing:11.733333pt;}
.ws43{word-spacing:11.776000pt;}
.ws5b{word-spacing:11.818667pt;}
.ws40{word-spacing:11.837333pt;}
.ws5a{word-spacing:11.861333pt;}
.ws136{word-spacing:11.898667pt;}
.ws6a{word-spacing:11.904000pt;}
.ws3b{word-spacing:11.960000pt;}
.wscf{word-spacing:11.989333pt;}
.ws143{word-spacing:12.021333pt;}
.wsb0{word-spacing:12.082667pt;}
.wsec{word-spacing:12.144000pt;}
.ws5f{word-spacing:12.160000pt;}
.ws115{word-spacing:12.328000pt;}
.ws41{word-spacing:12.389333pt;}
.ws63{word-spacing:12.416000pt;}
.ws13c{word-spacing:12.512000pt;}
.ws69{word-spacing:12.629333pt;}
.ws1c{word-spacing:12.768000pt;}
.wsdb{word-spacing:12.818667pt;}
.ws101{word-spacing:12.885333pt;}
.wse8{word-spacing:12.941333pt;}
.ws117{word-spacing:13.064000pt;}
.ws8f{word-spacing:13.125333pt;}
.ws121{word-spacing:13.186667pt;}
.ws159{word-spacing:13.248000pt;}
.ws15d{word-spacing:13.309333pt;}
.ws7{word-spacing:13.344000pt;}
.wsaf{word-spacing:13.370667pt;}
.ws13b{word-spacing:13.432000pt;}
.ws10f{word-spacing:13.616000pt;}
.wsa0{word-spacing:13.738667pt;}
.wse3{word-spacing:13.861333pt;}
.wsd3{word-spacing:13.866667pt;}
.ws14b{word-spacing:13.922667pt;}
.ws68{word-spacing:14.421333pt;}
.ws53{word-spacing:14.474667pt;}
.wsf0{word-spacing:14.536000pt;}
.ws9b{word-spacing:14.560000pt;}
.ws48{word-spacing:14.781333pt;}
.ws46{word-spacing:15.026667pt;}
.ws15b{word-spacing:15.088000pt;}
.wse7{word-spacing:15.578667pt;}
.wsf1{word-spacing:15.885333pt;}
.ws54{word-spacing:15.946667pt;}
.ws15a{word-spacing:17.296000pt;}
.ws158{word-spacing:20.546667pt;}
.ws153{word-spacing:31.034667pt;}
._e{margin-left:-7.437333pt;}
._c{margin-left:-6.482526pt;}
._3{margin-left:-5.320000pt;}
._0{margin-left:-3.552000pt;}
._6{margin-left:-2.208000pt;}
._2{margin-left:-1.008000pt;}
._1{width:0.952000pt;}
._7{width:2.416533pt;}
._8{width:3.334933pt;}
._a{width:4.758933pt;}
._5{width:5.700772pt;}
._9{width:6.930526pt;}
._4{width:7.889404pt;}
._d{width:10.409740pt;}
._b{width:13.205689pt;}
.fs9{font-size:24.874667pt;}
.fsa{font-size:32.648000pt;}
.fs8{font-size:35.757333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.226933pt;}
.y2c{bottom:51.293467pt;}
.y16f{bottom:102.966533pt;}
.y1f3{bottom:103.845067pt;}
.y2b{bottom:103.933333pt;}
.y5e{bottom:103.942800pt;}
.y29{bottom:104.280533pt;}
.y1d9{bottom:104.480000pt;}
.yce{bottom:105.198933pt;}
.y1ab{bottom:105.291200pt;}
.y12e{bottom:105.476133pt;}
.y18d{bottom:105.549600pt;}
.y219{bottom:106.080933pt;}
.y5f{bottom:109.048800pt;}
.y16e{bottom:115.766533pt;}
.y9c{bottom:116.733333pt;}
.y1f2{bottom:123.311733pt;}
.y5d{bottom:123.476133pt;}
.y28{bottom:123.613867pt;}
.y1d8{bottom:123.813333pt;}
.ycd{bottom:124.532267pt;}
.y1aa{bottom:124.624533pt;}
.y12d{bottom:124.809467pt;}
.y18c{bottom:124.882933pt;}
.y2a{bottom:125.267067pt;}
.y218{bottom:126.014133pt;}
.y16d{bottom:128.433200pt;}
.y9b{bottom:129.533333pt;}
.y16c{bottom:141.099867pt;}
.y9a{bottom:142.333200pt;}
.y108{bottom:142.333333pt;}
.y1f1{bottom:142.778400pt;}
.y5c{bottom:143.009467pt;}
.y1d7{bottom:143.146667pt;}
.ycc{bottom:143.865600pt;}
.y1a9{bottom:143.957867pt;}
.y12c{bottom:144.142800pt;}
.y18b{bottom:144.216267pt;}
.y217{bottom:145.947467pt;}
.y27{bottom:150.480533pt;}
.y16b{bottom:153.766533pt;}
.y99{bottom:155.133333pt;}
.y1f0{bottom:162.245067pt;}
.y1d6{bottom:162.480000pt;}
.y5b{bottom:162.542800pt;}
.ycb{bottom:163.132267pt;}
.y1a8{bottom:163.291200pt;}
.y12b{bottom:163.476133pt;}
.y18a{bottom:163.549600pt;}
.y216{bottom:165.880800pt;}
.y16a{bottom:166.433200pt;}
.y98{bottom:167.933333pt;}
.y169{bottom:179.099867pt;}
.y97{bottom:180.733333pt;}
.y1ef{bottom:181.711733pt;}
.y1d5{bottom:181.813333pt;}
.y5a{bottom:182.076133pt;}
.yca{bottom:182.398933pt;}
.y1a7{bottom:182.624533pt;}
.y12a{bottom:182.742800pt;}
.y189{bottom:182.882933pt;}
.y215{bottom:185.814267pt;}
.y168{bottom:191.766533pt;}
.y96{bottom:193.533333pt;}
.y1d4{bottom:201.146667pt;}
.y1ee{bottom:201.178400pt;}
.y59{bottom:201.609467pt;}
.yc9{bottom:201.665600pt;}
.y1a6{bottom:201.957867pt;}
.y129{bottom:202.009467pt;}
.y188{bottom:202.216267pt;}
.y167{bottom:204.433200pt;}
.y95{bottom:206.333200pt;}
.y107{bottom:206.333333pt;}
.y214{bottom:213.306533pt;}
.y166{bottom:217.099867pt;}
.y26{bottom:218.106267pt;}
.y25{bottom:218.372933pt;}
.y106{bottom:219.133333pt;}
.y1d3{bottom:220.480000pt;}
.y1ed{bottom:220.645067pt;}
.yc8{bottom:220.932267pt;}
.y58{bottom:221.142800pt;}
.y128{bottom:221.276133pt;}
.y1a5{bottom:221.291200pt;}
.y187{bottom:221.549600pt;}
.y94{bottom:226.692400pt;}
.y165{bottom:229.766533pt;}
.y105{bottom:231.933333pt;}
.y24{bottom:232.772933pt;}
.y213{bottom:233.239867pt;}
.y93{bottom:239.492400pt;}
.y1d2{bottom:239.813333pt;}
.y1ec{bottom:240.111733pt;}
.yc7{bottom:240.198933pt;}
.y127{bottom:240.542800pt;}
.y1a4{bottom:240.624533pt;}
.y57{bottom:240.676133pt;}
.y186{bottom:240.882933pt;}
.y164{bottom:242.433200pt;}
.y104{bottom:244.733333pt;}
.y92{bottom:252.292267pt;}
.y212{bottom:253.173200pt;}
.y23{bottom:254.732000pt;}
.y163{bottom:255.099867pt;}
.y103{bottom:257.533333pt;}
.y1d1{bottom:259.146667pt;}
.yc6{bottom:259.465600pt;}
.y1eb{bottom:259.578400pt;}
.y126{bottom:259.809467pt;}
.y56{bottom:260.209467pt;}
.y185{bottom:260.216267pt;}
.y91{bottom:265.092400pt;}
.y1a3{bottom:267.491200pt;}
.y162{bottom:267.766533pt;}
.y22{bottom:269.132000pt;}
.y102{bottom:270.333333pt;}
.y211{bottom:273.106533pt;}
.y90{bottom:277.892400pt;}
.y1d0{bottom:278.480000pt;}
.yc4{bottom:278.732267pt;}
.y1ea{bottom:279.045067pt;}
.y125{bottom:279.076133pt;}
.y184{bottom:279.549600pt;}
.y55{bottom:279.742800pt;}
.y161{bottom:280.433200pt;}
.y101{bottom:283.133333pt;}
.y21{bottom:283.532000pt;}
.yc5{bottom:283.838267pt;}
.y8f{bottom:290.692400pt;}
.y210{bottom:293.039867pt;}
.y160{bottom:293.099867pt;}
.y1{bottom:294.802667pt;}
.y100{bottom:295.933333pt;}
.y1cf{bottom:297.813333pt;}
.y20{bottom:297.932000pt;}
.yc3{bottom:297.998933pt;}
.y124{bottom:298.342800pt;}
.y1e9{bottom:298.511733pt;}
.y183{bottom:298.882933pt;}
.y54{bottom:299.276133pt;}
.y8e{bottom:303.492400pt;}
.y15f{bottom:305.766533pt;}
.yff{bottom:308.733333pt;}
.y1f{bottom:312.332000pt;}
.y20f{bottom:312.973200pt;}
.y8d{bottom:316.292400pt;}
.y1ce{bottom:317.146667pt;}
.yc2{bottom:317.332267pt;}
.y123{bottom:317.609467pt;}
.y1e8{bottom:317.978400pt;}
.y182{bottom:318.216267pt;}
.y15e{bottom:318.433200pt;}
.y53{bottom:318.809467pt;}
.yfe{bottom:321.533333pt;}
.y1e{bottom:326.732000pt;}
.y1a2{bottom:327.557867pt;}
.y8c{bottom:329.092400pt;}
.yfd{bottom:334.333333pt;}
.y1cd{bottom:336.480000pt;}
.yc1{bottom:336.665600pt;}
.y122{bottom:336.876133pt;}
.y1e7{bottom:337.445067pt;}
.y181{bottom:337.549600pt;}
.y52{bottom:338.342800pt;}
.y15d{bottom:338.658800pt;}
.y20e{bottom:340.465600pt;}
.y1d{bottom:341.132000pt;}
.y8b{bottom:341.892400pt;}
.y1a1{bottom:346.891200pt;}
.yfc{bottom:347.133333pt;}
.y15c{bottom:351.325467pt;}
.y8a{bottom:354.692400pt;}
.y1c{bottom:355.532000pt;}
.y1cc{bottom:355.813333pt;}
.yc0{bottom:355.998933pt;}
.y121{bottom:356.142800pt;}
.y180{bottom:356.882933pt;}
.y1e6{bottom:356.911733pt;}
.y51{bottom:357.876133pt;}
.yfb{bottom:359.933333pt;}
.y20d{bottom:360.398933pt;}
.y15b{bottom:363.992133pt;}
.y1a0{bottom:366.224533pt;}
.y89{bottom:367.492400pt;}
.y1b{bottom:369.932000pt;}
.y1bc{bottom:370.914533pt;}
.yfa{bottom:372.733333pt;}
.y1cb{bottom:375.146667pt;}
.ybe{bottom:375.332267pt;}
.y120{bottom:375.409467pt;}
.y17f{bottom:376.216267pt;}
.y1e5{bottom:376.378400pt;}
.y15a{bottom:376.658800pt;}
.y50{bottom:377.409467pt;}
.y88{bottom:380.292400pt;}
.y20c{bottom:380.332267pt;}
.ybf{bottom:380.438267pt;}
.y1a{bottom:384.332000pt;}
.yf9{bottom:385.533333pt;}
.y19f{bottom:385.557867pt;}
.y159{bottom:389.325467pt;}
.y1bb{bottom:390.247867pt;}
.y1ca{bottom:394.480000pt;}
.ybd{bottom:394.665600pt;}
.y11f{bottom:394.676133pt;}
.y17e{bottom:395.549600pt;}
.y4e{bottom:396.942800pt;}
.yf8{bottom:398.333333pt;}
.y19{bottom:398.732000pt;}
.y87{bottom:400.651467pt;}
.y158{bottom:401.992133pt;}
.y4f{bottom:402.048800pt;}
.y1e4{bottom:403.378400pt;}
.y19e{bottom:404.891200pt;}
.y20b{bottom:407.824667pt;}
.y1ba{bottom:409.581200pt;}
.yf7{bottom:411.133333pt;}
.y18{bottom:413.132000pt;}
.y86{bottom:413.451467pt;}
.y1c9{bottom:413.813333pt;}
.y11e{bottom:413.942800pt;}
.ybc{bottom:413.998933pt;}
.y157{bottom:414.658800pt;}
.y17d{bottom:414.882933pt;}
.y4d{bottom:416.476133pt;}
.yf6{bottom:423.933333pt;}
.y19d{bottom:424.224533pt;}
.y85{bottom:426.251333pt;}
.y156{bottom:427.325467pt;}
.y17{bottom:427.532000pt;}
.y20a{bottom:427.758000pt;}
.y1b9{bottom:428.914533pt;}
.y1c8{bottom:433.146667pt;}
.y11d{bottom:433.209467pt;}
.ybb{bottom:433.332267pt;}
.y17c{bottom:434.216267pt;}
.y4c{bottom:436.009467pt;}
.yf5{bottom:436.733333pt;}
.y84{bottom:439.051333pt;}
.y155{bottom:439.992133pt;}
.y16{bottom:441.932000pt;}
.y19c{bottom:443.557867pt;}
.y209{bottom:447.691333pt;}
.y1b8{bottom:448.247867pt;}
.yf4{bottom:449.533333pt;}
.y83{bottom:451.851333pt;}
.y11c{bottom:452.476133pt;}
.y1c7{bottom:452.480000pt;}
.y154{bottom:452.658800pt;}
.yba{bottom:452.665600pt;}
.y17b{bottom:453.549600pt;}
.y4b{bottom:455.542800pt;}
.y15{bottom:456.332000pt;}
.y19b{bottom:462.891200pt;}
.y1e3{bottom:463.711733pt;}
.y82{bottom:464.651467pt;}
.y153{bottom:465.325467pt;}
.y1b7{bottom:467.581200pt;}
.y208{bottom:467.624667pt;}
.yf3{bottom:469.892400pt;}
.y14{bottom:470.732000pt;}
.y11b{bottom:471.742800pt;}
.y1c6{bottom:471.813333pt;}
.yb9{bottom:471.998933pt;}
.y17a{bottom:472.882933pt;}
.y49{bottom:475.076133pt;}
.y81{bottom:477.451467pt;}
.y4a{bottom:480.182133pt;}
.y19a{bottom:482.224533pt;}
.yf2{bottom:482.692400pt;}
.y1e2{bottom:483.311867pt;}
.y13{bottom:485.132000pt;}
.y152{bottom:485.551333pt;}
.y1b6{bottom:486.914533pt;}
.y11a{bottom:491.009467pt;}
.y1c5{bottom:491.146667pt;}
.yb8{bottom:491.332267pt;}
.y179{bottom:492.216267pt;}
.y48{bottom:494.609467pt;}
.y207{bottom:495.117067pt;}
.yf1{bottom:495.492400pt;}
.y80{bottom:497.810400pt;}
.y151{bottom:498.218000pt;}
.y12{bottom:499.532000pt;}
.y199{bottom:501.557867pt;}
.y1e1{bottom:502.911733pt;}
.y1b5{bottom:506.247867pt;}
.yf0{bottom:508.292400pt;}
.y119{bottom:510.276133pt;}
.y1c4{bottom:510.480000pt;}
.y7f{bottom:510.610533pt;}
.yb7{bottom:510.665600pt;}
.y150{bottom:510.884667pt;}
.y11{bottom:513.932000pt;}
.y47{bottom:514.142800pt;}
.y206{bottom:515.050400pt;}
.y198{bottom:520.891200pt;}
.yef{bottom:521.092400pt;}
.y1e0{bottom:522.511867pt;}
.y7e{bottom:523.410400pt;}
.y14f{bottom:523.551333pt;}
.y1b4{bottom:525.581200pt;}
.y10{bottom:528.332000pt;}
.y118{bottom:529.542800pt;}
.y1c3{bottom:529.813333pt;}
.yb6{bottom:529.998933pt;}
.y45{bottom:533.676133pt;}
.yee{bottom:533.892400pt;}
.y205{bottom:534.983733pt;}
.y7d{bottom:536.210400pt;}
.y14e{bottom:536.218000pt;}
.y46{bottom:538.782133pt;}
.y197{bottom:540.224533pt;}
.y1df{bottom:541.978533pt;}
.yf{bottom:542.732000pt;}
.y1b3{bottom:544.914533pt;}
.yed{bottom:546.692400pt;}
.y117{bottom:548.809467pt;}
.y14d{bottom:548.884667pt;}
.y7c{bottom:549.010400pt;}
.y1c2{bottom:549.146667pt;}
.yb5{bottom:549.332267pt;}
.y44{bottom:553.209467pt;}
.yec{bottom:559.492400pt;}
.y196{bottom:559.557867pt;}
.y1de{bottom:561.311867pt;}
.y14c{bottom:561.551333pt;}
.y7b{bottom:561.810400pt;}
.y204{bottom:562.476133pt;}
.y1b2{bottom:564.247867pt;}
.y1c1{bottom:568.480000pt;}
.yb4{bottom:568.665600pt;}
.y42{bottom:572.742800pt;}
.y14b{bottom:574.218000pt;}
.y7a{bottom:574.610533pt;}
.y22a{bottom:574.773200pt;}
.y116{bottom:575.609467pt;}
.y43{bottom:577.848800pt;}
.y195{bottom:578.891200pt;}
.yeb{bottom:579.851467pt;}
.y1dd{bottom:580.645200pt;}
.y203{bottom:582.409467pt;}
.y1b1{bottom:583.581200pt;}
.y14a{bottom:586.884667pt;}
.y79{bottom:587.410400pt;}
.y1c0{bottom:587.813333pt;}
.yb3{bottom:587.998933pt;}
.y41{bottom:592.276133pt;}
.yea{bottom:592.651467pt;}
.y229{bottom:594.706533pt;}
.y194{bottom:598.224533pt;}
.y149{bottom:599.551333pt;}
.y1dc{bottom:599.978533pt;}
.y78{bottom:600.210400pt;}
.y202{bottom:602.342800pt;}
.ye{bottom:602.486267pt;}
.y1b0{bottom:602.914533pt;}
.ye9{bottom:605.451467pt;}
.y1bf{bottom:607.146667pt;}
.y40{bottom:611.809467pt;}
.y148{bottom:612.218000pt;}
.y77{bottom:613.010400pt;}
.y228{bottom:614.639867pt;}
.y193{bottom:617.557867pt;}
.ye8{bottom:618.251467pt;}
.yb1{bottom:618.670933pt;}
.yd{bottom:619.286267pt;}
.y1db{bottom:619.311867pt;}
.y1af{bottom:622.247867pt;}
.y201{bottom:622.276133pt;}
.yb2{bottom:623.332933pt;}
.y147{bottom:624.884667pt;}
.y76{bottom:625.810400pt;}
.y1be{bottom:626.480000pt;}
.ye7{bottom:631.051467pt;}
.y3f{bottom:631.342800pt;}
.y227{bottom:634.573200pt;}
.yb0{bottom:635.404267pt;}
.y115{bottom:635.609467pt;}
.yc{bottom:636.086267pt;}
.y192{bottom:636.891200pt;}
.y146{bottom:637.551333pt;}
.y75{bottom:638.610400pt;}
.y1da{bottom:638.645200pt;}
.y1ae{bottom:641.581200pt;}
.y200{bottom:642.209467pt;}
.ye6{bottom:643.851467pt;}
.y1bd{bottom:645.813333pt;}
.y3e{bottom:650.876133pt;}
.y74{bottom:651.410533pt;}
.yaf{bottom:652.137467pt;}
.yb{bottom:652.886267pt;}
.y113{bottom:654.876133pt;}
.y191{bottom:656.224533pt;}
.ye5{bottom:656.651467pt;}
.y145{bottom:657.776933pt;}
.y114{bottom:659.982133pt;}
.y1ad{bottom:660.914533pt;}
.y226{bottom:662.065600pt;}
.y73{bottom:664.210400pt;}
.yae{bottom:668.870800pt;}
.ye4{bottom:669.451467pt;}
.y1ff{bottom:669.676133pt;}
.y3d{bottom:670.409467pt;}
.y144{bottom:670.443600pt;}
.y112{bottom:674.142800pt;}
.y190{bottom:675.557867pt;}
.y72{bottom:677.010400pt;}
.ya{bottom:677.245333pt;}
.y1ac{bottom:680.247867pt;}
.y225{bottom:681.998933pt;}
.ye3{bottom:682.251467pt;}
.y143{bottom:683.110400pt;}
.yad{bottom:685.604133pt;}
.y3c{bottom:689.942800pt;}
.y111{bottom:693.409467pt;}
.y9{bottom:694.045333pt;}
.y18f{bottom:694.891200pt;}
.ye2{bottom:695.051467pt;}
.y142{bottom:695.777067pt;}
.y71{bottom:697.369467pt;}
.y224{bottom:701.932267pt;}
.yac{bottom:702.337600pt;}
.ye1{bottom:707.851333pt;}
.y141{bottom:708.443733pt;}
.y3b{bottom:709.476133pt;}
.y70{bottom:710.169467pt;}
.y8{bottom:710.845333pt;}
.y110{bottom:712.676133pt;}
.y18e{bottom:714.224533pt;}
.yab{bottom:719.070933pt;}
.ye0{bottom:720.651467pt;}
.y223{bottom:721.865600pt;}
.y6f{bottom:722.969467pt;}
.y7{bottom:727.645467pt;}
.y140{bottom:728.669333pt;}
.y3a{bottom:729.009467pt;}
.y1fe{bottom:729.742800pt;}
.y10f{bottom:731.942800pt;}
.ydf{bottom:733.451467pt;}
.y6e{bottom:735.769467pt;}
.ya9{bottom:735.804133pt;}
.yaa{bottom:740.466267pt;}
.y13f{bottom:741.469467pt;}
.yde{bottom:746.251467pt;}
.y39{bottom:748.542800pt;}
.y6d{bottom:748.569467pt;}
.y1fd{bottom:749.209467pt;}
.y222{bottom:749.358000pt;}
.y10e{bottom:751.209467pt;}
.ya8{bottom:752.537467pt;}
.y13e{bottom:754.269333pt;}
.ydd{bottom:759.051467pt;}
.y6c{bottom:761.369467pt;}
.y13d{bottom:767.069333pt;}
.y37{bottom:768.076133pt;}
.y1fc{bottom:768.676133pt;}
.ya7{bottom:769.270800pt;}
.y221{bottom:769.291333pt;}
.y178{bottom:769.876133pt;}
.y10d{bottom:770.476133pt;}
.ydc{bottom:771.851333pt;}
.y6{bottom:772.045467pt;}
.y38{bottom:773.182267pt;}
.y6b{bottom:774.169467pt;}
.y13c{bottom:779.869333pt;}
.ya6{bottom:786.004267pt;}
.y6a{bottom:786.969467pt;}
.y36{bottom:787.609467pt;}
.y1fb{bottom:788.142800pt;}
.y177{bottom:789.209467pt;}
.y220{bottom:789.224667pt;}
.y10c{bottom:789.742800pt;}
.ydb{bottom:792.210400pt;}
.y13b{bottom:792.669333pt;}
.ya5{bottom:802.737600pt;}
.yda{bottom:805.010533pt;}
.y13a{bottom:805.469467pt;}
.y35{bottom:807.142800pt;}
.y69{bottom:807.328533pt;}
.y1fa{bottom:807.609467pt;}
.y176{bottom:808.542800pt;}
.y10b{bottom:809.009467pt;}
.y21f{bottom:809.158000pt;}
.yd9{bottom:817.810400pt;}
.y139{bottom:818.269333pt;}
.ya4{bottom:819.470800pt;}
.y68{bottom:820.128533pt;}
.y5{bottom:820.712133pt;}
.y34{bottom:826.676133pt;}
.y1f9{bottom:827.076133pt;}
.y175{bottom:827.876133pt;}
.y10a{bottom:828.276133pt;}
.yd8{bottom:830.610533pt;}
.y138{bottom:831.069333pt;}
.y67{bottom:832.928533pt;}
.y21e{bottom:836.650400pt;}
.yd7{bottom:843.410533pt;}
.y137{bottom:843.869333pt;}
.y66{bottom:845.728533pt;}
.y33{bottom:846.209467pt;}
.y1f8{bottom:846.542800pt;}
.y174{bottom:847.209467pt;}
.ya2{bottom:847.542800pt;}
.ya3{bottom:852.648800pt;}
.yd6{bottom:856.210400pt;}
.y21d{bottom:856.583733pt;}
.y136{bottom:856.669333pt;}
.y65{bottom:858.528533pt;}
.y32{bottom:865.742800pt;}
.y1f7{bottom:866.009467pt;}
.y173{bottom:866.542800pt;}
.ya1{bottom:866.809467pt;}
.yd5{bottom:869.010533pt;}
.y4{bottom:869.378800pt;}
.y135{bottom:869.469467pt;}
.y64{bottom:871.328533pt;}
.y21c{bottom:876.517067pt;}
.yd4{bottom:881.810400pt;}
.y134{bottom:882.269333pt;}
.y63{bottom:884.128533pt;}
.y31{bottom:885.276133pt;}
.y1f6{bottom:885.476133pt;}
.y172{bottom:885.876133pt;}
.ya0{bottom:886.076133pt;}
.yd3{bottom:894.610533pt;}
.y133{bottom:895.069333pt;}
.y62{bottom:896.928533pt;}
.y21b{bottom:904.009467pt;}
.y30{bottom:904.809467pt;}
.y1f5{bottom:904.942800pt;}
.y171{bottom:905.209467pt;}
.y9f{bottom:905.342800pt;}
.yd2{bottom:907.410533pt;}
.y132{bottom:907.869333pt;}
.y61{bottom:909.728533pt;}
.y3{bottom:918.045467pt;}
.yd1{bottom:920.210533pt;}
.y131{bottom:920.669333pt;}
.y60{bottom:922.528533pt;}
.y21a{bottom:923.942800pt;}
.y2f{bottom:924.342800pt;}
.y1f4{bottom:924.409467pt;}
.y170{bottom:924.542800pt;}
.y9e{bottom:924.609467pt;}
.y109{bottom:929.715467pt;}
.yd0{bottom:933.010533pt;}
.y130{bottom:933.469467pt;}
.y2e{bottom:943.876133pt;}
.ycf{bottom:945.810400pt;}
.y12f{bottom:946.269333pt;}
.y9d{bottom:1001.129067pt;}
.y2d{bottom:1001.821467pt;}
.he{height:22.062906pt;}
.hb{height:24.164135pt;}
.h7{height:36.864000pt;}
.ha{height:38.400000pt;}
.hc{height:38.485333pt;}
.hd{height:48.000000pt;}
.h6{height:49.952000pt;}
.h5{height:50.736000pt;}
.h9{height:55.568000pt;}
.h8{height:67.200000pt;}
.h3{height:72.480000pt;}
.h2{height:142.312500pt;}
.h4{height:172.800000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:37.834133pt;}
.x3{left:94.466667pt;}
.x4{left:113.364267pt;}
.x6{left:124.733333pt;}
.x8{left:141.381200pt;}
.x1c{left:152.640533pt;}
.x1d{left:160.851733pt;}
.xa{left:189.000000pt;}
.xb{left:219.266667pt;}
.x9{left:227.941867pt;}
.x1e{left:248.984267pt;}
.x1f{left:257.742133pt;}
.x18{left:261.109600pt;}
.xe{left:309.805200pt;}
.xf{left:314.870667pt;}
.x5{left:368.481333pt;}
.x16{left:373.291600pt;}
.x1a{left:419.722133pt;}
.x1b{left:428.445067pt;}
.x14{left:490.118267pt;}
.x15{left:494.692133pt;}
.x12{left:515.473600pt;}
.x13{left:520.211600pt;}
.xc{left:552.623333pt;}
.xd{left:557.093067pt;}
.x19{left:560.937067pt;}
.x20{left:603.231867pt;}
.x21{left:612.048000pt;}
.x10{left:625.542000pt;}
.x11{left:630.064400pt;}
.x2{left:632.333467pt;}
.x7{left:642.533333pt;}
.x1{left:679.002000pt;}
.x22{left:690.700667pt;}
.x23{left:699.234133pt;}
}

