
    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_a98691f9458e8e59a33a7c0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_96645891697ed769345ada5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_adce1b116ceb2af1b823b1f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_813b6de40f723916c30f0fe8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_6bf41d0bbc462a542e3380f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_4e711a53b9f24001c0e0650e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730469;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_87fbf62a8057be050008d127.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968262;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_4eeee8f89840f51ac0668274.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063000;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_c874c25fca5a31c35ff6cd13.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953000;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_c69f78d9b0a6b6ace2eb3c7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.047000;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_de9b10844cfb37f874384ec5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;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_1056665f8ecf427e86313410.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.032000;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_8113119fdddb353d374f3866.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c2c9f1d48c92dd43ef2b627d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5cb13647c232b49b728de0da.woff2')format("woff");}.fff{font-family:fff;line-height:0.554000;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_0811e49856b92ad81ad9c1bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.946000;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_5cb13647c232b49b728de0da.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.554000;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_1478292aeefd83590f7e4733.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4d75cdc5c4b27020b3e8302b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.266000;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_49f0e3505e93e3cf153ca292.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.945000;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_d7e04adbcb6c781561b000c6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.892000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v6{vertical-align:-37.080360px;}
.v7{vertical-align:-11.904000px;}
.vb{vertical-align:-10.885800px;}
.vd{vertical-align:-9.528000px;}
.vf{vertical-align:-7.823400px;}
.v3{vertical-align:-3.060000px;}
.v4{vertical-align:-2.046000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.013992px;}
.v10{vertical-align:2.040000px;}
.v2{vertical-align:6.120000px;}
.vc{vertical-align:11.563055px;}
.ve{vertical-align:18.708000px;}
.v8{vertical-align:21.090000px;}
.v5{vertical-align:23.124000px;}
.v9{vertical-align:38.178000px;}
.va{vertical-align:41.742000px;}
.lsd{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.005400px;}
.ls34{letter-spacing:0.012000px;}
.ls87{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.066000px;}
.ls4e{letter-spacing:0.078000px;}
.ls86{letter-spacing:0.091800px;}
.ls83{letter-spacing:0.113400px;}
.ls60{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.156000px;}
.lsc{letter-spacing:0.156851px;}
.ls89{letter-spacing:0.167400px;}
.ls42{letter-spacing:0.168000px;}
.ls1a{letter-spacing:0.170413px;}
.ls22{letter-spacing:0.176413px;}
.ls23{letter-spacing:0.178200px;}
.ls28{letter-spacing:0.189000px;}
.ls4b{letter-spacing:0.198000px;}
.ls6e{letter-spacing:0.204000px;}
.ls24{letter-spacing:0.217800px;}
.ls36{letter-spacing:0.235973px;}
.ls8a{letter-spacing:0.248400px;}
.ls13{letter-spacing:0.257086px;}
.ls35{letter-spacing:0.264000px;}
.ls37{letter-spacing:0.266497px;}
.ls7d{letter-spacing:0.280800px;}
.ls88{letter-spacing:0.302400px;}
.ls2d{letter-spacing:0.336000px;}
.ls2a{letter-spacing:0.342000px;}
.ls9{letter-spacing:0.348000px;}
.ls74{letter-spacing:0.421200px;}
.ls4d{letter-spacing:0.480000px;}
.ls7b{letter-spacing:0.513000px;}
.ls71{letter-spacing:0.522000px;}
.lse{letter-spacing:0.567935px;}
.ls2f{letter-spacing:0.630000px;}
.ls3f{letter-spacing:0.631131px;}
.lsa{letter-spacing:0.636000px;}
.ls62{letter-spacing:0.642000px;}
.ls56{letter-spacing:0.714000px;}
.ls4c{letter-spacing:0.726000px;}
.ls41{letter-spacing:0.731916px;}
.ls12{letter-spacing:0.756000px;}
.ls1{letter-spacing:0.798000px;}
.ls39{letter-spacing:0.822000px;}
.lsf{letter-spacing:0.831904px;}
.ls70{letter-spacing:0.894000px;}
.lsb{letter-spacing:0.936000px;}
.ls3d{letter-spacing:0.942000px;}
.ls7e{letter-spacing:0.988200px;}
.ls6f{letter-spacing:1.008000px;}
.ls82{letter-spacing:1.020600px;}
.ls66{letter-spacing:1.026000px;}
.ls29{letter-spacing:1.038000px;}
.ls72{letter-spacing:1.110000px;}
.ls2{letter-spacing:1.152000px;}
.ls85{letter-spacing:1.166400px;}
.ls20{letter-spacing:1.209600px;}
.ls5f{letter-spacing:1.254000px;}
.ls3e{letter-spacing:1.278000px;}
.ls10{letter-spacing:1.314000px;}
.ls4a{letter-spacing:1.320000px;}
.ls4f{letter-spacing:1.404000px;}
.ls30{letter-spacing:1.446000px;}
.ls40{letter-spacing:1.447178px;}
.ls78{letter-spacing:1.517400px;}
.ls11{letter-spacing:1.524000px;}
.ls49{letter-spacing:1.539823px;}
.ls61{letter-spacing:1.584000px;}
.ls43{letter-spacing:1.734000px;}
.ls27{letter-spacing:12.597361px;}
.ls25{letter-spacing:12.598200px;}
.ls26{letter-spacing:12.895200px;}
.ls7{letter-spacing:14.216497px;}
.ls81{letter-spacing:14.634000px;}
.ls57{letter-spacing:14.637411px;}
.ls1d{letter-spacing:14.947200px;}
.ls1e{letter-spacing:15.093000px;}
.ls8c{letter-spacing:15.314400px;}
.ls46{letter-spacing:15.763003px;}
.ls48{letter-spacing:15.883001px;}
.ls50{letter-spacing:16.020000px;}
.ls73{letter-spacing:16.038000px;}
.ls44{letter-spacing:16.103799px;}
.ls47{letter-spacing:16.177060px;}
.ls59{letter-spacing:16.338000px;}
.ls1f{letter-spacing:16.508413px;}
.ls67{letter-spacing:16.920000px;}
.ls63{letter-spacing:17.040000px;}
.ls38{letter-spacing:17.136000px;}
.ls65{letter-spacing:17.276497px;}
.ls32{letter-spacing:17.282497px;}
.ls64{letter-spacing:17.388000px;}
.ls77{letter-spacing:17.690400px;}
.ls7f{letter-spacing:17.695800px;}
.ls8{letter-spacing:17.960497px;}
.ls76{letter-spacing:18.030600px;}
.ls75{letter-spacing:18.036000px;}
.ls45{letter-spacing:18.369370px;}
.ls1c{letter-spacing:18.700200px;}
.ls1b{letter-spacing:18.813600px;}
.ls68{letter-spacing:18.954000px;}
.ls79{letter-spacing:19.218600px;}
.ls55{letter-spacing:19.301086px;}
.ls2b{letter-spacing:19.307086px;}
.ls7a{letter-spacing:19.396800px;}
.ls54{letter-spacing:19.428000px;}
.ls15{letter-spacing:19.658497px;}
.ls6c{letter-spacing:19.788000px;}
.ls19{letter-spacing:19.904413px;}
.ls14{letter-spacing:20.106000px;}
.ls3{letter-spacing:20.112000px;}
.ls6b{letter-spacing:20.124000px;}
.ls6d{letter-spacing:20.130000px;}
.ls4{letter-spacing:20.336497px;}
.ls6{letter-spacing:20.342497px;}
.ls5{letter-spacing:20.448000px;}
.ls84{letter-spacing:21.097800px;}
.ls5e{letter-spacing:21.330000px;}
.ls5d{letter-spacing:21.486000px;}
.ls18{letter-spacing:21.907800px;}
.ls21{letter-spacing:22.622413px;}
.ls33{letter-spacing:22.718497px;}
.ls8b{letter-spacing:23.139000px;}
.ls5c{letter-spacing:23.376000px;}
.ls5b{letter-spacing:23.532000px;}
.ls5a{letter-spacing:23.724000px;}
.ls2c{letter-spacing:25.106497px;}
.ls0{letter-spacing:26.777194px;}
.ls80{letter-spacing:26.875800px;}
.ls16{letter-spacing:27.806686px;}
.ls58{letter-spacing:27.909411px;}
.ls53{letter-spacing:32.582497px;}
.ls52{letter-spacing:32.584297px;}
.ls51{letter-spacing:32.694000px;}
.ls69{letter-spacing:37.738200px;}
.ls6a{letter-spacing:38.082000px;}
.ls3b{letter-spacing:40.200000px;}
.ls3c{letter-spacing:40.236000px;}
.ls2e{letter-spacing:41.479366px;}
.ls31{letter-spacing:42.703318px;}
.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;}
}
.ws2{word-spacing:-38.609703px;}
.ws25d{word-spacing:-33.075000px;}
.ws127{word-spacing:-29.190000px;}
.ws1f{word-spacing:-28.560000px;}
.wsf0{word-spacing:-27.594000px;}
.ws59{word-spacing:-27.071662px;}
.ws277{word-spacing:-26.838000px;}
.wsd6{word-spacing:-25.704000px;}
.ws189{word-spacing:-24.527693px;}
.ws18c{word-spacing:-22.847714px;}
.ws5c{word-spacing:-20.304000px;}
.ws1{word-spacing:-19.583885px;}
.ws0{word-spacing:-19.543085px;}
.ws3{word-spacing:-19.499850px;}
.ws8f{word-spacing:-19.134914px;}
.ws32{word-spacing:-19.037810px;}
.wse9{word-spacing:-17.221109px;}
.ws24b{word-spacing:-16.350000px;}
.ws18d{word-spacing:-15.307303px;}
.ws258{word-spacing:-15.288000px;}
.ws257{word-spacing:-15.000000px;}
.ws175{word-spacing:-14.664000px;}
.ws8c{word-spacing:-14.658000px;}
.ws2c2{word-spacing:-14.639400px;}
.ws61{word-spacing:-14.610000px;}
.ws24a{word-spacing:-14.592000px;}
.ws1cd{word-spacing:-14.568000px;}
.ws22{word-spacing:-14.544000px;}
.ws60{word-spacing:-14.520000px;}
.ws1af{word-spacing:-14.454000px;}
.ws1aa{word-spacing:-14.364000px;}
.ws1da{word-spacing:-14.304000px;}
.ws1ab{word-spacing:-14.274000px;}
.ws1e6{word-spacing:-14.154000px;}
.ws74{word-spacing:-14.136000px;}
.ws1e7{word-spacing:-14.100000px;}
.ws107{word-spacing:-14.070000px;}
.ws46{word-spacing:-14.040000px;}
.ws1ba{word-spacing:-14.010000px;}
.ws1b9{word-spacing:-13.998000px;}
.ws15c{word-spacing:-13.980000px;}
.ws1fb{word-spacing:-13.920000px;}
.ws75{word-spacing:-13.824000px;}
.ws236{word-spacing:-13.812000px;}
.ws235{word-spacing:-13.800000px;}
.ws19b{word-spacing:-13.728000px;}
.ws225{word-spacing:-13.716000px;}
.ws177{word-spacing:-13.680000px;}
.ws176{word-spacing:-13.554000px;}
.ws199{word-spacing:-13.536000px;}
.ws9c{word-spacing:-13.524000px;}
.ws2b7{word-spacing:-13.500000px;}
.ws19a{word-spacing:-13.476000px;}
.ws1ec{word-spacing:-13.392000px;}
.ws22c{word-spacing:-13.386000px;}
.wsee{word-spacing:-13.262400px;}
.ws1d7{word-spacing:-13.194000px;}
.ws2ee{word-spacing:-13.111200px;}
.wsef{word-spacing:-13.095000px;}
.wsf1{word-spacing:-13.089600px;}
.wsed{word-spacing:-13.057200px;}
.ws2c8{word-spacing:-13.035600px;}
.ws20b{word-spacing:-12.912000px;}
.ws5{word-spacing:-12.908901px;}
.ws2e7{word-spacing:-12.889800px;}
.ws2bd{word-spacing:-12.873600px;}
.ws2e6{word-spacing:-12.862800px;}
.wsb6{word-spacing:-12.852000px;}
.ws274{word-spacing:-12.830400px;}
.ws229{word-spacing:-12.828000px;}
.ws53{word-spacing:-12.816000px;}
.ws20a{word-spacing:-12.792000px;}
.ws7{word-spacing:-12.791902px;}
.ws2d2{word-spacing:-12.787200px;}
.ws17{word-spacing:-12.780000px;}
.ws50{word-spacing:-12.732000px;}
.ws4{word-spacing:-12.698302px;}
.ws51{word-spacing:-12.690000px;}
.ws2c1{word-spacing:-12.684600px;}
.wsb5{word-spacing:-12.673800px;}
.ws31{word-spacing:-12.660000px;}
.ws85{word-spacing:-12.654000px;}
.ws6{word-spacing:-12.643703px;}
.ws33{word-spacing:-12.642000px;}
.ws52{word-spacing:-12.606000px;}
.ws2c3{word-spacing:-12.603600px;}
.wsa{word-spacing:-12.598200px;}
.ws21a{word-spacing:-12.564000px;}
.ws335{word-spacing:-12.560400px;}
.ws1bb{word-spacing:-12.522000px;}
.ws237{word-spacing:-12.426000px;}
.ws1d2{word-spacing:-12.318000px;}
.ws2f0{word-spacing:-12.301200px;}
.ws48{word-spacing:-12.294000px;}
.ws1ef{word-spacing:-12.246000px;}
.ws77{word-spacing:-12.234000px;}
.ws42{word-spacing:-12.222000px;}
.ws1c1{word-spacing:-12.220200px;}
.ws76{word-spacing:-12.216000px;}
.ws243{word-spacing:-12.196800px;}
.ws32e{word-spacing:-12.187800px;}
.ws2d3{word-spacing:-12.177000px;}
.ws2f1{word-spacing:-12.171600px;}
.ws104{word-spacing:-12.152700px;}
.ws1ed{word-spacing:-12.120000px;}
.ws32c{word-spacing:-12.074400px;}
.ws2b2{word-spacing:-12.058200px;}
.ws8d{word-spacing:-12.054000px;}
.ws23d{word-spacing:-12.033000px;}
.ws18{word-spacing:-12.024000px;}
.ws1c2{word-spacing:-12.004200px;}
.ws18b{word-spacing:-11.999850px;}
.ws15e{word-spacing:-11.982000px;}
.ws2d4{word-spacing:-11.966400px;}
.ws1f2{word-spacing:-11.952000px;}
.ws2cf{word-spacing:-11.928600px;}
.ws1f7{word-spacing:-11.922000px;}
.ws2b3{word-spacing:-11.917800px;}
.ws1b{word-spacing:-11.892000px;}
.ws4c{word-spacing:-11.862000px;}
.ws232{word-spacing:-11.856000px;}
.ws2ba{word-spacing:-11.831400px;}
.ws197{word-spacing:-11.772000px;}
.ws2ca{word-spacing:-11.755800px;}
.ws143{word-spacing:-11.718000px;}
.ws15d{word-spacing:-11.712000px;}
.wsb2{word-spacing:-11.696400px;}
.ws194{word-spacing:-11.682000px;}
.ws30c{word-spacing:-11.680200px;}
.ws275{word-spacing:-11.664000px;}
.ws2e8{word-spacing:-11.647800px;}
.ws233{word-spacing:-11.646000px;}
.ws198{word-spacing:-11.640000px;}
.ws196{word-spacing:-11.634000px;}
.ws30{word-spacing:-11.616000px;}
.ws9d{word-spacing:-11.556000px;}
.ws22d{word-spacing:-11.544000px;}
.ws1a9{word-spacing:-11.514000px;}
.ws22f{word-spacing:-11.508000px;}
.ws100{word-spacing:-11.507400px;}
.ws1f8{word-spacing:-11.472000px;}
.ws101{word-spacing:-11.464200px;}
.ws1eb{word-spacing:-11.430000px;}
.ws286{word-spacing:-11.383200px;}
.ws13b{word-spacing:-11.370000px;}
.ws142{word-spacing:-11.346000px;}
.ws1a5{word-spacing:-11.329200px;}
.ws29d{word-spacing:-11.323800px;}
.ws80{word-spacing:-11.316000px;}
.ws134{word-spacing:-11.304000px;}
.ws165{word-spacing:-11.298000px;}
.ws2ed{word-spacing:-11.264400px;}
.ws2b8{word-spacing:-11.248200px;}
.ws155{word-spacing:-11.226000px;}
.ws65{word-spacing:-11.208000px;}
.ws49{word-spacing:-11.202000px;}
.ws66{word-spacing:-11.172000px;}
.ws63{word-spacing:-11.160000px;}
.wsf5{word-spacing:-11.126400px;}
.ws10f{word-spacing:-11.109300px;}
.ws135{word-spacing:-11.106000px;}
.ws2b9{word-spacing:-11.097000px;}
.ws27{word-spacing:-11.034000px;}
.ws14d{word-spacing:-11.010000px;}
.ws332{word-spacing:-10.989000px;}
.ws2b6{word-spacing:-10.983600px;}
.ws154{word-spacing:-10.961100px;}
.ws26f{word-spacing:-10.956600px;}
.wsa7{word-spacing:-10.955400px;}
.ws244{word-spacing:-10.949700px;}
.ws253{word-spacing:-10.944000px;}
.ws23f{word-spacing:-10.921200px;}
.ws24d{word-spacing:-10.884000px;}
.ws249{word-spacing:-10.878000px;}
.ws2d{word-spacing:-10.872000px;}
.ws2d1{word-spacing:-10.870200px;}
.wsb8{word-spacing:-10.869900px;}
.ws245{word-spacing:-10.854000px;}
.ws148{word-spacing:-10.848000px;}
.ws255{word-spacing:-10.818000px;}
.ws246{word-spacing:-10.812000px;}
.ws251{word-spacing:-10.794000px;}
.ws64{word-spacing:-10.788000px;}
.ws9f{word-spacing:-10.784400px;}
.ws25a{word-spacing:-10.770000px;}
.ws24c{word-spacing:-10.764000px;}
.ws122{word-spacing:-10.734000px;}
.ws334{word-spacing:-10.713600px;}
.wscb{word-spacing:-10.702800px;}
.ws147{word-spacing:-10.692000px;}
.ws97{word-spacing:-10.668000px;}
.ws24e{word-spacing:-10.662000px;}
.wsca{word-spacing:-10.659600px;}
.ws163{word-spacing:-10.648800px;}
.wsce{word-spacing:-10.643400px;}
.wsae{word-spacing:-10.621800px;}
.ws24f{word-spacing:-10.578000px;}
.ws336{word-spacing:-10.567800px;}
.ws208{word-spacing:-10.560000px;}
.wsc9{word-spacing:-10.557000px;}
.ws161{word-spacing:-10.530000px;}
.ws2de{word-spacing:-10.508400px;}
.ws167{word-spacing:-10.506000px;}
.ws168{word-spacing:-10.500000px;}
.wsa9{word-spacing:-10.454400px;}
.ws78{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.438200px;}
.wsb{word-spacing:-10.368000px;}
.ws21b{word-spacing:-10.356000px;}
.ws12d{word-spacing:-10.338000px;}
.ws2c4{word-spacing:-10.303200px;}
.ws173{word-spacing:-10.284000px;}
.ws297{word-spacing:-10.276200px;}
.wsd4{word-spacing:-10.260000px;}
.ws227{word-spacing:-10.254000px;}
.wsb0{word-spacing:-10.233000px;}
.ws1a6{word-spacing:-10.222200px;}
.ws261{word-spacing:-10.194000px;}
.ws172{word-spacing:-10.152000px;}
.ws296{word-spacing:-10.130400px;}
.ws2ec{word-spacing:-10.114200px;}
.ws184{word-spacing:-10.056000px;}
.ws183{word-spacing:-10.032000px;}
.ws185{word-spacing:-9.996000px;}
.ws1f0{word-spacing:-9.966000px;}
.ws329{word-spacing:-9.957600px;}
.ws41{word-spacing:-9.954000px;}
.ws271{word-spacing:-9.952200px;}
.wsf6{word-spacing:-9.941400px;}
.ws250{word-spacing:-9.924000px;}
.ws270{word-spacing:-9.919800px;}
.wsf7{word-spacing:-9.909000px;}
.ws248{word-spacing:-9.882000px;}
.ws276{word-spacing:-9.876600px;}
.ws259{word-spacing:-9.876000px;}
.ws234{word-spacing:-9.870000px;}
.ws285{word-spacing:-9.865800px;}
.ws32a{word-spacing:-9.860400px;}
.ws252{word-spacing:-9.834000px;}
.ws2c6{word-spacing:-9.833400px;}
.ws31d{word-spacing:-9.817200px;}
.ws254{word-spacing:-9.804000px;}
.ws301{word-spacing:-9.801000px;}
.ws2a2{word-spacing:-9.795600px;}
.ws28e{word-spacing:-9.790200px;}
.ws318{word-spacing:-9.784800px;}
.ws81{word-spacing:-9.774000px;}
.ws29e{word-spacing:-9.763200px;}
.ws2a6{word-spacing:-9.757800px;}
.ws28b{word-spacing:-9.741600px;}
.ws219{word-spacing:-9.738000px;}
.ws2c9{word-spacing:-9.730800px;}
.ws99{word-spacing:-9.726000px;}
.ws256{word-spacing:-9.720000px;}
.ws2e5{word-spacing:-9.714600px;}
.ws282{word-spacing:-9.703800px;}
.ws2bb{word-spacing:-9.698400px;}
.ws2d8{word-spacing:-9.687600px;}
.ws2cd{word-spacing:-9.682200px;}
.ws1d1{word-spacing:-9.666000px;}
.ws330{word-spacing:-9.660600px;}
.ws2c0{word-spacing:-9.655200px;}
.ws27d{word-spacing:-9.649800px;}
.ws2ac{word-spacing:-9.644400px;}
.ws300{word-spacing:-9.622800px;}
.ws2b5{word-spacing:-9.612000px;}
.ws164{word-spacing:-9.606600px;}
.ws21d{word-spacing:-9.606000px;}
.ws218{word-spacing:-9.588000px;}
.ws16e{word-spacing:-9.582000px;}
.ws30b{word-spacing:-9.579600px;}
.ws1d9{word-spacing:-9.570000px;}
.ws2fc{word-spacing:-9.541800px;}
.ws11f{word-spacing:-9.510000px;}
.ws1d8{word-spacing:-9.498000px;}
.ws2ff{word-spacing:-9.493200px;}
.ws178{word-spacing:-9.480000px;}
.ws315{word-spacing:-9.471600px;}
.ws16c{word-spacing:-9.462000px;}
.ws162{word-spacing:-9.428400px;}
.wsd9{word-spacing:-9.423000px;}
.wsdf{word-spacing:-9.406800px;}
.wsb9{word-spacing:-9.401400px;}
.ws23b{word-spacing:-9.396000px;}
.ws11e{word-spacing:-9.390000px;}
.ws217{word-spacing:-9.360000px;}
.ws1b0{word-spacing:-9.312000px;}
.wsde{word-spacing:-9.271800px;}
.ws179{word-spacing:-9.258000px;}
.ws9{word-spacing:-9.250200px;}
.ws260{word-spacing:-9.246000px;}
.ws16d{word-spacing:-9.240000px;}
.wse6{word-spacing:-9.196200px;}
.ws25e{word-spacing:-9.174000px;}
.wsd8{word-spacing:-9.147600px;}
.ws25f{word-spacing:-9.108000px;}
.ws3a{word-spacing:-9.048000px;}
.ws4b{word-spacing:-9.006000px;}
.ws5b{word-spacing:-8.981280px;}
.ws181{word-spacing:-8.947800px;}
.ws6d{word-spacing:-8.940000px;}
.ws5a{word-spacing:-8.928360px;}
.ws4a{word-spacing:-8.922000px;}
.ws1f3{word-spacing:-8.916000px;}
.ws16b{word-spacing:-8.892000px;}
.ws92{word-spacing:-8.886000px;}
.ws224{word-spacing:-8.880000px;}
.ws17c{word-spacing:-8.844000px;}
.ws331{word-spacing:-8.834400px;}
.ws213{word-spacing:-8.832000px;}
.ws67{word-spacing:-8.826000px;}
.ws12b{word-spacing:-8.820000px;}
.ws25b{word-spacing:-8.802000px;}
.ws91{word-spacing:-8.784000px;}
.ws157{word-spacing:-8.778000px;}
.ws23c{word-spacing:-8.772000px;}
.ws10e{word-spacing:-8.766000px;}
.ws25c{word-spacing:-8.760000px;}
.ws146{word-spacing:-8.754000px;}
.ws44{word-spacing:-8.748000px;}
.ws193{word-spacing:-8.742000px;}
.ws87{word-spacing:-8.736000px;}
.ws95{word-spacing:-8.718000px;}
.ws119{word-spacing:-8.712000px;}
.ws7f{word-spacing:-8.706000px;}
.ws7c{word-spacing:-8.700000px;}
.ws21f{word-spacing:-8.694000px;}
.ws31e{word-spacing:-8.677800px;}
.ws38{word-spacing:-8.676000px;}
.ws27c{word-spacing:-8.661600px;}
.ws226{word-spacing:-8.658000px;}
.ws2b{word-spacing:-8.622000px;}
.ws238{word-spacing:-8.592000px;}
.ws2eb{word-spacing:-8.591400px;}
.ws247{word-spacing:-8.586000px;}
.ws1db{word-spacing:-8.580000px;}
.ws34{word-spacing:-8.574000px;}
.ws192{word-spacing:-8.568000px;}
.ws6c{word-spacing:-8.562000px;}
.ws1c9{word-spacing:-8.556000px;}
.ws12a{word-spacing:-8.550000px;}
.ws21{word-spacing:-8.544000px;}
.ws2be{word-spacing:-8.537400px;}
.ws153{word-spacing:-8.532000px;}
.ws117{word-spacing:-8.508000px;}
.ws2f5{word-spacing:-8.499600px;}
.ws207{word-spacing:-8.490000px;}
.ws1e{word-spacing:-8.478000px;}
.ws272{word-spacing:-8.467200px;}
.ws14c{word-spacing:-8.442000px;}
.ws5e{word-spacing:-8.427600px;}
.ws242{word-spacing:-8.424000px;}
.ws13f{word-spacing:-8.418000px;}
.ws19c{word-spacing:-8.412000px;}
.ws29a{word-spacing:-8.402400px;}
.ws118{word-spacing:-8.376000px;}
.ws1f4{word-spacing:-8.352000px;}
.ws323{word-spacing:-8.348400px;}
.ws279{word-spacing:-8.337600px;}
.ws2ea{word-spacing:-8.256600px;}
.ws1b3{word-spacing:-8.256000px;}
.ws1ee{word-spacing:-8.238000px;}
.ws29b{word-spacing:-8.224200px;}
.ws310{word-spacing:-8.197200px;}
.ws2a{word-spacing:-8.172000px;}
.ws1df{word-spacing:-8.166000px;}
.ws169{word-spacing:-8.112000px;}
.ws1e4{word-spacing:-8.106000px;}
.ws1e0{word-spacing:-8.046000px;}
.ws115{word-spacing:-8.034000px;}
.ws2f{word-spacing:-8.028000px;}
.ws2a7{word-spacing:-8.008200px;}
.ws32b{word-spacing:-7.997400px;}
.wsd0{word-spacing:-7.992000px;}
.ws116{word-spacing:-7.974000px;}
.ws303{word-spacing:-7.965000px;}
.ws190{word-spacing:-7.959600px;}
.ws293{word-spacing:-7.954200px;}
.ws28f{word-spacing:-7.948800px;}
.ws84{word-spacing:-7.932000px;}
.ws31c{word-spacing:-7.927200px;}
.wse3{word-spacing:-7.921800px;}
.ws182{word-spacing:-7.916400px;}
.ws1a4{word-spacing:-7.911000px;}
.wsa6{word-spacing:-7.905600px;}
.ws16a{word-spacing:-7.902000px;}
.ws1bd{word-spacing:-7.900200px;}
.ws228{word-spacing:-7.896000px;}
.ws2bf{word-spacing:-7.894800px;}
.ws1be{word-spacing:-7.878600px;}
.wsbd{word-spacing:-7.867800px;}
.ws1f5{word-spacing:-7.860000px;}
.ws57{word-spacing:-7.851600px;}
.ws32f{word-spacing:-7.819200px;}
.ws2e4{word-spacing:-7.813800px;}
.ws273{word-spacing:-7.786800px;}
.ws36{word-spacing:-7.758000px;}
.ws322{word-spacing:-7.749000px;}
.ws55{word-spacing:-7.732800px;}
.wsc4{word-spacing:-7.722000px;}
.ws2a3{word-spacing:-7.705800px;}
.ws2bc{word-spacing:-7.700400px;}
.ws1a3{word-spacing:-7.689600px;}
.ws283{word-spacing:-7.678800px;}
.ws278{word-spacing:-7.668000px;}
.ws2ad{word-spacing:-7.662600px;}
.ws28c{word-spacing:-7.657200px;}
.ws1a7{word-spacing:-7.651800px;}
.ws287{word-spacing:-7.641000px;}
.ws231{word-spacing:-7.632000px;}
.ws2c7{word-spacing:-7.614000px;}
.wsc0{word-spacing:-7.597800px;}
.wse0{word-spacing:-7.570800px;}
.wsa2{word-spacing:-7.565400px;}
.ws2e0{word-spacing:-7.554600px;}
.ws19f{word-spacing:-7.554000px;}
.wse7{word-spacing:-7.538400px;}
.wsb7{word-spacing:-7.527600px;}
.ws2d7{word-spacing:-7.516800px;}
.ws2b1{word-spacing:-7.511400px;}
.ws2e1{word-spacing:-7.506000px;}
.wsd1{word-spacing:-7.495200px;}
.ws319{word-spacing:-7.473600px;}
.ws30a{word-spacing:-7.441200px;}
.ws201{word-spacing:-7.404000px;}
.ws2cc{word-spacing:-7.387200px;}
.wsd7{word-spacing:-7.376400px;}
.ws1b7{word-spacing:-7.350000px;}
.ws126{word-spacing:-7.296000px;}
.ws2f9{word-spacing:-7.273800px;}
.ws204{word-spacing:-7.248000px;}
.ws130{word-spacing:-7.218000px;}
.wsc8{word-spacing:-7.203600px;}
.wse5{word-spacing:-7.149600px;}
.wsc6{word-spacing:-7.144200px;}
.ws203{word-spacing:-7.134000px;}
.ws19e{word-spacing:-7.104000px;}
.ws269{word-spacing:-7.086000px;}
.wsb3{word-spacing:-7.074000px;}
.ws1e5{word-spacing:-7.068000px;}
.ws202{word-spacing:-7.044000px;}
.ws1b6{word-spacing:-7.014000px;}
.ws10a{word-spacing:-7.008000px;}
.ws27b{word-spacing:-6.987600px;}
.wsc7{word-spacing:-6.982200px;}
.ws13{word-spacing:-6.960000px;}
.ws10c{word-spacing:-6.948000px;}
.ws10b{word-spacing:-6.942000px;}
.ws108{word-spacing:-6.924000px;}
.ws18a{word-spacing:-6.921513px;}
.ws18f{word-spacing:-6.902314px;}
.ws94{word-spacing:-6.804000px;}
.ws14{word-spacing:-6.792000px;}
.ws187{word-spacing:-6.787115px;}
.ws22b{word-spacing:-6.738000px;}
.ws8a{word-spacing:-6.720000px;}
.ws1b5{word-spacing:-6.708000px;}
.ws109{word-spacing:-6.672000px;}
.wsad{word-spacing:-6.593400px;}
.ws1b2{word-spacing:-6.534000px;}
.ws299{word-spacing:-6.528600px;}
.ws1c3{word-spacing:-6.528000px;}
.ws1cb{word-spacing:-6.462000px;}
.ws30f{word-spacing:-6.426000px;}
.wsa8{word-spacing:-6.393600px;}
.ws12c{word-spacing:-6.384000px;}
.wsf3{word-spacing:-6.372000px;}
.ws2e9{word-spacing:-6.366600px;}
.ws2d6{word-spacing:-6.361200px;}
.ws2d5{word-spacing:-6.350400px;}
.ws40{word-spacing:-6.336000px;}
.ws1cc{word-spacing:-6.330000px;}
.wsa1{word-spacing:-6.296400px;}
.ws1c4{word-spacing:-6.282000px;}
.ws1c5{word-spacing:-6.270000px;}
.wsc1{word-spacing:-6.242400px;}
.ws2ce{word-spacing:-6.220800px;}
.ws305{word-spacing:-6.210000px;}
.wsc3{word-spacing:-6.199200px;}
.ws1c{word-spacing:-6.198000px;}
.ws88{word-spacing:-6.168000px;}
.ws5d{word-spacing:-6.156000px;}
.wsc2{word-spacing:-6.139800px;}
.ws17e{word-spacing:-6.120000px;}
.ws7d{word-spacing:-6.114000px;}
.ws17d{word-spacing:-6.102000px;}
.ws14b{word-spacing:-6.096000px;}
.ws149{word-spacing:-6.048000px;}
.ws2ae{word-spacing:-6.031800px;}
.ws29c{word-spacing:-6.004800px;}
.ws3c{word-spacing:-5.988000px;}
.wsf4{word-spacing:-5.950800px;}
.ws14a{word-spacing:-5.940000px;}
.ws216{word-spacing:-5.934000px;}
.ws292{word-spacing:-5.891400px;}
.wsbe{word-spacing:-5.859000px;}
.ws21c{word-spacing:-5.856000px;}
.ws170{word-spacing:-5.850000px;}
.ws2fb{word-spacing:-5.842800px;}
.ws2a0{word-spacing:-5.799600px;}
.ws16f{word-spacing:-5.742000px;}
.ws137{word-spacing:-5.736000px;}
.ws27f{word-spacing:-5.718600px;}
.ws1e2{word-spacing:-5.718000px;}
.ws111{word-spacing:-5.562000px;}
.ws62{word-spacing:-5.538000px;}
.wsd{word-spacing:-5.524731px;}
.ws205{word-spacing:-5.520000px;}
.ws144{word-spacing:-5.502000px;}
.ws19{word-spacing:-5.442000px;}
.ws1bf{word-spacing:-5.427000px;}
.wsf{word-spacing:-5.404732px;}
.wsfd{word-spacing:-5.367600px;}
.ws7b{word-spacing:-5.346000px;}
.ws1fe{word-spacing:-5.328000px;}
.ws1fd{word-spacing:-5.310000px;}
.ws28a{word-spacing:-5.259600px;}
.wsb4{word-spacing:-5.232600px;}
.ws103{word-spacing:-5.221800px;}
.ws200{word-spacing:-5.214000px;}
.ws9e{word-spacing:-5.190000px;}
.ws2f4{word-spacing:-5.184000px;}
.ws1fc{word-spacing:-5.178000px;}
.ws290{word-spacing:-5.151600px;}
.ws1ff{word-spacing:-5.106000px;}
.ws6b{word-spacing:-5.088000px;}
.ws2da{word-spacing:-5.027400px;}
.ws4f{word-spacing:-5.022000px;}
.wsfe{word-spacing:-4.935600px;}
.wsba{word-spacing:-4.914000px;}
.ws1a{word-spacing:-4.836000px;}
.ws2db{word-spacing:-4.833000px;}
.ws2d9{word-spacing:-4.789800px;}
.ws241{word-spacing:-4.746000px;}
.ws15f{word-spacing:-4.704000px;}
.ws1b1{word-spacing:-4.686000px;}
.ws4e{word-spacing:-4.632000px;}
.ws298{word-spacing:-4.568400px;}
.ws26{word-spacing:-4.548000px;}
.ws2fd{word-spacing:-4.519800px;}
.ws328{word-spacing:-4.492800px;}
.ws160{word-spacing:-4.488000px;}
.ws304{word-spacing:-4.444200px;}
.wsa3{word-spacing:-4.428000px;}
.wscd{word-spacing:-4.401000px;}
.ws3d{word-spacing:-4.278000px;}
.ws2f8{word-spacing:-4.185000px;}
.wsa5{word-spacing:-4.179600px;}
.ws265{word-spacing:-4.164000px;}
.ws306{word-spacing:-4.109400px;}
.ws291{word-spacing:-4.098600px;}
.ws1a0{word-spacing:-4.068000px;}
.wsa4{word-spacing:-4.044600px;}
.ws1c0{word-spacing:-3.990600px;}
.ws150{word-spacing:-3.948000px;}
.ws2fa{word-spacing:-3.947400px;}
.wsb1{word-spacing:-3.839400px;}
.ws9b{word-spacing:-3.828000px;}
.ws10d{word-spacing:-3.816000px;}
.ws239{word-spacing:-3.798000px;}
.ws20d{word-spacing:-3.786000px;}
.ws2ef{word-spacing:-3.763800px;}
.ws1a8{word-spacing:-3.726000px;}
.ws1c8{word-spacing:-3.660000px;}
.ws25{word-spacing:-3.642000px;}
.ws24{word-spacing:-3.600000px;}
.ws289{word-spacing:-3.493800px;}
.ws1c7{word-spacing:-3.468000px;}
.ws89{word-spacing:-3.462000px;}
.ws15a{word-spacing:-3.456000px;}
.ws288{word-spacing:-3.380400px;}
.ws158{word-spacing:-3.378000px;}
.ws123{word-spacing:-3.306000px;}
.ws159{word-spacing:-3.270000px;}
.ws312{word-spacing:-3.245400px;}
.ws28d{word-spacing:-3.180600px;}
.ws1bc{word-spacing:-3.180000px;}
.ws166{word-spacing:-3.174000px;}
.ws2e2{word-spacing:-3.159000px;}
.wsdd{word-spacing:-3.153600px;}
.ws211{word-spacing:-3.138000px;}
.ws29{word-spacing:-3.090000px;}
.ws28{word-spacing:-3.048000px;}
.wsdc{word-spacing:-3.029400px;}
.ws30d{word-spacing:-2.991600px;}
.ws1d3{word-spacing:-2.963332px;}
.wsdb{word-spacing:-2.953800px;}
.wsf2{word-spacing:-2.889000px;}
.ws1d0{word-spacing:-2.886000px;}
.ws71{word-spacing:-2.850000px;}
.ws151{word-spacing:-2.796000px;}
.ws327{word-spacing:-2.705400px;}
.ws3e{word-spacing:-2.700000px;}
.ws326{word-spacing:-2.624400px;}
.wscf{word-spacing:-2.608200px;}
.wsa0{word-spacing:-2.592000px;}
.ws212{word-spacing:-2.568000px;}
.ws102{word-spacing:-2.554200px;}
.ws221{word-spacing:-2.508000px;}
.ws3f{word-spacing:-2.490000px;}
.ws133{word-spacing:-2.454000px;}
.ws195{word-spacing:-2.442000px;}
.ws180{word-spacing:-2.430000px;}
.ws2c5{word-spacing:-2.424600px;}
.ws209{word-spacing:-2.370000px;}
.ws2a4{word-spacing:-2.257200px;}
.ws1e8{word-spacing:-2.238000px;}
.ws12e{word-spacing:-2.226000px;}
.ws2f2{word-spacing:-2.181600px;}
.ws2af{word-spacing:-2.165400px;}
.ws316{word-spacing:-2.138400px;}
.ws12f{word-spacing:-2.100000px;}
.ws22a{word-spacing:-2.028000px;}
.ws17b{word-spacing:-1.974000px;}
.ws2d0{word-spacing:-1.944000px;}
.ws1f1{word-spacing:-1.908000px;}
.ws17f{word-spacing:-1.902000px;}
.wsea{word-spacing:-1.868400px;}
.ws23{word-spacing:-1.854000px;}
.wse8{word-spacing:-1.814400px;}
.ws2e{word-spacing:-1.776600px;}
.ws39{word-spacing:-1.776000px;}
.ws1a1{word-spacing:-1.632000px;}
.ws22e{word-spacing:-1.601332px;}
.wsaa{word-spacing:-1.598400px;}
.ws284{word-spacing:-1.571400px;}
.wsac{word-spacing:-1.533600px;}
.wsab{word-spacing:-1.490400px;}
.ws2e3{word-spacing:-1.458000px;}
.ws210{word-spacing:-1.302000px;}
.wsc5{word-spacing:-1.204200px;}
.ws1e9{word-spacing:-1.038000px;}
.ws93{word-spacing:-0.966000px;}
.ws1ea{word-spacing:-0.948000px;}
.ws1a2{word-spacing:-0.930000px;}
.ws1c6{word-spacing:-0.900000px;}
.ws13d{word-spacing:-0.666000px;}
.ws4d{word-spacing:-0.642000px;}
.ws13e{word-spacing:-0.636000px;}
.ws1f9{word-spacing:-0.624000px;}
.ws214{word-spacing:-0.618000px;}
.ws267{word-spacing:-0.594000px;}
.ws2dd{word-spacing:-0.583200px;}
.ws1dd{word-spacing:-0.486000px;}
.ws7e{word-spacing:-0.462000px;}
.ws268{word-spacing:-0.444000px;}
.ws1dc{word-spacing:-0.402000px;}
.ws281{word-spacing:-0.280800px;}
.ws1ad{word-spacing:-0.246000px;}
.ws1ae{word-spacing:-0.180000px;}
.ws1d{word-spacing:-0.072000px;}
.ws1ac{word-spacing:-0.054000px;}
.wsfa{word-spacing:-0.016200px;}
.ws5f{word-spacing:0.000000px;}
.ws2c{word-spacing:0.042000px;}
.ws70{word-spacing:0.054000px;}
.ws47{word-spacing:0.060000px;}
.ws10{word-spacing:0.156000px;}
.ws27e{word-spacing:0.232200px;}
.ws21e{word-spacing:0.270000px;}
.wsfb{word-spacing:0.324000px;}
.ws174{word-spacing:0.354000px;}
.ws23a{word-spacing:0.366000px;}
.ws45{word-spacing:0.396000px;}
.wsfc{word-spacing:0.405000px;}
.ws8e{word-spacing:0.414000px;}
.ws2f7{word-spacing:0.486000px;}
.ws90{word-spacing:0.546000px;}
.ws31a{word-spacing:0.561600px;}
.ws2f6{word-spacing:0.583200px;}
.ws156{word-spacing:0.606000px;}
.ws82{word-spacing:0.870000px;}
.ws2a8{word-spacing:0.874800px;}
.ws83{word-spacing:0.906000px;}
.ws9a{word-spacing:1.008000px;}
.ws110{word-spacing:1.026000px;}
.ws26d{word-spacing:1.032000px;}
.ws79{word-spacing:1.074000px;}
.ws20{word-spacing:1.116668px;}
.wsbb{word-spacing:1.139400px;}
.ws1e3{word-spacing:1.164000px;}
.ws314{word-spacing:1.166400px;}
.ws20f{word-spacing:1.170000px;}
.ws12{word-spacing:1.182000px;}
.wsaf{word-spacing:1.193400px;}
.ws20c{word-spacing:1.194000px;}
.ws2ab{word-spacing:1.204200px;}
.ws307{word-spacing:1.247400px;}
.ws2dc{word-spacing:1.258200px;}
.ws280{word-spacing:1.409400px;}
.ws136{word-spacing:1.428000px;}
.wsbf{word-spacing:1.452600px;}
.ws2fe{word-spacing:1.474200px;}
.ws11d{word-spacing:1.758000px;}
.ws11b{word-spacing:1.770000px;}
.ws11c{word-spacing:1.830000px;}
.ws11{word-spacing:1.896000px;}
.ws1b8{word-spacing:1.902000px;}
.ws171{word-spacing:1.998000px;}
.ws13c{word-spacing:2.010000px;}
.ws20e{word-spacing:2.376000px;}
.ws106{word-spacing:2.826000px;}
.ws2df{word-spacing:2.851200px;}
.ws86{word-spacing:2.904000px;}
.ws2aa{word-spacing:2.953800px;}
.ws105{word-spacing:3.000000px;}
.wsd5{word-spacing:3.132000px;}
.ws313{word-spacing:3.159000px;}
.wsd3{word-spacing:3.186000px;}
.ws321{word-spacing:3.234600px;}
.ws215{word-spacing:3.294000px;}
.ws72{word-spacing:3.432000px;}
.ws31f{word-spacing:3.650400px;}
.ws1ce{word-spacing:3.684000px;}
.ws1d4{word-spacing:3.798000px;}
.ws1cf{word-spacing:3.834000px;}
.ws11a{word-spacing:3.882000px;}
.ws1d5{word-spacing:3.900000px;}
.ws1e1{word-spacing:3.954000px;}
.ws1fa{word-spacing:4.008000px;}
.ws2cb{word-spacing:4.039200px;}
.ws26e{word-spacing:4.206000px;}
.ws58{word-spacing:4.249800px;}
.ws240{word-spacing:4.374000px;}
.ws1f6{word-spacing:4.470000px;}
.ws2f3{word-spacing:4.773600px;}
.ws31b{word-spacing:4.795200px;}
.ws317{word-spacing:5.005800px;}
.ws43{word-spacing:5.124000px;}
.wscc{word-spacing:5.356800px;}
.ws98{word-spacing:5.796000px;}
.ws121{word-spacing:5.826000px;}
.ws15b{word-spacing:5.838000px;}
.ws120{word-spacing:5.976000px;}
.ws32d{word-spacing:6.037200px;}
.wsbc{word-spacing:6.091200px;}
.ws35{word-spacing:6.138000px;}
.wse2{word-spacing:6.161400px;}
.wse1{word-spacing:6.372000px;}
.ws7a{word-spacing:6.450000px;}
.ws26c{word-spacing:6.618000px;}
.wsf8{word-spacing:6.966000px;}
.ws6e{word-spacing:7.512000px;}
.ws1d6{word-spacing:7.752000px;}
.ws73{word-spacing:8.154000px;}
.ws295{word-spacing:8.364600px;}
.ws2a1{word-spacing:8.586000px;}
.ws333{word-spacing:9.142200px;}
.ws26b{word-spacing:9.180000px;}
.ws8b{word-spacing:9.246000px;}
.ws191{word-spacing:9.582000px;}
.ws308{word-spacing:9.649800px;}
.wsff{word-spacing:9.682200px;}
.ws29f{word-spacing:9.844200px;}
.ws69{word-spacing:9.894000px;}
.ws2a9{word-spacing:9.984600px;}
.ws2a5{word-spacing:10.006200px;}
.wsf9{word-spacing:10.017000px;}
.ws324{word-spacing:10.027800px;}
.wsda{word-spacing:10.054800px;}
.ws27a{word-spacing:10.087200px;}
.ws311{word-spacing:10.092600px;}
.ws2b0{word-spacing:10.103400px;}
.wse4{word-spacing:10.108800px;}
.ws302{word-spacing:10.114200px;}
.ws140{word-spacing:10.140000px;}
.ws294{word-spacing:10.141200px;}
.ws309{word-spacing:10.243800px;}
.ws30e{word-spacing:10.254600px;}
.ws320{word-spacing:10.292400px;}
.ws325{word-spacing:10.297800px;}
.ws2b4{word-spacing:10.405800px;}
.ws141{word-spacing:10.470000px;}
.ws262{word-spacing:11.082000px;}
.ws3b{word-spacing:11.112000px;}
.ws6f{word-spacing:11.118000px;}
.ws266{word-spacing:11.136000px;}
.ws68{word-spacing:11.160000px;}
.ws223{word-spacing:11.166000px;}
.ws220{word-spacing:11.172000px;}
.ws264{word-spacing:11.178000px;}
.ws13a{word-spacing:11.184000px;}
.ws96{word-spacing:11.190000px;}
.ws125{word-spacing:11.196000px;}
.ws37{word-spacing:11.208000px;}
.ws16{word-spacing:11.214000px;}
.ws112{word-spacing:11.220000px;}
.ws129{word-spacing:11.232000px;}
.ws138{word-spacing:11.244000px;}
.ws230{word-spacing:11.250000px;}
.ws15{word-spacing:11.256000px;}
.ws6a{word-spacing:11.262000px;}
.ws128{word-spacing:11.268000px;}
.ws26a{word-spacing:11.274000px;}
.ws145{word-spacing:11.280000px;}
.ws206{word-spacing:11.304000px;}
.ws222{word-spacing:11.340000px;}
.ws152{word-spacing:11.352000px;}
.ws132{word-spacing:11.394000px;}
.ws139{word-spacing:11.418000px;}
.ws124{word-spacing:11.430000px;}
.ws14e{word-spacing:11.472000px;}
.ws1de{word-spacing:11.478000px;}
.ws17a{word-spacing:11.484000px;}
.ws114{word-spacing:11.496000px;}
.ws113{word-spacing:11.502000px;}
.ws1b4{word-spacing:11.520000px;}
.ws19d{word-spacing:11.526000px;}
.ws14f{word-spacing:11.538000px;}
.ws263{word-spacing:11.568000px;}
.ws131{word-spacing:11.610000px;}
.ws1ca{word-spacing:11.658000px;}
.ws56{word-spacing:19.261800px;}
.ws23e{word-spacing:22.107372px;}
.wse{word-spacing:23.381938px;}
.ws54{word-spacing:24.229800px;}
.wseb{word-spacing:60.304377px;}
.ws186{word-spacing:118.073724px;}
.ws188{word-spacing:118.088124px;}
.ws18e{word-spacing:224.286796px;}
.wsc{word-spacing:321.527400px;}
.wsd2{word-spacing:587.412000px;}
.wsec{word-spacing:727.661304px;}
._e{margin-left:-2981.957925px;}
._2c{margin-left:-3.402000px;}
._1f{margin-left:-2.251172px;}
._17{margin-left:-1.080000px;}
._1b{width:1.404000px;}
._2b{width:3.124800px;}
._2a{width:11.750400px;}
._f{width:13.456800px;}
._a{width:15.111000px;}
._7{width:17.004000px;}
._1{width:18.775800px;}
._c{width:19.846200px;}
._9{width:21.125400px;}
._5{width:22.770000px;}
._8{width:24.486000px;}
._b{width:26.076000px;}
._0{width:27.081392px;}
._15{width:28.139400px;}
._13{width:29.724000px;}
._4{width:30.888000px;}
._16{width:32.146200px;}
._14{width:33.174000px;}
._d{width:34.686000px;}
._1e{width:35.736000px;}
._12{width:37.146000px;}
._1c{width:38.259000px;}
._11{width:39.624000px;}
._6{width:41.748000px;}
._19{width:71.658000px;}
._29{width:75.876000px;}
._28{width:79.578000px;}
._18{width:80.730000px;}
._10{width:87.188280px;}
._20{width:141.166235px;}
._1a{width:244.836000px;}
._25{width:247.129711px;}
._24{width:254.492819px;}
._21{width:277.340533px;}
._3{width:280.619744px;}
._22{width:304.344996px;}
._27{width:327.471107px;}
._2{width:457.807763px;}
._1d{width:711.263400px;}
._26{width:985.485281px;}
._23{width:1008.332996px;}
.fc5{color:rgb(209,163,84);}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc1{color:rgb(13,84,166);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:32.158200px;}
.fs12{font-size:35.995200px;}
.fse{font-size:36.000000px;}
.fs13{font-size:36.178800px;}
.fsc{font-size:37.800000px;}
.fs15{font-size:37.825326px;}
.fs19{font-size:39.186000px;}
.fsa{font-size:39.995400px;}
.fs8{font-size:40.199400px;}
.fs6{font-size:41.248800px;}
.fsb{font-size:41.998800px;}
.fsf{font-size:42.000000px;}
.fsd{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fs10{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs14{font-size:54.036180px;}
.fs11{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs18{font-size:71.248800px;}
.fs5{font-size:74.999400px;}
.fs1{font-size:77.999400px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fs17{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:1.257692px;}
.ye0{bottom:4.687639px;}
.ycb{bottom:5.575500px;}
.ye2{bottom:11.706938px;}
.y1{bottom:13.436250px;}
.ydf{bottom:14.954513px;}
.ye7{bottom:22.621350px;}
.ye1{bottom:23.600302px;}
.y53{bottom:27.553650px;}
.ycc{bottom:29.160000px;}
.ye6{bottom:32.399850px;}
.y51{bottom:35.207040px;}
.y52{bottom:37.332150px;}
.yca{bottom:39.595500px;}
.y50{bottom:43.880250px;}
.y14b{bottom:59.952600px;}
.y1a6{bottom:59.953200px;}
.y182{bottom:59.953350px;}
.y14f{bottom:59.953500px;}
.y228{bottom:59.954100px;}
.y149{bottom:59.954250px;}
.y9c{bottom:59.955750px;}
.ye4{bottom:63.354300px;}
.y14a{bottom:66.670800px;}
.y3a{bottom:68.712600px;}
.yde{bottom:73.474050px;}
.y14e{bottom:75.004650px;}
.y2a6{bottom:75.005400px;}
.y2ea{bottom:75.175500px;}
.y227{bottom:76.451100px;}
.y148{bottom:76.451250px;}
.y181{bottom:76.535850px;}
.y200{bottom:76.622250px;}
.y1d3{bottom:76.791750px;}
.y25f{bottom:77.048250px;}
.y9b{bottom:78.068250px;}
.y18a{bottom:78.152850px;}
.y199{bottom:79.259250px;}
.y1a5{bottom:79.427700px;}
.y39{bottom:85.550100px;}
.y2a5{bottom:89.972850px;}
.y2e9{bottom:90.313050px;}
.y147{bottom:92.949750px;}
.y180{bottom:93.118350px;}
.y1ff{bottom:93.290250px;}
.y1d2{bottom:93.543750px;}
.y25e{bottom:94.142250px;}
.y9a{bottom:96.266250px;}
.y189{bottom:96.350850px;}
.y226{bottom:97.455600px;}
.y198{bottom:98.562750px;}
.y1a4{bottom:98.816700px;}
.y38{bottom:102.387600px;}
.y2a4{bottom:104.938950px;}
.y2e8{bottom:105.449250px;}
.ydd{bottom:109.276350px;}
.y146{bottom:109.446750px;}
.y17f{bottom:109.700850px;}
.y1fe{bottom:109.958250px;}
.y1d1{bottom:110.297250px;}
.y25d{bottom:111.234750px;}
.y225{bottom:113.952600px;}
.y99{bottom:114.380250px;}
.y188{bottom:114.548850px;}
.y197{bottom:116.505750px;}
.y1a3{bottom:118.289700px;}
.y1a1{bottom:118.292250px;}
.y37{bottom:119.225100px;}
.y35{bottom:119.226750px;}
.y2a3{bottom:119.991450px;}
.y2e7{bottom:120.671850px;}
.y4e{bottom:123.903750px;}
.ydc{bottom:124.157550px;}
.y1a2{bottom:124.922700px;}
.y36{bottom:125.943150px;}
.y145{bottom:125.943750px;}
.y17e{bottom:126.283350px;}
.y1fd{bottom:126.626250px;}
.y1d0{bottom:127.134750px;}
.y25c{bottom:128.327250px;}
.y98{bottom:132.492750px;}
.y187{bottom:132.745350px;}
.y223{bottom:134.957400px;}
.y2a2{bottom:134.958900px;}
.y2e6{bottom:135.639300px;}
.y196{bottom:135.810750px;}
.y34{bottom:136.148250px;}
.y224{bottom:136.913250px;}
.y1a0{bottom:137.681250px;}
.ydb{bottom:138.954900px;}
.y4d{bottom:140.400750px;}
.y144{bottom:142.442250px;}
.y1fc{bottom:143.292750px;}
.y1cf{bottom:143.886750px;}
.y25b{bottom:145.334250px;}
.y222{bottom:148.818750px;}
.y17d{bottom:149.499750px;}
.y2a1{bottom:150.010050px;}
.y97{bottom:150.606750px;}
.y2e5{bottom:150.860550px;}
.y186{bottom:150.943350px;}
.y33{bottom:152.985750px;}
.yda{bottom:153.837300px;}
.y195{bottom:155.114250px;}
.y4c{bottom:156.897750px;}
.y19f{bottom:157.070250px;}
.y143{bottom:158.939250px;}
.y1fb{bottom:159.960750px;}
.y1ce{bottom:160.724250px;}
.y25a{bottom:162.428250px;}
.y2a0{bottom:164.977500px;}
.y2e4{bottom:165.998100px;}
.yd9{bottom:168.633300px;}
.y96{bottom:168.719250px;}
.y185{bottom:169.142850px;}
.y31{bottom:169.824750px;}
.y17b{bottom:171.609750px;}
.y194{bottom:174.332250px;}
.y142{bottom:175.521750px;}
.y32{bottom:176.456250px;}
.y19e{bottom:176.543250px;}
.y1fa{bottom:176.628750px;}
.y1cd{bottom:177.477750px;}
.y17c{bottom:178.242750px;}
.y259{bottom:179.520750px;}
.y29f{bottom:179.943600px;}
.y2e3{bottom:181.134300px;}
.yd8{bottom:183.515700px;}
.y221{bottom:185.558250px;}
.y184{bottom:186.490350px;}
.y30{bottom:186.662250px;}
.y95{bottom:186.833250px;}
.y17a{bottom:188.106750px;}
.y141{bottom:192.018750px;}
.y1f9{bottom:193.296750px;}
.y193{bottom:193.635750px;}
.y1cc{bottom:194.145750px;}
.y29e{bottom:194.996100px;}
.y4b{bottom:195.165750px;}
.y19d{bottom:195.932250px;}
.y2e2{bottom:196.356900px;}
.y258{bottom:196.613250px;}
.yd7{bottom:198.397050px;}
.y220{bottom:202.055250px;}
.y2f{bottom:203.499750px;}
.y183{bottom:204.688350px;}
.y179{bottom:204.689250px;}
.y94{bottom:205.031250px;}
.y1f8{bottom:209.963250px;}
.y29d{bottom:209.963550px;}
.y1cb{bottom:210.897750px;}
.y2e1{bottom:211.324350px;}
.y4a{bottom:211.832250px;}
.y48{bottom:211.833750px;}
.y192{bottom:212.940750px;}
.yd6{bottom:213.194400px;}
.y257{bottom:213.621750px;}
.y19c{bottom:213.960750px;}
.y140{bottom:214.299750px;}
.y49{bottom:218.550750px;}
.y21f{bottom:218.553750px;}
.y2d{bottom:220.251750px;}
.y93{bottom:223.145250px;}
.y29c{bottom:225.014700px;}
.y2e0{bottom:226.545600px;}
.y1f7{bottom:226.631250px;}
.y2e{bottom:226.884750px;}
.y1ca{bottom:227.651250px;}
.yd5{bottom:228.076800px;}
.y47{bottom:228.585750px;}
.y256{bottom:230.714250px;}
.y191{bottom:232.244250px;}
.y19b{bottom:233.349750px;}
.y21e{bottom:235.050750px;}
.y13f{bottom:235.476750px;}
.y18d{bottom:236.921100px;}
.y2c{bottom:237.089250px;}
.y2a{bottom:237.090750px;}
.y29b{bottom:239.982150px;}
.y92{bottom:240.407250px;}
.y2df{bottom:241.683150px;}
.yd4{bottom:242.957850px;}
.y1f6{bottom:243.213750px;}
.y2b{bottom:243.722250px;}
.y1c9{bottom:244.488750px;}
.y46{bottom:245.253750px;}
.y255{bottom:247.806750px;}
.y190{bottom:251.547750px;}
.y18c{bottom:251.972250px;}
.y13e{bottom:251.973750px;}
.y19a{bottom:252.738750px;}
.y29{bottom:253.929750px;}
.y29a{bottom:254.948250px;}
.y2de{bottom:256.819350px;}
.yd3{bottom:257.755200px;}
.y91{bottom:258.521250px;}
.y1f5{bottom:259.881750px;}
.y1c8{bottom:261.242250px;}
.y45{bottom:262.005750px;}
.y43{bottom:262.007250px;}
.y254{bottom:264.899250px;}
.y21d{bottom:268.046250px;}
.y13d{bottom:268.470750px;}
.y44{bottom:268.638750px;}
.y299{bottom:270.000750px;}
.y28{bottom:270.767250px;}
.y18f{bottom:270.851250px;}
.y2dd{bottom:271.871850px;}
.yd2{bottom:272.636850px;}
.y1f4{bottom:276.549750px;}
.y90{bottom:276.719250px;}
.y1c7{bottom:277.995750px;}
.y42{bottom:278.759250px;}
.y253{bottom:281.991750px;}
.y21c{bottom:284.543250px;}
.y298{bottom:284.968200px;}
.y13c{bottom:284.969250px;}
.y2dc{bottom:287.009400px;}
.yd1{bottom:287.434200px;}
.y27{bottom:287.688750px;}
.y18e{bottom:290.154750px;}
.y1f3{bottom:293.216250px;}
.y8e{bottom:294.831750px;}
.y1c6{bottom:294.833250px;}
.y41{bottom:295.427250px;}
.y252{bottom:299.000250px;}
.y297{bottom:300.019350px;}
.y21b{bottom:301.040250px;}
.y8f{bottom:301.464750px;}
.y13b{bottom:301.466250px;}
.y2db{bottom:302.145600px;}
.yd0{bottom:302.316150px;}
.y25{bottom:304.356750px;}
.y1f2{bottom:309.798750px;}
.y26{bottom:310.988250px;}
.y1c5{bottom:311.585250px;}
.y40{bottom:312.179250px;}
.y8d{bottom:312.945750px;}
.y296{bottom:314.986800px;}
.y251{bottom:316.092750px;}
.ycf{bottom:317.197200px;}
.y2da{bottom:317.368200px;}
.y21a{bottom:317.538750px;}
.y13a{bottom:317.963250px;}
.y23{bottom:321.194250px;}
.y1aa{bottom:322.384650px;}
.y1f1{bottom:326.466750px;}
.y24{bottom:327.827250px;}
.y1c4{bottom:328.422750px;}
.y3f{bottom:328.847250px;}
.y295{bottom:329.954250px;}
.y8c{bottom:331.058250px;}
.yce{bottom:331.994550px;}
.y2d9{bottom:332.504400px;}
.y250{bottom:333.185250px;}
.y219{bottom:334.035750px;}
.y139{bottom:334.461750px;}
.y1a9{bottom:337.437150px;}
.y22{bottom:338.031750px;}
.y1f0{bottom:343.134750px;}
.y294{bottom:345.005400px;}
.y1c3{bottom:345.176250px;}
.y3e{bottom:345.599250px;}
.y2d8{bottom:347.556900px;}
.y8b{bottom:349.170750px;}
.y24f{bottom:350.277750px;}
.y218{bottom:350.532750px;}
.y138{bottom:350.958750px;}
.y1a8{bottom:352.403250px;}
.y21{bottom:354.869250px;}
.y56{bottom:357.195000px;}
.ycd{bottom:359.631750px;}
.y1ef{bottom:359.802750px;}
.y293{bottom:359.972850px;}
.y1c2{bottom:361.928250px;}
.y3c{bottom:362.180100px;}
.y2d7{bottom:362.694450px;}
.yfd{bottom:364.989750px;}
.y217{bottom:367.031250px;}
.y89{bottom:367.286250px;}
.y137{bottom:367.455750px;}
.y24e{bottom:367.794750px;}
.y3d{bottom:368.900250px;}
.yc9{bottom:369.751500px;}
.y16c{bottom:373.833750px;}
.y154{bottom:373.835250px;}
.y8a{bottom:374.003250px;}
.y292{bottom:374.938950px;}
.y1ee{bottom:376.469250px;}
.y2d6{bottom:377.830650px;}
.y20{bottom:378.339750px;}
.y1c1{bottom:378.765750px;}
.y3b{bottom:378.933600px;}
.y155{bottom:380.465250px;}
.yfc{bottom:381.486750px;}
.y216{bottom:383.528250px;}
.y135{bottom:383.952750px;}
.y88{bottom:385.400250px;}
.y291{bottom:389.991450px;}
.y153{bottom:390.332250px;}
.y16b{bottom:390.501750px;}
.y136{bottom:390.671250px;}
.y2d5{bottom:393.053250px;}
.y1ed{bottom:393.137250px;}
.y1c0{bottom:395.519250px;}
.y215{bottom:400.026750px;}
.y134{bottom:400.449750px;}
.yfb{bottom:402.491250px;}
.y87{bottom:403.598250px;}
.y290{bottom:404.958900px;}
.y152{bottom:406.829250px;}
.y16a{bottom:407.169750px;}
.y2d4{bottom:408.019350px;}
.y1ec{bottom:409.805250px;}
.y24d{bottom:411.249750px;}
.y1bf{bottom:412.187250px;}
.y214{bottom:416.525250px;}
.y132{bottom:416.948250px;}
.y28f{bottom:420.010050px;}
.y86{bottom:421.710750px;}
.y2d3{bottom:423.241950px;}
.y151{bottom:423.327750px;}
.y133{bottom:423.665250px;}
.y169{bottom:423.921750px;}
.y1eb{bottom:426.471750px;}
.y55{bottom:426.690000px;}
.yfa{bottom:426.812250px;}
.y1be{bottom:428.939250px;}
.y1f{bottom:430.640250px;}
.y213{bottom:433.022250px;}
.y131{bottom:433.446750px;}
.yc8{bottom:433.616700px;}
.y24c{bottom:434.805750px;}
.y28e{bottom:434.977500px;}
.y2d2{bottom:438.379500px;}
.y85{bottom:439.824750px;}
.y168{bottom:440.589750px;}
.y1e9{bottom:443.057250px;}
.y1bd{bottom:445.692750px;}
.yc7{bottom:448.497750px;}
.y212{bottom:449.519250px;}
.y1ea{bottom:449.688750px;}
.y28d{bottom:449.943600px;}
.y130{bottom:449.943750px;}
.y1e{bottom:451.644750px;}
.y2d1{bottom:453.515700px;}
.y150{bottom:456.321750px;}
.y167{bottom:457.341750px;}
.y165{bottom:457.343250px;}
.yf9{bottom:457.512300px;}
.y84{bottom:457.937250px;}
.y1e8{bottom:459.723750px;}
.y1bc{bottom:462.530250px;}
.yc6{bottom:463.295100px;}
.y166{bottom:463.974750px;}
.y28c{bottom:464.996100px;}
.y211{bottom:466.017750px;}
.y12f{bottom:466.440750px;}
.y1d{bottom:468.143250px;}
.y2d0{bottom:468.738300px;}
.y24b{bottom:468.906750px;}
.yf8{bottom:472.393350px;}
.y164{bottom:474.009750px;}
.y82{bottom:475.286250px;}
.y1e7{bottom:476.391750px;}
.yc5{bottom:478.177500px;}
.y1bb{bottom:479.282250px;}
.y28b{bottom:479.963550px;}
.y83{bottom:481.917750px;}
.y210{bottom:482.514750px;}
.y12d{bottom:482.940750px;}
.y2cf{bottom:483.704400px;}
.y1c{bottom:484.640250px;}
.y24a{bottom:485.405250px;}
.yf7{bottom:487.275750px;}
.y12e{bottom:489.656250px;}
.y163{bottom:490.677750px;}
.yc4{bottom:493.058550px;}
.y1e6{bottom:493.059750px;}
.y81{bottom:493.398750px;}
.y28a{bottom:495.014700px;}
.y1ba{bottom:496.034250px;}
.y178{bottom:497.904750px;}
.y2ce{bottom:498.927000px;}
.y20f{bottom:499.011750px;}
.y12c{bottom:499.437750px;}
.y1b{bottom:501.137250px;}
.yf6{bottom:502.071750px;}
.yf4{bottom:502.073250px;}
.y162{bottom:507.431250px;}
.yc3{bottom:507.855900px;}
.y249{bottom:507.857250px;}
.yf5{bottom:508.110750px;}
.y1e5{bottom:509.727750px;}
.y289{bottom:509.982150px;}
.y80{bottom:511.512750px;}
.y2cd{bottom:514.064550px;}
.y177{bottom:514.317750px;}
.y20e{bottom:515.510250px;}
.y12b{bottom:516.020250px;}
.yf3{bottom:516.954300px;}
.y1a{bottom:517.719750px;}
.y1b9{bottom:519.504750px;}
.yc2{bottom:522.738300px;}
.y161{bottom:524.097750px;}
.y248{bottom:524.354250px;}
.y288{bottom:524.948250px;}
.y1e4{bottom:526.394250px;}
.y2cc{bottom:529.200750px;}
.y7f{bottom:529.625250px;}
.y176{bottom:530.730750px;}
.yf2{bottom:531.751650px;}
.y20d{bottom:532.007250px;}
.y12a{bottom:532.517250px;}
.y19{bottom:534.218250px;}
.yc1{bottom:537.534300px;}
.y287{bottom:540.000750px;}
.y160{bottom:540.851250px;}
.y1b8{bottom:541.530750px;}
.y1e3{bottom:543.062250px;}
.y2cb{bottom:544.423350px;}
.y175{bottom:547.143750px;}
.y7e{bottom:547.739250px;}
.y20c{bottom:548.504250px;}
.y129{bottom:549.014250px;}
.y127{bottom:549.015750px;}
.y18{bottom:550.715250px;}
.yc0{bottom:552.416700px;}
.y286{bottom:554.968200px;}
.y128{bottom:555.647250px;}
.y247{bottom:557.349750px;}
.y15f{bottom:557.517750px;}
.y15d{bottom:557.519250px;}
.y1b7{bottom:558.284250px;}
.y2ca{bottom:559.389450px;}
.y1e2{bottom:559.730250px;}
.y174{bottom:563.555250px;}
.y15e{bottom:564.236250px;}
.y20b{bottom:565.002750px;}
.y126{bottom:565.512750px;}
.y7d{bottom:565.851750px;}
.y7b{bottom:565.853250px;}
.y17{bottom:567.213750px;}
.ybf{bottom:567.297750px;}
.y285{bottom:570.019350px;}
.y7c{bottom:572.570250px;}
.y246{bottom:573.846750px;}
.y15c{bottom:574.272750px;}
.y2c9{bottom:574.527000px;}
.y1b6{bottom:575.123250px;}
.y14d{bottom:575.632650px;}
.y1e1{bottom:576.312750px;}
.y173{bottom:579.968250px;}
.y20a{bottom:581.499750px;}
.y125{bottom:582.009750px;}
.ybe{bottom:582.095100px;}
.y16{bottom:583.712250px;}
.y7a{bottom:584.051250px;}
.y284{bottom:584.986800px;}
.y2c8{bottom:589.748250px;}
.y245{bottom:590.345250px;}
.y14c{bottom:590.598750px;}
.y15b{bottom:590.939250px;}
.y1b5{bottom:591.875250px;}
.y1e0{bottom:592.980750px;}
.y172{bottom:596.382092px;}
.ybd{bottom:596.977500px;}
.y209{bottom:597.996750px;}
.y124{bottom:598.506750px;}
.y122{bottom:598.508250px;}
.y283{bottom:599.954250px;}
.y15{bottom:600.209250px;}
.y79{bottom:602.163750px;}
.y2c7{bottom:604.885800px;}
.y123{bottom:605.139750px;}
.y244{bottom:606.843750px;}
.y15a{bottom:607.607250px;}
.y1b4{bottom:608.627250px;}
.y1df{bottom:609.647250px;}
.ybc{bottom:611.858550px;}
.y121{bottom:615.005250px;}
.y282{bottom:615.005400px;}
.y171{bottom:615.770250px;}
.y14{bottom:616.707750px;}
.y208{bottom:619.001250px;}
.y77{bottom:619.427250px;}
.y2c6{bottom:619.938300px;}
.y243{bottom:623.340750px;}
.y159{bottom:624.360750px;}
.y1b2{bottom:625.464750px;}
.y78{bottom:626.144250px;}
.y1de{bottom:626.315250px;}
.ybb{bottom:626.655900px;}
.y281{bottom:629.972850px;}
.y120{bottom:631.502250px;}
.y1b3{bottom:632.097750px;}
.y13{bottom:633.204750px;}
.y2c5{bottom:635.074500px;}
.y76{bottom:637.539750px;}
.y242{bottom:639.837750px;}
.y158{bottom:641.027250px;}
.y170{bottom:641.198250px;}
.yba{bottom:641.538300px;}
.y1b1{bottom:642.218250px;}
.y1dd{bottom:642.983250px;}
.y280{bottom:645.024000px;}
.y11e{bottom:648.000750px;}
.y12{bottom:649.701750px;}
.y207{bottom:649.787250px;}
.y2c4{bottom:650.212050px;}
.y306{bottom:653.953800px;}
.y11f{bottom:654.633750px;}
.y75{bottom:655.737750px;}
.yb9{bottom:656.334300px;}
.y241{bottom:656.336250px;}
.y16f{bottom:657.695250px;}
.y157{bottom:657.780750px;}
.y1b0{bottom:658.970250px;}
.y1da{bottom:659.646750px;}
.y1dc{bottom:659.649750px;}
.y27f{bottom:659.991450px;}
.y11d{bottom:664.499250px;}
.y2c3{bottom:665.433300px;}
.y11{bottom:666.200250px;}
.y206{bottom:666.284250px;}
.y1db{bottom:666.368250px;}
.y305{bottom:669.004950px;}
.yb8{bottom:671.216700px;}
.y240{bottom:672.833250px;}
.y73{bottom:673.002750px;}
.y16e{bottom:674.192250px;}
.y156{bottom:674.447250px;}
.y27e{bottom:674.958900px;}
.y1af{bottom:675.807750px;}
.y1d9{bottom:676.313250px;}
.y74{bottom:679.719750px;}
.y2c2{bottom:680.570850px;}
.y11c{bottom:680.996250px;}
.y10{bottom:682.697250px;}
.y205{bottom:682.781250px;}
.y304{bottom:683.972400px;}
.yb7{bottom:686.097750px;}
.y23f{bottom:689.415750px;}
.y27d{bottom:690.010050px;}
.y72{bottom:691.115250px;}
.y1ae{bottom:692.561250px;}
.y1d8{bottom:692.981250px;}
.y2c1{bottom:695.623350px;}
.y11b{bottom:697.494750px;}
.y303{bottom:698.939850px;}
.yf{bottom:699.194250px;}
.y204{bottom:699.279750px;}
.y27c{bottom:704.977500px;}
.y23e{bottom:705.912750px;}
.y16d{bottom:706.676250px;}
.yb6{bottom:707.016750px;}
.y71{bottom:709.229250px;}
.y1d7{bottom:709.563750px;}
.y2c0{bottom:710.759550px;}
.y302{bottom:713.991000px;}
.y11a{bottom:713.991750px;}
.ye{bottom:715.692750px;}
.y203{bottom:715.776750px;}
.y27b{bottom:719.943600px;}
.y1a7{bottom:720.453750px;}
.y23d{bottom:722.411250px;}
.y2bf{bottom:725.897100px;}
.y1ad{bottom:725.981250px;}
.y1d6{bottom:726.231750px;}
.y70{bottom:727.427250px;}
.yb5{bottom:728.446800px;}
.y301{bottom:728.958450px;}
.y119{bottom:730.488750px;}
.yd{bottom:732.189750px;}
.y202{bottom:732.273750px;}
.y27a{bottom:734.996100px;}
.y23c{bottom:738.908250px;}
.y2be{bottom:741.118350px;}
.y1ac{bottom:742.733250px;}
.y1d5{bottom:742.899750px;}
.yb4{bottom:743.329200px;}
.y300{bottom:744.009600px;}
.y6f{bottom:745.539750px;}
.y117{bottom:746.985750px;}
.yc{bottom:748.686750px;}
.y279{bottom:749.963550px;}
.y118{bottom:753.618750px;}
.y23b{bottom:755.405250px;}
.y2bd{bottom:756.085800px;}
.yb3{bottom:758.210250px;}
.y2ff{bottom:758.977050px;}
.y1d4{bottom:759.566250px;}
.y1ab{bottom:759.570750px;}
.y116{bottom:763.484250px;}
.y6e{bottom:763.653750px;}
.y278{bottom:765.014700px;}
.yb{bottom:765.185250px;}
.y2bc{bottom:771.223350px;}
.yb2{bottom:773.007600px;}
.y2fe{bottom:773.944500px;}
.y23a{bottom:778.620750px;}
.y115{bottom:779.981250px;}
.y277{bottom:779.982150px;}
.y113{bottom:779.982750px;}
.y263{bottom:780.151200px;}
.ya{bottom:781.682250px;}
.y6d{bottom:781.766250px;}
.y6b{bottom:781.769250px;}
.y2bb{bottom:786.444600px;}
.y114{bottom:786.614250px;}
.yb1{bottom:787.890000px;}
.y6c{bottom:788.399250px;}
.y2fd{bottom:788.995650px;}
.y201{bottom:791.801250px;}
.y276{bottom:794.948250px;}
.y262{bottom:795.118650px;}
.y112{bottom:796.479750px;}
.y9{bottom:798.179250px;}
.y6a{bottom:799.881750px;}
.y2ba{bottom:801.412050px;}
.yb0{bottom:802.771050px;}
.y2fc{bottom:803.963100px;}
.y239{bottom:808.214250px;}
.y275{bottom:810.000750px;}
.y260{bottom:810.084750px;}
.y18b{bottom:810.255750px;}
.y111{bottom:812.976750px;}
.y261{bottom:816.122250px;}
.y2b9{bottom:816.633300px;}
.y69{bottom:817.230750px;}
.yaf{bottom:817.568400px;}
.y2fb{bottom:819.014250px;}
.y238{bottom:824.712750px;}
.y274{bottom:824.968200px;}
.y110{bottom:829.473750px;}
.y2b8{bottom:831.770850px;}
.yae{bottom:832.450800px;}
.y7{bottom:833.385750px;}
.y2fa{bottom:833.981700px;}
.y68{bottom:835.343250px;}
.y8{bottom:835.427250px;}
.y273{bottom:840.019350px;}
.y237{bottom:841.211250px;}
.y10f{bottom:845.970750px;}
.y10d{bottom:845.972250px;}
.y2b7{bottom:846.908400px;}
.yad{bottom:847.246800px;}
.y2f9{bottom:848.949150px;}
.y10e{bottom:852.689250px;}
.y67{bottom:853.457250px;}
.y272{bottom:854.986800px;}
.y236{bottom:857.708250px;}
.y2b6{bottom:861.959550px;}
.yac{bottom:862.129200px;}
.y10c{bottom:862.469250px;}
.y2f8{bottom:864.000300px;}
.y271{bottom:869.954250px;}
.y66{bottom:871.569750px;}
.y235{bottom:874.205250px;}
.yab{bottom:877.010250px;}
.ya9{bottom:877.011300px;}
.y2b5{bottom:877.097100px;}
.y10b{bottom:878.967750px;}
.yaa{bottom:882.963750px;}
.y270{bottom:885.005400px;}
.y6{bottom:887.300250px;}
.y65{bottom:889.683750px;}
.y234{bottom:890.703750px;}
.ya8{bottom:891.807300px;}
.y2b4{bottom:892.318350px;}
.y2f7{bottom:894.020250px;}
.y10a{bottom:895.464750px;}
.y26f{bottom:899.972850px;}
.ya7{bottom:906.689700px;}
.y233{bottom:907.200750px;}
.y2b3{bottom:907.455900px;}
.y64{bottom:907.881750px;}
.y2f6{bottom:908.986350px;}
.y109{bottom:911.963250px;}
.y26e{bottom:915.024000px;}
.ya6{bottom:921.570750px;}
.y2b2{bottom:922.593450px;}
.y232{bottom:923.697750px;}
.y2f5{bottom:923.953800px;}
.y5{bottom:923.953962px;}
.y63{bottom:925.994250px;}
.y108{bottom:928.460250px;}
.y26d{bottom:929.991450px;}
.y2b1{bottom:937.644600px;}
.y2f4{bottom:939.004950px;}
.y231{bottom:940.196250px;}
.ya5{bottom:942.491250px;}
.y61{bottom:943.257750px;}
.y4{bottom:944.957250px;}
.yf1{bottom:944.958300px;}
.y26c{bottom:944.958900px;}
.y62{bottom:949.974750px;}
.y2b0{bottom:952.782150px;}
.y2f3{bottom:953.972400px;}
.y230{bottom:956.693250px;}
.yf0{bottom:959.839350px;}
.y26b{bottom:960.010050px;}
.y60{bottom:961.370250px;}
.y107{bottom:961.455750px;}
.ya4{bottom:963.920550px;}
.y2af{bottom:967.918350px;}
.y2f2{bottom:968.939850px;}
.y22f{bottom:973.191750px;}
.yef{bottom:974.636700px;}
.y26a{bottom:974.977500px;}
.y3{bottom:974.978709px;}
.y106{bottom:977.952750px;}
.ya3{bottom:978.802950px;}
.y5f{bottom:979.568250px;}
.y2ae{bottom:983.140950px;}
.y2f1{bottom:983.991000px;}
.yee{bottom:989.517750px;}
.y22e{bottom:989.688750px;}
.y269{bottom:989.943600px;}
.ya2{bottom:993.600300px;}
.y105{bottom:994.449750px;}
.y5e{bottom:997.682250px;}
.y2ad{bottom:998.108400px;}
.y2f0{bottom:998.958450px;}
.y2{bottom:1002.018750px;}
.y268{bottom:1004.996100px;}
.y22d{bottom:1006.187250px;}
.ya1{bottom:1008.481350px;}
.yed{bottom:1008.906750px;}
.y2ac{bottom:1013.329650px;}
.y2ef{bottom:1014.009600px;}
.y5d{bottom:1015.794750px;}
.y104{bottom:1016.816250px;}
.y267{bottom:1019.963550px;}
.y22c{bottom:1022.684250px;}
.ya0{bottom:1023.363750px;}
.yec{bottom:1024.638750px;}
.y2ab{bottom:1028.467200px;}
.y2ee{bottom:1028.977050px;}
.y5b{bottom:1033.058250px;}
.y266{bottom:1035.014700px;}
.y103{bottom:1037.991750px;}
.y9f{bottom:1038.159750px;}
.y22b{bottom:1039.181250px;}
.y5c{bottom:1039.776750px;}
.y2aa{bottom:1043.603400px;}
.y2ed{bottom:1043.944500px;}
.yeb{bottom:1044.454800px;}
.y265{bottom:1049.982150px;}
.y4f{bottom:1050.746250px;}
.y5a{bottom:1051.256250px;}
.y102{bottom:1054.488750px;}
.y2a9{bottom:1058.826000px;}
.y2ec{bottom:1058.995650px;}
.y9e{bottom:1059.165750px;}
.yea{bottom:1059.250800px;}
.y22a{bottom:1062.396750px;}
.y264{bottom:1064.948250px;}
.y59{bottom:1069.370250px;}
.yff{bottom:1070.981250px;}
.y101{bottom:1070.985750px;}
.y2a8{bottom:1073.792100px;}
.y2eb{bottom:1073.963100px;}
.ye9{bottom:1074.133200px;}
.y100{bottom:1077.618750px;}
.y229{bottom:1080.765750px;}
.y9d{bottom:1086.717750px;}
.y54{bottom:1087.350000px;}
.yfe{bottom:1087.478250px;}
.y57{bottom:1087.482750px;}
.y2a7{bottom:1089.013350px;}
.ye8{bottom:1089.014250px;}
.y58{bottom:1094.117250px;}
.ye5{bottom:1117.502250px;}
.h11{height:25.560000px;}
.h24{height:25.872523px;}
.h10{height:26.838000px;}
.h17{height:28.040261px;}
.h1a{height:28.566000px;}
.h22{height:28.585139px;}
.hd{height:31.156417px;}
.h21{height:32.314950px;}
.h26{height:32.444567px;}
.h2f{height:33.273600px;}
.hf{height:34.079574px;}
.h7{height:34.445731px;}
.h1d{height:36.612000px;}
.h23{height:36.960747px;}
.h5{height:38.934000px;}
.h16{height:41.097000px;}
.h28{height:41.580000px;}
.he{height:42.066000px;}
.h25{height:43.260000px;}
.h2a{height:43.755868px;}
.h2b{height:43.759238px;}
.h12{height:43.804688px;}
.h29{height:44.106649px;}
.hc{height:45.423000px;}
.hb{height:45.840000px;}
.h31{height:46.728000px;}
.h30{height:46.734000px;}
.h8{height:46.740000px;}
.h14{height:47.109375px;}
.h1e{height:49.269685px;}
.h1f{height:49.270885px;}
.h20{height:49.272085px;}
.h18{height:49.273285px;}
.h2c{height:50.721193px;}
.h2e{height:51.156638px;}
.h4{height:54.053584px;}
.h9{height:54.439333px;}
.h27{height:54.445333px;}
.h15{height:54.781333px;}
.ha{height:54.787333px;}
.h19{height:60.378000px;}
.h6{height:64.863281px;}
.h3{height:73.541567px;}
.h1b{height:74.790000px;}
.h1c{height:78.354000px;}
.h2d{height:149.568000px;}
.h2{height:1174.479000px;}
.h13{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w4{width:66.925950px;}
.w3{width:270.936000px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x33{left:5.399565px;}
.x30{left:11.887960px;}
.x1{left:13.436250px;}
.x1d{left:27.000000px;}
.x31{left:40.527135px;}
.x32{left:44.309668px;}
.x34{left:61.957884px;}
.x2{left:63.779400px;}
.x51{left:69.391950px;}
.x2d{left:75.060000px;}
.x9{left:77.215650px;}
.x4a{left:84.871183px;}
.x3{left:99.325950px;}
.xa{left:129.344850px;}
.x2e{left:132.300000px;}
.xb{left:145.161750px;}
.xc{left:152.985750px;}
.x1e{left:159.873750px;}
.x1f{left:174.330750px;}
.x21{left:199.161750px;}
.x6{left:241.170750px;}
.x7{left:250.781250px;}
.x54{left:255.288750px;}
.x18{left:269.489250px;}
.x36{left:286.071750px;}
.x19{left:298.827720px;}
.x20{left:304.526250px;}
.xe{left:309.627750px;}
.x25{left:313.794750px;}
.xf{left:321.704250px;}
.x26{left:332.078250px;}
.x24{left:348.831750px;}
.x4e{left:356.739750px;}
.x27{left:360.566250px;}
.x22{left:370.005750px;}
.x4f{left:375.704250px;}
.x29{left:379.020750px;}
.x23{left:384.548250px;}
.x8{left:394.242750px;}
.x28{left:412.866750px;}
.xd{left:418.223250px;}
.x35{left:429.704250px;}
.x10{left:459.722250px;}
.x55{left:465.760050px;}
.x12{left:473.244750px;}
.x52{left:474.774750px;}
.x53{left:486.764250px;}
.x2c{left:491.187000px;}
.x4{left:492.717750px;}
.x46{left:507.684750px;}
.x2a{left:518.655750px;}
.x47{left:523.076250px;}
.x15{left:527.838750px;}
.x3b{left:529.370250px;}
.x2b{left:534.557250px;}
.x41{left:539.744250px;}
.x16{left:544.592250px;}
.x13{left:587.621250px;}
.x14{left:598.082250px;}
.x1c{left:608.550000px;}
.x5{left:638.559750px;}
.x1b{left:659.991150px;}
.x1a{left:662.541750px;}
.x39{left:665.007750px;}
.x48{left:674.277750px;}
.x3a{left:684.566250px;}
.x49{left:696.387750px;}
.x4b{left:715.181250px;}
.x3d{left:723.939750px;}
.x3c{left:732.614250px;}
.x44{left:734.144250px;}
.x50{left:736.440750px;}
.x3f{left:737.970750px;}
.x4c{left:740.183250px;}
.x43{left:742.308750px;}
.x37{left:745.794750px;}
.x3e{left:751.662750px;}
.x4d{left:754.724250px;}
.x40{left:759.060750px;}
.x38{left:762.122250px;}
.x45{left:763.908750px;}
.x17{left:777.005250px;}
.x11{left:795.543750px;}
.x2f{left:802.431750px;}
.x42{left:808.638750px;}
@media print{
.v6{vertical-align:-32.960320pt;}
.v7{vertical-align:-10.581333pt;}
.vb{vertical-align:-9.676267pt;}
.vd{vertical-align:-8.469333pt;}
.vf{vertical-align:-6.954133pt;}
.v3{vertical-align:-2.720000pt;}
.v4{vertical-align:-1.818667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.901326pt;}
.v10{vertical-align:1.813333pt;}
.v2{vertical-align:5.440000pt;}
.vc{vertical-align:10.278272pt;}
.ve{vertical-align:16.629333pt;}
.v8{vertical-align:18.746667pt;}
.v5{vertical-align:20.554667pt;}
.v9{vertical-align:33.936000pt;}
.va{vertical-align:37.104000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.004800pt;}
.ls34{letter-spacing:0.010667pt;}
.ls87{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.058667pt;}
.ls4e{letter-spacing:0.069333pt;}
.ls86{letter-spacing:0.081600pt;}
.ls83{letter-spacing:0.100800pt;}
.ls60{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.138667pt;}
.lsc{letter-spacing:0.139423pt;}
.ls89{letter-spacing:0.148800pt;}
.ls42{letter-spacing:0.149333pt;}
.ls1a{letter-spacing:0.151478pt;}
.ls22{letter-spacing:0.156812pt;}
.ls23{letter-spacing:0.158400pt;}
.ls28{letter-spacing:0.168000pt;}
.ls4b{letter-spacing:0.176000pt;}
.ls6e{letter-spacing:0.181333pt;}
.ls24{letter-spacing:0.193600pt;}
.ls36{letter-spacing:0.209754pt;}
.ls8a{letter-spacing:0.220800pt;}
.ls13{letter-spacing:0.228521pt;}
.ls35{letter-spacing:0.234667pt;}
.ls37{letter-spacing:0.236886pt;}
.ls7d{letter-spacing:0.249600pt;}
.ls88{letter-spacing:0.268800pt;}
.ls2d{letter-spacing:0.298667pt;}
.ls2a{letter-spacing:0.304000pt;}
.ls9{letter-spacing:0.309333pt;}
.ls74{letter-spacing:0.374400pt;}
.ls4d{letter-spacing:0.426667pt;}
.ls7b{letter-spacing:0.456000pt;}
.ls71{letter-spacing:0.464000pt;}
.lse{letter-spacing:0.504831pt;}
.ls2f{letter-spacing:0.560000pt;}
.ls3f{letter-spacing:0.561005pt;}
.lsa{letter-spacing:0.565333pt;}
.ls62{letter-spacing:0.570667pt;}
.ls56{letter-spacing:0.634667pt;}
.ls4c{letter-spacing:0.645333pt;}
.ls41{letter-spacing:0.650592pt;}
.ls12{letter-spacing:0.672000pt;}
.ls1{letter-spacing:0.709333pt;}
.ls39{letter-spacing:0.730667pt;}
.lsf{letter-spacing:0.739471pt;}
.ls70{letter-spacing:0.794667pt;}
.lsb{letter-spacing:0.832000pt;}
.ls3d{letter-spacing:0.837333pt;}
.ls7e{letter-spacing:0.878400pt;}
.ls6f{letter-spacing:0.896000pt;}
.ls82{letter-spacing:0.907200pt;}
.ls66{letter-spacing:0.912000pt;}
.ls29{letter-spacing:0.922667pt;}
.ls72{letter-spacing:0.986667pt;}
.ls2{letter-spacing:1.024000pt;}
.ls85{letter-spacing:1.036800pt;}
.ls20{letter-spacing:1.075200pt;}
.ls5f{letter-spacing:1.114667pt;}
.ls3e{letter-spacing:1.136000pt;}
.ls10{letter-spacing:1.168000pt;}
.ls4a{letter-spacing:1.173333pt;}
.ls4f{letter-spacing:1.248000pt;}
.ls30{letter-spacing:1.285333pt;}
.ls40{letter-spacing:1.286381pt;}
.ls78{letter-spacing:1.348800pt;}
.ls11{letter-spacing:1.354667pt;}
.ls49{letter-spacing:1.368731pt;}
.ls61{letter-spacing:1.408000pt;}
.ls43{letter-spacing:1.541333pt;}
.ls27{letter-spacing:11.197654pt;}
.ls25{letter-spacing:11.198400pt;}
.ls26{letter-spacing:11.462400pt;}
.ls7{letter-spacing:12.636886pt;}
.ls81{letter-spacing:13.008000pt;}
.ls57{letter-spacing:13.011032pt;}
.ls1d{letter-spacing:13.286400pt;}
.ls1e{letter-spacing:13.416000pt;}
.ls8c{letter-spacing:13.612800pt;}
.ls46{letter-spacing:14.011558pt;}
.ls48{letter-spacing:14.118224pt;}
.ls50{letter-spacing:14.240000pt;}
.ls73{letter-spacing:14.256000pt;}
.ls44{letter-spacing:14.314488pt;}
.ls47{letter-spacing:14.379609pt;}
.ls59{letter-spacing:14.522667pt;}
.ls1f{letter-spacing:14.674145pt;}
.ls67{letter-spacing:15.040000pt;}
.ls63{letter-spacing:15.146667pt;}
.ls38{letter-spacing:15.232000pt;}
.ls65{letter-spacing:15.356886pt;}
.ls32{letter-spacing:15.362219pt;}
.ls64{letter-spacing:15.456000pt;}
.ls77{letter-spacing:15.724800pt;}
.ls7f{letter-spacing:15.729600pt;}
.ls8{letter-spacing:15.964886pt;}
.ls76{letter-spacing:16.027200pt;}
.ls75{letter-spacing:16.032000pt;}
.ls45{letter-spacing:16.328329pt;}
.ls1c{letter-spacing:16.622400pt;}
.ls1b{letter-spacing:16.723200pt;}
.ls68{letter-spacing:16.848000pt;}
.ls79{letter-spacing:17.083200pt;}
.ls55{letter-spacing:17.156521pt;}
.ls2b{letter-spacing:17.161854pt;}
.ls7a{letter-spacing:17.241600pt;}
.ls54{letter-spacing:17.269333pt;}
.ls15{letter-spacing:17.474219pt;}
.ls6c{letter-spacing:17.589333pt;}
.ls19{letter-spacing:17.692812pt;}
.ls14{letter-spacing:17.872000pt;}
.ls3{letter-spacing:17.877333pt;}
.ls6b{letter-spacing:17.888000pt;}
.ls6d{letter-spacing:17.893333pt;}
.ls4{letter-spacing:18.076886pt;}
.ls6{letter-spacing:18.082219pt;}
.ls5{letter-spacing:18.176000pt;}
.ls84{letter-spacing:18.753600pt;}
.ls5e{letter-spacing:18.960000pt;}
.ls5d{letter-spacing:19.098667pt;}
.ls18{letter-spacing:19.473600pt;}
.ls21{letter-spacing:20.108812pt;}
.ls33{letter-spacing:20.194219pt;}
.ls8b{letter-spacing:20.568000pt;}
.ls5c{letter-spacing:20.778667pt;}
.ls5b{letter-spacing:20.917333pt;}
.ls5a{letter-spacing:21.088000pt;}
.ls2c{letter-spacing:22.316886pt;}
.ls0{letter-spacing:23.801950pt;}
.ls80{letter-spacing:23.889600pt;}
.ls16{letter-spacing:24.717054pt;}
.ls58{letter-spacing:24.808365pt;}
.ls53{letter-spacing:28.962219pt;}
.ls52{letter-spacing:28.963819pt;}
.ls51{letter-spacing:29.061333pt;}
.ls69{letter-spacing:33.545067pt;}
.ls6a{letter-spacing:33.850667pt;}
.ls3b{letter-spacing:35.733333pt;}
.ls3c{letter-spacing:35.765333pt;}
.ls2e{letter-spacing:36.870548pt;}
.ls31{letter-spacing:37.958505pt;}
.ws2{word-spacing:-34.319736pt;}
.ws25d{word-spacing:-29.400000pt;}
.ws127{word-spacing:-25.946667pt;}
.ws1f{word-spacing:-25.386667pt;}
.wsf0{word-spacing:-24.528000pt;}
.ws59{word-spacing:-24.063699pt;}
.ws277{word-spacing:-23.856000pt;}
.wsd6{word-spacing:-22.848000pt;}
.ws189{word-spacing:-21.802394pt;}
.ws18c{word-spacing:-20.309079pt;}
.ws5c{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.407898pt;}
.ws0{word-spacing:-17.371631pt;}
.ws3{word-spacing:-17.333200pt;}
.ws8f{word-spacing:-17.008813pt;}
.ws32{word-spacing:-16.922498pt;}
.wse9{word-spacing:-15.307652pt;}
.ws24b{word-spacing:-14.533333pt;}
.ws18d{word-spacing:-13.606492pt;}
.ws258{word-spacing:-13.589333pt;}
.ws257{word-spacing:-13.333333pt;}
.ws175{word-spacing:-13.034667pt;}
.ws8c{word-spacing:-13.029333pt;}
.ws2c2{word-spacing:-13.012800pt;}
.ws61{word-spacing:-12.986667pt;}
.ws24a{word-spacing:-12.970667pt;}
.ws1cd{word-spacing:-12.949333pt;}
.ws22{word-spacing:-12.928000pt;}
.ws60{word-spacing:-12.906667pt;}
.ws1af{word-spacing:-12.848000pt;}
.ws1aa{word-spacing:-12.768000pt;}
.ws1da{word-spacing:-12.714667pt;}
.ws1ab{word-spacing:-12.688000pt;}
.ws1e6{word-spacing:-12.581333pt;}
.ws74{word-spacing:-12.565333pt;}
.ws1e7{word-spacing:-12.533333pt;}
.ws107{word-spacing:-12.506667pt;}
.ws46{word-spacing:-12.480000pt;}
.ws1ba{word-spacing:-12.453333pt;}
.ws1b9{word-spacing:-12.442667pt;}
.ws15c{word-spacing:-12.426667pt;}
.ws1fb{word-spacing:-12.373333pt;}
.ws75{word-spacing:-12.288000pt;}
.ws236{word-spacing:-12.277333pt;}
.ws235{word-spacing:-12.266667pt;}
.ws19b{word-spacing:-12.202667pt;}
.ws225{word-spacing:-12.192000pt;}
.ws177{word-spacing:-12.160000pt;}
.ws176{word-spacing:-12.048000pt;}
.ws199{word-spacing:-12.032000pt;}
.ws9c{word-spacing:-12.021333pt;}
.ws2b7{word-spacing:-12.000000pt;}
.ws19a{word-spacing:-11.978667pt;}
.ws1ec{word-spacing:-11.904000pt;}
.ws22c{word-spacing:-11.898667pt;}
.wsee{word-spacing:-11.788800pt;}
.ws1d7{word-spacing:-11.728000pt;}
.ws2ee{word-spacing:-11.654400pt;}
.wsef{word-spacing:-11.640000pt;}
.wsf1{word-spacing:-11.635200pt;}
.wsed{word-spacing:-11.606400pt;}
.ws2c8{word-spacing:-11.587200pt;}
.ws20b{word-spacing:-11.477333pt;}
.ws5{word-spacing:-11.474578pt;}
.ws2e7{word-spacing:-11.457600pt;}
.ws2bd{word-spacing:-11.443200pt;}
.ws2e6{word-spacing:-11.433600pt;}
.wsb6{word-spacing:-11.424000pt;}
.ws274{word-spacing:-11.404800pt;}
.ws229{word-spacing:-11.402667pt;}
.ws53{word-spacing:-11.392000pt;}
.ws20a{word-spacing:-11.370667pt;}
.ws7{word-spacing:-11.370579pt;}
.ws2d2{word-spacing:-11.366400pt;}
.ws17{word-spacing:-11.360000pt;}
.ws50{word-spacing:-11.317333pt;}
.ws4{word-spacing:-11.287380pt;}
.ws51{word-spacing:-11.280000pt;}
.ws2c1{word-spacing:-11.275200pt;}
.wsb5{word-spacing:-11.265600pt;}
.ws31{word-spacing:-11.253333pt;}
.ws85{word-spacing:-11.248000pt;}
.ws6{word-spacing:-11.238847pt;}
.ws33{word-spacing:-11.237333pt;}
.ws52{word-spacing:-11.205333pt;}
.ws2c3{word-spacing:-11.203200pt;}
.wsa{word-spacing:-11.198400pt;}
.ws21a{word-spacing:-11.168000pt;}
.ws335{word-spacing:-11.164800pt;}
.ws1bb{word-spacing:-11.130667pt;}
.ws237{word-spacing:-11.045333pt;}
.ws1d2{word-spacing:-10.949333pt;}
.ws2f0{word-spacing:-10.934400pt;}
.ws48{word-spacing:-10.928000pt;}
.ws1ef{word-spacing:-10.885333pt;}
.ws77{word-spacing:-10.874667pt;}
.ws42{word-spacing:-10.864000pt;}
.ws1c1{word-spacing:-10.862400pt;}
.ws76{word-spacing:-10.858667pt;}
.ws243{word-spacing:-10.841600pt;}
.ws32e{word-spacing:-10.833600pt;}
.ws2d3{word-spacing:-10.824000pt;}
.ws2f1{word-spacing:-10.819200pt;}
.ws104{word-spacing:-10.802400pt;}
.ws1ed{word-spacing:-10.773333pt;}
.ws32c{word-spacing:-10.732800pt;}
.ws2b2{word-spacing:-10.718400pt;}
.ws8d{word-spacing:-10.714667pt;}
.ws23d{word-spacing:-10.696000pt;}
.ws18{word-spacing:-10.688000pt;}
.ws1c2{word-spacing:-10.670400pt;}
.ws18b{word-spacing:-10.666533pt;}
.ws15e{word-spacing:-10.650667pt;}
.ws2d4{word-spacing:-10.636800pt;}
.ws1f2{word-spacing:-10.624000pt;}
.ws2cf{word-spacing:-10.603200pt;}
.ws1f7{word-spacing:-10.597333pt;}
.ws2b3{word-spacing:-10.593600pt;}
.ws1b{word-spacing:-10.570667pt;}
.ws4c{word-spacing:-10.544000pt;}
.ws232{word-spacing:-10.538667pt;}
.ws2ba{word-spacing:-10.516800pt;}
.ws197{word-spacing:-10.464000pt;}
.ws2ca{word-spacing:-10.449600pt;}
.ws143{word-spacing:-10.416000pt;}
.ws15d{word-spacing:-10.410667pt;}
.wsb2{word-spacing:-10.396800pt;}
.ws194{word-spacing:-10.384000pt;}
.ws30c{word-spacing:-10.382400pt;}
.ws275{word-spacing:-10.368000pt;}
.ws2e8{word-spacing:-10.353600pt;}
.ws233{word-spacing:-10.352000pt;}
.ws198{word-spacing:-10.346667pt;}
.ws196{word-spacing:-10.341333pt;}
.ws30{word-spacing:-10.325333pt;}
.ws9d{word-spacing:-10.272000pt;}
.ws22d{word-spacing:-10.261333pt;}
.ws1a9{word-spacing:-10.234667pt;}
.ws22f{word-spacing:-10.229333pt;}
.ws100{word-spacing:-10.228800pt;}
.ws1f8{word-spacing:-10.197333pt;}
.ws101{word-spacing:-10.190400pt;}
.ws1eb{word-spacing:-10.160000pt;}
.ws286{word-spacing:-10.118400pt;}
.ws13b{word-spacing:-10.106667pt;}
.ws142{word-spacing:-10.085333pt;}
.ws1a5{word-spacing:-10.070400pt;}
.ws29d{word-spacing:-10.065600pt;}
.ws80{word-spacing:-10.058667pt;}
.ws134{word-spacing:-10.048000pt;}
.ws165{word-spacing:-10.042667pt;}
.ws2ed{word-spacing:-10.012800pt;}
.ws2b8{word-spacing:-9.998400pt;}
.ws155{word-spacing:-9.978667pt;}
.ws65{word-spacing:-9.962667pt;}
.ws49{word-spacing:-9.957333pt;}
.ws66{word-spacing:-9.930667pt;}
.ws63{word-spacing:-9.920000pt;}
.wsf5{word-spacing:-9.890133pt;}
.ws10f{word-spacing:-9.874933pt;}
.ws135{word-spacing:-9.872000pt;}
.ws2b9{word-spacing:-9.864000pt;}
.ws27{word-spacing:-9.808000pt;}
.ws14d{word-spacing:-9.786667pt;}
.ws332{word-spacing:-9.768000pt;}
.ws2b6{word-spacing:-9.763200pt;}
.ws154{word-spacing:-9.743200pt;}
.ws26f{word-spacing:-9.739200pt;}
.wsa7{word-spacing:-9.738133pt;}
.ws244{word-spacing:-9.733067pt;}
.ws253{word-spacing:-9.728000pt;}
.ws23f{word-spacing:-9.707733pt;}
.ws24d{word-spacing:-9.674667pt;}
.ws249{word-spacing:-9.669333pt;}
.ws2d{word-spacing:-9.664000pt;}
.ws2d1{word-spacing:-9.662400pt;}
.wsb8{word-spacing:-9.662133pt;}
.ws245{word-spacing:-9.648000pt;}
.ws148{word-spacing:-9.642667pt;}
.ws255{word-spacing:-9.616000pt;}
.ws246{word-spacing:-9.610667pt;}
.ws251{word-spacing:-9.594667pt;}
.ws64{word-spacing:-9.589333pt;}
.ws9f{word-spacing:-9.586133pt;}
.ws25a{word-spacing:-9.573333pt;}
.ws24c{word-spacing:-9.568000pt;}
.ws122{word-spacing:-9.541333pt;}
.ws334{word-spacing:-9.523200pt;}
.wscb{word-spacing:-9.513600pt;}
.ws147{word-spacing:-9.504000pt;}
.ws97{word-spacing:-9.482667pt;}
.ws24e{word-spacing:-9.477333pt;}
.wsca{word-spacing:-9.475200pt;}
.ws163{word-spacing:-9.465600pt;}
.wsce{word-spacing:-9.460800pt;}
.wsae{word-spacing:-9.441600pt;}
.ws24f{word-spacing:-9.402667pt;}
.ws336{word-spacing:-9.393600pt;}
.ws208{word-spacing:-9.386667pt;}
.wsc9{word-spacing:-9.384000pt;}
.ws161{word-spacing:-9.360000pt;}
.ws2de{word-spacing:-9.340800pt;}
.ws167{word-spacing:-9.338667pt;}
.ws168{word-spacing:-9.333333pt;}
.wsa9{word-spacing:-9.292800pt;}
.ws78{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.278400pt;}
.wsb{word-spacing:-9.216000pt;}
.ws21b{word-spacing:-9.205333pt;}
.ws12d{word-spacing:-9.189333pt;}
.ws2c4{word-spacing:-9.158400pt;}
.ws173{word-spacing:-9.141333pt;}
.ws297{word-spacing:-9.134400pt;}
.wsd4{word-spacing:-9.120000pt;}
.ws227{word-spacing:-9.114667pt;}
.wsb0{word-spacing:-9.096000pt;}
.ws1a6{word-spacing:-9.086400pt;}
.ws261{word-spacing:-9.061333pt;}
.ws172{word-spacing:-9.024000pt;}
.ws296{word-spacing:-9.004800pt;}
.ws2ec{word-spacing:-8.990400pt;}
.ws184{word-spacing:-8.938667pt;}
.ws183{word-spacing:-8.917333pt;}
.ws185{word-spacing:-8.885333pt;}
.ws1f0{word-spacing:-8.858667pt;}
.ws329{word-spacing:-8.851200pt;}
.ws41{word-spacing:-8.848000pt;}
.ws271{word-spacing:-8.846400pt;}
.wsf6{word-spacing:-8.836800pt;}
.ws250{word-spacing:-8.821333pt;}
.ws270{word-spacing:-8.817600pt;}
.wsf7{word-spacing:-8.808000pt;}
.ws248{word-spacing:-8.784000pt;}
.ws276{word-spacing:-8.779200pt;}
.ws259{word-spacing:-8.778667pt;}
.ws234{word-spacing:-8.773333pt;}
.ws285{word-spacing:-8.769600pt;}
.ws32a{word-spacing:-8.764800pt;}
.ws252{word-spacing:-8.741333pt;}
.ws2c6{word-spacing:-8.740800pt;}
.ws31d{word-spacing:-8.726400pt;}
.ws254{word-spacing:-8.714667pt;}
.ws301{word-spacing:-8.712000pt;}
.ws2a2{word-spacing:-8.707200pt;}
.ws28e{word-spacing:-8.702400pt;}
.ws318{word-spacing:-8.697600pt;}
.ws81{word-spacing:-8.688000pt;}
.ws29e{word-spacing:-8.678400pt;}
.ws2a6{word-spacing:-8.673600pt;}
.ws28b{word-spacing:-8.659200pt;}
.ws219{word-spacing:-8.656000pt;}
.ws2c9{word-spacing:-8.649600pt;}
.ws99{word-spacing:-8.645333pt;}
.ws256{word-spacing:-8.640000pt;}
.ws2e5{word-spacing:-8.635200pt;}
.ws282{word-spacing:-8.625600pt;}
.ws2bb{word-spacing:-8.620800pt;}
.ws2d8{word-spacing:-8.611200pt;}
.ws2cd{word-spacing:-8.606400pt;}
.ws1d1{word-spacing:-8.592000pt;}
.ws330{word-spacing:-8.587200pt;}
.ws2c0{word-spacing:-8.582400pt;}
.ws27d{word-spacing:-8.577600pt;}
.ws2ac{word-spacing:-8.572800pt;}
.ws300{word-spacing:-8.553600pt;}
.ws2b5{word-spacing:-8.544000pt;}
.ws164{word-spacing:-8.539200pt;}
.ws21d{word-spacing:-8.538667pt;}
.ws218{word-spacing:-8.522667pt;}
.ws16e{word-spacing:-8.517333pt;}
.ws30b{word-spacing:-8.515200pt;}
.ws1d9{word-spacing:-8.506667pt;}
.ws2fc{word-spacing:-8.481600pt;}
.ws11f{word-spacing:-8.453333pt;}
.ws1d8{word-spacing:-8.442667pt;}
.ws2ff{word-spacing:-8.438400pt;}
.ws178{word-spacing:-8.426667pt;}
.ws315{word-spacing:-8.419200pt;}
.ws16c{word-spacing:-8.410667pt;}
.ws162{word-spacing:-8.380800pt;}
.wsd9{word-spacing:-8.376000pt;}
.wsdf{word-spacing:-8.361600pt;}
.wsb9{word-spacing:-8.356800pt;}
.ws23b{word-spacing:-8.352000pt;}
.ws11e{word-spacing:-8.346667pt;}
.ws217{word-spacing:-8.320000pt;}
.ws1b0{word-spacing:-8.277333pt;}
.wsde{word-spacing:-8.241600pt;}
.ws179{word-spacing:-8.229333pt;}
.ws9{word-spacing:-8.222400pt;}
.ws260{word-spacing:-8.218667pt;}
.ws16d{word-spacing:-8.213333pt;}
.wse6{word-spacing:-8.174400pt;}
.ws25e{word-spacing:-8.154667pt;}
.wsd8{word-spacing:-8.131200pt;}
.ws25f{word-spacing:-8.096000pt;}
.ws3a{word-spacing:-8.042667pt;}
.ws4b{word-spacing:-8.005333pt;}
.ws5b{word-spacing:-7.983360pt;}
.ws181{word-spacing:-7.953600pt;}
.ws6d{word-spacing:-7.946667pt;}
.ws5a{word-spacing:-7.936320pt;}
.ws4a{word-spacing:-7.930667pt;}
.ws1f3{word-spacing:-7.925333pt;}
.ws16b{word-spacing:-7.904000pt;}
.ws92{word-spacing:-7.898667pt;}
.ws224{word-spacing:-7.893333pt;}
.ws17c{word-spacing:-7.861333pt;}
.ws331{word-spacing:-7.852800pt;}
.ws213{word-spacing:-7.850667pt;}
.ws67{word-spacing:-7.845333pt;}
.ws12b{word-spacing:-7.840000pt;}
.ws25b{word-spacing:-7.824000pt;}
.ws91{word-spacing:-7.808000pt;}
.ws157{word-spacing:-7.802667pt;}
.ws23c{word-spacing:-7.797333pt;}
.ws10e{word-spacing:-7.792000pt;}
.ws25c{word-spacing:-7.786667pt;}
.ws146{word-spacing:-7.781333pt;}
.ws44{word-spacing:-7.776000pt;}
.ws193{word-spacing:-7.770667pt;}
.ws87{word-spacing:-7.765333pt;}
.ws95{word-spacing:-7.749333pt;}
.ws119{word-spacing:-7.744000pt;}
.ws7f{word-spacing:-7.738667pt;}
.ws7c{word-spacing:-7.733333pt;}
.ws21f{word-spacing:-7.728000pt;}
.ws31e{word-spacing:-7.713600pt;}
.ws38{word-spacing:-7.712000pt;}
.ws27c{word-spacing:-7.699200pt;}
.ws226{word-spacing:-7.696000pt;}
.ws2b{word-spacing:-7.664000pt;}
.ws238{word-spacing:-7.637333pt;}
.ws2eb{word-spacing:-7.636800pt;}
.ws247{word-spacing:-7.632000pt;}
.ws1db{word-spacing:-7.626667pt;}
.ws34{word-spacing:-7.621333pt;}
.ws192{word-spacing:-7.616000pt;}
.ws6c{word-spacing:-7.610667pt;}
.ws1c9{word-spacing:-7.605333pt;}
.ws12a{word-spacing:-7.600000pt;}
.ws21{word-spacing:-7.594667pt;}
.ws2be{word-spacing:-7.588800pt;}
.ws153{word-spacing:-7.584000pt;}
.ws117{word-spacing:-7.562667pt;}
.ws2f5{word-spacing:-7.555200pt;}
.ws207{word-spacing:-7.546667pt;}
.ws1e{word-spacing:-7.536000pt;}
.ws272{word-spacing:-7.526400pt;}
.ws14c{word-spacing:-7.504000pt;}
.ws5e{word-spacing:-7.491200pt;}
.ws242{word-spacing:-7.488000pt;}
.ws13f{word-spacing:-7.482667pt;}
.ws19c{word-spacing:-7.477333pt;}
.ws29a{word-spacing:-7.468800pt;}
.ws118{word-spacing:-7.445333pt;}
.ws1f4{word-spacing:-7.424000pt;}
.ws323{word-spacing:-7.420800pt;}
.ws279{word-spacing:-7.411200pt;}
.ws2ea{word-spacing:-7.339200pt;}
.ws1b3{word-spacing:-7.338667pt;}
.ws1ee{word-spacing:-7.322667pt;}
.ws29b{word-spacing:-7.310400pt;}
.ws310{word-spacing:-7.286400pt;}
.ws2a{word-spacing:-7.264000pt;}
.ws1df{word-spacing:-7.258667pt;}
.ws169{word-spacing:-7.210667pt;}
.ws1e4{word-spacing:-7.205333pt;}
.ws1e0{word-spacing:-7.152000pt;}
.ws115{word-spacing:-7.141333pt;}
.ws2f{word-spacing:-7.136000pt;}
.ws2a7{word-spacing:-7.118400pt;}
.ws32b{word-spacing:-7.108800pt;}
.wsd0{word-spacing:-7.104000pt;}
.ws116{word-spacing:-7.088000pt;}
.ws303{word-spacing:-7.080000pt;}
.ws190{word-spacing:-7.075200pt;}
.ws293{word-spacing:-7.070400pt;}
.ws28f{word-spacing:-7.065600pt;}
.ws84{word-spacing:-7.050667pt;}
.ws31c{word-spacing:-7.046400pt;}
.wse3{word-spacing:-7.041600pt;}
.ws182{word-spacing:-7.036800pt;}
.ws1a4{word-spacing:-7.032000pt;}
.wsa6{word-spacing:-7.027200pt;}
.ws16a{word-spacing:-7.024000pt;}
.ws1bd{word-spacing:-7.022400pt;}
.ws228{word-spacing:-7.018667pt;}
.ws2bf{word-spacing:-7.017600pt;}
.ws1be{word-spacing:-7.003200pt;}
.wsbd{word-spacing:-6.993600pt;}
.ws1f5{word-spacing:-6.986667pt;}
.ws57{word-spacing:-6.979200pt;}
.ws32f{word-spacing:-6.950400pt;}
.ws2e4{word-spacing:-6.945600pt;}
.ws273{word-spacing:-6.921600pt;}
.ws36{word-spacing:-6.896000pt;}
.ws322{word-spacing:-6.888000pt;}
.ws55{word-spacing:-6.873600pt;}
.wsc4{word-spacing:-6.864000pt;}
.ws2a3{word-spacing:-6.849600pt;}
.ws2bc{word-spacing:-6.844800pt;}
.ws1a3{word-spacing:-6.835200pt;}
.ws283{word-spacing:-6.825600pt;}
.ws278{word-spacing:-6.816000pt;}
.ws2ad{word-spacing:-6.811200pt;}
.ws28c{word-spacing:-6.806400pt;}
.ws1a7{word-spacing:-6.801600pt;}
.ws287{word-spacing:-6.792000pt;}
.ws231{word-spacing:-6.784000pt;}
.ws2c7{word-spacing:-6.768000pt;}
.wsc0{word-spacing:-6.753600pt;}
.wse0{word-spacing:-6.729600pt;}
.wsa2{word-spacing:-6.724800pt;}
.ws2e0{word-spacing:-6.715200pt;}
.ws19f{word-spacing:-6.714667pt;}
.wse7{word-spacing:-6.700800pt;}
.wsb7{word-spacing:-6.691200pt;}
.ws2d7{word-spacing:-6.681600pt;}
.ws2b1{word-spacing:-6.676800pt;}
.ws2e1{word-spacing:-6.672000pt;}
.wsd1{word-spacing:-6.662400pt;}
.ws319{word-spacing:-6.643200pt;}
.ws30a{word-spacing:-6.614400pt;}
.ws201{word-spacing:-6.581333pt;}
.ws2cc{word-spacing:-6.566400pt;}
.wsd7{word-spacing:-6.556800pt;}
.ws1b7{word-spacing:-6.533333pt;}
.ws126{word-spacing:-6.485333pt;}
.ws2f9{word-spacing:-6.465600pt;}
.ws204{word-spacing:-6.442667pt;}
.ws130{word-spacing:-6.416000pt;}
.wsc8{word-spacing:-6.403200pt;}
.wse5{word-spacing:-6.355200pt;}
.wsc6{word-spacing:-6.350400pt;}
.ws203{word-spacing:-6.341333pt;}
.ws19e{word-spacing:-6.314667pt;}
.ws269{word-spacing:-6.298667pt;}
.wsb3{word-spacing:-6.288000pt;}
.ws1e5{word-spacing:-6.282667pt;}
.ws202{word-spacing:-6.261333pt;}
.ws1b6{word-spacing:-6.234667pt;}
.ws10a{word-spacing:-6.229333pt;}
.ws27b{word-spacing:-6.211200pt;}
.wsc7{word-spacing:-6.206400pt;}
.ws13{word-spacing:-6.186667pt;}
.ws10c{word-spacing:-6.176000pt;}
.ws10b{word-spacing:-6.170667pt;}
.ws108{word-spacing:-6.154667pt;}
.ws18a{word-spacing:-6.152456pt;}
.ws18f{word-spacing:-6.135390pt;}
.ws94{word-spacing:-6.048000pt;}
.ws14{word-spacing:-6.037333pt;}
.ws187{word-spacing:-6.032991pt;}
.ws22b{word-spacing:-5.989333pt;}
.ws8a{word-spacing:-5.973333pt;}
.ws1b5{word-spacing:-5.962667pt;}
.ws109{word-spacing:-5.930667pt;}
.wsad{word-spacing:-5.860800pt;}
.ws1b2{word-spacing:-5.808000pt;}
.ws299{word-spacing:-5.803200pt;}
.ws1c3{word-spacing:-5.802667pt;}
.ws1cb{word-spacing:-5.744000pt;}
.ws30f{word-spacing:-5.712000pt;}
.wsa8{word-spacing:-5.683200pt;}
.ws12c{word-spacing:-5.674667pt;}
.wsf3{word-spacing:-5.664000pt;}
.ws2e9{word-spacing:-5.659200pt;}
.ws2d6{word-spacing:-5.654400pt;}
.ws2d5{word-spacing:-5.644800pt;}
.ws40{word-spacing:-5.632000pt;}
.ws1cc{word-spacing:-5.626667pt;}
.wsa1{word-spacing:-5.596800pt;}
.ws1c4{word-spacing:-5.584000pt;}
.ws1c5{word-spacing:-5.573333pt;}
.wsc1{word-spacing:-5.548800pt;}
.ws2ce{word-spacing:-5.529600pt;}
.ws305{word-spacing:-5.520000pt;}
.wsc3{word-spacing:-5.510400pt;}
.ws1c{word-spacing:-5.509333pt;}
.ws88{word-spacing:-5.482667pt;}
.ws5d{word-spacing:-5.472000pt;}
.wsc2{word-spacing:-5.457600pt;}
.ws17e{word-spacing:-5.440000pt;}
.ws7d{word-spacing:-5.434667pt;}
.ws17d{word-spacing:-5.424000pt;}
.ws14b{word-spacing:-5.418667pt;}
.ws149{word-spacing:-5.376000pt;}
.ws2ae{word-spacing:-5.361600pt;}
.ws29c{word-spacing:-5.337600pt;}
.ws3c{word-spacing:-5.322667pt;}
.wsf4{word-spacing:-5.289600pt;}
.ws14a{word-spacing:-5.280000pt;}
.ws216{word-spacing:-5.274667pt;}
.ws292{word-spacing:-5.236800pt;}
.wsbe{word-spacing:-5.208000pt;}
.ws21c{word-spacing:-5.205333pt;}
.ws170{word-spacing:-5.200000pt;}
.ws2fb{word-spacing:-5.193600pt;}
.ws2a0{word-spacing:-5.155200pt;}
.ws16f{word-spacing:-5.104000pt;}
.ws137{word-spacing:-5.098667pt;}
.ws27f{word-spacing:-5.083200pt;}
.ws1e2{word-spacing:-5.082667pt;}
.ws111{word-spacing:-4.944000pt;}
.ws62{word-spacing:-4.922667pt;}
.wsd{word-spacing:-4.910872pt;}
.ws205{word-spacing:-4.906667pt;}
.ws144{word-spacing:-4.890667pt;}
.ws19{word-spacing:-4.837333pt;}
.ws1bf{word-spacing:-4.824000pt;}
.wsf{word-spacing:-4.804207pt;}
.wsfd{word-spacing:-4.771200pt;}
.ws7b{word-spacing:-4.752000pt;}
.ws1fe{word-spacing:-4.736000pt;}
.ws1fd{word-spacing:-4.720000pt;}
.ws28a{word-spacing:-4.675200pt;}
.wsb4{word-spacing:-4.651200pt;}
.ws103{word-spacing:-4.641600pt;}
.ws200{word-spacing:-4.634667pt;}
.ws9e{word-spacing:-4.613333pt;}
.ws2f4{word-spacing:-4.608000pt;}
.ws1fc{word-spacing:-4.602667pt;}
.ws290{word-spacing:-4.579200pt;}
.ws1ff{word-spacing:-4.538667pt;}
.ws6b{word-spacing:-4.522667pt;}
.ws2da{word-spacing:-4.468800pt;}
.ws4f{word-spacing:-4.464000pt;}
.wsfe{word-spacing:-4.387200pt;}
.wsba{word-spacing:-4.368000pt;}
.ws1a{word-spacing:-4.298667pt;}
.ws2db{word-spacing:-4.296000pt;}
.ws2d9{word-spacing:-4.257600pt;}
.ws241{word-spacing:-4.218667pt;}
.ws15f{word-spacing:-4.181333pt;}
.ws1b1{word-spacing:-4.165333pt;}
.ws4e{word-spacing:-4.117333pt;}
.ws298{word-spacing:-4.060800pt;}
.ws26{word-spacing:-4.042667pt;}
.ws2fd{word-spacing:-4.017600pt;}
.ws328{word-spacing:-3.993600pt;}
.ws160{word-spacing:-3.989333pt;}
.ws304{word-spacing:-3.950400pt;}
.wsa3{word-spacing:-3.936000pt;}
.wscd{word-spacing:-3.912000pt;}
.ws3d{word-spacing:-3.802667pt;}
.ws2f8{word-spacing:-3.720000pt;}
.wsa5{word-spacing:-3.715200pt;}
.ws265{word-spacing:-3.701333pt;}
.ws306{word-spacing:-3.652800pt;}
.ws291{word-spacing:-3.643200pt;}
.ws1a0{word-spacing:-3.616000pt;}
.wsa4{word-spacing:-3.595200pt;}
.ws1c0{word-spacing:-3.547200pt;}
.ws150{word-spacing:-3.509333pt;}
.ws2fa{word-spacing:-3.508800pt;}
.wsb1{word-spacing:-3.412800pt;}
.ws9b{word-spacing:-3.402667pt;}
.ws10d{word-spacing:-3.392000pt;}
.ws239{word-spacing:-3.376000pt;}
.ws20d{word-spacing:-3.365333pt;}
.ws2ef{word-spacing:-3.345600pt;}
.ws1a8{word-spacing:-3.312000pt;}
.ws1c8{word-spacing:-3.253333pt;}
.ws25{word-spacing:-3.237333pt;}
.ws24{word-spacing:-3.200000pt;}
.ws289{word-spacing:-3.105600pt;}
.ws1c7{word-spacing:-3.082667pt;}
.ws89{word-spacing:-3.077333pt;}
.ws15a{word-spacing:-3.072000pt;}
.ws288{word-spacing:-3.004800pt;}
.ws158{word-spacing:-3.002667pt;}
.ws123{word-spacing:-2.938667pt;}
.ws159{word-spacing:-2.906667pt;}
.ws312{word-spacing:-2.884800pt;}
.ws28d{word-spacing:-2.827200pt;}
.ws1bc{word-spacing:-2.826667pt;}
.ws166{word-spacing:-2.821333pt;}
.ws2e2{word-spacing:-2.808000pt;}
.wsdd{word-spacing:-2.803200pt;}
.ws211{word-spacing:-2.789333pt;}
.ws29{word-spacing:-2.746667pt;}
.ws28{word-spacing:-2.709333pt;}
.wsdc{word-spacing:-2.692800pt;}
.ws30d{word-spacing:-2.659200pt;}
.ws1d3{word-spacing:-2.634073pt;}
.wsdb{word-spacing:-2.625600pt;}
.wsf2{word-spacing:-2.568000pt;}
.ws1d0{word-spacing:-2.565333pt;}
.ws71{word-spacing:-2.533333pt;}
.ws151{word-spacing:-2.485333pt;}
.ws327{word-spacing:-2.404800pt;}
.ws3e{word-spacing:-2.400000pt;}
.ws326{word-spacing:-2.332800pt;}
.wscf{word-spacing:-2.318400pt;}
.wsa0{word-spacing:-2.304000pt;}
.ws212{word-spacing:-2.282667pt;}
.ws102{word-spacing:-2.270400pt;}
.ws221{word-spacing:-2.229333pt;}
.ws3f{word-spacing:-2.213333pt;}
.ws133{word-spacing:-2.181333pt;}
.ws195{word-spacing:-2.170667pt;}
.ws180{word-spacing:-2.160000pt;}
.ws2c5{word-spacing:-2.155200pt;}
.ws209{word-spacing:-2.106667pt;}
.ws2a4{word-spacing:-2.006400pt;}
.ws1e8{word-spacing:-1.989333pt;}
.ws12e{word-spacing:-1.978667pt;}
.ws2f2{word-spacing:-1.939200pt;}
.ws2af{word-spacing:-1.924800pt;}
.ws316{word-spacing:-1.900800pt;}
.ws12f{word-spacing:-1.866667pt;}
.ws22a{word-spacing:-1.802667pt;}
.ws17b{word-spacing:-1.754667pt;}
.ws2d0{word-spacing:-1.728000pt;}
.ws1f1{word-spacing:-1.696000pt;}
.ws17f{word-spacing:-1.690667pt;}
.wsea{word-spacing:-1.660800pt;}
.ws23{word-spacing:-1.648000pt;}
.wse8{word-spacing:-1.612800pt;}
.ws2e{word-spacing:-1.579200pt;}
.ws39{word-spacing:-1.578667pt;}
.ws1a1{word-spacing:-1.450667pt;}
.ws22e{word-spacing:-1.423406pt;}
.wsaa{word-spacing:-1.420800pt;}
.ws284{word-spacing:-1.396800pt;}
.wsac{word-spacing:-1.363200pt;}
.wsab{word-spacing:-1.324800pt;}
.ws2e3{word-spacing:-1.296000pt;}
.ws210{word-spacing:-1.157333pt;}
.wsc5{word-spacing:-1.070400pt;}
.ws1e9{word-spacing:-0.922667pt;}
.ws93{word-spacing:-0.858667pt;}
.ws1ea{word-spacing:-0.842667pt;}
.ws1a2{word-spacing:-0.826667pt;}
.ws1c6{word-spacing:-0.800000pt;}
.ws13d{word-spacing:-0.592000pt;}
.ws4d{word-spacing:-0.570667pt;}
.ws13e{word-spacing:-0.565333pt;}
.ws1f9{word-spacing:-0.554667pt;}
.ws214{word-spacing:-0.549333pt;}
.ws267{word-spacing:-0.528000pt;}
.ws2dd{word-spacing:-0.518400pt;}
.ws1dd{word-spacing:-0.432000pt;}
.ws7e{word-spacing:-0.410667pt;}
.ws268{word-spacing:-0.394667pt;}
.ws1dc{word-spacing:-0.357333pt;}
.ws281{word-spacing:-0.249600pt;}
.ws1ad{word-spacing:-0.218667pt;}
.ws1ae{word-spacing:-0.160000pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws1ac{word-spacing:-0.048000pt;}
.wsfa{word-spacing:-0.014400pt;}
.ws5f{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.037333pt;}
.ws70{word-spacing:0.048000pt;}
.ws47{word-spacing:0.053333pt;}
.ws10{word-spacing:0.138667pt;}
.ws27e{word-spacing:0.206400pt;}
.ws21e{word-spacing:0.240000pt;}
.wsfb{word-spacing:0.288000pt;}
.ws174{word-spacing:0.314667pt;}
.ws23a{word-spacing:0.325333pt;}
.ws45{word-spacing:0.352000pt;}
.wsfc{word-spacing:0.360000pt;}
.ws8e{word-spacing:0.368000pt;}
.ws2f7{word-spacing:0.432000pt;}
.ws90{word-spacing:0.485333pt;}
.ws31a{word-spacing:0.499200pt;}
.ws2f6{word-spacing:0.518400pt;}
.ws156{word-spacing:0.538667pt;}
.ws82{word-spacing:0.773333pt;}
.ws2a8{word-spacing:0.777600pt;}
.ws83{word-spacing:0.805333pt;}
.ws9a{word-spacing:0.896000pt;}
.ws110{word-spacing:0.912000pt;}
.ws26d{word-spacing:0.917333pt;}
.ws79{word-spacing:0.954667pt;}
.ws20{word-spacing:0.992594pt;}
.wsbb{word-spacing:1.012800pt;}
.ws1e3{word-spacing:1.034667pt;}
.ws314{word-spacing:1.036800pt;}
.ws20f{word-spacing:1.040000pt;}
.ws12{word-spacing:1.050667pt;}
.wsaf{word-spacing:1.060800pt;}
.ws20c{word-spacing:1.061333pt;}
.ws2ab{word-spacing:1.070400pt;}
.ws307{word-spacing:1.108800pt;}
.ws2dc{word-spacing:1.118400pt;}
.ws280{word-spacing:1.252800pt;}
.ws136{word-spacing:1.269333pt;}
.wsbf{word-spacing:1.291200pt;}
.ws2fe{word-spacing:1.310400pt;}
.ws11d{word-spacing:1.562667pt;}
.ws11b{word-spacing:1.573333pt;}
.ws11c{word-spacing:1.626667pt;}
.ws11{word-spacing:1.685333pt;}
.ws1b8{word-spacing:1.690667pt;}
.ws171{word-spacing:1.776000pt;}
.ws13c{word-spacing:1.786667pt;}
.ws20e{word-spacing:2.112000pt;}
.ws106{word-spacing:2.512000pt;}
.ws2df{word-spacing:2.534400pt;}
.ws86{word-spacing:2.581333pt;}
.ws2aa{word-spacing:2.625600pt;}
.ws105{word-spacing:2.666667pt;}
.wsd5{word-spacing:2.784000pt;}
.ws313{word-spacing:2.808000pt;}
.wsd3{word-spacing:2.832000pt;}
.ws321{word-spacing:2.875200pt;}
.ws215{word-spacing:2.928000pt;}
.ws72{word-spacing:3.050667pt;}
.ws31f{word-spacing:3.244800pt;}
.ws1ce{word-spacing:3.274667pt;}
.ws1d4{word-spacing:3.376000pt;}
.ws1cf{word-spacing:3.408000pt;}
.ws11a{word-spacing:3.450667pt;}
.ws1d5{word-spacing:3.466667pt;}
.ws1e1{word-spacing:3.514667pt;}
.ws1fa{word-spacing:3.562667pt;}
.ws2cb{word-spacing:3.590400pt;}
.ws26e{word-spacing:3.738667pt;}
.ws58{word-spacing:3.777600pt;}
.ws240{word-spacing:3.888000pt;}
.ws1f6{word-spacing:3.973333pt;}
.ws2f3{word-spacing:4.243200pt;}
.ws31b{word-spacing:4.262400pt;}
.ws317{word-spacing:4.449600pt;}
.ws43{word-spacing:4.554667pt;}
.wscc{word-spacing:4.761600pt;}
.ws98{word-spacing:5.152000pt;}
.ws121{word-spacing:5.178667pt;}
.ws15b{word-spacing:5.189333pt;}
.ws120{word-spacing:5.312000pt;}
.ws32d{word-spacing:5.366400pt;}
.wsbc{word-spacing:5.414400pt;}
.ws35{word-spacing:5.456000pt;}
.wse2{word-spacing:5.476800pt;}
.wse1{word-spacing:5.664000pt;}
.ws7a{word-spacing:5.733333pt;}
.ws26c{word-spacing:5.882667pt;}
.wsf8{word-spacing:6.192000pt;}
.ws6e{word-spacing:6.677333pt;}
.ws1d6{word-spacing:6.890667pt;}
.ws73{word-spacing:7.248000pt;}
.ws295{word-spacing:7.435200pt;}
.ws2a1{word-spacing:7.632000pt;}
.ws333{word-spacing:8.126400pt;}
.ws26b{word-spacing:8.160000pt;}
.ws8b{word-spacing:8.218667pt;}
.ws191{word-spacing:8.517333pt;}
.ws308{word-spacing:8.577600pt;}
.wsff{word-spacing:8.606400pt;}
.ws29f{word-spacing:8.750400pt;}
.ws69{word-spacing:8.794667pt;}
.ws2a9{word-spacing:8.875200pt;}
.ws2a5{word-spacing:8.894400pt;}
.wsf9{word-spacing:8.904000pt;}
.ws324{word-spacing:8.913600pt;}
.wsda{word-spacing:8.937600pt;}
.ws27a{word-spacing:8.966400pt;}
.ws311{word-spacing:8.971200pt;}
.ws2b0{word-spacing:8.980800pt;}
.wse4{word-spacing:8.985600pt;}
.ws302{word-spacing:8.990400pt;}
.ws140{word-spacing:9.013333pt;}
.ws294{word-spacing:9.014400pt;}
.ws309{word-spacing:9.105600pt;}
.ws30e{word-spacing:9.115200pt;}
.ws320{word-spacing:9.148800pt;}
.ws325{word-spacing:9.153600pt;}
.ws2b4{word-spacing:9.249600pt;}
.ws141{word-spacing:9.306667pt;}
.ws262{word-spacing:9.850667pt;}
.ws3b{word-spacing:9.877333pt;}
.ws6f{word-spacing:9.882667pt;}
.ws266{word-spacing:9.898667pt;}
.ws68{word-spacing:9.920000pt;}
.ws223{word-spacing:9.925333pt;}
.ws220{word-spacing:9.930667pt;}
.ws264{word-spacing:9.936000pt;}
.ws13a{word-spacing:9.941333pt;}
.ws96{word-spacing:9.946667pt;}
.ws125{word-spacing:9.952000pt;}
.ws37{word-spacing:9.962667pt;}
.ws16{word-spacing:9.968000pt;}
.ws112{word-spacing:9.973333pt;}
.ws129{word-spacing:9.984000pt;}
.ws138{word-spacing:9.994667pt;}
.ws230{word-spacing:10.000000pt;}
.ws15{word-spacing:10.005333pt;}
.ws6a{word-spacing:10.010667pt;}
.ws128{word-spacing:10.016000pt;}
.ws26a{word-spacing:10.021333pt;}
.ws145{word-spacing:10.026667pt;}
.ws206{word-spacing:10.048000pt;}
.ws222{word-spacing:10.080000pt;}
.ws152{word-spacing:10.090667pt;}
.ws132{word-spacing:10.128000pt;}
.ws139{word-spacing:10.149333pt;}
.ws124{word-spacing:10.160000pt;}
.ws14e{word-spacing:10.197333pt;}
.ws1de{word-spacing:10.202667pt;}
.ws17a{word-spacing:10.208000pt;}
.ws114{word-spacing:10.218667pt;}
.ws113{word-spacing:10.224000pt;}
.ws1b4{word-spacing:10.240000pt;}
.ws19d{word-spacing:10.245333pt;}
.ws14f{word-spacing:10.256000pt;}
.ws263{word-spacing:10.282667pt;}
.ws131{word-spacing:10.320000pt;}
.ws1ca{word-spacing:10.362667pt;}
.ws56{word-spacing:17.121600pt;}
.ws23e{word-spacing:19.650997pt;}
.wse{word-spacing:20.783945pt;}
.ws54{word-spacing:21.537600pt;}
.wseb{word-spacing:53.603891pt;}
.ws186{word-spacing:104.954421pt;}
.ws188{word-spacing:104.967221pt;}
.ws18e{word-spacing:199.366041pt;}
.wsc{word-spacing:285.802133pt;}
.wsd2{word-spacing:522.144000pt;}
.wsec{word-spacing:646.810048pt;}
._e{margin-left:-2650.629267pt;}
._2c{margin-left:-3.024000pt;}
._1f{margin-left:-2.001042pt;}
._17{margin-left:-0.960000pt;}
._1b{width:1.248000pt;}
._2b{width:2.777600pt;}
._2a{width:10.444800pt;}
._f{width:11.961600pt;}
._a{width:13.432000pt;}
._7{width:15.114667pt;}
._1{width:16.689600pt;}
._c{width:17.641067pt;}
._9{width:18.778133pt;}
._5{width:20.240000pt;}
._8{width:21.765333pt;}
._b{width:23.178667pt;}
._0{width:24.072348pt;}
._15{width:25.012800pt;}
._13{width:26.421333pt;}
._4{width:27.456000pt;}
._16{width:28.574400pt;}
._14{width:29.488000pt;}
._d{width:30.832000pt;}
._1e{width:31.765333pt;}
._12{width:33.018667pt;}
._1c{width:34.008000pt;}
._11{width:35.221333pt;}
._6{width:37.109333pt;}
._19{width:63.696000pt;}
._29{width:67.445333pt;}
._28{width:70.736000pt;}
._18{width:71.760000pt;}
._10{width:77.500693pt;}
._20{width:125.481098pt;}
._1a{width:217.632000pt;}
._25{width:219.670854pt;}
._24{width:226.215839pt;}
._21{width:246.524918pt;}
._3{width:249.439772pt;}
._22{width:270.528885pt;}
._27{width:291.085428pt;}
._2{width:406.940234pt;}
._1d{width:632.234133pt;}
._26{width:875.986917pt;}
._23{width:896.295996pt;}
.fs16{font-size:28.585067pt;}
.fs12{font-size:31.995733pt;}
.fse{font-size:32.000000pt;}
.fs13{font-size:32.158933pt;}
.fsc{font-size:33.600000pt;}
.fs15{font-size:33.622512pt;}
.fs19{font-size:34.832000pt;}
.fsa{font-size:35.551467pt;}
.fs8{font-size:35.732800pt;}
.fs6{font-size:36.665600pt;}
.fsb{font-size:37.332267pt;}
.fsf{font-size:37.333333pt;}
.fsd{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fs10{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs14{font-size:48.032160pt;}
.fs11{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs18{font-size:63.332267pt;}
.fs5{font-size:66.666133pt;}
.fs1{font-size:69.332800pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fs17{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:1.117949pt;}
.ye0{bottom:4.166790pt;}
.ycb{bottom:4.956000pt;}
.ye2{bottom:10.406167pt;}
.y1{bottom:11.943333pt;}
.ydf{bottom:13.292900pt;}
.ye7{bottom:20.107867pt;}
.ye1{bottom:20.978046pt;}
.y53{bottom:24.492133pt;}
.ycc{bottom:25.920000pt;}
.ye6{bottom:28.799867pt;}
.y51{bottom:31.295147pt;}
.y52{bottom:33.184133pt;}
.yca{bottom:35.196000pt;}
.y50{bottom:39.004667pt;}
.y14b{bottom:53.291200pt;}
.y1a6{bottom:53.291733pt;}
.y182{bottom:53.291867pt;}
.y14f{bottom:53.292000pt;}
.y228{bottom:53.292533pt;}
.y149{bottom:53.292667pt;}
.y9c{bottom:53.294000pt;}
.ye4{bottom:56.314933pt;}
.y14a{bottom:59.262933pt;}
.y3a{bottom:61.077867pt;}
.yde{bottom:65.310267pt;}
.y14e{bottom:66.670800pt;}
.y2a6{bottom:66.671467pt;}
.y2ea{bottom:66.822667pt;}
.y227{bottom:67.956533pt;}
.y148{bottom:67.956667pt;}
.y181{bottom:68.031867pt;}
.y200{bottom:68.108667pt;}
.y1d3{bottom:68.259333pt;}
.y25f{bottom:68.487333pt;}
.y9b{bottom:69.394000pt;}
.y18a{bottom:69.469200pt;}
.y199{bottom:70.452667pt;}
.y1a5{bottom:70.602400pt;}
.y39{bottom:76.044533pt;}
.y2a5{bottom:79.975867pt;}
.y2e9{bottom:80.278267pt;}
.y147{bottom:82.622000pt;}
.y180{bottom:82.771867pt;}
.y1ff{bottom:82.924667pt;}
.y1d2{bottom:83.150000pt;}
.y25e{bottom:83.682000pt;}
.y9a{bottom:85.570000pt;}
.y189{bottom:85.645200pt;}
.y226{bottom:86.627200pt;}
.y198{bottom:87.611333pt;}
.y1a4{bottom:87.837067pt;}
.y38{bottom:91.011200pt;}
.y2a4{bottom:93.279067pt;}
.y2e8{bottom:93.732667pt;}
.ydd{bottom:97.134533pt;}
.y146{bottom:97.286000pt;}
.y17f{bottom:97.511867pt;}
.y1fe{bottom:97.740667pt;}
.y1d1{bottom:98.042000pt;}
.y25d{bottom:98.875333pt;}
.y225{bottom:101.291200pt;}
.y99{bottom:101.671333pt;}
.y188{bottom:101.821200pt;}
.y197{bottom:103.560667pt;}
.y1a3{bottom:105.146400pt;}
.y1a1{bottom:105.148667pt;}
.y37{bottom:105.977867pt;}
.y35{bottom:105.979333pt;}
.y2a3{bottom:106.659067pt;}
.y2e7{bottom:107.263867pt;}
.y4e{bottom:110.136667pt;}
.ydc{bottom:110.362267pt;}
.y1a2{bottom:111.042400pt;}
.y36{bottom:111.949467pt;}
.y145{bottom:111.950000pt;}
.y17e{bottom:112.251867pt;}
.y1fd{bottom:112.556667pt;}
.y1d0{bottom:113.008667pt;}
.y25c{bottom:114.068667pt;}
.y98{bottom:117.771333pt;}
.y187{bottom:117.995867pt;}
.y223{bottom:119.962133pt;}
.y2a2{bottom:119.963467pt;}
.y2e6{bottom:120.568267pt;}
.y196{bottom:120.720667pt;}
.y34{bottom:121.020667pt;}
.y224{bottom:121.700667pt;}
.y1a0{bottom:122.383333pt;}
.ydb{bottom:123.515467pt;}
.y4d{bottom:124.800667pt;}
.y144{bottom:126.615333pt;}
.y1fc{bottom:127.371333pt;}
.y1cf{bottom:127.899333pt;}
.y25b{bottom:129.186000pt;}
.y222{bottom:132.283333pt;}
.y17d{bottom:132.888667pt;}
.y2a1{bottom:133.342267pt;}
.y97{bottom:133.872667pt;}
.y2e5{bottom:134.098267pt;}
.y186{bottom:134.171867pt;}
.y33{bottom:135.987333pt;}
.yda{bottom:136.744267pt;}
.y195{bottom:137.879333pt;}
.y4c{bottom:139.464667pt;}
.y19f{bottom:139.618000pt;}
.y143{bottom:141.279333pt;}
.y1fb{bottom:142.187333pt;}
.y1ce{bottom:142.866000pt;}
.y25a{bottom:144.380667pt;}
.y2a0{bottom:146.646667pt;}
.y2e4{bottom:147.553867pt;}
.yd9{bottom:149.896267pt;}
.y96{bottom:149.972667pt;}
.y185{bottom:150.349200pt;}
.y31{bottom:150.955333pt;}
.y17b{bottom:152.542000pt;}
.y194{bottom:154.962000pt;}
.y142{bottom:156.019333pt;}
.y32{bottom:156.850000pt;}
.y19e{bottom:156.927333pt;}
.y1fa{bottom:157.003333pt;}
.y1cd{bottom:157.758000pt;}
.y17c{bottom:158.438000pt;}
.y259{bottom:159.574000pt;}
.y29f{bottom:159.949867pt;}
.y2e3{bottom:161.008267pt;}
.yd8{bottom:163.125067pt;}
.y221{bottom:164.940667pt;}
.y184{bottom:165.769200pt;}
.y30{bottom:165.922000pt;}
.y95{bottom:166.074000pt;}
.y17a{bottom:167.206000pt;}
.y141{bottom:170.683333pt;}
.y1f9{bottom:171.819333pt;}
.y193{bottom:172.120667pt;}
.y1cc{bottom:172.574000pt;}
.y29e{bottom:173.329867pt;}
.y4b{bottom:173.480667pt;}
.y19d{bottom:174.162000pt;}
.y2e2{bottom:174.539467pt;}
.y258{bottom:174.767333pt;}
.yd7{bottom:176.352933pt;}
.y220{bottom:179.604667pt;}
.y2f{bottom:180.888667pt;}
.y183{bottom:181.945200pt;}
.y179{bottom:181.946000pt;}
.y94{bottom:182.250000pt;}
.y1f8{bottom:186.634000pt;}
.y29d{bottom:186.634267pt;}
.y1cb{bottom:187.464667pt;}
.y2e1{bottom:187.843867pt;}
.y4a{bottom:188.295333pt;}
.y48{bottom:188.296667pt;}
.y192{bottom:189.280667pt;}
.yd6{bottom:189.506133pt;}
.y257{bottom:189.886000pt;}
.y19c{bottom:190.187333pt;}
.y140{bottom:190.488667pt;}
.y49{bottom:194.267333pt;}
.y21f{bottom:194.270000pt;}
.y2d{bottom:195.779333pt;}
.y93{bottom:198.351333pt;}
.y29c{bottom:200.013067pt;}
.y2e0{bottom:201.373867pt;}
.y1f7{bottom:201.450000pt;}
.y2e{bottom:201.675333pt;}
.y1ca{bottom:202.356667pt;}
.yd5{bottom:202.734933pt;}
.y47{bottom:203.187333pt;}
.y256{bottom:205.079333pt;}
.y191{bottom:206.439333pt;}
.y19b{bottom:207.422000pt;}
.y21e{bottom:208.934000pt;}
.y13f{bottom:209.312667pt;}
.y18d{bottom:210.596533pt;}
.y2c{bottom:210.746000pt;}
.y2a{bottom:210.747333pt;}
.y29b{bottom:213.317467pt;}
.y92{bottom:213.695333pt;}
.y2df{bottom:214.829467pt;}
.yd4{bottom:215.962533pt;}
.y1f6{bottom:216.190000pt;}
.y2b{bottom:216.642000pt;}
.y1c9{bottom:217.323333pt;}
.y46{bottom:218.003333pt;}
.y255{bottom:220.272667pt;}
.y190{bottom:223.598000pt;}
.y18c{bottom:223.975333pt;}
.y13e{bottom:223.976667pt;}
.y19a{bottom:224.656667pt;}
.y29{bottom:225.715333pt;}
.y29a{bottom:226.620667pt;}
.y2de{bottom:228.283867pt;}
.yd3{bottom:229.115733pt;}
.y91{bottom:229.796667pt;}
.y1f5{bottom:231.006000pt;}
.y1c8{bottom:232.215333pt;}
.y45{bottom:232.894000pt;}
.y43{bottom:232.895333pt;}
.y254{bottom:235.466000pt;}
.y21d{bottom:238.263333pt;}
.y13d{bottom:238.640667pt;}
.y44{bottom:238.790000pt;}
.y299{bottom:240.000667pt;}
.y28{bottom:240.682000pt;}
.y18f{bottom:240.756667pt;}
.y2dd{bottom:241.663867pt;}
.yd2{bottom:242.343867pt;}
.y1f4{bottom:245.822000pt;}
.y90{bottom:245.972667pt;}
.y1c7{bottom:247.107333pt;}
.y42{bottom:247.786000pt;}
.y253{bottom:250.659333pt;}
.y21c{bottom:252.927333pt;}
.y298{bottom:253.305067pt;}
.y13c{bottom:253.306000pt;}
.y2dc{bottom:255.119467pt;}
.yd1{bottom:255.497067pt;}
.y27{bottom:255.723333pt;}
.y18e{bottom:257.915333pt;}
.y1f3{bottom:260.636667pt;}
.y8e{bottom:262.072667pt;}
.y1c6{bottom:262.074000pt;}
.y41{bottom:262.602000pt;}
.y252{bottom:265.778000pt;}
.y297{bottom:266.683867pt;}
.y21b{bottom:267.591333pt;}
.y8f{bottom:267.968667pt;}
.y13b{bottom:267.970000pt;}
.y2db{bottom:268.573867pt;}
.yd0{bottom:268.725467pt;}
.y25{bottom:270.539333pt;}
.y1f2{bottom:275.376667pt;}
.y26{bottom:276.434000pt;}
.y1c5{bottom:276.964667pt;}
.y40{bottom:277.492667pt;}
.y8d{bottom:278.174000pt;}
.y296{bottom:279.988267pt;}
.y251{bottom:280.971333pt;}
.ycf{bottom:281.953067pt;}
.y2da{bottom:282.105067pt;}
.y21a{bottom:282.256667pt;}
.y13a{bottom:282.634000pt;}
.y23{bottom:285.506000pt;}
.y1aa{bottom:286.564133pt;}
.y1f1{bottom:290.192667pt;}
.y24{bottom:291.402000pt;}
.y1c4{bottom:291.931333pt;}
.y3f{bottom:292.308667pt;}
.y295{bottom:293.292667pt;}
.y8c{bottom:294.274000pt;}
.yce{bottom:295.106267pt;}
.y2d9{bottom:295.559467pt;}
.y250{bottom:296.164667pt;}
.y219{bottom:296.920667pt;}
.y139{bottom:297.299333pt;}
.y1a9{bottom:299.944133pt;}
.y22{bottom:300.472667pt;}
.y1f0{bottom:305.008667pt;}
.y294{bottom:306.671467pt;}
.y1c3{bottom:306.823333pt;}
.y3e{bottom:307.199333pt;}
.y2d8{bottom:308.939467pt;}
.y8b{bottom:310.374000pt;}
.y24f{bottom:311.358000pt;}
.y218{bottom:311.584667pt;}
.y138{bottom:311.963333pt;}
.y1a8{bottom:313.247333pt;}
.y21{bottom:315.439333pt;}
.y56{bottom:317.506667pt;}
.ycd{bottom:319.672667pt;}
.y1ef{bottom:319.824667pt;}
.y293{bottom:319.975867pt;}
.y1c2{bottom:321.714000pt;}
.y3c{bottom:321.937867pt;}
.y2d7{bottom:322.395067pt;}
.yfd{bottom:324.435333pt;}
.y217{bottom:326.250000pt;}
.y89{bottom:326.476667pt;}
.y137{bottom:326.627333pt;}
.y24e{bottom:326.928667pt;}
.y3d{bottom:327.911333pt;}
.yc9{bottom:328.668000pt;}
.y16c{bottom:332.296667pt;}
.y154{bottom:332.298000pt;}
.y8a{bottom:332.447333pt;}
.y292{bottom:333.279067pt;}
.y1ee{bottom:334.639333pt;}
.y2d6{bottom:335.849467pt;}
.y20{bottom:336.302000pt;}
.y1c1{bottom:336.680667pt;}
.y3b{bottom:336.829867pt;}
.y155{bottom:338.191333pt;}
.yfc{bottom:339.099333pt;}
.y216{bottom:340.914000pt;}
.y135{bottom:341.291333pt;}
.y88{bottom:342.578000pt;}
.y291{bottom:346.659067pt;}
.y153{bottom:346.962000pt;}
.y16b{bottom:347.112667pt;}
.y136{bottom:347.263333pt;}
.y2d5{bottom:349.380667pt;}
.y1ed{bottom:349.455333pt;}
.y1c0{bottom:351.572667pt;}
.y215{bottom:355.579333pt;}
.y134{bottom:355.955333pt;}
.yfb{bottom:357.770000pt;}
.y87{bottom:358.754000pt;}
.y290{bottom:359.963467pt;}
.y152{bottom:361.626000pt;}
.y16a{bottom:361.928667pt;}
.y2d4{bottom:362.683867pt;}
.y1ec{bottom:364.271333pt;}
.y24d{bottom:365.555333pt;}
.y1bf{bottom:366.388667pt;}
.y214{bottom:370.244667pt;}
.y132{bottom:370.620667pt;}
.y28f{bottom:373.342267pt;}
.y86{bottom:374.854000pt;}
.y2d3{bottom:376.215067pt;}
.y151{bottom:376.291333pt;}
.y133{bottom:376.591333pt;}
.y169{bottom:376.819333pt;}
.y1eb{bottom:379.086000pt;}
.y55{bottom:379.280000pt;}
.yfa{bottom:379.388667pt;}
.y1be{bottom:381.279333pt;}
.y1f{bottom:382.791333pt;}
.y213{bottom:384.908667pt;}
.y131{bottom:385.286000pt;}
.yc8{bottom:385.437067pt;}
.y24c{bottom:386.494000pt;}
.y28e{bottom:386.646667pt;}
.y2d2{bottom:389.670667pt;}
.y85{bottom:390.955333pt;}
.y168{bottom:391.635333pt;}
.y1e9{bottom:393.828667pt;}
.y1bd{bottom:396.171333pt;}
.yc7{bottom:398.664667pt;}
.y212{bottom:399.572667pt;}
.y1ea{bottom:399.723333pt;}
.y28d{bottom:399.949867pt;}
.y130{bottom:399.950000pt;}
.y1e{bottom:401.462000pt;}
.y2d1{bottom:403.125067pt;}
.y150{bottom:405.619333pt;}
.y167{bottom:406.526000pt;}
.y165{bottom:406.527333pt;}
.yf9{bottom:406.677600pt;}
.y84{bottom:407.055333pt;}
.y1e8{bottom:408.643333pt;}
.y1bc{bottom:411.138000pt;}
.yc6{bottom:411.817867pt;}
.y166{bottom:412.422000pt;}
.y28c{bottom:413.329867pt;}
.y211{bottom:414.238000pt;}
.y12f{bottom:414.614000pt;}
.y1d{bottom:416.127333pt;}
.y2d0{bottom:416.656267pt;}
.y24b{bottom:416.806000pt;}
.yf8{bottom:419.905200pt;}
.y164{bottom:421.342000pt;}
.y82{bottom:422.476667pt;}
.y1e7{bottom:423.459333pt;}
.yc5{bottom:425.046667pt;}
.y1bb{bottom:426.028667pt;}
.y28b{bottom:426.634267pt;}
.y83{bottom:428.371333pt;}
.y210{bottom:428.902000pt;}
.y12d{bottom:429.280667pt;}
.y2cf{bottom:429.959467pt;}
.y1c{bottom:430.791333pt;}
.y24a{bottom:431.471333pt;}
.yf7{bottom:433.134000pt;}
.y12e{bottom:435.250000pt;}
.y163{bottom:436.158000pt;}
.yc4{bottom:438.274267pt;}
.y1e6{bottom:438.275333pt;}
.y81{bottom:438.576667pt;}
.y28a{bottom:440.013067pt;}
.y1ba{bottom:440.919333pt;}
.y178{bottom:442.582000pt;}
.y2ce{bottom:443.490667pt;}
.y20f{bottom:443.566000pt;}
.y12c{bottom:443.944667pt;}
.y1b{bottom:445.455333pt;}
.yf6{bottom:446.286000pt;}
.yf4{bottom:446.287333pt;}
.y162{bottom:451.050000pt;}
.yc3{bottom:451.427467pt;}
.y249{bottom:451.428667pt;}
.yf5{bottom:451.654000pt;}
.y1e5{bottom:453.091333pt;}
.y289{bottom:453.317467pt;}
.y80{bottom:454.678000pt;}
.y2cd{bottom:456.946267pt;}
.y177{bottom:457.171333pt;}
.y20e{bottom:458.231333pt;}
.y12b{bottom:458.684667pt;}
.yf3{bottom:459.514933pt;}
.y1a{bottom:460.195333pt;}
.y1b9{bottom:461.782000pt;}
.yc2{bottom:464.656267pt;}
.y161{bottom:465.864667pt;}
.y248{bottom:466.092667pt;}
.y288{bottom:466.620667pt;}
.y1e4{bottom:467.906000pt;}
.y2cc{bottom:470.400667pt;}
.y7f{bottom:470.778000pt;}
.y176{bottom:471.760667pt;}
.yf2{bottom:472.668133pt;}
.y20d{bottom:472.895333pt;}
.y12a{bottom:473.348667pt;}
.y19{bottom:474.860667pt;}
.yc1{bottom:477.808267pt;}
.y287{bottom:480.000667pt;}
.y160{bottom:480.756667pt;}
.y1b8{bottom:481.360667pt;}
.y1e3{bottom:482.722000pt;}
.y2cb{bottom:483.931867pt;}
.y175{bottom:486.350000pt;}
.y7e{bottom:486.879333pt;}
.y20c{bottom:487.559333pt;}
.y129{bottom:488.012667pt;}
.y127{bottom:488.014000pt;}
.y18{bottom:489.524667pt;}
.yc0{bottom:491.037067pt;}
.y286{bottom:493.305067pt;}
.y128{bottom:493.908667pt;}
.y247{bottom:495.422000pt;}
.y15f{bottom:495.571333pt;}
.y15d{bottom:495.572667pt;}
.y1b7{bottom:496.252667pt;}
.y2ca{bottom:497.235067pt;}
.y1e2{bottom:497.538000pt;}
.y174{bottom:500.938000pt;}
.y15e{bottom:501.543333pt;}
.y20b{bottom:502.224667pt;}
.y126{bottom:502.678000pt;}
.y7d{bottom:502.979333pt;}
.y7b{bottom:502.980667pt;}
.y17{bottom:504.190000pt;}
.ybf{bottom:504.264667pt;}
.y285{bottom:506.683867pt;}
.y7c{bottom:508.951333pt;}
.y246{bottom:510.086000pt;}
.y15c{bottom:510.464667pt;}
.y2c9{bottom:510.690667pt;}
.y1b6{bottom:511.220667pt;}
.y14d{bottom:511.673467pt;}
.y1e1{bottom:512.278000pt;}
.y173{bottom:515.527333pt;}
.y20a{bottom:516.888667pt;}
.y125{bottom:517.342000pt;}
.ybe{bottom:517.417867pt;}
.y16{bottom:518.855333pt;}
.y7a{bottom:519.156667pt;}
.y284{bottom:519.988267pt;}
.y2c8{bottom:524.220667pt;}
.y245{bottom:524.751333pt;}
.y14c{bottom:524.976667pt;}
.y15b{bottom:525.279333pt;}
.y1b5{bottom:526.111333pt;}
.y1e0{bottom:527.094000pt;}
.y172{bottom:530.117415pt;}
.ybd{bottom:530.646667pt;}
.y209{bottom:531.552667pt;}
.y124{bottom:532.006000pt;}
.y122{bottom:532.007333pt;}
.y283{bottom:533.292667pt;}
.y15{bottom:533.519333pt;}
.y79{bottom:535.256667pt;}
.y2c7{bottom:537.676267pt;}
.y123{bottom:537.902000pt;}
.y244{bottom:539.416667pt;}
.y15a{bottom:540.095333pt;}
.y1b4{bottom:541.002000pt;}
.y1df{bottom:541.908667pt;}
.ybc{bottom:543.874267pt;}
.y121{bottom:546.671333pt;}
.y282{bottom:546.671467pt;}
.y171{bottom:547.351333pt;}
.y14{bottom:548.184667pt;}
.y208{bottom:550.223333pt;}
.y77{bottom:550.602000pt;}
.y2c6{bottom:551.056267pt;}
.y243{bottom:554.080667pt;}
.y159{bottom:554.987333pt;}
.y1b2{bottom:555.968667pt;}
.y78{bottom:556.572667pt;}
.y1de{bottom:556.724667pt;}
.ybb{bottom:557.027467pt;}
.y281{bottom:559.975867pt;}
.y120{bottom:561.335333pt;}
.y1b3{bottom:561.864667pt;}
.y13{bottom:562.848667pt;}
.y2c5{bottom:564.510667pt;}
.y76{bottom:566.702000pt;}
.y242{bottom:568.744667pt;}
.y158{bottom:569.802000pt;}
.y170{bottom:569.954000pt;}
.yba{bottom:570.256267pt;}
.y1b1{bottom:570.860667pt;}
.y1dd{bottom:571.540667pt;}
.y280{bottom:573.354667pt;}
.y11e{bottom:576.000667pt;}
.y12{bottom:577.512667pt;}
.y207{bottom:577.588667pt;}
.y2c4{bottom:577.966267pt;}
.y306{bottom:581.292267pt;}
.y11f{bottom:581.896667pt;}
.y75{bottom:582.878000pt;}
.yb9{bottom:583.408267pt;}
.y241{bottom:583.410000pt;}
.y16f{bottom:584.618000pt;}
.y157{bottom:584.694000pt;}
.y1b0{bottom:585.751333pt;}
.y1da{bottom:586.352667pt;}
.y1dc{bottom:586.355333pt;}
.y27f{bottom:586.659067pt;}
.y11d{bottom:590.666000pt;}
.y2c3{bottom:591.496267pt;}
.y11{bottom:592.178000pt;}
.y206{bottom:592.252667pt;}
.y1db{bottom:592.327333pt;}
.y305{bottom:594.671067pt;}
.yb8{bottom:596.637067pt;}
.y240{bottom:598.074000pt;}
.y73{bottom:598.224667pt;}
.y16e{bottom:599.282000pt;}
.y156{bottom:599.508667pt;}
.y27e{bottom:599.963467pt;}
.y1af{bottom:600.718000pt;}
.y1d9{bottom:601.167333pt;}
.y74{bottom:604.195333pt;}
.y2c2{bottom:604.951867pt;}
.y11c{bottom:605.330000pt;}
.y10{bottom:606.842000pt;}
.y205{bottom:606.916667pt;}
.y304{bottom:607.975467pt;}
.yb7{bottom:609.864667pt;}
.y23f{bottom:612.814000pt;}
.y27d{bottom:613.342267pt;}
.y72{bottom:614.324667pt;}
.y1ae{bottom:615.610000pt;}
.y1d8{bottom:615.983333pt;}
.y2c1{bottom:618.331867pt;}
.y11b{bottom:619.995333pt;}
.y303{bottom:621.279867pt;}
.yf{bottom:621.506000pt;}
.y204{bottom:621.582000pt;}
.y27c{bottom:626.646667pt;}
.y23e{bottom:627.478000pt;}
.y16d{bottom:628.156667pt;}
.yb6{bottom:628.459333pt;}
.y71{bottom:630.426000pt;}
.y1d7{bottom:630.723333pt;}
.y2c0{bottom:631.786267pt;}
.y302{bottom:634.658667pt;}
.y11a{bottom:634.659333pt;}
.ye{bottom:636.171333pt;}
.y203{bottom:636.246000pt;}
.y27b{bottom:639.949867pt;}
.y1a7{bottom:640.403333pt;}
.y23d{bottom:642.143333pt;}
.y2bf{bottom:645.241867pt;}
.y1ad{bottom:645.316667pt;}
.y1d6{bottom:645.539333pt;}
.y70{bottom:646.602000pt;}
.yb5{bottom:647.508267pt;}
.y301{bottom:647.963067pt;}
.y119{bottom:649.323333pt;}
.yd{bottom:650.835333pt;}
.y202{bottom:650.910000pt;}
.y27a{bottom:653.329867pt;}
.y23c{bottom:656.807333pt;}
.y2be{bottom:658.771867pt;}
.y1ac{bottom:660.207333pt;}
.y1d5{bottom:660.355333pt;}
.yb4{bottom:660.737067pt;}
.y300{bottom:661.341867pt;}
.y6f{bottom:662.702000pt;}
.y117{bottom:663.987333pt;}
.yc{bottom:665.499333pt;}
.y279{bottom:666.634267pt;}
.y118{bottom:669.883333pt;}
.y23b{bottom:671.471333pt;}
.y2bd{bottom:672.076267pt;}
.yb3{bottom:673.964667pt;}
.y2ff{bottom:674.646267pt;}
.y1d4{bottom:675.170000pt;}
.y1ab{bottom:675.174000pt;}
.y116{bottom:678.652667pt;}
.y6e{bottom:678.803333pt;}
.y278{bottom:680.013067pt;}
.yb{bottom:680.164667pt;}
.y2bc{bottom:685.531867pt;}
.yb2{bottom:687.117867pt;}
.y2fe{bottom:687.950667pt;}
.y23a{bottom:692.107333pt;}
.y115{bottom:693.316667pt;}
.y277{bottom:693.317467pt;}
.y113{bottom:693.318000pt;}
.y263{bottom:693.467733pt;}
.ya{bottom:694.828667pt;}
.y6d{bottom:694.903333pt;}
.y6b{bottom:694.906000pt;}
.y2bb{bottom:699.061867pt;}
.y114{bottom:699.212667pt;}
.yb1{bottom:700.346667pt;}
.y6c{bottom:700.799333pt;}
.y2fd{bottom:701.329467pt;}
.y201{bottom:703.823333pt;}
.y276{bottom:706.620667pt;}
.y262{bottom:706.772133pt;}
.y112{bottom:707.982000pt;}
.y9{bottom:709.492667pt;}
.y6a{bottom:711.006000pt;}
.y2ba{bottom:712.366267pt;}
.yb0{bottom:713.574267pt;}
.y2fc{bottom:714.633867pt;}
.y239{bottom:718.412667pt;}
.y275{bottom:720.000667pt;}
.y260{bottom:720.075333pt;}
.y18b{bottom:720.227333pt;}
.y111{bottom:722.646000pt;}
.y261{bottom:725.442000pt;}
.y2b9{bottom:725.896267pt;}
.y69{bottom:726.427333pt;}
.yaf{bottom:726.727467pt;}
.y2fb{bottom:728.012667pt;}
.y238{bottom:733.078000pt;}
.y274{bottom:733.305067pt;}
.y110{bottom:737.310000pt;}
.y2b8{bottom:739.351867pt;}
.yae{bottom:739.956267pt;}
.y7{bottom:740.787333pt;}
.y2fa{bottom:741.317067pt;}
.y68{bottom:742.527333pt;}
.y8{bottom:742.602000pt;}
.y273{bottom:746.683867pt;}
.y237{bottom:747.743333pt;}
.y10f{bottom:751.974000pt;}
.y10d{bottom:751.975333pt;}
.y2b7{bottom:752.807467pt;}
.yad{bottom:753.108267pt;}
.y2f9{bottom:754.621467pt;}
.y10e{bottom:757.946000pt;}
.y67{bottom:758.628667pt;}
.y272{bottom:759.988267pt;}
.y236{bottom:762.407333pt;}
.y2b6{bottom:766.186267pt;}
.yac{bottom:766.337067pt;}
.y10c{bottom:766.639333pt;}
.y2f8{bottom:768.000267pt;}
.y271{bottom:773.292667pt;}
.y66{bottom:774.728667pt;}
.y235{bottom:777.071333pt;}
.yab{bottom:779.564667pt;}
.ya9{bottom:779.565600pt;}
.y2b5{bottom:779.641867pt;}
.y10b{bottom:781.304667pt;}
.yaa{bottom:784.856667pt;}
.y270{bottom:786.671467pt;}
.y6{bottom:788.711333pt;}
.y65{bottom:790.830000pt;}
.y234{bottom:791.736667pt;}
.ya8{bottom:792.717600pt;}
.y2b4{bottom:793.171867pt;}
.y2f7{bottom:794.684667pt;}
.y10a{bottom:795.968667pt;}
.y26f{bottom:799.975867pt;}
.ya7{bottom:805.946400pt;}
.y233{bottom:806.400667pt;}
.y2b3{bottom:806.627467pt;}
.y64{bottom:807.006000pt;}
.y2f6{bottom:807.987867pt;}
.y109{bottom:810.634000pt;}
.y26e{bottom:813.354667pt;}
.ya6{bottom:819.174000pt;}
.y2b2{bottom:820.083067pt;}
.y232{bottom:821.064667pt;}
.y2f5{bottom:821.292267pt;}
.y5{bottom:821.292410pt;}
.y63{bottom:823.106000pt;}
.y108{bottom:825.298000pt;}
.y26d{bottom:826.659067pt;}
.y2b1{bottom:833.461867pt;}
.y2f4{bottom:834.671067pt;}
.y231{bottom:835.730000pt;}
.ya5{bottom:837.770000pt;}
.y61{bottom:838.451333pt;}
.y4{bottom:839.962000pt;}
.yf1{bottom:839.962933pt;}
.y26c{bottom:839.963467pt;}
.y62{bottom:844.422000pt;}
.y2b0{bottom:846.917467pt;}
.y2f3{bottom:847.975467pt;}
.y230{bottom:850.394000pt;}
.yf0{bottom:853.190533pt;}
.y26b{bottom:853.342267pt;}
.y60{bottom:854.551333pt;}
.y107{bottom:854.627333pt;}
.ya4{bottom:856.818267pt;}
.y2af{bottom:860.371867pt;}
.y2f2{bottom:861.279867pt;}
.y22f{bottom:865.059333pt;}
.yef{bottom:866.343733pt;}
.y26a{bottom:866.646667pt;}
.y3{bottom:866.647741pt;}
.y106{bottom:869.291333pt;}
.ya3{bottom:870.047067pt;}
.y5f{bottom:870.727333pt;}
.y2ae{bottom:873.903067pt;}
.y2f1{bottom:874.658667pt;}
.yee{bottom:879.571333pt;}
.y22e{bottom:879.723333pt;}
.y269{bottom:879.949867pt;}
.ya2{bottom:883.200267pt;}
.y105{bottom:883.955333pt;}
.y5e{bottom:886.828667pt;}
.y2ad{bottom:887.207467pt;}
.y2f0{bottom:887.963067pt;}
.y2{bottom:890.683333pt;}
.y268{bottom:893.329867pt;}
.y22d{bottom:894.388667pt;}
.ya1{bottom:896.427867pt;}
.yed{bottom:896.806000pt;}
.y2ac{bottom:900.737467pt;}
.y2ef{bottom:901.341867pt;}
.y5d{bottom:902.928667pt;}
.y104{bottom:903.836667pt;}
.y267{bottom:906.634267pt;}
.y22c{bottom:909.052667pt;}
.ya0{bottom:909.656667pt;}
.yec{bottom:910.790000pt;}
.y2ab{bottom:914.193067pt;}
.y2ee{bottom:914.646267pt;}
.y5b{bottom:918.274000pt;}
.y266{bottom:920.013067pt;}
.y103{bottom:922.659333pt;}
.y9f{bottom:922.808667pt;}
.y22b{bottom:923.716667pt;}
.y5c{bottom:924.246000pt;}
.y2aa{bottom:927.647467pt;}
.y2ed{bottom:927.950667pt;}
.yeb{bottom:928.404267pt;}
.y265{bottom:933.317467pt;}
.y4f{bottom:933.996667pt;}
.y5a{bottom:934.450000pt;}
.y102{bottom:937.323333pt;}
.y2a9{bottom:941.178667pt;}
.y2ec{bottom:941.329467pt;}
.y9e{bottom:941.480667pt;}
.yea{bottom:941.556267pt;}
.y22a{bottom:944.352667pt;}
.y264{bottom:946.620667pt;}
.y59{bottom:950.551333pt;}
.yff{bottom:951.983333pt;}
.y101{bottom:951.987333pt;}
.y2a8{bottom:954.481867pt;}
.y2eb{bottom:954.633867pt;}
.ye9{bottom:954.785067pt;}
.y100{bottom:957.883333pt;}
.y229{bottom:960.680667pt;}
.y9d{bottom:965.971333pt;}
.y54{bottom:966.533333pt;}
.yfe{bottom:966.647333pt;}
.y57{bottom:966.651333pt;}
.y2a7{bottom:968.011867pt;}
.ye8{bottom:968.012667pt;}
.y58{bottom:972.548667pt;}
.ye5{bottom:993.335333pt;}
.h11{height:22.720000pt;}
.h24{height:22.997798pt;}
.h10{height:23.856000pt;}
.h17{height:24.924676pt;}
.h1a{height:25.392000pt;}
.h22{height:25.409013pt;}
.hd{height:27.694593pt;}
.h21{height:28.724400pt;}
.h26{height:28.839615pt;}
.h2f{height:29.576533pt;}
.hf{height:30.292955pt;}
.h7{height:30.618428pt;}
.h1d{height:32.544000pt;}
.h23{height:32.853997pt;}
.h5{height:34.608000pt;}
.h16{height:36.530667pt;}
.h28{height:36.960000pt;}
.he{height:37.392000pt;}
.h25{height:38.453333pt;}
.h2a{height:38.894105pt;}
.h2b{height:38.897100pt;}
.h12{height:38.937500pt;}
.h29{height:39.205910pt;}
.hc{height:40.376000pt;}
.hb{height:40.746667pt;}
.h31{height:41.536000pt;}
.h30{height:41.541333pt;}
.h8{height:41.546667pt;}
.h14{height:41.875000pt;}
.h1e{height:43.795276pt;}
.h1f{height:43.796342pt;}
.h20{height:43.797409pt;}
.h18{height:43.798476pt;}
.h2c{height:45.085505pt;}
.h2e{height:45.472567pt;}
.h4{height:48.047630pt;}
.h9{height:48.390518pt;}
.h27{height:48.395851pt;}
.h15{height:48.694518pt;}
.ha{height:48.699851pt;}
.h19{height:53.669333pt;}
.h6{height:57.656250pt;}
.h3{height:65.370282pt;}
.h1b{height:66.480000pt;}
.h1c{height:69.648000pt;}
.h2d{height:132.949333pt;}
.h2{height:1043.981333pt;}
.h13{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w4{width:59.489733pt;}
.w3{width:240.832000pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x33{left:4.799614pt;}
.x30{left:10.567075pt;}
.x1{left:11.943333pt;}
.x1d{left:24.000000pt;}
.x31{left:36.024120pt;}
.x32{left:39.386371pt;}
.x34{left:55.073675pt;}
.x2{left:56.692800pt;}
.x51{left:61.681733pt;}
.x2d{left:66.720000pt;}
.x9{left:68.636133pt;}
.x4a{left:75.441052pt;}
.x3{left:88.289733pt;}
.xa{left:114.973200pt;}
.x2e{left:117.600000pt;}
.xb{left:129.032667pt;}
.xc{left:135.987333pt;}
.x1e{left:142.110000pt;}
.x1f{left:154.960667pt;}
.x21{left:177.032667pt;}
.x6{left:214.374000pt;}
.x7{left:222.916667pt;}
.x54{left:226.923333pt;}
.x18{left:239.546000pt;}
.x36{left:254.286000pt;}
.x19{left:265.624640pt;}
.x20{left:270.690000pt;}
.xe{left:275.224667pt;}
.x25{left:278.928667pt;}
.xf{left:285.959333pt;}
.x26{left:295.180667pt;}
.x24{left:310.072667pt;}
.x4e{left:317.102000pt;}
.x27{left:320.503333pt;}
.x22{left:328.894000pt;}
.x4f{left:333.959333pt;}
.x29{left:336.907333pt;}
.x23{left:341.820667pt;}
.x8{left:350.438000pt;}
.x28{left:366.992667pt;}
.xd{left:371.754000pt;}
.x35{left:381.959333pt;}
.x10{left:408.642000pt;}
.x55{left:414.008933pt;}
.x12{left:420.662000pt;}
.x52{left:422.022000pt;}
.x53{left:432.679333pt;}
.x2c{left:436.610667pt;}
.x4{left:437.971333pt;}
.x46{left:451.275333pt;}
.x2a{left:461.027333pt;}
.x47{left:464.956667pt;}
.x15{left:469.190000pt;}
.x3b{left:470.551333pt;}
.x2b{left:475.162000pt;}
.x41{left:479.772667pt;}
.x16{left:484.082000pt;}
.x13{left:522.330000pt;}
.x14{left:531.628667pt;}
.x1c{left:540.933333pt;}
.x5{left:567.608667pt;}
.x1b{left:586.658800pt;}
.x1a{left:588.926000pt;}
.x39{left:591.118000pt;}
.x48{left:599.358000pt;}
.x3a{left:608.503333pt;}
.x49{left:619.011333pt;}
.x4b{left:635.716667pt;}
.x3d{left:643.502000pt;}
.x3c{left:651.212667pt;}
.x44{left:652.572667pt;}
.x50{left:654.614000pt;}
.x3f{left:655.974000pt;}
.x4c{left:657.940667pt;}
.x43{left:659.830000pt;}
.x37{left:662.928667pt;}
.x3e{left:668.144667pt;}
.x4d{left:670.866000pt;}
.x40{left:674.720667pt;}
.x38{left:677.442000pt;}
.x45{left:679.030000pt;}
.x17{left:690.671333pt;}
.x11{left:707.150000pt;}
.x2f{left:713.272667pt;}
.x42{left:718.790000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  