
    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_f6325a25f209f0fb78792c85.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.127000;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_286058fec036791b7f8b4cec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146973;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_f9a45eb52aceb4be38eb1e45.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933105;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_6135bb36b00487fc243c8e7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899902;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_0243fb54c622d8f51fc1d64d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_a63575b30ae8c4b5e3acfb3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.127000;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_de96777ef8efd6dcc5ff5bc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.163086;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_d90254b0415c31807e735d7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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_6d07c525847d8d84e5bad988.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.143066;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_08871da1a2f39eec09ca2b60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917000;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_903ea2d675234143b865b42b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_abd2749bea1d660db330a52c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.915527;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;}
.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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m5{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m2{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);}
.v1{vertical-align:-12.749400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.300000px;}
.v3{vertical-align:19.087800px;}
.ls78{letter-spacing:-3.087000px;}
.ls110{letter-spacing:-2.806942px;}
.ls111{letter-spacing:-2.745600px;}
.ls112{letter-spacing:-2.400000px;}
.lsb{letter-spacing:-2.251800px;}
.ls3{letter-spacing:-2.250000px;}
.ls123{letter-spacing:-2.193537px;}
.ls56{letter-spacing:-2.154600px;}
.ls122{letter-spacing:-2.145600px;}
.ls55{letter-spacing:-2.111400px;}
.lsc7{letter-spacing:-2.073600px;}
.ls20{letter-spacing:-2.057400px;}
.lsc6{letter-spacing:-2.035800px;}
.ls125{letter-spacing:-1.967804px;}
.ls126{letter-spacing:-1.924800px;}
.ls53{letter-spacing:-1.917000px;}
.ls51{letter-spacing:-1.884600px;}
.ls58{letter-spacing:-1.849414px;}
.ls61{letter-spacing:-1.846800px;}
.ls5c{letter-spacing:-1.819800px;}
.ls119{letter-spacing:-1.810772px;}
.ls57{letter-spacing:-1.809000px;}
.ls2{letter-spacing:-1.800000px;}
.lsc3{letter-spacing:-1.776600px;}
.ls11a{letter-spacing:-1.771200px;}
.lsfb{letter-spacing:-1.717534px;}
.ls1f{letter-spacing:-1.695600px;}
.lsfd{letter-spacing:-1.680000px;}
.ls5d{letter-spacing:-1.668600px;}
.ls5f{letter-spacing:-1.663200px;}
.ls54{letter-spacing:-1.656191px;}
.lsfc{letter-spacing:-1.653740px;}
.ls21{letter-spacing:-1.620000px;}
.ls5a{letter-spacing:-1.617547px;}
.lsc5{letter-spacing:-1.614600px;}
.ls89{letter-spacing:-1.609200px;}
.ls87{letter-spacing:-1.603800px;}
.lsc2{letter-spacing:-1.598400px;}
.lsb4{letter-spacing:-1.593000px;}
.ls59{letter-spacing:-1.582200px;}
.ls77{letter-spacing:-1.576800px;}
.ls5b{letter-spacing:-1.566000px;}
.ls64{letter-spacing:-1.555200px;}
.lscb{letter-spacing:-1.544400px;}
.lsbd{letter-spacing:-1.539000px;}
.ls52{letter-spacing:-1.533600px;}
.lsb5{letter-spacing:-1.528200px;}
.lsd4{letter-spacing:-1.490400px;}
.lsc0{letter-spacing:-1.485000px;}
.ls46{letter-spacing:-1.479600px;}
.lsca{letter-spacing:-1.474200px;}
.ls115{letter-spacing:-1.472172px;}
.lsa0{letter-spacing:-1.468800px;}
.ls4f{letter-spacing:-1.463400px;}
.ls45{letter-spacing:-1.452600px;}
.ls14{letter-spacing:-1.447200px;}
.ls133{letter-spacing:-1.444800px;}
.lsaf{letter-spacing:-1.441800px;}
.ls116{letter-spacing:-1.440000px;}
.lsd1{letter-spacing:-1.425600px;}
.ls100{letter-spacing:-1.420800px;}
.ls41{letter-spacing:-1.420200px;}
.lsff{letter-spacing:-1.416000px;}
.ls33{letter-spacing:-1.414800px;}
.lsbe{letter-spacing:-1.409400px;}
.ls6d{letter-spacing:-1.402242px;}
.ls35{letter-spacing:-1.398600px;}
.ls9d{letter-spacing:-1.393200px;}
.ls36{letter-spacing:-1.387800px;}
.ls4a{letter-spacing:-1.382400px;}
.ls9e{letter-spacing:-1.377000px;}
.ls6c{letter-spacing:-1.371600px;}
.ls124{letter-spacing:-1.369120px;}
.ls99{letter-spacing:-1.360800px;}
.ls11d{letter-spacing:-1.359306px;}
.ls95{letter-spacing:-1.355400px;}
.lsc{letter-spacing:-1.350000px;}
.lsf{letter-spacing:-1.344600px;}
.lsad{letter-spacing:-1.339200px;}
.ls120{letter-spacing:-1.334400px;}
.ls3c{letter-spacing:-1.333800px;}
.lsf9{letter-spacing:-1.329600px;}
.ls102{letter-spacing:-1.324955px;}
.lsd2{letter-spacing:-1.323000px;}
.ls7c{letter-spacing:-1.319433px;}
.ls3a{letter-spacing:-1.317600px;}
.ls48{letter-spacing:-1.306800px;}
.ls129{letter-spacing:-1.305326px;}
.ls8a{letter-spacing:-1.301400px;}
.ls109{letter-spacing:-1.300419px;}
.ls10d{letter-spacing:-1.295512px;}
.ls7b{letter-spacing:-1.290600px;}
.ls60{letter-spacing:-1.285200px;}
.ls10a{letter-spacing:-1.280790px;}
.lse9{letter-spacing:-1.279800px;}
.ls12a{letter-spacing:-1.276800px;}
.lsae{letter-spacing:-1.274400px;}
.ls108{letter-spacing:-1.272000px;}
.ls10c{letter-spacing:-1.267200px;}
.ls10e{letter-spacing:-1.266068px;}
.ls42{letter-spacing:-1.263600px;}
.lsd{letter-spacing:-1.260000px;}
.ls75{letter-spacing:-1.258200px;}
.ls15{letter-spacing:-1.252800px;}
.ls50{letter-spacing:-1.247400px;}
.ls31{letter-spacing:-1.242144px;}
.lsce{letter-spacing:-1.242000px;}
.ls44{letter-spacing:-1.236623px;}
.lsee{letter-spacing:-1.236600px;}
.ls71{letter-spacing:-1.231200px;}
.ls135{letter-spacing:-1.226810px;}
.lsab{letter-spacing:-1.225800px;}
.ls94{letter-spacing:-1.215000px;}
.ls10{letter-spacing:-1.209600px;}
.ls30{letter-spacing:-1.209020px;}
.ls11f{letter-spacing:-1.207181px;}
.lsd0{letter-spacing:-1.204200px;}
.ls118{letter-spacing:-1.200000px;}
.ls66{letter-spacing:-1.198800px;}
.lsd3{letter-spacing:-1.193400px;}
.ls82{letter-spacing:-1.188000px;}
.ls132{letter-spacing:-1.185600px;}
.ls3d{letter-spacing:-1.182600px;}
.ls10b{letter-spacing:-1.180800px;}
.ls37{letter-spacing:-1.177200px;}
.ls1e{letter-spacing:-1.171800px;}
.ls85{letter-spacing:-1.166400px;}
.lscf{letter-spacing:-1.161000px;}
.ls9c{letter-spacing:-1.150200px;}
.lsde{letter-spacing:-1.144800px;}
.ls138{letter-spacing:-1.142400px;}
.lsb3{letter-spacing:-1.139400px;}
.ls3f{letter-spacing:-1.134000px;}
.lsa8{letter-spacing:-1.128600px;}
.ls103{letter-spacing:-1.123758px;}
.lse6{letter-spacing:-1.123200px;}
.lsf8{letter-spacing:-1.118851px;}
.lsc9{letter-spacing:-1.117800px;}
.ls134{letter-spacing:-1.113600px;}
.ls4d{letter-spacing:-1.112400px;}
.lsd8{letter-spacing:-1.107000px;}
.ls106{letter-spacing:-1.104129px;}
.ls29{letter-spacing:-1.104128px;}
.ls90{letter-spacing:-1.101600px;}
.ls63{letter-spacing:-1.096200px;}
.ls12e{letter-spacing:-1.094400px;}
.ls11c{letter-spacing:-1.094315px;}
.ls38{letter-spacing:-1.090800px;}
.ls4c{letter-spacing:-1.085400px;}
.lse{letter-spacing:-1.080000px;}
.lsd5{letter-spacing:-1.074600px;}
.ls2f{letter-spacing:-1.071004px;}
.ls11b{letter-spacing:-1.070400px;}
.lsa3{letter-spacing:-1.069200px;}
.lsd9{letter-spacing:-1.063800px;}
.ls80{letter-spacing:-1.058400px;}
.lse1{letter-spacing:-1.053000px;}
.ls86{letter-spacing:-1.047600px;}
.lsb2{letter-spacing:-1.042200px;}
.ls88{letter-spacing:-1.036800px;}
.ls96{letter-spacing:-1.031400px;}
.ls6e{letter-spacing:-1.026000px;}
.lsdc{letter-spacing:-1.021318px;}
.lsc4{letter-spacing:-1.020600px;}
.lsaa{letter-spacing:-1.015200px;}
.ls73{letter-spacing:-1.010277px;}
.ls67{letter-spacing:-1.009800px;}
.lsba{letter-spacing:-1.004400px;}
.ls74{letter-spacing:-0.999000px;}
.ls127{letter-spacing:-0.991263px;}
.ls72{letter-spacing:-0.988200px;}
.lsac{letter-spacing:-0.982800px;}
.lsf4{letter-spacing:-0.981448px;}
.ls9f{letter-spacing:-0.977400px;}
.ls4b{letter-spacing:-0.972000px;}
.lse8{letter-spacing:-0.966600px;}
.ls1d{letter-spacing:-0.961200px;}
.ls28{letter-spacing:-0.960591px;}
.lsef{letter-spacing:-0.960000px;}
.ls97{letter-spacing:-0.955800px;}
.ls16{letter-spacing:-0.950400px;}
.ls83{letter-spacing:-0.945000px;}
.lsbb{letter-spacing:-0.939600px;}
.ls7e{letter-spacing:-0.934200px;}
.lsf6{letter-spacing:-0.932376px;}
.ls8b{letter-spacing:-0.928800px;}
.ls13c{letter-spacing:-0.927469px;}
.lsa5{letter-spacing:-0.923400px;}
.ls8d{letter-spacing:-0.922500px;}
.ls9b{letter-spacing:-0.918000px;}
.lsf5{letter-spacing:-0.912000px;}
.ls7f{letter-spacing:-0.907200px;}
.ls12d{letter-spacing:-0.902932px;}
.ls3e{letter-spacing:-0.901800px;}
.ls11{letter-spacing:-0.900000px;}
.ls49{letter-spacing:-0.896400px;}
.ls84{letter-spacing:-0.891000px;}
.ls137{letter-spacing:-0.888000px;}
.lsb1{letter-spacing:-0.885600px;}
.ls12c{letter-spacing:-0.883200px;}
.ls10f{letter-spacing:-0.878396px;}
.lsd6{letter-spacing:-0.874800px;}
.ls62{letter-spacing:-0.869400px;}
.ls113{letter-spacing:-0.868800px;}
.ls18{letter-spacing:-0.864000px;}
.ls131{letter-spacing:-0.859200px;}
.ls91{letter-spacing:-0.853200px;}
.ls76{letter-spacing:-0.847800px;}
.ls93{letter-spacing:-0.842400px;}
.ls12b{letter-spacing:-0.840000px;}
.ls7a{letter-spacing:-0.837000px;}
.lsdd{letter-spacing:-0.831600px;}
.lse5{letter-spacing:-0.828096px;}
.ls6f{letter-spacing:-0.826200px;}
.lsc1{letter-spacing:-0.820800px;}
.ls98{letter-spacing:-0.815400px;}
.ls12f{letter-spacing:-0.814602px;}
.ls5e{letter-spacing:-0.810000px;}
.ls121{letter-spacing:-0.806400px;}
.lsbc{letter-spacing:-0.804600px;}
.ls117{letter-spacing:-0.801600px;}
.lscc{letter-spacing:-0.799200px;}
.ls130{letter-spacing:-0.796800px;}
.lsb0{letter-spacing:-0.793800px;}
.ls139{letter-spacing:-0.792000px;}
.ls81{letter-spacing:-0.788400px;}
.ls101{letter-spacing:-0.787200px;}
.ls114{letter-spacing:-0.777600px;}
.ls8c{letter-spacing:-0.766800px;}
.ls40{letter-spacing:-0.761400px;}
.ls65{letter-spacing:-0.756000px;}
.lsfa{letter-spacing:-0.753600px;}
.ls92{letter-spacing:-0.739800px;}
.ls47{letter-spacing:-0.734400px;}
.lsf0{letter-spacing:-0.729600px;}
.ls22{letter-spacing:-0.729000px;}
.lsf3{letter-spacing:-0.726272px;}
.lsbf{letter-spacing:-0.723600px;}
.ls107{letter-spacing:-0.720000px;}
.lsec{letter-spacing:-0.712800px;}
.lsf2{letter-spacing:-0.710400px;}
.lscd{letter-spacing:-0.707400px;}
.lse2{letter-spacing:-0.702000px;}
.ls104{letter-spacing:-0.701735px;}
.ls11e{letter-spacing:-0.696828px;}
.ls26{letter-spacing:-0.696600px;}
.ls32{letter-spacing:-0.691200px;}
.ls105{letter-spacing:-0.686400px;}
.ls39{letter-spacing:-0.685800px;}
.ls7{letter-spacing:-0.670500px;}
.lsc8{letter-spacing:-0.669600px;}
.lsdb{letter-spacing:-0.664200px;}
.lsa7{letter-spacing:-0.653400px;}
.ls6{letter-spacing:-0.652500px;}
.lsa{letter-spacing:-0.648000px;}
.ls13b{letter-spacing:-0.642849px;}
.ls3b{letter-spacing:-0.642600px;}
.ls13a{letter-spacing:-0.628800px;}
.lsa9{letter-spacing:-0.626400px;}
.ls70{letter-spacing:-0.621000px;}
.lsfe{letter-spacing:-0.618312px;}
.ls43{letter-spacing:-0.615600px;}
.ls34{letter-spacing:-0.610200px;}
.ls128{letter-spacing:-0.609600px;}
.lsa2{letter-spacing:-0.583200px;}
.ls9a{letter-spacing:-0.577800px;}
.ls27{letter-spacing:-0.572400px;}
.lsa4{letter-spacing:-0.556200px;}
.ls1b{letter-spacing:-0.552064px;}
.lsa6{letter-spacing:-0.550800px;}
.ls9{letter-spacing:-0.549000px;}
.ls7d{letter-spacing:-0.545400px;}
.ls17{letter-spacing:-0.540000px;}
.lsea{letter-spacing:-0.534600px;}
.lseb{letter-spacing:-0.502200px;}
.lsf7{letter-spacing:-0.490724px;}
.ls1c{letter-spacing:-0.486000px;}
.lsf1{letter-spacing:-0.480000px;}
.ls8e{letter-spacing:-0.468000px;}
.ls4{letter-spacing:-0.450000px;}
.lsa1{letter-spacing:-0.448200px;}
.lsed{letter-spacing:-0.442800px;}
.ls2b{letter-spacing:-0.441000px;}
.lse4{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.418500px;}
.ls1a{letter-spacing:-0.410400px;}
.ls5{letter-spacing:-0.409500px;}
.ls25{letter-spacing:-0.405000px;}
.lse7{letter-spacing:-0.383400px;}
.lsb9{letter-spacing:-0.306000px;}
.lse0{letter-spacing:-0.291600px;}
.lse3{letter-spacing:-0.276032px;}
.lsdf{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.252000px;}
.ls4e{letter-spacing:-0.166500px;}
.lsb7{letter-spacing:-0.157500px;}
.ls6a{letter-spacing:-0.144000px;}
.ls6b{letter-spacing:-0.130500px;}
.ls68{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.097200px;}
.ls69{letter-spacing:-0.085500px;}
.ls79{letter-spacing:-0.027000px;}
.lsb6{letter-spacing:-0.022500px;}
.ls2a{letter-spacing:-0.013500px;}
.ls1{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.097200px;}
.lsb8{letter-spacing:0.121500px;}
.lsd7{letter-spacing:0.279000px;}
.ls12{letter-spacing:0.291600px;}
.ls24{letter-spacing:0.302400px;}
.lsda{letter-spacing:0.328500px;}
.ls136{letter-spacing:0.417600px;}
.ls13d{letter-spacing:0.426930px;}
.ls2d{letter-spacing:0.427500px;}
.ls2e{letter-spacing:0.450000px;}
.ls13{letter-spacing:0.540000px;}
.ls0{letter-spacing:2.250000px;}
.ls8f{letter-spacing:16.858800px;}
.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;}
}
.ws34e{word-spacing:-35.822858px;}
.ws4{word-spacing:-13.344000px;}
.ws34d{word-spacing:-13.151405px;}
.ws34f{word-spacing:-12.864000px;}
.ws350{word-spacing:-12.739197px;}
.ws2d3{word-spacing:-12.709754px;}
.ws30d{word-spacing:-12.660681px;}
.ws34c{word-spacing:-11.904000px;}
.wsef{word-spacing:-11.676000px;}
.ws3{word-spacing:-2.492526px;}
.ws99{word-spacing:-2.246400px;}
.ws73{word-spacing:-2.241000px;}
.wsdc{word-spacing:-2.235600px;}
.ws176{word-spacing:-2.230200px;}
.ws20{word-spacing:-2.224800px;}
.ws9a{word-spacing:-2.219400px;}
.ws258{word-spacing:-2.214000px;}
.ws1d3{word-spacing:-2.203200px;}
.ws81{word-spacing:-2.197800px;}
.ws66{word-spacing:-2.197214px;}
.ws205{word-spacing:-2.192400px;}
.ws2b2{word-spacing:-2.187000px;}
.ws19c{word-spacing:-2.181600px;}
.wseb{word-spacing:-2.178000px;}
.wsb1{word-spacing:-2.176200px;}
.ws27a{word-spacing:-2.170800px;}
.ws13a{word-spacing:-2.165400px;}
.ws67{word-spacing:-2.164090px;}
.ws9d{word-spacing:-2.160000px;}
.ws70{word-spacing:-2.154600px;}
.ws7c{word-spacing:-2.149200px;}
.ws12d{word-spacing:-2.143800px;}
.wsed{word-spacing:-2.142000px;}
.wsa7{word-spacing:-2.138400px;}
.wse5{word-spacing:-2.133000px;}
.ws1f7{word-spacing:-2.127600px;}
.ws1d{word-spacing:-2.122200px;}
.ws17e{word-spacing:-2.116800px;}
.wsbc{word-spacing:-2.108884px;}
.ws1e3{word-spacing:-2.106000px;}
.ws2f{word-spacing:-2.100600px;}
.ws2df{word-spacing:-2.095200px;}
.ws26f{word-spacing:-2.089800px;}
.ws122{word-spacing:-2.086801px;}
.ws2c0{word-spacing:-2.084400px;}
.ws27{word-spacing:-2.079000px;}
.ws113{word-spacing:-2.073600px;}
.ws86{word-spacing:-2.068200px;}
.wsbb{word-spacing:-2.062800px;}
.ws1eb{word-spacing:-2.057400px;}
.wsca{word-spacing:-2.052000px;}
.ws12b{word-spacing:-2.046600px;}
.ws305{word-spacing:-2.041412px;}
.ws121{word-spacing:-2.041200px;}
.ws374{word-spacing:-2.036505px;}
.wsb3{word-spacing:-2.035800px;}
.ws15a{word-spacing:-2.030400px;}
.ws91{word-spacing:-2.025000px;}
.wsba{word-spacing:-2.015033px;}
.ws75{word-spacing:-2.014200px;}
.ws207{word-spacing:-2.008800px;}
.ws112{word-spacing:-2.003992px;}
.ws7a{word-spacing:-1.998000px;}
.ws304{word-spacing:-1.996800px;}
.ws1e9{word-spacing:-1.992600px;}
.ws1b{word-spacing:-1.987200px;}
.ws319{word-spacing:-1.982400px;}
.ws182{word-spacing:-1.976400px;}
.wsb9{word-spacing:-1.971000px;}
.ws92{word-spacing:-1.965600px;}
.wsf3{word-spacing:-1.960200px;}
.wsac{word-spacing:-1.954800px;}
.ws94{word-spacing:-1.949400px;}
.ws6f{word-spacing:-1.944000px;}
.wsd4{word-spacing:-1.938600px;}
.ws35d{word-spacing:-1.933453px;}
.ws6d{word-spacing:-1.933200px;}
.ws18f{word-spacing:-1.927800px;}
.ws32d{word-spacing:-1.923638px;}
.ws220{word-spacing:-1.922400px;}
.ws22{word-spacing:-1.917000px;}
.ws85{word-spacing:-1.911600px;}
.ws30e{word-spacing:-1.908917px;}
.ws3d{word-spacing:-1.906200px;}
.ws32a{word-spacing:-1.904009px;}
.ws2de{word-spacing:-1.900800px;}
.ws35e{word-spacing:-1.891200px;}
.ws1ee{word-spacing:-1.890000px;}
.ws390{word-spacing:-1.886400px;}
.ws25{word-spacing:-1.884600px;}
.ws8e{word-spacing:-1.879200px;}
.ws151{word-spacing:-1.868400px;}
.ws354{word-spacing:-1.867200px;}
.ws1a7{word-spacing:-1.863000px;}
.ws377{word-spacing:-1.859844px;}
.ws25b{word-spacing:-1.857600px;}
.ws3a8{word-spacing:-1.852800px;}
.ws8f{word-spacing:-1.852200px;}
.ws48{word-spacing:-1.846800px;}
.ws5f{word-spacing:-1.845000px;}
.ws286{word-spacing:-1.841400px;}
.ws24c{word-spacing:-1.836000px;}
.ws1d8{word-spacing:-1.830600px;}
.ws100{word-spacing:-1.825200px;}
.ws366{word-spacing:-1.820586px;}
.ws376{word-spacing:-1.819200px;}
.ws3e{word-spacing:-1.814400px;}
.ws51{word-spacing:-1.809000px;}
.ws27f{word-spacing:-1.803600px;}
.ws251{word-spacing:-1.798200px;}
.ws372{word-spacing:-1.796050px;}
.ws21d{word-spacing:-1.792800px;}
.wsec{word-spacing:-1.791000px;}
.ws262{word-spacing:-1.787400px;}
.ws2e0{word-spacing:-1.782000px;}
.ws33b{word-spacing:-1.780800px;}
.ws11{word-spacing:-1.777500px;}
.wse3{word-spacing:-1.776600px;}
.ws167{word-spacing:-1.765800px;}
.ws342{word-spacing:-1.761699px;}
.wsb4{word-spacing:-1.760400px;}
.ws373{word-spacing:-1.756800px;}
.wsd8{word-spacing:-1.755000px;}
.ws45{word-spacing:-1.749600px;}
.ws339{word-spacing:-1.746978px;}
.wsee{word-spacing:-1.746000px;}
.ws303{word-spacing:-1.742400px;}
.ws239{word-spacing:-1.733400px;}
.ws33d{word-spacing:-1.732256px;}
.ws143{word-spacing:-1.728000px;}
.ws337{word-spacing:-1.727349px;}
.ws159{word-spacing:-1.722600px;}
.ws37b{word-spacing:-1.722442px;}
.ws20f{word-spacing:-1.719000px;}
.wsb6{word-spacing:-1.717200px;}
.wsd{word-spacing:-1.714500px;}
.ws10b{word-spacing:-1.711800px;}
.wsa3{word-spacing:-1.710000px;}
.ws35b{word-spacing:-1.707720px;}
.ws2ea{word-spacing:-1.706400px;}
.ws315{word-spacing:-1.704000px;}
.ws327{word-spacing:-1.702813px;}
.ws50{word-spacing:-1.701000px;}
.ws33c{word-spacing:-1.694400px;}
.ws349{word-spacing:-1.692998px;}
.ws336{word-spacing:-1.689600px;}
.ws2e7{word-spacing:-1.684800px;}
.wsc{word-spacing:-1.674000px;}
.ws35c{word-spacing:-1.670400px;}
.ws35f{word-spacing:-1.668462px;}
.wsf{word-spacing:-1.656000px;}
.ws23f{word-spacing:-1.652400px;}
.ws2f5{word-spacing:-1.647000px;}
.ws6c{word-spacing:-1.641600px;}
.ws371{word-spacing:-1.634111px;}
.ws312{word-spacing:-1.632000px;}
.ws2b3{word-spacing:-1.630800px;}
.ws368{word-spacing:-1.627200px;}
.ws38c{word-spacing:-1.622400px;}
.ws14{word-spacing:-1.611000px;}
.ws31{word-spacing:-1.603800px;}
.wsf9{word-spacing:-1.598400px;}
.wsda{word-spacing:-1.593000px;}
.ws18e{word-spacing:-1.587600px;}
.ws39a{word-spacing:-1.584000px;}
.ws11c{word-spacing:-1.582200px;}
.ws1c0{word-spacing:-1.571400px;}
.ws212{word-spacing:-1.570500px;}
.ws36f{word-spacing:-1.570317px;}
.ws37d{word-spacing:-1.564800px;}
.ws2b8{word-spacing:-1.549800px;}
.ws31f{word-spacing:-1.545600px;}
.ws23b{word-spacing:-1.544400px;}
.ws322{word-spacing:-1.540800px;}
.ws15c{word-spacing:-1.539000px;}
.ws36e{word-spacing:-1.536000px;}
.ws1ce{word-spacing:-1.528200px;}
.ws1b2{word-spacing:-1.522800px;}
.ws30{word-spacing:-1.517400px;}
.ws222{word-spacing:-1.501200px;}
.ws170{word-spacing:-1.490400px;}
.ws2b5{word-spacing:-1.485000px;}
.ws226{word-spacing:-1.468800px;}
.ws72{word-spacing:-1.463400px;}
.ws60{word-spacing:-1.458000px;}
.ws2bb{word-spacing:-1.425600px;}
.ws230{word-spacing:-1.420200px;}
.ws16{word-spacing:-1.372500px;}
.ws21f{word-spacing:-1.371600px;}
.ws3f{word-spacing:-1.360800px;}
.ws3a9{word-spacing:-1.358400px;}
.ws9b{word-spacing:-1.350000px;}
.ws261{word-spacing:-1.333800px;}
.ws1e{word-spacing:-1.328400px;}
.ws2c{word-spacing:-1.317600px;}
.ws320{word-spacing:-1.310400px;}
.ws2a3{word-spacing:-1.306800px;}
.ws28{word-spacing:-1.290600px;}
.ws1c{word-spacing:-1.279800px;}
.ws23a{word-spacing:-1.274400px;}
.ws2c6{word-spacing:-1.269000px;}
.ws39c{word-spacing:-1.257600px;}
.ws2b6{word-spacing:-1.215000px;}
.ws250{word-spacing:-1.209600px;}
.ws156{word-spacing:-1.204200px;}
.ws1f3{word-spacing:-1.188000px;}
.ws111{word-spacing:-1.182600px;}
.ws268{word-spacing:-1.166400px;}
.ws24b{word-spacing:-1.161000px;}
.ws2d8{word-spacing:-1.155600px;}
.ws1df{word-spacing:-1.150200px;}
.ws388{word-spacing:-1.137600px;}
.ws1fd{word-spacing:-1.134000px;}
.ws4a{word-spacing:-1.128600px;}
.ws1a8{word-spacing:-1.123200px;}
.ws357{word-spacing:-1.113600px;}
.ws53{word-spacing:-1.112400px;}
.ws2aa{word-spacing:-1.107000px;}
.ws25d{word-spacing:-1.090800px;}
.ws28d{word-spacing:-1.080000px;}
.ws202{word-spacing:-1.074600px;}
.ws15f{word-spacing:-1.069200px;}
.ws257{word-spacing:-1.065483px;}
.ws252{word-spacing:-1.063800px;}
.wse1{word-spacing:-1.047600px;}
.ws1a3{word-spacing:-1.042200px;}
.ws2bd{word-spacing:-1.036800px;}
.ws2a6{word-spacing:-1.026000px;}
.ws37a{word-spacing:-1.010892px;}
.ws42{word-spacing:-0.993600px;}
.ws5c{word-spacing:-0.988200px;}
.ws26d{word-spacing:-0.977400px;}
.ws104{word-spacing:-0.966600px;}
.ws3a5{word-spacing:-0.950400px;}
.wsdd{word-spacing:-0.934200px;}
.ws52{word-spacing:-0.928800px;}
.ws7{word-spacing:-0.927000px;}
.ws20a{word-spacing:-0.923400px;}
.ws155{word-spacing:-0.907200px;}
.ws2c2{word-spacing:-0.901800px;}
.ws253{word-spacing:-0.885600px;}
.ws4f{word-spacing:-0.883302px;}
.ws65{word-spacing:-0.877781px;}
.ws183{word-spacing:-0.869400px;}
.ws4e{word-spacing:-0.864000px;}
.ws152{word-spacing:-0.858600px;}
.ws71{word-spacing:-0.847800px;}
.ws41{word-spacing:-0.837000px;}
.wsb7{word-spacing:-0.831600px;}
.wsb{word-spacing:-0.823500px;}
.ws2ef{word-spacing:-0.815400px;}
.ws84{word-spacing:-0.810000px;}
.ws343{word-spacing:-0.790066px;}
.ws344{word-spacing:-0.772800px;}
.ws287{word-spacing:-0.772200px;}
.ws17b{word-spacing:-0.766800px;}
.ws2d6{word-spacing:-0.756000px;}
.ws38f{word-spacing:-0.750808px;}
.ws14b{word-spacing:-0.750600px;}
.ws391{word-spacing:-0.748800px;}
.ws190{word-spacing:-0.745200px;}
.ws2b9{word-spacing:-0.734400px;}
.ws365{word-spacing:-0.731179px;}
.ws2dc{word-spacing:-0.729000px;}
.ws188{word-spacing:-0.723600px;}
.ws19{word-spacing:-0.702000px;}
.ws2bf{word-spacing:-0.696600px;}
.ws6a{word-spacing:-0.691200px;}
.wsb8{word-spacing:-0.685800px;}
.ws124{word-spacing:-0.669600px;}
.wscd{word-spacing:-0.664200px;}
.ws19b{word-spacing:-0.637200px;}
.ws384{word-spacing:-0.633034px;}
.ws1b3{word-spacing:-0.631800px;}
.ws185{word-spacing:-0.626400px;}
.ws2cf{word-spacing:-0.621000px;}
.ws17{word-spacing:-0.616500px;}
.ws14c{word-spacing:-0.615600px;}
.ws129{word-spacing:-0.599400px;}
.ws189{word-spacing:-0.588600px;}
.ws1bc{word-spacing:-0.583200px;}
.ws137{word-spacing:-0.561600px;}
.ws36a{word-spacing:-0.556800px;}
.ws110{word-spacing:-0.556200px;}
.ws260{word-spacing:-0.545400px;}
.ws267{word-spacing:-0.529200px;}
.ws163{word-spacing:-0.502200px;}
.ws6{word-spacing:-0.486000px;}
.ws394{word-spacing:-0.484800px;}
.ws1e2{word-spacing:-0.480600px;}
.ws204{word-spacing:-0.475200px;}
.ws1da{word-spacing:-0.469800px;}
.ws23d{word-spacing:-0.464400px;}
.ws1d2{word-spacing:-0.459000px;}
.ws27e{word-spacing:-0.453600px;}
.ws2ae{word-spacing:-0.448200px;}
.ws2f1{word-spacing:-0.442800px;}
.ws142{word-spacing:-0.415800px;}
.ws2db{word-spacing:-0.414048px;}
.ws130{word-spacing:-0.410400px;}
.ws2c1{word-spacing:-0.405000px;}
.ws23e{word-spacing:-0.399600px;}
.ws2b0{word-spacing:-0.388800px;}
.ws1d4{word-spacing:-0.383400px;}
.ws1ed{word-spacing:-0.378000px;}
.ws1bb{word-spacing:-0.367200px;}
.wsa4{word-spacing:-0.364500px;}
.ws271{word-spacing:-0.361800px;}
.wsf8{word-spacing:-0.356400px;}
.ws1d1{word-spacing:-0.351000px;}
.ws7e{word-spacing:-0.345600px;}
.ws12c{word-spacing:-0.329400px;}
.ws138{word-spacing:-0.313200px;}
.ws1bd{word-spacing:-0.302400px;}
.ws32e{word-spacing:-0.299342px;}
.ws32f{word-spacing:-0.292800px;}
.ws1d9{word-spacing:-0.291600px;}
.ws2d5{word-spacing:-0.264600px;}
.ws39f{word-spacing:-0.264000px;}
.ws2a2{word-spacing:-0.248400px;}
.wse6{word-spacing:-0.237600px;}
.ws1ac{word-spacing:-0.232200px;}
.ws2e8{word-spacing:-0.226800px;}
.wsfd{word-spacing:-0.221400px;}
.wsaf{word-spacing:-0.216000px;}
.wsd9{word-spacing:-0.210600px;}
.ws2f9{word-spacing:-0.205200px;}
.ws352{word-spacing:-0.196290px;}
.ws243{word-spacing:-0.189000px;}
.ws1b1{word-spacing:-0.183600px;}
.ws43{word-spacing:-0.178200px;}
.ws2cb{word-spacing:-0.172800px;}
.ws1ae{word-spacing:-0.162000px;}
.ws37f{word-spacing:-0.153600px;}
.ws28f{word-spacing:-0.151200px;}
.ws12{word-spacing:-0.135000px;}
.ws133{word-spacing:-0.118800px;}
.ws26a{word-spacing:-0.113400px;}
.ws25a{word-spacing:-0.102600px;}
.ws18d{word-spacing:-0.097200px;}
.ws27d{word-spacing:-0.091800px;}
.ws4b{word-spacing:-0.081000px;}
.ws378{word-spacing:-0.063794px;}
.ws134{word-spacing:-0.054000px;}
.ws1a4{word-spacing:-0.048600px;}
.ws5e{word-spacing:-0.031500px;}
.ws116{word-spacing:-0.018000px;}
.ws2c4{word-spacing:-0.005400px;}
.ws1a9{word-spacing:-0.002700px;}
.ws0{word-spacing:0.000000px;}
.ws1e5{word-spacing:0.016200px;}
.ws16b{word-spacing:0.027000px;}
.ws47{word-spacing:0.032400px;}
.ws291{word-spacing:0.037800px;}
.ws1e6{word-spacing:0.043200px;}
.ws16c{word-spacing:0.045000px;}
.ws192{word-spacing:0.054000px;}
.ws338{word-spacing:0.057600px;}
.ws273{word-spacing:0.059400px;}
.ws11b{word-spacing:0.064800px;}
.wse7{word-spacing:0.070200px;}
.ws1e4{word-spacing:0.102600px;}
.ws31e{word-spacing:0.115200px;}
.ws31d{word-spacing:0.117774px;}
.ws89{word-spacing:0.135000px;}
.ws289{word-spacing:0.151200px;}
.wsfb{word-spacing:0.156600px;}
.ws255{word-spacing:0.167400px;}
.ws247{word-spacing:0.172800px;}
.ws21a{word-spacing:0.183600px;}
.ws309{word-spacing:0.187200px;}
.ws1db{word-spacing:0.189000px;}
.ws30a{word-spacing:0.196290px;}
.wscc{word-spacing:0.205200px;}
.ws22e{word-spacing:0.232200px;}
.ws1f{word-spacing:0.237600px;}
.ws38d{word-spacing:0.244800px;}
.ws38e{word-spacing:0.250269px;}
.ws15{word-spacing:0.261000px;}
.ws1cd{word-spacing:0.270000px;}
.ws1cb{word-spacing:0.286200px;}
.ws2f7{word-spacing:0.297000px;}
.ws1b7{word-spacing:0.313200px;}
.ws1af{word-spacing:0.318600px;}
.ws244{word-spacing:0.329400px;}
.ws16a{word-spacing:0.346500px;}
.ws2c8{word-spacing:0.356400px;}
.ws69{word-spacing:0.367200px;}
.ws197{word-spacing:0.372600px;}
.ws5b{word-spacing:0.375403px;}
.ws39e{word-spacing:0.379200px;}
.ws1f5{word-spacing:0.383400px;}
.ws398{word-spacing:0.384000px;}
.ws33a{word-spacing:0.387672px;}
.ws169{word-spacing:0.391500px;}
.ws59{word-spacing:0.397486px;}
.wse2{word-spacing:0.405000px;}
.ws1b8{word-spacing:0.415800px;}
.ws238{word-spacing:0.437400px;}
.ws25c{word-spacing:0.469800px;}
.ws177{word-spacing:0.480600px;}
.ws1c8{word-spacing:0.486000px;}
.ws178{word-spacing:0.491337px;}
.ws25f{word-spacing:0.496800px;}
.ws150{word-spacing:0.507600px;}
.ws29b{word-spacing:0.517500px;}
.ws106{word-spacing:0.518400px;}
.ws389{word-spacing:0.520168px;}
.ws397{word-spacing:0.528000px;}
.ws141{word-spacing:0.534600px;}
.ws87{word-spacing:0.550800px;}
.ws274{word-spacing:0.556200px;}
.wse{word-spacing:0.567000px;}
.wsfa{word-spacing:0.572400px;}
.ws36{word-spacing:0.588600px;}
.ws29a{word-spacing:0.598500px;}
.ws26c{word-spacing:0.599400px;}
.ws31a{word-spacing:0.608498px;}
.wsb2{word-spacing:0.610200px;}
.ws1ab{word-spacing:0.612000px;}
.ws209{word-spacing:0.615600px;}
.ws2a5{word-spacing:0.621000px;}
.ws5{word-spacing:0.625500px;}
.ws2c7{word-spacing:0.631800px;}
.ws2ad{word-spacing:0.653400px;}
.ws165{word-spacing:0.685800px;}
.ws18a{word-spacing:0.691200px;}
.ws1aa{word-spacing:0.697500px;}
.ws269{word-spacing:0.712800px;}
.ws1ad{word-spacing:0.761400px;}
.ws2e9{word-spacing:0.783000px;}
.ws284{word-spacing:0.793800px;}
.ws302{word-spacing:0.806400px;}
.ws8{word-spacing:0.810000px;}
.ws9{word-spacing:0.814500px;}
.ws1b0{word-spacing:0.815400px;}
.ws301{word-spacing:0.824416px;}
.ws1c1{word-spacing:0.826200px;}
.ws2d1{word-spacing:0.847800px;}
.wsc1{word-spacing:0.858600px;}
.ws11f{word-spacing:0.864000px;}
.ws172{word-spacing:0.869400px;}
.wsc2{word-spacing:0.877781px;}
.ws7b{word-spacing:0.891000px;}
.ws297{word-spacing:0.901800px;}
.wsf7{word-spacing:0.907200px;}
.ws105{word-spacing:0.912600px;}
.ws145{word-spacing:0.918000px;}
.ws1b6{word-spacing:0.928800px;}
.ws218{word-spacing:0.934200px;}
.ws1f2{word-spacing:0.939600px;}
.ws1a0{word-spacing:0.950400px;}
.ws2ba{word-spacing:0.955800px;}
.ws321{word-spacing:0.960000px;}
.ws21{word-spacing:0.961200px;}
.ws2a8{word-spacing:0.977400px;}
.ws392{word-spacing:0.979200px;}
.ws241{word-spacing:0.982800px;}
.wsc6{word-spacing:0.999000px;}
.ws18b{word-spacing:1.009800px;}
.ws2fa{word-spacing:1.015200px;}
.ws1f9{word-spacing:1.036800px;}
.wsce{word-spacing:1.042200px;}
.wse9{word-spacing:1.053000px;}
.ws26b{word-spacing:1.058400px;}
.ws131{word-spacing:1.069200px;}
.ws1c4{word-spacing:1.080000px;}
.ws164{word-spacing:1.085400px;}
.ws191{word-spacing:1.107000px;}
.ws24d{word-spacing:1.112400px;}
.ws2e6{word-spacing:1.123200px;}
.ws2b7{word-spacing:1.144800px;}
.ws5d{word-spacing:1.150200px;}
.ws236{word-spacing:1.155600px;}
.ws17a{word-spacing:1.161000px;}
.ws2af{word-spacing:1.166400px;}
.ws1f4{word-spacing:1.177200px;}
.ws18{word-spacing:1.179000px;}
.ws9e{word-spacing:1.188000px;}
.ws63{word-spacing:1.197978px;}
.ws9c{word-spacing:1.198800px;}
.ws1e0{word-spacing:1.204200px;}
.ws1a2{word-spacing:1.209600px;}
.ws298{word-spacing:1.231200px;}
.ws16d{word-spacing:1.236623px;}
.ws2f4{word-spacing:1.242000px;}
.ws14a{word-spacing:1.247400px;}
.ws2a9{word-spacing:1.258200px;}
.ws10a{word-spacing:1.263600px;}
.ws15d{word-spacing:1.269000px;}
.ws20e{word-spacing:1.278000px;}
.ws200{word-spacing:1.279800px;}
.ws173{word-spacing:1.285200px;}
.ws13{word-spacing:1.291500px;}
.ws109{word-spacing:1.291829px;}
.ws2d7{word-spacing:1.296000px;}
.ws382{word-spacing:1.300800px;}
.ws31c{word-spacing:1.305326px;}
.ws1e7{word-spacing:1.306800px;}
.ws2dd{word-spacing:1.350000px;}
.ws2f2{word-spacing:1.355400px;}
.ws227{word-spacing:1.360800px;}
.ws147{word-spacing:1.371600px;}
.ws22d{word-spacing:1.377000px;}
.ws300{word-spacing:1.398564px;}
.ws6e{word-spacing:1.409400px;}
.ws13e{word-spacing:1.420200px;}
.ws1ff{word-spacing:1.431000px;}
.ws30f{word-spacing:1.442729px;}
.wsad{word-spacing:1.447200px;}
.ws2ec{word-spacing:1.468800px;}
.wsae{word-spacing:1.479531px;}
.ws33{word-spacing:1.490400px;}
.ws22a{word-spacing:1.495800px;}
.ws20d{word-spacing:1.503000px;}
.ws237{word-spacing:1.506600px;}
.ws38{word-spacing:1.522800px;}
.ws359{word-spacing:1.526400px;}
.ws290{word-spacing:1.528200px;}
.ws367{word-spacing:1.531200px;}
.ws39{word-spacing:1.556820px;}
.ws385{word-spacing:1.560000px;}
.ws35a{word-spacing:1.560503px;}
.ws2a0{word-spacing:1.582200px;}
.ws211{word-spacing:1.588500px;}
.ws61{word-spacing:1.595464px;}
.wsbd{word-spacing:1.603800px;}
.ws2fb{word-spacing:1.668600px;}
.ws22b{word-spacing:1.679400px;}
.ws135{word-spacing:1.684800px;}
.ws10f{word-spacing:1.690200px;}
.ws281{word-spacing:1.717200px;}
.wsaa{word-spacing:1.744200px;}
.ws1fa{word-spacing:1.755000px;}
.ws38b{word-spacing:1.761600px;}
.ws2eb{word-spacing:1.765800px;}
.ws199{word-spacing:1.782000px;}
.ws259{word-spacing:1.792800px;}
.ws2da{word-spacing:1.809000px;}
.ws76{word-spacing:1.830600px;}
.ws306{word-spacing:1.857600px;}
.ws2f0{word-spacing:1.863000px;}
.ws1d6{word-spacing:1.868400px;}
.ws21b{word-spacing:1.873800px;}
.ws340{word-spacing:1.881600px;}
.ws11d{word-spacing:1.906200px;}
.ws19f{word-spacing:1.911600px;}
.ws1a{word-spacing:1.917000px;}
.ws395{word-spacing:1.924800px;}
.ws35{word-spacing:1.927800px;}
.wsd1{word-spacing:1.933200px;}
.ws1ec{word-spacing:1.938600px;}
.ws396{word-spacing:1.939200px;}
.ws140{word-spacing:1.944000px;}
.ws18c{word-spacing:1.971000px;}
.ws313{word-spacing:1.972800px;}
.wsb5{word-spacing:1.987200px;}
.ws97{word-spacing:2.025000px;}
.ws283{word-spacing:2.030400px;}
.ws292{word-spacing:2.041200px;}
.ws14f{word-spacing:2.052000px;}
.ws1f6{word-spacing:2.057400px;}
.ws13b{word-spacing:2.062800px;}
.ws2bc{word-spacing:2.073600px;}
.ws1cf{word-spacing:2.089800px;}
.ws1a5{word-spacing:2.100600px;}
.wsd3{word-spacing:2.116800px;}
.ws195{word-spacing:2.133000px;}
.ws2ab{word-spacing:2.143800px;}
.ws1e8{word-spacing:2.149200px;}
.ws2be{word-spacing:2.160000px;}
.ws1f8{word-spacing:2.165400px;}
.ws249{word-spacing:2.170800px;}
.ws23{word-spacing:2.181600px;}
.ws2ac{word-spacing:2.191693px;}
.ws2c9{word-spacing:2.197800px;}
.ws1c2{word-spacing:2.208600px;}
.ws36b{word-spacing:2.227200px;}
.ws341{word-spacing:2.232000px;}
.ws2e1{word-spacing:2.235600px;}
.ws5a{word-spacing:2.246900px;}
.ws23c{word-spacing:2.268000px;}
.wsfc{word-spacing:2.273400px;}
.ws36c{word-spacing:2.276960px;}
.ws56{word-spacing:2.278800px;}
.wsc9{word-spacing:2.284200px;}
.ws356{word-spacing:2.284800px;}
.ws57{word-spacing:2.300400px;}
.ws114{word-spacing:2.316600px;}
.ws288{word-spacing:2.322000px;}
.ws1ef{word-spacing:2.327400px;}
.ws329{word-spacing:2.328000px;}
.wscf{word-spacing:2.343600px;}
.ws62{word-spacing:2.346271px;}
.ws270{word-spacing:2.349000px;}
.ws29{word-spacing:2.359800px;}
.ws1a6{word-spacing:2.370600px;}
.ws328{word-spacing:2.380012px;}
.wsf5{word-spacing:2.403000px;}
.ws198{word-spacing:2.435400px;}
.ws17f{word-spacing:2.451600px;}
.ws228{word-spacing:2.457000px;}
.ws387{word-spacing:2.457600px;}
.ws225{word-spacing:2.462400px;}
.ws15b{word-spacing:2.467800px;}
.ws1f0{word-spacing:2.511000px;}
.ws1c5{word-spacing:2.516400px;}
.ws108{word-spacing:2.538000px;}
.wsd0{word-spacing:2.543400px;}
.ws13d{word-spacing:2.548800px;}
.ws2d2{word-spacing:2.559600px;}
.ws21c{word-spacing:2.581200px;}
.ws295{word-spacing:2.592000px;}
.ws7f{word-spacing:2.602800px;}
.ws33f{word-spacing:2.616000px;}
.ws26{word-spacing:2.619000px;}
.ws77{word-spacing:2.635200px;}
.wsdf{word-spacing:2.646000px;}
.ws36d{word-spacing:2.649600px;}
.ws21e{word-spacing:2.656800px;}
.ws13f{word-spacing:2.673000px;}
.ws33e{word-spacing:2.674446px;}
.ws1b5{word-spacing:2.678400px;}
.ws229{word-spacing:2.705400px;}
.ws285{word-spacing:2.710800px;}
.ws194{word-spacing:2.737800px;}
.ws294{word-spacing:2.754000px;}
.ws29c{word-spacing:2.799000px;}
.wsd5{word-spacing:2.802600px;}
.ws10d{word-spacing:2.829600px;}
.ws29d{word-spacing:2.848500px;}
.ws8b{word-spacing:2.854170px;}
.ws318{word-spacing:2.856014px;}
.ws263{word-spacing:2.872800px;}
.ws399{word-spacing:2.904000px;}
.ws246{word-spacing:2.905200px;}
.ws37c{word-spacing:2.908800px;}
.ws15e{word-spacing:2.916000px;}
.ws3aa{word-spacing:2.918400px;}
.wsf1{word-spacing:2.926800px;}
.ws10{word-spacing:2.929500px;}
.ws2b1{word-spacing:2.932200px;}
.ws316{word-spacing:2.934530px;}
.ws1dd{word-spacing:2.937600px;}
.ws28b{word-spacing:2.953800px;}
.ws2b{word-spacing:2.975400px;}
.ws3ab{word-spacing:2.983602px;}
.ws375{word-spacing:2.985600px;}
.ws370{word-spacing:2.995200px;}
.ws3a1{word-spacing:3.004800px;}
.ws210{word-spacing:3.006000px;}
.ws311{word-spacing:3.014400px;}
.ws364{word-spacing:3.017953px;}
.ws9f{word-spacing:3.024000px;}
.ws82{word-spacing:3.040200px;}
.ws31b{word-spacing:3.047397px;}
.ws27b{word-spacing:3.061800px;}
.ws32c{word-spacing:3.062400px;}
.ws3a2{word-spacing:3.071933px;}
.ws1a1{word-spacing:3.072600px;}
.ws358{word-spacing:3.076800px;}
.ws310{word-spacing:3.081747px;}
.ws2fe{word-spacing:3.086400px;}
.wsa{word-spacing:3.087000px;}
.ws2ed{word-spacing:3.094200px;}
.ws1fb{word-spacing:3.115800px;}
.ws361{word-spacing:3.125912px;}
.ws314{word-spacing:3.129600px;}
.ws32b{word-spacing:3.130820px;}
.ws235{word-spacing:3.137400px;}
.ws334{word-spacing:3.139200px;}
.ws20c{word-spacing:3.148200px;}
.ws34b{word-spacing:3.153600px;}
.ws2ff{word-spacing:3.155356px;}
.ws363{word-spacing:3.158400px;}
.ws323{word-spacing:3.163200px;}
.ws3a0{word-spacing:3.168000px;}
.ws348{word-spacing:3.172800px;}
.ws362{word-spacing:3.174985px;}
.ws353{word-spacing:3.177600px;}
.ws369{word-spacing:3.182400px;}
.ws146{word-spacing:3.191400px;}
.ws168{word-spacing:3.202200px;}
.ws360{word-spacing:3.204428px;}
.ws37e{word-spacing:3.216000px;}
.ws123{word-spacing:3.218400px;}
.ws1c9{word-spacing:3.223800px;}
.ws19d{word-spacing:3.229200px;}
.ws2c5{word-spacing:3.234600px;}
.ws2fc{word-spacing:3.240000px;}
.ws347{word-spacing:3.243686px;}
.ws34a{word-spacing:3.244800px;}
.ws55{word-spacing:3.245400px;}
.ws393{word-spacing:3.249600px;}
.ws193{word-spacing:3.250800px;}
.ws119{word-spacing:3.256200px;}
.ws381{word-spacing:3.259200px;}
.ws39d{word-spacing:3.264000px;}
.ws24f{word-spacing:3.267000px;}
.ws380{word-spacing:3.268800px;}
.ws2ce{word-spacing:3.272400px;}
.ws1c3{word-spacing:3.277800px;}
.ws6b{word-spacing:3.283200px;}
.ws307{word-spacing:3.288000px;}
.ws88{word-spacing:3.288600px;}
.ws102{word-spacing:3.294000px;}
.ws1d5{word-spacing:3.299400px;}
.ws346{word-spacing:3.307480px;}
.ws32{word-spacing:3.310200px;}
.ws79{word-spacing:3.315600px;}
.ws103{word-spacing:3.321000px;}
.ws1cc{word-spacing:3.326400px;}
.ws29f{word-spacing:3.337200px;}
.ws256{word-spacing:3.342600px;}
.ws2cd{word-spacing:3.345507px;}
.ws317{word-spacing:3.346738px;}
.ws219{word-spacing:3.348000px;}
.wsf0{word-spacing:3.353400px;}
.ws3a3{word-spacing:3.356553px;}
.ws74{word-spacing:3.358800px;}
.ws3b{word-spacing:3.364200px;}
.ws54{word-spacing:3.369600px;}
.ws161{word-spacing:3.375000px;}
.ws26e{word-spacing:3.380400px;}
.ws2f8{word-spacing:3.385800px;}
.ws275{word-spacing:3.391200px;}
.ws96{word-spacing:3.396600px;}
.ws40{word-spacing:3.402000px;}
.ws90{word-spacing:3.407400px;}
.ws17c{word-spacing:3.412800px;}
.ws24e{word-spacing:3.418200px;}
.ws240{word-spacing:3.423600px;}
.wse4{word-spacing:3.429000px;}
.ws14e{word-spacing:3.433837px;}
.ws83{word-spacing:3.434400px;}
.ws162{word-spacing:3.439800px;}
.ws28c{word-spacing:3.445200px;}
.ws383{word-spacing:3.446400px;}
.ws46{word-spacing:3.450600px;}
.ws49{word-spacing:3.461400px;}
.ws1f1{word-spacing:3.466800px;}
.ws266{word-spacing:3.472200px;}
.ws217{word-spacing:3.477600px;}
.ws171{word-spacing:3.483000px;}
.ws1ca{word-spacing:3.488400px;}
.ws233{word-spacing:3.493800px;}
.ws101{word-spacing:3.499200px;}
.ws2a7{word-spacing:3.504600px;}
.ws120{word-spacing:3.510000px;}
.ws17d{word-spacing:3.515400px;}
.ws115{word-spacing:3.520800px;}
.ws179{word-spacing:3.526200px;}
.ws2e{word-spacing:3.537000px;}
.wsdb{word-spacing:3.542400px;}
.ws28a{word-spacing:3.547800px;}
.ws279{word-spacing:3.553200px;}
.ws203{word-spacing:3.558600px;}
.ws136{word-spacing:3.564000px;}
.ws93{word-spacing:3.569400px;}
.ws3c{word-spacing:3.574800px;}
.ws128{word-spacing:3.580200px;}
.ws19a{word-spacing:3.591000px;}
.ws1c7{word-spacing:3.596400px;}
.ws160{word-spacing:3.601800px;}
.ws125{word-spacing:3.607200px;}
.ws216{word-spacing:3.612600px;}
.ws12f{word-spacing:3.618000px;}
.ws2a{word-spacing:3.623400px;}
.ws187{word-spacing:3.628800px;}
.ws157{word-spacing:3.634200px;}
.ws2e2{word-spacing:3.639600px;}
.ws95{word-spacing:3.645000px;}
.wsa8{word-spacing:3.650400px;}
.ws44{word-spacing:3.655800px;}
.ws326{word-spacing:3.655894px;}
.wsc8{word-spacing:3.661200px;}
.wsa9{word-spacing:3.666600px;}
.ws10e{word-spacing:3.672000px;}
.ws215{word-spacing:3.677400px;}
.wsea{word-spacing:3.682800px;}
.wsd6{word-spacing:3.688200px;}
.ws58{word-spacing:3.693307px;}
.ws2a1{word-spacing:3.693600px;}
.ws3a{word-spacing:3.699000px;}
.ws184{word-spacing:3.704400px;}
.wscb{word-spacing:3.709800px;}
.wsc5{word-spacing:3.715200px;}
.ws13c{word-spacing:3.720600px;}
.wsc3{word-spacing:3.731400px;}
.wsd2{word-spacing:3.736800px;}
.ws1ba{word-spacing:3.742200px;}
.ws10c{word-spacing:3.742993px;}
.ws248{word-spacing:3.747600px;}
.wsbe{word-spacing:3.753000px;}
.ws2a4{word-spacing:3.754034px;}
.ws2b4{word-spacing:3.774600px;}
.ws20b{word-spacing:3.781637px;}
.ws208{word-spacing:3.796200px;}
.wsc4{word-spacing:3.798199px;}
.ws64{word-spacing:3.803720px;}
.wsbf{word-spacing:3.836843px;}
.ws264{word-spacing:3.839400px;}
.ws1fc{word-spacing:3.844800px;}
.wsc0{word-spacing:3.893400px;}
.ws265{word-spacing:3.925174px;}
.ws175{word-spacing:3.936600px;}
.ws144{word-spacing:4.066200px;}
.ws4d{word-spacing:4.077000px;}
.ws30c{word-spacing:4.099200px;}
.ws379{word-spacing:4.112268px;}
.ws2ee{word-spacing:4.163400px;}
.ws30b{word-spacing:4.190784px;}
.ws293{word-spacing:4.206600px;}
.ws1ea{word-spacing:4.276800px;}
.wsf6{word-spacing:4.379400px;}
.ws16f{word-spacing:4.406400px;}
.wsff{word-spacing:4.422600px;}
.ws158{word-spacing:4.444200px;}
.ws39b{word-spacing:4.569600px;}
.ws206{word-spacing:4.573800px;}
.wsf4{word-spacing:4.579200px;}
.ws1d7{word-spacing:4.627800px;}
.ws14d{word-spacing:4.633200px;}
.ws2f3{word-spacing:4.649400px;}
.ws1dc{word-spacing:4.654800px;}
.ws2e3{word-spacing:4.681800px;}
.ws234{word-spacing:4.741200px;}
.wsde{word-spacing:4.784400px;}
.ws1de{word-spacing:4.843800px;}
.ws2e5{word-spacing:4.865400px;}
.ws335{word-spacing:4.867200px;}
.ws2e4{word-spacing:4.919400px;}
.ws12a{word-spacing:4.968000px;}
.ws2d0{word-spacing:4.978800px;}
.ws386{word-spacing:5.020800px;}
.ws11e{word-spacing:5.038200px;}
.ws296{word-spacing:5.043600px;}
.ws7d{word-spacing:5.178600px;}
.ws201{word-spacing:5.216400px;}
.ws166{word-spacing:5.302800px;}
.ws11a{word-spacing:5.335200px;}
.ws126{word-spacing:5.389200px;}
.ws1bf{word-spacing:5.421600px;}
.ws27c{word-spacing:5.459400px;}
.ws127{word-spacing:5.509597px;}
.ws231{word-spacing:5.524200px;}
.ws331{word-spacing:5.558400px;}
.ws80{word-spacing:5.745600px;}
.ws22f{word-spacing:5.799600px;}
.ws282{word-spacing:5.913000px;}
.ws242{word-spacing:5.929200px;}
.ws24a{word-spacing:5.940000px;}
.ws28e{word-spacing:6.085800px;}
.ws355{word-spacing:6.249600px;}
.ws299{word-spacing:6.258600px;}
.ws118{word-spacing:6.269400px;}
.ws22c{word-spacing:6.366600px;}
.wsf2{word-spacing:6.420600px;}
.ws232{word-spacing:6.453000px;}
.ws245{word-spacing:6.496200px;}
.ws148{word-spacing:6.550200px;}
.ws2c3{word-spacing:6.679800px;}
.ws149{word-spacing:6.696534px;}
.ws1be{word-spacing:6.766200px;}
.ws181{word-spacing:6.793200px;}
.ws1b9{word-spacing:6.814800px;}
.wsd7{word-spacing:6.847200px;}
.ws8a{word-spacing:7.084800px;}
.ws308{word-spacing:7.147200px;}
.ws154{word-spacing:7.322400px;}
.ws180{word-spacing:7.381800px;}
.ws107{word-spacing:7.592400px;}
.ws1b4{word-spacing:7.727400px;}
.ws196{word-spacing:7.900200px;}
.ws3a4{word-spacing:7.924800px;}
.ws12e{word-spacing:7.965000px;}
.ws78{word-spacing:8.002800px;}
.ws254{word-spacing:8.100000px;}
.wsa1{word-spacing:8.442000px;}
.ws2f6{word-spacing:8.467200px;}
.ws37{word-spacing:8.580600px;}
.ws330{word-spacing:8.635200px;}
.ws8d{word-spacing:8.640000px;}
.ws2cc{word-spacing:8.785800px;}
.ws8c{word-spacing:8.833021px;}
.ws117{word-spacing:8.872200px;}
.ws132{word-spacing:9.039600px;}
.ws68{word-spacing:9.077400px;}
.ws38a{word-spacing:9.110400px;}
.ws186{word-spacing:9.147600px;}
.wsb0{word-spacing:9.169200px;}
.ws29e{word-spacing:9.655200px;}
.ws1c6{word-spacing:9.687600px;}
.ws1d0{word-spacing:10.006200px;}
.ws34{word-spacing:10.146600px;}
.wsa0{word-spacing:10.147500px;}
.ws324{word-spacing:10.176000px;}
.ws213{word-spacing:10.260000px;}
.ws277{word-spacing:10.308600px;}
.ws325{word-spacing:10.403350px;}
.ws223{word-spacing:10.438200px;}
.ws4c{word-spacing:10.535400px;}
.ws224{word-spacing:10.671393px;}
.ws25e{word-spacing:10.778400px;}
.ws221{word-spacing:11.410200px;}
.wsab{word-spacing:11.782800px;}
.ws1{word-spacing:11.793000px;}
.ws272{word-spacing:12.031200px;}
.ws2{word-spacing:12.488400px;}
.wse0{word-spacing:12.522600px;}
.ws2d9{word-spacing:12.803400px;}
.ws2fd{word-spacing:12.916800px;}
.ws214{word-spacing:12.928500px;}
.ws153{word-spacing:13.084200px;}
.ws278{word-spacing:13.332600px;}
.wsfe{word-spacing:13.759200px;}
.ws2d{word-spacing:14.137200px;}
.ws139{word-spacing:16.837200px;}
.ws332{word-spacing:17.212800px;}
.ws333{word-spacing:17.597365px;}
.ws1e1{word-spacing:17.679600px;}
.ws98{word-spacing:17.782200px;}
.ws276{word-spacing:18.435600px;}
.ws3a6{word-spacing:18.489600px;}
.ws19e{word-spacing:18.559800px;}
.wsa5{word-spacing:18.625500px;}
.ws3a7{word-spacing:18.902691px;}
.ws2ca{word-spacing:21.038400px;}
.wsc7{word-spacing:21.718800px;}
.ws174{word-spacing:24.391800px;}
.wsa2{word-spacing:24.403500px;}
.ws280{word-spacing:25.666200px;}
.ws351{word-spacing:26.414400px;}
.ws1fe{word-spacing:26.989200px;}
.wse8{word-spacing:30.056400px;}
.ws345{word-spacing:32.980800px;}
.wsa6{word-spacing:43.816500px;}
.ws2d4{word-spacing:54.782400px;}
.ws16e{word-spacing:259.568400px;}
.ws24{word-spacing:844.006200px;}
._38{margin-left:-10.903889px;}
._3{margin-left:-8.820000px;}
._1{margin-left:-6.600000px;}
._4{margin-left:-4.950000px;}
._6{margin-left:-3.179520px;}
._2{margin-left:-2.160000px;}
._5{margin-left:-1.080000px;}
._0{width:2.160000px;}
._36{width:3.249600px;}
._37{width:5.092800px;}
._c{width:8.029800px;}
._7{width:9.274320px;}
._39{width:38.798400px;}
._3a{width:41.318400px;}
._35{width:66.936000px;}
._33{width:70.266000px;}
._25{width:76.104000px;}
._20{width:81.429600px;}
._8{width:88.443000px;}
._2d{width:93.109800px;}
._d{width:97.679400px;}
._13{width:99.229200px;}
._1f{width:100.548000px;}
._22{width:105.856800px;}
._b{width:107.667000px;}
._f{width:109.359600px;}
._1c{width:110.623800px;}
._30{width:116.932200px;}
._24{width:121.081800px;}
._11{width:122.215800px;}
._14{width:125.038320px;}
._e{width:127.167600px;}
._1b{width:130.582320px;}
._10{width:135.088800px;}
._2c{width:141.401400px;}
._16{width:142.783200px;}
._32{width:144.442200px;}
._15{width:152.783400px;}
._1e{width:156.122400px;}
._21{width:159.108600px;}
._2a{width:161.956200px;}
._2f{width:163.585920px;}
._12{width:167.588400px;}
._a{width:178.605000px;}
._9{width:182.340000px;}
._2b{width:196.434000px;}
._28{width:214.926720px;}
._1a{width:243.037200px;}
._1d{width:273.441000px;}
._26{width:296.192400px;}
._18{width:322.820400px;}
._19{width:334.122600px;}
._29{width:366.853200px;}
._2e{width:377.735400px;}
._23{width:378.754200px;}
._31{width:390.442800px;}
._34{width:400.818600px;}
._17{width:418.567800px;}
._27{width:478.497600px;}
.fc2{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.000000px;}
.fs7{font-size:32.400000px;}
.fse{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fsf{font-size:42.000000px;}
.fs4{font-size:43.200000px;}
.fsb{font-size:43.800000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs10{font-size:49.072408px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:55.206381px;}
.fsa{font-size:63.000000px;}
.fsd{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:120.000000px;}
.y37{bottom:-7.418850px;}
.ydd{bottom:-7.117800px;}
.y0{bottom:0.000000px;}
.y36{bottom:5.721150px;}
.ydc{bottom:6.022200px;}
.y34{bottom:55.359900px;}
.y1f5{bottom:65.726400px;}
.y406{bottom:66.320700px;}
.y463{bottom:66.322200px;}
.y2f8{bottom:66.672150px;}
.y2c1{bottom:66.897600px;}
.y3d0{bottom:67.132500px;}
.y540{bottom:67.220400px;}
.y22d{bottom:67.232625px;}
.y7b{bottom:67.417200px;}
.y229{bottom:67.434150px;}
.y57a{bottom:67.811550px;}
.y57b{bottom:67.811700px;}
.y432{bottom:67.813500px;}
.y1ba{bottom:67.830000px;}
.y366{bottom:67.879350px;}
.y41c{bottom:67.913400px;}
.y10c{bottom:67.915650px;}
.y315{bottom:68.247900px;}
.y398{bottom:68.252850px;}
.y13a{bottom:68.255700px;}
.y4fc{bottom:68.289150px;}
.y332{bottom:68.313900px;}
.y5bc{bottom:68.508600px;}
.y498{bottom:68.704200px;}
.y4c3{bottom:69.681600px;}
.ye4{bottom:70.543950px;}
.y280{bottom:70.900350px;}
.y5fc{bottom:70.998750px;}
.y22c{bottom:79.233000px;}
.y53f{bottom:79.296000px;}
.y53e{bottom:79.296450px;}
.y579{bottom:79.961550px;}
.y4fb{bottom:80.514750px;}
.y4fa{bottom:80.515350px;}
.y5bb{bottom:81.408600px;}
.y1f4{bottom:82.226100px;}
.ye3{bottom:82.544325px;}
.y405{bottom:82.820400px;}
.y462{bottom:82.821900px;}
.y2f7{bottom:83.171850px;}
.y2c0{bottom:83.397300px;}
.y3cf{bottom:83.632200px;}
.y5fa{bottom:83.748450px;}
.y5fb{bottom:83.748750px;}
.y228{bottom:83.933850px;}
.y82{bottom:84.002250px;}
.y431{bottom:84.313200px;}
.y365{bottom:84.379050px;}
.y41b{bottom:84.413100px;}
.y10b{bottom:84.415350px;}
.y314{bottom:84.747600px;}
.y397{bottom:84.752550px;}
.y396{bottom:84.754650px;}
.y139{bottom:84.755400px;}
.y331{bottom:84.813600px;}
.y330{bottom:84.816000px;}
.y497{bottom:85.203900px;}
.y4c2{bottom:86.256900px;}
.y53c{bottom:91.369650px;}
.y53d{bottom:91.370850px;}
.y578{bottom:92.111550px;}
.y4f9{bottom:92.739750px;}
.y4f8{bottom:92.740800px;}
.y5b9{bottom:94.308300px;}
.y5ba{bottom:94.308600px;}
.ye2{bottom:94.544700px;}
.y25{bottom:94.748550px;}
.y5f9{bottom:96.498450px;}
.y1f3{bottom:98.725800px;}
.y81{bottom:99.002550px;}
.y404{bottom:99.320100px;}
.y461{bottom:99.321600px;}
.y2f6{bottom:99.671550px;}
.y2bf{bottom:99.897000px;}
.y3ce{bottom:100.131900px;}
.y227{bottom:100.433550px;}
.y430{bottom:100.812900px;}
.y364{bottom:100.878750px;}
.y41a{bottom:100.912800px;}
.y10a{bottom:100.915050px;}
.y313{bottom:101.247300px;}
.y395{bottom:101.254350px;}
.y138{bottom:101.255100px;}
.y32f{bottom:101.315700px;}
.y496{bottom:101.703600px;}
.y4c1{bottom:102.832200px;}
.y4f7{bottom:104.965200px;}
.ye1{bottom:106.545075px;}
.y24{bottom:108.248550px;}
.y5f8{bottom:109.248450px;}
.y53b{bottom:109.823250px;}
.y577{bottom:110.639550px;}
.y5b8{bottom:113.586300px;}
.y80{bottom:114.002850px;}
.y1f2{bottom:115.225500px;}
.y403{bottom:115.819800px;}
.y460{bottom:115.821300px;}
.y2f5{bottom:116.171250px;}
.y2be{bottom:116.396700px;}
.y3cd{bottom:116.631600px;}
.y226{bottom:116.933250px;}
.y42f{bottom:117.312600px;}
.y363{bottom:117.378450px;}
.y419{bottom:117.412500px;}
.y109{bottom:117.414750px;}
.y312{bottom:117.747000px;}
.y394{bottom:117.754050px;}
.y137{bottom:117.754800px;}
.y32e{bottom:117.815400px;}
.y495{bottom:118.203300px;}
.ye0{bottom:118.545450px;}
.y4c0{bottom:119.407500px;}
.y4f6{bottom:123.567600px;}
.y7f{bottom:126.003300px;}
.y5b7{bottom:126.486300px;}
.y5b6{bottom:126.486450px;}
.y5f7{bottom:128.376450px;}
.ydf{bottom:130.545825px;}
.y1f1{bottom:131.725200px;}
.y27f{bottom:132.157950px;}
.y250{bottom:132.318000px;}
.y402{bottom:132.319500px;}
.y45f{bottom:132.321000px;}
.y2f4{bottom:132.670950px;}
.y2bd{bottom:132.896400px;}
.y3cc{bottom:133.131300px;}
.y225{bottom:133.432950px;}
.y42e{bottom:133.812300px;}
.y362{bottom:133.878150px;}
.y418{bottom:133.912200px;}
.y108{bottom:133.914450px;}
.y311{bottom:134.246700px;}
.y393{bottom:134.253750px;}
.y136{bottom:134.254500px;}
.y32d{bottom:134.315100px;}
.y494{bottom:134.703000px;}
.y4bf{bottom:135.982800px;}
.y5b5{bottom:139.386450px;}
.y5b4{bottom:139.386600px;}
.y7e{bottom:141.003600px;}
.yde{bottom:142.546200px;}
.y53a{bottom:146.729250px;}
.y576{bottom:147.695550px;}
.y1f0{bottom:148.224900px;}
.y27e{bottom:148.657650px;}
.y24f{bottom:148.817700px;}
.y401{bottom:148.819200px;}
.y45e{bottom:148.820700px;}
.y2f3{bottom:149.170650px;}
.y2bc{bottom:149.396100px;}
.y3cb{bottom:149.631000px;}
.y224{bottom:149.932650px;}
.y42d{bottom:150.312000px;}
.y361{bottom:150.377850px;}
.y417{bottom:150.411900px;}
.y106{bottom:150.414000px;}
.y107{bottom:150.414150px;}
.y310{bottom:150.746400px;}
.y392{bottom:150.753450px;}
.y135{bottom:150.754200px;}
.y32c{bottom:150.814800px;}
.y493{bottom:151.202700px;}
.y5b3{bottom:152.286600px;}
.y4be{bottom:152.558100px;}
.y7d{bottom:156.003900px;}
.y539{bottom:158.804850px;}
.y538{bottom:158.805450px;}
.y575{bottom:159.845550px;}
.y4f5{bottom:160.773600px;}
.y33{bottom:163.978800px;}
.y2d{bottom:164.183400px;}
.y1ef{bottom:164.724600px;}
.y27d{bottom:165.157350px;}
.y5b2{bottom:165.186600px;}
.y24e{bottom:165.317400px;}
.y400{bottom:165.318900px;}
.y2bb{bottom:165.895800px;}
.y3ca{bottom:166.130700px;}
.y223{bottom:166.432350px;}
.y5f6{bottom:166.632450px;}
.y5f5{bottom:166.632600px;}
.y42c{bottom:166.811700px;}
.y360{bottom:166.877550px;}
.y105{bottom:166.913700px;}
.y30f{bottom:167.246100px;}
.y391{bottom:167.253150px;}
.y134{bottom:167.253900px;}
.y32b{bottom:167.314500px;}
.y492{bottom:167.702400px;}
.y7c{bottom:168.004350px;}
.y4bd{bottom:169.133400px;}
.y536{bottom:170.879700px;}
.y537{bottom:170.879850px;}
.y45d{bottom:171.699150px;}
.y2f2{bottom:172.049100px;}
.y4f4{bottom:172.998300px;}
.y416{bottom:173.290350px;}
.y574{bottom:178.373550px;}
.y5f4{bottom:179.382600px;}
.y32{bottom:180.478500px;}
.y2c{bottom:180.683100px;}
.y1ee{bottom:181.224300px;}
.y27c{bottom:181.657050px;}
.y24d{bottom:181.817100px;}
.y3ff{bottom:181.818600px;}
.y3c9{bottom:182.630400px;}
.y222{bottom:182.932050px;}
.y42b{bottom:183.311400px;}
.y35f{bottom:183.377250px;}
.y30e{bottom:183.745800px;}
.y390{bottom:183.752850px;}
.y133{bottom:183.753600px;}
.y32a{bottom:183.814200px;}
.y491{bottom:184.202100px;}
.y83{bottom:184.249950px;}
.y5b1{bottom:184.464600px;}
.y4f3{bottom:185.223900px;}
.y4bc{bottom:185.708700px;}
.y45c{bottom:188.198850px;}
.y2f1{bottom:188.624400px;}
.y2ba{bottom:188.774250px;}
.y535{bottom:189.332100px;}
.y415{bottom:189.790050px;}
.y104{bottom:189.792150px;}
.y103{bottom:189.792600px;}
.y5f3{bottom:192.132600px;}
.y573{bottom:196.901550px;}
.y31{bottom:196.978200px;}
.y2b{bottom:197.182800px;}
.y5af{bottom:197.364450px;}
.y5b0{bottom:197.364600px;}
.y1ed{bottom:197.724000px;}
.y24c{bottom:198.316800px;}
.y3fe{bottom:198.318300px;}
.y3c8{bottom:199.130100px;}
.y42a{bottom:199.811100px;}
.y35e{bottom:199.876950px;}
.y30d{bottom:200.245500px;}
.y38f{bottom:200.252550px;}
.y132{bottom:200.253300px;}
.y490{bottom:200.701800px;}
.y4bb{bottom:202.284000px;}
.y4f2{bottom:203.826300px;}
.y27b{bottom:204.535500px;}
.y45b{bottom:204.698550px;}
.y5f2{bottom:204.882600px;}
.y2b9{bottom:205.094400px;}
.y2f0{bottom:205.199700px;}
.y221{bottom:205.810500px;}
.y414{bottom:206.289750px;}
.y102{bottom:206.292300px;}
.y101{bottom:206.292750px;}
.y329{bottom:206.692650px;}
.y5ae{bottom:210.264450px;}
.y30{bottom:213.477900px;}
.y2a{bottom:213.682500px;}
.y1ec{bottom:214.223700px;}
.y24b{bottom:214.816500px;}
.y3fd{bottom:214.818000px;}
.y35d{bottom:216.376650px;}
.y30c{bottom:216.745200px;}
.y48f{bottom:217.201500px;}
.y48e{bottom:217.207650px;}
.y4ba{bottom:218.859300px;}
.y27a{bottom:220.735500px;}
.y45a{bottom:221.198250px;}
.y2b8{bottom:221.414550px;}
.y2ef{bottom:221.775000px;}
.y3c7{bottom:222.007950px;}
.y220{bottom:222.310200px;}
.y429{bottom:222.689550px;}
.y413{bottom:222.789450px;}
.y100{bottom:222.792450px;}
.y38e{bottom:223.130550px;}
.y131{bottom:223.131750px;}
.y5ad{bottom:223.164450px;}
.y328{bottom:223.192350px;}
.y5f1{bottom:224.010600px;}
.y534{bottom:226.238100px;}
.y2f{bottom:229.977600px;}
.y29{bottom:230.182200px;}
.y24a{bottom:231.316200px;}
.y3fc{bottom:231.317700px;}
.y30b{bottom:233.244900px;}
.y48d{bottom:233.707350px;}
.y572{bottom:233.957550px;}
.y4b9{bottom:235.434600px;}
.y5ac{bottom:236.064450px;}
.y279{bottom:236.935500px;}
.y1eb{bottom:237.102150px;}
.y459{bottom:237.697950px;}
.y2b7{bottom:237.734700px;}
.y64{bottom:238.296150px;}
.y533{bottom:238.313700px;}
.y2ee{bottom:238.350300px;}
.y21f{bottom:238.809900px;}
.y428{bottom:239.189250px;}
.y35c{bottom:239.255100px;}
.y412{bottom:239.289150px;}
.yff{bottom:239.292150px;}
.yfe{bottom:239.292900px;}
.y130{bottom:239.631450px;}
.y85{bottom:239.665725px;}
.y327{bottom:239.692050px;}
.y4f1{bottom:241.032300px;}
.y4f0{bottom:241.032900px;}
.y571{bottom:246.107550px;}
.y2e{bottom:246.477300px;}
.y249{bottom:247.815900px;}
.y3fb{bottom:247.817400px;}
.y48c{bottom:250.207050px;}
.y532{bottom:250.388100px;}
.y84{bottom:251.666100px;}
.y4b8{bottom:252.009900px;}
.y278{bottom:253.135500px;}
.y4ee{bottom:253.256700px;}
.y4ef{bottom:253.257300px;}
.y1ea{bottom:253.901550px;}
.y2b6{bottom:254.054850px;}
.y458{bottom:254.197650px;}
.y63{bottom:254.795850px;}
.y2ed{bottom:254.925600px;}
.y21e{bottom:255.309600px;}
.y5ab{bottom:255.342450px;}
.y427{bottom:255.688950px;}
.y411{bottom:255.788850px;}
.yfd{bottom:255.792600px;}
.y35b{bottom:255.830400px;}
.y30a{bottom:256.123350px;}
.y12f{bottom:256.131150px;}
.y326{bottom:256.191750px;}
.y28{bottom:257.312100px;}
.y570{bottom:258.257550px;}
.y5ef{bottom:262.266300px;}
.y5f0{bottom:262.266600px;}
.y531{bottom:262.463700px;}
.y530{bottom:262.464150px;}
.y4ed{bottom:265.482300px;}
.y48b{bottom:266.706750px;}
.y3c6{bottom:267.679800px;}
.y4b7{bottom:268.585200px;}
.y38d{bottom:268.903500px;}
.y277{bottom:269.335500px;}
.y2b5{bottom:270.375000px;}
.y248{bottom:270.694350px;}
.y3fa{bottom:270.695850px;}
.y457{bottom:270.697350px;}
.y1e9{bottom:270.700950px;}
.y62{bottom:271.295550px;}
.y2ec{bottom:271.500900px;}
.y21d{bottom:271.809300px;}
.y426{bottom:272.188650px;}
.y410{bottom:272.288550px;}
.yfc{bottom:272.292300px;}
.yfb{bottom:272.292450px;}
.y35a{bottom:272.405700px;}
.y309{bottom:272.623050px;}
.y12e{bottom:272.630850px;}
.y325{bottom:272.691450px;}
.y5ee{bottom:275.016300px;}
.y56f{bottom:276.785550px;}
.y52f{bottom:280.916550px;}
.y48a{bottom:283.206450px;}
.y4ec{bottom:284.084700px;}
.y3c5{bottom:284.105250px;}
.y4b6{bottom:285.160500px;}
.y276{bottom:285.535500px;}
.y38c{bottom:285.553050px;}
.y2b4{bottom:286.695150px;}
.y247{bottom:287.194050px;}
.y3f9{bottom:287.195550px;}
.y456{bottom:287.197050px;}
.y1e8{bottom:287.500350px;}
.y5ed{bottom:287.766300px;}
.y61{bottom:287.795250px;}
.y2eb{bottom:288.076200px;}
.y21c{bottom:288.309000px;}
.y40f{bottom:288.788250px;}
.yfa{bottom:288.792150px;}
.yf9{bottom:288.795600px;}
.y359{bottom:288.981000px;}
.y308{bottom:289.122750px;}
.y12d{bottom:289.130550px;}
.y5aa{bottom:293.898450px;}
.y425{bottom:295.067100px;}
.y324{bottom:295.569450px;}
.y4eb{bottom:296.310300px;}
.y4ea{bottom:296.310900px;}
.y489{bottom:299.706150px;}
.y3c4{bottom:300.530700px;}
.y275{bottom:301.735500px;}
.y4b5{bottom:301.735800px;}
.y38b{bottom:302.202600px;}
.y2b3{bottom:303.015300px;}
.y246{bottom:303.693750px;}
.y3f8{bottom:303.695250px;}
.y455{bottom:303.696750px;}
.y60{bottom:304.294950px;}
.y1e7{bottom:304.299750px;}
.y2ea{bottom:304.651500px;}
.y21b{bottom:304.808700px;}
.y40e{bottom:305.287950px;}
.yf8{bottom:305.295300px;}
.y358{bottom:305.556300px;}
.y307{bottom:305.622450px;}
.y12c{bottom:305.630250px;}
.y5a9{bottom:306.798450px;}
.y5ec{bottom:306.894300px;}
.y4e9{bottom:308.535300px;}
.y4e8{bottom:308.535750px;}
.y424{bottom:311.566800px;}
.y56e{bottom:313.841550px;}
.y488{bottom:316.205850px;}
.y3c3{bottom:316.956150px;}
.y52d{bottom:317.821950px;}
.y52e{bottom:317.822550px;}
.y274{bottom:317.935500px;}
.y273{bottom:317.939400px;}
.y4b4{bottom:318.311100px;}
.y38a{bottom:318.852150px;}
.y2b2{bottom:319.335450px;}
.y5a7{bottom:319.698300px;}
.y5a8{bottom:319.698450px;}
.y20{bottom:320.181300px;}
.y245{bottom:320.193450px;}
.y3f7{bottom:320.194950px;}
.y454{bottom:320.196450px;}
.y5f{bottom:320.794650px;}
.y1e6{bottom:321.099150px;}
.y2e9{bottom:321.226800px;}
.y21a{bottom:321.308400px;}
.yf7{bottom:321.795000px;}
.y306{bottom:322.122150px;}
.y12b{bottom:322.129950px;}
.y357{bottom:322.131600px;}
.y56d{bottom:325.991550px;}
.y4e7{bottom:327.138150px;}
.y423{bottom:328.066500px;}
.y40d{bottom:328.166400px;}
.y52b{bottom:329.895600px;}
.y52c{bottom:329.897550px;}
.y5a6{bottom:332.598300px;}
.y487{bottom:332.705550px;}
.y3c2{bottom:333.381600px;}
.y1f{bottom:333.681300px;}
.y272{bottom:334.139400px;}
.y4b3{bottom:334.886400px;}
.y389{bottom:335.501700px;}
.y2b1{bottom:335.655600px;}
.y244{bottom:336.693150px;}
.y3f6{bottom:336.694650px;}
.y453{bottom:336.696150px;}
.y323{bottom:336.827700px;}
.y5e{bottom:337.294350px;}
.y2e8{bottom:337.802100px;}
.y219{bottom:337.808100px;}
.y1e5{bottom:337.898550px;}
.y56b{bottom:338.141400px;}
.y56c{bottom:338.141550px;}
.yf6{bottom:338.294700px;}
.y305{bottom:338.621850px;}
.y12a{bottom:338.629650px;}
.y356{bottom:338.706900px;}
.y52a{bottom:341.971200px;}
.y422{bottom:344.566200px;}
.y40c{bottom:344.666100px;}
.y5eb{bottom:345.150300px;}
.y5a5{bottom:345.498300px;}
.y1e{bottom:347.181300px;}
.y486{bottom:349.205250px;}
.y3c1{bottom:349.807050px;}
.yd8{bottom:350.246850px;}
.y56a{bottom:350.291400px;}
.y271{bottom:350.339400px;}
.yad{bottom:350.584050px;}
.y4b2{bottom:351.461700px;}
.y2b0{bottom:351.975750px;}
.y388{bottom:352.151250px;}
.y243{bottom:353.192850px;}
.y3f5{bottom:353.194350px;}
.y452{bottom:353.195850px;}
.y322{bottom:353.327400px;}
.y5d{bottom:353.794050px;}
.y529{bottom:354.046800px;}
.y218{bottom:354.307800px;}
.y2e7{bottom:354.377400px;}
.y1e4{bottom:354.697950px;}
.yf5{bottom:354.794400px;}
.y304{bottom:355.121550px;}
.y129{bottom:355.129350px;}
.y355{bottom:355.282200px;}
.y5ea{bottom:357.900300px;}
.y1d{bottom:360.681300px;}
.y421{bottom:361.065900px;}
.y40b{bottom:361.165800px;}
.y4e6{bottom:364.344750px;}
.y5a4{bottom:364.776300px;}
.y3c0{bottom:366.232500px;}
.y270{bottom:366.539400px;}
.yd7{bottom:366.567000px;}
.yac{bottom:367.083750px;}
.y4b1{bottom:368.037000px;}
.y2af{bottom:368.295900px;}
.y387{bottom:368.800800px;}
.y569{bottom:368.819400px;}
.y242{bottom:369.692550px;}
.y3f4{bottom:369.694050px;}
.y451{bottom:369.695550px;}
.y321{bottom:369.827100px;}
.y5e9{bottom:370.650300px;}
.y217{bottom:370.807500px;}
.y2e6{bottom:370.952700px;}
.yf4{bottom:371.294100px;}
.y1e3{bottom:371.497350px;}
.y303{bottom:371.621250px;}
.y128{bottom:371.629050px;}
.y354{bottom:371.857500px;}
.y485{bottom:372.083700px;}
.y528{bottom:372.499200px;}
.y1c{bottom:374.181300px;}
.y4e4{bottom:376.567800px;}
.y4e5{bottom:376.569150px;}
.y5c{bottom:376.672425px;}
.y420{bottom:377.565600px;}
.y40a{bottom:377.665500px;}
.y568{bottom:380.969400px;}
.y3bf{bottom:382.657950px;}
.y26f{bottom:382.739400px;}
.yd6{bottom:382.887150px;}
.y5e8{bottom:383.400300px;}
.yab{bottom:383.583450px;}
.y4b0{bottom:384.612300px;}
.y2ae{bottom:384.616050px;}
.y386{bottom:385.450350px;}
.y241{bottom:386.192250px;}
.y3f3{bottom:386.193750px;}
.y450{bottom:386.195250px;}
.y320{bottom:386.326800px;}
.y2e5{bottom:387.528000px;}
.y1b{bottom:387.681300px;}
.yf3{bottom:387.793800px;}
.y302{bottom:388.120950px;}
.y1e2{bottom:388.296750px;}
.y353{bottom:388.432800px;}
.y484{bottom:388.733250px;}
.y4e3{bottom:388.793400px;}
.y216{bottom:393.685500px;}
.y41f{bottom:394.065300px;}
.y409{bottom:394.165200px;}
.y127{bottom:394.507500px;}
.y5e7{bottom:396.150300px;}
.y26e{bottom:398.939400px;}
.y3be{bottom:399.083400px;}
.yd5{bottom:399.207300px;}
.y567{bottom:399.497400px;}
.yaa{bottom:400.083150px;}
.y2ad{bottom:400.936200px;}
.y4e2{bottom:401.019000px;}
.y1a{bottom:401.181300px;}
.y4af{bottom:401.187600px;}
.y385{bottom:402.099900px;}
.y240{bottom:402.691950px;}
.y3f2{bottom:402.693450px;}
.y44f{bottom:402.694950px;}
.y31f{bottom:402.826500px;}
.y5a3{bottom:403.332300px;}
.y5b{bottom:403.801800px;}
.y2e4{bottom:404.103300px;}
.yf2{bottom:404.293500px;}
.y301{bottom:404.620650px;}
.y352{bottom:405.008100px;}
.y1e1{bottom:405.096150px;}
.y483{bottom:405.382800px;}
.y527{bottom:409.405200px;}
.y41e{bottom:410.565000px;}
.y408{bottom:410.664900px;}
.y126{bottom:411.007200px;}
.y566{bottom:411.647400px;}
.y19{bottom:414.681300px;}
.y26d{bottom:415.139400px;}
.y5e6{bottom:415.278300px;}
.yd4{bottom:415.527450px;}
.y5a2{bottom:416.232300px;}
.y5a1{bottom:416.232450px;}
.ya9{bottom:416.582850px;}
.y2ac{bottom:417.256350px;}
.y4ae{bottom:417.762900px;}
.y384{bottom:418.749450px;}
.y23f{bottom:419.191650px;}
.y3f1{bottom:419.193150px;}
.y44e{bottom:419.194650px;}
.y31e{bottom:419.326200px;}
.y4e1{bottom:419.621400px;}
.y2e3{bottom:420.678600px;}
.yf1{bottom:420.793200px;}
.y300{bottom:421.120350px;}
.y526{bottom:421.480800px;}
.y351{bottom:421.583400px;}
.y3bd{bottom:421.886250px;}
.y1e0{bottom:421.895550px;}
.y482{bottom:422.032350px;}
.y564{bottom:423.797250px;}
.y565{bottom:423.797400px;}
.y41d{bottom:427.064700px;}
.y407{bottom:427.164600px;}
.y125{bottom:427.506900px;}
.y5e5{bottom:428.028300px;}
.y5a0{bottom:429.132450px;}
.y26c{bottom:431.339400px;}
.y4e0{bottom:431.847000px;}
.yd3{bottom:431.847600px;}
.y18{bottom:432.433800px;}
.y2ab{bottom:433.576500px;}
.y4ad{bottom:434.338200px;}
.y383{bottom:435.399000px;}
.y23e{bottom:435.691350px;}
.y3f0{bottom:435.692850px;}
.y44d{bottom:435.694350px;}
.y31d{bottom:435.825900px;}
.y2e2{bottom:437.253900px;}
.yf0{bottom:437.292900px;}
.y2ff{bottom:437.620050px;}
.y350{bottom:438.158700px;}
.y3bc{bottom:438.311700px;}
.y481{bottom:438.681900px;}
.y1df{bottom:438.694950px;}
.y215{bottom:439.445100px;}
.ya8{bottom:439.461300px;}
.y525{bottom:439.934400px;}
.y5e4{bottom:440.778300px;}
.y59f{bottom:442.032450px;}
.y563{bottom:442.325250px;}
.y26b{bottom:447.539400px;}
.yd2{bottom:448.167750px;}
.y5a{bottom:449.558700px;}
.y2aa{bottom:449.896650px;}
.y124{bottom:450.384750px;}
.y4ac{bottom:450.913500px;}
.y17b{bottom:451.410450px;}
.y382{bottom:452.048550px;}
.y23d{bottom:452.191050px;}
.y3ef{bottom:452.192550px;}
.y44c{bottom:452.194050px;}
.y31c{bottom:452.325600px;}
.y154{bottom:452.585400px;}
.y5e3{bottom:453.528300px;}
.yef{bottom:453.792600px;}
.y2e1{bottom:453.829200px;}
.y34f{bottom:454.734000px;}
.y3bb{bottom:454.737150px;}
.y59d{bottom:454.932300px;}
.y59e{bottom:454.932450px;}
.y214{bottom:455.269800px;}
.y480{bottom:455.331450px;}
.y1de{bottom:455.494350px;}
.ya7{bottom:455.961000px;}
.y17{bottom:459.433800px;}
.y2fe{bottom:460.498500px;}
.y26a{bottom:463.739400px;}
.y59{bottom:466.058400px;}
.y2a9{bottom:466.216800px;}
.y5e2{bottom:466.278300px;}
.y17a{bottom:467.160900px;}
.y4ab{bottom:467.488800px;}
.y3ee{bottom:468.692250px;}
.y44b{bottom:468.693750px;}
.y381{bottom:468.698100px;}
.y31b{bottom:468.825300px;}
.y31a{bottom:468.825750px;}
.y4df{bottom:469.052850px;}
.y153{bottom:469.085100px;}
.yee{bottom:470.292300px;}
.yed{bottom:470.293950px;}
.y2e0{bottom:470.404500px;}
.yd1{bottom:470.865300px;}
.y213{bottom:471.094500px;}
.y3ba{bottom:471.162600px;}
.y34e{bottom:471.309300px;}
.y436{bottom:471.885975px;}
.y47f{bottom:471.981000px;}
.y1dd{bottom:472.293750px;}
.ya6{bottom:472.460700px;}
.y16{bottom:472.933800px;}
.y59c{bottom:474.210300px;}
.y524{bottom:476.840400px;}
.y523{bottom:476.840850px;}
.y2fd{bottom:476.998200px;}
.y5e1{bottom:479.028300px;}
.y562{bottom:479.381250px;}
.y561{bottom:479.381400px;}
.y269{bottom:479.939400px;}
.y2a8{bottom:482.536950px;}
.y58{bottom:482.558100px;}
.y179{bottom:482.911350px;}
.y435{bottom:483.886350px;}
.y4aa{bottom:484.064100px;}
.y3ed{bottom:485.191950px;}
.y44a{bottom:485.193450px;}
.y380{bottom:485.347650px;}
.y152{bottom:485.584800px;}
.y15{bottom:486.433800px;}
.yec{bottom:486.793650px;}
.y212{bottom:486.919200px;}
.y2df{bottom:486.979800px;}
.yd0{bottom:487.185450px;}
.y3b9{bottom:487.588050px;}
.y34d{bottom:487.884600px;}
.y47e{bottom:488.630550px;}
.y522{bottom:488.915250px;}
.y521{bottom:488.915850px;}
.ya5{bottom:488.960400px;}
.y1dc{bottom:489.093150px;}
.y55f{bottom:491.531250px;}
.y560{bottom:491.531400px;}
.y319{bottom:491.704200px;}
.y5e0{bottom:491.778300px;}
.y2fc{bottom:493.497900px;}
.y434{bottom:495.886725px;}
.y268{bottom:496.139400px;}
.y282{bottom:497.291025px;}
.y178{bottom:498.661800px;}
.y2a7{bottom:498.857100px;}
.y14{bottom:499.933800px;}
.y4a9{bottom:500.639400px;}
.y13e{bottom:501.186750px;}
.y3ec{bottom:501.691650px;}
.y449{bottom:501.693150px;}
.y37f{bottom:501.997200px;}
.y151{bottom:502.084500px;}
.y211{bottom:502.743900px;}
.yeb{bottom:503.293350px;}
.ycf{bottom:503.505600px;}
.y2de{bottom:503.555100px;}
.y3b8{bottom:504.013500px;}
.y34c{bottom:504.459900px;}
.y47d{bottom:505.280100px;}
.y57{bottom:505.436550px;}
.ya4{bottom:505.460100px;}
.y1db{bottom:505.892550px;}
.y520{bottom:507.369450px;}
.y433{bottom:507.887100px;}
.y318{bottom:508.203900px;}
.y281{bottom:509.291400px;}
.y2fb{bottom:509.997600px;}
.y55e{bottom:510.059250px;}
.y5df{bottom:510.906300px;}
.y267{bottom:512.339400px;}
.y59b{bottom:512.766300px;}
.y13d{bottom:513.187125px;}
.y13{bottom:513.433800px;}
.y177{bottom:514.412250px;}
.y4de{bottom:514.810050px;}
.y2a6{bottom:515.177250px;}
.y4a8{bottom:517.214700px;}
.y3eb{bottom:518.191350px;}
.y448{bottom:518.192850px;}
.y210{bottom:518.568600px;}
.y150{bottom:518.584200px;}
.y51f{bottom:519.443850px;}
.yea{bottom:519.793050px;}
.yce{bottom:519.825750px;}
.y2dd{bottom:520.130400px;}
.y3b7{bottom:520.438950px;}
.y47c{bottom:521.929650px;}
.y56{bottom:521.936250px;}
.ya3{bottom:521.959800px;}
.y1da{bottom:522.691950px;}
.y5de{bottom:523.656300px;}
.y317{bottom:524.703600px;}
.y37e{bottom:525.025500px;}
.y286{bottom:525.192150px;}
.y599{bottom:525.666150px;}
.y59a{bottom:525.666300px;}
.y2fa{bottom:526.497300px;}
.y12{bottom:526.933800px;}
.y34b{bottom:527.412600px;}
.y266{bottom:528.539400px;}
.y143{bottom:529.359750px;}
.y176{bottom:530.162700px;}
.y4dd{bottom:531.309750px;}
.y2a5{bottom:531.497400px;}
.y4a7{bottom:533.790000px;}
.y20f{bottom:534.393300px;}
.y3ea{bottom:534.691050px;}
.y447{bottom:534.692550px;}
.y14f{bottom:535.083900px;}
.ycd{bottom:536.145900px;}
.ye9{bottom:536.292750px;}
.y5dd{bottom:536.406300px;}
.y2dc{bottom:536.705700px;}
.y3b6{bottom:536.864400px;}
.y55{bottom:538.435950px;}
.ya2{bottom:538.459500px;}
.y1d9{bottom:539.491350px;}
.y285{bottom:540.192450px;}
.y11{bottom:540.433800px;}
.y316{bottom:541.203300px;}
.y37d{bottom:541.675050px;}
.y2f9{bottom:542.997000px;}
.y34a{bottom:543.987900px;}
.y142{bottom:544.360050px;}
.y598{bottom:544.944150px;}
.y47b{bottom:544.957500px;}
.y175{bottom:545.913150px;}
.y55d{bottom:547.115250px;}
.y4dc{bottom:547.809450px;}
.y2a4{bottom:547.817550px;}
.y5dc{bottom:549.156300px;}
.y20e{bottom:550.218000px;}
.y4a6{bottom:550.365300px;}
.y265{bottom:551.116800px;}
.y446{bottom:551.192250px;}
.y14e{bottom:551.583600px;}
.ycc{bottom:552.466050px;}
.ye8{bottom:552.792450px;}
.y2db{bottom:553.281000px;}
.y3b5{bottom:553.289850px;}
.ya1{bottom:554.959200px;}
.y284{bottom:555.192750px;}
.y1d8{bottom:556.290750px;}
.y51e{bottom:556.349850px;}
.y3e9{bottom:557.569500px;}
.y3e8{bottom:557.576400px;}
.y10{bottom:558.185175px;}
.y37c{bottom:558.324600px;}
.y55b{bottom:559.265100px;}
.y55c{bottom:559.265250px;}
.y141{bottom:559.360350px;}
.y349{bottom:560.563200px;}
.y54{bottom:561.314400px;}
.y173{bottom:561.660450px;}
.y174{bottom:561.663600px;}
.y5db{bottom:561.906300px;}
.y2a3{bottom:564.137700px;}
.y4db{bottom:564.309150px;}
.y20d{bottom:566.042700px;}
.y4a5{bottom:566.940600px;}
.y264{bottom:567.316800px;}
.y445{bottom:567.691950px;}
.y51c{bottom:568.423650px;}
.y51d{bottom:568.424250px;}
.ycb{bottom:568.786200px;}
.y3b4{bottom:569.715300px;}
.y22b{bottom:569.836275px;}
.y2da{bottom:569.856300px;}
.y283{bottom:570.193050px;}
.ya0{bottom:571.458900px;}
.y3e7{bottom:574.076100px;}
.y140{bottom:574.360650px;}
.y5da{bottom:574.656300px;}
.y37b{bottom:574.974150px;}
.ye7{bottom:575.670900px;}
.y172{bottom:577.410900px;}
.y55a{bottom:577.793100px;}
.y53{bottom:577.814100px;}
.y1d7{bottom:579.468900px;}
.y51b{bottom:580.498050px;}
.y4da{bottom:580.808850px;}
.y22a{bottom:581.836650px;}
.y20c{bottom:581.867400px;}
.y597{bottom:583.500150px;}
.y348{bottom:583.515900px;}
.y263{bottom:583.516800px;}
.y33a{bottom:583.668375px;}
.y444{bottom:584.191650px;}
.y443{bottom:584.194950px;}
.yca{bottom:585.106350px;}
.yf{bottom:585.185175px;}
.y3b3{bottom:586.140750px;}
.y2d9{bottom:586.431600px;}
.y287{bottom:586.439700px;}
.y2a2{bottom:586.835250px;}
.y9f{bottom:587.958600px;}
.y13f{bottom:589.360950px;}
.y3e6{bottom:590.575800px;}
.y47a{bottom:591.015900px;}
.y37a{bottom:591.623700px;}
.y79{bottom:591.679950px;}
.ye6{bottom:592.170600px;}
.y51a{bottom:592.573650px;}
.y171{bottom:593.161350px;}
.y5d9{bottom:593.784300px;}
.y52{bottom:594.313800px;}
.y339{bottom:595.668750px;}
.y1d6{bottom:596.268300px;}
.y595{bottom:596.400000px;}
.y596{bottom:596.400150px;}
.y17c{bottom:597.413100px;}
.y20b{bottom:597.692100px;}
.ye{bottom:598.685175px;}
.y262{bottom:599.716800px;}
.y347{bottom:600.091200px;}
.y442{bottom:600.694650px;}
.yc9{bottom:601.426500px;}
.y3b2{bottom:602.566200px;}
.y2d8{bottom:603.006900px;}
.y2a1{bottom:603.155400px;}
.y4d9{bottom:603.686700px;}
.y9e{bottom:604.458300px;}
.y518{bottom:604.649100px;}
.y519{bottom:604.649250px;}
.y144{bottom:605.607600px;}
.y5d8{bottom:606.534300px;}
.y3e5{bottom:607.075500px;}
.y479{bottom:607.665450px;}
.y338{bottom:607.669125px;}
.y78{bottom:608.179650px;}
.y379{bottom:608.273250px;}
.ye5{bottom:608.670300px;}
.y170{bottom:608.911800px;}
.y594{bottom:609.300000px;}
.yd{bottom:612.185175px;}
.y1b8{bottom:612.589800px;}
.y1a7{bottom:612.595050px;}
.y18e{bottom:612.601350px;}
.y1d5{bottom:613.067700px;}
.y20a{bottom:613.516800px;}
.y559{bottom:614.849100px;}
.y261{bottom:615.916800px;}
.y346{bottom:616.666500px;}
.y51{bottom:617.192250px;}
.y441{bottom:617.194350px;}
.yc8{bottom:617.746650px;}
.y3b0{bottom:618.981300px;}
.y3b1{bottom:618.991650px;}
.y5d7{bottom:619.284300px;}
.y2a0{bottom:619.475550px;}
.y2d7{bottom:619.582200px;}
.y337{bottom:619.669500px;}
.y9d{bottom:620.958000px;}
.y517{bottom:623.101500px;}
.y23c{bottom:623.569500px;}
.y23b{bottom:623.571000px;}
.y3e4{bottom:623.575200px;}
.y478{bottom:624.315000px;}
.y16f{bottom:624.662250px;}
.y77{bottom:624.679350px;}
.y378{bottom:624.922800px;}
.yc{bottom:625.685175px;}
.y557{bottom:626.998950px;}
.y558{bottom:626.999100px;}
.y1b7{bottom:627.590100px;}
.y1a6{bottom:627.595350px;}
.y18d{bottom:627.601650px;}
.y593{bottom:628.578000px;}
.y209{bottom:629.341500px;}
.y208{bottom:629.344050px;}
.y1d4{bottom:629.867100px;}
.y336{bottom:631.669875px;}
.y5d6{bottom:632.034300px;}
.y260{bottom:632.116800px;}
.y345{bottom:633.241800px;}
.y50{bottom:633.691950px;}
.y440{bottom:633.694050px;}
.yc7{bottom:634.066800px;}
.y3af{bottom:635.406750px;}
.y29f{bottom:635.795700px;}
.y2d6{bottom:636.157500px;}
.y9c{bottom:637.457700px;}
.yb{bottom:639.185175px;}
.y23a{bottom:640.070700px;}
.y3e3{bottom:640.074900px;}
.y16e{bottom:640.412700px;}
.y477{bottom:640.964550px;}
.y377{bottom:641.572350px;}
.y1b6{bottom:642.590400px;}
.y1a5{bottom:642.595650px;}
.y195{bottom:642.599850px;}
.y18c{bottom:642.601950px;}
.y335{bottom:643.670250px;}
.y123{bottom:644.645700px;}
.y207{bottom:645.168750px;}
.y556{bottom:645.526950px;}
.y76{bottom:647.557800px;}
.y25f{bottom:648.316800px;}
.y4d8{bottom:649.440150px;}
.y344{bottom:649.817100px;}
.y4f{bottom:650.191650px;}
.y43f{bottom:650.193750px;}
.y4e{bottom:650.197350px;}
.yc6{bottom:650.386950px;}
.y5d4{bottom:651.162150px;}
.y5d5{bottom:651.162300px;}
.y3ae{bottom:651.832200px;}
.y29e{bottom:652.115850px;}
.ya{bottom:652.685175px;}
.y13c{bottom:652.896375px;}
.y1d3{bottom:653.045250px;}
.y9b{bottom:653.957400px;}
.y334{bottom:655.670625px;}
.y16d{bottom:656.163150px;}
.y239{bottom:656.570400px;}
.y3e2{bottom:656.574600px;}
.y1b5{bottom:657.590700px;}
.y1a4{bottom:657.595950px;}
.y18b{bottom:657.602250px;}
.y476{bottom:657.614100px;}
.y376{bottom:658.221900px;}
.y2d5{bottom:659.110200px;}
.y516{bottom:660.007500px;}
.y206{bottom:660.993450px;}
.y122{bottom:661.145400px;}
.y5d3{bottom:663.912150px;}
.y13b{bottom:664.896750px;}
.y4d7{bottom:665.939850px;}
.y9{bottom:666.185175px;}
.y343{bottom:666.392400px;}
.y4d{bottom:666.697050px;}
.yc5{bottom:666.707100px;}
.y592{bottom:667.134000px;}
.y591{bottom:667.134150px;}
.y333{bottom:667.671000px;}
.y3ad{bottom:668.257650px;}
.y29d{bottom:668.436000px;}
.y1d2{bottom:669.844650px;}
.y75{bottom:670.437000px;}
.y25e{bottom:670.894200px;}
.y16b{bottom:671.912700px;}
.y16c{bottom:671.913600px;}
.y515{bottom:672.083100px;}
.y514{bottom:672.084300px;}
.y1b4{bottom:672.591000px;}
.y1a3{bottom:672.596250px;}
.y18a{bottom:672.602550px;}
.y238{bottom:673.070100px;}
.y43e{bottom:673.072200px;}
.y3e1{bottom:673.074300px;}
.y475{bottom:674.263650px;}
.y375{bottom:674.871450px;}
.y2d4{bottom:675.685500px;}
.y205{bottom:676.818150px;}
.y9a{bottom:676.835850px;}
.y121{bottom:677.645100px;}
.y58f{bottom:680.034000px;}
.y590{bottom:680.034150px;}
.y4d6{bottom:682.439550px;}
.y554{bottom:682.582800px;}
.y555{bottom:682.582950px;}
.y342{bottom:682.967700px;}
.y341{bottom:682.970100px;}
.y5d2{bottom:683.040150px;}
.y4c{bottom:683.196750px;}
.y8{bottom:683.936550px;}
.y513{bottom:684.158700px;}
.y3ac{bottom:684.683100px;}
.y29c{bottom:684.756150px;}
.y1d1{bottom:686.644050px;}
.y74{bottom:686.936700px;}
.y25d{bottom:687.094200px;}
.y1b3{bottom:687.591300px;}
.y1a2{bottom:687.596550px;}
.y189{bottom:687.602850px;}
.y16a{bottom:687.663150px;}
.yc4{bottom:689.405100px;}
.y237{bottom:689.569800px;}
.y43d{bottom:689.571900px;}
.y3e0{bottom:689.574000px;}
.y474{bottom:690.913200px;}
.y374{bottom:691.521000px;}
.y2d3{bottom:692.260800px;}
.y204{bottom:692.642850px;}
.y58e{bottom:692.934000px;}
.y99{bottom:693.335550px;}
.y120{bottom:694.144800px;}
.y553{bottom:694.732800px;}
.y5d1{bottom:695.790150px;}
.y511{bottom:696.232350px;}
.y512{bottom:696.233100px;}
.y4d5{bottom:698.939250px;}
.y4a4{bottom:699.543000px;}
.y340{bottom:699.545400px;}
.y4b{bottom:699.696450px;}
.y29b{bottom:701.076300px;}
.y3ab{bottom:701.108550px;}
.y1b2{bottom:702.591600px;}
.y1a1{bottom:702.596850px;}
.y188{bottom:702.603150px;}
.y25c{bottom:703.294200px;}
.y169{bottom:703.413600px;}
.y168{bottom:703.415400px;}
.y73{bottom:703.436400px;}
.y1d0{bottom:703.443450px;}
.y58d{bottom:705.834000px;}
.y236{bottom:706.071300px;}
.y43c{bottom:706.071600px;}
.y3df{bottom:706.073700px;}
.y373{bottom:708.170550px;}
.y203{bottom:708.467550px;}
.y5d0{bottom:708.540150px;}
.y2d2{bottom:708.836100px;}
.y98{bottom:709.835250px;}
.y11f{bottom:710.644500px;}
.y552{bottom:713.260800px;}
.y473{bottom:713.941500px;}
.y472{bottom:713.948400px;}
.y510{bottom:714.685950px;}
.y4d4{bottom:715.438950px;}
.y4a3{bottom:716.118300px;}
.y33f{bottom:716.120700px;}
.y26{bottom:716.154600px;}
.y4a{bottom:716.196150px;}
.y29a{bottom:717.396450px;}
.y3aa{bottom:717.534000px;}
.y1b1{bottom:717.591900px;}
.y1a0{bottom:717.597150px;}
.y194{bottom:717.600300px;}
.y187{bottom:717.603450px;}
.y167{bottom:719.165850px;}
.y25b{bottom:719.494200px;}
.y72{bottom:719.936100px;}
.y1cf{bottom:720.242850px;}
.y235{bottom:722.571000px;}
.y43b{bottom:722.571300px;}
.y3de{bottom:722.573400px;}
.y202{bottom:724.292250px;}
.y372{bottom:724.820100px;}
.y58c{bottom:725.112000px;}
.y2d1{bottom:725.411400px;}
.y97{bottom:726.334950px;}
.y11e{bottom:727.144200px;}
.y5cf{bottom:727.668150px;}
.y471{bottom:730.597950px;}
.y4d3{bottom:731.938650px;}
.y1b0{bottom:732.592200px;}
.y19f{bottom:732.597450px;}
.y186{bottom:732.603750px;}
.y4a2{bottom:732.693600px;}
.y49{bottom:732.695850px;}
.y33e{bottom:732.696000px;}
.y299{bottom:733.716600px;}
.y3a9{bottom:733.959450px;}
.yc2{bottom:734.800800px;}
.yc3{bottom:734.800950px;}
.y166{bottom:734.916300px;}
.y25a{bottom:735.694200px;}
.y71{bottom:736.435800px;}
.y1ce{bottom:737.042250px;}
.y58b{bottom:738.012000px;}
.y234{bottom:739.070700px;}
.y43a{bottom:739.071000px;}
.y3dd{bottom:739.073100px;}
.y201{bottom:740.116950px;}
.y5ce{bottom:740.418150px;}
.y2d0{bottom:741.986700px;}
.y96{bottom:742.834650px;}
.y11d{bottom:743.643900px;}
.y60e{bottom:746.500950px;}
.y470{bottom:747.247500px;}
.y1af{bottom:747.592500px;}
.y19e{bottom:747.597750px;}
.y185{bottom:747.604050px;}
.y371{bottom:747.848400px;}
.y4d2{bottom:748.438350px;}
.y48{bottom:749.195550px;}
.y4a1{bottom:749.268900px;}
.y33d{bottom:749.271300px;}
.y298{bottom:750.036750px;}
.y551{bottom:750.316800px;}
.y550{bottom:750.316950px;}
.y3a8{bottom:750.384900px;}
.y165{bottom:750.666750px;}
.yc0{bottom:751.120800px;}
.yc1{bottom:751.120950px;}
.y50e{bottom:751.591200px;}
.y50f{bottom:751.591950px;}
.y259{bottom:751.894200px;}
.y5cc{bottom:753.168000px;}
.y5cd{bottom:753.168150px;}
.y1cd{bottom:753.841650px;}
.y1cc{bottom:753.843900px;}
.y233{bottom:755.570400px;}
.y439{bottom:755.570700px;}
.y3dc{bottom:755.572800px;}
.y200{bottom:755.941650px;}
.y1ff{bottom:755.945550px;}
.y23{bottom:758.027070px;}
.y2cf{bottom:758.562000px;}
.y60d{bottom:759.250950px;}
.y70{bottom:759.316650px;}
.y95{bottom:759.334350px;}
.y11c{bottom:760.143600px;}
.y54e{bottom:762.466800px;}
.y54f{bottom:762.466950px;}
.y1ae{bottom:762.592800px;}
.y19d{bottom:762.598050px;}
.y184{bottom:762.604350px;}
.y46f{bottom:763.897050px;}
.y370{bottom:764.497950px;}
.y4d1{bottom:764.938050px;}
.y47{bottom:765.695250px;}
.y4a0{bottom:765.844200px;}
.y33c{bottom:765.846600px;}
.y297{bottom:766.356900px;}
.y164{bottom:766.417200px;}
.ybf{bottom:767.440950px;}
.y258{bottom:768.094200px;}
.y50d{bottom:770.044800px;}
.y1cb{bottom:770.643300px;}
.y22{bottom:770.777550px;}
.y1fe{bottom:771.770250px;}
.y60b{bottom:772.000800px;}
.y60c{bottom:772.000950px;}
.y232{bottom:772.070100px;}
.y438{bottom:772.070400px;}
.y3db{bottom:772.072500px;}
.y5cb{bottom:772.296000px;}
.y3a7{bottom:773.187750px;}
.y54d{bottom:774.616800px;}
.y2ce{bottom:775.137300px;}
.y6f{bottom:775.816350px;}
.y94{bottom:775.834050px;}
.y58a{bottom:776.568000px;}
.y11b{bottom:776.643300px;}
.y1ad{bottom:777.593100px;}
.y19c{bottom:777.598350px;}
.y196{bottom:777.599400px;}
.y193{bottom:777.600450px;}
.y183{bottom:777.604650px;}
.y46e{bottom:780.546600px;}
.y36f{bottom:781.147500px;}
.y163{bottom:782.167650px;}
.y46{bottom:782.194950px;}
.y49f{bottom:782.419500px;}
.y33b{bottom:782.421900px;}
.y296{bottom:782.677050px;}
.y21{bottom:783.526950px;}
.ybd{bottom:783.760650px;}
.ybe{bottom:783.761100px;}
.y257{bottom:784.294200px;}
.y60a{bottom:784.750800px;}
.y1ca{bottom:787.442700px;}
.y1fd{bottom:787.594950px;}
.y4d0{bottom:787.816500px;}
.y231{bottom:788.569800px;}
.y437{bottom:788.570100px;}
.y3da{bottom:788.572200px;}
.y588{bottom:789.467850px;}
.y589{bottom:789.468000px;}
.y3a6{bottom:789.613200px;}
.y2cd{bottom:791.712600px;}
.y93{bottom:792.333750px;}
.y1ac{bottom:792.593400px;}
.y19b{bottom:792.598650px;}
.y182{bottom:792.604950px;}
.y11a{bottom:793.143000px;}
.y54c{bottom:793.144800px;}
.y46d{bottom:797.196150px;}
.y619{bottom:797.500950px;}
.y36e{bottom:797.797050px;}
.y162{bottom:797.918100px;}
.y6e{bottom:798.694800px;}
.ybc{bottom:800.080800px;}
.y256{bottom:800.494200px;}
.y1fc{bottom:803.419650px;}
.y609{bottom:803.878800px;}
.y1c9{bottom:804.242100px;}
.y4cf{bottom:804.391800px;}
.y230{bottom:805.069500px;}
.y22f{bottom:805.069800px;}
.y3d9{bottom:805.071900px;}
.y45{bottom:805.073400px;}
.y54b{bottom:805.294800px;}
.y49e{bottom:805.372200px;}
.y295{bottom:805.374600px;}
.y3a5{bottom:806.038650px;}
.y50b{bottom:806.950050px;}
.y50c{bottom:806.950800px;}
.y1ab{bottom:807.593700px;}
.y19a{bottom:807.598950px;}
.y181{bottom:807.605250px;}
.y587{bottom:808.745850px;}
.y92{bottom:808.833450px;}
.y119{bottom:809.642700px;}
.y617{bottom:810.250800px;}
.y618{bottom:810.250950px;}
.y5ca{bottom:810.552000px;}
.y46c{bottom:813.845700px;}
.y36d{bottom:814.446600px;}
.y2cc{bottom:814.665300px;}
.y6d{bottom:815.194500px;}
.ybb{bottom:816.400950px;}
.y255{bottom:816.694200px;}
.y1fb{bottom:819.244350px;}
.y161{bottom:820.045950px;}
.y7{bottom:820.124700px;}
.y4ce{bottom:820.967100px;}
.y1c8{bottom:821.041500px;}
.y1c7{bottom:821.042550px;}
.y22e{bottom:821.569500px;}
.y3d8{bottom:821.571600px;}
.y44{bottom:821.573100px;}
.y49d{bottom:821.871900px;}
.y294{bottom:821.874300px;}
.y3a4{bottom:822.464100px;}
.y1aa{bottom:822.594000px;}
.y199{bottom:822.599250px;}
.y192{bottom:822.600300px;}
.y180{bottom:822.605550px;}
.y5c9{bottom:823.302000px;}
.y91{bottom:825.333150px;}
.y50a{bottom:825.403650px;}
.y118{bottom:826.142400px;}
.y616{bottom:829.378800px;}
.y46b{bottom:830.495250px;}
.y36c{bottom:831.096150px;}
.y2cb{bottom:831.240600px;}
.y6c{bottom:831.694200px;}
.yba{bottom:832.721100px;}
.y254{bottom:832.894200px;}
.y1fa{bottom:835.069050px;}
.y160{bottom:835.796400px;}
.y5c8{bottom:836.052000px;}
.y4cd{bottom:837.542400px;}
.y1a9{bottom:837.594300px;}
.y198{bottom:837.599550px;}
.y191{bottom:837.600600px;}
.y17f{bottom:837.605850px;}
.y1c6{bottom:837.841950px;}
.y3d7{bottom:838.071300px;}
.y43{bottom:838.072800px;}
.y49c{bottom:838.371600px;}
.y293{bottom:838.374000px;}
.y3a3{bottom:838.889550px;}
.y90{bottom:841.832850px;}
.y607{bottom:842.134500px;}
.y608{bottom:842.134800px;}
.y549{bottom:842.350650px;}
.y54a{bottom:842.350800px;}
.y117{bottom:842.642100px;}
.y6{bottom:845.623950px;}
.y46a{bottom:847.144800px;}
.y586{bottom:847.301850px;}
.y36b{bottom:847.745700px;}
.y2ca{bottom:847.815900px;}
.y6b{bottom:848.193900px;}
.y5c6{bottom:848.801850px;}
.y5c7{bottom:848.802000px;}
.yb9{bottom:849.041250px;}
.y253{bottom:849.094200px;}
.y1f9{bottom:850.893750px;}
.y15f{bottom:851.546850px;}
.y1a8{bottom:852.594600px;}
.y197{bottom:852.599850px;}
.y190{bottom:852.600900px;}
.y17e{bottom:852.606150px;}
.y4cc{bottom:854.117700px;}
.y548{bottom:854.500650px;}
.y3d6{bottom:854.571000px;}
.y42{bottom:854.572500px;}
.y1c5{bottom:854.641350px;}
.y49b{bottom:854.871300px;}
.y292{bottom:854.873700px;}
.y606{bottom:854.884500px;}
.y3a2{bottom:855.315000px;}
.y8f{bottom:858.332550px;}
.y116{bottom:859.141800px;}
.y509{bottom:862.309650px;}
.y469{bottom:863.794350px;}
.y2c9{bottom:864.391200px;}
.y36a{bottom:864.395250px;}
.y6a{bottom:864.693600px;}
.y252{bottom:865.294200px;}
.yb8{bottom:865.361400px;}
.y585{bottom:866.579850px;}
.y1f8{bottom:866.718450px;}
.y15e{bottom:867.297300px;}
.y18f{bottom:867.601200px;}
.y17d{bottom:867.606450px;}
.y605{bottom:867.634500px;}
.y615{bottom:867.634800px;}
.y5c5{bottom:867.929850px;}
.y4cb{bottom:870.693000px;}
.y3d5{bottom:871.070700px;}
.y41{bottom:871.072200px;}
.y49a{bottom:871.371000px;}
.y291{bottom:871.373400px;}
.y3a1{bottom:871.740450px;}
.y547{bottom:873.028650px;}
.y508{bottom:874.386300px;}
.y115{bottom:875.641500px;}
.y1c3{bottom:877.815450px;}
.y1c4{bottom:877.819500px;}
.y613{bottom:880.384500px;}
.y614{bottom:880.384800px;}
.y468{bottom:880.443900px;}
.y2c8{bottom:880.966500px;}
.y369{bottom:881.044800px;}
.y69{bottom:881.193300px;}
.y8e{bottom:881.211000px;}
.y251{bottom:881.494200px;}
.yb7{bottom:881.681550px;}
.y1f7{bottom:882.543150px;}
.y1b9{bottom:883.854000px;}
.y604{bottom:886.762500px;}
.y4ca{bottom:887.268300px;}
.y3d4{bottom:887.570400px;}
.y40{bottom:887.571900px;}
.y499{bottom:887.870700px;}
.y290{bottom:887.873100px;}
.y3a0{bottom:888.165900px;}
.y5{bottom:889.216950px;}
.y15d{bottom:889.425150px;}
.y507{bottom:892.839900px;}
.y612{bottom:893.134500px;}
.y1c2{bottom:893.565900px;}
.y467{bottom:897.093450px;}
.y2c7{bottom:897.541800px;}
.y68{bottom:897.693000px;}
.y368{bottom:897.694350px;}
.y1f6{bottom:898.367850px;}
.y114{bottom:898.519950px;}
.y603{bottom:899.512500px;}
.y4c9{bottom:903.843600px;}
.y3d3{bottom:904.070100px;}
.y3f{bottom:904.071600px;}
.y8d{bottom:904.090950px;}
.y28f{bottom:904.372800px;}
.yb6{bottom:904.379100px;}
.yb5{bottom:904.381200px;}
.y39f{bottom:904.591350px;}
.y584{bottom:905.135850px;}
.y15c{bottom:905.924850px;}
.y5c4{bottom:906.185850px;}
.y1c1{bottom:909.316350px;}
.y546{bottom:910.084650px;}
.y611{bottom:912.262500px;}
.y466{bottom:913.743000px;}
.y2c6{bottom:914.117100px;}
.y367{bottom:914.343900px;}
.y113{bottom:915.019650px;}
.y582{bottom:918.035550px;}
.y583{bottom:918.035850px;}
.y5c2{bottom:918.935550px;}
.y5c3{bottom:918.935850px;}
.y4{bottom:919.216950px;}
.y4c8{bottom:920.418900px;}
.y3d2{bottom:920.569800px;}
.y67{bottom:920.570100px;}
.y3e{bottom:920.571300px;}
.y8c{bottom:920.590650px;}
.y28e{bottom:920.872500px;}
.yb4{bottom:920.880900px;}
.y14d{bottom:920.961150px;}
.y39e{bottom:921.016800px;}
.y545{bottom:922.234650px;}
.y15b{bottom:922.424550px;}
.y1c0{bottom:925.066800px;}
.y506{bottom:929.745900px;}
.y465{bottom:930.392550px;}
.y2c5{bottom:930.692400px;}
.y581{bottom:930.935550px;}
.y112{bottom:931.519350px;}
.y5c1{bottom:931.685550px;}
.y544{bottom:934.384650px;}
.y4c7{bottom:936.994200px;}
.y3d1{bottom:937.069500px;}
.y66{bottom:937.069800px;}
.y3d{bottom:937.071000px;}
.y8b{bottom:937.090350px;}
.y28d{bottom:937.372200px;}
.yb3{bottom:937.380600px;}
.y39d{bottom:937.442250px;}
.y14c{bottom:937.460850px;}
.y602{bottom:937.768500px;}
.y15a{bottom:938.924250px;}
.y1bf{bottom:940.817250px;}
.y505{bottom:941.820300px;}
.y464{bottom:947.042100px;}
.y2c4{bottom:947.267700px;}
.y111{bottom:948.019050px;}
.y3{bottom:949.216950px;}
.y580{bottom:950.213550px;}
.y601{bottom:950.518500px;}
.y610{bottom:950.518650px;}
.y5c0{bottom:950.813550px;}
.y543{bottom:952.912650px;}
.y65{bottom:953.569500px;}
.y3c{bottom:953.570700px;}
.y8a{bottom:953.590050px;}
.y39c{bottom:953.867700px;}
.y28c{bottom:953.871900px;}
.yb2{bottom:953.880300px;}
.y504{bottom:953.894700px;}
.y14b{bottom:953.960550px;}
.y14a{bottom:953.960850px;}
.y159{bottom:955.423950px;}
.y1be{bottom:956.567700px;}
.y57f{bottom:963.113550px;}
.y600{bottom:963.268500px;}
.y60f{bottom:963.268650px;}
.y2c3{bottom:963.843000px;}
.y110{bottom:964.518750px;}
.y503{bottom:965.969100px;}
.y3b{bottom:970.070400px;}
.y89{bottom:970.089750px;}
.y4c6{bottom:970.144800px;}
.y39b{bottom:970.293150px;}
.y28b{bottom:970.371600px;}
.yb1{bottom:970.380000px;}
.y149{bottom:970.460550px;}
.y148{bottom:970.461450px;}
.y158{bottom:971.923650px;}
.y1bd{bottom:972.318150px;}
.y5ff{bottom:976.018500px;}
.y501{bottom:978.042450px;}
.y502{bottom:978.043500px;}
.y2c2{bottom:980.418300px;}
.y10f{bottom:981.018450px;}
.y3a{bottom:986.570100px;}
.y88{bottom:986.589450px;}
.y39a{bottom:986.718600px;}
.y4c5{bottom:986.720100px;}
.y28a{bottom:986.871300px;}
.yb0{bottom:986.879700px;}
.y147{bottom:986.961150px;}
.y1bc{bottom:988.068600px;}
.y157{bottom:988.423350px;}
.y5fe{bottom:988.768500px;}
.y5bf{bottom:989.069550px;}
.y5be{bottom:989.069700px;}
.y542{bottom:989.968650px;}
.y500{bottom:990.118050px;}
.y2{bottom:999.845625px;}
.y57e{bottom:1001.669550px;}
.y57d{bottom:1001.669700px;}
.y5bd{bottom:1001.819700px;}
.y541{bottom:1002.118500px;}
.y4ff{bottom:1002.193650px;}
.y4fe{bottom:1002.194100px;}
.y39{bottom:1003.069800px;}
.y87{bottom:1003.089150px;}
.y399{bottom:1003.144050px;}
.y4c4{bottom:1003.295400px;}
.y289{bottom:1003.371000px;}
.yaf{bottom:1003.379400px;}
.y146{bottom:1003.460850px;}
.y1bb{bottom:1003.819050px;}
.y10e{bottom:1003.896900px;}
.y156{bottom:1004.923050px;}
.y5fd{bottom:1007.896500px;}
.y1{bottom:1008.545550px;}
.y38{bottom:1019.569500px;}
.y86{bottom:1019.588850px;}
.y288{bottom:1019.870700px;}
.yae{bottom:1019.879100px;}
.y145{bottom:1019.960550px;}
.y10d{bottom:1020.396600px;}
.y4fd{bottom:1020.646500px;}
.y57c{bottom:1020.947700px;}
.y155{bottom:1021.422750px;}
.y27{bottom:1044.326550px;}
.ydb{bottom:1060.981800px;}
.y7a{bottom:1067.925750px;}
.yd9{bottom:1068.226950px;}
.yda{bottom:1072.981500px;}
.y35{bottom:1240.614900px;}
.h18{height:28.425000px;}
.h8{height:28.425600px;}
.h13{height:30.946289px;}
.h10{height:32.368200px;}
.h16{height:33.644531px;}
.hd{height:33.843750px;}
.h2{height:35.685000px;}
.h17{height:39.251953px;}
.h14{height:39.703125px;}
.h7{height:40.837500px;}
.h6{height:41.175000px;}
.h5{height:42.539062px;}
.h19{height:43.920000px;}
.h1a{height:44.901253px;}
.ha{height:48.210938px;}
.hc{height:49.410000px;}
.h11{height:50.513838px;}
.h9{height:51.046875px;}
.h15{height:51.750000px;}
.h12{height:52.732331px;}
.hb{height:59.554688px;}
.h4{height:82.350000px;}
.h3{height:109.800000px;}
.hf{height:1143.750000px;}
.he{height:1143.807900px;}
.h1{height:1208.250000px;}
.h0{height:1208.295900px;}
.w0{width:856.149150px;}
.w1{width:856.500000px;}
.x0{left:0.000000px;}
.x10{left:60.370050px;}
.x14{left:61.373550px;}
.x66{left:63.104850px;}
.x1c{left:66.481500px;}
.x1e{left:68.762100px;}
.x16{left:74.129850px;}
.x13{left:86.885850px;}
.xf{left:88.007700px;}
.x8{left:90.133500px;}
.x20{left:91.137347px;}
.x54{left:94.024800px;}
.x42{left:101.598450px;}
.xb{left:102.889350px;}
.x7e{left:103.893750px;}
.x9{left:107.141250px;}
.xd{left:115.644900px;}
.x1f{left:116.649450px;}
.x3b{left:127.737000px;}
.x96{left:133.657050px;}
.x4{left:135.469650px;}
.x39{left:140.416950px;}
.x3{left:147.768150px;}
.x51{left:152.247195px;}
.x33{left:153.366900px;}
.x52{left:155.384595px;}
.x53{left:157.489110px;}
.x9c{left:160.595400px;}
.x3a{left:163.906950px;}
.x5b{left:165.810600px;}
.x9b{left:170.665500px;}
.x21{left:171.807750px;}
.x3c{left:173.695950px;}
.x34{left:176.105700px;}
.x6e{left:178.422000px;}
.xad{left:187.954050px;}
.x5c{left:189.975750px;}
.x7{left:193.614600px;}
.x80{left:195.406350px;}
.x7f{left:198.221850px;}
.x6f{left:213.698850px;}
.x4d{left:220.204035px;}
.x6b{left:224.187900px;}
.x4b{left:228.881025px;}
.x2b{left:232.783650px;}
.x4c{left:234.395100px;}
.x35{left:235.835100px;}
.x5{left:238.825650px;}
.x81{left:245.038800px;}
.xb0{left:247.002450px;}
.x4e{left:249.884595px;}
.x6c{left:251.637300px;}
.x50{left:254.434770px;}
.x4f{left:257.498460px;}
.x36{left:260.263500px;}
.x4a{left:261.441000px;}
.x15{left:263.401200px;}
.x6{left:265.238850px;}
.x85{left:266.983650px;}
.x48{left:269.671950px;}
.x49{left:270.892890px;}
.x63{left:281.653050px;}
.x72{left:286.550250px;}
.x31{left:287.881350px;}
.x86{left:290.805450px;}
.x2c{left:300.384450px;}
.xc{left:304.966350px;}
.xaf{left:308.292300px;}
.x32{left:310.878150px;}
.xae{left:316.558500px;}
.x9e{left:319.055400px;}
.x37{left:320.844300px;}
.x30{left:323.720100px;}
.x61{left:326.727450px;}
.x9f{left:334.172250px;}
.x82{left:340.939200px;}
.x84{left:342.767700px;}
.x38{left:344.548950px;}
.x99{left:346.980750px;}
.x62{left:351.013350px;}
.x57{left:358.842150px;}
.x56{left:361.470195px;}
.x55{left:364.098240px;}
.x9a{left:365.916300px;}
.x83{left:368.083350px;}
.xa{left:379.606800px;}
.x97{left:385.282800px;}
.x5d{left:387.096300px;}
.x59{left:394.688835px;}
.x58{left:396.969120px;}
.x5a{left:398.542545px;}
.x9d{left:407.842950px;}
.x41{left:413.354700px;}
.x98{left:420.708900px;}
.x3f{left:432.655088px;}
.x3d{left:434.543250px;}
.x17{left:435.547350px;}
.x70{left:445.510350px;}
.x74{left:457.101150px;}
.x3e{left:460.055550px;}
.x1a{left:461.059500px;}
.x43{left:462.807150px;}
.xe{left:464.306250px;}
.x22{left:465.310650px;}
.x68{left:468.885900px;}
.x87{left:478.066950px;}
.x75{left:483.096450px;}
.x44{left:488.319450px;}
.x25{left:490.822800px;}
.x69{left:493.975800px;}
.x91{left:503.303100px;}
.x76{left:507.830250px;}
.x8a{left:522.839250px;}
.x8c{left:528.119400px;}
.x67{left:531.059250px;}
.x18{left:536.377800px;}
.x64{left:543.854700px;}
.x8f{left:545.399550px;}
.xa0{left:547.262550px;}
.x1d{left:548.818950px;}
.x93{left:555.410250px;}
.x94{left:558.431700px;}
.x11{left:559.834645px;}
.x19{left:561.676350px;}
.x1b{left:563.980950px;}
.x40{left:571.117950px;}
.x7c{left:574.609650px;}
.x7d{left:576.467850px;}
.xa2{left:580.490850px;}
.x7a{left:582.506850px;}
.x88{left:584.435700px;}
.x2d{left:590.094445px;}
.x6d{left:594.879300px;}
.x45{left:597.165000px;}
.x12{left:599.707427px;}
.x27{left:605.388900px;}
.x65{left:608.228400px;}
.x77{left:616.671450px;}
.x71{left:618.625650px;}
.xb1{left:622.895100px;}
.x95{left:624.695850px;}
.x89{left:625.996950px;}
.x5e{left:628.481100px;}
.x2e{left:629.967227px;}
.x73{left:643.407750px;}
.x60{left:652.938150px;}
.x8b{left:655.728000px;}
.x46{left:665.711550px;}
.x6a{left:668.401050px;}
.x5f{left:671.037900px;}
.x8d{left:672.300600px;}
.xa3{left:674.439450px;}
.x78{left:676.094250px;}
.x23{left:681.919200px;}
.x28{left:686.198850px;}
.x90{left:692.141400px;}
.x79{left:696.318300px;}
.x2f{left:699.053700px;}
.x2{left:704.022525px;}
.x24{left:706.084350px;}
.x1{left:707.634900px;}
.x47{left:709.253700px;}
.x29{left:710.364150px;}
.x8e{left:713.316900px;}
.x92{left:730.544700px;}
.xaa{left:733.236450px;}
.xa6{left:736.150200px;}
.xab{left:740.868150px;}
.xa4{left:742.022400px;}
.xa9{left:743.331600px;}
.x26{left:756.742500px;}
.x7b{left:759.996300px;}
.xa7{left:761.388300px;}
.xa8{left:764.600400px;}
.xa1{left:765.683700px;}
.x2a{left:775.089300px;}
.xac{left:782.016000px;}
.xa5{left:788.430750px;}
@media print{
.v1{vertical-align:-11.332800pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.600000pt;}
.v3{vertical-align:16.966933pt;}
.ls78{letter-spacing:-2.744000pt;}
.ls110{letter-spacing:-2.495059pt;}
.ls111{letter-spacing:-2.440533pt;}
.ls112{letter-spacing:-2.133333pt;}
.lsb{letter-spacing:-2.001600pt;}
.ls3{letter-spacing:-2.000000pt;}
.ls123{letter-spacing:-1.949810pt;}
.ls56{letter-spacing:-1.915200pt;}
.ls122{letter-spacing:-1.907200pt;}
.ls55{letter-spacing:-1.876800pt;}
.lsc7{letter-spacing:-1.843200pt;}
.ls20{letter-spacing:-1.828800pt;}
.lsc6{letter-spacing:-1.809600pt;}
.ls125{letter-spacing:-1.749159pt;}
.ls126{letter-spacing:-1.710933pt;}
.ls53{letter-spacing:-1.704000pt;}
.ls51{letter-spacing:-1.675200pt;}
.ls58{letter-spacing:-1.643923pt;}
.ls61{letter-spacing:-1.641600pt;}
.ls5c{letter-spacing:-1.617600pt;}
.ls119{letter-spacing:-1.609575pt;}
.ls57{letter-spacing:-1.608000pt;}
.ls2{letter-spacing:-1.600000pt;}
.lsc3{letter-spacing:-1.579200pt;}
.ls11a{letter-spacing:-1.574400pt;}
.lsfb{letter-spacing:-1.526697pt;}
.ls1f{letter-spacing:-1.507200pt;}
.lsfd{letter-spacing:-1.493333pt;}
.ls5d{letter-spacing:-1.483200pt;}
.ls5f{letter-spacing:-1.478400pt;}
.ls54{letter-spacing:-1.472170pt;}
.lsfc{letter-spacing:-1.469991pt;}
.ls21{letter-spacing:-1.440000pt;}
.ls5a{letter-spacing:-1.437820pt;}
.lsc5{letter-spacing:-1.435200pt;}
.ls89{letter-spacing:-1.430400pt;}
.ls87{letter-spacing:-1.425600pt;}
.lsc2{letter-spacing:-1.420800pt;}
.lsb4{letter-spacing:-1.416000pt;}
.ls59{letter-spacing:-1.406400pt;}
.ls77{letter-spacing:-1.401600pt;}
.ls5b{letter-spacing:-1.392000pt;}
.ls64{letter-spacing:-1.382400pt;}
.lscb{letter-spacing:-1.372800pt;}
.lsbd{letter-spacing:-1.368000pt;}
.ls52{letter-spacing:-1.363200pt;}
.lsb5{letter-spacing:-1.358400pt;}
.lsd4{letter-spacing:-1.324800pt;}
.lsc0{letter-spacing:-1.320000pt;}
.ls46{letter-spacing:-1.315200pt;}
.lsca{letter-spacing:-1.310400pt;}
.ls115{letter-spacing:-1.308598pt;}
.lsa0{letter-spacing:-1.305600pt;}
.ls4f{letter-spacing:-1.300800pt;}
.ls45{letter-spacing:-1.291200pt;}
.ls14{letter-spacing:-1.286400pt;}
.ls133{letter-spacing:-1.284267pt;}
.lsaf{letter-spacing:-1.281600pt;}
.ls116{letter-spacing:-1.280000pt;}
.lsd1{letter-spacing:-1.267200pt;}
.ls100{letter-spacing:-1.262933pt;}
.ls41{letter-spacing:-1.262400pt;}
.lsff{letter-spacing:-1.258667pt;}
.ls33{letter-spacing:-1.257600pt;}
.lsbe{letter-spacing:-1.252800pt;}
.ls6d{letter-spacing:-1.246437pt;}
.ls35{letter-spacing:-1.243200pt;}
.ls9d{letter-spacing:-1.238400pt;}
.ls36{letter-spacing:-1.233600pt;}
.ls4a{letter-spacing:-1.228800pt;}
.ls9e{letter-spacing:-1.224000pt;}
.ls6c{letter-spacing:-1.219200pt;}
.ls124{letter-spacing:-1.216996pt;}
.ls99{letter-spacing:-1.209600pt;}
.ls11d{letter-spacing:-1.208272pt;}
.ls95{letter-spacing:-1.204800pt;}
.lsc{letter-spacing:-1.200000pt;}
.lsf{letter-spacing:-1.195200pt;}
.lsad{letter-spacing:-1.190400pt;}
.ls120{letter-spacing:-1.186133pt;}
.ls3c{letter-spacing:-1.185600pt;}
.lsf9{letter-spacing:-1.181867pt;}
.ls102{letter-spacing:-1.177738pt;}
.lsd2{letter-spacing:-1.176000pt;}
.ls7c{letter-spacing:-1.172829pt;}
.ls3a{letter-spacing:-1.171200pt;}
.ls48{letter-spacing:-1.161600pt;}
.ls129{letter-spacing:-1.160290pt;}
.ls8a{letter-spacing:-1.156800pt;}
.ls109{letter-spacing:-1.155928pt;}
.ls10d{letter-spacing:-1.151566pt;}
.ls7b{letter-spacing:-1.147200pt;}
.ls60{letter-spacing:-1.142400pt;}
.ls10a{letter-spacing:-1.138480pt;}
.lse9{letter-spacing:-1.137600pt;}
.ls12a{letter-spacing:-1.134933pt;}
.lsae{letter-spacing:-1.132800pt;}
.ls108{letter-spacing:-1.130667pt;}
.ls10c{letter-spacing:-1.126400pt;}
.ls10e{letter-spacing:-1.125394pt;}
.ls42{letter-spacing:-1.123200pt;}
.lsd{letter-spacing:-1.120000pt;}
.ls75{letter-spacing:-1.118400pt;}
.ls15{letter-spacing:-1.113600pt;}
.ls50{letter-spacing:-1.108800pt;}
.ls31{letter-spacing:-1.104128pt;}
.lsce{letter-spacing:-1.104000pt;}
.ls44{letter-spacing:-1.099220pt;}
.lsee{letter-spacing:-1.099200pt;}
.ls71{letter-spacing:-1.094400pt;}
.ls135{letter-spacing:-1.090498pt;}
.lsab{letter-spacing:-1.089600pt;}
.ls94{letter-spacing:-1.080000pt;}
.ls10{letter-spacing:-1.075200pt;}
.ls30{letter-spacing:-1.074684pt;}
.ls11f{letter-spacing:-1.073050pt;}
.lsd0{letter-spacing:-1.070400pt;}
.ls118{letter-spacing:-1.066667pt;}
.ls66{letter-spacing:-1.065600pt;}
.lsd3{letter-spacing:-1.060800pt;}
.ls82{letter-spacing:-1.056000pt;}
.ls132{letter-spacing:-1.053867pt;}
.ls3d{letter-spacing:-1.051200pt;}
.ls10b{letter-spacing:-1.049600pt;}
.ls37{letter-spacing:-1.046400pt;}
.ls1e{letter-spacing:-1.041600pt;}
.ls85{letter-spacing:-1.036800pt;}
.lscf{letter-spacing:-1.032000pt;}
.ls9c{letter-spacing:-1.022400pt;}
.lsde{letter-spacing:-1.017600pt;}
.ls138{letter-spacing:-1.015467pt;}
.lsb3{letter-spacing:-1.012800pt;}
.ls3f{letter-spacing:-1.008000pt;}
.lsa8{letter-spacing:-1.003200pt;}
.ls103{letter-spacing:-0.998896pt;}
.lse6{letter-spacing:-0.998400pt;}
.lsf8{letter-spacing:-0.994534pt;}
.lsc9{letter-spacing:-0.993600pt;}
.ls134{letter-spacing:-0.989867pt;}
.ls4d{letter-spacing:-0.988800pt;}
.lsd8{letter-spacing:-0.984000pt;}
.ls106{letter-spacing:-0.981448pt;}
.ls29{letter-spacing:-0.981447pt;}
.ls90{letter-spacing:-0.979200pt;}
.ls63{letter-spacing:-0.974400pt;}
.ls12e{letter-spacing:-0.972800pt;}
.ls11c{letter-spacing:-0.972724pt;}
.ls38{letter-spacing:-0.969600pt;}
.ls4c{letter-spacing:-0.964800pt;}
.lse{letter-spacing:-0.960000pt;}
.lsd5{letter-spacing:-0.955200pt;}
.ls2f{letter-spacing:-0.952003pt;}
.ls11b{letter-spacing:-0.951467pt;}
.lsa3{letter-spacing:-0.950400pt;}
.lsd9{letter-spacing:-0.945600pt;}
.ls80{letter-spacing:-0.940800pt;}
.lse1{letter-spacing:-0.936000pt;}
.ls86{letter-spacing:-0.931200pt;}
.lsb2{letter-spacing:-0.926400pt;}
.ls88{letter-spacing:-0.921600pt;}
.ls96{letter-spacing:-0.916800pt;}
.ls6e{letter-spacing:-0.912000pt;}
.lsdc{letter-spacing:-0.907838pt;}
.lsc4{letter-spacing:-0.907200pt;}
.lsaa{letter-spacing:-0.902400pt;}
.ls73{letter-spacing:-0.898024pt;}
.ls67{letter-spacing:-0.897600pt;}
.lsba{letter-spacing:-0.892800pt;}
.ls74{letter-spacing:-0.888000pt;}
.ls127{letter-spacing:-0.881122pt;}
.ls72{letter-spacing:-0.878400pt;}
.lsac{letter-spacing:-0.873600pt;}
.lsf4{letter-spacing:-0.872398pt;}
.ls9f{letter-spacing:-0.868800pt;}
.ls4b{letter-spacing:-0.864000pt;}
.lse8{letter-spacing:-0.859200pt;}
.ls1d{letter-spacing:-0.854400pt;}
.ls28{letter-spacing:-0.853859pt;}
.lsef{letter-spacing:-0.853333pt;}
.ls97{letter-spacing:-0.849600pt;}
.ls16{letter-spacing:-0.844800pt;}
.ls83{letter-spacing:-0.840000pt;}
.lsbb{letter-spacing:-0.835200pt;}
.ls7e{letter-spacing:-0.830400pt;}
.lsf6{letter-spacing:-0.828778pt;}
.ls8b{letter-spacing:-0.825600pt;}
.ls13c{letter-spacing:-0.824416pt;}
.lsa5{letter-spacing:-0.820800pt;}
.ls8d{letter-spacing:-0.820000pt;}
.ls9b{letter-spacing:-0.816000pt;}
.lsf5{letter-spacing:-0.810667pt;}
.ls7f{letter-spacing:-0.806400pt;}
.ls12d{letter-spacing:-0.802606pt;}
.ls3e{letter-spacing:-0.801600pt;}
.ls11{letter-spacing:-0.800000pt;}
.ls49{letter-spacing:-0.796800pt;}
.ls84{letter-spacing:-0.792000pt;}
.ls137{letter-spacing:-0.789333pt;}
.lsb1{letter-spacing:-0.787200pt;}
.ls12c{letter-spacing:-0.785067pt;}
.ls10f{letter-spacing:-0.780797pt;}
.lsd6{letter-spacing:-0.777600pt;}
.ls62{letter-spacing:-0.772800pt;}
.ls113{letter-spacing:-0.772267pt;}
.ls18{letter-spacing:-0.768000pt;}
.ls131{letter-spacing:-0.763733pt;}
.ls91{letter-spacing:-0.758400pt;}
.ls76{letter-spacing:-0.753600pt;}
.ls93{letter-spacing:-0.748800pt;}
.ls12b{letter-spacing:-0.746667pt;}
.ls7a{letter-spacing:-0.744000pt;}
.lsdd{letter-spacing:-0.739200pt;}
.lse5{letter-spacing:-0.736085pt;}
.ls6f{letter-spacing:-0.734400pt;}
.lsc1{letter-spacing:-0.729600pt;}
.ls98{letter-spacing:-0.724800pt;}
.ls12f{letter-spacing:-0.724091pt;}
.ls5e{letter-spacing:-0.720000pt;}
.ls121{letter-spacing:-0.716800pt;}
.lsbc{letter-spacing:-0.715200pt;}
.ls117{letter-spacing:-0.712533pt;}
.lscc{letter-spacing:-0.710400pt;}
.ls130{letter-spacing:-0.708267pt;}
.lsb0{letter-spacing:-0.705600pt;}
.ls139{letter-spacing:-0.704000pt;}
.ls81{letter-spacing:-0.700800pt;}
.ls101{letter-spacing:-0.699733pt;}
.ls114{letter-spacing:-0.691200pt;}
.ls8c{letter-spacing:-0.681600pt;}
.ls40{letter-spacing:-0.676800pt;}
.ls65{letter-spacing:-0.672000pt;}
.lsfa{letter-spacing:-0.669867pt;}
.ls92{letter-spacing:-0.657600pt;}
.ls47{letter-spacing:-0.652800pt;}
.lsf0{letter-spacing:-0.648533pt;}
.ls22{letter-spacing:-0.648000pt;}
.lsf3{letter-spacing:-0.645575pt;}
.lsbf{letter-spacing:-0.643200pt;}
.ls107{letter-spacing:-0.640000pt;}
.lsec{letter-spacing:-0.633600pt;}
.lsf2{letter-spacing:-0.631467pt;}
.lscd{letter-spacing:-0.628800pt;}
.lse2{letter-spacing:-0.624000pt;}
.ls104{letter-spacing:-0.623765pt;}
.ls11e{letter-spacing:-0.619403pt;}
.ls26{letter-spacing:-0.619200pt;}
.ls32{letter-spacing:-0.614400pt;}
.ls105{letter-spacing:-0.610133pt;}
.ls39{letter-spacing:-0.609600pt;}
.ls7{letter-spacing:-0.596000pt;}
.lsc8{letter-spacing:-0.595200pt;}
.lsdb{letter-spacing:-0.590400pt;}
.lsa7{letter-spacing:-0.580800pt;}
.ls6{letter-spacing:-0.580000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls13b{letter-spacing:-0.571421pt;}
.ls3b{letter-spacing:-0.571200pt;}
.ls13a{letter-spacing:-0.558933pt;}
.lsa9{letter-spacing:-0.556800pt;}
.ls70{letter-spacing:-0.552000pt;}
.lsfe{letter-spacing:-0.549611pt;}
.ls43{letter-spacing:-0.547200pt;}
.ls34{letter-spacing:-0.542400pt;}
.ls128{letter-spacing:-0.541867pt;}
.lsa2{letter-spacing:-0.518400pt;}
.ls9a{letter-spacing:-0.513600pt;}
.ls27{letter-spacing:-0.508800pt;}
.lsa4{letter-spacing:-0.494400pt;}
.ls1b{letter-spacing:-0.490723pt;}
.lsa6{letter-spacing:-0.489600pt;}
.ls9{letter-spacing:-0.488000pt;}
.ls7d{letter-spacing:-0.484800pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsea{letter-spacing:-0.475200pt;}
.lseb{letter-spacing:-0.446400pt;}
.lsf7{letter-spacing:-0.436199pt;}
.ls1c{letter-spacing:-0.432000pt;}
.lsf1{letter-spacing:-0.426667pt;}
.ls8e{letter-spacing:-0.416000pt;}
.ls4{letter-spacing:-0.400000pt;}
.lsa1{letter-spacing:-0.398400pt;}
.lsed{letter-spacing:-0.393600pt;}
.ls2b{letter-spacing:-0.392000pt;}
.lse4{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.372000pt;}
.ls1a{letter-spacing:-0.364800pt;}
.ls5{letter-spacing:-0.364000pt;}
.ls25{letter-spacing:-0.360000pt;}
.lse7{letter-spacing:-0.340800pt;}
.lsb9{letter-spacing:-0.272000pt;}
.lse0{letter-spacing:-0.259200pt;}
.lse3{letter-spacing:-0.245362pt;}
.lsdf{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.224000pt;}
.ls4e{letter-spacing:-0.148000pt;}
.lsb7{letter-spacing:-0.140000pt;}
.ls6a{letter-spacing:-0.128000pt;}
.ls6b{letter-spacing:-0.116000pt;}
.ls68{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.086400pt;}
.ls69{letter-spacing:-0.076000pt;}
.ls79{letter-spacing:-0.024000pt;}
.lsb6{letter-spacing:-0.020000pt;}
.ls2a{letter-spacing:-0.012000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.086400pt;}
.lsb8{letter-spacing:0.108000pt;}
.lsd7{letter-spacing:0.248000pt;}
.ls12{letter-spacing:0.259200pt;}
.ls24{letter-spacing:0.268800pt;}
.lsda{letter-spacing:0.292000pt;}
.ls136{letter-spacing:0.371200pt;}
.ls13d{letter-spacing:0.379493pt;}
.ls2d{letter-spacing:0.380000pt;}
.ls2e{letter-spacing:0.400000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls0{letter-spacing:2.000000pt;}
.ls8f{letter-spacing:14.985600pt;}
.ws34e{word-spacing:-31.842540pt;}
.ws4{word-spacing:-11.861333pt;}
.ws34d{word-spacing:-11.690138pt;}
.ws34f{word-spacing:-11.434667pt;}
.ws350{word-spacing:-11.323731pt;}
.ws2d3{word-spacing:-11.297559pt;}
.ws30d{word-spacing:-11.253939pt;}
.ws34c{word-spacing:-10.581333pt;}
.wsef{word-spacing:-10.378667pt;}
.ws3{word-spacing:-2.215579pt;}
.ws99{word-spacing:-1.996800pt;}
.ws73{word-spacing:-1.992000pt;}
.wsdc{word-spacing:-1.987200pt;}
.ws176{word-spacing:-1.982400pt;}
.ws20{word-spacing:-1.977600pt;}
.ws9a{word-spacing:-1.972800pt;}
.ws258{word-spacing:-1.968000pt;}
.ws1d3{word-spacing:-1.958400pt;}
.ws81{word-spacing:-1.953600pt;}
.ws66{word-spacing:-1.953079pt;}
.ws205{word-spacing:-1.948800pt;}
.ws2b2{word-spacing:-1.944000pt;}
.ws19c{word-spacing:-1.939200pt;}
.wseb{word-spacing:-1.936000pt;}
.wsb1{word-spacing:-1.934400pt;}
.ws27a{word-spacing:-1.929600pt;}
.ws13a{word-spacing:-1.924800pt;}
.ws67{word-spacing:-1.923636pt;}
.ws9d{word-spacing:-1.920000pt;}
.ws70{word-spacing:-1.915200pt;}
.ws7c{word-spacing:-1.910400pt;}
.ws12d{word-spacing:-1.905600pt;}
.wsed{word-spacing:-1.904000pt;}
.wsa7{word-spacing:-1.900800pt;}
.wse5{word-spacing:-1.896000pt;}
.ws1f7{word-spacing:-1.891200pt;}
.ws1d{word-spacing:-1.886400pt;}
.ws17e{word-spacing:-1.881600pt;}
.wsbc{word-spacing:-1.874563pt;}
.ws1e3{word-spacing:-1.872000pt;}
.ws2f{word-spacing:-1.867200pt;}
.ws2df{word-spacing:-1.862400pt;}
.ws26f{word-spacing:-1.857600pt;}
.ws122{word-spacing:-1.854934pt;}
.ws2c0{word-spacing:-1.852800pt;}
.ws27{word-spacing:-1.848000pt;}
.ws113{word-spacing:-1.843200pt;}
.ws86{word-spacing:-1.838400pt;}
.wsbb{word-spacing:-1.833600pt;}
.ws1eb{word-spacing:-1.828800pt;}
.wsca{word-spacing:-1.824000pt;}
.ws12b{word-spacing:-1.819200pt;}
.ws305{word-spacing:-1.814589pt;}
.ws121{word-spacing:-1.814400pt;}
.ws374{word-spacing:-1.810227pt;}
.wsb3{word-spacing:-1.809600pt;}
.ws15a{word-spacing:-1.804800pt;}
.ws91{word-spacing:-1.800000pt;}
.wsba{word-spacing:-1.791140pt;}
.ws75{word-spacing:-1.790400pt;}
.ws207{word-spacing:-1.785600pt;}
.ws112{word-spacing:-1.781326pt;}
.ws7a{word-spacing:-1.776000pt;}
.ws304{word-spacing:-1.774933pt;}
.ws1e9{word-spacing:-1.771200pt;}
.ws1b{word-spacing:-1.766400pt;}
.ws319{word-spacing:-1.762133pt;}
.ws182{word-spacing:-1.756800pt;}
.wsb9{word-spacing:-1.752000pt;}
.ws92{word-spacing:-1.747200pt;}
.wsf3{word-spacing:-1.742400pt;}
.wsac{word-spacing:-1.737600pt;}
.ws94{word-spacing:-1.732800pt;}
.ws6f{word-spacing:-1.728000pt;}
.wsd4{word-spacing:-1.723200pt;}
.ws35d{word-spacing:-1.718625pt;}
.ws6d{word-spacing:-1.718400pt;}
.ws18f{word-spacing:-1.713600pt;}
.ws32d{word-spacing:-1.709901pt;}
.ws220{word-spacing:-1.708800pt;}
.ws22{word-spacing:-1.704000pt;}
.ws85{word-spacing:-1.699200pt;}
.ws30e{word-spacing:-1.696815pt;}
.ws3d{word-spacing:-1.694400pt;}
.ws32a{word-spacing:-1.692453pt;}
.ws2de{word-spacing:-1.689600pt;}
.ws35e{word-spacing:-1.681067pt;}
.ws1ee{word-spacing:-1.680000pt;}
.ws390{word-spacing:-1.676800pt;}
.ws25{word-spacing:-1.675200pt;}
.ws8e{word-spacing:-1.670400pt;}
.ws151{word-spacing:-1.660800pt;}
.ws354{word-spacing:-1.659733pt;}
.ws1a7{word-spacing:-1.656000pt;}
.ws377{word-spacing:-1.653195pt;}
.ws25b{word-spacing:-1.651200pt;}
.ws3a8{word-spacing:-1.646933pt;}
.ws8f{word-spacing:-1.646400pt;}
.ws48{word-spacing:-1.641600pt;}
.ws5f{word-spacing:-1.640000pt;}
.ws286{word-spacing:-1.636800pt;}
.ws24c{word-spacing:-1.632000pt;}
.ws1d8{word-spacing:-1.627200pt;}
.ws100{word-spacing:-1.622400pt;}
.ws366{word-spacing:-1.618299pt;}
.ws376{word-spacing:-1.617067pt;}
.ws3e{word-spacing:-1.612800pt;}
.ws51{word-spacing:-1.608000pt;}
.ws27f{word-spacing:-1.603200pt;}
.ws251{word-spacing:-1.598400pt;}
.ws372{word-spacing:-1.596489pt;}
.ws21d{word-spacing:-1.593600pt;}
.wsec{word-spacing:-1.592000pt;}
.ws262{word-spacing:-1.588800pt;}
.ws2e0{word-spacing:-1.584000pt;}
.ws33b{word-spacing:-1.582933pt;}
.ws11{word-spacing:-1.580000pt;}
.wse3{word-spacing:-1.579200pt;}
.ws167{word-spacing:-1.569600pt;}
.ws342{word-spacing:-1.565955pt;}
.wsb4{word-spacing:-1.564800pt;}
.ws373{word-spacing:-1.561600pt;}
.wsd8{word-spacing:-1.560000pt;}
.ws45{word-spacing:-1.555200pt;}
.ws339{word-spacing:-1.552869pt;}
.wsee{word-spacing:-1.552000pt;}
.ws303{word-spacing:-1.548800pt;}
.ws239{word-spacing:-1.540800pt;}
.ws33d{word-spacing:-1.539783pt;}
.ws143{word-spacing:-1.536000pt;}
.ws337{word-spacing:-1.535421pt;}
.ws159{word-spacing:-1.531200pt;}
.ws37b{word-spacing:-1.531059pt;}
.ws20f{word-spacing:-1.528000pt;}
.wsb6{word-spacing:-1.526400pt;}
.wsd{word-spacing:-1.524000pt;}
.ws10b{word-spacing:-1.521600pt;}
.wsa3{word-spacing:-1.520000pt;}
.ws35b{word-spacing:-1.517973pt;}
.ws2ea{word-spacing:-1.516800pt;}
.ws315{word-spacing:-1.514667pt;}
.ws327{word-spacing:-1.513611pt;}
.ws50{word-spacing:-1.512000pt;}
.ws33c{word-spacing:-1.506133pt;}
.ws349{word-spacing:-1.504887pt;}
.ws336{word-spacing:-1.501867pt;}
.ws2e7{word-spacing:-1.497600pt;}
.wsc{word-spacing:-1.488000pt;}
.ws35c{word-spacing:-1.484800pt;}
.ws35f{word-spacing:-1.483077pt;}
.wsf{word-spacing:-1.472000pt;}
.ws23f{word-spacing:-1.468800pt;}
.ws2f5{word-spacing:-1.464000pt;}
.ws6c{word-spacing:-1.459200pt;}
.ws371{word-spacing:-1.452543pt;}
.ws312{word-spacing:-1.450667pt;}
.ws2b3{word-spacing:-1.449600pt;}
.ws368{word-spacing:-1.446400pt;}
.ws38c{word-spacing:-1.442133pt;}
.ws14{word-spacing:-1.432000pt;}
.ws31{word-spacing:-1.425600pt;}
.wsf9{word-spacing:-1.420800pt;}
.wsda{word-spacing:-1.416000pt;}
.ws18e{word-spacing:-1.411200pt;}
.ws39a{word-spacing:-1.408000pt;}
.ws11c{word-spacing:-1.406400pt;}
.ws1c0{word-spacing:-1.396800pt;}
.ws212{word-spacing:-1.396000pt;}
.ws36f{word-spacing:-1.395837pt;}
.ws37d{word-spacing:-1.390933pt;}
.ws2b8{word-spacing:-1.377600pt;}
.ws31f{word-spacing:-1.373867pt;}
.ws23b{word-spacing:-1.372800pt;}
.ws322{word-spacing:-1.369600pt;}
.ws15c{word-spacing:-1.368000pt;}
.ws36e{word-spacing:-1.365333pt;}
.ws1ce{word-spacing:-1.358400pt;}
.ws1b2{word-spacing:-1.353600pt;}
.ws30{word-spacing:-1.348800pt;}
.ws222{word-spacing:-1.334400pt;}
.ws170{word-spacing:-1.324800pt;}
.ws2b5{word-spacing:-1.320000pt;}
.ws226{word-spacing:-1.305600pt;}
.ws72{word-spacing:-1.300800pt;}
.ws60{word-spacing:-1.296000pt;}
.ws2bb{word-spacing:-1.267200pt;}
.ws230{word-spacing:-1.262400pt;}
.ws16{word-spacing:-1.220000pt;}
.ws21f{word-spacing:-1.219200pt;}
.ws3f{word-spacing:-1.209600pt;}
.ws3a9{word-spacing:-1.207467pt;}
.ws9b{word-spacing:-1.200000pt;}
.ws261{word-spacing:-1.185600pt;}
.ws1e{word-spacing:-1.180800pt;}
.ws2c{word-spacing:-1.171200pt;}
.ws320{word-spacing:-1.164800pt;}
.ws2a3{word-spacing:-1.161600pt;}
.ws28{word-spacing:-1.147200pt;}
.ws1c{word-spacing:-1.137600pt;}
.ws23a{word-spacing:-1.132800pt;}
.ws2c6{word-spacing:-1.128000pt;}
.ws39c{word-spacing:-1.117867pt;}
.ws2b6{word-spacing:-1.080000pt;}
.ws250{word-spacing:-1.075200pt;}
.ws156{word-spacing:-1.070400pt;}
.ws1f3{word-spacing:-1.056000pt;}
.ws111{word-spacing:-1.051200pt;}
.ws268{word-spacing:-1.036800pt;}
.ws24b{word-spacing:-1.032000pt;}
.ws2d8{word-spacing:-1.027200pt;}
.ws1df{word-spacing:-1.022400pt;}
.ws388{word-spacing:-1.011200pt;}
.ws1fd{word-spacing:-1.008000pt;}
.ws4a{word-spacing:-1.003200pt;}
.ws1a8{word-spacing:-0.998400pt;}
.ws357{word-spacing:-0.989867pt;}
.ws53{word-spacing:-0.988800pt;}
.ws2aa{word-spacing:-0.984000pt;}
.ws25d{word-spacing:-0.969600pt;}
.ws28d{word-spacing:-0.960000pt;}
.ws202{word-spacing:-0.955200pt;}
.ws15f{word-spacing:-0.950400pt;}
.ws257{word-spacing:-0.947096pt;}
.ws252{word-spacing:-0.945600pt;}
.wse1{word-spacing:-0.931200pt;}
.ws1a3{word-spacing:-0.926400pt;}
.ws2bd{word-spacing:-0.921600pt;}
.ws2a6{word-spacing:-0.912000pt;}
.ws37a{word-spacing:-0.898570pt;}
.ws42{word-spacing:-0.883200pt;}
.ws5c{word-spacing:-0.878400pt;}
.ws26d{word-spacing:-0.868800pt;}
.ws104{word-spacing:-0.859200pt;}
.ws3a5{word-spacing:-0.844800pt;}
.wsdd{word-spacing:-0.830400pt;}
.ws52{word-spacing:-0.825600pt;}
.ws7{word-spacing:-0.824000pt;}
.ws20a{word-spacing:-0.820800pt;}
.ws155{word-spacing:-0.806400pt;}
.ws2c2{word-spacing:-0.801600pt;}
.ws253{word-spacing:-0.787200pt;}
.ws4f{word-spacing:-0.785157pt;}
.ws65{word-spacing:-0.780250pt;}
.ws183{word-spacing:-0.772800pt;}
.ws4e{word-spacing:-0.768000pt;}
.ws152{word-spacing:-0.763200pt;}
.ws71{word-spacing:-0.753600pt;}
.ws41{word-spacing:-0.744000pt;}
.wsb7{word-spacing:-0.739200pt;}
.wsb{word-spacing:-0.732000pt;}
.ws2ef{word-spacing:-0.724800pt;}
.ws84{word-spacing:-0.720000pt;}
.ws343{word-spacing:-0.702281pt;}
.ws344{word-spacing:-0.686933pt;}
.ws287{word-spacing:-0.686400pt;}
.ws17b{word-spacing:-0.681600pt;}
.ws2d6{word-spacing:-0.672000pt;}
.ws38f{word-spacing:-0.667385pt;}
.ws14b{word-spacing:-0.667200pt;}
.ws391{word-spacing:-0.665600pt;}
.ws190{word-spacing:-0.662400pt;}
.ws2b9{word-spacing:-0.652800pt;}
.ws365{word-spacing:-0.649937pt;}
.ws2dc{word-spacing:-0.648000pt;}
.ws188{word-spacing:-0.643200pt;}
.ws19{word-spacing:-0.624000pt;}
.ws2bf{word-spacing:-0.619200pt;}
.ws6a{word-spacing:-0.614400pt;}
.wsb8{word-spacing:-0.609600pt;}
.ws124{word-spacing:-0.595200pt;}
.wscd{word-spacing:-0.590400pt;}
.ws19b{word-spacing:-0.566400pt;}
.ws384{word-spacing:-0.562697pt;}
.ws1b3{word-spacing:-0.561600pt;}
.ws185{word-spacing:-0.556800pt;}
.ws2cf{word-spacing:-0.552000pt;}
.ws17{word-spacing:-0.548000pt;}
.ws14c{word-spacing:-0.547200pt;}
.ws129{word-spacing:-0.532800pt;}
.ws189{word-spacing:-0.523200pt;}
.ws1bc{word-spacing:-0.518400pt;}
.ws137{word-spacing:-0.499200pt;}
.ws36a{word-spacing:-0.494933pt;}
.ws110{word-spacing:-0.494400pt;}
.ws260{word-spacing:-0.484800pt;}
.ws267{word-spacing:-0.470400pt;}
.ws163{word-spacing:-0.446400pt;}
.ws6{word-spacing:-0.432000pt;}
.ws394{word-spacing:-0.430933pt;}
.ws1e2{word-spacing:-0.427200pt;}
.ws204{word-spacing:-0.422400pt;}
.ws1da{word-spacing:-0.417600pt;}
.ws23d{word-spacing:-0.412800pt;}
.ws1d2{word-spacing:-0.408000pt;}
.ws27e{word-spacing:-0.403200pt;}
.ws2ae{word-spacing:-0.398400pt;}
.ws2f1{word-spacing:-0.393600pt;}
.ws142{word-spacing:-0.369600pt;}
.ws2db{word-spacing:-0.368043pt;}
.ws130{word-spacing:-0.364800pt;}
.ws2c1{word-spacing:-0.360000pt;}
.ws23e{word-spacing:-0.355200pt;}
.ws2b0{word-spacing:-0.345600pt;}
.ws1d4{word-spacing:-0.340800pt;}
.ws1ed{word-spacing:-0.336000pt;}
.ws1bb{word-spacing:-0.326400pt;}
.wsa4{word-spacing:-0.324000pt;}
.ws271{word-spacing:-0.321600pt;}
.wsf8{word-spacing:-0.316800pt;}
.ws1d1{word-spacing:-0.312000pt;}
.ws7e{word-spacing:-0.307200pt;}
.ws12c{word-spacing:-0.292800pt;}
.ws138{word-spacing:-0.278400pt;}
.ws1bd{word-spacing:-0.268800pt;}
.ws32e{word-spacing:-0.266082pt;}
.ws32f{word-spacing:-0.260267pt;}
.ws1d9{word-spacing:-0.259200pt;}
.ws2d5{word-spacing:-0.235200pt;}
.ws39f{word-spacing:-0.234667pt;}
.ws2a2{word-spacing:-0.220800pt;}
.wse6{word-spacing:-0.211200pt;}
.ws1ac{word-spacing:-0.206400pt;}
.ws2e8{word-spacing:-0.201600pt;}
.wsfd{word-spacing:-0.196800pt;}
.wsaf{word-spacing:-0.192000pt;}
.wsd9{word-spacing:-0.187200pt;}
.ws2f9{word-spacing:-0.182400pt;}
.ws352{word-spacing:-0.174480pt;}
.ws243{word-spacing:-0.168000pt;}
.ws1b1{word-spacing:-0.163200pt;}
.ws43{word-spacing:-0.158400pt;}
.ws2cb{word-spacing:-0.153600pt;}
.ws1ae{word-spacing:-0.144000pt;}
.ws37f{word-spacing:-0.136533pt;}
.ws28f{word-spacing:-0.134400pt;}
.ws12{word-spacing:-0.120000pt;}
.ws133{word-spacing:-0.105600pt;}
.ws26a{word-spacing:-0.100800pt;}
.ws25a{word-spacing:-0.091200pt;}
.ws18d{word-spacing:-0.086400pt;}
.ws27d{word-spacing:-0.081600pt;}
.ws4b{word-spacing:-0.072000pt;}
.ws378{word-spacing:-0.056706pt;}
.ws134{word-spacing:-0.048000pt;}
.ws1a4{word-spacing:-0.043200pt;}
.ws5e{word-spacing:-0.028000pt;}
.ws116{word-spacing:-0.016000pt;}
.ws2c4{word-spacing:-0.004800pt;}
.ws1a9{word-spacing:-0.002400pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e5{word-spacing:0.014400pt;}
.ws16b{word-spacing:0.024000pt;}
.ws47{word-spacing:0.028800pt;}
.ws291{word-spacing:0.033600pt;}
.ws1e6{word-spacing:0.038400pt;}
.ws16c{word-spacing:0.040000pt;}
.ws192{word-spacing:0.048000pt;}
.ws338{word-spacing:0.051200pt;}
.ws273{word-spacing:0.052800pt;}
.ws11b{word-spacing:0.057600pt;}
.wse7{word-spacing:0.062400pt;}
.ws1e4{word-spacing:0.091200pt;}
.ws31e{word-spacing:0.102400pt;}
.ws31d{word-spacing:0.104688pt;}
.ws89{word-spacing:0.120000pt;}
.ws289{word-spacing:0.134400pt;}
.wsfb{word-spacing:0.139200pt;}
.ws255{word-spacing:0.148800pt;}
.ws247{word-spacing:0.153600pt;}
.ws21a{word-spacing:0.163200pt;}
.ws309{word-spacing:0.166400pt;}
.ws1db{word-spacing:0.168000pt;}
.ws30a{word-spacing:0.174480pt;}
.wscc{word-spacing:0.182400pt;}
.ws22e{word-spacing:0.206400pt;}
.ws1f{word-spacing:0.211200pt;}
.ws38d{word-spacing:0.217600pt;}
.ws38e{word-spacing:0.222462pt;}
.ws15{word-spacing:0.232000pt;}
.ws1cd{word-spacing:0.240000pt;}
.ws1cb{word-spacing:0.254400pt;}
.ws2f7{word-spacing:0.264000pt;}
.ws1b7{word-spacing:0.278400pt;}
.ws1af{word-spacing:0.283200pt;}
.ws244{word-spacing:0.292800pt;}
.ws16a{word-spacing:0.308000pt;}
.ws2c8{word-spacing:0.316800pt;}
.ws69{word-spacing:0.326400pt;}
.ws197{word-spacing:0.331200pt;}
.ws5b{word-spacing:0.333692pt;}
.ws39e{word-spacing:0.337067pt;}
.ws1f5{word-spacing:0.340800pt;}
.ws398{word-spacing:0.341333pt;}
.ws33a{word-spacing:0.344597pt;}
.ws169{word-spacing:0.348000pt;}
.ws59{word-spacing:0.353321pt;}
.wse2{word-spacing:0.360000pt;}
.ws1b8{word-spacing:0.369600pt;}
.ws238{word-spacing:0.388800pt;}
.ws25c{word-spacing:0.417600pt;}
.ws177{word-spacing:0.427200pt;}
.ws1c8{word-spacing:0.432000pt;}
.ws178{word-spacing:0.436744pt;}
.ws25f{word-spacing:0.441600pt;}
.ws150{word-spacing:0.451200pt;}
.ws29b{word-spacing:0.460000pt;}
.ws106{word-spacing:0.460800pt;}
.ws389{word-spacing:0.462371pt;}
.ws397{word-spacing:0.469333pt;}
.ws141{word-spacing:0.475200pt;}
.ws87{word-spacing:0.489600pt;}
.ws274{word-spacing:0.494400pt;}
.wse{word-spacing:0.504000pt;}
.wsfa{word-spacing:0.508800pt;}
.ws36{word-spacing:0.523200pt;}
.ws29a{word-spacing:0.532000pt;}
.ws26c{word-spacing:0.532800pt;}
.ws31a{word-spacing:0.540887pt;}
.wsb2{word-spacing:0.542400pt;}
.ws1ab{word-spacing:0.544000pt;}
.ws209{word-spacing:0.547200pt;}
.ws2a5{word-spacing:0.552000pt;}
.ws5{word-spacing:0.556000pt;}
.ws2c7{word-spacing:0.561600pt;}
.ws2ad{word-spacing:0.580800pt;}
.ws165{word-spacing:0.609600pt;}
.ws18a{word-spacing:0.614400pt;}
.ws1aa{word-spacing:0.620000pt;}
.ws269{word-spacing:0.633600pt;}
.ws1ad{word-spacing:0.676800pt;}
.ws2e9{word-spacing:0.696000pt;}
.ws284{word-spacing:0.705600pt;}
.ws302{word-spacing:0.716800pt;}
.ws8{word-spacing:0.720000pt;}
.ws9{word-spacing:0.724000pt;}
.ws1b0{word-spacing:0.724800pt;}
.ws301{word-spacing:0.732815pt;}
.ws1c1{word-spacing:0.734400pt;}
.ws2d1{word-spacing:0.753600pt;}
.wsc1{word-spacing:0.763200pt;}
.ws11f{word-spacing:0.768000pt;}
.ws172{word-spacing:0.772800pt;}
.wsc2{word-spacing:0.780250pt;}
.ws7b{word-spacing:0.792000pt;}
.ws297{word-spacing:0.801600pt;}
.wsf7{word-spacing:0.806400pt;}
.ws105{word-spacing:0.811200pt;}
.ws145{word-spacing:0.816000pt;}
.ws1b6{word-spacing:0.825600pt;}
.ws218{word-spacing:0.830400pt;}
.ws1f2{word-spacing:0.835200pt;}
.ws1a0{word-spacing:0.844800pt;}
.ws2ba{word-spacing:0.849600pt;}
.ws321{word-spacing:0.853333pt;}
.ws21{word-spacing:0.854400pt;}
.ws2a8{word-spacing:0.868800pt;}
.ws392{word-spacing:0.870400pt;}
.ws241{word-spacing:0.873600pt;}
.wsc6{word-spacing:0.888000pt;}
.ws18b{word-spacing:0.897600pt;}
.ws2fa{word-spacing:0.902400pt;}
.ws1f9{word-spacing:0.921600pt;}
.wsce{word-spacing:0.926400pt;}
.wse9{word-spacing:0.936000pt;}
.ws26b{word-spacing:0.940800pt;}
.ws131{word-spacing:0.950400pt;}
.ws1c4{word-spacing:0.960000pt;}
.ws164{word-spacing:0.964800pt;}
.ws191{word-spacing:0.984000pt;}
.ws24d{word-spacing:0.988800pt;}
.ws2e6{word-spacing:0.998400pt;}
.ws2b7{word-spacing:1.017600pt;}
.ws5d{word-spacing:1.022400pt;}
.ws236{word-spacing:1.027200pt;}
.ws17a{word-spacing:1.032000pt;}
.ws2af{word-spacing:1.036800pt;}
.ws1f4{word-spacing:1.046400pt;}
.ws18{word-spacing:1.048000pt;}
.ws9e{word-spacing:1.056000pt;}
.ws63{word-spacing:1.064870pt;}
.ws9c{word-spacing:1.065600pt;}
.ws1e0{word-spacing:1.070400pt;}
.ws1a2{word-spacing:1.075200pt;}
.ws298{word-spacing:1.094400pt;}
.ws16d{word-spacing:1.099220pt;}
.ws2f4{word-spacing:1.104000pt;}
.ws14a{word-spacing:1.108800pt;}
.ws2a9{word-spacing:1.118400pt;}
.ws10a{word-spacing:1.123200pt;}
.ws15d{word-spacing:1.128000pt;}
.ws20e{word-spacing:1.136000pt;}
.ws200{word-spacing:1.137600pt;}
.ws173{word-spacing:1.142400pt;}
.ws13{word-spacing:1.148000pt;}
.ws109{word-spacing:1.148293pt;}
.ws2d7{word-spacing:1.152000pt;}
.ws382{word-spacing:1.156267pt;}
.ws31c{word-spacing:1.160290pt;}
.ws1e7{word-spacing:1.161600pt;}
.ws2dd{word-spacing:1.200000pt;}
.ws2f2{word-spacing:1.204800pt;}
.ws227{word-spacing:1.209600pt;}
.ws147{word-spacing:1.219200pt;}
.ws22d{word-spacing:1.224000pt;}
.ws300{word-spacing:1.243168pt;}
.ws6e{word-spacing:1.252800pt;}
.ws13e{word-spacing:1.262400pt;}
.ws1ff{word-spacing:1.272000pt;}
.ws30f{word-spacing:1.282426pt;}
.wsad{word-spacing:1.286400pt;}
.ws2ec{word-spacing:1.305600pt;}
.wsae{word-spacing:1.315139pt;}
.ws33{word-spacing:1.324800pt;}
.ws22a{word-spacing:1.329600pt;}
.ws20d{word-spacing:1.336000pt;}
.ws237{word-spacing:1.339200pt;}
.ws38{word-spacing:1.353600pt;}
.ws359{word-spacing:1.356800pt;}
.ws290{word-spacing:1.358400pt;}
.ws367{word-spacing:1.361067pt;}
.ws39{word-spacing:1.383840pt;}
.ws385{word-spacing:1.386667pt;}
.ws35a{word-spacing:1.387113pt;}
.ws2a0{word-spacing:1.406400pt;}
.ws211{word-spacing:1.412000pt;}
.ws61{word-spacing:1.418191pt;}
.wsbd{word-spacing:1.425600pt;}
.ws2fb{word-spacing:1.483200pt;}
.ws22b{word-spacing:1.492800pt;}
.ws135{word-spacing:1.497600pt;}
.ws10f{word-spacing:1.502400pt;}
.ws281{word-spacing:1.526400pt;}
.wsaa{word-spacing:1.550400pt;}
.ws1fa{word-spacing:1.560000pt;}
.ws38b{word-spacing:1.565867pt;}
.ws2eb{word-spacing:1.569600pt;}
.ws199{word-spacing:1.584000pt;}
.ws259{word-spacing:1.593600pt;}
.ws2da{word-spacing:1.608000pt;}
.ws76{word-spacing:1.627200pt;}
.ws306{word-spacing:1.651200pt;}
.ws2f0{word-spacing:1.656000pt;}
.ws1d6{word-spacing:1.660800pt;}
.ws21b{word-spacing:1.665600pt;}
.ws340{word-spacing:1.672533pt;}
.ws11d{word-spacing:1.694400pt;}
.ws19f{word-spacing:1.699200pt;}
.ws1a{word-spacing:1.704000pt;}
.ws395{word-spacing:1.710933pt;}
.ws35{word-spacing:1.713600pt;}
.wsd1{word-spacing:1.718400pt;}
.ws1ec{word-spacing:1.723200pt;}
.ws396{word-spacing:1.723733pt;}
.ws140{word-spacing:1.728000pt;}
.ws18c{word-spacing:1.752000pt;}
.ws313{word-spacing:1.753600pt;}
.wsb5{word-spacing:1.766400pt;}
.ws97{word-spacing:1.800000pt;}
.ws283{word-spacing:1.804800pt;}
.ws292{word-spacing:1.814400pt;}
.ws14f{word-spacing:1.824000pt;}
.ws1f6{word-spacing:1.828800pt;}
.ws13b{word-spacing:1.833600pt;}
.ws2bc{word-spacing:1.843200pt;}
.ws1cf{word-spacing:1.857600pt;}
.ws1a5{word-spacing:1.867200pt;}
.wsd3{word-spacing:1.881600pt;}
.ws195{word-spacing:1.896000pt;}
.ws2ab{word-spacing:1.905600pt;}
.ws1e8{word-spacing:1.910400pt;}
.ws2be{word-spacing:1.920000pt;}
.ws1f8{word-spacing:1.924800pt;}
.ws249{word-spacing:1.929600pt;}
.ws23{word-spacing:1.939200pt;}
.ws2ac{word-spacing:1.948172pt;}
.ws2c9{word-spacing:1.953600pt;}
.ws1c2{word-spacing:1.963200pt;}
.ws36b{word-spacing:1.979733pt;}
.ws341{word-spacing:1.984000pt;}
.ws2e1{word-spacing:1.987200pt;}
.ws5a{word-spacing:1.997244pt;}
.ws23c{word-spacing:2.016000pt;}
.wsfc{word-spacing:2.020800pt;}
.ws36c{word-spacing:2.023964pt;}
.ws56{word-spacing:2.025600pt;}
.wsc9{word-spacing:2.030400pt;}
.ws356{word-spacing:2.030933pt;}
.ws57{word-spacing:2.044800pt;}
.ws114{word-spacing:2.059200pt;}
.ws288{word-spacing:2.064000pt;}
.ws1ef{word-spacing:2.068800pt;}
.ws329{word-spacing:2.069333pt;}
.wscf{word-spacing:2.083200pt;}
.ws62{word-spacing:2.085574pt;}
.ws270{word-spacing:2.088000pt;}
.ws29{word-spacing:2.097600pt;}
.ws1a6{word-spacing:2.107200pt;}
.ws328{word-spacing:2.115566pt;}
.wsf5{word-spacing:2.136000pt;}
.ws198{word-spacing:2.164800pt;}
.ws17f{word-spacing:2.179200pt;}
.ws228{word-spacing:2.184000pt;}
.ws387{word-spacing:2.184533pt;}
.ws225{word-spacing:2.188800pt;}
.ws15b{word-spacing:2.193600pt;}
.ws1f0{word-spacing:2.232000pt;}
.ws1c5{word-spacing:2.236800pt;}
.ws108{word-spacing:2.256000pt;}
.wsd0{word-spacing:2.260800pt;}
.ws13d{word-spacing:2.265600pt;}
.ws2d2{word-spacing:2.275200pt;}
.ws21c{word-spacing:2.294400pt;}
.ws295{word-spacing:2.304000pt;}
.ws7f{word-spacing:2.313600pt;}
.ws33f{word-spacing:2.325333pt;}
.ws26{word-spacing:2.328000pt;}
.ws77{word-spacing:2.342400pt;}
.wsdf{word-spacing:2.352000pt;}
.ws36d{word-spacing:2.355200pt;}
.ws21e{word-spacing:2.361600pt;}
.ws13f{word-spacing:2.376000pt;}
.ws33e{word-spacing:2.377286pt;}
.ws1b5{word-spacing:2.380800pt;}
.ws229{word-spacing:2.404800pt;}
.ws285{word-spacing:2.409600pt;}
.ws194{word-spacing:2.433600pt;}
.ws294{word-spacing:2.448000pt;}
.ws29c{word-spacing:2.488000pt;}
.wsd5{word-spacing:2.491200pt;}
.ws10d{word-spacing:2.515200pt;}
.ws29d{word-spacing:2.532000pt;}
.ws8b{word-spacing:2.537040pt;}
.ws318{word-spacing:2.538679pt;}
.ws263{word-spacing:2.553600pt;}
.ws399{word-spacing:2.581333pt;}
.ws246{word-spacing:2.582400pt;}
.ws37c{word-spacing:2.585600pt;}
.ws15e{word-spacing:2.592000pt;}
.ws3aa{word-spacing:2.594133pt;}
.wsf1{word-spacing:2.601600pt;}
.ws10{word-spacing:2.604000pt;}
.ws2b1{word-spacing:2.606400pt;}
.ws316{word-spacing:2.608471pt;}
.ws1dd{word-spacing:2.611200pt;}
.ws28b{word-spacing:2.625600pt;}
.ws2b{word-spacing:2.644800pt;}
.ws3ab{word-spacing:2.652091pt;}
.ws375{word-spacing:2.653867pt;}
.ws370{word-spacing:2.662400pt;}
.ws3a1{word-spacing:2.670933pt;}
.ws210{word-spacing:2.672000pt;}
.ws311{word-spacing:2.679467pt;}
.ws364{word-spacing:2.682625pt;}
.ws9f{word-spacing:2.688000pt;}
.ws82{word-spacing:2.702400pt;}
.ws31b{word-spacing:2.708797pt;}
.ws27b{word-spacing:2.721600pt;}
.ws32c{word-spacing:2.722133pt;}
.ws3a2{word-spacing:2.730607pt;}
.ws1a1{word-spacing:2.731200pt;}
.ws358{word-spacing:2.734933pt;}
.ws310{word-spacing:2.739331pt;}
.ws2fe{word-spacing:2.743467pt;}
.wsa{word-spacing:2.744000pt;}
.ws2ed{word-spacing:2.750400pt;}
.ws1fb{word-spacing:2.769600pt;}
.ws361{word-spacing:2.778589pt;}
.ws314{word-spacing:2.781867pt;}
.ws32b{word-spacing:2.782951pt;}
.ws235{word-spacing:2.788800pt;}
.ws334{word-spacing:2.790400pt;}
.ws20c{word-spacing:2.798400pt;}
.ws34b{word-spacing:2.803200pt;}
.ws2ff{word-spacing:2.804761pt;}
.ws363{word-spacing:2.807467pt;}
.ws323{word-spacing:2.811733pt;}
.ws3a0{word-spacing:2.816000pt;}
.ws348{word-spacing:2.820267pt;}
.ws362{word-spacing:2.822209pt;}
.ws353{word-spacing:2.824533pt;}
.ws369{word-spacing:2.828800pt;}
.ws146{word-spacing:2.836800pt;}
.ws168{word-spacing:2.846400pt;}
.ws360{word-spacing:2.848381pt;}
.ws37e{word-spacing:2.858667pt;}
.ws123{word-spacing:2.860800pt;}
.ws1c9{word-spacing:2.865600pt;}
.ws19d{word-spacing:2.870400pt;}
.ws2c5{word-spacing:2.875200pt;}
.ws2fc{word-spacing:2.880000pt;}
.ws347{word-spacing:2.883277pt;}
.ws34a{word-spacing:2.884267pt;}
.ws55{word-spacing:2.884800pt;}
.ws393{word-spacing:2.888533pt;}
.ws193{word-spacing:2.889600pt;}
.ws119{word-spacing:2.894400pt;}
.ws381{word-spacing:2.897067pt;}
.ws39d{word-spacing:2.901333pt;}
.ws24f{word-spacing:2.904000pt;}
.ws380{word-spacing:2.905600pt;}
.ws2ce{word-spacing:2.908800pt;}
.ws1c3{word-spacing:2.913600pt;}
.ws6b{word-spacing:2.918400pt;}
.ws307{word-spacing:2.922667pt;}
.ws88{word-spacing:2.923200pt;}
.ws102{word-spacing:2.928000pt;}
.ws1d5{word-spacing:2.932800pt;}
.ws346{word-spacing:2.939982pt;}
.ws32{word-spacing:2.942400pt;}
.ws79{word-spacing:2.947200pt;}
.ws103{word-spacing:2.952000pt;}
.ws1cc{word-spacing:2.956800pt;}
.ws29f{word-spacing:2.966400pt;}
.ws256{word-spacing:2.971200pt;}
.ws2cd{word-spacing:2.973784pt;}
.ws317{word-spacing:2.974878pt;}
.ws219{word-spacing:2.976000pt;}
.wsf0{word-spacing:2.980800pt;}
.ws3a3{word-spacing:2.983602pt;}
.ws74{word-spacing:2.985600pt;}
.ws3b{word-spacing:2.990400pt;}
.ws54{word-spacing:2.995200pt;}
.ws161{word-spacing:3.000000pt;}
.ws26e{word-spacing:3.004800pt;}
.ws2f8{word-spacing:3.009600pt;}
.ws275{word-spacing:3.014400pt;}
.ws96{word-spacing:3.019200pt;}
.ws40{word-spacing:3.024000pt;}
.ws90{word-spacing:3.028800pt;}
.ws17c{word-spacing:3.033600pt;}
.ws24e{word-spacing:3.038400pt;}
.ws240{word-spacing:3.043200pt;}
.wse4{word-spacing:3.048000pt;}
.ws14e{word-spacing:3.052299pt;}
.ws83{word-spacing:3.052800pt;}
.ws162{word-spacing:3.057600pt;}
.ws28c{word-spacing:3.062400pt;}
.ws383{word-spacing:3.063467pt;}
.ws46{word-spacing:3.067200pt;}
.ws49{word-spacing:3.076800pt;}
.ws1f1{word-spacing:3.081600pt;}
.ws266{word-spacing:3.086400pt;}
.ws217{word-spacing:3.091200pt;}
.ws171{word-spacing:3.096000pt;}
.ws1ca{word-spacing:3.100800pt;}
.ws233{word-spacing:3.105600pt;}
.ws101{word-spacing:3.110400pt;}
.ws2a7{word-spacing:3.115200pt;}
.ws120{word-spacing:3.120000pt;}
.ws17d{word-spacing:3.124800pt;}
.ws115{word-spacing:3.129600pt;}
.ws179{word-spacing:3.134400pt;}
.ws2e{word-spacing:3.144000pt;}
.wsdb{word-spacing:3.148800pt;}
.ws28a{word-spacing:3.153600pt;}
.ws279{word-spacing:3.158400pt;}
.ws203{word-spacing:3.163200pt;}
.ws136{word-spacing:3.168000pt;}
.ws93{word-spacing:3.172800pt;}
.ws3c{word-spacing:3.177600pt;}
.ws128{word-spacing:3.182400pt;}
.ws19a{word-spacing:3.192000pt;}
.ws1c7{word-spacing:3.196800pt;}
.ws160{word-spacing:3.201600pt;}
.ws125{word-spacing:3.206400pt;}
.ws216{word-spacing:3.211200pt;}
.ws12f{word-spacing:3.216000pt;}
.ws2a{word-spacing:3.220800pt;}
.ws187{word-spacing:3.225600pt;}
.ws157{word-spacing:3.230400pt;}
.ws2e2{word-spacing:3.235200pt;}
.ws95{word-spacing:3.240000pt;}
.wsa8{word-spacing:3.244800pt;}
.ws44{word-spacing:3.249600pt;}
.ws326{word-spacing:3.249684pt;}
.wsc8{word-spacing:3.254400pt;}
.wsa9{word-spacing:3.259200pt;}
.ws10e{word-spacing:3.264000pt;}
.ws215{word-spacing:3.268800pt;}
.wsea{word-spacing:3.273600pt;}
.wsd6{word-spacing:3.278400pt;}
.ws58{word-spacing:3.282939pt;}
.ws2a1{word-spacing:3.283200pt;}
.ws3a{word-spacing:3.288000pt;}
.ws184{word-spacing:3.292800pt;}
.wscb{word-spacing:3.297600pt;}
.wsc5{word-spacing:3.302400pt;}
.ws13c{word-spacing:3.307200pt;}
.wsc3{word-spacing:3.316800pt;}
.wsd2{word-spacing:3.321600pt;}
.ws1ba{word-spacing:3.326400pt;}
.ws10c{word-spacing:3.327105pt;}
.ws248{word-spacing:3.331200pt;}
.wsbe{word-spacing:3.336000pt;}
.ws2a4{word-spacing:3.336919pt;}
.ws2b4{word-spacing:3.355200pt;}
.ws20b{word-spacing:3.361455pt;}
.ws208{word-spacing:3.374400pt;}
.wsc4{word-spacing:3.376177pt;}
.ws64{word-spacing:3.381084pt;}
.wsbf{word-spacing:3.410528pt;}
.ws264{word-spacing:3.412800pt;}
.ws1fc{word-spacing:3.417600pt;}
.wsc0{word-spacing:3.460800pt;}
.ws265{word-spacing:3.489043pt;}
.ws175{word-spacing:3.499200pt;}
.ws144{word-spacing:3.614400pt;}
.ws4d{word-spacing:3.624000pt;}
.ws30c{word-spacing:3.643733pt;}
.ws379{word-spacing:3.655349pt;}
.ws2ee{word-spacing:3.700800pt;}
.ws30b{word-spacing:3.725141pt;}
.ws293{word-spacing:3.739200pt;}
.ws1ea{word-spacing:3.801600pt;}
.wsf6{word-spacing:3.892800pt;}
.ws16f{word-spacing:3.916800pt;}
.wsff{word-spacing:3.931200pt;}
.ws158{word-spacing:3.950400pt;}
.ws39b{word-spacing:4.061867pt;}
.ws206{word-spacing:4.065600pt;}
.wsf4{word-spacing:4.070400pt;}
.ws1d7{word-spacing:4.113600pt;}
.ws14d{word-spacing:4.118400pt;}
.ws2f3{word-spacing:4.132800pt;}
.ws1dc{word-spacing:4.137600pt;}
.ws2e3{word-spacing:4.161600pt;}
.ws234{word-spacing:4.214400pt;}
.wsde{word-spacing:4.252800pt;}
.ws1de{word-spacing:4.305600pt;}
.ws2e5{word-spacing:4.324800pt;}
.ws335{word-spacing:4.326400pt;}
.ws2e4{word-spacing:4.372800pt;}
.ws12a{word-spacing:4.416000pt;}
.ws2d0{word-spacing:4.425600pt;}
.ws386{word-spacing:4.462933pt;}
.ws11e{word-spacing:4.478400pt;}
.ws296{word-spacing:4.483200pt;}
.ws7d{word-spacing:4.603200pt;}
.ws201{word-spacing:4.636800pt;}
.ws166{word-spacing:4.713600pt;}
.ws11a{word-spacing:4.742400pt;}
.ws126{word-spacing:4.790400pt;}
.ws1bf{word-spacing:4.819200pt;}
.ws27c{word-spacing:4.852800pt;}
.ws127{word-spacing:4.897419pt;}
.ws231{word-spacing:4.910400pt;}
.ws331{word-spacing:4.940800pt;}
.ws80{word-spacing:5.107200pt;}
.ws22f{word-spacing:5.155200pt;}
.ws282{word-spacing:5.256000pt;}
.ws242{word-spacing:5.270400pt;}
.ws24a{word-spacing:5.280000pt;}
.ws28e{word-spacing:5.409600pt;}
.ws355{word-spacing:5.555200pt;}
.ws299{word-spacing:5.563200pt;}
.ws118{word-spacing:5.572800pt;}
.ws22c{word-spacing:5.659200pt;}
.wsf2{word-spacing:5.707200pt;}
.ws232{word-spacing:5.736000pt;}
.ws245{word-spacing:5.774400pt;}
.ws148{word-spacing:5.822400pt;}
.ws2c3{word-spacing:5.937600pt;}
.ws149{word-spacing:5.952475pt;}
.ws1be{word-spacing:6.014400pt;}
.ws181{word-spacing:6.038400pt;}
.ws1b9{word-spacing:6.057600pt;}
.wsd7{word-spacing:6.086400pt;}
.ws8a{word-spacing:6.297600pt;}
.ws308{word-spacing:6.353067pt;}
.ws154{word-spacing:6.508800pt;}
.ws180{word-spacing:6.561600pt;}
.ws107{word-spacing:6.748800pt;}
.ws1b4{word-spacing:6.868800pt;}
.ws196{word-spacing:7.022400pt;}
.ws3a4{word-spacing:7.044267pt;}
.ws12e{word-spacing:7.080000pt;}
.ws78{word-spacing:7.113600pt;}
.ws254{word-spacing:7.200000pt;}
.wsa1{word-spacing:7.504000pt;}
.ws2f6{word-spacing:7.526400pt;}
.ws37{word-spacing:7.627200pt;}
.ws330{word-spacing:7.675733pt;}
.ws8d{word-spacing:7.680000pt;}
.ws2cc{word-spacing:7.809600pt;}
.ws8c{word-spacing:7.851574pt;}
.ws117{word-spacing:7.886400pt;}
.ws132{word-spacing:8.035200pt;}
.ws68{word-spacing:8.068800pt;}
.ws38a{word-spacing:8.098133pt;}
.ws186{word-spacing:8.131200pt;}
.wsb0{word-spacing:8.150400pt;}
.ws29e{word-spacing:8.582400pt;}
.ws1c6{word-spacing:8.611200pt;}
.ws1d0{word-spacing:8.894400pt;}
.ws34{word-spacing:9.019200pt;}
.wsa0{word-spacing:9.020000pt;}
.ws324{word-spacing:9.045333pt;}
.ws213{word-spacing:9.120000pt;}
.ws277{word-spacing:9.163200pt;}
.ws325{word-spacing:9.247423pt;}
.ws223{word-spacing:9.278400pt;}
.ws4c{word-spacing:9.364800pt;}
.ws224{word-spacing:9.485683pt;}
.ws25e{word-spacing:9.580800pt;}
.ws221{word-spacing:10.142400pt;}
.wsab{word-spacing:10.473600pt;}
.ws1{word-spacing:10.482667pt;}
.ws272{word-spacing:10.694400pt;}
.ws2{word-spacing:11.100800pt;}
.wse0{word-spacing:11.131200pt;}
.ws2d9{word-spacing:11.380800pt;}
.ws2fd{word-spacing:11.481600pt;}
.ws214{word-spacing:11.492000pt;}
.ws153{word-spacing:11.630400pt;}
.ws278{word-spacing:11.851200pt;}
.wsfe{word-spacing:12.230400pt;}
.ws2d{word-spacing:12.566400pt;}
.ws139{word-spacing:14.966400pt;}
.ws332{word-spacing:15.300267pt;}
.ws333{word-spacing:15.642103pt;}
.ws1e1{word-spacing:15.715200pt;}
.ws98{word-spacing:15.806400pt;}
.ws276{word-spacing:16.387200pt;}
.ws3a6{word-spacing:16.435200pt;}
.ws19e{word-spacing:16.497600pt;}
.wsa5{word-spacing:16.556000pt;}
.ws3a7{word-spacing:16.802392pt;}
.ws2ca{word-spacing:18.700800pt;}
.wsc7{word-spacing:19.305600pt;}
.ws174{word-spacing:21.681600pt;}
.wsa2{word-spacing:21.692000pt;}
.ws280{word-spacing:22.814400pt;}
.ws351{word-spacing:23.479467pt;}
.ws1fe{word-spacing:23.990400pt;}
.wse8{word-spacing:26.716800pt;}
.ws345{word-spacing:29.316267pt;}
.wsa6{word-spacing:38.948000pt;}
.ws2d4{word-spacing:48.695467pt;}
.ws16e{word-spacing:230.727467pt;}
.ws24{word-spacing:750.227733pt;}
._38{margin-left:-9.692346pt;}
._3{margin-left:-7.840000pt;}
._1{margin-left:-5.866667pt;}
._4{margin-left:-4.400000pt;}
._6{margin-left:-2.826240pt;}
._2{margin-left:-1.920000pt;}
._5{margin-left:-0.960000pt;}
._0{width:1.920000pt;}
._36{width:2.888533pt;}
._37{width:4.526933pt;}
._c{width:7.137600pt;}
._7{width:8.243840pt;}
._39{width:34.487467pt;}
._3a{width:36.727467pt;}
._35{width:59.498667pt;}
._33{width:62.458667pt;}
._25{width:67.648000pt;}
._20{width:72.381867pt;}
._8{width:78.616000pt;}
._2d{width:82.764267pt;}
._d{width:86.826133pt;}
._13{width:88.203733pt;}
._1f{width:89.376000pt;}
._22{width:94.094933pt;}
._b{width:95.704000pt;}
._f{width:97.208533pt;}
._1c{width:98.332267pt;}
._30{width:103.939733pt;}
._24{width:107.628267pt;}
._11{width:108.636267pt;}
._14{width:111.145173pt;}
._e{width:113.037867pt;}
._1b{width:116.073173pt;}
._10{width:120.078933pt;}
._2c{width:125.690133pt;}
._16{width:126.918400pt;}
._32{width:128.393067pt;}
._15{width:135.807467pt;}
._1e{width:138.775467pt;}
._21{width:141.429867pt;}
._2a{width:143.961067pt;}
._2f{width:145.409707pt;}
._12{width:148.967467pt;}
._a{width:158.760000pt;}
._9{width:162.080000pt;}
._2b{width:174.608000pt;}
._28{width:191.045973pt;}
._1a{width:216.033067pt;}
._1d{width:243.058667pt;}
._26{width:263.282133pt;}
._18{width:286.951467pt;}
._19{width:296.997867pt;}
._29{width:326.091733pt;}
._2e{width:335.764800pt;}
._23{width:336.670400pt;}
._31{width:347.060267pt;}
._34{width:356.283200pt;}
._17{width:372.060267pt;}
._27{width:425.331200pt;}
.fs5{font-size:24.000000pt;}
.fs7{font-size:28.800000pt;}
.fse{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fsf{font-size:37.333333pt;}
.fs4{font-size:38.400000pt;}
.fsb{font-size:38.933333pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs10{font-size:43.619918pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:49.072339pt;}
.fsa{font-size:56.000000pt;}
.fsd{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:106.666667pt;}
.y37{bottom:-6.594533pt;}
.ydd{bottom:-6.326933pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:5.085467pt;}
.ydc{bottom:5.353067pt;}
.y34{bottom:49.208800pt;}
.y1f5{bottom:58.423467pt;}
.y406{bottom:58.951733pt;}
.y463{bottom:58.953067pt;}
.y2f8{bottom:59.264133pt;}
.y2c1{bottom:59.464533pt;}
.y3d0{bottom:59.673333pt;}
.y540{bottom:59.751467pt;}
.y22d{bottom:59.762333pt;}
.y7b{bottom:59.926400pt;}
.y229{bottom:59.941467pt;}
.y57a{bottom:60.276933pt;}
.y57b{bottom:60.277067pt;}
.y432{bottom:60.278667pt;}
.y1ba{bottom:60.293333pt;}
.y366{bottom:60.337200pt;}
.y41c{bottom:60.367467pt;}
.y10c{bottom:60.369467pt;}
.y315{bottom:60.664800pt;}
.y398{bottom:60.669200pt;}
.y13a{bottom:60.671733pt;}
.y4fc{bottom:60.701467pt;}
.y332{bottom:60.723467pt;}
.y5bc{bottom:60.896533pt;}
.y498{bottom:61.070400pt;}
.y4c3{bottom:61.939200pt;}
.ye4{bottom:62.705733pt;}
.y280{bottom:63.022533pt;}
.y5fc{bottom:63.110000pt;}
.y22c{bottom:70.429333pt;}
.y53f{bottom:70.485333pt;}
.y53e{bottom:70.485733pt;}
.y579{bottom:71.076933pt;}
.y4fb{bottom:71.568667pt;}
.y4fa{bottom:71.569200pt;}
.y5bb{bottom:72.363200pt;}
.y1f4{bottom:73.089867pt;}
.ye3{bottom:73.372733pt;}
.y405{bottom:73.618133pt;}
.y462{bottom:73.619467pt;}
.y2f7{bottom:73.930533pt;}
.y2c0{bottom:74.130933pt;}
.y3cf{bottom:74.339733pt;}
.y5fa{bottom:74.443067pt;}
.y5fb{bottom:74.443333pt;}
.y228{bottom:74.607867pt;}
.y82{bottom:74.668667pt;}
.y431{bottom:74.945067pt;}
.y365{bottom:75.003600pt;}
.y41b{bottom:75.033867pt;}
.y10b{bottom:75.035867pt;}
.y314{bottom:75.331200pt;}
.y397{bottom:75.335600pt;}
.y396{bottom:75.337467pt;}
.y139{bottom:75.338133pt;}
.y331{bottom:75.389867pt;}
.y330{bottom:75.392000pt;}
.y497{bottom:75.736800pt;}
.y4c2{bottom:76.672800pt;}
.y53c{bottom:81.217467pt;}
.y53d{bottom:81.218533pt;}
.y578{bottom:81.876933pt;}
.y4f9{bottom:82.435333pt;}
.y4f8{bottom:82.436267pt;}
.y5b9{bottom:83.829600pt;}
.y5ba{bottom:83.829867pt;}
.ye2{bottom:84.039733pt;}
.y25{bottom:84.220933pt;}
.y5f9{bottom:85.776400pt;}
.y1f3{bottom:87.756267pt;}
.y81{bottom:88.002267pt;}
.y404{bottom:88.284533pt;}
.y461{bottom:88.285867pt;}
.y2f6{bottom:88.596933pt;}
.y2bf{bottom:88.797333pt;}
.y3ce{bottom:89.006133pt;}
.y227{bottom:89.274267pt;}
.y430{bottom:89.611467pt;}
.y364{bottom:89.670000pt;}
.y41a{bottom:89.700267pt;}
.y10a{bottom:89.702267pt;}
.y313{bottom:89.997600pt;}
.y395{bottom:90.003867pt;}
.y138{bottom:90.004533pt;}
.y32f{bottom:90.058400pt;}
.y496{bottom:90.403200pt;}
.y4c1{bottom:91.406400pt;}
.y4f7{bottom:93.302400pt;}
.ye1{bottom:94.706733pt;}
.y24{bottom:96.220933pt;}
.y5f8{bottom:97.109733pt;}
.y53b{bottom:97.620667pt;}
.y577{bottom:98.346267pt;}
.y5b8{bottom:100.965600pt;}
.y80{bottom:101.335867pt;}
.y1f2{bottom:102.422667pt;}
.y403{bottom:102.950933pt;}
.y460{bottom:102.952267pt;}
.y2f5{bottom:103.263333pt;}
.y2be{bottom:103.463733pt;}
.y3cd{bottom:103.672533pt;}
.y226{bottom:103.940667pt;}
.y42f{bottom:104.277867pt;}
.y363{bottom:104.336400pt;}
.y419{bottom:104.366667pt;}
.y109{bottom:104.368667pt;}
.y312{bottom:104.664000pt;}
.y394{bottom:104.670267pt;}
.y137{bottom:104.670933pt;}
.y32e{bottom:104.724800pt;}
.y495{bottom:105.069600pt;}
.ye0{bottom:105.373733pt;}
.y4c0{bottom:106.140000pt;}
.y4f6{bottom:109.837867pt;}
.y7f{bottom:112.002933pt;}
.y5b7{bottom:112.432267pt;}
.y5b6{bottom:112.432400pt;}
.y5f7{bottom:114.112400pt;}
.ydf{bottom:116.040733pt;}
.y1f1{bottom:117.089067pt;}
.y27f{bottom:117.473733pt;}
.y250{bottom:117.616000pt;}
.y402{bottom:117.617333pt;}
.y45f{bottom:117.618667pt;}
.y2f4{bottom:117.929733pt;}
.y2bd{bottom:118.130133pt;}
.y3cc{bottom:118.338933pt;}
.y225{bottom:118.607067pt;}
.y42e{bottom:118.944267pt;}
.y362{bottom:119.002800pt;}
.y418{bottom:119.033067pt;}
.y108{bottom:119.035067pt;}
.y311{bottom:119.330400pt;}
.y393{bottom:119.336667pt;}
.y136{bottom:119.337333pt;}
.y32d{bottom:119.391200pt;}
.y494{bottom:119.736000pt;}
.y4bf{bottom:120.873600pt;}
.y5b5{bottom:123.899067pt;}
.y5b4{bottom:123.899200pt;}
.y7e{bottom:125.336533pt;}
.yde{bottom:126.707733pt;}
.y53a{bottom:130.426000pt;}
.y576{bottom:131.284933pt;}
.y1f0{bottom:131.755467pt;}
.y27e{bottom:132.140133pt;}
.y24f{bottom:132.282400pt;}
.y401{bottom:132.283733pt;}
.y45e{bottom:132.285067pt;}
.y2f3{bottom:132.596133pt;}
.y2bc{bottom:132.796533pt;}
.y3cb{bottom:133.005333pt;}
.y224{bottom:133.273467pt;}
.y42d{bottom:133.610667pt;}
.y361{bottom:133.669200pt;}
.y417{bottom:133.699467pt;}
.y106{bottom:133.701333pt;}
.y107{bottom:133.701467pt;}
.y310{bottom:133.996800pt;}
.y392{bottom:134.003067pt;}
.y135{bottom:134.003733pt;}
.y32c{bottom:134.057600pt;}
.y493{bottom:134.402400pt;}
.y5b3{bottom:135.365867pt;}
.y4be{bottom:135.607200pt;}
.y7d{bottom:138.670133pt;}
.y539{bottom:141.159867pt;}
.y538{bottom:141.160400pt;}
.y575{bottom:142.084933pt;}
.y4f5{bottom:142.909867pt;}
.y33{bottom:145.758933pt;}
.y2d{bottom:145.940800pt;}
.y1ef{bottom:146.421867pt;}
.y27d{bottom:146.806533pt;}
.y5b2{bottom:146.832533pt;}
.y24e{bottom:146.948800pt;}
.y400{bottom:146.950133pt;}
.y2bb{bottom:147.462933pt;}
.y3ca{bottom:147.671733pt;}
.y223{bottom:147.939867pt;}
.y5f6{bottom:148.117733pt;}
.y5f5{bottom:148.117867pt;}
.y42c{bottom:148.277067pt;}
.y360{bottom:148.335600pt;}
.y105{bottom:148.367733pt;}
.y30f{bottom:148.663200pt;}
.y391{bottom:148.669467pt;}
.y134{bottom:148.670133pt;}
.y32b{bottom:148.724000pt;}
.y492{bottom:149.068800pt;}
.y7c{bottom:149.337200pt;}
.y4bd{bottom:150.340800pt;}
.y536{bottom:151.893067pt;}
.y537{bottom:151.893200pt;}
.y45d{bottom:152.621467pt;}
.y2f2{bottom:152.932533pt;}
.y4f4{bottom:153.776267pt;}
.y416{bottom:154.035867pt;}
.y574{bottom:158.554267pt;}
.y5f4{bottom:159.451200pt;}
.y32{bottom:160.425333pt;}
.y2c{bottom:160.607200pt;}
.y1ee{bottom:161.088267pt;}
.y27c{bottom:161.472933pt;}
.y24d{bottom:161.615200pt;}
.y3ff{bottom:161.616533pt;}
.y3c9{bottom:162.338133pt;}
.y222{bottom:162.606267pt;}
.y42b{bottom:162.943467pt;}
.y35f{bottom:163.002000pt;}
.y30e{bottom:163.329600pt;}
.y390{bottom:163.335867pt;}
.y133{bottom:163.336533pt;}
.y32a{bottom:163.390400pt;}
.y491{bottom:163.735200pt;}
.y83{bottom:163.777733pt;}
.y5b1{bottom:163.968533pt;}
.y4f3{bottom:164.643467pt;}
.y4bc{bottom:165.074400pt;}
.y45c{bottom:167.287867pt;}
.y2f1{bottom:167.666133pt;}
.y2ba{bottom:167.799333pt;}
.y535{bottom:168.295200pt;}
.y415{bottom:168.702267pt;}
.y104{bottom:168.704133pt;}
.y103{bottom:168.704533pt;}
.y5f3{bottom:170.784533pt;}
.y573{bottom:175.023600pt;}
.y31{bottom:175.091733pt;}
.y2b{bottom:175.273600pt;}
.y5af{bottom:175.435067pt;}
.y5b0{bottom:175.435200pt;}
.y1ed{bottom:175.754667pt;}
.y24c{bottom:176.281600pt;}
.y3fe{bottom:176.282933pt;}
.y3c8{bottom:177.004533pt;}
.y42a{bottom:177.609867pt;}
.y35e{bottom:177.668400pt;}
.y30d{bottom:177.996000pt;}
.y38f{bottom:178.002267pt;}
.y132{bottom:178.002933pt;}
.y490{bottom:178.401600pt;}
.y4bb{bottom:179.808000pt;}
.y4f2{bottom:181.178933pt;}
.y27b{bottom:181.809333pt;}
.y45b{bottom:181.954267pt;}
.y5f2{bottom:182.117867pt;}
.y2b9{bottom:182.306133pt;}
.y2f0{bottom:182.399733pt;}
.y221{bottom:182.942667pt;}
.y414{bottom:183.368667pt;}
.y102{bottom:183.370933pt;}
.y101{bottom:183.371333pt;}
.y329{bottom:183.726800pt;}
.y5ae{bottom:186.901733pt;}
.y30{bottom:189.758133pt;}
.y2a{bottom:189.940000pt;}
.y1ec{bottom:190.421067pt;}
.y24b{bottom:190.948000pt;}
.y3fd{bottom:190.949333pt;}
.y35d{bottom:192.334800pt;}
.y30c{bottom:192.662400pt;}
.y48f{bottom:193.068000pt;}
.y48e{bottom:193.073467pt;}
.y4ba{bottom:194.541600pt;}
.y27a{bottom:196.209333pt;}
.y45a{bottom:196.620667pt;}
.y2b8{bottom:196.812933pt;}
.y2ef{bottom:197.133333pt;}
.y3c7{bottom:197.340400pt;}
.y220{bottom:197.609067pt;}
.y429{bottom:197.946267pt;}
.y413{bottom:198.035067pt;}
.y100{bottom:198.037733pt;}
.y38e{bottom:198.338267pt;}
.y131{bottom:198.339333pt;}
.y5ad{bottom:198.368400pt;}
.y328{bottom:198.393200pt;}
.y5f1{bottom:199.120533pt;}
.y534{bottom:201.100533pt;}
.y2f{bottom:204.424533pt;}
.y29{bottom:204.606400pt;}
.y24a{bottom:205.614400pt;}
.y3fc{bottom:205.615733pt;}
.y30b{bottom:207.328800pt;}
.y48d{bottom:207.739867pt;}
.y572{bottom:207.962267pt;}
.y4b9{bottom:209.275200pt;}
.y5ac{bottom:209.835067pt;}
.y279{bottom:210.609333pt;}
.y1eb{bottom:210.757467pt;}
.y459{bottom:211.287067pt;}
.y2b7{bottom:211.319733pt;}
.y64{bottom:211.818800pt;}
.y533{bottom:211.834400pt;}
.y2ee{bottom:211.866933pt;}
.y21f{bottom:212.275467pt;}
.y428{bottom:212.612667pt;}
.y35c{bottom:212.671200pt;}
.y412{bottom:212.701467pt;}
.yff{bottom:212.704133pt;}
.yfe{bottom:212.704800pt;}
.y130{bottom:213.005733pt;}
.y85{bottom:213.036200pt;}
.y327{bottom:213.059600pt;}
.y4f1{bottom:214.250933pt;}
.y4f0{bottom:214.251467pt;}
.y571{bottom:218.762267pt;}
.y2e{bottom:219.090933pt;}
.y249{bottom:220.280800pt;}
.y3fb{bottom:220.282133pt;}
.y48c{bottom:222.406267pt;}
.y532{bottom:222.567200pt;}
.y84{bottom:223.703200pt;}
.y4b8{bottom:224.008800pt;}
.y278{bottom:225.009333pt;}
.y4ee{bottom:225.117067pt;}
.y4ef{bottom:225.117600pt;}
.y1ea{bottom:225.690267pt;}
.y2b6{bottom:225.826533pt;}
.y458{bottom:225.953467pt;}
.y63{bottom:226.485200pt;}
.y2ed{bottom:226.600533pt;}
.y21e{bottom:226.941867pt;}
.y5ab{bottom:226.971067pt;}
.y427{bottom:227.279067pt;}
.y411{bottom:227.367867pt;}
.yfd{bottom:227.371200pt;}
.y35b{bottom:227.404800pt;}
.y30a{bottom:227.665200pt;}
.y12f{bottom:227.672133pt;}
.y326{bottom:227.726000pt;}
.y28{bottom:228.721867pt;}
.y570{bottom:229.562267pt;}
.y5ef{bottom:233.125600pt;}
.y5f0{bottom:233.125867pt;}
.y531{bottom:233.301067pt;}
.y530{bottom:233.301467pt;}
.y4ed{bottom:235.984267pt;}
.y48b{bottom:237.072667pt;}
.y3c6{bottom:237.937600pt;}
.y4b7{bottom:238.742400pt;}
.y38d{bottom:239.025333pt;}
.y277{bottom:239.409333pt;}
.y2b5{bottom:240.333333pt;}
.y248{bottom:240.617200pt;}
.y3fa{bottom:240.618533pt;}
.y457{bottom:240.619867pt;}
.y1e9{bottom:240.623067pt;}
.y62{bottom:241.151600pt;}
.y2ec{bottom:241.334133pt;}
.y21d{bottom:241.608267pt;}
.y426{bottom:241.945467pt;}
.y410{bottom:242.034267pt;}
.yfc{bottom:242.037600pt;}
.yfb{bottom:242.037733pt;}
.y35a{bottom:242.138400pt;}
.y309{bottom:242.331600pt;}
.y12e{bottom:242.338533pt;}
.y325{bottom:242.392400pt;}
.y5ee{bottom:244.458933pt;}
.y56f{bottom:246.031600pt;}
.y52f{bottom:249.703600pt;}
.y48a{bottom:251.739067pt;}
.y4ec{bottom:252.519733pt;}
.y3c5{bottom:252.538000pt;}
.y4b6{bottom:253.476000pt;}
.y276{bottom:253.809333pt;}
.y38c{bottom:253.824933pt;}
.y2b4{bottom:254.840133pt;}
.y247{bottom:255.283600pt;}
.y3f9{bottom:255.284933pt;}
.y456{bottom:255.286267pt;}
.y1e8{bottom:255.555867pt;}
.y5ed{bottom:255.792267pt;}
.y61{bottom:255.818000pt;}
.y2eb{bottom:256.067733pt;}
.y21c{bottom:256.274667pt;}
.y40f{bottom:256.700667pt;}
.yfa{bottom:256.704133pt;}
.yf9{bottom:256.707200pt;}
.y359{bottom:256.872000pt;}
.y308{bottom:256.998000pt;}
.y12d{bottom:257.004933pt;}
.y5aa{bottom:261.243067pt;}
.y425{bottom:262.281867pt;}
.y324{bottom:262.728400pt;}
.y4eb{bottom:263.386933pt;}
.y4ea{bottom:263.387467pt;}
.y489{bottom:266.405467pt;}
.y3c4{bottom:267.138400pt;}
.y275{bottom:268.209333pt;}
.y4b5{bottom:268.209600pt;}
.y38b{bottom:268.624533pt;}
.y2b3{bottom:269.346933pt;}
.y246{bottom:269.950000pt;}
.y3f8{bottom:269.951333pt;}
.y455{bottom:269.952667pt;}
.y60{bottom:270.484400pt;}
.y1e7{bottom:270.488667pt;}
.y2ea{bottom:270.801333pt;}
.y21b{bottom:270.941067pt;}
.y40e{bottom:271.367067pt;}
.yf8{bottom:271.373600pt;}
.y358{bottom:271.605600pt;}
.y307{bottom:271.664400pt;}
.y12c{bottom:271.671333pt;}
.y5a9{bottom:272.709733pt;}
.y5ec{bottom:272.794933pt;}
.y4e9{bottom:274.253600pt;}
.y4e8{bottom:274.254000pt;}
.y424{bottom:276.948267pt;}
.y56e{bottom:278.970267pt;}
.y488{bottom:281.071867pt;}
.y3c3{bottom:281.738800pt;}
.y52d{bottom:282.508400pt;}
.y52e{bottom:282.508933pt;}
.y274{bottom:282.609333pt;}
.y273{bottom:282.612800pt;}
.y4b4{bottom:282.943200pt;}
.y38a{bottom:283.424133pt;}
.y2b2{bottom:283.853733pt;}
.y5a7{bottom:284.176267pt;}
.y5a8{bottom:284.176400pt;}
.y20{bottom:284.605600pt;}
.y245{bottom:284.616400pt;}
.y3f7{bottom:284.617733pt;}
.y454{bottom:284.619067pt;}
.y5f{bottom:285.150800pt;}
.y1e6{bottom:285.421467pt;}
.y2e9{bottom:285.534933pt;}
.y21a{bottom:285.607467pt;}
.yf7{bottom:286.040000pt;}
.y306{bottom:286.330800pt;}
.y12b{bottom:286.337733pt;}
.y357{bottom:286.339200pt;}
.y56d{bottom:289.770267pt;}
.y4e7{bottom:290.789467pt;}
.y423{bottom:291.614667pt;}
.y40d{bottom:291.703467pt;}
.y52b{bottom:293.240533pt;}
.y52c{bottom:293.242267pt;}
.y5a6{bottom:295.642933pt;}
.y487{bottom:295.738267pt;}
.y3c2{bottom:296.339200pt;}
.y1f{bottom:296.605600pt;}
.y272{bottom:297.012800pt;}
.y4b3{bottom:297.676800pt;}
.y389{bottom:298.223733pt;}
.y2b1{bottom:298.360533pt;}
.y244{bottom:299.282800pt;}
.y3f6{bottom:299.284133pt;}
.y453{bottom:299.285467pt;}
.y323{bottom:299.402400pt;}
.y5e{bottom:299.817200pt;}
.y2e8{bottom:300.268533pt;}
.y219{bottom:300.273867pt;}
.y1e5{bottom:300.354267pt;}
.y56b{bottom:300.570133pt;}
.y56c{bottom:300.570267pt;}
.yf6{bottom:300.706400pt;}
.y305{bottom:300.997200pt;}
.y12a{bottom:301.004133pt;}
.y356{bottom:301.072800pt;}
.y52a{bottom:303.974400pt;}
.y422{bottom:306.281067pt;}
.y40c{bottom:306.369867pt;}
.y5eb{bottom:306.800267pt;}
.y5a5{bottom:307.109600pt;}
.y1e{bottom:308.605600pt;}
.y486{bottom:310.404667pt;}
.y3c1{bottom:310.939600pt;}
.yd8{bottom:311.330533pt;}
.y56a{bottom:311.370133pt;}
.y271{bottom:311.412800pt;}
.yad{bottom:311.630267pt;}
.y4b2{bottom:312.410400pt;}
.y2b0{bottom:312.867333pt;}
.y388{bottom:313.023333pt;}
.y243{bottom:313.949200pt;}
.y3f5{bottom:313.950533pt;}
.y452{bottom:313.951867pt;}
.y322{bottom:314.068800pt;}
.y5d{bottom:314.483600pt;}
.y529{bottom:314.708267pt;}
.y218{bottom:314.940267pt;}
.y2e7{bottom:315.002133pt;}
.y1e4{bottom:315.287067pt;}
.yf5{bottom:315.372800pt;}
.y304{bottom:315.663600pt;}
.y129{bottom:315.670533pt;}
.y355{bottom:315.806400pt;}
.y5ea{bottom:318.133600pt;}
.y1d{bottom:320.605600pt;}
.y421{bottom:320.947467pt;}
.y40b{bottom:321.036267pt;}
.y4e6{bottom:323.862000pt;}
.y5a4{bottom:324.245600pt;}
.y3c0{bottom:325.540000pt;}
.y270{bottom:325.812800pt;}
.yd7{bottom:325.837333pt;}
.yac{bottom:326.296667pt;}
.y4b1{bottom:327.144000pt;}
.y2af{bottom:327.374133pt;}
.y387{bottom:327.822933pt;}
.y569{bottom:327.839467pt;}
.y242{bottom:328.615600pt;}
.y3f4{bottom:328.616933pt;}
.y451{bottom:328.618267pt;}
.y321{bottom:328.735200pt;}
.y5e9{bottom:329.466933pt;}
.y217{bottom:329.606667pt;}
.y2e6{bottom:329.735733pt;}
.yf4{bottom:330.039200pt;}
.y1e3{bottom:330.219867pt;}
.y303{bottom:330.330000pt;}
.y128{bottom:330.336933pt;}
.y354{bottom:330.540000pt;}
.y485{bottom:330.741067pt;}
.y528{bottom:331.110400pt;}
.y1c{bottom:332.605600pt;}
.y4e4{bottom:334.726933pt;}
.y4e5{bottom:334.728133pt;}
.y5c{bottom:334.819933pt;}
.y420{bottom:335.613867pt;}
.y40a{bottom:335.702667pt;}
.y568{bottom:338.639467pt;}
.y3bf{bottom:340.140400pt;}
.y26f{bottom:340.212800pt;}
.yd6{bottom:340.344133pt;}
.y5e8{bottom:340.800267pt;}
.yab{bottom:340.963067pt;}
.y4b0{bottom:341.877600pt;}
.y2ae{bottom:341.880933pt;}
.y386{bottom:342.622533pt;}
.y241{bottom:343.282000pt;}
.y3f3{bottom:343.283333pt;}
.y450{bottom:343.284667pt;}
.y320{bottom:343.401600pt;}
.y2e5{bottom:344.469333pt;}
.y1b{bottom:344.605600pt;}
.yf3{bottom:344.705600pt;}
.y302{bottom:344.996400pt;}
.y1e2{bottom:345.152667pt;}
.y353{bottom:345.273600pt;}
.y484{bottom:345.540667pt;}
.y4e3{bottom:345.594133pt;}
.y216{bottom:349.942667pt;}
.y41f{bottom:350.280267pt;}
.y409{bottom:350.369067pt;}
.y127{bottom:350.673333pt;}
.y5e7{bottom:352.133600pt;}
.y26e{bottom:354.612800pt;}
.y3be{bottom:354.740800pt;}
.yd5{bottom:354.850933pt;}
.y567{bottom:355.108800pt;}
.yaa{bottom:355.629467pt;}
.y2ad{bottom:356.387733pt;}
.y4e2{bottom:356.461333pt;}
.y1a{bottom:356.605600pt;}
.y4af{bottom:356.611200pt;}
.y385{bottom:357.422133pt;}
.y240{bottom:357.948400pt;}
.y3f2{bottom:357.949733pt;}
.y44f{bottom:357.951067pt;}
.y31f{bottom:358.068000pt;}
.y5a3{bottom:358.517600pt;}
.y5b{bottom:358.934933pt;}
.y2e4{bottom:359.202933pt;}
.yf2{bottom:359.372000pt;}
.y301{bottom:359.662800pt;}
.y352{bottom:360.007200pt;}
.y1e1{bottom:360.085467pt;}
.y483{bottom:360.340267pt;}
.y527{bottom:363.915733pt;}
.y41e{bottom:364.946667pt;}
.y408{bottom:365.035467pt;}
.y126{bottom:365.339733pt;}
.y566{bottom:365.908800pt;}
.y19{bottom:368.605600pt;}
.y26d{bottom:369.012800pt;}
.y5e6{bottom:369.136267pt;}
.yd4{bottom:369.357733pt;}
.y5a2{bottom:369.984267pt;}
.y5a1{bottom:369.984400pt;}
.ya9{bottom:370.295867pt;}
.y2ac{bottom:370.894533pt;}
.y4ae{bottom:371.344800pt;}
.y384{bottom:372.221733pt;}
.y23f{bottom:372.614800pt;}
.y3f1{bottom:372.616133pt;}
.y44e{bottom:372.617467pt;}
.y31e{bottom:372.734400pt;}
.y4e1{bottom:372.996800pt;}
.y2e3{bottom:373.936533pt;}
.yf1{bottom:374.038400pt;}
.y300{bottom:374.329200pt;}
.y526{bottom:374.649600pt;}
.y351{bottom:374.740800pt;}
.y3bd{bottom:375.010000pt;}
.y1e0{bottom:375.018267pt;}
.y482{bottom:375.139867pt;}
.y564{bottom:376.708667pt;}
.y565{bottom:376.708800pt;}
.y41d{bottom:379.613067pt;}
.y407{bottom:379.701867pt;}
.y125{bottom:380.006133pt;}
.y5e5{bottom:380.469600pt;}
.y5a0{bottom:381.451067pt;}
.y26c{bottom:383.412800pt;}
.y4e0{bottom:383.864000pt;}
.yd3{bottom:383.864533pt;}
.y18{bottom:384.385600pt;}
.y2ab{bottom:385.401333pt;}
.y4ad{bottom:386.078400pt;}
.y383{bottom:387.021333pt;}
.y23e{bottom:387.281200pt;}
.y3f0{bottom:387.282533pt;}
.y44d{bottom:387.283867pt;}
.y31d{bottom:387.400800pt;}
.y2e2{bottom:388.670133pt;}
.yf0{bottom:388.704800pt;}
.y2ff{bottom:388.995600pt;}
.y350{bottom:389.474400pt;}
.y3bc{bottom:389.610400pt;}
.y481{bottom:389.939467pt;}
.y1df{bottom:389.951067pt;}
.y215{bottom:390.617867pt;}
.ya8{bottom:390.632267pt;}
.y525{bottom:391.052800pt;}
.y5e4{bottom:391.802933pt;}
.y59f{bottom:392.917733pt;}
.y563{bottom:393.178000pt;}
.y26b{bottom:397.812800pt;}
.yd2{bottom:398.371333pt;}
.y5a{bottom:399.607733pt;}
.y2aa{bottom:399.908133pt;}
.y124{bottom:400.342000pt;}
.y4ac{bottom:400.812000pt;}
.y17b{bottom:401.253733pt;}
.y382{bottom:401.820933pt;}
.y23d{bottom:401.947600pt;}
.y3ef{bottom:401.948933pt;}
.y44c{bottom:401.950267pt;}
.y31c{bottom:402.067200pt;}
.y154{bottom:402.298133pt;}
.y5e3{bottom:403.136267pt;}
.yef{bottom:403.371200pt;}
.y2e1{bottom:403.403733pt;}
.y34f{bottom:404.208000pt;}
.y3bb{bottom:404.210800pt;}
.y59d{bottom:404.384267pt;}
.y59e{bottom:404.384400pt;}
.y214{bottom:404.684267pt;}
.y480{bottom:404.739067pt;}
.y1de{bottom:404.883867pt;}
.ya7{bottom:405.298667pt;}
.y17{bottom:408.385600pt;}
.y2fe{bottom:409.332000pt;}
.y26a{bottom:412.212800pt;}
.y59{bottom:414.274133pt;}
.y2a9{bottom:414.414933pt;}
.y5e2{bottom:414.469600pt;}
.y17a{bottom:415.254133pt;}
.y4ab{bottom:415.545600pt;}
.y3ee{bottom:416.615333pt;}
.y44b{bottom:416.616667pt;}
.y381{bottom:416.620533pt;}
.y31b{bottom:416.733600pt;}
.y31a{bottom:416.734000pt;}
.y4df{bottom:416.935867pt;}
.y153{bottom:416.964533pt;}
.yee{bottom:418.037600pt;}
.yed{bottom:418.039067pt;}
.y2e0{bottom:418.137333pt;}
.yd1{bottom:418.546933pt;}
.y213{bottom:418.750667pt;}
.y3ba{bottom:418.811200pt;}
.y34e{bottom:418.941600pt;}
.y436{bottom:419.454200pt;}
.y47f{bottom:419.538667pt;}
.y1dd{bottom:419.816667pt;}
.ya6{bottom:419.965067pt;}
.y16{bottom:420.385600pt;}
.y59c{bottom:421.520267pt;}
.y524{bottom:423.858133pt;}
.y523{bottom:423.858533pt;}
.y2fd{bottom:423.998400pt;}
.y5e1{bottom:425.802933pt;}
.y562{bottom:426.116667pt;}
.y561{bottom:426.116800pt;}
.y269{bottom:426.612800pt;}
.y2a8{bottom:428.921733pt;}
.y58{bottom:428.940533pt;}
.y179{bottom:429.254533pt;}
.y435{bottom:430.121200pt;}
.y4aa{bottom:430.279200pt;}
.y3ed{bottom:431.281733pt;}
.y44a{bottom:431.283067pt;}
.y380{bottom:431.420133pt;}
.y152{bottom:431.630933pt;}
.y15{bottom:432.385600pt;}
.yec{bottom:432.705467pt;}
.y212{bottom:432.817067pt;}
.y2df{bottom:432.870933pt;}
.yd0{bottom:433.053733pt;}
.y3b9{bottom:433.411600pt;}
.y34d{bottom:433.675200pt;}
.y47e{bottom:434.338267pt;}
.y522{bottom:434.591333pt;}
.y521{bottom:434.591867pt;}
.ya5{bottom:434.631467pt;}
.y1dc{bottom:434.749467pt;}
.y55f{bottom:436.916667pt;}
.y560{bottom:436.916800pt;}
.y319{bottom:437.070400pt;}
.y5e0{bottom:437.136267pt;}
.y2fc{bottom:438.664800pt;}
.y434{bottom:440.788200pt;}
.y268{bottom:441.012800pt;}
.y282{bottom:442.036467pt;}
.y178{bottom:443.254933pt;}
.y2a7{bottom:443.428533pt;}
.y14{bottom:444.385600pt;}
.y4a9{bottom:445.012800pt;}
.y13e{bottom:445.499333pt;}
.y3ec{bottom:445.948133pt;}
.y449{bottom:445.949467pt;}
.y37f{bottom:446.219733pt;}
.y151{bottom:446.297333pt;}
.y211{bottom:446.883467pt;}
.yeb{bottom:447.371867pt;}
.ycf{bottom:447.560533pt;}
.y2de{bottom:447.604533pt;}
.y3b8{bottom:448.012000pt;}
.y34c{bottom:448.408800pt;}
.y47d{bottom:449.137867pt;}
.y57{bottom:449.276933pt;}
.ya4{bottom:449.297867pt;}
.y1db{bottom:449.682267pt;}
.y520{bottom:450.995067pt;}
.y433{bottom:451.455200pt;}
.y318{bottom:451.736800pt;}
.y281{bottom:452.703467pt;}
.y2fb{bottom:453.331200pt;}
.y55e{bottom:453.386000pt;}
.y5df{bottom:454.138933pt;}
.y267{bottom:455.412800pt;}
.y59b{bottom:455.792267pt;}
.y13d{bottom:456.166333pt;}
.y13{bottom:456.385600pt;}
.y177{bottom:457.255333pt;}
.y4de{bottom:457.608933pt;}
.y2a6{bottom:457.935333pt;}
.y4a8{bottom:459.746400pt;}
.y3eb{bottom:460.614533pt;}
.y448{bottom:460.615867pt;}
.y210{bottom:460.949867pt;}
.y150{bottom:460.963733pt;}
.y51f{bottom:461.727867pt;}
.yea{bottom:462.038267pt;}
.yce{bottom:462.067333pt;}
.y2dd{bottom:462.338133pt;}
.y3b7{bottom:462.612400pt;}
.y47c{bottom:463.937467pt;}
.y56{bottom:463.943333pt;}
.ya3{bottom:463.964267pt;}
.y1da{bottom:464.615067pt;}
.y5de{bottom:465.472267pt;}
.y317{bottom:466.403200pt;}
.y37e{bottom:466.689333pt;}
.y286{bottom:466.837467pt;}
.y599{bottom:467.258800pt;}
.y59a{bottom:467.258933pt;}
.y2fa{bottom:467.997600pt;}
.y12{bottom:468.385600pt;}
.y34b{bottom:468.811200pt;}
.y266{bottom:469.812800pt;}
.y143{bottom:470.542000pt;}
.y176{bottom:471.255733pt;}
.y4dd{bottom:472.275333pt;}
.y2a5{bottom:472.442133pt;}
.y4a7{bottom:474.480000pt;}
.y20f{bottom:475.016267pt;}
.y3ea{bottom:475.280933pt;}
.y447{bottom:475.282267pt;}
.y14f{bottom:475.630133pt;}
.ycd{bottom:476.574133pt;}
.ye9{bottom:476.704667pt;}
.y5dd{bottom:476.805600pt;}
.y2dc{bottom:477.071733pt;}
.y3b6{bottom:477.212800pt;}
.y55{bottom:478.609733pt;}
.ya2{bottom:478.630667pt;}
.y1d9{bottom:479.547867pt;}
.y285{bottom:480.171067pt;}
.y11{bottom:480.385600pt;}
.y316{bottom:481.069600pt;}
.y37d{bottom:481.488933pt;}
.y2f9{bottom:482.664000pt;}
.y34a{bottom:483.544800pt;}
.y142{bottom:483.875600pt;}
.y598{bottom:484.394800pt;}
.y47b{bottom:484.406667pt;}
.y175{bottom:485.256133pt;}
.y55d{bottom:486.324667pt;}
.y4dc{bottom:486.941733pt;}
.y2a4{bottom:486.948933pt;}
.y5dc{bottom:488.138933pt;}
.y20e{bottom:489.082667pt;}
.y4a6{bottom:489.213600pt;}
.y265{bottom:489.881600pt;}
.y446{bottom:489.948667pt;}
.y14e{bottom:490.296533pt;}
.ycc{bottom:491.080933pt;}
.ye8{bottom:491.371067pt;}
.y2db{bottom:491.805333pt;}
.y3b5{bottom:491.813200pt;}
.ya1{bottom:493.297067pt;}
.y284{bottom:493.504667pt;}
.y1d8{bottom:494.480667pt;}
.y51e{bottom:494.533200pt;}
.y3e9{bottom:495.617333pt;}
.y3e8{bottom:495.623467pt;}
.y10{bottom:496.164600pt;}
.y37c{bottom:496.288533pt;}
.y55b{bottom:497.124533pt;}
.y55c{bottom:497.124667pt;}
.y141{bottom:497.209200pt;}
.y349{bottom:498.278400pt;}
.y54{bottom:498.946133pt;}
.y173{bottom:499.253733pt;}
.y174{bottom:499.256533pt;}
.y5db{bottom:499.472267pt;}
.y2a3{bottom:501.455733pt;}
.y4db{bottom:501.608133pt;}
.y20d{bottom:503.149067pt;}
.y4a5{bottom:503.947200pt;}
.y264{bottom:504.281600pt;}
.y445{bottom:504.615067pt;}
.y51c{bottom:505.265467pt;}
.y51d{bottom:505.266000pt;}
.ycb{bottom:505.587733pt;}
.y3b4{bottom:506.413600pt;}
.y22b{bottom:506.521133pt;}
.y2da{bottom:506.538933pt;}
.y283{bottom:506.838267pt;}
.ya0{bottom:507.963467pt;}
.y3e7{bottom:510.289867pt;}
.y140{bottom:510.542800pt;}
.y5da{bottom:510.805600pt;}
.y37b{bottom:511.088133pt;}
.ye7{bottom:511.707467pt;}
.y172{bottom:513.254133pt;}
.y55a{bottom:513.593867pt;}
.y53{bottom:513.612533pt;}
.y1d7{bottom:515.083467pt;}
.y51b{bottom:515.998267pt;}
.y4da{bottom:516.274533pt;}
.y22a{bottom:517.188133pt;}
.y20c{bottom:517.215467pt;}
.y597{bottom:518.666800pt;}
.y348{bottom:518.680800pt;}
.y263{bottom:518.681600pt;}
.y33a{bottom:518.816333pt;}
.y444{bottom:519.281467pt;}
.y443{bottom:519.284400pt;}
.yca{bottom:520.094533pt;}
.yf{bottom:520.164600pt;}
.y3b3{bottom:521.014000pt;}
.y2d9{bottom:521.272533pt;}
.y287{bottom:521.279733pt;}
.y2a2{bottom:521.631333pt;}
.y9f{bottom:522.629867pt;}
.y13f{bottom:523.876400pt;}
.y3e6{bottom:524.956267pt;}
.y47a{bottom:525.347467pt;}
.y37a{bottom:525.887733pt;}
.y79{bottom:525.937733pt;}
.ye6{bottom:526.373867pt;}
.y51a{bottom:526.732133pt;}
.y171{bottom:527.254533pt;}
.y5d9{bottom:527.808267pt;}
.y52{bottom:528.278933pt;}
.y339{bottom:529.483333pt;}
.y1d6{bottom:530.016267pt;}
.y595{bottom:530.133333pt;}
.y596{bottom:530.133467pt;}
.y17c{bottom:531.033867pt;}
.y20b{bottom:531.281867pt;}
.ye{bottom:532.164600pt;}
.y262{bottom:533.081600pt;}
.y347{bottom:533.414400pt;}
.y442{bottom:533.950800pt;}
.yc9{bottom:534.601333pt;}
.y3b2{bottom:535.614400pt;}
.y2d8{bottom:536.006133pt;}
.y2a1{bottom:536.138133pt;}
.y4d9{bottom:536.610400pt;}
.y9e{bottom:537.296267pt;}
.y518{bottom:537.465867pt;}
.y519{bottom:537.466000pt;}
.y144{bottom:538.317867pt;}
.y5d8{bottom:539.141600pt;}
.y3e5{bottom:539.622667pt;}
.y479{bottom:540.147067pt;}
.y338{bottom:540.150333pt;}
.y78{bottom:540.604133pt;}
.y379{bottom:540.687333pt;}
.ye5{bottom:541.040267pt;}
.y170{bottom:541.254933pt;}
.y594{bottom:541.600000pt;}
.yd{bottom:544.164600pt;}
.y1b8{bottom:544.524267pt;}
.y1a7{bottom:544.528933pt;}
.y18e{bottom:544.534533pt;}
.y1d5{bottom:544.949067pt;}
.y20a{bottom:545.348267pt;}
.y559{bottom:546.532533pt;}
.y261{bottom:547.481600pt;}
.y346{bottom:548.148000pt;}
.y51{bottom:548.615333pt;}
.y441{bottom:548.617200pt;}
.yc8{bottom:549.108133pt;}
.y3b0{bottom:550.205600pt;}
.y3b1{bottom:550.214800pt;}
.y5d7{bottom:550.474933pt;}
.y2a0{bottom:550.644933pt;}
.y2d7{bottom:550.739733pt;}
.y337{bottom:550.817333pt;}
.y9d{bottom:551.962667pt;}
.y517{bottom:553.868000pt;}
.y23c{bottom:554.284000pt;}
.y23b{bottom:554.285333pt;}
.y3e4{bottom:554.289067pt;}
.y478{bottom:554.946667pt;}
.y16f{bottom:555.255333pt;}
.y77{bottom:555.270533pt;}
.y378{bottom:555.486933pt;}
.yc{bottom:556.164600pt;}
.y557{bottom:557.332400pt;}
.y558{bottom:557.332533pt;}
.y1b7{bottom:557.857867pt;}
.y1a6{bottom:557.862533pt;}
.y18d{bottom:557.868133pt;}
.y593{bottom:558.736000pt;}
.y209{bottom:559.414667pt;}
.y208{bottom:559.416933pt;}
.y1d4{bottom:559.881867pt;}
.y336{bottom:561.484333pt;}
.y5d6{bottom:561.808267pt;}
.y260{bottom:561.881600pt;}
.y345{bottom:562.881600pt;}
.y50{bottom:563.281733pt;}
.y440{bottom:563.283600pt;}
.yc7{bottom:563.614933pt;}
.y3af{bottom:564.806000pt;}
.y29f{bottom:565.151733pt;}
.y2d6{bottom:565.473333pt;}
.y9c{bottom:566.629067pt;}
.yb{bottom:568.164600pt;}
.y23a{bottom:568.951733pt;}
.y3e3{bottom:568.955467pt;}
.y16e{bottom:569.255733pt;}
.y477{bottom:569.746267pt;}
.y377{bottom:570.286533pt;}
.y1b6{bottom:571.191467pt;}
.y1a5{bottom:571.196133pt;}
.y195{bottom:571.199867pt;}
.y18c{bottom:571.201733pt;}
.y335{bottom:572.151333pt;}
.y123{bottom:573.018400pt;}
.y207{bottom:573.483333pt;}
.y556{bottom:573.801733pt;}
.y76{bottom:575.606933pt;}
.y25f{bottom:576.281600pt;}
.y4d8{bottom:577.280133pt;}
.y344{bottom:577.615200pt;}
.y4f{bottom:577.948133pt;}
.y43f{bottom:577.950000pt;}
.y4e{bottom:577.953200pt;}
.yc6{bottom:578.121733pt;}
.y5d4{bottom:578.810800pt;}
.y5d5{bottom:578.810933pt;}
.y3ae{bottom:579.406400pt;}
.y29e{bottom:579.658533pt;}
.ya{bottom:580.164600pt;}
.y13c{bottom:580.352333pt;}
.y1d3{bottom:580.484667pt;}
.y9b{bottom:581.295467pt;}
.y334{bottom:582.818333pt;}
.y16d{bottom:583.256133pt;}
.y239{bottom:583.618133pt;}
.y3e2{bottom:583.621867pt;}
.y1b5{bottom:584.525067pt;}
.y1a4{bottom:584.529733pt;}
.y18b{bottom:584.535333pt;}
.y476{bottom:584.545867pt;}
.y376{bottom:585.086133pt;}
.y2d5{bottom:585.875733pt;}
.y516{bottom:586.673333pt;}
.y206{bottom:587.549733pt;}
.y122{bottom:587.684800pt;}
.y5d3{bottom:590.144133pt;}
.y13b{bottom:591.019333pt;}
.y4d7{bottom:591.946533pt;}
.y9{bottom:592.164600pt;}
.y343{bottom:592.348800pt;}
.y4d{bottom:592.619600pt;}
.yc5{bottom:592.628533pt;}
.y592{bottom:593.008000pt;}
.y591{bottom:593.008133pt;}
.y333{bottom:593.485333pt;}
.y3ad{bottom:594.006800pt;}
.y29d{bottom:594.165333pt;}
.y1d2{bottom:595.417467pt;}
.y75{bottom:595.944000pt;}
.y25e{bottom:596.350400pt;}
.y16b{bottom:597.255733pt;}
.y16c{bottom:597.256533pt;}
.y515{bottom:597.407200pt;}
.y514{bottom:597.408267pt;}
.y1b4{bottom:597.858667pt;}
.y1a3{bottom:597.863333pt;}
.y18a{bottom:597.868933pt;}
.y238{bottom:598.284533pt;}
.y43e{bottom:598.286400pt;}
.y3e1{bottom:598.288267pt;}
.y475{bottom:599.345467pt;}
.y375{bottom:599.885733pt;}
.y2d4{bottom:600.609333pt;}
.y205{bottom:601.616133pt;}
.y9a{bottom:601.631867pt;}
.y121{bottom:602.351200pt;}
.y58f{bottom:604.474667pt;}
.y590{bottom:604.474800pt;}
.y4d6{bottom:606.612933pt;}
.y554{bottom:606.740267pt;}
.y555{bottom:606.740400pt;}
.y342{bottom:607.082400pt;}
.y341{bottom:607.084533pt;}
.y5d2{bottom:607.146800pt;}
.y4c{bottom:607.286000pt;}
.y8{bottom:607.943600pt;}
.y513{bottom:608.141067pt;}
.y3ac{bottom:608.607200pt;}
.y29c{bottom:608.672133pt;}
.y1d1{bottom:610.350267pt;}
.y74{bottom:610.610400pt;}
.y25d{bottom:610.750400pt;}
.y1b3{bottom:611.192267pt;}
.y1a2{bottom:611.196933pt;}
.y189{bottom:611.202533pt;}
.y16a{bottom:611.256133pt;}
.yc4{bottom:612.804533pt;}
.y237{bottom:612.950933pt;}
.y43d{bottom:612.952800pt;}
.y3e0{bottom:612.954667pt;}
.y474{bottom:614.145067pt;}
.y374{bottom:614.685333pt;}
.y2d3{bottom:615.342933pt;}
.y204{bottom:615.682533pt;}
.y58e{bottom:615.941333pt;}
.y99{bottom:616.298267pt;}
.y120{bottom:617.017600pt;}
.y553{bottom:617.540267pt;}
.y5d1{bottom:618.480133pt;}
.y511{bottom:618.873200pt;}
.y512{bottom:618.873867pt;}
.y4d5{bottom:621.279333pt;}
.y4a4{bottom:621.816000pt;}
.y340{bottom:621.818133pt;}
.y4b{bottom:621.952400pt;}
.y29b{bottom:623.178933pt;}
.y3ab{bottom:623.207600pt;}
.y1b2{bottom:624.525867pt;}
.y1a1{bottom:624.530533pt;}
.y188{bottom:624.536133pt;}
.y25c{bottom:625.150400pt;}
.y169{bottom:625.256533pt;}
.y168{bottom:625.258133pt;}
.y73{bottom:625.276800pt;}
.y1d0{bottom:625.283067pt;}
.y58d{bottom:627.408000pt;}
.y236{bottom:627.618933pt;}
.y43c{bottom:627.619200pt;}
.y3df{bottom:627.621067pt;}
.y373{bottom:629.484933pt;}
.y203{bottom:629.748933pt;}
.y5d0{bottom:629.813467pt;}
.y2d2{bottom:630.076533pt;}
.y98{bottom:630.964667pt;}
.y11f{bottom:631.684000pt;}
.y552{bottom:634.009600pt;}
.y473{bottom:634.614667pt;}
.y472{bottom:634.620800pt;}
.y510{bottom:635.276400pt;}
.y4d4{bottom:635.945733pt;}
.y4a3{bottom:636.549600pt;}
.y33f{bottom:636.551733pt;}
.y26{bottom:636.581867pt;}
.y4a{bottom:636.618800pt;}
.y29a{bottom:637.685733pt;}
.y3aa{bottom:637.808000pt;}
.y1b1{bottom:637.859467pt;}
.y1a0{bottom:637.864133pt;}
.y194{bottom:637.866933pt;}
.y187{bottom:637.869733pt;}
.y167{bottom:639.258533pt;}
.y25b{bottom:639.550400pt;}
.y72{bottom:639.943200pt;}
.y1cf{bottom:640.215867pt;}
.y235{bottom:642.285333pt;}
.y43b{bottom:642.285600pt;}
.y3de{bottom:642.287467pt;}
.y202{bottom:643.815333pt;}
.y372{bottom:644.284533pt;}
.y58c{bottom:644.544000pt;}
.y2d1{bottom:644.810133pt;}
.y97{bottom:645.631067pt;}
.y11e{bottom:646.350400pt;}
.y5cf{bottom:646.816133pt;}
.y471{bottom:649.420400pt;}
.y4d3{bottom:650.612133pt;}
.y1b0{bottom:651.193067pt;}
.y19f{bottom:651.197733pt;}
.y186{bottom:651.203333pt;}
.y4a2{bottom:651.283200pt;}
.y49{bottom:651.285200pt;}
.y33e{bottom:651.285333pt;}
.y299{bottom:652.192533pt;}
.y3a9{bottom:652.408400pt;}
.yc2{bottom:653.156267pt;}
.yc3{bottom:653.156400pt;}
.y166{bottom:653.258933pt;}
.y25a{bottom:653.950400pt;}
.y71{bottom:654.609600pt;}
.y1ce{bottom:655.148667pt;}
.y58b{bottom:656.010667pt;}
.y234{bottom:656.951733pt;}
.y43a{bottom:656.952000pt;}
.y3dd{bottom:656.953867pt;}
.y201{bottom:657.881733pt;}
.y5ce{bottom:658.149467pt;}
.y2d0{bottom:659.543733pt;}
.y96{bottom:660.297467pt;}
.y11d{bottom:661.016800pt;}
.y60e{bottom:663.556400pt;}
.y470{bottom:664.220000pt;}
.y1af{bottom:664.526667pt;}
.y19e{bottom:664.531333pt;}
.y185{bottom:664.536933pt;}
.y371{bottom:664.754133pt;}
.y4d2{bottom:665.278533pt;}
.y48{bottom:665.951600pt;}
.y4a1{bottom:666.016800pt;}
.y33d{bottom:666.018933pt;}
.y298{bottom:666.699333pt;}
.y551{bottom:666.948267pt;}
.y550{bottom:666.948400pt;}
.y3a8{bottom:667.008800pt;}
.y165{bottom:667.259333pt;}
.yc0{bottom:667.662933pt;}
.yc1{bottom:667.663067pt;}
.y50e{bottom:668.081067pt;}
.y50f{bottom:668.081733pt;}
.y259{bottom:668.350400pt;}
.y5cc{bottom:669.482667pt;}
.y5cd{bottom:669.482800pt;}
.y1cd{bottom:670.081467pt;}
.y1cc{bottom:670.083467pt;}
.y233{bottom:671.618133pt;}
.y439{bottom:671.618400pt;}
.y3dc{bottom:671.620267pt;}
.y200{bottom:671.948133pt;}
.y1ff{bottom:671.951600pt;}
.y23{bottom:673.801840pt;}
.y2cf{bottom:674.277333pt;}
.y60d{bottom:674.889733pt;}
.y70{bottom:674.948133pt;}
.y95{bottom:674.963867pt;}
.y11c{bottom:675.683200pt;}
.y54e{bottom:677.748267pt;}
.y54f{bottom:677.748400pt;}
.y1ae{bottom:677.860267pt;}
.y19d{bottom:677.864933pt;}
.y184{bottom:677.870533pt;}
.y46f{bottom:679.019600pt;}
.y370{bottom:679.553733pt;}
.y4d1{bottom:679.944933pt;}
.y47{bottom:680.618000pt;}
.y4a0{bottom:680.750400pt;}
.y33c{bottom:680.752533pt;}
.y297{bottom:681.206133pt;}
.y164{bottom:681.259733pt;}
.ybf{bottom:682.169733pt;}
.y258{bottom:682.750400pt;}
.y50d{bottom:684.484267pt;}
.y1cb{bottom:685.016267pt;}
.y22{bottom:685.135600pt;}
.y1fe{bottom:686.018000pt;}
.y60b{bottom:686.222933pt;}
.y60c{bottom:686.223067pt;}
.y232{bottom:686.284533pt;}
.y438{bottom:686.284800pt;}
.y3db{bottom:686.286667pt;}
.y5cb{bottom:686.485333pt;}
.y3a7{bottom:687.278000pt;}
.y54d{bottom:688.548267pt;}
.y2ce{bottom:689.010933pt;}
.y6f{bottom:689.614533pt;}
.y94{bottom:689.630267pt;}
.y58a{bottom:690.282667pt;}
.y11b{bottom:690.349600pt;}
.y1ad{bottom:691.193867pt;}
.y19c{bottom:691.198533pt;}
.y196{bottom:691.199467pt;}
.y193{bottom:691.200400pt;}
.y183{bottom:691.204133pt;}
.y46e{bottom:693.819200pt;}
.y36f{bottom:694.353333pt;}
.y163{bottom:695.260133pt;}
.y46{bottom:695.284400pt;}
.y49f{bottom:695.484000pt;}
.y33b{bottom:695.486133pt;}
.y296{bottom:695.712933pt;}
.y21{bottom:696.468400pt;}
.ybd{bottom:696.676133pt;}
.ybe{bottom:696.676533pt;}
.y257{bottom:697.150400pt;}
.y60a{bottom:697.556267pt;}
.y1ca{bottom:699.949067pt;}
.y1fd{bottom:700.084400pt;}
.y4d0{bottom:700.281333pt;}
.y231{bottom:700.950933pt;}
.y437{bottom:700.951200pt;}
.y3da{bottom:700.953067pt;}
.y588{bottom:701.749200pt;}
.y589{bottom:701.749333pt;}
.y3a6{bottom:701.878400pt;}
.y2cd{bottom:703.744533pt;}
.y93{bottom:704.296667pt;}
.y1ac{bottom:704.527467pt;}
.y19b{bottom:704.532133pt;}
.y182{bottom:704.537733pt;}
.y11a{bottom:705.016000pt;}
.y54c{bottom:705.017600pt;}
.y46d{bottom:708.618800pt;}
.y619{bottom:708.889733pt;}
.y36e{bottom:709.152933pt;}
.y162{bottom:709.260533pt;}
.y6e{bottom:709.950933pt;}
.ybc{bottom:711.182933pt;}
.y256{bottom:711.550400pt;}
.y1fc{bottom:714.150800pt;}
.y609{bottom:714.558933pt;}
.y1c9{bottom:714.881867pt;}
.y4cf{bottom:715.014933pt;}
.y230{bottom:715.617333pt;}
.y22f{bottom:715.617600pt;}
.y3d9{bottom:715.619467pt;}
.y45{bottom:715.620800pt;}
.y54b{bottom:715.817600pt;}
.y49e{bottom:715.886400pt;}
.y295{bottom:715.888533pt;}
.y3a5{bottom:716.478800pt;}
.y50b{bottom:717.288933pt;}
.y50c{bottom:717.289600pt;}
.y1ab{bottom:717.861067pt;}
.y19a{bottom:717.865733pt;}
.y181{bottom:717.871333pt;}
.y587{bottom:718.885200pt;}
.y92{bottom:718.963067pt;}
.y119{bottom:719.682400pt;}
.y617{bottom:720.222933pt;}
.y618{bottom:720.223067pt;}
.y5ca{bottom:720.490667pt;}
.y46c{bottom:723.418400pt;}
.y36d{bottom:723.952533pt;}
.y2cc{bottom:724.146933pt;}
.y6d{bottom:724.617333pt;}
.ybb{bottom:725.689733pt;}
.y255{bottom:725.950400pt;}
.y1fb{bottom:728.217200pt;}
.y161{bottom:728.929733pt;}
.y7{bottom:728.999733pt;}
.y4ce{bottom:729.748533pt;}
.y1c8{bottom:729.814667pt;}
.y1c7{bottom:729.815600pt;}
.y22e{bottom:730.284000pt;}
.y3d8{bottom:730.285867pt;}
.y44{bottom:730.287200pt;}
.y49d{bottom:730.552800pt;}
.y294{bottom:730.554933pt;}
.y3a4{bottom:731.079200pt;}
.y1aa{bottom:731.194667pt;}
.y199{bottom:731.199333pt;}
.y192{bottom:731.200267pt;}
.y180{bottom:731.204933pt;}
.y5c9{bottom:731.824000pt;}
.y91{bottom:733.629467pt;}
.y50a{bottom:733.692133pt;}
.y118{bottom:734.348800pt;}
.y616{bottom:737.225600pt;}
.y46b{bottom:738.218000pt;}
.y36c{bottom:738.752133pt;}
.y2cb{bottom:738.880533pt;}
.y6c{bottom:739.283733pt;}
.yba{bottom:740.196533pt;}
.y254{bottom:740.350400pt;}
.y1fa{bottom:742.283600pt;}
.y160{bottom:742.930133pt;}
.y5c8{bottom:743.157333pt;}
.y4cd{bottom:744.482133pt;}
.y1a9{bottom:744.528267pt;}
.y198{bottom:744.532933pt;}
.y191{bottom:744.533867pt;}
.y17f{bottom:744.538533pt;}
.y1c6{bottom:744.748400pt;}
.y3d7{bottom:744.952267pt;}
.y43{bottom:744.953600pt;}
.y49c{bottom:745.219200pt;}
.y293{bottom:745.221333pt;}
.y3a3{bottom:745.679600pt;}
.y90{bottom:748.295867pt;}
.y607{bottom:748.564000pt;}
.y608{bottom:748.564267pt;}
.y549{bottom:748.756133pt;}
.y54a{bottom:748.756267pt;}
.y117{bottom:749.015200pt;}
.y6{bottom:751.665733pt;}
.y46a{bottom:753.017600pt;}
.y586{bottom:753.157200pt;}
.y36b{bottom:753.551733pt;}
.y2ca{bottom:753.614133pt;}
.y6b{bottom:753.950133pt;}
.y5c6{bottom:754.490533pt;}
.y5c7{bottom:754.490667pt;}
.yb9{bottom:754.703333pt;}
.y253{bottom:754.750400pt;}
.y1f9{bottom:756.350000pt;}
.y15f{bottom:756.930533pt;}
.y1a8{bottom:757.861867pt;}
.y197{bottom:757.866533pt;}
.y190{bottom:757.867467pt;}
.y17e{bottom:757.872133pt;}
.y4cc{bottom:759.215733pt;}
.y548{bottom:759.556133pt;}
.y3d6{bottom:759.618667pt;}
.y42{bottom:759.620000pt;}
.y1c5{bottom:759.681200pt;}
.y49b{bottom:759.885600pt;}
.y292{bottom:759.887733pt;}
.y606{bottom:759.897333pt;}
.y3a2{bottom:760.280000pt;}
.y8f{bottom:762.962267pt;}
.y116{bottom:763.681600pt;}
.y509{bottom:766.497467pt;}
.y469{bottom:767.817200pt;}
.y2c9{bottom:768.347733pt;}
.y36a{bottom:768.351333pt;}
.y6a{bottom:768.616533pt;}
.y252{bottom:769.150400pt;}
.yb8{bottom:769.210133pt;}
.y585{bottom:770.293200pt;}
.y1f8{bottom:770.416400pt;}
.y15e{bottom:770.930933pt;}
.y18f{bottom:771.201067pt;}
.y17d{bottom:771.205733pt;}
.y605{bottom:771.230667pt;}
.y615{bottom:771.230933pt;}
.y5c5{bottom:771.493200pt;}
.y4cb{bottom:773.949333pt;}
.y3d5{bottom:774.285067pt;}
.y41{bottom:774.286400pt;}
.y49a{bottom:774.552000pt;}
.y291{bottom:774.554133pt;}
.y3a1{bottom:774.880400pt;}
.y547{bottom:776.025467pt;}
.y508{bottom:777.232267pt;}
.y115{bottom:778.348000pt;}
.y1c3{bottom:780.280400pt;}
.y1c4{bottom:780.284000pt;}
.y613{bottom:782.564000pt;}
.y614{bottom:782.564267pt;}
.y468{bottom:782.616800pt;}
.y2c8{bottom:783.081333pt;}
.y369{bottom:783.150933pt;}
.y69{bottom:783.282933pt;}
.y8e{bottom:783.298667pt;}
.y251{bottom:783.550400pt;}
.yb7{bottom:783.716933pt;}
.y1f7{bottom:784.482800pt;}
.y1b9{bottom:785.648000pt;}
.y604{bottom:788.233333pt;}
.y4ca{bottom:788.682933pt;}
.y3d4{bottom:788.951467pt;}
.y40{bottom:788.952800pt;}
.y499{bottom:789.218400pt;}
.y290{bottom:789.220533pt;}
.y3a0{bottom:789.480800pt;}
.y5{bottom:790.415067pt;}
.y15d{bottom:790.600133pt;}
.y507{bottom:793.635467pt;}
.y612{bottom:793.897333pt;}
.y1c2{bottom:794.280800pt;}
.y467{bottom:797.416400pt;}
.y2c7{bottom:797.814933pt;}
.y68{bottom:797.949333pt;}
.y368{bottom:797.950533pt;}
.y1f6{bottom:798.549200pt;}
.y114{bottom:798.684400pt;}
.y603{bottom:799.566667pt;}
.y4c9{bottom:803.416533pt;}
.y3d3{bottom:803.617867pt;}
.y3f{bottom:803.619200pt;}
.y8d{bottom:803.636400pt;}
.y28f{bottom:803.886933pt;}
.yb6{bottom:803.892533pt;}
.yb5{bottom:803.894400pt;}
.y39f{bottom:804.081200pt;}
.y584{bottom:804.565200pt;}
.y15c{bottom:805.266533pt;}
.y5c4{bottom:805.498533pt;}
.y1c1{bottom:808.281200pt;}
.y546{bottom:808.964133pt;}
.y611{bottom:810.900000pt;}
.y466{bottom:812.216000pt;}
.y2c6{bottom:812.548533pt;}
.y367{bottom:812.750133pt;}
.y113{bottom:813.350800pt;}
.y582{bottom:816.031600pt;}
.y583{bottom:816.031867pt;}
.y5c2{bottom:816.831600pt;}
.y5c3{bottom:816.831867pt;}
.y4{bottom:817.081733pt;}
.y4c8{bottom:818.150133pt;}
.y3d2{bottom:818.284267pt;}
.y67{bottom:818.284533pt;}
.y3e{bottom:818.285600pt;}
.y8c{bottom:818.302800pt;}
.y28e{bottom:818.553333pt;}
.yb4{bottom:818.560800pt;}
.y14d{bottom:818.632133pt;}
.y39e{bottom:818.681600pt;}
.y545{bottom:819.764133pt;}
.y15b{bottom:819.932933pt;}
.y1c0{bottom:822.281600pt;}
.y506{bottom:826.440800pt;}
.y465{bottom:827.015600pt;}
.y2c5{bottom:827.282133pt;}
.y581{bottom:827.498267pt;}
.y112{bottom:828.017200pt;}
.y5c1{bottom:828.164933pt;}
.y544{bottom:830.564133pt;}
.y4c7{bottom:832.883733pt;}
.y3d1{bottom:832.950667pt;}
.y66{bottom:832.950933pt;}
.y3d{bottom:832.952000pt;}
.y8b{bottom:832.969200pt;}
.y28d{bottom:833.219733pt;}
.yb3{bottom:833.227200pt;}
.y39d{bottom:833.282000pt;}
.y14c{bottom:833.298533pt;}
.y602{bottom:833.572000pt;}
.y15a{bottom:834.599333pt;}
.y1bf{bottom:836.282000pt;}
.y505{bottom:837.173600pt;}
.y464{bottom:841.815200pt;}
.y2c4{bottom:842.015733pt;}
.y111{bottom:842.683600pt;}
.y3{bottom:843.748400pt;}
.y580{bottom:844.634267pt;}
.y601{bottom:844.905333pt;}
.y610{bottom:844.905467pt;}
.y5c0{bottom:845.167600pt;}
.y543{bottom:847.033467pt;}
.y65{bottom:847.617333pt;}
.y3c{bottom:847.618400pt;}
.y8a{bottom:847.635600pt;}
.y39c{bottom:847.882400pt;}
.y28c{bottom:847.886133pt;}
.yb2{bottom:847.893600pt;}
.y504{bottom:847.906400pt;}
.y14b{bottom:847.964933pt;}
.y14a{bottom:847.965200pt;}
.y159{bottom:849.265733pt;}
.y1be{bottom:850.282400pt;}
.y57f{bottom:856.100933pt;}
.y600{bottom:856.238667pt;}
.y60f{bottom:856.238800pt;}
.y2c3{bottom:856.749333pt;}
.y110{bottom:857.350000pt;}
.y503{bottom:858.639200pt;}
.y3b{bottom:862.284800pt;}
.y89{bottom:862.302000pt;}
.y4c6{bottom:862.350933pt;}
.y39b{bottom:862.482800pt;}
.y28b{bottom:862.552533pt;}
.yb1{bottom:862.560000pt;}
.y149{bottom:862.631600pt;}
.y148{bottom:862.632400pt;}
.y158{bottom:863.932133pt;}
.y1bd{bottom:864.282800pt;}
.y5ff{bottom:867.572000pt;}
.y501{bottom:869.371067pt;}
.y502{bottom:869.372000pt;}
.y2c2{bottom:871.482933pt;}
.y10f{bottom:872.016400pt;}
.y3a{bottom:876.951200pt;}
.y88{bottom:876.968400pt;}
.y39a{bottom:877.083200pt;}
.y4c5{bottom:877.084533pt;}
.y28a{bottom:877.218933pt;}
.yb0{bottom:877.226400pt;}
.y147{bottom:877.298800pt;}
.y1bc{bottom:878.283200pt;}
.y157{bottom:878.598533pt;}
.y5fe{bottom:878.905333pt;}
.y5bf{bottom:879.172933pt;}
.y5be{bottom:879.173067pt;}
.y542{bottom:879.972133pt;}
.y500{bottom:880.104933pt;}
.y2{bottom:888.751667pt;}
.y57e{bottom:890.372933pt;}
.y57d{bottom:890.373067pt;}
.y5bd{bottom:890.506400pt;}
.y541{bottom:890.772000pt;}
.y4ff{bottom:890.838800pt;}
.y4fe{bottom:890.839200pt;}
.y39{bottom:891.617600pt;}
.y87{bottom:891.634800pt;}
.y399{bottom:891.683600pt;}
.y4c4{bottom:891.818133pt;}
.y289{bottom:891.885333pt;}
.yaf{bottom:891.892800pt;}
.y146{bottom:891.965200pt;}
.y1bb{bottom:892.283600pt;}
.y10e{bottom:892.352800pt;}
.y156{bottom:893.264933pt;}
.y5fd{bottom:895.908000pt;}
.y1{bottom:896.484933pt;}
.y38{bottom:906.284000pt;}
.y86{bottom:906.301200pt;}
.y288{bottom:906.551733pt;}
.yae{bottom:906.559200pt;}
.y145{bottom:906.631600pt;}
.y10d{bottom:907.019200pt;}
.y4fd{bottom:907.241333pt;}
.y57c{bottom:907.509067pt;}
.y155{bottom:907.931333pt;}
.y27{bottom:928.290267pt;}
.ydb{bottom:943.094933pt;}
.y7a{bottom:949.267333pt;}
.yd9{bottom:949.535067pt;}
.yda{bottom:953.761333pt;}
.y35{bottom:1102.768800pt;}
.h18{height:25.266667pt;}
.h8{height:25.267200pt;}
.h13{height:27.507812pt;}
.h10{height:28.771733pt;}
.h16{height:29.906250pt;}
.hd{height:30.083333pt;}
.h2{height:31.720000pt;}
.h17{height:34.890625pt;}
.h14{height:35.291667pt;}
.h7{height:36.300000pt;}
.h6{height:36.600000pt;}
.h5{height:37.812500pt;}
.h19{height:39.040000pt;}
.h1a{height:39.912225pt;}
.ha{height:42.854167pt;}
.hc{height:43.920000pt;}
.h11{height:44.901190pt;}
.h9{height:45.375000pt;}
.h15{height:46.000000pt;}
.h12{height:46.873183pt;}
.hb{height:52.937500pt;}
.h4{height:73.200000pt;}
.h3{height:97.600000pt;}
.hf{height:1016.666667pt;}
.he{height:1016.718133pt;}
.h1{height:1074.000000pt;}
.h0{height:1074.040800pt;}
.w0{width:761.021467pt;}
.w1{width:761.333333pt;}
.x0{left:0.000000pt;}
.x10{left:53.662267pt;}
.x14{left:54.554267pt;}
.x66{left:56.093200pt;}
.x1c{left:59.094667pt;}
.x1e{left:61.121867pt;}
.x16{left:65.893200pt;}
.x13{left:77.231867pt;}
.xf{left:78.229067pt;}
.x8{left:80.118667pt;}
.x20{left:81.010975pt;}
.x54{left:83.577600pt;}
.x42{left:90.309733pt;}
.xb{left:91.457200pt;}
.x7e{left:92.350000pt;}
.x9{left:95.236667pt;}
.xd{left:102.795467pt;}
.x1f{left:103.688400pt;}
.x3b{left:113.544000pt;}
.x96{left:118.806267pt;}
.x4{left:120.417467pt;}
.x39{left:124.815067pt;}
.x3{left:131.349467pt;}
.x51{left:135.330840pt;}
.x33{left:136.326133pt;}
.x52{left:138.119640pt;}
.x53{left:139.990320pt;}
.x9c{left:142.751467pt;}
.x3a{left:145.695067pt;}
.x5b{left:147.387200pt;}
.x9b{left:151.702667pt;}
.x21{left:152.718000pt;}
.x3c{left:154.396400pt;}
.x34{left:156.538400pt;}
.x6e{left:158.597333pt;}
.xad{left:167.070267pt;}
.x5c{left:168.867333pt;}
.x7{left:172.101867pt;}
.x80{left:173.694533pt;}
.x7f{left:176.197200pt;}
.x6f{left:189.954533pt;}
.x4d{left:195.736920pt;}
.x6b{left:199.278133pt;}
.x4b{left:203.449800pt;}
.x2b{left:206.918800pt;}
.x4c{left:208.351200pt;}
.x35{left:209.631200pt;}
.x5{left:212.289467pt;}
.x81{left:217.812267pt;}
.xb0{left:219.557733pt;}
.x4e{left:222.119640pt;}
.x6c{left:223.677600pt;}
.x50{left:226.164240pt;}
.x4f{left:228.887520pt;}
.x36{left:231.345333pt;}
.x4a{left:232.392000pt;}
.x15{left:234.134400pt;}
.x6{left:235.767867pt;}
.x85{left:237.318800pt;}
.x48{left:239.708400pt;}
.x49{left:240.793680pt;}
.x63{left:250.358267pt;}
.x72{left:254.711333pt;}
.x31{left:255.894533pt;}
.x86{left:258.493733pt;}
.x2c{left:267.008400pt;}
.xc{left:271.081200pt;}
.xaf{left:274.037600pt;}
.x32{left:276.336133pt;}
.xae{left:281.385333pt;}
.x9e{left:283.604800pt;}
.x37{left:285.194933pt;}
.x30{left:287.751200pt;}
.x61{left:290.424400pt;}
.x9f{left:297.042000pt;}
.x82{left:303.057067pt;}
.x84{left:304.682400pt;}
.x38{left:306.265733pt;}
.x99{left:308.427333pt;}
.x62{left:312.011867pt;}
.x57{left:318.970800pt;}
.x56{left:321.306840pt;}
.x55{left:323.642880pt;}
.x9a{left:325.258933pt;}
.x83{left:327.185200pt;}
.xa{left:337.428267pt;}
.x97{left:342.473600pt;}
.x5d{left:344.085600pt;}
.x59{left:350.834520pt;}
.x58{left:352.861440pt;}
.x5a{left:354.260040pt;}
.x9d{left:362.527067pt;}
.x41{left:367.426400pt;}
.x98{left:373.963467pt;}
.x3f{left:384.582300pt;}
.x3d{left:386.260667pt;}
.x17{left:387.153200pt;}
.x70{left:396.009200pt;}
.x74{left:406.312133pt;}
.x3e{left:408.938267pt;}
.x1a{left:409.830667pt;}
.x43{left:411.384133pt;}
.xe{left:412.716667pt;}
.x22{left:413.609467pt;}
.x68{left:416.787467pt;}
.x87{left:424.948400pt;}
.x75{left:429.419067pt;}
.x44{left:434.061733pt;}
.x25{left:436.286933pt;}
.x69{left:439.089600pt;}
.x91{left:447.380533pt;}
.x76{left:451.404667pt;}
.x8a{left:464.746000pt;}
.x8c{left:469.439467pt;}
.x67{left:472.052667pt;}
.x18{left:476.780267pt;}
.x64{left:483.426400pt;}
.x8f{left:484.799600pt;}
.xa0{left:486.455600pt;}
.x1d{left:487.839067pt;}
.x93{left:493.698000pt;}
.x94{left:496.383733pt;}
.x11{left:497.630795pt;}
.x19{left:499.267867pt;}
.x1b{left:501.316400pt;}
.x40{left:507.660400pt;}
.x7c{left:510.764133pt;}
.x7d{left:512.415867pt;}
.xa2{left:515.991867pt;}
.x7a{left:517.783867pt;}
.x88{left:519.498400pt;}
.x2d{left:524.528395pt;}
.x6d{left:528.781600pt;}
.x45{left:530.813333pt;}
.x12{left:533.073269pt;}
.x27{left:538.123467pt;}
.x65{left:540.647467pt;}
.x77{left:548.152400pt;}
.x71{left:549.889467pt;}
.xb1{left:553.684533pt;}
.x95{left:555.285200pt;}
.x89{left:556.441733pt;}
.x5e{left:558.649867pt;}
.x2e{left:559.970869pt;}
.x73{left:571.918000pt;}
.x60{left:580.389467pt;}
.x8b{left:582.869333pt;}
.x46{left:591.743600pt;}
.x6a{left:594.134267pt;}
.x5f{left:596.478133pt;}
.x8d{left:597.600533pt;}
.xa3{left:599.501733pt;}
.x78{left:600.972667pt;}
.x23{left:606.150400pt;}
.x28{left:609.954533pt;}
.x90{left:615.236800pt;}
.x79{left:618.949600pt;}
.x2f{left:621.381067pt;}
.x2{left:625.797800pt;}
.x24{left:627.630533pt;}
.x1{left:629.008800pt;}
.x47{left:630.447733pt;}
.x29{left:631.434800pt;}
.x8e{left:634.059467pt;}
.x92{left:649.373067pt;}
.xaa{left:651.765733pt;}
.xa6{left:654.355733pt;}
.xab{left:658.549467pt;}
.xa4{left:659.575467pt;}
.xa9{left:660.739200pt;}
.x26{left:672.660000pt;}
.x7b{left:675.552267pt;}
.xa7{left:676.789600pt;}
.xa8{left:679.644800pt;}
.xa1{left:680.607733pt;}
.x2a{left:688.968267pt;}
.xac{left:695.125333pt;}
.xa5{left:700.827333pt;}
}




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