
    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_0bef58e4803df499b67a3a79.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_55eca345bad98d8fe5513e0f.woff2')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_eaf50debeea22da9984b0065.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.765000;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_70cca67e5dbeb82165e9f3ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026000;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_98833c56fe87db2f9ceacb4a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_e8b21a181648ab95d3ab02ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4e711a53b9f24001c0e0650e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_87fbf62a8057be050008d127.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c44fa955384482d363972fb6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e8cae64b2bf4f29ca3849e94.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8113119fdddb353d374f3866.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b2032e3db1e44be43af7a516.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fef2f5be3b5a3dcaa05c6ad9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6f9e5548228cfeeeab9d15c9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.874000;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_cb3fb49e49ccc72c7ca9daa6.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f72449f2cbc92202a3bd5af3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.716000;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_d15b8d83e9fcd61d4b75a162.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-37.080360px;}
.v8{vertical-align:-31.974000px;}
.v7{vertical-align:-21.090000px;}
.v6{vertical-align:-10.884600px;}
.vc{vertical-align:-7.824000px;}
.v3{vertical-align:-3.066000px;}
.v4{vertical-align:-2.040000px;}
.ve{vertical-align:-1.020000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.020000px;}
.v1{vertical-align:2.035784px;}
.v2{vertical-align:6.126000px;}
.v9{vertical-align:21.090000px;}
.va{vertical-align:23.488800px;}
.vb{vertical-align:47.961000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.010800px;}
.ls48{letter-spacing:0.035996px;}
.ls47{letter-spacing:0.042000px;}
.ls1e{letter-spacing:0.043200px;}
.lsc{letter-spacing:0.048600px;}
.ls4d{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.066000px;}
.ls6a{letter-spacing:0.070200px;}
.ls1c{letter-spacing:0.084000px;}
.ls1a{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.124891px;}
.lsa{letter-spacing:0.130891px;}
.ls78{letter-spacing:0.145800px;}
.ls38{letter-spacing:0.156000px;}
.ls36{letter-spacing:0.174000px;}
.ls56{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.222000px;}
.ls64{letter-spacing:0.253800px;}
.ls28{letter-spacing:0.257086px;}
.lsd{letter-spacing:0.270000px;}
.ls72{letter-spacing:0.275400px;}
.ls27{letter-spacing:0.294000px;}
.ls11{letter-spacing:0.437400px;}
.ls24{letter-spacing:0.450000px;}
.ls65{letter-spacing:0.475200px;}
.ls75{letter-spacing:0.518400px;}
.ls4{letter-spacing:0.535938px;}
.lse{letter-spacing:0.545400px;}
.ls69{letter-spacing:0.572400px;}
.ls50{letter-spacing:0.582000px;}
.ls0{letter-spacing:0.606000px;}
.ls4e{letter-spacing:0.612000px;}
.ls5a{letter-spacing:0.642600px;}
.ls3{letter-spacing:0.719917px;}
.ls29{letter-spacing:0.732000px;}
.ls6c{letter-spacing:0.745200px;}
.ls35{letter-spacing:0.804000px;}
.ls1{letter-spacing:0.810000px;}
.ls39{letter-spacing:0.858000px;}
.lsb{letter-spacing:0.982800px;}
.ls67{letter-spacing:1.020600px;}
.ls10{letter-spacing:1.026000px;}
.ls73{letter-spacing:1.036800px;}
.ls46{letter-spacing:1.086000px;}
.ls45{letter-spacing:1.098000px;}
.ls3d{letter-spacing:1.146000px;}
.ls61{letter-spacing:1.182600px;}
.ls6{letter-spacing:1.308000px;}
.ls68{letter-spacing:1.360800px;}
.ls5{letter-spacing:1.404000px;}
.ls2c{letter-spacing:1.428000px;}
.ls6d{letter-spacing:1.436400px;}
.ls7c{letter-spacing:1.463400px;}
.ls2e{letter-spacing:1.470000px;}
.ls7{letter-spacing:1.500000px;}
.ls5e{letter-spacing:1.533600px;}
.ls4c{letter-spacing:1.572000px;}
.ls53{letter-spacing:1.698000px;}
.ls4f{letter-spacing:1.770000px;}
.ls57{letter-spacing:3.330000px;}
.ls58{letter-spacing:5.526000px;}
.ls1d{letter-spacing:9.180163px;}
.ls14{letter-spacing:9.342000px;}
.ls76{letter-spacing:9.531000px;}
.ls18{letter-spacing:10.200600px;}
.ls13{letter-spacing:10.540800px;}
.ls41{letter-spacing:10.608000px;}
.ls7d{letter-spacing:10.891800px;}
.ls44{letter-spacing:11.286000px;}
.ls54{letter-spacing:11.628000px;}
.ls23{letter-spacing:11.738413px;}
.ls2d{letter-spacing:11.964000px;}
.ls16{letter-spacing:12.403800px;}
.ls3a{letter-spacing:12.700641px;}
.ls15{letter-spacing:12.744000px;}
.ls66{letter-spacing:12.933000px;}
.ls3b{letter-spacing:13.041437px;}
.ls63{letter-spacing:13.078800px;}
.ls62{letter-spacing:13.267800px;}
.ls32{letter-spacing:13.326000px;}
.ls3f{letter-spacing:13.662000px;}
.ls60{letter-spacing:14.094000px;}
.ls8{letter-spacing:14.229000px;}
.ls5f{letter-spacing:14.288400px;}
.ls59{letter-spacing:14.293800px;}
.ls70{letter-spacing:14.374800px;}
.ls6e{letter-spacing:14.434200px;}
.ls17{letter-spacing:14.445000px;}
.ls77{letter-spacing:14.628600px;}
.ls5d{letter-spacing:14.634000px;}
.ls43{letter-spacing:15.024000px;}
.ls2b{letter-spacing:15.078000px;}
.ls49{letter-spacing:15.084000px;}
.ls55{letter-spacing:15.660000px;}
.ls52{letter-spacing:15.702000px;}
.ls2a{letter-spacing:15.762000px;}
.ls6f{letter-spacing:15.994800px;}
.ls34{letter-spacing:16.044000px;}
.ls12{letter-spacing:16.702200px;}
.ls42{letter-spacing:16.728000px;}
.ls79{letter-spacing:17.015400px;}
.ls22{letter-spacing:17.042400px;}
.ls21{letter-spacing:18.542413px;}
.ls19{letter-spacing:18.592200px;}
.ls1b{letter-spacing:18.646196px;}
.ls4b{letter-spacing:18.762000px;}
.ls3c{letter-spacing:18.768000px;}
.ls30{letter-spacing:19.104000px;}
.ls31{letter-spacing:19.446000px;}
.ls4a{letter-spacing:19.452000px;}
.ls74{letter-spacing:22.658400px;}
.ls7a{letter-spacing:23.479200px;}
.ls7b{letter-spacing:23.619600px;}
.ls5b{letter-spacing:23.814000px;}
.ls71{letter-spacing:23.819400px;}
.ls3e{letter-spacing:23.874000px;}
.ls5c{letter-spacing:23.959800px;}
.ls6b{letter-spacing:24.499800px;}
.ls20{letter-spacing:24.526800px;}
.ls37{letter-spacing:24.606000px;}
.ls33{letter-spacing:25.572000px;}
.ls2f{letter-spacing:26.250000px;}
.ls25{letter-spacing:36.852000px;}
.ls51{letter-spacing:38.082000px;}
.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;}
}
.ws2b5{word-spacing:-41.958000px;}
.ws2{word-spacing:-38.609703px;}
.ws0{word-spacing:-34.098399px;}
.ws1{word-spacing:-33.945400px;}
.ws75{word-spacing:-33.102000px;}
.ws2a7{word-spacing:-29.700000px;}
.ws1b0{word-spacing:-29.676000px;}
.ws1c8{word-spacing:-29.423632px;}
.ws1b1{word-spacing:-28.080000px;}
.ws153{word-spacing:-27.162000px;}
.ws3d{word-spacing:-26.976000px;}
.ws25c{word-spacing:-26.850000px;}
.wsbf{word-spacing:-26.838000px;}
.ws141{word-spacing:-26.796000px;}
.ws28b{word-spacing:-26.784000px;}
.ws166{word-spacing:-26.664000px;}
.ws11e{word-spacing:-26.598000px;}
.wse3{word-spacing:-26.562600px;}
.ws237{word-spacing:-26.532000px;}
.ws295{word-spacing:-26.466000px;}
.ws22f{word-spacing:-26.454000px;}
.ws27e{word-spacing:-26.442000px;}
.ws230{word-spacing:-26.412000px;}
.ws22e{word-spacing:-26.328000px;}
.ws22d{word-spacing:-26.322000px;}
.ws236{word-spacing:-26.298000px;}
.ws24a{word-spacing:-26.250000px;}
.ws23c{word-spacing:-26.220000px;}
.ws5c{word-spacing:-26.190000px;}
.ws26c{word-spacing:-26.148000px;}
.ws39{word-spacing:-26.142000px;}
.ws279{word-spacing:-26.136000px;}
.ws174{word-spacing:-25.980000px;}
.ws192{word-spacing:-25.962000px;}
.ws1a7{word-spacing:-25.812000px;}
.ws21d{word-spacing:-25.806000px;}
.ws22a{word-spacing:-25.794000px;}
.ws275{word-spacing:-25.764000px;}
.ws249{word-spacing:-25.758000px;}
.ws263{word-spacing:-25.716000px;}
.ws175{word-spacing:-25.644000px;}
.ws158{word-spacing:-25.620000px;}
.ws13a{word-spacing:-25.614000px;}
.ws25a{word-spacing:-25.602000px;}
.ws1f{word-spacing:-25.590000px;}
.ws225{word-spacing:-25.554000px;}
.ws248{word-spacing:-25.542000px;}
.ws45{word-spacing:-25.535681px;}
.wsf5{word-spacing:-25.493400px;}
.ws167{word-spacing:-25.476000px;}
.ws14c{word-spacing:-25.470000px;}
.ws61{word-spacing:-25.458300px;}
.ws23a{word-spacing:-25.380000px;}
.ws1d0{word-spacing:-25.302000px;}
.ws180{word-spacing:-25.266000px;}
.ws11d{word-spacing:-25.263000px;}
.ws142{word-spacing:-25.212000px;}
.ws1a6{word-spacing:-25.194000px;}
.ws147{word-spacing:-25.182000px;}
.ws207{word-spacing:-25.170000px;}
.ws2a0{word-spacing:-25.162200px;}
.ws188{word-spacing:-25.092000px;}
.ws29a{word-spacing:-24.998400px;}
.ws5e{word-spacing:-24.966000px;}
.ws242{word-spacing:-24.960000px;}
.ws146{word-spacing:-24.936000px;}
.ws1cc{word-spacing:-24.834000px;}
.ws1a9{word-spacing:-24.756000px;}
.ws1b2{word-spacing:-24.696000px;}
.ws12c{word-spacing:-24.666000px;}
.ws193{word-spacing:-24.624000px;}
.ws210{word-spacing:-24.534000px;}
.ws244{word-spacing:-24.444000px;}
.ws27d{word-spacing:-24.372000px;}
.ws243{word-spacing:-24.324000px;}
.ws1cf{word-spacing:-24.282000px;}
.ws1ed{word-spacing:-24.276000px;}
.ws31c{word-spacing:-24.256800px;}
.wsbe{word-spacing:-24.181200px;}
.ws31d{word-spacing:-24.100200px;}
.wse2{word-spacing:-24.095081px;}
.wsd1{word-spacing:-24.089400px;}
.ws1fe{word-spacing:-24.054000px;}
.wsd0{word-spacing:-24.035400px;}
.wscf{word-spacing:-23.949000px;}
.ws1b5{word-spacing:-23.940000px;}
.ws1b3{word-spacing:-23.916000px;}
.wsc0{word-spacing:-23.873400px;}
.ws19f{word-spacing:-23.850000px;}
.wse4{word-spacing:-23.819400px;}
.ws16b{word-spacing:-23.802000px;}
.ws154{word-spacing:-23.796000px;}
.ws1b4{word-spacing:-23.772000px;}
.ws112{word-spacing:-23.733000px;}
.ws341{word-spacing:-23.608800px;}
.ws184{word-spacing:-23.604000px;}
.ws90{word-spacing:-23.603400px;}
.ws119{word-spacing:-23.565600px;}
.ws2ba{word-spacing:-23.562000px;}
.ws128{word-spacing:-23.514000px;}
.wse8{word-spacing:-23.484600px;}
.ws16c{word-spacing:-23.478000px;}
.ws223{word-spacing:-23.454000px;}
.ws126{word-spacing:-23.412000px;}
.ws33e{word-spacing:-23.403600px;}
.ws1a0{word-spacing:-23.394000px;}
.ws1ac{word-spacing:-23.358000px;}
.ws271{word-spacing:-23.322000px;}
.ws224{word-spacing:-23.304000px;}
.ws127{word-spacing:-23.298000px;}
.ws1e3{word-spacing:-23.280000px;}
.wsd9{word-spacing:-23.268600px;}
.ws150{word-spacing:-23.262000px;}
.wsc1{word-spacing:-23.257800px;}
.wsdb{word-spacing:-23.247000px;}
.wsda{word-spacing:-23.241600px;}
.ws305{word-spacing:-23.236200px;}
.ws122{word-spacing:-23.190000px;}
.wsc8{word-spacing:-23.187600px;}
.ws194{word-spacing:-23.184000px;}
.ws59{word-spacing:-23.172000px;}
.ws24d{word-spacing:-23.166000px;}
.wsf1{word-spacing:-23.133600px;}
.ws18c{word-spacing:-23.124000px;}
.ws1e2{word-spacing:-23.112000px;}
.ws30d{word-spacing:-23.106600px;}
.ws288{word-spacing:-23.076000px;}
.ws1db{word-spacing:-23.040000px;}
.ws222{word-spacing:-22.992000px;}
.ws20e{word-spacing:-22.980000px;}
.ws2f4{word-spacing:-22.971600px;}
.wsc4{word-spacing:-22.901400px;}
.wsc7{word-spacing:-22.890600px;}
.ws1dc{word-spacing:-22.890000px;}
.ws18e{word-spacing:-22.866000px;}
.ws18d{word-spacing:-22.854000px;}
.ws22b{word-spacing:-22.842000px;}
.ws2df{word-spacing:-22.820400px;}
.ws323{word-spacing:-22.804200px;}
.wsfd{word-spacing:-22.798800px;}
.ws99{word-spacing:-22.750200px;}
.ws1d6{word-spacing:-22.728000px;}
.ws2a1{word-spacing:-22.725900px;}
.ws29c{word-spacing:-22.697400px;}
.wscd{word-spacing:-22.696200px;}
.ws2bd{word-spacing:-22.674600px;}
.wsce{word-spacing:-22.631400px;}
.wsad{word-spacing:-22.604400px;}
.ws324{word-spacing:-22.599000px;}
.ws2b2{word-spacing:-22.572000px;}
.wsae{word-spacing:-22.561200px;}
.wscc{word-spacing:-22.550400px;}
.ws200{word-spacing:-22.534200px;}
.ws314{word-spacing:-22.501800px;}
.ws231{word-spacing:-22.500000px;}
.ws11c{word-spacing:-22.496400px;}
.ws179{word-spacing:-22.488000px;}
.ws36e{word-spacing:-22.404600px;}
.ws76{word-spacing:-22.393800px;}
.ws304{word-spacing:-22.388400px;}
.ws26e{word-spacing:-22.362000px;}
.ws28f{word-spacing:-22.344000px;}
.ws77{word-spacing:-22.323600px;}
.ws16a{word-spacing:-22.284000px;}
.ws36b{word-spacing:-22.275000px;}
.wsf0{word-spacing:-22.269600px;}
.ws73{word-spacing:-22.258800px;}
.ws1ab{word-spacing:-22.236000px;}
.ws168{word-spacing:-22.212000px;}
.ws293{word-spacing:-22.182000px;}
.ws74{word-spacing:-22.177604px;}
.wsef{word-spacing:-22.167000px;}
.ws1e6{word-spacing:-22.152000px;}
.wsfa{word-spacing:-22.129200px;}
.ws165{word-spacing:-22.080000px;}
.ws13d{word-spacing:-22.068000px;}
.ws24b{word-spacing:-22.020000px;}
.ws246{word-spacing:-21.906000px;}
.ws257{word-spacing:-21.902400px;}
.ws5b{word-spacing:-21.900000px;}
.ws169{word-spacing:-21.888000px;}
.ws1e4{word-spacing:-21.876000px;}
.ws367{word-spacing:-21.864600px;}
.ws7{word-spacing:-21.832200px;}
.ws247{word-spacing:-21.822000px;}
.ws235{word-spacing:-21.816000px;}
.ws3a{word-spacing:-21.804000px;}
.ws13e{word-spacing:-21.768000px;}
.ws185{word-spacing:-21.738000px;}
.ws1f6{word-spacing:-21.732000px;}
.wsa{word-spacing:-21.724200px;}
.ws13f{word-spacing:-21.702000px;}
.ws26{word-spacing:-21.690000px;}
.ws123{word-spacing:-21.678000px;}
.ws21{word-spacing:-21.606000px;}
.ws88{word-spacing:-21.605400px;}
.ws27{word-spacing:-21.582000px;}
.ws10b{word-spacing:-21.573000px;}
.ws157{word-spacing:-21.558000px;}
.ws10a{word-spacing:-21.502800px;}
.ws87{word-spacing:-21.481200px;}
.ws9e{word-spacing:-21.432600px;}
.ws20{word-spacing:-21.408000px;}
.ws262{word-spacing:-21.342000px;}
.ws212{word-spacing:-21.336000px;}
.ws29{word-spacing:-21.306000px;}
.ws325{word-spacing:-21.265200px;}
.ws26a{word-spacing:-21.238200px;}
.ws115{word-spacing:-21.222000px;}
.ws1d4{word-spacing:-21.216000px;}
.ws16f{word-spacing:-21.192000px;}
.ws2ef{word-spacing:-21.141000px;}
.ws2bc{word-spacing:-21.132000px;}
.wsfc{word-spacing:-21.092400px;}
.ws1f5{word-spacing:-21.090000px;}
.ws57{word-spacing:-21.084000px;}
.ws21e{word-spacing:-21.078000px;}
.ws60{word-spacing:-21.054000px;}
.ws227{word-spacing:-21.048000px;}
.ws1e1{word-spacing:-21.042000px;}
.ws254{word-spacing:-21.030000px;}
.ws2b1{word-spacing:-20.994000px;}
.ws1f4{word-spacing:-20.982000px;}
.ws299{word-spacing:-20.970000px;}
.ws229{word-spacing:-20.964000px;}
.ws173{word-spacing:-20.958000px;}
.wsee{word-spacing:-20.952000px;}
.ws6c{word-spacing:-20.935800px;}
.ws152{word-spacing:-20.934000px;}
.ws172{word-spacing:-20.904000px;}
.wsd3{word-spacing:-20.892600px;}
.wsd4{word-spacing:-20.887200px;}
.ws183{word-spacing:-20.880000px;}
.ws140{word-spacing:-20.874000px;}
.ws79{word-spacing:-20.871000px;}
.ws138{word-spacing:-20.862000px;}
.ws1d5{word-spacing:-20.856000px;}
.ws309{word-spacing:-20.854800px;}
.ws145{word-spacing:-20.850000px;}
.wsf2{word-spacing:-20.844000px;}
.ws14a{word-spacing:-20.838000px;}
.ws136{word-spacing:-20.814000px;}
.ws2a6{word-spacing:-20.802000px;}
.wsd5{word-spacing:-20.800800px;}
.ws148{word-spacing:-20.790000px;}
.ws1ee{word-spacing:-20.778000px;}
.ws1bc{word-spacing:-20.763000px;}
.ws12e{word-spacing:-20.712000px;}
.ws264{word-spacing:-20.706000px;}
.ws351{word-spacing:-20.703600px;}
.ws149{word-spacing:-20.676000px;}
.ws137{word-spacing:-20.616000px;}
.ws251{word-spacing:-20.568000px;}
.ws2b4{word-spacing:-20.544000px;}
.ws1af{word-spacing:-20.538000px;}
.ws7e{word-spacing:-20.530800px;}
.wsd2{word-spacing:-20.509200px;}
.ws369{word-spacing:-20.466000px;}
.ws245{word-spacing:-20.454000px;}
.ws239{word-spacing:-20.436000px;}
.ws238{word-spacing:-20.394000px;}
.ws250{word-spacing:-20.370000px;}
.ws151{word-spacing:-20.334000px;}
.ws292{word-spacing:-20.160000px;}
.ws95{word-spacing:-20.152800px;}
.ws2e3{word-spacing:-20.147400px;}
.ws7a{word-spacing:-20.093400px;}
.ws2e6{word-spacing:-20.082600px;}
.ws36f{word-spacing:-20.066400px;}
.ws1e7{word-spacing:-20.058000px;}
.ws2e5{word-spacing:-20.023200px;}
.ws2be{word-spacing:-20.012400px;}
.ws2cf{word-spacing:-20.007000px;}
.ws98{word-spacing:-19.990800px;}
.wsa7{word-spacing:-19.969200px;}
.ws2f2{word-spacing:-19.909800px;}
.ws23f{word-spacing:-19.854000px;}
.ws14{word-spacing:-19.770000px;}
.ws10f{word-spacing:-19.753200px;}
.ws213{word-spacing:-19.704000px;}
.ws8f{word-spacing:-19.683000px;}
.ws25e{word-spacing:-19.668000px;}
.ws308{word-spacing:-19.666800px;}
.ws9f{word-spacing:-19.650600px;}
.wsb3{word-spacing:-19.596600px;}
.wsa1{word-spacing:-19.548000px;}
.wse5{word-spacing:-19.542600px;}
.ws3{word-spacing:-19.499850px;}
.ws2c2{word-spacing:-19.494000px;}
.ws267{word-spacing:-19.472400px;}
.ws289{word-spacing:-19.434000px;}
.wsec{word-spacing:-19.418400px;}
.ws34c{word-spacing:-19.402200px;}
.ws1b7{word-spacing:-19.392000px;}
.ws23b{word-spacing:-19.386000px;}
.ws20f{word-spacing:-19.344000px;}
.ws2f5{word-spacing:-19.342800px;}
.ws226{word-spacing:-19.302000px;}
.ws29f{word-spacing:-19.296000px;}
.ws2b3{word-spacing:-19.254000px;}
.ws15{word-spacing:-19.230000px;}
.ws71{word-spacing:-19.207800px;}
.ws34d{word-spacing:-19.202400px;}
.ws232{word-spacing:-19.182000px;}
.ws164{word-spacing:-19.176000px;}
.ws72{word-spacing:-19.143000px;}
.ws31{word-spacing:-19.092000px;}
.ws30{word-spacing:-19.062000px;}
.ws11a{word-spacing:-19.056600px;}
.ws27c{word-spacing:-19.038000px;}
.ws1fa{word-spacing:-19.020000px;}
.ws26b{word-spacing:-19.018800px;}
.wsa8{word-spacing:-19.008000px;}
.wsd7{word-spacing:-19.002600px;}
.ws1b8{word-spacing:-18.997200px;}
.ws13{word-spacing:-18.996000px;}
.ws2ce{word-spacing:-18.991800px;}
.ws268{word-spacing:-18.975600px;}
.ws306{word-spacing:-18.970200px;}
.ws2e7{word-spacing:-18.948600px;}
.ws1bd{word-spacing:-18.943200px;}
.wse1{word-spacing:-18.927000px;}
.ws26d{word-spacing:-18.918000px;}
.ws11{word-spacing:-18.912000px;}
.ws118{word-spacing:-18.900000px;}
.wsa2{word-spacing:-18.894600px;}
.ws80{word-spacing:-18.889200px;}
.ws2d6{word-spacing:-18.878400px;}
.wsaf{word-spacing:-18.867600px;}
.ws10e{word-spacing:-18.862200px;}
.wsb9{word-spacing:-18.856800px;}
.ws2dd{word-spacing:-18.851400px;}
.ws9b{word-spacing:-18.846000px;}
.wscb{word-spacing:-18.840600px;}
.ws182{word-spacing:-18.840000px;}
.wsdd{word-spacing:-18.824400px;}
.ws13b{word-spacing:-18.822000px;}
.ws9a{word-spacing:-18.813600px;}
.ws2e9{word-spacing:-18.797400px;}
.ws110{word-spacing:-18.792000px;}
.ws202{word-spacing:-18.786600px;}
.ws9d{word-spacing:-18.781200px;}
.wsd8{word-spacing:-18.759600px;}
.ws19c{word-spacing:-18.750000px;}
.ws2ec{word-spacing:-18.738000px;}
.ws34e{word-spacing:-18.721800px;}
.ws206{word-spacing:-18.716400px;}
.wsb4{word-spacing:-18.711000px;}
.ws27a{word-spacing:-18.690000px;}
.wsfb{word-spacing:-18.684000px;}
.ws2cc{word-spacing:-18.678600px;}
.ws160{word-spacing:-18.657000px;}
.ws2d1{word-spacing:-18.651600px;}
.ws19e{word-spacing:-18.636000px;}
.ws1bb{word-spacing:-18.635400px;}
.ws19d{word-spacing:-18.588000px;}
.ws53{word-spacing:-18.582000px;}
.ws343{word-spacing:-18.538200px;}
.ws261{word-spacing:-18.534000px;}
.ws316{word-spacing:-18.527400px;}
.ws2e0{word-spacing:-18.511200px;}
.ws1d3{word-spacing:-18.498000px;}
.wsd6{word-spacing:-18.473400px;}
.ws1ff{word-spacing:-18.451800px;}
.ws201{word-spacing:-18.446400px;}
.ws156{word-spacing:-18.402000px;}
.ws107{word-spacing:-18.381600px;}
.ws1ba{word-spacing:-18.376200px;}
.ws1cb{word-spacing:-18.366000px;}
.ws365{word-spacing:-18.349200px;}
.ws38{word-spacing:-18.336000px;}
.ws25b{word-spacing:-18.324000px;}
.ws114{word-spacing:-18.295200px;}
.ws1d8{word-spacing:-18.276000px;}
.ws104{word-spacing:-18.176400px;}
.wsf3{word-spacing:-18.138600px;}
.ws218{word-spacing:-18.132000px;}
.ws33c{word-spacing:-18.079200px;}
.ws260{word-spacing:-18.072000px;}
.wsab{word-spacing:-18.063000px;}
.ws143{word-spacing:-18.030000px;}
.ws86{word-spacing:-18.019800px;}
.ws7c{word-spacing:-17.955000px;}
.ws2d{word-spacing:-17.940000px;}
.ws16{word-spacing:-17.934000px;}
.ws2a8{word-spacing:-17.928000px;}
.ws125{word-spacing:-17.922000px;}
.ws7d{word-spacing:-17.917200px;}
.ws21c{word-spacing:-17.820000px;}
.ws2fc{word-spacing:-17.787600px;}
.ws2b9{word-spacing:-17.784000px;}
.ws15c{word-spacing:-17.748000px;}
.ws16e{word-spacing:-17.730000px;}
.ws15d{word-spacing:-17.700000px;}
.ws211{word-spacing:-17.676000px;}
.ws15b{word-spacing:-17.670000px;}
.ws2c1{word-spacing:-17.625600px;}
.ws25f{word-spacing:-17.610000px;}
.ws17f{word-spacing:-17.598000px;}
.ws186{word-spacing:-17.556000px;}
.ws4c{word-spacing:-17.532000px;}
.ws4b{word-spacing:-17.526000px;}
.ws117{word-spacing:-17.431200px;}
.ws2db{word-spacing:-17.409600px;}
.wse7{word-spacing:-17.404200px;}
.ws286{word-spacing:-17.388000px;}
.wse6{word-spacing:-17.355600px;}
.ws24c{word-spacing:-17.334000px;}
.ws31e{word-spacing:-17.312400px;}
.ws1f8{word-spacing:-17.286000px;}
.ws2fb{word-spacing:-17.285400px;}
.ws11b{word-spacing:-17.220600px;}
.ws2fa{word-spacing:-17.150400px;}
.ws1f9{word-spacing:-17.142000px;}
.ws187{word-spacing:-17.136000px;}
.ws18{word-spacing:-17.082000px;}
.ws111{word-spacing:-17.020800px;}
.ws2c{word-spacing:-17.016000px;}
.ws78{word-spacing:-17.010000px;}
.ws30f{word-spacing:-16.999200px;}
.ws20b{word-spacing:-16.914000px;}
.ws6b{word-spacing:-16.912800px;}
.ws216{word-spacing:-16.902000px;}
.ws1c4{word-spacing:-16.886189px;}
.ws1d1{word-spacing:-16.872000px;}
.ws1bf{word-spacing:-16.847789px;}
.ws1c2{word-spacing:-16.842989px;}
.ws36{word-spacing:-16.830000px;}
.ws1c5{word-spacing:-16.823790px;}
.ws20d{word-spacing:-16.800000px;}
.ws25{word-spacing:-16.776000px;}
.wsc9{word-spacing:-16.750800px;}
.ws35e{word-spacing:-16.729200px;}
.ws161{word-spacing:-16.704000px;}
.wsca{word-spacing:-16.686000px;}
.wsed{word-spacing:-16.669800px;}
.ws191{word-spacing:-16.662000px;}
.ws1ca{word-spacing:-16.660592px;}
.ws1c6{word-spacing:-16.655792px;}
.ws20c{word-spacing:-16.596000px;}
.ws1c1{word-spacing:-16.545393px;}
.ws2b8{word-spacing:-16.536000px;}
.ws1c0{word-spacing:-16.492594px;}
.ws1c3{word-spacing:-16.482994px;}
.ws1da{word-spacing:-16.458000px;}
.ws33b{word-spacing:-16.453800px;}
.ws333{word-spacing:-16.356600px;}
.ws321{word-spacing:-16.335000px;}
.ws116{word-spacing:-16.318800px;}
.ws108{word-spacing:-16.313400px;}
.ws355{word-spacing:-16.254000px;}
.ws109{word-spacing:-16.243200px;}
.ws342{word-spacing:-16.189200px;}
.ws2f9{word-spacing:-16.173000px;}
.ws270{word-spacing:-16.104000px;}
.ws26f{word-spacing:-16.092000px;}
.ws1b6{word-spacing:-16.086000px;}
.ws205{word-spacing:-16.065000px;}
.ws2c6{word-spacing:-16.038000px;}
.ws105{word-spacing:-16.000200px;}
.ws25d{word-spacing:-15.948000px;}
.ws363{word-spacing:-15.924600px;}
.ws317{word-spacing:-15.913800px;}
.ws1a1{word-spacing:-15.900000px;}
.ws6e{word-spacing:-15.881400px;}
.ws36a{word-spacing:-15.692400px;}
.ws177{word-spacing:-15.690000px;}
.ws189{word-spacing:-15.648000px;}
.ws28e{word-spacing:-15.606000px;}
.ws7b{word-spacing:-15.568200px;}
.ws51{word-spacing:-15.522000px;}
.ws277{word-spacing:-15.510000px;}
.ws2d9{word-spacing:-15.471000px;}
.wsb7{word-spacing:-15.422400px;}
.ws3f{word-spacing:-15.400800px;}
.ws52{word-spacing:-15.372000px;}
.ws291{word-spacing:-15.366000px;}
.ws44{word-spacing:-15.249600px;}
.ws54{word-spacing:-15.222000px;}
.ws370{word-spacing:-15.211800px;}
.ws198{word-spacing:-15.210000px;}
.ws196{word-spacing:-15.186000px;}
.ws41{word-spacing:-15.168600px;}
.ws360{word-spacing:-15.157800px;}
.ws2ca{word-spacing:-15.125400px;}
.ws197{word-spacing:-15.018000px;}
.wse9{word-spacing:-15.001200px;}
.ws195{word-spacing:-14.976000px;}
.ws228{word-spacing:-14.958000px;}
.ws8d{word-spacing:-14.887800px;}
.ws361{word-spacing:-14.850000px;}
.ws24{word-spacing:-14.838000px;}
.ws3c{word-spacing:-14.790000px;}
.wsac{word-spacing:-14.779800px;}
.ws155{word-spacing:-14.760000px;}
.ws240{word-spacing:-14.754000px;}
.ws35d{word-spacing:-14.736600px;}
.wsfe{word-spacing:-14.731200px;}
.ws17d{word-spacing:-14.682000px;}
.wse0{word-spacing:-14.677200px;}
.ws274{word-spacing:-14.676000px;}
.wsff{word-spacing:-14.655600px;}
.ws338{word-spacing:-14.639400px;}
.wsea{word-spacing:-14.628600px;}
.ws100{word-spacing:-14.623200px;}
.wsde{word-spacing:-14.563800px;}
.ws265{word-spacing:-14.520000px;}
.ws1fc{word-spacing:-14.496000px;}
.ws1c{word-spacing:-14.490000px;}
.ws6d{word-spacing:-14.482800px;}
.ws34a{word-spacing:-14.472000px;}
.wsdf{word-spacing:-14.439600px;}
.ws9{word-spacing:-14.428800px;}
.ws124{word-spacing:-14.418000px;}
.ws16d{word-spacing:-14.394000px;}
.ws14d{word-spacing:-14.388000px;}
.ws297{word-spacing:-14.328000px;}
.ws1fb{word-spacing:-14.316000px;}
.wsb8{word-spacing:-14.315400px;}
.ws368{word-spacing:-14.293800px;}
.wsc5{word-spacing:-14.288400px;}
.ws27b{word-spacing:-14.286000px;}
.ws65{word-spacing:-14.277600px;}
.ws1a5{word-spacing:-14.274000px;}
.ws8e{word-spacing:-14.261400px;}
.ws1dd{word-spacing:-14.184000px;}
.ws1ad{word-spacing:-14.166000px;}
.ws22c{word-spacing:-14.124000px;}
.ws106{word-spacing:-14.104800px;}
.ws2d4{word-spacing:-13.991400px;}
.ws2a2{word-spacing:-13.914000px;}
.ws92{word-spacing:-13.910400px;}
.ws50{word-spacing:-13.872000px;}
.ws2ae{word-spacing:-13.830000px;}
.ws181{word-spacing:-13.788000px;}
.ws234{word-spacing:-13.776000px;}
.ws272{word-spacing:-13.710000px;}
.ws233{word-spacing:-13.638000px;}
.ws1d9{word-spacing:-13.566000px;}
.ws281{word-spacing:-13.542000px;}
.ws313{word-spacing:-13.500000px;}
.ws255{word-spacing:-13.494000px;}
.ws312{word-spacing:-13.489200px;}
.ws354{word-spacing:-13.483800px;}
.ws217{word-spacing:-13.470000px;}
.ws4e{word-spacing:-13.434000px;}
.ws352{word-spacing:-13.354200px;}
.ws319{word-spacing:-13.316400px;}
.ws348{word-spacing:-13.294800px;}
.ws1df{word-spacing:-13.278000px;}
.ws1de{word-spacing:-13.230000px;}
.ws1eb{word-spacing:-13.044000px;}
.ws1e8{word-spacing:-13.026000px;}
.ws1e9{word-spacing:-12.954000px;}
.wsaa{word-spacing:-12.916800px;}
.ws17a{word-spacing:-12.906000px;}
.ws290{word-spacing:-12.840000px;}
.ws1ec{word-spacing:-12.810000px;}
.ws1ea{word-spacing:-12.792000px;}
.ws139{word-spacing:-12.786000px;}
.ws4{word-spacing:-12.752902px;}
.ws12b{word-spacing:-12.678000px;}
.ws296{word-spacing:-12.672000px;}
.ws5{word-spacing:-12.628103px;}
.ws2de{word-spacing:-12.619800px;}
.ws6{word-spacing:-12.604703px;}
.ws35c{word-spacing:-12.598200px;}
.ws199{word-spacing:-12.510000px;}
.ws8c{word-spacing:-12.501000px;}
.ws18b{word-spacing:-12.498000px;}
.ws18a{word-spacing:-12.492000px;}
.ws6a{word-spacing:-12.490200px;}
.wsa0{word-spacing:-12.447000px;}
.ws64{word-spacing:-12.430800px;}
.ws56{word-spacing:-12.318000px;}
.ws32{word-spacing:-12.270000px;}
.ws252{word-spacing:-12.204000px;}
.wsc6{word-spacing:-12.193200px;}
.ws28c{word-spacing:-12.072000px;}
.ws2f7{word-spacing:-12.058200px;}
.wsb2{word-spacing:-12.004200px;}
.ws2f6{word-spacing:-11.977200px;}
.ws301{word-spacing:-11.944800px;}
.wsdc{word-spacing:-11.680200px;}
.ws1ef{word-spacing:-11.610000px;}
.ws276{word-spacing:-11.454000px;}
.ws32b{word-spacing:-11.453400px;}
.ws2b{word-spacing:-11.424000px;}
.ws1a2{word-spacing:-11.388000px;}
.ws7f{word-spacing:-11.383200px;}
.ws170{word-spacing:-11.358000px;}
.ws253{word-spacing:-11.352000px;}
.ws1a3{word-spacing:-11.340000px;}
.ws1a4{word-spacing:-11.334000px;}
.ws10c{word-spacing:-11.307600px;}
.ws171{word-spacing:-11.238000px;}
.ws24f{word-spacing:-11.154000px;}
.ws12d{word-spacing:-11.148000px;}
.ws8{word-spacing:-11.097000px;}
.ws11f{word-spacing:-11.094000px;}
.ws121{word-spacing:-11.070000px;}
.ws101{word-spacing:-11.043000px;}
.ws8a{word-spacing:-11.005200px;}
.ws285{word-spacing:-10.944000px;}
.ws358{word-spacing:-10.924200px;}
.wsc3{word-spacing:-10.886400px;}
.ws103{word-spacing:-10.854000px;}
.ws330{word-spacing:-10.800000px;}
.ws17{word-spacing:-10.794000px;}
.ws14f{word-spacing:-10.752000px;}
.ws102{word-spacing:-10.719000px;}
.ws2cb{word-spacing:-10.708200px;}
.ws19{word-spacing:-10.659600px;}
.ws14e{word-spacing:-10.650000px;}
.ws204{word-spacing:-10.551600px;}
.ws19a{word-spacing:-10.476000px;}
.ws132{word-spacing:-10.464000px;}
.ws256{word-spacing:-10.449000px;}
.ws133{word-spacing:-10.422000px;}
.ws298{word-spacing:-10.410000px;}
.ws30e{word-spacing:-10.351800px;}
.ws46{word-spacing:-10.326960px;}
.ws20a{word-spacing:-10.308000px;}
.ws47{word-spacing:-10.266480px;}
.ws33{word-spacing:-10.254000px;}
.ws34b{word-spacing:-10.206000px;}
.ws1d{word-spacing:-10.158000px;}
.ws1a{word-spacing:-10.116000px;}
.ws178{word-spacing:-9.996000px;}
.ws2fe{word-spacing:-9.892800px;}
.ws69{word-spacing:-9.865800px;}
.ws68{word-spacing:-9.849600px;}
.ws19b{word-spacing:-9.828000px;}
.ws49{word-spacing:-9.795600px;}
.ws269{word-spacing:-9.768600px;}
.wsbc{word-spacing:-9.687600px;}
.ws1e5{word-spacing:-9.654000px;}
.ws35a{word-spacing:-9.644400px;}
.ws10d{word-spacing:-9.574200px;}
.ws1ae{word-spacing:-9.552000px;}
.ws2b6{word-spacing:-9.486000px;}
.ws326{word-spacing:-9.460800px;}
.ws2c8{word-spacing:-9.379800px;}
.ws329{word-spacing:-9.325800px;}
.ws1cd{word-spacing:-9.312000px;}
.ws1b{word-spacing:-9.288000px;}
.ws32d{word-spacing:-9.196200px;}
.ws2c0{word-spacing:-9.120600px;}
.ws345{word-spacing:-9.099000px;}
.ws21b{word-spacing:-9.072000px;}
.ws219{word-spacing:-9.060000px;}
.ws21a{word-spacing:-9.048000px;}
.ws30a{word-spacing:-8.947800px;}
.ws3b{word-spacing:-8.886000px;}
.ws346{word-spacing:-8.866800px;}
.ws21f{word-spacing:-8.718000px;}
.wsf7{word-spacing:-8.704800px;}
.wsc{word-spacing:-8.683091px;}
.wsf6{word-spacing:-8.640000px;}
.ws97{word-spacing:-8.591400px;}
.ws15a{word-spacing:-8.562000px;}
.wsb1{word-spacing:-8.521200px;}
.ws5d{word-spacing:-8.484000px;}
.wse{word-spacing:-8.467094px;}
.ws162{word-spacing:-8.376000px;}
.ws15e{word-spacing:-8.334000px;}
.ws1be{word-spacing:-8.328000px;}
.ws259{word-spacing:-8.175600px;}
.wsb5{word-spacing:-8.094600px;}
.ws2d0{word-spacing:-8.089200px;}
.ws2a{word-spacing:-8.088000px;}
.ws266{word-spacing:-8.067600px;}
.ws2da{word-spacing:-7.965000px;}
.wsf4{word-spacing:-7.948800px;}
.wsb6{word-spacing:-7.943400px;}
.ws120{word-spacing:-7.872000px;}
.ws48{word-spacing:-7.567200px;}
.ws31a{word-spacing:-7.543800px;}
.ws1e{word-spacing:-7.506000px;}
.ws15f{word-spacing:-7.387200px;}
.ws2ff{word-spacing:-7.349400px;}
.ws5a{word-spacing:-7.344000px;}
.ws300{word-spacing:-7.317000px;}
.ws5f{word-spacing:-7.314000px;}
.ws163{word-spacing:-7.176000px;}
.ws1b9{word-spacing:-7.165800px;}
.ws1f3{word-spacing:-7.140000px;}
.ws220{word-spacing:-7.032000px;}
.ws91{word-spacing:-7.030800px;}
.ws10{word-spacing:-7.008000px;}
.ws287{word-spacing:-6.762000px;}
.ws23e{word-spacing:-6.594000px;}
.ws2e{word-spacing:-6.516000px;}
.ws359{word-spacing:-6.156000px;}
.ws334{word-spacing:-6.123600px;}
.ws62{word-spacing:-6.112800px;}
.ws294{word-spacing:-6.036000px;}
.ws283{word-spacing:-5.994000px;}
.ws55{word-spacing:-5.988000px;}
.ws335{word-spacing:-5.794200px;}
.ws2ea{word-spacing:-5.767200px;}
.ws23d{word-spacing:-5.766000px;}
.wsa9{word-spacing:-5.437800px;}
.ws113{word-spacing:-5.405400px;}
.ws33f{word-spacing:-5.259600px;}
.ws340{word-spacing:-5.146200px;}
.ws2e1{word-spacing:-5.070600px;}
.ws8b{word-spacing:-5.022000px;}
.ws2bb{word-spacing:-4.968000px;}
.ws94{word-spacing:-4.962600px;}
.ws13c{word-spacing:-4.890000px;}
.ws1ce{word-spacing:-4.866000px;}
.ws159{word-spacing:-4.842000px;}
.ws18f{word-spacing:-4.812000px;}
.ws2a9{word-spacing:-4.752000px;}
.ws280{word-spacing:-4.722000px;}
.ws2aa{word-spacing:-4.710000px;}
.ws2b0{word-spacing:-4.704000px;}
.ws2ab{word-spacing:-4.668000px;}
.ws29e{word-spacing:-4.644000px;}
.ws37{word-spacing:-4.476000px;}
.ws1f1{word-spacing:-4.350000px;}
.ws28a{word-spacing:-4.332000px;}
.wsbb{word-spacing:-4.228200px;}
.ws273{word-spacing:-4.218000px;}
.ws6f{word-spacing:-4.217400px;}
.ws1aa{word-spacing:-4.212000px;}
.ws17b{word-spacing:-4.194000px;}
.ws322{word-spacing:-4.120200px;}
.ws70{word-spacing:-4.077000px;}
.ws1f2{word-spacing:-4.068000px;}
.ws1f0{word-spacing:-4.038000px;}
.ws36c{word-spacing:-3.979800px;}
.ws241{word-spacing:-3.876000px;}
.ws1d7{word-spacing:-3.846000px;}
.ws36d{word-spacing:-3.774600px;}
.ws29d{word-spacing:-3.756000px;}
.ws32c{word-spacing:-3.753000px;}
.wsc2{word-spacing:-3.553200px;}
.ws214{word-spacing:-3.540000px;}
.ws130{word-spacing:-3.534000px;}
.ws81{word-spacing:-3.510000px;}
.ws190{word-spacing:-3.486000px;}
.ws96{word-spacing:-3.483000px;}
.ws67{word-spacing:-3.396600px;}
.ws215{word-spacing:-3.258000px;}
.ws63{word-spacing:-3.121200px;}
.ws209{word-spacing:-2.970000px;}
.ws176{word-spacing:-2.946000px;}
.ws208{word-spacing:-2.838000px;}
.ws35{word-spacing:-2.586000px;}
.ws2eb{word-spacing:-2.543400px;}
.ws34{word-spacing:-2.520000px;}
.ws2b7{word-spacing:-2.352000px;}
.ws24e{word-spacing:-2.172000px;}
.ws350{word-spacing:-2.116800px;}
.ws2f{word-spacing:-2.088000px;}
.ws221{word-spacing:-2.076000px;}
.ws2e4{word-spacing:-1.981800px;}
.ws278{word-spacing:-1.830000px;}
.ws2f3{word-spacing:-1.733400px;}
.ws66{word-spacing:-1.603800px;}
.ws2f1{word-spacing:-1.393200px;}
.ws1e0{word-spacing:-1.284000px;}
.ws17e{word-spacing:-1.236000px;}
.ws2c3{word-spacing:-1.220400px;}
.ws1d2{word-spacing:-1.152000px;}
.wsb0{word-spacing:-1.123200px;}
.ws2ac{word-spacing:-1.110000px;}
.ws284{word-spacing:-1.098000px;}
.ws28{word-spacing:-1.086000px;}
.ws32f{word-spacing:-1.074600px;}
.ws14b{word-spacing:-1.074000px;}
.ws23{word-spacing:-1.068000px;}
.ws1fd{word-spacing:-1.062000px;}
.ws282{word-spacing:-1.056000px;}
.ws2f0{word-spacing:-1.047600px;}
.ws27f{word-spacing:-1.044000px;}
.ws347{word-spacing:-1.042200px;}
.ws135{word-spacing:-1.038000px;}
.ws32a{word-spacing:-1.036800px;}
.ws17c{word-spacing:-1.032000px;}
.ws4d{word-spacing:-1.014000px;}
.ws144{word-spacing:-1.008000px;}
.ws2e2{word-spacing:-1.004400px;}
.ws84{word-spacing:-0.993600px;}
.ws22{word-spacing:-0.990000px;}
.ws2d5{word-spacing:-0.988200px;}
.ws12f{word-spacing:-0.984000px;}
.ws58{word-spacing:-0.978000px;}
.ws131{word-spacing:-0.966000px;}
.wsa6{word-spacing:-0.961200px;}
.ws302{word-spacing:-0.955800px;}
.wsbd{word-spacing:-0.950400px;}
.ws1a8{word-spacing:-0.948000px;}
.ws2fd{word-spacing:-0.939600px;}
.ws85{word-spacing:-0.928800px;}
.ws12a{word-spacing:-0.924000px;}
.ws2a5{word-spacing:-0.918000px;}
.ws315{word-spacing:-0.912600px;}
.ws33a{word-spacing:-0.907200px;}
.ws4f{word-spacing:-0.906000px;}
.ws339{word-spacing:-0.896400px;}
.wseb{word-spacing:-0.891000px;}
.ws33d{word-spacing:-0.885600px;}
.ws364{word-spacing:-0.864000px;}
.ws337{word-spacing:-0.831600px;}
.ws344{word-spacing:-0.826200px;}
.ws93{word-spacing:-0.810000px;}
.wsa5{word-spacing:-0.804600px;}
.ws28d{word-spacing:-0.792000px;}
.ws303{word-spacing:-0.783000px;}
.ws2af{word-spacing:-0.774000px;}
.ws318{word-spacing:-0.772200px;}
.ws2c7{word-spacing:-0.766800px;}
.ws1f7{word-spacing:-0.762000px;}
.ws134{word-spacing:-0.756000px;}
.ws2cd{word-spacing:-0.750600px;}
.ws129{word-spacing:-0.744000px;}
.ws2d7{word-spacing:-0.723600px;}
.ws2d3{word-spacing:-0.718200px;}
.ws2d8{word-spacing:-0.712800px;}
.ws307{word-spacing:-0.702000px;}
.ws2ed{word-spacing:-0.691200px;}
.ws34f{word-spacing:-0.685800px;}
.ws2a3{word-spacing:-0.666000px;}
.ws2bf{word-spacing:-0.653400px;}
.ws2d2{word-spacing:-0.648000px;}
.ws2ad{word-spacing:-0.642000px;}
.ws2a4{word-spacing:-0.630000px;}
.ws2e8{word-spacing:-0.621000px;}
.ws12{word-spacing:-0.588000px;}
.ws2ee{word-spacing:-0.572400px;}
.ws311{word-spacing:-0.567000px;}
.ws2f8{word-spacing:-0.534600px;}
.ws366{word-spacing:-0.507600px;}
.ws2c4{word-spacing:-0.496800px;}
.ws2c5{word-spacing:-0.378000px;}
.ws332{word-spacing:-0.372600px;}
.ws4a{word-spacing:0.000000px;}
.ws2dc{word-spacing:0.707400px;}
.ws310{word-spacing:0.810000px;}
.ws89{word-spacing:0.896400px;}
.ws320{word-spacing:0.982800px;}
.ws203{word-spacing:0.993600px;}
.ws31f{word-spacing:1.188000px;}
.ws35f{word-spacing:1.549800px;}
.ws356{word-spacing:1.755000px;}
.ws357{word-spacing:2.008800px;}
.ws258{word-spacing:3.159000px;}
.ws362{word-spacing:3.542400px;}
.wsba{word-spacing:3.726000px;}
.ws9c{word-spacing:4.735800px;}
.ws353{word-spacing:4.849200px;}
.ws349{word-spacing:5.211000px;}
.wsf{word-spacing:5.916000px;}
.wsa4{word-spacing:6.566400px;}
.ws82{word-spacing:6.701400px;}
.wsa3{word-spacing:6.712200px;}
.ws83{word-spacing:6.744600px;}
.ws331{word-spacing:7.668000px;}
.ws35b{word-spacing:8.364600px;}
.ws2c9{word-spacing:8.602200px;}
.ws328{word-spacing:8.807400px;}
.ws327{word-spacing:8.872200px;}
.ws32e{word-spacing:8.947800px;}
.ws30b{word-spacing:9.212400px;}
.ws43{word-spacing:9.433800px;}
.ws30c{word-spacing:9.487800px;}
.ws31b{word-spacing:10.681200px;}
.ws336{word-spacing:12.317400px;}
.ws29b{word-spacing:16.583946px;}
.wsd{word-spacing:17.559857px;}
.ws42{word-spacing:24.445800px;}
.ws3e{word-spacing:29.413800px;}
.ws40{word-spacing:55.927800px;}
.ws1c7{word-spacing:103.534706px;}
.ws1c9{word-spacing:197.666329px;}
.wsb{word-spacing:324.593400px;}
.wsf8{word-spacing:1000.097400px;}
.wsf9{word-spacing:1050.034874px;}
._10{margin-left:-2981.957925px;}
._20{margin-left:-1.680000px;}
._17{width:9.239400px;}
._f{width:10.962000px;}
._7{width:12.318000px;}
._8{width:13.926000px;}
._15{width:14.952600px;}
._2{width:16.830000px;}
._3{width:18.042000px;}
._c{width:19.050000px;}
._4{width:20.148000px;}
._5{width:21.204000px;}
._13{width:22.626000px;}
._12{width:24.168000px;}
._d{width:25.938000px;}
._14{width:27.054000px;}
._6{width:28.536000px;}
._a{width:29.994000px;}
._b{width:31.290000px;}
._e{width:33.360000px;}
._16{width:34.404600px;}
._1d{width:35.826000px;}
._9{width:37.626000px;}
._1e{width:38.706000px;}
._11{width:74.826480px;}
._1f{width:76.266000px;}
._1c{width:127.462407px;}
._1a{width:133.884726px;}
._1b{width:150.473319px;}
._18{width:173.503431px;}
._19{width:179.584955px;}
._1{width:283.430104px;}
._0{width:462.762484px;}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc5{color:rgb(0,84,166);}
.fc1{color:rgb(13,84,166);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:35.995200px;}
.fsc{font-size:36.000000px;}
.fsf{font-size:36.178800px;}
.fsa{font-size:37.800000px;}
.fs14{font-size:39.186000px;}
.fs9{font-size:39.995400px;}
.fs11{font-size:40.199400px;}
.fs6{font-size:41.248800px;}
.fsd{font-size:42.000000px;}
.fsb{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fse{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs15{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs13{font-size:71.248800px;}
.fs5{font-size:74.999400px;}
.fs1{font-size:77.999400px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fs12{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.436250px;}
.ye1{bottom:22.621350px;}
.y4b{bottom:27.553650px;}
.ye0{bottom:32.399850px;}
.y49{bottom:35.207040px;}
.y4a{bottom:37.332150px;}
.y48{bottom:43.880250px;}
.y324{bottom:59.952750px;}
.y1cd{bottom:59.952900px;}
.y110{bottom:59.953050px;}
.y21e{bottom:59.953500px;}
.y29d{bottom:59.953650px;}
.y2e1{bottom:59.953800px;}
.y226{bottom:59.954250px;}
.y13b{bottom:59.955750px;}
.y262{bottom:59.957250px;}
.y16a{bottom:59.958750px;}
.yde{bottom:60.037650px;}
.y94{bottom:60.038550px;}
.y196{bottom:64.461803px;}
.y21a{bottom:66.670800px;}
.y2d{bottom:68.712750px;}
.y93{bottom:74.834550px;}
.ydd{bottom:74.920050px;}
.y21d{bottom:75.004650px;}
.y29c{bottom:75.004800px;}
.y1cc{bottom:75.005400px;}
.y323{bottom:75.175350px;}
.y2e0{bottom:75.430200px;}
.y10f{bottom:76.451550px;}
.y195{bottom:76.452053px;}
.y169{bottom:76.457250px;}
.y219{bottom:76.541250px;}
.y13a{bottom:76.707750px;}
.y1b6{bottom:76.793250px;}
.y225{bottom:77.217750px;}
.y261{bottom:77.561250px;}
.y2c{bottom:85.295250px;}
.ydc{bottom:88.355250px;}
.y92{bottom:89.716950px;}
.y1cb{bottom:89.971500px;}
.y29b{bottom:89.972250px;}
.y322{bottom:90.312900px;}
.y2df{bottom:90.907950px;}
.y194{bottom:92.864248px;}
.y10e{bottom:92.948550px;}
.y168{bottom:92.954250px;}
.y218{bottom:93.123750px;}
.y139{bottom:93.545250px;}
.y1b5{bottom:93.632250px;}
.y224{bottom:94.395750px;}
.y260{bottom:95.163750px;}
.y2b{bottom:101.877750px;}
.ydb{bottom:103.322700px;}
.y91{bottom:104.599350px;}
.y193{bottom:104.854498px;}
.y29a{bottom:105.024750px;}
.y321{bottom:105.364050px;}
.y2de{bottom:106.384350px;}
.y46{bottom:107.405400px;}
.y10d{bottom:109.445550px;}
.y10b{bottom:109.446750px;}
.y167{bottom:109.451250px;}
.y217{bottom:109.620750px;}
.y138{bottom:110.298750px;}
.y1b4{bottom:110.469750px;}
.y223{bottom:111.573750px;}
.y25f{bottom:112.682250px;}
.y10c{bottom:116.163750px;}
.yda{bottom:118.205100px;}
.y2a{bottom:118.374750px;}
.y90{bottom:119.480400px;}
.y299{bottom:119.990850px;}
.y320{bottom:120.501600px;}
.y192{bottom:121.267893px;}
.y2dd{bottom:121.436850px;}
.y45{bottom:123.903750px;}
.y10a{bottom:125.945250px;}
.y166{bottom:125.949750px;}
.y216{bottom:126.203250px;}
.y137{bottom:127.050750px;}
.y1b3{bottom:127.307250px;}
.y222{bottom:128.835750px;}
.y25e{bottom:130.284750px;}
.yd9{bottom:133.171200px;}
.y8f{bottom:134.362800px;}
.y29{bottom:134.957250px;}
.y298{bottom:134.958300px;}
.y31f{bottom:135.722850px;}
.y2dc{bottom:136.829550px;}
.y44{bottom:140.400750px;}
.y191{bottom:140.741250px;}
.y109{bottom:142.442250px;}
.y165{bottom:142.446750px;}
.y215{bottom:142.700250px;}
.y136{bottom:143.804250px;}
.y1b2{bottom:144.059250px;}
.y221{bottom:146.013750px;}
.y25d{bottom:147.803250px;}
.yd8{bottom:148.138650px;}
.y8e{bottom:149.243850px;}
.y297{bottom:150.009450px;}
.y31e{bottom:150.860400px;}
.y28{bottom:151.539750px;}
.y2db{bottom:152.305950px;}
.y190{bottom:152.731500px;}
.y43{bottom:156.897750px;}
.y108{bottom:158.939250px;}
.y164{bottom:158.943750px;}
.y214{bottom:159.284250px;}
.y135{bottom:160.556250px;}
.y1b1{bottom:160.896750px;}
.yd7{bottom:163.104750px;}
.y220{bottom:163.191750px;}
.y8d{bottom:164.126250px;}
.y18f{bottom:164.721750px;}
.y296{bottom:164.976900px;}
.y25c{bottom:165.405750px;}
.y31d{bottom:166.083000px;}
.y2da{bottom:167.783700px;}
.y27{bottom:168.122250px;}
.y25{bottom:168.123750px;}
.y26{bottom:174.840750px;}
.y107{bottom:175.521750px;}
.y163{bottom:175.527750px;}
.y213{bottom:175.866750px;}
.y134{bottom:177.309750px;}
.y1b0{bottom:177.735750px;}
.yd5{bottom:177.987750px;}
.y8c{bottom:179.008650px;}
.y295{bottom:179.944350px;}
.y21f{bottom:180.453750px;}
.y31c{bottom:181.049100px;}
.y2d9{bottom:182.834850px;}
.y25b{bottom:182.924250px;}
.yd6{bottom:184.025250px;}
.y24{bottom:184.706250px;}
.y162{bottom:192.024750px;}
.y212{bottom:192.363750px;}
.yd4{bottom:192.955200px;}
.y8b{bottom:193.804650px;}
.y133{bottom:194.061750px;}
.y1af{bottom:194.573250px;}
.y294{bottom:194.995500px;}
.y42{bottom:195.165750px;}
.y31b{bottom:196.186650px;}
.y106{bottom:196.781250px;}
.y18e{bottom:197.207250px;}
.y2d8{bottom:198.312600px;}
.y25a{bottom:200.526750px;}
.y23{bottom:201.288750px;}
.yd3{bottom:207.836250px;}
.y161{bottom:208.521750px;}
.y8a{bottom:208.687050px;}
.y211{bottom:208.946250px;}
.y293{bottom:209.962950px;}
.y132{bottom:210.729750px;}
.y31a{bottom:211.407900px;}
.y1ae{bottom:211.410750px;}
.y22a{bottom:212.683650px;}
.y41{bottom:212.768250px;}
.y3f{bottom:212.769750px;}
.y18d{bottom:213.704250px;}
.y2d7{bottom:213.790350px;}
.y22{bottom:217.871250px;}
.y259{bottom:218.130750px;}
.y40{bottom:219.401250px;}
.yd2{bottom:222.803700px;}
.y89{bottom:223.569450px;}
.y292{bottom:225.014100px;}
.y160{bottom:225.020250px;}
.y210{bottom:225.528750px;}
.y319{bottom:226.545450px;}
.y131{bottom:227.481750px;}
.y229{bottom:227.649750px;}
.y1ad{bottom:228.248250px;}
.y105{bottom:228.330600px;}
.y2d6{bottom:229.181700px;}
.y3e{bottom:230.372250px;}
.y20{bottom:234.453750px;}
.y258{bottom:235.647750px;}
.yd1{bottom:237.771150px;}
.y88{bottom:238.450500px;}
.y291{bottom:239.981550px;}
.y21{bottom:241.086750px;}
.y15f{bottom:241.517250px;}
.y318{bottom:241.597950px;}
.y20f{bottom:242.025750px;}
.y104{bottom:243.213000px;}
.y2d5{bottom:244.234200px;}
.y130{bottom:244.235250px;}
.y1ac{bottom:245.085750px;}
.y3d{bottom:247.976250px;}
.y187{bottom:248.235750px;}
.y1f{bottom:251.036250px;}
.y1d{bottom:251.037750px;}
.yd0{bottom:252.652200px;}
.y257{bottom:253.251750px;}
.y87{bottom:253.332900px;}
.y290{bottom:254.949000px;}
.y317{bottom:256.734150px;}
.y1e{bottom:257.669250px;}
.y103{bottom:258.009000px;}
.y15e{bottom:258.014250px;}
.y20e{bottom:258.608250px;}
.y2d4{bottom:259.710600px;}
.y12f{bottom:260.987250px;}
.y1ab{bottom:261.837750px;}
.y186{bottom:264.732750px;}
.y3c{bottom:265.578750px;}
.ycf{bottom:267.619650px;}
.y1c{bottom:267.620250px;}
.y86{bottom:268.213950px;}
.y28f{bottom:270.000150px;}
.y256{bottom:270.768750px;}
.y316{bottom:271.956750px;}
.y102{bottom:272.891400px;}
.y15d{bottom:274.512750px;}
.y2d3{bottom:275.188350px;}
.y20d{bottom:275.190750px;}
.y12e{bottom:277.739250px;}
.y1aa{bottom:278.676750px;}
.y185{bottom:281.229750px;}
.yce{bottom:282.585750px;}
.ycc{bottom:282.586200px;}
.y85{bottom:283.096350px;}
.y3b{bottom:283.181250px;}
.y1b{bottom:284.202750px;}
.y28e{bottom:284.967600px;}
.y315{bottom:287.092950px;}
.y101{bottom:287.773800px;}
.y255{bottom:288.372750px;}
.ycd{bottom:288.537750px;}
.y2d2{bottom:290.664750px;}
.y15c{bottom:291.009750px;}
.y20c{bottom:291.774750px;}
.y12d{bottom:294.492750px;}
.y1a9{bottom:295.514250px;}
.ycb{bottom:297.467250px;}
.y184{bottom:297.728250px;}
.y84{bottom:297.893700px;}
.y28d{bottom:300.018750px;}
.y1a{bottom:300.699750px;}
.y3a{bottom:300.785250px;}
.y314{bottom:302.145450px;}
.y100{bottom:302.569800px;}
.y2d1{bottom:305.632200px;}
.y254{bottom:305.975250px;}
.y15b{bottom:307.506750px;}
.y20b{bottom:308.271750px;}
.y12c{bottom:311.244750px;}
.y1a8{bottom:312.351750px;}
.yca{bottom:312.434250px;}
.y83{bottom:312.774750px;}
.y28c{bottom:313.794750px;}
.y183{bottom:314.225250px;}
.y18{bottom:317.282250px;}
.y313{bottom:317.283000px;}
.yff{bottom:317.452200px;}
.y39{bottom:318.387750px;}
.y2d0{bottom:321.109950px;}
.y1c6{bottom:323.492250px;}
.y253{bottom:323.493750px;}
.y19{bottom:323.999250px;}
.y15a{bottom:324.005250px;}
.y20a{bottom:324.854250px;}
.yc9{bottom:327.316650px;}
.y82{bottom:327.657150px;}
.y12b{bottom:327.998250px;}
.y1a7{bottom:329.189250px;}
.y182{bottom:330.722250px;}
.yfe{bottom:332.333250px;}
.y312{bottom:332.419200px;}
.y17{bottom:333.864750px;}
.y38{bottom:335.990250px;}
.y36{bottom:335.991750px;}
.y2cf{bottom:336.586350px;}
.y159{bottom:340.502250px;}
.y1c5{bottom:340.668750px;}
.y252{bottom:341.096250px;}
.y209{bottom:341.436750px;}
.yc8{bottom:342.285150px;}
.y1ec{bottom:342.287250px;}
.y81{bottom:342.539550px;}
.y37{bottom:342.708750px;}
.y12a{bottom:344.835750px;}
.y1a6{bottom:346.026750px;}
.yfd{bottom:347.130600px;}
.y181{bottom:347.220750px;}
.y311{bottom:347.641800px;}
.y15{bottom:350.447250px;}
.y28b{bottom:351.468750px;}
.y2ce{bottom:352.064100px;}
.y35{bottom:353.594250px;}
.y158{bottom:356.999250px;}
.y16{bottom:357.165750px;}
.yc7{bottom:357.166200px;}
.y4e{bottom:357.195000px;}
.y80{bottom:357.420600px;}
.y1c4{bottom:357.932250px;}
.y208{bottom:357.933750px;}
.y251{bottom:358.614750px;}
.y1eb{bottom:358.869750px;}
.y129{bottom:361.587750px;}
.yfc{bottom:362.013000px;}
.y310{bottom:362.607900px;}
.y1a5{bottom:362.780250px;}
.y180{bottom:363.717750px;}
.y14{bottom:367.029750px;}
.y2cd{bottom:367.030200px;}
.y28a{bottom:367.967250px;}
.y7f{bottom:370.772100px;}
.y33{bottom:371.282250px;}
.yc6{bottom:372.133650px;}
.y157{bottom:373.497750px;}
.y207{bottom:374.516250px;}
.y1c3{bottom:375.110250px;}
.y1ea{bottom:375.366750px;}
.y250{bottom:376.217250px;}
.yfb{bottom:376.809000px;}
.y30f{bottom:377.830500px;}
.y34{bottom:377.915250px;}
.y128{bottom:378.341250px;}
.y1a4{bottom:379.617750px;}
.y17f{bottom:380.216250px;}
.y2cc{bottom:382.507950px;}
.y13{bottom:383.612250px;}
.y289{bottom:384.464250px;}
.y7e{bottom:385.654500px;}
.y32{bottom:388.886250px;}
.y156{bottom:389.994750px;}
.y206{bottom:391.098750px;}
.y1e9{bottom:391.865250px;}
.y1c2{bottom:392.288250px;}
.yc5{bottom:392.370750px;}
.y30e{bottom:392.968050px;}
.y24f{bottom:393.735750px;}
.y127{bottom:395.093250px;}
.y1a3{bottom:396.455250px;}
.y17e{bottom:396.713250px;}
.yfa{bottom:396.964500px;}
.y2cb{bottom:397.984350px;}
.y12{bottom:400.194750px;}
.y7d{bottom:400.535550px;}
.y288{bottom:400.961250px;}
.yc4{bottom:401.982150px;}
.y4d{bottom:404.880000px;}
.y31{bottom:406.488750px;}
.y155{bottom:406.493250px;}
.y205{bottom:407.597250px;}
.y30d{bottom:408.189300px;}
.y1e8{bottom:408.447750px;}
.y1c1{bottom:409.550250px;}
.y24e{bottom:411.338250px;}
.yf9{bottom:411.760500px;}
.y126{bottom:411.846750px;}
.y17d{bottom:413.210250px;}
.y1a2{bottom:413.292750px;}
.y2ca{bottom:413.462100px;}
.y7c{bottom:415.417950px;}
.yc3{bottom:416.948250px;}
.y287{bottom:417.543750px;}
.y154{bottom:422.990250px;}
.y30c{bottom:423.326850px;}
.y11{bottom:423.495750px;}
.y2e{bottom:424.088250px;}
.y30{bottom:424.091250px;}
.y204{bottom:424.179750px;}
.y1e7{bottom:424.944750px;}
.y1c0{bottom:426.728250px;}
.yf8{bottom:428.088750px;}
.y125{bottom:428.598750px;}
.y2c9{bottom:428.939850px;}
.y24d{bottom:428.940750px;}
.y17c{bottom:429.708750px;}
.y1a1{bottom:430.130250px;}
.y7b{bottom:430.299000px;}
.y2f{bottom:430.724250px;}
.yc2{bottom:431.830650px;}
.y286{bottom:434.042250px;}
.y30b{bottom:438.548100px;}
.y153{bottom:439.487250px;}
.y203{bottom:440.762250px;}
.y1e6{bottom:441.441750px;}
.yf7{bottom:442.969800px;}
.y2c8{bottom:443.905950px;}
.y1bf{bottom:443.991750px;}
.y7a{bottom:445.096350px;}
.y124{bottom:445.350750px;}
.y17b{bottom:446.205750px;}
.y24c{bottom:446.459250px;}
.y1a0{bottom:446.798250px;}
.y285{bottom:450.539250px;}
.yc1{bottom:452.069250px;}
.y30a{bottom:453.515550px;}
.y152{bottom:455.985750px;}
.y202{bottom:457.259250px;}
.y1e5{bottom:458.024250px;}
.yf6{bottom:459.298050px;}
.y2c7{bottom:459.383700px;}
.y79{bottom:459.978750px;}
.y1be{bottom:460.829250px;}
.yc0{bottom:461.680200px;}
.y122{bottom:462.020250px;}
.y17a{bottom:462.702750px;}
.y19f{bottom:463.550250px;}
.y24b{bottom:464.063250px;}
.y228{bottom:465.165750px;}
.y284{bottom:467.036250px;}
.y123{bottom:468.651750px;}
.y151{bottom:472.482750px;}
.y201{bottom:473.841750px;}
.yf5{bottom:474.179100px;}
.y1e4{bottom:474.522750px;}
.y78{bottom:474.859800px;}
.y2c6{bottom:474.860100px;}
.y10{bottom:475.796250px;}
.ybf{bottom:476.646300px;}
.y1bd{bottom:478.007250px;}
.y121{bottom:478.772250px;}
.y179{bottom:479.201250px;}
.y19e{bottom:480.387750px;}
.y24a{bottom:481.580250px;}
.y283{bottom:483.534750px;}
.y309{bottom:483.874350px;}
.y150{bottom:488.979750px;}
.y77{bottom:489.742200px;}
.y2c5{bottom:489.827550px;}
.y200{bottom:490.424250px;}
.yf4{bottom:490.507350px;}
.y1e3{bottom:491.019750px;}
.ybe{bottom:491.613750px;}
.yf{bottom:492.293250px;}
.y1bc{bottom:495.270750px;}
.y120{bottom:495.525750px;}
.y178{bottom:495.698250px;}
.y19d{bottom:497.225250px;}
.y308{bottom:498.841800px;}
.y249{bottom:499.184250px;}
.y282{bottom:500.031750px;}
.y76{bottom:504.623400px;}
.yf3{bottom:505.303350px;}
.y2c4{bottom:505.305300px;}
.y14f{bottom:505.478250px;}
.ybd{bottom:506.496150px;}
.y1ff{bottom:506.922750px;}
.y1e2{bottom:507.602250px;}
.ye{bottom:508.791750px;}
.y177{bottom:512.195250px;}
.y11f{bottom:512.277750px;}
.y1bb{bottom:512.447250px;}
.y307{bottom:514.063050px;}
.y19c{bottom:514.064250px;}
.y281{bottom:516.528750px;}
.y248{bottom:516.701250px;}
.y75{bottom:519.505800px;}
.yf2{bottom:520.185750px;}
.y2c3{bottom:520.781700px;}
.ybc{bottom:521.462250px;}
.y14e{bottom:521.975250px;}
.y1fe{bottom:523.505250px;}
.y1e1{bottom:524.100750px;}
.yd{bottom:525.374250px;}
.y176{bottom:528.693750px;}
.y11e{bottom:529.031250px;}
.y306{bottom:529.200600px;}
.y1ba{bottom:529.710750px;}
.y19b{bottom:530.901750px;}
.y280{bottom:531.836250px;}
.y247{bottom:534.305250px;}
.y74{bottom:534.388200px;}
.y2c2{bottom:536.259450px;}
.ybb{bottom:536.429700px;}
.y14d{bottom:538.472250px;}
.y1fd{bottom:540.087750px;}
.yf1{bottom:540.254850px;}
.y1e0{bottom:540.597750px;}
.yc{bottom:541.871250px;}
.y305{bottom:544.251750px;}
.y175{bottom:545.190750px;}
.y11d{bottom:545.783250px;}
.y1b9{bottom:546.888750px;}
.y19a{bottom:547.739250px;}
.y73{bottom:549.269250px;}
.y2c1{bottom:551.310600px;}
.yba{bottom:551.395800px;}
.y246{bottom:551.907750px;}
.y14c{bottom:554.970750px;}
.yf0{bottom:555.137250px;}
.y1fc{bottom:556.584750px;}
.y1df{bottom:557.094750px;}
.yb{bottom:558.368250px;}
.y304{bottom:559.389300px;}
.y174{bottom:561.687750px;}
.y11c{bottom:562.535250px;}
.y1b8{bottom:563.726250px;}
.y72{bottom:564.066600px;}
.y199{bottom:564.491250px;}
.yb9{bottom:566.278200px;}
.y2c0{bottom:566.788350px;}
.y245{bottom:569.426250px;}
.y27f{bottom:569.508750px;}
.yef{bottom:569.933250px;}
.y14b{bottom:571.467750px;}
.y1fb{bottom:573.167250px;}
.y1de{bottom:573.677250px;}
.y303{bottom:574.611900px;}
.ya{bottom:574.866750px;}
.y173{bottom:578.270250px;}
.y71{bottom:578.949000px;}
.y11b{bottom:579.203250px;}
.y1b7{bottom:580.989750px;}
.yb8{bottom:581.245650px;}
.y198{bottom:581.328750px;}
.y2bf{bottom:582.179700px;}
.yee{bottom:584.815650px;}
.y27e{bottom:586.346250px;}
.y244{bottom:587.028750px;}
.y14a{bottom:587.964750px;}
.y302{bottom:589.748100px;}
.y1fa{bottom:589.749750px;}
.y1dd{bottom:590.175750px;}
.y9{bottom:591.363750px;}
.y70{bottom:593.830050px;}
.y172{bottom:594.768750px;}
.y11a{bottom:595.956750px;}
.yb7{bottom:596.211750px;}
.y2be{bottom:597.657450px;}
.y197{bottom:598.166250px;}
.yed{bottom:599.698050px;}
.y149{bottom:604.463250px;}
.y243{bottom:604.547250px;}
.y301{bottom:604.715550px;}
.y1f9{bottom:606.248250px;}
.y27d{bottom:606.416250px;}
.y1dc{bottom:606.672750px;}
.y8{bottom:607.860750px;}
.y6f{bottom:608.712450px;}
.yb6{bottom:611.094150px;}
.y171{bottom:611.265750px;}
.y119{bottom:612.708750px;}
.y2bd{bottom:613.135200px;}
.yec{bottom:614.494050px;}
.y300{bottom:619.936800px;}
.y148{bottom:620.960250px;}
.y242{bottom:622.149750px;}
.y1f8{bottom:622.830750px;}
.y27c{bottom:622.998750px;}
.y1db{bottom:623.255250px;}
.y6e{bottom:623.593500px;}
.yb5{bottom:626.060250px;}
.y170{bottom:627.764250px;}
.y2bc{bottom:628.611600px;}
.yeb{bottom:629.376450px;}
.y118{bottom:629.456550px;}
.y1ca{bottom:630.397500px;}
.y2ff{bottom:634.904250px;}
.y147{bottom:637.457250px;}
.y6d{bottom:638.475900px;}
.y1f7{bottom:639.413250px;}
.y27b{bottom:639.495750px;}
.y1da{bottom:639.752250px;}
.yb3{bottom:640.940850px;}
.y2bb{bottom:643.664100px;}
.yea{bottom:644.258850px;}
.y16f{bottom:644.261250px;}
.y1c9{bottom:645.448650px;}
.y117{bottom:646.210050px;}
.yb4{bottom:646.979250px;}
.y2fe{bottom:650.126850px;}
.y6c{bottom:653.358300px;}
.y146{bottom:653.955750px;}
.yb2{bottom:655.906950px;}
.y1f6{bottom:655.910250px;}
.y27a{bottom:656.249250px;}
.y1d9{bottom:656.250750px;}
.y241{bottom:657.270750px;}
.ye9{bottom:659.054850px;}
.y2ba{bottom:659.140500px;}
.y1c8{bottom:660.416100px;}
.y16e{bottom:660.758250px;}
.y116{bottom:662.962050px;}
.y2fd{bottom:665.092950px;}
.y6b{bottom:668.239350px;}
.y145{bottom:670.452750px;}
.yb1{bottom:670.874400px;}
.y1f5{bottom:672.492750px;}
.y1d8{bottom:672.833250px;}
.ye8{bottom:673.937250px;}
.y2b9{bottom:674.533200px;}
.y240{bottom:674.873250px;}
.y1c7{bottom:675.467250px;}
.y16d{bottom:677.256750px;}
.y115{bottom:679.630050px;}
.y2fc{bottom:680.315550px;}
.y6a{bottom:683.036700px;}
.yb0{bottom:685.756800px;}
.y279{bottom:688.395750px;}
.ye7{bottom:688.734900px;}
.y1f4{bottom:689.075250px;}
.y1d7{bottom:689.330250px;}
.y2b8{bottom:690.009600px;}
.y23f{bottom:692.391750px;}
.y16c{bottom:693.753750px;}
.y2fb{bottom:695.451750px;}
.y227{bottom:696.302250px;}
.y114{bottom:696.383550px;}
.y69{bottom:697.917750px;}
.yaf{bottom:700.722900px;}
.ye6{bottom:703.617300px;}
.y278{bottom:704.892750px;}
.y188{bottom:705.146250px;}
.y2b7{bottom:705.487350px;}
.y1f3{bottom:705.657750px;}
.y1d6{bottom:705.828750px;}
.y23e{bottom:709.994250px;}
.y16b{bottom:710.250750px;}
.y2fa{bottom:710.589300px;}
.y113{bottom:713.135550px;}
.yae{bottom:715.605300px;}
.ye5{bottom:718.498350px;}
.y68{bottom:719.517750px;}
.y2b6{bottom:720.539850px;}
.y1f2{bottom:722.156250px;}
.y1d5{bottom:722.411250px;}
.y2f9{bottom:725.641800px;}
.y277{bottom:727.428750px;}
.y23d{bottom:727.512750px;}
.y112{bottom:729.887550px;}
.yad{bottom:730.572750px;}
.ye4{bottom:733.295700px;}
.y2b5{bottom:736.016250px;}
.y1f1{bottom:738.738750px;}
.y1d4{bottom:738.908250px;}
.y2f8{bottom:740.778000px;}
.y276{bottom:743.925750px;}
.y23c{bottom:745.115250px;}
.yac{bottom:745.453800px;}
.y111{bottom:746.641050px;}
.ye2{bottom:748.176750px;}
.y18c{bottom:750.304050px;}
.y2b4{bottom:751.494000px;}
.ye3{bottom:754.214250px;}
.y1f0{bottom:755.321250px;}
.y1d3{bottom:755.405250px;}
.y2f7{bottom:756.000600px;}
.y67{bottom:757.022250px;}
.yab{bottom:760.421250px;}
.y275{bottom:760.422750px;}
.y23b{bottom:762.719250px;}
.y18b{bottom:765.270150px;}
.y2b3{bottom:766.885350px;}
.y2f6{bottom:770.968050px;}
.y1ef{bottom:771.818250px;}
.y1d2{bottom:771.987750px;}
.y66{bottom:773.604750px;}
.yaa{bottom:775.387350px;}
.y274{bottom:776.921250px;}
.y13d{bottom:778.959750px;}
.y23a{bottom:780.236250px;}
.y18a{bottom:780.322650px;}
.y2b2{bottom:782.363100px;}
.y2f5{bottom:786.189300px;}
.y1ee{bottom:788.400750px;}
.y1d1{bottom:788.486250px;}
.y65{bottom:790.101750px;}
.ya9{bottom:790.269750px;}
.y273{bottom:793.418250px;}
.y189{bottom:795.288750px;}
.y2b1{bottom:797.414250px;}
.y239{bottom:797.840250px;}
.y2f4{bottom:801.326850px;}
.y1d0{bottom:804.983250px;}
.ya8{bottom:805.237200px;}
.y64{bottom:806.600250px;}
.y272{bottom:809.915250px;}
.y2b0{bottom:812.892000px;}
.y238{bottom:815.357250px;}
.y2f3{bottom:816.548100px;}
.ya7{bottom:820.118250px;}
.y1ed{bottom:821.480250px;}
.y1cf{bottom:821.565750px;}
.y63{bottom:823.182750px;}
.y271{bottom:826.752750px;}
.y2af{bottom:828.369750px;}
.y2f2{bottom:831.515550px;}
.y237{bottom:832.961250px;}
.ya6{bottom:835.085700px;}
.y1ce{bottom:838.062750px;}
.y62{bottom:839.679750px;}
.y2ae{bottom:843.846150px;}
.y2f1{bottom:846.652800px;}
.ya5{bottom:850.053150px;}
.y236{bottom:850.478250px;}
.y270{bottom:854.306250px;}
.y6{bottom:854.390250px;}
.y61{bottom:856.176750px;}
.y7{bottom:856.431750px;}
.y2ad{bottom:858.813600px;}
.y2f0{bottom:861.875400px;}
.ya4{bottom:864.934200px;}
.y21c{bottom:870.293100px;}
.y26f{bottom:870.804750px;}
.y60{bottom:872.675250px;}
.y235{bottom:874.289250px;}
.y2ac{bottom:874.290000px;}
.y2ef{bottom:877.011600px;}
.ya3{bottom:879.901650px;}
.y21b{bottom:885.344250px;}
.y26e{bottom:887.301750px;}
.y5f{bottom:889.257750px;}
.y2ab{bottom:889.767750px;}
.y2ee{bottom:892.064100px;}
.ya2{bottom:894.782700px;}
.y26d{bottom:903.798750px;}
.y2aa{bottom:904.735200px;}
.y5e{bottom:905.754750px;}
.y2ed{bottom:907.200300px;}
.y5{bottom:908.304750px;}
.ya1{bottom:909.750150px;}
.y234{bottom:911.793750px;}
.y2a9{bottom:920.211600px;}
.y26c{bottom:920.636250px;}
.y5d{bottom:922.251750px;}
.y2ec{bottom:922.422900px;}
.ya0{bottom:924.717600px;}
.y233{bottom:929.396250px;}
.y26b{bottom:935.093250px;}
.y2a8{bottom:935.689350px;}
.y2eb{bottom:937.560450px;}
.y5c{bottom:938.750250px;}
.y9f{bottom:939.598650px;}
.y4{bottom:944.957250px;}
.y232{bottom:946.914750px;}
.y2a7{bottom:950.655450px;}
.y2ea{bottom:952.781700px;}
.y9e{bottom:954.566100px;}
.y5b{bottom:955.332750px;}
.y144{bottom:955.503750px;}
.y231{bottom:964.517250px;}
.y2a6{bottom:966.133200px;}
.y2e9{bottom:967.749150px;}
.y9d{bottom:969.447150px;}
.y5a{bottom:971.829750px;}
.y143{bottom:972.000750px;}
.y3{bottom:974.978709px;}
.y26a{bottom:978.123750px;}
.y2a5{bottom:981.609600px;}
.y230{bottom:982.035750px;}
.y2e8{bottom:982.885350px;}
.y9c{bottom:984.414600px;}
.y59{bottom:988.326750px;}
.y57{bottom:988.328250px;}
.y142{bottom:988.497750px;}
.y269{bottom:994.622250px;}
.y58{bottom:995.045250px;}
.y2a4{bottom:996.662100px;}
.y2e7{bottom:998.107950px;}
.y32a{bottom:998.958450px;}
.y9b{bottom:999.382050px;}
.y22f{bottom:999.638250px;}
.y2{bottom:1002.018750px;}
.y55{bottom:1004.910750px;}
.y141{bottom:1004.996250px;}
.y268{bottom:1011.119250px;}
.y56{bottom:1011.543750px;}
.y2a3{bottom:1012.139850px;}
.y2e6{bottom:1013.245500px;}
.y329{bottom:1014.009600px;}
.y9a{bottom:1014.348150px;}
.y22e{bottom:1017.240750px;}
.y54{bottom:1021.407750px;}
.y140{bottom:1021.493250px;}
.y2a2{bottom:1027.531200px;}
.y2e5{bottom:1028.466750px;}
.y328{bottom:1028.977050px;}
.y99{bottom:1029.230550px;}
.y267{bottom:1032.974250px;}
.y22d{bottom:1034.759250px;}
.y53{bottom:1037.906250px;}
.y13f{bottom:1037.990250px;}
.y2a1{bottom:1043.008950px;}
.y2e4{bottom:1043.604300px;}
.y327{bottom:1043.944500px;}
.y98{bottom:1044.112950px;}
.y266{bottom:1049.471250px;}
.y47{bottom:1050.746250px;}
.y22c{bottom:1052.361750px;}
.y52{bottom:1054.403250px;}
.y13e{bottom:1054.488750px;}
.y2a0{bottom:1058.060100px;}
.y2e3{bottom:1058.655450px;}
.y326{bottom:1058.995650px;}
.y97{bottom:1059.079050px;}
.y264{bottom:1066.308750px;}
.y265{bottom:1068.264750px;}
.y22b{bottom:1069.880250px;}
.y51{bottom:1070.985750px;}
.y29f{bottom:1073.537850px;}
.y2e2{bottom:1073.793000px;}
.y325{bottom:1073.963100px;}
.y96{bottom:1074.046500px;}
.y263{bottom:1080.765750px;}
.y13c{bottom:1086.717750px;}
.y4c{bottom:1087.350000px;}
.y4f{bottom:1087.482750px;}
.y95{bottom:1089.012600px;}
.y29e{bottom:1089.014250px;}
.y50{bottom:1094.117250px;}
.ydf{bottom:1117.502250px;}
.he{height:25.560000px;}
.hd{height:26.838000px;}
.h12{height:27.284362px;}
.h13{height:27.423530px;}
.ha{height:30.316513px;}
.h16{height:32.444567px;}
.h1f{height:33.273000px;}
.hc{height:34.079574px;}
.h7{height:34.451731px;}
.h1b{height:36.383545px;}
.h5{height:38.934000px;}
.hb{height:40.932000px;}
.h20{height:41.097000px;}
.h21{height:42.000000px;}
.h15{height:43.260000px;}
.h23{height:43.800000px;}
.hf{height:43.804688px;}
.h24{height:43.806000px;}
.h1a{height:45.420000px;}
.h9{height:45.423000px;}
.h22{height:45.474000px;}
.h8{height:45.480000px;}
.h11{height:47.109375px;}
.h14{height:48.503930px;}
.h17{height:48.506930px;}
.h18{height:48.513530px;}
.h1e{height:51.156638px;}
.h19{height:53.959945px;}
.h4{height:59.123545px;}
.h6{height:64.863281px;}
.h3{height:73.541567px;}
.h1c{height:84.344546px;}
.h1d{height:145.536000px;}
.h2{height:1174.479000px;}
.h10{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x1{left:13.436250px;}
.x1e{left:27.000000px;}
.x2{left:63.779400px;}
.x3f{left:69.732150px;}
.x24{left:77.217750px;}
.x2f{left:78.746400px;}
.x2e{left:84.189300px;}
.x2c{left:85.465050px;}
.x3{left:98.475450px;}
.x2d{left:99.752100px;}
.x6{left:112.081800px;}
.x2a{left:116.673900px;}
.x8{left:118.034550px;}
.x2b{left:129.259800px;}
.x7{left:137.168250px;}
.x9{left:144.651750px;}
.xa{left:145.757250px;}
.xb{left:185.130750px;}
.x19{left:272.721750px;}
.x1f{left:275.187750px;}
.x1a{left:300.104070px;}
.x20{left:309.203250px;}
.x21{left:315.836250px;}
.x22{left:323.999250px;}
.x23{left:370.686750px;}
.xe{left:382.932750px;}
.xc{left:394.071750px;}
.xf{left:403.256250px;}
.xd{left:405.042750px;}
.x29{left:426.642750px;}
.x10{left:459.720750px;}
.x38{left:462.785026px;}
.x3b{left:465.335250px;}
.x39{left:471.289319px;}
.x25{left:473.243700px;}
.x31{left:474.774750px;}
.x3d{left:486.764250px;}
.x3e{left:489.740250px;}
.x4{left:491.867250px;}
.x3c{left:495.777750px;}
.x11{left:498.840750px;}
.x12{left:518.484750px;}
.x33{left:553.692289px;}
.x16{left:562.704750px;}
.x32{left:564.831750px;}
.x34{left:575.800813px;}
.x17{left:597.401250px;}
.x1d{left:608.550000px;}
.x5{left:638.985750px;}
.x1b{left:647.999250px;}
.x27{left:663.137250px;}
.x14{left:673.086750px;}
.x28{left:676.913250px;}
.x1c{left:693.664350px;}
.x36{left:695.110521px;}
.x35{left:706.251182px;}
.x15{left:710.843250px;}
.x37{left:720.112209px;}
.x18{left:777.005250px;}
.x30{left:785.423250px;}
.x13{left:796.053750px;}
.x3a{left:808.893750px;}
.x26{left:809.999250px;}
@media print{
.v5{vertical-align:-32.960320pt;}
.v8{vertical-align:-28.421333pt;}
.v7{vertical-align:-18.746667pt;}
.v6{vertical-align:-9.675200pt;}
.vc{vertical-align:-6.954667pt;}
.v3{vertical-align:-2.725333pt;}
.v4{vertical-align:-1.813333pt;}
.ve{vertical-align:-0.906667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:0.906667pt;}
.v1{vertical-align:1.809586pt;}
.v2{vertical-align:5.445333pt;}
.v9{vertical-align:18.746667pt;}
.va{vertical-align:20.878933pt;}
.vb{vertical-align:42.632000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.009600pt;}
.ls48{letter-spacing:0.031996pt;}
.ls47{letter-spacing:0.037333pt;}
.ls1e{letter-spacing:0.038400pt;}
.lsc{letter-spacing:0.043200pt;}
.ls4d{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.058667pt;}
.ls6a{letter-spacing:0.062400pt;}
.ls1c{letter-spacing:0.074667pt;}
.ls1a{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.111014pt;}
.lsa{letter-spacing:0.116348pt;}
.ls78{letter-spacing:0.129600pt;}
.ls38{letter-spacing:0.138667pt;}
.ls36{letter-spacing:0.154667pt;}
.ls56{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.197333pt;}
.ls64{letter-spacing:0.225600pt;}
.ls28{letter-spacing:0.228521pt;}
.lsd{letter-spacing:0.240000pt;}
.ls72{letter-spacing:0.244800pt;}
.ls27{letter-spacing:0.261333pt;}
.ls11{letter-spacing:0.388800pt;}
.ls24{letter-spacing:0.400000pt;}
.ls65{letter-spacing:0.422400pt;}
.ls75{letter-spacing:0.460800pt;}
.ls4{letter-spacing:0.476390pt;}
.lse{letter-spacing:0.484800pt;}
.ls69{letter-spacing:0.508800pt;}
.ls50{letter-spacing:0.517333pt;}
.ls0{letter-spacing:0.538667pt;}
.ls4e{letter-spacing:0.544000pt;}
.ls5a{letter-spacing:0.571200pt;}
.ls3{letter-spacing:0.639926pt;}
.ls29{letter-spacing:0.650667pt;}
.ls6c{letter-spacing:0.662400pt;}
.ls35{letter-spacing:0.714667pt;}
.ls1{letter-spacing:0.720000pt;}
.ls39{letter-spacing:0.762667pt;}
.lsb{letter-spacing:0.873600pt;}
.ls67{letter-spacing:0.907200pt;}
.ls10{letter-spacing:0.912000pt;}
.ls73{letter-spacing:0.921600pt;}
.ls46{letter-spacing:0.965333pt;}
.ls45{letter-spacing:0.976000pt;}
.ls3d{letter-spacing:1.018667pt;}
.ls61{letter-spacing:1.051200pt;}
.ls6{letter-spacing:1.162667pt;}
.ls68{letter-spacing:1.209600pt;}
.ls5{letter-spacing:1.248000pt;}
.ls2c{letter-spacing:1.269333pt;}
.ls6d{letter-spacing:1.276800pt;}
.ls7c{letter-spacing:1.300800pt;}
.ls2e{letter-spacing:1.306667pt;}
.ls7{letter-spacing:1.333333pt;}
.ls5e{letter-spacing:1.363200pt;}
.ls4c{letter-spacing:1.397333pt;}
.ls53{letter-spacing:1.509333pt;}
.ls4f{letter-spacing:1.573333pt;}
.ls57{letter-spacing:2.960000pt;}
.ls58{letter-spacing:4.912000pt;}
.ls1d{letter-spacing:8.160145pt;}
.ls14{letter-spacing:8.304000pt;}
.ls76{letter-spacing:8.472000pt;}
.ls18{letter-spacing:9.067200pt;}
.ls13{letter-spacing:9.369600pt;}
.ls41{letter-spacing:9.429333pt;}
.ls7d{letter-spacing:9.681600pt;}
.ls44{letter-spacing:10.032000pt;}
.ls54{letter-spacing:10.336000pt;}
.ls23{letter-spacing:10.434145pt;}
.ls2d{letter-spacing:10.634667pt;}
.ls16{letter-spacing:11.025600pt;}
.ls3a{letter-spacing:11.289459pt;}
.ls15{letter-spacing:11.328000pt;}
.ls66{letter-spacing:11.496000pt;}
.ls3b{letter-spacing:11.592388pt;}
.ls63{letter-spacing:11.625600pt;}
.ls62{letter-spacing:11.793600pt;}
.ls32{letter-spacing:11.845333pt;}
.ls3f{letter-spacing:12.144000pt;}
.ls60{letter-spacing:12.528000pt;}
.ls8{letter-spacing:12.648000pt;}
.ls5f{letter-spacing:12.700800pt;}
.ls59{letter-spacing:12.705600pt;}
.ls70{letter-spacing:12.777600pt;}
.ls6e{letter-spacing:12.830400pt;}
.ls17{letter-spacing:12.840000pt;}
.ls77{letter-spacing:13.003200pt;}
.ls5d{letter-spacing:13.008000pt;}
.ls43{letter-spacing:13.354667pt;}
.ls2b{letter-spacing:13.402667pt;}
.ls49{letter-spacing:13.408000pt;}
.ls55{letter-spacing:13.920000pt;}
.ls52{letter-spacing:13.957333pt;}
.ls2a{letter-spacing:14.010667pt;}
.ls6f{letter-spacing:14.217600pt;}
.ls34{letter-spacing:14.261333pt;}
.ls12{letter-spacing:14.846400pt;}
.ls42{letter-spacing:14.869333pt;}
.ls79{letter-spacing:15.124800pt;}
.ls22{letter-spacing:15.148800pt;}
.ls21{letter-spacing:16.482145pt;}
.ls19{letter-spacing:16.526400pt;}
.ls1b{letter-spacing:16.574397pt;}
.ls4b{letter-spacing:16.677333pt;}
.ls3c{letter-spacing:16.682667pt;}
.ls30{letter-spacing:16.981333pt;}
.ls31{letter-spacing:17.285333pt;}
.ls4a{letter-spacing:17.290667pt;}
.ls74{letter-spacing:20.140800pt;}
.ls7a{letter-spacing:20.870400pt;}
.ls7b{letter-spacing:20.995200pt;}
.ls5b{letter-spacing:21.168000pt;}
.ls71{letter-spacing:21.172800pt;}
.ls3e{letter-spacing:21.221333pt;}
.ls5c{letter-spacing:21.297600pt;}
.ls6b{letter-spacing:21.777600pt;}
.ls20{letter-spacing:21.801600pt;}
.ls37{letter-spacing:21.872000pt;}
.ls33{letter-spacing:22.730667pt;}
.ls2f{letter-spacing:23.333333pt;}
.ls25{letter-spacing:32.757333pt;}
.ls51{letter-spacing:33.850667pt;}
.ws2b5{word-spacing:-37.296000pt;}
.ws2{word-spacing:-34.319736pt;}
.ws0{word-spacing:-30.309688pt;}
.ws1{word-spacing:-30.173689pt;}
.ws75{word-spacing:-29.424000pt;}
.ws2a7{word-spacing:-26.400000pt;}
.ws1b0{word-spacing:-26.378667pt;}
.ws1c8{word-spacing:-26.154340pt;}
.ws1b1{word-spacing:-24.960000pt;}
.ws153{word-spacing:-24.144000pt;}
.ws3d{word-spacing:-23.978667pt;}
.ws25c{word-spacing:-23.866667pt;}
.wsbf{word-spacing:-23.856000pt;}
.ws141{word-spacing:-23.818667pt;}
.ws28b{word-spacing:-23.808000pt;}
.ws166{word-spacing:-23.701333pt;}
.ws11e{word-spacing:-23.642667pt;}
.wse3{word-spacing:-23.611200pt;}
.ws237{word-spacing:-23.584000pt;}
.ws295{word-spacing:-23.525333pt;}
.ws22f{word-spacing:-23.514667pt;}
.ws27e{word-spacing:-23.504000pt;}
.ws230{word-spacing:-23.477333pt;}
.ws22e{word-spacing:-23.402667pt;}
.ws22d{word-spacing:-23.397333pt;}
.ws236{word-spacing:-23.376000pt;}
.ws24a{word-spacing:-23.333333pt;}
.ws23c{word-spacing:-23.306667pt;}
.ws5c{word-spacing:-23.280000pt;}
.ws26c{word-spacing:-23.242667pt;}
.ws39{word-spacing:-23.237333pt;}
.ws279{word-spacing:-23.232000pt;}
.ws174{word-spacing:-23.093333pt;}
.ws192{word-spacing:-23.077333pt;}
.ws1a7{word-spacing:-22.944000pt;}
.ws21d{word-spacing:-22.938667pt;}
.ws22a{word-spacing:-22.928000pt;}
.ws275{word-spacing:-22.901333pt;}
.ws249{word-spacing:-22.896000pt;}
.ws263{word-spacing:-22.858667pt;}
.ws175{word-spacing:-22.794667pt;}
.ws158{word-spacing:-22.773333pt;}
.ws13a{word-spacing:-22.768000pt;}
.ws25a{word-spacing:-22.757333pt;}
.ws1f{word-spacing:-22.746667pt;}
.ws225{word-spacing:-22.714667pt;}
.ws248{word-spacing:-22.704000pt;}
.ws45{word-spacing:-22.698383pt;}
.wsf5{word-spacing:-22.660800pt;}
.ws167{word-spacing:-22.645333pt;}
.ws14c{word-spacing:-22.640000pt;}
.ws61{word-spacing:-22.629600pt;}
.ws23a{word-spacing:-22.560000pt;}
.ws1d0{word-spacing:-22.490667pt;}
.ws180{word-spacing:-22.458667pt;}
.ws11d{word-spacing:-22.456000pt;}
.ws142{word-spacing:-22.410667pt;}
.ws1a6{word-spacing:-22.394667pt;}
.ws147{word-spacing:-22.384000pt;}
.ws207{word-spacing:-22.373333pt;}
.ws2a0{word-spacing:-22.366400pt;}
.ws188{word-spacing:-22.304000pt;}
.ws29a{word-spacing:-22.220800pt;}
.ws5e{word-spacing:-22.192000pt;}
.ws242{word-spacing:-22.186667pt;}
.ws146{word-spacing:-22.165333pt;}
.ws1cc{word-spacing:-22.074667pt;}
.ws1a9{word-spacing:-22.005333pt;}
.ws1b2{word-spacing:-21.952000pt;}
.ws12c{word-spacing:-21.925333pt;}
.ws193{word-spacing:-21.888000pt;}
.ws210{word-spacing:-21.808000pt;}
.ws244{word-spacing:-21.728000pt;}
.ws27d{word-spacing:-21.664000pt;}
.ws243{word-spacing:-21.621333pt;}
.ws1cf{word-spacing:-21.584000pt;}
.ws1ed{word-spacing:-21.578667pt;}
.ws31c{word-spacing:-21.561600pt;}
.wsbe{word-spacing:-21.494400pt;}
.ws31d{word-spacing:-21.422400pt;}
.wse2{word-spacing:-21.417850pt;}
.wsd1{word-spacing:-21.412800pt;}
.ws1fe{word-spacing:-21.381333pt;}
.wsd0{word-spacing:-21.364800pt;}
.wscf{word-spacing:-21.288000pt;}
.ws1b5{word-spacing:-21.280000pt;}
.ws1b3{word-spacing:-21.258667pt;}
.wsc0{word-spacing:-21.220800pt;}
.ws19f{word-spacing:-21.200000pt;}
.wse4{word-spacing:-21.172800pt;}
.ws16b{word-spacing:-21.157333pt;}
.ws154{word-spacing:-21.152000pt;}
.ws1b4{word-spacing:-21.130667pt;}
.ws112{word-spacing:-21.096000pt;}
.ws341{word-spacing:-20.985600pt;}
.ws184{word-spacing:-20.981333pt;}
.ws90{word-spacing:-20.980800pt;}
.ws119{word-spacing:-20.947200pt;}
.ws2ba{word-spacing:-20.944000pt;}
.ws128{word-spacing:-20.901333pt;}
.wse8{word-spacing:-20.875200pt;}
.ws16c{word-spacing:-20.869333pt;}
.ws223{word-spacing:-20.848000pt;}
.ws126{word-spacing:-20.810667pt;}
.ws33e{word-spacing:-20.803200pt;}
.ws1a0{word-spacing:-20.794667pt;}
.ws1ac{word-spacing:-20.762667pt;}
.ws271{word-spacing:-20.730667pt;}
.ws224{word-spacing:-20.714667pt;}
.ws127{word-spacing:-20.709333pt;}
.ws1e3{word-spacing:-20.693333pt;}
.wsd9{word-spacing:-20.683200pt;}
.ws150{word-spacing:-20.677333pt;}
.wsc1{word-spacing:-20.673600pt;}
.wsdb{word-spacing:-20.664000pt;}
.wsda{word-spacing:-20.659200pt;}
.ws305{word-spacing:-20.654400pt;}
.ws122{word-spacing:-20.613333pt;}
.wsc8{word-spacing:-20.611200pt;}
.ws194{word-spacing:-20.608000pt;}
.ws59{word-spacing:-20.597333pt;}
.ws24d{word-spacing:-20.592000pt;}
.wsf1{word-spacing:-20.563200pt;}
.ws18c{word-spacing:-20.554667pt;}
.ws1e2{word-spacing:-20.544000pt;}
.ws30d{word-spacing:-20.539200pt;}
.ws288{word-spacing:-20.512000pt;}
.ws1db{word-spacing:-20.480000pt;}
.ws222{word-spacing:-20.437333pt;}
.ws20e{word-spacing:-20.426667pt;}
.ws2f4{word-spacing:-20.419200pt;}
.wsc4{word-spacing:-20.356800pt;}
.wsc7{word-spacing:-20.347200pt;}
.ws1dc{word-spacing:-20.346667pt;}
.ws18e{word-spacing:-20.325333pt;}
.ws18d{word-spacing:-20.314667pt;}
.ws22b{word-spacing:-20.304000pt;}
.ws2df{word-spacing:-20.284800pt;}
.ws323{word-spacing:-20.270400pt;}
.wsfd{word-spacing:-20.265600pt;}
.ws99{word-spacing:-20.222400pt;}
.ws1d6{word-spacing:-20.202667pt;}
.ws2a1{word-spacing:-20.200800pt;}
.ws29c{word-spacing:-20.175467pt;}
.wscd{word-spacing:-20.174400pt;}
.ws2bd{word-spacing:-20.155200pt;}
.wsce{word-spacing:-20.116800pt;}
.wsad{word-spacing:-20.092800pt;}
.ws324{word-spacing:-20.088000pt;}
.ws2b2{word-spacing:-20.064000pt;}
.wsae{word-spacing:-20.054400pt;}
.wscc{word-spacing:-20.044800pt;}
.ws200{word-spacing:-20.030400pt;}
.ws314{word-spacing:-20.001600pt;}
.ws231{word-spacing:-20.000000pt;}
.ws11c{word-spacing:-19.996800pt;}
.ws179{word-spacing:-19.989333pt;}
.ws36e{word-spacing:-19.915200pt;}
.ws76{word-spacing:-19.905600pt;}
.ws304{word-spacing:-19.900800pt;}
.ws26e{word-spacing:-19.877333pt;}
.ws28f{word-spacing:-19.861333pt;}
.ws77{word-spacing:-19.843200pt;}
.ws16a{word-spacing:-19.808000pt;}
.ws36b{word-spacing:-19.800000pt;}
.wsf0{word-spacing:-19.795200pt;}
.ws73{word-spacing:-19.785600pt;}
.ws1ab{word-spacing:-19.765333pt;}
.ws168{word-spacing:-19.744000pt;}
.ws293{word-spacing:-19.717333pt;}
.ws74{word-spacing:-19.713426pt;}
.wsef{word-spacing:-19.704000pt;}
.ws1e6{word-spacing:-19.690667pt;}
.wsfa{word-spacing:-19.670400pt;}
.ws165{word-spacing:-19.626667pt;}
.ws13d{word-spacing:-19.616000pt;}
.ws24b{word-spacing:-19.573333pt;}
.ws246{word-spacing:-19.472000pt;}
.ws257{word-spacing:-19.468800pt;}
.ws5b{word-spacing:-19.466667pt;}
.ws169{word-spacing:-19.456000pt;}
.ws1e4{word-spacing:-19.445333pt;}
.ws367{word-spacing:-19.435200pt;}
.ws7{word-spacing:-19.406400pt;}
.ws247{word-spacing:-19.397333pt;}
.ws235{word-spacing:-19.392000pt;}
.ws3a{word-spacing:-19.381333pt;}
.ws13e{word-spacing:-19.349333pt;}
.ws185{word-spacing:-19.322667pt;}
.ws1f6{word-spacing:-19.317333pt;}
.wsa{word-spacing:-19.310400pt;}
.ws13f{word-spacing:-19.290667pt;}
.ws26{word-spacing:-19.280000pt;}
.ws123{word-spacing:-19.269333pt;}
.ws21{word-spacing:-19.205333pt;}
.ws88{word-spacing:-19.204800pt;}
.ws27{word-spacing:-19.184000pt;}
.ws10b{word-spacing:-19.176000pt;}
.ws157{word-spacing:-19.162667pt;}
.ws10a{word-spacing:-19.113600pt;}
.ws87{word-spacing:-19.094400pt;}
.ws9e{word-spacing:-19.051200pt;}
.ws20{word-spacing:-19.029333pt;}
.ws262{word-spacing:-18.970667pt;}
.ws212{word-spacing:-18.965333pt;}
.ws29{word-spacing:-18.938667pt;}
.ws325{word-spacing:-18.902400pt;}
.ws26a{word-spacing:-18.878400pt;}
.ws115{word-spacing:-18.864000pt;}
.ws1d4{word-spacing:-18.858667pt;}
.ws16f{word-spacing:-18.837333pt;}
.ws2ef{word-spacing:-18.792000pt;}
.ws2bc{word-spacing:-18.784000pt;}
.wsfc{word-spacing:-18.748800pt;}
.ws1f5{word-spacing:-18.746667pt;}
.ws57{word-spacing:-18.741333pt;}
.ws21e{word-spacing:-18.736000pt;}
.ws60{word-spacing:-18.714667pt;}
.ws227{word-spacing:-18.709333pt;}
.ws1e1{word-spacing:-18.704000pt;}
.ws254{word-spacing:-18.693333pt;}
.ws2b1{word-spacing:-18.661333pt;}
.ws1f4{word-spacing:-18.650667pt;}
.ws299{word-spacing:-18.640000pt;}
.ws229{word-spacing:-18.634667pt;}
.ws173{word-spacing:-18.629333pt;}
.wsee{word-spacing:-18.624000pt;}
.ws6c{word-spacing:-18.609600pt;}
.ws152{word-spacing:-18.608000pt;}
.ws172{word-spacing:-18.581333pt;}
.wsd3{word-spacing:-18.571200pt;}
.wsd4{word-spacing:-18.566400pt;}
.ws183{word-spacing:-18.560000pt;}
.ws140{word-spacing:-18.554667pt;}
.ws79{word-spacing:-18.552000pt;}
.ws138{word-spacing:-18.544000pt;}
.ws1d5{word-spacing:-18.538667pt;}
.ws309{word-spacing:-18.537600pt;}
.ws145{word-spacing:-18.533333pt;}
.wsf2{word-spacing:-18.528000pt;}
.ws14a{word-spacing:-18.522667pt;}
.ws136{word-spacing:-18.501333pt;}
.ws2a6{word-spacing:-18.490667pt;}
.wsd5{word-spacing:-18.489600pt;}
.ws148{word-spacing:-18.480000pt;}
.ws1ee{word-spacing:-18.469333pt;}
.ws1bc{word-spacing:-18.456000pt;}
.ws12e{word-spacing:-18.410667pt;}
.ws264{word-spacing:-18.405333pt;}
.ws351{word-spacing:-18.403200pt;}
.ws149{word-spacing:-18.378667pt;}
.ws137{word-spacing:-18.325333pt;}
.ws251{word-spacing:-18.282667pt;}
.ws2b4{word-spacing:-18.261333pt;}
.ws1af{word-spacing:-18.256000pt;}
.ws7e{word-spacing:-18.249600pt;}
.wsd2{word-spacing:-18.230400pt;}
.ws369{word-spacing:-18.192000pt;}
.ws245{word-spacing:-18.181333pt;}
.ws239{word-spacing:-18.165333pt;}
.ws238{word-spacing:-18.128000pt;}
.ws250{word-spacing:-18.106667pt;}
.ws151{word-spacing:-18.074667pt;}
.ws292{word-spacing:-17.920000pt;}
.ws95{word-spacing:-17.913600pt;}
.ws2e3{word-spacing:-17.908800pt;}
.ws7a{word-spacing:-17.860800pt;}
.ws2e6{word-spacing:-17.851200pt;}
.ws36f{word-spacing:-17.836800pt;}
.ws1e7{word-spacing:-17.829333pt;}
.ws2e5{word-spacing:-17.798400pt;}
.ws2be{word-spacing:-17.788800pt;}
.ws2cf{word-spacing:-17.784000pt;}
.ws98{word-spacing:-17.769600pt;}
.wsa7{word-spacing:-17.750400pt;}
.ws2f2{word-spacing:-17.697600pt;}
.ws23f{word-spacing:-17.648000pt;}
.ws14{word-spacing:-17.573333pt;}
.ws10f{word-spacing:-17.558400pt;}
.ws213{word-spacing:-17.514667pt;}
.ws8f{word-spacing:-17.496000pt;}
.ws25e{word-spacing:-17.482667pt;}
.ws308{word-spacing:-17.481600pt;}
.ws9f{word-spacing:-17.467200pt;}
.wsb3{word-spacing:-17.419200pt;}
.wsa1{word-spacing:-17.376000pt;}
.wse5{word-spacing:-17.371200pt;}
.ws3{word-spacing:-17.333200pt;}
.ws2c2{word-spacing:-17.328000pt;}
.ws267{word-spacing:-17.308800pt;}
.ws289{word-spacing:-17.274667pt;}
.wsec{word-spacing:-17.260800pt;}
.ws34c{word-spacing:-17.246400pt;}
.ws1b7{word-spacing:-17.237333pt;}
.ws23b{word-spacing:-17.232000pt;}
.ws20f{word-spacing:-17.194667pt;}
.ws2f5{word-spacing:-17.193600pt;}
.ws226{word-spacing:-17.157333pt;}
.ws29f{word-spacing:-17.152000pt;}
.ws2b3{word-spacing:-17.114667pt;}
.ws15{word-spacing:-17.093333pt;}
.ws71{word-spacing:-17.073600pt;}
.ws34d{word-spacing:-17.068800pt;}
.ws232{word-spacing:-17.050667pt;}
.ws164{word-spacing:-17.045333pt;}
.ws72{word-spacing:-17.016000pt;}
.ws31{word-spacing:-16.970667pt;}
.ws30{word-spacing:-16.944000pt;}
.ws11a{word-spacing:-16.939200pt;}
.ws27c{word-spacing:-16.922667pt;}
.ws1fa{word-spacing:-16.906667pt;}
.ws26b{word-spacing:-16.905600pt;}
.wsa8{word-spacing:-16.896000pt;}
.wsd7{word-spacing:-16.891200pt;}
.ws1b8{word-spacing:-16.886400pt;}
.ws13{word-spacing:-16.885333pt;}
.ws2ce{word-spacing:-16.881600pt;}
.ws268{word-spacing:-16.867200pt;}
.ws306{word-spacing:-16.862400pt;}
.ws2e7{word-spacing:-16.843200pt;}
.ws1bd{word-spacing:-16.838400pt;}
.wse1{word-spacing:-16.824000pt;}
.ws26d{word-spacing:-16.816000pt;}
.ws11{word-spacing:-16.810667pt;}
.ws118{word-spacing:-16.800000pt;}
.wsa2{word-spacing:-16.795200pt;}
.ws80{word-spacing:-16.790400pt;}
.ws2d6{word-spacing:-16.780800pt;}
.wsaf{word-spacing:-16.771200pt;}
.ws10e{word-spacing:-16.766400pt;}
.wsb9{word-spacing:-16.761600pt;}
.ws2dd{word-spacing:-16.756800pt;}
.ws9b{word-spacing:-16.752000pt;}
.wscb{word-spacing:-16.747200pt;}
.ws182{word-spacing:-16.746667pt;}
.wsdd{word-spacing:-16.732800pt;}
.ws13b{word-spacing:-16.730667pt;}
.ws9a{word-spacing:-16.723200pt;}
.ws2e9{word-spacing:-16.708800pt;}
.ws110{word-spacing:-16.704000pt;}
.ws202{word-spacing:-16.699200pt;}
.ws9d{word-spacing:-16.694400pt;}
.wsd8{word-spacing:-16.675200pt;}
.ws19c{word-spacing:-16.666667pt;}
.ws2ec{word-spacing:-16.656000pt;}
.ws34e{word-spacing:-16.641600pt;}
.ws206{word-spacing:-16.636800pt;}
.wsb4{word-spacing:-16.632000pt;}
.ws27a{word-spacing:-16.613333pt;}
.wsfb{word-spacing:-16.608000pt;}
.ws2cc{word-spacing:-16.603200pt;}
.ws160{word-spacing:-16.584000pt;}
.ws2d1{word-spacing:-16.579200pt;}
.ws19e{word-spacing:-16.565333pt;}
.ws1bb{word-spacing:-16.564800pt;}
.ws19d{word-spacing:-16.522667pt;}
.ws53{word-spacing:-16.517333pt;}
.ws343{word-spacing:-16.478400pt;}
.ws261{word-spacing:-16.474667pt;}
.ws316{word-spacing:-16.468800pt;}
.ws2e0{word-spacing:-16.454400pt;}
.ws1d3{word-spacing:-16.442667pt;}
.wsd6{word-spacing:-16.420800pt;}
.ws1ff{word-spacing:-16.401600pt;}
.ws201{word-spacing:-16.396800pt;}
.ws156{word-spacing:-16.357333pt;}
.ws107{word-spacing:-16.339200pt;}
.ws1ba{word-spacing:-16.334400pt;}
.ws1cb{word-spacing:-16.325333pt;}
.ws365{word-spacing:-16.310400pt;}
.ws38{word-spacing:-16.298667pt;}
.ws25b{word-spacing:-16.288000pt;}
.ws114{word-spacing:-16.262400pt;}
.ws1d8{word-spacing:-16.245333pt;}
.ws104{word-spacing:-16.156800pt;}
.wsf3{word-spacing:-16.123200pt;}
.ws218{word-spacing:-16.117333pt;}
.ws33c{word-spacing:-16.070400pt;}
.ws260{word-spacing:-16.064000pt;}
.wsab{word-spacing:-16.056000pt;}
.ws143{word-spacing:-16.026667pt;}
.ws86{word-spacing:-16.017600pt;}
.ws7c{word-spacing:-15.960000pt;}
.ws2d{word-spacing:-15.946667pt;}
.ws16{word-spacing:-15.941333pt;}
.ws2a8{word-spacing:-15.936000pt;}
.ws125{word-spacing:-15.930667pt;}
.ws7d{word-spacing:-15.926400pt;}
.ws21c{word-spacing:-15.840000pt;}
.ws2fc{word-spacing:-15.811200pt;}
.ws2b9{word-spacing:-15.808000pt;}
.ws15c{word-spacing:-15.776000pt;}
.ws16e{word-spacing:-15.760000pt;}
.ws15d{word-spacing:-15.733333pt;}
.ws211{word-spacing:-15.712000pt;}
.ws15b{word-spacing:-15.706667pt;}
.ws2c1{word-spacing:-15.667200pt;}
.ws25f{word-spacing:-15.653333pt;}
.ws17f{word-spacing:-15.642667pt;}
.ws186{word-spacing:-15.605333pt;}
.ws4c{word-spacing:-15.584000pt;}
.ws4b{word-spacing:-15.578667pt;}
.ws117{word-spacing:-15.494400pt;}
.ws2db{word-spacing:-15.475200pt;}
.wse7{word-spacing:-15.470400pt;}
.ws286{word-spacing:-15.456000pt;}
.wse6{word-spacing:-15.427200pt;}
.ws24c{word-spacing:-15.408000pt;}
.ws31e{word-spacing:-15.388800pt;}
.ws1f8{word-spacing:-15.365333pt;}
.ws2fb{word-spacing:-15.364800pt;}
.ws11b{word-spacing:-15.307200pt;}
.ws2fa{word-spacing:-15.244800pt;}
.ws1f9{word-spacing:-15.237333pt;}
.ws187{word-spacing:-15.232000pt;}
.ws18{word-spacing:-15.184000pt;}
.ws111{word-spacing:-15.129600pt;}
.ws2c{word-spacing:-15.125333pt;}
.ws78{word-spacing:-15.120000pt;}
.ws30f{word-spacing:-15.110400pt;}
.ws20b{word-spacing:-15.034667pt;}
.ws6b{word-spacing:-15.033600pt;}
.ws216{word-spacing:-15.024000pt;}
.ws1c4{word-spacing:-15.009946pt;}
.ws1d1{word-spacing:-14.997333pt;}
.ws1bf{word-spacing:-14.975813pt;}
.ws1c2{word-spacing:-14.971546pt;}
.ws36{word-spacing:-14.960000pt;}
.ws1c5{word-spacing:-14.954480pt;}
.ws20d{word-spacing:-14.933333pt;}
.ws25{word-spacing:-14.912000pt;}
.wsc9{word-spacing:-14.889600pt;}
.ws35e{word-spacing:-14.870400pt;}
.ws161{word-spacing:-14.848000pt;}
.wsca{word-spacing:-14.832000pt;}
.wsed{word-spacing:-14.817600pt;}
.ws191{word-spacing:-14.810667pt;}
.ws1ca{word-spacing:-14.809415pt;}
.ws1c6{word-spacing:-14.805148pt;}
.ws20c{word-spacing:-14.752000pt;}
.ws1c1{word-spacing:-14.707016pt;}
.ws2b8{word-spacing:-14.698667pt;}
.ws1c0{word-spacing:-14.660083pt;}
.ws1c3{word-spacing:-14.651550pt;}
.ws1da{word-spacing:-14.629333pt;}
.ws33b{word-spacing:-14.625600pt;}
.ws333{word-spacing:-14.539200pt;}
.ws321{word-spacing:-14.520000pt;}
.ws116{word-spacing:-14.505600pt;}
.ws108{word-spacing:-14.500800pt;}
.ws355{word-spacing:-14.448000pt;}
.ws109{word-spacing:-14.438400pt;}
.ws342{word-spacing:-14.390400pt;}
.ws2f9{word-spacing:-14.376000pt;}
.ws270{word-spacing:-14.314667pt;}
.ws26f{word-spacing:-14.304000pt;}
.ws1b6{word-spacing:-14.298667pt;}
.ws205{word-spacing:-14.280000pt;}
.ws2c6{word-spacing:-14.256000pt;}
.ws105{word-spacing:-14.222400pt;}
.ws25d{word-spacing:-14.176000pt;}
.ws363{word-spacing:-14.155200pt;}
.ws317{word-spacing:-14.145600pt;}
.ws1a1{word-spacing:-14.133333pt;}
.ws6e{word-spacing:-14.116800pt;}
.ws36a{word-spacing:-13.948800pt;}
.ws177{word-spacing:-13.946667pt;}
.ws189{word-spacing:-13.909333pt;}
.ws28e{word-spacing:-13.872000pt;}
.ws7b{word-spacing:-13.838400pt;}
.ws51{word-spacing:-13.797333pt;}
.ws277{word-spacing:-13.786667pt;}
.ws2d9{word-spacing:-13.752000pt;}
.wsb7{word-spacing:-13.708800pt;}
.ws3f{word-spacing:-13.689600pt;}
.ws52{word-spacing:-13.664000pt;}
.ws291{word-spacing:-13.658667pt;}
.ws44{word-spacing:-13.555200pt;}
.ws54{word-spacing:-13.530667pt;}
.ws370{word-spacing:-13.521600pt;}
.ws198{word-spacing:-13.520000pt;}
.ws196{word-spacing:-13.498667pt;}
.ws41{word-spacing:-13.483200pt;}
.ws360{word-spacing:-13.473600pt;}
.ws2ca{word-spacing:-13.444800pt;}
.ws197{word-spacing:-13.349333pt;}
.wse9{word-spacing:-13.334400pt;}
.ws195{word-spacing:-13.312000pt;}
.ws228{word-spacing:-13.296000pt;}
.ws8d{word-spacing:-13.233600pt;}
.ws361{word-spacing:-13.200000pt;}
.ws24{word-spacing:-13.189333pt;}
.ws3c{word-spacing:-13.146667pt;}
.wsac{word-spacing:-13.137600pt;}
.ws155{word-spacing:-13.120000pt;}
.ws240{word-spacing:-13.114667pt;}
.ws35d{word-spacing:-13.099200pt;}
.wsfe{word-spacing:-13.094400pt;}
.ws17d{word-spacing:-13.050667pt;}
.wse0{word-spacing:-13.046400pt;}
.ws274{word-spacing:-13.045333pt;}
.wsff{word-spacing:-13.027200pt;}
.ws338{word-spacing:-13.012800pt;}
.wsea{word-spacing:-13.003200pt;}
.ws100{word-spacing:-12.998400pt;}
.wsde{word-spacing:-12.945600pt;}
.ws265{word-spacing:-12.906667pt;}
.ws1fc{word-spacing:-12.885333pt;}
.ws1c{word-spacing:-12.880000pt;}
.ws6d{word-spacing:-12.873600pt;}
.ws34a{word-spacing:-12.864000pt;}
.wsdf{word-spacing:-12.835200pt;}
.ws9{word-spacing:-12.825600pt;}
.ws124{word-spacing:-12.816000pt;}
.ws16d{word-spacing:-12.794667pt;}
.ws14d{word-spacing:-12.789333pt;}
.ws297{word-spacing:-12.736000pt;}
.ws1fb{word-spacing:-12.725333pt;}
.wsb8{word-spacing:-12.724800pt;}
.ws368{word-spacing:-12.705600pt;}
.wsc5{word-spacing:-12.700800pt;}
.ws27b{word-spacing:-12.698667pt;}
.ws65{word-spacing:-12.691200pt;}
.ws1a5{word-spacing:-12.688000pt;}
.ws8e{word-spacing:-12.676800pt;}
.ws1dd{word-spacing:-12.608000pt;}
.ws1ad{word-spacing:-12.592000pt;}
.ws22c{word-spacing:-12.554667pt;}
.ws106{word-spacing:-12.537600pt;}
.ws2d4{word-spacing:-12.436800pt;}
.ws2a2{word-spacing:-12.368000pt;}
.ws92{word-spacing:-12.364800pt;}
.ws50{word-spacing:-12.330667pt;}
.ws2ae{word-spacing:-12.293333pt;}
.ws181{word-spacing:-12.256000pt;}
.ws234{word-spacing:-12.245333pt;}
.ws272{word-spacing:-12.186667pt;}
.ws233{word-spacing:-12.122667pt;}
.ws1d9{word-spacing:-12.058667pt;}
.ws281{word-spacing:-12.037333pt;}
.ws313{word-spacing:-12.000000pt;}
.ws255{word-spacing:-11.994667pt;}
.ws312{word-spacing:-11.990400pt;}
.ws354{word-spacing:-11.985600pt;}
.ws217{word-spacing:-11.973333pt;}
.ws4e{word-spacing:-11.941333pt;}
.ws352{word-spacing:-11.870400pt;}
.ws319{word-spacing:-11.836800pt;}
.ws348{word-spacing:-11.817600pt;}
.ws1df{word-spacing:-11.802667pt;}
.ws1de{word-spacing:-11.760000pt;}
.ws1eb{word-spacing:-11.594667pt;}
.ws1e8{word-spacing:-11.578667pt;}
.ws1e9{word-spacing:-11.514667pt;}
.wsaa{word-spacing:-11.481600pt;}
.ws17a{word-spacing:-11.472000pt;}
.ws290{word-spacing:-11.413333pt;}
.ws1ec{word-spacing:-11.386667pt;}
.ws1ea{word-spacing:-11.370667pt;}
.ws139{word-spacing:-11.365333pt;}
.ws4{word-spacing:-11.335913pt;}
.ws12b{word-spacing:-11.269333pt;}
.ws296{word-spacing:-11.264000pt;}
.ws5{word-spacing:-11.224980pt;}
.ws2de{word-spacing:-11.217600pt;}
.ws6{word-spacing:-11.204180pt;}
.ws35c{word-spacing:-11.198400pt;}
.ws199{word-spacing:-11.120000pt;}
.ws8c{word-spacing:-11.112000pt;}
.ws18b{word-spacing:-11.109333pt;}
.ws18a{word-spacing:-11.104000pt;}
.ws6a{word-spacing:-11.102400pt;}
.wsa0{word-spacing:-11.064000pt;}
.ws64{word-spacing:-11.049600pt;}
.ws56{word-spacing:-10.949333pt;}
.ws32{word-spacing:-10.906667pt;}
.ws252{word-spacing:-10.848000pt;}
.wsc6{word-spacing:-10.838400pt;}
.ws28c{word-spacing:-10.730667pt;}
.ws2f7{word-spacing:-10.718400pt;}
.wsb2{word-spacing:-10.670400pt;}
.ws2f6{word-spacing:-10.646400pt;}
.ws301{word-spacing:-10.617600pt;}
.wsdc{word-spacing:-10.382400pt;}
.ws1ef{word-spacing:-10.320000pt;}
.ws276{word-spacing:-10.181333pt;}
.ws32b{word-spacing:-10.180800pt;}
.ws2b{word-spacing:-10.154667pt;}
.ws1a2{word-spacing:-10.122667pt;}
.ws7f{word-spacing:-10.118400pt;}
.ws170{word-spacing:-10.096000pt;}
.ws253{word-spacing:-10.090667pt;}
.ws1a3{word-spacing:-10.080000pt;}
.ws1a4{word-spacing:-10.074667pt;}
.ws10c{word-spacing:-10.051200pt;}
.ws171{word-spacing:-9.989333pt;}
.ws24f{word-spacing:-9.914667pt;}
.ws12d{word-spacing:-9.909333pt;}
.ws8{word-spacing:-9.864000pt;}
.ws11f{word-spacing:-9.861333pt;}
.ws121{word-spacing:-9.840000pt;}
.ws101{word-spacing:-9.816000pt;}
.ws8a{word-spacing:-9.782400pt;}
.ws285{word-spacing:-9.728000pt;}
.ws358{word-spacing:-9.710400pt;}
.wsc3{word-spacing:-9.676800pt;}
.ws103{word-spacing:-9.648000pt;}
.ws330{word-spacing:-9.600000pt;}
.ws17{word-spacing:-9.594667pt;}
.ws14f{word-spacing:-9.557333pt;}
.ws102{word-spacing:-9.528000pt;}
.ws2cb{word-spacing:-9.518400pt;}
.ws19{word-spacing:-9.475200pt;}
.ws14e{word-spacing:-9.466667pt;}
.ws204{word-spacing:-9.379200pt;}
.ws19a{word-spacing:-9.312000pt;}
.ws132{word-spacing:-9.301333pt;}
.ws256{word-spacing:-9.288000pt;}
.ws133{word-spacing:-9.264000pt;}
.ws298{word-spacing:-9.253333pt;}
.ws30e{word-spacing:-9.201600pt;}
.ws46{word-spacing:-9.179520pt;}
.ws20a{word-spacing:-9.162667pt;}
.ws47{word-spacing:-9.125760pt;}
.ws33{word-spacing:-9.114667pt;}
.ws34b{word-spacing:-9.072000pt;}
.ws1d{word-spacing:-9.029333pt;}
.ws1a{word-spacing:-8.992000pt;}
.ws178{word-spacing:-8.885333pt;}
.ws2fe{word-spacing:-8.793600pt;}
.ws69{word-spacing:-8.769600pt;}
.ws68{word-spacing:-8.755200pt;}
.ws19b{word-spacing:-8.736000pt;}
.ws49{word-spacing:-8.707200pt;}
.ws269{word-spacing:-8.683200pt;}
.wsbc{word-spacing:-8.611200pt;}
.ws1e5{word-spacing:-8.581333pt;}
.ws35a{word-spacing:-8.572800pt;}
.ws10d{word-spacing:-8.510400pt;}
.ws1ae{word-spacing:-8.490667pt;}
.ws2b6{word-spacing:-8.432000pt;}
.ws326{word-spacing:-8.409600pt;}
.ws2c8{word-spacing:-8.337600pt;}
.ws329{word-spacing:-8.289600pt;}
.ws1cd{word-spacing:-8.277333pt;}
.ws1b{word-spacing:-8.256000pt;}
.ws32d{word-spacing:-8.174400pt;}
.ws2c0{word-spacing:-8.107200pt;}
.ws345{word-spacing:-8.088000pt;}
.ws21b{word-spacing:-8.064000pt;}
.ws219{word-spacing:-8.053333pt;}
.ws21a{word-spacing:-8.042667pt;}
.ws30a{word-spacing:-7.953600pt;}
.ws3b{word-spacing:-7.898667pt;}
.ws346{word-spacing:-7.881600pt;}
.ws21f{word-spacing:-7.749333pt;}
.wsf7{word-spacing:-7.737600pt;}
.wsc{word-spacing:-7.718304pt;}
.wsf6{word-spacing:-7.680000pt;}
.ws97{word-spacing:-7.636800pt;}
.ws15a{word-spacing:-7.610667pt;}
.wsb1{word-spacing:-7.574400pt;}
.ws5d{word-spacing:-7.541333pt;}
.wse{word-spacing:-7.526306pt;}
.ws162{word-spacing:-7.445333pt;}
.ws15e{word-spacing:-7.408000pt;}
.ws1be{word-spacing:-7.402667pt;}
.ws259{word-spacing:-7.267200pt;}
.wsb5{word-spacing:-7.195200pt;}
.ws2d0{word-spacing:-7.190400pt;}
.ws2a{word-spacing:-7.189333pt;}
.ws266{word-spacing:-7.171200pt;}
.ws2da{word-spacing:-7.080000pt;}
.wsf4{word-spacing:-7.065600pt;}
.wsb6{word-spacing:-7.060800pt;}
.ws120{word-spacing:-6.997333pt;}
.ws48{word-spacing:-6.726400pt;}
.ws31a{word-spacing:-6.705600pt;}
.ws1e{word-spacing:-6.672000pt;}
.ws15f{word-spacing:-6.566400pt;}
.ws2ff{word-spacing:-6.532800pt;}
.ws5a{word-spacing:-6.528000pt;}
.ws300{word-spacing:-6.504000pt;}
.ws5f{word-spacing:-6.501333pt;}
.ws163{word-spacing:-6.378667pt;}
.ws1b9{word-spacing:-6.369600pt;}
.ws1f3{word-spacing:-6.346667pt;}
.ws220{word-spacing:-6.250667pt;}
.ws91{word-spacing:-6.249600pt;}
.ws10{word-spacing:-6.229333pt;}
.ws287{word-spacing:-6.010667pt;}
.ws23e{word-spacing:-5.861333pt;}
.ws2e{word-spacing:-5.792000pt;}
.ws359{word-spacing:-5.472000pt;}
.ws334{word-spacing:-5.443200pt;}
.ws62{word-spacing:-5.433600pt;}
.ws294{word-spacing:-5.365333pt;}
.ws283{word-spacing:-5.328000pt;}
.ws55{word-spacing:-5.322667pt;}
.ws335{word-spacing:-5.150400pt;}
.ws2ea{word-spacing:-5.126400pt;}
.ws23d{word-spacing:-5.125333pt;}
.wsa9{word-spacing:-4.833600pt;}
.ws113{word-spacing:-4.804800pt;}
.ws33f{word-spacing:-4.675200pt;}
.ws340{word-spacing:-4.574400pt;}
.ws2e1{word-spacing:-4.507200pt;}
.ws8b{word-spacing:-4.464000pt;}
.ws2bb{word-spacing:-4.416000pt;}
.ws94{word-spacing:-4.411200pt;}
.ws13c{word-spacing:-4.346667pt;}
.ws1ce{word-spacing:-4.325333pt;}
.ws159{word-spacing:-4.304000pt;}
.ws18f{word-spacing:-4.277333pt;}
.ws2a9{word-spacing:-4.224000pt;}
.ws280{word-spacing:-4.197333pt;}
.ws2aa{word-spacing:-4.186667pt;}
.ws2b0{word-spacing:-4.181333pt;}
.ws2ab{word-spacing:-4.149333pt;}
.ws29e{word-spacing:-4.128000pt;}
.ws37{word-spacing:-3.978667pt;}
.ws1f1{word-spacing:-3.866667pt;}
.ws28a{word-spacing:-3.850667pt;}
.wsbb{word-spacing:-3.758400pt;}
.ws273{word-spacing:-3.749333pt;}
.ws6f{word-spacing:-3.748800pt;}
.ws1aa{word-spacing:-3.744000pt;}
.ws17b{word-spacing:-3.728000pt;}
.ws322{word-spacing:-3.662400pt;}
.ws70{word-spacing:-3.624000pt;}
.ws1f2{word-spacing:-3.616000pt;}
.ws1f0{word-spacing:-3.589333pt;}
.ws36c{word-spacing:-3.537600pt;}
.ws241{word-spacing:-3.445333pt;}
.ws1d7{word-spacing:-3.418667pt;}
.ws36d{word-spacing:-3.355200pt;}
.ws29d{word-spacing:-3.338667pt;}
.ws32c{word-spacing:-3.336000pt;}
.wsc2{word-spacing:-3.158400pt;}
.ws214{word-spacing:-3.146667pt;}
.ws130{word-spacing:-3.141333pt;}
.ws81{word-spacing:-3.120000pt;}
.ws190{word-spacing:-3.098667pt;}
.ws96{word-spacing:-3.096000pt;}
.ws67{word-spacing:-3.019200pt;}
.ws215{word-spacing:-2.896000pt;}
.ws63{word-spacing:-2.774400pt;}
.ws209{word-spacing:-2.640000pt;}
.ws176{word-spacing:-2.618667pt;}
.ws208{word-spacing:-2.522667pt;}
.ws35{word-spacing:-2.298667pt;}
.ws2eb{word-spacing:-2.260800pt;}
.ws34{word-spacing:-2.240000pt;}
.ws2b7{word-spacing:-2.090667pt;}
.ws24e{word-spacing:-1.930667pt;}
.ws350{word-spacing:-1.881600pt;}
.ws2f{word-spacing:-1.856000pt;}
.ws221{word-spacing:-1.845333pt;}
.ws2e4{word-spacing:-1.761600pt;}
.ws278{word-spacing:-1.626667pt;}
.ws2f3{word-spacing:-1.540800pt;}
.ws66{word-spacing:-1.425600pt;}
.ws2f1{word-spacing:-1.238400pt;}
.ws1e0{word-spacing:-1.141333pt;}
.ws17e{word-spacing:-1.098667pt;}
.ws2c3{word-spacing:-1.084800pt;}
.ws1d2{word-spacing:-1.024000pt;}
.wsb0{word-spacing:-0.998400pt;}
.ws2ac{word-spacing:-0.986667pt;}
.ws284{word-spacing:-0.976000pt;}
.ws28{word-spacing:-0.965333pt;}
.ws32f{word-spacing:-0.955200pt;}
.ws14b{word-spacing:-0.954667pt;}
.ws23{word-spacing:-0.949333pt;}
.ws1fd{word-spacing:-0.944000pt;}
.ws282{word-spacing:-0.938667pt;}
.ws2f0{word-spacing:-0.931200pt;}
.ws27f{word-spacing:-0.928000pt;}
.ws347{word-spacing:-0.926400pt;}
.ws135{word-spacing:-0.922667pt;}
.ws32a{word-spacing:-0.921600pt;}
.ws17c{word-spacing:-0.917333pt;}
.ws4d{word-spacing:-0.901333pt;}
.ws144{word-spacing:-0.896000pt;}
.ws2e2{word-spacing:-0.892800pt;}
.ws84{word-spacing:-0.883200pt;}
.ws22{word-spacing:-0.880000pt;}
.ws2d5{word-spacing:-0.878400pt;}
.ws12f{word-spacing:-0.874667pt;}
.ws58{word-spacing:-0.869333pt;}
.ws131{word-spacing:-0.858667pt;}
.wsa6{word-spacing:-0.854400pt;}
.ws302{word-spacing:-0.849600pt;}
.wsbd{word-spacing:-0.844800pt;}
.ws1a8{word-spacing:-0.842667pt;}
.ws2fd{word-spacing:-0.835200pt;}
.ws85{word-spacing:-0.825600pt;}
.ws12a{word-spacing:-0.821333pt;}
.ws2a5{word-spacing:-0.816000pt;}
.ws315{word-spacing:-0.811200pt;}
.ws33a{word-spacing:-0.806400pt;}
.ws4f{word-spacing:-0.805333pt;}
.ws339{word-spacing:-0.796800pt;}
.wseb{word-spacing:-0.792000pt;}
.ws33d{word-spacing:-0.787200pt;}
.ws364{word-spacing:-0.768000pt;}
.ws337{word-spacing:-0.739200pt;}
.ws344{word-spacing:-0.734400pt;}
.ws93{word-spacing:-0.720000pt;}
.wsa5{word-spacing:-0.715200pt;}
.ws28d{word-spacing:-0.704000pt;}
.ws303{word-spacing:-0.696000pt;}
.ws2af{word-spacing:-0.688000pt;}
.ws318{word-spacing:-0.686400pt;}
.ws2c7{word-spacing:-0.681600pt;}
.ws1f7{word-spacing:-0.677333pt;}
.ws134{word-spacing:-0.672000pt;}
.ws2cd{word-spacing:-0.667200pt;}
.ws129{word-spacing:-0.661333pt;}
.ws2d7{word-spacing:-0.643200pt;}
.ws2d3{word-spacing:-0.638400pt;}
.ws2d8{word-spacing:-0.633600pt;}
.ws307{word-spacing:-0.624000pt;}
.ws2ed{word-spacing:-0.614400pt;}
.ws34f{word-spacing:-0.609600pt;}
.ws2a3{word-spacing:-0.592000pt;}
.ws2bf{word-spacing:-0.580800pt;}
.ws2d2{word-spacing:-0.576000pt;}
.ws2ad{word-spacing:-0.570667pt;}
.ws2a4{word-spacing:-0.560000pt;}
.ws2e8{word-spacing:-0.552000pt;}
.ws12{word-spacing:-0.522667pt;}
.ws2ee{word-spacing:-0.508800pt;}
.ws311{word-spacing:-0.504000pt;}
.ws2f8{word-spacing:-0.475200pt;}
.ws366{word-spacing:-0.451200pt;}
.ws2c4{word-spacing:-0.441600pt;}
.ws2c5{word-spacing:-0.336000pt;}
.ws332{word-spacing:-0.331200pt;}
.ws4a{word-spacing:0.000000pt;}
.ws2dc{word-spacing:0.628800pt;}
.ws310{word-spacing:0.720000pt;}
.ws89{word-spacing:0.796800pt;}
.ws320{word-spacing:0.873600pt;}
.ws203{word-spacing:0.883200pt;}
.ws31f{word-spacing:1.056000pt;}
.ws35f{word-spacing:1.377600pt;}
.ws356{word-spacing:1.560000pt;}
.ws357{word-spacing:1.785600pt;}
.ws258{word-spacing:2.808000pt;}
.ws362{word-spacing:3.148800pt;}
.wsba{word-spacing:3.312000pt;}
.ws9c{word-spacing:4.209600pt;}
.ws353{word-spacing:4.310400pt;}
.ws349{word-spacing:4.632000pt;}
.wsf{word-spacing:5.258667pt;}
.wsa4{word-spacing:5.836800pt;}
.ws82{word-spacing:5.956800pt;}
.wsa3{word-spacing:5.966400pt;}
.ws83{word-spacing:5.995200pt;}
.ws331{word-spacing:6.816000pt;}
.ws35b{word-spacing:7.435200pt;}
.ws2c9{word-spacing:7.646400pt;}
.ws328{word-spacing:7.828800pt;}
.ws327{word-spacing:7.886400pt;}
.ws32e{word-spacing:7.953600pt;}
.ws30b{word-spacing:8.188800pt;}
.ws43{word-spacing:8.385600pt;}
.ws30c{word-spacing:8.433600pt;}
.ws31b{word-spacing:9.494400pt;}
.ws336{word-spacing:10.948800pt;}
.ws29b{word-spacing:14.741285pt;}
.wsd{word-spacing:15.608762pt;}
.ws42{word-spacing:21.729600pt;}
.ws3e{word-spacing:26.145600pt;}
.ws40{word-spacing:49.713600pt;}
.ws1c7{word-spacing:92.030850pt;}
.ws1c9{word-spacing:175.703404pt;}
.wsb{word-spacing:288.527467pt;}
.wsf8{word-spacing:888.975467pt;}
.wsf9{word-spacing:933.364333pt;}
._10{margin-left:-2650.629267pt;}
._20{margin-left:-1.493333pt;}
._17{width:8.212800pt;}
._f{width:9.744000pt;}
._7{width:10.949333pt;}
._8{width:12.378667pt;}
._15{width:13.291200pt;}
._2{width:14.960000pt;}
._3{width:16.037333pt;}
._c{width:16.933333pt;}
._4{width:17.909333pt;}
._5{width:18.848000pt;}
._13{width:20.112000pt;}
._12{width:21.482667pt;}
._d{width:23.056000pt;}
._14{width:24.048000pt;}
._6{width:25.365333pt;}
._a{width:26.661333pt;}
._b{width:27.813333pt;}
._e{width:29.653333pt;}
._16{width:30.581867pt;}
._1d{width:31.845333pt;}
._9{width:33.445333pt;}
._1e{width:34.405333pt;}
._11{width:66.512427pt;}
._1f{width:67.792000pt;}
._1c{width:113.299917pt;}
._1a{width:119.008646pt;}
._1b{width:133.754061pt;}
._18{width:154.225272pt;}
._19{width:159.631071pt;}
._1{width:251.937870pt;}
._0{width:411.344431pt;}
.fs10{font-size:31.995733pt;}
.fsc{font-size:32.000000pt;}
.fsf{font-size:32.158933pt;}
.fsa{font-size:33.600000pt;}
.fs14{font-size:34.832000pt;}
.fs9{font-size:35.551467pt;}
.fs11{font-size:35.732800pt;}
.fs6{font-size:36.665600pt;}
.fsd{font-size:37.333333pt;}
.fsb{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fse{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs15{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs13{font-size:63.332267pt;}
.fs5{font-size:66.666133pt;}
.fs1{font-size:69.332800pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fs12{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.943333pt;}
.ye1{bottom:20.107867pt;}
.y4b{bottom:24.492133pt;}
.ye0{bottom:28.799867pt;}
.y49{bottom:31.295147pt;}
.y4a{bottom:33.184133pt;}
.y48{bottom:39.004667pt;}
.y324{bottom:53.291333pt;}
.y1cd{bottom:53.291467pt;}
.y110{bottom:53.291600pt;}
.y21e{bottom:53.292000pt;}
.y29d{bottom:53.292133pt;}
.y2e1{bottom:53.292267pt;}
.y226{bottom:53.292667pt;}
.y13b{bottom:53.294000pt;}
.y262{bottom:53.295333pt;}
.y16a{bottom:53.296667pt;}
.yde{bottom:53.366800pt;}
.y94{bottom:53.367600pt;}
.y196{bottom:57.299381pt;}
.y21a{bottom:59.262933pt;}
.y2d{bottom:61.078000pt;}
.y93{bottom:66.519600pt;}
.ydd{bottom:66.595600pt;}
.y21d{bottom:66.670800pt;}
.y29c{bottom:66.670933pt;}
.y1cc{bottom:66.671467pt;}
.y323{bottom:66.822533pt;}
.y2e0{bottom:67.049067pt;}
.y10f{bottom:67.956933pt;}
.y195{bottom:67.957381pt;}
.y169{bottom:67.962000pt;}
.y219{bottom:68.036667pt;}
.y13a{bottom:68.184667pt;}
.y1b6{bottom:68.260667pt;}
.y225{bottom:68.638000pt;}
.y261{bottom:68.943333pt;}
.y2c{bottom:75.818000pt;}
.ydc{bottom:78.538000pt;}
.y92{bottom:79.748400pt;}
.y1cb{bottom:79.974667pt;}
.y29b{bottom:79.975333pt;}
.y322{bottom:80.278133pt;}
.y2df{bottom:80.807067pt;}
.y194{bottom:82.545998pt;}
.y10e{bottom:82.620933pt;}
.y168{bottom:82.626000pt;}
.y218{bottom:82.776667pt;}
.y139{bottom:83.151333pt;}
.y1b5{bottom:83.228667pt;}
.y224{bottom:83.907333pt;}
.y260{bottom:84.590000pt;}
.y2b{bottom:90.558000pt;}
.ydb{bottom:91.842400pt;}
.y91{bottom:92.977200pt;}
.y193{bottom:93.203999pt;}
.y29a{bottom:93.355333pt;}
.y321{bottom:93.656933pt;}
.y2de{bottom:94.563867pt;}
.y46{bottom:95.471467pt;}
.y10d{bottom:97.284933pt;}
.y10b{bottom:97.286000pt;}
.y167{bottom:97.290000pt;}
.y217{bottom:97.440667pt;}
.y138{bottom:98.043333pt;}
.y1b4{bottom:98.195333pt;}
.y223{bottom:99.176667pt;}
.y25f{bottom:100.162000pt;}
.y10c{bottom:103.256667pt;}
.yda{bottom:105.071200pt;}
.y2a{bottom:105.222000pt;}
.y90{bottom:106.204800pt;}
.y299{bottom:106.658533pt;}
.y320{bottom:107.112533pt;}
.y192{bottom:107.793683pt;}
.y2dd{bottom:107.943867pt;}
.y45{bottom:110.136667pt;}
.y10a{bottom:111.951333pt;}
.y166{bottom:111.955333pt;}
.y216{bottom:112.180667pt;}
.y137{bottom:112.934000pt;}
.y1b3{bottom:113.162000pt;}
.y222{bottom:114.520667pt;}
.y25e{bottom:115.808667pt;}
.yd9{bottom:118.374400pt;}
.y8f{bottom:119.433600pt;}
.y29{bottom:119.962000pt;}
.y298{bottom:119.962933pt;}
.y31f{bottom:120.642533pt;}
.y2dc{bottom:121.626267pt;}
.y44{bottom:124.800667pt;}
.y191{bottom:125.103333pt;}
.y109{bottom:126.615333pt;}
.y165{bottom:126.619333pt;}
.y215{bottom:126.844667pt;}
.y136{bottom:127.826000pt;}
.y1b2{bottom:128.052667pt;}
.y221{bottom:129.790000pt;}
.y25d{bottom:131.380667pt;}
.yd8{bottom:131.678800pt;}
.y8e{bottom:132.661200pt;}
.y297{bottom:133.341733pt;}
.y31e{bottom:134.098133pt;}
.y28{bottom:134.702000pt;}
.y2db{bottom:135.383067pt;}
.y190{bottom:135.761333pt;}
.y43{bottom:139.464667pt;}
.y108{bottom:141.279333pt;}
.y164{bottom:141.283333pt;}
.y214{bottom:141.586000pt;}
.y135{bottom:142.716667pt;}
.y1b1{bottom:143.019333pt;}
.yd7{bottom:144.982000pt;}
.y220{bottom:145.059333pt;}
.y8d{bottom:145.890000pt;}
.y18f{bottom:146.419333pt;}
.y296{bottom:146.646133pt;}
.y25c{bottom:147.027333pt;}
.y31d{bottom:147.629333pt;}
.y2da{bottom:149.141067pt;}
.y27{bottom:149.442000pt;}
.y25{bottom:149.443333pt;}
.y26{bottom:155.414000pt;}
.y107{bottom:156.019333pt;}
.y163{bottom:156.024667pt;}
.y213{bottom:156.326000pt;}
.y134{bottom:157.608667pt;}
.y1b0{bottom:157.987333pt;}
.yd5{bottom:158.211333pt;}
.y8c{bottom:159.118800pt;}
.y295{bottom:159.950533pt;}
.y21f{bottom:160.403333pt;}
.y31c{bottom:160.932533pt;}
.y2d9{bottom:162.519867pt;}
.y25b{bottom:162.599333pt;}
.yd6{bottom:163.578000pt;}
.y24{bottom:164.183333pt;}
.y162{bottom:170.688667pt;}
.y212{bottom:170.990000pt;}
.yd4{bottom:171.515733pt;}
.y8b{bottom:172.270800pt;}
.y133{bottom:172.499333pt;}
.y1af{bottom:172.954000pt;}
.y294{bottom:173.329333pt;}
.y42{bottom:173.480667pt;}
.y31b{bottom:174.388133pt;}
.y106{bottom:174.916667pt;}
.y18e{bottom:175.295333pt;}
.y2d8{bottom:176.277867pt;}
.y25a{bottom:178.246000pt;}
.y23{bottom:178.923333pt;}
.yd3{bottom:184.743333pt;}
.y161{bottom:185.352667pt;}
.y8a{bottom:185.499600pt;}
.y211{bottom:185.730000pt;}
.y293{bottom:186.633733pt;}
.y132{bottom:187.315333pt;}
.y31a{bottom:187.918133pt;}
.y1ae{bottom:187.920667pt;}
.y22a{bottom:189.052133pt;}
.y41{bottom:189.127333pt;}
.y3f{bottom:189.128667pt;}
.y18d{bottom:189.959333pt;}
.y2d7{bottom:190.035867pt;}
.y22{bottom:193.663333pt;}
.y259{bottom:193.894000pt;}
.y40{bottom:195.023333pt;}
.yd2{bottom:198.047733pt;}
.y89{bottom:198.728400pt;}
.y292{bottom:200.012533pt;}
.y160{bottom:200.018000pt;}
.y210{bottom:200.470000pt;}
.y319{bottom:201.373733pt;}
.y131{bottom:202.206000pt;}
.y229{bottom:202.355333pt;}
.y1ad{bottom:202.887333pt;}
.y105{bottom:202.960533pt;}
.y2d6{bottom:203.717067pt;}
.y3e{bottom:204.775333pt;}
.y20{bottom:208.403333pt;}
.y258{bottom:209.464667pt;}
.yd1{bottom:211.352133pt;}
.y88{bottom:211.956000pt;}
.y291{bottom:213.316933pt;}
.y21{bottom:214.299333pt;}
.y15f{bottom:214.682000pt;}
.y318{bottom:214.753733pt;}
.y20f{bottom:215.134000pt;}
.y104{bottom:216.189333pt;}
.y2d5{bottom:217.097067pt;}
.y130{bottom:217.098000pt;}
.y1ac{bottom:217.854000pt;}
.y3d{bottom:220.423333pt;}
.y187{bottom:220.654000pt;}
.y1f{bottom:223.143333pt;}
.y1d{bottom:223.144667pt;}
.yd0{bottom:224.579733pt;}
.y257{bottom:225.112667pt;}
.y87{bottom:225.184800pt;}
.y290{bottom:226.621333pt;}
.y317{bottom:228.208133pt;}
.y1e{bottom:229.039333pt;}
.y103{bottom:229.341333pt;}
.y15e{bottom:229.346000pt;}
.y20e{bottom:229.874000pt;}
.y2d4{bottom:230.853867pt;}
.y12f{bottom:231.988667pt;}
.y1ab{bottom:232.744667pt;}
.y186{bottom:235.318000pt;}
.y3c{bottom:236.070000pt;}
.ycf{bottom:237.884133pt;}
.y1c{bottom:237.884667pt;}
.y86{bottom:238.412400pt;}
.y28f{bottom:240.000133pt;}
.y256{bottom:240.683333pt;}
.y316{bottom:241.739333pt;}
.y102{bottom:242.570133pt;}
.y15d{bottom:244.011333pt;}
.y2d3{bottom:244.611867pt;}
.y20d{bottom:244.614000pt;}
.y12e{bottom:246.879333pt;}
.y1aa{bottom:247.712667pt;}
.y185{bottom:249.982000pt;}
.yce{bottom:251.187333pt;}
.ycc{bottom:251.187733pt;}
.y85{bottom:251.641200pt;}
.y3b{bottom:251.716667pt;}
.y1b{bottom:252.624667pt;}
.y28e{bottom:253.304533pt;}
.y315{bottom:255.193733pt;}
.y101{bottom:255.798933pt;}
.y255{bottom:256.331333pt;}
.ycd{bottom:256.478000pt;}
.y2d2{bottom:258.368667pt;}
.y15c{bottom:258.675333pt;}
.y20c{bottom:259.355333pt;}
.y12d{bottom:261.771333pt;}
.y1a9{bottom:262.679333pt;}
.ycb{bottom:264.415333pt;}
.y184{bottom:264.647333pt;}
.y84{bottom:264.794400pt;}
.y28d{bottom:266.683333pt;}
.y1a{bottom:267.288667pt;}
.y3a{bottom:267.364667pt;}
.y314{bottom:268.573733pt;}
.y100{bottom:268.950933pt;}
.y2d1{bottom:271.673067pt;}
.y254{bottom:271.978000pt;}
.y15b{bottom:273.339333pt;}
.y20b{bottom:274.019333pt;}
.y12c{bottom:276.662000pt;}
.y1a8{bottom:277.646000pt;}
.yca{bottom:277.719333pt;}
.y83{bottom:278.022000pt;}
.y28c{bottom:278.928667pt;}
.y183{bottom:279.311333pt;}
.y18{bottom:282.028667pt;}
.y313{bottom:282.029333pt;}
.yff{bottom:282.179733pt;}
.y39{bottom:283.011333pt;}
.y2d0{bottom:285.431067pt;}
.y1c6{bottom:287.548667pt;}
.y253{bottom:287.550000pt;}
.y19{bottom:287.999333pt;}
.y15a{bottom:288.004667pt;}
.y20a{bottom:288.759333pt;}
.yc9{bottom:290.948133pt;}
.y82{bottom:291.250800pt;}
.y12b{bottom:291.554000pt;}
.y1a7{bottom:292.612667pt;}
.y182{bottom:293.975333pt;}
.yfe{bottom:295.407333pt;}
.y312{bottom:295.483733pt;}
.y17{bottom:296.768667pt;}
.y38{bottom:298.658000pt;}
.y36{bottom:298.659333pt;}
.y2cf{bottom:299.187867pt;}
.y159{bottom:302.668667pt;}
.y1c5{bottom:302.816667pt;}
.y252{bottom:303.196667pt;}
.y209{bottom:303.499333pt;}
.yc8{bottom:304.253467pt;}
.y1ec{bottom:304.255333pt;}
.y81{bottom:304.479600pt;}
.y37{bottom:304.630000pt;}
.y12a{bottom:306.520667pt;}
.y1a6{bottom:307.579333pt;}
.yfd{bottom:308.560533pt;}
.y181{bottom:308.640667pt;}
.y311{bottom:309.014933pt;}
.y15{bottom:311.508667pt;}
.y28b{bottom:312.416667pt;}
.y2ce{bottom:312.945867pt;}
.y35{bottom:314.306000pt;}
.y158{bottom:317.332667pt;}
.y16{bottom:317.480667pt;}
.yc7{bottom:317.481067pt;}
.y4e{bottom:317.506667pt;}
.y80{bottom:317.707200pt;}
.y1c4{bottom:318.162000pt;}
.y208{bottom:318.163333pt;}
.y251{bottom:318.768667pt;}
.y1eb{bottom:318.995333pt;}
.y129{bottom:321.411333pt;}
.yfc{bottom:321.789333pt;}
.y310{bottom:322.318133pt;}
.y1a5{bottom:322.471333pt;}
.y180{bottom:323.304667pt;}
.y14{bottom:326.248667pt;}
.y2cd{bottom:326.249067pt;}
.y28a{bottom:327.082000pt;}
.y7f{bottom:329.575200pt;}
.y33{bottom:330.028667pt;}
.yc6{bottom:330.785467pt;}
.y157{bottom:331.998000pt;}
.y207{bottom:332.903333pt;}
.y1c3{bottom:333.431333pt;}
.y1ea{bottom:333.659333pt;}
.y250{bottom:334.415333pt;}
.yfb{bottom:334.941333pt;}
.y30f{bottom:335.849333pt;}
.y34{bottom:335.924667pt;}
.y128{bottom:336.303333pt;}
.y1a4{bottom:337.438000pt;}
.y17f{bottom:337.970000pt;}
.y2cc{bottom:340.007067pt;}
.y13{bottom:340.988667pt;}
.y289{bottom:341.746000pt;}
.y7e{bottom:342.804000pt;}
.y32{bottom:345.676667pt;}
.y156{bottom:346.662000pt;}
.y206{bottom:347.643333pt;}
.y1e9{bottom:348.324667pt;}
.y1c2{bottom:348.700667pt;}
.yc5{bottom:348.774000pt;}
.y30e{bottom:349.304933pt;}
.y24f{bottom:349.987333pt;}
.y127{bottom:351.194000pt;}
.y1a3{bottom:352.404667pt;}
.y17e{bottom:352.634000pt;}
.yfa{bottom:352.857333pt;}
.y2cb{bottom:353.763867pt;}
.y12{bottom:355.728667pt;}
.y7d{bottom:356.031600pt;}
.y288{bottom:356.410000pt;}
.yc4{bottom:357.317467pt;}
.y4d{bottom:359.893333pt;}
.y31{bottom:361.323333pt;}
.y155{bottom:361.327333pt;}
.y205{bottom:362.308667pt;}
.y30d{bottom:362.834933pt;}
.y1e8{bottom:363.064667pt;}
.y1c1{bottom:364.044667pt;}
.y24e{bottom:365.634000pt;}
.yf9{bottom:366.009333pt;}
.y126{bottom:366.086000pt;}
.y17d{bottom:367.298000pt;}
.y1a2{bottom:367.371333pt;}
.y2ca{bottom:367.521867pt;}
.y7c{bottom:369.260400pt;}
.yc3{bottom:370.620667pt;}
.y287{bottom:371.150000pt;}
.y154{bottom:375.991333pt;}
.y30c{bottom:376.290533pt;}
.y11{bottom:376.440667pt;}
.y2e{bottom:376.967333pt;}
.y30{bottom:376.970000pt;}
.y204{bottom:377.048667pt;}
.y1e7{bottom:377.728667pt;}
.y1c0{bottom:379.314000pt;}
.yf8{bottom:380.523333pt;}
.y125{bottom:380.976667pt;}
.y2c9{bottom:381.279867pt;}
.y24d{bottom:381.280667pt;}
.y17c{bottom:381.963333pt;}
.y1a1{bottom:382.338000pt;}
.y7b{bottom:382.488000pt;}
.y2f{bottom:382.866000pt;}
.yc2{bottom:383.849467pt;}
.y286{bottom:385.815333pt;}
.y30b{bottom:389.820533pt;}
.y153{bottom:390.655333pt;}
.y203{bottom:391.788667pt;}
.y1e6{bottom:392.392667pt;}
.yf7{bottom:393.750933pt;}
.y2c8{bottom:394.583067pt;}
.y1bf{bottom:394.659333pt;}
.y7a{bottom:395.641200pt;}
.y124{bottom:395.867333pt;}
.y17b{bottom:396.627333pt;}
.y24c{bottom:396.852667pt;}
.y1a0{bottom:397.154000pt;}
.y285{bottom:400.479333pt;}
.yc1{bottom:401.839333pt;}
.y30a{bottom:403.124933pt;}
.y152{bottom:405.320667pt;}
.y202{bottom:406.452667pt;}
.y1e5{bottom:407.132667pt;}
.yf6{bottom:408.264933pt;}
.y2c7{bottom:408.341067pt;}
.y79{bottom:408.870000pt;}
.y1be{bottom:409.626000pt;}
.yc0{bottom:410.382400pt;}
.y122{bottom:410.684667pt;}
.y17a{bottom:411.291333pt;}
.y19f{bottom:412.044667pt;}
.y24b{bottom:412.500667pt;}
.y228{bottom:413.480667pt;}
.y284{bottom:415.143333pt;}
.y123{bottom:416.579333pt;}
.y151{bottom:419.984667pt;}
.y201{bottom:421.192667pt;}
.yf5{bottom:421.492533pt;}
.y1e4{bottom:421.798000pt;}
.y78{bottom:422.097600pt;}
.y2c6{bottom:422.097867pt;}
.y10{bottom:422.930000pt;}
.ybf{bottom:423.685600pt;}
.y1bd{bottom:424.895333pt;}
.y121{bottom:425.575333pt;}
.y179{bottom:425.956667pt;}
.y19e{bottom:427.011333pt;}
.y24a{bottom:428.071333pt;}
.y283{bottom:429.808667pt;}
.y309{bottom:430.110533pt;}
.y150{bottom:434.648667pt;}
.y77{bottom:435.326400pt;}
.y2c5{bottom:435.402267pt;}
.y200{bottom:435.932667pt;}
.yf4{bottom:436.006533pt;}
.y1e3{bottom:436.462000pt;}
.ybe{bottom:436.990000pt;}
.yf{bottom:437.594000pt;}
.y1bc{bottom:440.240667pt;}
.y120{bottom:440.467333pt;}
.y178{bottom:440.620667pt;}
.y19d{bottom:441.978000pt;}
.y308{bottom:443.414933pt;}
.y249{bottom:443.719333pt;}
.y282{bottom:444.472667pt;}
.y76{bottom:448.554133pt;}
.yf3{bottom:449.158533pt;}
.y2c4{bottom:449.160267pt;}
.y14f{bottom:449.314000pt;}
.ybd{bottom:450.218800pt;}
.y1ff{bottom:450.598000pt;}
.y1e2{bottom:451.202000pt;}
.ye{bottom:452.259333pt;}
.y177{bottom:455.284667pt;}
.y11f{bottom:455.358000pt;}
.y1bb{bottom:455.508667pt;}
.y307{bottom:456.944933pt;}
.y19c{bottom:456.946000pt;}
.y281{bottom:459.136667pt;}
.y248{bottom:459.290000pt;}
.y75{bottom:461.782933pt;}
.yf2{bottom:462.387333pt;}
.y2c3{bottom:462.917067pt;}
.ybc{bottom:463.522000pt;}
.y14e{bottom:463.978000pt;}
.y1fe{bottom:465.338000pt;}
.y1e1{bottom:465.867333pt;}
.yd{bottom:466.999333pt;}
.y176{bottom:469.950000pt;}
.y11e{bottom:470.250000pt;}
.y306{bottom:470.400533pt;}
.y1ba{bottom:470.854000pt;}
.y19b{bottom:471.912667pt;}
.y280{bottom:472.743333pt;}
.y247{bottom:474.938000pt;}
.y74{bottom:475.011733pt;}
.y2c2{bottom:476.675067pt;}
.ybb{bottom:476.826400pt;}
.y14d{bottom:478.642000pt;}
.y1fd{bottom:480.078000pt;}
.yf1{bottom:480.226533pt;}
.y1e0{bottom:480.531333pt;}
.yc{bottom:481.663333pt;}
.y305{bottom:483.779333pt;}
.y175{bottom:484.614000pt;}
.y11d{bottom:485.140667pt;}
.y1b9{bottom:486.123333pt;}
.y19a{bottom:486.879333pt;}
.y73{bottom:488.239333pt;}
.y2c1{bottom:490.053867pt;}
.yba{bottom:490.129600pt;}
.y246{bottom:490.584667pt;}
.y14c{bottom:493.307333pt;}
.yf0{bottom:493.455333pt;}
.y1fc{bottom:494.742000pt;}
.y1df{bottom:495.195333pt;}
.yb{bottom:496.327333pt;}
.y304{bottom:497.234933pt;}
.y174{bottom:499.278000pt;}
.y11c{bottom:500.031333pt;}
.y1b8{bottom:501.090000pt;}
.y72{bottom:501.392533pt;}
.y199{bottom:501.770000pt;}
.yb9{bottom:503.358400pt;}
.y2c0{bottom:503.811867pt;}
.y245{bottom:506.156667pt;}
.y27f{bottom:506.230000pt;}
.yef{bottom:506.607333pt;}
.y14b{bottom:507.971333pt;}
.y1fb{bottom:509.482000pt;}
.y1de{bottom:509.935333pt;}
.y303{bottom:510.766133pt;}
.ya{bottom:510.992667pt;}
.y173{bottom:514.018000pt;}
.y71{bottom:514.621333pt;}
.y11b{bottom:514.847333pt;}
.y1b7{bottom:516.435333pt;}
.yb8{bottom:516.662800pt;}
.y198{bottom:516.736667pt;}
.y2bf{bottom:517.493067pt;}
.yee{bottom:519.836133pt;}
.y27e{bottom:521.196667pt;}
.y244{bottom:521.803333pt;}
.y14a{bottom:522.635333pt;}
.y302{bottom:524.220533pt;}
.y1fa{bottom:524.222000pt;}
.y1dd{bottom:524.600667pt;}
.y9{bottom:525.656667pt;}
.y70{bottom:527.848933pt;}
.y172{bottom:528.683333pt;}
.y11a{bottom:529.739333pt;}
.yb7{bottom:529.966000pt;}
.y2be{bottom:531.251067pt;}
.y197{bottom:531.703333pt;}
.yed{bottom:533.064933pt;}
.y149{bottom:537.300667pt;}
.y243{bottom:537.375333pt;}
.y301{bottom:537.524933pt;}
.y1f9{bottom:538.887333pt;}
.y27d{bottom:539.036667pt;}
.y1dc{bottom:539.264667pt;}
.y8{bottom:540.320667pt;}
.y6f{bottom:541.077733pt;}
.yb6{bottom:543.194800pt;}
.y171{bottom:543.347333pt;}
.y119{bottom:544.630000pt;}
.y2bd{bottom:545.009067pt;}
.yec{bottom:546.216933pt;}
.y300{bottom:551.054933pt;}
.y148{bottom:551.964667pt;}
.y242{bottom:553.022000pt;}
.y1f8{bottom:553.627333pt;}
.y27c{bottom:553.776667pt;}
.y1db{bottom:554.004667pt;}
.y6e{bottom:554.305333pt;}
.yb5{bottom:556.498000pt;}
.y170{bottom:558.012667pt;}
.y2bc{bottom:558.765867pt;}
.yeb{bottom:559.445733pt;}
.y118{bottom:559.516933pt;}
.y1ca{bottom:560.353333pt;}
.y2ff{bottom:564.359333pt;}
.y147{bottom:566.628667pt;}
.y6d{bottom:567.534133pt;}
.y1f7{bottom:568.367333pt;}
.y27b{bottom:568.440667pt;}
.y1da{bottom:568.668667pt;}
.yb3{bottom:569.725200pt;}
.y2bb{bottom:572.145867pt;}
.yea{bottom:572.674533pt;}
.y16f{bottom:572.676667pt;}
.y1c9{bottom:573.732133pt;}
.y117{bottom:574.408933pt;}
.yb4{bottom:575.092667pt;}
.y2fe{bottom:577.890533pt;}
.y6c{bottom:580.762933pt;}
.y146{bottom:581.294000pt;}
.yb2{bottom:583.028400pt;}
.y1f6{bottom:583.031333pt;}
.y27a{bottom:583.332667pt;}
.y1d9{bottom:583.334000pt;}
.y241{bottom:584.240667pt;}
.ye9{bottom:585.826533pt;}
.y2ba{bottom:585.902667pt;}
.y1c8{bottom:587.036533pt;}
.y16e{bottom:587.340667pt;}
.y116{bottom:589.299600pt;}
.y2fd{bottom:591.193733pt;}
.y6b{bottom:593.990533pt;}
.y145{bottom:595.958000pt;}
.yb1{bottom:596.332800pt;}
.y1f5{bottom:597.771333pt;}
.y1d8{bottom:598.074000pt;}
.ye8{bottom:599.055333pt;}
.y2b9{bottom:599.585067pt;}
.y240{bottom:599.887333pt;}
.y1c7{bottom:600.415333pt;}
.y16d{bottom:602.006000pt;}
.y115{bottom:604.115600pt;}
.y2fc{bottom:604.724933pt;}
.y6a{bottom:607.143733pt;}
.yb0{bottom:609.561600pt;}
.y279{bottom:611.907333pt;}
.ye7{bottom:612.208800pt;}
.y1f4{bottom:612.511333pt;}
.y1d7{bottom:612.738000pt;}
.y2b8{bottom:613.341867pt;}
.y23f{bottom:615.459333pt;}
.y16c{bottom:616.670000pt;}
.y2fb{bottom:618.179333pt;}
.y227{bottom:618.935333pt;}
.y114{bottom:619.007600pt;}
.y69{bottom:620.371333pt;}
.yaf{bottom:622.864800pt;}
.ye6{bottom:625.437600pt;}
.y278{bottom:626.571333pt;}
.y188{bottom:626.796667pt;}
.y2b7{bottom:627.099867pt;}
.y1f3{bottom:627.251333pt;}
.y1d6{bottom:627.403333pt;}
.y23e{bottom:631.106000pt;}
.y16b{bottom:631.334000pt;}
.y2fa{bottom:631.634933pt;}
.y113{bottom:633.898267pt;}
.yae{bottom:636.093600pt;}
.ye5{bottom:638.665200pt;}
.y68{bottom:639.571333pt;}
.y2b6{bottom:640.479867pt;}
.y1f2{bottom:641.916667pt;}
.y1d5{bottom:642.143333pt;}
.y2f9{bottom:645.014933pt;}
.y277{bottom:646.603333pt;}
.y23d{bottom:646.678000pt;}
.y112{bottom:648.788933pt;}
.yad{bottom:649.398000pt;}
.ye4{bottom:651.818400pt;}
.y2b5{bottom:654.236667pt;}
.y1f1{bottom:656.656667pt;}
.y1d4{bottom:656.807333pt;}
.y2f8{bottom:658.469333pt;}
.y276{bottom:661.267333pt;}
.y23c{bottom:662.324667pt;}
.yac{bottom:662.625600pt;}
.y111{bottom:663.680933pt;}
.ye2{bottom:665.046000pt;}
.y18c{bottom:666.936933pt;}
.y2b4{bottom:667.994667pt;}
.ye3{bottom:670.412667pt;}
.y1f0{bottom:671.396667pt;}
.y1d3{bottom:671.471333pt;}
.y2f7{bottom:672.000533pt;}
.y67{bottom:672.908667pt;}
.yab{bottom:675.930000pt;}
.y275{bottom:675.931333pt;}
.y23b{bottom:677.972667pt;}
.y18b{bottom:680.240133pt;}
.y2b3{bottom:681.675867pt;}
.y2f6{bottom:685.304933pt;}
.y1ef{bottom:686.060667pt;}
.y1d2{bottom:686.211333pt;}
.y66{bottom:687.648667pt;}
.yaa{bottom:689.233200pt;}
.y274{bottom:690.596667pt;}
.y13d{bottom:692.408667pt;}
.y23a{bottom:693.543333pt;}
.y18a{bottom:693.620133pt;}
.y2b2{bottom:695.433867pt;}
.y2f5{bottom:698.834933pt;}
.y1ee{bottom:700.800667pt;}
.y1d1{bottom:700.876667pt;}
.y65{bottom:702.312667pt;}
.ya9{bottom:702.462000pt;}
.y273{bottom:705.260667pt;}
.y189{bottom:706.923333pt;}
.y2b1{bottom:708.812667pt;}
.y239{bottom:709.191333pt;}
.y2f4{bottom:712.290533pt;}
.y1d0{bottom:715.540667pt;}
.ya8{bottom:715.766400pt;}
.y64{bottom:716.978000pt;}
.y272{bottom:719.924667pt;}
.y2b0{bottom:722.570667pt;}
.y238{bottom:724.762000pt;}
.y2f3{bottom:725.820533pt;}
.ya7{bottom:728.994000pt;}
.y1ed{bottom:730.204667pt;}
.y1cf{bottom:730.280667pt;}
.y63{bottom:731.718000pt;}
.y271{bottom:734.891333pt;}
.y2af{bottom:736.328667pt;}
.y2f2{bottom:739.124933pt;}
.y237{bottom:740.410000pt;}
.ya6{bottom:742.298400pt;}
.y1ce{bottom:744.944667pt;}
.y62{bottom:746.382000pt;}
.y2ae{bottom:750.085467pt;}
.y2f1{bottom:752.580267pt;}
.ya5{bottom:755.602800pt;}
.y236{bottom:755.980667pt;}
.y270{bottom:759.383333pt;}
.y6{bottom:759.458000pt;}
.y61{bottom:761.046000pt;}
.y7{bottom:761.272667pt;}
.y2ad{bottom:763.389867pt;}
.y2f0{bottom:766.111467pt;}
.ya4{bottom:768.830400pt;}
.y21c{bottom:773.593867pt;}
.y26f{bottom:774.048667pt;}
.y60{bottom:775.711333pt;}
.y235{bottom:777.146000pt;}
.y2ac{bottom:777.146667pt;}
.y2ef{bottom:779.565867pt;}
.ya3{bottom:782.134800pt;}
.y21b{bottom:786.972667pt;}
.y26e{bottom:788.712667pt;}
.y5f{bottom:790.451333pt;}
.y2ab{bottom:790.904667pt;}
.y2ee{bottom:792.945867pt;}
.ya2{bottom:795.362400pt;}
.y26d{bottom:803.376667pt;}
.y2aa{bottom:804.209067pt;}
.y5e{bottom:805.115333pt;}
.y2ed{bottom:806.400267pt;}
.y5{bottom:807.382000pt;}
.ya1{bottom:808.666800pt;}
.y234{bottom:810.483333pt;}
.y2a9{bottom:817.965867pt;}
.y26c{bottom:818.343333pt;}
.y5d{bottom:819.779333pt;}
.y2ec{bottom:819.931467pt;}
.ya0{bottom:821.971200pt;}
.y233{bottom:826.130000pt;}
.y26b{bottom:831.194000pt;}
.y2a8{bottom:831.723867pt;}
.y2eb{bottom:833.387067pt;}
.y5c{bottom:834.444667pt;}
.y9f{bottom:835.198800pt;}
.y4{bottom:839.962000pt;}
.y232{bottom:841.702000pt;}
.y2a7{bottom:845.027067pt;}
.y2ea{bottom:846.917067pt;}
.y9e{bottom:848.503200pt;}
.y5b{bottom:849.184667pt;}
.y144{bottom:849.336667pt;}
.y231{bottom:857.348667pt;}
.y2a6{bottom:858.785067pt;}
.y2e9{bottom:860.221467pt;}
.y9d{bottom:861.730800pt;}
.y5a{bottom:863.848667pt;}
.y143{bottom:864.000667pt;}
.y3{bottom:866.647741pt;}
.y26a{bottom:869.443333pt;}
.y2a5{bottom:872.541867pt;}
.y230{bottom:872.920667pt;}
.y2e8{bottom:873.675867pt;}
.y9c{bottom:875.035200pt;}
.y59{bottom:878.512667pt;}
.y57{bottom:878.514000pt;}
.y142{bottom:878.664667pt;}
.y269{bottom:884.108667pt;}
.y58{bottom:884.484667pt;}
.y2a4{bottom:885.921867pt;}
.y2e7{bottom:887.207067pt;}
.y32a{bottom:887.963067pt;}
.y9b{bottom:888.339600pt;}
.y22f{bottom:888.567333pt;}
.y2{bottom:890.683333pt;}
.y55{bottom:893.254000pt;}
.y141{bottom:893.330000pt;}
.y268{bottom:898.772667pt;}
.y56{bottom:899.150000pt;}
.y2a3{bottom:899.679867pt;}
.y2e6{bottom:900.662667pt;}
.y329{bottom:901.341867pt;}
.y9a{bottom:901.642800pt;}
.y22e{bottom:904.214000pt;}
.y54{bottom:907.918000pt;}
.y140{bottom:907.994000pt;}
.y2a2{bottom:913.361067pt;}
.y2e5{bottom:914.192667pt;}
.y328{bottom:914.646267pt;}
.y99{bottom:914.871600pt;}
.y267{bottom:918.199333pt;}
.y22d{bottom:919.786000pt;}
.y53{bottom:922.583333pt;}
.y13f{bottom:922.658000pt;}
.y2a1{bottom:927.119067pt;}
.y2e4{bottom:927.648267pt;}
.y327{bottom:927.950667pt;}
.y98{bottom:928.100400pt;}
.y266{bottom:932.863333pt;}
.y47{bottom:933.996667pt;}
.y22c{bottom:935.432667pt;}
.y52{bottom:937.247333pt;}
.y13e{bottom:937.323333pt;}
.y2a0{bottom:940.497867pt;}
.y2e3{bottom:941.027067pt;}
.y326{bottom:941.329467pt;}
.y97{bottom:941.403600pt;}
.y264{bottom:947.830000pt;}
.y265{bottom:949.568667pt;}
.y22b{bottom:951.004667pt;}
.y51{bottom:951.987333pt;}
.y29f{bottom:954.255867pt;}
.y2e2{bottom:954.482667pt;}
.y325{bottom:954.633867pt;}
.y96{bottom:954.708000pt;}
.y263{bottom:960.680667pt;}
.y13c{bottom:965.971333pt;}
.y4c{bottom:966.533333pt;}
.y4f{bottom:966.651333pt;}
.y95{bottom:968.011200pt;}
.y29e{bottom:968.012667pt;}
.y50{bottom:972.548667pt;}
.ydf{bottom:993.335333pt;}
.he{height:22.720000pt;}
.hd{height:23.856000pt;}
.h12{height:24.252766pt;}
.h13{height:24.376471pt;}
.ha{height:26.948012pt;}
.h16{height:28.839615pt;}
.h1f{height:29.576000pt;}
.hc{height:30.292955pt;}
.h7{height:30.623761pt;}
.h1b{height:32.340929pt;}
.h5{height:34.608000pt;}
.hb{height:36.384000pt;}
.h20{height:36.530667pt;}
.h21{height:37.333333pt;}
.h15{height:38.453333pt;}
.h23{height:38.933333pt;}
.hf{height:38.937500pt;}
.h24{height:38.938667pt;}
.h1a{height:40.373333pt;}
.h9{height:40.376000pt;}
.h22{height:40.421333pt;}
.h8{height:40.426667pt;}
.h11{height:41.875000pt;}
.h14{height:43.114605pt;}
.h17{height:43.117271pt;}
.h18{height:43.123138pt;}
.h1e{height:45.472567pt;}
.h19{height:47.964396pt;}
.h4{height:52.554262pt;}
.h6{height:57.656250pt;}
.h3{height:65.370282pt;}
.h1c{height:74.972929pt;}
.h1d{height:129.365333pt;}
.h2{height:1043.981333pt;}
.h10{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.943333pt;}
.x1e{left:24.000000pt;}
.x2{left:56.692800pt;}
.x3f{left:61.984133pt;}
.x24{left:68.638000pt;}
.x2f{left:69.996800pt;}
.x2e{left:74.834933pt;}
.x2c{left:75.968933pt;}
.x3{left:87.533733pt;}
.x2d{left:88.668533pt;}
.x6{left:99.628267pt;}
.x2a{left:103.710133pt;}
.x8{left:104.919600pt;}
.x2b{left:114.897600pt;}
.x7{left:121.927333pt;}
.x9{left:128.579333pt;}
.xa{left:129.562000pt;}
.xb{left:164.560667pt;}
.x19{left:242.419333pt;}
.x1f{left:244.611333pt;}
.x1a{left:266.759173pt;}
.x20{left:274.847333pt;}
.x21{left:280.743333pt;}
.x22{left:287.999333pt;}
.x23{left:329.499333pt;}
.xe{left:340.384667pt;}
.xc{left:350.286000pt;}
.xf{left:358.450000pt;}
.xd{left:360.038000pt;}
.x29{left:379.238000pt;}
.x10{left:408.640667pt;}
.x38{left:411.364467pt;}
.x3b{left:413.631333pt;}
.x39{left:418.923839pt;}
.x25{left:420.661067pt;}
.x31{left:422.022000pt;}
.x3d{left:432.679333pt;}
.x3e{left:435.324667pt;}
.x4{left:437.215333pt;}
.x3c{left:440.691333pt;}
.x11{left:443.414000pt;}
.x12{left:460.875333pt;}
.x33{left:492.170924pt;}
.x16{left:500.182000pt;}
.x32{left:502.072667pt;}
.x34{left:511.822945pt;}
.x17{left:531.023333pt;}
.x1d{left:540.933333pt;}
.x5{left:567.987333pt;}
.x1b{left:575.999333pt;}
.x27{left:589.455333pt;}
.x14{left:598.299333pt;}
.x28{left:601.700667pt;}
.x1c{left:616.590533pt;}
.x36{left:617.876019pt;}
.x35{left:627.778829pt;}
.x15{left:631.860667pt;}
.x37{left:640.099741pt;}
.x18{left:690.671333pt;}
.x30{left:698.154000pt;}
.x13{left:707.603333pt;}
.x3a{left:719.016667pt;}
.x26{left:719.999333pt;}
}




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