
    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_662ad21f6f30bad5a37dbc0e.woff')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_c6e6578aab106b222bcf8468.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_70ca0677018e692a706dabee.woff')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_8c2ad44c6ee8c3f7b44551db.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9c9309a41c91799efbb4bd7c.woff')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_62531e9b1228815098fff377.woff')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_a2071c092f948481264aa4bd.woff')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_4b435a285210cbe540e076e4.woff')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_b35b264beea9eec86b0dcbdc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.017000;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_60743dda13c03683ccfff85c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.663000;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_e04775fc7ade72e7f8cc8b76.woff')format("woff");}.ffb{font-family:ffb;line-height:0.931000;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_e00fd1db97e6a7b54e0d0894.woff')format("woff");}.ffc{font-family:ffc;line-height:0.968000;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_ecf103557f07d1f8312afbd6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.805000;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_8fbeca9dd56d500b3532da6c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.943000;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_ac0e4295f919187447f96144.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1c0efcee37eebdb5d4b5014b.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9a51460d973e58482e6e1011.woff')format("woff");}.ff11{font-family:ff11;line-height:0.952000;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_dc5eb433441842102357b679.woff')format("woff");}.ff12{font-family:ff12;line-height:0.475000;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_c8923d64dfc5d757fa7f39a4.woff')format("woff");}.ff13{font-family:ff13;line-height:0.965000;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_64ce677a07955be41c9c74ae.woff')format("woff");}.ff14{font-family:ff14;line-height:0.646000;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_d1cb25021b2418ac8a7573ba.woff')format("woff");}.ff15{font-family:ff15;line-height:0.636000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_cafe19e7106a30b0e35f23de.woff')format("woff");}.ff16{font-family:ff16;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_92254db39e987c5078993fb6.woff')format("woff");}.ff17{font-family:ff17;line-height:0.588000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_be3b22258ee59611885bd6fd.woff')format("woff");}.ff18{font-family:ff18;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_59fa333e916c637b230ffe65.woff')format("woff");}.ff19{font-family:ff19;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_92254db39e987c5078993fb6.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.588000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a0b59b232b088110a760efd1.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.637000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_063fe26ff2df8b4b7b6031a3.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.965000;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:ff1d;src:url('chunks/assets/font_d3b2715650a8c50ba883671e.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.887000;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:ff1e;src:url('chunks/assets/font_6603b640ef6752308e67831b.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_c279fc7b36dd75de5f89ccd1.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.637000;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:ff20;src:url('chunks/assets/font_fdead8661cc571e6950a2c2b.woff')format("woff");}.ff20{font-family:ff20;line-height:0.630000;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:ff21;src:url('chunks/assets/font_0cb3c116ee54d60b1bfe463a.woff')format("woff");}.ff21{font-family:ff21;line-height:0.887000;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:ff22;src:url('chunks/assets/font_51bdb37c4970c16c4bccd3c2.woff')format("woff");}.ff22{font-family:ff22;line-height:0.588000;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:ff23;src:url('chunks/assets/font_33f10fe884a432444f636c65.woff')format("woff");}.ff23{font-family:ff23;line-height:0.663000;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:ff24;src:url('chunks/assets/font_59da0e02ae6067372796a68d.woff')format("woff");}.ff24{font-family:ff24;line-height:0.962000;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);}
.m4{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);}
.m6{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(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);}
.va{vertical-align:-38.124000px;}
.v5{vertical-align:-37.080360px;}
.v11{vertical-align:-13.602600px;}
.v3{vertical-align:-11.910000px;}
.v6{vertical-align:-10.891200px;}
.ve{vertical-align:-7.824000px;}
.vb{vertical-align:-5.745600px;}
.v2{vertical-align:-3.060000px;}
.vf{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.704000px;}
.v1{vertical-align:5.784000px;}
.v10{vertical-align:13.602600px;}
.v8{vertical-align:21.093600px;}
.v7{vertical-align:23.466000px;}
.vd{vertical-align:33.858000px;}
.v9{vertical-align:37.422000px;}
.vc{vertical-align:41.742000px;}
.lsa{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.024000px;}
.ls50{letter-spacing:0.036000px;}
.ls6a{letter-spacing:0.040800px;}
.ls6c{letter-spacing:0.043200px;}
.ls5a{letter-spacing:0.047400px;}
.ls62{letter-spacing:0.054000px;}
.ls5c{letter-spacing:0.054600px;}
.ls54{letter-spacing:0.060000px;}
.ls5e{letter-spacing:0.061200px;}
.ls7f{letter-spacing:0.063269px;}
.ls5f{letter-spacing:0.066000px;}
.lsb1{letter-spacing:0.070200px;}
.ls3e{letter-spacing:0.080185px;}
.ls53{letter-spacing:0.081207px;}
.lsa3{letter-spacing:0.084000px;}
.ls84{letter-spacing:0.084600px;}
.ls3{letter-spacing:0.090898px;}
.ls33{letter-spacing:0.096000px;}
.ls89{letter-spacing:0.103200px;}
.ls8a{letter-spacing:0.106314px;}
.lsac{letter-spacing:0.108000px;}
.lsb4{letter-spacing:0.124200px;}
.ls8b{letter-spacing:0.133800px;}
.ls8d{letter-spacing:0.140400px;}
.ls3f{letter-spacing:0.156000px;}
.ls7a{letter-spacing:0.172800px;}
.ls7c{letter-spacing:0.174600px;}
.ls77{letter-spacing:0.184200px;}
.ls83{letter-spacing:0.196200px;}
.ls56{letter-spacing:0.204000px;}
.ls59{letter-spacing:0.216000px;}
.lsa6{letter-spacing:0.252000px;}
.lsaf{letter-spacing:0.259200px;}
.ls86{letter-spacing:0.268200px;}
.ls97{letter-spacing:0.270000px;}
.ls80{letter-spacing:0.301200px;}
.ls43{letter-spacing:0.323963px;}
.ls18{letter-spacing:0.330000px;}
.ls36{letter-spacing:0.348000px;}
.lsb0{letter-spacing:0.356400px;}
.lsa7{letter-spacing:0.359952px;}
.ls3a{letter-spacing:0.366000px;}
.lsb{letter-spacing:0.367958px;}
.lsa9{letter-spacing:0.396000px;}
.ls93{letter-spacing:0.405000px;}
.lsd{letter-spacing:0.408000px;}
.ls94{letter-spacing:0.408240px;}
.ls8{letter-spacing:0.414000px;}
.ls2{letter-spacing:0.492000px;}
.ls3b{letter-spacing:0.498000px;}
.ls34{letter-spacing:0.515941px;}
.ls11{letter-spacing:0.528000px;}
.lsa8{letter-spacing:0.529129px;}
.lsc5{letter-spacing:0.529200px;}
.ls1c{letter-spacing:0.582000px;}
.ls38{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.666000px;}
.lsa5{letter-spacing:0.714000px;}
.ls12{letter-spacing:0.732000px;}
.lsa2{letter-spacing:0.786000px;}
.ls4{letter-spacing:0.822000px;}
.ls70{letter-spacing:0.874800px;}
.ls65{letter-spacing:0.900000px;}
.ls99{letter-spacing:0.912600px;}
.ls90{letter-spacing:0.972000px;}
.ls44{letter-spacing:0.979887px;}
.ls17{letter-spacing:1.008000px;}
.lsae{letter-spacing:1.020600px;}
.lsc{letter-spacing:1.103873px;}
.ls13{letter-spacing:1.104000px;}
.ls57{letter-spacing:1.115872px;}
.ls3c{letter-spacing:1.128000px;}
.lsf{letter-spacing:1.134000px;}
.ls4a{letter-spacing:1.170000px;}
.lsb3{letter-spacing:1.171800px;}
.ls16{letter-spacing:1.230000px;}
.ls9{letter-spacing:1.242000px;}
.ls47{letter-spacing:1.254000px;}
.lsa4{letter-spacing:1.290000px;}
.lsc2{letter-spacing:1.339200px;}
.ls4e{letter-spacing:1.500000px;}
.ls68{letter-spacing:1.656000px;}
.ls37{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.184000px;}
.ls19{letter-spacing:2.322000px;}
.lsbf{letter-spacing:2.381400px;}
.ls6e{letter-spacing:5.137200px;}
.ls31{letter-spacing:5.422200px;}
.ls24{letter-spacing:7.803000px;}
.ls2e{letter-spacing:8.137200px;}
.ls20{letter-spacing:8.142600px;}
.ls40{letter-spacing:8.982000px;}
.ls3d{letter-spacing:9.192000px;}
.ls35{letter-spacing:12.582000px;}
.lsb6{letter-spacing:12.592800px;}
.ls9b{letter-spacing:12.857400px;}
.lsbd{letter-spacing:12.933000px;}
.ls9a{letter-spacing:13.019400px;}
.ls91{letter-spacing:13.467600px;}
.lsc1{letter-spacing:13.608000px;}
.lsb9{letter-spacing:13.613400px;}
.lsc3{letter-spacing:13.953600px;}
.ls82{letter-spacing:14.007269px;}
.ls79{letter-spacing:14.050314px;}
.ls6f{letter-spacing:14.191433px;}
.ls78{letter-spacing:14.197433px;}
.ls9c{letter-spacing:14.412600px;}
.ls67{letter-spacing:14.430000px;}
.ls66{letter-spacing:14.664000px;}
.ls8c{letter-spacing:14.881433px;}
.lsc4{letter-spacing:14.974200px;}
.ls2b{letter-spacing:15.022800px;}
.ls29{letter-spacing:15.060600px;}
.ls8e{letter-spacing:15.070314px;}
.ls2c{letter-spacing:15.098400px;}
.ls2d{letter-spacing:15.217200px;}
.ls32{letter-spacing:15.244214px;}
.ls10{letter-spacing:15.306000px;}
.ls2f{letter-spacing:15.349136px;}
.ls30{letter-spacing:15.395400px;}
.ls2a{letter-spacing:15.417000px;}
.ls69{letter-spacing:15.586196px;}
.ls21{letter-spacing:15.691136px;}
.ls28{letter-spacing:15.703200px;}
.ls26{letter-spacing:15.735600px;}
.ls23{letter-spacing:15.751800px;}
.ls9f{letter-spacing:15.780000px;}
.ls98{letter-spacing:15.818413px;}
.ls1e{letter-spacing:15.897600px;}
.ls8f{letter-spacing:15.984000px;}
.lsbe{letter-spacing:15.994800px;}
.ls25{letter-spacing:16.039136px;}
.ls1f{letter-spacing:16.043400px;}
.lsa0{letter-spacing:16.044000px;}
.ls22{letter-spacing:16.075800px;}
.ls27{letter-spacing:16.097400px;}
.ls1d{letter-spacing:16.119000px;}
.ls51{letter-spacing:16.759376px;}
.lsba{letter-spacing:17.695800px;}
.ls9d{letter-spacing:17.742000px;}
.ls55{letter-spacing:17.769207px;}
.ls64{letter-spacing:17.783744px;}
.ls63{letter-spacing:17.862000px;}
.ls42{letter-spacing:17.874000px;}
.lsab{letter-spacing:18.030600px;}
.lsaa{letter-spacing:18.036000px;}
.ls5b{letter-spacing:18.126344px;}
.ls4b{letter-spacing:18.744000px;}
.ls73{letter-spacing:18.884413px;}
.ls4c{letter-spacing:18.980497px;}
.ls71{letter-spacing:18.982196px;}
.lsb8{letter-spacing:19.056600px;}
.ls72{letter-spacing:19.180800px;}
.lsbc{letter-spacing:19.731600px;}
.ls4d{letter-spacing:19.770000px;}
.lsa1{letter-spacing:19.788000px;}
.lsbb{letter-spacing:20.077200px;}
.ls9e{letter-spacing:20.130000px;}
.ls61{letter-spacing:20.165744px;}
.ls60{letter-spacing:20.244000px;}
.ls1b{letter-spacing:20.454000px;}
.ls15{letter-spacing:20.748000px;}
.ls49{letter-spacing:21.020497px;}
.ls48{letter-spacing:21.126000px;}
.ls46{letter-spacing:21.144000px;}
.ls45{letter-spacing:21.186344px;}
.ls6d{letter-spacing:21.214891px;}
.ls6b{letter-spacing:21.314030px;}
.ls87{letter-spacing:21.337433px;}
.lsb5{letter-spacing:21.778200px;}
.ls7b{letter-spacing:22.015433px;}
.ls7d{letter-spacing:22.216314px;}
.lsb7{letter-spacing:22.458600px;}
.ls58{letter-spacing:22.546544px;}
.ls95{letter-spacing:22.588200px;}
.ls96{letter-spacing:22.599000px;}
.ls4f{letter-spacing:23.808000px;}
.ls85{letter-spacing:25.233269px;}
.ls76{letter-spacing:25.855200px;}
.ls92{letter-spacing:25.979400px;}
.ls7e{letter-spacing:26.157600px;}
.ls0{letter-spacing:26.667995px;}
.ls1{letter-spacing:26.761594px;}
.ls7{letter-spacing:26.868000px;}
.ls88{letter-spacing:26.878075px;}
.ls5d{letter-spacing:28.329944px;}
.ls41{letter-spacing:28.994185px;}
.ls6{letter-spacing:29.256000px;}
.lsc0{letter-spacing:30.272400px;}
.lsb2{letter-spacing:30.699000px;}
.ls39{letter-spacing:33.174000px;}
.ls74{letter-spacing:33.814800px;}
.lse{letter-spacing:34.014000px;}
.lsad{letter-spacing:36.309600px;}
.ls1a{letter-spacing:42.522000px;}
.ls81{letter-spacing:45.576000px;}
.ls75{letter-spacing:50.803200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-50.174599px;}
.ws0{word-spacing:-50.069599px;}
.ws135{word-spacing:-42.420000px;}
.ws28{word-spacing:-41.958000px;}
.ws148{word-spacing:-36.780000px;}
.ws18d{word-spacing:-35.940000px;}
.ws286{word-spacing:-33.534000px;}
.ws1f0{word-spacing:-33.102000px;}
.ws204{word-spacing:-32.346000px;}
.ws27a{word-spacing:-31.392000px;}
.ws282{word-spacing:-29.382000px;}
.ws285{word-spacing:-29.352000px;}
.ws28d{word-spacing:-29.310000px;}
.ws27e{word-spacing:-29.304000px;}
.ws28c{word-spacing:-29.292000px;}
.ws28b{word-spacing:-29.160000px;}
.wsb4{word-spacing:-27.000000px;}
.ws82{word-spacing:-25.950000px;}
.ws16d{word-spacing:-24.642232px;}
.ws81{word-spacing:-23.814000px;}
.ws161{word-spacing:-23.040000px;}
.ws139{word-spacing:-22.920000px;}
.wsc6{word-spacing:-22.908000px;}
.ws188{word-spacing:-22.902000px;}
.ws187{word-spacing:-22.896000px;}
.ws177{word-spacing:-22.788000px;}
.ws13b{word-spacing:-22.680000px;}
.wsc7{word-spacing:-22.650000px;}
.ws12c{word-spacing:-22.590000px;}
.ws42{word-spacing:-22.584000px;}
.ws13a{word-spacing:-22.566000px;}
.ws12b{word-spacing:-22.560000px;}
.ws185{word-spacing:-22.524000px;}
.ws1ba{word-spacing:-22.512000px;}
.ws1b8{word-spacing:-22.464000px;}
.ws1b6{word-spacing:-22.446000px;}
.ws1b9{word-spacing:-22.374000px;}
.ws2e{word-spacing:-22.362000px;}
.ws290{word-spacing:-22.356000px;}
.ws5c{word-spacing:-22.314000px;}
.ws11f{word-spacing:-22.290000px;}
.ws29e{word-spacing:-22.242000px;}
.ws1b7{word-spacing:-22.224000px;}
.ws57{word-spacing:-22.212000px;}
.ws1cc{word-spacing:-22.200000px;}
.ws20f{word-spacing:-22.177604px;}
.ws14c{word-spacing:-22.158000px;}
.ws6c{word-spacing:-22.110000px;}
.wsc1{word-spacing:-21.966000px;}
.wsc2{word-spacing:-21.876000px;}
.ws160{word-spacing:-21.810000px;}
.ws18c{word-spacing:-21.756000px;}
.ws15d{word-spacing:-21.564000px;}
.ws10b{word-spacing:-21.546000px;}
.wsef{word-spacing:-21.474000px;}
.ws17e{word-spacing:-21.456000px;}
.ws291{word-spacing:-21.450000px;}
.ws36{word-spacing:-21.222000px;}
.ws10c{word-spacing:-21.192000px;}
.ws80{word-spacing:-21.035700px;}
.ws1ab{word-spacing:-21.012000px;}
.ws277{word-spacing:-21.006000px;}
.ws26d{word-spacing:-20.916000px;}
.ws1c4{word-spacing:-20.880000px;}
.ws10e{word-spacing:-20.874000px;}
.ws2c{word-spacing:-20.796000px;}
.wsa0{word-spacing:-20.766000px;}
.ws278{word-spacing:-20.739600px;}
.wsa1{word-spacing:-20.700000px;}
.ws77{word-spacing:-20.676000px;}
.ws2f8{word-spacing:-20.671200px;}
.ws78{word-spacing:-20.670000px;}
.ws11c{word-spacing:-20.634000px;}
.ws250{word-spacing:-20.633400px;}
.ws40{word-spacing:-20.622000px;}
.ws63{word-spacing:-20.562000px;}
.ws180{word-spacing:-20.496000px;}
.ws242{word-spacing:-20.487600px;}
.ws343{word-spacing:-20.422800px;}
.wsd1{word-spacing:-20.412000px;}
.wsd0{word-spacing:-20.406000px;}
.ws13c{word-spacing:-20.400000px;}
.ws2fa{word-spacing:-20.352600px;}
.ws15e{word-spacing:-20.340000px;}
.ws1bb{word-spacing:-20.328000px;}
.ws267{word-spacing:-20.298600px;}
.ws18e{word-spacing:-20.280000px;}
.ws153{word-spacing:-20.274000px;}
.ws288{word-spacing:-20.190000px;}
.ws25a{word-spacing:-20.163600px;}
.ws236{word-spacing:-20.158200px;}
.ws265{word-spacing:-20.152800px;}
.ws123{word-spacing:-20.130000px;}
.ws37e{word-spacing:-20.125800px;}
.ws1c1{word-spacing:-20.112000px;}
.ws266{word-spacing:-20.082600px;}
.ws324{word-spacing:-20.077200px;}
.ws186{word-spacing:-20.052000px;}
.wsbe{word-spacing:-20.046000px;}
.ws2e7{word-spacing:-20.039400px;}
.ws30b{word-spacing:-19.980000px;}
.ws305{word-spacing:-19.974600px;}
.ws237{word-spacing:-19.969200px;}
.ws136{word-spacing:-19.968000px;}
.ws15a{word-spacing:-19.938000px;}
.ws2f9{word-spacing:-19.936800px;}
.ws6d{word-spacing:-19.932000px;}
.ws1e3{word-spacing:-19.915200px;}
.ws10d{word-spacing:-19.860000px;}
.ws24d{word-spacing:-19.812600px;}
.ws1bf{word-spacing:-19.812000px;}
.ws261{word-spacing:-19.807200px;}
.ws313{word-spacing:-19.801800px;}
.ws1be{word-spacing:-19.776000px;}
.ws2cd{word-spacing:-19.742400px;}
.ws315{word-spacing:-19.731600px;}
.ws44{word-spacing:-19.710000px;}
.ws344{word-spacing:-19.693800px;}
.ws24e{word-spacing:-19.661400px;}
.ws15f{word-spacing:-19.638000px;}
.ws2ab{word-spacing:-19.629000px;}
.ws11d{word-spacing:-19.590000px;}
.ws66{word-spacing:-19.524000px;}
.ws2b5{word-spacing:-19.521000px;}
.ws142{word-spacing:-19.506000px;}
.ws11e{word-spacing:-19.488000px;}
.ws87{word-spacing:-19.464000px;}
.ws2a{word-spacing:-19.446000px;}
.wsde{word-spacing:-19.422000px;}
.ws141{word-spacing:-19.404000px;}
.ws35f{word-spacing:-19.396800px;}
.ws22c{word-spacing:-19.342800px;}
.ws86{word-spacing:-19.302000px;}
.ws2b{word-spacing:-19.296000px;}
.ws67{word-spacing:-19.260000px;}
.ws1e9{word-spacing:-19.256400px;}
.ws16e{word-spacing:-19.248000px;}
.ws318{word-spacing:-19.240200px;}
.ws229{word-spacing:-19.234800px;}
.ws228{word-spacing:-19.224000px;}
.ws79{word-spacing:-19.176000px;}
.ws2bb{word-spacing:-19.170000px;}
.wsdd{word-spacing:-19.164000px;}
.ws16f{word-spacing:-19.152000px;}
.ws1e8{word-spacing:-19.148400px;}
.ws30a{word-spacing:-19.143000px;}
.ws205{word-spacing:-19.132200px;}
.ws314{word-spacing:-19.121400px;}
.ws372{word-spacing:-19.099800px;}
.ws1a0{word-spacing:-19.092000px;}
.ws202{word-spacing:-19.089000px;}
.ws2ba{word-spacing:-19.083600px;}
.ws336{word-spacing:-19.078200px;}
.ws203{word-spacing:-19.067400px;}
.ws1e7{word-spacing:-19.062000px;}
.ws32d{word-spacing:-19.051200px;}
.ws193{word-spacing:-19.044000px;}
.ws129{word-spacing:-19.038000px;}
.ws32e{word-spacing:-18.991800px;}
.ws279{word-spacing:-18.986700px;}
.ws26f{word-spacing:-18.958200px;}
.ws1ae{word-spacing:-18.936000px;}
.ws2e9{word-spacing:-18.921600px;}
.ws194{word-spacing:-18.918000px;}
.ws1ea{word-spacing:-18.862200px;}
.ws1b0{word-spacing:-18.846000px;}
.ws28f{word-spacing:-18.832800px;}
.ws157{word-spacing:-18.822000px;}
.ws2ed{word-spacing:-18.802800px;}
.ws23e{word-spacing:-18.792000px;}
.ws26b{word-spacing:-18.748800px;}
.ws241{word-spacing:-18.738000px;}
.ws1dd{word-spacing:-18.711000px;}
.ws192{word-spacing:-18.708000px;}
.ws158{word-spacing:-18.684000px;}
.ws23d{word-spacing:-18.662400px;}
.ws23c{word-spacing:-18.657000px;}
.ws2be{word-spacing:-18.651600px;}
.ws379{word-spacing:-18.646200px;}
.ws2f1{word-spacing:-18.640800px;}
.ws26a{word-spacing:-18.613800px;}
.ws1cd{word-spacing:-18.576000px;}
.ws29f{word-spacing:-18.498000px;}
.wsc3{word-spacing:-18.486000px;}
.ws1dc{word-spacing:-18.451800px;}
.ws1a8{word-spacing:-18.408000px;}
.ws301{word-spacing:-18.403200px;}
.ws175{word-spacing:-18.384000px;}
.ws239{word-spacing:-18.381600px;}
.ws260{word-spacing:-18.365400px;}
.wscc{word-spacing:-18.360000px;}
.ws184{word-spacing:-18.342000px;}
.ws8e{word-spacing:-18.330000px;}
.ws5b{word-spacing:-18.318000px;}
.ws8f{word-spacing:-18.264000px;}
.ws22e{word-spacing:-18.252000px;}
.ws238{word-spacing:-18.235800px;}
.ws1cf{word-spacing:-18.222000px;}
.ws22d{word-spacing:-18.203400px;}
.ws173{word-spacing:-18.198000px;}
.ws27b{word-spacing:-18.192000px;}
.ws174{word-spacing:-18.180000px;}
.ws371{word-spacing:-18.160200px;}
.ws172{word-spacing:-18.156000px;}
.ws48{word-spacing:-18.150000px;}
.ws5a{word-spacing:-18.132000px;}
.ws164{word-spacing:-18.072000px;}
.ws16a{word-spacing:-18.066000px;}
.ws264{word-spacing:-18.063000px;}
.ws7{word-spacing:-18.052200px;}
.ws32f{word-spacing:-18.019800px;}
.ws16b{word-spacing:-18.018000px;}
.ws8{word-spacing:-17.982000px;}
.ws322{word-spacing:-17.960400px;}
.ws311{word-spacing:-17.911800px;}
.wscf{word-spacing:-17.904000px;}
.ws1a5{word-spacing:-17.898000px;}
.ws357{word-spacing:-17.803800px;}
.ws76{word-spacing:-17.802000px;}
.ws368{word-spacing:-17.798400px;}
.wscb{word-spacing:-17.790000px;}
.ws2ea{word-spacing:-17.776800px;}
.ws358{word-spacing:-17.733600px;}
.ws38a{word-spacing:-17.717400px;}
.ws2f5{word-spacing:-17.701200px;}
.ws199{word-spacing:-17.688000px;}
.ws330{word-spacing:-17.668800px;}
.ws98{word-spacing:-17.628000px;}
.ws2da{word-spacing:-17.620200px;}
.ws14a{word-spacing:-17.598000px;}
.ws179{word-spacing:-17.544000px;}
.ws370{word-spacing:-17.523000px;}
.ws280{word-spacing:-17.514000px;}
.ws2b8{word-spacing:-17.506800px;}
.ws269{word-spacing:-17.479800px;}
.ws34a{word-spacing:-17.474400px;}
.ws25e{word-spacing:-17.398800px;}
.ws309{word-spacing:-17.388000px;}
.ws25f{word-spacing:-17.361000px;}
.ws1d4{word-spacing:-17.350200px;}
.wsc5{word-spacing:-17.328000px;}
.ws34b{word-spacing:-17.290800px;}
.ws37f{word-spacing:-17.274600px;}
.ws1c2{word-spacing:-17.274000px;}
.ws165{word-spacing:-17.208000px;}
.ws35e{word-spacing:-17.161200px;}
.ws1d3{word-spacing:-17.123400px;}
.ws17c{word-spacing:-17.112000px;}
.ws1ac{word-spacing:-17.100000px;}
.ws16c{word-spacing:-17.088000px;}
.ws38b{word-spacing:-17.085600px;}
.ws3d{word-spacing:-17.064000px;}
.ws1c0{word-spacing:-17.046000px;}
.ws62{word-spacing:-17.034000px;}
.ws28e{word-spacing:-17.022000px;}
.ws32a{word-spacing:-17.020800px;}
.ws182{word-spacing:-17.004000px;}
.ws293{word-spacing:-16.980000px;}
.ws152{word-spacing:-16.974000px;}
.ws17a{word-spacing:-16.968000px;}
.ws312{word-spacing:-16.918200px;}
.ws2db{word-spacing:-16.907400px;}
.ws195{word-spacing:-16.878000px;}
.ws1a9{word-spacing:-16.872000px;}
.wsd5{word-spacing:-16.866000px;}
.ws337{word-spacing:-16.858800px;}
.ws1d0{word-spacing:-16.824000px;}
.ws7f{word-spacing:-16.818000px;}
.ws27d{word-spacing:-16.812000px;}
.ws9b{word-spacing:-16.806000px;}
.ws17b{word-spacing:-16.788000px;}
.wsdb{word-spacing:-16.782000px;}
.ws95{word-spacing:-16.770000px;}
.ws268{word-spacing:-16.750800px;}
.ws1c6{word-spacing:-16.740000px;}
.ws284{word-spacing:-16.722000px;}
.ws181{word-spacing:-16.710000px;}
.ws9a{word-spacing:-16.680000px;}
.ws109{word-spacing:-16.662000px;}
.ws65{word-spacing:-16.650000px;}
.ws94{word-spacing:-16.632000px;}
.ws134{word-spacing:-16.614000px;}
.wsdc{word-spacing:-16.584000px;}
.wsf6{word-spacing:-16.578000px;}
.ws2a8{word-spacing:-16.556400px;}
.ws347{word-spacing:-16.551000px;}
.ws183{word-spacing:-16.530000px;}
.ws170{word-spacing:-16.524000px;}
.wsd8{word-spacing:-16.488000px;}
.wsc4{word-spacing:-16.458000px;}
.ws34f{word-spacing:-16.437600px;}
.wse0{word-spacing:-16.404000px;}
.ws1da{word-spacing:-16.399800px;}
.ws8c{word-spacing:-16.368000px;}
.ws341{word-spacing:-16.356600px;}
.ws34c{word-spacing:-16.351200px;}
.ws349{word-spacing:-16.329600px;}
.ws340{word-spacing:-16.275600px;}
.ws144{word-spacing:-16.176000px;}
.ws27c{word-spacing:-16.158000px;}
.ws281{word-spacing:-16.152000px;}
.ws289{word-spacing:-16.134000px;}
.wsee{word-spacing:-16.104000px;}
.ws27{word-spacing:-16.098000px;}
.ws1bd{word-spacing:-16.056000px;}
.ws356{word-spacing:-16.043400px;}
.ws166{word-spacing:-16.038000px;}
.ws11a{word-spacing:-16.032000px;}
.ws378{word-spacing:-16.016400px;}
.ws2eb{word-spacing:-16.000200px;}
.ws145{word-spacing:-15.996000px;}
.ws1c3{word-spacing:-15.978000px;}
.ws28a{word-spacing:-15.972000px;}
.ws27f{word-spacing:-15.960000px;}
.ws332{word-spacing:-15.924600px;}
.ws149{word-spacing:-15.912000px;}
.ws387{word-spacing:-15.908400px;}
.ws132{word-spacing:-15.894000px;}
.wsca{word-spacing:-15.870000px;}
.ws2b9{word-spacing:-15.854400px;}
.ws130{word-spacing:-15.852000px;}
.ws283{word-spacing:-15.816000px;}
.ws13f{word-spacing:-15.798000px;}
.ws2c4{word-spacing:-15.778800px;}
.wsc9{word-spacing:-15.768000px;}
.wsc8{word-spacing:-15.762000px;}
.wse9{word-spacing:-15.744000px;}
.ws12f{word-spacing:-15.606000px;}
.ws31b{word-spacing:-15.595200px;}
.ws59{word-spacing:-15.582000px;}
.ws292{word-spacing:-15.510000px;}
.ws392{word-spacing:-15.454800px;}
.ws2d{word-spacing:-15.444000px;}
.ws154{word-spacing:-15.438000px;}
.wsd2{word-spacing:-15.408000px;}
.ws2c3{word-spacing:-15.395400px;}
.ws2c1{word-spacing:-15.390000px;}
.ws23a{word-spacing:-15.384600px;}
.ws2b3{word-spacing:-15.357600px;}
.ws21d{word-spacing:-15.352200px;}
.ws2d5{word-spacing:-15.346800px;}
.ws2bc{word-spacing:-15.341400px;}
.ws2c5{word-spacing:-15.336000px;}
.ws50{word-spacing:-15.330600px;}
.ws2b6{word-spacing:-15.325200px;}
.ws361{word-spacing:-15.319800px;}
.ws37d{word-spacing:-15.314400px;}
.ws2ad{word-spacing:-15.309000px;}
.wsd3{word-spacing:-15.306000px;}
.ws171{word-spacing:-15.294000px;}
.ws2f3{word-spacing:-15.292800px;}
.ws334{word-spacing:-15.287400px;}
.ws331{word-spacing:-15.282000px;}
.ws359{word-spacing:-15.271200px;}
.ws30d{word-spacing:-15.265800px;}
.ws2a2{word-spacing:-15.255000px;}
.ws4e{word-spacing:-15.249600px;}
.ws2c7{word-spacing:-15.244200px;}
.ws2ec{word-spacing:-15.238800px;}
.ws245{word-spacing:-15.233400px;}
.ws2e1{word-spacing:-15.222600px;}
.ws246{word-spacing:-15.195600px;}
.ws2cf{word-spacing:-15.174000px;}
.ws244{word-spacing:-15.163200px;}
.ws1f7{word-spacing:-15.130800px;}
.ws36c{word-spacing:-15.120000px;}
.ws380{word-spacing:-15.109200px;}
.ws2a4{word-spacing:-15.103800px;}
.ws2bd{word-spacing:-15.098400px;}
.ws1c9{word-spacing:-15.096000px;}
.ws212{word-spacing:-15.082200px;}
.ws393{word-spacing:-15.076800px;}
.ws38f{word-spacing:-15.060600px;}
.ws294{word-spacing:-15.060000px;}
.ws235{word-spacing:-15.055200px;}
.ws1de{word-spacing:-15.049800px;}
.ws303{word-spacing:-15.044400px;}
.ws2e0{word-spacing:-15.039000px;}
.wscd{word-spacing:-15.036000px;}
.ws29{word-spacing:-15.018000px;}
.ws2fc{word-spacing:-15.001200px;}
.ws287{word-spacing:-15.000000px;}
.ws35a{word-spacing:-14.979600px;}
.ws2f0{word-spacing:-14.931000px;}
.ws2d1{word-spacing:-14.909400px;}
.ws300{word-spacing:-14.904000px;}
.ws385{word-spacing:-14.882400px;}
.ws328{word-spacing:-14.785200px;}
.ws1bc{word-spacing:-14.760000px;}
.ws10a{word-spacing:-14.730000px;}
.ws2d7{word-spacing:-14.720400px;}
.ws23b{word-spacing:-14.709600px;}
.ws31c{word-spacing:-14.704200px;}
.ws1b3{word-spacing:-14.670000px;}
.ws2d6{word-spacing:-14.639400px;}
.ws90{word-spacing:-14.616000px;}
.ws2f4{word-spacing:-14.607000px;}
.ws386{word-spacing:-14.596200px;}
.ws2ff{word-spacing:-14.590800px;}
.ws150{word-spacing:-14.580000px;}
.ws33b{word-spacing:-14.574600px;}
.ws2cc{word-spacing:-14.536800px;}
.ws138{word-spacing:-14.532000px;}
.ws2c2{word-spacing:-14.531400px;}
.ws2d0{word-spacing:-14.526000px;}
.ws362{word-spacing:-14.520600px;}
.ws19c{word-spacing:-14.496000px;}
.ws2d9{word-spacing:-14.493600px;}
.ws367{word-spacing:-14.482800px;}
.ws2ae{word-spacing:-14.472000px;}
.ws338{word-spacing:-14.466600px;}
.ws394{word-spacing:-14.455800px;}
.ws37c{word-spacing:-14.439600px;}
.ws151{word-spacing:-14.424000px;}
.wsa8{word-spacing:-14.418000px;}
.ws2ca{word-spacing:-14.401800px;}
.ws316{word-spacing:-14.396400px;}
.ws12e{word-spacing:-14.394000px;}
.ws2c6{word-spacing:-14.385600px;}
.ws19e{word-spacing:-14.376000px;}
.ws2e6{word-spacing:-14.374800px;}
.ws304{word-spacing:-14.369400px;}
.ws2a3{word-spacing:-14.358600px;}
.ws33{word-spacing:-14.328000px;}
.ws30f{word-spacing:-14.299200px;}
.ws9c{word-spacing:-14.298000px;}
.ws369{word-spacing:-14.288400px;}
.ws137{word-spacing:-14.280000px;}
.ws335{word-spacing:-14.272200px;}
.ws2fd{word-spacing:-14.266800px;}
.ws2e2{word-spacing:-14.256000px;}
.ws351{word-spacing:-14.250600px;}
.ws1ef{word-spacing:-14.245200px;}
.ws75{word-spacing:-14.226000px;}
.ws36e{word-spacing:-14.218200px;}
.ws329{word-spacing:-14.196600px;}
.ws325{word-spacing:-14.180400px;}
.ws2b7{word-spacing:-14.169600px;}
.ws19a{word-spacing:-14.166000px;}
.ws20c{word-spacing:-14.131800px;}
.ws1ee{word-spacing:-14.094000px;}
.ws14f{word-spacing:-14.076000px;}
.ws15c{word-spacing:-14.058000px;}
.ws19f{word-spacing:-14.040000px;}
.ws93{word-spacing:-14.016000px;}
.ws34{word-spacing:-13.992000px;}
.wsa7{word-spacing:-13.986000px;}
.ws38e{word-spacing:-13.975200px;}
.ws2e3{word-spacing:-13.959000px;}
.ws20d{word-spacing:-13.953600px;}
.ws375{word-spacing:-13.948200px;}
.ws7a{word-spacing:-13.872000px;}
.ws1f5{word-spacing:-13.856400px;}
.ws32{word-spacing:-13.818000px;}
.ws7b{word-spacing:-13.812000px;}
.ws37b{word-spacing:-13.786200px;}
.ws2ac{word-spacing:-13.683600px;}
.ws1b4{word-spacing:-13.638000px;}
.ws33d{word-spacing:-13.635000px;}
.ws310{word-spacing:-13.613400px;}
.ws54{word-spacing:-13.604400px;}
.ws2cb{word-spacing:-13.591800px;}
.ws1ca{word-spacing:-13.572000px;}
.ws33f{word-spacing:-13.543200px;}
.wse3{word-spacing:-13.506000px;}
.ws2d8{word-spacing:-13.500000px;}
.ws1b5{word-spacing:-13.494000px;}
.wsec{word-spacing:-13.428000px;}
.ws143{word-spacing:-13.410000px;}
.ws85{word-spacing:-13.404000px;}
.wsed{word-spacing:-13.398000px;}
.ws352{word-spacing:-13.397400px;}
.ws295{word-spacing:-13.380000px;}
.wsff{word-spacing:-13.314000px;}
.wsd6{word-spacing:-13.296000px;}
.ws348{word-spacing:-13.289400px;}
.ws159{word-spacing:-13.254000px;}
.wsfe{word-spacing:-13.212000px;}
.ws32b{word-spacing:-13.165200px;}
.ws1ad{word-spacing:-13.164000px;}
.ws390{word-spacing:-13.095000px;}
.ws38d{word-spacing:-13.024800px;}
.ws38c{word-spacing:-12.960000px;}
.ws33e{word-spacing:-12.889800px;}
.ws9e{word-spacing:-12.870000px;}
.ws275{word-spacing:-12.792000px;}
.ws2ef{word-spacing:-12.630600px;}
.ws2e8{word-spacing:-12.587400px;}
.ws32c{word-spacing:-12.576600px;}
.ws274{word-spacing:-12.516000px;}
.ws1db{word-spacing:-12.457800px;}
.ws24c{word-spacing:-12.382200px;}
.ws155{word-spacing:-12.360000px;}
.ws24b{word-spacing:-12.328200px;}
.ws18{word-spacing:-12.300000px;}
.ws156{word-spacing:-12.282000px;}
.ws1e5{word-spacing:-12.247200px;}
.ws118{word-spacing:-12.234000px;}
.ws302{word-spacing:-12.139200px;}
.ws1e4{word-spacing:-12.133800px;}
.ws360{word-spacing:-11.982600px;}
.ws1e6{word-spacing:-11.961000px;}
.ws1d1{word-spacing:-11.745000px;}
.ws1e1{word-spacing:-11.718000px;}
.ws71{word-spacing:-11.700000px;}
.ws72{word-spacing:-11.694000px;}
.ws231{word-spacing:-11.680200px;}
.ws230{word-spacing:-11.610000px;}
.ws2f6{word-spacing:-11.566800px;}
.ws1f{word-spacing:-11.544000px;}
.ws14e{word-spacing:-11.496000px;}
.ws232{word-spacing:-11.394000px;}
.ws2a0{word-spacing:-11.350800px;}
.ws317{word-spacing:-11.248200px;}
.ws119{word-spacing:-11.220000px;}
.ws68{word-spacing:-11.202000px;}
.ws2dd{word-spacing:-11.075400px;}
.ws2a6{word-spacing:-11.053800px;}
.ws209{word-spacing:-11.032200px;}
.ws1f6{word-spacing:-11.005200px;}
.ws298{word-spacing:-10.992000px;}
.wse8{word-spacing:-10.980000px;}
.wse7{word-spacing:-10.926000px;}
.ws208{word-spacing:-10.902600px;}
.ws31{word-spacing:-10.878000px;}
.ws207{word-spacing:-10.854000px;}
.ws339{word-spacing:-10.837800px;}
.ws178{word-spacing:-10.752000px;}
.wsaa{word-spacing:-10.729800px;}
.ws249{word-spacing:-10.724400px;}
.ws307{word-spacing:-10.681200px;}
.ws296{word-spacing:-10.680000px;}
.ws24a{word-spacing:-10.675800px;}
.ws2b4{word-spacing:-10.627200px;}
.ws2f7{word-spacing:-10.616400px;}
.ws124{word-spacing:-10.600200px;}
.ws18b{word-spacing:-10.584000px;}
.ws31a{word-spacing:-10.557000px;}
.ws167{word-spacing:-10.542000px;}
.ws7e{word-spacing:-10.524000px;}
.ws25c{word-spacing:-10.508400px;}
.ws35{word-spacing:-10.506000px;}
.ws15b{word-spacing:-10.476000px;}
.ws25b{word-spacing:-10.470600px;}
.ws353{word-spacing:-10.351800px;}
.ws2de{word-spacing:-10.292400px;}
.ws29b{word-spacing:-10.248000px;}
.ws364{word-spacing:-10.233000px;}
.ws36f{word-spacing:-10.125000px;}
.ws389{word-spacing:-10.038600px;}
.ws1ce{word-spacing:-9.996000px;}
.ws308{word-spacing:-9.952200px;}
.ws388{word-spacing:-9.919800px;}
.ws218{word-spacing:-9.898200px;}
.ws384{word-spacing:-9.892800px;}
.ws10f{word-spacing:-9.864000px;}
.ws2a7{word-spacing:-9.833400px;}
.wsf5{word-spacing:-9.768000px;}
.ws3f{word-spacing:-9.714000px;}
.ws189{word-spacing:-9.666000px;}
.ws197{word-spacing:-9.633600px;}
.ws26c{word-spacing:-9.606600px;}
.ws2fb{word-spacing:-9.563400px;}
.ws35d{word-spacing:-9.536400px;}
.ws13e{word-spacing:-9.498000px;}
.ws9d{word-spacing:-9.408000px;}
.ws24{word-spacing:-9.396000px;}
.ws259{word-spacing:-9.336600px;}
.ws350{word-spacing:-9.320400px;}
.wsea{word-spacing:-9.216000px;}
.ws69{word-spacing:-9.126000px;}
.ws2d4{word-spacing:-9.066600px;}
.ws12{word-spacing:-9.006000px;}
.wsbb{word-spacing:-8.974800px;}
.ws8b{word-spacing:-8.964000px;}
.ws168{word-spacing:-8.958000px;}
.wsb9{word-spacing:-8.953200px;}
.wsbc{word-spacing:-8.937000px;}
.wsdf{word-spacing:-8.928000px;}
.ws36a{word-spacing:-8.910000px;}
.wsba{word-spacing:-8.904600px;}
.ws8a{word-spacing:-8.892000px;}
.wsb6{word-spacing:-8.883000px;}
.wsb7{word-spacing:-8.839800px;}
.wsb5{word-spacing:-8.834400px;}
.wsd9{word-spacing:-8.712000px;}
.ws7d{word-spacing:-8.706000px;}
.wsce{word-spacing:-8.640000px;}
.ws2d3{word-spacing:-8.634600px;}
.ws169{word-spacing:-8.634000px;}
.wsb8{word-spacing:-8.618400px;}
.ws33c{word-spacing:-8.607600px;}
.ws1a6{word-spacing:-8.598000px;}
.ws2df{word-spacing:-8.569800px;}
.wsa6{word-spacing:-8.562000px;}
.ws1a7{word-spacing:-8.544000px;}
.ws17f{word-spacing:-8.484000px;}
.ws58{word-spacing:-8.382000px;}
.wsfd{word-spacing:-8.364000px;}
.wsaf{word-spacing:-8.326800px;}
.ws31f{word-spacing:-8.321400px;}
.ws3b{word-spacing:-8.316000px;}
.wsae{word-spacing:-8.278200px;}
.wsb1{word-spacing:-8.272800px;}
.wsad{word-spacing:-8.240400px;}
.wsb3{word-spacing:-8.229600px;}
.wsb0{word-spacing:-8.224200px;}
.wsb2{word-spacing:-8.170200px;}
.wsd4{word-spacing:-8.160000px;}
.wsf8{word-spacing:-8.148000px;}
.ws43{word-spacing:-8.094000px;}
.ws30e{word-spacing:-8.067600px;}
.ws22a{word-spacing:-8.056800px;}
.ws355{word-spacing:-8.040600px;}
.ws191{word-spacing:-8.034000px;}
.ws14b{word-spacing:-7.974000px;}
.ws18f{word-spacing:-7.956000px;}
.ws122{word-spacing:-7.950000px;}
.ws96{word-spacing:-7.938000px;}
.ws342{word-spacing:-7.916400px;}
.ws22b{word-spacing:-7.911000px;}
.ws38{word-spacing:-7.890000px;}
.ws37{word-spacing:-7.884000px;}
.ws29d{word-spacing:-7.866000px;}
.wsd7{word-spacing:-7.812000px;}
.ws97{word-spacing:-7.794000px;}
.ws9f{word-spacing:-7.650000px;}
.wsf4{word-spacing:-7.620000px;}
.ws117{word-spacing:-7.614000px;}
.ws116{word-spacing:-7.608000px;}
.wsab{word-spacing:-7.597800px;}
.ws320{word-spacing:-7.479000px;}
.ws219{word-spacing:-7.452000px;}
.ws365{word-spacing:-7.435800px;}
.ws363{word-spacing:-7.371000px;}
.ws23{word-spacing:-7.308000px;}
.ws33a{word-spacing:-7.263000px;}
.ws20a{word-spacing:-7.225200px;}
.ws226{word-spacing:-7.182000px;}
.ws243{word-spacing:-7.149600px;}
.ws114{word-spacing:-7.068000px;}
.ws20b{word-spacing:-7.063200px;}
.ws273{word-spacing:-7.056000px;}
.ws24f{word-spacing:-6.955200px;}
.ws2c8{word-spacing:-6.939000px;}
.ws3c{word-spacing:-6.870000px;}
.ws113{word-spacing:-6.726000px;}
.ws25{word-spacing:-6.630000px;}
.ws1af{word-spacing:-6.601551px;}
.ws13d{word-spacing:-6.594000px;}
.ws366{word-spacing:-6.577200px;}
.ws112{word-spacing:-6.576000px;}
.ws391{word-spacing:-6.550200px;}
.ws327{word-spacing:-6.544800px;}
.ws2f{word-spacing:-6.522000px;}
.ws2fe{word-spacing:-6.501600px;}
.ws30{word-spacing:-6.444000px;}
.ws1e2{word-spacing:-6.296400px;}
.ws126{word-spacing:-6.215400px;}
.ws198{word-spacing:-6.193800px;}
.ws21c{word-spacing:-6.183000px;}
.ws381{word-spacing:-6.134400px;}
.wse4{word-spacing:-6.120000px;}
.wse6{word-spacing:-6.108000px;}
.ws125{word-spacing:-6.075000px;}
.wsbd{word-spacing:-6.069600px;}
.ws382{word-spacing:-6.058800px;}
.ws211{word-spacing:-6.053400px;}
.ws1a{word-spacing:-6.048000px;}
.wse5{word-spacing:-5.904000px;}
.ws256{word-spacing:-5.864400px;}
.ws346{word-spacing:-5.810400px;}
.ws345{word-spacing:-5.794200px;}
.ws306{word-spacing:-5.788800px;}
.ws1ed{word-spacing:-5.783400px;}
.ws19{word-spacing:-5.778000px;}
.ws106{word-spacing:-5.646000px;}
.ws2c9{word-spacing:-5.605200px;}
.ws12d{word-spacing:-5.574000px;}
.wsa{word-spacing:-5.524731px;}
.ws3e{word-spacing:-5.490000px;}
.ws53{word-spacing:-5.462100px;}
.ws263{word-spacing:-5.421600px;}
.ws52{word-spacing:-5.412960px;}
.wsc{word-spacing:-5.404732px;}
.ws2a1{word-spacing:-5.346000px;}
.ws3a{word-spacing:-5.310000px;}
.ws323{word-spacing:-5.232600px;}
.wsac{word-spacing:-5.216400px;}
.ws31d{word-spacing:-5.157000px;}
.ws1c7{word-spacing:-5.130000px;}
.ws2ce{word-spacing:-5.043600px;}
.ws108{word-spacing:-4.968000px;}
.ws7c{word-spacing:-4.956000px;}
.ws55{word-spacing:-4.928400px;}
.ws233{word-spacing:-4.881600px;}
.ws1d8{word-spacing:-4.843800px;}
.ws107{word-spacing:-4.788000px;}
.wsfc{word-spacing:-4.728000px;}
.ws1d7{word-spacing:-4.692600px;}
.ws12a{word-spacing:-4.692000px;}
.ws2e5{word-spacing:-4.676400px;}
.ws234{word-spacing:-4.622400px;}
.ws22{word-spacing:-4.614000px;}
.ws1aa{word-spacing:-4.561551px;}
.ws1f1{word-spacing:-4.530600px;}
.wsf2{word-spacing:-4.494000px;}
.ws176{word-spacing:-4.410000px;}
.ws276{word-spacing:-4.386000px;}
.wsf3{word-spacing:-4.356000px;}
.ws213{word-spacing:-4.320000px;}
.ws4b{word-spacing:-4.290000px;}
.ws30c{word-spacing:-4.233600px;}
.ws196{word-spacing:-4.136400px;}
.wsf1{word-spacing:-4.098000px;}
.wsf9{word-spacing:-4.080000px;}
.ws4a{word-spacing:-4.032000px;}
.wsfa{word-spacing:-3.858000px;}
.ws270{word-spacing:-3.846000px;}
.wsfb{word-spacing:-3.798000px;}
.ws100{word-spacing:-3.792000px;}
.ws101{word-spacing:-3.780000px;}
.ws47{word-spacing:-3.762000px;}
.ws14d{word-spacing:-3.702000px;}
.ws2ee{word-spacing:-3.623400px;}
.ws133{word-spacing:-3.612000px;}
.ws131{word-spacing:-3.535551px;}
.ws45{word-spacing:-3.534000px;}
.ws60{word-spacing:-3.528000px;}
.ws1d2{word-spacing:-3.520800px;}
.ws46{word-spacing:-3.510000px;}
.ws321{word-spacing:-3.456000px;}
.ws1df{word-spacing:-3.429000px;}
.ws1d5{word-spacing:-3.418200px;}
.ws61{word-spacing:-3.396000px;}
.wsda{word-spacing:-3.222000px;}
.ws376{word-spacing:-3.186000px;}
.ws4{word-spacing:-3.088776px;}
.ws2{word-spacing:-3.057576px;}
.ws3{word-spacing:-2.995177px;}
.ws6{word-spacing:-2.987377px;}
.ws20{word-spacing:-2.970000px;}
.ws5{word-spacing:-2.948377px;}
.ws21{word-spacing:-2.940000px;}
.ws1eb{word-spacing:-2.872800px;}
.ws333{word-spacing:-2.835000px;}
.ws5f{word-spacing:-2.820000px;}
.ws17{word-spacing:-2.766000px;}
.ws374{word-spacing:-2.732400px;}
.ws83{word-spacing:-2.718000px;}
.ws162{word-spacing:-2.646000px;}
.ws6a{word-spacing:-2.586000px;}
.wsf7{word-spacing:-2.574000px;}
.ws13{word-spacing:-2.520000px;}
.ws377{word-spacing:-2.516400px;}
.ws17d{word-spacing:-2.370000px;}
.ws2c0{word-spacing:-2.311200px;}
.ws89{word-spacing:-2.292000px;}
.wse{word-spacing:-2.226000px;}
.wsa9{word-spacing:-2.148000px;}
.ws2bf{word-spacing:-2.127600px;}
.ws326{word-spacing:-2.052000px;}
.ws271{word-spacing:-2.022000px;}
.ws36b{word-spacing:-2.008800px;}
.ws19d{word-spacing:-1.963045px;}
.ws21a{word-spacing:-1.927800px;}
.ws19b{word-spacing:-1.837551px;}
.ws11b{word-spacing:-1.704000px;}
.ws240{word-spacing:-1.668600px;}
.ws2dc{word-spacing:-1.609200px;}
.ws1c8{word-spacing:-1.560000px;}
.ws74{word-spacing:-1.482000px;}
.ws128{word-spacing:-1.224000px;}
.ws1fc{word-spacing:-1.188000px;}
.ws10{word-spacing:-1.158000px;}
.ws1a2{word-spacing:-1.152000px;}
.ws127{word-spacing:-1.134000px;}
.ws1a4{word-spacing:-1.044000px;}
.ws34e{word-spacing:-1.026000px;}
.ws21b{word-spacing:-1.015200px;}
.ws34d{word-spacing:-0.837000px;}
.ws1a3{word-spacing:-0.792000px;}
.ws5e{word-spacing:-0.738000px;}
.ws49{word-spacing:-0.720000px;}
.ws22f{word-spacing:-0.648109px;}
.wsc0{word-spacing:-0.612000px;}
.ws253{word-spacing:-0.534600px;}
.ws1c5{word-spacing:-0.534000px;}
.ws1e0{word-spacing:-0.523800px;}
.ws36d{word-spacing:-0.496800px;}
.ws251{word-spacing:-0.437400px;}
.ws1d6{word-spacing:-0.410400px;}
.ws210{word-spacing:-0.351000px;}
.ws41{word-spacing:-0.318000px;}
.ws20e{word-spacing:-0.302400px;}
.ws6b{word-spacing:-0.294000px;}
.ws252{word-spacing:-0.270000px;}
.ws31e{word-spacing:-0.005400px;}
.ws56{word-spacing:0.000000px;}
.ws247{word-spacing:0.005400px;}
.ws206{word-spacing:0.102600px;}
.ws272{word-spacing:0.156000px;}
.ws1b2{word-spacing:0.210000px;}
.wse1{word-spacing:0.678000px;}
.ws1f2{word-spacing:0.680400px;}
.wse2{word-spacing:0.738000px;}
.ws383{word-spacing:0.783000px;}
.ws1f4{word-spacing:0.799200px;}
.ws354{word-spacing:0.853200px;}
.ws2b0{word-spacing:0.982800px;}
.ws319{word-spacing:1.009800px;}
.ws2af{word-spacing:1.198800px;}
.ws373{word-spacing:1.209600px;}
.ws1cb{word-spacing:1.218000px;}
.ws1d9{word-spacing:1.296000px;}
.ws18a{word-spacing:1.632000px;}
.ws2b1{word-spacing:1.652400px;}
.ws2a5{word-spacing:1.695600px;}
.ws2e4{word-spacing:1.755000px;}
.ws1fa{word-spacing:2.106000px;}
.ws23f{word-spacing:2.597400px;}
.ws11{word-spacing:2.604000px;}
.ws35c{word-spacing:2.635200px;}
.ws258{word-spacing:2.640600px;}
.ws25d{word-spacing:2.651400px;}
.ws99{word-spacing:2.676000px;}
.ws255{word-spacing:2.710800px;}
.ws262{word-spacing:2.732400px;}
.ws254{word-spacing:2.754000px;}
.ws2a9{word-spacing:2.786400px;}
.ws248{word-spacing:2.802600px;}
.ws1ec{word-spacing:2.813400px;}
.ws2b2{word-spacing:2.818800px;}
.ws2f2{word-spacing:2.878200px;}
.ws73{word-spacing:2.886000px;}
.ws257{word-spacing:2.889000px;}
.ws299{word-spacing:2.904000px;}
.ws105{word-spacing:2.910000px;}
.ws29a{word-spacing:2.934000px;}
.ws39{word-spacing:2.946000px;}
.ws5d{word-spacing:2.958000px;}
.ws64{word-spacing:2.970000px;}
.ws111{word-spacing:2.976000px;}
.wseb{word-spacing:3.000000px;}
.ws1b1{word-spacing:3.006000px;}
.wsa5{word-spacing:3.024000px;}
.ws88{word-spacing:3.030000px;}
.ws115{word-spacing:3.036000px;}
.ws297{word-spacing:3.042000px;}
.ws70{word-spacing:3.048000px;}
.ws146{word-spacing:3.054000px;}
.ws29c{word-spacing:3.060000px;}
.ws4c{word-spacing:3.066000px;}
.ws84{word-spacing:3.084000px;}
.ws103{word-spacing:3.102000px;}
.ws121{word-spacing:3.108000px;}
.ws6f{word-spacing:3.132000px;}
.wsf0{word-spacing:3.144000px;}
.ws92{word-spacing:3.162000px;}
.ws8d{word-spacing:3.168000px;}
.ws147{word-spacing:3.174000px;}
.ws1a1{word-spacing:3.192000px;}
.ws6e{word-spacing:3.198000px;}
.ws104{word-spacing:3.204000px;}
.ws110{word-spacing:3.210000px;}
.wsa2{word-spacing:3.216000px;}
.ws26{word-spacing:3.222000px;}
.ws102{word-spacing:3.246000px;}
.wsa4{word-spacing:3.258000px;}
.ws91{word-spacing:3.270000px;}
.ws120{word-spacing:3.282000px;}
.wsd{word-spacing:3.336000px;}
.wsa3{word-spacing:3.348000px;}
.ws163{word-spacing:3.360000px;}
.ws37a{word-spacing:3.385800px;}
.ws35b{word-spacing:3.407400px;}
.ws2d2{word-spacing:3.412800px;}
.ws2aa{word-spacing:3.472200px;}
.ws1f8{word-spacing:3.564000px;}
.ws1b{word-spacing:4.134000px;}
.ws1c{word-spacing:4.212000px;}
.ws190{word-spacing:4.347981px;}
.ws1ff{word-spacing:10.017000px;}
.ws16{word-spacing:10.266000px;}
.ws1e{word-spacing:10.374000px;}
.ws1d{word-spacing:10.470000px;}
.ws225{word-spacing:11.448000px;}
.ws1f3{word-spacing:11.801700px;}
.ws14{word-spacing:13.134000px;}
.wsf{word-spacing:13.152000px;}
.ws15{word-spacing:13.212000px;}
.ws216{word-spacing:15.120000px;}
.ws1f9{word-spacing:15.606000px;}
.ws26e{word-spacing:16.582146px;}
.wsb{word-spacing:17.565857px;}
.ws221{word-spacing:18.738000px;}
.ws1fd{word-spacing:19.845000px;}
.ws220{word-spacing:20.844000px;}
.ws51{word-spacing:22.123800px;}
.ws215{word-spacing:22.982400px;}
.ws222{word-spacing:23.473800px;}
.ws4d{word-spacing:27.091800px;}
.ws140{word-spacing:47.832120px;}
.ws4f{word-spacing:53.605800px;}
.ws21f{word-spacing:73.980000px;}
.ws1fe{word-spacing:80.362800px;}
.ws223{word-spacing:88.263000px;}
.ws214{word-spacing:90.288000px;}
.ws217{word-spacing:102.870000px;}
.ws21e{word-spacing:109.944000px;}
.ws224{word-spacing:123.606000px;}
.ws1fb{word-spacing:127.008000px;}
.ws200{word-spacing:312.390000px;}
.ws201{word-spacing:315.252000px;}
.ws9{word-spacing:321.527400px;}
.ws227{word-spacing:495.234000px;}
.wsbf{word-spacing:1096.349495px;}
._34{margin-left:-2.836200px;}
._32{margin-left:-1.362000px;}
._b{width:1.860000px;}
._14{width:3.156000px;}
._33{width:12.279600px;}
._1d{width:13.413600px;}
._f{width:14.826000px;}
._c{width:16.236000px;}
._16{width:17.304000px;}
._7{width:18.642000px;}
._11{width:19.722000px;}
._d{width:20.862000px;}
._9{width:21.912000px;}
._e{width:22.956000px;}
._6{width:24.456000px;}
._4{width:25.476000px;}
._1{width:26.933193px;}
._10{width:28.200000px;}
._13{width:29.616000px;}
._1a{width:30.720000px;}
._a{width:31.794000px;}
._18{width:33.306000px;}
._15{width:35.076000px;}
._1b{width:36.204000px;}
._8{width:38.106000px;}
._1c{width:39.528000px;}
._5{width:41.562000px;}
._17{width:43.092000px;}
._20{width:44.766000px;}
._2a{width:47.212200px;}
._0{width:50.819593px;}
._24{width:72.036000px;}
._1f{width:75.114000px;}
._31{width:80.034000px;}
._1e{width:84.348000px;}
._2b{width:87.544800px;}
._28{width:98.317800px;}
._30{width:102.324600px;}
._2f{width:105.046200px;}
._23{width:108.625800px;}
._22{width:111.321000px;}
._12{width:121.195500px;}
._2c{width:130.032000px;}
._29{width:141.183000px;}
._2e{width:144.234000px;}
._27{width:154.548000px;}
._26{width:161.160000px;}
._25{width:176.992500px;}
._21{width:201.312000px;}
._3{width:280.619744px;}
._2d{width:333.126000px;}
._2{width:457.807763px;}
._19{width:1086.389400px;}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc1{color:rgb(13,84,166);}
.fc5{color:rgb(214,122,41);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:35.995200px;}
.fsf{font-size:36.000000px;}
.fs12{font-size:36.178800px;}
.fsd{font-size:37.800000px;}
.fs16{font-size:39.186000px;}
.fsb{font-size:39.995400px;}
.fs8{font-size:40.199400px;}
.fs6{font-size:41.248800px;}
.fs9{font-size:41.940000px;}
.fs10{font-size:42.000000px;}
.fse{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fs11{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs17{font-size:57.000000px;}
.fs13{font-size:59.940000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs15{font-size:71.248800px;}
.fs5{font-size:74.999400px;}
.fs1{font-size:77.999400px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:149.998800px;}
.fsc{font-size:173.400000px;}
.y0{bottom:0.000000px;}
.y20a{bottom:1.080000px;}
.y267{bottom:1.256850px;}
.y16{bottom:1.436445px;}
.y1fd{bottom:2.343600px;}
.y21b{bottom:2.523150px;}
.y232{bottom:2.524500px;}
.y229{bottom:3.959550px;}
.y141{bottom:5.214780px;}
.y1f7{bottom:5.764500px;}
.y218{bottom:5.940000px;}
.y226{bottom:7.384500px;}
.y20b{bottom:8.098650px;}
.y230{bottom:9.180000px;}
.y221{bottom:9.355500px;}
.y237{bottom:10.624500px;}
.y208{bottom:11.515500px;}
.y22f{bottom:12.055500px;}
.y1fb{bottom:12.776400px;}
.y219{bottom:12.955950px;}
.y220{bottom:12.960000px;}
.y1{bottom:13.436250px;}
.y236{bottom:14.215500px;}
.y227{bottom:14.401800px;}
.y22e{bottom:15.660000px;}
.y1f5{bottom:16.024500px;}
.y216{bottom:16.375500px;}
.y21f{bottom:16.564500px;}
.y20c{bottom:17.643150px;}
.y224{bottom:17.644500px;}
.y235{bottom:17.820000px;}
.y22d{bottom:19.264500px;}
.y209{bottom:19.980000px;}
.y21e{bottom:20.155500px;}
.y234{bottom:21.424500px;}
.y1fc{bottom:22.141350px;}
.y21a{bottom:22.500450px;}
.yba{bottom:22.621350px;}
.y22c{bottom:22.855500px;}
.y228{bottom:23.757300px;}
.y21d{bottom:23.760000px;}
.y233{bottom:25.015500px;}
.y1f6{bottom:25.555500px;}
.y217{bottom:25.744500px;}
.y22b{bottom:26.460000px;}
.y225{bottom:27.175500px;}
.y5a{bottom:27.553650px;}
.y21c{bottom:27.904500px;}
.y231{bottom:29.335500px;}
.y22a{bottom:30.604500px;}
.yb9{bottom:32.399850px;}
.y58{bottom:35.207040px;}
.y59{bottom:37.332150px;}
.y57{bottom:43.880250px;}
.y1fa{bottom:46.616850px;}
.y1f4{bottom:50.044500px;}
.y1f8{bottom:57.059100px;}
.y193{bottom:59.952900px;}
.yf0{bottom:59.953350px;}
.y88{bottom:59.953500px;}
.y125{bottom:59.953650px;}
.y374{bottom:59.953800px;}
.yb1{bottom:59.954250px;}
.y2ef{bottom:59.954400px;}
.y15e{bottom:59.955750px;}
.y1bc{bottom:59.957250px;}
.y1f2{bottom:60.480000px;}
.y20d{bottom:63.354300px;}
.y27e{bottom:63.356250px;}
.y1f9{bottom:66.603600px;}
.y3c{bottom:68.712150px;}
.y1f3{bottom:69.835500px;}
.y207{bottom:73.389000px;}
.y373{bottom:75.175050px;}
.y2ee{bottom:75.175650px;}
.y3d{bottom:75.344850px;}
.y330{bottom:75.856050px;}
.yb0{bottom:76.451250px;}
.y2ad{bottom:76.452750px;}
.y1bb{bottom:76.454250px;}
.y192{bottom:76.536000px;}
.y15d{bottom:76.538250px;}
.y124{bottom:76.621650px;}
.yef{bottom:76.705350px;}
.yed{bottom:76.706850px;}
.y87{bottom:76.707000px;}
.y27d{bottom:79.853250px;}
.yee{bottom:83.423550px;}
.y3b{bottom:86.911650px;}
.y2ed{bottom:90.313200px;}
.y372{bottom:90.397650px;}
.y32f{bottom:91.674000px;}
.yaf{bottom:92.948250px;}
.y1ba{bottom:92.951250px;}
.y191{bottom:93.033600px;}
.y15c{bottom:93.036750px;}
.y123{bottom:93.288150px;}
.y121{bottom:93.288750px;}
.yec{bottom:93.458850px;}
.y86{bottom:93.459000px;}
.y27c{bottom:96.350250px;}
.y122{bottom:99.921150px;}
.y206{bottom:101.367150px;}
.y3a{bottom:105.193650px;}
.y38{bottom:105.195750px;}
.y2ec{bottom:105.279300px;}
.y371{bottom:105.535200px;}
.y32e{bottom:107.575650px;}
.yae{bottom:109.446750px;}
.y2ac{bottom:109.448250px;}
.y1b9{bottom:109.449750px;}
.y190{bottom:109.531200px;}
.y15b{bottom:109.619250px;}
.y120{bottom:109.956750px;}
.yeb{bottom:110.210850px;}
.ye9{bottom:110.211750px;}
.y85{bottom:111.571500px;}
.y83{bottom:111.573750px;}
.y39{bottom:111.911700px;}
.y27b{bottom:112.932750px;}
.y205{bottom:116.164500px;}
.yea{bottom:116.929050px;}
.y84{bottom:119.990550px;}
.y2eb{bottom:120.416850px;}
.y370{bottom:120.501300px;}
.y32d{bottom:122.543100px;}
.y37{bottom:123.479250px;}
.y54{bottom:123.903750px;}
.yad{bottom:125.943750px;}
.y2ab{bottom:125.945250px;}
.y1b8{bottom:125.946750px;}
.y18f{bottom:126.029250px;}
.y15a{bottom:126.116250px;}
.ye8{bottom:126.965250px;}
.y11f{bottom:128.069250px;}
.y11d{bottom:128.070750px;}
.y82{bottom:128.751750px;}
.y27a{bottom:129.431250px;}
.y204{bottom:131.047200px;}
.y2ea{bottom:135.554400px;}
.y36f{bottom:135.723900px;}
.y11e{bottom:136.403100px;}
.y32c{bottom:138.359700px;}
.y53{bottom:140.400750px;}
.y36{bottom:141.761250px;}
.y34{bottom:141.762750px;}
.yac{bottom:142.440750px;}
.yaa{bottom:142.443750px;}
.y18e{bottom:142.611750px;}
.y159{bottom:142.698750px;}
.ye7{bottom:143.717250px;}
.y11c{bottom:145.077750px;}
.y81{bottom:145.503750px;}
.y203{bottom:145.927350px;}
.y279{bottom:145.928250px;}
.y35{bottom:148.394250px;}
.yab{bottom:149.159250px;}
.y36e{bottom:150.690000px;}
.y2e9{bottom:150.775650px;}
.y32b{bottom:154.262700px;}
.y52{bottom:156.897750px;}
.ya9{bottom:158.940750px;}
.y1b7{bottom:158.942250px;}
.y2aa{bottom:159.026250px;}
.y18d{bottom:159.110250px;}
.y158{bottom:159.281250px;}
.y33{bottom:159.960750px;}
.ye6{bottom:160.470750px;}
.y202{bottom:160.724700px;}
.y11b{bottom:161.745750px;}
.y80{bottom:162.171750px;}
.y278{bottom:162.425250px;}
.y36d{bottom:165.912600px;}
.y2e8{bottom:165.913200px;}
.y32a{bottom:170.079300px;}
.ya8{bottom:175.523250px;}
.y1b6{bottom:175.524750px;}
.y201{bottom:175.606350px;}
.y18c{bottom:175.607250px;}
.y157{bottom:175.779750px;}
.y32{bottom:178.244250px;}
.y11a{bottom:178.413750px;}
.ye5{bottom:178.752750px;}
.ye3{bottom:178.754250px;}
.y7f{bottom:178.925250px;}
.y2e7{bottom:180.879300px;}
.y36c{bottom:181.135200px;}
.y329{bottom:185.046750px;}
.y277{bottom:186.831750px;}
.ye4{bottom:187.086000px;}
.y200{bottom:190.403700px;}
.ya7{bottom:192.020250px;}
.y1b5{bottom:192.021750px;}
.y18b{bottom:192.104250px;}
.y156{bottom:192.362250px;}
.y119{bottom:194.996250px;}
.y50{bottom:195.165750px;}
.y7e{bottom:195.591750px;}
.ye1{bottom:195.930750px;}
.y2e6{bottom:196.016850px;}
.y36b{bottom:196.101300px;}
.y31{bottom:196.527750px;}
.y328{bottom:200.949750px;}
.y51{bottom:201.798750px;}
.ye2{bottom:202.563750px;}
.y276{bottom:203.328750px;}
.y1ff{bottom:205.285950px;}
.ya6{bottom:208.518750px;}
.y1b4{bottom:208.520250px;}
.y18a{bottom:208.686750px;}
.y155{bottom:208.859250px;}
.y2e5{bottom:211.154400px;}
.y36a{bottom:211.238850px;}
.y118{bottom:211.662750px;}
.y116{bottom:211.664250px;}
.y7d{bottom:212.345250px;}
.y4f{bottom:212.427750px;}
.y4d{bottom:212.429250px;}
.ye0{bottom:212.684250px;}
.y2f{bottom:214.809750px;}
.y327{bottom:216.766350px;}
.y117{bottom:218.381250px;}
.y4e{bottom:219.146250px;}
.y274{bottom:221.102250px;}
.y30{bottom:221.442750px;}
.y275{bottom:223.058250px;}
.ya5{bottom:225.015750px;}
.y1b3{bottom:225.017250px;}
.y189{bottom:225.185250px;}
.y154{bottom:225.441750px;}
.y2e4{bottom:226.375650px;}
.y369{bottom:226.460100px;}
.y1fe{bottom:227.990250px;}
.y115{bottom:228.332250px;}
.y7c{bottom:229.097250px;}
.ydf{bottom:229.436250px;}
.y4c{bottom:229.776750px;}
.y326{bottom:231.733800px;}
.y2e{bottom:233.009250px;}
.y1f1{bottom:238.195500px;}
.y2e3{bottom:241.343100px;}
.y368{bottom:241.427550px;}
.ya4{bottom:241.512750px;}
.y1b2{bottom:241.514250px;}
.y188{bottom:241.682250px;}
.y153{bottom:241.938750px;}
.y273{bottom:243.467250px;}
.y114{bottom:244.998750px;}
.y7b{bottom:245.765250px;}
.yde{bottom:246.188250px;}
.ydc{bottom:246.189750px;}
.y4b{bottom:247.038750px;}
.y49{bottom:247.040250px;}
.y325{bottom:247.635450px;}
.y2d{bottom:251.292750px;}
.ydd{bottom:252.822750px;}
.y4a{bottom:253.757250px;}
.y2e2{bottom:256.479300px;}
.y367{bottom:256.650150px;}
.ya3{bottom:258.011250px;}
.y187{bottom:258.179250px;}
.y152{bottom:258.437250px;}
.y113{bottom:261.582750px;}
.y7a{bottom:262.517250px;}
.ydb{bottom:262.943250px;}
.y324{bottom:263.453400px;}
.y48{bottom:264.389250px;}
.y2c{bottom:269.574750px;}
.y2a{bottom:269.576250px;}
.y2e1{bottom:271.616850px;}
.y366{bottom:271.786350px;}
.ya2{bottom:274.508250px;}
.y185{bottom:274.677750px;}
.y151{bottom:275.019750px;}
.y2b{bottom:276.207750px;}
.y272{bottom:277.994550px;}
.y112{bottom:278.250750px;}
.y79{bottom:279.185250px;}
.y323{bottom:279.355050px;}
.yda{bottom:279.695250px;}
.y186{bottom:281.394750px;}
.y47{bottom:281.736750px;}
.y2e0{bottom:286.669350px;}
.y365{bottom:286.838850px;}
.y213{bottom:287.177100px;}
.y29{bottom:287.774250px;}
.ya0{bottom:291.005250px;}
.y184{bottom:291.260250px;}
.y150{bottom:291.516750px;}
.y271{bottom:292.876950px;}
.y322{bottom:294.322500px;}
.y111{bottom:294.917250px;}
.y78{bottom:295.937250px;}
.y76{bottom:295.938750px;}
.yd9{bottom:296.447250px;}
.ya1{bottom:297.638250px;}
.y45{bottom:298.998750px;}
.y2df{bottom:301.805550px;}
.y364{bottom:301.975050px;}
.y212{bottom:302.229600px;}
.y77{bottom:302.570250px;}
.y46{bottom:305.715750px;}
.y28{bottom:306.057750px;}
.y183{bottom:307.757250px;}
.y270{bottom:307.759350px;}
.y14f{bottom:308.099250px;}
.y9f{bottom:308.948250px;}
.y9d{bottom:308.949750px;}
.y321{bottom:310.139100px;}
.y110{bottom:311.585250px;}
.y2a9{bottom:312.519750px;}
.y75{bottom:312.606750px;}
.yd8{bottom:313.200750px;}
.y44{bottom:316.346250px;}
.y42{bottom:316.347750px;}
.y2de{bottom:316.943100px;}
.y211{bottom:317.197050px;}
.y363{bottom:317.197650px;}
.y9e{bottom:317.367000px;}
.y1f0{bottom:318.984300px;}
.y26f{bottom:322.555350px;}
.y43{bottom:322.979250px;}
.y27{bottom:324.341250px;}
.y14e{bottom:324.681750px;}
.y182{bottom:325.700250px;}
.y180{bottom:325.701750px;}
.y9b{bottom:325.871250px;}
.y320{bottom:326.042100px;}
.y10f{bottom:328.251750px;}
.y74{bottom:329.358750px;}
.yd7{bottom:329.952750px;}
.y2dd{bottom:331.909200px;}
.y210{bottom:332.163150px;}
.y362{bottom:332.335200px;}
.y9c{bottom:332.588250px;}
.y41{bottom:333.609750px;}
.y1ef{bottom:333.865350px;}
.y181{bottom:334.119000px;}
.y26e{bottom:337.437750px;}
.y14d{bottom:341.180250px;}
.y31f{bottom:341.860050px;}
.y9a{bottom:342.369750px;}
.y26{bottom:342.623250px;}
.y24{bottom:342.624750px;}
.y17f{bottom:342.710250px;}
.y2a8{bottom:344.750250px;}
.y10e{bottom:344.835750px;}
.y73{bottom:346.112250px;}
.y2dc{bottom:347.046750px;}
.y20f{bottom:347.215650px;}
.y361{bottom:347.386350px;}
.yd5{bottom:348.150750px;}
.y1ee{bottom:348.662700px;}
.y25{bottom:349.256250px;}
.y40{bottom:350.958750px;}
.y26d{bottom:352.233750px;}
.yd6{bottom:356.569500px;}
.y31e{bottom:356.826150px;}
.y5d{bottom:357.195000px;}
.y14c{bottom:357.762750px;}
.y99{bottom:358.866750px;}
.y17e{bottom:359.207250px;}
.y23{bottom:360.822750px;}
.y10d{bottom:361.502250px;}
.y2a7{bottom:361.757250px;}
.y20e{bottom:362.181750px;}
.y2db{bottom:362.269350px;}
.y360{bottom:362.523900px;}
.y72{bottom:362.778750px;}
.y1ed{bottom:363.544350px;}
.yd4{bottom:365.414250px;}
.y26c{bottom:367.116150px;}
.y3f{bottom:368.306250px;}
.y31d{bottom:372.729150px;}
.y5c{bottom:373.875000px;}
.y14b{bottom:374.259750px;}
.y98{bottom:375.363750px;}
.y17d{bottom:375.705750px;}
.y2da{bottom:377.405550px;}
.y35f{bottom:377.745150px;}
.y10c{bottom:378.170250px;}
.y1ec{bottom:378.341700px;}
.y70{bottom:380.976750px;}
.y26b{bottom:381.998550px;}
.y2a6{bottom:382.083750px;}
.yd3{bottom:382.166250px;}
.y22{bottom:384.972750px;}
.y3e{bottom:385.568250px;}
.y31c{bottom:388.545750px;}
.y71{bottom:389.395500px;}
.y14a{bottom:390.842250px;}
.y97{bottom:391.862250px;}
.y17c{bottom:392.288250px;}
.y2d9{bottom:392.373000px;}
.y35e{bottom:392.712600px;}
.y1eb{bottom:393.222750px;}
.y10b{bottom:396.282750px;}
.y109{bottom:396.284250px;}
.y26a{bottom:396.794550px;}
.y6f{bottom:398.154750px;}
.y2a5{bottom:398.580750px;}
.yd1{bottom:398.750250px;}
.y31b{bottom:403.513200px;}
.y10a{bottom:404.703000px;}
.yd2{bottom:405.467250px;}
.y149{bottom:407.339250px;}
.y2d8{bottom:407.509200px;}
.y35d{bottom:407.935200px;}
.y1ea{bottom:408.105300px;}
.y96{bottom:408.444750px;}
.y17b{bottom:408.785250px;}
.y269{bottom:411.676950px;}
.y108{bottom:413.292750px;}
.y6e{bottom:414.822750px;}
.y2a4{bottom:415.077750px;}
.yd0{bottom:415.502250px;}
.y31a{bottom:419.414850px;}
.y2d7{bottom:422.646750px;}
.y1e9{bottom:422.901300px;}
.y35c{bottom:423.071400px;}
.y148{bottom:423.921750px;}
.y146{bottom:423.923250px;}
.y95{bottom:424.941750px;}
.y17a{bottom:425.282250px;}
.y265{bottom:427.833150px;}
.y268{bottom:427.833750px;}
.y106{bottom:429.959250px;}
.y147{bottom:430.554750px;}
.y6d{bottom:431.574750px;}
.y2a3{bottom:431.576250px;}
.ycf{bottom:432.254250px;}
.ycd{bottom:432.255750px;}
.y319{bottom:435.232800px;}
.y107{bottom:436.592250px;}
.y266{bottom:436.677000px;}
.y21{bottom:437.358750px;}
.y2d6{bottom:437.699250px;}
.y1e8{bottom:437.783700px;}
.y35b{bottom:438.123900px;}
.yce{bottom:438.972750px;}
.y94{bottom:441.438750px;}
.y92{bottom:441.441750px;}
.y179{bottom:441.780750px;}
.y144{bottom:441.950250px;}
.y264{bottom:442.970700px;}
.y105{bottom:446.627250px;}
.y93{bottom:448.071750px;}
.y2a2{bottom:448.073250px;}
.y6b{bottom:448.158750px;}
.ycc{bottom:449.007750px;}
.yca{bottom:449.009250px;}
.y145{bottom:450.283500px;}
.y318{bottom:450.283950px;}
.y1e7{bottom:452.664750px;}
.y2d5{bottom:452.835450px;}
.y35a{bottom:453.260100px;}
.y6c{bottom:454.875750px;}
.ycb{bottom:455.726250px;}
.y263{bottom:457.852350px;}
.y91{bottom:457.938750px;}
.y20{bottom:458.363250px;}
.y143{bottom:458.873250px;}
.y178{bottom:459.807750px;}
.y176{bottom:459.809250px;}
.y104{bottom:463.293750px;}
.y2a1{bottom:464.570250px;}
.y69{bottom:464.910750px;}
.yc9{bottom:465.761250px;}
.y317{bottom:466.101900px;}
.y1e6{bottom:467.461500px;}
.y2d4{bottom:467.973000px;}
.y177{bottom:468.141000px;}
.y359{bottom:468.482700px;}
.y6a{bottom:471.543750px;}
.y262{bottom:472.734750px;}
.y90{bottom:474.435750px;}
.y1f{bottom:474.861750px;}
.y175{bottom:476.732250px;}
.y142{bottom:476.900250px;}
.y103{bottom:479.876250px;}
.y101{bottom:479.877750px;}
.y316{bottom:481.069350px;}
.y2a0{bottom:481.577250px;}
.y68{bottom:481.578750px;}
.y1e5{bottom:482.342550px;}
.yc8{bottom:482.513250px;}
.yc6{bottom:482.516250px;}
.y2d3{bottom:483.024150px;}
.y358{bottom:483.620250px;}
.y140{bottom:485.235000px;}
.y102{bottom:486.594750px;}
.y261{bottom:487.530750px;}
.y25f{bottom:487.531800px;}
.yc7{bottom:489.231750px;}
.y8f{bottom:490.934250px;}
.y1e{bottom:491.358750px;}
.y260{bottom:493.568250px;}
.y174{bottom:494.759250px;}
.y172{bottom:494.760750px;}
.y13f{bottom:494.844750px;}
.y100{bottom:496.545750px;}
.y315{bottom:496.971000px;}
.y1e4{bottom:497.139900px;}
.y2d2{bottom:498.161700px;}
.y66{bottom:498.330750px;}
.y357{bottom:498.671400px;}
.yc5{bottom:499.268250px;}
.y25e{bottom:502.412850px;}
.y173{bottom:503.092500px;}
.y67{bottom:504.963750px;}
.y8e{bottom:507.431250px;}
.y1d{bottom:507.855750px;}
.y13e{bottom:511.341750px;}
.y171{bottom:511.682250px;}
.y314{bottom:511.938450px;}
.y1e3{bottom:512.022300px;}
.y2d1{bottom:513.299250px;}
.y356{bottom:513.808950px;}
.y29f{bottom:513.894750px;}
.yfe{bottom:514.658250px;}
.y65{bottom:515.084250px;}
.yc4{bottom:516.021750px;}
.y25d{bottom:517.210200px;}
.yff{bottom:523.077000px;}
.y8d{bottom:523.928250px;}
.y1b{bottom:525.798750px;}
.y1e2{bottom:526.903350px;}
.y313{bottom:527.755050px;}
.y13d{bottom:527.924250px;}
.y170{bottom:528.264750px;}
.y2d0{bottom:528.435450px;}
.y355{bottom:529.030200px;}
.y29e{bottom:530.391750px;}
.y64{bottom:531.750750px;}
.yfd{bottom:531.752250px;}
.y25c{bottom:532.091250px;}
.y25a{bottom:532.091700px;}
.yc3{bottom:532.773750px;}
.y1c{bottom:534.217500px;}
.y25b{bottom:538.128750px;}
.y1e1{bottom:541.700700px;}
.y1a{bottom:542.721750px;}
.y312{bottom:542.807550px;}
.y2cf{bottom:543.402900px;}
.y354{bottom:543.997650px;}
.y13c{bottom:544.422750px;}
.y16f{bottom:546.207750px;}
.y16d{bottom:546.209250px;}
.y8c{bottom:546.548250px;}
.y258{bottom:546.972750px;}
.yfc{bottom:548.418750px;}
.y63{bottom:548.504250px;}
.yc2{bottom:549.525750px;}
.y29d{bottom:552.842250px;}
.y259{bottom:552.926250px;}
.y16e{bottom:554.626500px;}
.y1e0{bottom:556.581750px;}
.y1de{bottom:556.582050px;}
.y2ce{bottom:558.624150px;}
.y19{bottom:559.218750px;}
.y353{bottom:559.220250px;}
.y257{bottom:561.770250px;}
.y255{bottom:561.770550px;}
.y13b{bottom:562.449750px;}
.y139{bottom:562.451250px;}
.y1df{bottom:562.535250px;}
.y16c{bottom:563.216250px;}
.yfb{bottom:565.086750px;}
.y62{bottom:565.170750px;}
.yc1{bottom:566.279250px;}
.y256{bottom:567.807750px;}
.y29c{bottom:569.339250px;}
.y13a{bottom:570.784500px;}
.y1dd{bottom:571.464450px;}
.y2cd{bottom:573.591600px;}
.y352{bottom:574.356450px;}
.y311{bottom:574.527150px;}
.y18{bottom:575.801250px;}
.y254{bottom:576.652950px;}
.y138{bottom:579.459750px;}
.y16a{bottom:581.159250px;}
.y60{bottom:581.924250px;}
.y8b{bottom:582.345000px;}
.yc0{bottom:583.031250px;}
.yfa{bottom:583.199250px;}
.yf8{bottom:583.200750px;}
.y29b{bottom:585.921750px;}
.y1dc{bottom:586.261800px;}
.y61{bottom:588.557250px;}
.y2cc{bottom:588.729150px;}
.y16b{bottom:589.578000px;}
.y351{bottom:589.579050px;}
.y310{bottom:590.343750px;}
.y253{bottom:591.535350px;}
.yf9{bottom:591.619500px;}
.y17{bottom:593.744250px;}
.y14{bottom:593.747250px;}
.y136{bottom:597.486750px;}
.y169{bottom:598.167750px;}
.y5f{bottom:598.592250px;}
.y8a{bottom:598.843500px;}
.ybf{bottom:599.784750px;}
.yf7{bottom:600.293250px;}
.y1db{bottom:601.142850px;}
.y15{bottom:602.079000px;}
.y29a{bottom:602.418750px;}
.y2cb{bottom:603.865350px;}
.y350{bottom:604.545150px;}
.y30f{bottom:605.311200px;}
.y137{bottom:605.820000px;}
.y252{bottom:606.331350px;}
.y13{bottom:610.670250px;}
.y135{bottom:614.409750px;}
.y168{bottom:614.663250px;}
.y89{bottom:615.340500px;}
.y5e{bottom:615.344250px;}
.y1da{bottom:615.940200px;}
.ybe{bottom:616.536750px;}
.yf5{bottom:616.877250px;}
.y299{bottom:618.917250px;}
.y2ca{bottom:618.917850px;}
.y34f{bottom:619.767750px;}
.y251{bottom:621.213750px;}
.y30e{bottom:621.214200px;}
.yf6{bottom:623.508750px;}
.y393{bottom:623.935200px;}
.y12{bottom:627.167250px;}
.y1d9{bottom:630.821250px;}
.y1d7{bottom:630.822300px;}
.y134{bottom:630.992250px;}
.y167{bottom:631.160250px;}
.ybd{bottom:633.290250px;}
.yf4{bottom:633.545250px;}
.y2c9{bottom:634.054050px;}
.y34e{bottom:634.905300px;}
.y298{bottom:635.415750px;}
.y250{bottom:636.009750px;}
.y24e{bottom:636.010200px;}
.y1d8{bottom:636.860250px;}
.y30d{bottom:637.030800px;}
.y392{bottom:638.986350px;}
.y24f{bottom:642.047250px;}
.y11{bottom:643.664250px;}
.y1d6{bottom:645.703350px;}
.y133{bottom:647.489250px;}
.yb7{bottom:647.576100px;}
.y166{bottom:647.658750px;}
.y2c8{bottom:649.191600px;}
.ybc{bottom:650.042250px;}
.y34d{bottom:650.126550px;}
.yf3{bottom:650.211750px;}
.y24d{bottom:650.892150px;}
.y297{bottom:651.912750px;}
.y30c{bottom:651.998250px;}
.y391{bottom:653.953800px;}
.y10{bottom:660.162750px;}
.y1d5{bottom:660.500700px;}
.yb6{bottom:662.628150px;}
.y132{bottom:664.073250px;}
.y165{bottom:664.241250px;}
.y2c7{bottom:664.329150px;}
.y34c{bottom:665.349150px;}
.y24c{bottom:666.199800px;}
.yf1{bottom:666.788850px;}
.ybb{bottom:666.794250px;}
.y30b{bottom:667.899900px;}
.y296{bottom:668.409750px;}
.y390{bottom:669.004950px;}
.yf2{bottom:673.511250px;}
.y1d4{bottom:675.382350px;}
.yf{bottom:676.659750px;}
.yb5{bottom:677.594550px;}
.y2c6{bottom:679.295250px;}
.y34b{bottom:680.485350px;}
.y131{bottom:680.570250px;}
.y164{bottom:680.738250px;}
.y24b{bottom:681.080850px;}
.y30a{bottom:683.717850px;}
.y38f{bottom:683.972400px;}
.y295{bottom:684.906750px;}
.y1b1{bottom:689.583750px;}
.y1d3{bottom:690.264750px;}
.yb4{bottom:692.560650px;}
.ye{bottom:693.156750px;}
.y2c5{bottom:694.517850px;}
.y34a{bottom:695.452800px;}
.y24a{bottom:695.963250px;}
.y130{bottom:697.152750px;}
.y163{bottom:697.235250px;}
.y309{bottom:698.683950px;}
.y38e{bottom:698.939850px;}
.y128{bottom:699.109200px;}
.y294{bottom:701.405250px;}
.y1d2{bottom:705.060750px;}
.y1b0{bottom:707.526750px;}
.y1ae{bottom:707.528250px;}
.yb3{bottom:707.613150px;}
.y2c4{bottom:709.654050px;}
.yd{bottom:709.655250px;}
.y349{bottom:710.675400px;}
.y249{bottom:710.759250px;}
.y12f{bottom:713.649750px;}
.y12d{bottom:713.651250px;}
.y162{bottom:713.733750px;}
.y38d{bottom:713.991000px;}
.y127{bottom:714.076650px;}
.y308{bottom:714.586950px;}
.y1af{bottom:715.947000px;}
.y293{bottom:717.902250px;}
.y12e{bottom:720.368250px;}
.yb2{bottom:722.579250px;}
.y1d1{bottom:724.449750px;}
.y1ad{bottom:724.451250px;}
.y2c3{bottom:724.621500px;}
.y248{bottom:725.641650px;}
.y348{bottom:725.896650px;}
.yc{bottom:726.152250px;}
.y38c{bottom:728.958450px;}
.y126{bottom:729.042750px;}
.y161{bottom:730.230750px;}
.y12c{bottom:730.233750px;}
.y307{bottom:730.404900px;}
.y292{bottom:734.399250px;}
.y2c2{bottom:739.759050px;}
.y247{bottom:740.524050px;}
.y1ac{bottom:740.948250px;}
.y347{bottom:741.034200px;}
.yb{bottom:742.649250px;}
.y38b{bottom:744.009600px;}
.y306{bottom:746.306550px;}
.y12b{bottom:746.730750px;}
.y160{bottom:746.813250px;}
.y291{bottom:751.407750px;}
.y2c1{bottom:754.810200px;}
.y1d0{bottom:755.237250px;}
.y246{bottom:755.320050px;}
.y346{bottom:756.255450px;}
.y1ab{bottom:757.446750px;}
.y38a{bottom:758.977050px;}
.ya{bottom:759.146250px;}
.y305{bottom:761.274000px;}
.y15f{bottom:763.311750px;}
.y129{bottom:763.313250px;}
.y12a{bottom:769.946250px;}
.y2c0{bottom:769.947750px;}
.y245{bottom:770.202450px;}
.y345{bottom:771.393000px;}
.y1cf{bottom:771.735750px;}
.y1aa{bottom:773.943750px;}
.y389{bottom:773.944500px;}
.y9{bottom:775.643250px;}
.y304{bottom:777.090600px;}
.y290{bottom:779.216250px;}
.y244{bottom:784.999800px;}
.y2bf{bottom:785.083950px;}
.y344{bottom:786.445500px;}
.y1ce{bottom:788.232750px;}
.y388{bottom:788.995650px;}
.y1a9{bottom:790.442250px;}
.y303{bottom:792.993600px;}
.y196{bottom:795.543150px;}
.y28f{bottom:795.713250px;}
.y243{bottom:799.880850px;}
.y2be{bottom:800.051400px;}
.y343{bottom:801.581700px;}
.y387{bottom:803.963100px;}
.y1cd{bottom:804.729750px;}
.y1a8{bottom:806.939250px;}
.y302{bottom:807.959700px;}
.y195{bottom:810.510600px;}
.y7{bottom:810.935250px;}
.y28e{bottom:812.211750px;}
.y8{bottom:812.976750px;}
.y242{bottom:814.763250px;}
.y2bd{bottom:815.274000px;}
.y342{bottom:816.804300px;}
.y386{bottom:819.014250px;}
.y1cc{bottom:821.228250px;}
.y1a7{bottom:823.437750px;}
.y301{bottom:823.777650px;}
.y194{bottom:825.561750px;}
.y28d{bottom:828.708750px;}
.y241{bottom:829.559700px;}
.y2bc{bottom:830.410200px;}
.y341{bottom:831.940500px;}
.y385{bottom:833.981700px;}
.y1cb{bottom:837.725250px;}
.y300{bottom:839.679300px;}
.y1a6{bottom:839.934750px;}
.y240{bottom:844.441350px;}
.y28c{bottom:845.207250px;}
.y2bb{bottom:845.377650px;}
.y340{bottom:846.993000px;}
.y384{bottom:848.949150px;}
.y1ca{bottom:854.222250px;}
.y2ff{bottom:854.646750px;}
.y1a5{bottom:856.517250px;}
.y23f{bottom:859.323750px;}
.y2ba{bottom:860.513850px;}
.y28b{bottom:861.704250px;}
.y33f{bottom:862.130550px;}
.y383{bottom:864.000300px;}
.y6{bottom:864.765750px;}
.y2fe{bottom:870.464700px;}
.y1c9{bottom:870.720750px;}
.y1a4{bottom:873.014250px;}
.y23e{bottom:874.120200px;}
.y2b9{bottom:875.651400px;}
.y33e{bottom:877.351800px;}
.y28a{bottom:878.202750px;}
.y382{bottom:878.967750px;}
.y2fd{bottom:886.366350px;}
.y1c8{bottom:887.217750px;}
.y23d{bottom:889.002750px;}
.y1a3{bottom:889.512750px;}
.y2b8{bottom:890.703900px;}
.y33d{bottom:892.319250px;}
.y381{bottom:894.020250px;}
.y289{bottom:894.699750px;}
.y2fc{bottom:901.333800px;}
.y5{bottom:901.503462px;}
.y1c7{bottom:903.714750px;}
.y23c{bottom:903.798750px;}
.y2b7{bottom:905.840100px;}
.y1a2{bottom:906.009750px;}
.y33c{bottom:907.540500px;}
.y380{bottom:908.986350px;}
.y288{bottom:911.198250px;}
.y2fb{bottom:917.235450px;}
.y23b{bottom:918.680700px;}
.y1c6{bottom:920.213250px;}
.y2b6{bottom:920.977650px;}
.y4{bottom:922.506750px;}
.y1a1{bottom:922.508250px;}
.y33b{bottom:922.678050px;}
.y37f{bottom:923.953800px;}
.y287{bottom:927.695250px;}
.y2fa{bottom:932.202900px;}
.y23a{bottom:933.563250px;}
.y2b5{bottom:935.943750px;}
.y1c5{bottom:936.710250px;}
.y33a{bottom:937.730550px;}
.y37e{bottom:939.004950px;}
.y1a0{bottom:939.005250px;}
.y286{bottom:944.193750px;}
.y2f9{bottom:948.019500px;}
.y239{bottom:948.360150px;}
.y2b4{bottom:951.166350px;}
.y339{bottom:952.866750px;}
.y1c4{bottom:953.207250px;}
.y37d{bottom:953.972400px;}
.y3{bottom:953.974050px;}
.y19f{bottom:955.502250px;}
.y285{bottom:960.690750px;}
.y2f8{bottom:963.922500px;}
.y2b3{bottom:966.303900px;}
.y338{bottom:968.089350px;}
.y37c{bottom:968.939850px;}
.y1c3{bottom:969.705750px;}
.y19e{bottom:972.000750px;}
.y238{bottom:974.976750px;}
.y284{bottom:977.187750px;}
.y2f7{bottom:978.889950px;}
.y2b2{bottom:981.270000px;}
.y337{bottom:983.055450px;}
.y37b{bottom:983.991000px;}
.y223{bottom:985.096500px;}
.y1c2{bottom:986.202750px;}
.y19d{bottom:988.497750px;}
.y2{bottom:991.473750px;}
.y283{bottom:993.684750px;}
.y2f6{bottom:994.706550px;}
.y2b1{bottom:996.407550px;}
.y336{bottom:998.278050px;}
.y37a{bottom:998.958450px;}
.y1c1{bottom:1002.699750px;}
.y19c{bottom:1004.996250px;}
.y2f5{bottom:1010.609550px;}
.y282{bottom:1010.693250px;}
.y2b0{bottom:1011.543750px;}
.y335{bottom:1013.414250px;}
.y379{bottom:1014.009600px;}
.y19b{bottom:1021.493250px;}
.y1c0{bottom:1023.704250px;}
.y2f4{bottom:1025.574300px;}
.y334{bottom:1028.466750px;}
.y378{bottom:1028.977050px;}
.y281{bottom:1031.528250px;}
.y2af{bottom:1033.313250px;}
.y222{bottom:1036.884750px;}
.y19a{bottom:1037.990250px;}
.y2f3{bottom:1041.477300px;}
.y333{bottom:1043.604300px;}
.y377{bottom:1043.944500px;}
.y215{bottom:1047.004500px;}
.y56{bottom:1050.746250px;}
.y1bf{bottom:1054.484250px;}
.y199{bottom:1054.488750px;}
.y2f2{bottom:1057.293900px;}
.y332{bottom:1058.570400px;}
.y376{bottom:1058.995650px;}
.y280{bottom:1069.619250px;}
.y2ae{bottom:1070.816250px;}
.y1be{bottom:1070.981250px;}
.y198{bottom:1070.985750px;}
.y2f1{bottom:1073.111850px;}
.y331{bottom:1073.793000px;}
.y375{bottom:1073.963100px;}
.y27f{bottom:1086.116250px;}
.y5b{bottom:1087.350000px;}
.y1bd{bottom:1087.479750px;}
.y197{bottom:1087.482750px;}
.y2f0{bottom:1089.013500px;}
.y214{bottom:1089.014250px;}
.y55{bottom:1097.943750px;}
.yb8{bottom:1117.502250px;}
.h38{height:15.051900px;}
.h9{height:16.752750px;}
.h1a{height:17.688150px;}
.h33{height:20.844000px;}
.h36{height:23.360400px;}
.h39{height:24.570000px;}
.h12{height:25.560000px;}
.h13{height:25.956000px;}
.h11{height:26.838000px;}
.ha{height:27.261000px;}
.h22{height:28.040261px;}
.h2a{height:28.652400px;}
.h2d{height:29.338650px;}
.h2b{height:29.538000px;}
.hd{height:31.156417px;}
.h1c{height:31.790520px;}
.h19{height:32.444567px;}
.h3b{height:33.273000px;}
.h35{height:33.372000px;}
.h27{height:33.426000px;}
.h10{height:34.079574px;}
.h7{height:34.109731px;}
.h2e{height:36.936000px;}
.h5{height:38.934000px;}
.h30{height:39.543300px;}
.h18{height:40.878000px;}
.h29{height:40.932000px;}
.h3c{height:41.097000px;}
.h3d{height:42.000000px;}
.h37{height:42.060000px;}
.he{height:42.066000px;}
.h2c{height:42.069600px;}
.h34{height:42.179550px;}
.h3f{height:42.780000px;}
.h17{height:43.260000px;}
.h14{height:43.804688px;}
.h32{height:45.198000px;}
.h8{height:45.420000px;}
.hb{height:45.423000px;}
.h1b{height:45.434520px;}
.h3e{height:46.734000px;}
.h20{height:46.738800px;}
.hc{height:46.740000px;}
.h16{height:47.109375px;}
.h24{height:49.267285px;}
.h23{height:49.269085px;}
.h25{height:49.270885px;}
.h21{height:49.276885px;}
.h40{height:50.214600px;}
.h3a{height:51.156638px;}
.h1f{height:54.445333px;}
.h1d{height:54.781333px;}
.h1e{height:54.793333px;}
.h4{height:60.761533px;}
.h6{height:64.863281px;}
.h28{height:78.354000px;}
.h31{height:78.408000px;}
.h26{height:82.233000px;}
.h3{height:108.149135px;}
.h2f{height:116.532000px;}
.hf{height:137.506200px;}
.h2{height:1174.479000px;}
.h15{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w9{width:13.266150px;}
.w3{width:14.711850px;}
.w4{width:24.406350px;}
.w7{width:155.707500px;}
.w5{width:197.716500px;}
.w8{width:201.033000px;}
.w6{width:247.294500px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x65{left:-1.258740px;}
.x0{left:0.000000px;}
.x7b{left:6.123600px;}
.x8f{left:8.996400px;}
.x7{left:10.076085px;}
.x7a{left:11.880000px;}
.x1{left:13.436250px;}
.x66{left:14.941125px;}
.x7e{left:23.935500px;}
.x27{left:27.000000px;}
.x78{left:32.404050px;}
.x2{left:63.779400px;}
.x81{left:69.835500px;}
.x2d{left:77.215650px;}
.x41{left:78.746400px;}
.x7d{left:80.635500px;}
.x84{left:86.575500px;}
.x29{left:92.777850px;}
.x30{left:94.818750px;}
.x3{left:99.325950px;}
.x85{left:106.015500px;}
.x76{left:107.635500px;}
.x31{left:109.445550px;}
.x13{left:113.867550px;}
.x7c{left:119.523600px;}
.x82{left:121.319100px;}
.x44{left:124.582500px;}
.x2a{left:138.528750px;}
.x40{left:144.396750px;}
.x60{left:146.097600px;}
.x61{left:148.137750px;}
.x14{left:150.179250px;}
.xb{left:154.005750px;}
.x72{left:159.124500px;}
.x71{left:165.780000px;}
.x73{left:170.818200px;}
.x74{left:172.084500px;}
.x32{left:174.925500px;}
.xc{left:176.796750px;}
.x80{left:179.820000px;}
.x2e{left:181.558500px;}
.x2f{left:183.599250px;}
.x83{left:185.579100px;}
.x86{left:190.984500px;}
.x6{left:193.125000px;}
.x8{left:195.165750px;}
.x87{left:196.384500px;}
.x77{left:200.340000px;}
.x4b{left:202.223250px;}
.x67{left:206.135250px;}
.x49{left:207.836250px;}
.x5d{left:209.792250px;}
.x15{left:211.407750px;}
.x2b{left:212.853750px;}
.x79{left:215.280450px;}
.x4c{left:216.935250px;}
.x68{left:222.293250px;}
.x4a{left:224.588250px;}
.x42{left:231.987000px;}
.x43{left:234.027750px;}
.x5f{left:237.684750px;}
.x62{left:240.747000px;}
.x5e{left:242.447250px;}
.x88{left:248.570250px;}
.x8a{left:259.625250px;}
.x47{left:260.815500px;}
.x48{left:262.941750px;}
.xd{left:266.088750px;}
.x22{left:267.363750px;}
.x89{left:275.187750px;}
.xe{left:292.110750px;}
.x23{left:298.827525px;}
.x3d{left:300.359250px;}
.x3e{left:315.326250px;}
.xf{left:319.152750px;}
.x6d{left:328.677000px;}
.x3f{left:330.207750px;}
.x11{left:334.374750px;}
.x2c{left:340.667250px;}
.x10{left:348.576750px;}
.x63{left:355.549500px;}
.x64{left:357.590250px;}
.x12{left:368.730750px;}
.x8b{left:374.513250px;}
.x45{left:377.660250px;}
.x8d{left:385.653750px;}
.x8c{left:388.799250px;}
.x3c{left:392.796750px;}
.x28{left:394.581750px;}
.x8e{left:401.045250px;}
.x7f{left:406.403250px;}
.x46{left:407.849250px;}
.x3b{left:438.548250px;}
.x16{left:459.723750px;}
.x92{left:465.760050px;}
.x9{left:471.714000px;}
.xa{left:473.754750px;}
.x33{left:474.774750px;}
.x91{left:486.764250px;}
.x70{left:491.187000px;}
.x4{left:492.717750px;}
.x90{left:495.776400px;}
.x54{left:498.075750px;}
.x17{left:502.581750px;}
.x19{left:511.851750px;}
.x1f{left:514.913250px;}
.x6e{left:518.144250px;}
.x57{left:528.093750px;}
.x18{left:529.794750px;}
.x6f{left:531.581250px;}
.x50{left:542.211000px;}
.x35{left:546.122250px;}
.x1a{left:548.163750px;}
.x51{left:551.480250px;}
.x20{left:555.902250px;}
.x58{left:557.007750px;}
.x4f{left:558.368250px;}
.x1d{left:584.049750px;}
.x36{left:597.571500px;}
.x1e{left:603.099750px;}
.x37{left:604.715250px;}
.x26{left:608.550000px;}
.x52{left:610.413000px;}
.x6b{left:616.110000px;}
.x53{left:618.405750px;}
.x4d{left:620.871750px;}
.x39{left:628.271250px;}
.x59{left:630.481500px;}
.x5a{left:632.607750px;}
.x5{left:638.559750px;}
.x4e{left:639.836250px;}
.x55{left:645.704250px;}
.x6c{left:648.510750px;}
.x3a{left:649.530750px;}
.x24{left:664.667250px;}
.x69{left:683.886000px;}
.x6a{left:685.928250px;}
.x5b{left:692.049750px;}
.x25{left:696.896250px;}
.x5c{left:727.427250px;}
.x56{left:751.578000px;}
.x38{left:753.194250px;}
.x1b{left:762.548250px;}
.x34{left:776.409750px;}
.x1c{left:796.394250px;}
.x75{left:802.431750px;}
.x21{left:842.739750px;}
@media print{
.va{vertical-align:-33.888000pt;}
.v5{vertical-align:-32.960320pt;}
.v11{vertical-align:-12.091200pt;}
.v3{vertical-align:-10.586667pt;}
.v6{vertical-align:-9.681067pt;}
.ve{vertical-align:-6.954667pt;}
.vb{vertical-align:-5.107200pt;}
.v2{vertical-align:-2.720000pt;}
.vf{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.514667pt;}
.v1{vertical-align:5.141333pt;}
.v10{vertical-align:12.091200pt;}
.v8{vertical-align:18.749867pt;}
.v7{vertical-align:20.858667pt;}
.vd{vertical-align:30.096000pt;}
.v9{vertical-align:33.264000pt;}
.vc{vertical-align:37.104000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.021333pt;}
.ls50{letter-spacing:0.032000pt;}
.ls6a{letter-spacing:0.036267pt;}
.ls6c{letter-spacing:0.038400pt;}
.ls5a{letter-spacing:0.042133pt;}
.ls62{letter-spacing:0.048000pt;}
.ls5c{letter-spacing:0.048533pt;}
.ls54{letter-spacing:0.053333pt;}
.ls5e{letter-spacing:0.054400pt;}
.ls7f{letter-spacing:0.056239pt;}
.ls5f{letter-spacing:0.058667pt;}
.lsb1{letter-spacing:0.062400pt;}
.ls3e{letter-spacing:0.071275pt;}
.ls53{letter-spacing:0.072184pt;}
.lsa3{letter-spacing:0.074667pt;}
.ls84{letter-spacing:0.075200pt;}
.ls3{letter-spacing:0.080798pt;}
.ls33{letter-spacing:0.085333pt;}
.ls89{letter-spacing:0.091733pt;}
.ls8a{letter-spacing:0.094501pt;}
.lsac{letter-spacing:0.096000pt;}
.lsb4{letter-spacing:0.110400pt;}
.ls8b{letter-spacing:0.118933pt;}
.ls8d{letter-spacing:0.124800pt;}
.ls3f{letter-spacing:0.138667pt;}
.ls7a{letter-spacing:0.153600pt;}
.ls7c{letter-spacing:0.155200pt;}
.ls77{letter-spacing:0.163733pt;}
.ls83{letter-spacing:0.174400pt;}
.ls56{letter-spacing:0.181333pt;}
.ls59{letter-spacing:0.192000pt;}
.lsa6{letter-spacing:0.224000pt;}
.lsaf{letter-spacing:0.230400pt;}
.ls86{letter-spacing:0.238400pt;}
.ls97{letter-spacing:0.240000pt;}
.ls80{letter-spacing:0.267733pt;}
.ls43{letter-spacing:0.287967pt;}
.ls18{letter-spacing:0.293333pt;}
.ls36{letter-spacing:0.309333pt;}
.lsb0{letter-spacing:0.316800pt;}
.lsa7{letter-spacing:0.319957pt;}
.ls3a{letter-spacing:0.325333pt;}
.lsb{letter-spacing:0.327073pt;}
.lsa9{letter-spacing:0.352000pt;}
.ls93{letter-spacing:0.360000pt;}
.lsd{letter-spacing:0.362667pt;}
.ls94{letter-spacing:0.362880pt;}
.ls8{letter-spacing:0.368000pt;}
.ls2{letter-spacing:0.437333pt;}
.ls3b{letter-spacing:0.442667pt;}
.ls34{letter-spacing:0.458614pt;}
.ls11{letter-spacing:0.469333pt;}
.lsa8{letter-spacing:0.470337pt;}
.lsc5{letter-spacing:0.470400pt;}
.ls1c{letter-spacing:0.517333pt;}
.ls38{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.592000pt;}
.lsa5{letter-spacing:0.634667pt;}
.ls12{letter-spacing:0.650667pt;}
.lsa2{letter-spacing:0.698667pt;}
.ls4{letter-spacing:0.730667pt;}
.ls70{letter-spacing:0.777600pt;}
.ls65{letter-spacing:0.800000pt;}
.ls99{letter-spacing:0.811200pt;}
.ls90{letter-spacing:0.864000pt;}
.ls44{letter-spacing:0.871011pt;}
.ls17{letter-spacing:0.896000pt;}
.lsae{letter-spacing:0.907200pt;}
.lsc{letter-spacing:0.981220pt;}
.ls13{letter-spacing:0.981333pt;}
.ls57{letter-spacing:0.991886pt;}
.ls3c{letter-spacing:1.002667pt;}
.lsf{letter-spacing:1.008000pt;}
.ls4a{letter-spacing:1.040000pt;}
.lsb3{letter-spacing:1.041600pt;}
.ls16{letter-spacing:1.093333pt;}
.ls9{letter-spacing:1.104000pt;}
.ls47{letter-spacing:1.114667pt;}
.lsa4{letter-spacing:1.146667pt;}
.lsc2{letter-spacing:1.190400pt;}
.ls4e{letter-spacing:1.333333pt;}
.ls68{letter-spacing:1.472000pt;}
.ls37{letter-spacing:1.920000pt;}
.ls14{letter-spacing:1.941333pt;}
.ls19{letter-spacing:2.064000pt;}
.lsbf{letter-spacing:2.116800pt;}
.ls6e{letter-spacing:4.566400pt;}
.ls31{letter-spacing:4.819733pt;}
.ls24{letter-spacing:6.936000pt;}
.ls2e{letter-spacing:7.233067pt;}
.ls20{letter-spacing:7.237867pt;}
.ls40{letter-spacing:7.984000pt;}
.ls3d{letter-spacing:8.170667pt;}
.ls35{letter-spacing:11.184000pt;}
.lsb6{letter-spacing:11.193600pt;}
.ls9b{letter-spacing:11.428800pt;}
.lsbd{letter-spacing:11.496000pt;}
.ls9a{letter-spacing:11.572800pt;}
.ls91{letter-spacing:11.971200pt;}
.lsc1{letter-spacing:12.096000pt;}
.lsb9{letter-spacing:12.100800pt;}
.lsc3{letter-spacing:12.403200pt;}
.ls82{letter-spacing:12.450906pt;}
.ls79{letter-spacing:12.489168pt;}
.ls6f{letter-spacing:12.614607pt;}
.ls78{letter-spacing:12.619940pt;}
.ls9c{letter-spacing:12.811200pt;}
.ls67{letter-spacing:12.826667pt;}
.ls66{letter-spacing:13.034667pt;}
.ls8c{letter-spacing:13.227940pt;}
.lsc4{letter-spacing:13.310400pt;}
.ls2b{letter-spacing:13.353600pt;}
.ls29{letter-spacing:13.387200pt;}
.ls8e{letter-spacing:13.395835pt;}
.ls2c{letter-spacing:13.420800pt;}
.ls2d{letter-spacing:13.526400pt;}
.ls32{letter-spacing:13.550413pt;}
.ls10{letter-spacing:13.605333pt;}
.ls2f{letter-spacing:13.643677pt;}
.ls30{letter-spacing:13.684800pt;}
.ls2a{letter-spacing:13.704000pt;}
.ls69{letter-spacing:13.854397pt;}
.ls21{letter-spacing:13.947677pt;}
.ls28{letter-spacing:13.958400pt;}
.ls26{letter-spacing:13.987200pt;}
.ls23{letter-spacing:14.001600pt;}
.ls9f{letter-spacing:14.026667pt;}
.ls98{letter-spacing:14.060812pt;}
.ls1e{letter-spacing:14.131200pt;}
.ls8f{letter-spacing:14.208000pt;}
.lsbe{letter-spacing:14.217600pt;}
.ls25{letter-spacing:14.257010pt;}
.ls1f{letter-spacing:14.260800pt;}
.lsa0{letter-spacing:14.261333pt;}
.ls22{letter-spacing:14.289600pt;}
.ls27{letter-spacing:14.308800pt;}
.ls1d{letter-spacing:14.328000pt;}
.ls51{letter-spacing:14.897223pt;}
.lsba{letter-spacing:15.729600pt;}
.ls9d{letter-spacing:15.770667pt;}
.ls55{letter-spacing:15.794851pt;}
.ls64{letter-spacing:15.807772pt;}
.ls63{letter-spacing:15.877333pt;}
.ls42{letter-spacing:15.888000pt;}
.lsab{letter-spacing:16.027200pt;}
.lsaa{letter-spacing:16.032000pt;}
.ls5b{letter-spacing:16.112306pt;}
.ls4b{letter-spacing:16.661333pt;}
.ls73{letter-spacing:16.786145pt;}
.ls4c{letter-spacing:16.871553pt;}
.ls71{letter-spacing:16.873063pt;}
.lsb8{letter-spacing:16.939200pt;}
.ls72{letter-spacing:17.049600pt;}
.lsbc{letter-spacing:17.539200pt;}
.ls4d{letter-spacing:17.573333pt;}
.lsa1{letter-spacing:17.589333pt;}
.lsbb{letter-spacing:17.846400pt;}
.ls9e{letter-spacing:17.893333pt;}
.ls61{letter-spacing:17.925106pt;}
.ls60{letter-spacing:17.994667pt;}
.ls1b{letter-spacing:18.181333pt;}
.ls15{letter-spacing:18.442667pt;}
.ls49{letter-spacing:18.684886pt;}
.ls48{letter-spacing:18.778667pt;}
.ls46{letter-spacing:18.794667pt;}
.ls45{letter-spacing:18.832306pt;}
.ls6d{letter-spacing:18.857681pt;}
.ls6b{letter-spacing:18.945805pt;}
.ls87{letter-spacing:18.966607pt;}
.lsb5{letter-spacing:19.358400pt;}
.ls7b{letter-spacing:19.569274pt;}
.ls7d{letter-spacing:19.747835pt;}
.lsb7{letter-spacing:19.963200pt;}
.ls58{letter-spacing:20.041372pt;}
.ls95{letter-spacing:20.078400pt;}
.ls96{letter-spacing:20.088000pt;}
.ls4f{letter-spacing:21.162667pt;}
.ls85{letter-spacing:22.429572pt;}
.ls76{letter-spacing:22.982400pt;}
.ls92{letter-spacing:23.092800pt;}
.ls7e{letter-spacing:23.251200pt;}
.ls0{letter-spacing:23.704884pt;}
.ls1{letter-spacing:23.788084pt;}
.ls7{letter-spacing:23.882667pt;}
.ls88{letter-spacing:23.891622pt;}
.ls5d{letter-spacing:25.182172pt;}
.ls41{letter-spacing:25.772609pt;}
.ls6{letter-spacing:26.005333pt;}
.lsc0{letter-spacing:26.908800pt;}
.lsb2{letter-spacing:27.288000pt;}
.ls39{letter-spacing:29.488000pt;}
.ls74{letter-spacing:30.057600pt;}
.lse{letter-spacing:30.234667pt;}
.lsad{letter-spacing:32.275200pt;}
.ls1a{letter-spacing:37.797333pt;}
.ls81{letter-spacing:40.512000pt;}
.ls75{letter-spacing:45.158400pt;}
.ws1{word-spacing:-44.599643pt;}
.ws0{word-spacing:-44.506311pt;}
.ws135{word-spacing:-37.706667pt;}
.ws28{word-spacing:-37.296000pt;}
.ws148{word-spacing:-32.693333pt;}
.ws18d{word-spacing:-31.946667pt;}
.ws286{word-spacing:-29.808000pt;}
.ws1f0{word-spacing:-29.424000pt;}
.ws204{word-spacing:-28.752000pt;}
.ws27a{word-spacing:-27.904000pt;}
.ws282{word-spacing:-26.117333pt;}
.ws285{word-spacing:-26.090667pt;}
.ws28d{word-spacing:-26.053333pt;}
.ws27e{word-spacing:-26.048000pt;}
.ws28c{word-spacing:-26.037333pt;}
.ws28b{word-spacing:-25.920000pt;}
.wsb4{word-spacing:-24.000000pt;}
.ws82{word-spacing:-23.066667pt;}
.ws16d{word-spacing:-21.904206pt;}
.ws81{word-spacing:-21.168000pt;}
.ws161{word-spacing:-20.480000pt;}
.ws139{word-spacing:-20.373333pt;}
.wsc6{word-spacing:-20.362667pt;}
.ws188{word-spacing:-20.357333pt;}
.ws187{word-spacing:-20.352000pt;}
.ws177{word-spacing:-20.256000pt;}
.ws13b{word-spacing:-20.160000pt;}
.wsc7{word-spacing:-20.133333pt;}
.ws12c{word-spacing:-20.080000pt;}
.ws42{word-spacing:-20.074667pt;}
.ws13a{word-spacing:-20.058667pt;}
.ws12b{word-spacing:-20.053333pt;}
.ws185{word-spacing:-20.021333pt;}
.ws1ba{word-spacing:-20.010667pt;}
.ws1b8{word-spacing:-19.968000pt;}
.ws1b6{word-spacing:-19.952000pt;}
.ws1b9{word-spacing:-19.888000pt;}
.ws2e{word-spacing:-19.877333pt;}
.ws290{word-spacing:-19.872000pt;}
.ws5c{word-spacing:-19.834667pt;}
.ws11f{word-spacing:-19.813333pt;}
.ws29e{word-spacing:-19.770667pt;}
.ws1b7{word-spacing:-19.754667pt;}
.ws57{word-spacing:-19.744000pt;}
.ws1cc{word-spacing:-19.733333pt;}
.ws20f{word-spacing:-19.713426pt;}
.ws14c{word-spacing:-19.696000pt;}
.ws6c{word-spacing:-19.653333pt;}
.wsc1{word-spacing:-19.525333pt;}
.wsc2{word-spacing:-19.445333pt;}
.ws160{word-spacing:-19.386667pt;}
.ws18c{word-spacing:-19.338667pt;}
.ws15d{word-spacing:-19.168000pt;}
.ws10b{word-spacing:-19.152000pt;}
.wsef{word-spacing:-19.088000pt;}
.ws17e{word-spacing:-19.072000pt;}
.ws291{word-spacing:-19.066667pt;}
.ws36{word-spacing:-18.864000pt;}
.ws10c{word-spacing:-18.837333pt;}
.ws80{word-spacing:-18.698400pt;}
.ws1ab{word-spacing:-18.677333pt;}
.ws277{word-spacing:-18.672000pt;}
.ws26d{word-spacing:-18.592000pt;}
.ws1c4{word-spacing:-18.560000pt;}
.ws10e{word-spacing:-18.554667pt;}
.ws2c{word-spacing:-18.485333pt;}
.wsa0{word-spacing:-18.458667pt;}
.ws278{word-spacing:-18.435200pt;}
.wsa1{word-spacing:-18.400000pt;}
.ws77{word-spacing:-18.378667pt;}
.ws2f8{word-spacing:-18.374400pt;}
.ws78{word-spacing:-18.373333pt;}
.ws11c{word-spacing:-18.341333pt;}
.ws250{word-spacing:-18.340800pt;}
.ws40{word-spacing:-18.330667pt;}
.ws63{word-spacing:-18.277333pt;}
.ws180{word-spacing:-18.218667pt;}
.ws242{word-spacing:-18.211200pt;}
.ws343{word-spacing:-18.153600pt;}
.wsd1{word-spacing:-18.144000pt;}
.wsd0{word-spacing:-18.138667pt;}
.ws13c{word-spacing:-18.133333pt;}
.ws2fa{word-spacing:-18.091200pt;}
.ws15e{word-spacing:-18.080000pt;}
.ws1bb{word-spacing:-18.069333pt;}
.ws267{word-spacing:-18.043200pt;}
.ws18e{word-spacing:-18.026667pt;}
.ws153{word-spacing:-18.021333pt;}
.ws288{word-spacing:-17.946667pt;}
.ws25a{word-spacing:-17.923200pt;}
.ws236{word-spacing:-17.918400pt;}
.ws265{word-spacing:-17.913600pt;}
.ws123{word-spacing:-17.893333pt;}
.ws37e{word-spacing:-17.889600pt;}
.ws1c1{word-spacing:-17.877333pt;}
.ws266{word-spacing:-17.851200pt;}
.ws324{word-spacing:-17.846400pt;}
.ws186{word-spacing:-17.824000pt;}
.wsbe{word-spacing:-17.818667pt;}
.ws2e7{word-spacing:-17.812800pt;}
.ws30b{word-spacing:-17.760000pt;}
.ws305{word-spacing:-17.755200pt;}
.ws237{word-spacing:-17.750400pt;}
.ws136{word-spacing:-17.749333pt;}
.ws15a{word-spacing:-17.722667pt;}
.ws2f9{word-spacing:-17.721600pt;}
.ws6d{word-spacing:-17.717333pt;}
.ws1e3{word-spacing:-17.702400pt;}
.ws10d{word-spacing:-17.653333pt;}
.ws24d{word-spacing:-17.611200pt;}
.ws1bf{word-spacing:-17.610667pt;}
.ws261{word-spacing:-17.606400pt;}
.ws313{word-spacing:-17.601600pt;}
.ws1be{word-spacing:-17.578667pt;}
.ws2cd{word-spacing:-17.548800pt;}
.ws315{word-spacing:-17.539200pt;}
.ws44{word-spacing:-17.520000pt;}
.ws344{word-spacing:-17.505600pt;}
.ws24e{word-spacing:-17.476800pt;}
.ws15f{word-spacing:-17.456000pt;}
.ws2ab{word-spacing:-17.448000pt;}
.ws11d{word-spacing:-17.413333pt;}
.ws66{word-spacing:-17.354667pt;}
.ws2b5{word-spacing:-17.352000pt;}
.ws142{word-spacing:-17.338667pt;}
.ws11e{word-spacing:-17.322667pt;}
.ws87{word-spacing:-17.301333pt;}
.ws2a{word-spacing:-17.285333pt;}
.wsde{word-spacing:-17.264000pt;}
.ws141{word-spacing:-17.248000pt;}
.ws35f{word-spacing:-17.241600pt;}
.ws22c{word-spacing:-17.193600pt;}
.ws86{word-spacing:-17.157333pt;}
.ws2b{word-spacing:-17.152000pt;}
.ws67{word-spacing:-17.120000pt;}
.ws1e9{word-spacing:-17.116800pt;}
.ws16e{word-spacing:-17.109333pt;}
.ws318{word-spacing:-17.102400pt;}
.ws229{word-spacing:-17.097600pt;}
.ws228{word-spacing:-17.088000pt;}
.ws79{word-spacing:-17.045333pt;}
.ws2bb{word-spacing:-17.040000pt;}
.wsdd{word-spacing:-17.034667pt;}
.ws16f{word-spacing:-17.024000pt;}
.ws1e8{word-spacing:-17.020800pt;}
.ws30a{word-spacing:-17.016000pt;}
.ws205{word-spacing:-17.006400pt;}
.ws314{word-spacing:-16.996800pt;}
.ws372{word-spacing:-16.977600pt;}
.ws1a0{word-spacing:-16.970667pt;}
.ws202{word-spacing:-16.968000pt;}
.ws2ba{word-spacing:-16.963200pt;}
.ws336{word-spacing:-16.958400pt;}
.ws203{word-spacing:-16.948800pt;}
.ws1e7{word-spacing:-16.944000pt;}
.ws32d{word-spacing:-16.934400pt;}
.ws193{word-spacing:-16.928000pt;}
.ws129{word-spacing:-16.922667pt;}
.ws32e{word-spacing:-16.881600pt;}
.ws279{word-spacing:-16.877067pt;}
.ws26f{word-spacing:-16.851733pt;}
.ws1ae{word-spacing:-16.832000pt;}
.ws2e9{word-spacing:-16.819200pt;}
.ws194{word-spacing:-16.816000pt;}
.ws1ea{word-spacing:-16.766400pt;}
.ws1b0{word-spacing:-16.752000pt;}
.ws28f{word-spacing:-16.740267pt;}
.ws157{word-spacing:-16.730667pt;}
.ws2ed{word-spacing:-16.713600pt;}
.ws23e{word-spacing:-16.704000pt;}
.ws26b{word-spacing:-16.665600pt;}
.ws241{word-spacing:-16.656000pt;}
.ws1dd{word-spacing:-16.632000pt;}
.ws192{word-spacing:-16.629333pt;}
.ws158{word-spacing:-16.608000pt;}
.ws23d{word-spacing:-16.588800pt;}
.ws23c{word-spacing:-16.584000pt;}
.ws2be{word-spacing:-16.579200pt;}
.ws379{word-spacing:-16.574400pt;}
.ws2f1{word-spacing:-16.569600pt;}
.ws26a{word-spacing:-16.545600pt;}
.ws1cd{word-spacing:-16.512000pt;}
.ws29f{word-spacing:-16.442667pt;}
.wsc3{word-spacing:-16.432000pt;}
.ws1dc{word-spacing:-16.401600pt;}
.ws1a8{word-spacing:-16.362667pt;}
.ws301{word-spacing:-16.358400pt;}
.ws175{word-spacing:-16.341333pt;}
.ws239{word-spacing:-16.339200pt;}
.ws260{word-spacing:-16.324800pt;}
.wscc{word-spacing:-16.320000pt;}
.ws184{word-spacing:-16.304000pt;}
.ws8e{word-spacing:-16.293333pt;}
.ws5b{word-spacing:-16.282667pt;}
.ws8f{word-spacing:-16.234667pt;}
.ws22e{word-spacing:-16.224000pt;}
.ws238{word-spacing:-16.209600pt;}
.ws1cf{word-spacing:-16.197333pt;}
.ws22d{word-spacing:-16.180800pt;}
.ws173{word-spacing:-16.176000pt;}
.ws27b{word-spacing:-16.170667pt;}
.ws174{word-spacing:-16.160000pt;}
.ws371{word-spacing:-16.142400pt;}
.ws172{word-spacing:-16.138667pt;}
.ws48{word-spacing:-16.133333pt;}
.ws5a{word-spacing:-16.117333pt;}
.ws164{word-spacing:-16.064000pt;}
.ws16a{word-spacing:-16.058667pt;}
.ws264{word-spacing:-16.056000pt;}
.ws7{word-spacing:-16.046400pt;}
.ws32f{word-spacing:-16.017600pt;}
.ws16b{word-spacing:-16.016000pt;}
.ws8{word-spacing:-15.984000pt;}
.ws322{word-spacing:-15.964800pt;}
.ws311{word-spacing:-15.921600pt;}
.wscf{word-spacing:-15.914667pt;}
.ws1a5{word-spacing:-15.909333pt;}
.ws357{word-spacing:-15.825600pt;}
.ws76{word-spacing:-15.824000pt;}
.ws368{word-spacing:-15.820800pt;}
.wscb{word-spacing:-15.813333pt;}
.ws2ea{word-spacing:-15.801600pt;}
.ws358{word-spacing:-15.763200pt;}
.ws38a{word-spacing:-15.748800pt;}
.ws2f5{word-spacing:-15.734400pt;}
.ws199{word-spacing:-15.722667pt;}
.ws330{word-spacing:-15.705600pt;}
.ws98{word-spacing:-15.669333pt;}
.ws2da{word-spacing:-15.662400pt;}
.ws14a{word-spacing:-15.642667pt;}
.ws179{word-spacing:-15.594667pt;}
.ws370{word-spacing:-15.576000pt;}
.ws280{word-spacing:-15.568000pt;}
.ws2b8{word-spacing:-15.561600pt;}
.ws269{word-spacing:-15.537600pt;}
.ws34a{word-spacing:-15.532800pt;}
.ws25e{word-spacing:-15.465600pt;}
.ws309{word-spacing:-15.456000pt;}
.ws25f{word-spacing:-15.432000pt;}
.ws1d4{word-spacing:-15.422400pt;}
.wsc5{word-spacing:-15.402667pt;}
.ws34b{word-spacing:-15.369600pt;}
.ws37f{word-spacing:-15.355200pt;}
.ws1c2{word-spacing:-15.354667pt;}
.ws165{word-spacing:-15.296000pt;}
.ws35e{word-spacing:-15.254400pt;}
.ws1d3{word-spacing:-15.220800pt;}
.ws17c{word-spacing:-15.210667pt;}
.ws1ac{word-spacing:-15.200000pt;}
.ws16c{word-spacing:-15.189333pt;}
.ws38b{word-spacing:-15.187200pt;}
.ws3d{word-spacing:-15.168000pt;}
.ws1c0{word-spacing:-15.152000pt;}
.ws62{word-spacing:-15.141333pt;}
.ws28e{word-spacing:-15.130667pt;}
.ws32a{word-spacing:-15.129600pt;}
.ws182{word-spacing:-15.114667pt;}
.ws293{word-spacing:-15.093333pt;}
.ws152{word-spacing:-15.088000pt;}
.ws17a{word-spacing:-15.082667pt;}
.ws312{word-spacing:-15.038400pt;}
.ws2db{word-spacing:-15.028800pt;}
.ws195{word-spacing:-15.002667pt;}
.ws1a9{word-spacing:-14.997333pt;}
.wsd5{word-spacing:-14.992000pt;}
.ws337{word-spacing:-14.985600pt;}
.ws1d0{word-spacing:-14.954667pt;}
.ws7f{word-spacing:-14.949333pt;}
.ws27d{word-spacing:-14.944000pt;}
.ws9b{word-spacing:-14.938667pt;}
.ws17b{word-spacing:-14.922667pt;}
.wsdb{word-spacing:-14.917333pt;}
.ws95{word-spacing:-14.906667pt;}
.ws268{word-spacing:-14.889600pt;}
.ws1c6{word-spacing:-14.880000pt;}
.ws284{word-spacing:-14.864000pt;}
.ws181{word-spacing:-14.853333pt;}
.ws9a{word-spacing:-14.826667pt;}
.ws109{word-spacing:-14.810667pt;}
.ws65{word-spacing:-14.800000pt;}
.ws94{word-spacing:-14.784000pt;}
.ws134{word-spacing:-14.768000pt;}
.wsdc{word-spacing:-14.741333pt;}
.wsf6{word-spacing:-14.736000pt;}
.ws2a8{word-spacing:-14.716800pt;}
.ws347{word-spacing:-14.712000pt;}
.ws183{word-spacing:-14.693333pt;}
.ws170{word-spacing:-14.688000pt;}
.wsd8{word-spacing:-14.656000pt;}
.wsc4{word-spacing:-14.629333pt;}
.ws34f{word-spacing:-14.611200pt;}
.wse0{word-spacing:-14.581333pt;}
.ws1da{word-spacing:-14.577600pt;}
.ws8c{word-spacing:-14.549333pt;}
.ws341{word-spacing:-14.539200pt;}
.ws34c{word-spacing:-14.534400pt;}
.ws349{word-spacing:-14.515200pt;}
.ws340{word-spacing:-14.467200pt;}
.ws144{word-spacing:-14.378667pt;}
.ws27c{word-spacing:-14.362667pt;}
.ws281{word-spacing:-14.357333pt;}
.ws289{word-spacing:-14.341333pt;}
.wsee{word-spacing:-14.314667pt;}
.ws27{word-spacing:-14.309333pt;}
.ws1bd{word-spacing:-14.272000pt;}
.ws356{word-spacing:-14.260800pt;}
.ws166{word-spacing:-14.256000pt;}
.ws11a{word-spacing:-14.250667pt;}
.ws378{word-spacing:-14.236800pt;}
.ws2eb{word-spacing:-14.222400pt;}
.ws145{word-spacing:-14.218667pt;}
.ws1c3{word-spacing:-14.202667pt;}
.ws28a{word-spacing:-14.197333pt;}
.ws27f{word-spacing:-14.186667pt;}
.ws332{word-spacing:-14.155200pt;}
.ws149{word-spacing:-14.144000pt;}
.ws387{word-spacing:-14.140800pt;}
.ws132{word-spacing:-14.128000pt;}
.wsca{word-spacing:-14.106667pt;}
.ws2b9{word-spacing:-14.092800pt;}
.ws130{word-spacing:-14.090667pt;}
.ws283{word-spacing:-14.058667pt;}
.ws13f{word-spacing:-14.042667pt;}
.ws2c4{word-spacing:-14.025600pt;}
.wsc9{word-spacing:-14.016000pt;}
.wsc8{word-spacing:-14.010667pt;}
.wse9{word-spacing:-13.994667pt;}
.ws12f{word-spacing:-13.872000pt;}
.ws31b{word-spacing:-13.862400pt;}
.ws59{word-spacing:-13.850667pt;}
.ws292{word-spacing:-13.786667pt;}
.ws392{word-spacing:-13.737600pt;}
.ws2d{word-spacing:-13.728000pt;}
.ws154{word-spacing:-13.722667pt;}
.wsd2{word-spacing:-13.696000pt;}
.ws2c3{word-spacing:-13.684800pt;}
.ws2c1{word-spacing:-13.680000pt;}
.ws23a{word-spacing:-13.675200pt;}
.ws2b3{word-spacing:-13.651200pt;}
.ws21d{word-spacing:-13.646400pt;}
.ws2d5{word-spacing:-13.641600pt;}
.ws2bc{word-spacing:-13.636800pt;}
.ws2c5{word-spacing:-13.632000pt;}
.ws50{word-spacing:-13.627200pt;}
.ws2b6{word-spacing:-13.622400pt;}
.ws361{word-spacing:-13.617600pt;}
.ws37d{word-spacing:-13.612800pt;}
.ws2ad{word-spacing:-13.608000pt;}
.wsd3{word-spacing:-13.605333pt;}
.ws171{word-spacing:-13.594667pt;}
.ws2f3{word-spacing:-13.593600pt;}
.ws334{word-spacing:-13.588800pt;}
.ws331{word-spacing:-13.584000pt;}
.ws359{word-spacing:-13.574400pt;}
.ws30d{word-spacing:-13.569600pt;}
.ws2a2{word-spacing:-13.560000pt;}
.ws4e{word-spacing:-13.555200pt;}
.ws2c7{word-spacing:-13.550400pt;}
.ws2ec{word-spacing:-13.545600pt;}
.ws245{word-spacing:-13.540800pt;}
.ws2e1{word-spacing:-13.531200pt;}
.ws246{word-spacing:-13.507200pt;}
.ws2cf{word-spacing:-13.488000pt;}
.ws244{word-spacing:-13.478400pt;}
.ws1f7{word-spacing:-13.449600pt;}
.ws36c{word-spacing:-13.440000pt;}
.ws380{word-spacing:-13.430400pt;}
.ws2a4{word-spacing:-13.425600pt;}
.ws2bd{word-spacing:-13.420800pt;}
.ws1c9{word-spacing:-13.418667pt;}
.ws212{word-spacing:-13.406400pt;}
.ws393{word-spacing:-13.401600pt;}
.ws38f{word-spacing:-13.387200pt;}
.ws294{word-spacing:-13.386667pt;}
.ws235{word-spacing:-13.382400pt;}
.ws1de{word-spacing:-13.377600pt;}
.ws303{word-spacing:-13.372800pt;}
.ws2e0{word-spacing:-13.368000pt;}
.wscd{word-spacing:-13.365333pt;}
.ws29{word-spacing:-13.349333pt;}
.ws2fc{word-spacing:-13.334400pt;}
.ws287{word-spacing:-13.333333pt;}
.ws35a{word-spacing:-13.315200pt;}
.ws2f0{word-spacing:-13.272000pt;}
.ws2d1{word-spacing:-13.252800pt;}
.ws300{word-spacing:-13.248000pt;}
.ws385{word-spacing:-13.228800pt;}
.ws328{word-spacing:-13.142400pt;}
.ws1bc{word-spacing:-13.120000pt;}
.ws10a{word-spacing:-13.093333pt;}
.ws2d7{word-spacing:-13.084800pt;}
.ws23b{word-spacing:-13.075200pt;}
.ws31c{word-spacing:-13.070400pt;}
.ws1b3{word-spacing:-13.040000pt;}
.ws2d6{word-spacing:-13.012800pt;}
.ws90{word-spacing:-12.992000pt;}
.ws2f4{word-spacing:-12.984000pt;}
.ws386{word-spacing:-12.974400pt;}
.ws2ff{word-spacing:-12.969600pt;}
.ws150{word-spacing:-12.960000pt;}
.ws33b{word-spacing:-12.955200pt;}
.ws2cc{word-spacing:-12.921600pt;}
.ws138{word-spacing:-12.917333pt;}
.ws2c2{word-spacing:-12.916800pt;}
.ws2d0{word-spacing:-12.912000pt;}
.ws362{word-spacing:-12.907200pt;}
.ws19c{word-spacing:-12.885333pt;}
.ws2d9{word-spacing:-12.883200pt;}
.ws367{word-spacing:-12.873600pt;}
.ws2ae{word-spacing:-12.864000pt;}
.ws338{word-spacing:-12.859200pt;}
.ws394{word-spacing:-12.849600pt;}
.ws37c{word-spacing:-12.835200pt;}
.ws151{word-spacing:-12.821333pt;}
.wsa8{word-spacing:-12.816000pt;}
.ws2ca{word-spacing:-12.801600pt;}
.ws316{word-spacing:-12.796800pt;}
.ws12e{word-spacing:-12.794667pt;}
.ws2c6{word-spacing:-12.787200pt;}
.ws19e{word-spacing:-12.778667pt;}
.ws2e6{word-spacing:-12.777600pt;}
.ws304{word-spacing:-12.772800pt;}
.ws2a3{word-spacing:-12.763200pt;}
.ws33{word-spacing:-12.736000pt;}
.ws30f{word-spacing:-12.710400pt;}
.ws9c{word-spacing:-12.709333pt;}
.ws369{word-spacing:-12.700800pt;}
.ws137{word-spacing:-12.693333pt;}
.ws335{word-spacing:-12.686400pt;}
.ws2fd{word-spacing:-12.681600pt;}
.ws2e2{word-spacing:-12.672000pt;}
.ws351{word-spacing:-12.667200pt;}
.ws1ef{word-spacing:-12.662400pt;}
.ws75{word-spacing:-12.645333pt;}
.ws36e{word-spacing:-12.638400pt;}
.ws329{word-spacing:-12.619200pt;}
.ws325{word-spacing:-12.604800pt;}
.ws2b7{word-spacing:-12.595200pt;}
.ws19a{word-spacing:-12.592000pt;}
.ws20c{word-spacing:-12.561600pt;}
.ws1ee{word-spacing:-12.528000pt;}
.ws14f{word-spacing:-12.512000pt;}
.ws15c{word-spacing:-12.496000pt;}
.ws19f{word-spacing:-12.480000pt;}
.ws93{word-spacing:-12.458667pt;}
.ws34{word-spacing:-12.437333pt;}
.wsa7{word-spacing:-12.432000pt;}
.ws38e{word-spacing:-12.422400pt;}
.ws2e3{word-spacing:-12.408000pt;}
.ws20d{word-spacing:-12.403200pt;}
.ws375{word-spacing:-12.398400pt;}
.ws7a{word-spacing:-12.330667pt;}
.ws1f5{word-spacing:-12.316800pt;}
.ws32{word-spacing:-12.282667pt;}
.ws7b{word-spacing:-12.277333pt;}
.ws37b{word-spacing:-12.254400pt;}
.ws2ac{word-spacing:-12.163200pt;}
.ws1b4{word-spacing:-12.122667pt;}
.ws33d{word-spacing:-12.120000pt;}
.ws310{word-spacing:-12.100800pt;}
.ws54{word-spacing:-12.092800pt;}
.ws2cb{word-spacing:-12.081600pt;}
.ws1ca{word-spacing:-12.064000pt;}
.ws33f{word-spacing:-12.038400pt;}
.wse3{word-spacing:-12.005333pt;}
.ws2d8{word-spacing:-12.000000pt;}
.ws1b5{word-spacing:-11.994667pt;}
.wsec{word-spacing:-11.936000pt;}
.ws143{word-spacing:-11.920000pt;}
.ws85{word-spacing:-11.914667pt;}
.wsed{word-spacing:-11.909333pt;}
.ws352{word-spacing:-11.908800pt;}
.ws295{word-spacing:-11.893333pt;}
.wsff{word-spacing:-11.834667pt;}
.wsd6{word-spacing:-11.818667pt;}
.ws348{word-spacing:-11.812800pt;}
.ws159{word-spacing:-11.781333pt;}
.wsfe{word-spacing:-11.744000pt;}
.ws32b{word-spacing:-11.702400pt;}
.ws1ad{word-spacing:-11.701333pt;}
.ws390{word-spacing:-11.640000pt;}
.ws38d{word-spacing:-11.577600pt;}
.ws38c{word-spacing:-11.520000pt;}
.ws33e{word-spacing:-11.457600pt;}
.ws9e{word-spacing:-11.440000pt;}
.ws275{word-spacing:-11.370667pt;}
.ws2ef{word-spacing:-11.227200pt;}
.ws2e8{word-spacing:-11.188800pt;}
.ws32c{word-spacing:-11.179200pt;}
.ws274{word-spacing:-11.125333pt;}
.ws1db{word-spacing:-11.073600pt;}
.ws24c{word-spacing:-11.006400pt;}
.ws155{word-spacing:-10.986667pt;}
.ws24b{word-spacing:-10.958400pt;}
.ws18{word-spacing:-10.933333pt;}
.ws156{word-spacing:-10.917333pt;}
.ws1e5{word-spacing:-10.886400pt;}
.ws118{word-spacing:-10.874667pt;}
.ws302{word-spacing:-10.790400pt;}
.ws1e4{word-spacing:-10.785600pt;}
.ws360{word-spacing:-10.651200pt;}
.ws1e6{word-spacing:-10.632000pt;}
.ws1d1{word-spacing:-10.440000pt;}
.ws1e1{word-spacing:-10.416000pt;}
.ws71{word-spacing:-10.400000pt;}
.ws72{word-spacing:-10.394667pt;}
.ws231{word-spacing:-10.382400pt;}
.ws230{word-spacing:-10.320000pt;}
.ws2f6{word-spacing:-10.281600pt;}
.ws1f{word-spacing:-10.261333pt;}
.ws14e{word-spacing:-10.218667pt;}
.ws232{word-spacing:-10.128000pt;}
.ws2a0{word-spacing:-10.089600pt;}
.ws317{word-spacing:-9.998400pt;}
.ws119{word-spacing:-9.973333pt;}
.ws68{word-spacing:-9.957333pt;}
.ws2dd{word-spacing:-9.844800pt;}
.ws2a6{word-spacing:-9.825600pt;}
.ws209{word-spacing:-9.806400pt;}
.ws1f6{word-spacing:-9.782400pt;}
.ws298{word-spacing:-9.770667pt;}
.wse8{word-spacing:-9.760000pt;}
.wse7{word-spacing:-9.712000pt;}
.ws208{word-spacing:-9.691200pt;}
.ws31{word-spacing:-9.669333pt;}
.ws207{word-spacing:-9.648000pt;}
.ws339{word-spacing:-9.633600pt;}
.ws178{word-spacing:-9.557333pt;}
.wsaa{word-spacing:-9.537600pt;}
.ws249{word-spacing:-9.532800pt;}
.ws307{word-spacing:-9.494400pt;}
.ws296{word-spacing:-9.493333pt;}
.ws24a{word-spacing:-9.489600pt;}
.ws2b4{word-spacing:-9.446400pt;}
.ws2f7{word-spacing:-9.436800pt;}
.ws124{word-spacing:-9.422400pt;}
.ws18b{word-spacing:-9.408000pt;}
.ws31a{word-spacing:-9.384000pt;}
.ws167{word-spacing:-9.370667pt;}
.ws7e{word-spacing:-9.354667pt;}
.ws25c{word-spacing:-9.340800pt;}
.ws35{word-spacing:-9.338667pt;}
.ws15b{word-spacing:-9.312000pt;}
.ws25b{word-spacing:-9.307200pt;}
.ws353{word-spacing:-9.201600pt;}
.ws2de{word-spacing:-9.148800pt;}
.ws29b{word-spacing:-9.109333pt;}
.ws364{word-spacing:-9.096000pt;}
.ws36f{word-spacing:-9.000000pt;}
.ws389{word-spacing:-8.923200pt;}
.ws1ce{word-spacing:-8.885333pt;}
.ws308{word-spacing:-8.846400pt;}
.ws388{word-spacing:-8.817600pt;}
.ws218{word-spacing:-8.798400pt;}
.ws384{word-spacing:-8.793600pt;}
.ws10f{word-spacing:-8.768000pt;}
.ws2a7{word-spacing:-8.740800pt;}
.wsf5{word-spacing:-8.682667pt;}
.ws3f{word-spacing:-8.634667pt;}
.ws189{word-spacing:-8.592000pt;}
.ws197{word-spacing:-8.563200pt;}
.ws26c{word-spacing:-8.539200pt;}
.ws2fb{word-spacing:-8.500800pt;}
.ws35d{word-spacing:-8.476800pt;}
.ws13e{word-spacing:-8.442667pt;}
.ws9d{word-spacing:-8.362667pt;}
.ws24{word-spacing:-8.352000pt;}
.ws259{word-spacing:-8.299200pt;}
.ws350{word-spacing:-8.284800pt;}
.wsea{word-spacing:-8.192000pt;}
.ws69{word-spacing:-8.112000pt;}
.ws2d4{word-spacing:-8.059200pt;}
.ws12{word-spacing:-8.005333pt;}
.wsbb{word-spacing:-7.977600pt;}
.ws8b{word-spacing:-7.968000pt;}
.ws168{word-spacing:-7.962667pt;}
.wsb9{word-spacing:-7.958400pt;}
.wsbc{word-spacing:-7.944000pt;}
.wsdf{word-spacing:-7.936000pt;}
.ws36a{word-spacing:-7.920000pt;}
.wsba{word-spacing:-7.915200pt;}
.ws8a{word-spacing:-7.904000pt;}
.wsb6{word-spacing:-7.896000pt;}
.wsb7{word-spacing:-7.857600pt;}
.wsb5{word-spacing:-7.852800pt;}
.wsd9{word-spacing:-7.744000pt;}
.ws7d{word-spacing:-7.738667pt;}
.wsce{word-spacing:-7.680000pt;}
.ws2d3{word-spacing:-7.675200pt;}
.ws169{word-spacing:-7.674667pt;}
.wsb8{word-spacing:-7.660800pt;}
.ws33c{word-spacing:-7.651200pt;}
.ws1a6{word-spacing:-7.642667pt;}
.ws2df{word-spacing:-7.617600pt;}
.wsa6{word-spacing:-7.610667pt;}
.ws1a7{word-spacing:-7.594667pt;}
.ws17f{word-spacing:-7.541333pt;}
.ws58{word-spacing:-7.450667pt;}
.wsfd{word-spacing:-7.434667pt;}
.wsaf{word-spacing:-7.401600pt;}
.ws31f{word-spacing:-7.396800pt;}
.ws3b{word-spacing:-7.392000pt;}
.wsae{word-spacing:-7.358400pt;}
.wsb1{word-spacing:-7.353600pt;}
.wsad{word-spacing:-7.324800pt;}
.wsb3{word-spacing:-7.315200pt;}
.wsb0{word-spacing:-7.310400pt;}
.wsb2{word-spacing:-7.262400pt;}
.wsd4{word-spacing:-7.253333pt;}
.wsf8{word-spacing:-7.242667pt;}
.ws43{word-spacing:-7.194667pt;}
.ws30e{word-spacing:-7.171200pt;}
.ws22a{word-spacing:-7.161600pt;}
.ws355{word-spacing:-7.147200pt;}
.ws191{word-spacing:-7.141333pt;}
.ws14b{word-spacing:-7.088000pt;}
.ws18f{word-spacing:-7.072000pt;}
.ws122{word-spacing:-7.066667pt;}
.ws96{word-spacing:-7.056000pt;}
.ws342{word-spacing:-7.036800pt;}
.ws22b{word-spacing:-7.032000pt;}
.ws38{word-spacing:-7.013333pt;}
.ws37{word-spacing:-7.008000pt;}
.ws29d{word-spacing:-6.992000pt;}
.wsd7{word-spacing:-6.944000pt;}
.ws97{word-spacing:-6.928000pt;}
.ws9f{word-spacing:-6.800000pt;}
.wsf4{word-spacing:-6.773333pt;}
.ws117{word-spacing:-6.768000pt;}
.ws116{word-spacing:-6.762667pt;}
.wsab{word-spacing:-6.753600pt;}
.ws320{word-spacing:-6.648000pt;}
.ws219{word-spacing:-6.624000pt;}
.ws365{word-spacing:-6.609600pt;}
.ws363{word-spacing:-6.552000pt;}
.ws23{word-spacing:-6.496000pt;}
.ws33a{word-spacing:-6.456000pt;}
.ws20a{word-spacing:-6.422400pt;}
.ws226{word-spacing:-6.384000pt;}
.ws243{word-spacing:-6.355200pt;}
.ws114{word-spacing:-6.282667pt;}
.ws20b{word-spacing:-6.278400pt;}
.ws273{word-spacing:-6.272000pt;}
.ws24f{word-spacing:-6.182400pt;}
.ws2c8{word-spacing:-6.168000pt;}
.ws3c{word-spacing:-6.106667pt;}
.ws113{word-spacing:-5.978667pt;}
.ws25{word-spacing:-5.893333pt;}
.ws1af{word-spacing:-5.868045pt;}
.ws13d{word-spacing:-5.861333pt;}
.ws366{word-spacing:-5.846400pt;}
.ws112{word-spacing:-5.845333pt;}
.ws391{word-spacing:-5.822400pt;}
.ws327{word-spacing:-5.817600pt;}
.ws2f{word-spacing:-5.797333pt;}
.ws2fe{word-spacing:-5.779200pt;}
.ws30{word-spacing:-5.728000pt;}
.ws1e2{word-spacing:-5.596800pt;}
.ws126{word-spacing:-5.524800pt;}
.ws198{word-spacing:-5.505600pt;}
.ws21c{word-spacing:-5.496000pt;}
.ws381{word-spacing:-5.452800pt;}
.wse4{word-spacing:-5.440000pt;}
.wse6{word-spacing:-5.429333pt;}
.ws125{word-spacing:-5.400000pt;}
.wsbd{word-spacing:-5.395200pt;}
.ws382{word-spacing:-5.385600pt;}
.ws211{word-spacing:-5.380800pt;}
.ws1a{word-spacing:-5.376000pt;}
.wse5{word-spacing:-5.248000pt;}
.ws256{word-spacing:-5.212800pt;}
.ws346{word-spacing:-5.164800pt;}
.ws345{word-spacing:-5.150400pt;}
.ws306{word-spacing:-5.145600pt;}
.ws1ed{word-spacing:-5.140800pt;}
.ws19{word-spacing:-5.136000pt;}
.ws106{word-spacing:-5.018667pt;}
.ws2c9{word-spacing:-4.982400pt;}
.ws12d{word-spacing:-4.954667pt;}
.wsa{word-spacing:-4.910872pt;}
.ws3e{word-spacing:-4.880000pt;}
.ws53{word-spacing:-4.855200pt;}
.ws263{word-spacing:-4.819200pt;}
.ws52{word-spacing:-4.811520pt;}
.wsc{word-spacing:-4.804207pt;}
.ws2a1{word-spacing:-4.752000pt;}
.ws3a{word-spacing:-4.720000pt;}
.ws323{word-spacing:-4.651200pt;}
.wsac{word-spacing:-4.636800pt;}
.ws31d{word-spacing:-4.584000pt;}
.ws1c7{word-spacing:-4.560000pt;}
.ws2ce{word-spacing:-4.483200pt;}
.ws108{word-spacing:-4.416000pt;}
.ws7c{word-spacing:-4.405333pt;}
.ws55{word-spacing:-4.380800pt;}
.ws233{word-spacing:-4.339200pt;}
.ws1d8{word-spacing:-4.305600pt;}
.ws107{word-spacing:-4.256000pt;}
.wsfc{word-spacing:-4.202667pt;}
.ws1d7{word-spacing:-4.171200pt;}
.ws12a{word-spacing:-4.170667pt;}
.ws2e5{word-spacing:-4.156800pt;}
.ws234{word-spacing:-4.108800pt;}
.ws22{word-spacing:-4.101333pt;}
.ws1aa{word-spacing:-4.054712pt;}
.ws1f1{word-spacing:-4.027200pt;}
.wsf2{word-spacing:-3.994667pt;}
.ws176{word-spacing:-3.920000pt;}
.ws276{word-spacing:-3.898667pt;}
.wsf3{word-spacing:-3.872000pt;}
.ws213{word-spacing:-3.840000pt;}
.ws4b{word-spacing:-3.813333pt;}
.ws30c{word-spacing:-3.763200pt;}
.ws196{word-spacing:-3.676800pt;}
.wsf1{word-spacing:-3.642667pt;}
.wsf9{word-spacing:-3.626667pt;}
.ws4a{word-spacing:-3.584000pt;}
.wsfa{word-spacing:-3.429333pt;}
.ws270{word-spacing:-3.418667pt;}
.wsfb{word-spacing:-3.376000pt;}
.ws100{word-spacing:-3.370667pt;}
.ws101{word-spacing:-3.360000pt;}
.ws47{word-spacing:-3.344000pt;}
.ws14d{word-spacing:-3.290667pt;}
.ws2ee{word-spacing:-3.220800pt;}
.ws133{word-spacing:-3.210667pt;}
.ws131{word-spacing:-3.142712pt;}
.ws45{word-spacing:-3.141333pt;}
.ws60{word-spacing:-3.136000pt;}
.ws1d2{word-spacing:-3.129600pt;}
.ws46{word-spacing:-3.120000pt;}
.ws321{word-spacing:-3.072000pt;}
.ws1df{word-spacing:-3.048000pt;}
.ws1d5{word-spacing:-3.038400pt;}
.ws61{word-spacing:-3.018667pt;}
.wsda{word-spacing:-2.864000pt;}
.ws376{word-spacing:-2.832000pt;}
.ws4{word-spacing:-2.745579pt;}
.ws2{word-spacing:-2.717846pt;}
.ws3{word-spacing:-2.662380pt;}
.ws6{word-spacing:-2.655446pt;}
.ws20{word-spacing:-2.640000pt;}
.ws5{word-spacing:-2.620780pt;}
.ws21{word-spacing:-2.613333pt;}
.ws1eb{word-spacing:-2.553600pt;}
.ws333{word-spacing:-2.520000pt;}
.ws5f{word-spacing:-2.506667pt;}
.ws17{word-spacing:-2.458667pt;}
.ws374{word-spacing:-2.428800pt;}
.ws83{word-spacing:-2.416000pt;}
.ws162{word-spacing:-2.352000pt;}
.ws6a{word-spacing:-2.298667pt;}
.wsf7{word-spacing:-2.288000pt;}
.ws13{word-spacing:-2.240000pt;}
.ws377{word-spacing:-2.236800pt;}
.ws17d{word-spacing:-2.106667pt;}
.ws2c0{word-spacing:-2.054400pt;}
.ws89{word-spacing:-2.037333pt;}
.wse{word-spacing:-1.978667pt;}
.wsa9{word-spacing:-1.909333pt;}
.ws2bf{word-spacing:-1.891200pt;}
.ws326{word-spacing:-1.824000pt;}
.ws271{word-spacing:-1.797333pt;}
.ws36b{word-spacing:-1.785600pt;}
.ws19d{word-spacing:-1.744929pt;}
.ws21a{word-spacing:-1.713600pt;}
.ws19b{word-spacing:-1.633379pt;}
.ws11b{word-spacing:-1.514667pt;}
.ws240{word-spacing:-1.483200pt;}
.ws2dc{word-spacing:-1.430400pt;}
.ws1c8{word-spacing:-1.386667pt;}
.ws74{word-spacing:-1.317333pt;}
.ws128{word-spacing:-1.088000pt;}
.ws1fc{word-spacing:-1.056000pt;}
.ws10{word-spacing:-1.029333pt;}
.ws1a2{word-spacing:-1.024000pt;}
.ws127{word-spacing:-1.008000pt;}
.ws1a4{word-spacing:-0.928000pt;}
.ws34e{word-spacing:-0.912000pt;}
.ws21b{word-spacing:-0.902400pt;}
.ws34d{word-spacing:-0.744000pt;}
.ws1a3{word-spacing:-0.704000pt;}
.ws5e{word-spacing:-0.656000pt;}
.ws49{word-spacing:-0.640000pt;}
.ws22f{word-spacing:-0.576097pt;}
.wsc0{word-spacing:-0.544000pt;}
.ws253{word-spacing:-0.475200pt;}
.ws1c5{word-spacing:-0.474667pt;}
.ws1e0{word-spacing:-0.465600pt;}
.ws36d{word-spacing:-0.441600pt;}
.ws251{word-spacing:-0.388800pt;}
.ws1d6{word-spacing:-0.364800pt;}
.ws210{word-spacing:-0.312000pt;}
.ws41{word-spacing:-0.282667pt;}
.ws20e{word-spacing:-0.268800pt;}
.ws6b{word-spacing:-0.261333pt;}
.ws252{word-spacing:-0.240000pt;}
.ws31e{word-spacing:-0.004800pt;}
.ws56{word-spacing:0.000000pt;}
.ws247{word-spacing:0.004800pt;}
.ws206{word-spacing:0.091200pt;}
.ws272{word-spacing:0.138667pt;}
.ws1b2{word-spacing:0.186667pt;}
.wse1{word-spacing:0.602667pt;}
.ws1f2{word-spacing:0.604800pt;}
.wse2{word-spacing:0.656000pt;}
.ws383{word-spacing:0.696000pt;}
.ws1f4{word-spacing:0.710400pt;}
.ws354{word-spacing:0.758400pt;}
.ws2b0{word-spacing:0.873600pt;}
.ws319{word-spacing:0.897600pt;}
.ws2af{word-spacing:1.065600pt;}
.ws373{word-spacing:1.075200pt;}
.ws1cb{word-spacing:1.082667pt;}
.ws1d9{word-spacing:1.152000pt;}
.ws18a{word-spacing:1.450667pt;}
.ws2b1{word-spacing:1.468800pt;}
.ws2a5{word-spacing:1.507200pt;}
.ws2e4{word-spacing:1.560000pt;}
.ws1fa{word-spacing:1.872000pt;}
.ws23f{word-spacing:2.308800pt;}
.ws11{word-spacing:2.314667pt;}
.ws35c{word-spacing:2.342400pt;}
.ws258{word-spacing:2.347200pt;}
.ws25d{word-spacing:2.356800pt;}
.ws99{word-spacing:2.378667pt;}
.ws255{word-spacing:2.409600pt;}
.ws262{word-spacing:2.428800pt;}
.ws254{word-spacing:2.448000pt;}
.ws2a9{word-spacing:2.476800pt;}
.ws248{word-spacing:2.491200pt;}
.ws1ec{word-spacing:2.500800pt;}
.ws2b2{word-spacing:2.505600pt;}
.ws2f2{word-spacing:2.558400pt;}
.ws73{word-spacing:2.565333pt;}
.ws257{word-spacing:2.568000pt;}
.ws299{word-spacing:2.581333pt;}
.ws105{word-spacing:2.586667pt;}
.ws29a{word-spacing:2.608000pt;}
.ws39{word-spacing:2.618667pt;}
.ws5d{word-spacing:2.629333pt;}
.ws64{word-spacing:2.640000pt;}
.ws111{word-spacing:2.645333pt;}
.wseb{word-spacing:2.666667pt;}
.ws1b1{word-spacing:2.672000pt;}
.wsa5{word-spacing:2.688000pt;}
.ws88{word-spacing:2.693333pt;}
.ws115{word-spacing:2.698667pt;}
.ws297{word-spacing:2.704000pt;}
.ws70{word-spacing:2.709333pt;}
.ws146{word-spacing:2.714667pt;}
.ws29c{word-spacing:2.720000pt;}
.ws4c{word-spacing:2.725333pt;}
.ws84{word-spacing:2.741333pt;}
.ws103{word-spacing:2.757333pt;}
.ws121{word-spacing:2.762667pt;}
.ws6f{word-spacing:2.784000pt;}
.wsf0{word-spacing:2.794667pt;}
.ws92{word-spacing:2.810667pt;}
.ws8d{word-spacing:2.816000pt;}
.ws147{word-spacing:2.821333pt;}
.ws1a1{word-spacing:2.837333pt;}
.ws6e{word-spacing:2.842667pt;}
.ws104{word-spacing:2.848000pt;}
.ws110{word-spacing:2.853333pt;}
.wsa2{word-spacing:2.858667pt;}
.ws26{word-spacing:2.864000pt;}
.ws102{word-spacing:2.885333pt;}
.wsa4{word-spacing:2.896000pt;}
.ws91{word-spacing:2.906667pt;}
.ws120{word-spacing:2.917333pt;}
.wsd{word-spacing:2.965333pt;}
.wsa3{word-spacing:2.976000pt;}
.ws163{word-spacing:2.986667pt;}
.ws37a{word-spacing:3.009600pt;}
.ws35b{word-spacing:3.028800pt;}
.ws2d2{word-spacing:3.033600pt;}
.ws2aa{word-spacing:3.086400pt;}
.ws1f8{word-spacing:3.168000pt;}
.ws1b{word-spacing:3.674667pt;}
.ws1c{word-spacing:3.744000pt;}
.ws190{word-spacing:3.864872pt;}
.ws1ff{word-spacing:8.904000pt;}
.ws16{word-spacing:9.125333pt;}
.ws1e{word-spacing:9.221333pt;}
.ws1d{word-spacing:9.306667pt;}
.ws225{word-spacing:10.176000pt;}
.ws1f3{word-spacing:10.490400pt;}
.ws14{word-spacing:11.674667pt;}
.wsf{word-spacing:11.690667pt;}
.ws15{word-spacing:11.744000pt;}
.ws216{word-spacing:13.440000pt;}
.ws1f9{word-spacing:13.872000pt;}
.ws26e{word-spacing:14.739685pt;}
.wsb{word-spacing:15.614095pt;}
.ws221{word-spacing:16.656000pt;}
.ws1fd{word-spacing:17.640000pt;}
.ws220{word-spacing:18.528000pt;}
.ws51{word-spacing:19.665600pt;}
.ws215{word-spacing:20.428800pt;}
.ws222{word-spacing:20.865600pt;}
.ws4d{word-spacing:24.081600pt;}
.ws140{word-spacing:42.517440pt;}
.ws4f{word-spacing:47.649600pt;}
.ws21f{word-spacing:65.760000pt;}
.ws1fe{word-spacing:71.433600pt;}
.ws223{word-spacing:78.456000pt;}
.ws214{word-spacing:80.256000pt;}
.ws217{word-spacing:91.440000pt;}
.ws21e{word-spacing:97.728000pt;}
.ws224{word-spacing:109.872000pt;}
.ws1fb{word-spacing:112.896000pt;}
.ws200{word-spacing:277.680000pt;}
.ws201{word-spacing:280.224000pt;}
.ws9{word-spacing:285.802133pt;}
.ws227{word-spacing:440.208000pt;}
.wsbf{word-spacing:974.532885pt;}
._34{margin-left:-2.521067pt;}
._32{margin-left:-1.210667pt;}
._b{width:1.653333pt;}
._14{width:2.805333pt;}
._33{width:10.915200pt;}
._1d{width:11.923200pt;}
._f{width:13.178667pt;}
._c{width:14.432000pt;}
._16{width:15.381333pt;}
._7{width:16.570667pt;}
._11{width:17.530667pt;}
._d{width:18.544000pt;}
._9{width:19.477333pt;}
._e{width:20.405333pt;}
._6{width:21.738667pt;}
._4{width:22.645333pt;}
._1{width:23.940616pt;}
._10{width:25.066667pt;}
._13{width:26.325333pt;}
._1a{width:27.306667pt;}
._a{width:28.261333pt;}
._18{width:29.605333pt;}
._15{width:31.178667pt;}
._1b{width:32.181333pt;}
._8{width:33.872000pt;}
._1c{width:35.136000pt;}
._5{width:36.944000pt;}
._17{width:38.304000pt;}
._20{width:39.792000pt;}
._2a{width:41.966400pt;}
._0{width:45.172972pt;}
._24{width:64.032000pt;}
._1f{width:66.768000pt;}
._31{width:71.141333pt;}
._1e{width:74.976000pt;}
._2b{width:77.817600pt;}
._28{width:87.393600pt;}
._30{width:90.955200pt;}
._2f{width:93.374400pt;}
._23{width:96.556267pt;}
._22{width:98.952000pt;}
._12{width:107.729333pt;}
._2c{width:115.584000pt;}
._29{width:125.496000pt;}
._2e{width:128.208000pt;}
._27{width:137.376000pt;}
._26{width:143.253333pt;}
._25{width:157.326667pt;}
._21{width:178.944000pt;}
._3{width:249.439772pt;}
._2d{width:296.112000pt;}
._2{width:406.940234pt;}
._19{width:965.679467pt;}
.fs14{font-size:31.995733pt;}
.fsf{font-size:32.000000pt;}
.fs12{font-size:32.158933pt;}
.fsd{font-size:33.600000pt;}
.fs16{font-size:34.832000pt;}
.fsb{font-size:35.551467pt;}
.fs8{font-size:35.732800pt;}
.fs6{font-size:36.665600pt;}
.fs9{font-size:37.280000pt;}
.fs10{font-size:37.333333pt;}
.fse{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fs11{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs17{font-size:50.666667pt;}
.fs13{font-size:53.280000pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs15{font-size:63.332267pt;}
.fs5{font-size:66.666133pt;}
.fs1{font-size:69.332800pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:133.332267pt;}
.fsc{font-size:154.133333pt;}
.y0{bottom:0.000000pt;}
.y20a{bottom:0.960000pt;}
.y267{bottom:1.117200pt;}
.y16{bottom:1.276840pt;}
.y1fd{bottom:2.083200pt;}
.y21b{bottom:2.242800pt;}
.y232{bottom:2.244000pt;}
.y229{bottom:3.519600pt;}
.y141{bottom:4.635360pt;}
.y1f7{bottom:5.124000pt;}
.y218{bottom:5.280000pt;}
.y226{bottom:6.564000pt;}
.y20b{bottom:7.198800pt;}
.y230{bottom:8.160000pt;}
.y221{bottom:8.316000pt;}
.y237{bottom:9.444000pt;}
.y208{bottom:10.236000pt;}
.y22f{bottom:10.716000pt;}
.y1fb{bottom:11.356800pt;}
.y219{bottom:11.516400pt;}
.y220{bottom:11.520000pt;}
.y1{bottom:11.943333pt;}
.y236{bottom:12.636000pt;}
.y227{bottom:12.801600pt;}
.y22e{bottom:13.920000pt;}
.y1f5{bottom:14.244000pt;}
.y216{bottom:14.556000pt;}
.y21f{bottom:14.724000pt;}
.y20c{bottom:15.682800pt;}
.y224{bottom:15.684000pt;}
.y235{bottom:15.840000pt;}
.y22d{bottom:17.124000pt;}
.y209{bottom:17.760000pt;}
.y21e{bottom:17.916000pt;}
.y234{bottom:19.044000pt;}
.y1fc{bottom:19.681200pt;}
.y21a{bottom:20.000400pt;}
.yba{bottom:20.107867pt;}
.y22c{bottom:20.316000pt;}
.y228{bottom:21.117600pt;}
.y21d{bottom:21.120000pt;}
.y233{bottom:22.236000pt;}
.y1f6{bottom:22.716000pt;}
.y217{bottom:22.884000pt;}
.y22b{bottom:23.520000pt;}
.y225{bottom:24.156000pt;}
.y5a{bottom:24.492133pt;}
.y21c{bottom:24.804000pt;}
.y231{bottom:26.076000pt;}
.y22a{bottom:27.204000pt;}
.yb9{bottom:28.799867pt;}
.y58{bottom:31.295147pt;}
.y59{bottom:33.184133pt;}
.y57{bottom:39.004667pt;}
.y1fa{bottom:41.437200pt;}
.y1f4{bottom:44.484000pt;}
.y1f8{bottom:50.719200pt;}
.y193{bottom:53.291467pt;}
.yf0{bottom:53.291867pt;}
.y88{bottom:53.292000pt;}
.y125{bottom:53.292133pt;}
.y374{bottom:53.292267pt;}
.yb1{bottom:53.292667pt;}
.y2ef{bottom:53.292800pt;}
.y15e{bottom:53.294000pt;}
.y1bc{bottom:53.295333pt;}
.y1f2{bottom:53.760000pt;}
.y20d{bottom:56.314933pt;}
.y27e{bottom:56.316667pt;}
.y1f9{bottom:59.203200pt;}
.y3c{bottom:61.077467pt;}
.y1f3{bottom:62.076000pt;}
.y207{bottom:65.234667pt;}
.y373{bottom:66.822267pt;}
.y2ee{bottom:66.822800pt;}
.y3d{bottom:66.973200pt;}
.y330{bottom:67.427600pt;}
.yb0{bottom:67.956667pt;}
.y2ad{bottom:67.958000pt;}
.y1bb{bottom:67.959333pt;}
.y192{bottom:68.032000pt;}
.y15d{bottom:68.034000pt;}
.y124{bottom:68.108133pt;}
.yef{bottom:68.182533pt;}
.yed{bottom:68.183867pt;}
.y87{bottom:68.184000pt;}
.y27d{bottom:70.980667pt;}
.yee{bottom:74.154267pt;}
.y3b{bottom:77.254800pt;}
.y2ed{bottom:80.278400pt;}
.y372{bottom:80.353467pt;}
.y32f{bottom:81.488000pt;}
.yaf{bottom:82.620667pt;}
.y1ba{bottom:82.623333pt;}
.y191{bottom:82.696533pt;}
.y15c{bottom:82.699333pt;}
.y123{bottom:82.922800pt;}
.y121{bottom:82.923333pt;}
.yec{bottom:83.074533pt;}
.y86{bottom:83.074667pt;}
.y27c{bottom:85.644667pt;}
.y122{bottom:88.818800pt;}
.y206{bottom:90.104133pt;}
.y3a{bottom:93.505467pt;}
.y38{bottom:93.507333pt;}
.y2ec{bottom:93.581600pt;}
.y371{bottom:93.809067pt;}
.y32e{bottom:95.622800pt;}
.yae{bottom:97.286000pt;}
.y2ac{bottom:97.287333pt;}
.y1b9{bottom:97.288667pt;}
.y190{bottom:97.361067pt;}
.y15b{bottom:97.439333pt;}
.y120{bottom:97.739333pt;}
.yeb{bottom:97.965200pt;}
.ye9{bottom:97.966000pt;}
.y85{bottom:99.174667pt;}
.y83{bottom:99.176667pt;}
.y39{bottom:99.477067pt;}
.y27b{bottom:100.384667pt;}
.y205{bottom:103.257333pt;}
.yea{bottom:103.936933pt;}
.y84{bottom:106.658267pt;}
.y2eb{bottom:107.037200pt;}
.y370{bottom:107.112267pt;}
.y32d{bottom:108.927200pt;}
.y37{bottom:109.759333pt;}
.y54{bottom:110.136667pt;}
.yad{bottom:111.950000pt;}
.y2ab{bottom:111.951333pt;}
.y1b8{bottom:111.952667pt;}
.y18f{bottom:112.026000pt;}
.y15a{bottom:112.103333pt;}
.ye8{bottom:112.858000pt;}
.y11f{bottom:113.839333pt;}
.y11d{bottom:113.840667pt;}
.y82{bottom:114.446000pt;}
.y27a{bottom:115.050000pt;}
.y204{bottom:116.486400pt;}
.y2ea{bottom:120.492800pt;}
.y36f{bottom:120.643467pt;}
.y11e{bottom:121.247200pt;}
.y32c{bottom:122.986400pt;}
.y53{bottom:124.800667pt;}
.y36{bottom:126.010000pt;}
.y34{bottom:126.011333pt;}
.yac{bottom:126.614000pt;}
.yaa{bottom:126.616667pt;}
.y18e{bottom:126.766000pt;}
.y159{bottom:126.843333pt;}
.ye7{bottom:127.748667pt;}
.y11c{bottom:128.958000pt;}
.y81{bottom:129.336667pt;}
.y203{bottom:129.713200pt;}
.y279{bottom:129.714000pt;}
.y35{bottom:131.906000pt;}
.yab{bottom:132.586000pt;}
.y36e{bottom:133.946667pt;}
.y2e9{bottom:134.022800pt;}
.y32b{bottom:137.122400pt;}
.y52{bottom:139.464667pt;}
.ya9{bottom:141.280667pt;}
.y1b7{bottom:141.282000pt;}
.y2aa{bottom:141.356667pt;}
.y18d{bottom:141.431333pt;}
.y158{bottom:141.583333pt;}
.y33{bottom:142.187333pt;}
.ye6{bottom:142.640667pt;}
.y202{bottom:142.866400pt;}
.y11b{bottom:143.774000pt;}
.y80{bottom:144.152667pt;}
.y278{bottom:144.378000pt;}
.y36d{bottom:147.477867pt;}
.y2e8{bottom:147.478400pt;}
.y32a{bottom:151.181600pt;}
.ya8{bottom:156.020667pt;}
.y1b6{bottom:156.022000pt;}
.y201{bottom:156.094533pt;}
.y18c{bottom:156.095333pt;}
.y157{bottom:156.248667pt;}
.y32{bottom:158.439333pt;}
.y11a{bottom:158.590000pt;}
.ye5{bottom:158.891333pt;}
.ye3{bottom:158.892667pt;}
.y7f{bottom:159.044667pt;}
.y2e7{bottom:160.781600pt;}
.y36c{bottom:161.009067pt;}
.y329{bottom:164.486000pt;}
.y277{bottom:166.072667pt;}
.ye4{bottom:166.298667pt;}
.y200{bottom:169.247733pt;}
.ya7{bottom:170.684667pt;}
.y1b5{bottom:170.686000pt;}
.y18b{bottom:170.759333pt;}
.y156{bottom:170.988667pt;}
.y119{bottom:173.330000pt;}
.y50{bottom:173.480667pt;}
.y7e{bottom:173.859333pt;}
.ye1{bottom:174.160667pt;}
.y2e6{bottom:174.237200pt;}
.y36b{bottom:174.312267pt;}
.y31{bottom:174.691333pt;}
.y328{bottom:178.622000pt;}
.y51{bottom:179.376667pt;}
.ye2{bottom:180.056667pt;}
.y276{bottom:180.736667pt;}
.y1ff{bottom:182.476400pt;}
.ya6{bottom:185.350000pt;}
.y1b4{bottom:185.351333pt;}
.y18a{bottom:185.499333pt;}
.y155{bottom:185.652667pt;}
.y2e5{bottom:187.692800pt;}
.y36a{bottom:187.767867pt;}
.y118{bottom:188.144667pt;}
.y116{bottom:188.146000pt;}
.y7d{bottom:188.751333pt;}
.y4f{bottom:188.824667pt;}
.y4d{bottom:188.826000pt;}
.ye0{bottom:189.052667pt;}
.y2f{bottom:190.942000pt;}
.y327{bottom:192.681200pt;}
.y117{bottom:194.116667pt;}
.y4e{bottom:194.796667pt;}
.y274{bottom:196.535333pt;}
.y30{bottom:196.838000pt;}
.y275{bottom:198.274000pt;}
.ya5{bottom:200.014000pt;}
.y1b3{bottom:200.015333pt;}
.y189{bottom:200.164667pt;}
.y154{bottom:200.392667pt;}
.y2e4{bottom:201.222800pt;}
.y369{bottom:201.297867pt;}
.y1fe{bottom:202.658000pt;}
.y115{bottom:202.962000pt;}
.y7c{bottom:203.642000pt;}
.ydf{bottom:203.943333pt;}
.y4c{bottom:204.246000pt;}
.y326{bottom:205.985600pt;}
.y2e{bottom:207.119333pt;}
.y1f1{bottom:211.729333pt;}
.y2e3{bottom:214.527200pt;}
.y368{bottom:214.602267pt;}
.ya4{bottom:214.678000pt;}
.y1b2{bottom:214.679333pt;}
.y188{bottom:214.828667pt;}
.y153{bottom:215.056667pt;}
.y273{bottom:216.415333pt;}
.y114{bottom:217.776667pt;}
.y7b{bottom:218.458000pt;}
.yde{bottom:218.834000pt;}
.ydc{bottom:218.835333pt;}
.y4b{bottom:219.590000pt;}
.y49{bottom:219.591333pt;}
.y325{bottom:220.120400pt;}
.y2d{bottom:223.371333pt;}
.ydd{bottom:224.731333pt;}
.y4a{bottom:225.562000pt;}
.y2e2{bottom:227.981600pt;}
.y367{bottom:228.133467pt;}
.ya3{bottom:229.343333pt;}
.y187{bottom:229.492667pt;}
.y152{bottom:229.722000pt;}
.y113{bottom:232.518000pt;}
.y7a{bottom:233.348667pt;}
.ydb{bottom:233.727333pt;}
.y324{bottom:234.180800pt;}
.y48{bottom:235.012667pt;}
.y2c{bottom:239.622000pt;}
.y2a{bottom:239.623333pt;}
.y2e1{bottom:241.437200pt;}
.y366{bottom:241.587867pt;}
.ya2{bottom:244.007333pt;}
.y185{bottom:244.158000pt;}
.y151{bottom:244.462000pt;}
.y2b{bottom:245.518000pt;}
.y272{bottom:247.106267pt;}
.y112{bottom:247.334000pt;}
.y79{bottom:248.164667pt;}
.y323{bottom:248.315600pt;}
.yda{bottom:248.618000pt;}
.y186{bottom:250.128667pt;}
.y47{bottom:250.432667pt;}
.y2e0{bottom:254.817200pt;}
.y365{bottom:254.967867pt;}
.y213{bottom:255.268533pt;}
.y29{bottom:255.799333pt;}
.ya0{bottom:258.671333pt;}
.y184{bottom:258.898000pt;}
.y150{bottom:259.126000pt;}
.y271{bottom:260.335067pt;}
.y322{bottom:261.620000pt;}
.y111{bottom:262.148667pt;}
.y78{bottom:263.055333pt;}
.y76{bottom:263.056667pt;}
.yd9{bottom:263.508667pt;}
.ya1{bottom:264.567333pt;}
.y45{bottom:265.776667pt;}
.y2df{bottom:268.271600pt;}
.y364{bottom:268.422267pt;}
.y212{bottom:268.648533pt;}
.y77{bottom:268.951333pt;}
.y46{bottom:271.747333pt;}
.y28{bottom:272.051333pt;}
.y183{bottom:273.562000pt;}
.y270{bottom:273.563867pt;}
.y14f{bottom:273.866000pt;}
.y9f{bottom:274.620667pt;}
.y9d{bottom:274.622000pt;}
.y321{bottom:275.679200pt;}
.y110{bottom:276.964667pt;}
.y2a9{bottom:277.795333pt;}
.y75{bottom:277.872667pt;}
.yd8{bottom:278.400667pt;}
.y44{bottom:281.196667pt;}
.y42{bottom:281.198000pt;}
.y2de{bottom:281.727200pt;}
.y211{bottom:281.952933pt;}
.y363{bottom:281.953467pt;}
.y9e{bottom:282.104000pt;}
.y1f0{bottom:283.541600pt;}
.y26f{bottom:286.715867pt;}
.y43{bottom:287.092667pt;}
.y27{bottom:288.303333pt;}
.y14e{bottom:288.606000pt;}
.y182{bottom:289.511333pt;}
.y180{bottom:289.512667pt;}
.y9b{bottom:289.663333pt;}
.y320{bottom:289.815200pt;}
.y10f{bottom:291.779333pt;}
.y74{bottom:292.763333pt;}
.yd7{bottom:293.291333pt;}
.y2dd{bottom:295.030400pt;}
.y210{bottom:295.256133pt;}
.y362{bottom:295.409067pt;}
.y9c{bottom:295.634000pt;}
.y41{bottom:296.542000pt;}
.y1ef{bottom:296.769200pt;}
.y181{bottom:296.994667pt;}
.y26e{bottom:299.944667pt;}
.y14d{bottom:303.271333pt;}
.y31f{bottom:303.875600pt;}
.y9a{bottom:304.328667pt;}
.y26{bottom:304.554000pt;}
.y24{bottom:304.555333pt;}
.y17f{bottom:304.631333pt;}
.y2a8{bottom:306.444667pt;}
.y10e{bottom:306.520667pt;}
.y73{bottom:307.655333pt;}
.y2dc{bottom:308.486000pt;}
.y20f{bottom:308.636133pt;}
.y361{bottom:308.787867pt;}
.yd5{bottom:309.467333pt;}
.y1ee{bottom:309.922400pt;}
.y25{bottom:310.450000pt;}
.y40{bottom:311.963333pt;}
.y26d{bottom:313.096667pt;}
.yd6{bottom:316.950667pt;}
.y31e{bottom:317.178800pt;}
.y5d{bottom:317.506667pt;}
.y14c{bottom:318.011333pt;}
.y99{bottom:318.992667pt;}
.y17e{bottom:319.295333pt;}
.y23{bottom:320.731333pt;}
.y10d{bottom:321.335333pt;}
.y2a7{bottom:321.562000pt;}
.y20e{bottom:321.939333pt;}
.y2db{bottom:322.017200pt;}
.y360{bottom:322.243467pt;}
.y72{bottom:322.470000pt;}
.y1ed{bottom:323.150533pt;}
.yd4{bottom:324.812667pt;}
.y26c{bottom:326.325467pt;}
.y3f{bottom:327.383333pt;}
.y31d{bottom:331.314800pt;}
.y5c{bottom:332.333333pt;}
.y14b{bottom:332.675333pt;}
.y98{bottom:333.656667pt;}
.y17d{bottom:333.960667pt;}
.y2da{bottom:335.471600pt;}
.y35f{bottom:335.773467pt;}
.y10c{bottom:336.151333pt;}
.y1ec{bottom:336.303733pt;}
.y70{bottom:338.646000pt;}
.y26b{bottom:339.554267pt;}
.y2a6{bottom:339.630000pt;}
.yd3{bottom:339.703333pt;}
.y22{bottom:342.198000pt;}
.y3e{bottom:342.727333pt;}
.y31c{bottom:345.374000pt;}
.y71{bottom:346.129333pt;}
.y14a{bottom:347.415333pt;}
.y97{bottom:348.322000pt;}
.y17c{bottom:348.700667pt;}
.y2d9{bottom:348.776000pt;}
.y35e{bottom:349.077867pt;}
.y1eb{bottom:349.531333pt;}
.y10b{bottom:352.251333pt;}
.y109{bottom:352.252667pt;}
.y26a{bottom:352.706267pt;}
.y6f{bottom:353.915333pt;}
.y2a5{bottom:354.294000pt;}
.yd1{bottom:354.444667pt;}
.y31b{bottom:358.678400pt;}
.y10a{bottom:359.736000pt;}
.yd2{bottom:360.415333pt;}
.y149{bottom:362.079333pt;}
.y2d8{bottom:362.230400pt;}
.y35d{bottom:362.609067pt;}
.y1ea{bottom:362.760267pt;}
.y96{bottom:363.062000pt;}
.y17b{bottom:363.364667pt;}
.y269{bottom:365.935067pt;}
.y108{bottom:367.371333pt;}
.y6e{bottom:368.731333pt;}
.y2a4{bottom:368.958000pt;}
.yd0{bottom:369.335333pt;}
.y31a{bottom:372.813200pt;}
.y2d7{bottom:375.686000pt;}
.y1e9{bottom:375.912267pt;}
.y35c{bottom:376.063467pt;}
.y148{bottom:376.819333pt;}
.y146{bottom:376.820667pt;}
.y95{bottom:377.726000pt;}
.y17a{bottom:378.028667pt;}
.y265{bottom:380.296133pt;}
.y268{bottom:380.296667pt;}
.y106{bottom:382.186000pt;}
.y147{bottom:382.715333pt;}
.y6d{bottom:383.622000pt;}
.y2a3{bottom:383.623333pt;}
.ycf{bottom:384.226000pt;}
.ycd{bottom:384.227333pt;}
.y319{bottom:386.873600pt;}
.y107{bottom:388.082000pt;}
.y266{bottom:388.157333pt;}
.y21{bottom:388.763333pt;}
.y2d6{bottom:389.066000pt;}
.y1e8{bottom:389.141067pt;}
.y35b{bottom:389.443467pt;}
.yce{bottom:390.198000pt;}
.y94{bottom:392.390000pt;}
.y92{bottom:392.392667pt;}
.y179{bottom:392.694000pt;}
.y144{bottom:392.844667pt;}
.y264{bottom:393.751733pt;}
.y105{bottom:397.002000pt;}
.y93{bottom:398.286000pt;}
.y2a2{bottom:398.287333pt;}
.y6b{bottom:398.363333pt;}
.ycc{bottom:399.118000pt;}
.yca{bottom:399.119333pt;}
.y145{bottom:400.252000pt;}
.y318{bottom:400.252400pt;}
.y1e7{bottom:402.368667pt;}
.y2d5{bottom:402.520400pt;}
.y35a{bottom:402.897867pt;}
.y6c{bottom:404.334000pt;}
.ycb{bottom:405.090000pt;}
.y263{bottom:406.979867pt;}
.y91{bottom:407.056667pt;}
.y20{bottom:407.434000pt;}
.y143{bottom:407.887333pt;}
.y178{bottom:408.718000pt;}
.y176{bottom:408.719333pt;}
.y104{bottom:411.816667pt;}
.y2a1{bottom:412.951333pt;}
.y69{bottom:413.254000pt;}
.yc9{bottom:414.010000pt;}
.y317{bottom:414.312800pt;}
.y1e6{bottom:415.521333pt;}
.y2d4{bottom:415.976000pt;}
.y177{bottom:416.125333pt;}
.y359{bottom:416.429067pt;}
.y6a{bottom:419.150000pt;}
.y262{bottom:420.208667pt;}
.y90{bottom:421.720667pt;}
.y1f{bottom:422.099333pt;}
.y175{bottom:423.762000pt;}
.y142{bottom:423.911333pt;}
.y103{bottom:426.556667pt;}
.y101{bottom:426.558000pt;}
.y316{bottom:427.617200pt;}
.y2a0{bottom:428.068667pt;}
.y68{bottom:428.070000pt;}
.y1e5{bottom:428.748933pt;}
.yc8{bottom:428.900667pt;}
.yc6{bottom:428.903333pt;}
.y2d3{bottom:429.354800pt;}
.y358{bottom:429.884667pt;}
.y140{bottom:431.320000pt;}
.y102{bottom:432.528667pt;}
.y261{bottom:433.360667pt;}
.y25f{bottom:433.361600pt;}
.yc7{bottom:434.872667pt;}
.y8f{bottom:436.386000pt;}
.y1e{bottom:436.763333pt;}
.y260{bottom:438.727333pt;}
.y174{bottom:439.786000pt;}
.y172{bottom:439.787333pt;}
.y13f{bottom:439.862000pt;}
.y100{bottom:441.374000pt;}
.y315{bottom:441.752000pt;}
.y1e4{bottom:441.902133pt;}
.y2d2{bottom:442.810400pt;}
.y66{bottom:442.960667pt;}
.y357{bottom:443.263467pt;}
.yc5{bottom:443.794000pt;}
.y25e{bottom:446.589200pt;}
.y173{bottom:447.193333pt;}
.y67{bottom:448.856667pt;}
.y8e{bottom:451.050000pt;}
.y1d{bottom:451.427333pt;}
.y13e{bottom:454.526000pt;}
.y171{bottom:454.828667pt;}
.y314{bottom:455.056400pt;}
.y1e3{bottom:455.130933pt;}
.y2d1{bottom:456.266000pt;}
.y356{bottom:456.719067pt;}
.y29f{bottom:456.795333pt;}
.yfe{bottom:457.474000pt;}
.y65{bottom:457.852667pt;}
.yc4{bottom:458.686000pt;}
.y25d{bottom:459.742400pt;}
.yff{bottom:464.957333pt;}
.y8d{bottom:465.714000pt;}
.y1b{bottom:467.376667pt;}
.y1e2{bottom:468.358533pt;}
.y313{bottom:469.115600pt;}
.y13d{bottom:469.266000pt;}
.y170{bottom:469.568667pt;}
.y2d0{bottom:469.720400pt;}
.y355{bottom:470.249067pt;}
.y29e{bottom:471.459333pt;}
.y64{bottom:472.667333pt;}
.yfd{bottom:472.668667pt;}
.y25c{bottom:472.970000pt;}
.y25a{bottom:472.970400pt;}
.yc3{bottom:473.576667pt;}
.y1c{bottom:474.860000pt;}
.y25b{bottom:478.336667pt;}
.y1e1{bottom:481.511733pt;}
.y1a{bottom:482.419333pt;}
.y312{bottom:482.495600pt;}
.y2cf{bottom:483.024800pt;}
.y354{bottom:483.553467pt;}
.y13c{bottom:483.931333pt;}
.y16f{bottom:485.518000pt;}
.y16d{bottom:485.519333pt;}
.y8c{bottom:485.820667pt;}
.y258{bottom:486.198000pt;}
.yfc{bottom:487.483333pt;}
.y63{bottom:487.559333pt;}
.yc2{bottom:488.467333pt;}
.y29d{bottom:491.415333pt;}
.y259{bottom:491.490000pt;}
.y16e{bottom:493.001333pt;}
.y1e0{bottom:494.739333pt;}
.y1de{bottom:494.739600pt;}
.y2ce{bottom:496.554800pt;}
.y19{bottom:497.083333pt;}
.y353{bottom:497.084667pt;}
.y257{bottom:499.351333pt;}
.y255{bottom:499.351600pt;}
.y13b{bottom:499.955333pt;}
.y139{bottom:499.956667pt;}
.y1df{bottom:500.031333pt;}
.y16c{bottom:500.636667pt;}
.yfb{bottom:502.299333pt;}
.y62{bottom:502.374000pt;}
.yc1{bottom:503.359333pt;}
.y256{bottom:504.718000pt;}
.y29c{bottom:506.079333pt;}
.y13a{bottom:507.364000pt;}
.y1dd{bottom:507.968400pt;}
.y2cd{bottom:509.859200pt;}
.y352{bottom:510.539067pt;}
.y311{bottom:510.690800pt;}
.y18{bottom:511.823333pt;}
.y254{bottom:512.580400pt;}
.y138{bottom:515.075333pt;}
.y16a{bottom:516.586000pt;}
.y60{bottom:517.266000pt;}
.y8b{bottom:517.640000pt;}
.yc0{bottom:518.250000pt;}
.yfa{bottom:518.399333pt;}
.yf8{bottom:518.400667pt;}
.y29b{bottom:520.819333pt;}
.y1dc{bottom:521.121600pt;}
.y61{bottom:523.162000pt;}
.y2cc{bottom:523.314800pt;}
.y16b{bottom:524.069333pt;}
.y351{bottom:524.070267pt;}
.y310{bottom:524.750000pt;}
.y253{bottom:525.809200pt;}
.yf9{bottom:525.884000pt;}
.y17{bottom:527.772667pt;}
.y14{bottom:527.775333pt;}
.y136{bottom:531.099333pt;}
.y169{bottom:531.704667pt;}
.y5f{bottom:532.082000pt;}
.y8a{bottom:532.305333pt;}
.ybf{bottom:533.142000pt;}
.yf7{bottom:533.594000pt;}
.y1db{bottom:534.349200pt;}
.y15{bottom:535.181333pt;}
.y29a{bottom:535.483333pt;}
.y2cb{bottom:536.769200pt;}
.y350{bottom:537.373467pt;}
.y30f{bottom:538.054400pt;}
.y137{bottom:538.506667pt;}
.y252{bottom:538.961200pt;}
.y13{bottom:542.818000pt;}
.y135{bottom:546.142000pt;}
.y168{bottom:546.367333pt;}
.y89{bottom:546.969333pt;}
.y5e{bottom:546.972667pt;}
.y1da{bottom:547.502400pt;}
.ybe{bottom:548.032667pt;}
.yf5{bottom:548.335333pt;}
.y299{bottom:550.148667pt;}
.y2ca{bottom:550.149200pt;}
.y34f{bottom:550.904667pt;}
.y251{bottom:552.190000pt;}
.y30e{bottom:552.190400pt;}
.yf6{bottom:554.230000pt;}
.y393{bottom:554.609067pt;}
.y12{bottom:557.482000pt;}
.y1d9{bottom:560.730000pt;}
.y1d7{bottom:560.730933pt;}
.y134{bottom:560.882000pt;}
.y167{bottom:561.031333pt;}
.ybd{bottom:562.924667pt;}
.yf4{bottom:563.151333pt;}
.y2c9{bottom:563.603600pt;}
.y34e{bottom:564.360267pt;}
.y298{bottom:564.814000pt;}
.y250{bottom:565.342000pt;}
.y24e{bottom:565.342400pt;}
.y1d8{bottom:566.098000pt;}
.y30d{bottom:566.249600pt;}
.y392{bottom:567.987867pt;}
.y24f{bottom:570.708667pt;}
.y11{bottom:572.146000pt;}
.y1d6{bottom:573.958533pt;}
.y133{bottom:575.546000pt;}
.yb7{bottom:575.623200pt;}
.y166{bottom:575.696667pt;}
.y2c8{bottom:577.059200pt;}
.ybc{bottom:577.815333pt;}
.y34d{bottom:577.890267pt;}
.yf3{bottom:577.966000pt;}
.y24d{bottom:578.570800pt;}
.y297{bottom:579.478000pt;}
.y30c{bottom:579.554000pt;}
.y391{bottom:581.292267pt;}
.y10{bottom:586.811333pt;}
.y1d5{bottom:587.111733pt;}
.yb6{bottom:589.002800pt;}
.y132{bottom:590.287333pt;}
.y165{bottom:590.436667pt;}
.y2c7{bottom:590.514800pt;}
.y34c{bottom:591.421467pt;}
.y24c{bottom:592.177600pt;}
.yf1{bottom:592.701200pt;}
.ybb{bottom:592.706000pt;}
.y30b{bottom:593.688800pt;}
.y296{bottom:594.142000pt;}
.y390{bottom:594.671067pt;}
.yf2{bottom:598.676667pt;}
.y1d4{bottom:600.339867pt;}
.yf{bottom:601.475333pt;}
.yb5{bottom:602.306267pt;}
.y2c6{bottom:603.818000pt;}
.y34b{bottom:604.875867pt;}
.y131{bottom:604.951333pt;}
.y164{bottom:605.100667pt;}
.y24b{bottom:605.405200pt;}
.y30a{bottom:607.749200pt;}
.y38f{bottom:607.975467pt;}
.y295{bottom:608.806000pt;}
.y1b1{bottom:612.963333pt;}
.y1d3{bottom:613.568667pt;}
.yb4{bottom:615.609467pt;}
.ye{bottom:616.139333pt;}
.y2c5{bottom:617.349200pt;}
.y34a{bottom:618.180267pt;}
.y24a{bottom:618.634000pt;}
.y130{bottom:619.691333pt;}
.y163{bottom:619.764667pt;}
.y309{bottom:621.052400pt;}
.y38e{bottom:621.279867pt;}
.y128{bottom:621.430400pt;}
.y294{bottom:623.471333pt;}
.y1d2{bottom:626.720667pt;}
.y1b0{bottom:628.912667pt;}
.y1ae{bottom:628.914000pt;}
.yb3{bottom:628.989467pt;}
.y2c4{bottom:630.803600pt;}
.yd{bottom:630.804667pt;}
.y349{bottom:631.711467pt;}
.y249{bottom:631.786000pt;}
.y12f{bottom:634.355333pt;}
.y12d{bottom:634.356667pt;}
.y162{bottom:634.430000pt;}
.y38d{bottom:634.658667pt;}
.y127{bottom:634.734800pt;}
.y308{bottom:635.188400pt;}
.y1af{bottom:636.397333pt;}
.y293{bottom:638.135333pt;}
.y12e{bottom:640.327333pt;}
.yb2{bottom:642.292667pt;}
.y1d1{bottom:643.955333pt;}
.y1ad{bottom:643.956667pt;}
.y2c3{bottom:644.108000pt;}
.y248{bottom:645.014800pt;}
.y348{bottom:645.241467pt;}
.yc{bottom:645.468667pt;}
.y38c{bottom:647.963067pt;}
.y126{bottom:648.038000pt;}
.y161{bottom:649.094000pt;}
.y12c{bottom:649.096667pt;}
.y307{bottom:649.248800pt;}
.y292{bottom:652.799333pt;}
.y2c2{bottom:657.563600pt;}
.y247{bottom:658.243600pt;}
.y1ac{bottom:658.620667pt;}
.y347{bottom:658.697067pt;}
.yb{bottom:660.132667pt;}
.y38b{bottom:661.341867pt;}
.y306{bottom:663.383600pt;}
.y12b{bottom:663.760667pt;}
.y160{bottom:663.834000pt;}
.y291{bottom:667.918000pt;}
.y2c1{bottom:670.942400pt;}
.y1d0{bottom:671.322000pt;}
.y246{bottom:671.395600pt;}
.y346{bottom:672.227067pt;}
.y1ab{bottom:673.286000pt;}
.y38a{bottom:674.646267pt;}
.ya{bottom:674.796667pt;}
.y305{bottom:676.688000pt;}
.y15f{bottom:678.499333pt;}
.y129{bottom:678.500667pt;}
.y12a{bottom:684.396667pt;}
.y2c0{bottom:684.398000pt;}
.y245{bottom:684.624400pt;}
.y345{bottom:685.682667pt;}
.y1cf{bottom:685.987333pt;}
.y1aa{bottom:687.950000pt;}
.y389{bottom:687.950667pt;}
.y9{bottom:689.460667pt;}
.y304{bottom:690.747200pt;}
.y290{bottom:692.636667pt;}
.y244{bottom:697.777600pt;}
.y2bf{bottom:697.852400pt;}
.y344{bottom:699.062667pt;}
.y1ce{bottom:700.651333pt;}
.y388{bottom:701.329467pt;}
.y1a9{bottom:702.615333pt;}
.y303{bottom:704.883200pt;}
.y196{bottom:707.149467pt;}
.y28f{bottom:707.300667pt;}
.y243{bottom:711.005200pt;}
.y2be{bottom:711.156800pt;}
.y343{bottom:712.517067pt;}
.y387{bottom:714.633867pt;}
.y1cd{bottom:715.315333pt;}
.y1a8{bottom:717.279333pt;}
.y302{bottom:718.186400pt;}
.y195{bottom:720.453867pt;}
.y7{bottom:720.831333pt;}
.y28e{bottom:721.966000pt;}
.y8{bottom:722.646000pt;}
.y242{bottom:724.234000pt;}
.y2bd{bottom:724.688000pt;}
.y342{bottom:726.048267pt;}
.y386{bottom:728.012667pt;}
.y1cc{bottom:729.980667pt;}
.y1a7{bottom:731.944667pt;}
.y301{bottom:732.246800pt;}
.y194{bottom:733.832667pt;}
.y28d{bottom:736.630000pt;}
.y241{bottom:737.386400pt;}
.y2bc{bottom:738.142400pt;}
.y341{bottom:739.502667pt;}
.y385{bottom:741.317067pt;}
.y1cb{bottom:744.644667pt;}
.y300{bottom:746.381600pt;}
.y1a6{bottom:746.608667pt;}
.y240{bottom:750.614533pt;}
.y28c{bottom:751.295333pt;}
.y2bb{bottom:751.446800pt;}
.y340{bottom:752.882667pt;}
.y384{bottom:754.621467pt;}
.y1ca{bottom:759.308667pt;}
.y2ff{bottom:759.686000pt;}
.y1a5{bottom:761.348667pt;}
.y23f{bottom:763.843333pt;}
.y2ba{bottom:764.901200pt;}
.y28b{bottom:765.959333pt;}
.y33f{bottom:766.338267pt;}
.y383{bottom:768.000267pt;}
.y6{bottom:768.680667pt;}
.y2fe{bottom:773.746400pt;}
.y1c9{bottom:773.974000pt;}
.y1a4{bottom:776.012667pt;}
.y23e{bottom:776.995733pt;}
.y2b9{bottom:778.356800pt;}
.y33e{bottom:779.868267pt;}
.y28a{bottom:780.624667pt;}
.y382{bottom:781.304667pt;}
.y2fd{bottom:787.881200pt;}
.y1c8{bottom:788.638000pt;}
.y23d{bottom:790.224667pt;}
.y1a3{bottom:790.678000pt;}
.y2b8{bottom:791.736800pt;}
.y33d{bottom:793.172667pt;}
.y381{bottom:794.684667pt;}
.y289{bottom:795.288667pt;}
.y2fc{bottom:801.185600pt;}
.y5{bottom:801.336410pt;}
.y1c7{bottom:803.302000pt;}
.y23c{bottom:803.376667pt;}
.y2b7{bottom:805.191200pt;}
.y1a2{bottom:805.342000pt;}
.y33c{bottom:806.702667pt;}
.y380{bottom:807.987867pt;}
.y288{bottom:809.954000pt;}
.y2fb{bottom:815.320400pt;}
.y23b{bottom:816.605067pt;}
.y1c6{bottom:817.967333pt;}
.y2b6{bottom:818.646800pt;}
.y4{bottom:820.006000pt;}
.y1a1{bottom:820.007333pt;}
.y33b{bottom:820.158267pt;}
.y37f{bottom:821.292267pt;}
.y287{bottom:824.618000pt;}
.y2fa{bottom:828.624800pt;}
.y23a{bottom:829.834000pt;}
.y2b5{bottom:831.950000pt;}
.y1c5{bottom:832.631333pt;}
.y33a{bottom:833.538267pt;}
.y37e{bottom:834.671067pt;}
.y1a0{bottom:834.671333pt;}
.y286{bottom:839.283333pt;}
.y2f9{bottom:842.684000pt;}
.y239{bottom:842.986800pt;}
.y2b4{bottom:845.481200pt;}
.y339{bottom:846.992667pt;}
.y1c4{bottom:847.295333pt;}
.y37d{bottom:847.975467pt;}
.y3{bottom:847.976933pt;}
.y19f{bottom:849.335333pt;}
.y285{bottom:853.947333pt;}
.y2f8{bottom:856.820000pt;}
.y2b3{bottom:858.936800pt;}
.y338{bottom:860.523867pt;}
.y37c{bottom:861.279867pt;}
.y1c3{bottom:861.960667pt;}
.y19e{bottom:864.000667pt;}
.y238{bottom:866.646000pt;}
.y284{bottom:868.611333pt;}
.y2f7{bottom:870.124400pt;}
.y2b2{bottom:872.240000pt;}
.y337{bottom:873.827067pt;}
.y37b{bottom:874.658667pt;}
.y223{bottom:875.641333pt;}
.y1c2{bottom:876.624667pt;}
.y19d{bottom:878.664667pt;}
.y2{bottom:881.310000pt;}
.y283{bottom:883.275333pt;}
.y2f6{bottom:884.183600pt;}
.y2b1{bottom:885.695600pt;}
.y336{bottom:887.358267pt;}
.y37a{bottom:887.963067pt;}
.y1c1{bottom:891.288667pt;}
.y19c{bottom:893.330000pt;}
.y2f5{bottom:898.319600pt;}
.y282{bottom:898.394000pt;}
.y2b0{bottom:899.150000pt;}
.y335{bottom:900.812667pt;}
.y379{bottom:901.341867pt;}
.y19b{bottom:907.994000pt;}
.y1c0{bottom:909.959333pt;}
.y2f4{bottom:911.621600pt;}
.y334{bottom:914.192667pt;}
.y378{bottom:914.646267pt;}
.y281{bottom:916.914000pt;}
.y2af{bottom:918.500667pt;}
.y222{bottom:921.675333pt;}
.y19a{bottom:922.658000pt;}
.y2f3{bottom:925.757600pt;}
.y333{bottom:927.648267pt;}
.y377{bottom:927.950667pt;}
.y215{bottom:930.670667pt;}
.y56{bottom:933.996667pt;}
.y1bf{bottom:937.319333pt;}
.y199{bottom:937.323333pt;}
.y2f2{bottom:939.816800pt;}
.y332{bottom:940.951467pt;}
.y376{bottom:941.329467pt;}
.y280{bottom:950.772667pt;}
.y2ae{bottom:951.836667pt;}
.y1be{bottom:951.983333pt;}
.y198{bottom:951.987333pt;}
.y2f1{bottom:953.877200pt;}
.y331{bottom:954.482667pt;}
.y375{bottom:954.633867pt;}
.y27f{bottom:965.436667pt;}
.y5b{bottom:966.533333pt;}
.y1bd{bottom:966.648667pt;}
.y197{bottom:966.651333pt;}
.y2f0{bottom:968.012000pt;}
.y214{bottom:968.012667pt;}
.y55{bottom:975.950000pt;}
.yb8{bottom:993.335333pt;}
.h38{height:13.379467pt;}
.h9{height:14.891333pt;}
.h1a{height:15.722800pt;}
.h33{height:18.528000pt;}
.h36{height:20.764800pt;}
.h39{height:21.840000pt;}
.h12{height:22.720000pt;}
.h13{height:23.072000pt;}
.h11{height:23.856000pt;}
.ha{height:24.232000pt;}
.h22{height:24.924676pt;}
.h2a{height:25.468800pt;}
.h2d{height:26.078800pt;}
.h2b{height:26.256000pt;}
.hd{height:27.694593pt;}
.h1c{height:28.258240pt;}
.h19{height:28.839615pt;}
.h3b{height:29.576000pt;}
.h35{height:29.664000pt;}
.h27{height:29.712000pt;}
.h10{height:30.292955pt;}
.h7{height:30.319761pt;}
.h2e{height:32.832000pt;}
.h5{height:34.608000pt;}
.h30{height:35.149600pt;}
.h18{height:36.336000pt;}
.h29{height:36.384000pt;}
.h3c{height:36.530667pt;}
.h3d{height:37.333333pt;}
.h37{height:37.386667pt;}
.he{height:37.392000pt;}
.h2c{height:37.395200pt;}
.h34{height:37.492933pt;}
.h3f{height:38.026667pt;}
.h17{height:38.453333pt;}
.h14{height:38.937500pt;}
.h32{height:40.176000pt;}
.h8{height:40.373333pt;}
.hb{height:40.376000pt;}
.h1b{height:40.386240pt;}
.h3e{height:41.541333pt;}
.h20{height:41.545600pt;}
.hc{height:41.546667pt;}
.h16{height:41.875000pt;}
.h24{height:43.793142pt;}
.h23{height:43.794742pt;}
.h25{height:43.796342pt;}
.h21{height:43.801676pt;}
.h40{height:44.635200pt;}
.h3a{height:45.472567pt;}
.h1f{height:48.395851pt;}
.h1d{height:48.694518pt;}
.h1e{height:48.705185pt;}
.h4{height:54.010251pt;}
.h6{height:57.656250pt;}
.h28{height:69.648000pt;}
.h31{height:69.696000pt;}
.h26{height:73.096000pt;}
.h3{height:96.132564pt;}
.h2f{height:103.584000pt;}
.hf{height:122.227733pt;}
.h2{height:1043.981333pt;}
.h15{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w9{width:11.792133pt;}
.w3{width:13.077200pt;}
.w4{width:21.694533pt;}
.w7{width:138.406667pt;}
.w5{width:175.748000pt;}
.w8{width:178.696000pt;}
.w6{width:219.817333pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x65{left:-1.118880pt;}
.x0{left:0.000000pt;}
.x7b{left:5.443200pt;}
.x8f{left:7.996800pt;}
.x7{left:8.956520pt;}
.x7a{left:10.560000pt;}
.x1{left:11.943333pt;}
.x66{left:13.281000pt;}
.x7e{left:21.276000pt;}
.x27{left:24.000000pt;}
.x78{left:28.803600pt;}
.x2{left:56.692800pt;}
.x81{left:62.076000pt;}
.x2d{left:68.636133pt;}
.x41{left:69.996800pt;}
.x7d{left:71.676000pt;}
.x84{left:76.956000pt;}
.x29{left:82.469200pt;}
.x30{left:84.283333pt;}
.x3{left:88.289733pt;}
.x85{left:94.236000pt;}
.x76{left:95.676000pt;}
.x31{left:97.284933pt;}
.x13{left:101.215600pt;}
.x7c{left:106.243200pt;}
.x82{left:107.839200pt;}
.x44{left:110.740000pt;}
.x2a{left:123.136667pt;}
.x40{left:128.352667pt;}
.x60{left:129.864533pt;}
.x61{left:131.678000pt;}
.x14{left:133.492667pt;}
.xb{left:136.894000pt;}
.x72{left:141.444000pt;}
.x71{left:147.360000pt;}
.x73{left:151.838400pt;}
.x74{left:152.964000pt;}
.x32{left:155.489333pt;}
.xc{left:157.152667pt;}
.x80{left:159.840000pt;}
.x2e{left:161.385333pt;}
.x2f{left:163.199333pt;}
.x83{left:164.959200pt;}
.x86{left:169.764000pt;}
.x6{left:171.666667pt;}
.x8{left:173.480667pt;}
.x87{left:174.564000pt;}
.x77{left:178.080000pt;}
.x4b{left:179.754000pt;}
.x67{left:183.231333pt;}
.x49{left:184.743333pt;}
.x5d{left:186.482000pt;}
.x15{left:187.918000pt;}
.x2b{left:189.203333pt;}
.x79{left:191.360400pt;}
.x4c{left:192.831333pt;}
.x68{left:197.594000pt;}
.x4a{left:199.634000pt;}
.x42{left:206.210667pt;}
.x43{left:208.024667pt;}
.x5f{left:211.275333pt;}
.x62{left:213.997333pt;}
.x5e{left:215.508667pt;}
.x88{left:220.951333pt;}
.x8a{left:230.778000pt;}
.x47{left:231.836000pt;}
.x48{left:233.726000pt;}
.xd{left:236.523333pt;}
.x22{left:237.656667pt;}
.x89{left:244.611333pt;}
.xe{left:259.654000pt;}
.x23{left:265.624467pt;}
.x3d{left:266.986000pt;}
.x3e{left:280.290000pt;}
.xf{left:283.691333pt;}
.x6d{left:292.157333pt;}
.x3f{left:293.518000pt;}
.x11{left:297.222000pt;}
.x2c{left:302.815333pt;}
.x10{left:309.846000pt;}
.x63{left:316.044000pt;}
.x64{left:317.858000pt;}
.x12{left:327.760667pt;}
.x8b{left:332.900667pt;}
.x45{left:335.698000pt;}
.x8d{left:342.803333pt;}
.x8c{left:345.599333pt;}
.x3c{left:349.152667pt;}
.x28{left:350.739333pt;}
.x8e{left:356.484667pt;}
.x7f{left:361.247333pt;}
.x46{left:362.532667pt;}
.x3b{left:389.820667pt;}
.x16{left:408.643333pt;}
.x92{left:414.008933pt;}
.x9{left:419.301333pt;}
.xa{left:421.115333pt;}
.x33{left:422.022000pt;}
.x91{left:432.679333pt;}
.x70{left:436.610667pt;}
.x4{left:437.971333pt;}
.x90{left:440.690133pt;}
.x54{left:442.734000pt;}
.x17{left:446.739333pt;}
.x19{left:454.979333pt;}
.x1f{left:457.700667pt;}
.x6e{left:460.572667pt;}
.x57{left:469.416667pt;}
.x18{left:470.928667pt;}
.x6f{left:472.516667pt;}
.x50{left:481.965333pt;}
.x35{left:485.442000pt;}
.x1a{left:487.256667pt;}
.x51{left:490.204667pt;}
.x20{left:494.135333pt;}
.x58{left:495.118000pt;}
.x4f{left:496.327333pt;}
.x1d{left:519.155333pt;}
.x36{left:531.174667pt;}
.x1e{left:536.088667pt;}
.x37{left:537.524667pt;}
.x26{left:540.933333pt;}
.x52{left:542.589333pt;}
.x6b{left:547.653333pt;}
.x53{left:549.694000pt;}
.x4d{left:551.886000pt;}
.x39{left:558.463333pt;}
.x59{left:560.428000pt;}
.x5a{left:562.318000pt;}
.x5{left:567.608667pt;}
.x4e{left:568.743333pt;}
.x55{left:573.959333pt;}
.x6c{left:576.454000pt;}
.x3a{left:577.360667pt;}
.x24{left:590.815333pt;}
.x69{left:607.898667pt;}
.x6a{left:609.714000pt;}
.x5b{left:615.155333pt;}
.x25{left:619.463333pt;}
.x5c{left:646.602000pt;}
.x56{left:668.069333pt;}
.x38{left:669.506000pt;}
.x1b{left:677.820667pt;}
.x34{left:690.142000pt;}
.x1c{left:707.906000pt;}
.x75{left:713.272667pt;}
.x21{left:749.102000pt;}
}




    .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; }
  