
    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_73246ab853a98bb543d44f46.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_490e3b29d730c50f21f38742.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_e659671fb70f1579cdd1ea73.woff')format("woff");}.ff3{font-family:ff3;line-height:1.068000;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_601674e3b9a5882ab73873de.woff')format("woff");}.ff4{font-family:ff4;line-height:0.967000;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_73246ab853a98bb543d44f46.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_6c5a33a40cfc0319d6fa7925.woff')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_0a82356829e7c32e05aa5221.woff')format("woff");}.ff7{font-family:ff7;line-height:1.045000;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_2fe98695f0c2a74513941915.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_578b1b61a1744be06310c5c0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997559;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_669b06452da401823351beea.woff')format("woff");}.ffa{font-family:ffa;line-height:0.939000;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_e34188d5508f5e7dde7dcc16.woff')format("woff");}.ffb{font-family:ffb;line-height:0.989000;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_9a6ea0767f82a404686ae338.woff')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_5049cea605c591d82329afb7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.979004;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_03e6a0c7b08cd4dd4e5561ce.woff')format("woff");}.ffe{font-family:ffe;line-height:0.979004;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_2be8e279ba1e05f11adb9354.woff')format("woff");}.fff{font-family:fff;line-height:1.053000;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:ff10;src:url('chunks/assets/font_1b4906dcfc74695d89d34468.woff')format("woff");}.ff10{font-family:ff10;line-height:1.053000;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:ff11;src:url('chunks/assets/font_cf31a7434c996358156265e8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.971000;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:ff12;src:url('chunks/assets/font_6c5a33a40cfc0319d6fa7925.woff')format("woff");}.ff12{font-family:ff12;line-height:0.750000;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:ff13;src:url('chunks/assets/font_2be8e279ba1e05f11adb9354.woff')format("woff");}.ff13{font-family:ff13;line-height:1.053000;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:ff14;src:url('chunks/assets/font_2be8e279ba1e05f11adb9354.woff')format("woff");}.ff14{font-family:ff14;line-height:1.053000;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:ff15;src:url('chunks/assets/font_ee72965f8148b4c1dd3f16ed.woff')format("woff");}.ff15{font-family:ff15;line-height:0.718000;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:ff16;src:url('chunks/assets/font_d4a11033b006245cff0af339.woff')format("woff");}.ff16{font-family:ff16;line-height:0.882000;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:ff17;src:url('chunks/assets/font_6c5a33a40cfc0319d6fa7925.woff')format("woff");}.ff17{font-family:ff17;line-height:0.750000;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:ff18;src:url('chunks/assets/font_2be8e279ba1e05f11adb9354.woff')format("woff");}.ff18{font-family:ff18;line-height:1.053000;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:ff19;src:url('chunks/assets/font_3d40989004bc7efae489b94f.woff')format("woff");}.ff19{font-family:ff19;line-height:0.840332;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:ff1a;src:url('chunks/assets/font_9586bd13a04025237e4ba536.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.840332;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:ff1b;src:url('chunks/assets/font_b649b66b796b6b63f7967426.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.677734;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:ff1c;src:url('chunks/assets/font_62587e8db92fcc124b598244.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.840332;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;}
.m4{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m1{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.666800px;}
.v1{vertical-align:12.046800px;}
.lsf{letter-spacing:-2.340000px;}
.ls10{letter-spacing:-1.980000px;}
.ls12{letter-spacing:-1.518000px;}
.ls11{letter-spacing:-1.452000px;}
.lse{letter-spacing:-0.858000px;}
.ls17{letter-spacing:-0.726000px;}
.lsc{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.462000px;}
.ls14{letter-spacing:-0.330000px;}
.lsd{letter-spacing:-0.264000px;}
.ls7{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.330000px;}
.ls23{letter-spacing:0.342000px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.780000px;}
.ls5{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.320000px;}
.ls1f{letter-spacing:1.380000px;}
.ls15{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.800000px;}
.ls8{letter-spacing:1.932000px;}
.ls1{letter-spacing:2.070000px;}
.ls9{letter-spacing:2.706000px;}
.ls18{letter-spacing:3.000000px;}
.ls19{letter-spacing:3.046280px;}
.ls21{letter-spacing:3.060000px;}
.ls1e{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.300000px;}
.ls2{letter-spacing:4.320000px;}
.ls1d{letter-spacing:9.540000px;}
.lsa{letter-spacing:14.124000px;}
.ls1c{letter-spacing:17.820000px;}
.ls16{letter-spacing:18.642000px;}
.ls1a{letter-spacing:22.189200px;}
.ls1b{letter-spacing:33.420000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-22.104000px;}
.wsbd{word-spacing:-18.720000px;}
.ws2{word-spacing:-17.700000px;}
.ws14b{word-spacing:-15.300000px;}
.ws77{word-spacing:-15.114000px;}
.ws7b{word-spacing:-14.982000px;}
.ws14{word-spacing:-14.850000px;}
.ws7a{word-spacing:-14.784000px;}
.ws12{word-spacing:-14.652000px;}
.ws13{word-spacing:-14.454000px;}
.wsf2{word-spacing:-14.388000px;}
.ws15{word-spacing:-14.256000px;}
.ws14d{word-spacing:-13.860000px;}
.ws78{word-spacing:-13.662000px;}
.ws79{word-spacing:-13.596000px;}
.ws16{word-spacing:-13.134000px;}
.ws14e{word-spacing:-12.840000px;}
.wsee{word-spacing:-12.672000px;}
.ws14f{word-spacing:-12.402000px;}
.wsf1{word-spacing:-12.342000px;}
.ws14c{word-spacing:-12.300000px;}
.ws14a{word-spacing:-12.060000px;}
.ws11{word-spacing:-8.892000px;}
.ws0{word-spacing:-8.172000px;}
.ws7c{word-spacing:-7.260000px;}
.ws13e{word-spacing:-5.148000px;}
.wse3{word-spacing:-5.016000px;}
.ws154{word-spacing:-4.818000px;}
.ws85{word-spacing:-4.620000px;}
.ws24{word-spacing:-4.422000px;}
.ws6{word-spacing:-4.320000px;}
.ws12d{word-spacing:-4.290000px;}
.wsc1{word-spacing:-4.080000px;}
.ws153{word-spacing:-4.026000px;}
.wsba{word-spacing:-3.960000px;}
.wsa7{word-spacing:-3.762000px;}
.ws101{word-spacing:-3.696000px;}
.ws16b{word-spacing:-3.660000px;}
.ws13b{word-spacing:-3.630000px;}
.ws98{word-spacing:-3.498000px;}
.ws7{word-spacing:-3.384000px;}
.ws5e{word-spacing:-3.366000px;}
.wsc3{word-spacing:-3.360000px;}
.ws151{word-spacing:-3.300000px;}
.ws149{word-spacing:-3.046280px;}
.ws128{word-spacing:-2.838000px;}
.ws13c{word-spacing:-2.772000px;}
.wse8{word-spacing:-2.706000px;}
.ws16f{word-spacing:-2.700000px;}
.ws35{word-spacing:-2.640000px;}
.ws26{word-spacing:-2.574000px;}
.ws150{word-spacing:-2.442000px;}
.ws27{word-spacing:-2.376000px;}
.wse0{word-spacing:-2.340000px;}
.ws63{word-spacing:-2.310000px;}
.wscb{word-spacing:-2.280000px;}
.wsd2{word-spacing:-2.244000px;}
.wsff{word-spacing:-2.112000px;}
.ws5{word-spacing:-1.932000px;}
.wsc6{word-spacing:-1.914000px;}
.wsa9{word-spacing:-1.848000px;}
.ws94{word-spacing:-1.800000px;}
.ws8c{word-spacing:-1.782000px;}
.ws92{word-spacing:-1.680000px;}
.ws100{word-spacing:-1.650000px;}
.ws109{word-spacing:-1.452000px;}
.ws4c{word-spacing:-1.320000px;}
.ws13d{word-spacing:-1.188000px;}
.wsc2{word-spacing:-1.140000px;}
.wsae{word-spacing:-1.122000px;}
.ws8{word-spacing:-1.080000px;}
.wsd5{word-spacing:-1.056000px;}
.ws44{word-spacing:-0.924000px;}
.wsc{word-spacing:-0.900000px;}
.ws86{word-spacing:-0.858000px;}
.ws9c{word-spacing:-0.792000px;}
.ws28{word-spacing:-0.726000px;}
.wsb3{word-spacing:-0.660000px;}
.ws9b{word-spacing:-0.528000px;}
.ws9e{word-spacing:-0.462000px;}
.ws5a{word-spacing:-0.330000px;}
.ws132{word-spacing:-0.264000px;}
.ws12e{word-spacing:-0.198000px;}
.ws7e{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.wsfe{word-spacing:0.066000px;}
.ws145{word-spacing:0.132000px;}
.ws93{word-spacing:0.240000px;}
.ws102{word-spacing:0.330000px;}
.ws9f{word-spacing:0.396000px;}
.ws8e{word-spacing:0.462000px;}
.ws29{word-spacing:0.528000px;}
.ws36{word-spacing:0.660000px;}
.ws11b{word-spacing:0.726000px;}
.ws3b{word-spacing:0.792000px;}
.ws10c{word-spacing:0.900000px;}
.ws5d{word-spacing:0.990000px;}
.ws3c{word-spacing:1.056000px;}
.ws64{word-spacing:1.122000px;}
.ws127{word-spacing:1.254000px;}
.ws161{word-spacing:1.380000px;}
.ws147{word-spacing:1.386000px;}
.ws2f{word-spacing:1.452000px;}
.ws159{word-spacing:1.500000px;}
.wsa{word-spacing:1.512000px;}
.ws45{word-spacing:1.518000px;}
.ws140{word-spacing:1.584000px;}
.wsb9{word-spacing:1.650000px;}
.ws40{word-spacing:1.716000px;}
.ws59{word-spacing:1.782000px;}
.ws1d{word-spacing:1.848000px;}
.ws1e{word-spacing:1.914000px;}
.wsd1{word-spacing:2.112000px;}
.ws146{word-spacing:2.178000px;}
.ws114{word-spacing:2.244000px;}
.ws4e{word-spacing:2.340000px;}
.wsa2{word-spacing:2.508000px;}
.wsc7{word-spacing:2.574000px;}
.ws9a{word-spacing:2.640000px;}
.ws9{word-spacing:2.664000px;}
.ws34{word-spacing:2.706000px;}
.ws1f{word-spacing:2.838000px;}
.ws90{word-spacing:2.880000px;}
.wsd4{word-spacing:2.904000px;}
.ws33{word-spacing:2.970000px;}
.ws42{word-spacing:3.036000px;}
.ws10a{word-spacing:3.060000px;}
.ws12f{word-spacing:3.168000px;}
.ws130{word-spacing:3.234000px;}
.ws43{word-spacing:3.300000px;}
.ws4d{word-spacing:3.366000px;}
.ws67{word-spacing:3.432000px;}
.ws8d{word-spacing:3.498000px;}
.wsad{word-spacing:3.564000px;}
.ws2b{word-spacing:3.696000px;}
.ws160{word-spacing:3.720000px;}
.ws32{word-spacing:3.828000px;}
.ws2d{word-spacing:4.026000px;}
.wsd8{word-spacing:4.158000px;}
.ws13a{word-spacing:4.224000px;}
.ws99{word-spacing:4.290000px;}
.ws61{word-spacing:4.422000px;}
.wsd9{word-spacing:4.488000px;}
.ws91{word-spacing:4.500000px;}
.wsb2{word-spacing:4.620000px;}
.ws10d{word-spacing:4.740000px;}
.ws4a{word-spacing:4.818000px;}
.ws83{word-spacing:4.884000px;}
.wsc8{word-spacing:5.082000px;}
.wsf8{word-spacing:5.148000px;}
.ws123{word-spacing:5.214000px;}
.ws138{word-spacing:5.280000px;}
.ws3a{word-spacing:5.346000px;}
.wsb{word-spacing:5.400000px;}
.ws97{word-spacing:5.412000px;}
.ws66{word-spacing:5.478000px;}
.wsea{word-spacing:5.544000px;}
.ws55{word-spacing:5.742000px;}
.ws113{word-spacing:5.808000px;}
.wsce{word-spacing:5.820000px;}
.ws112{word-spacing:5.874000px;}
.ws133{word-spacing:5.940000px;}
.ws3e{word-spacing:6.006000px;}
.ws3d{word-spacing:6.072000px;}
.ws22{word-spacing:6.138000px;}
.ws54{word-spacing:6.204000px;}
.wsb6{word-spacing:6.270000px;}
.ws84{word-spacing:6.336000px;}
.ws117{word-spacing:6.402000px;}
.ws139{word-spacing:6.468000px;}
.wsb8{word-spacing:6.534000px;}
.ws17{word-spacing:6.600000px;}
.ws3f{word-spacing:6.798000px;}
.ws16c{word-spacing:6.840000px;}
.ws107{word-spacing:6.930000px;}
.ws1b{word-spacing:6.996000px;}
.ws4f{word-spacing:7.062000px;}
.ws8f{word-spacing:7.128000px;}
.ws162{word-spacing:7.140000px;}
.ws116{word-spacing:7.194000px;}
.ws5f{word-spacing:7.392000px;}
.ws163{word-spacing:7.440000px;}
.ws58{word-spacing:7.524000px;}
.wsec{word-spacing:7.590000px;}
.wsab{word-spacing:7.656000px;}
.ws11c{word-spacing:7.722000px;}
.ws164{word-spacing:7.740000px;}
.ws2a{word-spacing:7.788000px;}
.wsf{word-spacing:7.848000px;}
.wsda{word-spacing:7.854000px;}
.wsf5{word-spacing:7.920000px;}
.ws47{word-spacing:7.986000px;}
.ws8b{word-spacing:8.052000px;}
.wsa1{word-spacing:8.118000px;}
.wscf{word-spacing:8.184000px;}
.ws15c{word-spacing:8.400000px;}
.ws16a{word-spacing:8.460000px;}
.ws2e{word-spacing:8.514000px;}
.ws5c{word-spacing:8.580000px;}
.ws5b{word-spacing:8.646000px;}
.ws110{word-spacing:8.760000px;}
.ws46{word-spacing:8.910000px;}
.wse2{word-spacing:8.976000px;}
.ws60{word-spacing:9.042000px;}
.ws15d{word-spacing:9.060000px;}
.ws10f{word-spacing:9.120000px;}
.wsa8{word-spacing:9.174000px;}
.ws25{word-spacing:9.306000px;}
.ws10{word-spacing:9.360000px;}
.wsf9{word-spacing:9.372000px;}
.wsaa{word-spacing:9.504000px;}
.ws15b{word-spacing:9.540000px;}
.ws8a{word-spacing:9.570000px;}
.ws48{word-spacing:9.636000px;}
.ws57{word-spacing:9.702000px;}
.wseb{word-spacing:9.900000px;}
.ws1c{word-spacing:9.966000px;}
.ws31{word-spacing:10.032000px;}
.ws23{word-spacing:10.098000px;}
.ws89{word-spacing:10.164000px;}
.ws10b{word-spacing:10.200000px;}
.wsc9{word-spacing:10.230000px;}
.wsaf{word-spacing:10.296000px;}
.wsc0{word-spacing:10.320000px;}
.wsf6{word-spacing:10.362000px;}
.ws12c{word-spacing:10.428000px;}
.wsca{word-spacing:10.500000px;}
.ws2c{word-spacing:10.626000px;}
.ws131{word-spacing:10.692000px;}
.wse9{word-spacing:10.758000px;}
.ws4b{word-spacing:10.824000px;}
.wsd{word-spacing:10.872000px;}
.wsd3{word-spacing:11.088000px;}
.wsed{word-spacing:11.220000px;}
.wsb7{word-spacing:11.352000px;}
.wsf3{word-spacing:11.418000px;}
.wse1{word-spacing:11.814000px;}
.ws9d{word-spacing:11.880000px;}
.wsa4{word-spacing:11.946000px;}
.ws12a{word-spacing:12.078000px;}
.wsb0{word-spacing:12.144000px;}
.wsf7{word-spacing:12.210000px;}
.ws52{word-spacing:12.342000px;}
.ws95{word-spacing:12.408000px;}
.ws30{word-spacing:12.474000px;}
.ws96{word-spacing:12.540000px;}
.ws142{word-spacing:12.738000px;}
.ws143{word-spacing:12.870000px;}
.ws124{word-spacing:12.936000px;}
.ws80{word-spacing:13.020000px;}
.wsd0{word-spacing:13.200000px;}
.wscc{word-spacing:13.260000px;}
.ws103{word-spacing:13.266000px;}
.ws41{word-spacing:13.332000px;}
.ws62{word-spacing:13.398000px;}
.wsfc{word-spacing:13.464000px;}
.ws15e{word-spacing:13.500000px;}
.ws12b{word-spacing:13.530000px;}
.wsfb{word-spacing:13.596000px;}
.ws18{word-spacing:13.662000px;}
.ws10e{word-spacing:13.740000px;}
.ws19{word-spacing:13.794000px;}
.wsb1{word-spacing:13.992000px;}
.ws144{word-spacing:14.058000px;}
.ws50{word-spacing:14.124000px;}
.ws51{word-spacing:14.256000px;}
.wse7{word-spacing:14.322000px;}
.wsbf{word-spacing:14.340000px;}
.ws118{word-spacing:14.388000px;}
.ws7f{word-spacing:14.400000px;}
.wse6{word-spacing:14.454000px;}
.ws165{word-spacing:14.460000px;}
.ws16d{word-spacing:14.580000px;}
.ws11f{word-spacing:14.586000px;}
.ws74{word-spacing:14.652000px;}
.wsf4{word-spacing:14.718000px;}
.ws73{word-spacing:14.784000px;}
.wsa0{word-spacing:14.850000px;}
.ws135{word-spacing:15.048000px;}
.wsfd{word-spacing:15.246000px;}
.ws108{word-spacing:15.312000px;}
.ws37{word-spacing:15.444000px;}
.ws38{word-spacing:15.576000px;}
.ws11d{word-spacing:15.708000px;}
.wsb5{word-spacing:15.774000px;}
.ws137{word-spacing:15.906000px;}
.wsd7{word-spacing:15.972000px;}
.ws134{word-spacing:16.038000px;}
.ws16e{word-spacing:16.440000px;}
.wsf0{word-spacing:16.560000px;}
.wsdb{word-spacing:16.566000px;}
.ws141{word-spacing:16.698000px;}
.wsc5{word-spacing:16.764000px;}
.ws115{word-spacing:16.830000px;}
.ws111{word-spacing:16.896000px;}
.ws168{word-spacing:17.100000px;}
.ws158{word-spacing:17.358000px;}
.ws65{word-spacing:17.556000px;}
.ws20{word-spacing:17.820000px;}
.ws148{word-spacing:18.282000px;}
.ws125{word-spacing:18.348000px;}
.ws56{word-spacing:18.414000px;}
.wsfa{word-spacing:18.546000px;}
.ws6f{word-spacing:18.744000px;}
.ws39{word-spacing:18.810000px;}
.ws122{word-spacing:19.008000px;}
.ws49{word-spacing:19.074000px;}
.ws157{word-spacing:19.140000px;}
.ws82{word-spacing:19.200000px;}
.wsdf{word-spacing:19.206000px;}
.ws11e{word-spacing:19.338000px;}
.wsb4{word-spacing:19.932000px;}
.wscd{word-spacing:20.100000px;}
.ws120{word-spacing:20.196000px;}
.ws70{word-spacing:20.328000px;}
.wsdd{word-spacing:20.460000px;}
.wsbe{word-spacing:20.580000px;}
.wsa5{word-spacing:20.724000px;}
.ws121{word-spacing:20.856000px;}
.ws105{word-spacing:20.922000px;}
.ws119{word-spacing:20.982000px;}
.ws7d{word-spacing:21.180000px;}
.ws6a{word-spacing:21.252000px;}
.wsc4{word-spacing:21.318000px;}
.wsbb{word-spacing:21.582000px;}
.wsa3{word-spacing:21.714000px;}
.ws155{word-spacing:21.912000px;}
.ws126{word-spacing:22.044000px;}
.ws104{word-spacing:22.176000px;}
.ws88{word-spacing:22.242000px;}
.ws68{word-spacing:22.506000px;}
.wsa6{word-spacing:22.638000px;}
.ws21{word-spacing:23.364000px;}
.ws1a{word-spacing:23.826000px;}
.ws69{word-spacing:23.892000px;}
.ws136{word-spacing:24.090000px;}
.wsd6{word-spacing:24.552000px;}
.ws169{word-spacing:24.600000px;}
.wse{word-spacing:24.840000px;}
.ws81{word-spacing:26.280000px;}
.ws152{word-spacing:26.862000px;}
.wsdc{word-spacing:26.928000px;}
.ws71{word-spacing:27.786000px;}
.ws72{word-spacing:27.984000px;}
.ws156{word-spacing:28.248000px;}
.ws11a{word-spacing:28.842000px;}
.ws6c{word-spacing:28.974000px;}
.ws129{word-spacing:31.152000px;}
.ws167{word-spacing:32.580000px;}
.ws15a{word-spacing:33.420000px;}
.wsac{word-spacing:34.122000px;}
.wsde{word-spacing:34.320000px;}
.ws87{word-spacing:34.788000px;}
.ws15f{word-spacing:35.820000px;}
.ws53{word-spacing:36.234000px;}
.wse4{word-spacing:36.696000px;}
.wse5{word-spacing:37.026000px;}
.wsef{word-spacing:38.016000px;}
.ws75{word-spacing:39.204000px;}
.ws106{word-spacing:39.402000px;}
.ws6e{word-spacing:40.458000px;}
.ws13f{word-spacing:40.854000px;}
.ws6d{word-spacing:41.052000px;}
.ws166{word-spacing:45.240000px;}
.ws6b{word-spacing:61.314000px;}
.ws76{word-spacing:409.624200px;}
.ws1{word-spacing:409.627800px;}
.wsbc{word-spacing:453.600000px;}
._18{margin-left:-10.887000px;}
._a{margin-left:-7.704000px;}
._16{margin-left:-6.547200px;}
._3{margin-left:-4.944600px;}
._2{margin-left:-3.933000px;}
._1{margin-left:-2.606400px;}
._0{margin-left:-1.551600px;}
._5{width:1.544400px;}
._8{width:2.599200px;}
._7{width:4.867200px;}
._b{width:6.184800px;}
._d{width:7.228800px;}
._f{width:8.308800px;}
._4{width:9.612000px;}
._c{width:10.641600px;}
._11{width:12.103200px;}
._9{width:13.269600px;}
._e{width:15.192000px;}
._10{width:16.272000px;}
._6{width:17.863200px;}
._13{width:19.274400px;}
._19{width:21.168000px;}
._15{width:23.562000px;}
._12{width:26.308800px;}
._14{width:29.232000px;}
._17{width:34.122000px;}
.fc2{color:rgb(229,25,55);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:67.500000px;}
.fs7{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs3{font-size:90.000000px;}
.fs6{font-size:144.000000px;}
.fsd{font-size:150.000000px;}
.fse{font-size:152.314018px;}
.fs5{font-size:193.200000px;}
.fs4{font-size:207.000000px;}
.fsc{font-size:1200.000000px;}
.fsa{font-size:1500.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:33.624600px;}
.y2a{bottom:33.680700px;}
.y2b{bottom:35.597400px;}
.y28{bottom:36.842400px;}
.y1{bottom:37.771800px;}
.y2{bottom:44.424600px;}
.y29{bottom:44.480700px;}
.y132{bottom:106.638000px;}
.y1e1{bottom:109.149750px;}
.y1c2{bottom:110.499600px;}
.y7e{bottom:112.513050px;}
.y4f{bottom:112.552500px;}
.ye6{bottom:114.679500px;}
.y193{bottom:116.996700px;}
.y121{bottom:121.862100px;}
.y165{bottom:122.260500px;}
.y131{bottom:127.642500px;}
.y1e0{bottom:130.154250px;}
.y1c1{bottom:131.504100px;}
.y7d{bottom:133.517550px;}
.y4e{bottom:133.557000px;}
.ye5{bottom:135.684000px;}
.y192{bottom:138.001200px;}
.y164{bottom:141.760500px;}
.y120{bottom:142.866600px;}
.y130{bottom:148.647000px;}
.y1df{bottom:151.158750px;}
.y1c0{bottom:152.508600px;}
.yb7{bottom:152.786400px;}
.y7c{bottom:154.522050px;}
.y4d{bottom:154.561500px;}
.ye4{bottom:156.688500px;}
.y191{bottom:159.005700px;}
.y163{bottom:161.260500px;}
.y11f{bottom:163.871100px;}
.y12f{bottom:169.651500px;}
.y1de{bottom:172.163250px;}
.yb6{bottom:173.790900px;}
.y7b{bottom:175.526550px;}
.y4c{bottom:175.566000px;}
.ye3{bottom:177.693000px;}
.y190{bottom:180.010200px;}
.y162{bottom:180.760500px;}
.y11e{bottom:184.875600px;}
.y12e{bottom:190.656000px;}
.y1dd{bottom:193.167750px;}
.yb5{bottom:194.795400px;}
.y7a{bottom:196.531050px;}
.y4b{bottom:196.570500px;}
.ye2{bottom:198.697500px;}
.y1bf{bottom:199.020450px;}
.y161{bottom:200.260500px;}
.y18f{bottom:201.014700px;}
.y11d{bottom:205.880100px;}
.y25{bottom:210.933000px;}
.y12d{bottom:211.660500px;}
.y27{bottom:212.687100px;}
.y1dc{bottom:214.172250px;}
.yb4{bottom:215.799900px;}
.y79{bottom:217.535550px;}
.y4a{bottom:217.575000px;}
.ye1{bottom:219.702000px;}
.y18e{bottom:222.019200px;}
.y11c{bottom:226.884600px;}
.y24{bottom:231.939000px;}
.y12c{bottom:232.665000px;}
.y26{bottom:233.687100px;}
.y1db{bottom:235.176750px;}
.yb3{bottom:236.804400px;}
.y78{bottom:238.540050px;}
.y49{bottom:238.579500px;}
.ye0{bottom:240.706500px;}
.y160{bottom:240.843750px;}
.y1be{bottom:241.074750px;}
.y18d{bottom:243.023700px;}
.y11b{bottom:247.889100px;}
.y12b{bottom:253.669500px;}
.y1da{bottom:256.181250px;}
.yb2{bottom:257.808900px;}
.y77{bottom:259.544550px;}
.y48{bottom:259.584000px;}
.ydf{bottom:261.711000px;}
.y15f{bottom:261.848250px;}
.y1bd{bottom:262.079250px;}
.y18c{bottom:264.028200px;}
.y11a{bottom:268.893600px;}
.y23{bottom:273.831000px;}
.y12a{bottom:274.674000px;}
.y1d9{bottom:277.185750px;}
.yb1{bottom:278.813400px;}
.y76{bottom:280.549050px;}
.y47{bottom:280.588500px;}
.yde{bottom:282.715500px;}
.y15e{bottom:282.852750px;}
.y1bc{bottom:283.083750px;}
.y18b{bottom:285.032700px;}
.y119{bottom:289.898100px;}
.y22{bottom:294.837000px;}
.y129{bottom:295.678500px;}
.y1d8{bottom:298.190250px;}
.yb0{bottom:299.817900px;}
.y75{bottom:301.553550px;}
.y46{bottom:301.593000px;}
.ydd{bottom:303.720000px;}
.y15d{bottom:303.857250px;}
.y1bb{bottom:304.088250px;}
.y18a{bottom:306.037200px;}
.y21{bottom:315.843000px;}
.y128{bottom:316.683000px;}
.y1d7{bottom:319.194750px;}
.yaf{bottom:320.822400px;}
.y74{bottom:322.558050px;}
.y45{bottom:322.597500px;}
.ydc{bottom:324.724500px;}
.y15c{bottom:324.861750px;}
.y1ba{bottom:325.092750px;}
.y189{bottom:327.041700px;}
.y118{bottom:332.156550px;}
.y20{bottom:336.849000px;}
.y127{bottom:337.687500px;}
.y1d6{bottom:340.199250px;}
.yae{bottom:341.826900px;}
.y73{bottom:343.562550px;}
.y44{bottom:343.602000px;}
.ydb{bottom:345.729000px;}
.y15b{bottom:345.866250px;}
.y1b9{bottom:346.097250px;}
.y188{bottom:348.046200px;}
.y117{bottom:353.158050px;}
.y1f{bottom:357.855000px;}
.y126{bottom:358.692000px;}
.y1d5{bottom:361.203750px;}
.yad{bottom:362.831400px;}
.y72{bottom:364.567050px;}
.y43{bottom:364.606500px;}
.yda{bottom:366.733500px;}
.y15a{bottom:366.870750px;}
.y1b8{bottom:367.101750px;}
.y187{bottom:369.050700px;}
.y1e{bottom:378.861000px;}
.y125{bottom:379.696500px;}
.y1d4{bottom:382.208250px;}
.y71{bottom:385.571550px;}
.y42{bottom:385.611000px;}
.yd9{bottom:387.738000px;}
.y159{bottom:387.875250px;}
.y1b7{bottom:388.106250px;}
.y186{bottom:390.055200px;}
.y116{bottom:395.291850px;}
.y1d{bottom:399.867000px;}
.y124{bottom:400.701000px;}
.y1d3{bottom:403.212750px;}
.yac{bottom:405.091200px;}
.y70{bottom:406.576050px;}
.y41{bottom:406.615500px;}
.yd8{bottom:408.742500px;}
.y158{bottom:408.879750px;}
.y1b6{bottom:409.110750px;}
.y185{bottom:411.059700px;}
.y115{bottom:416.296350px;}
.y1c{bottom:420.873000px;}
.y123{bottom:421.705500px;}
.y1d2{bottom:424.217250px;}
.yab{bottom:426.091200px;}
.y6f{bottom:427.580550px;}
.y40{bottom:427.620000px;}
.yd7{bottom:429.747000px;}
.y157{bottom:429.884250px;}
.y1b5{bottom:430.115250px;}
.y184{bottom:432.064200px;}
.y114{bottom:437.300850px;}
.y1b{bottom:441.879000px;}
.y1d1{bottom:445.221750px;}
.yaa{bottom:445.591200px;}
.y6e{bottom:448.585050px;}
.y3f{bottom:448.624500px;}
.yd6{bottom:450.751500px;}
.y156{bottom:450.888750px;}
.y1b4{bottom:451.119750px;}
.y183{bottom:453.068700px;}
.y113{bottom:458.305350px;}
.y1a{bottom:462.885000px;}
.ya9{bottom:465.091200px;}
.y1d0{bottom:466.226250px;}
.y6d{bottom:469.589550px;}
.y3e{bottom:469.629000px;}
.yd5{bottom:471.756000px;}
.y155{bottom:471.893250px;}
.y1b3{bottom:472.124250px;}
.y182{bottom:474.073200px;}
.y112{bottom:479.309850px;}
.y19{bottom:483.891000px;}
.ya8{bottom:484.591200px;}
.y1cf{bottom:487.230750px;}
.y6c{bottom:490.594050px;}
.y3d{bottom:490.633500px;}
.yd4{bottom:492.760500px;}
.y154{bottom:492.897750px;}
.y1b2{bottom:493.128750px;}
.y181{bottom:495.077700px;}
.y111{bottom:500.314350px;}
.ya7{bottom:504.091200px;}
.y18{bottom:504.897000px;}
.y21d{bottom:508.055100px;}
.y1ce{bottom:508.235250px;}
.y6b{bottom:511.598550px;}
.y3c{bottom:511.638000px;}
.y20c{bottom:512.555100px;}
.y153{bottom:513.902250px;}
.y1b1{bottom:514.133250px;}
.y180{bottom:516.082200px;}
.y122{bottom:517.493550px;}
.y110{bottom:521.318850px;}
.y21c{bottom:521.555100px;}
.y136{bottom:522.247500px;}
.y17{bottom:525.903000px;}
.y20b{bottom:526.055100px;}
.y1cd{bottom:529.239750px;}
.y6a{bottom:532.603050px;}
.y3b{bottom:532.642500px;}
.y152{bottom:534.906750px;}
.yd3{bottom:535.020300px;}
.y21b{bottom:535.055100px;}
.y1b0{bottom:535.137750px;}
.y17f{bottom:537.086700px;}
.y20a{bottom:539.555100px;}
.y10f{bottom:542.323350px;}
.ya6{bottom:544.550700px;}
.y16{bottom:546.909000px;}
.y21a{bottom:548.555100px;}
.y1cc{bottom:550.244250px;}
.y209{bottom:553.055100px;}
.y69{bottom:553.607550px;}
.y3a{bottom:553.647000px;}
.y151{bottom:555.911250px;}
.y1af{bottom:556.142250px;}
.y17e{bottom:558.091200px;}
.y10e{bottom:563.327850px;}
.y135{bottom:565.447500px;}
.ya5{bottom:565.555200px;}
.y15{bottom:567.915000px;}
.y1cb{bottom:571.248750px;}
.y219{bottom:574.055100px;}
.y68{bottom:574.612050px;}
.y39{bottom:574.651500px;}
.yd2{bottom:577.116900px;}
.y1ae{bottom:577.146750px;}
.y208{bottom:578.555100px;}
.y10d{bottom:584.332350px;}
.ya4{bottom:586.559700px;}
.y218{bottom:587.555100px;}
.y14{bottom:588.921000px;}
.y1ca{bottom:592.253250px;}
.y67{bottom:595.616550px;}
.y38{bottom:595.656000px;}
.yd1{bottom:598.121400px;}
.y1ad{bottom:598.151250px;}
.y150{bottom:598.167750px;}
.y17d{bottom:600.349500px;}
.y217{bottom:601.055100px;}
.y207{bottom:604.055100px;}
.y10c{bottom:605.336850px;}
.ya3{bottom:607.564200px;}
.y134{bottom:608.647500px;}
.y13{bottom:609.927000px;}
.y1c9{bottom:613.257750px;}
.y216{bottom:614.555100px;}
.y66{bottom:616.621050px;}
.y37{bottom:616.660500px;}
.yd0{bottom:619.125900px;}
.y1ac{bottom:619.155750px;}
.y14f{bottom:619.172250px;}
.y17c{bottom:621.351000px;}
.y10b{bottom:626.341350px;}
.y215{bottom:628.055100px;}
.ya2{bottom:628.568700px;}
.y206{bottom:629.555100px;}
.y12{bottom:630.933000px;}
.y1c8{bottom:634.262250px;}
.y65{bottom:637.625550px;}
.y36{bottom:637.665000px;}
.ycf{bottom:640.130400px;}
.y1ab{bottom:640.160250px;}
.y14e{bottom:640.176750px;}
.y214{bottom:641.555100px;}
.y205{bottom:643.055100px;}
.y10a{bottom:647.345850px;}
.ya1{bottom:649.573200px;}
.y133{bottom:651.847500px;}
.y11{bottom:651.939000px;}
.y21f{bottom:655.055100px;}
.y1c7{bottom:655.266750px;}
.y64{bottom:658.630050px;}
.y35{bottom:658.669500px;}
.yce{bottom:661.134900px;}
.y1aa{bottom:661.164750px;}
.y14d{bottom:661.181250px;}
.y17b{bottom:663.529950px;}
.y213{bottom:667.055100px;}
.y109{bottom:668.350350px;}
.y204{bottom:668.555100px;}
.ya0{bottom:670.577700px;}
.y10{bottom:672.939000px;}
.y1c6{bottom:676.271250px;}
.y63{bottom:679.634550px;}
.y34{bottom:679.674000px;}
.y212{bottom:680.555100px;}
.y203{bottom:682.055100px;}
.ycd{bottom:682.139400px;}
.y1a9{bottom:682.169250px;}
.y14c{bottom:682.185750px;}
.y17a{bottom:684.534450px;}
.y108{bottom:689.354850px;}
.y9f{bottom:691.582200px;}
.y211{bottom:694.055100px;}
.y1c5{bottom:697.275750px;}
.y33{bottom:700.678500px;}
.ycc{bottom:703.143900px;}
.y1a8{bottom:703.173750px;}
.y14b{bottom:703.190250px;}
.y179{bottom:705.538950px;}
.y202{bottom:707.555100px;}
.y107{bottom:710.359350px;}
.y9e{bottom:712.586700px;}
.y1c4{bottom:718.280250px;}
.y210{bottom:719.555100px;}
.y201{bottom:721.055100px;}
.y32{bottom:721.683000px;}
.y62{bottom:721.894350px;}
.ycb{bottom:724.148400px;}
.y1a7{bottom:724.178250px;}
.y14a{bottom:724.194750px;}
.y178{bottom:726.543450px;}
.y106{bottom:731.363850px;}
.y20f{bottom:733.055100px;}
.y9d{bottom:733.591200px;}
.y31{bottom:742.687500px;}
.yf{bottom:743.353350px;}
.yca{bottom:745.152900px;}
.y1a6{bottom:745.182750px;}
.y149{bottom:745.199250px;}
.y200{bottom:746.555100px;}
.y177{bottom:747.547950px;}
.y105{bottom:752.368350px;}
.yf8{bottom:753.872850px;}
.y20e{bottom:758.555100px;}
.ye{bottom:759.853350px;}
.y1ff{bottom:760.055100px;}
.y30{bottom:763.692000px;}
.y61{bottom:763.923000px;}
.yc9{bottom:766.157400px;}
.y1a5{bottom:766.187250px;}
.y148{bottom:766.203750px;}
.y176{bottom:768.552450px;}
.y20d{bottom:772.055100px;}
.y104{bottom:773.372850px;}
.y21e{bottom:773.555100px;}
.yf7{bottom:774.877350px;}
.y9c{bottom:775.849650px;}
.yd{bottom:776.353350px;}
.y2f{bottom:784.696500px;}
.y60{bottom:784.927500px;}
.y1fe{bottom:785.555100px;}
.yc8{bottom:787.161900px;}
.y1a4{bottom:787.191750px;}
.y147{bottom:787.208250px;}
.y175{bottom:789.556950px;}
.y103{bottom:794.377350px;}
.yf6{bottom:795.881850px;}
.y9b{bottom:796.851150px;}
.y1fd{bottom:799.055100px;}
.y1c3{bottom:805.564500px;}
.y2e{bottom:805.701000px;}
.y5f{bottom:805.932000px;}
.yc7{bottom:808.166400px;}
.y1a3{bottom:808.196250px;}
.y146{bottom:808.212750px;}
.y174{bottom:810.561450px;}
.y102{bottom:815.381850px;}
.yf5{bottom:816.886350px;}
.y1fc{bottom:825.345900px;}
.y2d{bottom:826.705500px;}
.y5e{bottom:826.936500px;}
.yc6{bottom:829.170900px;}
.y1a2{bottom:829.200750px;}
.y145{bottom:829.217250px;}
.y1e4{bottom:829.759800px;}
.y173{bottom:831.565950px;}
.y101{bottom:836.386350px;}
.yf4{bottom:837.890850px;}
.y9a{bottom:839.088450px;}
.y8c{bottom:846.961050px;}
.y5d{bottom:847.941000px;}
.yc5{bottom:850.175400px;}
.y1a1{bottom:850.205250px;}
.y144{bottom:850.221750px;}
.y172{bottom:852.570450px;}
.yc{bottom:853.488300px;}
.y100{bottom:857.390850px;}
.yf3{bottom:858.895350px;}
.y2c{bottom:859.515600px;}
.y99{bottom:860.092950px;}
.y8b{bottom:867.965550px;}
.y5c{bottom:868.945500px;}
.yb{bottom:869.688300px;}
.yc4{bottom:871.179900px;}
.y1a0{bottom:871.209750px;}
.y143{bottom:871.226250px;}
.y171{bottom:873.574950px;}
.y1e3{bottom:874.759800px;}
.yff{bottom:878.395350px;}
.yf2{bottom:879.899850px;}
.y98{bottom:881.097450px;}
.ya{bottom:885.888300px;}
.y8a{bottom:888.970050px;}
.y5b{bottom:889.950000px;}
.yc3{bottom:892.184400px;}
.y19f{bottom:892.214250px;}
.y142{bottom:892.230750px;}
.y1f0{bottom:893.718900px;}
.y170{bottom:894.579450px;}
.yfe{bottom:899.399850px;}
.y9{bottom:900.673350px;}
.yf1{bottom:900.904350px;}
.y97{bottom:902.101950px;}
.y89{bottom:909.974550px;}
.y5a{bottom:910.954500px;}
.yc2{bottom:913.188900px;}
.y19e{bottom:913.218750px;}
.y141{bottom:913.235250px;}
.y1fb{bottom:914.673900px;}
.y1ef{bottom:914.723400px;}
.y16f{bottom:915.583950px;}
.y1e2{bottom:919.759800px;}
.yfd{bottom:920.404350px;}
.yf0{bottom:921.908850px;}
.y96{bottom:923.106450px;}
.y88{bottom:930.979050px;}
.y59{bottom:931.959000px;}
.yc1{bottom:934.193400px;}
.y19d{bottom:934.223250px;}
.y140{bottom:934.239750px;}
.y1fa{bottom:935.678400px;}
.y1ee{bottom:935.727900px;}
.y16e{bottom:936.588450px;}
.yfc{bottom:941.408850px;}
.yef{bottom:942.913350px;}
.y95{bottom:944.110950px;}
.y87{bottom:951.983550px;}
.y58{bottom:952.963500px;}
.yc0{bottom:955.197900px;}
.y19c{bottom:955.227750px;}
.y13f{bottom:955.244250px;}
.y1f9{bottom:956.682900px;}
.y1ed{bottom:956.732400px;}
.y16d{bottom:957.592950px;}
.yfb{bottom:962.413350px;}
.yee{bottom:963.917850px;}
.y8{bottom:968.153700px;}
.y86{bottom:972.988050px;}
.y57{bottom:973.968000px;}
.ybf{bottom:976.202400px;}
.y19b{bottom:976.232250px;}
.y13e{bottom:976.248750px;}
.y1f8{bottom:977.687400px;}
.y1ec{bottom:977.736900px;}
.y16c{bottom:978.597450px;}
.yfa{bottom:983.417850px;}
.y94{bottom:986.370750px;}
.y85{bottom:993.992550px;}
.y56{bottom:994.972500px;}
.ybe{bottom:997.206900px;}
.y19a{bottom:997.236750px;}
.y13d{bottom:997.253250px;}
.y1f7{bottom:998.691900px;}
.y1eb{bottom:998.741400px;}
.y16b{bottom:999.601950px;}
.y7{bottom:1004.153700px;}
.yed{bottom:1006.177800px;}
.y93{bottom:1007.370750px;}
.y84{bottom:1014.997050px;}
.y55{bottom:1015.977000px;}
.ybd{bottom:1018.211400px;}
.y199{bottom:1018.241250px;}
.y13c{bottom:1018.257750px;}
.y1f6{bottom:1019.696400px;}
.y1ea{bottom:1019.745900px;}
.y16a{bottom:1020.606450px;}
.yf9{bottom:1025.677800px;}
.y92{bottom:1026.870750px;}
.yec{bottom:1027.177800px;}
.y83{bottom:1036.001550px;}
.y54{bottom:1036.981500px;}
.ybc{bottom:1039.215900px;}
.y198{bottom:1039.245750px;}
.y13b{bottom:1039.262250px;}
.y1f5{bottom:1040.700900px;}
.y1e9{bottom:1040.750400px;}
.y169{bottom:1041.610950px;}
.y91{bottom:1046.370750px;}
.yeb{bottom:1046.677800px;}
.y82{bottom:1057.006050px;}
.y53{bottom:1057.986000px;}
.ybb{bottom:1060.220400px;}
.y197{bottom:1060.250250px;}
.y13a{bottom:1060.266750px;}
.y6{bottom:1061.437500px;}
.y1f4{bottom:1061.705400px;}
.y1e8{bottom:1061.754900px;}
.y90{bottom:1065.870750px;}
.yea{bottom:1066.177800px;}
.y81{bottom:1078.010550px;}
.y52{bottom:1078.990500px;}
.yba{bottom:1081.224900px;}
.y196{bottom:1081.254750px;}
.y139{bottom:1081.271250px;}
.y1f3{bottom:1082.709900px;}
.y1e7{bottom:1082.759400px;}
.y168{bottom:1083.865500px;}
.y8f{bottom:1085.370750px;}
.ye9{bottom:1085.677800px;}
.y80{bottom:1099.015050px;}
.y51{bottom:1099.995000px;}
.yb9{bottom:1102.229400px;}
.y195{bottom:1102.259250px;}
.y138{bottom:1102.275750px;}
.y1f2{bottom:1103.714400px;}
.y1e6{bottom:1103.763900px;}
.y167{bottom:1104.865500px;}
.y8e{bottom:1104.870750px;}
.ye8{bottom:1105.177800px;}
.y5{bottom:1116.913500px;}
.y7f{bottom:1120.019550px;}
.y50{bottom:1120.999500px;}
.yb8{bottom:1123.233900px;}
.y194{bottom:1123.263750px;}
.y137{bottom:1123.280250px;}
.y166{bottom:1124.365500px;}
.y8d{bottom:1124.370750px;}
.ye7{bottom:1124.677800px;}
.y1f1{bottom:1124.718900px;}
.y1e5{bottom:1124.768400px;}
.y4{bottom:1194.936000px;}
.h3{height:29.196000px;}
.h1d{height:39.990234px;}
.hb{height:42.108398px;}
.he{height:45.000000px;}
.h16{height:46.398000px;}
.h19{height:47.058000px;}
.hd{height:47.820000px;}
.h1c{height:47.988281px;}
.h15{height:48.660000px;}
.hc{height:49.566000px;}
.h10{height:50.280000px;}
.h2{height:51.772500px;}
.h12{height:53.526000px;}
.ha{height:54.000000px;}
.hf{height:56.565000px;}
.h14{height:57.946800px;}
.h4{height:58.066800px;}
.h13{height:65.364000px;}
.h5{height:67.500000px;}
.h18{height:108.000000px;}
.h8{height:110.448000px;}
.h1a{height:112.500000px;}
.h1b{height:114.235514px;}
.h9{height:119.520000px;}
.h6{height:158.769000px;}
.h7{height:160.260000px;}
.h17{height:973.200000px;}
.h11{height:1216.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:63.779550px;}
.x5{left:80.787450px;}
.xf{left:81.850500px;}
.x1c{left:83.657550px;}
.x9{left:85.039350px;}
.x13{left:89.291400px;}
.x15{left:102.091200px;}
.x10{left:103.151850px;}
.xc{left:110.940900px;}
.x19{left:140.574750px;}
.x1a{left:145.637250px;}
.x6{left:161.367150px;}
.xd{left:174.721950px;}
.xa{left:189.248400px;}
.x1b{left:218.198400px;}
.x12{left:221.095500px;}
.x3{left:308.663850px;}
.x8{left:324.531450px;}
.x1d{left:330.372450px;}
.x2{left:337.958850px;}
.x1e{left:351.672450px;}
.xb{left:455.988150px;}
.x16{left:457.582650px;}
.x11{left:476.365350px;}
.x14{left:497.971500px;}
.x17{left:527.031450px;}
.x4{left:557.220450px;}
.x20{left:579.972450px;}
.x18{left:587.331450px;}
.x1f{left:601.272450px;}
.x7{left:667.563150px;}
.x1{left:694.843950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.814933pt;}
.v1{vertical-align:10.708267pt;}
.lsf{letter-spacing:-2.080000pt;}
.ls10{letter-spacing:-1.760000pt;}
.ls12{letter-spacing:-1.349333pt;}
.ls11{letter-spacing:-1.290667pt;}
.lse{letter-spacing:-0.762667pt;}
.ls17{letter-spacing:-0.645333pt;}
.lsc{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.410667pt;}
.ls14{letter-spacing:-0.293333pt;}
.lsd{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.293333pt;}
.ls23{letter-spacing:0.304000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.693333pt;}
.ls5{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.173333pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls15{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.600000pt;}
.ls8{letter-spacing:1.717333pt;}
.ls1{letter-spacing:1.840000pt;}
.ls9{letter-spacing:2.405333pt;}
.ls18{letter-spacing:2.666667pt;}
.ls19{letter-spacing:2.707805pt;}
.ls21{letter-spacing:2.720000pt;}
.ls1e{letter-spacing:2.880000pt;}
.ls20{letter-spacing:2.933333pt;}
.ls2{letter-spacing:3.840000pt;}
.ls1d{letter-spacing:8.480000pt;}
.lsa{letter-spacing:12.554667pt;}
.ls1c{letter-spacing:15.840000pt;}
.ls16{letter-spacing:16.570667pt;}
.ls1a{letter-spacing:19.723733pt;}
.ls1b{letter-spacing:29.706667pt;}
.ws3{word-spacing:-19.648000pt;}
.wsbd{word-spacing:-16.640000pt;}
.ws2{word-spacing:-15.733333pt;}
.ws14b{word-spacing:-13.600000pt;}
.ws77{word-spacing:-13.434667pt;}
.ws7b{word-spacing:-13.317333pt;}
.ws14{word-spacing:-13.200000pt;}
.ws7a{word-spacing:-13.141333pt;}
.ws12{word-spacing:-13.024000pt;}
.ws13{word-spacing:-12.848000pt;}
.wsf2{word-spacing:-12.789333pt;}
.ws15{word-spacing:-12.672000pt;}
.ws14d{word-spacing:-12.320000pt;}
.ws78{word-spacing:-12.144000pt;}
.ws79{word-spacing:-12.085333pt;}
.ws16{word-spacing:-11.674667pt;}
.ws14e{word-spacing:-11.413333pt;}
.wsee{word-spacing:-11.264000pt;}
.ws14f{word-spacing:-11.024000pt;}
.wsf1{word-spacing:-10.970667pt;}
.ws14c{word-spacing:-10.933333pt;}
.ws14a{word-spacing:-10.720000pt;}
.ws11{word-spacing:-7.904000pt;}
.ws0{word-spacing:-7.264000pt;}
.ws7c{word-spacing:-6.453333pt;}
.ws13e{word-spacing:-4.576000pt;}
.wse3{word-spacing:-4.458667pt;}
.ws154{word-spacing:-4.282667pt;}
.ws85{word-spacing:-4.106667pt;}
.ws24{word-spacing:-3.930667pt;}
.ws6{word-spacing:-3.840000pt;}
.ws12d{word-spacing:-3.813333pt;}
.wsc1{word-spacing:-3.626667pt;}
.ws153{word-spacing:-3.578667pt;}
.wsba{word-spacing:-3.520000pt;}
.wsa7{word-spacing:-3.344000pt;}
.ws101{word-spacing:-3.285333pt;}
.ws16b{word-spacing:-3.253333pt;}
.ws13b{word-spacing:-3.226667pt;}
.ws98{word-spacing:-3.109333pt;}
.ws7{word-spacing:-3.008000pt;}
.ws5e{word-spacing:-2.992000pt;}
.wsc3{word-spacing:-2.986667pt;}
.ws151{word-spacing:-2.933333pt;}
.ws149{word-spacing:-2.707805pt;}
.ws128{word-spacing:-2.522667pt;}
.ws13c{word-spacing:-2.464000pt;}
.wse8{word-spacing:-2.405333pt;}
.ws16f{word-spacing:-2.400000pt;}
.ws35{word-spacing:-2.346667pt;}
.ws26{word-spacing:-2.288000pt;}
.ws150{word-spacing:-2.170667pt;}
.ws27{word-spacing:-2.112000pt;}
.wse0{word-spacing:-2.080000pt;}
.ws63{word-spacing:-2.053333pt;}
.wscb{word-spacing:-2.026667pt;}
.wsd2{word-spacing:-1.994667pt;}
.wsff{word-spacing:-1.877333pt;}
.ws5{word-spacing:-1.717333pt;}
.wsc6{word-spacing:-1.701333pt;}
.wsa9{word-spacing:-1.642667pt;}
.ws94{word-spacing:-1.600000pt;}
.ws8c{word-spacing:-1.584000pt;}
.ws92{word-spacing:-1.493333pt;}
.ws100{word-spacing:-1.466667pt;}
.ws109{word-spacing:-1.290667pt;}
.ws4c{word-spacing:-1.173333pt;}
.ws13d{word-spacing:-1.056000pt;}
.wsc2{word-spacing:-1.013333pt;}
.wsae{word-spacing:-0.997333pt;}
.ws8{word-spacing:-0.960000pt;}
.wsd5{word-spacing:-0.938667pt;}
.ws44{word-spacing:-0.821333pt;}
.wsc{word-spacing:-0.800000pt;}
.ws86{word-spacing:-0.762667pt;}
.ws9c{word-spacing:-0.704000pt;}
.ws28{word-spacing:-0.645333pt;}
.wsb3{word-spacing:-0.586667pt;}
.ws9b{word-spacing:-0.469333pt;}
.ws9e{word-spacing:-0.410667pt;}
.ws5a{word-spacing:-0.293333pt;}
.ws132{word-spacing:-0.234667pt;}
.ws12e{word-spacing:-0.176000pt;}
.ws7e{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.wsfe{word-spacing:0.058667pt;}
.ws145{word-spacing:0.117333pt;}
.ws93{word-spacing:0.213333pt;}
.ws102{word-spacing:0.293333pt;}
.ws9f{word-spacing:0.352000pt;}
.ws8e{word-spacing:0.410667pt;}
.ws29{word-spacing:0.469333pt;}
.ws36{word-spacing:0.586667pt;}
.ws11b{word-spacing:0.645333pt;}
.ws3b{word-spacing:0.704000pt;}
.ws10c{word-spacing:0.800000pt;}
.ws5d{word-spacing:0.880000pt;}
.ws3c{word-spacing:0.938667pt;}
.ws64{word-spacing:0.997333pt;}
.ws127{word-spacing:1.114667pt;}
.ws161{word-spacing:1.226667pt;}
.ws147{word-spacing:1.232000pt;}
.ws2f{word-spacing:1.290667pt;}
.ws159{word-spacing:1.333333pt;}
.wsa{word-spacing:1.344000pt;}
.ws45{word-spacing:1.349333pt;}
.ws140{word-spacing:1.408000pt;}
.wsb9{word-spacing:1.466667pt;}
.ws40{word-spacing:1.525333pt;}
.ws59{word-spacing:1.584000pt;}
.ws1d{word-spacing:1.642667pt;}
.ws1e{word-spacing:1.701333pt;}
.wsd1{word-spacing:1.877333pt;}
.ws146{word-spacing:1.936000pt;}
.ws114{word-spacing:1.994667pt;}
.ws4e{word-spacing:2.080000pt;}
.wsa2{word-spacing:2.229333pt;}
.wsc7{word-spacing:2.288000pt;}
.ws9a{word-spacing:2.346667pt;}
.ws9{word-spacing:2.368000pt;}
.ws34{word-spacing:2.405333pt;}
.ws1f{word-spacing:2.522667pt;}
.ws90{word-spacing:2.560000pt;}
.wsd4{word-spacing:2.581333pt;}
.ws33{word-spacing:2.640000pt;}
.ws42{word-spacing:2.698667pt;}
.ws10a{word-spacing:2.720000pt;}
.ws12f{word-spacing:2.816000pt;}
.ws130{word-spacing:2.874667pt;}
.ws43{word-spacing:2.933333pt;}
.ws4d{word-spacing:2.992000pt;}
.ws67{word-spacing:3.050667pt;}
.ws8d{word-spacing:3.109333pt;}
.wsad{word-spacing:3.168000pt;}
.ws2b{word-spacing:3.285333pt;}
.ws160{word-spacing:3.306667pt;}
.ws32{word-spacing:3.402667pt;}
.ws2d{word-spacing:3.578667pt;}
.wsd8{word-spacing:3.696000pt;}
.ws13a{word-spacing:3.754667pt;}
.ws99{word-spacing:3.813333pt;}
.ws61{word-spacing:3.930667pt;}
.wsd9{word-spacing:3.989333pt;}
.ws91{word-spacing:4.000000pt;}
.wsb2{word-spacing:4.106667pt;}
.ws10d{word-spacing:4.213333pt;}
.ws4a{word-spacing:4.282667pt;}
.ws83{word-spacing:4.341333pt;}
.wsc8{word-spacing:4.517333pt;}
.wsf8{word-spacing:4.576000pt;}
.ws123{word-spacing:4.634667pt;}
.ws138{word-spacing:4.693333pt;}
.ws3a{word-spacing:4.752000pt;}
.wsb{word-spacing:4.800000pt;}
.ws97{word-spacing:4.810667pt;}
.ws66{word-spacing:4.869333pt;}
.wsea{word-spacing:4.928000pt;}
.ws55{word-spacing:5.104000pt;}
.ws113{word-spacing:5.162667pt;}
.wsce{word-spacing:5.173333pt;}
.ws112{word-spacing:5.221333pt;}
.ws133{word-spacing:5.280000pt;}
.ws3e{word-spacing:5.338667pt;}
.ws3d{word-spacing:5.397333pt;}
.ws22{word-spacing:5.456000pt;}
.ws54{word-spacing:5.514667pt;}
.wsb6{word-spacing:5.573333pt;}
.ws84{word-spacing:5.632000pt;}
.ws117{word-spacing:5.690667pt;}
.ws139{word-spacing:5.749333pt;}
.wsb8{word-spacing:5.808000pt;}
.ws17{word-spacing:5.866667pt;}
.ws3f{word-spacing:6.042667pt;}
.ws16c{word-spacing:6.080000pt;}
.ws107{word-spacing:6.160000pt;}
.ws1b{word-spacing:6.218667pt;}
.ws4f{word-spacing:6.277333pt;}
.ws8f{word-spacing:6.336000pt;}
.ws162{word-spacing:6.346667pt;}
.ws116{word-spacing:6.394667pt;}
.ws5f{word-spacing:6.570667pt;}
.ws163{word-spacing:6.613333pt;}
.ws58{word-spacing:6.688000pt;}
.wsec{word-spacing:6.746667pt;}
.wsab{word-spacing:6.805333pt;}
.ws11c{word-spacing:6.864000pt;}
.ws164{word-spacing:6.880000pt;}
.ws2a{word-spacing:6.922667pt;}
.wsf{word-spacing:6.976000pt;}
.wsda{word-spacing:6.981333pt;}
.wsf5{word-spacing:7.040000pt;}
.ws47{word-spacing:7.098667pt;}
.ws8b{word-spacing:7.157333pt;}
.wsa1{word-spacing:7.216000pt;}
.wscf{word-spacing:7.274667pt;}
.ws15c{word-spacing:7.466667pt;}
.ws16a{word-spacing:7.520000pt;}
.ws2e{word-spacing:7.568000pt;}
.ws5c{word-spacing:7.626667pt;}
.ws5b{word-spacing:7.685333pt;}
.ws110{word-spacing:7.786667pt;}
.ws46{word-spacing:7.920000pt;}
.wse2{word-spacing:7.978667pt;}
.ws60{word-spacing:8.037333pt;}
.ws15d{word-spacing:8.053333pt;}
.ws10f{word-spacing:8.106667pt;}
.wsa8{word-spacing:8.154667pt;}
.ws25{word-spacing:8.272000pt;}
.ws10{word-spacing:8.320000pt;}
.wsf9{word-spacing:8.330667pt;}
.wsaa{word-spacing:8.448000pt;}
.ws15b{word-spacing:8.480000pt;}
.ws8a{word-spacing:8.506667pt;}
.ws48{word-spacing:8.565333pt;}
.ws57{word-spacing:8.624000pt;}
.wseb{word-spacing:8.800000pt;}
.ws1c{word-spacing:8.858667pt;}
.ws31{word-spacing:8.917333pt;}
.ws23{word-spacing:8.976000pt;}
.ws89{word-spacing:9.034667pt;}
.ws10b{word-spacing:9.066667pt;}
.wsc9{word-spacing:9.093333pt;}
.wsaf{word-spacing:9.152000pt;}
.wsc0{word-spacing:9.173333pt;}
.wsf6{word-spacing:9.210667pt;}
.ws12c{word-spacing:9.269333pt;}
.wsca{word-spacing:9.333333pt;}
.ws2c{word-spacing:9.445333pt;}
.ws131{word-spacing:9.504000pt;}
.wse9{word-spacing:9.562667pt;}
.ws4b{word-spacing:9.621333pt;}
.wsd{word-spacing:9.664000pt;}
.wsd3{word-spacing:9.856000pt;}
.wsed{word-spacing:9.973333pt;}
.wsb7{word-spacing:10.090667pt;}
.wsf3{word-spacing:10.149333pt;}
.wse1{word-spacing:10.501333pt;}
.ws9d{word-spacing:10.560000pt;}
.wsa4{word-spacing:10.618667pt;}
.ws12a{word-spacing:10.736000pt;}
.wsb0{word-spacing:10.794667pt;}
.wsf7{word-spacing:10.853333pt;}
.ws52{word-spacing:10.970667pt;}
.ws95{word-spacing:11.029333pt;}
.ws30{word-spacing:11.088000pt;}
.ws96{word-spacing:11.146667pt;}
.ws142{word-spacing:11.322667pt;}
.ws143{word-spacing:11.440000pt;}
.ws124{word-spacing:11.498667pt;}
.ws80{word-spacing:11.573333pt;}
.wsd0{word-spacing:11.733333pt;}
.wscc{word-spacing:11.786667pt;}
.ws103{word-spacing:11.792000pt;}
.ws41{word-spacing:11.850667pt;}
.ws62{word-spacing:11.909333pt;}
.wsfc{word-spacing:11.968000pt;}
.ws15e{word-spacing:12.000000pt;}
.ws12b{word-spacing:12.026667pt;}
.wsfb{word-spacing:12.085333pt;}
.ws18{word-spacing:12.144000pt;}
.ws10e{word-spacing:12.213333pt;}
.ws19{word-spacing:12.261333pt;}
.wsb1{word-spacing:12.437333pt;}
.ws144{word-spacing:12.496000pt;}
.ws50{word-spacing:12.554667pt;}
.ws51{word-spacing:12.672000pt;}
.wse7{word-spacing:12.730667pt;}
.wsbf{word-spacing:12.746667pt;}
.ws118{word-spacing:12.789333pt;}
.ws7f{word-spacing:12.800000pt;}
.wse6{word-spacing:12.848000pt;}
.ws165{word-spacing:12.853333pt;}
.ws16d{word-spacing:12.960000pt;}
.ws11f{word-spacing:12.965333pt;}
.ws74{word-spacing:13.024000pt;}
.wsf4{word-spacing:13.082667pt;}
.ws73{word-spacing:13.141333pt;}
.wsa0{word-spacing:13.200000pt;}
.ws135{word-spacing:13.376000pt;}
.wsfd{word-spacing:13.552000pt;}
.ws108{word-spacing:13.610667pt;}
.ws37{word-spacing:13.728000pt;}
.ws38{word-spacing:13.845333pt;}
.ws11d{word-spacing:13.962667pt;}
.wsb5{word-spacing:14.021333pt;}
.ws137{word-spacing:14.138667pt;}
.wsd7{word-spacing:14.197333pt;}
.ws134{word-spacing:14.256000pt;}
.ws16e{word-spacing:14.613333pt;}
.wsf0{word-spacing:14.720000pt;}
.wsdb{word-spacing:14.725333pt;}
.ws141{word-spacing:14.842667pt;}
.wsc5{word-spacing:14.901333pt;}
.ws115{word-spacing:14.960000pt;}
.ws111{word-spacing:15.018667pt;}
.ws168{word-spacing:15.200000pt;}
.ws158{word-spacing:15.429333pt;}
.ws65{word-spacing:15.605333pt;}
.ws20{word-spacing:15.840000pt;}
.ws148{word-spacing:16.250667pt;}
.ws125{word-spacing:16.309333pt;}
.ws56{word-spacing:16.368000pt;}
.wsfa{word-spacing:16.485333pt;}
.ws6f{word-spacing:16.661333pt;}
.ws39{word-spacing:16.720000pt;}
.ws122{word-spacing:16.896000pt;}
.ws49{word-spacing:16.954667pt;}
.ws157{word-spacing:17.013333pt;}
.ws82{word-spacing:17.066667pt;}
.wsdf{word-spacing:17.072000pt;}
.ws11e{word-spacing:17.189333pt;}
.wsb4{word-spacing:17.717333pt;}
.wscd{word-spacing:17.866667pt;}
.ws120{word-spacing:17.952000pt;}
.ws70{word-spacing:18.069333pt;}
.wsdd{word-spacing:18.186667pt;}
.wsbe{word-spacing:18.293333pt;}
.wsa5{word-spacing:18.421333pt;}
.ws121{word-spacing:18.538667pt;}
.ws105{word-spacing:18.597333pt;}
.ws119{word-spacing:18.650667pt;}
.ws7d{word-spacing:18.826667pt;}
.ws6a{word-spacing:18.890667pt;}
.wsc4{word-spacing:18.949333pt;}
.wsbb{word-spacing:19.184000pt;}
.wsa3{word-spacing:19.301333pt;}
.ws155{word-spacing:19.477333pt;}
.ws126{word-spacing:19.594667pt;}
.ws104{word-spacing:19.712000pt;}
.ws88{word-spacing:19.770667pt;}
.ws68{word-spacing:20.005333pt;}
.wsa6{word-spacing:20.122667pt;}
.ws21{word-spacing:20.768000pt;}
.ws1a{word-spacing:21.178667pt;}
.ws69{word-spacing:21.237333pt;}
.ws136{word-spacing:21.413333pt;}
.wsd6{word-spacing:21.824000pt;}
.ws169{word-spacing:21.866667pt;}
.wse{word-spacing:22.080000pt;}
.ws81{word-spacing:23.360000pt;}
.ws152{word-spacing:23.877333pt;}
.wsdc{word-spacing:23.936000pt;}
.ws71{word-spacing:24.698667pt;}
.ws72{word-spacing:24.874667pt;}
.ws156{word-spacing:25.109333pt;}
.ws11a{word-spacing:25.637333pt;}
.ws6c{word-spacing:25.754667pt;}
.ws129{word-spacing:27.690667pt;}
.ws167{word-spacing:28.960000pt;}
.ws15a{word-spacing:29.706667pt;}
.wsac{word-spacing:30.330667pt;}
.wsde{word-spacing:30.506667pt;}
.ws87{word-spacing:30.922667pt;}
.ws15f{word-spacing:31.840000pt;}
.ws53{word-spacing:32.208000pt;}
.wse4{word-spacing:32.618667pt;}
.wse5{word-spacing:32.912000pt;}
.wsef{word-spacing:33.792000pt;}
.ws75{word-spacing:34.848000pt;}
.ws106{word-spacing:35.024000pt;}
.ws6e{word-spacing:35.962667pt;}
.ws13f{word-spacing:36.314667pt;}
.ws6d{word-spacing:36.490667pt;}
.ws166{word-spacing:40.213333pt;}
.ws6b{word-spacing:54.501333pt;}
.ws76{word-spacing:364.110400pt;}
.ws1{word-spacing:364.113600pt;}
.wsbc{word-spacing:403.200000pt;}
._18{margin-left:-9.677333pt;}
._a{margin-left:-6.848000pt;}
._16{margin-left:-5.819733pt;}
._3{margin-left:-4.395200pt;}
._2{margin-left:-3.496000pt;}
._1{margin-left:-2.316800pt;}
._0{margin-left:-1.379200pt;}
._5{width:1.372800pt;}
._8{width:2.310400pt;}
._7{width:4.326400pt;}
._b{width:5.497600pt;}
._d{width:6.425600pt;}
._f{width:7.385600pt;}
._4{width:8.544000pt;}
._c{width:9.459200pt;}
._11{width:10.758400pt;}
._9{width:11.795200pt;}
._e{width:13.504000pt;}
._10{width:14.464000pt;}
._6{width:15.878400pt;}
._13{width:17.132800pt;}
._19{width:18.816000pt;}
._15{width:20.944000pt;}
._12{width:23.385600pt;}
._14{width:25.984000pt;}
._17{width:30.330667pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:60.000000pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs3{font-size:80.000000pt;}
.fs6{font-size:128.000000pt;}
.fsd{font-size:133.333333pt;}
.fse{font-size:135.390239pt;}
.fs5{font-size:171.733333pt;}
.fs4{font-size:184.000000pt;}
.fsc{font-size:1066.666667pt;}
.fsa{font-size:1333.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:29.888533pt;}
.y2a{bottom:29.938400pt;}
.y2b{bottom:31.642133pt;}
.y28{bottom:32.748800pt;}
.y1{bottom:33.574933pt;}
.y2{bottom:39.488533pt;}
.y29{bottom:39.538400pt;}
.y132{bottom:94.789333pt;}
.y1e1{bottom:97.022000pt;}
.y1c2{bottom:98.221867pt;}
.y7e{bottom:100.011600pt;}
.y4f{bottom:100.046667pt;}
.ye6{bottom:101.937333pt;}
.y193{bottom:103.997067pt;}
.y121{bottom:108.321867pt;}
.y165{bottom:108.676000pt;}
.y131{bottom:113.460000pt;}
.y1e0{bottom:115.692667pt;}
.y1c1{bottom:116.892533pt;}
.y7d{bottom:118.682267pt;}
.y4e{bottom:118.717333pt;}
.ye5{bottom:120.608000pt;}
.y192{bottom:122.667733pt;}
.y164{bottom:126.009333pt;}
.y120{bottom:126.992533pt;}
.y130{bottom:132.130667pt;}
.y1df{bottom:134.363333pt;}
.y1c0{bottom:135.563200pt;}
.yb7{bottom:135.810133pt;}
.y7c{bottom:137.352933pt;}
.y4d{bottom:137.388000pt;}
.ye4{bottom:139.278667pt;}
.y191{bottom:141.338400pt;}
.y163{bottom:143.342667pt;}
.y11f{bottom:145.663200pt;}
.y12f{bottom:150.801333pt;}
.y1de{bottom:153.034000pt;}
.yb6{bottom:154.480800pt;}
.y7b{bottom:156.023600pt;}
.y4c{bottom:156.058667pt;}
.ye3{bottom:157.949333pt;}
.y190{bottom:160.009067pt;}
.y162{bottom:160.676000pt;}
.y11e{bottom:164.333867pt;}
.y12e{bottom:169.472000pt;}
.y1dd{bottom:171.704667pt;}
.yb5{bottom:173.151467pt;}
.y7a{bottom:174.694267pt;}
.y4b{bottom:174.729333pt;}
.ye2{bottom:176.620000pt;}
.y1bf{bottom:176.907067pt;}
.y161{bottom:178.009333pt;}
.y18f{bottom:178.679733pt;}
.y11d{bottom:183.004533pt;}
.y25{bottom:187.496000pt;}
.y12d{bottom:188.142667pt;}
.y27{bottom:189.055200pt;}
.y1dc{bottom:190.375333pt;}
.yb4{bottom:191.822133pt;}
.y79{bottom:193.364933pt;}
.y4a{bottom:193.400000pt;}
.ye1{bottom:195.290667pt;}
.y18e{bottom:197.350400pt;}
.y11c{bottom:201.675200pt;}
.y24{bottom:206.168000pt;}
.y12c{bottom:206.813333pt;}
.y26{bottom:207.721867pt;}
.y1db{bottom:209.046000pt;}
.yb3{bottom:210.492800pt;}
.y78{bottom:212.035600pt;}
.y49{bottom:212.070667pt;}
.ye0{bottom:213.961333pt;}
.y160{bottom:214.083333pt;}
.y1be{bottom:214.288667pt;}
.y18d{bottom:216.021067pt;}
.y11b{bottom:220.345867pt;}
.y12b{bottom:225.484000pt;}
.y1da{bottom:227.716667pt;}
.yb2{bottom:229.163467pt;}
.y77{bottom:230.706267pt;}
.y48{bottom:230.741333pt;}
.ydf{bottom:232.632000pt;}
.y15f{bottom:232.754000pt;}
.y1bd{bottom:232.959333pt;}
.y18c{bottom:234.691733pt;}
.y11a{bottom:239.016533pt;}
.y23{bottom:243.405333pt;}
.y12a{bottom:244.154667pt;}
.y1d9{bottom:246.387333pt;}
.yb1{bottom:247.834133pt;}
.y76{bottom:249.376933pt;}
.y47{bottom:249.412000pt;}
.yde{bottom:251.302667pt;}
.y15e{bottom:251.424667pt;}
.y1bc{bottom:251.630000pt;}
.y18b{bottom:253.362400pt;}
.y119{bottom:257.687200pt;}
.y22{bottom:262.077333pt;}
.y129{bottom:262.825333pt;}
.y1d8{bottom:265.058000pt;}
.yb0{bottom:266.504800pt;}
.y75{bottom:268.047600pt;}
.y46{bottom:268.082667pt;}
.ydd{bottom:269.973333pt;}
.y15d{bottom:270.095333pt;}
.y1bb{bottom:270.300667pt;}
.y18a{bottom:272.033067pt;}
.y21{bottom:280.749333pt;}
.y128{bottom:281.496000pt;}
.y1d7{bottom:283.728667pt;}
.yaf{bottom:285.175467pt;}
.y74{bottom:286.718267pt;}
.y45{bottom:286.753333pt;}
.ydc{bottom:288.644000pt;}
.y15c{bottom:288.766000pt;}
.y1ba{bottom:288.971333pt;}
.y189{bottom:290.703733pt;}
.y118{bottom:295.250267pt;}
.y20{bottom:299.421333pt;}
.y127{bottom:300.166667pt;}
.y1d6{bottom:302.399333pt;}
.yae{bottom:303.846133pt;}
.y73{bottom:305.388933pt;}
.y44{bottom:305.424000pt;}
.ydb{bottom:307.314667pt;}
.y15b{bottom:307.436667pt;}
.y1b9{bottom:307.642000pt;}
.y188{bottom:309.374400pt;}
.y117{bottom:313.918267pt;}
.y1f{bottom:318.093333pt;}
.y126{bottom:318.837333pt;}
.y1d5{bottom:321.070000pt;}
.yad{bottom:322.516800pt;}
.y72{bottom:324.059600pt;}
.y43{bottom:324.094667pt;}
.yda{bottom:325.985333pt;}
.y15a{bottom:326.107333pt;}
.y1b8{bottom:326.312667pt;}
.y187{bottom:328.045067pt;}
.y1e{bottom:336.765333pt;}
.y125{bottom:337.508000pt;}
.y1d4{bottom:339.740667pt;}
.y71{bottom:342.730267pt;}
.y42{bottom:342.765333pt;}
.yd9{bottom:344.656000pt;}
.y159{bottom:344.778000pt;}
.y1b7{bottom:344.983333pt;}
.y186{bottom:346.715733pt;}
.y116{bottom:351.370533pt;}
.y1d{bottom:355.437333pt;}
.y124{bottom:356.178667pt;}
.y1d3{bottom:358.411333pt;}
.yac{bottom:360.081067pt;}
.y70{bottom:361.400933pt;}
.y41{bottom:361.436000pt;}
.yd8{bottom:363.326667pt;}
.y158{bottom:363.448667pt;}
.y1b6{bottom:363.654000pt;}
.y185{bottom:365.386400pt;}
.y115{bottom:370.041200pt;}
.y1c{bottom:374.109333pt;}
.y123{bottom:374.849333pt;}
.y1d2{bottom:377.082000pt;}
.yab{bottom:378.747733pt;}
.y6f{bottom:380.071600pt;}
.y40{bottom:380.106667pt;}
.yd7{bottom:381.997333pt;}
.y157{bottom:382.119333pt;}
.y1b5{bottom:382.324667pt;}
.y184{bottom:384.057067pt;}
.y114{bottom:388.711867pt;}
.y1b{bottom:392.781333pt;}
.y1d1{bottom:395.752667pt;}
.yaa{bottom:396.081067pt;}
.y6e{bottom:398.742267pt;}
.y3f{bottom:398.777333pt;}
.yd6{bottom:400.668000pt;}
.y156{bottom:400.790000pt;}
.y1b4{bottom:400.995333pt;}
.y183{bottom:402.727733pt;}
.y113{bottom:407.382533pt;}
.y1a{bottom:411.453333pt;}
.ya9{bottom:413.414400pt;}
.y1d0{bottom:414.423333pt;}
.y6d{bottom:417.412933pt;}
.y3e{bottom:417.448000pt;}
.yd5{bottom:419.338667pt;}
.y155{bottom:419.460667pt;}
.y1b3{bottom:419.666000pt;}
.y182{bottom:421.398400pt;}
.y112{bottom:426.053200pt;}
.y19{bottom:430.125333pt;}
.ya8{bottom:430.747733pt;}
.y1cf{bottom:433.094000pt;}
.y6c{bottom:436.083600pt;}
.y3d{bottom:436.118667pt;}
.yd4{bottom:438.009333pt;}
.y154{bottom:438.131333pt;}
.y1b2{bottom:438.336667pt;}
.y181{bottom:440.069067pt;}
.y111{bottom:444.723867pt;}
.ya7{bottom:448.081067pt;}
.y18{bottom:448.797333pt;}
.y21d{bottom:451.604533pt;}
.y1ce{bottom:451.764667pt;}
.y6b{bottom:454.754267pt;}
.y3c{bottom:454.789333pt;}
.y20c{bottom:455.604533pt;}
.y153{bottom:456.802000pt;}
.y1b1{bottom:457.007333pt;}
.y180{bottom:458.739733pt;}
.y122{bottom:459.994267pt;}
.y110{bottom:463.394533pt;}
.y21c{bottom:463.604533pt;}
.y136{bottom:464.220000pt;}
.y17{bottom:467.469333pt;}
.y20b{bottom:467.604533pt;}
.y1cd{bottom:470.435333pt;}
.y6a{bottom:473.424933pt;}
.y3b{bottom:473.460000pt;}
.y152{bottom:475.472667pt;}
.yd3{bottom:475.573600pt;}
.y21b{bottom:475.604533pt;}
.y1b0{bottom:475.678000pt;}
.y17f{bottom:477.410400pt;}
.y20a{bottom:479.604533pt;}
.y10f{bottom:482.065200pt;}
.ya6{bottom:484.045067pt;}
.y16{bottom:486.141333pt;}
.y21a{bottom:487.604533pt;}
.y1cc{bottom:489.106000pt;}
.y209{bottom:491.604533pt;}
.y69{bottom:492.095600pt;}
.y3a{bottom:492.130667pt;}
.y151{bottom:494.143333pt;}
.y1af{bottom:494.348667pt;}
.y17e{bottom:496.081067pt;}
.y10e{bottom:500.735867pt;}
.y135{bottom:502.620000pt;}
.ya5{bottom:502.715733pt;}
.y15{bottom:504.813333pt;}
.y1cb{bottom:507.776667pt;}
.y219{bottom:510.271200pt;}
.y68{bottom:510.766267pt;}
.y39{bottom:510.801333pt;}
.yd2{bottom:512.992800pt;}
.y1ae{bottom:513.019333pt;}
.y208{bottom:514.271200pt;}
.y10d{bottom:519.406533pt;}
.ya4{bottom:521.386400pt;}
.y218{bottom:522.271200pt;}
.y14{bottom:523.485333pt;}
.y1ca{bottom:526.447333pt;}
.y67{bottom:529.436933pt;}
.y38{bottom:529.472000pt;}
.yd1{bottom:531.663467pt;}
.y1ad{bottom:531.690000pt;}
.y150{bottom:531.704667pt;}
.y17d{bottom:533.644000pt;}
.y217{bottom:534.271200pt;}
.y207{bottom:536.937867pt;}
.y10c{bottom:538.077200pt;}
.ya3{bottom:540.057067pt;}
.y134{bottom:541.020000pt;}
.y13{bottom:542.157333pt;}
.y1c9{bottom:545.118000pt;}
.y216{bottom:546.271200pt;}
.y66{bottom:548.107600pt;}
.y37{bottom:548.142667pt;}
.yd0{bottom:550.334133pt;}
.y1ac{bottom:550.360667pt;}
.y14f{bottom:550.375333pt;}
.y17c{bottom:552.312000pt;}
.y10b{bottom:556.747867pt;}
.y215{bottom:558.271200pt;}
.ya2{bottom:558.727733pt;}
.y206{bottom:559.604533pt;}
.y12{bottom:560.829333pt;}
.y1c8{bottom:563.788667pt;}
.y65{bottom:566.778267pt;}
.y36{bottom:566.813333pt;}
.ycf{bottom:569.004800pt;}
.y1ab{bottom:569.031333pt;}
.y14e{bottom:569.046000pt;}
.y214{bottom:570.271200pt;}
.y205{bottom:571.604533pt;}
.y10a{bottom:575.418533pt;}
.ya1{bottom:577.398400pt;}
.y133{bottom:579.420000pt;}
.y11{bottom:579.501333pt;}
.y21f{bottom:582.271200pt;}
.y1c7{bottom:582.459333pt;}
.y64{bottom:585.448933pt;}
.y35{bottom:585.484000pt;}
.yce{bottom:587.675467pt;}
.y1aa{bottom:587.702000pt;}
.y14d{bottom:587.716667pt;}
.y17b{bottom:589.804400pt;}
.y213{bottom:592.937867pt;}
.y109{bottom:594.089200pt;}
.y204{bottom:594.271200pt;}
.ya0{bottom:596.069067pt;}
.y10{bottom:598.168000pt;}
.y1c6{bottom:601.130000pt;}
.y63{bottom:604.119600pt;}
.y34{bottom:604.154667pt;}
.y212{bottom:604.937867pt;}
.y203{bottom:606.271200pt;}
.ycd{bottom:606.346133pt;}
.y1a9{bottom:606.372667pt;}
.y14c{bottom:606.387333pt;}
.y17a{bottom:608.475067pt;}
.y108{bottom:612.759867pt;}
.y9f{bottom:614.739733pt;}
.y211{bottom:616.937867pt;}
.y1c5{bottom:619.800667pt;}
.y33{bottom:622.825333pt;}
.ycc{bottom:625.016800pt;}
.y1a8{bottom:625.043333pt;}
.y14b{bottom:625.058000pt;}
.y179{bottom:627.145733pt;}
.y202{bottom:628.937867pt;}
.y107{bottom:631.430533pt;}
.y9e{bottom:633.410400pt;}
.y1c4{bottom:638.471333pt;}
.y210{bottom:639.604533pt;}
.y201{bottom:640.937867pt;}
.y32{bottom:641.496000pt;}
.y62{bottom:641.683867pt;}
.ycb{bottom:643.687467pt;}
.y1a7{bottom:643.714000pt;}
.y14a{bottom:643.728667pt;}
.y178{bottom:645.816400pt;}
.y106{bottom:650.101200pt;}
.y20f{bottom:651.604533pt;}
.y9d{bottom:652.081067pt;}
.y31{bottom:660.166667pt;}
.yf{bottom:660.758533pt;}
.yca{bottom:662.358133pt;}
.y1a6{bottom:662.384667pt;}
.y149{bottom:662.399333pt;}
.y200{bottom:663.604533pt;}
.y177{bottom:664.487067pt;}
.y105{bottom:668.771867pt;}
.yf8{bottom:670.109200pt;}
.y20e{bottom:674.271200pt;}
.ye{bottom:675.425200pt;}
.y1ff{bottom:675.604533pt;}
.y30{bottom:678.837333pt;}
.y61{bottom:679.042667pt;}
.yc9{bottom:681.028800pt;}
.y1a5{bottom:681.055333pt;}
.y148{bottom:681.070000pt;}
.y176{bottom:683.157733pt;}
.y20d{bottom:686.271200pt;}
.y104{bottom:687.442533pt;}
.y21e{bottom:687.604533pt;}
.yf7{bottom:688.779867pt;}
.y9c{bottom:689.644133pt;}
.yd{bottom:690.091867pt;}
.y2f{bottom:697.508000pt;}
.y60{bottom:697.713333pt;}
.y1fe{bottom:698.271200pt;}
.yc8{bottom:699.699467pt;}
.y1a4{bottom:699.726000pt;}
.y147{bottom:699.740667pt;}
.y175{bottom:701.828400pt;}
.y103{bottom:706.113200pt;}
.yf6{bottom:707.450533pt;}
.y9b{bottom:708.312133pt;}
.y1fd{bottom:710.271200pt;}
.y1c3{bottom:716.057333pt;}
.y2e{bottom:716.178667pt;}
.y5f{bottom:716.384000pt;}
.yc7{bottom:718.370133pt;}
.y1a3{bottom:718.396667pt;}
.y146{bottom:718.411333pt;}
.y174{bottom:720.499067pt;}
.y102{bottom:724.783867pt;}
.yf5{bottom:726.121200pt;}
.y1fc{bottom:733.640800pt;}
.y2d{bottom:734.849333pt;}
.y5e{bottom:735.054667pt;}
.yc6{bottom:737.040800pt;}
.y1a2{bottom:737.067333pt;}
.y145{bottom:737.082000pt;}
.y1e4{bottom:737.564267pt;}
.y173{bottom:739.169733pt;}
.y101{bottom:743.454533pt;}
.yf4{bottom:744.791867pt;}
.y9a{bottom:745.856400pt;}
.y8c{bottom:752.854267pt;}
.y5d{bottom:753.725333pt;}
.yc5{bottom:755.711467pt;}
.y1a1{bottom:755.738000pt;}
.y144{bottom:755.752667pt;}
.y172{bottom:757.840400pt;}
.yc{bottom:758.656267pt;}
.y100{bottom:762.125200pt;}
.yf3{bottom:763.462533pt;}
.y2c{bottom:764.013867pt;}
.y99{bottom:764.527067pt;}
.y8b{bottom:771.524933pt;}
.y5c{bottom:772.396000pt;}
.yb{bottom:773.056267pt;}
.yc4{bottom:774.382133pt;}
.y1a0{bottom:774.408667pt;}
.y143{bottom:774.423333pt;}
.y171{bottom:776.511067pt;}
.y1e3{bottom:777.564267pt;}
.yff{bottom:780.795867pt;}
.yf2{bottom:782.133200pt;}
.y98{bottom:783.197733pt;}
.ya{bottom:787.456267pt;}
.y8a{bottom:790.195600pt;}
.y5b{bottom:791.066667pt;}
.yc3{bottom:793.052800pt;}
.y19f{bottom:793.079333pt;}
.y142{bottom:793.094000pt;}
.y1f0{bottom:794.416800pt;}
.y170{bottom:795.181733pt;}
.yfe{bottom:799.466533pt;}
.y9{bottom:800.598533pt;}
.yf1{bottom:800.803867pt;}
.y97{bottom:801.868400pt;}
.y89{bottom:808.866267pt;}
.y5a{bottom:809.737333pt;}
.yc2{bottom:811.723467pt;}
.y19e{bottom:811.750000pt;}
.y141{bottom:811.764667pt;}
.y1fb{bottom:813.043467pt;}
.y1ef{bottom:813.087467pt;}
.y16f{bottom:813.852400pt;}
.y1e2{bottom:817.564267pt;}
.yfd{bottom:818.137200pt;}
.yf0{bottom:819.474533pt;}
.y96{bottom:820.539067pt;}
.y88{bottom:827.536933pt;}
.y59{bottom:828.408000pt;}
.yc1{bottom:830.394133pt;}
.y19d{bottom:830.420667pt;}
.y140{bottom:830.435333pt;}
.y1fa{bottom:831.714133pt;}
.y1ee{bottom:831.758133pt;}
.y16e{bottom:832.523067pt;}
.yfc{bottom:836.807867pt;}
.yef{bottom:838.145200pt;}
.y95{bottom:839.209733pt;}
.y87{bottom:846.207600pt;}
.y58{bottom:847.078667pt;}
.yc0{bottom:849.064800pt;}
.y19c{bottom:849.091333pt;}
.y13f{bottom:849.106000pt;}
.y1f9{bottom:850.384800pt;}
.y1ed{bottom:850.428800pt;}
.y16d{bottom:851.193733pt;}
.yfb{bottom:855.478533pt;}
.yee{bottom:856.815867pt;}
.y8{bottom:860.581067pt;}
.y86{bottom:864.878267pt;}
.y57{bottom:865.749333pt;}
.ybf{bottom:867.735467pt;}
.y19b{bottom:867.762000pt;}
.y13e{bottom:867.776667pt;}
.y1f8{bottom:869.055467pt;}
.y1ec{bottom:869.099467pt;}
.y16c{bottom:869.864400pt;}
.yfa{bottom:874.149200pt;}
.y94{bottom:876.774000pt;}
.y85{bottom:883.548933pt;}
.y56{bottom:884.420000pt;}
.ybe{bottom:886.406133pt;}
.y19a{bottom:886.432667pt;}
.y13d{bottom:886.447333pt;}
.y1f7{bottom:887.726133pt;}
.y1eb{bottom:887.770133pt;}
.y16b{bottom:888.535067pt;}
.y7{bottom:892.581067pt;}
.yed{bottom:894.380267pt;}
.y93{bottom:895.440667pt;}
.y84{bottom:902.219600pt;}
.y55{bottom:903.090667pt;}
.ybd{bottom:905.076800pt;}
.y199{bottom:905.103333pt;}
.y13c{bottom:905.118000pt;}
.y1f6{bottom:906.396800pt;}
.y1ea{bottom:906.440800pt;}
.y16a{bottom:907.205733pt;}
.yf9{bottom:911.713600pt;}
.y92{bottom:912.774000pt;}
.yec{bottom:913.046933pt;}
.y83{bottom:920.890267pt;}
.y54{bottom:921.761333pt;}
.ybc{bottom:923.747467pt;}
.y198{bottom:923.774000pt;}
.y13b{bottom:923.788667pt;}
.y1f5{bottom:925.067467pt;}
.y1e9{bottom:925.111467pt;}
.y169{bottom:925.876400pt;}
.y91{bottom:930.107333pt;}
.yeb{bottom:930.380267pt;}
.y82{bottom:939.560933pt;}
.y53{bottom:940.432000pt;}
.ybb{bottom:942.418133pt;}
.y197{bottom:942.444667pt;}
.y13a{bottom:942.459333pt;}
.y6{bottom:943.500000pt;}
.y1f4{bottom:943.738133pt;}
.y1e8{bottom:943.782133pt;}
.y90{bottom:947.440667pt;}
.yea{bottom:947.713600pt;}
.y81{bottom:958.231600pt;}
.y52{bottom:959.102667pt;}
.yba{bottom:961.088800pt;}
.y196{bottom:961.115333pt;}
.y139{bottom:961.130000pt;}
.y1f3{bottom:962.408800pt;}
.y1e7{bottom:962.452800pt;}
.y168{bottom:963.436000pt;}
.y8f{bottom:964.774000pt;}
.ye9{bottom:965.046933pt;}
.y80{bottom:976.902267pt;}
.y51{bottom:977.773333pt;}
.yb9{bottom:979.759467pt;}
.y195{bottom:979.786000pt;}
.y138{bottom:979.800667pt;}
.y1f2{bottom:981.079467pt;}
.y1e6{bottom:981.123467pt;}
.y167{bottom:982.102667pt;}
.y8e{bottom:982.107333pt;}
.ye8{bottom:982.380267pt;}
.y5{bottom:992.812000pt;}
.y7f{bottom:995.572933pt;}
.y50{bottom:996.444000pt;}
.yb8{bottom:998.430133pt;}
.y194{bottom:998.456667pt;}
.y137{bottom:998.471333pt;}
.y166{bottom:999.436000pt;}
.y8d{bottom:999.440667pt;}
.ye7{bottom:999.713600pt;}
.y1f1{bottom:999.750133pt;}
.y1e5{bottom:999.794133pt;}
.y4{bottom:1062.165333pt;}
.h3{height:25.952000pt;}
.h1d{height:35.546875pt;}
.hb{height:37.429688pt;}
.he{height:40.000000pt;}
.h16{height:41.242667pt;}
.h19{height:41.829333pt;}
.hd{height:42.506667pt;}
.h1c{height:42.656250pt;}
.h15{height:43.253333pt;}
.hc{height:44.058667pt;}
.h10{height:44.693333pt;}
.h2{height:46.020000pt;}
.h12{height:47.578667pt;}
.ha{height:48.000000pt;}
.hf{height:50.280000pt;}
.h14{height:51.508267pt;}
.h4{height:51.614933pt;}
.h13{height:58.101333pt;}
.h5{height:60.000000pt;}
.h18{height:96.000000pt;}
.h8{height:98.176000pt;}
.h1a{height:100.000000pt;}
.h1b{height:101.542679pt;}
.h9{height:106.240000pt;}
.h6{height:141.128000pt;}
.h7{height:142.453333pt;}
.h17{height:865.066667pt;}
.h11{height:1081.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:56.692933pt;}
.x5{left:71.811067pt;}
.xf{left:72.756000pt;}
.x1c{left:74.362267pt;}
.x9{left:75.590533pt;}
.x13{left:79.370133pt;}
.x15{left:90.747733pt;}
.x10{left:91.690533pt;}
.xc{left:98.614133pt;}
.x19{left:124.955333pt;}
.x1a{left:129.455333pt;}
.x6{left:143.437467pt;}
.xd{left:155.308400pt;}
.xa{left:168.220800pt;}
.x1b{left:193.954133pt;}
.x12{left:196.529333pt;}
.x3{left:274.367867pt;}
.x8{left:288.472400pt;}
.x1d{left:293.664400pt;}
.x2{left:300.407867pt;}
.x1e{left:312.597733pt;}
.xb{left:405.322800pt;}
.x16{left:406.740133pt;}
.x11{left:423.435867pt;}
.x14{left:442.641333pt;}
.x17{left:468.472400pt;}
.x4{left:495.307067pt;}
.x20{left:515.531067pt;}
.x18{left:522.072400pt;}
.x1f{left:534.464400pt;}
.x7{left:593.389467pt;}
.x1{left:617.639067pt;}
}

